[
  {
    "path": ".docker/bash/uvdesk-entrypoint.sh",
    "content": "#!/bin/bash\n\n# Output color codes\n# https://en.wikipedia.org/wiki/ANSI_escape_code\n\ndeclare -r COLOR_NC='\\033[0m'\ndeclare -r COLOR_RED='\\033[0;31m'\ndeclare -r COLOR_GREEN='\\033[0;32m'\ndeclare -r COLOR_LIGHT_GREEN='\\033[1;32m'\ndeclare -r COLOR_YELLOW='\\033[1;33m'\ndeclare -r COLOR_LIGHT_YELLOW='\\033[0;33m'\ndeclare -r COLOR_BLUE='\\033[0;34m'\ndeclare -r COLOR_LIGHT_BLUE='\\033[1;34m'\n\n# Restart apache & mysql server\nservice apache2 restart && service mysql restart;\n\nif [[ ! -z \"$MYSQL_USER\" && ! -z \"$MYSQL_PASSWORD\" && ! -z \"$MYSQL_DATABASE\" ]]; then\n    if [ \"$(mysqladmin ping)\" == \"mysqld is alive\" ]; then\n        # Mysql is up and running with default configuration\n\n        # Create default database if not found and grant non-root user all privileges to that database\n        # Note: Grant privileges will create user if it doesn't exists prior to mysql 8\n        mysql -u root -e \"CREATE DATABASE IF NOT EXISTS $MYSQL_DATABASE\";\n        mysql -u root -e \"GRANT ALL PRIVILEGES ON $MYSQL_DATABASE.* To '$MYSQL_USER'@'localhost' IDENTIFIED BY '$MYSQL_PASSWORD'\";\n\n        # Update root user credentials\n        mysql -u root -e \"ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '$MYSQL_ROOT_PASSWORD'\";\n\n        # Create new mysql configuration files (root & uvdesk)\n        rm -f /etc/mysql/my.cnf /home/uvdesk/.my.cnf \\\n            && echo -e \"[client]\\nuser = root\\npassword = $MYSQL_ROOT_PASSWORD\\nhost = localhost\" >> /etc/mysql/my.cnf \\\n            && echo -e \"[client]\\nuser = $MYSQL_USER\\npassword = $MYSQL_PASSWORD\\nhost = localhost\" >> /home/uvdesk/.my.cnf;\n    else\n        echo -e \"${COLOR_RED}Error: Failed to establish a connection with mysql server (localhost)${COLOR_NC}\\n\";\n        exit 1;\n    fi\nelse\n    echo -e \"${COLOR_LIGHT_YELLOW}Notice: Skipping configuration of local database - one or more mysql environment variables are not defined.${COLOR_NC}\\n\";\nfi\n\n# Step down from sudo to uvdesk\n/usr/local/bin/gosu uvdesk \"$@\"\n\nexec \"$@\""
  },
  {
    "path": ".docker/config/apache2/env",
    "content": "# envvars - default environment variables for apache2ctl\n\n# this won't be correct after changing uid\nunset HOME\n\n# for supporting multiple apache2 instances\nif [ \"${APACHE_CONFDIR##/etc/apache2-}\" != \"${APACHE_CONFDIR}\" ] ; then\n\tSUFFIX=\"-${APACHE_CONFDIR##/etc/apache2-}\"\nelse\n\tSUFFIX=\nfi\n\n# Since there is no sane way to get the parsed apache2 config in scripts, some\n# settings are defined via environment variables and then used in apache2ctl,\n# /etc/init.d/apache2, /etc/logrotate.d/apache2, etc.\nexport APACHE_RUN_USER=uvdesk\nexport APACHE_RUN_GROUP=uvdesk\n# temporary state file location. This might be changed to /run in Wheezy+1\nexport APACHE_PID_FILE=/var/run/apache2/apache2$SUFFIX.pid\nexport APACHE_RUN_DIR=/var/run/apache2$SUFFIX\nexport APACHE_LOCK_DIR=/var/lock/apache2$SUFFIX\n# Only /var/log/apache2 is handled by /etc/logrotate.d/apache2.\nexport APACHE_LOG_DIR=/var/log/apache2$SUFFIX\n\n## The locale used by some modules like mod_dav\nexport LANG=C\n## Uncomment the following line to use the system default locale instead:\n#. /etc/default/locale\n\nexport LANG\n\n## The command to get the status for 'apache2ctl status'.\n## Some packages providing 'www-browser' need '--dump' instead of '-dump'.\n#export APACHE_LYNX='www-browser -dump'\n\n## If you need a higher file descriptor limit, uncomment and adjust the\n## following line (default is 8192):\n#APACHE_ULIMIT_MAX_FILES='ulimit -n 65536'\n\n## If you would like to pass arguments to the web server, add them below\n## to the APACHE_ARGUMENTS environment.\n#export APACHE_ARGUMENTS=''\n\n## Enable the debug mode for maintainer scripts.\n## This will produce a verbose output on package installations of web server modules and web application\n## installations which interact with Apache\n#export APACHE2_MAINTSCRIPT_DEBUG=1\n"
  },
  {
    "path": ".docker/config/apache2/httpd.conf",
    "content": "# This is the main Apache server configuration file.  It contains the\n# configuration directives that give the server its instructions.\n# See http://httpd.apache.org/docs/2.4/ for detailed information about\n# the directives and /usr/share/doc/apache2/README.Debian about Debian specific\n# hints.\n#\n#\n# Summary of how the Apache 2 configuration works in Debian:\n# The Apache 2 web server configuration in Debian is quite different to\n# upstream's suggested way to configure the web server. This is because Debian's\n# default Apache2 installation attempts to make adding and removing modules,\n# virtual hosts, and extra configuration directives as flexible as possible, in\n# order to make automating the changes and administering the server as easy as\n# possible.\n\n# It is split into several files forming the configuration hierarchy outlined\n# below, all located in the /etc/apache2/ directory:\n#\n#\t/etc/apache2/\n#\t|-- apache2.conf\n#\t|\t`--  ports.conf\n#\t|-- mods-enabled\n#\t|\t|-- *.load\n#\t|\t`-- *.conf\n#\t|-- conf-enabled\n#\t|\t`-- *.conf\n# \t`-- sites-enabled\n#\t \t`-- *.conf\n#\n#\n# * apache2.conf is the main configuration file (this file). It puts the pieces\n#   together by including all remaining configuration files when starting up the\n#   web server.\n#\n# * ports.conf is always included from the main configuration file. It is\n#   supposed to determine listening ports for incoming connections which can be\n#   customized anytime.\n#\n# * Configuration files in the mods-enabled/, conf-enabled/ and sites-enabled/\n#   directories contain particular configuration snippets which manage modules,\n#   global configuration fragments, or virtual host configurations,\n#   respectively.\n#\n#   They are activated by symlinking available configuration files from their\n#   respective *-available/ counterparts. These should be managed by using our\n#   helpers a2enmod/a2dismod, a2ensite/a2dissite and a2enconf/a2disconf. See\n#   their respective man pages for detailed information.\n#\n# * The binary is called apache2. Due to the use of environment variables, in\n#   the default configuration, apache2 needs to be started/stopped with\n#   /etc/init.d/apache2 or apache2ctl. Calling /usr/bin/apache2 directly will not\n#   work with the default configuration.\n\n\n# Global configuration\n#\n\n#\n# ServerRoot: The top of the directory tree under which the server's\n# configuration, error, and log files are kept.\n#\n# NOTE!  If you intend to place this on an NFS (or otherwise network)\n# mounted filesystem then please read the Mutex documentation (available\n# at <URL:http://httpd.apache.org/docs/2.4/mod/core.html#mutex>);\n# you will save yourself a lot of trouble.\n#\n# Do NOT add a slash at the end of the directory path.\n#\n#ServerRoot \"/etc/apache2\"\n\n#\n# The accept serialization lock file MUST BE STORED ON A LOCAL DISK.\n#\n#Mutex file:${APACHE_LOCK_DIR} default\n\n#\n# The directory where shm and other runtime files will be stored.\n#\n\nDefaultRuntimeDir ${APACHE_RUN_DIR}\n\n#\n# PidFile: The file in which the server should record its process\n# identification number when it starts.\n# This needs to be set in /etc/apache2/envvars\n#\nPidFile ${APACHE_PID_FILE}\n\n#\n# Timeout: The number of seconds before receives and sends time out.\n#\nTimeout 300\n\n#\n# KeepAlive: Whether or not to allow persistent connections (more than\n# one request per connection). Set to \"Off\" to deactivate.\n#\nKeepAlive On\n\n#\n# MaxKeepAliveRequests: The maximum number of requests to allow\n# during a persistent connection. Set to 0 to allow an unlimited amount.\n# We recommend you leave this number high, for maximum performance.\n#\nMaxKeepAliveRequests 100\n\n#\n# KeepAliveTimeout: Number of seconds to wait for the next request from the\n# same client on the same connection.\n#\nKeepAliveTimeout 5\n\n\n# These need to be set in /etc/apache2/envvars\nUser ${APACHE_RUN_USER}\nGroup ${APACHE_RUN_GROUP}\n\n#\n# HostnameLookups: Log the names of clients or just their IP addresses\n# e.g., www.apache.org (on) or 204.62.129.132 (off).\n# The default is off because it'd be overall better for the net if people\n# had to knowingly turn this feature on, since enabling it means that\n# each client request will result in AT LEAST one lookup request to the\n# nameserver.\n#\nHostnameLookups Off\n\n# ErrorLog: The location of the error log file.\n# If you do not specify an ErrorLog directive within a <VirtualHost>\n# container, error messages relating to that virtual host will be\n# logged here.  If you *do* define an error logfile for a <VirtualHost>\n# container, that host's errors will be logged there and not here.\n#\nErrorLog ${APACHE_LOG_DIR}/error.log\n\n#\n# LogLevel: Control the severity of messages logged to the error_log.\n# Available values: trace8, ..., trace1, debug, info, notice, warn,\n# error, crit, alert, emerg.\n# It is also possible to configure the log level for particular modules, e.g.\n# \"LogLevel info ssl:warn\"\n#\nLogLevel warn\n\n# Include module configuration:\nIncludeOptional mods-enabled/*.load\nIncludeOptional mods-enabled/*.conf\n\n# Include list of ports to listen on\nInclude ports.conf\n\n\n# Sets the default security model of the Apache2 HTTPD server. It does\n# not allow access to the root filesystem outside of /usr/share and /var/www.\n# The former is used by web applications packaged in Debian,\n# the latter may be used for local directories served by the web server. If\n# your system is serving content from a sub-directory in /srv you must allow\n# access here, or in any related virtual host.\n<Directory />\n\tOptions FollowSymLinks\n\tAllowOverride None\n\tRequire all denied\n</Directory>\n\n<Directory /usr/share>\n\tAllowOverride None\n\tRequire all granted\n</Directory>\n\n<Directory /var/www/uvdesk>\n\tOptions Indexes FollowSymLinks\n\tAllowOverride All\n\tRequire all granted\n</Directory>\n\n#<Directory /srv/>\n#\tOptions Indexes FollowSymLinks\n#\tAllowOverride None\n#\tRequire all granted\n#</Directory>\n\n\n\n\n# AccessFileName: The name of the file to look for in each directory\n# for additional configuration directives.  See also the AllowOverride\n# directive.\n#\nAccessFileName .htaccess\n\n#\n# The following lines prevent .htaccess and .htpasswd files from being\n# viewed by Web clients.\n#\n<FilesMatch \"^\\.ht\">\n\tRequire all denied\n</FilesMatch>\n\n\n#\n# The following directives define some format nicknames for use with\n# a CustomLog directive.\n#\n# These deviate from the Common Log Format definitions in that they use %O\n# (the actual bytes sent including headers) instead of %b (the size of the\n# requested file), because the latter makes it impossible to detect partial\n# requests.\n#\n# Note that the use of %{X-Forwarded-For}i instead of %h is not recommended.\n# Use mod_remoteip instead.\n#\nLogFormat \"%v:%p %h %l %u %t \\\"%r\\\" %>s %O \\\"%{Referer}i\\\" \\\"%{User-Agent}i\\\"\" vhost_combined\nLogFormat \"%h %l %u %t \\\"%r\\\" %>s %O \\\"%{Referer}i\\\" \\\"%{User-Agent}i\\\"\" combined\nLogFormat \"%h %l %u %t \\\"%r\\\" %>s %O\" common\nLogFormat \"%{Referer}i -> %U\" referer\nLogFormat \"%{User-agent}i\" agent\n\n# Include of directories ignores editors' and dpkg's backup files,\n# see README.Debian for details.\n\n# Include generic snippets of statements\nIncludeOptional conf-enabled/*.conf\n\n# Include the virtual host configurations:\nIncludeOptional sites-enabled/*.conf\n\n# vim: syntax=apache ts=4 sw=4 sts=4 sr noet"
  },
  {
    "path": ".docker/config/apache2/vhost.conf",
    "content": "<VirtualHost *:80>\n\t# The ServerName directive sets the request scheme, hostname and port that\n\t# the server uses to identify itself. This is used when creating\n\t# redirection URLs. In the context of virtual hosts, the ServerName\n\t# specifies what hostname must appear in the request's Host: header to\n\t# match this virtual host. For the default virtual host (this file) this\n\t# value is not decisive as it is used as a last resort host regardless.\n\t# However, you must set it for any further virtual host explicitly.\n\t#ServerName www.example.com\n\n\tServerAdmin webmaster@localhost\n\tDocumentRoot /var/www/uvdesk/public\n\n\t# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,\n\t# error, crit, alert, emerg.\n\t# It is also possible to configure the loglevel for particular\n\t# modules, e.g.\n\t#LogLevel info ssl:warn\n\n\tErrorLog ${APACHE_LOG_DIR}/error.log\n\tCustomLog ${APACHE_LOG_DIR}/access.log combined\n\n\t# For most configuration files from conf-available/, which are\n\t# enabled or disabled at a global level, it is possible to\n\t# include a line for only one particular virtual host. For example the\n\t# following line enables the CGI configuration for this host only\n\t# after it has been globally disabled with \"a2disconf\".\n\t#Include conf-available/serve-cgi-bin.conf\n</VirtualHost>\n\n# vim: syntax=apache ts=4 sw=4 sts=4 sr noet"
  },
  {
    "path": ".docker/config/php/php.ini",
    "content": "memory_limit=1024M"
  },
  {
    "path": ".dockerignore",
    "content": "# Ignore files that aren't required to be in the build context when building images\n/var/log/*\n/var/cache/*\n/Dockerfile"
  },
  {
    "path": ".gitattributes",
    "content": "public/* linguist-vendored\ntemplates/* linguist-vendored"
  },
  {
    "path": ".github/CONTRIBUTING.md",
    "content": "## How to contribute to UVdesk(Community)\n\n\n### **Bug Reporting**\n\n1. Verify that the bug was not already reported by searching on GitHub in the [Issues section](https://github.com/uvdesk/community-skeleton/issues) or supported dependent repositories [Core Framework](https://github.com/uvdesk/core-framework/issues), [Support Center](https://github.com/uvdesk/support-center-bundle), [Mailbox Component](https://github.com/uvdesk/mailbox-component/issues), [Automation bundle](https://github.com/uvdesk/automation-bundle/issues), [Extension Framework](https://github.com/uvdesk/extension-framework)\nIf you're unable to find an open issue, [open a new one](https://github.com/uvdesk/community-skeleton/issues/new?assignees=&labels=&template=Bug_report.md).\n\n2. Verify that the bug you are reporting is a general issue and not specific to your individual setup.  \nFor individual issues please use the [Community Forum](https://forums.uvdesk.com/).\n\n#### **Did you fix a bug?**\n\n1. To provide a code contribution for an issue you will need to set up your own fork of the [community-skeleton repository](https://github.com/uvdesk/community-skeleton) or supported depended repositories ([core](https://github.com/uvdesk/core-framework), support(https://github.com/uvdesk/support-center-bundle) etc)\nMake your code changes, commit the changes and make a [Pull Request](https://help.github.com/articles/about-pull-requests/) to the respective repository.\n2. Separate each fix into a new branch in your repository and name it with the issue ID e.g. issue-1456.\n3. When committing to your individual branch, please try and use the following as your commit message  \n```Fixed #1456 - <the subject of the issue>```  \n4. Please follow the pull request [template](https://github.com/uvdesk/community-skeleton/blob/master/.github/PULL_REQUEST_TEMPLATE.md) as much as possible.\n\n### **Did you create a new feature or enhancement?**\n1. To provide a code contribution for a new feature or enhancement a [feature request](https://github.com/uvdesk/community-skeleton/issues/new?assignees=&labels=&template=2_Feature_request.md) report should be created in case it doesn't exist.\n2. To contribute a feature to UVdesk, you must create a forked repository and set up your git and development environment.\n3. Make sure your commit messages are relevant and descriptive.\n4. Please follow the pull request [template](https://github.com/uvdesk/community-skeleton/blob/master/.github/PULL_REQUEST_TEMPLATE.md) as much as possible."
  },
  {
    "path": ".github/FUNDING.yml",
    "content": "# These are supported funding model platforms\n\nopen_collective: uvdesk"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/Bug_report.md",
    "content": "---\nname: \"🐛 Bug Report\"\nabout: 'Report a general library issue.'\n---\n\n# Bug report\n\n### Title\n**Just a quick sentence to brief your trouble with UVDesk or something associated with it.**\n**Please be calm, short and emphasize on points.**\n\n### Issue Description\n**Description helps the developers to understand the bug. It describes the problem encountered or some after effect of some kind.**\n\n### Preconditions\n**Please provide as detailed information about your environment as possible.**\n\n    1. framework Version.\n    2. Commit id.\n\n### Steps to reproduce\n**It is important to provide a set of clear steps to reproduce this bug.If relevant please include code samples.**\n\n    1. step1\n    2. step2\n\n### Expected result\n**Tell us what should happen.**\n\n*   [Screenshots, logs or description]\n\n### Actual result\n\n>    **Tell us what happens instead.**\n\n* [points....]"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/Feature_request.md",
    "content": "---\nname: \"💡 Feature Request\"\nabout: 'Share your ideas with our team or request new features'\n---"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/Support_question.md",
    "content": "---\nname: ⛔ Support Question\nabout: Visit https://support.uvdesk.com/ to learn more about how the uvdesk team can assist you\n\n---\n\nWe use GitHub issues only to discuss about uvdesk bugs and new features. For customizations and extended support:\n\n- Contact us at support@uvdesk.com\n- Visit official support website (https://support.uvdesk.com/en/)\n- Visit our community forums (https://forums.uvdesk.com)\n\nThanks!\n"
  },
  {
    "path": ".github/PULL_REQUEST_TEMPLATE.md",
    "content": "<!--\nThank you for contributing to UVDesk! Please fill out this description template to help us to process your pull request.\n-->\n\n### 1. Why is this change necessary?\n\n\n### 2. What does this change do, exactly?\n\n\n### 3. Please link to the relevant issues (if any).\n"
  },
  {
    "path": ".github/SECURITY.md",
    "content": "Security Policy\n===============\n\n⚠ PLEASE DON'T DISCLOSE SECURITY-RELATED ISSUES PUBLICLY, SEE BELOW.\n\nIf you have found a security issue in Uvdesk, please send the details to support@uvdesk.com and don't disclose it publicly until we can provide a fix for it.\n\nThanks!\n"
  },
  {
    "path": ".gitignore",
    "content": "\n###> symfony/framework-bundle ###\n/.env.local\n/.env.local.php\n/.env.*.local\n/config/secrets/prod/prod.decrypt.private.php\n/public/bundles/\n/var/\n/vendor/\n###< symfony/framework-bundle ###\n\n###> symfony/phpunit-bridge ###\n.phpunit.result.cache\n/phpunit.xml\n###< symfony/phpunit-bridge ###\n\n###> phpunit/phpunit ###\n/phpunit.xml\n.phpunit.result.cache\n###< phpunit/phpunit ###\n"
  },
  {
    "path": "CHANGELOG-1.0.md",
    "content": "CHANGELOG for 1.0.x\n===================\n\nThis changelog references any relevant changes introduced in 1.0 minor versions.\n\n* 1.0.17 (2021-10-27)\n    * **Misc. Updates:**\n        * Compatibility with PHP 8.\n        * Updated error pages design and added links.\n        * Saved reply search option added with default focus on search bar to save clicks.\n        * Added yellow background for note on ticket reply box.\n        * Layout updates on ticket view for scroller and search dropdown.\n        * Cache clear button added on dashboard so that user can clear cache of project without \n        running command using CMD.\n        * Ticket conversion issue during mailbox refresh command so now user will able to see \n        error on CMD if any error.\n        * Added route for dubugging ticket creation issue using email.\n        * All Attachment remove from it's physical path as well if we delete any ticket or profile etc.\n        * Ticket Transfer functionality added if removing a agent all tickets will assigned to another agent using workflow.\n        * Added some default workflow and email templates for collaborators.\n        * Updated \"last update\" filter on customer ticket listing.\n\n    * **Bug Fixes:**\n        * **Issue #492:**  agent password creation redirects to customer login page.\n        * **Issue #488:**  Better managment of email fetching in case of errors.\n        * **Issue #485:**  Crontab.\n        * **Issue #484:**  No puedo enviar ni recibir correos\n        * **Issue #483:**  Get laravel 8 Uvdesk\n        * **Issue #480:**  Improve 404 page enhancement.\n        * **Issue #476:**  Fix the default email template to customer when ticket is created.\n        * **Issue #475:**  Error when downloading attachment from customer side\n        * **Issue #474:**  Add an option to not rename attachments.\n        * **Issue #472:**  Login Button backend shows no reaktion.\n        * **Issue #465:**  Sort ticket by latest updated.\n        * **Issue #466:**  Loading issue of Tickets which have more Text messages.\n        * **Issue #464:**  Line breaks are not or not nicely displayed.\n        * **Issue #462:**  Error Create Ticket.\n        * **Issue #461:**  swiftmailer.yaml\n        * **Issue #459:**  Disable cloudflare CDN for static contents.\n        * **Issue #457:**  swift error.\n        * **Issue #455:**  Move the HelpDesk string to the custom field.\n        * **Issue #454:**  Can not install UVdesk after install of Composer 2.x.\n        * **Issue #452:**  error deleting ticket permanently.\n        * **Issue #452:**  User login error message not translated.\n        \n* 1.0.16 (2021-08-23)\n    * **Misc. Updates:**\n        * Kudos feature added for UVdesk opensource.\n          https://support.uvdesk.com/es/blog/uvdesk-what-is-kudos\n        * Added a new option for mailbox setting that Email should be deleted from inbox after fetch and converted into ticket if user select that checkbox.\n        * Added password encryption for Swift mailer and  Mailbox.\n        * Corrected and added timestamp setting for agent and customer both.\n        * Collaborator replies adding to the ticket thread.\n        * Flash Message with a warning if swift mailer is not setup or working with ticket create process.\n        * Profile picture remove option added for customer and agent both.\n        * Reply to CC and BCC users from customer panel if added.\n        * Fixed multiple security issues with opensource.\n        * Added multiple missing translation in files.\n            \n    * **Bug Fixes:**\n        * **Issue #423:**  Status of the ticket not transalted in customer ticket list.\n        * **Issue #428:**  Attachment and Logo Issue - Web Installer Public Folder Issue.\n        * **Issue #435:**  Newer TLDs are considered invalid.\n        * **Issue #437:**  can’t upload logo after updating to 1.0.14.\n        * **Issue #438:**  Unable to finish installation - Error during load/superuser.\n        * **Issue #439:**  Update jQuery and Underscore.js\n        * **Issue #433:**  Email should be deleted from mailbox after fetch.\n        * **Issue #429:**  Invalid type for path \"uvdesk_mailbox.mailboxes.Support.imap_server.password\". Expected scalar, but got object.\n        * **Issue #417:**  Potential Security vulnerability.\n        * **Issue #401:** Need to implement a workflow that alert if any issue with sending email occurs.\n        * **Issue #382:** Improve new user experience: install and setup.\n        * **Issue #410:** Unable to create super user during installation.\n        * **Issue #375:** [Feature request] support extensions.\n        * **Issue #372:** Option to remove emails from mailbox after they are fetched.\n        * **Issue #340:** Option for operator and for the customer to remove the profile picture.\n        * **Issue #326:** Issue with translations on visitor and operator side.\n        * **Issue #279:** Add possibility to delete emails when is added to the ticket.\n        * **Issue #350:** Users avatar not delted from the server\n        * **Issue #276:** Issues wth swiftmailer password if contains specials characters. Also save password not encrypted seems not good for security.\n\n* 1.0.15 (2021-08-21)\n    * **Misc. Updates:**\n        * Kudos feature added for UVdesk opensource.\n          https://support.uvdesk.com/es/blog/uvdesk-what-is-kudos\n        * Added a new option for mailbox setting that Email should be deleted from inbox after fetch and converted into ticket if user select that checkbox.\n        * Added password encryption for Swift mailer and  Mailbox.\n        * Corrected and added timestamp setting for agent and customer both.\n        * Collaborator replies adding to the ticket thread.\n        * Flash Message with a warning if swift mailer is not setup or working with ticket create process.\n        * Profile picture remove option added for customer and agent both.\n        * Reply to CC and BCC users from customer panel if added.\n        * Fixed multiple security issues with opensource.\n        * Added multiple missing translation in files.\n            \n    * **Bug Fixes:**\n        * **Issue #423:**  Status of the ticket not transalted in customer ticket list.\n        * **Issue #428:**  Attachment and Logo Issue - Web Installer Public Folder Issue.\n        * **Issue #435:**  Newer TLDs are considered invalid.\n        * **Issue #437:**  can’t upload logo after updating to 1.0.14.\n        * **Issue #438:**  Unable to finish installation - Error during load/superuser.\n        * **Issue #439:**  Update jQuery and Underscore.js\n        * **Issue #433:**  Email should be deleted from mailbox after fetch.\n        * **Issue #429:**  Invalid type for path \"uvdesk_mailbox.mailboxes.Support.imap_server.password\". Expected scalar, but got object.\n        * **Issue #417:**  Potential Security vulnerability.\n        * **Issue #401:** Need to implement a workflow that alert if any issue with sending email occurs.\n        * **Issue #382:** Improve new user experience: install and setup.\n        * **Issue #410:** Unable to create super user during installation.\n        * **Issue #375:** [Feature request] support extensions.\n        * **Issue #372:** Option to remove emails from mailbox after they are fetched.\n        * **Issue #340:** Option for operator and for the customer to remove the profile picture.\n        * **Issue #326:** Issue with translations on visitor and operator side.\n        * **Issue #279:** Add possibility to delete emails when is added to the ticket.\n        * **Issue #350:** Users avatar not delted from the server\n        * **Issue #276:** Issues wth swiftmailer password if contains specials characters. Also save password not encrypted seems not good for security.\n\n* 1.0.14 (2021-06-19)\n    * **Misc. Updates:**\n        * Web installer updates for making installtion process easier and smooth also added progess bar.\n            - Extra checks for file permission https://prnt.sc/11ypcoo , https://prnt.sc/11ypvna\n            - Progess Bar with web installer: https://prnt.sc/11ypg5c , https://prnt.sc/11yp43d\n        * compatibility with composer 2.\n        * Agent Activity section added under report section. \n          https://prnt.sc/124brkr, https://prnt.sc/124bttl, https://prnt.sc/124bx1y\n        * Announcement section added for uvdesk opensource.\n          https://tinyurl.com/yf8zx2xy, https://prnt.sc/1239xpy\n        * ZH_CN (Chinese) Translation file added into project.\n        * Site_url will automatically update when saving the email setting.\n\n    * **Bug Fixes:**\n        * **Issue #404:**  UVdesk getting frequently logged out when clicking on links.\n        * **Issue #405:**  Redirect users to login page after email validation\n        * **Issue #406:**  Is there a way I could hid the menu links and dashboard links.\n        * **Issue #407:**  Ticket forwarding option forward the entire thread. \n        * **Issue #408:**  duplicate key on ../translation/messages.ar.yml file.\n        * **Issue #409:**  Emails not retrieving.\n        * **Issue #411:**  error when updating composer inside latest version.\n        * **Issue #412:**  i have installed uvdesk open source and i have configured mailbox, email settings and swift mailer but the customer is not able to receive a mail when replied to a ticket ? \n        * **Issue #415:**  remove debugger from the installation wizard.\n\n* 1.0.13 (2021-04-02)\n    * **Misc. Updates:**\n        * **Last reply option added on ticket list to check when last time reply added on ticket.**\n        * **reCAPTCHA setting option added on admin panel with profile section now admin can set recaptcha credentails on admin panel and can enable it.**\n        * **Disabled old dates for datapicker in broadcast section.**\n        * **Strong password added (for security purpose) for all places from where user create and update password.**\n        * **Current version updated in dashboard in footer so that user have idea which version he is using currently.**\n        * **Added some more option on admin/agent side when reply to a ticket i.e hyperlink, Spellcheck, adding a image by a external link, source code and differnt style formats option added into editor.**\n        * **Iframe support in editor for adding Youtube link etc In article section(knowledgebase).**\n        * **Fancy style added for Blockquote https://prnt.sc/xle8c4**\n        * **New auto fixtures added for workflow so user don't need to add workflow for the same.**\n        * **Added CC option for initial thread on ticket https://prnt.sc/1118g8e.**\n        * **Added option for automatically label assign to ticket from workflow.**\n        * **All latest version links updated for jquery, backbone and underscore js.**\n        * **Time format added for customer panel on profile section.**\n        * **Customer redirection after ticket create from customer panel - If customer is log in then will redirect to ticket listing if not then will redirect to knowledgebase.**\n        * **Time format and time zone will automatically assign to customer and agent now which is set in admin side branding page.**\n        * **Added New polish translation file(pl).**\n        \n    * **Bug Fixes:**\n        * All controller code updates as according to symfony version(4.3) and maximum deprication messages removed from project.\n        * Docker Fixes (FROM ubuntu:latest to FROM ubuntu:18.04 in Dockerfile)\n        * Docker composer version updated.\n        * Mail to customer in case of ticket status update mailing issue fixed.\n        * Email regix updated for swiftmailer as from front end it is only allowing .com/.in etc not any other custom emails like .support\n        * tr and it Translation files updates.\n        * Branding custom css and js as duplicate issue resolved.\n        * Issue with Locale in mail if ticket created using email was not correct and has been fixed now.\n        * Groups and Teams Remove issue fixed for saved replies.\n        * Collaborator ticket view issue on customer panel (not able to see tickets) resolved.\n        * My tickets tab issue for agents as agent only see the ticket assigned to admin only not their own ticket assigned to him Resolved.\n        * Email Receiving issue when assign a ticket to agent resolved.\n        * Updated addPart for plain text in mail send function as in some cases email send was not working.\n        * Translation update for reset password page.\n        * Method change to getOneOrNullResult for mail to agent action.\n        * Mail to CC and BCC users without ticket link as they are not really the customer and can not login into customer panel.\n        * Forwording and Auto forwording emails conversion issue resolved.\n        * Pagination issue on ticket listing on customer panel also for tag on admin panel         resolved.\n        * Mailbox ticket create issue if Email send on capitalize email Id.\n        * Email trailing issue on ticket reply if agent and customer both reply on ticket using email id resolved.\n        * Seachbar component on dashoard based on permission issue fixed now.\n        * Deleting the trash ticket issue has been fixed.\n        * Issue with prod mode when clearing the cache resovled.\n        * Saved reply disapper issue for agent if agent update anything Issue has been fixed now.\n        * Article and Category createdAt filter issue has been fixed now.\n        * Disabled user account and when user try to login then correct message for account disablity.\n        * Panel sidebar active status issue fixed.\n\n* 1.0.12 (2020-07-27)\n    * **Misc. Updates:**\n        * Added Mailbox filtering in ticket list. Now tickets can be filter according with different Mailboxes. \n        * Ticket type sorted alphabatically for ticket creation form and other places.\n        * Translation file updates for different languages.\n        * Updates in all dependent bundles.\n        \n    * **Bug Fixes:**\n        * **Issue #292:**  Error during install: Table 'helpdesk.uv_support_role' doesn't exist.\n        * **Issue #290:**  The cogs keep spinning!.\n        * **Issue #284:**  Issues with Italian translations.\n        * **Issue #275:**  need to add ar translation for the admin login page.  \n        * **Issue #273:**  duplicate key on ../translation/messages.ar.yml file.\n        * **Issue #269:**  Failed to connect to DB if DB port other then 3306.\n        * **Issue #269:**  Dockerfile obsolete.  \n        * **Issue #267:**  Variable \"user_service\" does not exist.\n        \n* 1.0.11 (2020-05-27)\n    * **Misc. Updates:**\n        * Dependedent bundles updates and issue fixes.\n        * Ticket duplicate issue in conversation removed.\n          \n    * **Bug Fixes:**\n        * **Issue #257:**  Installation never finish.\n        * **Issue #259:**  /wizard/xhr/load/super-user error 500.\n        * **Issue #261:**  Cannot create API Access Token.\n        * **Issue #262:**  first new rule in workflow and email sending stopped working.\n        * **Issue #263:**  composer update caused uvdesk broken.\n        * **Issue #265:**  When the setup wizard mode on... \n       \n* 1.0.10 (2020-04-17)\n    * **Misc. Updates:**\n        * Added missing translation words for french.\n        * Change processing function and removed unnecessary code for speed up.\n        * Dependedent bundles updates for speed up project.\n\n        \n    * **Bug Fixes:**\n        * **Issue #255:**  Unable to install the App (Database Url malformed).\n        * **Issue #256:**  Failed to exec 'php bin/console uvdesk:configure-helpdesk' on Ubuntu PHP 7.4.\n        * **Resolved speed issue with previous version.**\n        \n\n* 1.0.9 (2020-03-17)\n    * **Misc. Updates:**\n        * Added Missing translation for different languages.\n        * Installer miner changes.\n    * **Bug Fixes:**\n        * **Issue #252:**  Locale code from uvdesk.yaml file gets removed when update email settings.\n        * **Issue #253:**  Translation while search any keywords in dashboard.\n        * **Issue #254:**  Deleted Tickets Reappearing after uvdesk:referesh.\n\n* 1.0.8 (2020-02-12)\n    * **Features**\n        * **Translation Support (Multilingual).**\n    * **Misc. Changes:**\n        * .htaccess mode rewrite condition changes(For API Bundle).\n    * **Issue #247:**  Translator\n    * **Issue #246:**  UVDesk hangs trying to create Customer / Agent / Team / Group.\n    * **Issue #242:** Database migration gets failed if automatically created db in production environment.\n    * **Issue #242:** Language Spanish.  \n\n* 1.0.7 (2020-01-27)\n    * **Misc. Changes:**\n        * .htaccess mode rewrite condition changes.\n        *  Web Installer design changes.\n        *  Dependent packages updates.\n\n    * **Issue #238:**  Showing older version in web-installer  \n\n* 1.0.6 (2020-01-06)\n    * **Misc. Changes:**\n        * Web Installer design changes.\n\n* 1.0.5 (2019-11-15)\n    * **Issue #226:** Missing icon for internal server error page\n    * **Misc. Changes:**\n        * Installation wizard (web & cli) now allows users to automaticatlly create a database if it doesn't exist\n\n* 1.0.4 (2019-10-31)\n    * **Issue #137:** Dockerize application for easy installation\n    * **Feature:** Easily dockerize your helpdesk project to deploy it from within a container\n    * **Misc. Changes:**\n        * Updated README.md and included instructions to deploying the project from within a docker conatiner\n\n* 1.0.3 (2019-10-23)\n    * **Misc. Changes:**\n        * Updated web installer for better error reporting\n        * Updated README.md with link to the official gitter chat for the community project\n\n* 1.0.1 (2019-10-15)\n    * **Issue #209:** User's session out will redirect to 404 error page\n    * **Misc. Changes:**\n        * Updated dependent packages to latest stable release\n\n* 1.0.0 (Released on 2019-10-09)\n    * **Issue #163:** Swift mailer and Email settings configuration for outlook not working (raised by alexanderoitx)\n    * **Issue #135:** MAMP not working as 127.0.0.1 but works as localhost (raised by vaishaliwebkul)\n    * **Issue #205:** Wizard check-requirements rendering errors (raised by piyushwebkul)\n    * **Issue #171:** Welcome ticket must be there on ticket panel (raised by vaishaliwebkul)\n    * **Issue #154:** Multiple error message (raised by avneesh-webkul)\n    * **Issue #94:** Agent unable to view ticket which are assigned to the group (raised by vaishaliwebkul)\n    * **Issue #97:** All the errors user get are in developer mode so please convert them in production mode (raised by vaishaliwebkul)\n    * **Issue #175:** Stuck at step 4/5 while configuration (raised by vaishaliwebkul)\n    * **Issue #134:** Request Feature : hit on setup page without accessing project's public folder on browser  (raised by vaishaliwebkul)\n    * **Issue #193:** Unable to run via Composer: (raised by alexsdesign)\n    * **Issue #196:** resetting password for super user update credentials link redirection to home page (raised by smallBiz)\n    * **Issue #201:** Redis server went away when installing (raised by KlaasT)\n    * **Issue #206:** No show Page Navigation (raised by sbonzanni)\n    * **Issue #203:** Production Environment Http Error pages (raised by piyushwebkul)\n    * **Issue #183:** Installer updated. (raised by piyushwebkul)\n    * **Issue #145:** Permission denied error while Configuration  (raised by vaishaliwebkul)\n    * **Issue #207:** Translation Added (raised by anmol107)\n    * **Issue #122:** MIME type guessers issue while adding attachments for WAMP stack (raised by vaishaliwebkul)\n    * **Issue #187:** Reset database configuration issue from web installer (raised by vaishaliwebkul)\n    * **Issue #200:** Created issue templates (raised by prashant-webkul)\n    * **Issue #197:** Installation Wizard not proceeding further configuration-database step, after pressing the cancel button. (raised by piyushwebkul)\n    * **Issue #123:** Memory size issue occur while create project using composer command  (raised by vaishaliwebkul)\n    * **Issue #96:** Session out error shows instead of redirect to user at login panel (raised by vaishaliwebkul)\n    * **Issue #164:** Feature to set default timezone (raised by vaishaliwebkul)\n    * **Issue #167:** can't clone repo due to memory issue (raised by tzak902)\n    * **Issue #168:** can't set password for agent (raised by tzak902)\n    * **Issue #169:** Forgot password will reset the old password immediately (raised by tzak902)\n    * **Issue #190:** An error occured while loading the web debug tool bar (raised by vaishaliwebkul)\n    * **Issue #192:** .htaccess mod_rewrite \"No input file specified.\" (raised by VahanPWNS)\n    * **Issue #149:** Cannot save article (raised by kzsfluxus)\n    * **Issue #101:** Show meaningful warning messages with all of the mandatory input fields (raised by vaishaliwebkul)\n    * **Issue #182:** Added a redirection route post Installation (raised by piyushwebkul)\n    * **Issue #181:** some changes for files (raised by piyushwebkul)\n    * **Issue #136:** Design Issue while resizing menu icon present at dashboard (raised by vaishaliwebkul)\n    * **Issue #176:** Call to a member function getPartialDetails() on null when create ticket (raised by vaishaliwebkul)\n    * **Issue #180:** 0.1 (raised by piyushwebkul)\n    * **Issue #146:** Case sensitive route found for site_URL (raised by vaishaliwebkul)\n    * **Issue #179:** UVdesk banner logo link redirects to 404 page in prod mode (raised by vaishaliwebkul)\n    * **Issue #172:** Ticket type description data fetch in drop down list instead code (raised by vaishaliwebkul)\n    * **Issue #178:** entity compatibility related update (raised by shubhwebkul)\n    * **Issue #177:** Configuration Failed at 4/5 step (raised by vaishaliwebkul)\n    * **Issue #104:** Search bar is hidden back to left menu bar (raised by vaishaliwebkul)\n    * **Issue #165:** Collaborator unable to view ticket  (raised by vaishaliwebkul)\n    * **Issue #174:** maker bundle update (raised by piyushwebkul)\n    * **Issue #162:** Mailbox refresh issue (raised by rakesh10933)\n    * **Issue #155:** Server Requirements (raised by kvnsmn)\n    * **Issue #170:** ticket view issue  (raised by vaishaliwebkul)\n    * **Issue #166:** Profiler Added (raised by papnoisanjeev)\n    * **Issue #150:** Permission error when add attachment (raised by vaishaliwebkul)\n    * **Issue #157:** No Route found exception (raised by vaishaliwebkul)\n    * **Issue #159:** Link is not clickable for missing extension (raised by vaishaliwebkul)\n    * **Issue #138:** Update README.md file by adding mailbox component bundle  (raised by vaishaliwebkul)\n    * **Issue #148:** Transport needed for smtp server (raised by vaishaliwebkul)\n    * **Issue #141:** If already setup uvdesk , it again redirect us to web installer when open /public directory (raised by vaishaliwebkul)\n    * **Issue #158:** community-skeleton issue-154 (raised by kumarSaurabh27)\n    * **Issue #152:** Update README.md (raised by vaishaliwebkul)\n    * **Issue #160:** Error : Mailbox-refresh command not execute on CentOS 7 (raised by vaishaliwebkul)\n    * **Issue #161:** Community Edition Installation Issue (raised by alexanderoitx)\n    * **Issue #151:** ERROR: There are extensions that haven't been installed or are currently disabled  (raised by faraimupfuti)\n    * **Issue #153:** Is the public folder required after uvdesk install ? (raised by iGitnow)\n    * **Issue #156:** UVdesk Admin Panel Login issue. (raised by rakesh10933)\n    * **Issue #144:** Signature is not getting updated on the ticket  (raised by Himaniwebkul)\n    * **Issue #133:** Open wizard when project root is accessed & installer icons update (raised by shubhwebkul)\n    * **Issue #116:** Redirecting route from installer to knowledgebase panel (disable web-installer) (raised by shubhwebkul)\n    * **Issue #143:** Error on install (raised by eyedocs)\n    * **Issue #142:** Rewrite rule with ISS (raised by mills217)\n    * **Issue #139:** tttttuuuuu (raised by deadmaster566)\n    * **Issue #91:** Incorrect ticket status count's at agent panel  (raised by vaishaliwebkul)\n    * **Issue #107:** Broadcast Message timer UI has Inconsistent style (raised by vaishaliwebkul)\n    * **Issue #111:** Attachment issue when customer is sending attachment in reply (raised by UVvidu)\n    * **Issue #129:** Request Feature: Pre Installation extension description on web installer (raised by vaishaliwebkul)\n    * **Issue #132:** Website prefix value set for member/customer panel are same using command line (raised by vaishaliwebkul)\n    * **Issue #128:** Check Design of web installer  (raised by vaishaliwebkul)\n    * **Issue #131:** Website prefix default value not set on command line (raised by vaishaliwebkul)\n    * **Issue #127:** Extension list in web installer and resolved issues (raised by shubhwebkul)\n    * **Issue #126:** Request Feature : to add website prefix functionality using command  (raised by vaishaliwebkul)\n    * **Issue #118:** Zip file for all version of php not updated with current live code (raised by vaishaliwebkul)\n    * **Issue #125:** Issue during installation of project using composer (raised by vaishaliwebkul)\n    * **Issue #48:** Vulnerability found in all email type input fields (raised by vaishaliwebkul)\n    * **Issue #110:** Zip 7.2 is not getting migrated with the database after [Step 5/5]  (raised by UVvidu)\n    * **Issue #102:** UI issue when window resolution is minimize (raised by vaishaliwebkul)\n    * **Issue #124:** Remove non unique select type element from the swiftmailer (raised by vaishaliwebkul)\n    * **Issue #121:** Code refactoring (raised by shubhwebkul)\n    * **Issue #119:** No Route found from web installer to agent and knowledgebase panel for zip file (raised by vaishaliwebkul)\n    * **Issue #120:** Back button for navigation purpose to the previous step in web installer (raised by shubhwebkul)\n    * **Issue #112:** Attachment issue when agent is attaching image in reply (raised by UVvidu)\n    * **Issue #113:** No check box for account status active part in Agent creation panel (raised by UVvidu)\n    * **Issue #114:** No check box to choose group in Agent creation part (raised by UVvidu)\n    * **Issue #115:** No check box in permission - in agent creation section  (raised by UVvidu)\n    * **Issue #117:** Installer version update (raised by shubhwebkul)\n    * **Issue #109:** issue of redirection to member login and knowledgebase (raised by shubhwebkul)\n    * **Issue #59:** Email template :- Placeholder should be update according to selected templated, also design issue is there in placeholder (raised by vaishaliwebkul)\n    * **Issue #108:** URL change in wizards.js (raised by papnoisanjeev)\n    * **Issue #75:** For the document (.pdf, .doc, .xls) attach with ticket reply icon is missing (raised by vaishaliwebkul)\n    * **Issue #105:** All type of files will open to select while User profile image insert (support only PNG/JPG) format (raised by vaishaliwebkul)\n    * **Issue #27:** Check the message body which contain unnecessary description attach with reply in ticket (raised by vaishaliwebkul)\n    * **Issue #68:** Company logo is not showing on email which was set in email template (raised by vaishaliwebkul)\n    * **Issue #82:** Customer reply to ticket by adding text effects like (Bold,Italic) then changes not get reflect  (raised by vaishaliwebkul)\n    * **Issue #98:** Design end issue for every view when adjust resolution in window (raised by vaishaliwebkul)\n    * **Issue #77:** Sorting based on (ticket id,customer name etc) to ticket list not sorting ticket list as selected option (raised by vaishaliwebkul)\n    * **Issue #79:** When save super admin credentials their must be a option of first name and last name field as mandatory (raised by vaishaliwebkul)\n    * **Issue #63:** Tickets which are assign to particular label ,when open that label :- not contain actual no of tickets (raised by vaishaliwebkul)\n    * **Issue #49:** Unable to view customer and agent list at admin panel due to Full Group Join By Clause (raised by vaishaliwebkul)\n    * **Issue #88:** Filter tickets by saved replies showing wrong ticket status (raised by vaishaliwebkul)\n    * **Issue #99:** Only for single ticket pagination shows at agent panel (raised by vaishaliwebkul)\n    * **Issue #100:** web installer next step by just hitting enter (raised by shubhwebkul)\n    * **Issue #76:** If don't have required PHP extension still Web installer working for further steps (raised by vaishaliwebkul)\n    * **Issue #93:** At agent panel, option available in ticket list mass action should show by assigned permission to that agent (raised by vaishaliwebkul)\n    * **Issue #80:** Customer reply to ticket by email then thread content mismatch (raised by vaishaliwebkul)\n    * **Issue #85:** Provided admin panel and knowledgebase link at setup page should open with new tab (raised by vaishaliwebkul)\n    * **Issue #62:** If customer has more than one ticket ,still with ticket detail it's showing that customer has only 0 more ticket  (raised by vaishaliwebkul)\n    * **Issue #58:** When customer reply to their previous ticket using mail then ticket isn't open at admin panel (raised by vaishaliwebkul)\n    * **Issue #66:** Need to remove footer from email templates (raised by vaishaliwebkul)\n    * **Issue #84:** Unable to unassigned team/group from the ticket (raised by vaishaliwebkul)\n    * **Issue #55:** No document/image found when customer create ticket by attaching documents via mail (raised by vaishaliwebkul)\n    * **Issue #90:** Attachment issue (raised by Himaniwebkul)\n    * **Issue #22:** Search bar for article given at customer panel not response (raised by vaishaliwebkul)\n    * **Issue #69:** User unable to open ticket link attached with body of email template on their mail id (raised by vaishaliwebkul)\n    * **Issue #56:** New customer not receive account activation mail when customer created (raised by vaishaliwebkul)\n    * **Issue #54:** Set default image shown at knowledgebase front  (raised by vaishaliwebkul)\n    * **Issue #92:** Unable to remove assigned collaborator to ticket from the customer panel (raised by vaishaliwebkul)\n    * **Issue #95:** Fixed issues and prefixes update (raised by shubhwebkul)\n    * **Issue #78:** Admin name is missing when select forward a ticket to - > agent (raised by vaishaliwebkul)\n    * **Issue #24:** Need warning message while Configure a database if any detail found invalid  (raised by vaishaliwebkul)\n    * **Issue #60:** At branding, there is color picker window missing to select colors  (raised by vaishaliwebkul)\n    * **Issue #81:** In workflow if select condition as \"agent is equal to\" ,unable to fetch agent list (raised by vaishaliwebkul)\n    * **Issue #83:** Agent list missing from workflow when select option as transfer ticket (raised by vaishaliwebkul)\n    * **Issue #87:** Spell error at warning message shown with naming field of email template (raised by vaishaliwebkul)\n    * **Issue #89:** Agent Reset password page don't have validations (raised by vaishaliwebkul)\n    * **Issue #21:** Back window is visible when success notification popup comes at customer panel (raised by vaishaliwebkul)\n    * **Issue #36:** email address and password fields show warning before written anything while save super admin credentials (raised by vaishaliwebkul)\n    * **Issue #43:** Validation not apply correctly on database configuration page (raised by vaishaliwebkul)\n    * **Issue #46:** Mails are not received by customer by any reply is added to their ticket (raised by vaishaliwebkul)\n    * **Issue #52:** Reply to ticket from admin panel by attaching zip file, then files not get found (raised by vaishaliwebkul)\n    * **Issue #50:** Mails aren't fetch as ticket at admin end after configure a mailbox (raised by vaishaliwebkul)\n    * **Issue #45:** Saved Replies message body is saved blank (raised by vaishaliwebkul)\n    * **Issue #37:** At the part of Website Configuration, add some restrictions when add Prefix value for member/customer panel (raised by vaishaliwebkul)\n    * **Issue #72:** Agent/Customer Forget Password mail not received When user forget password (raised by vaishaliwebkul)\n    * **Issue #74:** Workflow :- When apply action as \"mail to agent\" then option to select agent are missing (raised by vaishaliwebkul)\n    * **Issue #25:** When save super admin account, specify the minimum password length (raised by vaishaliwebkul)\n    * **Issue #7:** Show warning if configure database with non-exist Database, or username/password (raised by vaishaliwebkul)\n    * **Issue #8:** Check Image Validation at agent/customer profile (raised by vaishaliwebkul)\n    * **Issue #73:** Ticket Generate Success Mail For Customer not Received (raised by vaishaliwebkul)\n    * **Issue #65:** Customer not receive any attachment on their mail id when agent reply from admin panel by attaching documents (raised by vaishaliwebkul)\n    * **Issue #61:** Tickets which are deleted not move into trashed (raised by vaishaliwebkul)\n    * **Issue #86:** Unable to unassign team from the ticket in which specific team was already assigned (raised by vaishaliwebkul)\n    * **Issue #71:** web installer events update (raised by shubhwebkul)\n    * **Issue #70:** Notice Template for option in predefined email templates which are need to be selected by default  (raised by vaishaliwebkul)\n    * **Issue #67:** Need to disable Kudos from the custome panel (raised by vaishaliwebkul)\n    * **Issue #51:** Attached task option need to be removed from ticket list  (raised by vaishaliwebkul)\n    * **Issue #53:** When ticket is created by attaching single zip file-- no single zip found with ticket (raised by vaishaliwebkul)\n    * **Issue #57:** Website configuration details get saved without installing database tables (raised by vaishaliwebkul)\n    * **Issue #64:** web installer bug fixes (raised by shubhwebkul)\n    * **Issue #15:** All the ticket's detail can be view by agent(even that ticket not assigned to related agent) (raised by vaishaliwebkul)\n    * **Issue #16:** User get put in CC/BCC mail not added to the ticket reply (raised by vaishaliwebkul)\n    * **Issue #26:** File directory not found ,when get to download zip files attached with ticket reply  (raised by vaishaliwebkul)\n    * **Issue #30:** At customer panel some of the icon image are missing (raised by vaishaliwebkul)\n    * **Issue #47:** When click to add new email template get error  (raised by vaishaliwebkul)\n    * **Issue #44:** Code standard updations (raised by shubhwebkul)\n    * **Issue #33:** XSS script running while update customer name with ticket list detail (raised by vaishaliwebkul)\n    * **Issue #41:** vulnerability issue at tags fields (raised by vaishaliwebkul)\n    * **Issue #38:** Dashboard search bar option when search by starting letter's ' T ' (raised by vaishaliwebkul)\n    * **Issue #39:** While searching for categories by dashboard search bar, and click on that category , it will redirect to wrong page (raised by vaishaliwebkul)\n    * **Issue #42:** How will member login to their panel, if they are at knowledgebase?? (raised by vaishaliwebkul)\n    * **Issue #40:** Resolved Git issues (raised by shubhwebkul)\n    * **Issue #34:** Website prefixes (raised by shubhwebkul)\n    * **Issue #10:** Check by click on ticket thread id which shows with ticket detail (raised by vaishaliwebkul)\n    * **Issue #18:** Check ticket list view when click checkbox to get select all the tickets (raised by vaishaliwebkul)\n    * **Issue #20:** Update notification message when edit ticket type (raised by vaishaliwebkul)\n    * **Issue #11:** Customer Information aren't get update by viewing ticket detail (raised by vaishaliwebkul)\n    * **Issue #6:** Super admin credentials saved blank while setup DB (raised by vaishaliwebkul)\n    * **Issue #19:** No warning shows when create duplicate ticket type  (raised by vaishaliwebkul)\n    * **Issue #9:** Prepared Response section missing while applying to ticket (raised by vaishaliwebkul)\n    * **Issue #28:** Ticket list link is not working (raised by vaishaliwebkul)\n    * **Issue #29:** While creating a project, Getting Exception as Class 'Composer\\EventDispatcher\\ScriptExecutionException' not found (raised by vaishaliwebkul)\n    * **Issue #31:** Getting error while add saved replies (raised by vaishaliwebkul)\n    * **Issue #32:** Unable to delete saved replies (raised by vaishaliwebkul)\n    * **Issue #35:** Update README.md (raised by UVvidu)\n    * **Issue #17:** Website-Configuration (raised by shubhwebkul)\n    * **Issue #13:** Found Error while create ticket,edit workflow, update admin profile (raised by vaishaliwebkul)\n    * **Issue #23:** Unable to run my newly created project and get authentication error (raised by vaishaliwebkul)\n    * **Issue #12:** some of the links not work in README.md file  (raised by vaishaliwebkul)\n    * **Issue #14:** Setup design (raised by shubhwebkul)\n    * **Issue #5:** Website-Configuration and Generator (raised by shubhwebkul)\n    * **Issue #4:** webpack setup (raised by shubhwebkul)\n    * **Issue #3:** Loader, Slider, Mailbox (raised by shubhwebkul)\n    * **Issue #2:** Misc. fixes in branch 0.2 (raised by akshaywebkul)\n    * **Issue #1:** Web Installer Support (raised by akshaywebkul)\n    * **Feature:** Add/Remove/Create third party packages for further functionalities (bundled with [uvdesk/extension-framework][7])\n    * **Feature:** Easily configure and manage your support panel for customer convenience (bundled with [uvdesk/support-center-bundle][6])\n    * **Feature:** Automate responses to events with workflows and prepared responses (bundled with [uvdesk/automation-bundle][5])\n    * **Feature:** Pipe your emails from different sources into your helpdesk as tickets (bundled with [uvdesk/mailbox-component][4])\n    * **Feature:** Easily configure and manage your users (agents & customers), tickets, and helpdesk settings (bundled with [uvdesk/core-framework][3])\n    * **Feature:** Automate bundle configurations during installation via [composer][1] using the [uvdesk/composer-plugin][2]\n    * **Feature:** Setup your helpdesk project from the browser using the Web Installer Wizard\n    * **Feature:** Setup your helpdesk project from CLI using the Console Wizard\n\n\n[1]: https://getcomposer.org/\n[2]: https://github.com/uvdesk/composer-plugin\n[3]: https://github.com/uvdesk/core-framework\n[4]: https://github.com/uvdesk/mailbox-component\n[5]: https://github.com/uvdesk/automation-bundle\n[6]: https://github.com/uvdesk/support-center-bundle\n[7]: https://github.com/uvdesk/extension-framework\n"
  },
  {
    "path": "CHANGELOG-1.1.md",
    "content": "CHANGELOG for 1.1.x\n===================\n\nThis changelog references any relevant changes introduced in 1.1 minor versions.\n\n* 1.1.8 (2025-09-19)\n    * Updates\n        - Dockerfile updates.\n        - Added Portuguese translation language.\n        - Updated code related to Doctrine Migrations package update.\n\n    * Issue Fixes:\n      - Issue #805 - Resolved an issue encountered during migration execution\n      - Check removed for docker running env.\n      - Enabling permission for the uvdesk.yaml file for saving email setting in case not having read/write permission.\n      - Remember me key feature is functional now.\n\n* 1.1.7 (2025-01-03)\n    * Features & Enhancements:\n       - Microsoft modern app support added (For Mailbox).\n       - Added Marketing module.\n       - Added OTP option for customers to login.\n       - Round robin ticket assignment.\n       - Added a New language he (Hebrew).\n       - Default read/write permission added for some required files during install.\n       - Added option for selecting and save country for ticket.\n       - Showing customer email along with name in side filters ticket list. (To avoid confusion in case multiple customers having same name).\n       - Attachments renaming true so actual name will not show (For security purpose).\n       -  In case of multiple attachments with ticket reply now added cross button for each attachment, So that user can remove a particular attachment before reply instead of removing all with single button.\n       - Made updates in installation part (for database connection related issues)\n       - Refactoring on code end for main and other dependent repository.\n\n    * Issue Fixes:\n        #### Issue Fixed in * [**Core Framework**][1]\n        - Issue #508 #549 - Filter issue resolved for customer filtering.\n        - Issue #552 - In agent activity option: date filter should be select correct date format.\n        - Issue #524 - ticket is in trashed folder and we will reply from the admin then it should not send mail to the customer.\n        - Issue #577 - Customer name edit from admin side on ticket view page, if we leave space in starting customer name is removed in ticket view.\n        - Issue #587 - ticket is updated from the ticket list page flash message should be same of updated option.\n        - Issue #582 - In agent option, the permission tab should be shown a privileges icon.\n        - Issue #583 - If extra enter space leave in ticket type, group, and team description so ticket threads do not loads on ticket view page.\n        - Issue #573 - In the search filter, if we space to leave in the start and last search filter not working.\n        - Issue #702 #601 - system can't calculate kudos score.\n        - Issue #594 - The ticket view page is not showing the proper date time format.\n        - Issue #605 - If saved Replies sharing without any group and team to another agent or administrator so here shows same saved reply instead of the 403 page.\n        - Issue #606 - When mail reply from collaborator side in agent and customer reply email template so collaborator email reply creates a new ticket\n        Teams not removing from edit agent page - resolved\n        - Issue #665 - When upload txt file in ticket , total count of words attaching at the end of the file.\n        - Issue #644 - On the agent side should not be showing the reports icon without given any agent activity privileges.\n        - Issue #656 - In spam settings: If email added in spam so should not be ticket created from the admin end.\n        - Issue #656 - In spam settings: If email added in spam so should not be ticket created from the admin end.\n        - Download link correction for ticket.\n        - Initial thread opening issue if multiple emails in cc or collaborator.\n        Microsoft redirect URL update.\n        - Lang select snippets position issue resolved on dashboard.\n\n        #### Issue Fixed in * [**support-center-bundle**][2]\n        - Issue #538 - Tag line is not translated in other languages except the english.\n        - Made required message field in ticket creation form on front end.\n        - Issue #228 - front website cookies policy Popup issue if switch language in arabic.\n        - Issue #168 - Branding logo file type checking issue.\n        - Issue #162 - Broadcast message when choosing current date, not showing current date.\n        - Issue #215 - Article's numbered list not being rendered correctly.\n        - Issue #218 - In Folder, if we using the any docs file in folder image file upload so here showing an error instead of warning.\n        - Issue #174 - CSS Font-size 0 hides OL/UL/LI in Knowledgebase.\n        - Issue #170 - When creating an article and adding a tag this special character: \" / \" after click on view button shows an error.\n        - Issue #169 - When creating articles and adding tags should be show warning here: Must be less than 20 characters.\n        - Issue #206 - Trashed ticket should not open on customer end.\n        - Issue #216 - In article should be limit added for the horizontal lines.\n        - Issue #173 - In article section when choosing Div and Pre tag so customer panel not showing text or content.\n        - Marketing announcement URL validation added.\n        - Allowing underscore in strong password for spacial characters.\n        - setting customer last reply time.\n        - Issue #245 - Update in customer dashboard footer content.\n        - Updated License and support email address for repository.\n\n* 1.1.4 (2024-08-26)\n    * Feature: Add functionality for tracking the installation count and count of active users (ars128)\n\n* 1.1.3 (2023-06-13)\n    * Update: Render project version number dynamically\n\n* 1.1.2 (2023-06-12)\n    * Update: Dropped dependency on uvdesk/composer-plugin in support of symfony/flex\n    * PR #619: Changes for error page: Home and support option links (Komal-sharma-2712)\n    * Update: Update installation wizard to specify database version during installation\n    * PR #614: Translation updates: Correctly render website name in ZH locale (Komal-sharma-2712)\n\n* 1.1.1 (2022-09-13)\n    * PR #592: Translation updates (Komal-sharma-2712)\n    * PR #582: Translation updates (Komal-sharma-2712)\n\n* 1.1.0 (2022-03-25)\n    * Feature: Improved compatibility with PHP 8 and Symfony 5 components\n    * Bug #546: Use *getThrowable()* instead of deprecated *getException()* function in *ExceptionSubscriber.php* (vipin-shrivastava)\n    * PR #545: Update *README.md* - Add link to respective uvdesk's twitter and youtube profiles (papnoisanjeev)\n    * PR #532: Fix typo *mode_rewrite* to *mod_rewrite* (harrisonratcliffe)\n    * PR #522: Clicking on website logo should redirect to admin login instead of dashboard in *error.html.twig* (vipin-shrivastava)\n    * Bug #518: Retrieve user from security token in *ExceptionSubscriber.php* (vipin-shrivastava)\n    * PR #515: Remove miscellaneous duplicate translation records - *messages.it.yml* (Komal-sharma-2712)\n    * PR #513: Update italian translation resources - *messages.it.yml* (PeopleInside)\n    * PR #509: Update french translation resources - *messages.fr.yml* (user592965)\n    * PR #505: Update translation file resources (Komal-sharma-2712)\n    * PR #504: Update translation file resources (Komal-sharma-2712)\n    * PR #503: Update italian translation resources - *messages.it.yml* (PeopleInside)\n    * PR #502: Update translation resources for error page translations (vipin-shrivastava)\n\n    [1]: https://github.com/uvdesk/core-framework/\n    [2]: https://github.com/uvdesk/support-center-bundle\n"
  },
  {
    "path": "CHANGELOG-1.2.md",
    "content": "CHANGELOG for 1.2.x\n===================\n\nThis changelog references any relevant changes introduced in 1.2 minor versions.\n\n* 1.2.x\n    * PR #636: Fixed some language errors (rastiqdev)\n"
  },
  {
    "path": "Dockerfile",
    "content": "FROM ubuntu:latest\nLABEL maintainer=\"support@uvdesk.com\"\n\nENV GOSU_VERSION=1.11\n\n# Install base supplementary packages\nRUN apt-get update && \\\n    apt-get -y upgrade && \\\n    apt-get install -y software-properties-common && \\\n    add-apt-repository -y ppa:ondrej/php && \\\n    apt-get update && \\\n    DEBIAN_FRONTEND=noninteractive apt-get -y install \\\n        adduser \\\n        curl \\\n        wget \\\n        git \\\n        unzip \\\n        apache2 \\\n        mysql-server \\\n        php8.1 \\\n        libapache2-mod-php8.1 \\\n        php8.1-common \\\n        php8.1-xml \\\n        php8.1-imap \\\n        php8.1-mysql \\\n        php8.1-mailparse \\\n        php8.1-curl \\\n        ca-certificates \\\n        gnupg2 dirmngr && \\\n    apt-get clean && rm -rf /var/lib/apt/lists/*\n\n# Create a non-root user for UVDesk\nRUN adduser uvdesk --disabled-password --gecos \"\"\n\n# Copy Apache configuration files\nCOPY ./.docker/config/apache2/env /etc/apache2/envvars\nCOPY ./.docker/config/apache2/httpd.conf /etc/apache2/apache2.conf\nCOPY ./.docker/config/apache2/vhost.conf /etc/apache2/sites-available/000-default.conf\n\n# Copy entrypoint script and source code\nCOPY ./.docker/bash/uvdesk-entrypoint.sh /usr/local/bin/\nCOPY . /var/www/uvdesk/\n\n# Update Apache configurations and enable modules\nRUN a2enmod php8.1 rewrite && \\\n    chmod +x /usr/local/bin/uvdesk-entrypoint.sh\n\n# Install GOSU for stepping down from root\nRUN dpkgArch=\"$(dpkg --print-architecture | awk -F- '{ print $NF }')\" && \\\n    wget -O /usr/local/bin/gosu \"https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$dpkgArch\" && \\\n    wget -O /usr/local/bin/gosu.asc \"https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$dpkgArch.asc\" && \\\n    gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 && \\\n    gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu && \\\n    gpgconf --kill all && \\\n    chmod +x /usr/local/bin/gosu && \\\n    gosu nobody true && \\\n    rm -rf /usr/local/bin/gosu.asc\n\n# Install Composer\nRUN wget -O /usr/local/bin/composer.php \"https://getcomposer.org/installer\" && \\\n    actualSig=\"$(wget -q -O - https://composer.github.io/installer.sig)\" && \\\n    currentSig=\"$(sha384sum /usr/local/bin/composer.php | awk '{print $1}')\" && \\\n    if [ \"$currentSig\" != \"$actualSig\" ]; then \\\n        echo \"Warning: Failed to verify composer signature.\"; \\\n        exit 1; \\\n    fi && \\\n    php /usr/local/bin/composer.php --quiet --filename=/usr/local/bin/composer && \\\n    chmod +x /usr/local/bin/composer && \\\n    rm -f /usr/local/bin/composer.php\n\n# Set working directory\nWORKDIR /var/www/uvdesk\n\n# Install Composer dependencies\nRUN cd /var/www/uvdesk/ && composer install\n\n# Set correct permissions for UVDesk files\nRUN chown -R uvdesk:uvdesk /var/www/uvdesk && \\\n    chmod -R 775 /var/www/uvdesk/var \\\n                 /var/www/uvdesk/config \\\n                 /var/www/uvdesk/public \\\n                 /var/www/uvdesk/migrations \\\n                 /var/www/uvdesk/.env\n\nRUN composer dump-autoload --optimize && \\\n    php bin/console cache:clear --env=prod --no-debug || true\n\n# Entry point for the container\nENTRYPOINT [\"/usr/local/bin/uvdesk-entrypoint.sh\"]\nCMD [\"/bin/bash\"]"
  },
  {
    "path": "INSTALLATION GUIDE.md",
    "content": "Installation Guide\n-----------------\n\nThis guide will walk you through all the steps necessary from setting up your server environment to installing the uvdesk community helpdesk project.\n\n> Note: This guide assumes that you already have your instance (docker instance, virtual machine, remote instance, etc...) prepared and have all the necessary credentials to perform operations requiring elevated privileges.\n\nOverview\n-----------------\n\nWe've broken this guide down into multiple sections from installing latest dependencies, to mantaining proper user permissions & file ownerships, and installing the helpdesk project using composer. You can jump right to the part most relevant to you:\n\n* [(Optional) Upgrade to latest available Ubuntu packages](#optional-upgrade-to-latest-available-ubuntu-packages)\n* [(Optional) Create a non-root user with elevated privileges](#optional-create-a-non-root-user-with-elevated-privileges)\n* [(Optional) Checking for the latest PHP version available](#optional-checking-for-the-latest-php-version-available)\n* [Install PHP, Apache and all the necessary packages](#install-php-apache-and-all-the-necessary-packages)\n* [(Optional) Update Apache's Document Root](#optional-update-apaches-document-root)\n* [Downloading and setting up Composer](#downloading-and-setting-up-composer)\n* [Installing and setting up Uvdesk Community Helpdesk](#installing-and-setting-up-uvdesk-community-helpdesk)\n\n(Optional) Upgrade to latest available Ubuntu packages\n-----------------\n\nAlthough optional, it's advisable to update to the latest available packages. To do so, use the following commands:\n\n```bash\n# Update the list of available packages so that the package manager is aware about the latest packages\n$ sudo apt-get update;\n\n# Update the packages to their latest available versions\n$ sudo apt-get -y upgrade;\n```\n\n(Optional) Create a non-root user with elevated privileges\n-----------------\n\nIt's advisable to have a non-root user configured on your instance with elevated privileges other than a root account, so that your file ownerships are properly managed and you don't run into un-intended permission related issues. To add a non-root user with elevated privileges (say *uvdesk*), use the following commands:\n\n```bash\n# Create user\n$ adduser uvdesk;\n\n# Add user to the sudo group so they can perform operations requiring elevated privileges\n$ usermod -aG sudo uvdesk;\n\n# Verify that the user uvdesk has been added to the sudo group\n$ groups uvdesk;\n\n# You can also additionaly use the passwd command if you want to set user password\n$ passwd uvdesk;\n```\n\nOnce your non-root user with elevated privileges has been created, you can switch to the new user account in your current terminal session using the following command:\n\n```bash\n# Use '-' if you want to be prompted for user password before switching session into the new user.\n$ su - uvdesk\n```\n\n> Note: We will be using the user we just created to setup our helpdesk project, and then add this user to apache's www-data user group. This way, while the project ownership will belong to our user, apache will still have the necessary access to manage our project resources so we don't run into any permission related issues.\n\n(Optional) Checking for the latest PHP version available\n-----------------\n\nIf you want to check for the latest PHP version available, you can use the following command to list all the PHP packages available for installation:\n\n```bash\n$ apt-cache search php;\n```\n\nIf you find a PHP version to your preference, you can proceed with that (it's recommended to use PHP 7.4 or greater). Otherwise, you can ppa:ondrej/php apt repository to install the latest version of PHP available:\n\n```bash\n$ sudo add-apt-repository -y ppa:ondrej/php;\n\n# Make sure the package manager is aware about the newly listed packages\n$ sudo apt-get update;\n```\n\nInstall PHP, Apache and all the necessary packages\n-----------------\n\nNote: We're proceeding with installing PHP 8.2 in this guide. If you want to use a different version of PHP, simply replace 8.2 with your preferred version.\n\n```bash\n$ sudo apt -y install php8.2;\n\n# Install the remaining packages\n$ sudo apt-get install -y software-properties-common;\n$ sudo apt-get -y install \\\n    curl \\\n    wget \\\n    git \\\n    unzip \\\n    apache2 \\\n    mysql-server \\ \n    php8.2 \\\n    libapache2-mod-php8.2 \\ \n    php8.2-common \\\n    php8.2-xml \\\n    php8.2-imap \\\n    php8.2-mysql \\\n    php8.2-mailparse \\\n    ca-certificates;\n\n# Enable apache rewrite module\n$ sudo a2enmod rewrite;\n\n# Restart your apache server\n$ sudo service apache2 restart;\n# Or alternatively, use 'sudo systemctl restart apache2'\n\n# Verify that your apache server is up & running\n$ sudo service apache2 status;\n```\n\n> Note: You can list all available loaded PHP modules using the following command: $ php -m\n\nNow, Verify your Apache & PHP installations using the commands below (don't worry about the warnings):\n\n```bash\n$ apache2 --version;\n$ php --version;\n```\n\nWith apache server installed & running, you should now be able to load web reources from your server. You can check this by accessing your server IP on your web browser.\n\n(Optional) Update Apache's Document Root\n-----------------\n\nIn your home directory (/home/uvdesk), create the following directories:\n\n```bash\n/home/uvdesk/workstation\n\n# We will setup our helpdesk project within this directory\n/home/uvdesk/workstation/projects\n\n# We will setup this directory to be used as the document root for apache, so any resources within this directory will be servable by apache through localhost\n/home/uvdesk/workstation/www\n````\n\nAt this moment, apache will currently be serving documents from the /var/www/ directory. In order to serve documents from /home/uvdesk/workstation/www directory instead, we need to modify a few apache configurations and restart the apache service for these changes to take affect.\n\n```bash\n# File: /etc/apache2/apache2.conf\n# Replace /var/www/ with the path of our new document root directory /home/uvdesk/workstation/www/ and set AllowOverride to All\n$ sudo nano /etc/apache2/apache2.conf\n\n# File: /etc/apache2/sites-available/000-default.conf\n# Replace /var/www/html with the path of our new document root directory /home/uvdesk/workstation/www\n$ sudo nano /etc/apache2/sites-available/000-default.conf\n\n# Restart your apache server\n$ sudo service apache2 restart;\n# Or alternatively, use 'sudo systemctl restart apache2'\n```\n\nNow, add user uvdesk to the www-data user group, so that www-data can access the resources in our new document root directory:\n\n```bash\n$ sudo usermod -aG uvdesk www-data;\n$ sudo service apache2 restart;\n```\n\n### Testing the PHP Environment (optional)\n\nNow, create a php script *index.php* within your new document root directory using the following commands:\n\n```bash\n$ cd /home/uvdesk/workstation/www;\n\n# Create and add the following code to index.php\n$ echo \"<?php echo phpinfo(); ?>\" > index.php\n```\n\nNavigate to localhost/index.php to verify that localhost is able to serve your script.\n\n> Note: If you're setting up the project on a remote instance, you can use your server's IP address instead of localhost to verify the same. Depending on your server configurations, you might need to manage your firewall settings to allow HTTP/HTTPS requests.\n\nWith all these changes done, your apache server should be able to serve web resources from your new document root. You can further go ahead and configure your DNS records to point your domains to your server's IP at this step.\n\nDownloading and setting up Composer\n------------------------------------\n\nFollow the instructions provided on the official [composer website](https://getcomposer.org/download/) to download and install composer package manager. Once installed, it's advisable to move the composer executable to the /usr/local/bin/ directory so that it can be easily accessed from anywhere in your terminal. To do so, use the following commands:\n\n```bash\n# Assuming you used the default download instructions, the composer executable will be named composer.phar.\n# We will rename and move the executable script to the /usr/local/bin/ directory.\n\n$ mv composer.phar composer\n$ sudo mv composer /usr/local/bin/\n\n# Use the following command to verify that composer executable is accessible to you from your current directory\n$ composer --version\n```\n\nInstalling and setting up Uvdesk Community Helpdesk\n-----------------\n\nTo install the uvdesk community helpdesk project using composer (recommended), use the following commands:\n\n> We will be installing the project within the /home/uvdesk/workstation/projects directory, and then symlink the public directory of our project to/within apache's document root so that the project is servable from localhost. This can be changed however according to your own preference.\n\n```bash\n$ cd /home/uvdesk/workstation/projects\n$ composer create-project uvdesk/community-skeleton\n```\n\nIf you don't wish to use composer, you can just download the zip archive of the project and unpack it instead.\n\n```bash\n$ cd /home/uvdesk/workstation/projects\n$ wget \"https://cdn.uvdesk.com/uvdesk/downloads/opensource/uvdesk-community-current-stable.zip\"\n$ unzip uvdesk-community-current-stable.zip\n```\n\nAfter your project has been installed, you can navigate to your helpdesk project and run the following command to configure your helpdesk from the command line itself:\n\n```bash\n$ php bin/console uvdesk:configure-helpdesk\n```\n\n---\n\nPlease feel free to further contribute to this resource."
  },
  {
    "path": "LICENSE.txt",
    "content": "\nOpen Software License (\"OSL\") v. 3.0\n\nThis Open Software License (the \"License\") applies to any original work of authorship (the \"Original Work\") whose owner (the \"Licensor\") has placed the following licensing notice adjacent to the copyright notice for the Original Work:\n\nLicensed under the Open Software License version 3.0\n\n   1. Grant of Copyright License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, for the duration of the copyright, to do the following:\n\n         1. to reproduce the Original Work in copies, either alone or as part of a collective work;\n\n         2. to translate, adapt, alter, transform, modify, or arrange the Original Work, thereby creating derivative works (\"Derivative Works\") based upon the Original Work;\n\n         3. to distribute or communicate copies of the Original Work and Derivative Works to the public, with the proviso that copies of Original Work or Derivative Works that You distribute or communicate shall be licensed under this Open Software License;\n\n         4. to perform the Original Work publicly;\n\n         5. to display the Original Work publicly. \n\n   2. Grant of Patent License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, for the duration of the patents, to make, use, sell, offer for sale, have made, and import the Original Work and Derivative Works.\n\n   3. Grant of Source Code License. The term \"Source Code\" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work.\n\n   4. Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior permission of the Licensor. Except as expressly stated herein, nothing in this License grants any license to Licensor's trademarks, copyrights, patents, trade secrets or any other intellectual property. No patent license is granted to make, use, sell, offer for sale, have made, or import embodiments of any patent claims other than the licensed claims defined in Section 2. No license is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under terms different from this License any Original Work that Licensor otherwise would have a right to license.\n\n   5. External Deployment. The term \"External Deployment\" means the use, distribution, or communication of the Original Work or Derivative Works in any way such that the Original Work or Derivative Works may be used by anyone other than You, whether those works are distributed or communicated to those persons or made available as an application intended for use over a network. As an express condition for the grants of license hereunder, You must treat any External Deployment by You of the Original Work or a Derivative Work as a distribution under section 1(c).\n\n   6. Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent, or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an \"Attribution Notice.\" You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work.\n\n   7. Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately preceding sentence, the Original Work is provided under this License on an \"AS IS\" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of non-infringement, merchantability or fitness for a particular purpose. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to the Original Work is granted by this License except under this disclaimer.\n\n   8. Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to anyone for any indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to the extent applicable law prohibits such limitation.\n\n   9. Acceptance and Termination. If, at any time, You expressly assented to this License, that assent indicates your clear and irrevocable acceptance of this License and all of its terms and conditions. If You distribute or communicate copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. This License conditions your rights to undertake the activities listed in Section 1, including your right to create Derivative Works based upon the Original Work, and doing so without honoring these terms and conditions is prohibited by copyright law and international treaty. Nothing in this License is intended to affect copyright exceptions and limitations (including 'fair use' or 'fair dealing'). This License shall terminate immediately and You may no longer exercise any of the rights granted to You by this License upon your failure to honor the conditions in Section 1(c).\n\n  10. Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware.\n\n  11. Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of copyright or patent law in the appropriate jurisdiction. This section shall survive the termination of this License.\n\n  12. Attorneys' Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License.\n\n  13. Miscellaneous. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable.\n\n  14. Definition of \"You\" in This License. \"You\" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, \"You\" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n  15. Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You.\n\n  16. Modification of This License. This License is Copyright (C) 2005 Lawrence Rosen. Permission is granted to copy, distribute, or communicate this License without modification. Nothing in this License permits You to modify this License as applied to the Original Work or to Derivative Works. However, You may modify the text of this License and copy, distribute or communicate your modified version (the \"Modified License\") and apply it to other original works of authorship subject to the following conditions: (i) You may not indicate in any way that your Modified License is the \"Open Software License\" or \"OSL\" and you may not use those names in the name of your Modified License; (ii) You must replace the notice specified in the first paragraph above with the notice \"Licensed under <insert your license name here>\" or with a notice of your own that is not confusingly similar to the notice in this License; and (iii) You may not claim that your original works are open source software unless your Modified License has been approved by Open Source Initiative (OSI) and You comply with its license review and certification process."
  },
  {
    "path": "README.md",
    "content": "<p align=\"center\"><a href=\"https://www.uvdesk.com/en/\" target=\"_blank\">\n    <img src=\"https://s3-ap-southeast-1.amazonaws.com/cdn.uvdesk.com/uvdesk/bundles/webkuldefault/images/uvdesk-wide.svg\">\n</a></p>\n\n<p align=\"center\">\n    <a href=\"https://packagist.org/packages/uvdesk/community-skeleton\"><img src=\"https://poser.pugx.org/uvdesk/community-skeleton/v/stable.svg\" alt=\"Latest Stable Version\"></a>\n    <a href=\"https://packagist.org/packages/uvdesk/community-skeleton\"><img src=\"https://poser.pugx.org/uvdesk/community-skeleton/d/total.svg\" alt=\"Total Downloads\"></a>\n    <a href=\"#backers\"><img src=\"https://opencollective.com/uvdesk/backers/badge.svg\" alt=\"Backers on Open Collective\"></a>\n    <a href=\"#sponsors\"><img src=\"https://opencollective.com/uvdesk/sponsors/badge.svg\" alt=\"Sponsors on Open Collective\"></a>\n    <a href=\"https://gitter.im/uvdesk/community\"><img src=\"https://badges.gitter.im/uvdesk/community-skeleton.svg\" alt=\"connect on gitter\"></a>\n    <a href=\"https://forums.uvdesk.com\"><img src=\"https://img.shields.io/badge/Ask%20me-anything-1abc9c.svg\" alt=\"discuss on uvdesk forum\"></a>\n    <a href=\"https://github.com/collections/made-in-india\"><img src=\"https://badges.frapsoft.com/os/v3/open-source.png?v=103\" alt=\"Checkout us on open source projects from India\"></a>\n</p>\n\n<p align=\"center\">\n    <a href=\"https://twitter.com/intent/follow?screen_name=uvdesk\"><img src=\"https://img.shields.io/twitter/follow/uvdesk?style=social\"></a>\n    <a href=\"https://www.youtube.com/channel/UCKKt4IOC7ynLwhJMP35uFeQ\"><img src=\"https://img.shields.io/youtube/channel/subscribers/UCKKt4IOC7ynLwhJMP35uFeQ?style=social\"></a>\n</p>\n\n<p align=\"center\">\n    ➡️ <a href=\"https://www.uvdesk.com/en/opensource/\">Website</a> | <a href=\"https://docs.uvdesk.com/\">Documentation</a> | <a href=\"https://www.uvdesk.com/en/blog/open-source-helpdesk-installation-on-ubuntu-uvdesk/\">Installation Guide</a> | <a href=\"https://forums.uvdesk.com/\">Forums</a> | <a href=\"https://www.facebook.com/uvdesk/\">Community</a> ⬅️\n</p>\n\n<p align=\"center\" style=\"display: inline;\">\n    <img class=\"flag-img\" src=\"https://flagicons.lipis.dev/flags/4x3/ar.svg\" alt=\"Arabic\" width=\"24\" height=\"24\">\n    <img class=\"flag-img\" src=\"https://flagicons.lipis.dev/flags/4x3/de.svg\" alt=\"German\" width=\"24\" height=\"24\">\n    <img class=\"flag-img\" src=\"https://flagicons.lipis.dev/flags/4x3/us.svg\" alt=\"English\" width=\"24\" height=\"24\">\n    <img class=\"flag-img\" src=\"https://flagicons.lipis.dev/flags/4x3/es.svg\" alt=\"Spanish\" width=\"24\" height=\"24\">\n    <img class=\"flag-img\" src=\"https://flagicons.lipis.dev/flags/4x3/fr.svg\" alt=\"French\" width=\"24\" height=\"24\">\n    <img class=\"flag-img\" src=\"https://flagicons.lipis.dev/flags/4x3/it.svg\" alt=\"Italian\" width=\"24\" height=\"24\">\n    <img class=\"flag-img\" src=\"https://flagicons.lipis.dev/flags/4x3/dk.svg\" alt=\"Danish\" width=\"24\" height=\"24\">\n    <img class=\"flag-img\" src=\"https://flagicons.lipis.dev/flags/4x3/pl.svg\" alt=\"Polish\" width=\"24\" height=\"24\">\n    <img class=\"flag-img\" src=\"https://flagicons.lipis.dev/flags/4x3/tr.svg\" alt=\"Turkish\" width=\"24\" height=\"24\">\n    <img class=\"flag-img\" src=\"https://flagicons.lipis.dev/flags/4x3/cn.svg\" alt=\"Chinese\" width=\"24\" height=\"24\">\n    <img class=\"flag-img\" src=\"https://flagicons.lipis.dev/flags/4x3/br.svg\" alt=\"Brazil\" width=\"24\" height=\"24\">\n</p>\n\n[Uvdesk community helpdesk][1] project skeleton packaged along with the bare essential utilities and tools to build and customize your own helpdesk solutions.\n\nVisit our official demo website to [see it in action!][15]\n\nCheck out UVdesk on **Symfony Official Website** – [Symfony][24]\n\nGetting Started\n-----------------\n\n* [About](#about)\n* [Features](#features)\n* [Documentation](#documentation)\n* [Modules](#modules)\n* [Requirements](#requirements)\n* [Installation](#installation)\n* [Docker Runtime](#docker-runtime)\n* [Docker Persistent Container](#docker-persistent-container)\n* [Vagrant Virtual Environment](#vagrant-virtual-environment)\n* [License](#license)\n* [Security Vulnerabilities](#security-vulnerabilities)\n* [Feedback](#feedback)\n* [Contributions](#contributions)\n\nAbout\n-----------------\n\nBuild on top of [symfony](https://symfony.com/) and [backbone.js](https://backbonejs.org/), UVdesk Community is an open-source, service-oriented, and event-driven helpdesk system designed for easy customization and seamless client support. Its extensible architecture allows organizations to deliver efficient, tailored customer service with minimal effort.\n\nThe standard distribution includes a comprehensive set of helpdesk packages to support a wide range of use cases and operational needs.\n\n  * [**Core Framework**][2] - At the heart of the helpdesk system, the core framework consists of all the necessary apis required by your project and dependent packages to keep things running smoothly\n\n  * [**Extension Framework**][3] - Introduces support for third-party package integration and development to easily build and extend the functionalities of your helpdesk system as per your requirements\n\n  * [**Automation Bundle**][4] - Adds support for workflows and prepared responses to automate any specific operations within your helpdesk system\n\n  * [**Mailbox Component**][11] - Convert and get all your emails to support tickets on UVDesk and manage customer query easily.\n\n  * [**Support Center Bundle**][5] - Integrates the easily customizable support center portal to enable users to easily interact with the support staff through your helpdesk system\n\nReach out to us at our official [gitter chat][20] or by joining [forum][21] for any queries, concerns and feature request discussions.\n\nThe development of the uvdesk community edition is led by the [uvdesk][10] team and backed by [Webkul][9]. Visit our [website][1] to learn more about the UVDesk Helpdesk System.\n\nFeatures\n----------------\n\n* [Translation Support (Multilingual)][32]\n* Unlimited agents, groups, teams, customers, tickets, and more.\n* Agent Privileges\n* No limit on the number of mailbox/email integrations.\n* Saved Replies – Quickly respond to frequent questions.\n* Filter tickets by status, ID, agent, customer, and more.\n* Block Spam\n* [Agent Activity][29]\n* [Marketing Announcement][30]\n* [Marketing Modules][35]\n* [Kudos][31]\n* [Microsoft Apps][36]\n* reCAPTCHA option.\n* Standard automated workflows.\n* Notes for agents.\n* Custom branding.\n* Change logo & favicon.\n* Broadcasting message.\n* Ticket Forwarding.\n* Prepared Response.\n* Email Notification.\n* Effective search.\n* User Friendly Web Installer.\n* Supports multiple attachments.\n* A powerful knowledge base and FAQ system—organize content by articles, categories, and folders.\n* Ticket types, Multiple Tags.\n* Email Templates.\n* [API Bundle][16] and [Documentation][25]\n* Edit/Delete/Pinned ticket and thread.\n* Easily add collaborators and unlock even more capabilities.\n* [Explore Apps][26]\n\nDocumentation\n--------------\n\nVisit [docs.uvdesk.com](https://docs.uvdesk.com/) to read our official documentation and learn more about the uvdesk community project.\n\nWe use Jekyll to develop and maintain our documentations. Consider contributing by submitting a pull request to our project's [jeykll repository](https://github.com/uvdesk/uvdesk.github.io).\n\nRequirements\n--------------\n\n* **OS**: Ubuntu 16.04 LTS or higher / Windows 7 or Higher (WAMP / XAMPP).\n* **SERVER**: Apache 2 or NGINX.\n* **RAM**: 4GB or higher.\n* **PHP**: 8.1\n* **Processor**: Clock Cycle 1 Ghz or higher.\n* **For MySQL users**: 5.7.23 or higher.\n* **Composer**: 2 or higher.\n* **PHP IMAP** **&** **PHP Mailparse** for [Ubuntu][7], [Windows][23], [Centos][28], [Mac][27].\n\nInstallation\n--------------\n\nThe installation process is broken down into two distinct steps:\n\n* Setup\n* Configuration\n\n### Setting up your helpdesk project\n\nIn this step, you'll download the Helpdesk project skeleton and install its dependencies.\n\nYou can either use Composer to download and install everything automatically, or download a pre-packaged archive that includes all dependencies. We recommend using Composer whenever possible for easier updates and better dependency management. However, if you're on a system with limited resources (e.g., shared hosting), the archive download may be more reliable.\n\nRegardless of the method you choose, the configuration process for Helpdesk remains the same.\n\n#### Composer\n\nYou can use composer to setup your project by simply running the following command from your terminal:\n\n```bash\n$ composer create-project uvdesk/community-skeleton helpdesk-project\n```\n\n#### Direct Download\n\nAlternatively, you can also [download the zip archive](https://cdn.uvdesk.com/uvdesk/downloads/opensource/uvdesk-community-current-stable.zip) of the latest stable release and extract its content by running the following commands from your terminal:\n\n```bash\n$ wget \"https://cdn.uvdesk.com/uvdesk/downloads/opensource/uvdesk-community-current-stable.zip\" -P /var/www/\n$ unzip -q /var/www/uvdesk-community-current-stable.zip -d /var/www/ \\\n```\n\n### Configuring your helpdesk project\n\nAfter you've downloaded and installed all the project dependencies, you can configure your helpdesk installation using either of the following ways:\n\n#### Using Terminal\n\n```bash\n$ php bin/console uvdesk:configure-helpdesk\n```\n\n#### Using Web Installer Wizard\n\n##### Extract the contents of zip and execute the project in your browser in case of project zip download:\n\n~~~\nhttp(s)://localhost/community-skeleton/public\n~~~\n\n##### In case of created project using command, execute the project in your browser:\n\n~~~\nhttp(s)://localhost/helpdesk-project/public\n~~~\n\nor\n\n~~~\nhttp(s)://example.com/public\n~~~\n\nAfter opening your project in the web browser, you will be greeted by the web installer which will guide you in configuring your project.\n\n##### Run project on localhost (dev mode)\n```bash\nphp bin/console server:run\n```\n\n**How to clear cache:**\n\n```bash\nphp bin/console c:c\n```\n\n#### ☁️ Deploy UVdesk on the Cloud with Amazon AMI\n\nEasily launch UVdesk on the cloud using our pre-configured Amazon Machine Image (AMI), available directly from the AWS Marketplace:\n\n👉 [**Launch UVdesk on AWS**](https://aws.amazon.com/marketplace/pp/prodview-c4pibdsnipim4)\n\nThis AMI offers a quick and hassle-free way to set up UVdesk on a secure, scalable AWS environment. Perfect for both production deployments and testing purposes, with no need for manual configuration.\n\n**How to log in as admin/agent:**\n\n*Below url is the default url for admin/agent login if you have not made any changes for /member prefix.*\n\n> *http(s)://example.com/en/member/login* \n\n**How to log in as customer:**\n\n*Below url is the default url for customer login if you have not made any changes for /customer prefix.*\n\n> *http(s)://example.com/en/customer/login*\n\nDocker Runtime\n--------------\n\n[Dockerize your helpdesk project][22]\n\nDocker Persistent Container\n--------------\n\n[Get started with Uvdesk now by using docker persistent container][34]\n\nVagrant Virtual Environment\n--------------\n\n[Get started with uvdesk now by using vagrant to setup virtual environment][33]\n\nModules\n--------------\n\n[Available Modules/Apps](https://store.webkul.com/UVdesk/UVdesk-Open-Source.html)\n\nNeed something else ? email us at support@uvdesk.com\n\nLicense\n--------------\n\nAll libraries and bundles included in the UVDesk Community Edition are released under the [OSL-3.0 license][12] license.\n\nSecurity Vulnerabilities\n--------------\n\nPlease don't disclose any security vulnerabilities publicly. If you find any security vulnerability in our platform then please write us at [support@uvdesk.com](mailto:support@uvdesk.com).\n\nFeedback\n---------\n#### Feedback (Support Community project by raising feedback)\n\n* [Trustpilot][17]\n* [Capterra][18]\n* [Software suggest][19]\n\nContributions\n--------------\nThis project is hosted on [Open Collective][13] and exists thanks to our contributors:\n\n<a href=\"https://github.com/uvdesk/community-skeleton/graphs/contributors\"><img src=\"https://opencollective.com/uvdesk/contributors.svg?width=890&button=false\"/></a>\n\n#### Backers\n\nThank you to all our backers! 🙏\n\n<a href=\"https://opencollective.com/uvdesk#contributors\" target=\"_blank\"><img src=\"https://opencollective.com/uvdesk/backers.svg?width=890\"></a>\n\n#### Sponsors\n\nSupport this project by becoming a sponsor. Your logo will show up here with a link to your website.\n\n<a href=\"https://opencollective.com/uvdesk/contribute/sponsor-7372/checkout\" target=\"_blank\"><img src=\"https://images.opencollective.com/static/images/become_sponsor.svg\"></a>\n\n[1]: https://www.uvdesk.com/\n[2]: https://github.com/uvdesk/core-framework\n[3]: https://github.com/uvdesk/extension-framework\n[4]: https://github.com/uvdesk/automation-bundle\n[5]: https://github.com/uvdesk/support-center-bundle\n[6]: https://support.uvdesk.com/en/blog/prerequisites-ubuntu\n[7]: https://support.uvdesk.com/en/blog/prerequisites-ubuntu\n[8]: https://getcomposer.org/\n[9]: https://webkul.com/\n[10]: https://www.uvdesk.com/en/team/\n[11]: https://github.com/uvdesk/mailbox-component\n[12]: https://github.com/uvdesk/community-skeleton/blob/master/LICENSE.txt\n[13]: https://opencollective.com/uvdesk\n[14]: https://docs.uvdesk.com/\n[15]: https://demo.uvdesk.com/\n[16]: https://github.com/uvdesk/api-bundle\n[17]: https://www.trustpilot.com/review/uvdesk.com\n[18]: https://www.capterra.com/p/158346/UVdesk/\n[19]: https://www.softwaresuggest.com/uvdesk\n[20]: https://gitter.im/uvdesk/community\n[21]: https://forums.uvdesk.com/\n[22]: https://github.com/uvdesk/community-skeleton/wiki/dockerize-helpdesk-project\n[23]: https://support.uvdesk.com/en/blog/prerequisites-windows\n[24]: https://symfony.com/projects/uvdesk\n[25]: https://github.com/uvdesk/api-bundle/wiki/Ticket-Related-APIs\n[26]: https://store.webkul.com/UVdesk/UVdesk-Open-Source.html\n[27]: https://support.uvdesk.com/en/blog/prerequisites-mac\n[28]: https://support.uvdesk.com/en/blog/prerequisites-centos7\n[29]: https://www.uvdesk.com/en/blog/uvdesk-agent-activity/\n[30]: https://www.uvdesk.com/en/blog/uvdesk-marketing-announcement/\n[31]: https://support.uvdesk.com/es/blog/uvdesk-what-is-kudos\n[32]: https://www.uvdesk.com/en/blog/language-translation-in-uvdesk-open-source-helpdesk/\n[33]: https://github.com/uvdesk/community-skeleton/wiki/Vagrant-Virtual-Machine-Environment\n[34]: https://github.com/uvdesk/community-skeleton/wiki/Docker-Persistent-Container\n[35]: https://www.uvdesk.com/en/blog/marketing-module/\n[36]: https://www.uvdesk.com/en/how-to-integrate-microsoft-app-to-your-opensource-uvdesk/\n\n"
  },
  {
    "path": "apps/.gitignore",
    "content": ""
  },
  {
    "path": "composer.json",
    "content": "{\n    \"name\": \"uvdesk/community-skeleton\",\n    \"description\": \"UVDesk Community Helpdesk Project Skeleton\",\n    \"type\": \"project\",\n    \"license\": \"MIT\",\n    \"minimum-stability\": \"dev\",\n    \"prefer-stable\": true,\n    \"require\": {\n        \"php\": \"^7.2.5 || ^8.0\",\n        \"ext-ctype\": \"*\",\n        \"ext-iconv\": \"*\",\n        \"symfony/flex\": \"^1.17|^2\"\n    },\n    \"flex-require\": {\n        \"doctrine/annotations\": \"^1.0\",\n        \"doctrine/doctrine-fixtures-bundle\": \"^3.4\",\n        \"google/recaptcha\": \"^1.2\",\n        \"knplabs/knp-paginator-bundle\": \"^5.8\",\n        \"phpdocumentor/reflection-docblock\": \"^5.3\",\n        \"phpstan/phpdoc-parser\": \"^1.2\",\n        \"sensio/framework-extra-bundle\": \"^6.1\",\n        \"symfony/asset\": \"*\",\n        \"symfony/console\": \"*\",\n        \"symfony/dotenv\": \"*\",\n        \"symfony/expression-language\": \"*\",\n        \"symfony/form\": \"*\",\n        \"symfony/framework-bundle\": \"*\",\n        \"symfony/http-client\": \"*\",\n        \"symfony/intl\": \"*\",\n        \"symfony/mailer\": \"*\",\n        \"symfony/mime\": \"*\",\n        \"symfony/monolog-bundle\": \"^3.1\",\n        \"symfony/notifier\": \"*\",\n        \"symfony/orm-pack\": \"*\",\n        \"symfony/process\": \"*\",\n        \"symfony/property-access\": \"*\",\n        \"symfony/property-info\": \"*\",\n        \"symfony/proxy-manager-bridge\": \"*\",\n        \"symfony/runtime\": \"*\",\n        \"symfony/security-bundle\": \"*\",\n        \"symfony/serializer\": \"*\",\n        \"symfony/string\": \"*\",\n        \"symfony/swiftmailer-bundle\": \"^3.5\",\n        \"symfony/translation\": \"*\",\n        \"symfony/twig-bundle\": \"*\",\n        \"symfony/validator\": \"*\",\n        \"symfony/web-link\": \"*\",\n        \"symfony/yaml\": \"*\",\n        \"twig/extra-bundle\": \"^2.12|^3.0\",\n        \"twig/twig\": \"^2.12|^3.0\",\n        \"uvdesk/api-bundle\": \"^1.1.4\",\n        \"uvdesk/automation-bundle\": \"^1.1.4\",\n        \"uvdesk/core-framework\": \"^1.1.7\",\n        \"uvdesk/extension-framework\": \"^1.1.2\",\n        \"uvdesk/mailbox-component\": \"^1.1.5\",\n        \"uvdesk/support-center-bundle\": \"^1.1.3\",\n        \"intervention/image\": \"^2.4\",\n        \"intervention/imagecache\": \"^2.5.2\"\n    },\n    \"require-dev\": {\n    },\n    \"flex-require-dev\": {\n        \"symfony/debug-pack\": \"*\",\n        \"symfony/maker-bundle\": \"^1.0\",\n        \"symfony/profiler-pack\": \"*\",\n        \"symfony/test-pack\": \"*\"\n    },\n    \"config\": {\n        \"allow-plugins\": {\n            \"composer/package-versions-deprecated\": true,\n            \"symfony/flex\": true,\n            \"symfony/runtime\": true\n        },\n        \"optimize-autoloader\": true,\n        \"preferred-install\": {\n            \"*\": \"dist\"\n        },\n        \"sort-packages\": true\n    },\n    \"autoload\": {\n        \"psr-4\": {\n            \"App\\\\\": \"src/\"\n        }\n    },\n    \"autoload-dev\": {\n        \"psr-4\": {\n            \"App\\\\Tests\\\\\": \"tests/\"\n        }\n    },\n    \"replace\": {\n        \"symfony/polyfill-ctype\": \"*\",\n        \"symfony/polyfill-iconv\": \"*\",\n        \"symfony/polyfill-php72\": \"*\"\n    },\n    \"scripts\": {\n        \"auto-scripts\": {\n            \"cache:clear\": \"symfony-cmd\",\n            \"assets:install %PUBLIC_DIR%\": \"symfony-cmd\"\n        },\n        \"post-install-cmd\": [\n            \"@auto-scripts\"\n        ],\n        \"post-update-cmd\": [\n            \"@auto-scripts\"\n        ]\n    },\n    \"conflict\": {\n        \"symfony/symfony\": \"*\"\n    },\n    \"extra\": {\n        \"symfony\": {\n            \"allow-contrib\": false,\n            \"endpoint\": [\n                \"https://api.github.com/repos/uvdesk/recipes/contents/index.json\",\n                \"flex://defaults\"\n            ],\n            \"require\": \"^5.4\"\n        }\n    }\n}\n"
  },
  {
    "path": "config/bundles.php",
    "content": "<?php\n\nreturn [\n    Webkul\\UVDesk\\CoreFrameworkBundle\\UVDeskCoreFrameworkBundle::class => ['all' => true],\n    Webkul\\UVDesk\\AutomationBundle\\UVDeskAutomationBundle::class => ['all' => true],\n    Webkul\\UVDesk\\ExtensionFrameworkBundle\\UVDeskExtensionFrameworkBundle::class => ['all' => true],\n    Webkul\\UVDesk\\MailboxBundle\\UVDeskMailboxBundle::class => ['all' => true],\n    Webkul\\UVDesk\\SupportCenterBundle\\UVDeskSupportCenterBundle::class => ['all' => true],\n    Webkul\\UVDesk\\ApiBundle\\UVDeskApiBundle::class => ['all' => true],\n];\n"
  },
  {
    "path": "config/packages/doctrine.yaml",
    "content": "parameters:\n    # Adds a fallback DATABASE_URL if the env var is not set.\n    # This allows you to run cache:warmup even if your\n    # environment variables are not available yet.\n    # You should not need to change this value.\n    env(DATABASE_URL): ''\n\ndoctrine:\n    dbal:\n        # configure these for your database server\n        driver: 'pdo_mysql'\n        server_version: '5.7'\n        charset: utf8mb4\n        default_table_options:\n            charset: utf8mb4\n            collate: utf8mb4_unicode_ci\n\n        url: '%env(DATABASE_URL)%'\n        options:\n            1002: 'SET sql_mode=(SELECT REPLACE(@@sql_mode, \"ONLY_FULL_GROUP_BY\", \"\"))'\n    orm:\n        auto_generate_proxy_classes: true\n        naming_strategy: doctrine.orm.naming_strategy.underscore\n        auto_mapping: true\n        mappings:\n            App:\n                is_bundle: false\n                type: annotation\n                dir: '%kernel.project_dir%/src/Entity'\n                prefix: 'App\\Entity'\n                alias: App\n"
  },
  {
    "path": "config/packages/framework.yaml",
    "content": "# see https://symfony.com/doc/current/reference/configuration/framework.html\nframework:\n    secret: '%env(APP_SECRET)%'\n    #csrf_protection: true\n    http_method_override: false\n\n    # Enables session support. Note that the session will ONLY be started if you read or write from it.\n    # Remove or comment this section to explicitly disable session support.\n    session:\n        handler_id: null\n        cookie_secure: auto\n        cookie_samesite: lax\n        cookie_lifetime: '%env(int:UV_SESSION_COOKIE_LIFETIME)%'\n        gc_maxlifetime: '%env(int:UV_SESSION_COOKIE_LIFETIME)%'\n        storage_factory_id: session.storage.factory.native\n\n    #esi: true\n    #fragments: true\n    php_errors:\n        log: true\n\nwhen@test:\n    framework:\n        test: true\n        session:\n            storage_factory_id: session.storage.factory.mock_file\n"
  },
  {
    "path": "config/packages/mailer.yaml",
    "content": "framework:\n    mailer:\n        transports:\n            main: '%env(MAILER_DSN)%'\n"
  },
  {
    "path": "config/packages/security.yaml",
    "content": "security:\n    role_hierarchy:\n        ROLE_AGENT: ROLE_AGENT\n        ROLE_ADMIN: [ROLE_AGENT, ROLE_ADMIN]\n        ROLE_SUPER_ADMIN: [ROLE_ADMIN, ROLE_SUPER_ADMIN]\n        ROLE_CUSTOMER: ROLE_CUSTOMER\n    \n    encoders:\n        Webkul\\UVDesk\\CoreFrameworkBundle\\Entity\\User: auto\n    \n    # https://symfony.com/doc/current/security.html#where-do-users-come-from-user-providers\n    providers:\n        user_provider:\n            id: user.provider\n\n        api_user_provider:\n            id: Webkul\\UVDesk\\ApiBundle\\Providers\\ApiCredentials\n    \n    firewalls:\n        dev:\n            pattern: ^/(_(profiler|wdt)|css|images|js)/\n            security: false\n\n            # activate different ways to authenticate\n            # https://symfony.com/doc/current/security.html#firewalls-authentication\n\n            # https://symfony.com/doc/current/security/impersonating_user.html\n            # switch_user: true\n        \n        back_support:\n            pattern: /%uvdesk_site_path.member_prefix%\n            provider: user_provider\n            anonymous: ~\n            form_login:\n                use_referer: true\n                login_path: helpdesk_member_handle_login\n                check_path: helpdesk_member_handle_login\n                default_target_path: helpdesk_member_dashboard\n                always_use_default_target_path: true\n            logout:\n                path: helpdesk_member_handle_logout\n                target: helpdesk_member_handle_login\n            remember_me:\n                secret: '%kernel.secret%'\n                lifetime: 604800       # 7 days\n                path: /\n                name: REMEMBERME\n                remember_me_parameter: _remember_me\n        \n        uvdesk_api:\n            pattern: ^/api\n            anonymous: true\n            provider: api_user_provider\n            guard:\n                authenticators:\n                    Webkul\\UVDesk\\ApiBundle\\Security\\Guards\\APIGuard: Webkul\\UVDesk\\ApiBundle\\Security\\Guards\\APIGuard\n        \n        customer:\n            pattern: /\n            provider: user_provider\n            anonymous: ~\n            form_login:\n                use_referer: true\n                login_path: helpdesk_customer_login\n                check_path: helpdesk_customer_login\n                default_target_path: helpdesk_customer_ticket_collection\n                always_use_default_target_path: true\n            logout:\n                path: helpdesk_customer_logout\n                target: helpdesk_customer_login\n    \n    access_control:\n        - { path: /%uvdesk_site_path.member_prefix%/login, roles: [IS_AUTHENTICATED_REMEMBERED, IS_AUTHENTICATED_ANONYMOUSLY] }\n        - { path: /%uvdesk_site_path.member_prefix%/create-account, roles: [IS_AUTHENTICATED_REMEMBERED, IS_AUTHENTICATED_ANONYMOUSLY] }\n        - { path: /%uvdesk_site_path.member_prefix%/forgot-password, roles: [IS_AUTHENTICATED_REMEMBERED,IS_AUTHENTICATED_ANONYMOUSLY] }\n        - { path: /%uvdesk_site_path.member_prefix%/update-credentials, roles: [IS_AUTHENTICATED_REMEMBERED,IS_AUTHENTICATED_ANONYMOUSLY] }\n        - { path: /%uvdesk_site_path.member_prefix%/mailbox/listener, roles: [IS_AUTHENTICATED_ANONYMOUSLY] }\n        - { path: /%uvdesk_site_path.member_prefix%/, roles: ROLE_AGENT }\n        - { path: /%uvdesk_site_path.knowledgebase_customer_prefix%/login, roles: [IS_AUTHENTICATED_ANONYMOUSLY] }\n        - { path: /%uvdesk_site_path.knowledgebase_customer_prefix%/create-ticket, roles: [IS_AUTHENTICATED_ANONYMOUSLY] }\n        - { path: /%uvdesk_site_path.knowledgebase_customer_prefix%/forgot-password, roles: [IS_AUTHENTICATED_ANONYMOUSLY] }\n        - { path: /%uvdesk_site_path.knowledgebase_customer_prefix%/update-credentials, roles: [IS_AUTHENTICATED_ANONYMOUSLY] }\n        - { path: /%uvdesk_site_path.knowledgebase_customer_prefix%/ticket/intermediate/public-access/read-only, roles: [IS_AUTHENTICATED_REMEMBERED, IS_AUTHENTICATED_ANONYMOUSLY, ROLE_CUSTOMER_READ_ONLY]  }\n        - { path: /%uvdesk_site_path.knowledgebase_customer_prefix%/ticket/view, roles: [ROLE_CUSTOMER, ROLE_CUSTOMER_READ_ONLY] }\n        - { path: /%uvdesk_site_path.knowledgebase_customer_prefix%/, roles: [ROLE_CUSTOMER] }\n"
  },
  {
    "path": "config/packages/translation.yaml",
    "content": "framework:\n    default_locale: en\n    translator:\n        default_path: '%kernel.project_dir%/translations'\n        fallbacks:\n            - en\n"
  },
  {
    "path": "config/packages/twig.yaml",
    "content": "twig:\n    default_path: '%kernel.project_dir%/templates'\n    debug: '%kernel.debug%'\n    strict_variables: '%kernel.debug%'\n    globals:\n        default_agent_image_path: '%assets_default_agent_profile_image_path%'\n        default_customer_image_path: '%assets_default_customer_profile_image_path%'\n        default_helpdesk_image_path: '%assets_default_helpdesk_profile_image_path%'\n        max_post_size: '%max_post_size%'\n        max_file_uploads: '%max_file_uploads%'\n        upload_max_filesize: '%upload_max_filesize%'\n        user_service: '@user.service'\n        uvdesk_service: '@uvdesk.service'\n        recaptcha_service: '@recaptcha.service'\n        ticket_service: '@ticket.service'\n        csrf_token_generator: '@security.csrf.token_manager'\n        email_service: '@email.service'\n        uvdesk_extensibles: '@uvdesk.extensibles'\n        uvdesk_core_file_system: '@uvdesk.core.file_system.service'\n        uvdesk_automations: '@uvdesk.automations'\n        uvdesk_version: \"%uvdesk.version%\"\n        uvdesk_core_version: \"%uvdesk.core.version%\"\n"
  },
  {
    "path": "config/packages/uvdesk.yaml",
    "content": "parameters:\n    app_locales: en|fr|it|de|da|ar|es|tr|zh|pl|he|pt_BR\n    \n    # Default Assets\n    assets_default_agent_profile_image_path: 'bundles/uvdeskcoreframework/images/uv-avatar-batman.png'\n    assets_default_customer_profile_image_path: 'bundles/uvdeskcoreframework/images/uv-avatar-ironman.png'\n    assets_default_helpdesk_profile_image_path: 'bundles/uvdeskcoreframework/images/uv-avatar-uvdesk.png'\n\n    uvdesk_site_path.member_prefix: member\n    uvdesk_site_path.knowledgebase_customer_prefix: customer\n\n    # File uploads constraints\n    # @TODO: Set these parameters via compilers\n    max_post_size: 8388608\n    max_file_uploads: 20\n    upload_max_filesize: 2097152\n\nuvdesk:\n    site_url: 'localhost:8000'\n    upload_manager:\n        id: Webkul\\UVDesk\\CoreFrameworkBundle\\FileSystem\\UploadManagers\\Localhost\n    \n    support_email: ~\n    \n    # Default resources\n    default:\n        ticket:\n            type: support\n            status: open\n            priority: low\n        templates:\n            email: mail.html.twig\n"
  },
  {
    "path": "config/packages/uvdesk_extensions.yaml",
    "content": "uvdesk_extensions:\n    dir: '%kernel.project_dir%/apps'\n"
  },
  {
    "path": "config/packages/uvdesk_mailbox.yaml",
    "content": "uvdesk_mailbox:\n    emails: ~\n        # Often Reply emails like from gmail contains extra and redundant previous mail data.\n        # This data can be removed by adding delimiter i.e. specific line before each reply. \n        # delimiter: '<-- Please add content above this line -->'\n        # enable_delimiter: true\n\n    # Configure your mailboxes here\n    mailboxes: ~\n        # default:\n        #     name: 'Sample Mailbox'\n        #     enabled: true\n        #     disable_outbound_emails: false\n        #     use_strict_mode: false\n        \n        #     # Incoming email settings\n        #     # IMAP settings to use for fetching emails from mailbox\n        #     imap_server:\n        #         host: ~\n        #         username: ~\n        #         password: ~\n\n        #     # Outgoing email settings\n        #     # Mailer settings to use for sending emails from mailbox\n        #     smtp_server:\n        #         host: ~\n        #         port: ~\n        #         client: ~\n        #         type: ~\n        #         username: ~\n        #         password: ~\n        #         sender_address: ~\n"
  },
  {
    "path": "config/routes.yaml",
    "content": "uvdesk:\n    resource: .\n    type: uvdesk\nuvdesk_extensions:\n    resource: .\n    type: uvdesk_extensions\n"
  },
  {
    "path": "config/services.yaml",
    "content": "# This file is the entry point to configure your own services.\n# Files in the packages/ subdirectory configure your dependencies.\n\n# Put parameters here that don't need to change on each machine where the app is deployed\n# https://symfony.com/doc/current/best_practices/configuration.html#application-related-configuration\nparameters:\n    locale: 'en'\n    uvdesk.version: \"v1.1.8\"\n\nservices:\n    # default configuration for services in *this* file\n    _defaults:\n        autowire: true      # Automatically injects dependencies in your services.\n        autoconfigure: true # Automatically registers your services as commands, event subscribers, etc.\n        public: false       # Allows optimizing the container by removing unused services; this also means\n                            # fetching services directly from the container via $container->get() won't work.\n                            # The best practice is to be explicit about your dependencies anyway.\n\n    # makes classes in src/ available to be used as services\n    # this creates a service per class whose id is the fully-qualified class name\n    App\\:\n        resource: '../src/*'\n        exclude: '../src/{DependencyInjection,Entity,Migrations,Tests,Kernel.php}'\n    \n    # controllers are imported separately to make sure services can be injected\n    # as action arguments even if you don't extend any base controller class\n    App\\Controller\\:\n        resource: '../src/Controller'\n        tags: ['controller.service_arguments']\n    \n    # add more service definitions when explicit configuration is needed\n    # please note that last definitions always *replace* previous ones\n"
  },
  {
    "path": "public/.htaccess",
    "content": "<IfModule mod_rewrite.c>\n    RewriteEngine On\n    RewriteCond %{REQUEST_FILENAME} !-f\n    RewriteRule ^(.*)$ ./index.php/$1 [QSA,L]\n    RewriteCond %{HTTP:Authorization} ^(.*)\n    RewriteRule .* - [e=HTTP_AUTHORIZATION:%1]\n</IfModule>"
  },
  {
    "path": "public/assets/.gitignore",
    "content": ""
  },
  {
    "path": "public/attachments/.gitignore",
    "content": ""
  },
  {
    "path": "public/css/main.css",
    "content": "/* Main CSS */\n* {\n    box-sizing: border-box;\n    -webkit-font-smoothing: antialiased;\n    -moz-osx-font-smoothing: grayscale;\n  }\n  *:focus {\n    outline: none;\n  }\n  html,\n  body {\n    font-family: 'Source Sans Pro', sans-serif;\n    font-weight: 400;\n    color: #333333;\n    margin: 0px;\n  }\n  a:link,\n  a:hover,\n  a:visited,\n  a:focus,\n  a:active {\n    text-decoration: none;\n  }\n  @keyframes bounce {\n    0% {\n      transform: scale(1);\n    }\n    50% {\n      transform: scale(1.1);\n    }\n    100% {\n      transform: scale(1);\n    }\n  }\n  .fade-out-white {\n    animation: fade-out-white 0.3s ease-in-out !important;\n  }\n  .jelly-out {\n    animation: jelly-out 0.5s ease-in-out !important;\n  }\n  .active {\n    opacity: .75;\n  }\n  @keyframes flap-up {\n    0% {\n      opacity: 0;\n      transform: translateY(25px);\n    }\n    100% {\n      opacity: 1;\n      transform: translateY(0px);\n    }\n  }\n  @keyframes flap-slide {\n    0% {\n      opacity: 0;\n      transform: translateX(120px);\n    }\n    100% {\n      opacity: 1;\n      transform: translateX(0px);\n    }\n  }\n  @keyframes cog-animate-lg {\n    0% {\n      transform: rotate(0deg);\n      transform-origin: center;\n    }\n    100% {\n      transform: rotate(360deg);\n      transform-origin: center;\n    }\n  }\n  @keyframes cog-animate-sm {\n    0% {\n      transform: rotate(0deg);\n      transform-origin: center;\n    }\n    100% {\n      transform: rotate(-360deg);\n      transform-origin: center;\n    }\n  }\n  @keyframes bounce {\n    0% {\n      transform: scale(1);\n    }\n    50% {\n      transform: scale(1.1);\n    }\n    100% {\n      transform: scale(1);\n    }\n  }\n  @keyframes move {\n    0% {\n      transform: translateY(0px);\n    }\n    50% {\n      transform: translateY(-10px);\n    }\n    75% {\n      transform: translateY(5px);\n    }\n    100% {\n      transform: translateY(0px);\n    }\n  }\n  @keyframes shine {\n    0% {\n      transform: rotate(-45deg) translate(-20px, -60px);\n      opacity: 0;\n    }\n    100% {\n      transform: rotate(-45deg) translate(-25px, 55px);\n      opacity: .5;\n    }\n  }\n  @keyframes attention {\n    0% {\n      transform: translateY(0px);\n      transform-origin: center top;\n    }\n    35% {\n      transform: translateY(-10px);\n      transform-origin: center top;\n    }\n    50% {\n      transform: translateY(0px);\n      transform-origin: center top;\n    }\n    65% {\n      transform: translateY(-10px);\n      transform-origin: center top;\n    }\n    100% {\n      transform: translateY(0px);\n      transform-origin: center top;\n    }\n  }\n  @keyframes bounce-loader-before {\n    0% {\n      transform: scale(0);\n      opacity: .1;\n    }\n    50% {\n      transform: scale(1.3);\n      opacity: .7;\n    }\n    100% {\n      transform: scale(0);\n      opacity: .1;\n    }\n  }\n  @keyframes bounce-loader-after {\n    0% {\n      transform: scale(1.3);\n      opacity: .7;\n    }\n    50% {\n      transform: scale(0.7);\n      opacity: .1;\n    }\n    100% {\n      transform: scale(1.3);\n      opacity: .7;\n    }\n  }\n  @keyframes move-loader {\n    0% {\n      transform: translateY(0px);\n      opacity: 0;\n    }\n    50% {\n      transform: translateY(10px);\n      opacity: 1;\n    }\n    100% {\n      transform: translateY(0px);\n      opacity: 0;\n    }\n  }\n  @keyframes jelly {\n    0% {\n      transform: translateY(0px) scale(0.7);\n      opacity: 0;\n    }\n    70% {\n      transform: translateY(5px) scale(1.05);\n      opacity: 1;\n    }\n    100% {\n      transform: translateY(0px) scale(1);\n      opacity: 1;\n    }\n  }\n  @keyframes jelly-out {\n    0% {\n      transform: translateY(0px) scale(1);\n      opacity: 1;\n    }\n    30% {\n      transform: translateY(-5px) scale(1.05);\n      opacity: 1;\n    }\n    100% {\n      transform: translateY(0px) scale(0.7);\n      opacity: 0;\n    }\n  }\n  @keyframes fade-in-white {\n    0% {\n      opacity: 0;\n    }\n    100% {\n      opacity: .9;\n    }\n  }\n  @keyframes fade-out-white {\n    0% {\n      opacity: .9;\n    }\n    100% {\n      opacity: 0;\n    }\n  }\n  @keyframes zoom-move {\n    0% {\n      transform: scale(1, 1);\n    }\n    50% {\n      transform: scale(1.25, 1.25);\n    }\n    100% {\n      transform: scale(1, 1);\n    }\n  }\n  @keyframes zoom-move-reflect {\n    0% {\n      transform: translate(-30px, -180px) rotateZ(45deg);\n    }\n    100% {\n      transform: translate(90px, 30px) rotateZ(45deg);\n    }\n  }\n  @keyframes tour-moves-in {\n    0% {\n      transform: translateY(200px);\n      opacity: 0;\n    }\n    100% {\n      transform: translateY(0px);\n      opacity: 1;\n    }\n  }\n  .uv-btn-small {\n    font-size: 13px;\n    padding: 6px 10px;\n    color: #FFFFFF;\n    background-color: #7C70F4;\n    display: inline-block;\n    text-transform: uppercase;\n    border-radius: 3px;\n    font-weight: 700;\n    border: none;\n    font-family: inherit;\n    cursor: pointer;\n    vertical-align: middle;\n    margin: 5px 0px;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-btn-small[disabled=\"disabled\"],\n  .uv-btn-small[disabled=\"disabled\"]:hover,\n  .uv-btn-small[disabled=\"disabled\"]:active,\n  .uv-btn[disabled=\"disabled\"],\n  .uv-btn[disabled=\"disabled\"]:hover,\n  .uv-btn[disabled=\"disabled\"]:active,\n  .uv-btn-large[disabled=\"disabled\"],\n  .uv-btn-large[disabled=\"disabled\"]:hover,\n  .uv-btn-large[disabled=\"disabled\"]:active,\n  .uv-btn-action[disabled=\"disabled\"],\n  .uv-btn-action[disabled=\"disabled\"]:hover,\n  .uv-btn-action[disabled=\"disabled\"]:active {\n    cursor: not-allowed;\n    background: #B1B1AE;\n    box-shadow: none;\n    opacity: 1;\n  }\n  .uv-btn {\n    font-size: 15px;\n    padding: 10px 10px;\n    color: #FFFFFF;\n    background-color: #7C70F4;\n    display: inline-block;\n    text-transform: uppercase;\n    border-radius: 3px;\n    font-weight: 700;\n    border: none;\n    font-family: inherit;\n    cursor: pointer;\n    vertical-align: middle;\n    margin: 5px 0px;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-btn-nofill {\n    font-size: 15px;\n    padding: 10px 10px;\n    color: #9E9E9E;\n    background-color: transparent;\n    display: inline-block;\n    text-transform: uppercase;\n    border-radius: 3px;\n    font-weight: 700;\n    border: none;\n    font-family: inherit;\n    cursor: pointer;\n    vertical-align: middle;\n    margin: 5px 0px;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-btn-nofill:hover {\n    background-color: #F2F2F2;\n  }\n  .uv-btn-large {\n    font-size: 17px;\n    padding: 12px 10px;\n    color: #FFFFFF;\n    background-color: #7C70F4;\n    display: inline-block;\n    text-transform: uppercase;\n    border-radius: 3px;\n    font-weight: 700;\n    border: none;\n    font-family: inherit;\n    cursor: pointer;\n    vertical-align: middle;\n    margin: 5px 0px;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-btn-error {\n    background: #FF5656 !important;\n  }\n  .uv-btn-error:hover {\n    opacity: .98;\n  }\n  .uv-btn-error:active {\n    opacity: .80;\n  }\n  .uv-btn-stroke {\n    border: solid 1px #B1B1AE;\n    padding: 8px 10px;\n    border-radius: 3px;\n    cursor: pointer;\n    vertical-align: middle;\n    font-size: 15px;\n    display: inline-block;\n    margin: 5px 0px;\n    color: #333333;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-btn-stroke[disabled=\"disabled\"] {\n    opacity: .4;\n    cursor: not-allowed;\n    border-color: #B1B1AE !important;\n  }\n  .uv-btn-tag {\n    border: solid 1px #B1B1AE;\n    background: #FFFFFF;\n    padding: 5px 7px;\n    border-radius: 3px;\n    cursor: pointer;\n    vertical-align: middle;\n    font-size: 13px;\n    display: inline-block;\n    margin: 5px 0px;\n    color: #333333;\n    text-transform: capitalize;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-btn-tag:hover {\n    border-color: #6F6F6F;\n  }\n  .uv-btn-action {\n    font-size: 15px;\n    padding: 8px 10px 9px 10px;\n    color: #FFFFFF;\n    background-color: #7C70F4;\n    display: inline-block;\n    text-transform: uppercase;\n    border-radius: 3px;\n    font-weight: 700;\n    border: none;\n    font-family: inherit;\n    cursor: pointer;\n    vertical-align: middle;\n    margin: 5px 0px;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-btn-remove {\n    color: #FF5656;\n    font-size: 15px;\n    margin: 25px 0px;\n    display: inline-block;\n    vertical-align: middle;\n    cursor: pointer;\n  }\n  .uv-btn:hover,\n  .uv-btn-small:hover,\n  .uv-btn-large:hover,\n  .uv-btn-action:hover {\n    background-color: #BA81F1;\n    box-shadow: 0px 4px 15.36px 0.64px rgba(0, 0, 0, 0.1), 0px 2px 6px 0px rgba(0, 0, 0, 0.12);\n  }\n  .uv-btn:active,\n  .uv-btn-small:active,\n  .uv-btn-large:active,\n  .uv-btn-action:active {\n    opacity: .75;\n  }\n  .uv-btn-stroke:active {\n    border-color: #7C70F4;\n  }\n  .uv-btn-label {\n    display: inline-block;\n    font-size: 13px;\n    padding: 6px 10px;\n    text-transform: uppercase;\n    background: #7C70F4;\n    color: #FFFFFF;\n    border-radius: 3px;\n    margin: 5px;\n  }\n  .uv-dropdown {\n    display: inline-block;\n    color: #333333;\n    position: relative;\n    margin: 5px;\n  }\n  .uv-search-sm input.uv-search-field {\n    border: solid 1px #B1B1AE;\n    border-radius: 3px;\n    color: #333333;\n    font-size: 15px;\n    box-sizing: border-box;\n    padding: 5px 10px;\n    width: 160px;\n    margin-top: 10px;\n  }\n  .uv-dropdown-list ul.uv-agents-list {\n    background: #FAFAFA;\n    max-height: 224px;\n    overflow-y: auto;\n  }\n  .uv-dropdown-list ul.uv-agents-list li {\n    color: #333333;\n    border-top: solid 1px #D3D3D3;\n    padding: 15px 20px;\n  }\n  .uv-dropdown-list ul.uv-agents-list li img {\n    width: 25px;\n    display: inline-block;\n    border-radius: 3px;\n    margin-right: 5px;\n    vertical-align: middle;\n  }\n  .uv-dropdown .uv-dropdown-btn {\n    display: inline-block;\n    border: solid 1px #B1B1AE;\n    padding: 8px 27px 8px 10px;\n    border-radius: 3px;\n    cursor: pointer;\n    font-size: 15px;\n    position: relative;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-dropdown .uv-dropdown-btn:after {\n    content: \"\";\n    position: absolute;\n    background-image: url('../../bundles/webkuldefault/images/arrow-down.svg');\n    background-repeat: no-repeat;\n    background-position: center;\n    width: 12px;\n    height: 6px;\n    margin-top: -3px;\n    top: 50%;\n    right: 10px;\n  }\n  .uv-dropdown-list {\n    width: 200px;\n    box-shadow: 0px 4px 15.36px 0.64px rgba(0, 0, 0, 0.1), 0px 2px 6px 0px rgba(0, 0, 0, 0.12);\n    border-radius: 3px;\n    background-color: #FFFFFF;\n    position: absolute;\n    display: none;\n    z-index: 1000;\n  }\n  .uv-dropdown-container {\n    padding: 20px;\n    overflow-y: auto;\n    max-height: 280px;\n  }\n  .uv-dropdown-list label {\n    vertical-align: middle;\n    margin-right: 3px;\n  }\n  .uv-drop-list-active {\n    position: relative;\n  }\n  span.uv-sorting.descend {\n    width: 12px;\n    height: 14px;\n    position: absolute;\n    top: 8px;\n    right: 0px;\n    cursor: pointer;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: 0px -68px;\n  }\n  span.uv-sorting:hover.descend {\n    background-position: 0px -83px;\n  }\n  span.uv-sorting.ascend {\n    width: 12px;\n    height: 14px;\n    position: absolute;\n    top: 8px;\n    right: 0px;\n    cursor: pointer;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -13px -68px;\n  }\n  span.uv-sorting:hover.ascend {\n    background-position: -13px -83px;\n  }\n  .uv-dropdown-list label {\n    font-size: 15px;\n    display: inline-block;\n    text-transform: uppercase;\n    color: #9E9E9E;\n    font-weight: 700;\n    padding-bottom: 5px;\n  }\n  .uv-dropdown-list ul {\n    margin: 0px;\n    list-style-type: none;\n    padding: 0px;\n  }\n  .uv-dropdown-list ul li {\n    padding: 5px 0px;\n    font-size: 17px;\n  }\n  .uv-dropdown-list ul li:hover {\n    color: #2750C4;\n    cursor: pointer;\n  }\n  .uv-dropdown-list ul li:hover.uv-dropdown-checkbox {\n    color: #333333;\n  }\n  .uv-dropdown-list ul li a:link,\n  .uv-dropdown-list ul li a:active,\n  .uv-dropdown-list ul li a:visited,\n  .uv-dropdown-list ul li a:focus {\n    color: #333333;\n    display: block;\n  }\n  .uv-dropdown-list ul li a:hover {\n    color: #2750C4;\n  }\n  .uv-dropdown-show {\n    display: block;\n  }\n  .uv-top-left {\n    bottom: 42px;\n    left: 0px;\n  }\n  .uv-top-right {\n    bottom: 42px;\n    right: 0px;\n  }\n  .uv-bottom-left {\n    top: 42px;\n    left: 0px;\n  }\n  .uv-bottom-right {\n    top: 42px;\n    right: 0px;\n  }\n  .uv-dropdown .uv-dropdown-btn-active {\n    border: solid 1px #7C70F4;\n  }\n  .uv-element-block {\n    display: block;\n    margin: 20px 0px;\n    font-size: 15px;\n    color: #333333;\n    width: 550px;\n    max-width: 100%;\n  }\n  .uv-element-block p a:link,\n  .uv-element-block p a:hover,\n  .uv-element-block p a:active,\n  .uv-element-block p a:visited {\n    color: #2750C4;\n    font-size: 15px;\n  }\n  .uv-element-block p a:hover {\n    text-decoration: underline;\n  }\n  .uv-checkbox {\n    width: 20px;\n    height: 20px;\n    position: relative;\n    cursor: pointer;\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-checkbox input[type=\"checkbox\"] {\n    width: 20px;\n    height: 20px;\n    position: absolute;\n    top: 0;\n    left: 0;\n    opacity: 0;\n    z-index: 100;\n  }\n  .uv-checkbox input[type=\"checkbox\"] + .uv-checkbox-view {\n    width: 20px;\n    height: 20px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-controls.svg\");\n    background-position: 0px 0px;\n    cursor: pointer;\n    position: absolute;\n    top: 0;\n    left: 0;\n  }\n  .uv-checkbox input[type=\"checkbox\"]:checked + .uv-checkbox-view {\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-controls.svg\");\n    background-position: 0px -21px;\n  }\n  .uv-checkbox input[type=\"checkbox\"] + .uv-check-todo {\n    width: 22px;\n    height: 22px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: 1px -373px;\n    cursor: pointer;\n    position: absolute;\n    top: 0;\n    left: 0;\n  }\n  .uv-checkbox input[type=\"checkbox\"]:checked + .uv-check-todo {\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -22px -373px;\n  }\n  .uv-checkbox-label,\n  .uv-radio-label {\n    vertical-align: middle;\n    display: inline-block;\n    padding-left: 5px;\n  }\n  .uv-radio {\n    width: 20px;\n    height: 20px;\n    position: relative;\n    cursor: pointer;\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-radio input[type=\"radio\"] {\n    width: 20px;\n    height: 20px;\n    position: absolute;\n    top: 0;\n    left: 0;\n    opacity: 0;\n    z-index: 100;\n  }\n  .uv-radio input[type=\"radio\"] + .uv-radio-view {\n    width: 20px;\n    height: 20px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-controls.svg\");\n    background-position: -21px 0px;\n    cursor: pointer;\n    position: absolute;\n    top: 0;\n    left: 0;\n  }\n  .uv-radio input[type=\"radio\"]:checked + .uv-radio-view {\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-controls.svg\");\n    background-position: -21px -21px;\n  }\n  .uv-attachment {\n    width: 0px;\n    height: 0px;\n    position: relative;\n    cursor: pointer;\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-attachment input[type=\"file\"] {\n    background: red;\n    opacity: 0;\n    cursor: pointer;\n  }\n  .uv-file-label {\n    color: #2750C4;\n    vertical-align: middle;\n    display: inline-block;\n    cursor: pointer;\n  }\n  .uv-file-label:before {\n    width: 18px;\n    height: 20px;\n    background-image: url(\"../../bundles/webkuldefault/images/icon-attachment.svg\");\n    content: \"\";\n    display: inline-block;\n    vertical-align: middle;\n    margin-right: 7px;\n  }\n  .uv-element-block .uv-added-attachment {\n    color: #333333;\n    margin: 5px 30px;\n  }\n  .uv-element-block .uv-added-attachment span {\n    width: 8px;\n    height: 8px;\n    padding-right: 12px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -64px -27px;\n    display: inline-block;\n    vertical-align: middle;\n    cursor: pointer;\n  }\n  .uv-field-label {\n    display: block;\n  }\n  .uv-field-block {\n    display: block;\n  }\n  .uv-field {\n    width: 70%;\n    height: 36px;\n    border: solid 1px #B1B1AE;\n    border-radius: 3px;\n    display: inline-block;\n    vertical-align: middle;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n    padding: 0px 10px;\n    font-size: 15px;\n    color: #333333;\n    margin: 10px 0px;\n  }\n  .uv-field-workflow {\n    width: 100%;\n  }\n  .uv-field-workflow .uv-select,\n  .uv-field-workflow .uv-field {\n    max-width: 200px;\n    width: 30%;\n    display: inline-block;\n    margin: 15px 10px 15px 0px;\n  }\n  .uv-workflow-hr-plank {\n    display: block;\n    height: 45px;\n    margin-top: 12px;\n    text-align: right;\n  }\n  .uv-workflow-hr-plank .uv-workflow-hr-or {\n    width: 95%;\n    border-top: solid 1px #D3D3D3;\n    display: inline-block;\n    position: relative;\n  }\n  .uv-workflow-hr-plank .uv-workflow-or {\n    width: 40px;\n    height: 40px;\n    position: absolute;\n    box-shadow: 0px 5px 14.25px 0.75px rgba(0, 0, 0, 0.25);\n    background-color: #FFFFFF;\n    font-size: 17px;\n    line-height: 2.2;\n    color: #333333;\n    left: 45px;\n    top: -20px;\n    border-radius: 50%;\n    text-align: center;\n  }\n  .uv-workflow-hr-plank .uv-workflow-or:before {\n    position: absolute;\n    top: -10px;\n    left: -11px;\n    content: \"\";\n    width: 62px;\n    height: 62px;\n    background-image: url(\"../../bundles/webkuldefault/images/icon-clip-or.svg\");\n    background-repeat: no-repeat;\n    background-position: center center;\n    z-index: -1;\n  }\n  .uv-workflow-hr-plank .uv-workflow-hr-and {\n    width: 100%;\n    border-top: solid 1px #D3D3D3;\n    display: inline-block;\n    position: relative;\n  }\n  .uv-workflow-hr-plank .uv-workflow-and {\n    width: 40px;\n    height: 40px;\n    position: absolute;\n    box-shadow: 0px 5px 14.25px 0.75px rgba(0, 0, 0, 0.25);\n    background-color: #FFFFFF;\n    font-size: 17px;\n    line-height: 2.3;\n    color: #333333;\n    left: 45px;\n    top: -20px;\n    border-radius: 50%;\n    text-align: center;\n  }\n  .uv-workflow-hr-plank .uv-workflow-and:before {\n    position: absolute;\n    top: 7px;\n    left: -11px;\n    content: \"\";\n    width: 62px;\n    height: 45px;\n    background-image: url(\"../../bundles/webkuldefault/images/icon-clip-or.svg\");\n    background-repeat: no-repeat;\n    background-position: center bottom;\n    z-index: -1;\n  }\n  .uv-workflow-buttons .uv-btn-tag {\n    margin: 10px 5px 0px 0px;\n  }\n  .uv-search-inline {\n    border: solid 1px #B1B1AE;\n    border-radius: 3px;\n    font-size: 15px;\n    display: inline-block;\n    margin: 5px 0px;\n    color: #333333;\n    transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n    padding: 7px 10px 9px 33px;\n    background-size: 32px;\n    background-image: url(../../bundles/webkuldefault/images/icon-search.svg);\n    background-repeat: no-repeat;\n    background-position: 1px 1px;\n    width: 180px;\n    max-width: 100%;\n    vertical-align: middle;\n  }\n  .uv-search-inline:focus {\n    border-color: #7C70F4;\n    background-position: 1px -31px;\n  }\n  .uv-search-inline-300 {\n    width: 300px;\n    max-width: 100%;\n  }\n  .uv-group {\n    font-size: 0;\n    width: 70%;\n    margin-top: 15px;\n  }\n  .uv-group-field {\n    width: 80%;\n    height: 36px;\n    border: solid 1px #B1B1AE;\n    border-right: none;\n    border-radius: 3px 0px 0px 3px;\n    display: inline-block;\n    vertical-align: middle;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n    padding: 0px 10px;\n    font-size: 15px;\n    color: #333333;\n    margin: 0px;\n  }\n  .uv-group-select {\n    background-color: #FFFFFF !important;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    width: 20%;\n    height: 36px;\n    border: solid 1px #B1B1AE;\n    border-radius: 0px 3px 3px 0px;\n    display: inline-block;\n    vertical-align: middle;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n    padding: 0px 25px 0px 10px;\n    font-size: 15px;\n    color: #333333;\n    margin: 0px;\n    background-image: url(../../bundles/webkuldefault/images/arrow-down.svg);\n    background-repeat: no-repeat;\n    background-position: right 10px center;\n  }\n  .uv-date-picker {\n    background-image: url(\"../../bundles/webkuldefault/images/icon-date-picker.svg\");\n    background-position: right 10px center;\n    background-repeat: no-repeat;\n    width: 150px;\n    cursor: pointer;\n  }\n  textarea.uv-field {\n    height: 100px;\n    padding: 10px;\n  }\n  textarea.uv-field[disabled=\"disabled\"] {\n    overflow-y: hidden;\n  }\n  .uv-field[disabled=\"disabled\"] {\n    border-color: #D3D3D3;\n    background-color: #D3D3D3;\n    cursor: not-allowed;\n  }\n  input[type=\"checkbox\"][disabled=\"disabled\"] + .uv-checkbox-view {\n    cursor: not-allowed;\n    opacity: .5;\n  }\n  input[type=\"radio\"][disabled=\"disabled\"] + .uv-radio-view {\n    cursor: not-allowed;\n    opacity: .5;\n  }\n  .uv-select {\n    background-color: #FFFFFF !important;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    width: 70%;\n    height: 36px;\n    border: solid 1px #B1B1AE;\n    border-radius: 3px;\n    display: inline-block;\n    vertical-align: middle;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n    padding: 0px 25px 0px 10px;\n    font-size: 15px;\n    color: #333333;\n    margin: 10px 0px;\n    background-image: url('../../bundles/webkuldefault/images/arrow-down.svg');\n    background-repeat: no-repeat;\n    background-position: right 10px center;\n  }\n  .uv-select[disabled=\"disabled\"] {\n    border-color: #D3D3D3 !important;\n    background-color: #D3D3D3 !important;\n    cursor: not-allowed;\n  }\n  .uv-select[multiple=\"multiple\"] {\n    height: 60px;\n    background-image: none;\n  }\n  .uv-select-grouped {\n    display: inline-block;\n    margin: 10px 2px;\n    width: 100px;\n  }\n  .uv-select:focus,\n  .uv-field:focus {\n    border: solid 1px #7C70F4;\n  }\n  .uv-aside-select {\n    margin-bottom: 15px;\n  }\n  .uv-aside-select .uv-aside-select-label {\n    font-size: 13px;\n    color: #333333;\n    font-weight: 700;\n  }\n  .uv-aside-select span.uv-aside-select-value {\n    cursor: default;\n    margin-top: 3px;\n    padding-right: 25px;\n    display: inline-block;\n    font-size: 15px;\n    color: #333333;\n  }\n  .uv-aside-select span.uv-aside-drop-icon {\n    background-image: url(../../bundles/webkuldefault/images/arrow-down.svg);\n    background-size: 9px;\n    background-repeat: no-repeat;\n    background-position: right 10px center;\n    cursor: pointer;\n  }\n  .uv-aside-select span.uv-aside-select-value:hover {\n    color: #333333;\n  }\n  .uv-field-error,\n  .uv-field-error:focus {\n    border-color: #FF5656;\n  }\n  .uv-field-error-icon {\n    width: 21px;\n    height: 21px;\n    display: inline-block;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    vertical-align: middle;\n    margin-left: 10px;\n    background-position: 0px -46px;\n  }\n  .uv-field-success-icon {\n    width: 21px;\n    height: 21px;\n    display: inline-block;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    vertical-align: middle;\n    margin-left: 10px;\n    background-position: -22px -46px;\n  }\n  .uv-field-info,\n  .uv-field-message {\n    display: block;\n    font-style: italic;\n    color: #6F6F6F;\n  }\n  .uv-field-message {\n    color: #FF5656;\n    margin-top: 5px;\n  }\n  .uv-max-field {\n    margin-top: 10px;\n  }\n  .uv-max-field input {\n    font-size: 17px;\n    color: #333333;\n    width: 100%;\n    border-radius: 3px;\n    border: solid 1px #D3D3D3;\n    padding: 15px;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-max-field input:focus {\n    border-color: #7C70F4;\n  }\n  .uv-split-field {\n    display: inline-block;\n    clear: both;\n    width: 100%;\n    margin-top: 10px;\n  }\n  .uv-split-field input {\n    font-size: 17px;\n    padding: 15px;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-split-field .uv-split-field-lt {\n    color: #333333;\n    width: 75%;\n    float: left;\n    border-radius: 3px 0px 0px 3px;\n    border-top: solid 1px #D3D3D3;\n    border-right: none;\n    border-bottom: solid 1px #D3D3D3;\n    border-left: solid 1px #D3D3D3;\n  }\n  .uv-split-field .uv-split-field-lt:focus,\n  .uv-split-field .uv-split-field-rt:focus {\n    border-top-color: #7C70F4;\n    border-right-color: #7C70F4;\n    border-bottom-color: #7C70F4;\n    border-left-color: #7C70F4;\n  }\n  .uv-split-field .uv-split-field-lt:focus + .uv-split-field-rt {\n    border-left-color: #7C70F4;\n  }\n  .uv-split-field .uv-split-field-rt {\n    text-align: center;\n    color: #6F6F6F;\n    width: 25%;\n    float: right;\n    border-radius: 0px 3px 3px 0px;\n    border-top: solid 1px #D3D3D3;\n    border-right: solid 1px #D3D3D3;\n    border-bottom: solid 1px #D3D3D3;\n    border-left: solid 1px #D3D3D3;\n    pointer-events: none;\n  }\n  .uv-split-left-small .uv-split-field-lt {\n    width: 15%;\n    text-align: center;\n  }\n  .uv-split-left-small .uv-split-field-rt {\n    width: 85%;\n    text-align: left;\n    pointer-events: auto;\n  }\n  .uv-split-copy {\n    width: 100%;\n    display: inline-block;\n    clear: both;\n    margin: 10px 0px;\n  }\n  .uv-split-copy .uv-split-field {\n    width: 80%;\n    float: left;\n    height: 46px;\n    background: #FAFAFA;\n    border-top: dashed 1px #B1B1AE;\n    border-right: none;\n    border-bottom: dashed 1px #B1B1AE;\n    border-left: dashed 1px #B1B1AE;\n    border-radius: 4px 0px 0px 4px;\n    display: block;\n    vertical-align: middle;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n    padding: 3px 10px 6px 10px;\n    font-size: 15px;\n    color: #6F6F6F;\n    margin: 0px;\n  }\n  .uv-split-copy .uv-split-btn {\n    width: 20%;\n    float: right;\n    border-radius: 0px 3px 3px 0px;\n    height: 46px;\n    margin: 0;\n    display: block;\n  }\n  .uv-split-copy span {\n    color: #2750C4;\n  }\n  .uv-hr {\n    display: block;\n    border-bottom: solid 1px #D3D3D3;\n    margin: 25px 0px;\n  }\n  .uv-message-wrapper {\n    display: block;\n    background-color: #FFFFFF;\n    border-radius: 3px;\n    margin: 25px 25px 25px 0px;\n    padding: 10px 12px 12px 12px;\n    box-shadow: 0px 4px 15.36px 0.8px rgba(0, 0, 0, 0.08), 0px 2px 6px 0px rgba(0, 0, 0, 0.12);\n  }\n  .uv-message-wrapper p {\n    margin: 0px 0px 10px 0px;\n  }\n  .uv-message-wrapper a:link,\n  .uv-message-wrapper a:hover,\n  .uv-message-wrapper a:active,\n  .uv-message-wrapper a:visited {\n    text-decoration: none;\n    font-size: 15px;\n    color: #2750C4;\n  }\n  .uv-message-wrapper a:hover {\n    text-decoration: underline;\n  }\n  .uv-message-wrapper a.uv-btn-small {\n    margin: 0px;\n    background-color: #2ED04C !important;\n    color: #FFFFFF !important;\n    text-decoration: none;\n  }\n  .uv-steppers {\n    position: absolute;\n    height: 325px;\n    margin: -175px 0px 0px -22px;\n    z-index: 3;\n    top: 50%;\n  }\n  .uv-steppers .uv-stepper-dot {\n    width: 44px;\n    height: 44px;\n    margin-bottom: 45px;\n    padding: 10px;\n    background-color: #FFFFFF;\n    border-radius: 50%;\n    z-index: 2;\n    box-shadow: 0px 15px 22.12px 5.88px rgba(0, 0, 0, 0.1), 0px 4px 7.6px 0.4px rgba(0, 0, 0, 0.2);\n  }\n  .uv-steppers .uv-stepper-dot .uv-stepper-dot-status {\n    display: inline-block;\n    padding: 6px;\n    border-radius: 50%;\n    background-color: #FFFFFF;\n    border: solid 6px #B1B1AE;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-steppers .uv-stepper-dot .uv-stepper-dot-active {\n    display: inline-block;\n    padding: 6px;\n    border-radius: 50%;\n    background-color: #FFFFFF;\n    border: solid 6px #7C70F4;\n  }\n  .uv-steppers .uv-stepper-dot .uv-stepper-dot-done {\n    display: inline-block;\n    padding: 6px;\n    border-radius: 50%;\n    background-color: #574AD2;\n    border: solid 6px #7C70F4;\n  }\n  .uv-steppers .uv-stepper-dot:last-child .uv-stepper-dot-status {\n    border: none;\n    width: 24px;\n    height: 24px;\n    background-image: url(../../bundles/webkuldefault/images/uvdesk-sprite-success.svg);\n    background-position: 0px -24px;\n  }\n  .uv-steppers .uv-stepper-dot:last-child .uv-stepper-dot-active {\n    background-image: url(../../bundles/webkuldefault/images/uvdesk-sprite-success.svg);\n    background-position: 0px 0px;\n    border: none;\n    background-color: transparent;\n  }\n  .uv-steppers:before {\n    width: 10px;\n    height: 300px;\n    position: absolute;\n    content: \"\";\n    background-color: #FFFFFF;\n    box-shadow: 0px 15px 22.12px 5.88px rgba(0, 0, 0, 0.1), 0px 4px 7.6px 0.4px rgba(0, 0, 0, 0.2);\n    z-index: -1;\n    left: 50%;\n    top: 5px;\n    margin-left: -5px;\n  }\n  .uv-loader {\n    position: relative;\n  }\n  .uv-loader span {\n    -webkit-backface-visibility: hidden;\n    width: 15px;\n    height: 15px;\n    position: absolute;\n    animation: move-loader 1s infinite ease-in-out;\n  }\n  .uv-loader span:before {\n    width: 15px;\n    height: 15px;\n    background: #7C70F4;\n    display: block;\n    border-radius: 50%;\n    position: absolute;\n    content: \"\";\n    -webkit-backface-visibility: hidden;\n    animation: bounce-loader-before 1s infinite ease-in-out;\n    opacity: 0;\n  }\n  .uv-loader span:after {\n    width: 15px;\n    height: 15px;\n    background: #7C70F4;\n    display: block;\n    border-radius: 50%;\n    position: absolute;\n    content: \"\";\n    -webkit-backface-visibility: hidden;\n    animation: bounce-loader-after 1s infinite ease-in-out;\n    opacity: 0;\n  }\n  .uv-loader span:nth-child(1) {\n    left: 0px;\n  }\n  .uv-loader span:nth-child(2) {\n    left: 25px;\n    animation-delay: .2s;\n  }\n  .uv-loader span:nth-child(3) {\n    left: 50px;\n    animation-delay: .4s;\n  }\n  .uv-loader-view {\n    width: 100%;\n    height: 100%;\n    z-index: 6000;\n    background: rgba(255, 255, 255, 0.9);\n    position: absolute;\n  }\n  .uv-loader-view .uv-loader {\n    width: 65px;\n    height: 30px;\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    margin-left: -33px;\n    margin-top: -100px;\n    transform: scale(2);\n  }\n  .uv-notifications-wrapper {\n    width: 300px;\n    top: 10px;\n    right: 10px;\n    position: fixed;\n  }\n  .uv-notification {\n    width: 300px;\n    padding: 15px;\n    border-radius: 3px;\n    display: inline-block;\n    box-shadow: 0px 4px 15.36px 0.64px rgba(0, 0, 0, 0.1), 0px 2px 6px 0px rgba(0, 0, 0, 0.12);\n    position: relative;\n    animation: jelly 0.5s ease-in-out;\n    transform-origin: center top;\n    z-index: 500;\n    margin-bottom: 10px;\n  }\n  .uv-notification span.uv-notification-close {\n    position: absolute;\n    width: 8px;\n    height: 8px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -55px -27px;\n    right: 10px;\n    top: 10px;\n    cursor: pointer;\n  }\n  .uv-notification p {\n    color: #FFFFFF;\n    margin: 0px;\n    padding: 0px;\n    font-size: 15px;\n  }\n  .uv-error {\n    background: #FF5656;\n  }\n  .uv-warning {\n    background: #FFC107;\n  }\n  .uv-success {\n    background: #4CAF50;\n  }\n  .uv-dark {\n    background: #333333;\n  }\n  .uv-vertical-align {\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-table {\n    margin-top: 15px;\n  }\n  .uv-table table {\n    width: 100%;\n    border-collapse: collapse;\n    border-top: solid 1px #D3D3D3;\n    font-size: 15px;\n    color: #333333;\n    text-align: left;\n  }\n  .uv-table table thead th {\n    font-weight: 700;\n    padding: 10px;\n    border-bottom: solid 1px #D3D3D3;\n  }\n  .uv-table table tbody td {\n    padding: 10px;\n    border-bottom: solid 1px #D3D3D3;\n  }\n  .uv-margin-right-5 {\n    margin-right: 5px;\n  }\n  .uv-margin-top-5 {\n    margin-top: 5px;\n  }\n  .uv-margin-top-10 {\n    margin-top: 10px;\n  }\n  .uv-margin-right-15 {\n    margin-right: 15px;\n  }\n  .uv-margin-left-15 {\n    margin-left: 15px;\n  }\n  .uv-padding-right-25 {\n    padding-right: 25px;\n  }\n  .uv-width-full {\n    width: 100% !important;\n  }\n  .uv-pagination {\n    text-align: center;\n    margin: 20px 0px;\n  }\n  .uv-pagination a {\n    padding: 17px 13px;\n    display: inline-block;\n    vertical-align: middle;\n    color: #333333;\n    border: solid 1px transparent;\n    border-radius: 3px;\n    margin: 1px;\n    line-height: 0;\n  }\n  .uv-pagination a:hover {\n    background-color: #7C70F4;\n    color: #FFFFFF;\n    border: solid 1px #7C70F4;\n  }\n  .uv-pagination .uv-pagination-previous {\n    padding: 11px 14px 11px 12px;\n    display: inline-block;\n    vertical-align: middle;\n    border: solid 1px #D3D3D3;\n    border-radius: 3px;\n  }\n  .uv-pagination .uv-pagination-previous:before {\n    width: 7px;\n    height: 12px;\n    content: \"\";\n    background: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -44px -62px;\n    display: inline-block;\n  }\n  .uv-pagination .uv-pagination-previous:hover:before {\n    background-position: -44px -75px;\n  }\n  .uv-pagination .uv-pagination-next {\n    padding: 11px 14px 11px 12px;\n    display: inline-block;\n    vertical-align: middle;\n    border: solid 1px #D3D3D3;\n    border-radius: 3px;\n  }\n  .uv-pagination .uv-pagination-next:before {\n    width: 7px;\n    height: 12px;\n    content: \"\";\n    background: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -52px -62px;\n    display: inline-block;\n  }\n  .uv-pagination .uv-pagination-next:hover:before {\n    background-position: -52px -75px;\n  }\n  .uv-pagination .uv-page-active,\n  .uv-pagination .uv-page-active:hover {\n    color: #6F6F6F;\n    text-decoration: underline;\n    background-color: transparent;\n    border: solid 1px transparent;\n  }\n  .uv-icon-info {\n    width: 16px;\n    height: 16px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -38px -104px;\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-icon-down-dark {\n    background-image: url(\"../../bundles/webkuldefault/images/arrow-down.svg\");\n    width: 12px;\n    height: 6px;\n    display: inline-block;\n    vertical-align: middle;\n    margin-left: 5px;\n  }\n  .uv-icon-down-light {\n    background-image: url(\"../../bundles/webkuldefault/images/arrow-down-light.svg\");\n    width: 12px;\n    height: 6px;\n    display: inline-block;\n    vertical-align: middle;\n    margin-left: 5px;\n  }\n  .uv-icon-previous {\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    width: 7px;\n    height: 12px;\n    display: inline-block;\n    vertical-align: middle;\n    background-position: -44px -62px;\n    margin-right: 5px;\n    margin-top: -2px;\n  }\n  .uv-icon-next {\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    width: 7px;\n    height: 12px;\n    display: inline-block;\n    vertical-align: middle;\n    background-position: -52px -62px;\n    margin-left: 5px;\n    margin-top: -2px;\n  }\n  .uv-pop-up-body {\n    overflow: hidden;\n  }\n  .uv-pop-up-body .uv-inner-section .uv-aside {\n    z-index: 1;\n  }\n  .uv-pop-up-body .uv-paper {\n    z-index: auto;\n  }\n  .uv-pop-up-overlay {\n    top: 0px;\n    right: 0px;\n    bottom: 0px;\n    left: 0px;\n    position: fixed;\n    z-index: 5000;\n    background: rgba(255, 255, 255, 0.9);\n    overflow-y: auto;\n    animation: fade-in-white 0.3s ease-in-out;\n  }\n  .uv-pop-up-box {\n    background: #FFFFFF;\n    padding: 25px;\n    position: relative;\n    z-index: 5001;\n    left: 50%;\n    margin-top: 100px;\n    margin-bottom: 100px;\n    border-radius: 3px;\n    box-shadow: 0px 15px 25px 0px rgba(0, 0, 0, 0.03), 0px 20px 45px 5px rgba(0, 0, 0, 0.2);\n    animation: jelly 0.5s ease-in-out;\n  }\n  .uv-pop-up-box .uv-pop-up-close {\n    background: url(\"../../bundles/webkuldefault/images/icon-close.svg\");\n    width: 15px;\n    height: 15px;\n    position: absolute;\n    right: 20px;\n    top: 20px;\n    cursor: pointer;\n    background-position: 0px 0px;\n  }\n  .uv-pop-up-box .uv-pop-up-close:hover {\n    background-position: 0px -15px;\n  }\n  .uv-pop-up-box h2 {\n    font-weight: 700;\n    font-size: 20px;\n    color: #9E9E9E;\n    margin: 0px;\n    text-transform: uppercase;\n    padding-right: 15px;\n  }\n  .uv-pop-up-box .uv-element-block {\n    width: 100%;\n    margin: 10px 0px;\n  }\n  .uv-pop-up-box .uv-field,\n  .uv-pop-up-box .uv-select {\n    width: 100%;\n  }\n  .uv-pop-up-box .uv-textarea-reply {\n    height: 250px;\n  }\n  .uv-pop-up-box p {\n    margin: 5px 0px;\n  }\n  .uv-pop-up-box p span {\n    color: #2750C4;\n  }\n  .uv-pop-up-box p a:link,\n  .uv-pop-up-box p a:hover,\n  .uv-pop-up-box p a:active,\n  .uv-pop-up-box p a:visited {\n    color: #2750C4;\n  }\n  .uv-pop-up-box p a:hover {\n    text-decoration: underline;\n  }\n  .uv-pop-up-box .uv-element-info {\n    margin: 20px 0px;\n  }\n  .uv-pop-up-wide {\n    margin-left: -350px;\n    width: 700px;\n    max-width: 80%;\n  }\n  .uv-pop-up-wide .uv-pop-up-actions {\n    text-align: left;\n  }\n  .uv-pop-up-wide .uv-pop-up-actions .uv-btn {\n    margin: 0px 10px 0px 0px;\n  }\n  .uv-pop-up-slim {\n    margin-left: -250px;\n    width: 500px;\n    max-width: 80%;\n  }\n  .uv-pop-up-slim .uv-pop-up-actions {\n    text-align: left;\n  }\n  .uv-pop-up-slim .uv-pop-up-actions .uv-btn {\n    margin: 0px 7px 0px 0px;\n  }\n  .uv-onboard-wrapper {\n    margin-left: -350px;\n    width: 700px;\n    max-width: 80%;\n    height: 500px;\n    overflow: hidden;\n  }\n  .uv-onboard-wrapper .uv-onboard-count {\n    font-size: 30px;\n    font-weight: 700;\n    color: #333333;\n    position: relative;\n    margin-left: -10px;\n  }\n  .uv-onboard-wrapper .uv-onboard-count:before {\n    border-right: solid 10px #7C70F4;\n    content: \"\";\n    display: block;\n    width: 10px;\n    height: 40px;\n    position: absolute;\n    left: -26px;\n  }\n  .uv-onboard-wrapper .uv-onboard-count:after {\n    color: #FAFAFA;\n    content: attr(data-onboard);\n    font-size: 235px;\n    display: block;\n    position: absolute;\n    left: -50px;\n    top: -90px;\n    z-index: -1;\n  }\n  .uv-onboard-wrapper .uv-onboard-box {\n    display: none;\n    text-align: center;\n  }\n  .uv-onboard-wrapper .uv-onboard-box img {\n    margin: 0 auto;\n    display: block;\n    max-width: 80%;\n    animation: move 0.75s 0.07s ease-in-out;\n  }\n  .uv-onboard-wrapper .uv-onboard-box h3 {\n    font-size: 24px;\n    color: #333333;\n    margin-top: 30px;\n  }\n  .uv-onboard-wrapper .uv-onboard-box p {\n    font-size: 17px;\n    color: #333333;\n    margin-top: 10px;\n    margin-bottom: 10px;\n  }\n  .uv-onboard-wrapper .uv-onboard-box p a:link,\n  .uv-onboard-wrapper .uv-onboard-box p a:hover,\n  .uv-onboard-wrapper .uv-onboard-box p a:active,\n  .uv-onboard-wrapper .uv-onboard-box p a:visited {\n    color: #2750C4;\n  }\n  .uv-onboard-wrapper .uv-onboard-box p a:hover {\n    text-decoration: underline;\n  }\n  .uv-onboard-wrapper .uv-onboard-box .uv-brand-hlt {\n    color: #7C70F4;\n  }\n  .uv-onboard-wrapper .uv-onboard-box-active {\n    display: block;\n  }\n  .uv-onboard-wrapper .uv-onboard-flap-slide {\n    animation: flap-slide 0.3s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-onboard-wrapper .uv-onboard-container {\n    position: relative;\n    height: 450px;\n    width: 100%;\n  }\n  .uv-onboard-wrapper .uv-onboard-container .uv-onboard-actions {\n    position: absolute;\n    bottom: 0px;\n    right: 0px;\n  }\n  .uv-onboard-wrapper .uv-onboard-container .uv-onboard-navigators {\n    position: absolute;\n    bottom: 14px;\n    left: 0px;\n  }\n  .uv-onboard-wrapper .uv-onboard-container .uv-onboard-navigator {\n    width: 12px;\n    height: 12px;\n    display: inline-block;\n    border-radius: 50%;\n    background-color: #D3D3D3;\n    cursor: pointer;\n  }\n  .uv-onboard-wrapper .uv-onboard-container .uv-onboard-navigator-active {\n    background-color: #7C70F4;\n  }\n  @media only screen and (max-width: 900px) {\n    .uv-group {\n      width: 100%;\n    }\n    .uv-group-field {\n      width: 65%;\n    }\n    .uv-group-select {\n      width: 35%;\n    }\n    .uv-pop-up-wide,\n    .uv-pop-up-slim,\n    .uv-onboard-wrapper {\n      width: 80%;\n      left: 10%;\n      margin: 50px 0px;\n      height: auto;\n    }\n    .uv-split-field .uv-split-field-lt {\n      width: 65%;\n    }\n    .uv-split-field .uv-split-field-rt {\n      width: 35%;\n      background: #FAFAFA;\n    }\n    .uv-split-left-small .uv-split-field-lt {\n      width: 15%;\n      text-align: center;\n    }\n    .uv-split-left-small .uv-split-field-rt {\n      width: 85%;\n      background: none;\n    }\n  }\n  @media only screen and (max-width: 500px) {\n    .uv-split-field .uv-split-field-lt {\n      padding: 15px 10px;\n      width: 55%;\n    }\n    .uv-split-field .uv-split-field-rt {\n      padding: 15px 5px;\n      width: 45%;\n      background: #FAFAFA;\n    }\n    .uv-split-left-small .uv-split-field-lt {\n      width: 20%;\n      text-align: center;\n    }\n    .uv-split-left-small .uv-split-field-rt {\n      width: 80%;\n      background: none;\n      padding: 15px;\n    }\n    .uv-split-copy .uv-split-field {\n      width: 65%;\n    }\n    .uv-split-copy .uv-split-btn {\n      width: 35%;\n    }\n    .uv-field-workflow {\n      width: 100%;\n    }\n    .uv-field-workflow .uv-select,\n    .uv-field-workflow .uv-field {\n      max-width: 90%;\n      width: 90%;\n      display: block;\n      margin: 15px 15px 15px 0px;\n    }\n    .uv-onboard-wrapper .uv-onboard-container {\n      height: auto;\n    }\n    .uv-onboard-wrapper .uv-onboard-container .uv-onboard-navigators {\n      opacity: 0;\n    }\n    .uv-onboard-wrapper .uv-onboard-container .uv-onboard-actions {\n      display: block;\n      width: 100%;\n      text-align: center;\n      position: static;\n      margin: 10px 0px;\n    }\n  }\n  .uv-box-tab {\n    width: 100%;\n    position: relative;\n  }\n  .uv-box-tab ul {\n    padding: 0;\n    list-style-type: none;\n    margin: 0px;\n  }\n  .uv-box-tab ul > li {\n    display: inline-block;\n  }\n  .uv-box-tab ul > li a {\n    color: #333333;\n    font-size: 15px;\n    border: solid 1px #D3D3D3;\n    background-color: #FFFFFF;\n    padding: 10px 25px 12px 25px;\n    margin: 0px 10px;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n    border-radius: 3px;\n  }\n  .uv-box-tab ul > li a:hover,\n  .uv-box-tab ul > li .uv-box-tab-active {\n    background-color: #7C70F4;\n    border-color: #7C70F4;\n    color: #FFFFFF;\n  }\n  .uv-box-tab ul li:first-child {\n    margin-left: 25px;\n  }\n  .uv-box-tab:before {\n    position: absolute;\n    border-bottom: solid 1px #D3D3D3;\n    width: 100%;\n    top: 11px;\n    content: \"\";\n    z-index: -1;\n  }\n  .uv-box-server-error {\n    font-size: 0px;\n    max-width: 750px;\n    padding: 25px;\n    margin: 150px auto 0px auto;\n  }\n  .uv-box-server-error .uv-box-server-error-lt {\n    width: 65%;\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-box-server-error .uv-box-server-error-lt .uv-error-rsp {\n    display: none;\n  }\n  .uv-box-server-error .uv-box-server-error-rt {\n    text-align: center;\n    width: 35%;\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-box-server-error .uv-box-block {\n    margin: 25px 0px;\n  }\n  .uv-box-server-error p {\n    margin: 0px 0px 10px 0px;\n    font-size: 15px;\n  }\n  .uv-box-server-error p span {\n    font-weight: 700;\n    color: #6F6F6F;\n  }\n  .uv-box-server-error .uv-error-title {\n    font-size: 17px;\n    margin-bottom: 7px;\n  }\n  .uv-box-server-error a:link,\n  .uv-box-server-error a:hover,\n  .uv-box-server-error a:active,\n  .uv-box-server-error a:visited {\n    color: #2750C4;\n  }\n  .uv-box-server-error a:hover {\n    text-decoration: underline;\n  }\n  .uv-box-server-error a.uv-btn {\n    color: #FFFFFF;\n    text-decoration: none;\n  }\n  .uv-box-server-error ul {\n    font-size: 15px;\n    list-style-type: none;\n    padding: 0px;\n    margin: 0px;\n  }\n  .uv-box-server-error ul li {\n    margin: 8px 0px;\n  }\n  .uv-box-server-error .uv-box-footer {\n    border-top: solid 1px #D3D3D3;\n    padding-top: 25px;\n    margin-top: 5px;\n  }\n  .uv-box-server-error .uv-box-cta:after {\n    content: attr(data-content);\n    font-size: 13px;\n    display: inline-block;\n    background-color: #2ED04C;\n    color: #FFFFFF;\n    text-transform: uppercase;\n    font-weight: 700;\n    padding: 0px 5px;\n    margin-left: 5px;\n    border-radius: 3px;\n  }\n  @media screen and (max-width: 768px) {\n    .uv-box-server-error {\n      padding: 0px;\n      width: 100%;\n      max-width: 100%;\n      padding: 20px;\n      margin: 0px auto;\n    }\n    .uv-box-server-error .uv-box-server-error-lt {\n      width: 100%;\n      display: block;\n    }\n    .uv-box-server-error .uv-box-server-error-lt .uv-error-rsp {\n      display: block;\n      margin: 0px auto 25px auto;\n    }\n    .uv-box-server-error .uv-box-server-error-rt {\n      display: none;\n    }\n  }\n  .error-grooves {\n    animation: error-grooves-key 4s alternate infinite ease-in-out;\n  }\n  .domain-grooves {\n    animation: domain-grooves-key 4s alternate infinite ease-in-out;\n  }\n  .uv-ticket-tour {\n    width: 100%;\n    padding: 30px;\n    left: 0px;\n    right: 0px;\n    bottom: 0px;\n    position: fixed;\n    background: #7C70F4;\n    z-index: 1000;\n    text-align: center;\n    animation: tour-moves-in 0.4s cubic-bezier(0.4, 0, 0.2, 1);\n    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-ticket-tour .uv-ticket-tour-plank {\n    margin: 0 auto;\n    width: 900px;\n    max-width: 100%;\n    display: none;\n  }\n  .uv-ticket-tour .uv-ticket-tour-plank-active {\n    display: block;\n  }\n  .uv-ticket-tour .uv-ticket-tour-flap-slide {\n    animation: flap-slide 0.3s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-ticket-tour h3 {\n    font-size: 24px;\n    font-weight: 400;\n    color: #FFFFFF;\n    margin-bottom: 10px;\n  }\n  .uv-ticket-tour p {\n    color: #FFFFFF;\n    font-size: 17px;\n    margin: 0px;\n  }\n  .uv-ticket-tour .uv-btn-small {\n    background: #7C70F4;\n    color: #cfa5f7;\n    box-shadow: none;\n    margin: 20px 5px 0px 5px;\n  }\n  .uv-ticket-tour .uv-btn-small:hover {\n    background-color: #5e51e0;\n  }\n  .uv-ticket-tour .uv-btn-small.uv-btn-white {\n    background-color: #FFFFFF;\n    color: #7C70F4;\n  }\n  .uv-ticket-tour .uv-btn-small.uv-btn-white:hover {\n    box-shadow: 0px 4px 15.36px 0.64px rgba(0, 0, 0, 0.1), 0px 2px 6px 0px rgba(0, 0, 0, 0.12);\n  }\n  .uv-ticket-tour .uv-icon-remove-before {\n    position: absolute;\n    top: 15px;\n    right: 15px;\n    cursor: pointer;\n    margin-right: 0px;\n    background-size: 111px;\n    width: 12px;\n    height: 12px;\n    background-position: -82px -40px;\n  }\n  .uv-tour-success {\n    background-color: #2ED04C;\n  }\n  .uv-tour-success .uv-btn-small:nth-last-child(2) {\n    display: none;\n  }\n  .uv-tour-success .uv-btn-small.uv-btn-white {\n    color: #2ED04C;\n  }\n  .uv-hl-ring {\n    width: 100px;\n    height: 100px;\n    display: none;\n    position: absolute;\n    background: rgba(255, 255, 255, 0.3);\n    border: solid 2px #7C70F4;\n    animation: zoom-move 1.4s infinite ease-in-out;\n    z-index: 5000;\n    border-radius: 50%;\n    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);\n    margin-top: -50px;\n    margin-left: -50px;\n    overflow: hidden;\n    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-hl-ring:before {\n    width: 50px;\n    height: 200px;\n    content: \"\";\n    position: absolute;\n    background: rgba(124, 112, 244, 0.03);\n    transform: translate(-30px, -180px) rotateZ(45deg);\n    animation: zoom-move-reflect 2.1s 0.7s infinite ease-in-out;\n  }\n  @keyframes error-grooves-key {\n    0% {\n      transform: translate(-5px, -5px);\n    }\n    25% {\n      transform: translate(5px, 0px);\n    }\n    50% {\n      transform: translate(0px, 5px);\n    }\n    75% {\n      transform: translate(-5px, 0px);\n    }\n    100% {\n      transform: translate(5px, -5px);\n    }\n  }\n  @keyframes domain-grooves-key {\n    0% {\n      transform: translate(-5px, -5px) rotate(0deg);\n    }\n    25% {\n      transform: translate(5px, 0px) rotate(180deg);\n    }\n    50% {\n      transform: translate(0px, 5px) rotate(360deg);\n    }\n    75% {\n      transform: translate(-5px, 0px) rotate(180deg);\n    }\n    100% {\n      transform: translate(5px, -5px) rotate(0deg);\n    }\n  }\n  @media screen and (max-width: 1024px) {\n    .uv-box-tab ul {\n      text-align: center;\n    }\n    .uv-box-tab ul > li,\n    .uv-box-tab ul li:first-child {\n      position: relative;\n      display: block;\n      margin: 45px;\n    }\n    .uv-box-tab ul li:before {\n      position: absolute;\n      border-bottom: solid 1px #D3D3D3;\n      width: 100%;\n      left: 0px;\n      right: 0px;\n      top: 11px;\n      content: \"\";\n      z-index: -1;\n    }\n    .uv-box-tab:before {\n      content: none;\n    }\n  }\n  @media screen and (max-width: 900px) {\n    .uv-ticket-tour,\n    .uv-hl-ring {\n      display: none;\n      position: static;\n    }\n  }\n  @media screen and (max-width: 319px) {\n    body {\n      width: 319px;\n      overflow-x: auto;\n    }\n  }\n  h1 {\n    font-size: 24px;\n    color: #333333;\n    font-weight: 400;\n    margin: 0;\n  }\n  h2 {\n    font-size: 20px;\n    color: #333333;\n    font-weight: 400;\n    margin: 0;\n  }\n  h3 {\n    font-size: 15px;\n    color: #333333;\n    font-weight: 700;\n    margin: 0;\n  }\n  h4 {\n    font-weight: 700;\n    font-size: 15px;\n    color: #6F6F6F;\n    margin: 0;\n  }\n  h6 {\n    font-weight: 700;\n    font-size: 17px;\n    color: #9E9E9E;\n    margin: 0;\n    text-transform: uppercase;\n  }\n  p {\n    font-size: 15px;\n    color: #333333;\n  }\n  kbd {\n    font-family: 'Source Sans Pro', sans-serif;\n    border: solid 1px #D3D3D3;\n    padding: 0px 8px 2px 8px;\n    margin: 2px 0px;\n    background-color: #FAFAFA;\n    border-radius: 3px;\n    display: inline-block;\n    box-shadow: inset 0px -1px 0px 0px #ffffff, inset 0px -2px 5px 0px rgba(0, 0, 0, 0.1);\n  }\n  .uv-bold {\n    font-weight: 700;\n  }\n  .uv-capitalize {\n    text-transform: capitalize;\n  }\n  .uv-lowercase {\n    text-transform: lowercase;\n  }\n  .uv-uppercase {\n    text-transform: uppercase;\n  }\n  .uv-text-center {\n    text-align: center;\n  }\n  .uv-no-more {\n    font-size: 15px;\n    color: #9E9E9E;\n    font-style: italic;\n  }\n  .uv-sidebar {\n    background-color: #FFFFFF;\n    width: 300px;\n    position: absolute;\n    height: auto;\n    top: 0;\n    bottom: 0;\n    left: 0;\n    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.18);\n    border-right: solid 1px #D3D3D3;\n    z-index: 2;\n    overflow: hidden;\n    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-sidebar .uv-soft-top {\n    display: block;\n    width: 300px;\n  }\n  .uv-sidebar .uv-soft-top a.uv-logo {\n    width: 200px;\n    height: 48px;\n    display: inline-block;\n    vertical-align: middle;\n    margin: 10px 25px;\n    position: relative;\n  }\n  .uv-sidebar .uv-soft-top .uv-company-logo {\n    position: absolute;\n    top: 0px;\n    left: 0px;\n    background-color: #FFFFFF;\n    height: 48px;\n    width: 200px;\n  }\n  .uv-sidebar .uv-soft-top .uv-company-logo img {\n    height: 48px;\n  }\n  .uv-sidebar .uv-soft-top .uv-company-logo-square {\n    display: none;\n  }\n  .uv-sidebar .uv-soft-top .uv-hamburger {\n    width: 20px;\n    height: 20px;\n    display: inline-block;\n    vertical-align: middle;\n    cursor: pointer;\n    margin: 24px 0px;\n  }\n  .uv-sidebar .uv-soft-top .uv-hamburger:hover svg path {\n    fill: #7C70F4;\n  }\n  .uv-sidebar ul.uv-menubar {\n    list-style-type: none;\n    padding: 0px;\n    margin: 0px;\n  }\n  .uv-sidebar ul.uv-menubar li a {\n    width: 300px;\n    border-left: solid 3px transparent;\n    display: block;\n    font-size: 15px;\n    color: #9E9E9E;\n    text-transform: uppercase;\n    font-weight: 700;\n    vertical-align: middle;\n    padding: 15px 25px;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-sidebar ul.uv-menubar li a .uv-icon {\n    width: 20px;\n    height: 20px;\n    display: inline-block;\n    vertical-align: middle;\n    cursor: pointer;\n  }\n  .uv-sidebar ul.uv-menubar li a .uv-menu-item {\n    display: inline-block;\n    vertical-align: middle;\n    margin-left: 5px;\n  }\n  .uv-sidebar ul.uv-menubar li a:hover,\n  .uv-sidebar ul.uv-menubar li .uv-item-active {\n    color: #7C70F4;\n    background: #FAFAFA;\n    border-left: solid 3px #7C70F4;\n  }\n  .uv-sidebar ul.uv-menubar li a:hover .uv-icon svg path,\n  .uv-sidebar ul.uv-menubar li .uv-item-active .uv-icon svg path {\n    fill: #7C70F4;\n  }\n  .uv-sidebar-active {\n    width: 60px;\n  }\n  .uv-sidebar-active .uv-soft-top a.uv-logo {\n    display: none;\n  }\n  .uv-sidebar-active .uv-soft-top .uv-hamburger {\n    margin: 24px 20px;\n  }\n  .uv-sidebar-active ul.uv-menubar {\n    list-style-type: none;\n    padding: 0px;\n    margin: 0px;\n  }\n  .uv-sidebar-active ul.uv-menubar li a {\n    padding: 15px 17px;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-sidebar-active ul.uv-menubar li a .uv-menu-item {\n    display: none;\n  }\n  .uv-paper {\n    width: 100%;\n    position: absolute;\n    top: 0;\n    bottom: 0;\n    z-index: 1;\n    padding-left: 300px;\n    background-color: #FFFFFF;\n    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-paper .uv-navbar {\n    height: 70px;\n    background-color: #FAFAFA;\n    border-bottom: solid 1px #D3D3D3;\n    font-size: 0;\n  }\n  .uv-paper .uv-navbar .uv-search-wrapper {\n    display: inline-block;\n    width: 50%;\n    vertical-align: middle;\n  }\n  .uv-paper .uv-navbar .uv-search-bar {\n    width: 100%;\n    max-width: 600px;\n    border: none;\n    border-radius: 3px;\n    margin-left: 15px;\n    font-size: 17px;\n    color: #333333;\n    padding: 9px 15px 10px 40px;\n    background-image: url(\"../../bundles/webkuldefault/images/icon-search.svg\");\n    background-repeat: no-repeat;\n    background-position: 0px 0px;\n    background-color: transparent;\n    transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-paper .uv-navbar .uv-search-bar:focus {\n    box-shadow: 0px 4px 15.36px 0.64px rgba(0, 0, 0, 0.1), 0px 2px 6px 0px rgba(0, 0, 0, 0.12);\n    background-position: 0px -40px;\n    background-color: #FFFFFF;\n  }\n  .uv-paper .uv-navbar .uv-search-result-wrapper {\n    width: 600px;\n    max-width: 100%;\n    padding: 20px 0px;\n    max-height: 500px;\n    overflow-y: auto;\n    background: #FFFFFF;\n    position: absolute;\n    border-radius: 3px;\n    margin-top: 7px;\n    margin-left: 15px;\n    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.15), 0px 3px 9.7px 0.3px rgba(0, 0, 0, 0.1);\n    display: none;\n    z-index: 8000;\n  }\n  .uv-paper .uv-navbar .uv-search-result-wrapper h6 {\n    margin-left: 20px;\n  }\n  .uv-paper .uv-navbar .uv-search-result-wrapper .uv-brick-icon {\n    width: 50px;\n    height: 50px;\n    padding: 10px;\n    border-radius: 50%;\n    background-image: -webkit-linear-gradient(left, #7c70f4 0%, #ba81f1 100%);\n    background-image: -o-linear-gradient(left, #7c70f4 0%, #ba81f1 100%);\n    background-image: linear-gradient(to right, #7c70f4 0%, #ba81f1 100%);\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-paper .uv-navbar .uv-search-result-wrapper .uv-brick-icon svg path {\n    fill: #FFFFFF;\n  }\n  .uv-paper .uv-navbar .uv-search-result-wrapper .uv-brick-icon-facebook {\n    background-image: -moz-linear-gradient(90deg, #3174cd 0%, #4180d4 100%) !important;\n    background-image: -webkit-linear-gradient(90deg, #3174cd 0%, #4180d4 100%) !important;\n    background-image: -ms-linear-gradient(90deg, #3174cd 0%, #4180d4 100%) !important;\n  }\n  .uv-paper .uv-navbar .uv-search-result-wrapper .uv-brick-icon-facebook svg path,\n  .uv-paper .uv-navbar .uv-search-result-wrapper .uv-brick-icon-ecommerce svg path,\n  .uv-paper .uv-navbar .uv-search-result-wrapper .uv-brick-icon-twitter svg path,\n  .uv-paper .uv-navbar .uv-search-result-wrapper .uv-brick-icon-form svg path,\n  .uv-paper .uv-navbar .uv-search-result-wrapper .uv-brick-icon-disqus svg path,\n  .uv-paper .uv-navbar .uv-search-result-wrapper .uv-brick-icon-apps svg path {\n    fill: #FFFFFF !important;\n    opacity: 1 !important;\n  }\n  .uv-paper .uv-navbar .uv-search-result-wrapper .uv-brick-icon-facebook:hover svg path {\n    fill: #3174cd !important;\n  }\n  .uv-paper .uv-navbar .uv-search-result-wrapper .uv-brick-icon-ecommerce {\n    background-image: -moz-linear-gradient(90deg, #ed8a67 0%, #ffa96a 100%) !important;\n    background-image: -webkit-linear-gradient(90deg, #ed8a67 0%, #ffa96a 100%) !important;\n    background-image: -ms-linear-gradient(90deg, #ed8a67 0%, #ffa96a 100%) !important;\n  }\n  .uv-paper .uv-navbar .uv-search-result-wrapper .uv-brick-icon-twitter {\n    background-image: -webkit-linear-gradient(left, #69beff 0%, #23cbff 100%) !important;\n    background-image: -o-linear-gradient(left, #69beff 0%, #23cbff 100%) !important;\n    background-image: linear-gradient(to right, #69beff 0%, #23cbff 100%) !important;\n  }\n  .uv-paper .uv-navbar .uv-search-result-wrapper .uv-brick-icon-form {\n    background-image: -webkit-linear-gradient(left, #fd9a9a 0%, #feb692 100%) !important;\n    background-image: -o-linear-gradient(left, #fd9a9a 0%, #feb692 100%) !important;\n    background-image: linear-gradient(to right, #fd9a9a 0%, #feb692 100%) !important;\n  }\n  .uv-paper .uv-navbar .uv-search-result-wrapper .uv-brick-icon-disqus {\n    background-image: -webkit-linear-gradient(left, #58b1fd 0%, #79c1ff 100%) !important;\n    background-image: -o-linear-gradient(left, #58b1fd 0%, #79c1ff 100%) !important;\n    background-image: linear-gradient(to right, #58b1fd 0%, #79c1ff 100%) !important;\n  }\n  .uv-paper .uv-navbar .uv-search-result-wrapper .uv-brick-icon-apps {\n    background-image: -webkit-linear-gradient(left, #48dacb 0%, #5beedf 100%) !important;\n    background-image: -o-linear-gradient(left, #48dacb 0%, #5beedf 100%) !important;\n    background-image: linear-gradient(to right, #48dacb 0%, #5beedf 100%) !important;\n  }\n  .uv-paper .uv-navbar .uv-search-result-wrapper p {\n    font-size: 15px;\n    text-transform: uppercase;\n    margin: 0px 0px 0px 8px;\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-paper .uv-navbar .uv-search-result-row {\n    margin: 10px 0px;\n    padding: 10px 20px;\n    cursor: pointer;\n    background: #FFFFFF;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-paper .uv-navbar .uv-search-result-row:last-child {\n    margin-bottom: 0px;\n  }\n  .uv-paper .uv-navbar .uv-search-result-row:hover {\n    background: #FAFAFA;\n  }\n  .uv-paper .uv-navbar .uv-search-result-row:hover p {\n    color: #2750C4;\n  }\n  .uv-paper .uv-navbar .uv-search-result-active {\n    display: block;\n  }\n  .uv-paper .uv-navbar .uv-search-flap-up {\n    animation: flap-up 0.3s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-paper .uv-navbar .uv-actions {\n    display: inline-block;\n    width: 50%;\n    height: 70px;\n    vertical-align: middle;\n    text-align: right;\n  }\n  .uv-paper .uv-navbar .uv-action-new {\n    background-color: #2ED04C;\n    width: 70px;\n    height: 70px;\n    display: inline-block;\n    cursor: pointer;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n    text-align: center;\n    padding: 25px;\n    vertical-align: middle;\n  }\n  .uv-paper .uv-navbar .uv-action-new:hover {\n    background-color: #25C943;\n  }\n  .uv-paper .uv-navbar .uv-action-new:active {\n    opacity: .75;\n  }\n  .uv-paper .uv-navbar .uv-profile {\n    font-size: 15px;\n    display: inline-block;\n    vertical-align: middle;\n    cursor: pointer;\n    margin: 0px 25px 0px 30px;\n    position: relative;\n    padding: 15px 0px;\n    height: 70px;\n  }\n  .uv-paper .uv-navbar .uv-profile-info {\n    display: inline-block;\n    vertical-align: middle;\n    text-align: left;\n    min-width: 50px;\n    position: relative;\n    margin-right: 15px;\n  }\n  .uv-paper .uv-navbar .uv-avatar {\n    display: inline-block;\n    vertical-align: middle;\n    border-radius: 3px;\n    margin-right: 10px;\n    height: 40px;\n  }\n  .uv-paper .uv-navbar .uv-howdy,\n  .uv-paper .uv-navbar .uv-user {\n    display: block;\n  }\n  .uv-paper .uv-navbar .uv-howdy {\n    color: #9E9E9E;\n  }\n  .uv-paper .uv-navbar .uv-profile:after {\n    background-image: url(../../bundles/webkuldefault/images/uvdesk-sprite.svg);\n    background-position: -68px 0px;\n    width: 6px;\n    height: 24px;\n    content: \"\";\n    position: absolute;\n    right: 0px;\n    top: 22px;\n  }\n  .uv-paper .uv-navbar .uv-notifications {\n    display: inline-block;\n    vertical-align: middle;\n    cursor: pointer;\n  }\n  .uv-paper .uv-navbar .uv-notification-icon {\n    width: 21px;\n    height: 26px;\n    display: inline-block;\n    background-image: url(../../bundles/webkuldefault/images/uvdesk-sprite.svg);\n    background-position: -46px 0px;\n    position: relative;\n  }\n  .uv-paper .uv-navbar .uv-notification-icon-count {\n    text-align: center;\n    padding: 10px 7px;\n    color: #FFFFFF;\n    font-size: 13px;\n    font-weight: 700;\n    line-height: 0;\n    border-radius: 10px;\n    position: absolute;\n    background-color: #7C70F4;\n    top: -10px;\n    left: 20px;\n    z-index: 1;\n  }\n  .uv-paper .uv-wrapper {\n    position: absolute;\n    margin-top: 70px;\n    top: 0px;\n    bottom: 0px;\n    left: 300px;\n    right: 0px;\n    overflow-x: hidden;\n    overflow-y: auto;\n    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-paper .uv-wrapper .uv-copyright {\n    font-size: 15px;\n    color: #6F6F6F;\n  }\n  .uv-paper .uv-wrapper .uv-copyright a {\n    color: #2750C4;\n  }\n  .uv-paper .uv-container .uv-area {\n    padding: 25px;\n  }\n  .uv-paper .uv-container .uv-home-tabs {\n    position: absolute;\n    right: 25px;\n  }\n  .uv-paper .uv-container .uv-home-tabs ul {\n    margin: 0px;\n    padding: 0px;\n    list-style-type: none;\n    font-size: 0;\n  }\n  .uv-paper .uv-container .uv-home-tabs ul li {\n    margin: 0;\n    padding: 0px;\n    display: inline-block;\n    padding: 7px 10px 7px 32px;\n    border: solid 1px #7C70F4;\n    font-size: 15px;\n    cursor: pointer;\n    color: #6F6F6F;\n  }\n  .uv-paper .uv-container .uv-home-tabs ul .uv-tab-manage {\n    border-radius: 3px 0px 0px 3px;\n    position: relative;\n  }\n  .uv-paper .uv-container .uv-home-tabs ul .uv-tab-manage:before {\n    width: 22px;\n    height: 22px;\n    position: absolute;\n    content: \"\";\n    left: 5px;\n    top: 6px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: 0px 0px;\n  }\n  .uv-paper .uv-container .uv-home-tabs ul .uv-tab-activity {\n    border-radius: 0px 3px 3px 0px;\n    position: relative;\n  }\n  .uv-paper .uv-container .uv-home-tabs ul .uv-tab-activity:before {\n    width: 22px;\n    height: 22px;\n    position: absolute;\n    content: \"\";\n    left: 5px;\n    top: 6px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -23px 0px;\n  }\n  .uv-paper .uv-container .uv-home-tabs ul .home-tab-active {\n    background-color: #7C70F4;\n    color: #FFFFFF;\n  }\n  .uv-paper .uv-container .uv-home-tabs ul .home-tab-active.uv-tab-manage:before {\n    background-position: 0px -23px;\n  }\n  .uv-paper .uv-container .uv-home-tabs ul .home-tab-active.uv-tab-activity:before {\n    background-position: -23px -23px;\n  }\n  .uv-paper .uv-container .uv-brick {\n    margin-bottom: 40px;\n  }\n  .uv-paper .uv-container .uv-brick .uv-brick-head p {\n    margin: 5px 0px 15px 0px;\n  }\n  .uv-paper .uv-container .uv-brick .uv-brick-head a {\n    color: #2750C4;\n  }\n  .uv-paper .uv-container .uv-brick .uv-brick-section {\n    text-align: left;\n  }\n  .uv-paper .uv-container .uv-brick .uv-brick-section .uv-brick-container {\n    display: inline-block;\n    margin: 15px 30px 0px 0px;\n    max-width: 120px;\n    text-align: center;\n    vertical-align: top;\n  }\n  .uv-paper .uv-container .uv-brick .uv-brick-section .uv-brick-icon {\n    width: 120px;\n    height: 120px;\n    padding: 30px;\n    border-radius: 50%;\n    background-image: -webkit-linear-gradient(left, #7c70f4 0%, #ba81f1 100%);\n    background-image: -o-linear-gradient(left, #7c70f4 0%, #ba81f1 100%);\n    background-image: linear-gradient(to right, #7c70f4 0%, #ba81f1 100%);\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-paper .uv-container .uv-brick .uv-brick-section .uv-brick-icon svg path {\n    fill: #FFFFFF;\n  }\n  .uv-paper .uv-container .uv-brick .uv-brick-section .uv-brick-icon:hover {\n    background-image: -webkit-linear-gradient(left, #ffffff 0%, #ffffff 100%) !important;\n    background-image: -o-linear-gradient(left, #ffffff 0%, #ffffff 100%) !important;\n    background-image: linear-gradient(to right, #ffffff 0%, #ffffff 100%) !important;\n    box-shadow: 0px 4px 15.36px 0.64px rgba(0, 0, 0, 0.1), 0px 2px 6px 0px rgba(0, 0, 0, 0.12) !important;\n    animation: bounce 0.2s 1 cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-paper .uv-container .uv-brick .uv-brick-section .uv-brick-icon:hover svg path {\n    fill: #7C70F4;\n  }\n  .uv-paper .uv-container .uv-brick .uv-brick-section .uv-brick-icon-facebook {\n    background-image: -moz-linear-gradient(90deg, #3174cd 0%, #4180d4 100%) !important;\n    background-image: -webkit-linear-gradient(90deg, #3174cd 0%, #4180d4 100%) !important;\n    background-image: -ms-linear-gradient(90deg, #3174cd 0%, #4180d4 100%) !important;\n  }\n  .uv-paper .uv-container .uv-brick .uv-brick-section .uv-brick-icon-facebook svg path,\n  .uv-paper .uv-container .uv-brick .uv-brick-section .uv-brick-icon-ecommerce svg path,\n  .uv-paper .uv-container .uv-brick .uv-brick-section .uv-brick-icon-twitter svg path,\n  .uv-paper .uv-container .uv-brick .uv-brick-section .uv-brick-icon-form svg path,\n  .uv-paper .uv-container .uv-brick .uv-brick-section .uv-brick-icon-disqus svg path,\n  .uv-paper .uv-container .uv-brick .uv-brick-section .uv-brick-icon-apps svg path {\n    fill: #FFFFFF !important;\n    opacity: 1 !important;\n  }\n  .uv-paper .uv-container .uv-brick .uv-brick-section .uv-brick-icon-facebook:hover svg path {\n    fill: #3174cd !important;\n  }\n  .uv-paper .uv-container .uv-brick .uv-brick-section .uv-brick-icon-ecommerce {\n    background-image: -moz-linear-gradient(90deg, #ed8a67 0%, #ffa96a 100%) !important;\n    background-image: -webkit-linear-gradient(90deg, #ed8a67 0%, #ffa96a 100%) !important;\n    background-image: -ms-linear-gradient(90deg, #ed8a67 0%, #ffa96a 100%) !important;\n  }\n  .uv-paper .uv-container .uv-brick .uv-brick-section .uv-brick-icon-ecommerce:hover svg path {\n    fill: #fa8b49 !important;\n  }\n  .uv-paper .uv-container .uv-brick .uv-brick-section .uv-brick-icon-twitter {\n    background-image: -webkit-linear-gradient(left, #69beff 0%, #23cbff 100%) !important;\n    background-image: -o-linear-gradient(left, #69beff 0%, #23cbff 100%) !important;\n    background-image: linear-gradient(to right, #69beff 0%, #23cbff 100%) !important;\n  }\n  .uv-paper .uv-container .uv-brick .uv-brick-section .uv-brick-icon-twitter:hover svg path {\n    fill: #69beff !important;\n  }\n  .uv-paper .uv-container .uv-brick .uv-brick-section .uv-brick-icon-form {\n    background-image: -webkit-linear-gradient(left, #fd9a9a 0%, #feb692 100%) !important;\n    background-image: -o-linear-gradient(left, #fd9a9a 0%, #feb692 100%) !important;\n    background-image: linear-gradient(to right, #fd9a9a 0%, #feb692 100%) !important;\n  }\n  .uv-paper .uv-container .uv-brick .uv-brick-section .uv-brick-icon-form:hover svg path {\n    fill: #fd9a9a !important;\n  }\n  .uv-paper .uv-container .uv-brick .uv-brick-section .uv-brick-icon-disqus {\n    background-image: -webkit-linear-gradient(left, #58b1fd 0%, #79c1ff 100%) !important;\n    background-image: -o-linear-gradient(left, #58b1fd 0%, #79c1ff 100%) !important;\n    background-image: linear-gradient(to right, #58b1fd 0%, #79c1ff 100%) !important;\n  }\n  .uv-paper .uv-container .uv-brick .uv-brick-section .uv-brick-icon-disqus:hover svg path {\n    fill: #58b1fd !important;\n  }\n  .uv-paper .uv-container .uv-brick .uv-brick-section .uv-brick-icon-apps {\n    background-image: -webkit-linear-gradient(left, #48dacb 0%, #5beedf 100%) !important;\n    background-image: -o-linear-gradient(left, #48dacb 0%, #5beedf 100%) !important;\n    background-image: linear-gradient(to right, #48dacb 0%, #5beedf 100%) !important;\n  }\n  .uv-paper .uv-container .uv-brick .uv-brick-section .uv-brick-icon-apps:hover svg path {\n    fill: #48daca !important;\n  }\n  .uv-paper .uv-container .uv-brick .uv-brick-section p {\n    text-align: center;\n    text-transform: uppercase;\n    margin: 10px 0px;\n  }\n  .uv-paper .uv-scroll-plank {\n    margin: 15px 0px 0px 0px;\n  }\n  .uv-paper .uv-scroll-plank a:link,\n  .uv-paper .uv-scroll-plank a:hover,\n  .uv-paper .uv-scroll-plank a:active,\n  .uv-paper .uv-scroll-plank a:focus,\n  .uv-paper .uv-scroll-plank a:visited {\n    font-size: 15px;\n    color: #2750C4;\n    margin-right: 5px;\n    display: inline-block;\n  }\n  .uv-paper .uv-scroll-block {\n    display: inline-block;\n    max-height: 160px;\n    overflow: auto;\n    border: dashed 1px #B1B1AE;\n    border-radius: 5px;\n    padding: 5px 15px;\n    background-color: #FAFAFA;\n  }\n  .uv-paper .uv-element-block {\n    margin: 10px 0px;\n  }\n  .uv-inner-section .uv-aside {\n    top: 0;\n    bottom: 0;\n    overflow-y: auto;\n    background: #FFFFFF;\n    width: 280px;\n    position: absolute;\n    z-index: 4;\n    padding: 20px 0px 20px 25px;\n    border-right: solid 1px #D3D3D3;\n  }\n  .uv-inner-section .uv-aside .uv-aside-head {\n    clear: both;\n    height: 20px;\n  }\n  .uv-inner-section .uv-aside .uv-aside-head .uv-aside-title {\n    float: left;\n  }\n  .uv-inner-section .uv-aside .uv-aside-head .uv-aside-back {\n    float: right;\n    margin-right: 10px;\n  }\n  .uv-inner-section .uv-aside .uv-aside-head .uv-aside-back span {\n    color: #333333;\n    position: relative;\n    cursor: pointer;\n  }\n  .uv-inner-section .uv-aside .uv-aside-head .uv-aside-back span:before {\n    width: 8px;\n    height: 12px;\n    content: \"\";\n    position: absolute;\n    top: 5px;\n    left: -12px;\n    background-image: url(../../bundles/webkuldefault/images/uvdesk-sprite.svg);\n    background-position: -120px -27px;\n  }\n  .uv-inner-section .uv-aside .uv-aside-nav h6 {\n    margin-top: 34px;\n  }\n  .uv-inner-section .uv-aside .uv-aside-nav .uv-aside-list li.uv-aside-item-active:first-child a,\n  .uv-inner-section .uv-aside .uv-aside-nav .uv-aside-custom li.uv-aside-item-active:first-child a {\n    border-top: none;\n  }\n  .uv-inner-section .uv-aside .uv-aside-nav ul.uv-aside-list li.uv-aside-item-active a,\n  .uv-inner-section .uv-aside .uv-aside-nav ul.uv-aside-custom li.uv-aside-item-active a {\n    border-bottom: solid 1px #D3D3D3;\n  }\n  .uv-inner-section .uv-aside .uv-aside-nav ul.uv-aside-list li:last-child a,\n  .uv-inner-section .uv-aside .uv-aside-nav ul.uv-aside-custom li:last-child a {\n    border-bottom: none;\n  }\n  .uv-inner-section .uv-aside .uv-aside-nav ul.uv-aside-list ul,\n  .uv-inner-section .uv-aside .uv-aside-nav ul.uv-aside-custom ul {\n    margin-left: 20px;\n    padding: 5px 0px;\n  }\n  .uv-inner-section .uv-aside .uv-aside-nav ul.uv-aside-list ul li a,\n  .uv-inner-section .uv-aside .uv-aside-nav ul.uv-aside-custom ul li a {\n    border-top: solid 1px #D3D3D3;\n  }\n  .uv-inner-section .uv-aside .uv-aside-nav ul.uv-aside-list ul li:last-child a,\n  .uv-inner-section .uv-aside .uv-aside-nav ul.uv-aside-custom ul li:last-child a {\n    border-bottom: none;\n  }\n  .uv-inner-section .uv-aside .uv-aside-nav ul {\n    padding: 0px;\n    list-style-type: none;\n  }\n  .uv-inner-section .uv-aside .uv-aside-nav ul li a {\n    padding: 10px 10px;\n    display: block;\n    border-top: solid 1px #D3D3D3;\n    color: #333333;\n  }\n  .uv-inner-section .uv-aside .uv-aside-nav ul li a:hover {\n    color: #2750C4;\n  }\n  .uv-inner-section .uv-aside .uv-aside-nav ul li .uv-aside-nav-active {\n    font-weight: 700;\n  }\n  .uv-inner-section .uv-aside .uv-aside-nav ul li .uv-aside-active {\n    font-weight: 700;\n    color: #2750C4;\n    cursor: default;\n  }\n  .uv-inner-section .uv-aside .uv-aside-nav ul li .uv-flag-gray {\n    min-width: 21px;\n    padding: 2px 4px;\n    border-radius: 3px;\n    background: #9E9E9E;\n    color: #FFFFFF;\n    margin-left: 7px;\n    font-size: 13px;\n    text-align: center;\n    display: inline-block;\n    font-weight: 700;\n  }\n  .uv-inner-section .uv-aside .uv-aside-nav ul li .uv-flag-dark {\n    background-color: #333333;\n  }\n  .uv-inner-section .uv-aside .uv-aside-nav ul li:last-child a {\n    border-bottom: solid 1px #D3D3D3;\n  }\n  .uv-inner-section .uv-aside .uv-aside-brick {\n    margin-top: 25px;\n    padding-top: 25px;\n    padding-right: 25px;\n    padding-right: 10px;\n    border-top: solid 1px #D3D3D3;\n  }\n  .uv-inner-section .uv-aside .uv-aside-brick h3 {\n    margin-bottom: 5px;\n  }\n  .uv-inner-section .uv-aside .uv-aside-brick .uv-aside-customer-block {\n    font-size: 0;\n  }\n  .uv-inner-section .uv-aside .uv-aside-brick .uv-aside-customer-block .uv-aside-avatar {\n    width: 40px;\n    display: inline-block;\n    vertical-align: middle;\n    margin-right: 10px;\n  }\n  .uv-inner-section .uv-aside .uv-aside-brick .uv-aside-customer-block .uv-aside-avatar img {\n    width: 40px;\n    border-radius: 3px;\n  }\n  .uv-inner-section .uv-aside .uv-aside-brick .uv-aside-customer-block .uv-aside-customer-info {\n    display: inline-block;\n    vertical-align: middle;\n    padding: 10px 10px 10px 0px;\n    width: 164px;\n    position: relative;\n  }\n  .uv-inner-section .uv-aside .uv-aside-brick .uv-aside-customer-block .uv-aside-customer-info span {\n    font-size: 13px;\n    display: block;\n    word-break: break-all;\n  }\n  .uv-inner-section .uv-aside .uv-aside-brick .uv-aside-customer-block .uv-aside-customer-info span.uv-customize {\n    width: 15px;\n    height: 15px;\n    position: absolute;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -44px -46px;\n    top: 28px;\n    right: -5px;\n    cursor: pointer;\n  }\n  .uv-inner-section .uv-aside .uv-aside-brick .uv-aside-customer-block .uv-aside-customer-info span.uv-customize:hover {\n    background-position: -59px -46px;\n  }\n  .uv-inner-section .uv-aside .uv-aside-brick .uv-aside-ticket-block .uv-aside-ticket-brick {\n    margin-top: 20px;\n  }\n  .uv-inner-section .uv-aside .uv-aside-brick .uv-aside-ticket-block span {\n    display: inline-block;\n    font-size: 15px;\n  }\n  .uv-inner-section .uv-aside .uv-aside-brick .uv-aside-ticket-block span.uv-icon-replies {\n    width: 18px;\n    height: 18px;\n    background-image: url('../../bundles/webkuldefault/images/uvdesk-sprite.svg');\n    background-position: 0px -117px;\n    content: ' ';\n    display: inline-block;\n    vertical-align: middle;\n    margin-right: 3px;\n    margin-top: -3px;\n  }\n  .uv-inner-section .uv-aside .uv-aside-brick .uv-aside-ticket-block span.uv-icon-timestamp {\n    width: 18px;\n    height: 18px;\n    background-image: url('../../bundles/webkuldefault/images/uvdesk-sprite.svg');\n    background-position: -19px -117px;\n    content: ' ';\n    display: inline-block;\n    vertical-align: middle;\n    margin-right: 3px;\n    margin-top: -3px;\n  }\n  .uv-inner-section .uv-aside .uv-aside-brick .uv-aside-ticket-block span.uv-icon-channel {\n    width: 18px;\n    height: 18px;\n    background-image: url('../../bundles/webkuldefault/images/uvdesk-channel-sprite.svg');\n    content: ' ';\n    display: inline-block;\n    vertical-align: middle;\n    margin-right: 3px;\n    margin-top: -3px;\n  }\n  .uv-inner-section .uv-aside .uv-aside-brick .uv-list-ticket-priority {\n    margin-top: -1px;\n  }\n  .uv-inner-section .uv-aside .uv-aside-brick .uv-element-block {\n    margin: 0px;\n  }\n  .uv-inner-section .uv-aside .uv-aside-brick .uv-field {\n    width: 100%;\n  }\n  .uv-inner-section .uv-aside .uv-aside-brick .uv-btn-label,\n  .uv-inner-section .uv-aside .uv-aside-brick .uv-btn-tag {\n    margin: 0px 5px 8px 0px;\n  }\n  .uv-inner-section .uv-view {\n    padding: 25px 0px 25px 305px;\n    top: 0;\n    left: 0;\n    overflow-y: auto;\n    bottom: 0;\n    width: 100%;\n    position: absolute;\n    z-index: 2;\n  }\n  .uv-inner-section .uv-view .uv-tabs > ul {\n    padding: 0px;\n    list-style-type: none;\n    border-bottom: solid 1px #D3D3D3;\n  }\n  .uv-inner-section .uv-view .uv-tabs > ul > li {\n    font-size: 15px;\n    display: inline-block;\n    padding: 15px 20px;\n    cursor: pointer;\n    margin: 0px 2px;\n    border-bottom: solid 3px #FFFFFF;\n  }\n  .uv-inner-section .uv-view .uv-tabs > ul > li:hover {\n    border-bottom: solid 3px #7C70F4;\n  }\n  .uv-inner-section .uv-view .uv-tabs > ul > li:first-child {\n    margin-left: 0px;\n  }\n  .uv-inner-section .uv-view .uv-tabs > ul .uv-tab-active {\n    border-bottom: solid 3px #7C70F4;\n  }\n  .uv-inner-section .uv-view .uv-tabs > ul .uv-tab-ellipsis {\n    padding: 0px;\n  }\n  .uv-inner-section .uv-view .uv-tabs > ul .uv-tab-ellipsis:hover {\n    border-color: #FFFFFF !important;\n  }\n  .uv-inner-section .uv-view .uv-ticket-action-bar {\n    border-bottom: solid 1px #D3D3D3;\n    font-size: 0px;\n    margin-bottom: 15px;\n  }\n  .uv-inner-section .uv-view .uv-ticket-action-bar .uv-ticket-action-bar-lt {\n    width: 70%;\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-inner-section .uv-view .uv-ticket-action-bar .uv-ticket-action-bar-rt {\n    width: 30%;\n    display: inline-block;\n    vertical-align: middle;\n    text-align: right;\n    padding-right: 25px;\n  }\n  .uv-inner-section .uv-view .uv-ticket-action-bar .uv-tabs ul {\n    border-bottom: none;\n  }\n  .uv-inner-section .uv-view .uv-ticket-head {\n    font-size: 0;\n    padding-bottom: 5px;\n  }\n  .uv-inner-section .uv-view .uv-ticket-head .uv-ticket-head-lt {\n    display: inline-block;\n    vertical-align: middle;\n    width: 10%;\n    margin-right: 5px;\n    max-width: 25px;\n    text-align: right;\n  }\n  .uv-inner-section .uv-view .uv-ticket-head .uv-ticket-head-rt {\n    width: 75%;\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-inner-section .uv-view .uv-ticket-strip span {\n    font-size: 15px;\n    color: #333333;\n    display: inline-block;\n    margin-right: 10px;\n  }\n  .uv-inner-section .uv-view .uv-ticket-strip span .uv-ticket-strip-label {\n    margin-right: 3px;\n    color: #9E9E9E;\n  }\n  .uv-inner-section .uv-view .uv-ticket-strip span a:link,\n  .uv-inner-section .uv-view .uv-ticket-strip span a:hover,\n  .uv-inner-section .uv-view .uv-ticket-strip span a:active,\n  .uv-inner-section .uv-view .uv-ticket-strip span a:visited {\n    color: #2750C4;\n    font-size: 15px;\n  }\n  .uv-inner-section .uv-view .uv-ticket-strip + .uv-ticket-strip {\n    padding: 5px 0px;\n  }\n  .uv-inner-section .uv-view .uv-ticket-scroll-region {\n    top: 0;\n    bottom: 0;\n    left: 305px;\n    right: 0px;\n    position: absolute;\n    margin-bottom: 58px;\n    overflow-y: auto;\n  }\n  .uv-inner-section .uv-view .uv-ticket-fixed-region {\n    height: 58px;\n    position: absolute;\n    right: 0;\n    bottom: 0;\n    left: 305px;\n    background: #FFFFFF;\n    border-top: solid 1px #D3D3D3;\n    padding: 5px 20px 5px 0px;\n    font-size: 0;\n  }\n  .uv-inner-section .uv-view .uv-ticket-fixed-region .uv-ticket-fixed-region-lt {\n    display: inline-block;\n    vertical-align: middle;\n    width: 50%;\n  }\n  .uv-inner-section .uv-view .uv-ticket-fixed-region .uv-ticket-fixed-region-rt {\n    display: inline-block;\n    vertical-align: middle;\n    width: 50%;\n    text-align: right;\n  }\n  .uv-inner-section .uv-view .uv-ticket-fixed-region .uv-ticket-fixed-region-rt .uv-btn-stroke {\n    margin-left: 10px;\n  }\n  .uv-inner-section .uv-view .uv-ticket-fixed-region .uv-ticket-fixed-region-rt .uv-btn-stroke:hover {\n    border-color: #6F6F6F;\n  }\n  .uv-inner-section .uv-view .uv-ticket-section {\n    margin-top: 20px;\n  }\n  .uv-inner-section .uv-view .uv-ticket-section span {\n    font-size: 15px;\n    color: #333333;\n  }\n  .uv-inner-section .uv-view .uv-ticket-section span.uv-file-label {\n    color: #2750C4;\n  }\n  .uv-inner-section .uv-view .uv-ticket-section span.uv-ticket-member-name {\n    color: #2750C4;\n  }\n  .uv-inner-section .uv-view .uv-ticket-section a:link,\n  .uv-inner-section .uv-view .uv-ticket-section a:hover,\n  .uv-inner-section .uv-view .uv-ticket-section a:active,\n  .uv-inner-section .uv-view .uv-ticket-section a:visited {\n    color: #2750C4;\n    font-size: 15px;\n  }\n  .uv-inner-section .uv-view .uv-ticket-accordion {\n    position: relative;\n  }\n  .uv-inner-section .uv-view .uv-ticket-accordion .uv-ticket-wrapper {\n    display: none;\n  }\n  .uv-inner-section .uv-view .uv-ticket-accordion .uv-ticket-count-wrapper {\n    border-top: solid 1px #D3D3D3;\n    padding-bottom: 10px;\n  }\n  .uv-inner-section .uv-view .uv-ticket-accordion .uv-ticket-count-stat {\n    min-width: 40px;\n    height: 40px;\n    background: #7C70F4;\n    color: #FFFFFF;\n    font-size: 17px;\n    position: absolute;\n    border-radius: 50%;\n    text-align: center;\n    line-height: 2.25;\n    left: 17px;\n    top: -15px;\n    z-index: 10;\n    cursor: pointer;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-inner-section .uv-view .uv-ticket-accordion .uv-ticket-count-stat:hover {\n    background: #BA81F1;\n    box-shadow: 0px 4px 15.36px 0.64px rgba(0, 0, 0, 0.1), 0px 2px 6px 0px rgba(0, 0, 0, 0.12);\n    transform: translateY(-2px);\n  }\n  .uv-inner-section .uv-view .uv-ticket-accordion-expanded .uv-ticket-main:first-child {\n    border-top: none;\n    padding-top: 20px;\n  }\n  .uv-inner-section .uv-view .uv-ticket-accordion-expanded .uv-ticket-count-wrapper {\n    border-bottom: solid 1px #D3D3D3;\n  }\n  .uv-inner-section .uv-view .uv-ticket-accordion-expanded .uv-ticket-wrapper {\n    display: block;\n  }\n  .uv-inner-section .uv-view .uv-ticket-accordion-no-count .uv-ticket-count-wrapper {\n    padding: 0px;\n    border-bottom: none;\n  }\n  .uv-inner-section .uv-view .uv-ticket-accordion-no-count .uv-ticket-count-stat {\n    display: none;\n  }\n  .uv-inner-section .uv-view .uv-ticket-note .uv-ticket-main-rt {\n    padding: 15px;\n    margin-bottom: 10px;\n    background-color: #FFF9C4;\n    position: relative;\n    border: solid 1px #FDD835;\n  }\n  .uv-inner-section .uv-view .uv-ticket-note .uv-ticket-main-rt:before {\n    content: \"\";\n    position: absolute;\n    top: 0px;\n    bottom: -4px;\n    left: 2px;\n    right: 2px;\n    border-bottom: solid 1px #FDD835;\n    border-right: solid 1px #FDD835;\n    border-left: solid 1px #FDD835;\n    z-index: -1;\n    background-color: #FFFFFF;\n  }\n  .uv-inner-section .uv-view .uv-ticket-note .uv-ticket-main-rt:after {\n    content: \"\";\n    position: absolute;\n    top: 0px;\n    bottom: -7px;\n    left: 6px;\n    right: 6px;\n    border-bottom: solid 1px #FDD835;\n    border-right: solid 1px #FDD835;\n    border-left: solid 1px #FDD835;\n    z-index: -2;\n  }\n  .uv-inner-section .uv-view .uv-ticket-main {\n    border-top: solid 1px #D3D3D3;\n    padding: 15px 25px 15px 0px;\n    display: inline-block;\n    width: 100%;\n    clear: both;\n  }\n  .uv-inner-section .uv-view .uv-ticket-main .uv-ticket-uploads h4 {\n    font-size: 13px;\n  }\n  .uv-inner-section .uv-view .uv-ticket-main .uv-ticket-uploads .uv-ticket-uploads-strip .uv-ticket-uploads-brick {\n    width: 60px;\n    height: 60px;\n    overflow: hidden;\n    display: inline-block;\n    vertical-align: middle;\n    margin-right: 5px;\n    margin-bottom: 5px;\n    border-radius: 3px;\n    position: relative;\n    cursor: pointer;\n  }\n  .uv-inner-section .uv-view .uv-ticket-main .uv-ticket-uploads .uv-ticket-uploads-strip .uv-ticket-uploads-brick img {\n    height: 60px;\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-inner-section .uv-view .uv-ticket-main .uv-ticket-uploads .uv-ticket-uploads-strip .uv-template-file {\n    width: 50px;\n  }\n  .uv-inner-section .uv-view .uv-ticket-main .uv-ticket-uploads .uv-ticket-uploads-strip .uv-ticket-uploads-brick:before {\n    width: 100px;\n    height: 35px;\n    background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0) 0%, #ffffff 50%, rgba(255, 255, 255, 0.99) 50%, rgba(255, 255, 255, 0) 100%);\n    background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0) 0%, #ffffff 50%, rgba(255, 255, 255, 0.99) 50%, rgba(255, 255, 255, 0) 100%);\n    background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0) 0%, #ffffff 50%, rgba(255, 255, 255, 0.99) 50%, rgba(255, 255, 255, 0) 100%);\n    transform: rotate(-45deg) translate(-20px, -60px);\n    content: \"\";\n    position: absolute;\n    opacity: 0;\n  }\n  .uv-inner-section .uv-view .uv-ticket-main .uv-ticket-uploads .uv-ticket-uploads-strip .uv-ticket-uploads-brick:hover:before {\n    animation: shine 0.8s 1 cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-inner-section .uv-view .uv-ticket-main .uv-ticket-uploads .uv-upload-actions {\n    padding: 15px 0px;\n  }\n  .uv-inner-section .uv-view .uv-ticket-main .uv-ticket-uploads .uv-upload-actions a:link,\n  .uv-inner-section .uv-view .uv-ticket-main .uv-ticket-uploads .uv-upload-actions a:hover,\n  .uv-inner-section .uv-view .uv-ticket-main .uv-ticket-uploads .uv-upload-actions a:active,\n  .uv-inner-section .uv-view .uv-ticket-main .uv-ticket-uploads .uv-upload-actions a:focus,\n  .uv-inner-section .uv-view .uv-ticket-main .uv-ticket-uploads .uv-upload-actions a:visited {\n    color: #2750C4;\n    font-size: 15px;\n    margin-right: 10px;\n    margin-bottom: 10px;\n  }\n  .uv-inner-section .uv-view .uv-ticket-main .uv-ticket-uploads .uv-upload-actions a:hover {\n    text-decoration: underline;\n  }\n  .uv-inner-section .uv-view .uv-ticket-main .uv-ticket-uploads .uv-upload-actions .uv-icon-open-in-files {\n    background-image: url(\"../../bundles/webkuldefault/images/icon-app-files.svg\");\n    width: 20px;\n    height: 20px;\n    margin-right: 3px;\n    background-repeat: no-repeat;\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-inner-section .uv-view .uv-ticket-main .uv-ticket-uploads .uv-upload-actions .uv-icon-attachment {\n    background-image: url(\"../../bundles/webkuldefault/images/icon-attachment.svg\");\n    width: 20px;\n    height: 20px;\n    margin-right: 3px;\n    background-repeat: no-repeat;\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-inner-section .uv-view .uv-ticket-main .uv-icon-pinned {\n    width: 12px;\n    height: 18px;\n    display: inline-block;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -42px -136px;\n    vertical-align: middle;\n    margin: 3px 5px 6px 0px;\n  }\n  .uv-inner-section .uv-view .uv-ticket-main .uv-icon-locked {\n    width: 14px;\n    height: 18px;\n    display: inline-block;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -55px -136px;\n    vertical-align: middle;\n    margin: 3px 5px 6px 0px;\n  }\n  .uv-inner-section .uv-view .uv-ticket-main .uv-icon-marked-task {\n    width: 18px;\n    height: 15px;\n    display: inline-block;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -38px -155px;\n    vertical-align: middle;\n    margin: 3px 5px 6px 0px;\n  }\n  .uv-inner-section .uv-view .uv-ticket-main:hover.uv-ticket-reply .uv-icon-ellipsis {\n    opacity: 0;\n    pointer-events: none;\n  }\n  .uv-inner-section .uv-view .uv-ticket-reply ul {\n    margin: 0px;\n  }\n  .uv-inner-section .uv-view .uv-ticket-reply ul li {\n    margin: 0px;\n    padding: 7px 10px;\n  }\n  .uv-inner-section .uv-view .uv-ticket-reply .uv-btn-tag {\n    margin: 5px 5px 5px 0px;\n  }\n  .uv-inner-section .uv-view .uv-ticket-reply .uv-element-block-textarea {\n    width: 100%;\n    max-width: 700px;\n  }\n  .uv-inner-section .uv-view .uv-ticket-reply .uv-element-block-textarea .uv-field {\n    width: 100%;\n    height: 250px;\n  }\n  .uv-inner-section .uv-view .uv-ticket-reply .uv-element-block {\n    margin: 20px 0px;\n  }\n  .uv-inner-section .uv-view .uv-ticket-reply .uv-action-buttons .uv-btn-stroke {\n    padding: 9px 10px;\n    margin: 0px 5px 5px 0px;\n    text-transform: uppercase;\n  }\n  .uv-inner-section .uv-view .uv-ticket-reply .uv-action-buttons .uv-btn-stroke:hover {\n    border-color: #6F6F6F;\n  }\n  .uv-inner-section .uv-view .uv-ticket-reply .uv-action-buttons .uv-btn {\n    margin: 0px 5px 5px 0px;\n  }\n  .uv-inner-section .uv-view .uv-ticket-main:hover .uv-icon-ellipsis {\n    opacity: 1;\n  }\n  .uv-inner-section .uv-view .uv-ticket-main-lt {\n    margin-top: 5px;\n    float: left;\n    margin-right: 10px;\n    text-align: right;\n  }\n  .uv-inner-section .uv-view .uv-ticket-main-lt img {\n    width: 40px;\n    border-radius: 3px;\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-inner-section .uv-view .uv-ticket-main-lt .uv-icon-ellipsis {\n    margin-right: 5px;\n    vertical-align: middle;\n    opacity: 0;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n    cursor: pointer;\n  }\n  .uv-inner-section .uv-view .uv-ticket-main-rt {\n    margin-top: 5px;\n    float: left;\n    width: 90%;\n  }\n  .uv-inner-section .uv-view .uv-ticket-main-rt ul,\n  .uv-inner-section .uv-view .uv-ticket-main-rt ol {\n    font-size: 15px;\n    color: #333333;\n  }\n  .uv-inner-section .uv-view .uv-ticket-main-rt h1,\n  .uv-inner-section .uv-view .uv-ticket-main-rt h2,\n  .uv-inner-section .uv-view .uv-ticket-main-rt h3,\n  .uv-inner-section .uv-view .uv-ticket-main-rt h4,\n  .uv-inner-section .uv-view .uv-ticket-main-rt h5,\n  .uv-inner-section .uv-view .uv-ticket-main-rt h6 {\n    font-size: 17px;\n    margin: 10px 0px 7px 0px;\n    color: #333333;\n    font-weight: 700;\n    text-transform: none;\n  }\n  .uv-inner-section .uv-view .uv-ticket-main-rt p {\n    font-size: 15px;\n    color: #333333;\n  }\n  .uv-inner-section .uv-view p:first-of-type {\n    margin-top: 5px;\n  }\n  .uv-inner-section .uv-view .uv-image-upload-wrapper {\n    padding: 5px 0px 10px 0px;\n  }\n  .uv-inner-section .uv-view .uv-image-upload-wrapper .uv-image-upload-brick {\n    display: inline-block;\n    vertical-align: middle;\n    position: relative;\n    width: 100px;\n    height: 100px;\n    border-radius: 5px;\n    border: dashed 1px #B1B1AE;\n    overflow: hidden;\n    margin-right: 15px;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-inner-section .uv-view .uv-image-upload-wrapper .uv-image-upload-brick input[type=\"file\"] {\n    width: 100px;\n    height: 100px;\n    position: absolute;\n    opacity: 0;\n    z-index: 3;\n  }\n  .uv-inner-section .uv-view .uv-image-upload-wrapper img {\n    width: 100px;\n    height: 100px;\n    position: absolute;\n    z-index: 2;\n    border-radius: 5px;\n    display: block;\n    border: solid 2px #FFFFFF;\n  }\n  .uv-inner-section .uv-view .uv-image-upload-wrapper img:not([src]) {\n    display: none;\n  }\n  .uv-inner-section .uv-view .uv-image-upload-wrapper .uv-image-upload-placeholder {\n    position: absolute;\n    width: 48px;\n    height: 32px;\n    left: 50%;\n    top: 50%;\n    margin-left: -24px;\n    margin-top: -16px;\n    z-index: 1;\n  }\n  .uv-inner-section .uv-view .uv-image-upload-wrapper .uv-image-upload-brick-48 {\n    width: 48px;\n    height: 48px;\n  }\n  .uv-inner-section .uv-view .uv-image-upload-wrapper .uv-image-upload-brick-48 input[type=\"file\"] {\n    width: 48px;\n    height: 48px;\n  }\n  .uv-inner-section .uv-view .uv-image-upload-wrapper .uv-image-upload-brick-48 img {\n    width: 48px;\n    height: auto;\n  }\n  .uv-inner-section .uv-view .uv-image-upload-wrapper .uv-image-upload-brick-200 {\n    width: 200px;\n    height: 48px;\n  }\n  .uv-inner-section .uv-view .uv-image-upload-wrapper .uv-image-upload-brick-200 input[type=\"file\"] {\n    width: 200px;\n    height: 48px;\n  }\n  .uv-inner-section .uv-view .uv-image-upload-wrapper .uv-image-upload-brick-200 img {\n    width: 200px;\n    height: auto;\n  }\n  .uv-inner-section .uv-view .uv-image-upload-wrapper .uv-image-upload-placeholder svg path {\n    fill: #7C70F4;\n  }\n  .uv-inner-section .uv-view .uv-image-upload-wrapper .uv-image-upload-brick:hover .uv-image-upload-placeholder svg path {\n    fill: #BA81F1;\n  }\n  .uv-inner-section .uv-view .uv-image-upload-wrapper .uv-image-upload-brick .uv-image-upload-placeholder svg {\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-inner-section .uv-view .uv-image-upload-wrapper .uv-image-upload-brick:hover .uv-image-upload-placeholder svg {\n    transform: translateY(-2px);\n  }\n  .uv-inner-section .uv-view .uv-image-upload-wrapper .uv-image-info-brick {\n    display: inline-block;\n    vertical-align: middle;\n    margin: 10px 0px;\n  }\n  .uv-inner-section .uv-view .uv-image-upload-wrapper .uv-on-drag {\n    transform: scale(1.08);\n    border: dashed 1px #333333;\n  }\n  .uv-inner-section .uv-view .uv-image-upload-wrapper .uv-on-drop-shadow {\n    box-shadow: 0px 0px 4.75px 0.25px rgba(0, 0, 0, 0.05), 0px 8px 24px 0px rgba(0, 0, 0, 0.15);\n  }\n  .uv-inner-section .uv-action-bar {\n    margin-top: 13px;\n    font-size: 0;\n  }\n  .uv-inner-section .uv-action-bar .uv-action-bar-col-lt {\n    display: inline-block;\n    width: 60%;\n  }\n  .uv-inner-section .uv-action-bar .uv-action-bar-col-rt {\n    padding-right: 20px;\n    display: inline-block;\n    text-align: right;\n    width: 40%;\n  }\n  .uv-inner-section .uv-action-bar .uv-action-select-wrapper {\n    display: inline-block;\n    width: 5%;\n  }\n  .uv-inner-section .uv-action-bar .uv-action-col-wrapper {\n    width: 95%;\n    display: inline-block;\n  }\n  .uv-inner-section .uv-action-bar label.uv-margin-left-27 {\n    margin-left: 27px;\n  }\n  .uv-inner-section .uv-icon-filter {\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -26px -68px;\n    width: 14px;\n    height: 10px;\n    display: inline-block;\n    margin-right: 5px;\n  }\n  .uv-inner-section .uv-list-ticket-priority,\n  .uv-inner-section .uv-list-task-priority {\n    display: inline-block;\n    vertical-align: middle;\n    width: 9px;\n    height: 9px;\n    border-radius: 50%;\n    margin-right: 5px;\n  }\n  .uv-inner-section .uv-priority-urgent {\n    background: #FF6565;\n  }\n  .uv-inner-section .uv-priority-high {\n    background: #FB8A3F;\n  }\n  .uv-inner-section .uv-priority-medium {\n    background: #F5D02A;\n  }\n  .uv-inner-section .uv-priority-low {\n    background: #2ED04C;\n  }\n  .uv-inner-section .uv-customize-wrapper {\n    position: relative;\n  }\n  .uv-inner-section .uv-customize-wrapper span.uv-customize {\n    width: 15px;\n    height: 15px;\n    position: absolute;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -44px -46px;\n    top: 13px;\n    right: 20px;\n    cursor: pointer;\n  }\n  .uv-inner-section .uv-customize-wrapper span.uv-customize:hover {\n    background-position: -59px -46px;\n  }\n  .uv-inner-section .uv-field-block .uv-customize-wrapper {\n    position: relative;\n  }\n  .uv-inner-section .uv-field-block .uv-customize-wrapper span.uv-customize {\n    display: inline-block;\n    position: static;\n    cursor: pointer;\n    vertical-align: middle;\n    margin-left: 5px;\n  }\n  .uv-inner-section .uv-aside-option {\n    margin-top: 16px;\n    padding-right: 10px;\n    border-top: solid 1px #D3D3D3;\n  }\n  .uv-inner-section .uv-aside-option .uv-element-block {\n    margin: 10px 0px;\n  }\n  .uv-inner-section .uv-aside-option .uv-element-block .uv-field-block .uv-field {\n    width: 100%;\n  }\n  .uv-inner-section .uv-aside-option .uv-element-block .uv-field-block .uv-color-block {\n    margin: 10px 4px;\n    width: 30px;\n    height: 30px;\n    border-radius: 50%;\n    cursor: pointer;\n    display: inline-block;\n    box-shadow: 0px 4px 15.36px 0.75px rgba(0, 0, 0, 0.1), 0px 2px 6px 0px rgba(0, 0, 0, 0.15);\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-inner-section .uv-aside-option .uv-element-block .uv-field-block .uv-color-block:hover {\n    transform: translateY(-1px);\n    box-shadow: 0px 8px 15.36px 0.64px rgba(0, 0, 0, 0.15), 0px 5px 10px 0px rgba(0, 0, 0, 0.2);\n  }\n  .uv-inner-section .uv-aside-option .uv-element-block .uv-field-block .uv-color-block:active {\n    transform: translateY(2px);\n  }\n  .uv-inner-section .uv-aside-option .uv-element-block .uv-field-block .uv-color-active {\n    border: solid 3px #FFFFFF;\n  }\n  .uv-star {\n    width: 18px;\n    height: 18px;\n    display: inline-block;\n    vertical-align: middle;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: 0px -98px;\n    cursor: pointer;\n  }\n  .uv-star-active {\n    background-position: -19px -98px;\n  }\n  .uv-star-large {\n    transform: scale(1.2);\n    transform-origin: center center;\n  }\n  .uv-channel {\n    width: 18px;\n    height: 18px;\n    display: inline-block;\n    vertical-align: middle;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-channel-sprite.svg\");\n  }\n  .uv-channel-mail {\n    background-position: 0px 0px;\n  }\n  .uv-channel-facebook {\n    background-position: -19px 0px;\n  }\n  .uv-channel-twitter {\n    background-position: -38px 0px;\n  }\n  .uv-channel-form {\n    background-position: -57px 0px;\n  }\n  .uv-channel-web {\n    background-position: -76px 0px;\n  }\n  .uv-channel-ecommerce {\n    background-position: -95px 0px;\n  }\n  .uv-channel-binaka {\n    background-position: 0px -18px;\n  }\n  .uv-channel-api {\n    background-position: -19px -18px;\n  }\n  .uv-channel-form-builder {\n    background-position: -38px -18px;\n  }\n  .uv-quick-view-trigger {\n    width: 10px;\n    height: 18px;\n    display: inline-block;\n    vertical-align: middle;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -26px -79px;\n    cursor: pointer;\n  }\n  .uv-icon-ellipsis {\n    width: 13px;\n    height: 23px;\n    background-image: url(../../bundles/webkuldefault/images/uvdesk-sprite.svg);\n    background-position: -56px -113px;\n    content: ' ';\n    display: inline-block;\n    vertical-align: middle;\n    padding: 5px;\n  }\n  .uv-table.uv-list-view {\n    width: 100%;\n    overflow-x: auto;\n  }\n  .uv-table.uv-list-view table thead th.uv-text-right {\n    text-align: right;\n  }\n  .uv-table.uv-list-view table thead th:last-child {\n    padding-right: 25px;\n  }\n  .uv-table.uv-list-view table thead th.uv-min-width-300 {\n    min-width: 300px;\n  }\n  .uv-table.uv-list-view table tbody td img {\n    width: 30px;\n    border-radius: 3px;\n    display: inline-block;\n    vertical-align: middle;\n    margin-right: 5px;\n  }\n  .uv-table.uv-list-view table tbody td.uv-width-140 {\n    width: 140px;\n    min-width: 140px;\n  }\n  .uv-table.uv-list-view table tbody td.uv-width-100 {\n    width: 100px;\n  }\n  .uv-table.uv-list-view table tbody td.uv-last {\n    width: 150px;\n  }\n  .uv-table.uv-list-view table tbody td:last-child {\n    padding-right: 25px;\n  }\n  .uv-table.uv-list-view table .uv-btn-stroke {\n    margin: 0px;\n  }\n  .uv-stack-view .uv-table.uv-list-view table {\n    width: 100%;\n  }\n  .uv-stack-view .uv-table.uv-list-view table tr {\n    border-top: solid 1px #D3D3D3;\n    border-bottom: solid 1px #D3D3D3;\n  }\n  .uv-stack-view .uv-table.uv-list-view table th {\n    display: none !important;\n  }\n  .uv-stack-view .uv-table.uv-list-view table tbody td {\n    display: block;\n    border-bottom: none;\n    padding: 7px;\n  }\n  .uv-stack-view .uv-table.uv-list-view table tbody td:first-child {\n    padding-top: 15px;\n  }\n  .uv-stack-view .uv-table.uv-list-view table tbody td:nth-child(2) {\n    text-align: left;\n  }\n  .uv-stack-view .uv-table.uv-list-view table tbody td:last-child {\n    padding-right: 10px;\n    padding-bottom: 20px;\n  }\n  .uv-stack-view .uv-table.uv-list-view table tbody td.uv-no-content:before {\n    content: \"\";\n  }\n  .uv-stack-view .uv-table.uv-list-view table tbody td:before {\n    display: inline-block;\n    content: attr(data-value) \" - \";\n    margin-right: 5px;\n    font-weight: 700;\n  }\n  .uv-icon-add {\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -55px -35px;\n    width: 10px;\n    height: 10px;\n    display: inline-block;\n    margin-right: 5px;\n  }\n  .uv-icon-add-dark {\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: 0px -170px;\n    width: 10px;\n    height: 10px;\n    display: inline-block;\n    margin-right: 1px;\n  }\n  .uv-icon-remove {\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -60px -62px;\n    width: 8px;\n    height: 8px;\n    display: inline-block;\n    margin-left: 5px;\n  }\n  .uv-icon-remove-before {\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -60px -62px;\n    width: 8px;\n    height: 8px;\n    display: inline-block;\n    margin-right: 5px;\n  }\n  .uv-icon-remove-dark {\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -64px -27px;\n    width: 8px;\n    height: 8px;\n    display: inline-block;\n    margin-left: 5px;\n  }\n  .uv-todo-icon-remove {\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -32px -328px;\n    width: 15px;\n    height: 15px;\n    display: inline-block;\n  }\n  .uv-todo-icon-add {\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -48px -328px;\n    width: 15px;\n    height: 15px;\n    display: inline-block;\n  }\n  .uv-icon-remove-dark-before {\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -64px -27px;\n    width: 8px;\n    height: 8px;\n    display: inline-block;\n    margin-right: 5px;\n  }\n  .uv-icon-remove-dark-box {\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -64px -27px;\n    width: 8px;\n    height: 8px;\n    display: inline-block;\n    margin: 0px 2px;\n  }\n  .uv-icon-discard {\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -66px -36px;\n    width: 8px;\n    height: 9px;\n    display: inline-block;\n    margin-right: 5px;\n    vertical-align: middle;\n  }\n  .uv-icon-mail-light {\n    width: 16px;\n    height: 12px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -57px -155px;\n    display: inline-block;\n  }\n  .uv-icon-nav-pre {\n    width: 25px;\n    height: 25px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: 1px -343px;\n    display: inline-block;\n    vertical-align: middle;\n    padding: 14px;\n  }\n  .uv-icon-nav-nxt {\n    width: 25px;\n    height: 25px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -24px -343px;\n    display: inline-block;\n    vertical-align: middle;\n    padding: 14px;\n  }\n  .uv-layout-icon-wrapper {\n    margin: 10px 0px;\n  }\n  .uv-layout-icon {\n    margin: 0px 5px 5px 0px;\n    width: 60px;\n    height: 60px;\n    display: inline-block;\n    border: solid 1px #D3D3D3;\n    border-radius: 3px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-layout-sprite.svg\");\n    background-repeat: no-repeat;\n    cursor: pointer;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-icon-history {\n    width: 31px;\n    height: 31px;\n    display: inline-block;\n    border: solid 1px #B1B1AE;\n    border-radius: 50%;\n    background-image: url(\"../../bundles/webkuldefault/images/icon-history.svg\");\n    background-repeat: no-repeat;\n  }\n  .uv-icon-history-active {\n    background-position: 0px -29px;\n    background-color: #2ED04C;\n    border-color: #2ED04C;\n  }\n  .uv-icon-pin {\n    width: 18px;\n    height: 18px;\n    display: inline-block;\n    vertical-align: middle;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: 0px -396px;\n    transition: transform .15s;\n    transform: scale(1);\n  }\n  .uv-icon-pin:active {\n    transform: scale(0.75);\n  }\n  .uv-icon-pinned {\n    background-position: -19px -396px;\n  }\n  .uv-icon-aside-menu {\n    width: 40px;\n    height: 40px;\n    display: inline-block;\n    vertical-align: middle;\n    background-color: #7C70F4;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: 0px -415px;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n    border-radius: 50%;\n    cursor: pointer;\n    transform: translateY(0px);\n    box-shadow: 0px 2px 8.5px 1.5px rgba(0, 0, 0, 0.15), 0px 2px 1px 0px rgba(0, 0, 0, 0.1);\n  }\n  .uv-icon-aside-menu:hover {\n    background-color: #BA81F1;\n    transform: translateY(-3px);\n    box-shadow: 0px 8px 15px 3px rgba(0, 0, 0, 0.15), 0px 2px 3px 0px rgba(0, 0, 0, 0.2);\n  }\n  .uv-cf-textbox {\n    width: 24px;\n    height: 20px;\n    display: inline-block;\n    vertical-align: middle;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: 0px -181px;\n  }\n  .uv-cf-textarea {\n    width: 24px;\n    height: 20px;\n    display: inline-block;\n    vertical-align: middle;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -25px -181px;\n  }\n  .uv-cf-select {\n    width: 24px;\n    height: 20px;\n    display: inline-block;\n    vertical-align: middle;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -50px -181px;\n  }\n  .uv-cf-radio {\n    width: 24px;\n    height: 20px;\n    display: inline-block;\n    vertical-align: middle;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: 0px -202px;\n  }\n  .uv-cf-checkbox {\n    width: 24px;\n    height: 20px;\n    display: inline-block;\n    vertical-align: middle;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -25px -202px;\n  }\n  .uv-cf-file {\n    width: 24px;\n    height: 20px;\n    display: inline-block;\n    vertical-align: middle;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -50px -202px;\n  }\n  .uv-cf-date {\n    width: 24px;\n    height: 20px;\n    display: inline-block;\n    vertical-align: middle;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: 0px -223px;\n  }\n  .uv-cf-time {\n    width: 24px;\n    height: 20px;\n    display: inline-block;\n    vertical-align: middle;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -25px -223px;\n  }\n  .uv-cf-date-time {\n    width: 24px;\n    height: 20px;\n    display: inline-block;\n    vertical-align: middle;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -50px -223px;\n  }\n  .uv-cf-edit {\n    width: 20px;\n    height: 20px;\n    display: inline-block;\n    vertical-align: middle;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: 0px -244px;\n  }\n  .uv-cf-remove {\n    width: 20px;\n    height: 20px;\n    display: inline-block;\n    vertical-align: middle;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -21px -244px;\n  }\n  .uv-cf-trash {\n    width: 18px;\n    height: 18px;\n    display: inline-block;\n    vertical-align: middle;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -27px -300px;\n  }\n  .uv-cf-add {\n    width: 18px;\n    height: 18px;\n    display: inline-block;\n    vertical-align: middle;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -46px -300px;\n  }\n  .uv-icon-priority-light {\n    width: 15px;\n    height: 15px;\n    display: inline-block;\n    vertical-align: middle;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: 0px -265px;\n  }\n  .uv-icon-graph-light {\n    width: 18px;\n    height: 15px;\n    display: inline-block;\n    vertical-align: middle;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -16px -265px;\n  }\n  .uv-icon-alert-light {\n    width: 18px;\n    height: 15px;\n    display: inline-block;\n    vertical-align: middle;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -35px -265px;\n  }\n  .uv-icon-eye-light {\n    width: 15px;\n    height: 15px;\n    display: inline-block;\n    vertical-align: middle;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -38px -281px;\n  }\n  .uv-icon-publish-light {\n    width: 15px;\n    height: 15px;\n    display: inline-block;\n    vertical-align: middle;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -54px -281px;\n  }\n  .uv-icon-link {\n    width: 18px;\n    height: 18px;\n    background-image: url('../../bundles/webkuldefault/images/uvdesk-sprite.svg');\n    background-position: -43px -245px;\n    content: ' ';\n    display: inline-block;\n    vertical-align: middle;\n    margin-right: 3px;\n    margin-top: -3px;\n  }\n  .uv-icon-atch-download {\n    width: 15px;\n    height: 15px;\n    background-image: url('../../bundles/webkuldefault/images/uvdesk-sprite.svg');\n    background-position: 0px -328px;\n    content: ' ';\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-icon-atch-view {\n    width: 15px;\n    height: 15px;\n    background-image: url('../../bundles/webkuldefault/images/uvdesk-sprite.svg');\n    background-position: -16px -328px;\n    content: ' ';\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-icon-load-more {\n    width: 27px;\n    height: 27px;\n    background-image: url('../../bundles/webkuldefault/images/uvdesk-sprite.svg');\n    background-position: 0px -300px;\n    content: ' ';\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-icon-hint {\n    width: 16px;\n    height: 16px;\n    background-image: url('../../bundles/webkuldefault/images/uvdesk-sprite.svg');\n    background-position: -52px -360px;\n    content: ' ';\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-icon-download-light {\n    width: 15px;\n    height: 15px;\n    background-image: url('../../bundles/webkuldefault/images/uvdesk-sprite.svg');\n    background-position: -52px -344px;\n    content: ' ';\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-binaka-icon {\n    margin: 0px 5px 5px 0px;\n    width: 60px;\n    height: 60px;\n    display: inline-block;\n    border: solid 1px #D3D3D3;\n    border-radius: 3px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-binaka-layout-sprite.svg\");\n    background-repeat: no-repeat;\n    cursor: pointer;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-binaka-modal {\n    background-position: -1px -3px;\n  }\n  .uv-binaka-widget {\n    background-position: -63px -3px;\n  }\n  .uv-binaka-icon:hover,\n  .uv-layout-icon:hover,\n  .uv-layout-icon-active {\n    border-color: #7C70F4;\n  }\n  .uv-layout-grid {\n    background-position: 0px 0px;\n  }\n  .uv-layout-folder {\n    background-position: -106px 0px;\n  }\n  .uv-layout-category {\n    background-position: -159px 0px;\n  }\n  .uv-layout-article {\n    background-position: -53px 0px;\n  }\n  .uv-icon-binaka {\n    width: 60px;\n    height: 60px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-binaka-icons-sprite.svg\");\n    display: inline-block;\n    vertical-align: middle;\n    background-color: #7C70F4;\n    border-radius: 50%;\n    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2), 0px 4px 18px 0px rgba(0, 0, 0, 0.08);\n    cursor: pointer;\n    margin: 5px 5px;\n    box-sizing: content-box;\n    border: solid 3px transparent;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-icon-binaka:hover {\n    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2), 0px 7px 20px 0px rgba(0, 0, 0, 0.18);\n    transform: translateY(-3px);\n  }\n  .uv-icon-binaka-active,\n  .uv-icon-binaka-active:hover {\n    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15), 0px 4px 18px 0px rgba(0, 0, 0, 0.15);\n    transform: translateY(-3px);\n    border: solid 3px #FFFFFF;\n    box-sizing: content-box;\n  }\n  .uv-icon-binaka-light .uv-icon-binaka-smile {\n    background-position: 0px 0px;\n  }\n  .uv-icon-binaka-light .uv-icon-binaka-bubble {\n    background-position: 0px -60px;\n  }\n  .uv-icon-binaka-light .uv-icon-binaka-book {\n    background-position: 0px -120px;\n  }\n  .uv-icon-binaka-light .uv-icon-binaka-help {\n    background-position: 0px -180px;\n  }\n  .uv-icon-binaka-light .uv-icon-binaka-support {\n    background-position: 0px -240px;\n  }\n  .uv-icon-binaka-dark .uv-icon-binaka-smile {\n    background-position: -60px 0px;\n  }\n  .uv-icon-binaka-dark .uv-icon-binaka-bubble {\n    background-position: -60px -60px;\n  }\n  .uv-icon-binaka-dark .uv-icon-binaka-book {\n    background-position: -60px -120px;\n  }\n  .uv-icon-binaka-dark .uv-icon-binaka-help {\n    background-position: -60px -180px;\n  }\n  .uv-icon-binaka-dark .uv-icon-binaka-support {\n    background-position: -60px -240px;\n  }\n  .uv-filter-view {\n    width: 300px;\n    position: absolute;\n    top: 0px;\n    bottom: 0px;\n    right: -320px;\n    background: #FFFFFF;\n    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.18);\n    z-index: 5000;\n    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-filter-view .uv-filter-head {\n    margin-left: 20px;\n    width: 280px;\n    display: inline-block;\n    padding: 20px 20px 20px 0px;\n    clear: both;\n    border-bottom: solid 1px #D3D3D3;\n  }\n  .uv-filter-view .uv-filter-head .uv-filter-title {\n    width: 200px;\n    float: left;\n  }\n  .uv-filter-view .uv-filter-head .uv-filter-title h6 {\n    font-size: 15px;\n    display: inline-block;\n    vertical-align: top;\n  }\n  .uv-filter-view .uv-filter-head .uv-filter-title span {\n    display: inline-block;\n    font-style: italic;\n    color: #6F6F6F;\n  }\n  .uv-filter-view .uv-filter-head .uv-filter-toggle {\n    float: right;\n  }\n  .uv-filter-view .uv-filter-head .uv-filter-toggle span {\n    display: inline-block;\n    width: 20px;\n    height: 15px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -38px -88px;\n    cursor: pointer;\n  }\n  .uv-filter-view .uv-filter-paper {\n    padding-left: 20px;\n    padding-bottom: 20px;\n    position: absolute;\n    top: 105px;\n    right: 0px;\n    left: 0px;\n    bottom: 0px;\n    overflow-y: auto;\n  }\n  .uv-filter-view .uv-filter-paper .uv-element-block {\n    margin: 10px 0px 0px 0px;\n  }\n  .uv-filter-view .uv-filter-paper .uv-field-block {\n    padding-right: 20px;\n  }\n  .uv-filter-view .uv-filter-paper .uv-field-block .uv-field,\n  .uv-filter-view .uv-filter-paper .uv-field-block .uv-select {\n    width: 100%;\n  }\n  .uv-filter-view .uv-filter-paper .uv-field-block .uv-select-70 {\n    width: 70%;\n  }\n  .uv-filter-view .uv-filter-paper .uv-field-block .uv-search-inline {\n    width: 100%;\n    margin: 10px 0px 0px 0px;\n  }\n  .uv-filter-view .uv-filter-paper .uv-filter-options .uv-btn-remove {\n    margin: 10px 0px;\n  }\n  .uv-filter-view .uv-filter-paper .uv-filter-edit .uv-btn-remove {\n    margin: 10px 0px;\n  }\n  .uv-filter-view .uv-filter-paper .uv-filter-edit .uv-filters-group {\n    border-top: solid 1px #D3D3D3;\n    border-bottom: solid 1px #D3D3D3;\n    margin: 15px 0px;\n    padding: 10px 0px;\n  }\n  .uv-filter-view .uv-filter-paper .uv-filter-edit-head {\n    clear: both;\n    height: 36px;\n    margin-top: 10px;\n    border-bottom: solid 1px #D3D3D3;\n  }\n  .uv-filter-view .uv-filter-paper .uv-filter-edit-head .uv-filter-edit-title {\n    float: left;\n  }\n  .uv-filter-view .uv-filter-paper .uv-filter-edit-head .uv-filter-edit-back {\n    float: right;\n    margin-right: 10px;\n  }\n  .uv-filter-view .uv-filter-paper .uv-filter-edit-head .uv-filter-edit-back span {\n    color: #333333;\n    position: relative;\n    cursor: pointer;\n  }\n  .uv-filter-view .uv-filter-paper .uv-filter-edit-head .uv-filter-edit-back span:before {\n    width: 8px;\n    height: 12px;\n    content: \"\";\n    position: absolute;\n    top: 5px;\n    left: -12px;\n    background-image: url(../../bundles/webkuldefault/images/uvdesk-sprite.svg);\n    background-position: -120px -27px;\n  }\n  .uv-filter-view .uv-filter-paper .uv-btn-tag {\n    margin: 5px 5px 5px 0px;\n  }\n  .uv-filter-view .uv-filter-paper .uv-app-section {\n    padding-bottom: 15px;\n    border-bottom: solid 1px #D3D3D3;\n  }\n  .uv-filter-view .uv-filter-paper .uv-app-section .uv-app-task-plank {\n    padding-top: 10px;\n    padding-right: 20px;\n  }\n  .uv-filter-view .uv-filter-paper .uv-app-section .uv-app-task-plank a:link,\n  .uv-filter-view .uv-filter-paper .uv-app-section .uv-app-task-plank a:hover,\n  .uv-filter-view .uv-filter-paper .uv-app-section .uv-app-task-plank a:active,\n  .uv-filter-view .uv-filter-paper .uv-app-section .uv-app-task-plank a:focus,\n  .uv-filter-view .uv-filter-paper .uv-app-section .uv-app-task-plank a:visited {\n    color: #2750C4;\n  }\n  .uv-filter-view .uv-filter-paper .uv-app-section .uv-app-task-plank .uv-app-task-text {\n    font-size: 15px;\n    color: #333333;\n    display: inline-block;\n    margin-right: 10px;\n  }\n  .uv-filter-view .uv-filter-paper .uv-app-section .uv-app-task-plank .uv-app-task-section {\n    margin: 3px 0px;\n  }\n  .uv-filter-view .uv-filter-paper .uv-app-section .uv-app-task-plank .uv-app-task-section:first-child {\n    margin-top: 0px;\n  }\n  .uv-filter-view .uv-filter-paper .uv-app-section .uv-app-task-plank .uv-app-task-section:last-child {\n    margin-bottom: 0px;\n  }\n  .uv-filter-view .uv-filter-paper .uv-app-section .uv-app-task-plank .uv-list-task-priority {\n    margin-top: -2px;\n  }\n  .uv-filter-view .uv-filter-paper .uv-app-section .uv-app-task-plank .uv-icon-graph,\n  .uv-filter-view .uv-filter-paper .uv-app-section .uv-app-task-plank .uv-icon-alert {\n    margin-right: 3px;\n    margin-top: -2px;\n  }\n  .uv-action-buttons {\n    margin: 10px 0px;\n  }\n  .uv-action-buttons .uv-btn {\n    margin: 5px;\n  }\n  .uv-action-buttons .uv-btn:first-child {\n    margin-left: 0px;\n  }\n  .uv-filtered-tags .uv-btn-small {\n    margin: 3px 3px 3px 0px;\n  }\n  .uv-view-plank {\n    margin-top: 25px;\n  }\n  .uv-app-wrapper {\n    width: 220px;\n    margin-right: 25px;\n    margin-bottom: 25px;\n    padding: 20px;\n    display: inline-block;\n    vertical-align: top;\n    box-shadow: 0px 4px 15.36px 0.64px rgba(0, 0, 0, 0.1), 0px 2px 6px 0px rgba(0, 0, 0, 0.12);\n    border-radius: 5px;\n    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);\n    cursor: pointer;\n  }\n  .uv-app-wrapper .uv-action-buttons {\n    margin: 8px 0px 0px 0px;\n  }\n  .uv-app-wrapper h4 {\n    text-transform: capitalize;\n  }\n  .uv-app-wrapper img {\n    display: block;\n    margin: 0px auto 15px auto;\n  }\n  .uv-app-wrapper p {\n    margin: 8px 0px;\n    min-height: 60px;\n    overflow: hidden;\n  }\n  .uv-app-wrapper .uv-btn-small {\n    margin-right: 5px;\n  }\n  .uv-app-wrapper:hover {\n    transform: translateY(-5px);\n    box-shadow: 0px 25px 20px 0px rgba(0, 0, 0, 0.1), 0px 2px 6px 0px rgba(0, 0, 0, 0.11);\n  }\n  span.uv-app-price {\n    text-transform: uppercase;\n    color: #333333;\n    font-size: 15px;\n  }\n  .uv-btn-install {\n    background: #2ED04C !important;\n  }\n  .uv-btn-install:hover {\n    background: #25C943;\n  }\n  .uv-app-bar {\n    text-align: right;\n    font-size: 0;\n  }\n  .uv-app-view-logo {\n    width: 11%;\n    padding-right: 25px;\n    display: inline-block;\n    vertical-align: top;\n    text-align: right;\n  }\n  .uv-app-view-logo img {\n    display: inline;\n    width: 100%;\n    max-width: 120px;\n  }\n  .uv-app-view-content {\n    width: 89%;\n    display: inline-block;\n    vertical-align: top;\n    text-align: left;\n  }\n  .uv-app-view-content h4 {\n    margin-bottom: 10px;\n  }\n  .uv-app-view-content p {\n    margin: 5px 0px;\n  }\n  .uv-app-view-content p span {\n    font-weight: 700;\n  }\n  .uv-app-view-content p a,\n  .uv-app-view-content p a:active {\n    color: #2750C4;\n  }\n  .uv-app-view-content p a:hover {\n    text-decoration: underline;\n  }\n  .uv-app-view-content ul {\n    font-size: 15px;\n    color: #333333;\n  }\n  .uv-app-view-content ul li {\n    margin: 10px 0px;\n  }\n  .uv-app-view-content h1,\n  .uv-app-view-content h2,\n  .uv-app-view-content h3,\n  .uv-app-view-content h4,\n  .uv-app-view-content h5,\n  .uv-app-view-content h6 {\n    font-size: 17px;\n    margin: 10px 0px 7px 0px;\n    color: #333333;\n  }\n  .uv-app-view-content p,\n  .uv-app-view-content span {\n    font-size: 15px;\n    color: #333333;\n  }\n  .uv-app-view-content .uv-btn-small {\n    margin-right: 5px;\n  }\n  .uv-app-view-content .uv-btn-installed,\n  .uv-app-view-content .uv-btn-installed:hover,\n  .uv-app-view-content .uv-btn-installed:active {\n    cursor: default;\n    box-shadow: none;\n    color: #FFFFFF !important;\n    background-color: #9E9E9E !important;\n    opacity: 1 !important;\n  }\n  .uv-app-view-content .uv-app-view-header {\n    padding-bottom: 10px;\n    padding-right: 25px;\n    border-bottom: solid 1px #D3D3D3;\n  }\n  .uv-app-view-content .uv-app-view-section {\n    padding: 16px 0px 20px 0px;\n  }\n  .uv-app-view-content .uv-app-view-section .uv-app-screenshots-wrapper {\n    overflow-x: auto;\n    margin-bottom: 20px;\n    border-bottom: solid 1px #D3D3D3;\n  }\n  .uv-app-view-content .uv-app-view-section .uv-app-screenshots-canvas {\n    padding: 10px 25px;\n    clear: both;\n    display: inline-block;\n  }\n  .uv-app-view-content .uv-app-view-section .uv-app-screenshots-canvas .uv-app-screenshot {\n    width: 600px;\n    height: 320px;\n    border-radius: 5px;\n    box-shadow: 0px 4px 15.36px 0.64px rgba(0, 0, 0, 0.1), 0px 2px 6px 0px rgba(0, 0, 0, 0.12);\n    float: left;\n    overflow: hidden;\n    margin: 0px 25px 20px 0px;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-app-view-content .uv-app-view-section .uv-app-screenshots-canvas .uv-app-screenshot img {\n    width: 100%;\n    border-radius: 5px;\n  }\n  .uv-app-view-content .uv-app-view-section .uv-app-screenshots-canvas .uv-app-screenshot:hover {\n    transform: translateY(-5px);\n    box-shadow: 0px 19px 35px 0px rgba(0, 0, 0, 0.1), 0px 10px 32px 0px rgba(0, 0, 0, 0.12);\n  }\n  .uv-app-screen {\n    padding-right: 25px;\n  }\n  .uv-app-screen .uv-app-splash {\n    text-align: center;\n    width: 540px;\n    margin: 60px auto;\n  }\n  .uv-app-screen .uv-app-splash .uv-app-splash-image {\n    display: block;\n    margin: 0 auto;\n    max-width: 100%;\n  }\n  .uv-app-screen .uv-app-list-channels .uv-app-list-action {\n    font-size: 0;\n  }\n  .uv-app-screen .uv-app-list-channels .uv-app-list-action .uv-app-list-action-lt {\n    width: 65%;\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-app-screen .uv-app-list-channels .uv-app-list-action .uv-app-list-action-rt {\n    width: 35%;\n    display: inline-block;\n    vertical-align: middle;\n    text-align: right;\n  }\n  .uv-app-screen .uv-app-list-channels .uv-app-list-brick {\n    width: 310px;\n    max-width: 100%;\n    font-size: 0;\n    margin: 15px 20px 0px 0px;\n    display: inline-block;\n    border-radius: 3px;\n    border: solid 1px #7C70F4;\n  }\n  .uv-app-screen .uv-app-list-channels .uv-app-list-brick .uv-app-list-brick-lt {\n    display: inline-block;\n    vertical-align: middle;\n    width: 35%;\n    height: 100%;\n    text-align: center;\n    background-color: #7C70F4;\n  }\n  .uv-app-screen .uv-app-list-channels .uv-app-list-brick .uv-app-list-brick-lt span {\n    font-size: 24px;\n    color: #FFFFFF;\n    padding: 24px 0px;\n    display: inline-block;\n    line-height: 40px;\n  }\n  .uv-app-screen .uv-app-list-channels .uv-app-list-brick .uv-app-list-brick-rt {\n    width: 65%;\n    padding: 10px 15px 9px 15px;\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-app-screen .uv-app-list-channels .uv-app-list-brick .uv-app-list-brick-rt p {\n    width: 100%;\n    margin: 0px;\n    margin-bottom: 3px;\n    overflow: hidden;\n    white-space: nowrap;\n    text-overflow: ellipsis;\n  }\n  .uv-app-screen .uv-app-list-channels .uv-app-list-brick .uv-app-list-brick-rt span.uv-app-list-flag-active {\n    font-size: 15px;\n    color: #FFFFFF;\n    background-color: #2ED04C;\n    display: inline-block;\n    padding: 0px 7px 1px 7px;\n    margin-bottom: 2px;\n    border-radius: 3px;\n  }\n  .uv-app-screen .uv-app-list-channels .uv-app-list-brick .uv-app-list-brick-rt span.uv-app-list-flag-inactive {\n    font-size: 15px;\n    color: #FFFFFF;\n    background-color: #FF5656;\n    display: inline-block;\n    padding: 0px 7px 1px 7px;\n    margin-bottom: 2px;\n    border-radius: 3px;\n  }\n  .uv-app-screen .uv-app-list-channels .uv-app-list-brick .uv-app-list-brick-rt a:link,\n  .uv-app-screen .uv-app-list-channels .uv-app-list-brick .uv-app-list-brick-rt a:focus,\n  .uv-app-screen .uv-app-list-channels .uv-app-list-brick .uv-app-list-brick-rt a:hover,\n  .uv-app-screen .uv-app-list-channels .uv-app-list-brick .uv-app-list-brick-rt a:active,\n  .uv-app-screen .uv-app-list-channels .uv-app-list-brick .uv-app-list-brick-rt a:visited {\n    font-size: 15px;\n    color: #2750C4;\n    margin-right: 10px;\n    display: inline-block;\n  }\n  .uv-app-screen .uv-app-list-channels .uv-app-list-brick .uv-app-list-brick-rt a.uv-delete {\n    color: #FF5656;\n  }\n  .uv-instructions-block {\n    border: solid 1px #D3D3D3;\n    padding: 15px 15px 5px 15px;\n    border-radius: 3px;\n    margin: 25px 0px;\n    animation: attention 0.8s 1s 1 cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-instructions-block ul {\n    font-size: 15px;\n    color: #333333;\n  }\n  .uv-instructions-block ul li {\n    margin: 10px 0px;\n  }\n  .uv-instructions-block ul a,\n  .uv-instructions-block ul a:active {\n    color: #2750C4;\n  }\n  .uv-instructions-block ul a:hover {\n    text-decoration: underline;\n  }\n  .uv-instructions-block p a,\n  .uv-instructions-block p a:active {\n    color: #2750C4;\n  }\n  .uv-instructions-block p a:hover {\n    text-decoration: underline;\n  }\n  .uv-instructions-block .uv-select-custom {\n    width: 150px;\n    height: 28px;\n    padding-left: 8px;\n    font-size: 13px;\n    margin: 0px 5px;\n  }\n  #beauty-scroll::-webkit-scrollbar-track {\n    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);\n    background-color: #F5F5F5;\n  }\n  #beauty-scroll::-webkit-scrollbar {\n    width: 6px;\n    height: 8px;\n    background-color: #F5F5F5;\n  }\n  #beauty-scroll::-webkit-scrollbar-thumb {\n    background-color: #9e9e9e;\n  }\n  .uv-icon-popular {\n    width: 13px;\n    height: 18px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: 0px -136px;\n    display: inline-block;\n    vertical-align: middle;\n    cursor: pointer;\n  }\n  .uv-icon-popular:hover {\n    background-position: -14px -136px;\n  }\n  .uv-icon-popular-active,\n  .uv-icon-popular:hover.uv-icon-popular-active {\n    background-position: -28px -136px;\n  }\n  .uv-icon-drag {\n    width: 16px;\n    height: 12px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -58px -88px;\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-icon-drag:hover {\n    background-position: -58px -101px;\n  }\n  .uv-icon-drag:active {\n    cursor: move;\n  }\n  .uv-icon-folder {\n    width: 18px;\n    height: 14px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -38px -121px;\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-icon-category {\n    width: 18px;\n    height: 18px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -19px -281px;\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-icon-article {\n    width: 18px;\n    height: 18px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: 0px -281px;\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-icon-expand {\n    width: 6px;\n    height: 8px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -65px -71px;\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-icon-expand-active {\n    background-position: -65px -80px;\n  }\n  .uv-icon-alert {\n    width: 18px;\n    height: 15px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: 0px -155px;\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-icon-graph {\n    width: 18px;\n    height: 15px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -19px -155px;\n    display: inline-block;\n    vertical-align: middle;\n  }\n  .uv-app-glyph-articles {\n    width: 20px;\n    height: 20px;\n    background-position: center center;\n    background-repeat: no-repeat;\n    cursor: pointer;\n    display: inline-block;\n    vertical-align: middle;\n    margin: 5px 0px 5px 10px;\n    background-image: url(\"../../bundles/webkuldefault/images/app-glyph-articles.svg\");\n  }\n  .uv-app-glyph-files {\n    width: 20px;\n    height: 20px;\n    background-position: center center;\n    background-repeat: no-repeat;\n    cursor: pointer;\n    display: inline-block;\n    vertical-align: middle;\n    margin: 5px 0px 5px 10px;\n    background-image: url(\"../../bundles/webkuldefault/images/app-glyph-files.svg\");\n  }\n  .uv-app-glyph-tasks {\n    width: 20px;\n    height: 20px;\n    background-position: center center;\n    background-repeat: no-repeat;\n    cursor: pointer;\n    display: inline-block;\n    vertical-align: middle;\n    margin: 5px 0px 5px 10px;\n    background-image: url(\"../../bundles/webkuldefault/images/app-glyph-tasks.svg\");\n  }\n  .uv-app-glyph-todo {\n    width: 20px;\n    height: 20px;\n    background-position: center center;\n    background-repeat: no-repeat;\n    cursor: pointer;\n    display: inline-block;\n    vertical-align: middle;\n    margin: 5px 0px 5px 10px;\n    background-image: url(\"../../bundles/webkuldefault/images/app-glyph-todo.svg\");\n  }\n  .uv-app-glyph-ecommerce {\n    width: 20px;\n    height: 20px;\n    background-position: center center;\n    background-repeat: no-repeat;\n    cursor: pointer;\n    display: inline-block;\n    vertical-align: middle;\n    margin: 5px 0px 5px 10px;\n    background-image: url(\"../../bundles/webkuldefault/images/app-glyph-ecommerce.svg\");\n  }\n  .uv-cld-icon-clock {\n    width: 18px;\n    height: 18px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-calendar-sprite.svg\");\n    background-position: 0px 0px;\n    display: inline-block;\n    cursor: pointer;\n    vertical-align: middle;\n  }\n  .uv-cld-icon-clock:hover {\n    background-position: -19px 0px;\n  }\n  .uv-cld-icon-calendar {\n    width: 18px;\n    height: 18px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-calendar-sprite.svg\");\n    background-position: -38px 0px;\n    display: inline-block;\n    cursor: pointer;\n    vertical-align: middle;\n  }\n  .uv-cld-icon-calendar:hover {\n    background-position: -57px 0px;\n  }\n  .uv-cld-icon-remove {\n    width: 18px;\n    height: 18px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-calendar-sprite.svg\");\n    background-position: 0px -19px;\n    display: inline-block;\n    cursor: pointer;\n    vertical-align: middle;\n  }\n  .uv-cld-icon-remove:hover {\n    background-position: -19px -19px;\n  }\n  .uv-cld-angle-up {\n    width: 12px;\n    height: 7px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-calendar-sprite.svg\");\n    background-position: -38px -19px;\n    display: inline-block;\n    cursor: pointer;\n    vertical-align: middle;\n  }\n  .uv-cld-angle-up:hover {\n    background-position: -51px -19px;\n  }\n  .uv-cld-angle-down {\n    width: 12px;\n    height: 7px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-calendar-sprite.svg\");\n    background-position: -38px -27px;\n    display: inline-block;\n    cursor: pointer;\n    vertical-align: middle;\n  }\n  .uv-cld-angle-down:hover {\n    background-position: -51px -27px;\n  }\n  .uv-cld-angle-right {\n    width: 7px;\n    height: 12px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-calendar-sprite.svg\");\n    background-position: 0px -38px;\n    display: inline-block;\n    cursor: pointer;\n    vertical-align: middle;\n  }\n  .uv-cld-angle-right:hover {\n    background-position: -8px -38px;\n  }\n  .uv-cld-angle-left {\n    width: 7px;\n    height: 12px;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-calendar-sprite.svg\");\n    background-position: -16px -38px;\n    display: inline-block;\n    cursor: pointer;\n    vertical-align: middle;\n  }\n  .uv-cld-angle-left:hover {\n    background-position: -24px -38px;\n  }\n  a.uv-installed-apps {\n    color: transparent !important;\n    -webkit-background-clip: text;\n    -moz-background-clip: text;\n    background-clip: text;\n    background-image: -webkit-linear-gradient(0deg, #3F51B5 0%, #43A047 50%);\n    background-image: -moz-linear-gradient(0deg, #3F51B5 0%, #43A047 50%);\n    background-image: -ms-linear-gradient(0deg, #3F51B5 0%, #43A047 50%);\n  }\n  .uv-large-box-plank .uv-large-box-lt {\n    display: table;\n    position: fixed;\n    width: 500px;\n    min-height: 600px;\n    top: 0;\n    bottom: 0;\n    height: 100%;\n    background-image: -moz-linear-gradient(90deg, #7c70f4 0%, #ba81f1 100%);\n    background-image: -webkit-linear-gradient(90deg, #7c70f4 0%, #ba81f1 100%);\n    background-image: -ms-linear-gradient(90deg, #7c70f4 0%, #ba81f1 100%);\n    z-index: 2;\n  }\n  .uv-large-box-plank .uv-large-box-rt {\n    position: absolute;\n    width: 100%;\n    height: 100%;\n    padding: 60px 60px 60px 560px;\n    display: table;\n    z-index: 1;\n  }\n  .uv-large-box-plank .uv-large-box-rt img {\n    margin-bottom: 15px;\n  }\n  .uv-large-box-plank .uv-large-box-rt h1 {\n    font-size: 17px;\n    color: #9E9E9E;\n    font-weight: 700;\n  }\n  .uv-large-box-plank .uv-large-box-rt h1 span {\n    color: #7C70F4;\n  }\n  .uv-large-box-plank .uv-large-box-rt a:link,\n  .uv-large-box-plank .uv-large-box-rt a:hover,\n  .uv-large-box-plank .uv-large-box-rt a:active,\n  .uv-large-box-plank .uv-large-box-rt a:visited {\n    color: #2750C4;\n    font-size: 15px;\n  }\n  .uv-large-box-plank .uv-large-box-rt a:hover {\n    text-decoration: underline;\n  }\n  .uv-large-box-plank .uv-center-box {\n    display: table-cell;\n    vertical-align: middle;\n  }\n  .uv-large-box-plank .uv-adjacent-center {\n    display: inline-block;\n    text-align: left;\n    width: 580px;\n  }\n  .uv-large-box-plank .uv-adjacent-form {\n    margin: 35px 0px;\n  }\n  .uv-large-box-plank .uv-sign-up-flap {\n    display: none;\n  }\n  .uv-large-box-plank .uv-sign-up-flap-active {\n    display: block;\n  }\n  .uv-large-box-plank .uv-sign-up-flap-slide {\n    animation: flap-slide 0.3s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n  .uv-large-box-plank label {\n    font-size: 15px;\n    color: #333333;\n  }\n  .uv-large-box-plank .uv-adjacent-element-block {\n    margin: 30px 0px;\n  }\n  .uv-large-box-plank .uv-large-footer {\n    position: absolute;\n    width: 100%;\n    bottom: 50px;\n  }\n  .uv-large-box-plank .uv-large-footer-text {\n    text-align: center;\n    text-transform: uppercase;\n    color: #391EC2;\n    margin: 5px 0px;\n  }\n  .uv-large-box-plank .uv-large-footer-link,\n  .uv-large-box-plank .uv-large-footer-link:hover,\n  .uv-large-box-plank .uv-large-footer-link:active,\n  .uv-large-box-plank .uv-large-footer-link:visited {\n    color: #FFFFFF;\n  }\n  .uv-large-box-plank .uv-large-footer-link:hover {\n    text-decoration: underline;\n  }\n  .uv-large-box-plank .uv-icon-mail-light {\n    margin-right: 7px;\n    vertical-align: middle;\n  }\n  .uv-large-box-plank .uv-large-footer-copyright p {\n    color: #CFA5F7;\n    text-align: center;\n    margin-top: 50px;\n  }\n  .uv-large-box-plank .uv-cog-animate {\n    position: relative;\n    width: 215px;\n    height: 120px;\n    margin-top: 100px;\n    margin-bottom: 15px;\n  }\n  .uv-large-box-plank .uv-cog-animate .uv-cog-animate-lg {\n    position: absolute;\n    animation: cog-animate-lg 1.6s infinite linear;\n  }\n  .uv-large-box-plank .uv-cog-animate .uv-cog-animate-sm {\n    top: -45px;\n    left: 110px;\n    position: absolute;\n    animation: cog-animate-sm 1.6s infinite linear;\n  }\n  .uv-plan-block {\n    width: 220px;\n    height: 220px;\n    border-radius: 7px;\n    max-width: 90%;\n    display: table;\n    text-align: center;\n  }\n  .uv-plan-free {\n    background-image: -moz-linear-gradient(90deg, #4486ee 0%, #5593f6 60%, #65a0fe 100%);\n    background-image: -webkit-linear-gradient(90deg, #4486ee 0%, #5593f6 60%, #65a0fe 100%);\n    background-image: -ms-linear-gradient(90deg, #4486ee 0%, #5593f6 60%, #65a0fe 100%);\n    border-bottom: solid 4px #3477DF;\n    box-shadow: inset 0px 0px 0px 1px #6EA2F3;\n  }\n  .uv-plan-pro {\n    background-image: -moz-linear-gradient(90deg, #f5d02a 0%, #fada15 60%, #ffe400 100%);\n    background-image: -webkit-linear-gradient(90deg, #f5d02a 0%, #fada15 60%, #ffe400 100%);\n    background-image: -ms-linear-gradient(90deg, #f5d02a 0%, #fada15 60%, #ffe400 100%);\n    border-bottom: solid 4px #E2BD15;\n    box-shadow: inset 0px 0px 0px 1px #F2E36B;\n  }\n  .uv-plan-enterprise {\n    background-image: -moz-linear-gradient(90deg, #fd9a9a 0%, #feb692 100%);\n    background-image: -webkit-linear-gradient(90deg, #fd9a9a 0%, #feb692 100%);\n    background-image: -ms-linear-gradient(90deg, #fd9a9a 0%, #feb692 100%);\n    border-bottom: solid 4px #EE7C7C;\n    box-shadow: inset 0px 0px 0px 1px #FEB592;\n  }\n  .uv-plan-customized {\n    background-image: -moz-linear-gradient(90deg, #b77af5 0%, #d4abfe 100%);\n    background-image: -webkit-linear-gradient(90deg, #b77af5 0%, #d4abfe 100%);\n    background-image: -ms-linear-gradient(90deg, #b77af5 0%, #d4abfe 100%);\n    border-bottom: solid 4px #A967EB;\n    box-shadow: inset 0px 0px 0px 1px #CB9DF8;\n  }\n  .uv-plan-content {\n    display: table-cell;\n    vertical-align: middle;\n  }\n  .uv-plan-content h2 {\n    font-size: 34px;\n    font-weight: 400;\n    color: #FFFFFF;\n  }\n  .uv-plan-content h3 {\n    font-size: 24px;\n    font-weight: 400;\n    color: #FFFFFF;\n  }\n  .uv-plan-content h3:before {\n    content: \"( \";\n  }\n  .uv-plan-content h3:after {\n    content: \" )\";\n  }\n  .uv-summary {\n    display: block;\n    width: 350px;\n    max-width: 90%;\n    font-family: \"Courier New\", Courier, \"Lucida Sans Typewriter\", \"Lucida Typewriter\", monospace;\n  }\n  .uv-summary .uv-summary-tint {\n    border-bottom: solid 5px #7C70F4;\n    border-radius: 3px 3px 0px 0px;\n  }\n  .uv-summary .uv-summary-table {\n    border-right: solid 1px #D3D3D3;\n    border-bottom: solid 1px #D3D3D3;\n    border-left: solid 1px #D3D3D3;\n    border-radius: 0px 0px 3px 3px;\n    position: relative;\n    background-color: #FFFFFF;\n  }\n  .uv-summary .uv-summary-table:before {\n    content: \"\";\n    position: absolute;\n    top: 0px;\n    bottom: -4px;\n    left: 2px;\n    right: 2px;\n    border-bottom: solid 1px #D3D3D3;\n    border-right: solid 1px #D3D3D3;\n    border-left: solid 1px #D3D3D3;\n    z-index: -1;\n    background-color: #FFFFFF;\n    border-radius: 0px 0px 3px 3px;\n  }\n  .uv-summary .uv-summary-table:after {\n    content: \"\";\n    position: absolute;\n    top: 0px;\n    bottom: -7px;\n    left: 6px;\n    right: 6px;\n    border-bottom: solid 1px #D3D3D3;\n    border-right: solid 1px #D3D3D3;\n    border-left: solid 1px #D3D3D3;\n    z-index: -2;\n    background-color: #FFFFFF;\n    border-radius: 0px 0px 3px 3px;\n  }\n  .uv-summary .uv-summary-row {\n    padding: 20px;\n    border-bottom: solid 1px #D3D3D3;\n  }\n  .uv-summary .uv-summary-row span {\n    display: block;\n    font-size: 17px;\n  }\n  .uv-summary .uv-summary-row span:nth-child(2) {\n    padding-top: 5px;\n    font-weight: bold;\n  }\n  .uv-summary .uv-summary-row .uv-summary-total {\n    font-size: 32px;\n  }\n  .uv-summary .uv-summary-row:last-child {\n    border-bottom: none;\n    padding: 25px 20px;\n  }\n  br[data-mce-bogus=\"1\"] {\n    display:none;\n  }\n  .gr-top-z-index.gr-top-zero {\n    position: fixed;\n  }\n  /*Media Queries*/\n  @media screen and (max-width: 900px) {\n    .uv-sidebar {\n      width: 60px;\n    }\n    .uv-sidebar .uv-soft-top a.uv-logo {\n      display: block;\n      margin: 10px 7px;\n    }\n    .uv-sidebar .uv-soft-top .uv-hamburger {\n      display: none;\n    }\n    .uv-sidebar .uv-soft-top .uv-company-logo img {\n      height: 48px;\n    }\n    .uv-sidebar ul.uv-menubar {\n      list-style-type: none;\n      padding: 0px;\n      margin: 0px;\n    }\n    .uv-sidebar ul.uv-menubar li a {\n      padding: 15px 17px;\n      transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n    }\n    .uv-sidebar ul.uv-menubar li a .uv-menu-item {\n      display: none;\n    }\n    .uv-paper {\n      padding-left: 60px;\n    }\n    .uv-paper .uv-navbar .uv-search-wrapper {\n      display: none;\n    }\n    .uv-paper .uv-navbar .uv-actions {\n      width: 100%;\n    }\n    .uv-paper .uv-wrapper {\n      transition: none;\n    }\n    .uv-paper .uv-container .uv-brick {\n      text-align: center;\n    }\n    .uv-paper .uv-container .uv-brick .uv-brick-section {\n      text-align: center;\n    }\n    .uv-paper .uv-container .uv-brick .uv-brick-section .uv-brick-container {\n      margin: 10px 10px;\n    }\n    .uv-paper .uv-container .uv-home-tabs {\n      position: static;\n      text-align: center;\n      margin: 15px;\n    }\n    .uv-inner-section .uv-aside {\n      display: none;\n    }\n    .uv-inner-section .uv-view {\n      padding-left: 25px;\n    }\n    .uv-inner-section .uv-view .uv-tabs ul li {\n      display: block;\n      border-bottom: solid 3px #D3D3D3;\n    }\n    .uv-inner-section .uv-view .uv-tabs ul li:hover {\n      margin-bottom: 0px;\n    }\n    .uv-inner-section .uv-view .uv-tabs ul li:last-child {\n      border-bottom: solid 3px transparent;\n    }\n    .uv-inner-section .uv-view .uv-ticket-scroll-region,\n    .uv-inner-section .uv-view .uv-ticket-fixed-region {\n      position: static;\n    }\n    .uv-inner-section .uv-view .uv-ticket-scroll-region {\n      margin-bottom: 0px;\n    }\n    .uv-inner-section .uv-view .uv-ticket-fixed-region .uv-ticket-fixed-region-lt {\n      width: 100%;\n      display: block;\n      text-align: center;\n    }\n    .uv-inner-section .uv-view .uv-ticket-fixed-region .uv-ticket-fixed-region-lt .uv-dropdown-list {\n      text-align: left;\n    }\n    .uv-inner-section .uv-view .uv-ticket-fixed-region .uv-ticket-fixed-region-rt {\n      width: 100%;\n      display: block;\n      text-align: center;\n    }\n    .uv-app-view-logo {\n      width: 100%;\n      display: block;\n      text-align: left;\n    }\n    .uv-app-view-logo img {\n      margin-bottom: 10px;\n    }\n    .uv-app-view-content {\n      width: 100%;\n      display: block;\n      text-align: left;\n    }\n  }\n  @media screen and (min-width: 901px) and (max-width: 1400px) {\n    .uv-sidebar {\n      width: 60px;\n    }\n    .uv-sidebar .uv-soft-top a.uv-logo {\n      display: block;\n      margin: 10px 7px;\n    }\n    .uv-sidebar .uv-soft-top .uv-hamburger {\n      display: none;\n    }\n    .uv-sidebar .uv-soft-top .uv-company-logo img {\n      height: 48px;\n    }\n    .uv-sidebar ul.uv-menubar {\n      list-style-type: none;\n      padding: 0px;\n      margin: 0px;\n    }\n    .uv-sidebar ul.uv-menubar li a {\n      padding: 15px 17px;\n      transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n    }\n    .uv-sidebar ul.uv-menubar li a .uv-menu-item {\n      display: none;\n    }\n    .uv-paper {\n      padding-left: 60px;\n    }\n    .uv-paper .uv-wrapper {\n      left: 60px;\n      transition: none;\n    }\n    .uv-inner-section .uv-aside {\n      width: 250px;\n    }\n    .uv-inner-section .uv-view {\n      padding-left: 275px;\n    }\n    .uv-inner-section .uv-view .uv-ticket-scroll-region,\n    .uv-inner-section .uv-view .uv-ticket-fixed-region {\n      left: 275px;\n    }\n    .uv-app-view-logo {\n      width: 15%;\n    }\n    .uv-app-view-content {\n      width: 85%;\n    }\n  }\n  @media screen and (max-width: 1400px) {\n    .uv-sidebar .uv-soft-top .uv-company-logo-square {\n      display: block;\n    }\n    .uv-sidebar .uv-soft-top .uv-company-logo-wide {\n      display: none;\n    }\n  }\n  @media screen and (min-width: 1100px) and  (max-width: 1260px) {\n    .uv-inner-section .uv-view .uv-ticket-action-bar .uv-tabs ul li[data-type=\"pinned\"]  {\n      display: none;\n    }\n    .uv-inner-section .uv-action-bar .uv-action-bar-col-lt {\n      padding-left: 20px;\n    }\n    .uv-inner-section .uv-action-bar .uv-action-bar-col-lt, .uv-inner-section .uv-action-bar .uv-action-bar-col-rt {\n      width: 50%;\n    }\n  }\n  @media screen and (max-width: 1100px) {\n    .uv-inner-section .uv-action-bar .uv-action-bar-col-lt {\n      width: 50%;\n    }\n    .uv-inner-section .uv-action-bar .uv-action-bar-col-lt label.uv-responsive-hide {\n      display: none;\n    }\n    .uv-inner-section .uv-action-bar .uv-action-bar-col-rt {\n      width: 50%;\n    }\n    /* .uv-inner-section .uv-action-bar .uv-action-select-wrapper {\n      display: none;\n    } */\n    .uv-inner-section .uv-action-bar .uv-action-col-wrapper {\n      width: 100%;\n      display: block;\n    }\n    /* .uv-inner-section td label {\n      display: none;\n    } */\n    .uv-inner-section .uv-table.uv-list-view table tbody td.uv-last {\n      width: 100%;\n    }\n    .uv-inner-section .uv-view .uv-ticket-action-bar .uv-ticket-action-bar-lt {\n      width: 30%;\n      display: inline-block;\n    }\n    .uv-inner-section .uv-view .uv-ticket-action-bar .uv-ticket-action-bar-rt {\n      width: 70%;\n      display: inline-block;\n      text-align: right;\n      padding-right: 25px;\n    }\n    .uv-inner-section .uv-view .uv-ticket-action-bar .uv-tabs ul li {\n      display: none;\n    }\n    .uv-inner-section .uv-view .uv-ticket-action-bar .uv-tabs ul li:first-child {\n      display: inline-block;\n    }\n    .uv-inner-section .uv-view .uv-ticket-main-lt .uv-icon-ellipsis {\n      display: none;\n    }\n    .uv-inner-section .uv-view .uv-ticket-main-rt {\n      width: 100%;\n    }\n    .uv-paper .uv-scroll-block {\n      max-width: 90%;\n    }\n    .uv-app-screen .uv-app-splash {\n      width: 100%;\n    }\n  }\n  @media screen and (max-width: 1200px) {\n    .uv-large-box-plank .uv-large-box-lt {\n      display: block;\n      position: static;\n      width: 100%;\n      min-height: auto;\n      text-align: center;\n      background-image: none;\n      padding: 0px 50px;\n    }\n    .uv-large-box-plank .uv-large-box-lt .uv-center-box {\n      border-top: solid 1px #D3D3D3;\n    }\n    .uv-large-box-plank .uv-large-box-lt img {\n      display: none;\n    }\n    .uv-large-box-plank .uv-large-box-rt {\n      position: static;\n      padding: 50px 20px;\n    }\n    .uv-large-box-plank .uv-adjacent-center {\n      width: 100%;\n    }\n    .uv-large-box-plank .uv-large-footer {\n      position: static;\n      padding: 50px 20px;\n    }\n    .uv-large-box-plank .uv-large-footer p {\n      margin-top: 10px;\n      color: #333333;\n    }\n    .uv-large-box-plank .uv-large-footer a:link,\n    .uv-large-box-plank .uv-large-footer a:hover,\n    .uv-large-box-plank .uv-large-footer a:active,\n    .uv-large-box-plank .uv-large-footer a:visited {\n      color: #2750C4;\n    }\n    .uv-large-box-plank .uv-large-footer .uv-large-footer-copyright p {\n      margin-top: 20px;\n      color: #6F6F6F;\n    }\n    .uv-large-box-plank .uv-center-box {\n      display: block;\n    }\n    .uv-large-box-plank .uv-icon-mail-light {\n      background-position: -57px -168px;\n    }\n    .uv-steppers {\n      display: none;\n    }\n    .uv-sign-up-flap {\n      min-height: 650px;\n    }\n  }\n  @media screen and (max-width: 500px) {\n    .uv-inner-section .uv-action-bar .uv-action-bar-col-lt {\n      width: 100%;\n      display: block;\n      text-align: center;\n      padding-right: 20px;\n    }\n    .uv-inner-section .uv-action-bar .uv-action-bar-col-rt {\n      width: 100%;\n      display: block;\n      text-align: center;\n    }\n    .uv-inner-section .uv-action-bar .uv-dropdown {\n      width: 100%;\n    }\n    .uv-inner-section .uv-action-bar .uv-dropdown .uv-dropdown-btn {\n      width: 100%;\n    }\n    .uv-inner-section .uv-action-bar .uv-dropdown .uv-dropdown-container {\n      text-align: left;\n    }\n    .uv-inner-section .uv-action-bar .uv-search-inline {\n      width: 100%;\n      margin-left: 5px;\n    }\n    .uv-inner-section .uv-action-bar .uv-btn-stroke {\n      width: 100%;\n      margin-left: 5px;\n    }\n    .uv-inner-section .uv-view-plank {\n      text-align: center;\n    }\n    .uv-app-screen .uv-app-list-channels .uv-app-list-action .uv-app-list-action-lt {\n      width: 100%;\n      display: block;\n    }\n    .uv-app-screen .uv-app-list-channels .uv-app-list-action .uv-app-list-action-rt {\n      width: 100%;\n      display: block;\n      text-align: left;\n    }\n    .uv-app-screen .uv-app-list-channels .uv-app-list-brick {\n      width: 100%;\n      max-width: 100%;\n      display: block;\n    }\n    .uv-app-screen .uv-app-list-channels .uv-app-list-brick .uv-app-list-brick-lt {\n      display: block;\n      width: 100%;\n    }\n    .uv-app-screen .uv-app-list-channels .uv-app-list-brick .uv-app-list-brick-lt span {\n      padding: 5px 0px;\n    }\n    .uv-app-screen .uv-app-list-channels .uv-app-list-brick .uv-app-list-brick-rt {\n      display: block;\n      width: 100%;\n      border-top: none;\n      padding: 10px 15px 15px 15px;\n    }\n    .uv-app-screen .uv-app-list-channels .uv-app-list-brick .uv-app-list-brick-rt p {\n      overflow: visible;\n      white-space: normal;\n      margin-bottom: 7px;\n    }\n    .uv-paper .uv-wrapper .uv-copyright {\n      text-align: center;\n    }\n    .uv-paper .uv-container .uv-home-tabs ul .uv-tab-manage,\n    .uv-paper .uv-container .uv-home-tabs ul .uv-tab-activity {\n      border-radius: 3px;\n      margin: 5px 0px;\n    }\n    .uv-filter-view {\n      width: 250px;\n    }\n    .uv-filter-view .uv-filter-head {\n      width: 230px;\n    }\n    .uv-filter-view .uv-filter-head .uv-filter-title {\n      width: 190px;\n    }\n    .uv-notifications + .uv-dropdown-list.uv-bottom-right.uv-text-left {\n      right: -200px;\n      width: unset !important;\n    }\n    .uv-inner-section .uv-action-bar label.uv-margin-left-27 {\n      margin-left: 5px;\n    }\n  }\n  @media screen and (max-width: 320px) {\n    .uv-paper {\n      transition: none;\n    }\n    .uv-paper .uv-navbar .uv-profile {\n      margin: 0px 15px 0px 30px;\n    }\n    .uv-paper .uv-navbar .uv-action-new {\n      width: 50px;\n      padding: 25px 10px;\n      transition: none;\n    }\n    .uv-sidebar {\n      width: 60px;\n      transition: none;\n    }\n    .uv-sidebar .uv-soft-top .uv-company-logo {\n      height: 48px;\n    }\n    .uv-sidebar ul.uv-menubar li a {\n      transition: none;\n    }\n    .uv-inner-section .uv-view .uv-ticket-fixed-region {\n      height: auto;\n      padding-top: 20px;\n    }\n    .uv-inner-section .uv-view .uv-ticket-fixed-region .uv-dropdown {\n      width: 100%;\n      display: block;\n      margin: 10px 0px;\n    }\n    .uv-inner-section .uv-view .uv-ticket-fixed-region .uv-dropdown .uv-dropdown-btn {\n      width: 100%;\n      display: block;\n    }\n    .uv-inner-section .uv-view .uv-ticket-fixed-region .uv-ticket-fixed-region-rt .uv-btn-stroke {\n      width: 100%;\n      margin-left: 0px;\n    }\n  }\n  .uv-icon-aside-menu {\n    width: 40px;\n    height: 40px;\n    display: inline-block;\n    vertical-align: middle;\n    background-color: #7C70F4;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: 0px -415px;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n    border-radius: 50%;\n    cursor: pointer;\n    transform: translateY(0px);\n    box-shadow: 0px 2px 8.5px 1.5px rgba(0, 0, 0, 0.15), 0px 2px 1px 0px rgba(0, 0, 0, 0.1);\n  }\n  .uv-icon-aside-menu:hover {\n    background-color: #BA81F1;\n    margin-top: -3px;\n    box-shadow: 0px 8px 15px 3px rgba(0, 0, 0, 0.15), 0px 2px 3px 0px rgba(0, 0, 0, 0.2);\n  }\n  \n  .uv-rtl {\n      direction: rtl;\n  }\n  .uv-rtl .uv-sidebar {\n      left: auto;\n      right: 0;\n  }\n  .uv-rtl .uv-paper {\n      padding-right: 300px;\n      padding-left: 0px;\n  }\n  .uv-rtl .uv-paper .uv-navbar .uv-search-bar {\n      margin-right: 15px;\n      padding: 9px 40px 10px 15px;\n      background-position: right 0px top 0px;\n  }\n  .uv-rtl .uv-paper .uv-navbar .uv-search-bar:hover {\n      background-position: right 0px top -40px;\n  }\n  .uv-rtl .uv-paper .uv-navbar .uv-actions {\n      text-align: left;\n  }\n  .uv-rtl .uv-paper .uv-navbar .uv-profile {\n      margin: 0px 20px 0px 0px;\n  }\n  .uv-rtl .uv-paper .uv-navbar .uv-profile-info {\n      margin-left: 15px;\n      margin-right: 5px;\n      text-align: right;\n  }\n  .uv-rtl .uv-paper .uv-navbar .uv-profile:after {\n      right: -5px;\n  }\n  .uv-rtl .uv-paper .uv-wrapper {\n      left: 0px;\n      right: 300px;\n  }\n  .uv-rtl .uv-paper .uv-container .uv-home-tabs {\n      right: auto;\n      left: 25px;\n  }\n  .uv-rtl .uv-paper .uv-container .uv-home-tabs ul .uv-tab-manage {\n      border-radius: 0px 3px 3px 0px;\n  }\n  .uv-rtl .uv-paper .uv-container .uv-home-tabs ul .uv-tab-activity {\n      border-radius: 3px 0px 0px 3px;\n  }\n  .uv-rtl .uv-paper .uv-container .uv-brick .uv-brick-section {\n      text-align: right;\n  }\n  .uv-rtl .uv-paper .uv-container .uv-brick .uv-brick-container {\n      margin: 15px 0px 0px 30px;\n  }\n  .uv-rtl .uv-sidebar ul.uv-menubar li a {\n      border-right: solid 3px transparent;\n      border-left: none;\n  }\n  .uv-rtl .uv-sidebar ul.uv-menubar li a .uv-menu-item {\n      margin-left: 0px;\n      margin-right: 5px;\n  }\n  .uv-rtl .uv-sidebar ul.uv-menubar li a:hover,\n  .uv-rtl .uv-sidebar ul.uv-menubar li .uv-item-active {\n      border-right: solid 3px #7C70F4;\n      border-left: none;\n  }\n  .uv-rtl .uv-inner-section .uv-view {\n      padding: 25px 305px 25px 0px;\n  }\n  .uv-rtl .uv-inner-section .uv-view .uv-image-upload-wrapper .uv-image-upload-brick {\n      margin-left: 15px;\n      margin-right: 0px;\n  }\n  .uv-rtl .uv-inner-section .uv-aside {\n      padding: 20px 25px 20px 0px;\n      border-left: solid 1px #D3D3D3;\n      border-right: none;\n  }\n  .uv-rtl .uv-inner-section .uv-aside .uv-aside-head .uv-aside-title {\n      float: right;\n  }\n  .uv-rtl .uv-inner-section .uv-aside .uv-aside-head .uv-aside-back {\n      float: left;\n      margin-right: 0px;\n      margin-left: 25px;\n  }\n  .uv-rtl .uv-inner-section .uv-aside .uv-aside-head .uv-aside-back span:before {\n      right: -13px;\n      transform: scaleX(-1);\n  }\n  .uv-rtl .uv-inner-section .uv-action-bar .uv-action-bar-col-rt {\n      padding-right: 0px;\n      padding-left: 20px;\n      text-align: left;\n  }\n  .uv-rtl .uv-app-wrapper {\n      margin-left: 25px;\n      margin-right: 0px;\n      margin-bottom: 25px;\n  }\n  .uv-rtl .uv-app-wrapper .uv-btn-small {\n      margin-right: 0px;\n      margin-left: 5px;\n  }\n  .uv-rtl .uv-app-view-logo {\n      text-align: right;\n      padding-left: 25px;\n      padding-right: 0px;\n  }\n  .uv-rtl .uv-app-view-content {\n      text-align: right;\n  }\n  .uv-rtl .uv-app-view-content .uv-btn-small {\n      margin-right: 0px;\n      margin-left: 5px;\n  }\n  .uv-rtl .uv-app-view-content .uv-app-view-header {\n      padding-right: 0px;\n      padding-left: 25px;\n  }\n  .uv-rtl .uv-app-view-content .uv-app-view-section {\n      padding: 16px 0px 20px 0px;\n  }\n  .uv-rtl .uv-app-screen {\n      padding-right: 0px;\n      padding-left: 25px;\n  }\n  .uv-rtl .uv-app-screen .uv-app-list-channels .uv-app-list-action-rt {\n      text-align: left;\n  }\n  .uv-rtl .uv-app-screen .uv-app-list-channels .uv-app-list-brick {\n      margin: 15px 0px 0px 20px;\n  }\n  .uv-rtl .uv-group-field {\n      border-radius: 0px 3px 3px 0px;\n      border-right: solid 1px #B1B1AE;\n      border-left: none;\n  }\n  .uv-rtl .uv-group-select {\n      border-radius: 3px 0px 0px 3px;\n      padding: 0px 10px 0px 25px;\n      background-position: left 10px center;\n  }\n  .uv-rtl .uv-margin-left-15 {\n      margin-left: 0px;\n      margin-right: 15px;\n  }\n  .uv-rtl .uv-search-inline {\n      padding: 7px 33px 9px 10px;\n      background-position: right 1px top 1px;\n  }\n  .uv-rtl .uv-search-inline:focus {\n      padding: 7px 33px 9px 10px;\n      background-position: right 1px top -31px;\n  }\n  .uv-rtl .uv-margin-right-5 {\n      margin-right: 0px;\n      margin-left: 5px;\n  }\n  .uv-rtl .uv-select {\n      padding: 0px 10px 0px 25px;\n      background-position: left 10px center;\n  }\n  .uv-rtl .uv-file-label:before {\n      margin-right: 0px;\n      margin-left: 7px;\n  }\n  .uv-rtl .uv-element-block .uv-added-attachment span {\n      margin-right: 0px;\n      margin-left: 5px;\n  }\n  .uv-rtl .uv-date-picker {\n      background-position: left 10px center;\n  }\n  .uv-rtl .uv-pagination .uv-pagination-next,\n  .uv-rtl .uv-pagination .uv-pagination-previous {\n      transform: scaleX(-1);\n  }\n  .uv-rtl .uv-dropdown .uv-dropdown-btn {\n      padding: 8px 10px 8px 27px;\n  }\n  .uv-rtl .uv-dropdown .uv-dropdown-btn:before {\n      content: \"\";\n      position: absolute;\n      background-image: url(../../bundles/webkuldefault/images/arrow-down.svg);\n      background-repeat: no-repeat;\n      background-position: center;\n      width: 12px;\n      height: 6px;\n      margin-top: -3px;\n      top: 50%;\n      left: 10px;\n  }\n  .uv-rtl .uv-dropdown .uv-dropdown-btn:after {\n      display: none;\n  }\n  .uv-rtl .uv-bottom-left {\n      top: 42px;\n      left: auto;\n      right: 0px;\n  }\n  .uv-rtl span.uv-sorting.ascend {\n      right: auto;\n      left: 0px;\n  }\n  .uv-rtl .uv-checkbox-label,\n  .uv-rtl .uv-radio-label {\n      padding-left: 0px;\n      padding-right: 5px;\n  }\n  .uv-rtl .uv-pop-up-box {\n      right: 50%;\n      left: auto;\n  }\n  .uv-rtl .uv-pop-up-box .uv-pop-up-close {\n      right: auto;\n      left: 20px;\n  }\n  .uv-rtl .uv-pop-up-box h2 {\n      padding-left: 15px;\n      padding-right: 0px;\n  }\n  .uv-rtl .uv-pop-up-wide {\n      margin-right: -350px;\n      margin-left: 0px;\n  }\n  .uv-rtl .uv-pop-up-wide .uv-pop-up-actions {\n      text-align: right;\n  }\n  .uv-rtl .uv-pop-up-slim {\n      margin-right: -250px;\n      margin-left: 0px;\n  }\n  .uv-rtl .uv-pop-up-slim .uv-pop-up-actions {\n      text-align: right;\n  }\n  .uv-rtl .uv-padding-right-25 {\n      padding-right: 0px;\n      padding-left: 25px;\n  }\n  .uv-rtl .uv-workflow-hr-plank .uv-workflow-or,\n  .uv-rtl .uv-workflow-hr-plank .uv-workflow-and {\n      left: auto;\n      right: 45px;\n  }\n  .uv-rtl .uv-onboard-wrapper {\n      margin-right: -350px;\n      margin-left: auto;\n  }\n  .uv-rtl .uv-onboard-wrapper .uv-onboard-count:before {\n      left: auto;\n      right: -26px;\n  }\n  .uv-rtl .uv-onboard-wrapper .uv-onboard-count:after {\n      left: auto;\n      right: -50px;\n  }\n  .uv-rtl .uv-onboard-wrapper .uv-onboard-container .uv-onboard-navigators {\n      right: 0;\n      left: auto;\n  }\n  .uv-rtl .uv-onboard-wrapper .uv-onboard-container .uv-onboard-actions {\n      right: auto;\n      left: 0;\n  }\n  .uv-rtl .uv-paper .uv-navbar .uv-search-result-wrapper {\n      margin-left: 0px;\n      margin-right: 15px;\n  }\n  .uv-rtl .uv-paper .uv-navbar .uv-search-result-wrapper h6 {\n      margin-left: 0px;\n      margin-right: 15px;\n  }\n  .uv-rtl .uv-paper .uv-navbar .uv-search-result-wrapper p {\n      margin: 0px 8px 0px 0px;\n  }\n  .uv-rtl .uv-box-server-error .uv-box-cta:after {\n      margin-right: 5px;\n      margin-left: 0px;\n  }\n  .uv-rtl .uv-inner-section .uv-aside .uv-aside-nav ul li .uv-flag-gray {\n      margin-left: 0px;\n      margin-right: 7px;\n  }\n  .uv-rtl .uv-inner-section .uv-customize-wrapper span.uv-customize {\n      left: 20px;\n      right: auto;\n  }\n  .uv-rtl .uv-icon-add {\n      margin-left: 5px;\n      margin-right: 0px;\n  }\n  .uv-rtl .uv-inner-section .uv-action-bar label.uv-margin-left-27 {\n      margin-left: 0px;\n      margin-right: 27px;\n  }\n  .uv-rtl .uv-inner-section .uv-icon-filter {\n      margin-right: 0px;\n      margin-left: 5px;\n  }\n  .uv-rtl .uv-inner-section .uv-list-ticket-priority,\n  .uv-rtl .uv-inner-section .uv-list-task-priority {\n      margin-left: 5px;\n      margin-right: 0px;\n  }\n  .uv-rtl .uv-table table {\n      text-align: right;\n  }\n  .uv-rtl .uv-stack-view .uv-table.uv-list-view table tbody td:nth-child(2) {\n      text-align: right;\n  }\n  .uv-rtl .uv-table.uv-list-view table tbody td img {\n      margin-left: 5px;\n      margin-right: 0px;\n  }\n  .uv-rtl .uv-inner-section .uv-aside-option {\n      padding-right: 0px;\n      padding-left: 10px;\n  }\n  .uv-rtl .uv-icon-discard {\n      margin-right: 0px;\n      margin-left: 5px;\n  }\n  .uv-rtl .uv-filter-view {\n      left: -320px;\n      right: auto;\n  }\n  .uv-rtl .uv-filter-view .uv-filter-head .uv-filter-toggle {\n      float: left;\n  }\n  .uv-rtl .uv-filter-view .uv-filter-head .uv-filter-title {\n      float: right;\n  }\n  .uv-rtl .uv-filter-view .uv-filter-paper {\n      padding-left: 0px;\n      padding-right: 20px;\n  }\n  .uv-rtl .uv-filter-view .uv-filter-paper .uv-field-block {\n      padding-left: 20px;\n      padding-right: 0px;\n  }\n  .uv-rtl .uv-inner-section .uv-field-block .uv-customize-wrapper span.uv-customize {\n      margin-right: 5px;\n      margin-left: 0px;\n  }\n  .uv-rtl .uv-action-buttons .uv-btn {\n      margin-left: 5px;\n      margin-right: 0px;\n  }\n  .uv-rtl .uv-filter-view .uv-filter-paper .uv-btn-tag {\n      margin: 5px 0px 5px 5px;\n  }\n  .uv-rtl .uv-icon-remove-dark {\n      margin-left: 0px;\n      margin-right: 5px;\n  }\n  .uv-rtl .uv-filter-view .uv-filter-paper .uv-filter-edit-head .uv-filter-edit-title {\n      float: right;\n  }\n  .uv-rtl .uv-filter-view .uv-filter-paper .uv-filter-edit-head .uv-filter-edit-back {\n      float: left;\n      margin-left: 10px;\n      margin-right: 0px;\n  }\n  .uv-rtl .uv-filter-view .uv-filter-paper .uv-filter-edit-head .uv-filter-edit-back span:before {\n      right: -13px;\n      left: auto;\n      transform: scaleX(-1);\n  }\n  .uv-rtl .uv-inner-section .uv-view {\n      padding: 25px 305px 25px 0px;\n  }\n  .uv-rtl .uv-inner-section .uv-view .uv-ticket-scroll-region {\n      left: 0px;\n      right: 305px;\n  }\n  .uv-rtl .uv-inner-section .uv-view .uv-ticket-main-lt {\n      float: right;\n      margin-left: 10px;\n      margin-right: 0px;\n  }\n  .uv-rtl .uv-inner-section .uv-view .uv-ticket-main-rt {\n      float: right;\n  }\n  .uv-rtl .uv-inner-section .uv-view .uv-ticket-main {\n      padding: 15px 0px 15px 25px;\n  }\n  .uv-rtl .uv-inner-section .uv-view .uv-ticket-main .uv-ticket-uploads .uv-upload-actions a:link,\n  .uv-rtl .uv-inner-section .uv-view .uv-ticket-main .uv-ticket-uploads .uv-upload-actions a:hover,\n  .uv-rtl .uv-inner-section .uv-view .uv-ticket-main .uv-ticket-uploads .uv-upload-actions a:active,\n  .uv-rtl .uv-inner-section .uv-view .uv-ticket-main .uv-ticket-uploads .uv-upload-actions a:focus,\n  .uv-rtl .uv-inner-section .uv-view .uv-ticket-main .uv-ticket-uploads .uv-upload-actions a:visited {\n      margin-right: 0px;\n      margin-left: 10px;\n  }\n  .uv-rtl .uv-inner-section .uv-view .uv-ticket-main .uv-ticket-uploads .uv-upload-actions .uv-icon-open-in-files {\n      margin-right: 0px;\n      margin-left: 3px;\n  }\n  .uv-rtl .uv-inner-section .uv-view .uv-ticket-accordion .uv-ticket-count-stat {\n      left: auto;\n      right: 17px;\n  }\n  .uv-rtl .uv-icon-remove-dark-before {\n      margin-right: 0px;\n      margin-left: 5px;\n  }\n  .uv-rtl .uv-inner-section .uv-view .uv-ticket-main .uv-icon-marked-task,\n  .uv-rtl .uv-inner-section .uv-view .uv-ticket-main .uv-icon-locked,\n  .uv-rtl .uv-inner-section .uv-view .uv-ticket-main .uv-icon-pinned {\n      margin: 3px 0px 6px 5px;\n  }\n  .uv-rtl .uv-inner-section .uv-view .uv-ticket-reply .uv-btn-tag {\n      margin: 5px 0px 5px 5px;\n  }\n  .uv-rtl .uv-icon-down-light {\n      margin-left: 0px;\n      margin-right: 5px;\n  }\n  .uv-rtl .uv-icon-down-dark {\n      margin-left: 0px;\n      margin-right: 5px;\n  }\n  .uv-rtl .uv-inner-section .uv-view .uv-ticket-fixed-region {\n      left: 0px;\n      right: 305px;\n  }\n  .uv-rtl .uv-inner-section .uv-view .uv-ticket-fixed-region .uv-ticket-fixed-region-rt {\n      text-align: left;\n  }\n  .uv-rtl .uv-icon-next {\n      transform: scale(-1);\n      margin-right: 5px;\n      margin-left: 0px;\n  }\n  .uv-rtl .uv-icon-previous {\n      transform: scale(-1);\n      margin-right: 0px;\n      margin-left: 5px;\n  }\n  .uv-rtl .uv-inner-section .uv-aside .uv-aside-nav ul.uv-aside-list ul,\n  .uv-rtl .uv-inner-section .uv-aside .uv-aside-nav ul.uv-aside-custom ul {\n      margin-right: 20px;\n      margin-left: 0px;\n  }\n  .uv-rtl .uv-inner-section .uv-aside .uv-aside-brick {\n      padding-left: 10px;\n      padding-right: 0px;\n  }\n  .uv-rtl .uv-inner-section .uv-aside .uv-aside-brick .uv-aside-ticket-block span.uv-icon-replies,\n  .uv-rtl .uv-inner-section .uv-aside .uv-aside-brick .uv-aside-ticket-block span.uv-icon-timestamp,\n  .uv-rtl .uv-inner-section .uv-aside .uv-aside-brick .uv-aside-ticket-block span.uv-icon-channel {\n      margin-right: 0px;\n      margin-left: 3px;\n  }\n  .uv-rtl .uv-aside-select span.uv-aside-drop-icon {\n      background-position: left 10px center;\n      text-align: right;\n  }\n  .uv-rtl .uv-aside-select span.uv-aside-select-value {\n      padding-left: 25px;\n      padding-right: 0px;\n  }\n  .uv-rtl .uv-icon-remove-before {\n      margin-right: 0px;\n      margin-left: 5px;\n  }\n  .uv-rtl .uv-filter-view .uv-filter-paper .uv-app-section .uv-app-task-plank {\n      padding-left: 20px;\n      padding-right: 0px;\n  }\n  .uv-rtl .uv-inner-section .uv-aside .uv-aside-brick .uv-aside-customer-block .uv-aside-customer-info span.uv-customize {\n      right: auto;\n      left: -5px;\n  }\n  .uv-rtl .uv-inner-section .uv-aside .uv-aside-brick .uv-aside-customer-block .uv-aside-avatar {\n      margin-right: 0px;\n  }\n  .uv-rtl .uv-large-box-plank .uv-large-box-rt {\n      padding: 60px 560px 60px 60px;\n  }\n  .uv-rtl .uv-large-box-plank .uv-adjacent-center {\n      text-align: right;\n  }\n  .uv-rtl .uv-large-box-plank .uv-icon-mail-light {\n      margin-left: 7px;\n      margin-right: 0px;\n  }\n  .uv-rtl .uv-steppers {\n      margin: -175px -22px 0px 0px;\n  }\n  .uv-rtl .uv-large-box-plank .uv-cog-animate .uv-cog-animate-sm {\n      right: 110px;\n      left: 0px;\n  }\n  @media screen and (max-width: 1400px) {\n      .uv-rtl .uv-logo svg {\n          width: 44px;\n      }\n  }\n  @media screen and (min-width: 901px) and (max-width: 1400px) {\n      .uv-rtl .uv-paper {\n          padding-right: 60px;\n          padding-left: 0px;\n      }\n      .uv-rtl .uv-paper .uv-wrapper {\n          left: 0px;\n          right: 60px;\n      }\n      .uv-rtl .uv-inner-section .uv-view {\n          padding-right: 275px;\n      }\n      .uv-rtl .uv-inner-section .uv-view .uv-ticket-scroll-region,\n      .uv-rtl .uv-inner-section .uv-view .uv-ticket-fixed-region {\n          right: 275px;\n      }\n  }\n  @media screen and (max-width: 1200px) {\n      .uv-rtl .uv-large-box-plank .uv-large-box-rt {\n          position: static;\n          padding: 50px 20px;\n      }\n  }\n  @media screen and (max-width: 900px) {\n      .uv-rtl .uv-paper .uv-wrapper .uv-copyright {\n          text-align: center;\n      }\n      .uv-rtl .uv-paper .uv-container .uv-brick .uv-brick-container {\n          margin: 15px 10px;\n      }\n      .uv-rtl .uv-paper .uv-container .uv-brick .uv-brick-section {\n          text-align: center;\n      }\n      .uv-rtl .uv-inner-section .uv-view {\n          padding-right: 25px;\n      }\n      .uv-rtl .uv-pop-up-wide,\n      .uv-rtl .uv-pop-up-slim,\n      .uv-rtl .uv-onboard-wrapper {\n          width: 80%;\n          left: 10%;\n          right: 10%;\n          margin: 50px 0px;\n          height: auto;\n      }\n      .uv-rtl .uv-inner-section .uv-view .uv-ticket-fixed-region .uv-ticket-fixed-region-lt,\n      .uv-rtl .uv-inner-section .uv-view .uv-ticket-fixed-region .uv-ticket-fixed-region-rt {\n          width: 100%;\n          display: block;\n          text-align: center;\n      }\n  }\n  @media screen and (max-width: 500px) {\n      .uv-rtl .uv-paper .uv-container .uv-home-tabs {\n          position: static;\n          text-align: center;\n          margin: 15px;\n      }\n      .uv-rtl .uv-paper .uv-container .uv-home-tabs ul .uv-tab-manage,\n      .uv-rtl .uv-paper .uv-container .uv-home-tabs ul .uv-tab-activity {\n          border-radius: 3px;\n          margin: 5px 5px;\n      }\n      .uv-rtl .uv-inner-section .uv-action-bar .uv-action-bar-col-lt {\n          padding-left: 20px;\n          padding-right: 0px;\n      }\n      .uv-rtl .uv-inner-section .uv-action-bar .uv-dropdown {\n          margin: 5px 0px;\n      }\n      .uv-rtl .uv-inner-section .uv-action-bar .uv-dropdown .uv-dropdown-container {\n          text-align: right;\n      }\n      .uv-rtl .uv-field-workflow .uv-select,\n      .uv-rtl .uv-field-workflow .uv-field {\n          margin: 15px 0px 15px 10px;\n      }\n      .uv-rtl .uv-inner-section .uv-action-bar .uv-btn-stroke {\n          margin-left: 0px;\n          margin-right: 0px;\n          text-align: center;\n      }\n  }\n  \n  body {\n      /*word-break: break-word;*/\n  }\n  .uv-margin-0 {\n      margin: 0 !important;\n  }\n  .uv-notifications-wrapper {\n      z-index: 500;\n  }\n  .uv-tab-view {\n      display: none;\n  }\n  .uv-tab-view.uv-tab-view-active {\n      /*display: inline-block;*/\n      display: block;\n  }\n  .uv-pull-left {\n      float: left;\n  }\n  .uv-pull-right {\n      float: right;\n  }\n  .uv-text-center {\n      text-align: center;\n  }\n  .uv-text-left {\n      text-align: left;\n  }\n  .uv-text-right {\n      text-align: right;\n  }\n  .uv-text-danger {\n      color: #FC3B3C !important;\n  }\n  .uv-text-success {\n      color: #138F2D !important;\n  }\n  td.uv-last {\n      width: 150px;\n  }\n  .uv-field-block {\n      position: relative;\n  }\n  .uv-dropdown-list {\n      z-index: 10000;\n  }\n  .uv-field-block .uv-dropdown-list.uv-bottom-left, .uv-field-block .uv-dropdown-list.uv-bottom-right  {\n      top: 50px;\n  }\n  .uv-field-block .uv-dropdown-list.uv-top-left, .uv-field-block .uv-dropdown-list.uv-top-right  {\n      bottom: 50px;\n  }\n  .uv-dropdown-open {\n      position: relative;\n  }\n  .uv-dropdown-open.new .uv-dropdown-list  {\n      right: 5px;\n  }\n  .uv-dropdown-list ul.uv-search-list {\n      background: #FAFAFA;\n      max-height: 224px;\n      overflow-y: auto;\n  }\n  .uv-dropdown-list ul.uv-search-list li {\n      color: #333333;\n      border-top: solid 1px #D3D3D3;\n      padding: 15px 20px;\n  }\n  .uv-aside-select {\n      position: relative;\n  }\n  .uv-aside-select .uv-dropdown-list.uv-bottom-left, .uv-aside-select .uv-dropdown-list.uv-bottom-right {\n      top: 25px;\n  }\n  .uv-aside-select .uv-dropdown-list.uv-top-left, .uv-aside-select .uv-dropdown-list.uv-top-right {\n      bottom: 45px;\n  }\n  .uv-tab-ellipsis .uv-dropdown-list.uv-bottom-left, .uv-tab-ellipsis .uv-dropdown-list.uv-bottom-right {\n      top: 30px;\n  }\n  .uv-dropdown.reply .uv-dropdown-btn-active {\n      border: none !important;\n  }\n  .uv-dropdown.reply .uv-dropdown-list {\n      width: 220px;\n      bottom: 47px;\n  }\n  .uv-dropdown.reply .uv-btn[disabled=\"disabled\"] {\n      cursor: not-allowed;\n      background: #B1B1AE;\n  }\n  .uv-field-block#agent-filter .uv-dropdown-container, .uv-field-block#customer-filter .uv-dropdown-container {\n      padding: 10px 20px 10px 20px;\n  }\n  .uv-filter-view .uv-loader {\n      position: absolute;\n      transform: scale(0.5);\n      top: 22px;\n      right: 65px;\n  }\n  .bootstrap-datetimepicker-widget.dropdown-menu.bottom {\n      top: 56px !important;\n  }\n  .uv-filter-view .bootstrap-datetimepicker-widget.dropdown-menu {\n      margin: 2px -2px;\n      padding: 2px;\n      width: 94%;\n  }\n  .uv-filtered-tags .uv-btn-small {\n      margin: 3px 3px 3px 0px;\n  }\n  .uv-filtered-tags .uv-btn-small.default, .uv-filtered-tags .uv-btn-small.default:hover {\n      background-color: #6F6F6F;\n  }\n  .bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover {\n      background-color: #7c70f4;\n      color: #ffffff;\n      text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n  }\n  .bootstrap-datetimepicker-widget table td, .bootstrap-datetimepicker-widget table th {\n      text-align: center;\n      border-radius: 2px;\n  }\n  .btn-primary {\n      background-color: #7C70F4;\n      border: none;\n      color: #fff;\n  }\n  .btn {\n      border: none;\n      border-radius: 3px;\n  }\n  .btn-primary:hover{\n      background-color: #BA81F1;\n  }\n  .btn:active{\n      box-shadow: none;\n  }\n  .uv-width-70 {\n      width: 70%;\n  }\n  .uv-width-100 {\n      width: 100%;\n  }\n  .uv-text-success{\n      color: #218B36;\n  }\n  .uv-text-danger{\n      color: #FF5656;\n  }\n  .uv-table {\n      margin-top: 0;\n  }\n  .uv-table table {\n      border-top: none;\n  }\n  .uv-table.uv-list-view table tbody td.uv-width-200 {\n      width: 200px;\n      min-width: 200px;\n  }\n  .uv-table.uv-list-view table tbody td.uv-width-300 {\n      width: 300px;\n      min-width: 300px;\n  }\n  .uv-aside-nav li {\n      overflow: hidden;\n      word-break: break-all;\n  }\n  .uv-inner-section .uv-aside.uv-article-view .uv-aside-nav ul ul li a{\n      padding: 6px 0px 6px 40px;\n      border: 0px;\n  }\n  .uv-inner-section .uv-aside.uv-article-view .uv-aside-nav ul ul li:last-child a {\n      border: 0px;\n  }\n  .uv-transition{\n      transition: .4s cubic-bezier(.41,.01,.37,1);\n  }\n  .uv-no-height{\n      height: 0px !important;\n      overflow: hidden;\n  }\n  .uv-cursor{\n      cursor: pointer;\n  }\n  label.uv-margin-left-17 {\n      margin-left: 17px;\n  }\n  .uv-table.uv-list-view table tbody td.uv-last-170{\n      width: 170px;\n  }\n  tbody.ui-sortable tr{\n      background: #fff;\n      border-bottom: solid 1px #D3D3D3;\n  }\n  tbody.ui-sortable tr td{\n      border-bottom: none;\n  }\n  .uv-color-a{\n      color: #2750C4;\n  }\n  .uv-text-bold{\n      font-weight:bold;\n  }\n  .uv-folders a ul li p{\n      margin: 5px 0px;\n      font-size: 16px;\n  }\n  .uv-inner-section .uv-folders.uv-aside .uv-aside-brick {\n      padding-top: 0px !important;\n      padding-left: 15px !important;\n  }\n  .uv-inner-section .uv-aside.uv-category .uv-aside-brick .uv-aside-customer-block .uv-aside-avatar {\n      width: 45px;\n  }\n  .uv-inner-section .uv-aside.uv-category .uv-aside-brick .uv-aside-customer-block .uv-aside-customer-info span {\n      font-size: 15px;\n  }\n  .uv-inner-section .uv-aside.uv-category .uv-aside-brick .uv-aside-customer-block .uv-aside-customer-info span.uv-customize{\n      top: 10px;\n  }\n  .uv-category .uv-aside-brick{\n      padding-left: 10px;\n  }\n  textarea.uv-field {\n      font-size: 14px;\n  }\n  .uv-inner-section .uv-aside .uv-main-info-block .uv-aside-brick div.uv-full-width.uv-aside-customer-info{\n      width: 100%;\n  }\n  .uv-pop-up-overlay {\n      display: none;\n  }\n  .uv-field-message {\n      color: #FF5656 !important;\n  }\n  .uv-thread-action {\n      position: relative;\n      text-align: left;\n  }\n  .uv-no-error-success-icon .uv-field-error-icon, .uv-no-error-success-icon .uv-field-success-icon  {\n      display: none !important;\n  }\n  .message img {\n      max-width: 100%;\n  }\n  .message pre {\n      white-space: normal;\n  }\n  .uv-icon-ellipsis.uv-ellipsis-mirror {\n      -webkit-transform: rotate(90deg);\n      -moz-transform: rotate(90deg);\n      -ms-transform: rotate(90deg);\n      -o-transform: rotate(90deg);\n      transform: rotate(90deg);\n      cursor: pointer;\n      margin-top: 10px;\n      margin-bottom: 10px;\n      opacity: 0.5;\n      border: 1px solid #D3D3D3;\n      border-radius: 1px;\n  }\n  .uv-inner-section .uv-view .uv-ticket-main:hover .uv-icon-ellipsis.uv-ellipsis-mirror {\n      opacity: 0.5;\n  }\n  .uv-icon-ellipsis.uv-ellipsis-mirror:hover {\n      opacity: 1 !important;\n      border-color:  #333333;\n  }\n  .uv-ticket-main .uv-dropdown-list {\n      left: 1px;\n  }\n  .uv-tooltip {\n      padding: 2px 10px;\n      position: absolute;\n      background: #9E9E9E;\n      z-index: 10000;\n      color: #fff;\n      border-radius: 3px;\n      text-transform: uppercase;\n      font-size: 13px;\n      font-weight: 700;\n      white-space: nowrap;\n  }\n  #article-edit .uv-element-block, #article-edit .uv-element-block-textarea{\n      width: 97%;\n  }\n  #article-edit .uv-element-block .uv-field{\n      width: 100%;\n  }\n  #article-edit .uv-element-block .uv-field.uv-field-error{\n      width: calc(100% - 31px);\n      transition: none;\n  }\n  *[data-id=\"article-edit\"] .uv-element-block, *[data-id=\"article-edit\"] .uv-element-block-textarea{\n      width: 97%;\n  }\n  *[data-id=\"article-edit\"] .uv-element-block .uv-field{\n      width: 100%;\n  }\n  *[data-id=\"article-edit\"] .uv-element-block .uv-field {\n      width: calc(100% - 31px);\n      transition: none;\n  }\n  .uv-article .uv-action-buttons{\n      margin: 0px;\n  }\n  .uv-action-buttons .uv-btn-action {\n      margin-left: 5px;\n  }\n  .mce-toolbar-grp .uv-loader {\n      position: relative;\n      float: right;\n      transform: scale(0.5);\n      right: 50px;\n      bottom: 23px;\n  }\n  .uv-inner-section .uv-filter-view:not([style=\"right: 0px;\"]) {\n    visibility: hidden;\n  }\n  .uv-no-pointer-events {\n    pointer-events: none;\n  }\n  .uv-auto-pointer-events {\n    pointer-events: auto;\n  }\n  br[data-mce-bogus=\"1\"] {\n    display:none;\n  }\n  .gr-top-z-index.gr-top-zero {\n    position: fixed;\n  }\n  @media screen and (max-width: 1400px) {\n      .uv-inner-section .uv-aside .uv-aside-brick .uv-aside-customer-block .uv-aside-customer-info {\n          width: 148px;\n      }\n  }\n  \n  .uv-notifications-wrapper {\n      z-index: 10;\n  }\n  .uv-sl-twitter {\n      width: 18px;\n      height: 18px;\n      display: inline-block;\n      vertical-align: middle;\n      background-image: url(\"../../bundles/webkuldefault/images/uvdesk-social-sprite.svg\");\n      margin-right: 5px;\n      background-position: 0px -19px;\n  }\n  .uv-sl-facebook {\n      width: 18px;\n      height: 18px;\n      display: inline-block;\n      vertical-align: middle;\n      background-image: url(\"../../bundles/webkuldefault/images/uvdesk-social-sprite.svg\");\n      margin-right: 5px;\n      background-position: 0px 0px;\n  }\n  \n  /* RTL Changes */\n  .uv-rtl .uv-dropdown-list.uv-bottom-right {\n      right: unset;\n      left: 5px;\n  }\n  \n  .uv-rtl .uv-dropdown-list.uv-top-left {\n      left: unset;\n      right: 5px;\n  }\n  \n  .uv-rtl .uv-sidebar .uv-soft-top .uv-company-logo {\n      left: unset;\n      right: 0px;\n  }\n  \n  .uv-rtl .uv-inner-section .uv-filter-view:not([style=\"right: 0px;\"]) {\n      visibility: unset;\n  }\n  \n  .uv-rtl .uv-inner-section .uv-filter-view:not([style=\"left: 0px;\"]) {\n      visibility: hidden;\n  }\n  \n  .uv-rtl .uv-inner-section .uv-view .uv-ticket-action-bar .uv-ticket-action-bar-rt {\n      text-align: left;\n  }\n  \n  .uv-rtl .uv-ticket-action-bar-fixed {\n      margin-right: -17px;\n  }\n  \n  .uv-rtl .uv-ticket-action-bar-fixed .uv-ticket-action-bar-rt {\n      right: unset;\n      left: 0px;\n  }\n  \n  .uv-rtl .uv-workflow-hr-plank {\n      text-align: left;\n  }\n  \n  .uv-rtl .uv-agent-lt {\n      float: right;\n      margin-left: 10px;\n      margin-right: 0px;\n  }\n  \n  .uv-rtl .uv-dropdown .uv-dropdown-btn {\n      padding: 8px 10px 8px 27px !important;\n  }\n  \n  .uv-rtl span.uv-sorting.descend {\n      right: unset;\n      left: 0px;\n  }\n  \n  .uv-rtl .uv-inner-section .uv-aside .uv-aside-head .uv-aside-back {\n      margin-left: 10px;\n  }\n  \n  .uv-rtl .uv-inner-section .uv-aside .uv-aside-brick {\n      padding-left: 10px !important;\n      padding-right: 15px !important;\n  }\n  \n  .uv-rtl .uv-app-screen .uv-app-list-channels .uv-task-list .uv-app-list-brick .uv-app-list-brick-lt {\n      border-radius: 3px;\n  }\n  \n  .uv-rtl .uv-app-screen .uv-app-list-channels .uv-app-list-brick .uv-app-list-brick-lt {\n      border-left: unset;\n      border-top-left-radius: unset;\n      border-bottom-left-radius: unset;\n  }\n  \n  .uv-rtl .uv-app-screen .uv-app-list-channels .uv-app-list-brick .uv-app-list-brick-rt {\n      border-right: unset;\n      border-left: 1px solid #D3D3D3;\n      border-radius: 3px;\n      border-top-right-radius: unset;\n      border-bottom-right-radius: unset;\n  }\n  \n  .uv-rtl .uv-search-inline.uv-margin-right-15 {\n      margin-right: unset;\n      margin-left: 15px;\n  }\n  \n  .uv-rtl .uv-pull-right {\n      float: left;\n  }\n  \n  .uv-rtl .uv-report-wrapper {\n      padding-right: unset;\n      padding-left: 20px;\n  }\n  \n  .uv-rtl .uv-report-chart-col-rt .uv-pannel-body {\n      padding: 0 20px 0 0;\n  }\n  \n  .uv-rtl .uv-action-bar label {\n      display: inline-block;\n  }\n  \n  .uv-rtl .bootstrap-datetimepicker-widget.dropdown-menu {\n      left: auto !important;\n      right: 0px !important;\n  }\n  \n  .uv-rtl .bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {\n      left: unset;\n      right: 7px;\n  }\n  \n  .uv-rtl .bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {\n      left: unset;\n      right: 8px;\n  }\n  \n  .uv-rtl a.uv-installed-apps {\n      background-image: -webkit-linear-gradient(0deg, #3F51B5 50%, #43A047 100%);\n      background-image: -moz-linear-gradient(0deg, #3F51B5 50%, #43A047 100%);\n      background-image: -ms-linear-gradient(0deg, #3F51B5 50%, #43A047 100%);\n  }\n  \n  .uv-rtl .uv-inner-section .uv-view .uv-ticket-strip span {\n      display: inline;\n  }\n  \n  .uv-rtl .uv-inner-section .uv-view .uv-ticket-strip > span {\n      display: inline-block;\n      direction: ltr;\n  }\n  \n  .uv-rtl .uv-field-workflow .uv-select, .uv-rtl .uv-field-workflow .uv-field {\n      margin: 15px 0px 15px 10px;\n  }\n  \n  .uv-rtl #saved-reply-form .uv-margin-right-15, .uv-rtl #template-form  .uv-margin-right-15 {\n      margin-right: unset;\n      margin-left: 15px;\n  }\n  \n  .uv-rtl #links .remove-link {\n      margin-left: unset;\n      margin-right: 10px;\n  }\n  \n  .uv-rtl .controls {\n      margin-right: unset;\n      margin-left: 20px;\n  }\n  \n  .uv-rtl .cf-actions {\n      right: unset;\n      left: 5px;\n  }\n  \n  .uv-rtl .list-group-item>span:first-child span {\n      left: 0px;\n      right: 15px;\n  }\n  \n  .uv-rtl .uv-plan-info-col-lt {\n      float: right;\n  }\n  \n  .uv-rtl .uv-plan-info-col-rt {\n      float: right;\n      margin-right: unset;\n      margin-left: 30px;\n  }\n  \n  .uv-rtl .uv-plan-wrapper .uv-plan-item {\n      float: right;\n      margin-right: unset;\n      margin-left: 20px;\n  }\n  .uv-app-glyph-calendar {\n      width: 20px;\n      height: 20px;\n      background-position: center center;\n      background-repeat: no-repeat;\n      cursor: pointer;\n      display: inline-block;\n      vertical-align: middle;\n      margin: 5px 0px 5px 10px;\n      background-image: url(\"../../bundles/webkuldefault/images/app-glyph-google-calendar.svg\");\n  }\n  body {\n      position: static !important;\n  }\n  #google_translate_element {\n      display: inline-block;\n      margin-right: 20px;\n      vertical-align: middle;\n  }\n  .uv-rtl #google_translate_element {\n      margin-right: 0px;\n      margin-left: 25px;\n  }\n  #google_translate_element .goog-te-gadget-simple {\n      border: solid 1px #B1B1AE !important;\n      padding: 4px;\n      border-radius: 3px;\n  }\n  .uv-checkbox input[type=\"checkbox\"] {\n      cursor: pointer;\n  }\n  .uv-file-label-view:before {\n    background-image: url(\"../../bundles/webkuldefault/images/icon-attachment.svg\");\n  }\n  .uv-pop-up-body .picker-dialog {\n      z-index: 5002;\n  }\n  .bootstrap-datetimepicker-widget a[data-action] {\n      width: 100%;\n  }\n  .uv-whats-new {\n    width: 26px;\n    height: 26px;\n    display: inline-block;\n    vertical-align: middle;\n    background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite.svg\");\n    background-position: -42px -397px;\n    cursor: pointer;\n    position: relative;\n  }\n  @media screen and (max-width: 1100px) {\n      #google_translate_element .goog-te-gadget-simple {\n          width: 26px;\n          overflow: hidden;\n          font-size: 0px;\n          padding: 3px 2px 2px 2px;\n      }\n      .goog-te-gadget-simple img{\n          margin: 0;\n      }\n  }\n  .uv-pagination .uv-page-active,\n  .uv-pagination .uv-page-active:hover {\n      background-color: transparent !important;\n      border: solid 1px transparent !important;\n  }\n  .uv-app-wrapper {\n      border-top: 1px solid transparent;\n  }\n  .uv-app-wrapper:hover {\n      border-top: 1px solid rgba(148, 148, 148, 0.1);\n      box-shadow: 0px 18px 20px 0px rgba(0, 0, 0, 0.1), 0px 2px 6px 0px rgba(0, 0, 0, 0.11);\n  }\n  .uv-btn-stroke.preview-article:disabled, .uv-btn-stroke.preview-article[disabled] {\n      background: #B1B1AE;\n      cursor: not-allowed;\n      color: white;\n  }\n  .uv-channel-disqus-engage {\n      background-position: -57px -18px;\n  }\n  .uv-channel-ebay {\n      background-position: -76px -18px;\n  }\n  .uv-channel-magento {\n    background-position: -95px -36px;\n  }\n  .uv-channel-wordpress {\n    background-position: -57px -36px;\n  }\n  .uv-channel-opencart {\n    background-position: -38px -36px;\n  }\n  .uv-channel-prestashop {\n    background-position: 0px -54px;\n  }\n  .uv-channel-joomla {\n      background-position: -19px -36px;\n  }\n  .uv-channel-shopify {\n      background-position: -75px -36px;\n  }\n  .uv-channel-youtube {\n      background-position: -57px -54px;\n  }\n  \n  /* Sidebar overflow fix */\n  .uv-sidebar.uv-sidebar-active {\n      overflow: visible;\n  }\n  \n  .uv-sidebar ul.uv-menubar:not(.uv-language) {\n      overflow: hidden;\n  }\n  .uv-paper span.uv-mail-status {\n      width: 16px;\n      height: 16px;\n      background: url('../../bundles/webkuldefault/images/mail-status.png');\n      cursor: help;\n      display: inline-block;\n      margin-right: 5px;\n  }\n  .uv-paper .uv-notification-message span.uv-mail-status {\n      float: left;\n  }\n  .uv-paper .uv-mail-status.uv-mail-processed {\n      background-position: -19px 0;\n  }        \n  .uv-paper .uv-mail-status.uv-mail-open,.uv-paper .uv-mail-status.uv-mail-delivered,.uv-paper .uv-mail-status.uv-mail-click {\n      background-position: -37px 0;\n  }\n  .uv-paper .uv-mail-status.uv-mail-spam,.uv-paper .uv-mail-status.uv-mail-deferred,.uv-paper .uv-mail-spamreport {\n      background-position: -55px 0;\n  }\n  .uv-paper .uv-mail-status.uv-mail-bounce,.uv-paper .uv-mail-status.uv-mail-dropped {\n      background-position: -73px 0;\n  }\n  /*!\n   * Datetimepicker for Bootstrap 3\n   * version : 4.17.42\n   * https://github.com/Eonasdan/bootstrap-datetimepicker/\n   */.bootstrap-datetimepicker-widget,.dropdown-menu{list-style:none}@media (min-width:768px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:992px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:1200px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}.bootstrap-datetimepicker-widget.dropdown-menu:after,.bootstrap-datetimepicker-widget.dropdown-menu:before{content:'';display:inline-block;position:absolute}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,.2);top:-7px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after{border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;top:-6px;left:8px}.bootstrap-datetimepicker-widget.dropdown-menu.top:before{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #ccc;border-top-color:rgba(0,0,0,.2);bottom:-7px;left:6px}.bootstrap-datetimepicker-widget.dropdown-menu.top:after{border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid #fff;bottom:-6px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after{left:auto;right:7px}.bootstrap-datetimepicker-widget .list-unstyled{margin:0}.bootstrap-datetimepicker-widget a[data-action]{padding:6px 0}.bootstrap-datetimepicker-widget a[data-action]:active{box-shadow:none}.bootstrap-datetimepicker-widget .timepicker-hour,.bootstrap-datetimepicker-widget .timepicker-minute,.bootstrap-datetimepicker-widget .timepicker-second{width:54px;font-weight:700;font-size:1.2em;margin:0}.bootstrap-datetimepicker-widget button[data-action]{padding:6px}.bootstrap-datetimepicker-widget .btn[data-action=incrementHours]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:\"Increment Hours\"}.bootstrap-datetimepicker-widget .btn[data-action=incrementMinutes]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:\"Increment Minutes\"}.bootstrap-datetimepicker-widget .btn[data-action=decrementHours]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:\"Decrement Hours\"}.bootstrap-datetimepicker-widget .btn[data-action=decrementMinutes]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:\"Decrement Minutes\"}.bootstrap-datetimepicker-widget .btn[data-action=showHours]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:\"Show Hours\"}.bootstrap-datetimepicker-widget .btn[data-action=showMinutes]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:\"Show Minutes\"}.bootstrap-datetimepicker-widget .btn[data-action=togglePeriod]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:\"Toggle AM/PM\"}.bootstrap-datetimepicker-widget .btn[data-action=clear]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:\"Clear the picker\"}.bootstrap-datetimepicker-widget .btn[data-action=today]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:\"Set the date to today\"}.bootstrap-datetimepicker-widget .picker-switch{text-align:center}.bootstrap-datetimepicker-widget .picker-switch::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:\"Toggle Date and Time Screens\"}.bootstrap-datetimepicker-widget .picker-switch td{padding:0;margin:0;height:auto;width:auto;line-height:inherit}.bootstrap-datetimepicker-widget table{width:100%;margin:0}.bootstrap-datetimepicker-widget table td,.bootstrap-datetimepicker-widget table th{text-align:center;border-radius:4px}.bootstrap-datetimepicker-widget table th{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table th.picker-switch{width:145px}.bootstrap-datetimepicker-widget table th.disabled,.bootstrap-datetimepicker-widget table th.disabled:hover{background:0 0;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget table th.prev::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:\"Previous Month\"}.bootstrap-datetimepicker-widget table th.next::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:\"Next Month\"}.bootstrap-datetimepicker-widget table thead tr:first-child th{cursor:pointer}.bootstrap-datetimepicker-widget table thead tr:first-child th:hover{background:#eee}.bootstrap-datetimepicker-widget table td{height:54px;line-height:54px;width:54px}.bootstrap-datetimepicker-widget table td.cw{font-size:.8em;height:20px;line-height:20px;color:#777}.bootstrap-datetimepicker-widget table td.day{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table td.day:hover,.bootstrap-datetimepicker-widget table td.hour:hover,.bootstrap-datetimepicker-widget table td.minute:hover,.bootstrap-datetimepicker-widget table td.second:hover{background:#eee;cursor:pointer}.bootstrap-datetimepicker-widget table td.today{position:relative}.bootstrap-datetimepicker-widget table td.today:before{content:'';display:inline-block;border:solid transparent;border-width:0 0 7px 7px;border-bottom-color:#337ab7;border-top-color:rgba(0,0,0,.2);position:absolute;bottom:4px;right:4px}.bootstrap-datetimepicker-widget table td.active,.bootstrap-datetimepicker-widget table td.active:hover{opacity:1;background-color:#337ab7;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget table td.active.today:before{border-bottom-color:#fff}.bootstrap-datetimepicker-widget table td.disabled,.bootstrap-datetimepicker-widget table td.disabled:hover{background:0 0;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget table td span.old{color:#777}.bootstrap-datetimepicker-widget table td span.disabled,.bootstrap-datetimepicker-widget table td span.disabled:hover{background:0 0;color:#777;cursor:not-allowed}.btn,.input-group.date .input-group-addon{cursor:pointer}.bootstrap-datetimepicker-widget.usetwentyfour td.hour{height:27px;line-height:27px}.bootstrap-datetimepicker-widget.wider{width:21em}.bootstrap-datetimepicker-widget .datepicker-decades .decade{line-height:1.8em!important}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.bootstrap-datetimepicker-widget table td span.day,.bootstrap-datetimepicker-widget table td span.decade,.bootstrap-datetimepicker-widget table td span.month,.bootstrap-datetimepicker-widget table td span.year{display:inline-block;width:54px;height:54px;line-height:54px;margin:2px 1.5px;cursor:pointer;border-radius:4px}.bootstrap-datetimepicker-widget.dropdown-menu::after,.bootstrap-datetimepicker-widget.dropdown-menu::before{content:\"\";display:inline-block;position:absolute}.bootstrap-datetimepicker-widget.dropdown-menu{margin:2px 0;padding:4px;width:19em}.dropdown-menu{background-clip:padding-box;background-color:#fff;border:1px solid rgba(0,0,0,.15);border-radius:4px;box-shadow:0 6px 12px rgba(0,0,0,.176);display:none;float:left;font-size:14px;left:0;margin:2px 0 0;min-width:160px;padding:5px 0;position:absolute;text-align:left;top:100%;z-index:1000}.collapse{display:none}.collapse.in{display:block}.row{margin-left:-15px;margin-right:-15px}.col-md-6{width:50%}.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{min-height:1px;padding-left:15px;padding-right:15px;position:relative}.datepicker table,.timepicker table{background-color:transparent;border-collapse:collapse;border-spacing:0}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px 7px}.bootstrap-datetimepicker-widget table td.new,.bootstrap-datetimepicker-widget table td.old{color:#777}.btn{-moz-user-select:none;background-image:none;border:1px solid transparent;border-radius:4px;display:inline-block;font-size:14px;font-weight:400;line-height:1.42857;margin-bottom:0;padding:6px 12px;text-align:center;touch-action:manipulation;vertical-align:middle;white-space:nowrap}.datepicker a{color:#337ab7;text-decoration:none}.bootstrap-datetimepicker-widget .list-unstyled{color: #333333 !important;font-size: 15px !important;padding:0 !important;list-style:none}.bootstrap-datetimepicker-widget table td span.active{background-color:#7c70f4;color:#fff}.uv-cld-icon-clock,.uv-cld-icon-remove{margin-bottom:10px;margin-top:10px}\n  /*!\n   * Viewer v0.5.0\n   * https://github.com/fengyuanchen/viewer\n   *\n   * Copyright (c) 2015-2016 Fengyuan Chen\n   * Released under the MIT license\n   *\n   * Date: 2016-01-21T09:59:45.429Z\n   */\n  .viewer-zoom-in:before,\n  .viewer-zoom-out:before,\n  .viewer-one-to-one:before,\n  .viewer-reset:before,\n  .viewer-prev:before,\n  .viewer-play:before,\n  .viewer-next:before,\n  .viewer-rotate-left:before,\n  .viewer-rotate-right:before,\n  .viewer-flip-horizontal:before,\n  .viewer-flip-vertical:before,\n  .viewer-fullscreen:before,\n  .viewer-fullscreen-exit:before,\n  .viewer-close:before {\n    font-size: 0;\n    line-height: 0;\n  \n    display: block;\n  \n    width: 20px;\n    height: 20px;\n  \n    color: transparent; \n    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAARgAAAAUCAYAAABWOyJDAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAQPSURBVHic7Zs/iFxVFMa/0U2UaJGksUgnIVhYxVhpjDbZCBmLdAYECxsRFBTUamcXUiSNncgKQbSxsxH8gzAP3FU2jY0kKKJNiiiIghFlccnP4p3nPCdv3p9778vsLOcHB2bfveeb7955c3jvvNkBIMdxnD64a94GHMfZu3iBcRynN7zAOI7TG15gHCeeNUkr8zaxG2lbYDYsdgMbktBsP03jdQwljSXdtBhLOmtjowC9Mg9L+knSlcD8TNKpSA9lBpK2JF2VdDSR5n5J64m0qli399hNFMUlpshQii5jbXTbHGviB0nLNeNDSd9VO4A2UdB2fp+x0eCnaXxWXGA2X0au/3HgN9P4LFCjIANOJdrLr0zzZ+BEpNYDwKbpnQMeAw4m8HjQtM6Z9qa917zPQwFr3M5KgA6J5rTJCdFZJj9/lyvGhsDvwFNVuV2MhhjrK6b9bFiE+j1r87eBl4HDwCF7/U/k+ofAX5b/EXBv5JoLMuILzf3Ap6Z3EzgdqHMCuF7hcQf4HDgeoHnccncqdK/TvSDWffFXI/exICY/xZyqc6XLWF1UFZna4gJ7q8BsRvgd2/xXpo6P+D9dfT7PpECtA3cnWPM0GXGFZh/wgWltA+cDNC7X+AP4GzjZQe+k5dRxuYPeiuXU7e1qwLpDz7dFjXKRaSwuMLvAlG8zZlG+YmiK1HoFqT7wP2z+4Q45TfEGcMt01xLoNZEBTwRqD4BLpnMLeC1A41UmVxsXgXeBayV/Wx20rpTyrpnWRft7p6O/FdqzGrDukPNtkaMoMo3FBdBSQMOnYBCReyf05s126fU9ytfX98+mY54Kxnp7S9K3kj6U9KYdG0h6UdLbkh7poFXMfUnSOyVvL0h6VtIXHbS6nOP+s/Zm9mvyXW1uuC9ohZ72E9uDmXWLJOB1GxsH+DxPftsB8B6wlGDN02TAkxG6+4D3TWsbeC5CS8CDFce+AW500LhhOW2020TRjK3b21HEmgti9m0RonxbdMZeVzV+/4tF3cBpP7E9mKHNL5q8h5g0eYsCMQz0epq8gQrwMXAgcs0FGXGFRcB9wCemF9PkbYqM/Bas7fxLwNeJPdTdpo4itQti8lPMqTpXuozVRVXPpbHI3KkNTB1NfkL81j2mvhDp91HgV9MKuRIqrykj3WPq4rHyL+axj8/qGPmTqi6F9YDlHOvJU6oYcTsh/TYSzWmTE6JT19CtLTJt32D6CmHe0eQn1O8z5AXgT4sx4Vcu0/EQecMydB8z0hUWkTd2t4CrwNEePqMBcAR4mrBbwyXLPWJa8zrXmmLEhNBmfpkuY2102xxrih+pb+ieAb6vGhuA97UcJ5KR8gZ77K+99xxeYBzH6Q3/Z0fHcXrDC4zjOL3hBcZxnN74F+zlvXFWXF9PAAAAAElFTkSuQmCC');\n    background-repeat: no-repeat;\n  }\n  \n  .viewer-zoom-in:before {\n    content: 'Zoom In';\n  \n    background-position: 0 0;\n  }\n  \n  .viewer-zoom-out:before {\n    content: 'Zoom Out';\n  \n    background-position: -20px 0;\n  }\n  \n  .viewer-one-to-one:before {\n    content: 'One to One';\n  \n    background-position: -40px 0;\n  }\n  \n  .viewer-reset:before {\n    content: 'Reset';\n  \n    background-position: -60px 0;\n  }\n  \n  .viewer-prev:before {\n    content: 'Previous';\n  \n    background-position: -80px 0;\n  }\n  \n  .viewer-play:before {\n    content: 'Play';\n  \n    background-position: -100px 0;\n  }\n  \n  .viewer-next:before {\n    content: 'Next';\n  \n    background-position: -120px 0;\n  }\n  \n  .viewer-rotate-left:before {\n    content: 'Rotate Left';\n  \n    background-position: -140px 0;\n  }\n  \n  .viewer-rotate-right:before {\n    content: 'Rotate Right';\n  \n    background-position: -160px 0;\n  }\n  \n  .viewer-flip-horizontal:before {\n    content: 'Flip Horizontal';\n  \n    background-position: -180px 0;\n  }\n  \n  .viewer-flip-vertical:before {\n    content: 'Flip Vertical';\n  \n    background-position: -200px 0;\n  }\n  \n  .viewer-fullscreen:before {\n    content: 'Enter Full Screen';\n  \n    background-position: -220px 0;\n  }\n  \n  .viewer-fullscreen-exit:before {\n    content: 'Exit Full Screen';\n  \n    background-position: -240px 0;\n  }\n  \n  .viewer-close:before {\n    content: 'Close';\n  \n    background-position: -260px 0;\n  }\n  \n  .viewer-container {\n    font-size: 0;\n    line-height: 0;\n  \n    position: absolute;\n    top: 0;\n    right: 0;\n    bottom: 0;\n    left: 0;\n  \n    overflow: hidden;\n  \n    -webkit-user-select: none;\n       -moz-user-select: none;\n        -ms-user-select: none;\n            user-select: none;\n  \n    background-color: #000;\n    background-color: rgba(0, 0, 0, .5);\n  \n    direction: ltr !important;\n    -ms-touch-action: none;\n        touch-action: none;\n    -webkit-tap-highlight-color: transparent;\n    -webkit-touch-callout: none;\n  }\n  .viewer-container::-moz-selection,\n  .viewer-container *::-moz-selection {\n    background-color: transparent;\n  }\n  .viewer-container::selection,\n  .viewer-container *::selection {\n    background-color: transparent;\n  }\n  .viewer-container img {\n    display: block;\n  \n    width: 100%;\n    min-width: 0 !important;\n    max-width: none !important;\n    height: auto;\n    min-height: 0 !important;\n    max-height: none !important;\n  }\n  \n  .viewer-canvas {\n    position: absolute;\n    top: 0;\n    right: 0;\n    bottom: 0;\n    left: 0;\n  \n    overflow: hidden;\n  }\n  .viewer-canvas > img {\n    width: auto;\n    max-width: 90% !important;\n    height: auto;\n    margin: 15px auto;\n  }\n  \n  .viewer-footer {\n    position: absolute;\n    right: 0;\n    bottom: 0;\n    left: 0;\n  \n    overflow: hidden;\n  \n    text-align: center;\n  }\n  \n  .viewer-navbar {\n    overflow: hidden;\n  \n    background-color: #000;\n    background-color: rgba(0, 0, 0, .5);\n  }\n  \n  .viewer-list {\n    overflow: hidden;\n  \n    -webkit-box-sizing: content-box;\n       -moz-box-sizing: content-box;\n            box-sizing: content-box;\n    height: 50px;\n    margin: 0;\n    padding: 1px 0;\n    margin: 0 auto;\n    display: inline-block;\n  }\n  .viewer-list > li {\n    margin-right: 10px;  \n    font-size: 0;\n    line-height: 0;\n  \n    float: left;\n    overflow: hidden;\n  \n    width: 30px;\n    height: 50px;\n  \n    cursor: pointer; \n  \n    opacity: .5;\n    color: transparent;\n  \n    filter: alpha(opacity=50);\n  }\n  .viewer-list > li + li {\n    margin-left: 1px;\n  }\n  .viewer-list > .viewer-active {\n    opacity: 1;\n  \n    filter: alpha(opacity=100);\n  }\n  \n  .viewer-player {\n    position: absolute;\n    top: 0;\n    right: 0;\n    bottom: 0;\n    left: 0;\n  \n    display: none;\n  \n    cursor: none; \n  \n    background-color: #000;\n  }\n  .viewer-player > img {\n    position: absolute;\n    top: 0;\n    left: 0;\n  }\n  \n  .viewer-toolbar {\n    overflow: hidden;\n  \n    width: 280px;\n    margin: 0 auto 5px;\n    padding: 3px 0;\n  }\n  .viewer-toolbar > li {\n    float: left;\n    overflow: hidden;\n  \n    width: 24px;\n    height: 24px;\n  \n    cursor: pointer; \n  \n    border-radius: 50%;\n    background-color: #000;\n    background-color: rgba(0, 0, 0, .5);\n  }\n  .viewer-toolbar > li:hover {\n    background-color: #000;\n    background-color: rgba(0, 0, 0, .8);\n  }\n  .viewer-toolbar > li:before {\n    margin: 2px;\n  }\n  .viewer-toolbar > li + li {\n    margin-left: 1px;\n  }\n  .viewer-toolbar > .viewer-play {\n    width: 30px;\n    height: 30px;\n    margin-top: -3px;\n    margin-bottom: -3px;\n  }\n  .viewer-toolbar > .viewer-play:before {\n    margin: 5px;\n  }\n  \n  .viewer-tooltip {\n    font-size: 12px;\n    line-height: 20px;\n  \n    position: absolute;\n    top: 50%;\n    left: 50%;\n  \n    display: none;\n  \n    width: 50px;\n    height: 20px;\n    margin-top: -10px;\n    margin-left: -25px;\n  \n    text-align: center;\n  \n    color: #fff;\n    border-radius: 10px;\n    background-color: #000;\n    background-color: rgba(0, 0, 0, .8);\n  }\n  \n  .viewer-title {\n    font-size: 12px;\n    line-height: 1;\n  \n    display: inline-block;\n    overflow: hidden;\n  \n    max-width: 90%;\n    margin: 0 5% 5px;\n  \n    white-space: nowrap; \n    text-overflow: ellipsis;\n  \n    opacity: .8;\n    color: #ccc;\n  \n    filter: alpha(opacity=80);\n  }\n  .viewer-title:hover {\n    opacity: 1;\n  \n    filter: alpha(opacity=100);\n  }\n  \n  .viewer-button {\n    position: absolute;\n    top: -40px;\n    right: -40px;\n  \n    overflow: hidden;\n  \n    width: 80px;\n    height: 80px;\n  \n    cursor: pointer; \n  \n    border-radius: 50%;\n    background-color: #000;\n    background-color: rgba(0, 0, 0, .5);\n  }\n  .viewer-button:before {\n    position: absolute;\n    bottom: 15px;\n    left: 15px;\n  }\n  \n  .viewer-fixed {\n    position: fixed;\n  }\n  \n  .viewer-open {\n    overflow: hidden;\n  }\n  \n  .viewer-show {\n    display: block;\n  }\n  \n  .viewer-hide {\n    display: none;\n  }\n  \n  .viewer-invisible {\n    visibility: hidden;\n  }\n  \n  .viewer-move {\n    cursor: move;\n    cursor: -webkit-grab;\n    cursor:    -moz-grab;\n    cursor:         grab;\n  }\n  \n  .viewer-fade {\n    opacity: 0;\n  \n    filter: alpha(opacity=0);\n  }\n  \n  .viewer-in {\n    opacity: 1;\n  \n    filter: alpha(opacity=100);\n  }\n  \n  .viewer-transition {\n    -webkit-transition: all .3s ease-out;\n         -o-transition: all .3s ease-out;\n            transition: all .3s ease-out;\n  }\n  \n  @media (max-width: 767px) {\n    .viewer-hide-xs-down {\n      display: none;\n    }\n  }\n  \n  @media (max-width: 991px) {\n    .viewer-hide-sm-down {\n      display: none;\n    }\n  }\n  \n  @media (max-width: 1199px) {\n    .viewer-hide-md-down {\n      display: none;\n    }\n  }\n  /*attachmentViewer*/\n  .attachment-wrapper {\n    display: inline-block;\n    position: relative;\n    vertical-align: top;\n  }\n  .download-attachment, .view-attachment {\n    position: absolute;\n    width: 100%;\n    border-radius: 2px;\n    background-color: #e4e2e3;\n    overflow: hidden;\n    z-index: 99;\n    text-align: center;\n    height: 49%;\n    max-height: 0px;\n    -webkit-transition: max-height 0.5s linear;\n    -moz-transition: max-height 0.5s linear;\n    -o-transition: max-height 0.5s linear;\n    transition: max-height 0.5s linear;\n  }\n  .download-attachment {\n    bottom: 0px;\n  }\n  .view-attachment {\n    top: 0px;\n  }\n  @-moz-document url-prefix() {\n  .view-attachment {\n    margin-top: -1px;\n  }\n  }\n  .attachment-wrapper:hover .download-attachment, .attachment-wrapper:hover .view-attachment {\n    padding: 2px;\n    max-height: 50%;\n  }\n  .download-attachment a, .view-attachment a {\n    display: block;\n  }\n  .download-attachment .fa, .view-attachment .fa {\n    font-size: 16px;\n  }\n  .viewer-button.viewer-download{\n    left: -40px;\n    font-size: 12px;\n    padding: 38px;\n    color: #fff;\n    text-indent: 10px;\n    line-height: 35px;\n  }\n  .viewer-button.viewer-download.not-allowed{\n    color: #F00;\n    cursor: not-allowed;\n  }\n  .viewer-button.viewer-download:before{\n    position: initial;\n    width: 15px;\n    height: 15px;\n    background-image: url('../../bundles/webkuldefault/images/uvdesk-sprite.svg');\n    background-position: -52px -344px;\n    content: ' ';\n    display: inline-block;\n    vertical-align: middle;\n    zoom: 1.3;\n  }\n  .uv-report-wrapper svg {\n      width: 100%;\n  }\n  .uv-report-wrapper svg text {\n      fill: #333;\n  }\n  .chart-tooltip {\n      padding: 5px;\n      position: fixed;\n      display: none;\n      background: #9E9E9E;\n      z-index: 10000;\n      color: #fff;\n  }\n  .grid .tick {\n      stroke: #afafaf;\n      shape-rendering: crispEdges;\n      opacity: .5 !important;\n  }\n  .uv-action-bar {\n      border-bottom: 1px solid #d3d3d3;\n      padding-bottom: 10px;\n  }\n  .uv-action-bar .uv-field-block.date {\n      display: inline-block;\n      margin-right: 10px;\n  }\n  .uv-action-bar label {\n      font-size: 16px;\n      vertical-align: middle;\n      margin-right: 10px;\n  }\n  .uv-report-wrapper {\n      padding-right: 20px;\n  }\n  .uv-pannel {\n      margin-bottom: 20px;\n      border: 1px solid #d3d3d3;\n      border-radius: 3px;\n      position: relative;\n  }\n  .uv-pannel-body {\n      padding: 20px;\n  }\n  .uv-report-wrapper .uv-middle {\n      position: absolute;\n      width: 100%;\n      left: 0;\n      top: 50%;\n      text-align: center;\n  }\n  .uv-pannel-heading {\n      padding: 13px 15px;\n      border-bottom: 1px solid #d3d3d3;\n  }    \n  .uv-pannel-heading h3 {\n      font-weight: 400;\n      font-size: 18px;\n  }\n  .uv-padding-left-20 {\n      padding-left: 20px;\n  }\n  .uv-padding-right-20 {\n      padding-right: 20px;\n  }\n  .uv-padding-left-10 {\n      padding-left: 10px;\n  }\n  .uv-padding-right-10 {\n      padding-right: 10px;\n  }\n  .ticket-customer path {\n      fill: none;\n  }\n  .uv-report-brick-wrapper {\n      width: 100%;\n      display: inline-block;\n      border: 1px solid #d3d3d3;\n      margin: 20px 0;\n      border-radius: 3px;\n  }\n  .uv-report-brick {\n      position: relative;\n      display: inline-block;\n      float: left;\n      width: 20%;\n      text-align: center;\n      padding: 18px 0;\n      border-right: 1px solid #d3d3d3;\n  }\n  .uv-report-brick:last-child {\n      border-right: none;\n  }\n  .uv-report-brick-count {\n      width: 100%;\n      display: inline-block;\n      color: #8473f3;\n      font-size: 30px;\n  }   \n  .uv-report-brick-label {\n      width: 100%;\n      display: inline-block;\n      font-size: 18px;\n  }   \n  .uv-report-chart-top-row .uv-report-chart-col-lt {\n      width: 75%;\n      float: left;\n  }\n  .uv-report-chart-top-row .uv-report-chart-col-rt {\n      width: 25%;\n      float: left;\n  }\n  .uv-report-chart-col-lt .uv-pannel {\n      min-height: 600px;\n  }\n  .uv-min-height-450 {\n      min-height: 450px;\n  }\n  @media screen and (max-width: 1366px) {\n      .uv-min-height-450 {\n          min-height: 350px;\n      }\n  }\n  .uv-report-chart-col-rt .uv-pannel {\n      min-height: 290px;\n  }\n  .uv-col-4 {\n      width: 33.33%;\n      float: left;\n      padding: 0 10px;\n  }\n  .uv-report-chart-bottom-row .uv-col-4:first-child {\n      padding-left: 0;\n  }\n  .uv-report-chart-bottom-row .uv-col-4:last-child {\n      padding-right: 0;\n  }\n  .ticket-channels {\n      text-align: center;\n  }\n  .ticket-channels svg {\n      width: 65%;\n  }\n  .chart-info {\n      list-style: none;\n      margin: 5px 0;\n  }\n  .chart-info li {\n      display: inline-block;\n      margin-right: 15px;\n  }\n  .chart-info li .uv-chart-circle {\n      background: #FFBB3C;\n      width: 20px;\n      height: 20px;\n      display: inline-block;\n      border-radius: 50%;\n      vertical-align: middle;\n      margin-right: 5px;\n  }\n  .chart-info li .uv-chart-circle.ticket {\n      background: #FFBB3C;\n  }\n  .chart-info li .uv-chart-circle.customer {\n      background: #34C1F6;\n  }\n  ul.uv-report-measures {\n      list-style: none;\n      margin: 0;\n      padding: 0;\n  }\n  .uv-report-chart-col-rt .uv-pannel-body {\n      padding: 0 0 0 20px;\n      max-height: 556px;\n      overflow-y: auto;\n  }\n  .uv-report-measures li {\n      border-bottom: 1px solid #d3d3d3;\n      padding: 10px 0;\n  }\n  .uv-report-measures li:last-child {\n      border-bottom: none;\n  }\n  .uv-report-measure-label {\n      font-size: 16px;\n      width: 100%;\n      float: left;\n  }\n  .uv-report-measure-count {\n      font-size: 25px;\n      color: #8473f3;\n      margin-top: 7px;\n      display: inline-block;\n  }\n  .agent-graph path, .agent-graph line {\n      fill: none;\n      shape-rendering: crispEdges;\n  }\n  .uv-icon-kudos {\n      background-image: url(\"../../bundles/webkuldefault/images/uvdesk-kudo-sprite.svg\");\n      display: inline-block;\n      width: 40px;\n      height: 40px;\n  }\n  .uv-icon-kudos.kudos-1 {\n      background-position: 0px 40px;\n  }\n  .uv-icon-kudos.kudos-2 {\n      background-position: -40px 40px;\n  }\n  .uv-icon-kudos.kudos-3 {\n      background-position: -80px 40px;\n  }\n  .uv-icon-kudos.kudos-4 {\n      background-position: -120px 40px;\n  }\n  .uv-icon-kudos.kudos-5 {\n      background-position: -160px 40px;\n  }\n  .kudos-text-1 {\n      color: #FC6E46;\n  }\n  .kudos-text-2 {\n      color: #FC6E46;\n  }\n  .kudos-text-3 {\n      color: #FCDA32;\n  }\n  .kudos-text-4 {\n      color: #01D101;\n  }\n  .kudos-text-5 {\n      color: #01D101;\n  }\n  @media screen and (max-width: 1024px) {\n      .uv-report-chart-top-row .uv-report-chart-col-lt {\n          width: 100%;\n          padding: 0;\n      }\n      .uv-report-chart-top-row .uv-report-chart-col-rt {\n          width: 100%;\n      }\n      .uv-report-chart-bottom-row .uv-col-4 {\n          width: 100%;\n          padding: 0;\n      }\n      .uv-pannel-body.ticket-customer {\n          padding: 0 !important;\n      }\n      .uv-report-brick {\n          width: 100%;\n          border-right: none;\n          border-bottom: 1px solid #d3d3d3;\n      }\n      .uv-report-brick:last-child {\n          border-bottom: none;\n      }\n  }\n  @media screen and (max-width: 500px) {\n      .uv-action-bar label {\n          display: none;\n      }\n      .uv-action-bar .uv-field-block.date {\n          width: 100%;\n          padding: 0px 0px 0px 5px;\n          margin-right: 0;\n      }\n      .uv-action-bar .uv-field-block.date input {\n          width: 100%;\n      }\n      .uv-inner-section .uv-action-bar .uv-action-bar-col-lt {\n          padding-right: 15px;\n      }\n      .uv-report-chart-col-lt .uv-pannel-body {\n          padding: 0;\n      }\n      .uv-pannel-heading select {\n          width: 100px;\n      }\n  }\n  .uv-plan-info-wrapper {\n      padding: 20px 0 30px 0;\n      border-bottom: 1px solid #d3d3d3;\n      width: 100%;\n      display: inline-block;\n  }\n  .uv-plan-info-col-rt {\n      float: left;\n      margin-right: 30px;\n  }\n  .uv-plan-info-col-lt {\n      float: left;\n  }\n  .uv-plan-info-col-lt .uv-app-view-content {\n      width: auto;\n  }\n  .uv-plan-info-col-lt .uv-app-view-header {\n      padding-bottom: 0;\n      border-bottom: none;\n  }\n  .uv-plan-summary {\n      list-style: none;\n      margin: 0;\n      padding: 0;\n  }\n  .uv-plan-summary li {\n      margin-top: 5px;\n  }\n  .uv-plan-summary li label {\n      color: #6f6f6f;\n  }\n  .uv-plan-summary li span {\n      margin-left: 10px;\n  }\n  .uv-plan-info-col-lt .uv-action-buttons, .uv-plan-info-col-lt .uv-action-buttons a {\n      margin-bottom: 0;\n  }\n  .uv-plan-feature-wrapper {\n      margin-top: 20px;\n  }\n  .uv-plan-feature-wrapper h4 {\n      margin-bottom: 20px;\n      text-transform: uppercase;\n      color: #6f6f6f;\n      font-size: 16px;\n  }\n  .uv-plan-wrapper .uv-plan-item {\n      width: 300px;\n      float: left;\n      margin-right: 20px;\n      margin-bottom: 20px;\n      border-radius: 3px;\n  }\n  .uv-plan-feature-list {\n      list-style: none;\n      padding: 0;\n      margin: 0;\n  }\n  .uv-plan-feature-list li {\n      position: relative;\n      padding-left: 25px;\n      margin-bottom: 10px;\n  }\n  .uv-plan-title {\n      border: 1px solid #7C70F4;\n      text-align: center;\n      font-size: 20px;\n      padding: 10px 0;\n      color: #FFFFFF;\n      background: #7C70F4;\n  }\n  .uv-plan-item .uv-btn {\n      width: 100%;\n      margin-top: 20px;\n  }\n  .uv-plan-item.basic .uv-plan-title {\n      background: #65A0FE;\n      border-color: #65A0FE;\n  }\n  .uv-plan-item.pro .uv-plan-title {\n      background: #F5D02A;\n      border-color: #F5D02A;\n  }\n  .uv-plan-item.enterprise .uv-plan-title {\n      background: #FF9494;\n      border-color: #FF9494;\n  }\n  .uv-plan-description {\n      border: 1px solid #d3d3d3;\n      border-top: none;\n      padding: 20px;\n  }\n  .uv-plan-description p {\n      color: #6f6f6f;\n      text-align: center;\n  }\n  .uv-plan-price {\n      text-align: center;\n      color: #7C70F4;\n      font-size: 35px;\n  }\n  .uv-plan-item.basic .uv-plan-price {\n      color: #65A0FE;\n  }\n  .uv-plan-item.pro .uv-plan-price {\n      color: #F5D02A;\n  }\n  .uv-plan-item.enterprise .uv-plan-price {\n      color: #FF9494;\n  }\n  .uv-link-color {\n      color: #2650C6;\n  }\n  .uv-success-icon {\n      background-image: url(\"../../bundles/webkuldefault/images/uvdesk-sprite-success.svg\");\n      background-position: 0px -68px;\n      position: absolute;\n      top: 4px;\n      left: 0px;\n      width: 15px;\n      height: 15px;\n      background-size: 16px;\n  }\n  .uv-weight-700 {\n      font-weight: 700;\n  }\n  .uv-pop-up-body {\n      padding: 15px 0;\n  }\n  .uv-pop-up-body .alert {\n      margin-top: 5px;\n  }\n  .uv-form-col-lt, .uv-form-col-rt {\n      float: left;\n  }\n  .uv-form-col-rt .uv-summary {\n      margin-top: 10px;\n  }\n  .uv-element-block.uv-paypal-info {\n      font-style: italic;\n  }\n  .uv-billing-info .uv-btn {\n      background-color: #2ED04C !important;\n      padding: 10px 35px;\n  }\n  .uv-form-group {\n      margin-bottom: 40px;\n  }\n  .subtotal {\n      width: 155px;\n      padding: 20px 0;\n  }\n  .subtotal label {\n      width: 100%;\n      float: left;\n      margin-top: 5px;\n  }\n  .uv-invoice-brick-wrapper {\n      margin-top: 40px;\n  }\n  .uv-invoice-brick {\n      width: 350px;\n      border: 1px solid #d3d3d3;\n      border-radius: 3px;\n      padding: 20px;\n      margin-right: 20px;\n      margin-bottom: 20px;\n      display: inline-block;\n      vertical-align: top;\n  }\n  .uv-invoice-brick-heading h4 {\n      text-transform: uppercase;\n      color: #9F9F9F;\n      margin-bottom: 10px;\n      font-size: 18px;\n  }\n  .uv-invoice-brick ul {\n      list-style: none;\n      margin: 0;\n      padding: 0;\n  }\n  .uv-invoice-brick ul li {\n      margin-bottom: 10px;\n  }\n  @font-face {\n    font-family: 'Source Sans Pro';\n    font-style: italic;\n    font-weight: 400;\n    src: url(https://fonts.gstatic.com/s/sourcesanspro/v18/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDc.ttf) format('truetype');\n  }\n  @font-face {\n    font-family: 'Source Sans Pro';\n    font-style: normal;\n    font-weight: 400;\n    src: url(https://fonts.gstatic.com/s/sourcesanspro/v18/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7g.ttf) format('truetype');\n  }\n  @font-face {\n    font-family: 'Source Sans Pro';\n    font-style: normal;\n    font-weight: 700;\n    src: url(https://fonts.gstatic.com/s/sourcesanspro/v18/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdr.ttf) format('truetype');\n  }"
  },
  {
    "path": "public/css/reset.css",
    "content": "/* http://meyerweb.com/eric/tools/css/reset/ \n    v2.0 | 20110126\n    License: none (public domain)\n*/\n\nhtml, body, div, span, applet, object, iframe,\nh1, h2, h3, h4, h5, h6, p, blockquote, pre,\na, abbr, acronym, address, big, cite, code,\ndel, dfn, em, img, ins, kbd, q, s, samp,\nsmall, strike, strong, sub, sup, tt, var,\nb, u, i, center,\ndl, dt, dd, ol, ul, li,\nfieldset, form, label, legend,\ntable, caption, tbody, tfoot, thead, tr, th, td,\narticle, aside, canvas, details, embed, \nfigure, figcaption, footer, header, hgroup, \nmenu, nav, output, ruby, section, summary,\ntime, mark, audio, video {\n    margin: 0;\n    padding: 0;\n    border: 0;\n    font-size: 100%;\n    font: inherit;\n    vertical-align: baseline;\n}\n\n/* HTML5 display-role reset for older browsers */\narticle, aside, details, figcaption, figure, \nfooter, header, hgroup, menu, nav, section {\n    display: block;\n}\n\nbody {\n    line-height: 1;\n}\n\nol, ul {\n    list-style: none;\n}\n\nblockquote, q {\n    quotes: none;\n}\n\nblockquote:before, blockquote:after,\nq:before, q:after {\n    content: '';\n    content: none;\n}\n\ntable {\n    border-collapse: collapse;\n    border-spacing: 0;\n}"
  },
  {
    "path": "public/css/wizard.css",
    "content": "/* Community Style Rules */\nbody {\n    color: #24292e;\n    width: 100%;\n    font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n    font-size: 14px;\n}\n\n.blink-text {\n    animation: blinker 1s linear infinite;\n}\n\n@keyframes blinker {\n    50% {\n        opacity: 0;\n    }\n}\n\n/* Progress Bar */\n.center {\n    color: #d6d6d6;\n    text-align: center;\n    margin-top: 50px;\n}\n\n.buttons {\n    display: block;\n    width: 100%;\n    margin-top: 65px;\n    text-align: center;\n}\n\n.buttons a {\n    text-decoration: none;\n    background-color: gray;\n    padding: 8px 25px;\n    color: #ffffff;\n    -webkit-border-radius: 3px;\n    -moz-border-radius: 3px;\n    border-radius: 3px;\n}\n\n.buttons a:hover {\n    background-color: #cfcfcf;\n}\n\na.next {\n    margin-left: 25px;\n}\n\na.prev {\n    margin-right: 25px;\n}\n\n/* PROGRESS BAR STYLES */\n\n.progress {\n    width: 100%;\n    max-width: 800px;\n    margin: 70px auto 0;\n    display: table;\n    position: relative;\n    text-align: center;\n    left: 4%;\n    margin-left: 15px;\n}\n\n.progress ul {\n    display: table-row;\n}\n\n.progress ul li {\n    background-color: #d6d6d6;\n    /* Default Bar Color */\n    display: table-cell;\n    position: relative;\n    line-height: 20px;\n    z-index: -3;\n    color: #FFF;\n    text-align: left;\n    transition: background-color 0.75s, color 0.5s;\n}\n\n.progress ul li::before {\n    content: '';\n    width: 40px;\n    height: 40px;\n    color: #FFF;\n    line-height: 30px;\n    text-align: center;\n    left: -15px;\n    background-color: #d6d6d6;\n    /* Default Circle Color */\n    border: solid 5px #d6d6d6;\n    /* Default Circle Color */\n    index: -9;\n    position: absolute;\n    display: block;\n    top: -10px;\n    margin-right: auto;\n    margin-left: auto;\n    z-index: -1;\n    transition: background-color 0.75s, color 0.5s;\n    -webkit-box-sizing: border-box;\n    -moz-box-sizing: border-box;\n    box-sizing: border-box;\n    -webkit-border-radius: 50%;\n    -moz-border-radius: 50%;\n    border-radius: 50%;\n}\n\n\n/* CURRENT STEP */\n\n.progress ul li.current {\n    display: inline-block;\n    width: 100%;\n    z-index: -3;\n    color: #9272F8;\n    position: relative;\n    transition: background-color 0.75s, color 0.5s;\n}\n\n.progress ul li.current::before {\n    border: solid 5px #9272F8;\n    /* Current Step Circle Color */\n    background-color: #FFF;\n    transition: background-color 0.75s, color 0.5s;\n    -webkit-animation: pulse 3s ease-out;\n    -moz-animation: pulse 3s ease-out;\n    animation: pulse 3s ease-out;\n    -webkit-animation-iteration-count: infinite;\n    -moz-animation-iteration-count: infinite;\n    animation-iteration-count: infinite;\n}\n\n\n/* COMPLETED STEPS */\n\n.progress ul li.complete {\n    background-color: #9272F8;\n    /* Completed Step Bar Color */\n    transition: background-color 0.75s, color 0.5s;\n}\n\n.progress ul li.complete::before {\n    background-color: #9272F8;\n    /* Completed Step Circle Color */\n    border: 5px solid transparent;\n    transition: background-color 0.75s, color 0.5s;\n}\n\n\n/* REMOVE FIRST STEP COLOR BAR LINE */\n\n.progress ul li:last-of-type {\n    background-color: transparent;\n}\n\n.progress ul li.current:last-of-type,\n.progress ul li.complete:last-of-type {\n    background-color: transparent;\n}\n\n@-webkit-keyframes pulse {\n    0% {\n        -webkit-transform: scale(1, 1);\n    }\n    50% {\n        -webkit-transform: scale(1.1, 1.1);\n    }\n    100% {\n        -webkit-transform: scale(1, 1);\n    }\n}\n\n@-keyframes pulse {\n    0% {\n        transform: scale(1, 1);\n    }\n    50% {\n        transform: scale(1.1, 1.1);\n    }\n    100% {\n        transform: scale(1, 1);\n    }\n}\n\n.error-messagebar {\n    margin: 50px auto 0;\n    /* display: table; */\n    position: relative;\n    margin-left: 30px;\n    /* text-align: center; */\n}\n\n.installation-wizard-container {\n    display: flex;\n    align-items: stretch;\n    min-height: 100vh;\n}\n\n.installation-wizard-container .installation-wizard-steps-overview {\n    flex: 1;\n    color: #ffffff;\n    max-width: 500px;\n    background-image: -moz-linear-gradient(90deg, #7c70f4 0%, #ba81f1 100%);\n    background-image: -webkit-linear-gradient(90deg, #7c70f4 0%, #ba81f1 100%);\n    background-image: -ms-linear-gradient(90deg, #7c70f4 0%, #ba81f1 100%);\n    position: relative;\n    min-height: 620px;\n}\n\n.installation-wizard-container .installation-wizard-steps-overview-details {\n    flex: 2;\n    display: flex;\n    align-items: center;\n}\n\n/* Installation Wizard Steps Overview */\n.installation-wizard-container .installation-wizard-steps-overview .installation-wizard-steps-overview-container {\n    width: 100%;\n    align-items: center;\n    display: flex;\n    flex-direction: column;\n    gap: 40px;\n    position: absolute;\n    top: 50%;\n    margin-top: -50%;\n}\n\n.installation-wizard-container .installation-wizard-steps-overview  .uvdesk-logo {\n    width: 100%;\n    display: flex;\n    flex-direction: column;\n    align-items: center;\n}\n\n.installation-wizard-container .installation-wizard-steps-overview  .uvdesk-logo svg {\n    display: block;\n    margin-bottom: 10px;\n}\n\n.installation-wizard-container .installation-wizard-steps-overview  .uvdesk-logo p {\n    color: #DAC1FA;\n    font-size: 12px;\n}\n\n.installation-wizard-container .installation-wizard-steps-overview .installation-progress-checklist {\n    /* width: fit-content; */\n}\n\n.installation-wizard-container .installation-wizard-steps-overview .installation-progress-checklist li {\n    display: flex;\n    align-items: center;\n    gap: 10px;\n}\n\n.installation-wizard-container .installation-wizard-steps-overview .installation-progress-checklist li .node {\n    background: #FFFFFE;\n    border-radius: 50%;\n    height: 30px;\n    width: 30px;\n    position: relative;\n}\n\n.installation-wizard-container .installation-wizard-steps-overview .installation-progress-checklist li .node .inner-circle {\n    position: absolute;\n    background: #FFFFFE;\n    border-radius: 50%;\n    height: 10px;\n    width: 10px;\n    top: 50%;\n    left: 50%;\n    margin-top: -5px;\n    margin-left: -5px;\n}\n\n.installation-wizard-container .installation-wizard-steps-overview .installation-progress-checklist li .node .outer-circle {\n    position: absolute;\n    background: #D3D3D3;\n    border-radius: 50%;\n    height: 20px;\n    width: 20px;\n    top: 50%;\n    left: 50%;\n    margin-top: -10px;\n    margin-left: -10px;\n}\n\n.installation-wizard-container .installation-wizard-steps-overview .installation-progress-checklist li.active-node .node .outer-circle {\n    position: absolute;\n    background: #7C6AF7;\n    border-radius: 50%;\n    height: 20px;\n    width: 20px;\n    top: 50%;\n    left: 50%;\n    margin-top: -10px;\n    margin-left: -10px;\n}\n\n.installation-wizard-container .installation-wizard-steps-overview .installation-progress-checklist li.check .node .outer-circle {\n    display: inline-block;\n    transform: rotate(45deg);\n    height: 14px;\n    width: 6px;\n    border-bottom: 3px solid #7B70F4;\n    border-right: 3px solid #7B70F4;\n    top: 50%;\n    left: 50%;\n    margin-top: -10px;\n    margin-left: -4px;\n    position: absolute;\n    z-index: 1;\n    border-radius: 12%;\n    background: #ffffff;\n}\n\n/* Installation Wizard Steps Overview Details */\n\n.installation-wizard-steps-overview-details {\n    position: relative;\n}\n\n.installation-wizard-steps-overview-details-container {\n    padding: 60px;\n}\n\n.installation-wizard-container .installation-wizard-steps-overview-details h2 {\n    color: #333333;\n    font-size: 24px;\n    font-weight: 400;\n    text-align: left;\n    margin: 0;\n    margin-bottom: 20px;\n}\n\n.installation-wizard-container .installation-wizard-steps-overview-details p {\n    line-height: 1.5;\n}\n\n/* Wizard Header */\n.installation-wizard-steps-overview-details .line-break {\n    height: 1px;\n    background: #b5b5b5;\n    margin: 20px 0px 20px;\n}\n\n.installation-wizard-steps-overview-details form {\n    text-align: left;\n}\n\n.installation-wizard-steps-overview-details form .form-label {\n    display:block;\n    margin-bottom: 10px;\n}\n\n.installation-wizard-steps-overview-details form .form-content {\n    display: inline-block;\n    vertical-align: top;\n}\n\n.installation-wizard-steps-overview-details form .wizard-form-info {\n    display: inline-block;\n    font-size: 14px;\n    color: #6F6F6F !important;\n    width: 208px;\n    vertical-align: top;\n    margin-left: 10px;\n}\n\n.installation-wizard-steps-overview-details form .wizard-form-notice {\n    display: block;\n    font-size: 14px;\n    color: #FF5656 !important;\n}\n\n.installation-wizard-steps-overview-details form input {\n    width: 280px;\n    height: 40px;\n    border: solid 1px #B1B1AE;\n    border-radius: 4px;\n    display: inline-block;\n    vertical-align: top;\n    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n    padding: 0px 10px;\n    font-size: 15px;\n    color: #333333;\n    margin-bottom: 6px;\n}\n\ninput[type = 'checkbox'] {\n    height: 15px !important;\n    width: 15px !important;\n  }\n\n.installation-wizard-steps-overview-details form .form-field {\n    margin-bottom: 20px;\n}\n\n.installation-wizard-steps-overview-details form .form-field:last-child {\n    margin-bottom: unset;\n}\n\nul.button-groups {\n    list-style: none;\n}\n\nul.button-groups > li {\n    line-height: 1em;\n    display: inline-block;\n    vertical-align: top;\n    margin-right: 20px;\n}\n\nul.button-groups > li:last-child {\n    margin-right: unset;\n}\n\n.wizard-button {\n    color: #24292e;\n    font-weight: 700;\n    font-size: 13px;\n    padding: 9px 10px;\n    border: 1px solid #24292e;\n    border-radius: 4px;\n    background: white;\n    text-transform: uppercase;\n    cursor: pointer;\n    transition: color linear 0.2s, background-color linear 0.2s;\n    margin-top: 20px;\n}\n\n.wizard-button:hover {\n    color: white;\n    background: #24292e;\n    transition: color linear 0.2s, background-color linear 0.2s;\n}\n\n.wizard-button.button-theme-setup {\n    color: #2ED04C;\n    border: 1px solid #2ED04C;\n}\n\n.wizard-button.button-theme-neutral {\n    color: #24292e;\n    border: 1px solid #24292e;\n}\n\n.wizard-button.button-theme-uvdesk {\n    color: #7C70F4;\n    border: 1px solid #7C70F4;\n}\n\n.wizard-button.solid.button-theme-setup, .wizard-button.button-theme-setup:hover {\n    color: white;\n    background: #2ED04C;\n}\n\n.wizard-button.solid.button-theme-neutral, .wizard-button.button-theme-neutral:hover {\n    color: white;\n    background: #24292e;\n}\n\n.wizard-button.solid.button-theme-uvdesk, .wizard-button.button-theme-uvdesk:default {\n    color: white;\n    background: #7C70F4;\n}\n\n.wizard-button[disabled=\"disabled\"] {\n    cursor: not-allowed;\n    background: #B1B1AE !important;\n    box-shadow: none !important;\n    opacity: 1 !important;\n    border: 1px solid #B1B1AE;\n}\n\n.wizard-svg-icon-criteria-checklist {\n    position: relative;\n    margin-right: 1em;\n}\n\n.wizard-svg-icon-criteria-checklist svg {\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    transform: translate(-50%, -50%);\n}\n\n/* Wizard Installation */\n#start-installation ul.button-groups, #wizard-finalizeInstall ul.button-groups {\n    margin-top: 20px;\n}\n\n.wizard-form {\n    margin: 18px 0px 30px;\n}\n\n.criteria-checklist {\n    line-height: 1.4em;\n    padding: 20px 0px 35px 0px;\n}\n\n.criteria-checklist li {\n    margin-bottom: 10px;\n}\n\n.criteria-checklist li:last-child {\n    margin-bottom: unset;\n}\n\n#wizardSetupNavigation button .processing-request, #wizard-finalizeInstall .installation-progress-loader {\n    display: inline-block;\n    position: relative;\n    top: 2px;\n    margin-right: 4px;\n}\n\n#wizardSetupNavigation button .processing-request path {\n    fill: white;\n}\n\n#wizardSetupNavigation button .processing-request path:first-child {\n    opacity: 0.6;\n}\n\n#wizardSetupComplete .button_css {\n    padding: 9px 8px;\n    color: #fff;\n    background-color: #7C70F4;\n    text-decoration: none;\n    border-radius: 4px;\n}\n\n.uv-mandatory {\n    color: #F44336;;\n    font-size: 16px;\n    vertical-align: text-bottom;\n}\n\n#systemCriteria-Details {\n    margin-left: 30px;\n}\n\n#systemCriteria-PHPExtensions-Details,\n#systemCriteria-PHPPermissionConfigfiles-Details {\n    margin-left: 30px;\n    margin-top: 10px;\n    margin-bottom: 10px;\n}\n\n.PHPExtensions-toggle-details, .PHPVersion-toggle-details, .PHPExeTime-toggle-details,\n.PHPPermissionEnvfile-toggle-details, .PHPPermissionConfigfiles-toggle-details, .PHPEnableRedis-toggle-details {\n    cursor: pointer;\n    color: #9272F8;\n    text-decoration: underline;\n}\n\n#systemCriteria-Details .extension_name {\n    font-weight: 700;\n}\n\n#systemCriteria-Details p {\n    margin-top: 0px;\n    line-height: 26px;\n    margin-left: 0px;\n}\n\n#systemCriteria-Details a {\n    color: #9272F8\n}\n\ninput[type = 'checkbox'] {\n    height: 15px !important;\n    width: 15px !important;\n}\n\n.display-none {\n    display: none;\n}\n\n.progress-bar {\n    color: #ffffff;\n    margin: 50px 0px 0px 135px; \n \n}\n\n.uv-version {\n     text-align: center;\n     font-size: 12px;\n     color: #DAC1FA;\n}\n\n.node {\n    background: #FFFFFE;\n   border-radius: 50%;\n   height: 30px;\n   width: 30px;\n   position: relative;\n   \n}\n\n.inner-circle {\n    position: absolute;\n    background: #FFFFFE;\n    border-radius: 50%;\n    height: 10px;\n    width: 10px;\n   \n    top: 50%;\n    left: 50%;\n    margin-top: -5px;\n    margin-left: -5px;\n   \n}\n\n.active-node .outer-circle {\n    position: absolute;\n    background: #7C6AF7;\n    border-radius: 50%;\n    height: 20px;\n    width: 20px;\n    \n    top: 50%;\n    left: 50%;\n    margin-top: -10px;\n    margin-left: -10px;\n}\n\n.check .outer-circle{\n    display: inline-block;\n    transform: rotate(45deg);\n    height: 13px;\n    width: 6px;\n    border-bottom: 3px solid #7B70F4;\n    border-right: 3px solid #7B70F4;\n    top: 50%;\n    left: 50%;\n    margin-top: -9px;\n    margin-left: -4px;\n    position: absolute;\n    z-index: 1;\n    border-radius: 12%;\n    background: #ffffff;\n}\n\n.outer-circle {\n    position: absolute;\n    background: #686868;\n    border-radius: 50%;\n    height: 20px;\n    width: 20px;\n    top: 50%;\n    left: 50%;\n    margin-top: -10px;\n    margin-left: -10px;\n}\n\n.divider {\n    height: 55px;\n    width: 4px;\n    margin-left: 13px;\n    margin-top: 8px;\n    transition: all 800ms ease;\n    background: #FFFFFE;\n}\n \nli {\n     list-style: none;\n}\n\n.lg-icon {\n    display: inline-block;\n    margin-top: 30px\n}\n\n.lg-icon svg { \n    transform-origin:50% 50%;\n    animation:2s rotateRight infinite linear; \n}\n.sm-icon {\n    display: inline-block;\n    vertical-align: top;\n}\n.sm-icon svg { \n    transform-origin:50% 50%;\n    animation:2s rotateleft infinite linear; \n}\n\n@keyframes rotateRight {\n    from {\n        transform: rotate(0deg);\n    }\n\n    to { \n        transform: rotate(360deg);\n    }\n}\n\n@keyframes rotateleft {\n    from {\n        transform: rotate(360deg);\n    }\n\n    to { \n        transform: rotate(0deg);\n    }\n}\n \n.systemCriteria-Details {\n    display: none;\n}\n\n.systemCriteria-Info-Message {\n    margin-left: 30px;\n}\n\n.wizard-container .database-integration .checkbox {\n    display: flex;\n    flex-flow: row nowrap;\n    align-items: center;\n    justify-content: flex-start;\n}\n\n.wizard-container .database-integration .checkbox input[type=\"checkbox\"] {\n    width: 20px;\n    height: 20px;\n    margin: 0;\n    padding: 0;\n}\n\n.wizard-container .database-integration .checkbox .checkbox-info {\n    font-size: 15px;\n    color: #333333;\n    padding-left: 5px;\n    user-select: none;\n}\n\n.wizard-container .database-integration .checkbox-form-field {\n    margin-top: -10px;\n}\n"
  },
  {
    "path": "public/index.php",
    "content": "<?php\n\nuse App\\Kernel;\n\nrequire_once dirname(__DIR__).'/vendor/autoload_runtime.php';\n\nreturn function (array $context) {\n    return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);\n};\n"
  },
  {
    "path": "public/scripts/wizard.js",
    "content": "(function ($) {\n    const ERRORS = {\n        error404: {\n            title: 'Unable to locate the path on the server.',\n            description: 'Try putting index.php after your helpdesk installation\\'s site url or If you are using apache, make sure that mod_rewrite module is enabled and AllowOverride directive for document root is set to All/FileInfo in your server\\'s configuration file.',\n        },\n        error500: {\n            title: 'Something\\'s bad happened with the server.',\n            description: ' Try again by clicking the back button or launch the wizard again by refreshing the web page or clicking the cancel button.'\n        },\n    };\n\n    // Wait for all assets to load\n    $(window).bind(\"load\", function() {\n        var UVDeskCommunityInstallSetupView = Backbone.View.extend({\n            el: '#installation-wizard-steps-overview-details',\n            wizard: undefined,\n            wizard_icons_notice_template: _.template($(\"#wizardIcons-NoticeTemplate\").html()),\n            installation_setup_template: _.template($(\"#installationWizard-InstallSetupTemplate\").html()),\n            installation_process_template: _.template($(\"#installationWizard-InstallSetupTemplate-ProcessingItem\").html()),\n            installation_successful_template: _.template($('#installationWizard-InstallationCompleteTemplate').html()),\n            events: {\n                'click #wizardCTA-CancelInstallation': 'abortInstallation',\n                'click #wizardCTA-StartInstallation': 'installHelpdesk',\n            },\n            initialize: function(params) {\n                this.wizard = params.wizard;\n                this.wizard.reference_nodes.content.html(this.installation_setup_template());\n            },\n            installHelpdesk: function(params) {\n                this.updateConfigurations();\n            },\n            updateConfigurations: function () {\n                // execute next commands after arrival of network request's response\n                (async () => {\n                    this.$el.find('#wizard-finalizeInstall').html(this.installation_process_template({ currentStep: 'load-configurations' }));\n                    this.$el.find('#wizard-finalizeInstall .installation-progress-loader').html(this.wizard.wizard_icons_loader_template());\n                    await $.post('./wizard/xhr/load/configurations').fail(response => {\n                        if (response.status == 500) {\n                            this.$el.find('.wizard-svg-icon-failed-criteria-checklist').html(this.wizard_icons_notice_template());\n                            this.$el.find('#error-message-bar').html('</span> Issue can be resolved by simply <a href=\"https://www.uvdesk.com/en/blog/open-source-helpdesk-installation-on-ubuntu-uvdesk/\" target=\"_blank\"><p> enabling your <b>.env</b> file read/write permission</a> refresh the browser and try again.</p>');\n                        }\n                    });\n                    \n                    this.$el.find('#wizard-finalizeInstall').html(this.installation_process_template({ currentStep: 'load-migrations' }));\n                    this.$el.find('#wizard-finalizeInstall .installation-progress-loader').html(this.wizard.wizard_icons_loader_template());\n                    this.next(1);\n                    await $.post('./wizard/xhr/load/migrations').fail(response => {\n                        if (response.status == 500) {\n                            this.$el.find('.wizard-svg-icon-failed-criteria-checklist').html(this.wizard_icons_notice_template());\n                            this.$el.find('#error-message-bar').html('Something went wrong ! Please try again');\n                        }\n                    });\n    \n                    this.$el.find('#wizard-finalizeInstall').html(this.installation_process_template({ currentStep: 'populate-datasets' }));\n                    this.$el.find('#wizard-finalizeInstall .installation-progress-loader').html(this.wizard.wizard_icons_loader_template());\n                    this.next(2);\n                    await $.post('./wizard/xhr/load/entities').fail(response => {\n                        if (response.status == 500) {\n                            this.$el.find('.wizard-svg-icon-failed-criteria-checklist').html(this.wizard_icons_notice_template());\n                            this.$el.find('#error-message-bar').html('Something went wrong ! Please try again');\n                        }\n                    });\n                    \n                    this.$el.find('#wizard-finalizeInstall').html(this.installation_process_template({ currentStep: 'create-super-user' }));\n                    this.$el.find('#wizard-finalizeInstall .installation-progress-loader').html(this.wizard.wizard_icons_loader_template());\n                    this.next(3);\n                    await $.post('./wizard/xhr/load/super-user').fail(response => {\n                        if (response.status == 500) {\n                            this.$el.find('.wizard-svg-icon-failed-criteria-checklist').html(this.wizard_icons_notice_template());\n                            this.$el.find('#error-message-bar').html('Something went wrong ! Please try again');\n                        }\n                    });\n\n                    this.$el.find('#wizard-finalizeInstall').html(this.installation_process_template({ currentStep: 'load-website-prefixes' }));\n                    this.$el.find('#wizard-finalizeInstall .installation-progress-loader').html(this.wizard.wizard_icons_loader_template());\n                    this.next(4);\n                    let websiteRoutes = await $.post('./wizard/xhr/load/website-configure').fail(response => {\n                        if (response.status == 500) {\n                            this.$el.find('.wizard-svg-icon-failed-criteria-checklist').html(this.wizard_icons_notice_template());\n                            this.$el.find('#error-message-bar').html('Something went wrong ! Please try again');\n                        }\n                    });\n                    this.wizard.prefix.member = websiteRoutes.memberLogin;\n                    this.wizard.prefix.knowledgebase = websiteRoutes.knowledgebase;\n\n                    $('.install').removeClass('active-node');\n                    $('.install').addClass('check');\n\n                    this.redirectToWelcomePage();\n                })();\n            },\n            redirectToWelcomePage: function () {\n                this.$el.find('.installation-wizard-steps-overview-details-container').html(this.installation_successful_template({prefixCollection:this.wizard.prefix}));\n            },\n            next: function($i) {\n                for (let index = 0; index < $i; index++) {\n                    var $next = $('.progress ul li.current').removeClass('current').addClass('complete').next('li');\n                    if ($next.length) {\n                        $next.removeClass('complete').addClass('current');\n                    }\n                }\n            },\n        });\n\n        var UVDeskCommunityWebsiteConfigurationModel = Backbone.Model.extend({\n            defaults: {\n                member_panel_url: \"member\",\n                customer_panel_url: \"customer\",\n            },\n            initialize: function (attributes) {\n                this.view = attributes.view;\n            },\n            getDefaultAttributes: function () {\n                // Function to fetch current saved prefixes and will update values of defaults\n                return new Promise ((resolve, reject) => {\n                    $.get('./wizard/xhr/website-configure', (response) => {\n                        if (\n                            typeof response.status != 'undefined'\n                            && true === response.status\n                        ) {\n                            this.defaults['member_panel_url'] = response.memberPrefix;\n                            this.defaults['customer_panel_url'] = response.knowledgebasePrefix;\n                            resolve();\n                        } else {\n                            wizard.disableNextStep();\n                        }\n                    }).fail(function(error) {\n                        reject(error);\n                        wizard.disableNextStep();\n                    });\n                });\n            },\n            isProcedureCompleted: function (callback) {\n                this.set('urlCollection', {\n                    'member-prefix': this.view.$el.find('input[name=\"memberUrlPrefix\"]').val(),\n                    'customer-prefix': this.view.$el.find('input[name=\"customerUrlPrefix\"]').val(),\n                });\n\n                var wizard = this.view.wizard;\n                wizard.reference_nodes.content.find('#wizardCTA-IterateInstallation').prepend('<span class=\"processing-request\">' + wizard.wizard_icons_loader_template() + '</span>');\n\n                $.post('./wizard/xhr/website-configure', this.get('urlCollection'), (response) => {\n                    if (typeof response.status != 'undefined' && true === response.status) {\n                        callback(this.view);\n                    } else {\n                        wizard.disableNextStep();\n                    }\n                }).fail(function() {\n                    wizard.disableNextStep();\n                }).always(function() {\n                    wizard.reference_nodes.content.find('#wizardCTA-IterateInstallation .processing-request').remove();\n                });\n            }\n        });\n\n        var UVDeskCommunityWebsiteConfigurationView = Backbone.View.extend({\n            el: '#wizardSetup',\n            wizard: undefined,\n            events: {\n                \"keyup #wizard-configureWebsite .form-content input\" : \"validateForm\",\n            },\n            model: UVDeskCommunityWebsiteConfigurationModel,\n            wizard_website_configuration: _.template($(\"#installationWizard-WebsiteConfigurationTemplate\").html()),\n            initialize: function(params) {\n                this.wizard = params.wizard;\n                \n                // default enabled button\n                this.wizard.enableNextStep();\n                if (params.existingModel instanceof UVDeskCommunityWebsiteConfigurationModel) {\n                    this.model = params.existingModel;\n                    this.model.view = this;\n                } else {\n                    this.model = new UVDeskCommunityWebsiteConfigurationModel({ view: this });\n                }\n\n                // function getDefaultAttributes will fetch current prefixes\n                this.model.getDefaultAttributes().then(() => {\n                    this.$el.html(this.wizard_website_configuration(this.model.defaults));\n                });\n            },\n            validateForm: _.debounce(function (event) {\n                let errorFlag = false;\n                event.preventDefault();\n                this.$el.find('.form-content .wizard-form-notice').remove();\n\n                let memberPrefix = this.$el.find('input[name=\"memberUrlPrefix\"]').val();\n                let customerPrefix = this.$el.find('input[name=\"customerUrlPrefix\"]').val();\n\n                if (\n                    memberPrefix == null \n                    || memberPrefix == \"\"\n                ) {\n                    errorFlag = true;\n                    this.$el.find('.form-content input[name=\"memberUrlPrefix\"]').after(\"<span class='wizard-form-notice'>This field is mandatory</span>\")\n                }\n\n                if (\n                    customerPrefix == null\n                    || customerPrefix == \"\"\n                ) {\n                    errorFlag = true;\n                    this.$el.find('.form-content input[name=\"customerUrlPrefix\"]').after(\"<span class='wizard-form-notice'>This field is mandatory</span>\")\n                }\n\n                if (customerPrefix == memberPrefix) {\n                    errorFlag = true;\n                    this.$el.find('.form-content input[name=\"customerUrlPrefix\"]').after(\"<span class='wizard-form-notice'>Both prefixes can not be same.</span>\")\n                }\n                \n                if (! errorFlag) {\n                    let prefixTestRegex = /^[a-z0-9A-Z]*$/;\n\n                    if (! prefixTestRegex.test(memberPrefix)) {\n                        errorFlag = true;\n                        this.$el.find('.form-content input[name=\"memberUrlPrefix\"]').after(\"<span class='wizard-form-notice'>Only letters and numbers are allowed</span>\")\n                    }\n\n                    if (! prefixTestRegex.test(customerPrefix)) {\n                        errorFlag = true;\n                        this.$el.find('.form-content input[name=\"customerUrlPrefix\"]').after(\"<span class='wizard-form-notice'>Only letters and numbers are allowed</span>\")\n                    }\n                }\n\n                if (false == errorFlag) {\n                    this.wizard.enableNextStep();\n\n                    if (event.keyCode == 13) {\n                        let button = document.getElementById('wizardCTA-IterateInstallation');\n                        button ? button.click() : '';\n                    }\n                } else {\n                    this.wizard.disableNextStep();\n                }\n            }, 400),\n        });\n\n        var UVDeskCommunityAccountConfigurationModel = Backbone.Model.extend({\n            view: undefined,\n            defaults: {\n                user: {\n                    name: null,\n                    email: null,\n                    password: null,\n                    confirmPassword: null,\n                }\n            },\n            initialize: function (attributes) {\n                this.view = attributes.view;\n            },\n            isProcedureCompleted: function (callback) {\n                this.set('user', {\n                    name: this.view.$el.find('input[name=\"name\"]').val(),\n                    email: this.view.$el.find('input[name=\"email\"]').val(),\n                    password: this.view.$el.find('input[name=\"password\"]').val(),\n                });\n\n                let wizard = this.view.wizard;\n                wizard.reference_nodes.content.find('#wizardCTA-IterateInstallation').prepend('<span class=\"processing-request\">' + wizard.wizard_icons_loader_template() + '</span>');\n                \n                $.post('./wizard/xhr/intermediary/super-user', this.get('user'), function (response) {\n                    if (\n                        typeof response.status != 'undefined' \n                        && true === response.status\n                    ) {\n                        callback(this.view);\n                    } else {\n                        wizard.disableNextStep();\n                    }\n                }.bind(this)).fail(function(response) {\n                    wizard.disableNextStep();\n                }).always(function() {\n                    wizard.reference_nodes.content.find('#wizardCTA-IterateInstallation .processing-request').remove();\n                });\n            },\n        });\n\n        var UVDeskCommunityAccountConfigurationView = Backbone.View.extend({\n            el: '#wizardSetup',\n            model: undefined,\n            wizard: undefined,\n            account_settings_template: _.template($(\"#installationWizard-AccountConfigurationTemplate\").html()),\n            events: {\n                \"keyup #wizard-configureAccount .form-content input\" : \"validateForm\",\n            },\n            initialize: function(params) {\n                this.wizard = params.wizard;\n                if (params.existingModel instanceof UVDeskCommunityAccountConfigurationModel) {\n                    this.model = params.existingModel;\n                    this.model.view = this;\n                } else {\n                    this.model = new UVDeskCommunityAccountConfigurationModel({ view: this });\n                }\n                            \n                Backbone.Validation.bind(this);\n                this.$el.html(this.account_settings_template(this.model.attributes));\n            },\n            validateForm: _.debounce(function(event) {\n                let errorFlag = false;\n                let nameRegex = /^[A-Za-z][A-Za-z]*[\\sA-Za-z]*$/;\n                let emailRegex = /^[a-zA-Z0-9.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/;\n                let passwordRegix = /^(?=(.*[a-zA-Z].*){2,})(?=.*\\d)(?=.*[^\\w\\s]|.*_)[^\\s]{8,}$/;\n\n                let user = {\n                    name: this.$el.find('input[name=\"name\"]').val(),\n                    email: this.$el.find('input[name=\"email\"]').val(),\n                    password: this.$el.find('input[name=\"password\"]').val(),\n                    confirmPassword: this.$el.find('input[name=\"confirm_password\"]').val(),\n                };\n\n                let selectedElement = this.$el.find(event.target).parent();\n                this.$el.find('.wizard-form-notice') ? this.$el.find('.wizard-form-notice').remove() : '';\n\n                enteredField = event.target.name;\n                enteredValue = event.target.value;\n                if (\n                    enteredValue == null \n                    || enteredValue == \"\"\n                ) {\n                    errorFlag = true;\n                    selectedElement.find('.wizard-form-notice')\n                    selectedElement.append(\"<span class='wizard-form-notice'>This field is mandatory</span>\");\n                }\n\n                if (\n                    ! errorFlag \n                    && user.name\n                ) {\n                    if (! nameRegex.test(user.name)) {\n                        errorFlag = true;\n                        this.$el.find('input[name=\"name\"]').parent().append(\"<span class='wizard-form-notice'>Invalid Name</span>\")\n                    }\n                }\n\n                if (\n                    ! errorFlag \n                    && user.email !== \"\"\n                ) {\n                    if (! emailRegex.test(user.email)) {\n                        errorFlag = true;\n                        this.$el.find('input[name=\"email\"]').parent().append(\"<span class='wizard-form-notice'>Invalid Email</span>\")\n                    }\n                }\n\n                if (\n                    user.password.length > 0 \n                    && (! passwordRegix.test(user.password))\n                ) {\n                    errorFlag = true;\n                    this.$el.find('input[name=\"password\"]').parent().append(\"<span class='wizard-form-notice'>Password must contain minimum 8 character length, at least two letters (not case sensitive), one number, one special character(space is not allowed).</span>\")\n                }\n\n                if (\n                    user.confirmPassword.length > 0\n                    && user.confirmPassword != user.password\n                ) {\n                    errorFlag = true;\n                    this.$el.find('input[name=\"confirm_password\"]').parent().append(\"<span class='wizard-form-notice'>Password does not match.</span>\")\n                }\n\n                if (\n                    ! errorFlag \n                    && (user.name == null\n                    || user.name == \"\")\n                    || (user.email == null\n                    || user.email ==\"\")\n                    || (user.password == null\n                    || user.password ==\"\")\n                    ||  (user.confirmPassword == null\n                    || user.confirmPassword == \"\")\n                ) {\n                    errorFlag = true;\n                }\n                   \n                if (! errorFlag) {\n                    this.wizard.enableNextStep();\n\n                    if (event.keyCode == 13) {\n                        let button = document.getElementById('wizardCTA-IterateInstallation');\n                        button ? button.click() : '';\n                    }\n                } else {\n                    this.wizard.disableNextStep();\n                }\n            }, 400),\n        });\n    \n        var UVDeskCommunityDatabaseConfigurationModel = Backbone.Model.extend({\n            view: undefined,\n            defaults: {\n                verified: false,\n                credentials: {\n                    serverName: '127.0.0.1',\n                    serverVersion: null,\n                    serverPort: '3306',\n                    username: 'root',\n                    password: null,\n                    database: null,\n                    createDatabase: 1,\n                }\n            },\n            initialize: function (attributes) {\n                this.view = attributes.view;\n            },\n            isProcedureCompleted: function (callback) {\n                this.set('credentials', {\n                    serverName: this.view.$el.find('input[name=\"serverName\"]').val(),\n                    serverVersion: this.view.$el.find('input[name=\"serverVersion\"]').val(),\n                    serverPort: this.view.$el.find('input[name=\"serverPort\"]').val(),\n                    username: this.view.$el.find('input[name=\"username\"]').val(),\n                    password: this.view.$el.find('input[name=\"password\"]').val(),\n                    database: this.view.$el.find('input[name=\"database\"]').val(),\n                    createDatabase: this.view.$el.find('input[name=\"createDatabase\"]').prop(\"checked\") ? 1 : 0,\n                });\n\n                let wizard = this.view.wizard;\n                wizard.reference_nodes.content.find('#wizardCTA-IterateInstallation').prepend('<span class=\"processing-request\">' + wizard.wizard_icons_loader_template() + '</span>');\n\n                $.post('./wizard/xhr/verify-database-credentials', this.get('credentials'), function (response) {\n                    if (typeof response.status != 'undefined' && true === response.status) {\n                        callback(this.view);\n                    } else {\n                        if (document.getElementById(\"wizard-error-id\")) {\n                            var element = document.getElementById(\"wizard-error-id\");\n                            element.parentNode.removeChild(element); \n                        }\n\n                        this.view.$el.find('.form-content input[name=\"createDatabase\"]').parents('.form-content').append(\"<span id='wizard-error-id' class='wizard-form-notice'>Details are incorrect ! Connection not established.</span>\");\n                        wizard.disableNextStep();\n                    }\n                }.bind(this)).fail(function(response) {\n                    wizard.disableNextStep();\n                }).always(function() {\n                    wizard.reference_nodes.content.find('#wizardCTA-IterateInstallation .processing-request').remove();\n                });\n            },\n        });\n\n        var UVDeskCommunityDatabaseConfigurationView = Backbone.View.extend({\n            el: '#wizardSetup',\n            model: undefined,\n            wizard: undefined,\n            database_configuration_template: _.template($(\"#installationWizard-DatabaseConfigurationTemplate\").html()),\n            events: {\n                \"keyup #wizard-configureDatabase .form-content input\" : \"validateForm\",\n                \"change #wizard-configureDatabase .form-content input[type='checkbox']\" : \"validateForm\",\n            },\n            initialize: function(params) {\n                if (params.existingModel instanceof UVDeskCommunityDatabaseConfigurationModel) {\n                    this.model = params.existingModel;\n                    this.model.view = this;\n                } else {\n                    this.model = new UVDeskCommunityDatabaseConfigurationModel({ view: this });\n                }\n\n                this.wizard = params.wizard;\n\n                // Render Database Configuration View\n                this.$el.html(this.database_configuration_template(this.model.attributes));\n            },\n            validateForm: _.debounce(function(event) {\n                let errorFlag = false;\n                let mandatoryFieldsCollection = ['serverName', 'username', 'password', 'database'];\n                let selectedElement = this.$el.find(event.target).parent();\n                selectedElement.find('.wizard-form-notice') ? selectedElement.find('.wizard-form-notice').remove() : '';\n\n                if (mandatoryFieldsCollection.indexOf(event.target.name) != -1) {\n                    if (event.target.value == null || event.target.value == \"\") {\n                        errorFlag = true;\n                        selectedElement.find('.wizard-form-notice')\n                        selectedElement.append(\"<span class='wizard-form-notice'>This field is mandatory</span>\");\n                    }\n                }\n\n                let credentials = {\n                    hostname: this.$el.find('input[name=\"serverName\"]').val(),\n                    serverVersion: this.$el.find('input[name=\"serverVersion\"]').val(),\n                    serverPort: this.$el.find('input[name=\"serverPort\"]').val(),\n                    username: this.$el.find('input[name=\"username\"]').val(),\n                    password: this.$el.find('input[name=\"password\"]').val(),\n                    database: this.$el.find('input[name=\"database\"]').val(),\n                };\n\n\n                if (!errorFlag && (credentials.hostname == null || credentials.hostname == \"\" || (credentials.username == null || credentials.username == \"\") || (credentials.password == null || credentials.password == \"\") || (credentials.database == null || credentials.database == \"\")))\n                    errorFlag = true;\n\n                if (false == errorFlag) {\n                    this.wizard.enableNextStep();\n                    \n                    if (document.getElementById(\"wizard-error-id\")) {\n                        var element = document.getElementById(\"wizard-error-id\");\n                        element.parentNode.removeChild(element);\n                    }                    \n                    if (event.keyCode == 13) {\n                        let button = document.getElementById('wizardCTA-IterateInstallation');\n                        button ? button.click() : '';\n                    }\n                } else {\n                    this.wizard.disableNextStep();\n                }\n            }, 400),\n        });\n\n        var UVDeskCommunitySystemRequirementsModel = Backbone.Model.extend({\n            view: undefined,\n            defaults: {\n                fetch: false,\n                verified: false,\n                'php-version': {\n                    status: undefined,\n                },\n                'php-extensions': {\n                    extensions: [],\n                },\n                'php-maximum-execution': {\n                    status: undefined,\n                },\n                'php-envFile-permission': {\n                    status: undefined,\n                },\n                'php-configFiles-permission': {\n                    configfiles: [],\n                },\n                'redis-status': {\n                    redis: undefined,\n                }\n            },\n            initialize: function (attributes) {\n                this.view = attributes.view;\n            },\n            fetch: function() {\n                this.set('fetch', true);\n\n                this.checkPHP();\n                this.evaluatePHPExtensions();\n                this.maximumExecution();\n                this.checkEnvFilePermission();\n                this.checkConfigFilesPermission();\n                this.checkRedisStatus();\n            },\n            isProcedureCompleted: function (callback) {\n                if (this.get('verified')) {\n                    callback(this.view);\n                }\n            },\n            checkPHP: function() {\n                let postData = {\n                    specification: 'php-version',\n                };\n                \n                $.post('./wizard/xhr/check-requirements', postData, response => {\n                    this.set('php-version', response);\n                }).fail((jqXHR, textStatus, errorThrown) => {\n                    \n                    this.set('php-version', {\n                        status: false,\n                        message: ERRORS.hasOwnProperty('error' + jqXHR.status) ? ERRORS['error' + jqXHR.status].title : 'An unexpected error occurred during the PHP version verification process',\n                        description: ERRORS.hasOwnProperty('error' + jqXHR.status) ? ERRORS['error' + jqXHR.status].description : 'Not details Available',\n                    });\n                }).always(() => {\n                    this.view.renderPHPVersion();\n                    this.evaluateOverallRequirements();\n                });\n            },\n            evaluatePHPExtensions: function() {\n                let postData = {\n                    specification: 'php-extensions',\n                };\n\n                $.post('./wizard/xhr/check-requirements', postData, response => {\n                    this.set('php-extensions', response);\n                }).fail((jqXHR, textStatus, errorThrown) => {\n                    \n                    this.set('php-extensions', {\n                        status: false,\n                        message: ERRORS.hasOwnProperty('error' + jqXHR.status) ? ERRORS['error' + jqXHR.status].title : 'An unexpected error occurred during the PHP extension evaluation process',\n                        description: ERRORS.hasOwnProperty('error' + jqXHR.status) ? ERRORS['error' + jqXHR.status].description : 'Not details Available',\n                    });\n                }).always(() => {\n                    this.view.renderPHPExtensionsCriteria();\n                    this.evaluateOverallRequirements();\n                });\n            },\n            maximumExecution: function() {\n                let postData = {\n                    specification: 'php-maximum-execution',\n                };\n\n                $.post('./wizard/xhr/check-requirements', postData, response => {\n                    this.set('php-maximum-execution', response);\n                }).fail((jqXHR, textStatus, errorThrown) => {\n                    this.set('php-maximum-execution', {\n                        status: false,\n                        message: ERRORS.hasOwnProperty('error' + jqXHR.status) ? ERRORS['error' + jqXHR.status].title : 'An unexpected error occurred during the Maximum execution time verification process',\n                        description: ERRORS.hasOwnProperty('error' + jqXHR.status) ? ERRORS['error' + jqXHR.status].description : 'Maximum Execution Time  </span><p>Need to resolve this issue can be done by reading this blog link:<a href=\"https: //www.simplified.guide/php/increase-max-execution-time\" target=\"_blank\">How to resolve PHP mailparse extension</a></p>',\n                    });\n                }).always(() => {\n                    this.view.renderPHPMaximumExecution();\n                    this.evaluateOverallRequirements();\n                });\n            },\n            checkEnvFilePermission: function() {\n                let postData = {\n                    specification: 'php-envFile-permission',\n                };\n\n                $.post('./wizard/xhr/check-requirements', postData, response => {\n                    this.set('php-envFile-permission', response);\n                }).fail((jqXHR, textStatus, errorThrown) => {\n\n                    this.set('php-envFile-permission', {\n                        status: false,\n                        message: ERRORS.hasOwnProperty('error' + jqXHR.status) ? ERRORS['error' + jqXHR.status].title : 'An unexpected error occurred during the PHP version verification process',\n                        description: ERRORS.hasOwnProperty('error' + jqXHR.status) ? ERRORS['error' + jqXHR.status].description : 'Not details Available',\n                    });\n                }).always(() => {\n                    this.view.renderEnvFilePermission();\n                    this.evaluateOverallRequirements();\n                });\n            },\n            checkConfigFilesPermission: function() {\n                let postData = {\n                    specification: 'php-configFiles-permission',\n                };\n\n                $.post('./wizard/xhr/check-requirements', postData, response => {\n                    this.set('php-configFiles-permission', response);\n                }).fail((jqXHR, textStatus, errorThrown) => {\n\n                    this.set('php-configFiles-permission', {\n                        status: false,\n                        message: ERRORS.hasOwnProperty('error' + jqXHR.status) ? ERRORS['error' + jqXHR.status].title : 'An unexpected error occurred during the PHP version verification process',\n                        description: ERRORS.hasOwnProperty('error' + jqXHR.status) ? ERRORS['error' + jqXHR.status].description : 'Not details Available',\n                    });\n                }).always(() => {\n                    this.view.renderConfigFilesPermission();\n                    this.evaluateOverallRequirements();\n                });\n            },\n            checkRedisStatus: function() {\n                let postData = {\n                    specification: 'redis-status',\n                };\n                \n                $.post('./wizard/xhr/check-requirements', postData, response => {\n                    this.set('redis-status', response);\n                }).fail((jqXHR, textStatus, errorThrown) => {\n                    \n                    this.set('redis-status', {\n                        status: false,\n                        message: ERRORS.hasOwnProperty('error' + jqXHR.status) ? ERRORS['error' + jqXHR.status].title : 'An unexpected error occurred during the Redis status verification process',\n                        description: ERRORS.hasOwnProperty('error' + jqXHR.status) ? ERRORS['error' + jqXHR.status].description : 'Not details Available',\n                    });\n                }).always(() => {\n                    this.view.renderRedisEnableCode();\n                    this.evaluateOverallRequirements();\n                });\n            },\n            evaluateOverallRequirements: function() {\n                if (false == this.get('php-version').status) {\n                    this.set('verified', false);\n                }  else if (false == this.get('php-maximum-execution').status) {\n                    this.set('verified', false);\n                } else if (false == this.get('php-envFile-permission').status) {\n                    this.set('verified', false);\n                } else if (this.get('php-configFiles-permission').hasOwnProperty('configfiles')) {\n                    let configfiles = this.get('php-configFiles-permission').configfiles;\n\n                    let isConfigFilesError;\n                    configfiles.forEach(configfiles => {\n                        let currentConfigFileName = Object.keys(configfiles)[0];\n                        if (!configfiles[currentConfigFileName]) {\n                            isConfigFilesError = true;\n                            this.set('verified', false);\n                        }\n                    });\n\n                    if (! isConfigFilesError) {\n                        this.set('verified', true);\n                    }\n                } else if (this.get('php-extensions').hasOwnProperty('extensions')) {\n                    let extensions = this.get('php-extensions').extensions;\n\n                    let isExtensionError;\n                    extensions.forEach(extension => {\n                        let currentExtensionName = Object.keys(extension)[0];\n                        if (!extension[currentExtensionName]) {\n                            isExtensionError = true;\n                            this.set('verified', false);\n                        }\n                    });\n\n                    if (! isExtensionError) {\n                        this.set('verified', true);\n                    }\n                } else {\n                    this.set('verified', false);\n                }\n\n                if (true === this.get('verified')) {\n                    this.view.wizard.enableNextStep();\n                } else {\n                    this.view.wizard.disableNextStep();\n                }\n            },\n        });\n\n        var UVDeskCommunitySystemRequirementsView = Backbone.View.extend({\n            el: '#wizardSetup',\n            model: undefined,\n            wizard: undefined,\n            events: {\n                \"click .PHPExtensions-toggle-details, .PHPVersion-toggle-details, .PHPPermissionEnvfile-toggle-details, .PHPExeTime-toggle-details, .PHPPermissionConfigfiles-toggle-details, .PHPEnableRedis-toggle-details\": function (e) {\n                    // show and hide extension details\n                    const currentElement = Backbone.$(e.currentTarget)\n                    currentElement.parents('[class*=\"info-container\"]').siblings('.systemCriteria-Details').toggle();\n                    \n                    if (currentElement.html() == \"Show details\") {\n                        currentElement.html(\"Hide details\");\n                    } else {\n                        currentElement.html(\"Show details\");\n                    }\n                }\n            },\n            reference_nodes: {\n                version: undefined,\n                extension: undefined,\n                execution: undefined,\n                permission: undefined,\n                Configfiles: undefined,\n                RedisStatus: undefined,\n            },\n            wizard_icons_loader_template: _.template($(\"#wizardIcons-LoaderTemplate\").html()),\n            wizard_icons_warning_template: _.template($(\"#wizardIcons-WarningTemplate\").html()),\n            wizard_icons_success_template: _.template($(\"#wizardIcons-SuccessTemplate\").html()),\n            wizard_icons_notice_template: _.template($(\"#wizardIcons-NoticeTemplate\").html()),\n            wizard_system_requirements_template: _.template($(\"#installationWizard-SystemRequirementsTemplate\").html()),\n            wizard_system_requirements_php_ver_template: _.template($(\"#installationWizard-SystemRequirementsTemplate-PHPVersion\").html()),\n            wizard_system_requirements_php_enable_redis_template: _.template($(\"#installationWizard-SystemRequirementsTemplate-RedisEnable\").html()),\n            wizard_system_requirements_php_ext_template: _.template($(\"#installationWizard-SystemRequirementsTemplate-PHPExtensions\").html()),\n            wizard_system_requirements_php_exe_template: _.template($(\"#installationWizard-SystemRequirementsTemplate-PHPExecution\").html()),\n            wizard_system_requirements_php_env_template: _.template($(\"#installationWizard-SystemRequirementsTemplate-PHPPermission\").html()),\n            wizard_system_requirements_php_config_template: _.template($(\"#installationWizard-SystemRequirementsTemplate-PHPPermissionConfigfiles\").html()),\n            initialize: function(params) {\n                this.wizard = params.wizard;\n                this.model = new UVDeskCommunitySystemRequirementsModel({ view: this });\n\n                // Render Initial Template\n                this.$el.html(this.wizard_system_requirements_template());\n\n                // Set reference nodes\n                this.reference_nodes.version = this.$el.find('#systemCriteria-PHPVersion');\n                this.reference_nodes.extension = this.$el.find('#systemCriteria-PHPExtensions');\n\n                this.reference_nodes.execution = this.$el.find('#systemCriteria-PHPExecution');\n                this.reference_nodes.permission = this.$el.find('#systemCriteria-PHPPermission');\n                \n                this.reference_nodes.Configfiles = this.$el.find('#systemCriteria-PHPPermissionConfigfiles');\n                this.reference_nodes.RedisStatus = this.$el.find('#systemCriteria-RedisStatus');\n\n                this.renderPHPVersion('verifying');\n                this.renderPHPExtensionsCriteria('verifying');\n\n                this.renderPHPMaximumExecution('verifying');\n                this.renderEnvFilePermission('verifying');\n                this.renderConfigFilesPermission('verifying');\n                this.renderRedisEnableCode('verifying');\n\n                this.model.fetch();\n            },\n            renderPHPVersion: function(status) {\n                this.reference_nodes.version.html(this.wizard_system_requirements_php_ver_template(this.model.get('php-version')));\n                this.reference_nodes.version.find('.PHPVersion-toggle-details').hide();\n                \n                if (false == this.model.get('fetch')) {\n                    this.reference_nodes.version.find('.wizard-svg-icon-criteria-checklist').html(this.wizard_icons_loader_template());\n                    this.reference_nodes.version.find('label').html('Checking currently enabled PHP version');\n                } else {\n                    if (true === this.model.get('php-version').status) {\n                        this.reference_nodes.version.find('.wizard-svg-icon-criteria-checklist').html(this.wizard_icons_success_template());\n                        this.reference_nodes.version.find('label').html(this.model.get('php-version').message);\n                    } else {\n                        this.reference_nodes.version.find('.wizard-svg-icon-criteria-checklist').html(this.wizard_icons_notice_template());\n                        this.reference_nodes.version.find('label').html(this.model.get('php-version').message);\n                        if (this.model.get('php-version').hasOwnProperty('description')) {\n                            this.reference_nodes.version.find('.PHPVersion-toggle-details').show();                        \n                        } \n                        this.reference_nodes.version.find('.systemCriteria-Details').addClass('systemCriteria-Info-Message');\n                        this.reference_nodes.version.find('#systemCriteria-PHPVersion-Details').html(this.model.get('php-version').description);\n                    }\n                }\n            },\n            renderRedisEnableCode: function(status) {\n                this.reference_nodes.RedisStatus.html(this.wizard_system_requirements_php_enable_redis_template(this.model.get('redis-status')));\n                this.reference_nodes.RedisStatus.find('.PHPEnableRedis-toggle-details').hide();\n                var message = this.model.get('redis-status').message;\n\n                if ('undefined' == typeof this.model.get('redis-status').status) {\n                    return;\n                }\n\n                if(true === this.model.get('redis-status').status && typeof message !== 'string') {\n                    this.reference_nodes.RedisStatus.empty();\n                    $('#systemCriteria-RedisStatus').remove();\n                } else {\n                    if (true == this.model.get('redis-status').status) {\n                        this.reference_nodes.RedisStatus.find('.wizard-svg-icon-redis-criteria-checklist').html(this.wizard_icons_success_template()); \n                        this.reference_nodes.RedisStatus.find('label').html(this.model.get('redis-status').message);\n                    } else {\n                        this.reference_nodes.RedisStatus.find('.wizard-svg-icon-redis-criteria-checklist').html(this.wizard_icons_warning_template());\n                        this.reference_nodes.RedisStatus.find('label').html(this.model.get('redis-status').message);\n                        \n                        if (this.model.get('redis-status').hasOwnProperty('description')) {\n                            this.reference_nodes.RedisStatus.find('.wizard-svg-icon-redis-criteria-checklist').html(this.wizard_icons_warning_template());\n                            this.reference_nodes.RedisStatus.find('.PHPEnableRedis-toggle-details').show();\n                        }\n                    }\n\n                    this.reference_nodes.RedisStatus.find('.systemCriteria-Details').addClass('systemCriteria-Info-Message');\n                    this.reference_nodes.RedisStatus.find('.systemCriteria-PHPEnableRedis-Details label').html(this.model.get('redis-status').description);\n                }\n                \n            },\n            renderPHPExtensionsCriteria: function(status) {\n                this.reference_nodes.extension.html(this.wizard_system_requirements_php_ext_template(this.model.get('php-extensions')));\n                \n                if (false == this.model.get('fetch')) {\n                    this.reference_nodes.extension.find('.wizard-svg-icon-criteria-checklist').html(this.wizard_icons_loader_template());\n                    this.reference_nodes.extension.find('label').html('Checking currently enabled PHP extensions');\n                } else if(this.model.get('php-extensions').hasOwnProperty('extensions')) {\n                    var activeExtensionCount = 0;\n                    var extensionCount = this.model.get('php-extensions').extensions.length;\n                    // count the active extensions and set each extension with it's status in the extension list\n                    this.model.get('php-extensions').extensions.forEach(extension => {\n                        let currentExtensionName = Object.keys(extension)[0];\n                        let currentExtensionTemplateInfo = this.reference_nodes.extension.find('#' + currentExtensionName + '-info');\n                        if (extension[currentExtensionName]) {\n                            activeExtensionCount++;\n                            var currentExtensionIconStatus = this.wizard_icons_success_template();\n                            var currentExtensionTextStatus = \"<span class='extension_name'>\" + currentExtensionName + \"</span> extension is currently active.\";\n                        } else {\n                            var currentExtensionIconStatus = this.wizard_icons_notice_template();\n                            if (currentExtensionName == 'imap'){\n                                var currentExtensionTextStatus = \"<span class='extension_name'> PHP \" + currentExtensionName + \" extension </span><p>Need to resolve this issue can be done by reading this blog link:<a href='https://www.php.net/manual/en/imap.setup.php' target='_blank'>How to resolve PHP imap extension</a></p>\";\n                            }\n                            else if(currentExtensionName == 'mailparse'){\n                                var currentExtensionTextStatus = \"<span class='extension_name'> PHP \" + currentExtensionName + \" extension </span><p>Need to resolve this issue can be done by reading this blog link:<a href='https://www.php.net/manual/en/book.mailparse.php' target='_blank'>How to resolve PHP mailparse extension</a></p>\";\n                            }\n                            else{\n                                var currentExtensionTextStatus = \"<span class='extension_name'>\" + currentExtensionName + \"extension is currently inactive</span>\";\n                            }\n                        }\n\n                        currentExtensionTemplateInfo.find('.wizard-svg-icon-criteria-checklist').html(currentExtensionIconStatus);\n                        currentExtensionTemplateInfo.find('label').html(currentExtensionTextStatus);\n                    });\n\n                    // set overall response with the count of active extensions\n                    let extension_info = this.$el.find('#systemCriteria-PHPExtensions');\n                    if (activeExtensionCount < extensionCount) {\n                        var overallExtensionStatus = this.wizard_icons_notice_template();\n                    } else {\n                        var overallExtensionStatus = this.wizard_icons_success_template();\n                    }\n\n                    extension_info.find('.wizard-svg-icon-extension-criteria-checklist').html(overallExtensionStatus);\n                    extension_info.find('.extension-criteria-label').html(\"You meet \" + activeExtensionCount + \" out of \" + extensionCount + \" PHP extensions requirements.\");\n                } else {\n                    this.reference_nodes.extension.find('.wizard-svg-icon-extension-criteria-checklist').html(this.wizard_icons_notice_template());\n                    this.reference_nodes.extension.find('.extension-criteria-label').html(this.model.get('php-extensions').message);\n                    this.reference_nodes.extension.find('#systemCriteria-PHPExtensions-Details').html(this.model.get('php-extensions').description);\n                    this.reference_nodes.extension.find('#systemCriteria-PHPExtensions-Details').addClass('systemCriteria-Info-Message');\n                }\n            },\n            renderPHPMaximumExecution: function(status) {\n                this.reference_nodes.execution.html(this.wizard_system_requirements_php_exe_template(this.model.get('php-maximum-execution')));\n                this.reference_nodes.execution.find('.PHPExeTime-toggle-details').hide();\n                if (false == this.model.get('fetch')) {\n                    this.reference_nodes.execution.find('.wizard-svg-icon-execution-criteria-checklist').html(this.wizard_icons_loader_template());\n                    this.reference_nodes.execution.find('label').html('Checking maximum execution time');\n                } else {\n                    if (true === this.model.get('php-maximum-execution').status) {\n                        this.reference_nodes.execution.find('.wizard-svg-icon-execution-criteria-checklist').html(this.wizard_icons_success_template());\n                        this.reference_nodes.execution.find('label').html(this.model.get('php-maximum-execution').message);\n                    } else {\n                        this.reference_nodes.execution.find('.wizard-svg-icon-execution-criteria-checklist').html(this.wizard_icons_notice_template());\n                        this.reference_nodes.execution.find('label').html(this.model.get('php-maximum-execution').message);\n                        if (this.model.get('php-maximum-execution').hasOwnProperty('description')) {\n                            this.reference_nodes.execution.find('.PHPExeTime-toggle-details').show();\n                        }\n                        this.reference_nodes.execution.find('.systemCriteria-Details').addClass('systemCriteria-Info-Message');\n                        this.reference_nodes.execution.find('#systemCriteria-PHPExecution-Details').html(this.model.get('php-maximum-execution').description);\n                    }\n                }\n            },\n            renderEnvFilePermission: function(status) {\n                this.reference_nodes.permission.html(this.wizard_system_requirements_php_env_template(this.model.get('php-envFile-permission')));\n                this.reference_nodes.permission.find('.PHPPermissionEnvfile-toggle-details').hide();\n\n                if (false == this.model.get('fetch')) {\n                    this.reference_nodes.permission.find('.wizard-svg-icon-permissionEnvfile-criteria-checklist').html(this.wizard_icons_loader_template());\n                    this.reference_nodes.permission.find('label').html('Checking currently enabled .env file');\n                } else {\n                    if (true === this.model.get('php-envFile-permission').status) {\n                        this.reference_nodes.permission.find('.wizard-svg-icon-permissionEnvfile-criteria-checklist').html(this.wizard_icons_success_template());\n                        this.reference_nodes.permission.find('label').html(this.model.get('php-envFile-permission').message);\n                    } else {\n                        this.reference_nodes.permission.find('.wizard-svg-icon-permissionEnvfile-criteria-checklist').html(this.wizard_icons_notice_template());\n                        this.reference_nodes.permission.find('label').html(this.model.get('php-envFile-permission').message);\n                        if (this.model.get('php-envFile-permission').hasOwnProperty('description')) {\n                            this.reference_nodes.permission.find('.PHPPermissionEnvfile-toggle-details').show();\n                        }\n                        this.reference_nodes.permission.find('.systemCriteria-Details').addClass('systemCriteria-Info-Message');\n                        this.reference_nodes.permission.find('#systemCriteria-PHPPermission-Details').html(this.model.get('php-envFile-permission').description);\n                    }\n                }\n            },\n            renderConfigFilesPermission: function(status) {\n                this.reference_nodes.Configfiles.html(this.wizard_system_requirements_php_config_template(this.model.get('php-configFiles-permission')));\n                this.reference_nodes.Configfiles.find('.PHPPermissionConfigfiles-error-message').hide();\n                if (false == this.model.get('fetch')) {\n                    this.reference_nodes.Configfiles.find('.wizard-svg-icon-permissionConfigfiles-criteria-checklist').html(this.wizard_icons_loader_template());\n                    this.reference_nodes.Configfiles.find('label').html('Checking currently enabled Config-files');\n                } else if (this.model.get('php-configFiles-permission').hasOwnProperty('configfiles')) {\n                    var activeconfigfileCount = 0;\n                    var configfileCount = this.model.get('php-configFiles-permission').configfiles.length;\n                    // count the active extensions and set each extension with it's status in the extension list\n                    this.model.get('php-configFiles-permission').configfiles.forEach(configfile => {\n                        let currentConfigFileName = Object.keys(configfile)[0];\n                        let currentconfigfileTemplateInfo = this.reference_nodes.Configfiles.find('#' + currentConfigFileName + '-info');\n                        if (configfile[currentConfigFileName]) {\n                            activeconfigfileCount++;\n                            var currentconfigfileIconStatus = this.wizard_icons_success_template();\n                            var currentConfigFileTextStatus = \"<span class='configfiles_name'>\" + currentConfigFileName + \".yaml </span> read/write file permission is enabled.\";\n                        } else {\n                            var currentconfigfileIconStatus = this.wizard_icons_notice_template();\n                            if (currentConfigFileName == 'uvdesk') {\n                                var currentConfigFileTextStatus = \"<span class='configfiles_name'> \" + currentConfigFileName + \".yaml  read/write file permission is disabled </span>\";\n                            } else if (currentConfigFileName == 'swiftmailer') {\n                                var currentConfigFileTextStatus = \"<span class='configfiles_name'> \" + currentConfigFileName + \".yaml  read/write file permission is disabled </span>\";\n                            } else {\n                                var currentConfigFileTextStatus = \"<span class='configfiles_name'>\" + currentConfigFileName + \".yaml  read/write file permission is disabled </span>\";\n                            }\n                            this.reference_nodes.Configfiles.find('.PHPPermissionConfigfiles-error-message').show();\n                            this.reference_nodes.Configfiles.find('.PHPPermissionConfigfiles-error-message').html(this.model.get('php-configFiles-permission').description)\n                        }\n\n                        currentconfigfileTemplateInfo.find('.wizard-svg-icon-criteria-checklist').html(currentconfigfileIconStatus);\n                        currentconfigfileTemplateInfo.find('label').html(currentConfigFileTextStatus);\n                    });\n                    // set overall response with the count of active extensions\n                   let configFile_info = this.$el.find('#systemCriteria-PHPPermissionConfigfiles');\n                   if (activeconfigfileCount < configfileCount) {\n                       var overallconfigfileStatus = this.wizard_icons_notice_template();\n                   } else {\n                       var overallconfigfileStatus = this.wizard_icons_success_template();\n                   }\n\n                   configFile_info.find('.wizard-svg-icon-permissionConfigfiles-criteria-checklist').html(overallconfigfileStatus);\n                   configFile_info.find('.permissionConfigfiles-criteria-label').html(\"You meet \" + activeconfigfileCount + \" out of \" + configfileCount + \" config files permission.\");\n               } else {\n                   this.reference_nodes.configfiles.find('.wizard-svg-icon-permissionConfigfiles-criteria-checklist').html(this.wizard_icons_notice_template());\n                   this.reference_nodes.configfiles.find('.permissionConfigfiles-criteria-label').html(this.model.get('php-configFiles-permission').message);\n                   this.reference_nodes.configfiles.find('#systemCriteria-PHPPermissionConfigfiles-Details').html(this.model.get('php-configFiles-permission').description);\n                   this.reference_nodes.configfiles.find('#systemCriteria-PHPPermissionConfigfiles-Details').addClass('systemCriteria-Info-Message');\n               }\n           }\n        });\n\n        var UVDeskCommunityInstallationWizardView = Backbone.View.extend({\n            el: '#wizard',\n            router: {},\n            enabled: false,\n            reference_nodes: {\n                header: undefined,\n                content: undefined,\n            },\n            prefix: {\n                member: '/en/member/login',\n                knowledgebase: '/en'\n            },\n            activeSetupProcedure: undefined,\n            wizard_icons_success_template: _.template($(\"#wizardIcons-SuccessTemplate\").html()),\n            wizard_icons_loader_template: _.template($(\"#wizardIcons-LoaderTemplate\").html()),\n            wizard_default_header_template: _.template($(\"#installationWizard-DefaultHeaderTemplate\").html()),\n            wizard_default_content_template: _.template($(\"#installationWizard-DefaultContentTemplate\").html()),\n            wizard_setup_component_template: _.template($(\"#installationWizard-SetupTemplate\").html()),\n            events: {\n                'click #wizardCTA-StartInstallation': function() {\n                    $('.active-node').addClass('check');\n                    $('.active-node').removeClass('active-node');\n                    this.$el.find('.check-requirements').addClass('active-node');\n                    \n                    this.enabled = true;\n                    this.reference_nodes.content.empty();\n                    this.reference_nodes.content.html(this.wizard_setup_component_template());\n\n                    this.router.navigate('check-requirements', { trigger: true });\n                },\n                'click #wizardCTA-IterateInstallation': function() {\n                    if (typeof(this.activeSetupProcedure) != 'undefined') {\n                        this.$el.find('.check-requirements').removeClass('active-node');\n                        this.$el.find('.check-requirements').addClass('check');\n                       \n                        this.timeline.filter((values, index) => {\n                            if (values.isActive && this.timeline[index + 1]) {\n                                var cls = this.timeline[index + 1].path;\n                                this.$el.find('.'+cls).addClass('active-node');\n                            }\n                            if (values.isChecked && this.timeline[index + 1]){\n                                var cls = this.timeline[index + 1].path;\n                                this.$el.find('.'+cls).removeClass('active-node');\n                                this.$el.find('.'+cls).addClass('check');\n                            }\n                        });\n\n                        this.activeSetupProcedure.model.isProcedureCompleted(function ({wizard, model}) {\n                            let activeInstanceIndex = undefined;\n\n                            wizard.timeline.every(function (instance, index) {\n                                if (instance.isActive) {\n                                    instance.model = model;\n                                }\n\n                                if (false == instance.isActive) {\n                                    return true;\n                                }\n                                \n                                activeInstanceIndex = index;\n                                return false;\n                            });\n\n                            if (typeof (activeInstanceIndex) != 'undefined') {\n                                wizard.timeline[activeInstanceIndex].isActive = false;\n                                wizard.timeline[activeInstanceIndex].isChecked = true;\n                                \n                                if (typeof (wizard.timeline[activeInstanceIndex + 1]) !== 'undefined') {\n                                    wizard.router.navigate(wizard.timeline[activeInstanceIndex + 1].path, { trigger: true });\n                                }\n                            }\n                        }.bind(this));\n                    }\n                },\n                'click #wizardCTA-CancelInstallation': function() {\n                    this.router.navigate('welcome', { trigger: true });\n                },\n                'click #wizardCTA-IterateBackward': function()  {\n                    this.timeline.filter((values, index) => {\n                        if (values.isActive && this.timeline[index - 1]) {\n                            if (this.timeline[index].path == 'configure-database') {\n                                this.timeline[index].isActive = false;\n                                this.enabled = true;\n                                this.reference_nodes.content.empty();\n                                this.reference_nodes.content.html(this.wizard_setup_component_template());\n                                this.router.navigate('check-requirements', { trigger: true }); \n                            } else {\n                                this.timeline[index].isActive = false;\n                                this.router.navigate(this.timeline[index - 1].path, { trigger: true });\n                            }\n                        } else if (values.isActive && !this.timeline[index - 1]) {\n                            this.router.navigate('welcome', { trigger: true });\n                        }\n                    });\n                }\n            },\n            timeline: [\n                {\n                    isActive: false,\n                    isChecked: false,\n                    path: 'check-requirements',\n                    view: UVDeskCommunitySystemRequirementsView,\n                    model: UVDeskCommunitySystemRequirementsModel\n                },\n                {\n                    isActive: false,\n                    isChecked: false,\n                    path: 'configure-database',\n                    view: UVDeskCommunityDatabaseConfigurationView,\n                    model: UVDeskCommunityDatabaseConfigurationModel\n                },\n                {\n                    isActive: false,\n                    isChecked: false,\n                    path: 'create-admin',\n                    view: UVDeskCommunityAccountConfigurationView,\n                    model: UVDeskCommunityAccountConfigurationModel\n                },\n                {\n                    isActive: false,\n                    isChecked: false,\n                    path: 'website-prefixes',\n                    view: UVDeskCommunityWebsiteConfigurationView,\n                    model: UVDeskCommunityWebsiteConfigurationModel\n                },\n                {\n                    isActive: false,\n                    isChecked: false,\n                    path: 'install',\n                    view: UVDeskCommunityInstallSetupView,\n                },\n            ],\n            initialize: function(params) {\n                this.router = params.router;\n                this.reference_nodes.header = this.$el.find('#installation-wizard-steps-overview');\n                this.reference_nodes.content = this.$el.find('.installation-wizard-steps-overview-details-container');\n\n                this.renderWizard();\n            },\n            iterateInstallationSteps: function(iteration) {\n                if ('welcome' === iteration) {\n                    this.enabled = false;\n\n                    this.timeline[0].isChecked = false;\n                    this.timeline[1].isChecked = false;\n                    this.timeline[2].isChecked = false;\n                    this.timeline[3].isChecked = false;\n                    this.timeline[4].isChecked = false;\n\n                    this.renderWizard();\n                } else {\n                    if (! this.enabled) {\n                        this.router.navigate('welcome', { trigger: true });\n                    } else {\n                        this.timeline.every(function (installationStep, index) {\n                            if (iteration == installationStep.path && typeof installationStep.view != 'undefined') {\n                                this.timeline[index].isActive = true;\n                                this.renderWizardInstallationStep(installationStep);\n\n                                return false;\n                            } else if (installationStep.isChecked) {\n                                this.timeline[index].isActive = false;\n\n                                return true;\n                            }\n\n                            this.router.navigate('welcome', { trigger: true });\n                            return false;\n                        }.bind(this));\n                    }\n                }\n            },\n            renderWizard: function() {\n                this.reference_nodes.header.html(this.wizard_default_header_template());\n                this.reference_nodes.content.html(this.wizard_default_content_template());\n            },\n            renderWizardInstallationStep: function({view: InstallationWizardTemplateView, model: InstallationWizardTemplateModel}) {\n                this.disableNextStep();\n                this.reference_nodes.content.find('#wizardSetup').empty();\n                this.activeSetupProcedure = new InstallationWizardTemplateView({ wizard: this, existingModel: InstallationWizardTemplateModel});\n            },\n            enableNextStep: function() {\n                this.$el.find('#wizardCTA-IterateInstallation').removeAttr('disabled');\n            },\n            disableNextStep: function() {\n                this.$el.find('#wizardCTA-IterateInstallation').attr('disabled', 'disabled');\n            },\n        });\n\n        var Router = Backbone.Router.extend({\n            wizard: undefined,\n            routes: {\n                ':installationStep': 'iterateInstallationProcedure',\n            },\n            initialize: function() {\n                // Initialize installation wizard\n                this.wizard = new UVDeskCommunityInstallationWizardView({ router: this });\n            },\n            iterateInstallationProcedure: function(installationStep) {\n                this.wizard.iterateInstallationSteps(installationStep);\n            },\n        });\n    \n        new Router();\n        Backbone.history.start({ push_state: true });\n    });\n}) (jQuery);"
  },
  {
    "path": "src/Console/EnvironmentVariables.php",
    "content": "<?php\n\nnamespace App\\Console;\n\nuse Symfony\\Component\\Dotenv\\Dotenv;\nuse Symfony\\Component\\Console\\Command\\Command;\nuse Symfony\\Component\\Console\\Input\\ArrayInput;\nuse Symfony\\Component\\Console\\Output\\NullOutput;\nuse Symfony\\Component\\Console\\Input\\InputArgument;\nuse Symfony\\Component\\Console\\Input\\InputInterface;\nuse Symfony\\Component\\Console\\Output\\OutputInterface;\nuse Symfony\\Component\\DependencyInjection\\ContainerInterface;\n\nclass EnvironmentVariables extends Command\n{\n    private $path;\n    private $conf;\n    private $envvars;\n    private $container;\n\n    public function __construct(ContainerInterface $container)\n    {\n        $this->container = $container;\n\n        parent::__construct();\n    }\n\n    protected function configure()\n    {\n        $this\n            ->setName('uvdesk_wizard:env:update')\n            ->setDescription('Makes changes to .env located in project root to update environment variables.')\n        ;\n\n        $this\n            ->addArgument('name', InputArgument::REQUIRED, \"Name of the environment variable\")\n            ->addArgument('value', InputArgument::REQUIRED, \"Value to set for the evironment variable\")\n        ;\n    }\n\n    protected function initialize(InputInterface $input, OutputInterface $output)\n    {\n        $this->path = $this->container->get('kernel')->getProjectDir() . '/.env';\n        \n        $this->conf = file_get_contents($this->path);\n        $this->envvars = (new Dotenv())->parse($this->conf);\n        $this->envvars[strtoupper($input->getArgument('name'))] = $input->getArgument('value');\n    }\n\n    protected function execute(InputInterface $input, OutputInterface $output)\n    {\n        if ('dev' != $this->container->get('kernel')->getEnvironment()) {\n            throw new \\Exception(\"\\nThis command is only allowed to be used in development environment.\", 500);\n        }\n\n        $read_line = function ($line) {\n            if (trim($line) && trim($line)[0] != '#' && strpos(trim($line), '=') > 0) {\n                try {\n                    list($var, $value) = explode(\"=\", trim($line));\n    \n                    if (isset($this->envvars[strtoupper($var)])) {\n                        return strtoupper($var) . \"=\" . $this->envvars[strtoupper($var)];\n                    }\n                } catch (\\Exception $e) {\n                    // Do nothing\n                }\n            }\n\n            return $line;\n        };\n\n        $stream = array_map($read_line, file($this->path, FILE_IGNORE_NEW_LINES));\n        $stream = implode(\"\\n\", $stream) . \"\\n\";\n\n        if (trim($stream) != trim($this->conf)) {\n            file_put_contents($this->path, $stream);\n        }\n\n        return Command::SUCCESS;\n    }\n}"
  },
  {
    "path": "src/Console/Wizard/ConfigureHelpdesk.php",
    "content": "<?php\n\nnamespace App\\Console\\Wizard;\n\nuse Doctrine\\ORM\\Tools\\Setup;\nuse Doctrine\\ORM\\EntityManager;\nuse Symfony\\Component\\Dotenv\\Dotenv;\nuse Symfony\\Component\\Process\\Process;\nuse Symfony\\Component\\Console\\Command\\Command;\nuse Symfony\\Component\\Console\\Question\\Question;\nuse Symfony\\Component\\Console\\Input\\InputInterface;\nuse Symfony\\Component\\Console\\Output\\BufferedOutput;\nuse Symfony\\Component\\Console\\Output\\OutputInterface;\nuse Symfony\\Component\\DependencyInjection\\ContainerInterface;\nuse Symfony\\Component\\Process\\Exception\\ProcessFailedException;\n\nclass ConfigureHelpdesk extends Command\n{\n    /**\n     * Api endpoint\n     *\n     * @var string\n     */\n    protected const API_ENDPOINT = 'https://updates.uvdesk.com/api/updates';\n\n    CONST CLS = \"\\033[H\"; // Clear screen\n    CONST CLL = \"\\033[K\"; // Clear line\n    CONST MCH = \"\\033[2J\"; // Move cursor home\n    CONST MCA = \"\\033[1A\"; // Move cursor up one point\n\n    private $container;\n    private $entityManager;\n    private $questionHelper;\n\n    private $userName;\n    private $userEmail;\n    private $userInstance;\n\n    public function __construct(ContainerInterface $container)\n    {\n        $this->container = $container;\n\n        parent::__construct();\n    }\n\n    protected function configure()\n    {\n        $this\n            ->setName('uvdesk:configure-helpdesk')\n            ->setDescription('Scans through your helpdesk setup to check for any mis-configurations.')\n        ;\n    }\n\n    protected function initialize(InputInterface $input, OutputInterface $output)\n    {\n        $this->consoleInput = $input;\n        $this->consoleOutput = $output;\n        $this->questionHelper = $this->getHelper('question');\n        $this->projectDirectory = $this->container->getParameter('kernel.project_dir');\n        \n        $env = $this->projectDirectory.'/.env';\n        $var = $this->projectDirectory.'/var';\n        $config = $this->projectDirectory.'/config';\n        $public = $this->projectDirectory.'/public';\n        $migrations = $this->projectDirectory.'/migrations';\n\n        $files = [\n            'env'        => $env,\n            'var'        => $var,\n            'config'     => $config,\n            'public'     => $public,\n            'migrations' => $migrations,\n        ];\n\n        foreach ($files as $file) {\n            if (file_exists($file)) {\n                chmod($file, 0775);\n            }\n        }\n    }\n\n    protected function execute(InputInterface $input, OutputInterface $output)\n    {\n        $output->write([self::MCH, self::CLS]);\n        $output->writeln(\"\\n<comment>  Examining helpdesk setup for any configuration issues:</comment>\\n\");\n        list($db_host, $db_port, $db_name, $db_user, $db_password) = $this->getUpdatedDatabaseCredentials();\n        \n\n        // Check 1: Verify database connection\n        $output->writeln(\"  [-] Establishing a connection with database server\");\n\n        if (extension_loaded('redis')) {\n            $output->writeln(\"\\n<fg=red;>  [x] Redis extension is loaded\");\n            $output->writeln(\"\\n     Please check this <href=https://github.com/uvdesk/community-skeleton/issues/364#issuecomment-780486976>link</> for Redis configuration instructions, in case there is an issue <comment>(connection refused) </comment>while connecting to database.\n     You can add your Redis server host details in the Setup.php file instead of the default port as mentioned in the link.If there are no issues, you can simply \n     ignore this message.</>\\n\\n\");\n        }\n\n        list($isServerAccessible, $isDatabaseAccessible) = $this->refreshDatabaseConnection($db_host, $db_port, $db_name, $db_user, $db_password);\n\n        if (false == $isServerAccessible || false == $isDatabaseAccessible) {\n            $output->writeln(\"<fg=red;>  [x]</> Unable to establish a connection with database server</>\");\n\n            // Interactively prompt user to re-configure their database\n            $interactiveQuestion = new Question(\"\\n      <comment>Proceed with re-configuring your database credentials? [Y/N]</comment> \", 'Y');\n\n            if ('Y' === strtoupper($this->questionHelper->ask($input, $output, $interactiveQuestion))) {\n                $continue = false;\n                $output->write([self::MCA, self::CLL, self::MCA, self::CLL]);\n\n                do {\n                    $continue = false;\n                    $output->writeln(\"\\n      <comment>Please enter the following details:</comment>\\n\");\n    \n                    $db_host = $this->askInteractiveQuestion(\"<info>Database Host</info>: \", '127.0.0.1', 6, false, false, \"Please enter a host address\");\n                    $db_port = $this->askInteractiveQuestion(\"<info>Database Port</info>: \", '3306', 6, false, false, \"Please enter a host port number\");\n                    $db_name = $this->askInteractiveQuestion(\"<info>Database Name</info>: \", null, 6, false, false, \"Please enter name of the database you wish to connect with\");\n                    $db_user = $this->askInteractiveQuestion(\"<info>Database User Name</info>: \", null, 6, false, false, \"Please enter your user name to connect with the database\");\n                    $db_password = $this->askInteractiveQuestion(\"<info>Database User Password</info>: \", null, 6, false, true, \"Please enter your user password to connect with the database\");\n    \n                    $output->write([self::MCA, self::CLL, self::MCA, self::CLL, self::MCA, self::CLL]);\n\n                    list($isServerAccessible, $isDatabaseAccessible) = $this->refreshDatabaseConnection($db_host, $db_port, $db_name, $db_user, $db_password);\n\n                    if (false == $isServerAccessible) {\n                        $interactiveQuestion = new Question(\"\\n      <comment>Unable to connect with your database server, please check the details provided.\\n      Do you wish to try again? [Y/N]</comment> \", 'Y');\n\n                        if ('Y' === strtoupper($this->questionHelper->ask($input, $output, $interactiveQuestion))) {\n                            $continue = true;\n                        }\n\n                        $output->write([self::MCA, self::CLL, self::MCA, self::CLL, self::MCA, self::CLL]);\n                    } else if (false == $isDatabaseAccessible) {\n                        $interactiveQuestion = new Question(\"\\n      <comment>Database <comment>$db_name</comment> does not exist. Proceed with creating database? [Y/N]</comment> \", 'Y');\n\n                        if ('Y' === strtoupper($this->questionHelper->ask($input, $output, $interactiveQuestion))) {\n                            $output->write([self::MCA, self::CLL, self::MCA, self::CLL]);\n                            \n                            // Create Database\n                            if (false == $this->createDatabase($db_host, $db_port, $db_name, $db_user, $db_password)) {\n                                $output->writeln([\n                                    \"<fg=red;>  [x]</> An unexpected error occurred while trying to create database <comment>$db_name</comment>.</>\",\n                                    \"\\n  Exiting evaluation process.\\n\"\n                                ]);\n                            }\n                        } else {\n                            $output->write([self::MCA, self::CLL, self::MCA, self::CLL]);\n\n                            $interactiveQuestion = new Question(\"\\n      <comment>Unable to connect with your database server, please check the details provided.\\n      Do you wish to try again? [Y/N]</comment> \", 'Y');\n\n                            if ('Y' === strtoupper($this->questionHelper->ask($input, $output, $interactiveQuestion))) {\n                                $continue = true;\n                            }\n\n                            $output->write([self::MCA, self::CLL, self::MCA, self::CLL, self::MCA, self::CLL]);\n                        }\n                    }\n                } while (true == $continue);\n\n                list($isServerAccessible, $isDatabaseAccessible) = $this->refreshDatabaseConnection($db_host, $db_port, $db_name, $db_user, $db_password);\n\n                if (true == $isServerAccessible && true == $isDatabaseAccessible) {\n                    $databaseUrl = sprintf(\"mysql://%s:%s@%s:%s/%s\", $db_user, $db_password, $db_host, $db_port, $db_name);\n\n                    $output->writeln(\"\\n  [-] Switching to database <info>$db_name</info>\");\n\n                    try {\n                        $process = new Process([\"php\", \"bin/console\", \"uvdesk_wizard:env:update\", \"DATABASE_URL\", $databaseUrl]);\n                        $process->setWorkingDirectory($this->projectDirectory);\n                        $process->mustRun();\n\n                        $output->writeln(\"  <info>[v]</info> Successfully switched to database <info>$db_name</info>\\n\");\n                    } catch (\\Exception $e) {\n                        $output->writeln([\n                            \"<fg=red;>  [x]</> Failed to update .env with updated database credentials.</>\",\n                            \"\\n  Exiting evaluation process.\\n\"\n                        ]);\n\n                        return 1;\n                    }\n                } else {\n                    $output->writeln(\"\\n  Exiting evaluation process.\\n\");\n\n                    return 1;\n                }\n            } else {\n                $output->write([\"\\033[1A\", \"\\033[K\", \"\\033[1A\", \"\\033[K\"]);\n                $output->writeln(\"\\n  Exiting evaluation process.\\n\");\n\n                return 1;\n            }\n        } else {\n            $output->writeln(\"  <info>[v]</info> Successfully established a connection with database <info>$db_name</info>\\n\");\n        }\n        \n        // Check 2: Ensure entities have been loaded\n        $output->writeln(\"  [-] Comparing the <info>$db_name</info> database schema with the current mapping metadata.\");\n        \n        try {\n            // Get the current database migration version\n            $currentMigrationVersion = $this->getLatestMigrationVersion(new BufferedOutput());\n\n            // Version migrations\n            $process = new Process([\"php\", \"bin/console\", \"doctrine:migrations:version\", \"--add\", \"--all\", \"--no-interaction\"]);\n            $process->setWorkingDirectory($this->projectDirectory);\n            $process->run();\n\n            // Compare the current database migration version against database and create a new migration version accordingly.\n            $process = new Process([\"php\", \"bin/console\", \"doctrine:migrations:diff\", \"--quiet\"]);\n            $process->setWorkingDirectory($this->projectDirectory);\n            $process->mustRun();\n\n            $process = new Process([\"php\", \"bin/console\", \"doctrine:migrations:status\", \"--quiet\"]);\n            $process->setWorkingDirectory($this->projectDirectory);\n            $process->run();\n\n            // Get the latest database migration version\n            $latestMigrationVersion = $this->getLatestMigrationVersion(new BufferedOutput());\n\n            if ($currentMigrationVersion != $latestMigrationVersion) {\n                $output->writeln(\"  <comment>[!]</comment> The current database schema is not up-to-date with the current mapping metadata.\");\n                $interactiveQuestion = new Question(\"\\n      <comment>Update your database schema to the current mapping metadata? [Y/N]</comment> \", 'Y');\n    \n                if ('Y' === strtoupper($this->questionHelper->ask($input, $output, $interactiveQuestion))) {\n                    $output->writeln([\n                        \"\",\n                        \"      Please wait while your database is being migrated from version <comment>$currentMigrationVersion</comment> to <info>$latestMigrationVersion</info>.\",\n                        \"      This could take up to a few minutes.\\n\",\n                    ]);\n\n                    try {\n                        // Migrate database to latest schematic version\n                        $process = new Process([\"php\", \"bin/console\", \"doctrine:migrations:migrate\", \"--no-interaction\", \"--quiet\"]);\n                        $process->setTimeout(900);\n                        $process->setWorkingDirectory($this->projectDirectory);\n                        $process->mustRun();\n    \n                        // Load database fixtures to populate initial dataset\n                        $process = new Process([\"php\", \"bin/console\", \"doctrine:fixtures:load\", \"--append\"]);\n                        $process->setTimeout(120);\n                        $process->setWorkingDirectory($this->projectDirectory);\n                        $process->mustRun();\n\n                        $output->writeln(\"  <info>[v]</info> Database successfully migrated to the latest migration version <comment>$latestMigrationVersion</comment> to <info>$latestMigrationVersion</info>.\\n\");\n                    } catch (\\Exception $e) {\n                        $errorMessage = $e->getMessage();\n                        $output->writeln([\n                            \"\\n  <fg=red;>[x]</> Unable to successfully migrate to latest database schematic version.($errorMessage)\",\n                            \"\\n  Exiting evaluation process.\\n\"\n                        ]);\n        \n                        return 1;\n                    }\n                } else {\n                    $output->writeln([\n                        \"\\n  <fg=red;>[x]</> There are entities that have not been updated to the <info>$databaseName</info> database yet.\",\n                        \"\\n  Exiting evaluation process.\\n\"\n                    ]);\n    \n                    return 1;\n                }\n            } else {\n                $output->writeln([\n                    \"\\n  <fg=red;>[x]</> Unable to correctly determine database schema version.\",\n                    \"\\n  Exiting evaluation process.\\n\"\n                ]);\n\n                return 1;\n            }\n        } catch (\\Exception $e) {\n            // Database is up-to-date. Do nothing.\n            $output->writeln(\"  <info>[v]</info> The current database schema is up-to-date with the current mapping metdata.\\n\");\n        }\n\n        // Check 3: Check if super admin account exists\n        $output->writeln(\"  [-] Checking if an active super admin account exists\");\n        $userInstance = null;\n        $database = new \\PDO(\"mysql:host=$db_host:$db_port;dbname=$db_name\", $db_user, $db_password);\n\n        $supportRoleQuery = $database->query(\"SELECT * FROM uv_support_role WHERE code = 'ROLE_SUPER_ADMIN'\");\n        $supportRole = $supportRoleQuery->fetch(\\PDO::FETCH_ASSOC);\n\n        $userInstanceQuery = $database->prepare(\"SELECT * FROM uv_user_instance WHERE supportRole_id = :supportRoleId\");\n        $userInstanceQuery->execute(['supportRoleId' => (int) $supportRole['id']]);\n        $userInstance = $userInstanceQuery->fetch(\\PDO::FETCH_ASSOC);\n\n        // Get user based on the user instance\n        if ($userInstance) {\n            $userQuery = $database->prepare(\"SELECT * FROM uv_user WHERE id = :userId\");\n            $userQuery->execute(['userId' => (int) $userInstance['user_id']]);\n            $user = $userQuery->fetch(\\PDO::FETCH_ASSOC);\n            $this->userInstance = $user;\n        }\n\n        if (empty($userInstance)) {\n            $output->writeln(\"  <comment>[!]</comment> No active user account found with super admin privileges.\");\n            $interactiveQuestion = new Question(\"\\n      <comment>Create a new user account with super admin privileges? [Y/N]</comment> \", 'Y');\n\n            if ('Y' === strtoupper($this->questionHelper->ask($input, $output, $interactiveQuestion))) {\n                $output->write([\"\\033[1A\", \"\\033[K\", \"\\033[1A\", \"\\033[K\"]);\n                $output->writeln(\"\\n      <comment>Please enter the following details:</comment>\\n\");\n    \n                $warningFlag = false;\n\n                do {\n                    $u_email = $this->askInteractiveQuestion(\"<info>Email</info>: \", null, 6, false, false, \"Please enter a valid email address\");\n                    $u_email = filter_var($u_email, FILTER_SANITIZE_EMAIL);\n                    $this->userEmail = $u_email;\n\n                    if ($warningFlag) {\n                        $output->write([self::MCA, self::CLL]);\n                    }\n    \n                    if (false == filter_var($u_email, FILTER_VALIDATE_EMAIL)) {\n                        $output->writeln(\"      <comment>Warning</comment>: <comment>$u_email</comment> is not a valid email address\");\n                        $warningFlag = true;\n                    }\n                } while (false == filter_var($u_email, FILTER_VALIDATE_EMAIL));\n\n                $u_name = $this->askInteractiveQuestion(\"<info>Name</info>: \", null, 6, false, false, \"Please enter your name\");\n\n                $warningFlag = false;\n                $this->userName = $u_name;\n\n                do {\n                    $u_password = $this->askInteractiveQuestion(\"<info>Password</info>: \", null, 6, false, true, \"Please enter your password\");\n                    $u_cpassword = $this->askInteractiveQuestion(\"<info>Confirm Password</info>: \", null, 6, false, true, \"Please enter your password\");\n\n                    if ($warningFlag) {\n                        $output->write([self::MCA, self::CLL]);\n                    }\n    \n                    if ($u_password != $u_cpassword) {\n                        $output->writeln(\"      <comment>Warning</comment>: Passwords do not match\");\n                        $warningFlag = true;\n                    }\n                } while ($u_password != $u_cpassword);\n\n                $output->write([self::MCA, self::CLL, self::MCA, self::CLL, self::MCA, self::CLL]);\n\n                try {\n                    $process = new Process([\"php\", \"bin/console\", \"uvdesk_wizard:defaults:create-user\", \"ROLE_SUPER_ADMIN\",  trim($u_name), $u_email, $u_password, '--no-interaction']);\n        \n                    $process->setWorkingDirectory($this->projectDirectory);\n                    $process->mustRun();\n\n                    $output->writeln(\"  <info>[v]</info> User account created successfully.\\n\");\n                } catch (ProcessFailedException $e) {\n                    $errorMessage = $e->getMessage();\n                    // Do nothing ...\n                    $output->writeln([\n                        \"  <fg=red;>[x]</> An unexpected error occurred while creating the user account($errorMessage).\\n\",\n                        \"\\n  Exiting evaluation process.\\n\"\n                    ]);\n\n                    return 1;\n                }\n            } else {\n                $output->writeln(\"\\n  <comment>[!]</comment> Skipping creation of a super admin account.\");\n            }\n        } else {\n            $output->writeln(\"  <info>[v]</info> An account with support role <comment>SUPER_ADMIN</comment> exists.\\n\");\n        }\n\n        $output->writeln(\"  Exiting evaluation process.\\n\");\n\n        if (\n            ! $this->userEmail\n            && ! $this->userName\n        ) {\n            $this->userEmail = $this->userInstance['email'];\n            $this->userName = $this->userInstance['first_name'] . ' ' . $this->userInstance['last_name'];\n        }\n\n        $userDetails =[\n            'name'   => $this->userName,\n            'email'  => $this->userEmail,\n            'domain' => $this->container->getParameter('uvdesk.site_url'),\n        ];\n\n        // uvdesk tracker\n        $this->addUserDetailsInTracker($userDetails);\n\n        return Command::SUCCESS;\n    }\n\n    /**\n     * This method create a record in the uvdesk tracker during installation of the project via terminal or    widget installer \n     * \n     * @param array $userDetails\n     * @throws \\Exception\n     * @return void\n     */\n    public static function addUserDetailsInTracker($userDetails = [])\n    {\n        try {\n            // Initialize cURL session\n            $ch = curl_init(self::API_ENDPOINT);\n\n            // Set the headers\n            $headers = [\n                'Accept: application/json',\n                'Content-Type: application/json',\n            ];\n\n            // Prepare the data to be sent in JSON format\n            $data = [\n                'domain'       => $userDetails['domain'],\n                'email'        => $userDetails['email'],\n                'name'         => $userDetails['name'],\n                'country_code' => null,\n            ];\n\n            // Convert data to JSON\n            $jsonData = json_encode($data);\n\n            // Set cURL options\n            curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);\n            curl_setopt($ch, CURLOPT_POST, true);\n            curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);\n            curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonData);\n\n            // Execute cURL request\n            $response = curl_exec($ch);\n\n            // Check if any error occurred\n            if ($response === false) {\n                $error = curl_error($ch);\n                $errorCode = curl_errno($ch);\n                throw new \\Exception(\"cURL Error: $error (Code: $errorCode)\");\n            }\n\n            // Close cURL session\n            curl_close($ch);\n        } catch (\\Exception $e) {\n        }\n    }\n\n    /**\n     * Checks whether the given database params are valid or not.\n     *\n     * @param string $host\n     * @param string $port\n     * @param string $name\n     * @param string $user\n     * @param string $password\n     * \n     * @return boolean\n     */\n    private function refreshDatabaseConnection($host, $port, $name, $user, $password)\n    {\n        $response = [\n            'isServerAccessible'   => true,\n            'isDatabaseAccessible' => true,\n        ];\n\n        $entityManager = EntityManager::create([\n            'driver'   => 'pdo_mysql',\n            \"host\"     => $host,\n            \"port\"     => $port,\n            'user'     => $user,\n            'password' => $password,\n        ], Setup::createAnnotationMetadataConfiguration(['src/Entity'], false));\n        \n        $databaseConnection = $entityManager->getConnection();\n\n        if (false == $databaseConnection->isConnected()) {\n            try {\n                $databaseConnection->connect();\n                $response['isServerAccessible'] = true;\n            } catch (\\Exception $e) {\n                return false;\n            }\n        }\n\n        if (! in_array($name, $databaseConnection->getSchemaManager()->listDatabases())) {\n            $response['isDatabaseAccessible'] = false;\n        }\n\n        return [$response['isServerAccessible'], $response['isDatabaseAccessible']];\n    }\n\n    /**\n     * Creates a database if not found.\n     *\n     * @param string $host\n     * @param string $port\n     * @param string $name\n     * @param string $user\n     * @param string $password\n     * \n     * @return boolean\n     */\n    private function createDatabase($host, $port, $name, $user, $password)\n    {\n        $entityManager = EntityManager::create([\n            'driver'   => 'pdo_mysql',\n            \"host\"     => $host,\n            \"port\"     => $port,\n            'user'     => $user,\n            'password' => $password,\n        ], Setup::createAnnotationMetadataConfiguration(['src/Entity'], false));\n        \n        $databaseConnection = $entityManager->getConnection();\n\n        if (false == $databaseConnection->isConnected()) {\n            try {\n                $databaseConnection->connect();\n            } catch (\\Doctrine\\DBAL\\DBALException $e) {\n                return false;\n            }\n        }\n\n        if (! in_array($name, $databaseConnection->getSchemaManager()->listDatabases())) {\n            try {\n                // Create database\n                $databaseConnection->getSchemaManager()->createDatabase($databaseConnection->getDatabasePlatform()->quoteSingleIdentifier($name));\n            } catch (\\Exception $e) {\n                return false;\n            }\n        }\n\n        return true;\n    }\n\n    /**\n     * Get updated database credentials as given in .env located in project root.\n     * \n     * @return array\n    */\n    private function getUpdatedDatabaseCredentials()\n    {\n        $env = (new Dotenv())\n            ->parse(file_get_contents($this->container->getParameter('kernel.project_dir') . '/.env'));\n        \n        $it = explode('@', substr($env['DATABASE_URL'], strpos($env['DATABASE_URL'], \"://\") + 3));\n        \n        $name = substr($it[1], strpos($it[1], \"/\") + 1);\n        list($user, $password) = explode(':', $it[0]);\n        list($host, $port) = explode(':', substr($it[1], 0, strpos($it[1], \"/\")));\n\n        return [$host, $port, $name, $user, $password];\n    }\n\n    /**\n     * Retrieve the latest migration version.\n     * \n     * @param OutputInterface   $bufferedOutput\n     * \n     * @return string\n    */\n    private function getLatestMigrationVersion(OutputInterface $bufferedOutput)\n    {\n        try {\n            $process = new Process([\"php\", \"bin/console\", \"doctrine:migrations:latest\"]);\n            $process->setWorkingDirectory($this->projectDirectory);\n            $process->mustRun();\n\n            return trim($process->getOutput());\n        } catch (ProcessFailedException $e) {\n            // Do nothing ...\n        }\n\n        return 0;\n    }\n\n    /**\n     * Generic prompt to ask for an input from user\n     *\n     * @param string $question\n     * @param string $default\n     * @param integer $indentLength\n     * @param boolean $nullable\n     * @param boolean $secure\n     * @param string $warningMessage\n     * \n     * @return string\n     */\n    private function askInteractiveQuestion($question, $default, int $indentLength = 6, bool $nullable = true, bool $secure = false, $warningMessage = \"\")\n    {\n        $flag = false;\n        $indent = str_repeat(' ', $indentLength);\n\n        do {\n            $prompt = new Question($indent . $question, $default);\n\n            // Hide user input\n            if (true == $secure) {\n                $prompt->setHidden(true);\n                $prompt->setHiddenFallback(false);\n            }\n\n            $input = $this->questionHelper->ask($this->consoleInput, $this->consoleOutput, $prompt);\n            $this->consoleOutput->write(false == $flag ? [self::MCA, self::CLL] : [self::MCA, self::CLL, self::MCA, self::CLL]);\n\n            if (empty($input) && false == $nullable && empty($default)) {\n                if (! empty($default)) {\n                    $input = $default;\n                } else if (false == $nullable) {\n                    $flag = true;\n                    $this->consoleOutput->writeln(\"$indent<comment>Warning</comment>: \" . ($warningMessage ?? \"Please enter a valid value\"));\n                }\n            }\n        } while (empty($input) && false == $nullable);\n\n        return $input ?? null;\n    }\n}\n"
  },
  {
    "path": "src/Console/Wizard/DefaultUser.php",
    "content": "<?php\n\nnamespace App\\Console\\Wizard;\n\nuse Doctrine\\ORM\\EntityManagerInterface;\nuse Symfony\\Component\\Console\\Command\\Command;\nuse Symfony\\Component\\Console\\Question\\Question;\nuse Symfony\\Component\\Console\\Input\\InputOption;\nuse Symfony\\Component\\Console\\Input\\InputArgument;\nuse Symfony\\Component\\Console\\Input\\InputInterface;\nuse Symfony\\Component\\Console\\Output\\OutputInterface;\nuse Symfony\\Component\\Console\\Question\\ConfirmationQuestion;\nuse Symfony\\Component\\DependencyInjection\\ContainerInterface;\nuse Symfony\\Component\\Security\\Core\\Encoder\\UserPasswordEncoderInterface;\nuse Webkul\\UVDesk\\CoreFrameworkBundle\\Entity\\SupportRole;\nuse Webkul\\UVDesk\\CoreFrameworkBundle\\Entity\\User;\nuse Webkul\\UVDesk\\CoreFrameworkBundle\\Entity\\UserInstance;\n\nclass DefaultUser extends Command\n{\n    private $user;\n    private $role;\n    private $container;\n    private $entityManager;\n    private $questionHelper;\n\n    public function __construct(ContainerInterface $container, EntityManagerInterface $entityManager, UserPasswordEncoderInterface $encoder)\n    {\n        $this->container = $container;\n        $this->entityManager = $entityManager;\n        $this->encoder = $encoder;\n\n        parent::__construct();\n    }\n\n    protected function configure()\n    {\n        $this\n            ->setName('uvdesk_wizard:defaults:create-user')\n            ->setDescription('Creates a new user instance')\n            ->setHidden(true)\n        ;\n        \n        $this\n            ->addArgument('role', InputArgument::REQUIRED, \"Access level of the user restricting access to parts of helpdesk system\")\n            ->addArgument('name', InputArgument::OPTIONAL, \"Name of the user\")\n            ->addArgument('email', InputArgument::OPTIONAL, \"Email address of the user\")\n            ->addArgument('password', InputArgument::OPTIONAL, \"Password of the user account\")\n        ;\n    }\n\n    protected function initialize(InputInterface $input, OutputInterface $output)\n    {\n        $this->user = new User();\n        $this->questionHelper = $this->getHelper('question');\n    }\n\n    protected function interact(InputInterface $input, OutputInterface $output)\n    {\n        // Check if the provided role is valid. Skip otherwise.\n        $this->role = $this->entityManager->getRepository(SupportRole::class)->findOneByCode($input->getArgument('role'));\n        \n        if (empty($this->role)) {\n            return;\n        }\n\n        $output->writeln(\"\\n      Please enter the following user details:\\n\");\n\n        // Prompt Email\n        $email = $this->promptUserEmailInteractively($input, $output);\n        \n        // Retrieve existing user or generate new empty user\n        $this->user = $this->entityManager->getRepository(User::class)->findOneByEmail($email) ?: $this->user->setEmail($email);\n\n        // Prompt user name\n        $username = trim($this->user->getFirstName() . ' ' . $this->user->getLastName());\n        $username = $this->promptUserNameInteractively($input, $output, $username);\n        $username = explode(' ', $username, 2);\n\n        $this->user->setFirstName($username[0]);\n        $this->user->setLastName(!empty($username[1]) ? $username[1] : '');\n        \n        // Prompt user password if not set\n        if ($this->user->getPassword() == null) {\n            $password = null;\n            $confirmPassword = null;\n            $warningFlag = false;\n\n            do {\n                if ($password != $confirmPassword) {\n                    $warningFlag = true;\n                    $output->writeln(\"      <comment>Warning</comment>: Passwords do not match\");\n                }\n\n                $password = $this->promptUserPasswordInteractively($input, $output);\n                \n                if ($warningFlag) {\n                    $output->write(\"\\033[1A\");\n                    $output->write(\"\\033[K\");\n                }\n\n                $confirmPassword = $this->promptUserPasswordInteractively($input, $output, true);\n            } while ($password != $confirmPassword);\n\n            $encodedPassword = $this->encoder->encodePassword($this->user, $password);\n            $this->user->setPassword($encodedPassword);\n        }\n\n        for ($i = 0; $i < 5; $i++) {\n            $output->write(\"\\033[1A\");\n            $output->write(\"\\033[K\");\n        }\n\n        return;\n    }\n\n    protected function execute(InputInterface $input, OutputInterface $output)\n    {\n        if ($input->getOption('no-interaction')) {\n            $name = $input->getArgument('name');\n            $email = $input->getArgument('email');\n            $password = $input->getArgument('password');\n            \n            // Check if the provided role is valid. Skip otherwise.\n            $this->role = $this->entityManager->getRepository(SupportRole::class)->findOneByCode($input->getArgument('role'));\n            \n            if (empty($name) || empty($email) | empty($password)) {\n                $output->writeln(\"\\n      <fg=red;>[Error]</> Insufficient arguments provided.\");\n\n                return 2;\n            } else if (empty($this->role)) {\n                $output->writeln(\"\\n      <fg=red;>[Error]</> No valid support role provided.\");\n\n                return 2;\n            } else {\n                $this->user = $this->entityManager->getRepository(User::class)->findOneByEmail($email) ?: $this->user->setEmail($email);\n\n                $username = explode(' ', $name, 2);\n                $encodedPassword = $this->encoder->encodePassword($this->user, $password);\n\n                $this->user\n                    ->setFirstName($username[0])\n                    ->setLastName(!empty($username[1]) ? $username[1] : null)\n                    ->setPassword($encodedPassword);\n            }\n        } else if (empty($this->role)) {\n            $output->writeln(\"\\n      <fg=red;>[Error]</> No support role found for code <comment>\" . $input->getArgument('role') . \"</comment>.\");\n\n            return 2;\n        }\n        \n        $accountExistsFlag = false;\n\n        if ($this->user->getId() != null) {\n            // If user id is set, that means the entity has been persisted to database before. Check for any existing accounts\n            $targetRole = $this->role->getId();\n            $userInstanceCollection = $this->entityManager->getRepository(UserInstance::class)->findByUser($this->user);\n\n            foreach ($userInstanceCollection as $userInstance) {\n                $userRole = $userInstance->getSupportRole()->getId();\n\n                // Check if user account exists with the opted user permission level\n                if (in_array($targetRole, [1, 2, 3]) && in_array($userRole, [1, 2, 3])) {\n                    // User is being set for an member level role\n                    $accountExistsFlag = true;\n                    break;\n                } else if ($targetRole == 4 && $userRole == $targetRole) {\n                    // User is being set for a customer level role\n                    $accountExistsFlag = true;\n                    break;\n                }\n            }\n        } else {\n            $this->user->setIsEnabled(true);\n        }\n\n        if (false === $accountExistsFlag) {\n            $this->entityManager->persist($this->user);\n            $this->entityManager->flush();\n\n            $userInstance = new UserInstance();\n            $userInstance->setSource('website');\n            $userInstance->setIsActive(true);\n            $userInstance->setIsVerified(true);\n            $userInstance->setUser($this->user);\n            $userInstance->setSupportRole($this->role);\n\n            $this->entityManager->persist($userInstance);\n            $this->entityManager->flush();\n        } else {\n            return 1;\n        }\n\n        return Command::SUCCESS;\n    }\n\n    private function promptUserEmailInteractively(InputInterface $input, OutputInterface $output)\n    {\n        $email = null;\n        $warningFlag = false;\n\n        do {\n            $email = $this->questionHelper->ask($input, $output, new Question(\"      <info>Email</info>: \", $email));\n            $output->write(\"\\033[1A\");\n            $output->write(\"\\033[K\");\n\n            if ($warningFlag) {\n                $output->write(\"\\033[1A\");\n                $output->write(\"\\033[K\");\n            }\n\n            if (empty($email)) {\n                $output->writeln(\"      <comment>Warning</comment>: Email address cannot be left blank\");\n                $warningFlag = true;\n            } else {\n                $email = filter_var($email, FILTER_SANITIZE_EMAIL);\n\n                if (false == filter_var($email, FILTER_VALIDATE_EMAIL)) {\n                    $output->writeln(\"      <comment>Warning</comment>: <comment>$email</comment> is not a valid email address\");\n                    $email = null;\n                    $warningFlag = true;\n                }\n            }\n        } while (empty($email));\n\n        return $email;\n    }\n\n    private function promptUserNameInteractively(InputInterface $input, OutputInterface $output, $username = '')\n    {\n        $warningFlag = false;\n\n        do {\n            if (empty($username)) {\n                $question = new Question(\"      <info>Name</info>: \", $username);\n            } else {\n                $question = new Question(\"      <info>Name</info> <comment>[$username]</comment>: \", $username);\n                $question->setAutocompleterValues((array) $username);\n            }\n\n            $username = $this->questionHelper->ask($input, $output, $question);\n            $output->write(\"\\033[1A\");\n            $output->write(\"\\033[K\");\n\n            if ($warningFlag) {\n                $output->write(\"\\033[1A\");\n                $output->write(\"\\033[K\");\n            }\n\n            if (empty($username)) {\n                $warningFlag = true;\n                $output->writeln(\"      <comment>Warning<comment>: Name of the user cannot be left blank\");\n            }\n        } while (empty($username));\n\n        return $username;\n    }\n\n    private function promptUserPasswordInteractively(InputInterface $input, OutputInterface $output, $confirmDialog = false)\n    {\n        $password = null;\n        $warningFlag = false;\n\n        do {\n            $prompt = new Question(sprintf(\"      <info>%sPassword</info>: \", $confirmDialog ? 'Confirm ' : ''));\n            $prompt->setHidden(true);\n            $prompt->setHiddenFallback(false);\n\n            $password = $this->questionHelper->ask($input, $output, $prompt);\n            $output->write(\"\\033[1A\");\n            $output->write(\"\\033[K\");\n            \n            if ($warningFlag) {\n                $output->write(\"\\033[1A\");\n                $output->write(\"\\033[K\");\n            }\n\n            if (false == $confirmDialog && empty($password)) {\n                $warningFlag = true;\n                $output->writeln(sprintf(\"      <comment>Warning</comment>: %sPassword cannot be left blank\", $confirmDialog ? 'Confirm ' : ''));\n            } else if (false == $confirmDialog && (strlen($password) < 8 || strlen($password) > 32)) {\n                $warningFlag = true;\n                // Sanitize password and compare if they match\n                $output->writeln(\"      <comment>Warning</comment>: Password needs to be 8-32 characters long\");\n                $password = null;\n            }\n        } while (false == $confirmDialog && empty($password));\n\n        return $password;\n    }\n}\n"
  },
  {
    "path": "src/Console/Wizard/MigrateDatabase.php",
    "content": "<?php\n\nnamespace App\\Console\\Wizard;\n\nuse Doctrine\\DBAL\\DBALException;\nuse Doctrine\\ORM\\EntityManagerInterface;\nuse Symfony\\Component\\Console\\Command\\Command;\nuse Symfony\\Component\\Console\\Input\\InputInterface;\nuse Symfony\\Component\\Console\\Input\\ArrayInput as ConsoleOptions;\nuse Symfony\\Component\\Console\\Output\\BufferedOutput;\nuse Symfony\\Component\\Console\\Output\\NullOutput;\nuse Symfony\\Component\\Console\\Output\\OutputInterface;\nuse Symfony\\Component\\DependencyInjection\\ContainerInterface;\n\nclass MigrateDatabase extends Command\n{\n    private $container;\n    private $entityManager;\n\n    public function __construct(ContainerInterface $container, EntityManagerInterface $entityManager)\n    {\n        $this->container = $container;\n        $this->entityManager = $entityManager;\n\n        parent::__construct();\n    }\n\n    protected function configure()\n    {\n        $this\n            ->setName('uvdesk_wizard:database:migrate')\n            ->setDescription('Migrate or initialize database depending on schema status.')\n            ->setHidden(true);\n    }\n\n    protected function execute(InputInterface $input, OutputInterface $output)\n    {\n        if (!$this->isDatabaseConfigurationValid()) {\n            $output->writeln('<error>Invalid database configuration.</error>');\n\n            return Command::FAILURE;\n        }\n\n        $connection = $this->entityManager->getConnection();\n        $schemaManager = method_exists($connection, 'createSchemaManager')\n            ? $connection->createSchemaManager() // DBAL 3\n            : $connection->getSchemaManager();   // DBAL 2\n\n        $tables = $schemaManager->listTableNames();\n\n        if (empty($tables)) {\n            // ✅ FRESH INSTALL - Generate schema & load fixtures\n            $output->writeln('<info>Fresh database detected. Creating schema...</info>');\n\n            // Create schema\n            $this->runCommand('doctrine:schema:create', ['--no-interaction' => true], $output);\n\n            // Load fixtures\n            $output->writeln('<info>Loading default fixtures...</info>');\n            $this->runCommand('doctrine:fixtures:load', ['--no-interaction' => true, '--quiet' => true], $output);\n\n            $output->writeln('<info>Fresh installation complete.</info>');\n\n            return Command::SUCCESS;\n        }\n\n        // ✅ EXISTING DB - Proceed with normal migration flow\n        $this->runCommand('doctrine:migrations:sync-metadata-storage', ['--quiet' => true], new NullOutput());\n\n        try {\n            $currentVersion = $this->getLatestMigrationVersion(new BufferedOutput());\n        } catch (\\Exception $e) {\n            $currentVersion = '0';\n        }\n\n        // Create migration version if needed\n        $this->versionMigrations($output);\n\n        try {\n            $latestVersion = $this\n                ->compareMigrations($output)\n                ->getLatestMigrationVersion(new BufferedOutput());\n\n            if ($currentVersion !== $latestVersion) {\n                $this->migrateDatabaseToLatestVersion(new NullOutput());\n                $output->writeln('<info>Database migrated to latest version.</info>');\n            } else {\n                $output->writeln('<info>Database is already up to date.</info>');\n            }\n        } catch (\\Exception $e) {\n            $output->writeln('<error>Error during migration: ' . $e->getMessage() . '</error>');\n        }\n\n        return Command::SUCCESS;\n    }\n\n    private function versionMigrations(OutputInterface $output)\n    {\n        $this->runCommand('doctrine:migrations:version', [\n            '--add' => true,\n            '--all' => true,\n            '--quiet' => true\n        ], $output);\n    }\n\n    private function compareMigrations(OutputInterface $output)\n    {\n        $this->runCommand('doctrine:migrations:diff', ['--quiet' => true], new NullOutput());\n        $this->runCommand('doctrine:migrations:status', ['--quiet' => true], new NullOutput());\n        return $this;\n    }\n\n    private function getLatestMigrationVersion(OutputInterface $output)\n    {\n        $cmd = $this->getApplication()->find('doctrine:migrations:latest');\n        $cmd->mergeApplicationDefinition();\n        $cmd->run(new ConsoleOptions(['command' => 'migrations:latest']), $output);\n        return trim($output->fetch());\n    }\n\n    private function migrateDatabaseToLatestVersion(OutputInterface $output)\n    {\n        $this->runCommand('doctrine:migrations:migrate', ['--no-interaction' => true], $output);\n    }\n\n    private function runCommand(string $commandName, array $options, OutputInterface $output)\n    {\n        $command = $this->getApplication()->find($commandName);\n        $input = new ConsoleOptions(array_merge(['command' => $commandName], $options));\n        $input->setInteractive(false);\n        $command->run($input, $output);\n    }\n\n    private function isDatabaseConfigurationValid()\n    {\n        $connection = $this->entityManager->getConnection();\n\n        if (!$connection->isConnected()) {\n            try {\n                $connection->connect();\n            } catch (DBALException $e) {\n                return false;\n            }\n        }\n\n        return true;\n    }\n}\n"
  },
  {
    "path": "src/Controller/BaseController.php",
    "content": "<?php\n\nnamespace App\\Controller;\n\nuse Doctrine\\ORM\\EntityManagerInterface;\nuse Symfony\\Component\\Routing\\Annotation\\Route;\nuse Symfony\\Component\\HttpKernel\\KernelInterface;\nuse Webkul\\UVDesk\\CoreFrameworkBundle\\Entity\\Website;\nuse Webkul\\UVDesk\\CoreFrameworkBundle\\Entity\\SupportRole;\nuse Webkul\\UVDesk\\CoreFrameworkBundle\\Entity\\UserInstance;\nuse Symfony\\Bundle\\FrameworkBundle\\Controller\\AbstractController;\n\nclass BaseController extends AbstractController\n{\n    /**\n     * Forward request to other controllers based on application state.\n     *\n     * @Route(\"/\", name=\"base_route\")\n     */\n    public function base(EntityManagerInterface $entityManager, KernelInterface $kernel)\n    {\n        try {\n            // For a quick check we'll just see if support roles have been defined.\n            $ownerSupportRole = $entityManager->getRepository(SupportRole::class)->findOneByCode('ROLE_SUPER_ADMIN');\n            $administratorSupportRole = $entityManager->getRepository(SupportRole::class)->findOneByCode('ROLE_ADMIN');\n\n            if (\n                ! empty($ownerSupportRole) \n                || ! empty($administratorSupportRole)\n            ) {\n                $userInstanceRepository = $entityManager->getRepository(UserInstance::class);\n                \n                // If support roles are present, we'll check if any users exists with the administrator role.\n                $owners = $userInstanceRepository->findBySupportRole($ownerSupportRole);\n                $administrators = $userInstanceRepository->findBySupportRole($administratorSupportRole);\n\n                if (\n                    ! empty($owners) \n                    || ! empty($administrators)\n                ) {\n                    $availableBundles = array_keys($kernel->getBundles());\n                    $websiteRepository = $entityManager->getRepository(Website::class);\n\n                    // Redirect user to front panel\n                    if (in_array('UVDeskSupportCenterBundle', $availableBundles)) {\n                        $supportCenterWebsite = $websiteRepository->findOneByCode('knowledgebase');\n\n                        if (! empty($supportCenterWebsite)) {\n                            return $this->redirectToRoute('helpdesk_knowledgebase', [], 301);\n                        }\n                    }\n\n                    // Redirect user to back panel\n                    $helpdeskWebsite = $websiteRepository->findOneByCode('helpdesk');\n\n                    if (! empty($helpdeskWebsite)) {\n                        return $this->redirectToRoute('helpdesk_member_handle_login');\n                    }\n                }\n            }\n        } catch (\\Exception $e) {\n            // ...\n        }\n        \n        return $this->forward(ConfigureHelpdesk::class . \"::load\");\n    }\n}\n"
  },
  {
    "path": "src/Controller/ConfigureHelpdesk.php",
    "content": "<?php\n\nnamespace App\\Controller;\n\nuse App\\Console\\Wizard\\ConfigureHelpdesk as Helpdesk;\nuse Doctrine\\DBAL\\DriverManager;\nuse Doctrine\\ORM\\Tools\\Setup;\nuse Doctrine\\ORM\\EntityManager;\nuse Symfony\\Bundle\\FrameworkBundle\\Console\\Application;\nuse Symfony\\Bundle\\FrameworkBundle\\Controller\\AbstractController;\nuse Symfony\\Component\\Yaml\\Yaml;\nuse Symfony\\Component\\HttpFoundation\\Request;\nuse Symfony\\Component\\HttpFoundation\\Response;\nuse Symfony\\Component\\Console\\Input\\ArrayInput;\nuse Symfony\\Component\\Console\\Output\\NullOutput;\nuse Symfony\\Component\\HttpKernel\\KernelInterface;\nuse Symfony\\Component\\HttpFoundation\\JsonResponse;\nuse Symfony\\Component\\Security\\Core\\Encoder\\UserPasswordEncoderInterface;\nuse Webkul\\UVDesk\\CoreFrameworkBundle\\Entity\\SupportRole;\nuse Webkul\\UVDesk\\CoreFrameworkBundle\\Entity\\User;\nuse Webkul\\UVDesk\\CoreFrameworkBundle\\Entity\\UserInstance;\nuse Webkul\\UVDesk\\CoreFrameworkBundle\\Services\\UVDeskService;\n\nclass ConfigureHelpdesk extends AbstractController\n{\n    const DB_URL_TEMPLATE = \"mysql://[user]:[password]@[host]:[port]\";\n    const DB_ENV_PATH_TEMPLATE = \"DATABASE_URL=DB_DRIVER://DB_USER:DB_PASSWORD@DB_HOST/DB_NAME\\n\";\n    const DB_ENV_PATH_PARAM_TEMPLATE = \"env(DATABASE_URL): 'DB_DRIVER://DB_USER:DB_PASSWORD@DB_HOST/DB_NAME'\\n\";\n    const DEFAULT_JSON_HEADERS = [\n        'Content-Type' => 'application/json',\n    ];\n\n    private static $requiredExtensions = [\n        [\n            'name' => 'imap',\n        ],\n        [\n            'name' => 'mailparse',\n        ],\n        [\n            'name' => 'mysqli',\n        ],\n    ];\n\n    private static $requiredConfigfiles = [\n        [\n            'name' => 'uvdesk',\n        ],\n        [\n            'name' => 'uvdesk_mailbox',\n        ],\n    ];\n\n    public function load()\n    {\n        return $this->render('installation-wizard/index.html.twig');\n    }\n\n    public function evaluateSystemRequirements(Request $request, KernelInterface $kernel)\n    {\n        $max_execution_time = ini_get('max_execution_time');\n        // Evaluate system specification requirements\n        switch (strtolower($request->request->get('specification'))) {\n            case 'php-version':\n                $response = [\n                    'status'  => version_compare(phpversion(), '7.0.0', '<') ? false : true,\n                    'version' => sprintf('%s.%s.%s', PHP_MAJOR_VERSION, PHP_MINOR_VERSION, PHP_RELEASE_VERSION),\n                ];\n\n                if ($response['status']) {\n                    $response['message'] = sprintf('Using PHP v%s', $response['version']);\n                } else {\n                    $response['message'] = sprintf('Currently using PHP v%s. Please use PHP 7 or greater.', $response['version']);\n                }\n                break;\n            case 'php-extensions':\n                $extensions_status = array_map(function ($extension) {\n                    return [\n                        $extension['name'] => extension_loaded($extension['name']),\n                    ];\n                }, self::$requiredExtensions);\n\n                $response = [\n                    'extensions' => $extensions_status,\n                ];\n                break;\n            case 'php-maximum-execution':\n                $response['status' ] = $max_execution_time >= 30 ? true : false;\n\n                if ($response['status']) {\n                    $response['message'] = sprintf('Maximum execution time is %s', ini_get('max_execution_time').' sec');\n                } else {\n                    $response['message'] = sprintf('Please increase your max execution time.' );\n                    $response['description'] = '</span>Issue can be resolved by simply<p><a href=\"https://www.simplified.guide/php/increase-max-execution-time\" target=\"_blank\"> increasing your maximum execution time</a> make it 60 or more and restart your server after making this change, refresh the browser and try again.</p>';\n                }\n                break;\n            case 'php-envfile-permission':\n                    $filename =  $kernel->getProjectDir().'/.env';\n                    \n                    if (!is_writable($filename)) {\n                        @chmod($filename, 0666);\n                    }\n\n                    $response['status'] = is_writable($filename) ? true : false;\n   \n                    if ($response['status']) {\n                        $response['message'] = sprintf('Read/Write permission enabled for .env file.');\n                    } else {\n                        $response['message'] = sprintf('Please enable read/write permission for <b>.env</b> file of your project.');\n                        $response['description'] = '</span> Issue can be resolved by simply <a href=\"https://www.uvdesk.com/en/blog/open-source-helpdesk-installation-on-ubuntu-uvdesk/\" target=\"_blank\"><p> enabling your <b>.env</b> file read/write permission</a> refresh the browser and try again.</p>';\n                    }\n                break;\n            case 'php-configfiles-permission':\n                    $configfiles_status = array_map(function ($configfile) use ($kernel) {\n                        $filename = $kernel->getProjectDir().'/config/packages/'.$configfile['name'].'.yaml';\n                        \n                        if (!is_writable($filename)) {\n                            @chmod($filename, 0666);\n                        }\n\n                        return [\n                            $configfile['name'] => is_writable($filename) ,\n                        ];\n                    }, self::$requiredConfigfiles);\n   \n                    $response = [\n                        'configfiles' => $configfiles_status,\n                        'description' => '</span> <br><p> Issue can be resolved by simply <a href=\"https://www.uvdesk.com/en/blog/open-source-helpdesk-installation-on-ubuntu-uvdesk/\" target=\"_blank\"> enabling read/write permissions for your files under config/packages folder of your project.</a></p>',\n                    ];\n                break;\n            case 'redis-status':\n                if (extension_loaded('redis')) {\n                    return new JsonResponse([\n                        'status'      => false,\n                        'message'     => \"Redis extension is installed on your server follow the details\",               \n                        'description' =>'<span>Please check the  <a href=\"https://github.com/uvdesk/community-skeleton/issues/364#issuecomment-780486976\" target=\"_blank\">Redis host</a> specified in the <span style=\"font-weight:600;\">setup.php</span> file. If your Redis server host is different, you can either update it with your Redis host or follow the steps in the <a href=\"https://github.com/uvdesk/community-skeleton/issues/364#issuecomment-780486976\" target=\"_blank\">URL</a>. After making the changes, reload the page and try again.</span>'\n                        ]);\n                }\n                break;\n            default:\n                $code = 404;\n                break;\n        }\n        \n        return new Response(json_encode($response ?? []), $code ?? 200, self::DEFAULT_JSON_HEADERS);\n    }\n\n    public function verifyDatabaseCredentials(Request $request)\n    {\n        if (session_status() == PHP_SESSION_NONE) {\n            session_start();\n        }\n        \n        try {\n            $connectionUrl = strtr(self::DB_URL_TEMPLATE, [\n                '[host]'     => $request->request->get('serverName'),\n                '[port]'     => $request->request->get('serverPort'),\n                '[user]'     => $request->request->get('username'),\n                '[password]' => $request->request->get('password'),\n            ]);\n\n            if ($request->request->get('serverVersion') != null) {\n                $connectionUrl .= \"?serverVersion=\" . $request->request->get('serverVersion');\n            }\n\n            $databaseConnection = DriverManager::getConnection([\n                'url' => $connectionUrl,\n            ]);\n\n            $entityManager = EntityManager::create($databaseConnection, Setup::createAnnotationMetadataConfiguration(['src/Entity'], false));\n            \n            // Establish a connection if not active\n            if (false == $databaseConnection->isConnected()) {\n                $databaseConnection->connect();\n            }\n\n            // Check if database exists\n            $createDatabase = (bool) $request->request->get('createDatabase');\n\n            if (\n                ! in_array($request->request->get('database'), $databaseConnection->getSchemaManager()->listDatabases()) \n                && false == $createDatabase\n            ) {\n                return new JsonResponse([\n                    'status'  => false,\n                    'message' => \"The requested database was not found.\"\n                ]);\n            }\n\n            // Storing database configuration to session.\n            $_SESSION['DB_CONFIG'] = [\n                'host'           => $request->request->get('serverName'),\n                'port'           => $request->request->get('serverPort'),\n                'version'        => $request->request->get('serverVersion'),\n                'username'       => $request->request->get('username'),\n                'password'       => $request->request->get('password'),\n                'database'       => $request->request->get('database'),\n                'createDatabase' => $createDatabase,\n            ];\n        } catch (\\Exception $e) {\n            return new JsonResponse([\n                'status'  => false,\n                'message' => \"Failed to establish a connection with database server.\"\n            ]);\n        }\n        \n        return new JsonResponse(['status' => true]);\n    }\n\n    public function prepareSuperUserDetailsXHR(Request $request)\n    {\n        if (session_status() == PHP_SESSION_NONE) {\n            session_start();\n        }\n        \n        // unset($_SESSION['USER_DETAILS']);\n\n        $_SESSION['USER_DETAILS'] = [\n            'name'     => $request->request->get('name'),\n            'email'    => $request->request->get('email'),\n            'password' => $request->request->get('password'),\n        ];\n\n        return new Response(json_encode(['status' => true]), 200, self::DEFAULT_JSON_HEADERS);\n    }\n\n    public function updateConfigurationsXHR(Request $request, KernelInterface $kernel)\n    {\n        if (session_status() == PHP_SESSION_NONE) {\n            session_start();\n        }\n\n        $database_host    = $_SESSION['DB_CONFIG']['host'];\n        $database_port    = $_SESSION['DB_CONFIG']['port'];\n        $database_version = $_SESSION['DB_CONFIG']['version'];\n        $database_user    = $_SESSION['DB_CONFIG']['username'];\n        $database_pass    = $_SESSION['DB_CONFIG']['password'];\n        $database_name    = $_SESSION['DB_CONFIG']['database'];\n\n        $create_database = $_SESSION['DB_CONFIG']['createDatabase'];\n\n        try {\n            $connectionUrl = strtr(self::DB_URL_TEMPLATE, [\n                '[host]'     => $database_host,\n                '[port]'     => $database_port,\n                '[user]'     => $database_user,\n                '[password]' => $database_pass,\n            ]);\n\n            if (! empty($database_version)) {\n                $connectionUrl .= \"?serverVersion=$database_version\";\n            }\n\n            $databaseConnection = DriverManager::getConnection([\n                'url' => $connectionUrl,\n            ]);\n\n            $entityManager = EntityManager::create($databaseConnection, Setup::createAnnotationMetadataConfiguration(['src/Entity'], false));\n\n            // Establish an active connection with database server\n            if (false == $databaseConnection->isConnected()) {\n                $databaseConnection->connect();\n            }\n\n            // Check if database exists\n            if (! in_array($database_name, $databaseConnection->getSchemaManager()->listDatabases())) {\n                if (false == $create_database) {\n                    throw new \\Exception('Database does not exist.');\n                }\n                \n                // Create database\n                $databaseConnection->getSchemaManager()->createDatabase($databaseConnection->getDatabasePlatform()->quoteSingleIdentifier($database_name));\n            }\n\n            $connectionUrl = strtr(self::DB_URL_TEMPLATE . \"/[database]\", [\n                '[host]'     => $database_host,\n                '[port]'     => $database_port,\n                '[user]'     => $database_user,\n                '[password]' => $database_pass,\n                '[database]' => $database_name,\n            ]);\n\n            if (!empty($database_version)) {\n                $connectionUrl .= \"?serverVersion=$database_version\";\n            }\n\n            // Update .env\n            $application = new Application($kernel);\n            $application->setAutoExit(false);\n\n            $returnCode = $application->run(new ArrayInput([\n                'command' => 'uvdesk_wizard:env:update', \n                'name'    => 'DATABASE_URL', \n                'value'   => $connectionUrl\n            ]), new NullOutput());\n    \n            if (0 === $returnCode) {\n                return new JsonResponse(['success' => true]);\n            }\n        } catch (\\Exception $e) {\n            return new JsonResponse([\n                'status'  => false,\n                'message' => \"An unexpected error occurred: \" . $e->getMessage(), \n            ]);\n        }\n\n        return new JsonResponse(['success' => false], 500);\n    }\n\n    public function migrateDatabaseSchemaXHR(Request $request, KernelInterface $kernel)\n    {\n        $application = new Application($kernel);\n        $application->setAutoExit(false);\n\n        $resultCode = $application->run(new ArrayInput([\n            'command' => 'uvdesk_wizard:database:migrate'\n        ]), new NullOutput());\n        \n        return new Response(json_encode([]), 200, self::DEFAULT_JSON_HEADERS);\n    }\n\n    public function populateDatabaseEntitiesXHR(Request $request, KernelInterface $kernel)\n    {\n        $application = new Application($kernel);\n        $application->setAutoExit(false);\n\n        $resultCode = $application->run(new ArrayInput([\n            'command'  => 'doctrine:fixtures:load',\n            '--append' => true,\n        ]), new NullOutput());\n\n        return new Response(json_encode([]), 200, self::DEFAULT_JSON_HEADERS);\n    }\n\n    public function createDefaultSuperUserXHR(Request $request, UserPasswordEncoderInterface $encoder)\n    {\n        if (session_status() == PHP_SESSION_NONE) {\n            session_start();\n        }\n\n        // $entityManager = $this->getDoctrine()->getEntityManager();\n        $entityManager = $this->getDoctrine()->getManager();\n\n        $role = $entityManager->getRepository(SupportRole::class)->findOneByCode('ROLE_SUPER_ADMIN');\n        $userInstance = $entityManager->getRepository(UserInstance::class)->findOneBy([\n            'isActive'    => true,\n            'supportRole' => $role,\n        ]);\n            \n        if (empty($userInstance)) {\n            list($name, $email, $password) = array_values($_SESSION['USER_DETAILS']);\n            // Retrieve existing user or generate new empty user\n            $accountExistsFlag = false;\n            $user = $entityManager->getRepository(User::class)->findOneByEmail($email) ?: (new User())->setEmail($email);\n\n            if ($user->getId() != null) {\n                $userInstance = $user->getAgentInstance();\n\n                if (!empty($userInstance)) {\n                    $accountExistsFlag = true;\n\n                    if ($userInstance->getSupportRole()->getId() != $role->getId()) {\n                        $userInstance->setSupportRole($role);\n\n                        $entityManager->persist($userInstance);\n                        $entityManager->flush();\n                    }\n                }\n            } else {\n                $username = explode(' ', $name, 2);\n                $encodedPassword = $encoder->encodePassword($user, $password);\n\n                $user\n                    ->setFirstName($username[0])\n                    ->setLastName(! empty($username[1]) ? $username[1] : '')\n                    ->setPassword($encodedPassword)\n                    ->setIsEnabled(true);\n                \n                $entityManager->persist($user);\n                $entityManager->flush();\n            }\n            \n            if (false == $accountExistsFlag) {\n                $userInstance = new UserInstance();\n                $userInstance->setSource('website');\n                $userInstance->setIsActive(true);\n                $userInstance->setIsVerified(true);\n                $userInstance->setUser($user);\n                $userInstance->setSupportRole($role);\n\n                $entityManager->persist($userInstance);\n                $entityManager->flush();\n            }\n        }\n\n        return new Response(json_encode([]), 200, self::DEFAULT_JSON_HEADERS);\n    }\n\n    public function websiteConfigurationXHR(Request $request, UVDeskService $uvdesk)\n    {\n        switch ($request->getMethod()) {\n            case \"GET\":\n                $currentWebsitePrefixCollection = $uvdesk->getCurrentWebsitePrefixes();\n                \n                if ($currentWebsitePrefixCollection) {\n                    $result = $currentWebsitePrefixCollection;\n                    $result['status'] = true;\n                } else {\n                    $result['status'] = false;\n                }\n                break;\n            case \"POST\":\n                if (session_status() == PHP_SESSION_NONE) {\n                    session_start();\n                }\n                \n                $_SESSION['PREFIXES_DETAILS'] = [\n                    'member'   => $request->request->get('member-prefix'),\n                    'customer' => $request->request->get('customer-prefix'),\n                ];\n\n                $result = ['status' => true];\n                break;\n            default:\n                break;\n        }\n\n        return new Response(json_encode($result ?? []), 200, self::DEFAULT_JSON_HEADERS);\n    }\n\n    public function updateWebsiteConfigurationXHR(Request $request, UVDeskService $uvdesk)\n    {\n        if (session_status() == PHP_SESSION_NONE) {\n            session_start();\n        }\n\n        $collectionURL= $uvdesk->updateWebsitePrefixes(\n            $_SESSION['PREFIXES_DETAILS']['member'],\n            $_SESSION['PREFIXES_DETAILS']['customer']\n        );\n        \n        // uvdesk tracker\n        $userDetails =[\n            'name'   => $_SESSION['USER_DETAILS']['name'],\n            'email'  => $_SESSION['USER_DETAILS']['email'],\n            'domain' => $this->getParameter('uvdesk.site_url'),\n        ];\n        \n        Helpdesk::addUserDetailsInTracker($userDetails);\n\n        return new Response(json_encode($collectionURL), 200, self::DEFAULT_JSON_HEADERS);\n    }\n}\n"
  },
  {
    "path": "src/Controller/ImageCache/ImageCacheController.php",
    "content": "<?php\n\nnamespace App\\Controller\\ImageCache;\n\nuse App\\Service\\UrlImageCacheService;\nuse Symfony\\Bundle\\FrameworkBundle\\Controller\\AbstractController;\nuse Symfony\\Component\\HttpFoundation\\Request;\nuse Symfony\\Component\\HttpFoundation\\Response;\n\nclass ImageCacheController extends AbstractController\n{\n    /**\n     * Logo URL\n     */\n    const UVDESK_LOGO = 'https://updates.uvdesk.com/uvdesk-logo.png';\n\n    protected $urlImageCacheService;\n    protected $urlGenerator;\n\n    public function __construct(\n        UrlImageCacheService $urlImageCacheService\n    ) {\n        $this->urlImageCacheService = $urlImageCacheService;\n    }\n\n    /**\n     * Get the cached image response\n     * @return Response\n     */\n    public function getCachedImage(Request $request): Response\n    {\n        $siteUrl = $request->getSchemeAndHttpHost() . $request->getBasePath();\n        $response = $this->showImage(self::UVDESK_LOGO, $siteUrl);\n\n        // Get the file and its real path\n        $file = $response->getFile();\n        $filePath = $file->getRealPath();\n\n        // Get the relative path by removing the kernel.project_dir\n        $relativePath = str_replace($this->getParameter('kernel.project_dir') . '/public', '', $filePath);\n\n        // Construct the image URL by combining the base URL and the relative path\n        $imageUrl = $siteUrl . $relativePath;\n\n        // Return the image URL as JSON\n        return new Response(json_encode($imageUrl));\n    }\n\n    public function showImage(string $imageUrl, string $domain): Response\n    {\n        $cachedImagePath = $this->urlImageCacheService->getCachedImage($imageUrl, $domain);\n\n        return $this->file($cachedImagePath);\n    }\n}\n"
  },
  {
    "path": "src/Controller/ImageCache/ImageManager.php",
    "content": "<?php\n\nnamespace App\\Controller\\ImageCache;\n\nuse Intervention\\Image\\Exception\\NotReadableException;\nuse Intervention\\Image\\ImageManager as BaseImageManager;\nuse Symfony\\Component\\DependencyInjection\\ContainerInterface;\n\nclass ImageManager extends BaseImageManager\n{\n    protected $container;\n\n    public function __construct(ContainerInterface $container)\n    {\n        $this->container = $container;\n    }\n\n    public function make($data)\n    {\n        $driver = $this->createDriver();\n\n        $domain = $data['siteUrl'];\n        $imageUrl = $data['imageUrl'];\n\n        if (\n            filter_var($imageUrl, FILTER_VALIDATE_URL)\n            && filter_var($domain, FILTER_VALIDATE_URL)\n        ) {\n            return $this->initFromUrl($driver, $imageUrl, $domain);\n        }\n\n        return $driver->init($data);\n    }\n\n    /**\n     * This method hit the tracker image url and create a live instance\n     *\n     * @param mixed $driver\n     * @param mixed $imageUrl\n     * @param mixed $domain\n     * @throws \\Intervention\\Image\\Exception\\NotReadableException\n     * @return mixed\n     */\n    public function initFromUrl($driver, $imageUrl, $domain)\n    {\n        try {\n            $options = [\n                'http' => [\n                    'method'           => 'GET',\n                    'protocol_version' => 1.1,\n                    'header'           => \"Accept-language: en\\r\\n\" .\n                        \"Domain: $domain\\r\\n\" .\n                        \"User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36\\r\\n\",\n                ],\n            ];\n\n            $context = stream_context_create($options);\n\n            $data = @file_get_contents($imageUrl, false, $context);\n\n            if ($data) {\n                return $driver->decoder->initFromBinary($data);\n            }\n        } catch (\\Exception $e) {\n            throw new NotReadableException('Error:  (' . $e . ').');\n        }\n\n        throw new NotReadableException('Unable to init from given URL (' . $imageUrl . ').');\n    }\n\n    private function createDriver()\n    {\n        $driverName = ucfirst($this->config['driver']);\n        $driverClass = sprintf('Intervention\\\\Image\\\\%s\\\\Driver', $driverName);\n\n        if (class_exists($driverClass)) {\n            return new $driverClass;\n        }\n\n        throw new \\Exception(\"Driver ({$driverName}) could not be instantiated.\");\n    }\n}\n"
  },
  {
    "path": "src/Entity/.gitignore",
    "content": ""
  },
  {
    "path": "src/EventListener/ExceptionSubscriber.php",
    "content": "<?php\n\nnamespace App\\EventListener;\n\nuse Twig\\Environment;\nuse Symfony\\Component\\HttpFoundation\\Response;\nuse Symfony\\Component\\HttpKernel\\KernelEvents;\nuse Symfony\\Component\\HttpKernel\\Event\\ExceptionEvent;\nuse Symfony\\Component\\Security\\Core\\User\\UserInterface;\nuse Symfony\\Component\\DependencyInjection\\ContainerInterface;\nuse Symfony\\Component\\EventDispatcher\\EventSubscriberInterface;\nuse Symfony\\Component\\HttpKernel\\Exception\\NotFoundHttpException;\n\nclass ExceptionSubscriber implements EventSubscriberInterface\n{\n\tprivate $user;\n\tprivate $twig;\n\tprivate $container;\n\n\tpublic function __construct(Environment $twig, ContainerInterface $container, UserInterface $user = null)\n\t{\n\t\t$this->user = $user;\n\t\t$this->twig = $twig;\n\t\t$this->container = $container;\n\t}\n\n\tpublic static function getSubscribedEvents()\n\t{\n\t\treturn [\n\t\t\tKernelEvents::EXCEPTION => [\n\t\t\t\t['onKernelException', 10]\n\t\t\t]\n\t\t];\n\t}\n\n\tpublic function onKernelException(ExceptionEvent $event)\n\t{\n\t\t// We only need to suppress errors in production environment\n\t\tif ($this->container->get('kernel')->getEnvironment() != 'prod') {\n\t\t\treturn;\n\t\t}\n\n\t\t// @TODO: We need to take into account the response type as well (html, xml, json)\n\t\t$exception = method_exists($event, 'getThrowable') ? $event->getThrowable() : $event->getException();\n\n\t\tif ($exception->getCode() == 403) {\n\t\t\t// On forbidden exception, we need to either:\n\t\t\t// \t\ta) If user session is set, display forbidden page\n\t\t\t// \t\tb) If user session is not set, redirect to login page\n\n\t\t\tif (!empty($this->container->get('security.token_storage')->getToken()->getUser()) && $this->container->get('security.token_storage')->getToken()->getUser() != \"anon.\") {\n\t\t\t\t$template = $this->twig->render('errors/error.html.twig', [\n\t\t\t\t\t'code'        => 403,\n\t\t\t\t\t'message'     => 'Access Forbidden',\n\t\t\t\t\t'description' => 'You are not authorized to access this page.',\n\t\t\t\t]);\n\t\n\t\t\t\t$event->setResponse(new Response($template, 403));\n\t\t\t}\n\t\t} else {\n\t\t\tif ($exception instanceof NotFoundHttpException || $exception->getCode() == 404) {\n\t\t\t\t$template = $this->twig->render('errors/error.html.twig', [\n\t\t\t\t\t'code'        => 404,\n\t\t\t\t\t'message'     => 'Page not Found',\n\t\t\t\t\t'description' => 'We were not able to find the page you are looking for.',\n\t\t\t\t]);\n\t\n\t\t\t\t$event->setResponse(new Response($template, 404));\n\t\t\t} else {\n\t\t\t\t$template = $this->twig->render('errors/error.html.twig', [\n\t\t\t\t\t'message'     => 'Internal Server Error',\n\t\t\t\t\t'code'        => 500,\n\t\t\t\t\t'description' => 'Something has gone wrong on the server. Please try again later.',\n\t\t\t\t]);\n\t\n\t\t\t\t$event->setResponse(new Response($template, 500));\n\t\t\t}\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "src/Migrations/.gitignore",
    "content": ""
  },
  {
    "path": "src/Repository/.gitignore",
    "content": ""
  },
  {
    "path": "src/Resources/config/routes.yaml",
    "content": "uvdesk_community_installation_wizard_check_requirements:\n    path:     /wizard/xhr/check-requirements\n    controller: App\\Controller\\ConfigureHelpdesk::evaluateSystemRequirements\n    methods: [POST]\n\nuvdesk_community_installation_wizard_verify_database_credentials:\n    path:     /wizard/xhr/verify-database-credentials\n    controller: App\\Controller\\ConfigureHelpdesk::verifyDatabaseCredentials\n    methods: [POST]\n\nuvdesk_community_installation_wizard_store_super_user_credentials:\n    path:     /wizard/xhr/intermediary/super-user\n    controller: App\\Controller\\ConfigureHelpdesk::prepareSuperUserDetailsXHR\n    methods: [POST]\n\nuvdesk_community_installation_wizard_store_website_configuration:\n    path:     /wizard/xhr/website-configure\n    controller: App\\Controller\\ConfigureHelpdesk::websiteConfigurationXHR\n\nuvdesk_community_installation_wizard_update_configurations_xhr:\n    path:     /wizard/xhr/load/configurations\n    controller: App\\Controller\\ConfigureHelpdesk::updateConfigurationsXHR\n    methods: [POST]\n\nuvdesk_community_installation_wizard_migrate_database_schema_xhr:\n    path:     /wizard/xhr/load/migrations\n    controller: App\\Controller\\ConfigureHelpdesk::migrateDatabaseSchemaXHR\n    methods: [POST]\n\nuvdesk_community_installation_wizard_populate_database_entities_xhr:\n    path:     /wizard/xhr/load/entities\n    controller: App\\Controller\\ConfigureHelpdesk::populateDatabaseEntitiesXHR\n    methods: [POST]\n\nuvdesk_community_installation_wizard_create_default_super_user_xhr:\n    path:     /wizard/xhr/load/super-user\n    controller: App\\Controller\\ConfigureHelpdesk::createDefaultSuperUserXHR\n    methods: [POST]\n\nuvdesk_community_installation_wizard_update_website_configuration:\n    path:     /wizard/xhr/load/website-configure\n    controller: App\\Controller\\ConfigureHelpdesk::updateWebsiteConfigurationXHR\n    methods: [POST]\n\n# Uvdesk tracker cache image route\nuvdesk_community_tracker_cache_image:\n    path:     /tracker/xhr/get/cacheImage\n    controller: App\\Controller\\ImageCache\\ImageCacheController::getCachedImage\n    methods: [GET]\n"
  },
  {
    "path": "src/Routing/RoutingResource.php",
    "content": "<?php\n\nnamespace App\\Routing;\n\nuse Webkul\\UVDesk\\CoreFrameworkBundle\\Definition\\RoutingResourceInterface;\n\nclass RoutingResource implements RoutingResourceInterface\n{\n    public static function getResourcePath()\n    {\n        return __DIR__ . \"/../Resources/config/routes.yaml\";\n    }\n\n    public static function getResourceType()\n    {\n        return RoutingResourceInterface::YAML_RESOURCE;\n    }\n}\n"
  },
  {
    "path": "src/Service/UrlImageCacheService.php",
    "content": "<?php\n\nnamespace App\\Service;\n\nuse App\\Controller\\ImageCache\\ImageManager;\nuse Symfony\\Component\\DependencyInjection\\ContainerInterface;\n\nclass UrlImageCacheService\n{\n    protected $cacheDir;\n    protected $container;\n    private $imageManager;\n\n    public function __construct(ContainerInterface $container)\n    {\n        $this->container = $container;\n        $this->cacheDir = $this->container->getParameter('kernel.project_dir') . '/public/cache/images';\n        $this->imageManager = new ImageManager($this->container);\n    }\n\n    public function getCachedImage(string $url, string $domain): string\n    {\n        $cacheKey = md5($url);\n        $cachePath = $this->cacheDir . '/' . $cacheKey . '.png';\n\n        // Ensure the cache directory exists\n        if (! is_dir($this->cacheDir)) {\n            mkdir($this->cacheDir, 0775, true);\n        }\n\n        if ($this->isCacheExpired($cachePath)) {\n            if (file_exists($cachePath)) {\n                unlink($cachePath); // Delete the file\n            }\n\n            $this->cacheImage($url, $cachePath, $domain);\n        }\n\n        return $cachePath;\n    }\n\n    private function isCacheExpired(string $cachePath): bool\n    {\n        if (!file_exists($cachePath)) {\n            return true;\n        }\n\n        $cacheLifetime = 7 * 24 * 60 * 60; // 1 week in seconds\n\n        return (time() - filemtime($cachePath)) > $cacheLifetime;\n    }\n\n    private function cacheImage(string $url, string $cachePath, string $domain): void\n    {\n        $image = $this->imageManager->make([\n            'imageUrl' => $url,\n            'siteUrl'  => $domain\n        ]);\n        $image->save($cachePath);\n    }\n}\n"
  },
  {
    "path": "templates/errors/error.html.twig",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTDXHTML1.0Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n<html lang=\"en\">\n\t<head>\n\t\t<meta http-equiv=\"Content-Type\" content=\"text/html;\" charset=\"UTF-8\" />\n\t\t<meta name=\"robots\" content=\"INDEX,FOLLOW\" />\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n\t\t\n\t\t<link rel=\"icon\" sizes=\"16x16\" href=\"{{ asset('favicon.ico') }}\">\n\t\t<link rel=\"canonical\" href=\"{{ path('helpdesk_knowledgebase') }}\">\n\t\t<link href=\"{{ asset('css/main.css') }}\" type=\"text/css\" rel=\"stylesheet\" media=\"all\" />\n\n\t\t<title>\n\t\t\t{% if code == 404 %}\n\t\t\t\t404 - {{ 'Page not found'|trans }}\n\t\t\t{% elseif code == 403 %}\n\t\t\t\t403 - {{ 'Forbidden'|trans }}\n\t\t\t{% elseif code == 500 %}\n\t\t\t\t500 - {{ 'Internal server error'|trans }}\n\t\t\t{% else %}\n\t\t\t\t{{ code }} - {{ 'Error'|trans }}\n\t\t\t{% endif %}\n\t\t</title>\n\n\t\t<style>\n\t\t\t.error-dialog {\n\t\t\t\tpadding: 25px;\n\t\t\t\tposition: fixed;\n\t\t\t\ttop: 50%;\n\t\t\t\tleft: 50%;\n\t\t\t\ttransform: translate(-50%, -50%);\n\t\t\t}\n\n\t\t\t.error-dialog h1 {\n\t\t\t\tcolor: #6F6F6F;\n\t\t\t\tfont-size: 21px;\n\t\t\t\tfont-weight: 700;\n\t\t\t\ttext-transform: uppercase;\n\t\t\t\tmargin: unset;\n\t\t\t\tline-height: 1.4em;\n\t\t\t}\n\n\t\t\t.section-separator {\n\t\t\t\twidth: 50px;\n\t\t\t\tborder: 1px solid #6F6F6F;\n\t\t\t\tmargin: 14px 0px 20px;\n\t\t\t}\n\t\t\t.uv-logo {\n    \t\t\theight: 70px;\n \t\t\t\tdisplay: table-cell;\n\t\t\t}\n\t\t</style>\n\t</head>\n\n\t<body>\n\t\t{% set websiteDetails = user_service.getWebsiteDetails('knowledgebase') %}\t\n\t\t{% set currentPath = app.request.schemeAndHttpHost ~ app.request.requestUri %}\n\n\t\t<div class=\"uv-box-server-error\">\n\t\t\t<div class=\"uv-box-server-error-lt\">\n\t\t\t\t{% if websiteDetails %}\n\t\t\t\t\t<a class=\"uv-logo\" href=\"{{ '/en/member/' in currentPath  ? path('helpdesk_member_dashboard') : (websiteDetails ? path('helpdesk_knowledgebase') : app.request.scheme ~'://' ~ app.request.httpHost ) }}\">\n\t\t\t\t\t\t{% if websiteDetails.logo %}\n\t\t\t\t\t\t\t<img src=\"{{ app.request.scheme ~'://' ~ app.request.httpHost ~ asset('') }}{{ websiteDetails.logo }}\" title=\"{{ websiteDetails.name }}\">\n\t\t\t\t\t\t{% else %}\n\t\t\t\t\t\t\t<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"122\" height=\"48\" viewBox=\"0 0 122 48\">\n\t\t\t\t\t\t\t\t<defs>\n\t\t\t\t\t\t\t\t\t<style>\n\t\t\t\t\t\t\t\t\t\t.cls-1 {\n\t\t\t\t\t\t\t\t\t\t\tfill: #9f9f9f;\n\t\t\t\t\t\t\t\t\t\t\tfill-rule: evenodd;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t</style>\n\t\t\t\t\t\t\t\t</defs>\n\n\t\t\t\t\t\t\t\t<path id=\"uvdesk-icon\" class=\"cls-1\" d=\"M43.5,23A1.5,1.5,0,0,1,45,24.5V25H42V24.5A1.5,1.5,0,0,1,43.5,23ZM39,31H38V18h1a2.257,2.257,0,0,1,2,2v9A2.257,2.257,0,0,1,39,31Zm6-5H42s1.769,15.329-15,17c0.011-.1-0.027,1.292,0,2C33.324,44.708,45.563,40.575,45,26ZM25.987,44A1.988,1.988,0,1,1,24,41.989,2,2,0,0,1,25.987,44ZM8,41A18.173,18.173,0,0,1,3.386,29.28L3,24a14.906,14.906,0,0,0,9-5,14.838,14.838,0,0,0,5,4,17.2,17.2,0,0,0,16-1l4-3a2.479,2.479,0,0,0,0-1C36.692,8.308,27.872,0,18,0h0A17.913,17.913,0,0,0,0,18V29A21.17,21.17,0,0,0,5,43a16.677,16.677,0,0,0,7,5l1-3C10.936,44.167,9.633,42.824,8,41Zm2.492-15A3.5,3.5,0,1,0,14,29.5,3.5,3.5,0,0,0,10.492,26ZM27.5,33A3.5,3.5,0,1,0,24,29.5,3.5,3.5,0,0,0,27.5,33Z\"/>\n\t\t\t\t\t\t\t\t<path id=\"uvdesk\" class=\"cls-1\" d=\"M53.078,25.329c0,2.976,1.1,4.56,3.576,4.56a4.931,4.931,0,0,0,3.84-2.112h0.072L60.734,29.6h1.632V17.937H60.4v8.281c-1.1,1.368-1.944,1.968-3.144,1.968-1.536,0-2.184-.936-2.184-3.12V17.937H53.078v7.393ZM68.822,29.6h2.3l4.128-11.665H73.31L71.1,24.561c-0.336,1.152-.72,2.328-1.056,3.432h-0.1c-0.36-1.1-.744-2.28-1.08-3.432l-2.208-6.625h-2.04Zm7.752-5.809c0,3.888,1.9,6.1,4.824,6.1a5.262,5.262,0,0,0,3.528-1.656H85L85.166,29.6H86.8V12.512H84.806V17l0.1,1.992a4.806,4.806,0,0,0-3.264-1.344C78.973,17.649,76.573,20,76.573,23.793Zm2.04-.024c0-2.664,1.488-4.464,3.36-4.464a4.06,4.06,0,0,1,2.832,1.224v6.1a3.948,3.948,0,0,1-2.976,1.608C79.789,28.233,78.613,26.553,78.613,23.769Zm11.256,0.024c0,3.816,2.472,6.1,5.593,6.1a6.947,6.947,0,0,0,3.84-1.2l-0.7-1.3a5.271,5.271,0,0,1-2.9.912c-2.232,0-3.744-1.584-3.888-4.1h7.873a6.956,6.956,0,0,0,.072-1.08c0-3.336-1.68-5.472-4.656-5.472C92.437,17.649,89.869,19.977,89.869,23.793Zm1.92-.888c0.24-2.352,1.728-3.7,3.36-3.7,1.824,0,2.88,1.32,2.88,3.7H91.789Zm9.552,5.376a7.021,7.021,0,0,0,4.344,1.608c2.76,0,4.272-1.584,4.272-3.48,0-2.208-1.872-2.9-3.552-3.528-1.32-.5-2.592-0.936-2.592-2.016,0-.888.672-1.68,2.136-1.68a4.331,4.331,0,0,1,2.664,1.032l0.936-1.248a5.822,5.822,0,0,0-3.624-1.32c-2.52,0-4.008,1.44-4.008,3.312,0,1.968,1.824,2.76,3.48,3.36,1.272,0.48,2.664,1.008,2.664,2.208,0,1.008-.768,1.824-2.3,1.824a5.245,5.245,0,0,1-3.432-1.392Zm11.352,1.32h1.944V26.529l2.184-2.544,3.408,5.617h2.16l-4.44-6.985,3.912-4.68h-2.184l-4.968,6.145h-0.072V12.512h-1.944V29.6Z\"/>\n\t\t\t\t\t\t\t</svg>\n\t\t\t\t\t\t{% endif %}\n\t\t\t\t\t</a>\n\t\t\t\t{% else %}\n\t\t\t\t\t<a href=\"http://uvdesk.com\">\n\t\t\t\t\t\t<img src=\"{{ asset('bundles/uvdeskcoreframework/images/uvdesk-logo.svg') }}\" title=\"UVdesk\">\n\t\t\t\t\t</a>\t\n\t\t\t\t{% endif %}\n\n\t\t\t\t<div class=\"uv-box-block\">\n\t\t\t\t\t<p class=\"uv-error-title\">\n\t\t\t\t\t\t{% if code == 404 %}\n\t\t\t\t\t\t\t<span>404</span>\n\t\t\t\t\t\t\t- {{ 'Page not found'|trans }}\n\t\t\t\t\t\t\t<p>{{ 'We were not able to find the page you are looking for.'|trans }}</p>\n\t\t\t\t\t\t{% elseif code == 403 %}\n\t\t\t\t\t\t\t<span>403</span>\n\t\t\t\t\t\t\t- {{ 'Forbidden'|trans }}\n\t\t\t\t\t\t\t<p>{{ 'You don’t have the necessary permissions to access this Web page :('|trans }}</p>\n\t\t\t\t\t\t{% elseif code == 500 %}\n\t\t\t\t\t\t\t<span>500</span>\n\t\t\t\t\t\t\t- {{ 'Internal server error'|trans }}\n\t\t\t\t\t\t\t<p>{{ \"Our system has goofed up for a while, but good part is it won't last long\"|trans }}</p>\n\t\t\t\t\t\t{% else %}\n\t\t\t\t\t\t\t<span>{{ code }}</span>\n\t\t\t\t\t\t\t- {{ 'Unknown Error'|trans }}\n\t\t\t\t\t\t\t<p>{{ 'We are quite confused about how did you land here:/'|trans }}</p>\n\t\t\t\t\t\t{% endif %}\n\t\t\t\t\t</p>\n\t\t\t\t</div>\n\n\t\t\t\t<div class=\"uv-box-block\">\n\t\t\t\t\t<p>{{ 'Few of the links which may help you to get back on the track:'|trans }}</p>\n\t\t\t\t\t\n\t\t\t\t\t<ul>\n\t\t\t\t\t\t<li><a href=\"{{ '/en/member/' in currentPath  ? path('helpdesk_member_dashboard') : (websiteDetails ? path('helpdesk_knowledgebase') : app.request.scheme ~'://' ~ app.request.httpHost ) }}\">{{ 'Home'|trans }}</a></li>\n\n\t\t\t\t\t\t{% if websiteDetails is defined and websiteDetails is not empty %}\n\t\t\t\t\t\t\t<li><a href=\"{{ path('helpdesk_knowledgebase') }}\">{{ 'Support'|trans }}</a></li>\n\t\t\t\t\t\t{% endif %}\n\t\t\t\t\t</ul>\n\t\t\t\t</div>\n\t\t\t</div>\n\n\t\t\t<div class=\"uv-box-server-error-rt\">\n\t\t\t\t{% if code in [404, 500, 403] %}\n\t\t\t\t\t{% if code == 404 %}\n\t\t\t\t\t\t\t<img class=\"error-grooves\" src=\"{{ asset('bundles/uvdeskcoreframework/images/404.png') }}\" alt=\"{{ code }}\" />\n\t\t\t\t\t{% elseif code == 500 %}\n\t\t\t\t\t\t\t<img class=\"error-grooves\" src=\"{{ asset('bundles/uvdeskcoreframework/images/500.png') }}\" alt=\"{{ code }}\" />\n\t\t\t\t\t{% else %}\n\t\t\t\t\t\t\t<img class=\"error-grooves\" src=\"{{ asset('bundles/uvdeskcoreframework/images/403.png') }}\" alt=\"{{ code }}\" />\n\t\t\t\t\t{% endif %}\n\t\t\t\t{% else %}\n\t\t\t\t\t\t<img class=\"error-grooves\" src=\"{{ asset('bundles/uvdeskcoreframework/images/unkown-error.png') }}\" alt=\"{{ code }}\" />\n\t\t\t\t{% endif %}\n\t\t\t</div>\n\t\t\t\n\t\t\t<div class=\"uv-box-footer\">\n\t\t\t\t<p>{% trans %}Powered by {% endtrans %} <a target=\"_blank\" href=\"https://www.uvdesk.com/en/\">{% trans %}UVdesk{% endtrans %}</a></p>\n\t\t\t</div>\n\t\t</div>\n\t</body>\n</html>\n"
  },
  {
    "path": "templates/installation-wizard/index.html.twig",
    "content": "<!DOCTYPE html>\n<html>\n    <head>\n        <meta charset=\"UTF-8\">\n        <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n        <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\n        <title>UVDesk Helpdesk Community Edition - Installation Wizard</title>\n        <link rel=\"icon\" type=\"image/x-icon\" sizes=\"16x16 32x32 48x48\" href=\"{{ asset('favicon.ico') }}\" />\n\n        {# Stylesheets #}\n        <link href=\"{{ asset('css/reset.css') }}\" type=\"text/css\" rel=\"stylesheet\" media=\"all\" />\n        <link href=\"{{ asset('css/wizard.css') }}\" type=\"text/css\" rel=\"stylesheet\" media=\"all\" />\n\n        {# Scripts #}\n        <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js\"></script>\n        <script src=\"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js\"></script>\n        <script src=\"https://cdnjs.cloudflare.com/ajax/libs/backbone.js/1.3.3/backbone-min.js\"></script>\n        <script src=\"https://cdnjs.cloudflare.com/ajax/libs/backbone.validation/0.7.1/backbone-validation-min.js\"></script>\n        <script src=\"{{ asset('scripts/wizard.js') }}\"></script>\n    </head>\n\n    <body>\n        <div id=\"wizard\" class=\"installation-wizard-container\">\n            <header id=\"installation-wizard-steps-overview\" class=\"installation-wizard-steps-overview\"></header>\n\n            <section id=\"installation-wizard-steps-overview-details\" class=\"installation-wizard-steps-overview-details\">\n                <div id=\"installation-wizard-steps-overview-details-container\" class=\"installation-wizard-steps-overview-details-container\"></div>\n            </section>\n        </div>\n\n        <script id=\"wizardIcons-LoaderTemplate\" type=\"text/template\">\n            <svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" width=\"1em\" height=\"1em\" viewBox=\"0 0 40 40\" enable-background=\"new 0 0 40 40\" xml:space=\"preserve\">\n                <path opacity=\"0.8\" fill=\"#9161ff\" d=\"M20.201,5.169c-8.254,0-14.946,6.692-14.946,14.946c0,8.255,6.692,14.946,14.946,14.946s14.946-6.691,14.946-14.946C35.146,11.861,28.455,5.169,20.201,5.169z M20.201,31.749c-6.425,0-11.634-5.208-11.634-11.634c0-6.425,5.209-11.634,11.634-11.634c6.425,0,11.633,5.209,11.633,11.634C31.834,26.541,26.626,31.749,20.201,31.749z\" />\n                <path fill=\"#000\" d=\"M26.013,10.047l1.654-2.866c-2.198-1.272-4.743-2.012-7.466-2.012h0v3.312h0C22.32,8.481,24.301,9.057,26.013,10.047z\" >\n                    <animateTransform attributeType=\"xml\" attributeName=\"transform\" type=\"rotate\" from=\"0 20 20\" to=\"360 20 20\" dur=\"0.5s\" repeatCount=\"indefinite\" />\n                </path>\n            </svg>\n        </script>\n\n        <script id=\"wizardIcons-SuccessTemplate\" type=\"text/template\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"1em\" height=\"1em\" viewBox=\"0 0 21 21\">\n                <path id=\"icon-success\" class=\"cls-1\" fill=\"#2ED143\" fill-rule=\"evenodd\" d=\"M764.5,373A10.5,10.5,0,1,1,775,362.5,10.5,10.5,0,0,1,764.5,373Zm3.808-15-5.923,5.727-1.693-1.636L759,363.727,762.385,367,770,359.636Z\" transform=\"translate(-754 -352)\"/>\n            </svg>\n        </script>\n\n        <script id=\"wizardIcons-NoticeTemplate\" type=\"text/template\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"1em\" height=\"1em\" viewBox=\"0 0 21 21\">\n                <path id=\"error-icon\" class=\"cls-1\" fill=\"#ff5656\" fill-rule=\"evenodd\" d=\"M764.5,352A10.5,10.5,0,1,1,754,362.5,10.5,10.5,0,0,1,764.5,352Zm-0.006,12.988a1.506,1.506,0,1,1-1.5,1.506A1.5,1.5,0,0,1,764.494,364.988ZM763,356h3v8h-3v-8Z\" transform=\"translate(-754 -352)\"/>\n            </svg>\n        </script>\n\n        <script id=\"wizardIcons-WarningTemplate\" type=\"text/template\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"1em\" height=\"1em\" viewBox=\"0 0 21 21\">\n                <path id=\"error-icon\" class=\"cls-1\" fill=\"#FFCC00\" fill-rule=\"evenodd\" d=\"M764.5,352A10.5,10.5,0,1,1,754,362.5,10.5,10.5,0,0,1,764.5,352Zm-0.006,12.988a1.506,1.506,0,1,1-1.5,1.506A1.5,1.5,0,0,1,764.494,364.988ZM763,356h3v8h-3v-8Z\" transform=\"translate(-754 -352)\"/>\n            </svg>\n        </script>\n        \n        <script id=\"installationWizard-DefaultHeaderTemplate\" type=\"text/template\">\n            <div class=\"installation-wizard-steps-overview-container\">\n                <div class=\"uvdesk-logo\">\n                    <svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"164px\" height=\"60px\">\n                            <path fill-rule=\"evenodd\" fill=\"rgb(255, 255, 255)\" d=\"M163.987,42.990 L161.097,42.990 L156.536,35.764 L153.614,39.037 L153.614,42.990 L151.012,42.990 L151.012,21.005 L153.614,21.005 L153.614,35.888 L153.710,35.888 L160.358,27.983 L163.281,27.983 L158.046,34.004 L163.987,42.990 ZM146.617,41.662 C146.157,42.081 145.584,42.410 144.898,42.650 C144.213,42.891 143.430,43.011 142.550,43.011 C141.486,43.011 140.473,42.812 139.511,42.415 C138.549,42.018 137.710,41.516 136.994,40.909 L138.253,39.183 C138.907,39.727 139.577,40.167 140.263,40.501 C140.949,40.836 141.741,41.003 142.642,41.003 C143.624,41.003 144.361,40.773 144.852,40.313 C145.344,39.853 145.589,39.288 145.589,38.619 C145.589,38.221 145.486,37.876 145.282,37.583 C145.077,37.290 144.816,37.034 144.499,36.814 C144.182,36.595 143.819,36.402 143.410,36.234 C143.000,36.067 142.591,35.900 142.182,35.732 C141.649,35.544 141.117,35.329 140.586,35.089 C140.053,34.849 139.577,34.555 139.158,34.210 C138.738,33.865 138.395,33.463 138.130,33.002 C137.864,32.542 137.731,31.988 137.731,31.339 C137.731,30.733 137.848,30.163 138.084,29.629 C138.319,29.096 138.656,28.636 139.097,28.249 C139.537,27.862 140.074,27.558 140.708,27.339 C141.342,27.119 142.059,27.009 142.857,27.009 C143.798,27.009 144.663,27.177 145.451,27.511 C146.238,27.846 146.919,28.254 147.492,28.735 L146.295,30.367 C145.783,29.970 145.251,29.645 144.699,29.394 C144.146,29.143 143.542,29.017 142.888,29.017 C141.946,29.017 141.256,29.237 140.816,29.676 C140.375,30.116 140.156,30.628 140.156,31.214 C140.156,31.570 140.248,31.878 140.432,32.139 C140.616,32.401 140.862,32.631 141.169,32.830 C141.476,33.029 141.829,33.206 142.228,33.363 C142.627,33.520 143.041,33.682 143.471,33.849 C144.003,34.059 144.540,34.278 145.083,34.508 C145.625,34.739 146.111,35.026 146.541,35.371 C146.970,35.716 147.323,36.140 147.600,36.642 C147.876,37.144 148.014,37.751 148.014,38.462 C148.014,39.089 147.896,39.675 147.661,40.219 C147.426,40.763 147.078,41.244 146.617,41.662 ZM124.566,35.575 C124.671,37.228 125.181,38.535 126.097,39.497 C127.012,40.459 128.206,40.940 129.679,40.940 C130.416,40.940 131.094,40.831 131.715,40.611 C132.336,40.391 132.931,40.104 133.499,39.748 L134.414,41.442 C133.740,41.861 132.994,42.227 132.173,42.541 C131.352,42.854 130.416,43.011 129.364,43.011 C128.332,43.011 127.370,42.828 126.475,42.462 C125.581,42.096 124.802,41.573 124.140,40.893 C123.477,40.214 122.956,39.382 122.577,38.399 C122.198,37.416 122.009,36.297 122.009,35.042 C122.009,33.787 122.203,32.662 122.593,31.669 C122.982,30.676 123.497,29.833 124.140,29.143 C124.781,28.453 125.513,27.925 126.333,27.558 C127.154,27.193 128.006,27.009 128.890,27.009 C129.858,27.009 130.726,27.177 131.494,27.511 C132.262,27.846 132.904,28.327 133.420,28.955 C133.935,29.582 134.330,30.335 134.603,31.214 C134.877,32.092 135.014,33.076 135.014,34.163 C135.014,34.728 134.982,35.199 134.919,35.575 L124.566,35.575 ZM131.747,30.288 C131.084,29.462 130.153,29.049 128.953,29.049 C128.406,29.049 127.885,29.159 127.391,29.378 C126.896,29.598 126.449,29.912 126.049,30.320 C125.649,30.727 125.318,31.229 125.055,31.826 C124.792,32.422 124.618,33.107 124.534,33.881 L132.741,33.881 C132.741,32.312 132.410,31.115 131.747,30.288 ZM115.726,40.914 L115.634,40.914 C115.044,41.481 114.368,41.973 113.605,42.388 C112.842,42.803 112.023,43.011 111.148,43.011 C109.276,43.011 107.786,42.342 106.677,41.005 C105.568,39.667 105.014,37.763 105.014,35.290 C105.014,34.095 105.192,33.016 105.548,32.053 C105.904,31.091 106.377,30.275 106.967,29.606 C107.557,28.938 108.238,28.421 109.012,28.056 C109.785,27.691 110.599,27.509 111.453,27.509 C112.308,27.509 113.050,27.661 113.681,27.965 C114.312,28.269 114.952,28.685 115.604,29.211 L115.482,26.688 L115.482,21.004 L118.015,21.004 L118.015,42.646 L115.940,42.646 L115.726,40.914 ZM115.482,31.157 C114.851,30.590 114.246,30.189 113.666,29.956 C113.086,29.723 112.491,29.606 111.881,29.606 C111.290,29.606 110.736,29.743 110.217,30.017 C109.699,30.290 109.246,30.675 108.859,31.172 C108.473,31.669 108.167,32.261 107.944,32.950 C107.720,33.639 107.608,34.409 107.608,35.260 C107.608,37.043 107.964,38.432 108.676,39.424 C109.388,40.417 110.395,40.914 111.698,40.914 C112.389,40.914 113.040,40.746 113.651,40.412 C114.261,40.078 114.871,39.566 115.482,38.877 L115.482,31.157 ZM94.513,42.990 L87.986,22.988 L90.752,22.988 L94.016,33.782 C94.389,34.981 94.715,36.089 94.995,37.105 C95.274,38.122 95.611,39.219 96.005,40.398 L96.129,40.398 C96.502,39.219 96.833,38.122 97.124,37.105 C97.414,36.089 97.735,34.981 98.087,33.782 L101.351,22.988 L103.992,22.988 L97.528,42.990 L94.513,42.990 ZM83.857,41.137 C83.187,41.807 82.395,42.287 81.481,42.576 C80.567,42.866 79.578,43.011 78.515,43.011 C77.452,43.011 76.459,42.866 75.534,42.576 C74.609,42.287 73.812,41.807 73.142,41.137 C72.472,40.468 71.946,39.594 71.564,38.515 C71.181,37.436 70.990,36.107 70.990,34.528 L70.990,22.988 L73.636,22.988 L73.636,34.588 C73.636,35.767 73.764,36.756 74.019,37.555 C74.274,38.355 74.619,38.994 75.055,39.474 C75.491,39.953 76.007,40.298 76.602,40.508 C77.197,40.718 77.835,40.823 78.515,40.823 C79.217,40.823 79.865,40.718 80.461,40.508 C81.055,40.298 81.577,39.953 82.023,39.474 C82.470,38.994 82.820,38.355 83.075,37.555 C83.331,36.756 83.458,35.767 83.458,34.588 L83.458,22.988 L86.009,22.988 L86.009,34.528 C86.009,36.107 85.818,37.436 85.435,38.515 C85.052,39.594 84.526,40.468 83.857,41.137 ZM53.004,31.344 C53.004,30.912 53.911,30.000 54.346,30.000 L55.676,30.000 C56.111,30.000 57.006,30.579 57.006,31.011 L57.010,32.011 L53.004,32.011 L53.004,31.344 ZM56.991,33.007 C57.349,50.954 39.728,55.736 32.973,55.992 C32.991,55.830 33.001,55.666 33.001,55.500 C33.001,55.025 32.927,54.567 32.790,54.137 C54.964,50.522 53.000,36.437 53.000,33.000 L56.991,33.007 ZM50.126,39.015 L47.015,39.015 L47.015,23.011 L50.126,23.011 C51.341,23.011 51.993,23.635 51.993,24.790 L51.993,37.237 C51.993,38.390 51.341,39.015 50.126,39.015 ZM12.498,40.988 C10.017,40.988 8.006,38.978 8.006,36.499 C8.006,34.020 10.017,32.010 12.498,32.010 C14.978,32.010 16.990,34.020 16.990,36.499 C16.990,38.978 14.978,40.988 12.498,40.988 ZM41.605,26.904 C35.512,30.841 28.816,31.849 21.427,28.513 C18.451,27.169 16.255,25.304 14.871,23.882 C12.462,26.587 9.109,29.406 4.228,30.000 L4.228,36.603 C4.228,41.833 6.183,46.830 9.712,50.770 C11.755,53.050 14.352,54.769 16.934,55.811 L15.724,60.013 C12.262,58.773 9.308,56.602 6.628,53.610 C2.411,48.903 -0.007,42.609 -0.007,36.341 L-0.007,30.037 L-0.007,27.929 L-0.006,27.928 L-0.008,22.797 C-0.008,10.349 10.319,-0.013 22.909,-0.013 L22.909,-0.013 C35.258,-0.013 45.592,10.076 45.977,22.197 C46.023,23.625 45.977,23.997 45.977,23.997 L41.605,26.904 ZM33.498,32.010 C35.978,32.010 37.990,34.020 37.990,36.499 C37.990,38.978 35.978,40.988 33.498,40.988 C31.017,40.988 29.006,38.978 29.006,36.499 C29.006,34.020 31.017,32.010 33.498,32.010 ZM28.495,53.017 C29.879,53.017 31.001,54.135 31.001,55.515 C31.001,56.895 29.879,58.014 28.495,58.014 C27.111,58.014 25.989,56.895 25.989,55.515 C25.989,54.135 27.111,53.017 28.495,53.017 Z\"></path>\n                    </svg>\n\n                    <p>Version {{ uvdesk_version }}</p>\n                </div>\n\n                <ul class=\"installation-progress-checklist\">\n                    <li class=\"active-node\">\n                        <div class=\"node\">\n                            <div class=\"outer-circle\"></div>\n                            <div class=\"inner-circle\"></div>\n                        </div>\n                        \n                        <p>Welcome</p>\n                    </li>\n\n                    <li>\n                        <div class=\"divider\"></div>\n                    </li>\n                    \n                    <li class=\"check-requirements\">\n                        <div class=\"node\">\n                            <div class=\"outer-circle\"></div>\n                            <div class=\"inner-circle\"></div>\n                        </div>\n                        \n                        <p>System Requirements</p>\n                    </li>\n\n                    <li>\n                        <div class=\"divider\"></div>\n                    </li>\n\n                    <li class=\"configure-database\">\n                        <div class=\"node\">\n                            <div class=\"outer-circle\"></div>\n                            <div class=\"inner-circle\"></div>\n                        </div>\n                        \n                        <p>Database Configuration</p>\n                    </li>\n\n                    <li>\n                        <div class=\"divider\"></div>\n                    </li>\n                    \n                    <li class=\"create-admin\">\n                        <div class=\"node\">\n                            <div class=\"outer-circle\"></div>\n                            <div class=\"inner-circle\"></div>\n                        </div>\n                        \n                        <p>Admin Details</p>\n                    </li>\n\n                    <li>\n                        <div class=\"divider\"></div>\n                    </li>\n\n                    <li class=\"install\">\n                        <div class=\"node\">\n                            <div class=\"outer-circle\"></div>\n                            <div class=\"inner-circle\"></div>\n                        </div>\n                        \n                        <p>Installation</p>\n                    </li>\n                </ul>\n            </div>\n        </script>\n\n        <script id=\"installationWizard-DefaultContentTemplate\" type=\"text/template\">\n            <div id=\"start-installation\">\n                <h2>Welcome</h2>\n                \n                <p>Welcome to the helpdesk installation wizard</p>\n                <p>This wizard will help you to guide in setting up the Uvdesk Community Edition on your system.</p>\n                <p style=\"padding: 5px; border: 1px solid black; margin-top: 15pt; font-style: italic;\"><b style=\"font-weight:bold\">Note:</b> Please check prerequisite as per your OS before starting installion process <a style=\"text-decoration:none\" href=\"https://www.uvdesk.com/en/blog/open-source-helpdesk-installation-on-ubuntu-uvdesk/\" target=\"_blank\">Ubuntu</a>, <a style=\"text-decoration:none\" href=\"https://www.uvdesk.com/en/blog/open-source-helpdesk-installation-on-wamp/\" target=\"_blank\">Windows</a>, <a style=\"text-decoration:none\"  href=\"https://www.uvdesk.com/en/blog/open-source-helpdesk-installation-centos-uvdesk/\" target=\"_blank\">Centos</a> and <a style=\"text-decoration:none\"  href=\"https://www.uvdesk.com/en/blog/installing-open-source-helpdesk-on-your-mac-with-mamp/\" target=\"_blank\">Mac.</a>\n                </p>\n\n                <ul class=\"button-groups\">\n                    <li><button id=\"wizardCTA-StartInstallation\" class=\"wizard-button solid button-theme-uvdesk\">LET'S BEGIN</button></li>\n                </ul>\n            </div>\n        </script>\n\n        <script id=\"installationWizard-SetupTemplate\" type=\"text/template\">\n            <div id=\"wizardSetup\"></div>\n            \n            <ul id=\"wizardSetupNavigation\" class=\"button-groups\">\n                <li><button id=\"wizardCTA-IterateBackward\" class=\"wizard-button solid button-theme-uvdesk\"><span>Back<span></button></li>\n                <li><button id=\"wizardCTA-IterateInstallation\" class=\"wizard-button solid button-theme-uvdesk\"><span>Proceed<span></button></li>\n            </div>\n        </script>\n\n        <script id=\"installationWizard-SystemRequirementsTemplate-PHPVersion\" type=\"text/template\">\n            <div class=\"version-info-container\">\n                <span class=\"wizard-svg-icon-criteria-checklist\"></span><label class=\"version-criteria-label\"></label>\n                <span class=\"PHPVersion-toggle-details\">Show details</span>\n            </div>\n\n            <div class=\"systemCriteria-Details\">\n                <span id=\"systemCriteria-PHPVersion-Details\"></span>\n            </div>\n        </script>\n\n        <script id=\"installationWizard-SystemRequirementsTemplate-PHPExtensions\" type=\"text/template\">\n            <div class=\"extension-info-container\">\n                <span class=\"wizard-svg-icon-criteria-checklist wizard-svg-icon-extension-criteria-checklist\"></span><label class=\"extension-criteria-label\"></label>\n                <span class=\"PHPExtensions-toggle-details\">Show details</span>\n            </div>\n\n            <div class=\"systemCriteria-Details\">\n                <ul id=\"systemCriteria-PHPExtensions-Details\">\n                    <li id=\"imap-info\" class=\"fetching-details\">\n                        <span class=\"wizard-svg-icon-criteria-checklist\"></span>\n                        <label id=\"imap-label\"></label>\n                    </li>\n\n                    <li id=\"mailparse-info\" class=\"fetching-details\">\n                        <span class=\"wizard-svg-icon-criteria-checklist\"></span>\n                        <label id=\"mailparse-label\"></label>\n                    </li>\n\n                    <li id=\"mysqli-info\" class=\"fetching-details\">\n                        <span class=\"wizard-svg-icon-criteria-checklist\"></span>\n                        <label id=\"mysqli-label\"></label>\n                    </li>\n                </ul>\n            </div>\n        </script>\n\n        <script id=\"installationWizard-SystemRequirementsTemplate-PHPExecution\" type=\"text/template\">\n            <div class=\"execution-info-container\">\n                <span class=\"wizard-svg-icon-criteria-checklist wizard-svg-icon-execution-criteria-checklist\"></span><label class=\"execution-criteria-label\"></label>\n                <span class=\"PHPExeTime-toggle-details\">Show details</span>\n            </div>\n            <div class=\"systemCriteria-Details\">\n                <span id=\"systemCriteria-PHPExecution-Details\">\n                </span>\n            </div>\n        </script>\n        \n        <script id=\"installationWizard-SystemRequirementsTemplate-PHPPermission\" type=\"text/template\">\n            <div class=\"permission-info-container\">\n                <span class=\"wizard-svg-icon-criteria-checklist wizard-svg-icon-permissionEnvfile-criteria-checklist\"></span><label class=\"permission-criteria-label\"></label>\n                <span class=\"PHPPermissionEnvfile-toggle-details\">Show Details</span>\n            </div>\n\n            <div class=\"systemCriteria-Details\">\n                <span id=\"systemCriteria-PHPPermission-Details\"></span>\n            </div>\n        </script>\n\n        <script id=\"installationWizard-SystemRequirementsTemplate\" type=\"text/template\">\n            <div id=\"wizard-systemRequirements\">\n                <h2>System Requirements</h2>\n                <p>The wizard will check whether your system meets the minimum requirements to successfully run the application.</p>\n                \n                <ul class=\"criteria-checklist\">\n                    <li id=\"systemCriteria-PHPVersion\" class=\"fetching-details\"></li>\n                    <li id=\"systemCriteria-PHPExtensions\" class=\"fetching-details\"></li>\n                    <li id=\"systemCriteria-PHPPermissionConfigfiles\" class=\"fetching-details\"></li>\n                    <li id=\"systemCriteria-PHPPermission\" class=\"fetching-details\"></li>\n                    <li id=\"systemCriteria-PHPExecution\" class=\"fetching-details\"></li>\n                    <li id=\"systemCriteria-RedisStatus\" class=\"fetching-details\"></li>\n                </ul>\n            </div>\n        </script>\n\n        <script id=\"installationWizard-SystemRequirementsTemplate-PHPPermissionConfigfiles\" type=\"text/template\">\n            <div class=\"permissionConfigfiles-info-container\">\n                <span class=\"wizard-svg-icon-criteria-checklist wizard-svg-icon-permissionConfigfiles-criteria-checklist\"></span><label class=\"permissionConfigfiles-criteria-label\"></label>\n                <span class=\"PHPPermissionConfigfiles-error-message\"></span>\n                <span class=\"PHPPermissionConfigfiles-toggle-details\">Show details</span>\n            </div>\n            <div class=\"systemCriteria-Details\">\n                <ul id=\"systemCriteria-PHPPermissionConfigfiles-Details\">\n                    <li id=\"uvdesk-info\" class=\"fetching-details\">\n                        <span class=\"wizard-svg-icon-criteria-checklist\"></span>\n                        <label id=\"uvdesk-label\"></label>\n                    </li>\n                    <li id=\"uvdesk_mailbox-info\" class=\"fetching-details\">\n                        <span class=\"wizard-svg-icon-criteria-checklist\"></span>\n                        <label id=\"uvdesk_mailbox-label\"></label>\n                    </li>\n                </ul>\n            </div>\n        </script>\n\n        <script id=\"installationWizard-DatabaseConfigurationTemplate\" type=\"text/template\">\n           <div id=\"wizard-configureDatabase\">\n                <h2>Database Configuration</h2>\n                <p>The wizard will check your MySQL database connection for any issues and configure it with your application.</p>\n\n\n                <form name=\"wizardForm-ConfigureDatabase\" class=\"database-integration wizard-form\" method=\"post\">\n                    <div class=\"form-field\">\n                        <label class=\"form-label\">Server<span class=\"uv-mandatory\">*</span></label>\n                        <div class=\"form-content\">\n                            <input name=\"serverName\" type=\"text\" value=\"<%- credentials.serverName %>\" placeholder=\"127.0.0.1\" />\n                            <p class=\"wizard-form-info\">Server name of the database (where it is hosted).</p>\n                        </div>\n                    </div>\n\n                    <div class=\"form-field\">\n                        <label class=\"form-label\">Server Version</label>\n                        <div class=\"form-content\">\n                            <input name=\"serverVersion\" type=\"text\" value=\"<%- credentials.serverVersion %>\" placeholder=\"\" />\n                            <p class=\"wizard-form-info\">Version number of the database server.</p>\n                        </div>\n                    </div>\n\n                     <div class=\"form-field\">\n                        <label class=\"form-label\">Port</label>\n                        <div class=\"form-content\">\n                            <input name=\"serverPort\" type=\"text\" value=\"<%- credentials.serverPort %>\" placeholder=\"3306\" />\n                            <p class=\"wizard-form-info\">Port number of the database (on which port database is hosted).</p>\n                        </div>\n                    </div>\n                    \n                    <div class=\"form-field\">\n                        <label class=\"form-label\">Username<span class=\"uv-mandatory\">*</span></label>\n                        <div class=\"form-content\">\n                            <input name=\"username\" type=\"text\" value=\"<%- credentials.username %>\" placeholder=\"root\" />\n                            <p class=\"wizard-form-info\">Username to use when connecting to the database.</p>\n                        </div>\n                    </div>\n                    \n                    <div class=\"form-field\">\n                        <label class=\"form-label\">Password<span class=\"uv-mandatory\">*</span></label>\n                        <div class=\"form-content\">\n                            <input name=\"password\" type=\"password\" value=\"\" placeholder=\"\" />\n                            <p class=\"wizard-form-info\">Password to use when connecting to the database.</p>\n                        </div>\n                    </div>\n\n                    <div class=\"form-field\">\n                        <label class=\"form-label\">Database<span class=\"uv-mandatory\">*</span></label>\n                        <div class=\"form-content\">\n                            <input name=\"database\" type=\"text\" value=\"<%- credentials.database %>\" placeholder=\"\" />\n                            <p class=\"wizard-form-info\">Name of the database/schema</p>\n                        </div>\n                    </div>\n\n                    <div class=\"form-field checkbox-form-field\">\n                        <label class=\"form-label\"></label>\n                        <div class=\"form-content\">\n                            <div class=\"checkbox\">\n                                <input id=\"createDatabase\" name=\"createDatabase\" type=\"checkbox\" <%= credentials.createDatabase == 1 ? \"checked\" : \"\" %> style=\"margin: unset;\" />\n                                <label for=\"createDatabase\" class=\"checkbox-info\">Automatically create database if not found?</label>\n                            </div>\n                        </div>\n                    </div>\n                </form>\n            </div>\n        </script>\n\n        <script id=\"installationWizard-AccountConfigurationTemplate\" type=\"text/template\">\n            <div id=\"wizard-configureAccount\">\n                <h2>Create Super Admin Account</h2>\n                <p>The wizard will create a default super admin account that can be used to access your application's backend.</p>\n\n                \n\n                <form name=\"wizardForm-ConfigureAccount\" method=\"post\" class=\"ConfigureAccount wizard-form\">\n                    <div class=\"form-field\">\n                        <label class=\"form-label\">Name<span class=\"uv-mandatory\">*</span></label>\n                        <div class=\"form-content\">\n                            <input name=\"name\" type=\"text\" value=\"<%- user.name %>\"  id=\"name\" placeholder=\"Name\" />\n                            <p class=\"wizard-form-info\">Name of the user to be created.</p>\n                        </div>\n                    </div>\n                    \n                    <div class=\"form-field\">\n                        <label class=\"form-label\">Email<span class=\"uv-mandatory\">*</span></label>\n                        <div class=\"form-content\">\n                            <input name=\"email\" type=\"text\" value=\"<%- user.email %>\" placeholder=\"Email\" />\n                            <p class=\"wizard-form-info\">Email of the user to be created.</p>\n                        </div>\n                    </div>\n                    \n                    <div class=\"form-field\">\n                        <label class=\"form-label\">Password<span class=\"uv-mandatory\">*</span></label>\n                        <div class=\"form-content\">\n                            <input name=\"password\" type=\"password\" id=\"password\" placeholder=\"Password\" />\n                            <p class=\"wizard-form-info\">Password to use when authenticating user.</p>\n                        </div>\n                    </div>\n\n                    <div class=\"form-field\">\n                        <label class=\"form-label\">Confirm Password<span class=\"uv-mandatory\">*</span></label>\n                        <div class=\"form-content\">\n                            <input name=\"confirm_password\" type=\"password\" value=\"<%- user.confirmPassword %>\" id=\"confirm_password\" placeholder=\"Confirm Password\" />\n                            <p class=\"wizard-form-info\">Confirm the entered user password.</p>\n                        </div>\n                    </div>\n                </form>\n            </div>\n        </script>\n\n        <script id=\"installationWizard-WebsiteConfigurationTemplate\" type=\"text/template\">\n            <div id=\"wizard-configureWebsite\">\n                <h2>Website Configuration</h2>\n                 <form name=\"wizardForm-ConfigureWebsite\" method=\"post\" action=\"\">\n                    <div class=\"form-field\">\n                        <label class=\"form-label\">Member Panel Prefix<span class=\"uv-mandatory\">*</span></label>\n                        <div class=\"form-content\">\n                            <input name=\"memberUrlPrefix\" type=\"text\" value=\"<%- member_panel_url %>\" placeholder=\"member\" class=\"form-content\"/>\n                        </div>\n                    </div>\n                    <div class=\"form-field\">\n                        <label class=\"form-label\">Customer Panel Prefix<span class=\"uv-mandatory\">*</span></label>\n                        <div class=\"form-content\">\n                            <input name=\"customerUrlPrefix\" type=\"text\" value=\"<%- customer_panel_url %>\" placeholder=\"customer\" class=\"form-content\"/>\n                        </div>\n                    </div>\n                </form>\n            </div>\n        </script>\n\n        <script id=\"installationWizard-InstallationCompleteTemplate\" type=\"text/template\">\n            <div id=\"wizardSetupComplete\">\n                \n                <h2>Congratulations!</h2>\n                <p>Your Uvdesk helpdesk has been installed successfully.</p>\n\t\t\t\t<div class=\"line-break\"></div>\n                <p style=\"color: #6F6F6F;\">Visit your admin and support panel by clicking on respective buttons.</p>\n                <h5 style=\"padding: 15px 0px 15px 0px;\">Admin</h5>\n    \t\t\t<a class =\"button_css\" href=\"<%- prefixCollection.member %>\" target=\"_blank\" id=\"member_panel_url\" target=\"_blank\" id=\"member_panel_url\" style=\"\">Admin Panel</a>\n    \t\t\t<h5 style=\"padding: 35px 0px 15px 0px\">Frontend</h5>\n    \t\t\t<a class =\"button_css\" href=\"<%- prefixCollection.knowledgebase %>\" target=\"_blank\" id=\"customer_panel_url\" target=\"_blank\" id=\"customer_panel_url\">Knowledgebase</a>\n               \n            </div>\n        </script>\n\n        <script id=\"installationWizard-InstallSetupTemplate-ProcessingItem\" type=\"text/template\">\n            <h2>Installation</h2>\n            <p>Please wait while your helpdesk is being installed. This could take up to a few minutes.</p>\n            <div class=\"lg-icon\">\n                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"90\" height=\"90\" viewBox=\"0 0 90 90\" >\n                    <path fill=\"#7c74f1\" fill-rule=\"evenodd\" d=\"M29.456,44.342a15.078,15.078,0,0,1,4.773-11A15.223,15.223,0,0,1,45.4,28.886,15.647,15.647,0,0,1,60.887,44.712a15.08,15.08,0,0,1-4.773,11,15.221,15.221,0,0,1-11.173,4.457A15.119,15.119,0,0,1,33.9,55.45,14.977,14.977,0,0,1,29.456,44.342ZM78.7,44.922a33.958,33.958,0,0,0-.145-4.382l9.537-7.188q1.479-1.024.462-2.915L79.77,14.9a2.043,2.043,0,0,0-2.712-.866l-11.17,4.249a34.492,34.492,0,0,0-7.479-4.468l-1.5-11.7a2.039,2.039,0,0,0-2.068-1.9L36.817,0a2.05,2.05,0,0,0-2.123,1.852L32.845,13.512A38.1,38.1,0,0,0,25.237,17.8L14.2,13.292a2.051,2.051,0,0,0-2.736.8L2.222,29.421q-1.079,1.865.376,2.925l9.321,7.41a33.43,33.43,0,0,0-.274,4.377,33.305,33.305,0,0,0,.145,4.382L2.253,55.7q-1.484,1.029-.462,2.915l8.782,15.539a2.039,2.039,0,0,0,2.712.866l11.17-4.249a34.072,34.072,0,0,0,7.479,4.468l1.5,11.7a2.035,2.035,0,0,0,2.068,1.9l18.02,0.212A2.054,2.054,0,0,0,55.649,87.2L57.5,75.543a38.1,38.1,0,0,0,7.608-4.291l11.041,4.51a2.049,2.049,0,0,0,2.736-.8l9.238-15.326q1.074-1.865-.376-2.925L78.423,49.3A33.885,33.885,0,0,0,78.7,44.922Z\"></path>\n                    </svg>\n            </div>\n            <div class=\"sm-icon\">\n                    <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"70\" height=\"70\" viewBox=\"0 0 90 90\" class=\"small-svg\">\n                        <path fill=\"#7c74f1\" fill-rule=\"evenodd\" d=\"M29.456,44.342a15.078,15.078,0,0,1,4.773-11A15.223,15.223,0,0,1,45.4,28.886,15.647,15.647,0,0,1,60.887,44.712a15.08,15.08,0,0,1-4.773,11,15.221,15.221,0,0,1-11.173,4.457A15.119,15.119,0,0,1,33.9,55.45,14.977,14.977,0,0,1,29.456,44.342ZM78.7,44.922a33.958,33.958,0,0,0-.145-4.382l9.537-7.188q1.479-1.024.462-2.915L79.77,14.9a2.043,2.043,0,0,0-2.712-.866l-11.17,4.249a34.492,34.492,0,0,0-7.479-4.468l-1.5-11.7a2.039,2.039,0,0,0-2.068-1.9L36.817,0a2.05,2.05,0,0,0-2.123,1.852L32.845,13.512A38.1,38.1,0,0,0,25.237,17.8L14.2,13.292a2.051,2.051,0,0,0-2.736.8L2.222,29.421q-1.079,1.865.376,2.925l9.321,7.41a33.43,33.43,0,0,0-.274,4.377,33.305,33.305,0,0,0,.145,4.382L2.253,55.7q-1.484,1.029-.462,2.915l8.782,15.539a2.039,2.039,0,0,0,2.712.866l11.17-4.249a34.072,34.072,0,0,0,7.479,4.468l1.5,11.7a2.035,2.035,0,0,0,2.068,1.9l18.02,0.212A2.054,2.054,0,0,0,55.649,87.2L57.5,75.543a38.1,38.1,0,0,0,7.608-4.291l11.041,4.51a2.049,2.049,0,0,0,2.736-.8l9.238-15.326q1.074-1.865-.376-2.925L78.423,49.3A33.885,33.885,0,0,0,78.7,44.922Z\"></path>\n                        </svg>\n            </div>\n            <div class=\"progress\">\n                <ul>\n                    <li class=\"current\">1</li>\n                    <li>2</li>\n                    <li>3</li>\n                    <li>4</li>\n                    <li>5</li>\n                </ul>\n            </div>\n            <div class=\"error-messagebar\">\n                 <span class=\"wizard-svg-icon-failed-criteria-checklist\"></span>\n                 <span id=\"error-message-bar\" style=\"color:#FF0000\"></span>\n            </div>\n        </script>\n\n        <script id=\"installationWizard-InstallSetupTemplate\" type=\"text/template\">\n            <div id=\"wizard-finalizeInstall\">\n                <p>Your Uvdesk Community Helpdesk is ready to be installed.</p>\n\n                <ul class=\"button-groups\" style=\"margin-top: 20px;\">\n                    <li><button id=\"wizardCTA-StartInstallation\" class=\"wizard-button solid button-theme-uvdesk\" style=\"margin: unset;\">Install Now</button></li>\n                </ul>\n            </div>\n        </script>\n\n        <script id=\"installationWizard-SystemRequirementsTemplate-RedisEnable\" type=\"text/template\">\n            <div class=\"redis-info-container\">\n                <span class=\"wizard-svg-icon-criteria-checklist wizard-svg-icon-redis-criteria-checklist\"></span><label class=\"redis-criteria-label\"></label>\n                <span class=\"PHPEnableRedis-toggle-details\">Show details</span>\n            </div>\n            <div class=\"systemCriteria-Details\">\n                <ul class=\"systemCriteria-PHPEnableRedis-Details\">\n                    <li id=\"redis-info\" class=\"fetching-details\">\n                        <span class=\"wizard-svg-icon-redis-criteria-checklist\"></span>\n                        <label id=\"redis-label\"></label>\n                    </li>\n                </ul>\n            </div>\n        </script>\n    </body>\n</html>"
  },
  {
    "path": "templates/mail.html.twig",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n    <head>\n        <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n        <title>{% block title %}{% endblock %}</title>\n        {% block metadata %}{% endblock %}\n    </head>\n    \n    <body>\n        {{ message|raw }}\n    </body>\n</html>"
  },
  {
    "path": "translations/.gitignore",
    "content": ""
  },
  {
    "path": "translations/messages.ar.yml",
    "content": "\"Signed in as\": \"تسجيل دخولك\"\n\"Your Profile\": \"ملفك الشخصي\"\n\"Create Ticket\": \"إنشاء تذكرة\"\n\"Create Agent\": \"إنشاء مساعد\"\n\"Create Customer\": \"إنشاء مستخدم\"\n\"Sign Out\": \"خروج\"\n\"Default Language (Optional)\": \"اللغة الافتراضية (اختياري)\"\n\"Swift Mailer ID\": \"معرّف Swift Mailer\"\n\"Username/Email\": \"اسم المستخدم / Email\"\n\"create new\": \"خلق جديد إبداع جديد\"\n\"Howdy!\": \"مرحبًا!\"\n\"Ticket Information\": \"معلومات البطاقة\"\n\"CC/BCC\": \"CC / BCC\"\n\"Success! Label created successfully.\": \"تم بنجاح! تم إنشاء التسمية بنجاح.\"\n\"Success! Label removed successfully.\": \"نجاح! تمت إزالة التسمية بنجاح.\"\n\"Reports\": \"التقارير\"\n\"Agent Activity\": \"نشاط الوكيل\"\n\"Report From\": \"تقرير من\"\n\"Search Agent\": \"عامل البحث\"\n\"Agent Last Reply\": \"آخر رد للوكيل\"\n\"View analytics and insights to serve a better experience for your customers\": \"عرض التحليلات والرؤى لتقديم تجربة أفضل لعملائك\"\n\"Marketing Announcement\": \"إعلان تسويق\"\n\"Advertisement\": \"إعلان\"\n\"Announcement\": \"إعلان\"\n\"New Announcement\": \"إعلان جديد\"\n\"Add Announcement\": \"اضافة اعلان\"\n\"Edit Announcement\": \"إعلان تحرير\"\n\"Promo Text\": \"نص ترويجي\"\n\"Promo Tag\": \"العلامة الترويجية\"\n\"Choose a promo tag\": \"اختر علامة ترويجية\"\n\"Tag-Color\": \"لون العلامة\"\n\"Tag background color\": \"لون خلفية العلامة\"\n\"Link Text\": \"نص الارتباط\"\n\"Link URL\": \"URL رابط\"\n\"Apps\": \"تطبيقات\"\n\"Slug is the url identity of this article. We will help you to create valid slug at time of typing.\": \"Slug هو هوية عنوان url لهذه المقالة. سنساعدك على إنشاء سبيكة ثابتة صالحة في وقت الكتابة.\"\n\"The URL for this article\": \"عنوان URL لهذه المقالة\"\n\"Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A page's title tag and meta description are usually shown whenever that page appears in search engine results\": \"علامات العنوان وأوصاف التعريف هي أجزاء من تعليمات HTML البرمجية في رأس صفحة الويب. تساعد محركات البحث في فهم المحتوى الموجود على الصفحة. عادةً ما يتم عرض علامة عنوان الصفحة ووصفها التعريفي كلما ظهرت هذه الصفحة في نتائج محرك البحث\"\n\"comma separated (,)\": \"مفصولة بفواصل (،)\"\n\"Article Title\": \"عنوان المقال\"\n\"Start typing few charactors and add set of relevant article from the list\": \"ابدأ في كتابة عدد قليل من الأحرف وإضافة مجموعة من المقالات ذات الصلة من القائمة\"\n\"Success! Announcement data saved successfully.\": \"النجاح! تم حفظ بيانات الإعلان بنجاح.\"\n\"Success! Category has been added successfully.\": \"النجاح! تمت إضافة الفئة بنجاح.\"\n\"Success ! Agent added successfully.\": \"النجاح ! تمت إضافة الوكيل بنجاح.\"\n\"Success! Privilege information saved successfully.\": \"النجاح! تم حفظ معلومات الامتياز بنجاح.\"\n\"Edit Prepared Response\": \"تحرير الاستجابة المعدة\"\n\"Success! Type removed successfully.\": \"النجاح! تمت إزالة النوع بنجاح.\"\n\"No results available\": \"لا توجد نتائج متاحة\"\n\"Success ! Prepared Response applied successfully.\": \"النجاح ! تم تطبيق الاستجابة المحضرة بنجاح.\"\n\"Note added to ticket successfully.\": \"تمت إضافة الملاحظة إلى التذكرة بنجاح.\"\n\"Ticket status update to Spam\": \"تحديث حالة التذكرة إلى البريد العشوائي\"\n\"Ticket status update to Closed\": \"تحديث حالة التذكرة إلى مغلق\"\n\"Success! Label updated successfully.\": \"النجاح! تم تحديث التسمية بنجاح.\"\n\"Success ! Helpdesk details saved successfully\": \"النجاح ! تم حفظ تفاصيل مكتب المساعدة بنجاح\"\n\"Integrate apps as per your needs to get things done faster than ever\": \"ثبّت تطبيقات مخصصة جديدة لتعزيز إنتاجيتك - <a href='https://store.webkul.com/UVdesk/UVdesk-Open-Source.html' style='font-weight: bold' target='_blank'>استكشف الآن</a>\"\n\"Explore Apps\": \"استكشاف التطبيقات\"\n\"Form Builder\": \"منشئ النموذج\"\n\"Knowledgebase\": \"قاعدة المعرفة\"\n\"Knowledgebase is a source of rigid and complex information which helps Customers to help themselves\": \"قاعدة المعرفة هي مصدر معلومات جامدة ومعقدة تساعد العملاء على مساعدة أنفسهم\"\n\"Articles\": \"مقالات\"\n\"Categories\": \"التصنيفات\"\n\"Folders\": \"المجلدات\"\n\"FOLDERS\": \"المجلدات\"\n\"Productivity\": \"إنتاجية\"\n\"Automate your processes by creating set of rules and presets to respond faster to the tickets\": \"أتمتة عملياتك من خلال إنشاء مجموعة من القواعد والإعدادات المسبقة للاستجابة بشكل أسرع للتذاكر\"\n\"Prepared Responses\": \"ردود جاهزة\"\n\"Saved Replies\": \"الردود المحفوظة\"\n\"Edit Saved Reply\": \"تحرير الرد المحفوظ\"\n\"Ticket Types\": \"أنواع التذاكر\"\n\"Workflows\": \"سير العمل\"\n\"Settings\": \"الإعدادات\"\n\"Manage your Brand Identity, Company Information and other details at a glance\": \"إدارة هوية العلامة التجارية الخاصة بك , معلومات الشركة وتفاصيل أخرى في لمحة\"\n\"Branding\": \"العلامة التجارية\"\n\"Custom Fields\": \"الحقول المخصصة\"\n\"Email Settings\": \"إعدادات البريد الإلكتروني\"\n\"Email Templates\": \"قوالب البريد الإلكتروني\"\n\"Mailbox\": \"صندوق بريد\"\n\"Spam Settings\": \"إعدادات البريد العشوائي\"\n\"Swift Mailer\": \"سويفت ميلر\"\n\"Tags\": \"العلامات\"\n\"Users\": \"المستخدمون\"\n\"Control your Groups, Teams, Agents and Customers\": \"السيطرة على مجموعاتك , فرق , المساعد والمستخدمين\"\n\"Agents\": \"المساعدون\"\n\"Customers\": \"الزبائن\"\n\"Groups\": \"مجموعات\"\n\"Privileges\": \"امتيازات\"\n\"Teams\": \"فرق\"\n\"Applications\": \"التطبيقات\"\n\"ECommerce Order Syncronization\": \"تزامن أمر التجارة الإلكترونية\"\n\"Import ecommerce order details to your support tickets from different available platforms\": \"استيراد تفاصيل طلب التجارة الإلكترونية إلى تذاكر الدعم الخاصة بك من منصات مختلفة متاحة\"\n\"Search\": \"بحث\"\n\"Sort By\": \"صنف حسب\"\n\"Status\": \"الحالة\"\n\"Created At\": \"أنشئت في\"\n\"Name\": \"اسم\"\n\"All\": \"الكل\"\n\"Published\": \"نشرت\"\n\"Draft\": \"مشروع\"\n\"New Folder\": \"ملف جديد\"\n\"Create Knowledgebase Folder\": \"إنشاء مجلد Knowledgebase\"\n\"You did not add any folder to your Knowledgebase yet, Create your first Folder and start adding Categories/Articles to make your customers help themselves.\": \"لم تقم بإضافة أي مجلد إلى قاعدة المعارف الخاصة بك حتى الآن , قم بإنشاء المجلد الأول وابدأ في إضافة فئات / مقالات لجعل عملائك يساعدون أنفسهم.\"\n\"Clear Filters\": \"مرشحات واضحة\"\n\"Back\": \"عودة\"\n\"Open\": \"افتح\"\n\"Pending\": \"قيد الانتظار\"\n\"Answered\": \"أجاب\"\n\"Resolved\": \"تم الحل\"\n\"Closed\": \"مغلق\"\n\"Spam\": \"بريد مؤذي\"\n\"New\": \"جديد\"\n\"UnAssigned\": \"غير مخصص\"\n\"UnAnswered\": \"بلا إجابة\"\n\"My Tickets\": \"تذاكري\"\n\"Starred\": \"مميزة بنجمة\"\n\"Trashed\": \"محطم\"\n\"New Label\": \"تسمية جديدة\"\n\"Tickets\": \"التذاكر\"\n\"Ticket Id\": \"معرف التذكرة\"\n\"Last Replied\": \"رد آخر\"\n\"Assign To\": \"يسند إلى\"\n\"After Reply\": \"بعد الرد\"\n\"Customer Email\": \"البريد الإلكتروني للعميل\"\n\"Customer Name\": \"اسم الزبون\"\n\"Assets Visibility\": \"رؤية الأصول\"\n\"Channel/Source\": \"القناة / المصدر\"\n\"Channel\": \"قناة\"\n\"Website\": \"موقع الكتروني\"\n\"Timestamp\": \"الطابع الزمني\"\n\"TimeStamp\": \"الطابع الزمني\"\n\"Team\": \"الفريق\"\n\"Type\": \"نوع\"\n\"Replies\": \"الردود\"\n\"Agent\": \"المساعد\"\n\"ID\": \"هوية شخصية\"\n\"Subject\": \"موضوع\"\n\"Last Reply\": \"آخر رد\"\n\"Filter View\": \"عرض التصفية\"\n\"Please select CAPTCHA\": \"الرجاء اختيار CAPTCHA\"\n\"Warning ! Please select correct CAPTCHA !\": \"تحذير! الرجاء تحديد CAPTCHA الصحيح!\"\n\"reCAPTCHA Setting\": \"إعداد reCAPTCHA\"\n\"reCAPTCHA Site Key\": \"مفتاح موقع reCAPTCHA\"\n\"reCAPTCHA Secret key\": \"المفتاح السري reCAPTCHA\"\n\"reCAPTCHA Status\": \"حالة reCAPTCHA\"\n\"reCAPTCHA is Active\": \"reCAPTCHA نشط\"\n\"Save set of filters as a preset to stay more productive\": \"احفظ مجموعة الفلاتر كإعداد مسبق للبقاء أكثر إنتاجية\"\n\"Saved Filters\": \"الفلاتر المحفوظة\"\n\"No saved filter created\": \"لم يتم إنشاء فلتر محفوظ\"\n\"Customer\": \"الزبون\"\n\"Priority\": \"أفضلية\"\n\"Tag\": \"بطاقة شعار\"\n\"Source\": \"مصدر\"\n\"Before\": \"قبل\"\n\"After\": \"بعد\"\n\"Replies less than\": \"الردود أقل من\"\n\"Replies more than\": \"الردود أكثر من\"\n\"Clear All\": \"امسح الكل\"\n\"Account\": \"الحساب\"\n\"Profile\": \"الملف الشخصي\"\n\"Upload a Profile Image (100px x 100px)<br> in PNG or JPG Format\": \"تحميل صورة ملف شخصي (100 بكسل × 100 بكسل) <br> بتنسيق PNG أو JPG\"\n\"First Name\": \"الاسم الاول\"\n\"Last Name\": \"اسم العائلة\"\n\"Email\": \"البريد الإلكتروني\"\n\"Contact Number\": \"رقم الاتصال\"\n\"Timezone\": \"وحدة زمنية\"\n\"Africa/Abidjan\": \"إفريقيا / أبيدجان\"\n\"Africa/Accra\": \"إفريقيا / أكرا\"\n\"Africa/Addis_Ababa\": \"أفريقيا / Addis_Ababa\"\n\"Africa/Algiers\": \"أفريقيا / الجزائر\"\n\"Africa/Asmara\": \"إفريقيا / أسمرة\"\n\"Africa/Bamako\": \"إفريقيا / باماكو\"\n\"Africa/Bangui\": \"أفريقيا / بانغي\"\n\"Africa/Banjul\": \"إفريقيا / بانجول\"\n\"Africa/Bissau\": \"إفريقيا / بيساو\"\n\"Africa/Blantyre\": \"أفريقيا / بلانتير\"\n\"Africa/Brazzaville\": \"إفريقيا / برازافيل\"\n\"Africa/Bujumbura\": \"إفريقيا / بوجمبورا\"\n\"Africa/Cairo\": \"إفريقيا / القاهرة\"\n\"Africa/Casablanca\": \"إفريقيا / الدار البيضاء\"\n\"Africa/Ceuta\": \"إفريقيا / سبتة\"\n\"Africa/Conakry\": \"إفريقيا / كوناكري\"\n\"Africa/Dakar\": \"إفريقيا / داكار\"\n\"Africa/Dar_es_Salaam\": \"أفريقيا / Dar_es_Salaam\"\n\"Africa/Djibouti\": \"إفريقيا / جيبوتي\"\n\"Africa/Douala\": \"إفريقيا / دوالا\"\n\"Africa/El_Aaiun\": \"أفريقيا / العيون\"\n\"Africa/Freetown\": \"إفريقيا / فريتاون\"\n\"Africa/Gaborone\": \"أفريقيا / غابورون\"\n\"Africa/Harare\": \"أفريقيا / هراري\"\n\"Africa/Johannesburg\": \"افريقيا / جوهانسبرغ\"\n\"Africa/Juba\": \"أفريقيا / جوبا\"\n\"Africa/Kampala\": \"إفريقيا / كمبالا\"\n\"Africa/Khartoum\": \"إفريقيا / الخرطوم\"\n\"Africa/Kigali\": \"أفريقيا / كيغالي\"\n\"Africa/Kinshasa\": \"إفريقيا / كينشاسا\"\n\"Africa/Lagos\": \"أفريقيا / لاغوس\"\n\"Africa/Libreville\": \"إفريقيا / ليبرفيل\"\n\"Africa/Lome\": \"إفريقيا / لومي\"\n\"Africa/Luanda\": \"إفريقيا / لواندا\"\n\"Africa/Lubumbashi\": \"إفريقيا / لوبومباشي\"\n\"Africa/Lusaka\": \"إفريقيا / لوساكا\"\n\"Africa/Malabo\": \"إفريقيا / مالابو\"\n\"Africa/Maputo\": \"إفريقيا / مابوتو\"\n\"Africa/Maseru\": \"إفريقيا / ماسيرو\"\n\"Africa/Mbabane\": \"إفريقيا / مباباني\"\n\"Africa/Mogadishu\": \"أفريقيا / مقديشو\"\n\"Africa/Monrovia\": \"إفريقيا / مونروفيا\"\n\"Africa/Nairobi\": \"أفريقيا / نيروبي\"\n\"Africa/Ndjamena\": \"إفريقيا / نجامينا\"\n\"Africa/Niamey\": \"إفريقيا / نيامي\"\n\"Africa/Nouakchott\": \"إفريقيا / نواكشوط\"\n\"Africa/Ouagadougou\": \"إفريقيا / واغادوغو\"\n\"Africa/Porto-Novo\": \"إفريقيا / بورتو نوفو\"\n\"Africa/Sao_Tome\": \"إفريقيا / ساو تومي\"\n\"Africa/Tripoli\": \"إفريقيا / طرابلس\"\n\"Africa/Tunis\": \"أفريقيا / تونس\"\n\"Africa/Windhoek\": \"إفريقيا / ويندهوك\"\n\"America/Adak\": \"أمريكا / أداك\"\n\"America/Anchorage\": \"أمريكا / مرسى\"\n\"America/Anguilla\": \"أمريكا / أنغيلا\"\n\"America/Antigua\": \"أمريكا / أنتيغوا\"\n\"America/Araguaina\": \"أمريكا / أراغوينا\"\n\"America/Argentina/Buenos_Aires\": \"أمريكا / الأرجنتين / بيونس آيرس\"\n\"America/Argentina/Catamarca\": \"أمريكا / الأرجنتين / كاتاماركا\"\n\"America/Argentina/Cordoba\": \"أمريكا / الأرجنتين / كوردوبا\"\n\"America/Argentina/Jujuy\": \"أمريكا / الأرجنتين / خوخوي\"\n\"America/Argentina/La_Rioja\": \"أمريكا / الأرجنتين / La_Rioja\"\n\"America/Argentina/Mendoza\": \"أمريكا / الأرجنتين / مندوزا\"\n\"America/Argentina/Rio_Gallegos\": \"أمريكا / الأرجنتين / Rio_Gallegos\"\n\"America/Argentina/Salta\": \"أمريكا / الأرجنتين / سالتا\"\n\"America/Argentina/San_Juan\": \"أمريكا / الأرجنتين / San_Juan\"\n\"America/Argentina/San_Luis\": \"أمريكا / الأرجنتين / San_Luis\"\n\"America/Argentina/Tucuman\": \"أمريكا / الأرجنتين / توكومان\"\n\"America/Argentina/Ushuaia\": \"أمريكا / الأرجنتين / أوشوايا\"\n\"America/Aruba\": \"أمريكا / أروبا\"\n\"America/Asuncion\": \"أمريكا / أسونسيون\"\n\"America/Atikokan\": \"أمريكا / Atikokan\"\n\"America/Bahia\": \"أمريكا / باهيا\"\n\"America/Bahia_Banderas\": \"أمريكا / Bahia_Banderas\"\n\"America/Barbados\": \"أمريكا / بربادوس\"\n\"America/Belem\": \"أمريكا / بيليم\"\n\"America/Belize\": \"أمريكا / بليز\"\n\"America/Blanc-Sablon\": \"أمريكا / بلون سابلون\"\n\"America/Boa_Vista\": \"أمريكا / بوا فيستا\"\n\"America/Bogota\": \"أمريكا / بوغوتا\"\n\"America/Boise\": \"أمريكا / بويز\"\n\"America/Cambridge_Bay\": \"أمريكا / خليج كامبريدج\"\n\"America/Campo_Grande\": \"أمريكا / Campo_Grande\"\n\"America/Cancun\": \"أمريكا / كانكون\"\n\"America/Caracas\": \"أمريكا / كاراكاس\"\n\"America/Cayenne\": \"أمريكا / كاين\"\n\"America/Cayman\": \"أمريكا / كايمان\"\n\"America/Chicago\": \"أمريكا / شيكاغو\"\n\"America/Chihuahua\": \"أمريكا / تشيهواهوا\"\n\"America/Costa_Rica\": \"أمريكا / كوستاريكا\"\n\"America/Creston\": \"أمريكا / كريستون\"\n\"America/Cuiaba\": \"أمريكا / كويابا\"\n\"America/Curacao\": \"أمريكا / كوراكاو\"\n\"America/Danmarkshavn\": \"أمريكا / دانماركشافن\"\n\"America/Dawson\": \"أمريكا / داوسون\"\n\"America/Dawson_Creek\": \"أمريكا / Dawson_Creek\"\n\"America/Denver\": \"أمريكا / دنفر\"\n\"America/Detroit\": \"أمريكا / ديترويت\"\n\"America/Dominica\": \"أمريكا / دومينيكا\"\n\"America/Edmonton\": \"أمريكا / أدمنتون\"\n\"America/Eirunepe\": \"أمريكا / من Eirunepe\"\n\"America/El_Salvador\": \"أمريكا / السلفادور\"\n\"America/Fort_Nelson\": \"أمريكا / Fort_Nelson\"\n\"America/Fortaleza\": \"أمريكا / فورتاليزا\"\n\"America/Glace_Bay\": \"أمريكا / خليج جلاس\"\n\"America/Godthab\": \"أمريكا / غودتاب\"\n\"America/Goose_Bay\": \"أمريكا / خليج غوس\"\n\"America/Grand_Turk\": \"أمريكا / غراند ترك\"\n\"America/Grenada\": \"أمريكا / غرينادا\"\n\"America/Guadeloupe\": \"أمريكا / غوادلوب\"\n\"America/Guatemala\": \"أمريكا / غواتيمالا\"\n\"America/Guayaquil\": \"أمريكا / غواياكيل\"\n\"America/Guyana\": \"أمريكا / غيانا\"\n\"America/Halifax\": \"أمريكا / هاليفاكس\"\n\"America/Havana\": \"أمريكا / هافانا\"\n\"America/Hermosillo\": \"أمريكا / هيرموسيلو\"\n\"America/Indiana/Indianapolis\": \"أمريكا / إنديانا / إنديانابوليس\"\n\"America/Indiana/Knox\": \"أمريكا / إنديانا / نوكس\"\n\"America/Indiana/Marengo\": \"أمريكا / إنديانا / مارينغو\"\n\"America/Indiana/Petersburg\": \"أمريكا / إنديانا / بطرسبرج\"\n\"America/Indiana/Tell_City\": \"أمريكا / إنديانا / Tell_City\"\n\"America/Indiana/Vevay\": \"أمريكا / إنديانا / فيفاي\"\n\"America/Indiana/Vincennes\": \"أمريكا / إنديانا / فينسين\"\n\"America/Indiana/Winamac\": \"أمريكا / إنديانا / Winamac\"\n\"America/Inuvik\": \"أمريكا / إنوفيك\"\n\"America/Iqaluit\": \"أمريكا / إكالويت\"\n\"America/Jamaica\": \"أمريكا / جامايكا\"\n\"America/Juneau\": \"أمريكا / جونو\"\n\"America/Kentucky/Louisville\": \"أمريكا / كنتاكي / لويزفيل\"\n\"America/Kentucky/Monticello\": \"أمريكا / كنتاكي / مونتيسيلو\"\n\"America/Kralendijk\": \"أمريكا / كرالينديجك\"\n\"America/La_Paz\": \"أمريكا / لا باز\"\n\"America/Lima\": \"أمريكا / ليما\"\n\"America/Los_Angeles\": \"أمريكا / Los_Angeles\"\n\"America/Lower_Princes\": \"أمريكا / Lower_Princes\"\n\"America/Maceio\": \"أمريكا / ماسيو\"\n\"America/Managua\": \"أمريكا / ماناغوا\"\n\"America/Manaus\": \"أمريكا / ماناوس\"\n\"America/Marigot\": \"أمريكا / ماريجوت\"\n\"America/Martinique\": \"أمريكا / مارتينيك\"\n\"America/Matamoros\": \"أمريكا / ماتاموروس\"\n\"America/Mazatlan\": \"أمريكا / مازاتلان\"\n\"America/Menominee\": \"أمريكا / مينوميني\"\n\"America/Merida\": \"أمريكا / ميريدا\"\n\"America/Metlakatla\": \"أمريكا / ميتلاكاتلا\"\n\"America/Mexico_City\": \"أمريكا / Mexico_City\"\n\"America/Miquelon\": \"أمريكا / ميكلون\"\n\"America/Moncton\": \"أمريكا / مونكتون\"\n\"America/Monterrey\": \"أمريكا / مونتيري\"\n\"America/Montevideo\": \"أمريكا / مونتيفيديو\"\n\"America/Montserrat\": \"أمريكا / مونتسيرات\"\n\"America/Nassau\": \"أمريكا / ناسو\"\n\"America/New_York\": \"أمريكا / نيويورك\"\n\"America/Nipigon\": \"أمريكا / نيبجون\"\n\"America/Nome\": \"أمريكا / نومي\"\n\"America/Noronha\": \"أمريكا / نورونها\"\n\"America/North_Dakota/Beulah\": \"أمريكا / داكوتا الشمالية / بيولا\"\n\"America/North_Dakota\": \"أمريكا / داكوتا الشمالية\"\n\"America/Ojinaga\": \"أمريكا / أوهيناغا\"\n\"America/Panama\": \"أمريكا / بنما\"\n\"America/Pangnirtung\": \"أمريكا / بانجنيرتونج\"\n\"America/Paramaribo\": \"أمريكا / باراماريبو\"\n\"America/Phoenix\": \"أمريكا / فينكس\"\n\"America/Port-au-Prince\": \"أمريكا / بورت أو برنس\"\n\"America/Port_of_Spain\": \"أمريكا / بورت اوف سبين\"\n\"America/Porto_Velho\": \"أمريكا / بورتو فاليو\"\n\"America/Puerto_Rico\": \"أمريكا / بورتوريكو\"\n\"America/Punta_Arenas\": \"أمريكا / Punta_Arenas\"\n\"America/Rainy_River\": \"أمريكا / نهر الراني\"\n\"America/Rankin_Inlet\": \"أمريكا / رانكين إنليت\"\n\"America/Recife\": \"أمريكا / ريسيفي\"\n\"America/Regina\": \"أمريكا / ريجينا\"\n\"America/Resolute\": \"أمريكا / حازم\"\n\"America/Rio_Branco\": \"أمريكا / ريو برانكو\"\n\"America/Santarem\": \"أمريكا / سانتاريم\"\n\"America/Santiago\": \"أمريكا / سانتياغو\"\n\"America/Santo_Domingo\": \"أمريكا / سانتو دومينغو\"\n\"America/Sao_Paulo\": \"أمريكا / ساو باولو\"\n\"America/Scoresbysund\": \"أمريكا / سكورسبيسوند\"\n\"America/Sitka\": \"أمريكا / سيتكا\"\n\"America/St_Barthelemy\": \"أمريكا / St_Barthelemy\"\n\"America/St_Johns\": \"أمريكا / سانت جونز\"\n\"America/St_Kitts\": \"أمريكا / St_Kitts\"\n\"America/St_Lucia\": \"أمريكا / سانت لوسيا\"\n\"America/St_Thomas\": \"أمريكا / سانت توماس\"\n\"America/St_Vincent\": \"أمريكا / سانت فنسنت\"\n\"America/Swift_Current\": \"أمريكا / سويفت كرنت\"\n\"America/Tegucigalpa\": \"أمريكا / تيغوسيغالبا\"\n\"America/Thule\": \"أمريكا / ثول\"\n\"America/Thunder_Bay\": \"أمريكا / خليج ثندر\"\n\"America/Tijuana\": \"أمريكا / تيخوانا\"\n\"America/Toronto\": \"أمريكا / تورونتو\"\n\"America/Tortola\": \"أمريكا / تورتولا\"\n\"America/Vancouver\": \"أمريكا / فانكوفر\"\n\"America/Whitehorse\": \"أمريكا / وايت هورس\"\n\"America/Winnipeg\": \"أمريكا / وينيبيغ\"\n\"America/Yakutat\": \"أمريكا / من Yakutat\"\n\"America/Yellowknife\": \"أمريكا / يلونايف\"\n\"Antarctica/Casey\": \"أنتاركتيكا / كاسي\"\n\"Antarctica/Davis\": \"أنتاركتيكا / ديفيس\"\n\"Antarctica/DumontDUrville\": \"أنتاركتيكا / دومونت دورفيل\"\n\"Antarctica/Macquarie\": \"أنتاركتيكا / ماكواري\"\n\"Antarctica/McMurdo\": \"أنتاركتيكا / ماكموردو\"\n\"Antarctica/Mawson\": \"أنتاركتيكا / ماوسون\"\n\"Antarctica/Palmer\": \"أنتاركتيكا / بالمر\"\n\"Antarctica/Rothera\": \"أنتاركتيكا / روثيرا\"\n\"Antarctica/Syowa\": \"أنتاركتيكا / سيووا\"\n\"Antarctica/Troll\": \"أنتاركتيكا / ترول\"\n\"Antarctica/Vostok\": \"أنتاركتيكا / فوستوك\"\n\"Arctic/Longyearbyen\": \"القطب الشمالي / ونجييربين\"\n\"Asia/Aden\": \"آسيا / عدن\"\n\"Asia/Almaty\": \"آسيا / ألماتي\"\n\"Asia/Amman\": \"آسيا / عمان\"\n\"Asia/Anadyr\": \"آسيا / أنادير\"\n\"Asia/Aqtau\": \"آسيا / أقتاو\"\n\"Asia/Aqtobe\": \"آسيا / أكتوب\"\n\"Asia/Ashgabat\": \"آسيا / عشق أباد\"\n\"Asia/Atyrau\": \"آسيا / أتيراو\"\n\"Asia/Baghdad\": \"آسيا / بغداد\"\n\"Asia/Bahrain\": \"آسيا / البحرين\"\n\"Asia/Baku\": \"آسيا / باكو\"\n\"Asia/Bangkok\": \"آسيا / بانكوك\"\n\"Asia/Barnaul\": \"آسيا / بارناول\"\n\"Asia/Beirut\": \"آسيا / بيروت\"\n\"Asia/Bishkek\": \"آسيا / بيشكيك\"\n\"Asia/Brunei\": \"آسيا / بروناي\"\n\"Asia/Chita\": \"آسيا / تشيتا\"\n\"Asia/Choibalsan\": \"آسيا / شويبالسان\"\n\"Asia/Colombo\": \"آسيا / كولومبو\"\n\"Asia/Damascus\": \"آسيا / دمشق\"\n\"Asia/Dhaka\": \"آسيا / دكا\"\n\"Asia/Dili\": \"آسيا / ديلي\"\n\"Asia/Dubai\": \"آسيا / دبي\"\n\"Asia/Dushanbe\": \"آسيا / دوشانبي\"\n\"Asia/Famagusta\": \"آسيا / فاماغوستا\"\n\"Asia/Gaza\": \"آسيا / غزة\"\n\"Asia/Hebron\": \"آسيا / الخليل\"\n\"Asia/Ho_Chi_Minh\": \"آسيا / Ho_Chi_Minh\"\n\"Asia/Hong_Kong\": \"آسيا / هونغ كونغ\"\n\"Asia/Hovd\": \"آسيا / هوود\"\n\"Asia/Irkutsk\": \"آسيا / إيركوتسك\"\n\"Asia/Jakarta\": \"آسيا / جاكرتا\"\n\"Asia/Jayapura\": \"آسيا / جايابورا\"\n\"Asia/Jerusalem\": \"آسيا / القدس\"\n\"Asia/Kabul\": \"آسيا / كابول\"\n\"Asia/Kamchatka\": \"آسيا / كامتشاتكا\"\n\"Asia/Karachi\": \"آسيا / كراتشي\"\n\"Asia/Kathmandu\": \"آسيا / كاتماندو\"\n\"Asia/Khandyga\": \"آسيا / Khandyga\"\n\"Asia/Kolkata\": \"آسيا / كلكتا\"\n\"Asia/Krasnoyarsk\": \"آسيا / كراسنويارسك\"\n\"Asia/Kuala_Lumpur\": \"آسيا / Kuala_Lumpur\"\n\"Asia/Kuching\": \"آسيا / كوتشينغ\"\n\"Asia/Kuwait\": \"آسيا / الكويت\"\n\"Asia/Macau\": \"آسيا / ماكاو\"\n\"Asia/Magadan\": \"آسيا / ماغادان\"\n\"Asia/Makassar\": \"آسيا / ماكاسار\"\n\"Asia/Manila\": \"آسيا / مانيلا\"\n\"Asia/Muscat\": \"آسيا / مسقط\"\n\"Asia/Nicosia\": \"آسيا / نيقوسيا\"\n\"Asia/Novokuznetsk\": \"آسيا / نوفوكوزنتسك\"\n\"Asia/Novosibirsk\": \"آسيا / نوفوسيبيرسك\"\n\"Asia/Omsk\": \"آسيا / أومسك\"\n\"Asia/Oral\": \"آسيا / عن طريق الفم\"\n\"Asia/Phnom_Penh\": \"آسيا / Phnom_Penh\"\n\"Asia/Pontianak\": \"آسيا / بونتياناك\"\n\"Asia/Pyongyang\": \"آسيا / بيونغ يانغ\"\n\"Asia/Qatar\": \"آسيا / قطر\"\n\"Asia/Qostanay\": \"آسيا / كوستاناي\"\n\"Asia/Qyzylorda\": \"آسيا / كيزيلورودا\"\n\"Asia/Riyadh\": \"آسيا / الرياض\"\n\"Asia/Sakhalin\": \"آسيا / ساخالين\"\n\"Asia/Samarkand\": \"آسيا / سمرقند\"\n\"Asia/Seoul\": \"آسيا / سيول\"\n\"Asia/Shanghai\": \"آسيا / شنغهاي\"\n\"Asia/Singapore\": \"آسيا / سنغافورة\"\n\"Asia/Srednekolymsk\": \"آسيا / سريدنكوليمسك\"\n\"Asia/Taipei\": \"آسيا / تايبيه\"\n\"Asia/Tashkent\": \"آسيا / طشقند\"\n\"Asia/Tbilisi\": \"آسيا / تبليسي\"\n\"Asia/Tehran\": \"آسيا / طهران\"\n\"Asia/Thimphu\": \"آسيا / تيمفو\"\n\"Asia/Tokyo\": \"آسيا / طوكيو\"\n\"Asia/Tomsk\": \"آسيا / تومسك\"\n\"Asia/Ulaanbaatar\": \"آسيا / أولان باتور\"\n\"Asia/Urumqi\": \"آسيا / أورومتشي\"\n\"Asia/Ust-Nera\": \"آسيا / أوست-نيرا\"\n\"Asia/Vientiane\": \"آسيا / فينتيان\"\n\"Asia/Vladivostok\": \"آسيا / فلاديفوستوك\"\n\"Asia/Yakutsk\": \"آسيا / ياكوتسك\"\n\"Asia/Yangon\": \"آسيا / يانغون\"\n\"Asia/Yekaterinburg\": \"آسيا / يكاترينبورغ\"\n\"Asia/Yerevan\": \"آسيا / يريفان\"\n\"Atlantic/Azores\": \"الأطلسي / الأزور\"\n\"Atlantic/Bermuda\": \"الأطلسي / برمودا\"\n\"Atlantic/Canary\": \"الأطلسي / الكناري\"\n\"Atlantic/Cape_Verde\": \"الأطلسي / Cape_Verde\"\n\"Atlantic/Faroe\": \"الأطلسي / فارو\"\n\"Atlantic/Madeira\": \"الأطلسي / ماديرا\"\n\"Atlantic/Reykjavik\": \"الأطلسي / ريكيافيك\"\n\"Atlantic/South_Georgia\": \"الأطلسي / جورجيا الجنوبية\"\n\"Atlantic/St_Helena\": \"الأطلسي / سانت هيلينا\"\n\"Atlantic/Stanley\": \"الأطلسي / ستانلي\"\n\"Australia/Adelaide\": \"أستراليا / أديليد\"\n\"Australia/Brisbane\": \"أستراليا / بريسبان\"\n\"Australia/Broken_Hill\": \"أستراليا / بروكن هيل\"\n\"Australia/Currie\": \"أستراليا / كوري\"\n\"Australia/Darwin\": \"أستراليا / داروين\"\n\"Australia/Eucla\": \"أستراليا / أوكلا\"\n\"Australia/Hobart\": \"أستراليا / هوبارت\"\n\"Australia/Lindeman\": \"أستراليا / ليندمان\"\n\"Australia/Lord_Howe\": \"أستراليا / لورد هو\"\n\"Australia/Melbourne\": \"استراليا / ملبورن\"\n\"Australia/Perth\": \"أستراليا / بيرث\"\n\"Australia/Sydney\": \"أستراليا / سيدني\"\n\"Europe/Amsterdam\": \"أوروبا / أمستردام\"\n\"Europe/Andorra\": \"أوروبا / أندورا\"\n\"Europe/Astrakhan\": \"أوروبا / استراخان\"\n\"Europe/Athens\": \"أوروبا / أثينا\"\n\"Europe/Belgrade\": \"أوروبا / بلغراد\"\n\"Europe/Berlin\": \"أوروبا / برلين\"\n\"Europe/Bratislava\": \"أوروبا / براتيسلافا\"\n\"Europe/Brussels\": \"أوروبا / بروكسل\"\n\"Europe/Bucharest\": \"أوروبا / بوخارست\"\n\"Europe/Budapest\": \"أوروبا / بودابست\"\n\"Europe/Busingen\": \"أوروبا / Busingen\"\n\"Europe/Chisinau\": \"أوروبا / كيشيناو\"\n\"Europe/Copenhagen\": \"أوروبا / كوبنهاجن\"\n\"Europe/Dublin\": \"أوروبا / دبلن\"\n\"Europe/Gibraltar\": \"أوروبا / جبل طارق\"\n\"Europe/Guernsey\": \"أوروبا / غيرنسي\"\n\"Europe/Helsinki\": \"أوروبا / هلسنكي\"\n\"Europe/Isle_of_Man\": \"أوروبا / Isle_of_Man\"\n\"Europe/Istanbul\": \"أوروبا / اسطنبول\"\n\"Europe/Jersey\": \"أوروبا / جيرسي\"\n\"Europe/Kaliningrad\": \"أوروبا / كالينينغراد\"\n\"Europe/Kiev\": \"أوروبا / كييف\"\n\"Europe/Kirov\": \"أوروبا / كيروف\"\n\"Europe/Lisbon\": \"أوروبا / لشبونة\"\n\"Europe/Ljubljana\": \"أوروبا / ليوبليانا\"\n\"Europe/London\": \"أوروبا / لندن\"\n\"Europe/Luxembourg\": \"أوروبا / لوكسمبورغ\"\n\"Europe/Madrid\": \"أوروبا / مدريد\"\n\"Europe/Malta\": \"أوروبا / مالطا\"\n\"Europe/Mariehamn\": \"أوروبا / ماريهامن\"\n\"Europe/Minsk\": \"أوروبا / مينسك\"\n\"Europe/Monaco\": \"أوروبا / موناكو\"\n\"Europe/Moscow\": \"أوروبا / موسكو\"\n\"Europe/Oslo\": \"أوروبا / أوسلو\"\n\"Europe/Paris\": \"أوروبا / باريس\"\n\"Europe/Podgorica\": \"أوروبا / بودغوريتشا\"\n\"Europe/Prague\": \"أوروبا / براغ\"\n\"Europe/Riga\": \"أوروبا / ريغا\"\n\"Europe/Rome\": \"أوروبا / روما\"\n\"Europe/Samara\": \"أوروبا / سمارة\"\n\"Europe/San_Marino\": \"أوروبا / سان مارينو\"\n\"Europe/Sarajevo\": \"أوروبا / سراييفو\"\n\"Europe/Saratov\": \"أوروبا / ساراتوف\"\n\"Europe/Simferopol\": \"أوروبا / سيمفيروبول\"\n\"Europe/Skopje\": \"أوروبا / سكوبي\"\n\"Europe/Sofia\": \"أوروبا / صوفيا\"\n\"Europe/Stockholm\": \"أوروبا / ستوكهولم\"\n\"Europe/Tallinn\": \"أوروبا / تالين\"\n\"Europe/Tirane\": \"أوروبا / تيرانا\"\n\"Europe/Ulyanovsk\": \"أوروبا / أوليانوفسك\"\n\"Europe/Uzhgorod\": \"أوروبا / أوزجورود\"\n\"Europe/Vaduz\": \"أوروبا / فادوز\"\n\"Europe/Vatican\": \"أوروبا / الفاتيكان\"\n\"Europe/Vienna\": \"أوروبا / فيينا\"\n\"Europe/Vilnius\": \"أوروبا / فيلنيوس\"\n\"Europe/Volgograd\": \"أوروبا / فولغوغراد\"\n\"Europe/Warsaw\": \"أوروبا / وارسو\"\n\"Europe/Zagreb\": \"أوروبا / زغرب\"\n\"Europe/Zaporozhye\": \"أوروبا / زابوروجي\"\n\"Europe/Zurich\": \"أوروبا / زيوريخ\"\n\"Indian/Antananarivo\": \"الهندي / أنتاناناريفو\"\n\"Indian/Chagos\": \"الهندي / تشاغوس\"\n\"Indian/Christmas\": \"الهندي / عيد الميلاد\"\n\"Indian/Cocos\": \"الهندي / كوكوس\"\n\"Indian/Comoro\": \"الهندي / جزر القمر\"\n\"Indian/Kerguelen\": \"الهندية / كيرغولن\"\n\"Indian/Mahe\": \"الهندي / ماهي\"\n\"Indian/Maldives\": \"الهندي / جزر المالديف\"\n\"Indian/Mauritius\": \"الهندي / موريشيوس\"\n\"Indian/Mayotte\": \"الهندي / مايوت\"\n\"Indian/Reunion\": \"الهندي / ريونيون\"\n\"Pacific/Apia\": \"المحيط الهادئ / آبيا\"\n\"Pacific/Auckland\": \"المحيط الهادئ / أوكلاند\"\n\"Pacific/Bougainville\": \"المحيط الهادئ / بوغانفيل\"\n\"Pacific/Chatham\": \"المحيط الهادئ / تشاتام\"\n\"Pacific/Chuuk\": \"المحيط الهادئ / شوك\"\n\"Pacific/Easter\": \"المحيط الهادئ / عيد الفصح\"\n\"Pacific/Efate\": \"المحيط الهادئ / إيفات\"\n\"Pacific/Enderbury\": \"المحيط الهادئ / إندربري\"\n\"Pacific/Fakaofo\": \"المحيط الهادئ / فاكاوفو\"\n\"Pacific/Fiji\": \"المحيط الهادئ / فيجي\"\n\"Pacific/Funafuti\": \"المحيط الهادئ / فونافوتي\"\n\"Pacific/Galapagos\": \"المحيط الهادي / غالاباغوس\"\n\"Pacific/Gambier\": \"المحيط الهادئ / جامبير\"\n\"Pacific/Guadalcanal\": \"المحيط الهادئ / القنال\"\n\"Pacific/Guam\": \"المحيط الهادئ / غوام\"\n\"Pacific/Honolulu\": \"المحيط الهادئ / هونولولو\"\n\"Pacific/Kiritimati\": \"المحيط الهادئ / كيريتيماتي\"\n\"Pacific/Kosrae\": \"المحيط الهادئ / كوسراي\"\n\"Pacific/Kwajalein\": \"المحيط الهادئ / كواجالين\"\n\"Pacific/Majuro\": \"المحيط الهادئ / ماجورو\"\n\"Pacific/Marquesas\": \"المحيط الهادئ / الماركيز\"\n\"Pacific/Midway\": \"المحيط الهادئ / ميدواي\"\n\"Pacific/Nauru\": \"المحيط الهادئ / ناورو\"\n\"Pacific/Niue\": \"المحيط الهادئ / نيوي\"\n\"Pacific/Norfolk\": \"المحيط الهادئ / نورفولك\"\n\"Pacific/Noumea\": \"المحيط الهادئ / نوميا\"\n\"Pacific/Pago_Pago\": \"المحيط الهادئ / باغو باغو\"\n\"Pacific/Palau\": \"المحيط الهادئ / بالاو\"\n\"Pacific/Pitcairn\": \"المحيط الهادئ / بيتكيرن\"\n\"Pacific/Pohnpei\": \"المحيط الهادئ / بوهنباي\"\n\"Pacific/Port_Moresby\": \"المحيط الهادئ / بور مورسبي\"\n\"Pacific/Rarotonga\": \"المحيط الهادئ / راروتونغا\"\n\"Pacific/Saipan\": \"المحيط الهادئ / سايبان\"\n\"Pacific/Tahiti\": \"المحيط الهادئ / تاهيتي\"\n\"Pacific/Tarawa\": \"المحيط الهادئ / تاراوا\"\n\"Pacific/Tongatapu\": \"المحيط الهادئ / تونجاتابو\"\n\"Pacific/Wake\": \"المحيط الهادئ / ويك\"\n\"Pacific/Wallis\": \"المحيط الهادئ / واليس\"\n\"UTC\": \"التوقيت العالمي\"\n\"Time Format\": \"تنسيق الوقت\"\n\"Choose your default timeformat\": \"اختر تنسيق الوقت الافتراضي الخاص بك\"\n\"Signature\": \"التوقيع\"\n\"User signature will be append at the bottom of ticket reply box\": \"سيتم إلحاق توقيع المستخدم أسفل مربع الرد على التذكرة\"\n\"Password\": \"كلمه السر\"\n\"Password will remain same if you are not entering something in this field\": \"ستظل كلمة المرور كما هي إذا لم تقم بإدخال شيء في هذا المجال\"\n\"Password must contain minimum 8 character length, at least two letters (not case sensitive), one number, one special character(space is not allowed).\": \"يجب أن تحتوي كلمة المرور على 8 أحرف على الأقل ، وحرفين على الأقل (غير حساس لحالة الأحرف) ، ورقم واحد ، وحرف خاص واحد (غير مسموح بالمسافة).\"\n\"Confirm Password\": \"تأكيد كلمة المرور\"\n\"Save Changes\": \"حفظ التغييرات\"\n\"SAVE CHANGES\": \"احفظ التغييرات\"\n\"CREATE TICKET\": \"إنشاء تذكرة\"\n\"Customer full name\": \"الاسم الكامل للمستخدم\"\n\"Customer email address\": \"عنوان البريد الإلكتروني للمستخدم\"\n\"Select Type\": \"اختر صنف\"\n\"Support\": \"الدعم\"\n\"Choose ticket type\": \"اختر نوع التذكرة\"\n\"Ticket subject\": \"موضوع التذكرة\"\n\"Message\": \"رسالة\"\n\"Query Message\": \"رسالة الاستعلام\"\n\"Add Attachment\": \"إضافة مرفق\"\n\"This field is mandatory\": \"هذا الحقل إلزامي\"\n\"General\": \"جنرال لواء\"\n\"Designation\": \"تعيين\"\n\"Contant Number\": \"رقم المتصل\"\n\"User signature will be append in the bottom of ticket reply box\": \"سيتم إلحاق توقيع المستخدم في الجزء السفلي من مربع الرد على التذكرة\"\n\"Account Status\": \"حالة الحساب\"\n\"Account is Active\": \"الحساب نشط\"\n\"Assigning group(s) to user to view tickets regardless assignment.\": \"تعيين مجموعة (مجموعات) للمستخدم لعرض التذاكر بغض النظر عن التعيين.\"\n\"Default\": \"إفتراضي\"\n\"Select All\": \"اختر الكل\"\n\"Remove All\": \"حذف الكل\"\n\"Assigning team(s) to user to view tickets regardless assignment.\": \"تعيين فريق (فرق) للمستخدم لعرض التذاكر بغض النظر عن المهمة.\"\n\"No Team added !\": \"لم تتم إضافة فريق!\"\n\"Permission\": \"الإذن\"\n\"Role\": \"وظيفة\"\n\"Administrator\": \"مدير\"\n\"Select agent role\": \"حدد دور المساعد\"\n\"Add Customer\": \"أضف مستخدم\"\n\"Action\": \"عمل\"\n\"Account Owner\": \"مالك حساب\"\n\"Active\": \"نشيط\"\n\"Edit\": \"تعديل\"\n\"Delete\": \"حذف\"\n\"Disabled\": \"معاق\"\n\"New Group\": \"مجموعة جديدة\"\n\"Default Privileges\": \"الامتيازات الافتراضية\"\n\"New Privileges\": \"امتيازات جديدة\"\n\"NEW PRIVILEGE\": \"امتياز جديد\"\n\"New Privilege\": \"امتياز جديد\"\n\"New Team\": \"فريق جديد\"\n\"Choose a status\": \"اختر حالة\"\n\"Choose a group\": \"اختر مجموعة\"\n\"No Record Found\": \"لا يوجد سجلات\"\n\"Order Synchronization\": \"تزامن النظام\"\n\"Easily integrate different ecommerce platforms with your helpdesk which can then be later used to swiftly integrate ecommerce order details with your support tickets.\": \"قم بدمج منصات التجارة الإلكترونية المختلفة بسهولة مع مكتب المساعدة الخاص بك والذي يمكن استخدامه فيما بعد لدمج تفاصيل طلب التجارة الإلكترونية بسرعة مع تذاكر الدعم الخاصة بك.\"\n\"BigCommerce\": \"BigCommerce\"\n\"No channels have been added.\": \"لم تتم إضافة قنوات.\"\n\"Add BigCommerce Store\": \"إضافة متجر BigCommerce\"\n\"ADD BIGCOMMERCE STORE\": \"أضف متجر BIGCOMMERCE\"\n\"Mangento\": \"مانجينتو\"\n\"Add Magento Store\": \"إضافة متجر MHelpero\"\n\"OpenCart\": \"OpenCart\"\n\"Add OpenCart Store\": \"أضف متجر OpenCart\"\n\"ADD OPENCART STORE\": \"أضف متجر OpenCart\"\n\"Shopify\": \"Shopify\"\n\"Add Shopify Store\": \"أضف متجر Shopify\"\n\"ADD SHOPIFY STORE\": \"أضف متجر SHOPIFY\"\n\"Integrate a new BigCommerce store\": \"دمج متجر BigCommerce جديد\"\n\"Your BigCommerce Store Name\": \"اسم متجر BigCommerce الخاص بك\"\n\"Your BigCommerce Store Hash\": \"تجزئة متجر BigCommerce الخاص بك\"\n\"Your BigCommerce Api Token\": \"رمز BigCommerce Api Token الخاص بك\"\n\"Your BigCommerce Api Client ID\": \"معرّف عميل BigCommerce Api\"\n\"Enable Channel\": \"تمكين القناة\"\n\"Add Store\": \"إضافة متجر\"\n\"ADD STORE\": \"أضف متجر\"\n\"Integrate a new Magento store\": \"دمج متجر MHelpero جديد\"\n\"Your Magento Api Username\": \"اسم مستخدم MHelpero Api الخاص بك\"\n\"Your Magento Api Password\": \"كلمة المرور الخاصة بك MHelpero Api\"\n\"Integrate a new OpenCart store\": \"دمج متجر OpenCart جديد\"\n\"Your OpenCart Api Key\": \"مفتاح OpenCart Api الخاص بك\"\n\"Your Shopify Store Name\": \"اسم المتجر الخاص بك Shopify\"\n\"Your Shopify Api Key\": \"مفتاح Shopify Api الخاص بك\"\n\"Your Shopify Api Password\": \"كلمة المرور Shopify Api\"\n\"Easily embed custom form to help generate helpdesk tickets.\": \"تضمين نموذج مخصص بسهولة للمساعدة في إنشاء تذاكر مكتب المساعدة.\"\n\"Form-Builder\": \"منشئ النموذج\"\n\"Add Formbuilder\": \"إضافة Formbuilder\"\n\"ADD FORMBUILDER\": \"إضافة FORMBUILDER\"\n\"No FormBuilder have been added.\": \"لم تتم إضافة FormBuilder.\"\n\"Create a New Custom Form Below\": \"إنشاء نموذج مخصص جديد أدناه\"\n\"Form Name\": \"اسم النموذج\"\n\"It will be shown in the list of created forms\": \"سيتم عرضه في قائمة النماذج التي تم إنشاؤها\"\n\"MANDATORY FIELDS\": \"الحقول الإلزامية\"\n\"These fields will be visible in form and cant be edited\": \"ستكون هذه الحقول مرئية في الشكل ولا يمكن تحريرها\"\n\"Reply\": \"الرد\"\n\"OPTIONAL FIELDS\": \"الحقول الاختيارية\"\n\"Select These Fields to Add in your Form\": \"حدد هذه الحقول لإضافتها في النموذج الخاص بك\"\n\"GDPR\": \"اللائحة العامة لحماية البيانات\"\n\"Order\": \"طلب\"\n\"Categorybuilder\": \"فئة الفئات\"\n\"Text Box\": \"مربع الكتابة\"\n\"Text Area\": \"منطقة النص\"\n\"Select\": \"يختار\"\n\"Radio\": \"مذياع\"\n\"Checkbox\": \"خانة اختيار\"\n\"File\": \"ملف\"\n\"Date\": \"تاريخ\"\n\"Time\": \"زمن\"\n\"Both Date and Time\": \"كل من التاريخ والوقت\"\n\"Offer\": \"يعرض\"\n\"Formats\": \"التنسيقات\"\n\"User Forgot Password\": \"نسيت كلمة المرور للمستخدم\"\n\"Agent Deleted\": \"تم حذف الوكيل\"\n\"Agent Update\": \"تحديث الوكيل\"\n\"Customer Update\": \"تحديث العميل\"\n\"Customer Deleted\": \"تم حذف العميل\"\n\"Agent Updated\": \"تم تحديث الوكيل\"\n\"Agent Reply\": \"رد الوكيل\"\n\"Collaborator Added\": \"تمت إضافة المتعاون\"\n\"Collaborator Reply\": \"رد المتعاون\"\n\"Customer Reply\": \"رد العميل\"\n\"Ticket Deleted\": \"تم حذف التذكرة\"\n\"Group Updated\": \"تم تحديث المجموعة\"\n\"Note Added\": \"تمت إضافة الملاحظة\"\n\"Priority Updated\": \"تم تحديث الأولوية\"\n\"Status Updated\": \"تم تحديث الحالة\"\n\"Team Updated\": \"تم تحديث الفريق\"\n\"Thread Updated\": \"تم تحديث الموضوع\"\n\"Type Updated\": \"اكتب محدث\"\n\"From Email\": \"من البريد الإلكترونى\"\n\"To Email\": \"إلى البريد الإلكتروني\"\n\"Is Equal To\": \"يساوي\"\n\"Is Not Equal To\": \"لا يساوي\"\n\"Contains\": \"يتضمن\"\n\"Does Not Contain\": \"لا يحتوي\"\n\"Starts With\": \"ابدا ب\"\n\"Ends With\": \"ينتهي بـ\"\n\"Before On\": \"قبل يوم\"\n\"After On\": \"بعد\"\n\"Mail To User\": \"البريد إلى المستخدم\"\n\"Transfer Tickets\": \"تذاكر التحويل\"\n\"low\": \"قليل\"\n\"medium\": \"واسطة\"\n\"high\": \"عالي\"\n\"urgent\": \"العاجلة\"\n\"Rating\": \"تقييم\"\n\"Kudos Rating\": \"تقييم مجد\"\n\"Choose your default timezone\": \"اختر منطقتك الزمنية الافتراضية\"\n\"Remove profile picture\": \"إزالة صورة الملف الشخصي\"\n\"Success ! Profile updated successfully.\": \"النجاح ! تم تحديث الملف الشخصي بنجاح.\"\n\"Form successfully updated.\": \"تم تحديث النموذج بنجاح.\"\n\"Permanently delete from Inbox\": \"حذف نهائي من علبة الوارد\"\n\"Add Form\": \"إضافة نموذج\"\n\"ADD FORM\": \"إضافة نموذج\"\n\"UPDATE FORM\": \"نموذج التحديث\"\n\"Update Form\": \"نموذج التحديث\"\n\"Embed\": \"تضمين\"\n\"EMBED\": \"EMBED\"\n\"EMBED FORMBUILDER\": \"مغمدة FORMUILDER\"\n\"Embed Formbuilder\": \"تضمين Formbuilder\"\n\"Visit\": \"يزور\"\n\"VISIT\": \"يزور\"\n\"Code\": \"الشفرة\"\n\"Total Ticket(s)\": \"إجمالي التذاكر (التذاكر)\"\n\"Ticket Count\": \"عدد التذاكر\"\n\"SwiftMailer Configurations\": \"تكوينات SwiftMailer\"\n\"No swiftmailer configurations found\": \"لم يتم العثور على تكوينات swiftmailer\"\n\"CREATE CONFIGURATION\": \"إنشاء التكوين\"\n\"Add configuration\": \"أضف التكوين\"\n\"Update configuration\": \"تحديث التكوين\"\n\"Mailer ID\": \"معرف البريد\"\n\"Mailer ID - Leave blank to automatically create id\": \"معرف البريد - اتركه فارغًا لإنشاء معرف تلقائيًا\"\n\"Transport Type\": \"نوع النقل\"\n\"SMTP\": \"SMTP\"\n\"Enable Delivery\": \"تمكين التسليم\"\n\"Server\": \"الخادم\"\n\"Port\": \"ميناء\"\n\"Encryption Mode\": \"وضع التشفير\"\n\"ssl\": \"SSL\"\n\"tsl\": \"TSL\"\n\"None\": \"لا يوجد\"\n\"Authentication Mode\": \"وضع مصادقة\"\n\"login\": \"تسجيل الدخول\"\n\"API\": \"واجهة برمجة التطبيقات\"\n\"Plain\": \"عادي\"\n\"CRAM-MD5\": \"CRAM-MD5\"\n\"Sender Address\": \"عنوان المرسل\"\n\"Delivery Address\": \"عنوان التسليم\"\n\"Block Spam\": \"حظر البريد العشوائي\"\n\"Black list\": \"القائمة السوداء\"\n\"Comma (,) separated values (Eg. support@example.com, @example.com, 68.98.31.226)\": \"قيم مفصولة بفواصل (,) (على سبيل المثال ، support@example.com, @ example.com , 68.98.31.226)\"\n\"White list\": \"قائمة بيضاء\"\n\"Mailbox Settings\": \"إعدادات صندوق البريد\"\n\"No mailbox configurations found\": \"لم يتم العثور على تكوينات صندوق البريد\"\n\"NEW MAILBOX\": \"البريد الإلكتروني الجديد\"\n\"New Mailbox\": \"صندوق بريد جديد\"\n\"Update Mailbox\": \"تحديث صندوق البريد\"\n\"Add Mailbox\": \"أضف صندوق بريد\"\n\"Mailbox ID - Leave blank to automatically create id\": \"معرف صندوق البريد - اتركه فارغًا لإنشاء معرف تلقائيًا\"\n\"Mailbox Name\": \"اسم صندوق البريد\"\n\"Enable Mailbox\": \"تمكين صندوق البريد\"\n\"Incoming Mail (IMAP) Server\": \"خادم البريد الوارد (IMAP)\"\n\"Configure your imap settings which will be used to fetch emails from your mailbox.\": \"تكوين إعدادات imap الخاصة بك والتي سيتم استخدامها لجلب رسائل البريد الإلكتروني من صندوق البريد الخاص بك.\"\n\"Transport\": \"المواصلات\"\n\"IMAP\": \"الوصول عبر IMAP\"\n\"Gmail\": \"Gmail\"\n\"Yahoo\": \"ياهو\"\n\"Host\": \"مضيف\"\n\"IMAP Host\": \"مضيف IMAP\"\n\"Email address\": \"عنوان البريد الالكترونى\"\n\"Associated Password\": \"كلمة المرور المرتبطة\"\n\"Outgoing Mail (SMTP) Server\": \"خادم البريد الصادر (SMTP)\"\n\"Select a valid Swift Mailer configuration which will be used to send emails through your mailbox.\": \"حدد تكوين Swift Mailer صالحًا والذي سيتم استخدامه لإرسال رسائل البريد الإلكتروني من خلال صندوق البريد الخاص بك.\"\n\"None Selected\": \"لم يتم التحديد\"\n\"Create Mailbox\": \"إنشاء صندوق بريد\"\n\"CREATE MAILBOX\": \"إنشاء صندوق بريد\"\n\"New Template\": \"قالب جديد\"\n\"NEW TEMPLATE\": \"قالب جديد\"\n\"Customer Forgot Password\": \"المستخدم نسيت كلمة المرور\"\n\"Customer Account Created\": \"تم إنشاء حساب المستخدم\"\n\"Ticket generated success mail to customer\": \"أنتجت التذكرة بريدًا ناجحًا للمستخدم\"\n\"Customer Reply To The Agent\": \"رد المستخدم على المساعد\"\n\"Ticket will be created with current ticket's customer\": \"سيتم إنشاء التذكرة بواسطة مستخدم التذكرة الحالي\"\n\"Ticket Assign\": \"تعيين التذكرة\"\n\"Agent Forgot Password\": \"مساعد نسيت كلمة المرور\"\n\"Agent Account Created\": \"تم إنشاء حساب مساعد\"\n\"Ticket generated by customer\": \"التذكرة التي تم إنشاؤها بواسطة المستخدم\"\n\"Agent Reply To The Customer ticket\": \"الرد المساعد على تذكرة المستخدم\"\n\"Email template name\": \"اسم قالب البريد الإلكتروني\"\n\"Email template subject\": \"موضوع قالب البريد الإلكتروني\"\n\"Template For\": \"نموذج لـ\"\n\"Nothing Selected\": \"لا شيء محدد\"\n\"email template will be used for work related with selected option\": \"سيتم استخدام قالب البريد الإلكتروني للعمل المتعلق بالخيار المحدد\"\n\"Email template body\": \"نص قالب البريد الإلكتروني\"\n\"Body\": \"الجسم\"\n\"placeholders\": \"العناصر النائبة\"\n\"Ticket Subject\": \"موضوع التذكرة\"\n\"Ticket Message\": \"رسالة تذكرة\"\n\"Ticket Attachments\": \"مرفقات التذاكر\"\n\"Ticket Tags\": \"علامات التذكرة\"\n\"Ticket Source\": \"مصدر التذكرة\"\n\"Ticket Status\": \"حالة التذكرة\"\n\"Ticket Priority\": \"أولوية التذكرة\"\n\"Ticket Group\": \"مجموعة التذاكر\"\n\"Ticket Team\": \"فريق التذاكر\"\n\"Ticket Thread Message\": \"رسالة موضوع التذكرة\"\n\"Ticket Customer Name\": \"اسم مستخدم التذكرة\"\n\"Ticket Customer Email\": \"البريد الإلكتروني لمستخدم التذكرة\"\n\"Ticket Agent Name\": \"اسم مساعد التذكرة\"\n\"Ticket Agent Email\": \"مساعد البريد الإلكتروني للتذكرة\"\n\"Ticket Agent Link\": \"رابط مساعد التذكرة\"\n\"Ticket Customer Link\": \"رابط مستخدم تذكرة\"\n\"Last Collaborator Name\": \"اسم المتعاون الأخير\"\n\"Last Collaborator Email\": \"آخر بريد إلكتروني للمتعاون\"\n\"Agent/ Customer Name\": \"المساعد / اسم المستخدم\"\n\"Account Validation Link\": \"رابط التحقق من الحساب\"\n\"Password Forgot Link\": \"نسيت كلمة المرور\"\n\"Company Name\": \"اسم الشركة\"\n\"Company Logo\": \"شعار الشركة\"\n\"Company URL\": \"عنوان URL للشركة\"\n\"Swiftmailer id (Select from drop down)\": \"معرف Swiftmailer (اختر من القائمة المنسدلة)\"\n\"SwiftMailer\" : \"سويفت ميلر\"\n\"PROCEED\": \"تقدم\"\n\"Proceed\": \"تقدم\"\n\"Theme Color\": \"لون الموضوع\"\n\"Customer Created\": \"تم إنشاء المستخدم\"\n\"Agent Created\": \"تم إنشاء المساعد\"\n\"Ticket Created\": \"إنشاء تذكرة\"\n\"Agent Replied on Ticket\": \"رد المساعد على التذكرة\"\n\"Customer Replied on Ticket\": \"رد المستخدم على التذكرة\"\n\"Workflow Status\": \"حالة سير العمل\"\n\"Workflow is Active\": \"سير العمل نشط\"\n\"Events\": \"الأحداث\"\n\"An event automatically triggers to check conditions and perform a respective pre-defined set of actions\": \"يتم تشغيل الحدث تلقائيًا للتحقق من الشروط وتنفيذ مجموعة محددة من الإجراءات المحددة مسبقًا\"\n\"Select an Event\": \"حدد حدثًا\"\n\"Add More\": \"أضف المزيد\"\n\"Conditions\": \"الظروف\"\n\"Conditions are set of rules which checks for specific scenarios and are triggered on specific occasions\": \"الشروط عبارة عن مجموعة من القواعد التي تتحقق من سيناريوهات محددة ويتم تشغيلها في مناسبات معينة\"\n\"Subject or Description\": \"الموضوع أو الوصف\"\n\"Actions\": \"أجراءات\"\n\"An action not only reduces the workload but also makes it quite easier for ticket automation\": \"لا يقلل الإجراء من عبء العمل فحسب ، بل يجعله أسهل أيضًا في أتمتة التذاكر\"\n\"Select an Action\": \"حدد إجراء\"\n\"Add Note\": \"اضف ملاحظة\"\n\"Mail to agent\": \"البريد إلى المساعد\"\n\"Mail to customer\": \"إرسال بريد إلى المستخدم\"\n\"Mail to group\": \"البريد للمجموعة\"\n\"Mail to last collaborator\": \"بريد إلى آخر متعاون\"\n\"Mail to team\": \"إرسال بريد إلى الفريق\"\n\"Mark Spam\": \"صنف هذه الرسالة كرسالة مزعجة\"\n\"Assign to agent\": \"تعيين مساعد\"\n\"Assign to group\": \"تعيين للمجموعة\"\n\"Set Priority As\": \"تعيين الأولوية باسم\"\n\"Set Status As\": \"تعيين الحالة باسم\"\n\"Set Tag As\": \"تعيين علامة باسم\"\n\"Set Label As\": \"تعيين التسمية باسم\"\n\"Assign to team\": \"تعيين للفريق\"\n\"Set Type As\": \"تعيين النوع باسم\"\n\"Add Workflow\": \"أضف سير العمل\"\n\"ADD WORKFLOW\": \"إضافة تدفق العمل\"\n\"Ticket Type code\": \"رمز نوع التذكرة\"\n\"Ticket Type description\": \"وصف نوع التذكرة\"\n\"Type Status\": \"اكتب الحالة\"\n\"Type is Active\": \"النوع نشط\"\n\"Add Save Reply\": \"أضف حفظ الرد\"\n\"Saved reply name\": \"اسم الرد المحفوظ\"\n\"Share saved reply with user(s) in these group(s)\": \"مشاركة الرد المحفوظ مع المستخدم (المستخدمين) في هذه المجموعة (المجموعات)\"\n\"Share saved reply with user(s) in these teams(s)\": \"مشاركة الرد المحفوظ مع المستخدمين في هذه الفرق\"\n\"Saved reply Body\": \"نص الرد المحفوظ\"\n\"New Prepared Response\": \"استجابة محضرة جديدة\"\n\"Prepared Response Status\": \"حالة الاستجابة المعدة\"\n\"Prepared Response is Active\": \"الاستجابة المعدة نشطة\"\n\"Share prepared response with user(s) in these group(s)\": \"مشاركة رد جاهز مع المستخدم (المستخدمين) في هذه المجموعة (المجموعات)\"\n\"Share prepared response with user(s) in these teams(s)\": \"مشاركة الرد الجاهز مع المستخدم (المستخدمين) في هذه الفرق (الفرق)\"\n\"ADD PREPARED RESPONSE\": \"أضف استجابة تحضيرية\"\n\"Add Prepared Response\": \"أضف استجابة جاهزة\"\n\"Folder Name is shown upfront at Knowledge Base\": \"يظهر اسم المجلد مقدمًا في Knowledge Base\"\n\"A small text about the folder helps user to navigate more easily\": \"نص صغير حول المجلد يساعد المستخدم على التنقل بسهولة أكبر\"\n\"Publish\": \"ينشر\"\n\"Choose appropriate status\": \"اختر الحالة المناسبة\"\n\"Folder Image\": \"صورة المجلد\"\n\"An image is worth a thousands words and makes folder more accessible\": \"الصورة تساوي آلاف الكلمات وتجعل الوصول إلى المجلد أكثر سهولة\"\n\"Add Category\": \"إضافة فئة\"\n\"Category Name is shown upfront at Knowledge Base\": \"يظهر اسم الفئة مقدمًا في Knowledge Base\"\n\"A small text about the category helps user to navigate more easily\": \"نص صغير عن الفئة يساعد المستخدم على التنقل بسهولة أكبر\"\n\"Using Category Order, you can decide which category should display first\": \"باستخدام ترتيب الفئات , يمكنك تحديد الفئة التي يجب عرضها أولاً\"\n\"Sorting\": \"فرز\"\n\"Ascending Order (A-Z)\": \"ترتيب تصاعدي (أ-ي)\"\n\"Descending Order (Z-A)\": \"ترتيب تنازلي (ي-أ)\"\n\"Based on Popularity\": \"بناء على الشعبية\"\n\"Article of this category will display according to selected option\": \"سيتم عرض مقالة هذه الفئة وفقًا للخيار المحدد\"\n\"Article\": \"مقالة - سلعة\"\n\"Title\": \"عنوان\"\n\"View\": \"رأي\"\n\"Make as Starred\": \"اجعله مميز بنجمة\"\n\"Yes\": \"نعم\"\n\"No\": \"لا\"\n\"Stared\": \"يحدق\"\n\"Revisions\": \"التنقيحات\"\n\"Related Articles\": \"مقالات ذات صلة\"\n\"Delete Article\": \"تحذف المادة\"\n\"Content\": \"المحتوى\"\n\"Slug\": \"سبيكة\"\n\"Slug is the url identity of this article.\": \"Slug هو هوية عنوان url لهذه المقالة.\"\n\"Meta Title\": \"عنوان الفوقية\"\n\"Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A pages title tag and meta description are usually shown whenever that page appears in search engine results\": \"علامات العنوان والأوصاف التعريفية هي أجزاء من كود HTML في رأس صفحة الويب. تساعد محركات البحث على فهم المحتوى على الصفحة. عادة ما يتم عرض علامة عنوان الصفحات ووصف التعريف كلما ظهرت هذه الصفحة في نتائج محرك البحث\"\n\"Meta Keywords\": \"كلمات دلالية\"\n\"Meta Description\": \"ميتا الوصف\"\n\"Description\": \"وصف\"\n\"Team Status\": \"حالة الفريق\"\n\"Team is Active\": \"الفريق نشط\"\n\"Edit Privilege\": \"تحرير الامتياز\"\n\"Can create ticket\": \"يمكن إنشاء تذكرة\"\n\"Can edit ticket\": \"يمكن تحرير التذكرة\"\n\"Can delete ticket\": \"يمكن حذف التذكرة\"\n\"Can restore trashed ticket\": \"يمكن استعادة تذكرة المهملات\"\n\"Can assign ticket\": \"يمكن تعيين تذكرة\"\n\"Can assign ticket group\": \"يمكن تعيين مجموعة التذاكر\"\n\"Can update ticket status\": \"يمكن تحديث حالة التذكرة\"\n\"Can update ticket priority\": \"يمكن تحديث أولوية التذكرة\"\n\"Can update ticket type\": \"يمكن تحديث نوع التذكرة\"\n\"Can add internal notes to ticket\": \"يمكن إضافة ملاحظات داخلية للتذكرة\"\n\"Can edit thread/notes\": \"يمكن تحرير الموضوع / الملاحظات\"\n\"Can lock/unlock thread\": \"يمكن قفل / فتح الموضوع\"\n\"Can add collaborator to ticket\": \"يمكن إضافة متعاون إلى التذكرة\"\n\"Can delete collaborator from ticket\": \"يمكن حذف المتعاون من التذكرة\"\n\"Can delete thread/notes\": \"يمكن حذف الموضوع / الملاحظات\"\n\"Can apply prepared response on ticket\": \"يمكن تطبيق رد جاهز على التذكرة\"\n\"Can add ticket tags\": \"يمكن إضافة بطاقات تذكرة\"\n\"Can delete ticket tags\": \"يمكن حذف بطاقات التذكرة\"\n\"Can kick other ticket users\": \"يمكن ركلة مستخدمي التذاكر الآخرين\"\n\"Can manage email templates\": \"يمكن إدارة قوالب البريد الإلكتروني\"\n\"Can manage groups\": \"يمكن إدارة المجموعات\"\n\"Can manage Sub-Groups/ Teams\": \"يمكن إدارة المجموعات الفرعية / الفرق\"\n\"Can manage agents\": \"يمكن إدارة المساعدين\"\n\"Can manage agent privileges\": \"يمكن إدارة امتيازات المساعد\"\n\"Can manage ticket types\": \"يمكن إدارة أنواع التذاكر\"\n\"Can manage ticket custom fields\": \"يمكن إدارة الحقول المخصصة للتذكرة\"\n\"Can manage customers\": \"يمكن إدارة المستخدمين\"\n\"Can manage Prepared Responses\": \"يمكن إدارة الردود الجاهزة\"\n\"Can manage Automatic workflow\": \"يمكن إدارة سير العمل التلقائي\"\n\"Can manage tags\": \"يمكن إدارة العلامات\"\n\"Can manage knowledgebase\": \"يمكن إدارة قاعدة المعرفة\"\n\"Can manage Groups Saved Reply\": \"يمكن إدارة رد المجموعات المحفوظة\"\n\"Can manage Group's Saved Reply\": \"يمكن إدارة الرد المحفوظ للمجموعة\"\n\"Can manage agent activity\": \"يمكن إدارة نشاط الوكيل\"\n\"Can manage marketing announcement\": \"يمكنه إدارة إعلانات التسويق\"\n\"Add Privilege\": \"إضافة امتياز\"\n\"Choose set of privileges which will be available to the agent.\": \"اختر مجموعة الامتيازات التي ستكون متاحة للمساعد.\"\n\"Advanced\": \"المتقدمة\"\n\"Privilege Name must have characters only\": \"يجب أن يحتوي اسم الامتياز على أحرف فقط\"\n\"Maximum character length is 50\": \"الحد الأقصى لطول الأحرف هو 50\"\n\"Open Tickets\": \"تذاكر مفتوحة\"\n\"New Customer\": \"مستخدم جديد\"\n\"New Agent\": \"مساعد جديد\"\n\"Total Article(s)\": \"مجموع المادة (المواد)\"\n\"Please specify a valid email address\": \"يرجى تحديد عنوان بريد إلكتروني صالح\"\n\"Please enter the password associated with your email address\": \"يرجى إدخال كلمة المرور المرتبطة بعنوان بريدك الإلكتروني\"\n\"Please enter your server host address\": \"يرجى إدخال عنوان مضيف الخادم الخاص بك\"\n\"Please specify a port number to connect with your mail server\": \"يرجى تحديد رقم منفذ للاتصال بخادم البريد الخاص بك\"\n\"Success ! Branding details saved successfully.\": \"نجاح ! تم حفظ تفاصيل العلامة التجارية بنجاح.\"\n\"Success ! Time details saved successfully.\": \"نجاح ! تم حفظ تفاصيل الوقت بنجاح.\"\n\"Spam setting saved successfully.\": \"تم حفظ إعداد البريد العشوائي بنجاح.\"\n\"Please specify a valid name for your mailbox.\": \"يرجى تحديد اسم صالح لصندوق البريد الخاص بك.\"\n\"Please select a valid swift-mailer configuration.\": \"الرجاء تحديد تكوين بريد سريع صالح.\"\n\"Please specify a valid host address.\": \"يرجى تحديد عنوان مضيف صالح.\"\n\"Please specify a valid email address.\": \"يرجى تحديد عنوان بريد إلكتروني صالح.\"\n\"Please enter the associated account password.\": \"يرجى إدخال كلمة مرور الحساب المرتبطة.\"\n\"New Saved Reply\": \"رد محفوظ جديد\"\n\"New Category\": \"فئة جديدة\"\n\"Folder\": \"مجلد\"\n\"Category\": \"الفئة\"\n\"Created\": \"خلقت\"\n\"All Articles\": \"جميع المقالات\"\n\"Viewed\": \"تمت المشاهدة\"\n\"New Article\": \"مادة جديدة\"\n\"Thank you for your feedback!\": \"شكرا لك على ملاحظاتك!\"\n\"Was this article helpful?\": \"هل كان المقال مساعدا؟!\"\n\"Helpdesk\": \"مكتب المساعدة\"\n\"Support Center\": \"مركز الدعم\"\n\"Mailboxes\": \"صناديق البريد\"\n\"By\": \"بواسطة\"\n\"Search Tickets\": \"تذاكر البحث\"\n\"Customer Information\": \"معلومات المستخدم\"\n\"Total Replies\": \"إجمالي الردود\"\n\"Filter With\": \"التصفية باستخدام\"\n\"Type email to add\": \"اكتب البريد الإلكتروني لإضافته\"\n\"Collaborators\": \"المتعاونين\"\n\"Labels\": \"تسميات\"\n\"Group\": \"مجموعة\"\n\"group\": \"مجموعة\"\n\"Contact Team\": \"فريق الاتصال\"\n\"Stay on ticket\": \"ابق على التذكرة\"\n\"Redirect to list\": \"إعادة التوجيه إلى القائمة\"\n\"Nothing interesting here...\": \"لا يوجد شيء مثير للاهتمام هنا ...\"\n\"Previous Ticket\": \"التذكرة السابقة\"\n\"Next Ticket\": \"التذكرة التالية\"\n\"Forward\": \"إلى الأمام\"\n\"Note\": \"ملحوظة\"\n\"Write a reply\": \"اكتب الرد\"\n\"Created Ticket\": \"تذكرة تم إنشاؤها\"\n\"All Threads\": \"كل المواضيع\"\n\"Forwards\": \"إلى الأمام\"\n\"Notes\": \"ملاحظات\"\n\"Pinned\": \"تم التثبيت\"\n\"Edit Ticket\": \"تحرير التذكرة\"\n\"Print Ticket\": \"طباعة تذكرة\"\n\"Mark as Spam\": \"علامة كدعاية\"\n\"Mark as Closed\": \"وضع علامة مغلق\"\n\"Delete Ticket\": \"حذف التذكرة\"\n\"View order details from different eCommerce channels\": \"عرض تفاصيل الطلب من قنوات التجارة الإلكترونية المختلفة\"\n\"ECOMMERCE CHANNELS\": \"قنوات ECOMMERCE\"\n\"Select channel\": \"حدد القناة\"\n\"Order Id\": \"رقم التعريف الخاص بالطلب\"\n\"Fetch Order\": \"إحضار أمر\"\n\"No orders have been integrated to this ticket yet.\": \"لم يتم دمج أي أوامر لهذه التذكرة حتى الآن.\"\n\"Enter your credentials below to gain access to your helpdesk account.\": \"أدخل بيانات الاعتماد الخاصة بك أدناه للوصول إلى حساب مكتب المساعدة الخاص بك.\"\n\"Keep me logged in\": \"أبقني متصل\"\n\"Forgot Password?\": \"هل نسيت كلمة المرور؟\"\n\"Log in to your\": \"تسجيل الدخول إلى حسابك\"\n\"Sign In\": \"تسجيل الدخول\"\n\"Edit Customer\": \"تحرير العضو\"\n\"Update\": \"تحديث\"\n\"Discard\": \"تجاهل\"\n\"Cancel\": \"إلغاء\"\n\"Not Assigned\": \"غيرمعتمد\"\n\"Submit\": \"إرسال\"\n\"Submit And Open\": \"إرسال وفتح\"\n\"Submit And Pending\": \"إرسال وانتظار\"\n\"Submit And Answered\": \"أرسل وأجاب\"\n\"Submit And Resolved\": \"إرسال وحل\"\n\"Submit And Closed\": \"إرسال وإغلاق\"\n\"Choose a Color\": \"اختيار اللون\"\n\"Create\": \"خلق\"\n\"Edit Label\": \"تحرير التسمية\"\n\"Add Label\": \"أضف تسمية\"\n\"To\": \"إلى\"\n\"Ticket\": \"تذكرة\"\n\"Your browser does not support JavaScript or You disabled JavaScript, Please enable those !\": \"متصفحك لا يدعم جافا سكريبت أو قمت بتعطيل جافا سكريبت الرجاء تمكينها!\"\n\"Confirm Action\": \"تأكيد الإجراء\"\n\"Confirm\": \"تؤكد\"\n\"No result found\": \"لم يتم العثور على نتائج\"\n\"ticket delivery status\": \"حالة تسليم التذاكر\"\n\"Warning! Select valid image file.\": \"تحذير! حدد ملف صورة صالح.\"\n\"Error\": \"خطأ\"\n\"Save\": \"حفظ\"\n\"SEO\": \"تحسين محركات البحث\"\n\"Edit Saved Filter\": \"تحرير عامل التصفية المحفوظ\"\n\"Type atleast 2 letters\": \"اكتب على الأقل حرفين\"\n\"Remove Label\": \"إزالة التسمية\"\n\"New Saved Filter\": \"فلتر محفوظ جديد\"\n\"Is Default\": \"افتراضي\"\n\"Remove Saved Filter\": \"إزالة عامل التصفية المحفوظ\"\n\"Ticket Info\": \"معلومات التذكرة\"\n\"Last Replied Agent\": \"اخر رد مساعد\"\n\"created Ticket\": \"إنشاء تذكرة\"\n\"Uploaded Files\": \"الملفات التي يتم تحميلها\"\n\"Download (as .zip)\": \"تحميل كملف مضغوط)\"\n\"made last reply\": \"قدم الرد الأخير\"\n\"N/A\": \"لا يوجد\"\n\"Unassigned\": \"غير معين\"\n\"Label\": \"ضع الكلمة المناسبة\"\n\"Assigned to me\": \"تعيين لي\"\n\"Search Query\": \"استعلام بحث\"\n\"Searching\": \"يبحث\"\n\"Saved Filter\": \"مرشح محفوظ\"\n\"No Label Created\": \"لم يتم إنشاء تسمية\"\n\"Label with same name already exist.\": \"يوجد تصنيف بنفس الاسم بالفعل.\"\n\"Create New\": \"خلق جديد إبداع جديد\"\n\"Mail status\": \"حالة البريد\"\n\"replied\": \"رد\"\n\"added note\": \"تمت إضافة ملاحظة\"\n\"forwarded\": \"أحيلت\"\n\"TO\": \"إلى\"\n\"CC\": \"نسخة\"\n\"BCC\": \"نسخة مخفية الوجهة\"\n\"Locked\": \"مقفل\"\n\"Edit Thread\": \"تحرير الموضوع\"\n\"Delete Thread\": \"حذف موضوع\"\n\"Unpin Thread\": \"إلغاء تثبيت الخيط\"\n\"Pin Thread\": \"دبوس الموضوع\"\n\"Unlock Thread\": \"فتح الموضوع\"\n\"Lock Thread\": \"قفل الخيط\"\n\"Translate Thread\": \"ترجمة الموضوع\"\n\"Language\": \"لغة\"\n\"English\": \"الإنجليزية\"\n\"French\": \"فرنسي\"\n\"Italian\": \"إيطالي\"\n\"Arabic\": \"عربى\"\n\"German\": \"ألمانية\"\n\"Spanish\": \"الأسبانية\"\n\"Turkish\": \"اللغة التركية\"\n\"Danish\": \"دانماركي\"\n\"Chinese\": \"صينى\"\n\"Polish\": \"تلميع\"\n\"Hebrew\": \"العبرية\"\n\"Portuguese\": \"البرتغالية\"\n\"System\": \"النظام\"\n\"Open in Files\": \"فتح في الملفات\"\n\"Email address is invalid\": \"عنوان البريد الإلكتروني غير صالح\"\n\"Tag with same name already exist\": \"توجد بالفعل علامة بنفس الاسم\"\n\"Text length should be less than 20 charactors\": \"يجب أن يكون طول النص أقل من 20 حرفًا\"\n\"Label with same name already exist\": \"يوجد تصنيف بنفس الاسم بالفعل\"\n\"Agent Name\": \"اسم المساعد\"\n\"Agent Email\": \"البريد الإلكتروني المساعد\"\n\"open\": \"افتح\"\n\"Currently active agents on ticket\": \"المساعدون النشطون حاليًا على التذكرة\"\n\"Edit Customer Information\": \"تحرير معلومات المستخدم\"\n\"Restore\": \"استعادة\"\n\"Delete Forever\": \"مسح لللابد\"\n\"Add Team\": \"أضف فريق\"\n\"delete\": \"حذف\"\n\"You did not have any folder for current filter(s).\": \"ليس لديك أي مجلد لعوامل التصفية الحالية.\"\n\"Add Folder\": \"أضف المجلد\"\n\"This field must have valid characters only\": \"يجب أن يحتوي هذا الحقل على أحرف صالحة فقط\"\n\"Can edit task\": \"يمكن تحرير المهمة\"\n\"Can create task\": \"يمكن أن تخلق مهمة\"\n\"Can delete task\": \"يمكن حذف المهمة\"\n\"Can add member to task\": \"يمكن إضافة عضو إلى المهمة\"\n\"Can remove member from task\": \"يمكن إزالة العضو من المهمة\"\n\"Agent Privileges\": \"امتيازات المساعد\"\n\"Agent Privilege represents overall permissions in System.\": \"يمثل امتياز المساعد الأذونات العامة في النظام.\"\n\"Ticket View\": \"عرض التذكرة\"\n\"User can view tickets based on selected scope.\": \"يمكن للمستخدم عرض التذاكر على أساس النطاق المحدد.\"\n\"If individual access then user can View assigned Ticket(s) only, If Team access then user can view all Ticket(s) in team(s) he belongs to and so on\": \"إذا كان حق الوصول الفردي ، فيمكن للمستخدم عرض التذكرة (التذاكر) المعينة فقط \"\n\"Global Access\": \"الوصول العالمي\"\n\"Group Access\": \"وصول المجموعة\"\n\"Team Access\": \"وصول الفريق\"\n\"Individual Access\": \"الوصول الفردي\"\n\"This field must have characters only\": \"يجب أن يحتوي هذا الحقل على أحرف فقط\"\n\"Maximum character length is 40\": \"الحد الأقصى لطول الأحرف هو 40\"\n\"This is not a valid email address\": \"هذا ليس عنوان بريد إلكتروني صالح\"\n\"Password must contains 8 Characters\": \"يجب أن تحتوي كلمة المرور على 8 أحرف\"\n\"The passwords does not match\": \"كلمتا المرور غير متطابقتين\"\n\"Enabled\": \"ممكّن\"\n\"Create Configuration\": \"إنشاء تكوين\"\n\"Swift Mailer Settings\": \"إعدادات Swift Mailer\"\n\"Username\": \"اسم المستخدم\"\n\"Please select a swiftmailer id\": \"يرجى تحديد معرف swiftmailer\"\n\"Please enter a valid e-mail id\": \"يرجى إدخال معرف بريد إلكتروني صالح\"\n\"Please enter a mailer id\": \"يرجى إدخال معرف مرسل\"\n\"Email Id\": \"عنوان الايميل\"\n\"Are you sure? You want to perform this action.\": \"هل أنت واثق؟ تريد تنفيذ هذا الإجراء.\"\n\"Reorder\": \"إعادة ترتيب\"\n\"New Workflow\": \"سير عمل جديد\"\n\"OR\": \"أو\"\n\"AND\": \"و\"\n\"Please enter a valid name.\": \"رجاء ادخل اسما صحيحا.\"\n\"Please select a value.\": \"من فضلك إختر قيمة.\"\n\"Please add a value.\": \"يرجى إضافة قيمة.\"\n\"This field is required\": \"هذه الخانة مطلوبه\"\n\"or\": \"أو\"\n\"and\": \"و\"\n\"Select a Condition\": \"حدد شرطًا\"\n\"Loading...\": \"جار التحميل...\"\n\"Select Option\": \"حدد الخيار\"\n\"Inactive\": \"غير نشط\"\n\"New Type\": \"نوع جديد\"\n\"Placeholders\": \"العناصر النائبة\"\n\"Ticket Link\": \"رابط التذكرة\"\n\"Id\": \"هوية شخصية\"\n\"Preview\": \"معاينة\"\n\"Sort Order\": \"امر ترتيب\"\n\"This field must be a number\": \"يجب أن يكون هذا الحقل رقمًا\"\n\"User\": \"المستعمل\"\n\"Edit Group\": \"تحرير المجموعة\"\n\"Group Status\": \"حالة المجموعة\"\n\"Group is Active\": \"المجموعة نشطة\"\n\"Add Group\": \"أضف مجموعة\"\n\"Contact number is invalid\": \"رقم الاتصال غير صالح\"\n\"Edit Agent\": \"تحرير المساعد\"\n\"No Privilege added, Please add Privilege(s) first !\": \"لم تتم إضافة امتياز الرجاء إضافة الامتيازات (الامتيازات) أولاً!\"\n\"Edit Email Template\": \"تحرير قالب البريد الإلكتروني\"\n\"Edit Workflow\": \"تحرير سير العمل\"\n\"Save Workflow\": \"حفظ سير العمل\"\n\"Edit Ticket Type\": \"تحرير نوع التذكرة\"\n\"Add Ticket Type\": \"أضف نوع التذكرة\"\n\"Date Released\": \"تاريخ الاصدار\"\n\"Free\": \"مجانا\"\n\"Premium\": \"الممتازة\"\n\"Installed\": \"المثبتة\"\n\"Installed Applications\": \"التطبيقات المثبتة\"\n\"Apps Dashboard\": \"لوحة تحكم التطبيقات\"\n\"Dashboard\": \"لوحة القيادة\"\n\"Nothing Interesting here\": \"لا يوجد شيء مثير للاهتمام هنا\"\n\"No Categories Added\": \"لم تتم إضافة فئات\"\n\"ticket\": \"تذكرة\"\n\"Add Email Template\": \"أضف قالب البريد الإلكتروني\"\n\"This field contain 100 characters only\": \"يحتوي هذا الحقل على 100 حرف فقط\"\n\"This field contain characters only\": \"يحتوي هذا الحقل على أحرف فقط\"\n\"Name length must not be greater than 200 !!\": \"يجب ألا يزيد طول الاسم عن 200 !!\"\n\"Warning! Correct all field values first!\": \"تحذير! تصحيح جميع قيم الحقول أولاً!\"\n\"Warning ! This is not a valid request\": \"تحذير ! هذا ليس طلبًا صالحًا\"\n\"Success ! Tag removed successfully.\": \"نجاح ! تمت إزالة العلامة بنجاح.\"\n\"Success ! Tags Saved successfully.\": \"نجاح ! تم حفظ العلامات بنجاح.\"\n\"Success ! Revision restored successfully.\": \"نجاح ! تمت استعادة المراجعة بنجاح.\"\n\"Success ! Categories updated successfully.\": \"نجاح ! تم تحديث الفئات بنجاح.\"\n\"Success ! Article Related removed successfully.\": \"نجاح ! تمت إزالة المقالة ذات الصلة بنجاح.\"\n\"Success ! Article Related is already added.\": \"نجاح ! تمت إضافة المادة ذات الصلة بالفعل.\"\n\"Success ! Cannot add self as relative article.\": \"نجاح ! لا يمكن إضافة الذات كمقالة نسبية.\"\n\"Success ! Article Related updated successfully.\": \"نجاح ! تم تحديث المقالة المتعلقة بنجاح.\"\n\"Success ! Articles removed successfully.\": \"نجاح ! تمت إزالة المقالات بنجاح.\"\n\"Success ! Article status updated successfully.\": \"نجاح ! تم تحديث حالة المقالة بنجاح.\"\n\"Success ! Article star updated successfully.\": \"نجاح ! تم تحديث نجمة المقالة بنجاح.\"\n\"Success! Article updated successfully\": \"نجاح! تم تحديث المقالة بنجاح\"\n\"Success ! Category sort  order updated successfully.\": \"نجاح ! تم تحديث ترتيب فرز الفئات بنجاح.\"\n\"Success ! Category status updated successfully.\": \"نجاح ! تم تحديث حالة الفئة بنجاح.\"\n\"Success ! Folders updated successfully.\": \"نجاح ! تم تحديث المجلدات بنجاح.\"\n\"Success ! Categories removed successfully.\": \"نجاح ! تمت إزالة الفئات بنجاح.\"\n\"Success ! Category updated successfully.\": \"نجاح ! تم تحديث الفئة بنجاح.\"\n\"Error ! Category is not exist.\": \"خطأ! الفئة غير موجودة.\"\n\"Warning ! Customer Login disabled by admin.\": \"تحذير ! تم تعطيل تسجيل دخول المستخدم من قبل المشرف.\"\n\"This Email is not registered with us.\": \"هذا البريد الإلكتروني غير مسجل لدينا.\"\n\"Your password has been updated successfully.\": \"لقد تم تحديث كلمة السر الخاصة بك بنجاح.\"\n\"Password dont match.\": \"كلمة المرور لا تتطابق.\"\n\"Error ! Profile image is not valid, please upload a valid format\": \"خطأ! صورة الملف الشخصي غير صالحة , يرجى تحميل تنسيق صالح\"\n\"Success! Folder has been added successfully.\": \"نجاح! تمت إضافة المجلد بنجاح.\"\n\"Folder updated successfully.\": \"تم تحديث المجلد بنجاح.\"\n\"Success ! Folder status updated successfully.\": \"نجاح ! تم تحديث حالة المجلد بنجاح.\"\n\"Error ! Folder is not exist.\": \"خطأ! المجلد غير موجود.\"\n\"Success ! Folder updated successfully.\": \"نجاح ! تم تحديث المجلد بنجاح.\"\n\"Error ! Folder does not exist.\": \"خطأ! المجلد غير موجود.\"\n\"Success ! Folder deleted successfully.\": \"نجاح ! تم حذف المجلد بنجاح.\"\n\"Warning ! Folder does not exists!\": \"تحذير ! المجلد غير موجود!\"\n\"Warning ! Cannot create ticket, given email is blocked by admin.\": \"تحذير ! لا يمكن إنشاء تذكرة تم حظر البريد الإلكتروني المحدد من قبل المشرف.\"\n\"Success ! Ticket has been created successfully.\": \"نجاح ! تم إنشاء التذكرة بنجاح.\"\n\"Warning ! Can not create ticket, invalid details.\": \"تحذير ! لا يمكن إنشاء تذكرة تفاصيل غير صالحة.\"\n\"Warning ! Post size can not exceed 25MB\": \"تحذير ! لا يمكن أن يتجاوز حجم المشاركة 25 ميغابايت\"\n\"Create Ticket Request\": \"إنشاء طلب تذكرة\"\n\"Success ! Reply added successfully.\": \"نجاح ! تمت إضافة الرد بنجاح.\"\n\"Warning ! Reply field can not be blank.\": \"تحذير ! لا يمكن ترك حقل الرد فارغًا.\"\n\"Success ! Rating has been successfully added.\": \"نجاح ! تمت إضافة التقييم بنجاح.\"\n\"Warning ! Invalid rating.\": \"تحذير ! تصنيف غير صالح.\"\n\"Error ! Can not add customer as a collaborator.\": \"خطأ! لا يمكن إضافة المستخدم كمتعاون.\"\n\"Success ! Collaborator added successfully.\": \"نجاح ! تمت إضافة المتعاون بنجاح.\"\n\"Error ! Collaborator is already added.\": \"خطأ! تمت إضافة المتعاون بالفعل.\"\n\"Success ! Collaborator removed successfully.\": \"نجاح ! تمت إزالة المتعاون بنجاح.\"\n\"Error ! Invalid Collaborator.\": \"خطأ! متعاون غير صالح.\"\n\"An unexpected error occurred. Please try again later.\": \"حدث خطأ غير متوقع. الرجاء معاودة المحاولة في وقت لاحق.\"\n\"Feedback saved successfully.\": \"تم حفظ التعليقات بنجاح.\"\n\"Feedback updated successfully.\": \"تم تحديث التعليقات بنجاح.\"\n\"Invalid feedback provided.\": \"تم تقديم تعليقات غير صالحة.\"\n\"Article not found.\": \"المادة غير موجودة.\"\n\"You need to login to your account before can perform this action.\": \"تحتاج إلى تسجيل الدخول إلى حسابك قبل أن تتمكن من تنفيذ هذا الإجراء.\"\n\"Warning! Please add valid Actions!\": \"تحذير! يرجى إضافة إجراءات صالحة!\"\n\"Warning! In Free Plan you can not change Events!\": \"تحذير! في الخطة المجانية لا يمكنك تغيير الأحداث!\"\n\"Success! Prepared Response has been updated successfully.\": \"نجاح! تم تحديث الرد الجاهز بنجاح.\"\n\"Success! Prepared Response has been added successfully.\": \"نجاح! تمت إضافة الرد الجاهز بنجاح.\"\n\"Warning  This is not a valid request\": \"تحذير هذا ليس طلبًا صالحًا\"\n\"Use Default Colors\": \"استخدم الألوان الافتراضية\"\n\"Masonry\": \"البناء\"\n\"Popular Article\": \"مقال شائع\"\n\"Manage Ticket Custom Fields\": \"إدارة الحقول المخصصة للتذكرة\"\n\"You dont have premission to edit this Prepared response\": \"ليس لديك تصريح لتعديل هذا الرد الجاهز\"\n\"Save Prepared Response\": \"حفظ الاستجابة الجاهزة\"\n\"Success ! Prepared response removed successfully.\": \"نجاح ! تمت إزالة الرد الجاهز بنجاح.\"\n\"Warning! You are not allowed to perform this action.\": \"تحذير! لا يسمح لك بتنفيذ هذا الإجراء.\"\n\"Success! Workflow has been updated successfully.\": \"نجاح! تم تحديث سير العمل بنجاح.\"\n\"Success! Workflow has been added successfully.\": \"نجاح! تمت إضافة سير العمل بنجاح.\"\n\"Success! Order has been updated successfully.\": \"نجاح! تم تحديث الطلب بنجاح.\"\n\"Success! Workflow has been removed successfully.\": \"نجاح! تمت إزالة سير العمل بنجاح.\"\n\"Mailbox successfully created.\": \"تم إنشاء صندوق البريد بنجاح.\"\n\"Mailbox successfully updated.\": \"تم تحديث صندوق البريد بنجاح.\"\n\"Warning ! Bad request !\": \"تحذير ! اقتراح غير جيد !\"\n\"Error! Given current password is incorrect.\": \"خطأ! بالنظر إلى كلمة المرور الحالية غير صحيحة.\"\n\"Success ! Profile update successfully.\": \"نجاح ! تم تحديث الملف الشخصي بنجاح.\"\n\"Error ! User with same email is already exist.\": \"خطأ! المستخدم بنفس البريد الإلكتروني موجود بالفعل.\"\n\"Success ! Agent updated successfully.\": \"نجاح ! تم تحديث المساعد بنجاح.\"\n\"Success ! Agent removed successfully.\": \"نجاح ! تمت إزالة المساعد بنجاح.\"\n\"Warning ! You are allowed to remove account owners account.\": \"تحذير ! مسموح لك بإزالة حساب أصحاب الحساب.\"\n\"Error ! Invalid user id.\": \"خطأ! هوية مستخدم غير صالحه.\"\n\"Success ! Filter has been saved successfully.\": \"النجاح! تم حفظ الفلتر بنجاح.\"\n\"Success ! Filter has been updated successfully.\": \"النجاح! تم تحديث الفلتر بنجاح.\"\n\"Success ! Filter has been removed successfully.\": \"النجاح! تمت إزالة التصفية بنجاح.\"\n\"Please check your mail for password update.\": \"الرجاء التحقق من البريد الخاص بك للحصول على تحديث كلمة المرور.\"\n\"This Email address is not registered with us.\": \"عنوان البريد الإلكتروني هذا غير مسجل معنا.\"\n\"Success ! Customer saved successfully.\": \"النجاح! تم حفظ العميل بنجاح.\"\n\"Error ! User with same email already exist.\": \"خطأ! مستخدم لديه نفس البريد الإلكتروني موجود بالفعل.\"\n\"Success ! Customer information updated successfully.\": \"النجاح! تم تحديث معلومات العميل بنجاح.\"\n\"Success ! Customer updated successfully.\": \"النجاح! تم تحديث العميل بنجاح.\"\n\"Error ! Customer with same email already exist.\": \"خطأ! العميل مع نفس البريد الإلكتروني موجود بالفعل.\"\n\"unstarred Action Completed successfully\": \"تم تنفيذ الإجراء غير النجم بنجاح\"\n\"starred Action Completed successfully\": \"اكتمل العمل بنجاح\"\n\"Success ! Customer removed successfully.\": \"النجاح! تمت إزالة العميل بنجاح.\"\n\"Error ! Invalid customer id.\": \"خطأ! معرف عميل غير صالح.\"\n\"Success! Template has been updated successfully.\": \"نجاح! تم تحديث القالب بنجاح.\"\n\"Success! Template has been added successfully.\": \"نجاح! تمت إضافة القالب بنجاح.\"\n\"Success! Template has been deleted successfully.\": \"نجاح! تم حذف القالب بنجاح.\"\n\"Warning! resource not found.\": \"تحذير! الموارد غير موجود.\"\n\"Warning! You can not remove predefined email template which is being used in workflow(s).\": \"تحذير! لا يمكنك إزالة قالب البريد الإلكتروني المحدد مسبقًا والذي يتم استخدامه في سير العمل.\"\n\"Success ! Email settings are updated successfully.\": \"نجاح ! تم تحديث إعدادات البريد الإلكتروني بنجاح.\"\n\"Success ! Group information updated successfully.\": \"نجاح ! تم تحديث معلومات المجموعة بنجاح.\"\n\"Success ! Group information saved successfully.\": \"نجاح ! تم حفظ معلومات المجموعة بنجاح.\"\n\"Support Group removed successfully.\": \"تمت إزالة مجموعة الدعم بنجاح.\"\n\"SAVE\": \"حفظ\"\n\"Howdy! \": \"مرحبًا!\"\n\n# Successfully Pop-up/Notification Messages:\n\"Ticket is already assigned to agent\" : \"تم تعيين التذكرة بالفعل للوكيل\"\n\"Success ! Agent assigned successfully.\" : \"النجاح ! تم تعيين الوكيل بنجاح.\"\n\"Ticket status is already set\" : \"تم تعيين حالة التذكرة بالفعل\"\n\"Success ! Tickets status updated successfully.\" : \"النجاح ! تم تحديث حالة التذاكر بنجاح.\"\n\"Ticket priority is already set\" : \"تم تعيين أولوية التذكرة بالفعل\"\n\"Success ! Tickets priority updated successfully.\" : \"النجاح ! تم تحديث أولوية التذاكر بنجاح.\"\n\"Ticket group is updated successfully\" : \"تم تحديث مجموعة التذاكر بنجاح\"\n\"Ticket is already assigned to group\" : \"تم تعيين التذكرة بالفعل للمجموعة\"\n\"Success ! Tickets group updated successfully.\" : \"النجاح ! تم تحديث مجموعة التذاكر بنجاح.\"\n\"Ticket team is updated successfully\" : \"تم تحديث فريق التذاكر بنجاح\"\n\"Ticket is already assigned to team\" : \"التذكرة مخصصة بالفعل للفريق\"\n\"Success ! Tickets team updated successfully.\" : \"النجاح ! تم تحديث فريق التذاكر بنجاح.\"\n\"Ticket type is already set\" : \"تم تعيين نوع التذكرة بالفعل\"\n\"Success ! Tickets type updated successfully.\" : \"النجاح ! تم تحديث نوع التذاكر بنجاح.\"\n\"Success ! Tickets label updated successfully.\" : \"النجاح ! تم تحديث بطاقة التذاكر بنجاح.\"\n\"Success ! Tickets added to label successfully.\" : \"النجاح ! تمت إضافة التذاكر إلى الملصق بنجاح.\"\n\"Success ! Tickets moved to trashed successfully.\" : \"النجاح ! تم نقل التذاكر إلى سلة المحذوفات بنجاح.\"\n\"Success ! Tickets removed successfully.\" : \"النجاح ! تمت إزالة التذاكر بنجاح.\"\n\"Success ! Tickets restored successfully.\" : \"النجاح ! تمت استعادة التذاكر بنجاح.\"\n\"Unable to retrieve group details\" : \"تعذر استرداد تفاصيل المجموعة\"\n\"Unable to retrieve team details\" : \"تعذر استرداد تفاصيل الفريق\"\n\"Tickets details have been updated successfully\": \"تم تحديث تفاصيل التذاكر بنجاح\"\n\"Label added to ticket successfully\" : \"تمت إضافة التسمية إلى التذكرة بنجاح\"\t\t\t\t\n\"Label already added to ticket\" : \"تمت إضافة التسمية بالفعل إلى التذكرة\"\n\n\"New Ticket Request\": \"طلب تذكرة جديدة\"\n\"Ticket Requests\": \"طلبات التذاكر\"\n\"Tickets have been updated successfully\": \"تم تحديث التذاكر بنجاح\"\n\"Please check your mail for password update\": \"يرجى التحقق من بريدك للحصول على تحديث كلمة المرور\"\n\"This email address is not registered with us\": \"عنوان البريد الإلكتروني هذا غير مسجل لدينا\"\n\"You have already update password using this link if you wish to change password again click on forget password link here from login page\": \"لقد قمت بالفعل بتحديث كلمة المرور باستخدام هذا الرابط إذا كنت ترغب في تغيير كلمة المرور مرة أخرى ، انقر فوق رابط نسيت كلمة المرور هنا من صفحة تسجيل الدخول\"\n\"Your password has been successfully updated. Login using updated password\": \"لقد تم تحديث كلمة السر الخاصة بك بنجاح. تسجيل الدخول باستخدام كلمة المرور المحدثة\"\n\"Please try again, The passwords do not match\": \"يرجى المحاولة مرة أخرى , لا تتطابق كلمات المرور\"\n\"Support Privilege removed successfully\": \"تمت إزالة امتياز الدعم بنجاح\"\n\"Success! Reply has been updated successfully.\": \"نجاح! تم تحديث الرد بنجاح.\"\n\"Success! Reply has been added successfully.\": \"نجاح! تمت إضافة الرد بنجاح.\"\n\"Privilege updated successfully.\": \"تم تحديث الامتياز بنجاح.\"\n\"Success! Saved Reply has been deleted successfully.\": \"نجاح! تم حذف الرد المحفوظ بنجاح.\"\n\"SwiftMailer configuration created successfully.\": \"تم إنشاء تهيئة SwiftMailer بنجاح.\"\n\"SwiftMailer configuration updated successfully.\": \"تم تحديث تهيئة SwiftMailer بنجاح.\"\n\"Swiftmailer configuration removed successfully.\": \"تمت إزالة تهيئة Swiftmailer بنجاح.\"\n\"No swiftmailer configurations found for mailer id:\": \"لم يتم العثور على تكوينات swiftmailer لمعرف البريد:\"\n\"Success ! Team information saved successfully.\": \"نجاح ! تم حفظ معلومات الفريق بنجاح.\"\n\"Success ! Team information updated successfully.\": \"نجاح ! تم تحديث معلومات الفريق بنجاح.\"\n\"Support Team removed successfully.\": \"تمت إزالة فريق الدعم بنجاح.\"\n\"Reply content cannot be left blank.\": \"لا يمكن ترك محتوى الرد فارغًا.\"\n\"Reply added to the ticket and forwarded successfully.\": \"تمت إضافة الرد على التذكرة وإعادة توجيهه بنجاح.\"\n\"Success ! Thread updated successfully.\": \"نجاح ! تم تحديث سلسلة المحادثات بنجاح.\"\n\"Success ! Thread removed successfully.\": \"نجاح ! تمت إزالة الموضوع بنجاح.\"\n\"Success ! Thread pinned successfully.\": \"نجاح ! تم تثبيت سلسلة المحادثات بنجاح.\"\n\"Success ! unpinned removed successfully.\": \"نجاح ! تمت إزالة التثبيت بنجاح.\"\n\"Could not create ticket, invalid details.\": \"تعذر إنشاء تذكرة تفاصيل غير صالحة.\"\n\"Success! Ticket type saved successfully.\": \"نجاح! تم حفظ نوع التذكرة بنجاح.\"\n\"Success! Ticket type updated successfully.\": \"نجاح! تم تحديث نوع التذكرة بنجاح.\"\n\"Success ! Ticket moved to trash successfully.\": \"نجاح ! تم نقل التذكرة إلى سلة المهملات بنجاح.\"\n\"Success ! Ticket has been updated successfully.\": \"نجاح ! تم تحديث التذكرة بنجاح.\"\n\"Unable to retrieve priority details\": \"تعذر استرداد تفاصيل الأولوية\"\n\"Ticket support group updated successfully\": \"تم تحديث مجموعة دعم التذاكر بنجاح\"\n\"Ticket support team updated successfully\": \"تم تحديث فريق دعم التذاكر بنجاح\"\n\"Ticket assigned to support group \": \"تم تعيين التذكرة لدعم المجموعة\"\n\"Success ! Ticket to label removed successfully.\": \"نجاح ! تمت إزالة تذكرة التسمية بنجاح.\"\n\"Success ! Tag added successfully.\": \"نجاح ! تمت إضافة العلامة بنجاح.\"\n\"Success ! Tag updated successfully.\": \"نجاح ! تم تحديث العلامة بنجاح.\"\n\"Error ! Customer can not be added as collaborator.\": \"خطأ! لا يمكن إضافة المستخدم كمتعاون.\"\n\"Success ! Tag unassigned successfully.\": \"نجاح ! تم إلغاء تحديد العلامة بنجاح.\"\n\"Error ! Invalid tag.\": \"خطأ! علامة غير صالحة.\"\n\"Mailbox configuration removed successfully.\": \"تمت إزالة تكوين صندوق البريد بنجاح.\"\n\"visit our website\": \"قم بزيارة موقعنا\"\n\"Cookie Usage Policy\": \"سياسة استخدام ملفات تعريف الارتباط\"\n\"cookie\": \"بسكويت\"\n\"cookies\": \"بسكويت\"\n\"HELP\": \"مساعدة\"\n\"Home\": \"الصفحة الرئيسية\"\n\"Cookie Policy\": \"سياسة ملفات الارتباط\"\n\"Prev\": \"السابق\"\n\"Ticket query message\": \"رسالة الاستعلام عن التذكرة\"\n\"Select type\": \"اختر صنف\"\n\"Search KnowledgeBase\": \"البحث في KnowledgeBase\"\n\"You cant merge an account with itself.\": \"لا يمكنك دمج حساب مع نفسه.\"\n\"Edit Profile\": \"تعديل الملف الشخصي\"\n\"Customer Login\": \"تسجيل دخول المستخدم\"\n\"Contact Us\": \"اتصل بنا\"\n\"If you have ever contacted our support previously, your account would have already been created.\": \"إذا سبق لك أن اتصلت بدعمنا سابقًا ، فسيتم إنشاء حسابك بالفعل.\"\n\"support\": \"الدعم\"\n\"HelpDesk\": \"مكتب المساعدة\"\n\"Enter search keyword\": \"أدخل كلمة البحث\"\n\"Browse via Folders\": \"تصفح عبر المجلدات\"\n\"Looking for something that is queried generally? Choose a relevant folder from below to explore possible solutions\": \"هل تبحث عن شيء يتم الاستعلام عنه بشكل عام؟ اختر مجلدًا ذا صلة من الأسفل لاستكشاف الحلول الممكنة\"\n\"Unable to find an answer?\": \"غير قادر على إيجاد إجابة؟\"\n\"Looking for anything specific article which resides in general queries? Just browse the various relevant folders and categories and then you will find the desired article.\": \"هل تبحث عن أي شيء محدد موجود في الاستفسارات العامة؟ ما عليك سوى تصفح المجلدات والفئات المختلفة ذات الصلة ، ثم ستجد المقالة المطلوبة.\"\n\"Popular Articles\": \"المواد شعبية\"\n\"Here are some of the most popular articles, which helped number of users to get their queries and questions resolved.\": \"فيما يلي بعض المقالات الأكثر شيوعًا , التي ساعدت عددًا من المستخدمين على حل استفساراتهم وأسئلتهم.\"\n\"Browse via Categories\": \"تصفح عبر الفئات\"\n\"Looking for something specific? Choose a relevant category from below to explore possible solutions\": \"تبحث عن شيء معين؟ اختر فئة مناسبة من أدناه لاستكشاف الحلول الممكنة\"\n\"No Categories Found!\": \"لم يتم العثور على فئات!\"\n\"Powered by\": \"مشغل بواسطة\"\n\"Powered by %uvdesk%, an open-source project by %webkul%.\": \"مدعوم من %uvdesk%، وهو مشروع مفتوح المصدر من %webkul%.\"\n\"Forgot Password\": \"هل نسيت كلمة المرور\"\n\"Enter your email address and we will send you an email with instructions to update your login credentials.\": \"أدخل عنوان بريدك الإلكتروني وسنرسل لك بريدًا إلكترونيًا يحتوي على تعليمات لتحديث بيانات اعتماد تسجيل الدخول الخاصة بك.\"\n\"Send Mail\": \"ارسل بريد\"\n\"Sign In to %websitename%\": \"تسجيل الدخول إلى %websitename%\"\n\"Enter your name\": \"أدخل أسمك\"\n\"Enter your email\": \"أدخل بريدك الإلكتروني\"\n\"Learn more about %deliveryStatus%.\": \"تعرف على المزيد حول٪ deliveryStatus٪.\"\n\"Some of our site pages utilize %cookies% and other tracking technologies. A %cookie% is a small text file that may be used, for example, to collect information about site activity. Some cookies and other technologies may serve to recall personal information previously indicated by a site user. You may block cookies, or delete existing cookies, by adjusting the appropriate setting on your browser. Please consult the %help% menu of your browser to learn how to do this. If you block or delete %cookies% you may find the usefulness of our site to be impaired.\": \"تستخدم بعض صفحات موقعنا %cookies% وتقنيات التتبع الأخرى.  ملف تعريف الارتباط هو ملف نصي صغير يمكن استخدامه ، على سبيل المثال ، لجمع معلومات حول نشاط الموقع. قد تعمل بعض ملفات تعريف الارتباط والتقنيات الأخرى على استدعاء المعلومات الشخصية التي أشار إليها مستخدم الموقع مسبقًا. يمكنك حظر ملفات تعريف الارتباط ، أو حذف ملفات تعريف الارتباط الموجودة ، عن طريق ضبط الإعداد المناسب في متصفحك. يرجى الرجوع إلى قائمة %help% في متصفحك لمعرفة كيفية القيام بذلك. إذا قمت بحظر أو حذف ملفات تعريف الارتباط ، فقد تجد أن فائدة موقعنا قد أضعفت.\"\n\"To know more about how our privacy policy works, please %websiteLink%.\": \"لمعرفة المزيد حول سياسة الخصوصية الخاصة بنا ، يرجى زيارة موقعنا على الإنترنت.  %websiteLink%.\"\n\"This field contain maximum 40 charectures.\": \"يحتوي هذا الحقل على 40 مشاركة بحد أقصى.\"\n\"This field contain maximum 50 charectures.\": \"يحتوي هذا الحقل على 50 حالة مشاركة بحد أقصى.\"\n\"Links\": \"الروابط\"\n\"Broadcast Message\": \"رسالة البث\"\n\"Wide Logo\": \"شعار واسع\"\n\"Upload an Image (200px x 48px) in</br> PNG or JPG Format\": \"قم بتحميل صورة (200 بكسل × 48 بكسل) بتنسيق </br> PNG أو JPG\"\n\"It will be shown as Logo on Knowledgebase and Helpdesk\": \"سيتم عرضه كشعار في Knowledgebase و Helpdesk\"\n\"Website Status\": \"حالة الموقع\"\n\"Enable front end website and knowledgebase for customer(s)\": \"تمكين موقع الويب الأمامي وقاعدة المعرفة للمستخدم (المستخدمين)\"\n\"Brand Color\": \"لون العلامة التجارية\"\n\"Page Background Color\": \"لون خلفية الصفحة\"\n\"Header Background Color\": \"لون خلفية الرأس\"\n\"Banner Background Color\": \"لون خلفية البانر\"\n\"Page Link Color\": \"لون ارتباط الصفحة\"\n\"Page Link Hover Color\": \"لون رابط الصفحة\"\n\"Article Text Color\": \"لون نص المقالة\"\n\"Tag Line\": \"سطر العلامة\"\n\"Hi! how can we help?\": \"مرحبا! كيف يمكن أن نساعد؟\"\n\"Layout\": \"نسق\"\n\"Ticket Create Option\": \"خيار إنشاء تذكرة\"\n\"Login Required To Create Tickets\": \"مطلوب تسجيل الدخول لإنشاء تذاكر\"\n\"Remove Customer Login/Signin Button\": \"إزالة زر تسجيل دخول / تسجيل دخول المستخدم\"\n\"Disable Customer Login\": \"تعطيل تسجيل دخول المستخدم\"\n\"Meta Description (Recommended)\": \"وصف ميتا (مستحسن)\"\n\"Meta Keywords (Recommended)\": \"الكلمات الفوقية (مستحسن)\"\n\"Header Link\": \"رابط العنوان\"\n\"URL (with http:// or https://)\": \"URL (مع http: // أو https: //)\"\n\"Footer Link\": \"رابط التذييل\"\n\"Custom CSS (Optional)\": \"CSS مخصص (اختياري)\"\n\"It will be add to the frontend knowledgebase only\": \"ستتم إضافته إلى قاعدة المعرفة بالواجهة الأمامية فقط\"\n\"Custom Javascript (Optional)\": \"جافا سكريبت مخصص (اختياري)\"\n\"Broadcast message content to show on helpdesk\": \"بث محتوى الرسالة لإظهاره في مكتب المساعدة\"\n\"From\": \"من عند\"\n\"Time duration between which message will be displayed(if applicable)\": \"المدة الزمنية التي سيتم خلالها عرض الرسالة (إن أمكن)\"\n\"Broadcasting Status\": \"حالة البث\"\n\"Broadcasting is Active\": \"البث نشط\"\n\"Choose a default company timezone\": \"اختر المنطقة الزمنية الافتراضية للشركة\"\n\"Date Time Format\": \"تنسيق الوقت والتاريخ\"\n\"Choose a format to convert date to specified date time format\": \"اختر تنسيقًا لتحويل التاريخ إلى تنسيق وقت التاريخ المحدد\"\n\"An empty file is not allowed.\": \"لا يسمح بملف فارغ.\"\n\"File size must not be greater than 200KB !!\": \"يجب ألا يكون حجم الملف أكبر من 200 كيلو بايت !!\"\n\"Please upload valid Image file (Only JPEG, JPG, PNG allowed)!!\": \"يرجى تحميل ملف صورة صالح (فقط JPEG , JPG , PNG مسموح به) !!\"\n\"'comma , separated'\": \"فاصلة , مفصولة\"\n\"Provide a valid url(with protocol)\": \"أدخل عنوان URL صالحًا (مع البروتوكول)\"\n\"Low\": \"منخفض\"\n\"Medium\": \"متوسط\"\n\"High\": \"عالي\"\n\"Urgent\": \"العاجلة\"\n\"Reset Password\": \"إعادة تعيين كلمة المرور\"\n\"Enter your new password below to update your login credentials\": \"أدخل كلمة المرور الجديدة أدناه لتحديث بيانات اعتماد تسجيل الدخول الخاصة بك\"\n\"Save Password\": \"حفظ كلمة المرور\"\n\"Rate Support\": \"معدل الدعم\"\n\"I am very Sad\": \"انا حزين جدا\"\n\"I am Sad\": \"انا حزين\"\n\"I am Neutral\": \"أنا محايد\"\n\"I am Happy\": \"أنا سعيد\"\n\"I am Very Happy\": \"أنا سعيد جدا\"\n\"Kudos\": \"مجد\"\n\"kudos\": \"مجد\"\n\"Very Sad\": \"حزين جدا\"\n\"Sad\": \"حزين\"\n\"Neutral\": \"حيادي\"\n\"Happy\": \"سعيدة\"\n\"Very Happy\": \"سعيد جدا\"\n\"Star(s)\": \"النجوم\"\n\"Warning ! Swiftmailer not working. An error has occurred while sending emails!\" : \"تحذير ! Swiftmailer لا يعمل. حدث خطأ أثناء إرسال رسائل البريد الإلكتروني!\"\n\"Invalid credentials.\": \"بيانات الاعتماد غير صالحة\"\n\"Success ! Project cache cleared successfully.\": \"النجاح ! تم مسح ذاكرة التخزين المؤقت للمشروع بنجاح.\"\n\"clear cache\": \"مسح ذاكرة التخزين المؤقت\"\n\"Last Updated\": \"التحديث الاخير\"\n\"Error! Something went wrong.\": \"خطأ! هناك خطأ ما.\"\n\"We were not able to find the page you are looking for.\": \"لم نتمكن من العثور على الصفحة التي تبحث عنها.\"\n\"Page not found\": \"الصفحة غير موجودة\"\n\"Forbidden\": \"محرم\"\n\"You don’t have the necessary permissions to access this Web page :(\": \"ليس لديك الأذونات اللازمة للوصول إلى صفحة الويب هذه :(\"\n\"Internal server error\": \"خطأ في الخادم الداخلي\"\n\"Our system has goofed up for a while, but good part is it won't last long\": \"لقد أخطأ نظامنا لفترة من الوقت ، لكن الجزء الجيد أنه لن يستمر طويلاً\"\n\"Unknown Error\": \"خطأ غير معروف\"\n\"We are quite confused about how did you land here:/\": \"نحن في حيرة من أمرنا بشأن كيفية وصولك إلى هنا :/\"\n\"Few of the links which may help you to get back on the track -\": \"قليل من الروابط التي قد تساعدك على العودة إلى المسار الصحيح -\"\n\n#Microsoft apps:\n\"Microsoft Apps\": \"تطبيقات مايكروسوفت\"\n\"Add a Microsoft app\": \"أضف تطبيق مايكروسوفتMicrosoft\"\n\"Enable\": \"ممكن\"\n\"App Name\": \"اسم التطبيق\"\n\"Tenant Id\": \"معرف المستأجر\"\n\"Client Id\": \"معرف العميل\"\n\"Client Secret\": \"سر العميل\"\n\"NEW APP:\": \"تطبيق جديد\"\n\"UPDATE APP\": \"تحديث التطبيق\"\n\"Guide on creating a new app in Azure Active Directory:\": \"دليل حول إنشاء تطبيق جديد في Azure Active Directory:\"\n\"To add a new Microsoft App to your azure active directory, follow the steps as given below:\": \"لإضافة تطبيق Microsoft جديد إلى الدليل النشط azure الخاص بك ، اتبع الخطوات الموضحة أدناه:\"\n\"Go to Azure Active Directory -> App registerations\": \"انتقل إلى Azure Active Directory -> تسجيلات التطبيقات\"\n\"Disable\": \"إبطال\"\n\"Please enter a valid name for your app.\": \"الرجاء إدخال اسم صالح للتطبيق الخاص بك.\"\n\"Please enter a valid tenant id.\": \"الرجاء إدخال معرف مستأجر صالح.\"\n\"Please enter a valid client id.\": \"الرجاء إدخال معرف عميل صالح.\"\n\"Please enter a valid client secret.\": \"الرجاء إدخال سر عميل صالح.\"\n\"Microsoft app settings\": \"إعدادات تطبيقات Microsoft\"\n\"Unverified\": \"لم يتم التحقق منه\"\n\"Microsoft app has been updated successfully.\": \"تم تحديث تطبيق Microsoft بنجاح.\"\n\"No microsoft apps found\": \"لم يتم العثور على تطبيقات Microsoft\"\n\"Microsoft app settings could not be verifired successfully. Please check your settings and try again later.\": \"تعذر التحقق من إعدادات تطبيقات Microsoft بنجاح. يرجى التحقق من الإعدادات الخاصة بك وحاول مرة أخرى في وقت لاحق.\"\n\"Microsoft app has been integrated successfully.\": \"تم حذف تطبيق Microsoft بنجاح.\"\n\"Microsoft app has been deleted successfully.\": \"تم دمج تطبيق Microsoft بنجاح.\"\n\"Verified\": \"تم التحقق\"\n\n\"Create a New Registration\": \"إنشاء تسجيل جديد\"\n\"Enter your app details as following:\": \"أدخل تفاصيل التطبيق الخاص بك على النحو التالي:\"\n\"App Name: Enter an app name to easily help you identify its purpose\": \"اسم التطبيق: أدخل اسم التطبيق لمساعدتك في تحديد الغرض منه بسهولة\"\n\"Supported Account Types: Select whichever option works the best for you (Recommended: Accounts in any organizational directory and personal Microsoft accounts)\": \"أنواع الحسابات المدعومة: حدد الخيار الأفضل بالنسبة لك (موصى به: الحسابات في أي دليل تنظيمي وحسابات Microsoft الشخصية)\"\n\"Redirect URI:\": \"إعادة توجيه URI:\"\n\"Select Platform: Web\": \"حدد النظام الأساسي: الويب\"\n\"Enter the following redirect uri:\": \"أدخل عنوان URL لإعادة التوجيه التالي:\"\n\"Proceed to create your application\": \"تابع لإنشاء التطبيق الخاص بك\"\n\"Once your app has been created, in your app overview section, continue with adding a client credential by clicking on \\\"Add a certificate or secret\\\"\": \"بمجرد إنشاء التطبيق الخاص بك ، في قسم نظرة عامة على التطبيق ، تابع إضافة بيانات اعتماد العميل بالنقر فوق \\\"إضافة شهادة أو سر\\\"\"\n\"Create a new client secret\": \"قم بإنشاء سر عميل جديد\"\n\"Enter a description as per your preference to help identify the purpose of this client secret\": \"أدخل وصفًا وفقًا لتفضيلاتك للمساعدة في تحديد الغرض من سر العميل هذا\"\n\"Choose an expiration time as per your preference\": \"اختر وقت انتهاء الصلاحية حسب تفضيلاتك\"\n\"Proceed to add your client secret\": \"تابع لإضافة سر العميل الخاص بك\"\n\"Copy the client secret value which will be needed later and cannot be viewed again\": \"انسخ قيمة سر العميل التي ستكون مطلوبة لاحقًا ولا يمكن عرضها مرة أخرى\"\n\"Navigate to API permissions\": \"انتقل إلى أذونات API\"\n\"Click on \\\"Add a permission\\\" to add a new api permission. Add the following delegated permissions by selecting Microsoft APIs > Microsoft Graph > Delegate Permissions\": \"انقر فوق \\\"إضافة إذن \\\" لإضافة إذن جديد لواجهة برمجة التطبيقات ، أضف الأذونات المفوضة التالية عن طريق تحديد Microsoft APIs> Microsoft Graph> تفويض الأذونات\"\n\"Navigate to your app overview section\": \"انتقل إلى قسم نظرة عامة على التطبيق الخاص بك\"\n\"Copy the Application (Client) Id\": \"انسخ معرف التطبيق (العميل)\"\n\"Copy the Directory (Tenant) Id\": \"انسخ معرف الدليل (المستأجر)\"\n\"Enter your client id, tenant id, and client secret in settings above as required.\": \"أدخل معرف العميل ومعرف المستأجر وسر العميل في الإعدادات أعلاه كما هو مطلوب.\"\n\"offline_access\": \"غير متصل\"\n\"openid\": \"مفتوح\"\n\"profile\": \"الملف الشخصي\"\n\"User.Read\": \"المستخدم اقرأ\"\n\"IMAP.AccessAsUser.All\": \"الوصول عبر IMAP\"\n\"SMTP.Send\": \"إرسال SMTP\"\n\"POP.AccessAsUser.All\": \"POP.AccessAsUser.All\"\n\"Mail.Read\": \"البريد\"\n\"Mail.ReadBasic\": \"Mail.ReadBasic\"\n\"Mail.Send\": \"البريد\"\n\"Mail.Send.Shared\": \"إرسال بريد. مشاركة\"\n\"Add App\": \"أضف التطبيق\"\n\"New App\": \"تطبيق جديد\"\n\n#Mailbox option:\n\"Disable email delivery\": \"تعطيل تسليم البريد الإلكتروني\"\n\"Use as default mailbox for sending emails\": \"استخدم كصندوق بريد افتراضي لإرسال رسائل البريد الإلكتروني\"\n\"Inbound Emails\": \"رسائل البريد الإلكتروني الواردة\"\n\"Manage how you wish to retrieve and process emails from your mailbox.\": \"إدارة الطريقة التي ترغب في استرداد ومعالجة رسائل البريد الإلكتروني من صندوق البريد الخاص بك.\"\n\"Outbound Emails\": \"رسائل البريد الإلكتروني الصادرة\"\n\"Manage how you wish to send emails from your mailbox.\": \"إدارة كيف تريد إرسال رسائل البريد الإلكتروني من صندوق البريد الخاص بك.\"\n\n\"Marketing Modules\" : \"وحدات التسويق\"\n\"New Marketing Module\": \"وحدة التسويق الجديدة\"\n\"Marketing Module\": \"وحدة التسويق\"\n\"Status:\": \"حالة:\"\n"
  },
  {
    "path": "translations/messages.da.yml",
    "content": "\"Signed in as\": \"Logget ind som\"\n\"Your Profile\": \"Din profil\"\n\"Create Ticket\": \"Opret billet\"\n\"Create Agent\": \"Opret agent\"\n\"Create Customer\": \"Opret kunde\"\n\"Sign Out\": \"Log ud\"\n\"Default Language (Optional)\": \"Standardsprog (valgfrit)\"\n\"Username/Email\": \"Brugernavn/Email\"\n\"create new\": \"lav ny\"\n\"Howdy!\": \"Hej!\"\n\"Ticket Information\": \"Billetinformation\"\n\"CC/BCC\": \"CC/BCC\"\n\"Success! Label created successfully.\": \"Succes! Etiket oprettet med succes.\"\n\"Success! Label removed successfully.\": \"Succes! Etiketten blev fjernet.\"\n\"Reports\": \"Rapporter\"\n\"Rating\": \"Bedømmelse\"\n\"Kudos Rating\": \"Kudos vurdering\"\n\"Choose your default timeformat\": \"Vælg dit standardtidsformat\"\n\"Remove profile picture\": \"Fjern profilbillede\"\n\"Success ! Profile updated successfully.\": \"Succes! Profilen blev opdateret.\"\n\"Howdy\": \"Hejsa\"\n\"Form successfully updated.\": \"Formularen blev opdateret.\"\n\"NEW FORM\": \"Ny Form\"\n\"Text Box\": \"Tekstboks\"\n\"Text Area\": \"Tekstområde\"\n\"Select\": \"Vælg\"\n\"Radio\": \"Radio\"\n\"Checkbox\": \"Afkrydsningsfelt\"\n\"File\": \"Fil\"\n\"Date\": \"Dato\"\n\"Both Date and Time\": \"Både dato og tid\"\n\"Choose a status\": \"Vælg en status\"\n\"Choose a group\": \"Vælg en gruppe\"\n\"Can manage Group's Saved Reply\": \"Kan administrere gruppens gemte svar\"\n\"Slug is the url identity of this article. We will help you to create valid slug at time of typing.\": \"Slug er url-identiteten for denne artikel. Vi hjælper dig med at oprette en gyldig slug på tidspunktet for indtastning.\"\n\"The URL for this article\": \"URL'en til denne artikel\"\n\"Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A page's title tag and meta description are usually shown whenever that page appears in search engine results\": \"Titeltags og metabeskrivelser er stykker HTML-kode i overskriften på en webside. De hjælper søgemaskiner med at forstå indholdet på en side. En sides titeltag og metabeskrivelse vises normalt, hver gang siden vises i søgemaskinens resultater\"\n\"comma separated (,)\": \"komma separeret (,)\"\n\"Article Title\": \"Artikeltitel\"\n\"Start typing few charactors and add set of relevant article from the list\": \"Begynd at skrive nogle få tegn og tilføj et sæt relevante artikler fra listen\"\n\"Success! Announcement data saved successfully.\": \"Succes! Meddelelsesdata blev gemt.\"\n\"Success! Category has been added successfully.\": \"Succes! Kategori er blevet tilføjet.\"\n\"Success ! Agent added successfully.\": \"Succes! Agent tilføjet.\"\n\"Success! Privilege information saved successfully.\": \"Succes! Privilegiumoplysninger blev gemt.\"\n\"Edit Prepared Response\": \"Rediger forberedt svar\"\n\"Success! Type removed successfully.\": \"Succes! Type er blevet fjernet.\"\n\"No results available\": \"Ingen tilgængelige resultater\"\n\"Success ! Prepared Response applied successfully.\": \"Succes! Forberedt svar anvendt med succes.\"\n\"Note added to ticket successfully.\": \"Noten blev tilføjet til billetten.\"\n\"Ticket status update to Spam\": \"Billetstatusopdatering til spam\"\n\"Ticket status update to Closed\": \"Billetstatusopdatering til Lukket\"\n\"Success! Label updated successfully.\": \"Succes! Etiketten blev opdateret.\"\n\"Success ! Helpdesk details saved successfully\": \"Succes! Helpdesk-oplysningerne blev gemt\"\n\"Can manage agent activity\": \"Kan administrere agentaktivitet\"\n\"Can manage marketing announcement\": \"Kan administrere markedsføringsmeddelelser\"\n\"User Forgot Password\": \"Bruger Glemt adgangskode\"\n\"Agent Deleted\": \"Agent slettet\"\n\"Agent Update\": \"Agentopdatering\"\n\"Customer Update\": \"Kundeopdatering\"\n\"Customer Deleted\": \"Kunde slettet\"\n\"Agent Updated\": \"Agent opdateret\"\n\"Agent Reply\": \"Agent svar\"\n\"Collaborator Added\": \"Samarbejdspartner tilføjet\"\n\"Collaborator Reply\": \"Samarbejdspartners svar\"\n\"Customer Reply\": \"Kundesvar\"\n\"Ticket Deleted\": \"Billet slettet\"\n\"Group Updated\": \"Gruppe opdateret\"\n\"Note Added\": \"Bemærk tilføjet\"\n\"Priority Updated\": \"Prioritet opdateret\"\n\"Status Updated\": \"Status opdateret\"\n\"Team Updated\": \"Hold opdateret\"\n\"Thread Updated\": \"Tråd opdateret\"\n\"Type Updated\": \"Type opdateret\"\n\"From Email\": \"Fra e-mail\"\n\"To Email\": \"Til e-mail\"\n\"Is Equal To\": \"Er lig med\"\n\"Is Not Equal To\": \"Er ikke lig med\"\n\"Contains\": \"Indeholder\"\n\"Does Not Contain\": \"Indeholder ikke\"\n\"Starts With\": \"Starter med\"\n\"Ends With\": \"Ender med\"\n\"Before On\": \"Før On\"\n\"After On\": \"Efter On\"\n\"Permanently delete from Inbox\": \"Slet permanent fra indbakken\"\n\"Transfer Tickets\": \"Transfer billetter\"\n\"Mail To User\": \"Mail til bruger\"\n\"Agent Activity\": \"Agentaktivitet\"\n\"Report From\": \"Rapport fra\"\n\"Search Agent\": \"Søg agent\"\n\"Agent Last Reply\": \"Agent sidste svar\"\n\"View analytics and insights to serve a better experience for your customers\": \"Se analyse og indsigt for at give dine kunder en bedre oplevelse\"\n\"Marketing Announcement\": \"Marketingmeddelelse\"\n\"Advertisement\": \"Reklame\"\n\"Announcement\": \"Bekendtgørelse\"\n\"New Announcement\": \"Ny meddelelse\"\n\"Add Announcement\": \"Tilføj meddelelse\"\n\"Edit Announcement\": \"Rediger meddelelse\"\n\"Promo Text\": \"Kampagnetekst\"\n\"Promo Tag\": \"Kampagnekode\"\n\"Choose a promo tag\": \"Vælg et promotag\"\n\"Tag-Color\": \"Tag-farve\"\n\"Tag background color\": \"Tag baggrundsfarve\"\n\"Link Text\": \"Linktekst\"\n\"Link URL\": \"Link URL\"\n\"Apps\": \"Apps\"\n\"Integrate apps as per your needs to get things done faster than ever\": \"Installer nye tilpassede apps for at øge din produktivitet - <a href='https://store.webkul.com/UVdesk/UVdesk-Open-Source.html' style='font-weight: bold' target='_blank'>Udforsk nu</a>\"\n\"Explore Apps\": \"Udforsk apps\"\n\"Form Builder\": \"Formularbygger\"\n\"Knowledgebase\": \"Vidensdatabase\"\n\"Knowledgebase is a source of rigid and complex information which helps Customers to help themselves\": \"Knowledgebase er en kilde til stiv og kompleks information, der hjælper kunderne med at hjælpe sig selv\"\n\"Articles\": \"Artikler\"\n\"Categories\": \"Kategorier\"\n\"Folders\": \"mapper\"\n\"FOLDERS\": \"MAPPER\"\n\"Productivity\": \"Produktivitet\"\n\"Automate your processes by creating set of rules and presets to respond faster to the tickets\": \"Automatiser dine processer ved at oprette sæt regler og forudindstillinger for at reagere hurtigere på billetterne\"\n\"Prepared Responses\": \"Forberedte svar\"\n\"Saved Replies\": \"Gemte svar\"\n\"Edit Saved Reply\": \"Rediger gemt svar\"\n\"Ticket Types\": \"Billetyper\"\n\"Workflows\": \"Arbejdsprocesser\"\n\"Settings\": \"Indstillinger\"\n\"Manage your Brand Identity, Company Information and other details at a glance\": \"Administrer din brandidentitet, firmainformation og andre detaljer med et overblik\"\n\"Branding\": \"Branding\"\n\"Custom Fields\": \"Tilpassede felter\"\n\"Email Settings\": \"E-mail-indstillinger\"\n\"Email Templates\": \"E-mail-skabeloner\"\n\"Mailbox\": \"Postkasse\"\n\"Spam Settings\": \"Indstillinger for spam\"\n\"Swift Mailer\": \"Swift Mailer\"\n\"Tags\": \"Tags\"\n\"Users\": \"Brugere\"\n\"Control your Groups, Teams, Agents and Customers\": \"Kontroller dine grupper, hold, agenter og kunder\"\n\"Agents\": \"Agenter\"\n\"Customers\": \"kunder\"\n\"Groups\": \"grupper\"\n\"Privileges\": \"privilegier\"\n\"Teams\": \"Hold\"\n\"Applications\": \"Applikationer\"\n\"ECommerce Order Syncronization\": \"ECommerce ordresynkronisering\"\n\"Import ecommerce order details to your support tickets from different available platforms\": \"Importer detaljer om e-handelsordre til dine supportbilletter fra forskellige tilgængelige platforme\"\n\"Search\": \"Søg\"\n\"Sort By\": \"Sorter efter\"\n\"Sort By:\": \"Sorter efter:\"\n\"Status\": \"status\"\n\"Created At\": \"Oprettet ved\"\n\"Name\": \"Navn\"\n\"All\": \"Alle\"\n\"Published\": \"Udgivet\"\n\"Draft\": \"Udkast\"\n\"New Folder\": \"Ny mappe\"\n\"Create Knowledgebase Folder\": \"Opret vidensbaseret mappe\"\n\"You did not add any folder to your Knowledgebase yet, Create your first Folder and start adding Categories/Articles to make your customers help themselves.\": \"Du har ikke tilføjet nogen mappe til din vidensbase endnu, opret din første mappe og begynd at tilføje kategorier / artikler for at få dine kunder til at hjælpe sig selv.\"\n\"Clear Filters\": \"Ryd filtre\"\n\"Back\": \"Tilbage\"\n\"Open\": \"Åben\"\n\"Pending\": \"Verserende\"\n\"Answered\": \"besvaret\"\n\"Resolved\": \"løst\"\n\"Closed\": \"Lukket\"\n\"Spam\": \"Spam\"\n\"New\": \"Ny\"\n\"UnAssigned\": \"Ikke-tildelte\"\n\"UnAnswered\": \"ubesvarede\"\n\"My Tickets\": \"Mine billetter\"\n\"Starred\": \"Stjernemarkerede\"\n\"Trashed\": \"trashed\"\n\"New Label\": \"Ny etiket\"\n\"Tickets\": \"Billetter\"\n\"Ticket Id\": \"Billet-id\"\n\"Last Replied\": \"Sidst besvaret\"\n\"Assign To\": \"Tildel til\"\n\"After Reply\": \"Efter svar\"\n\"Customer Email\": \"Kundepost\"\n\"Customer Name\": \"Kundenavn\"\n\"Assets Visibility\": \"Aktiv synlighed\"\n\"Channel/Source\": \"Kanal / kilde\"\n\"Channel\": \"Kanal\"\n\"Website\": \"Internet side\"\n\"Timestamp\": \"Tidsstempel\"\n\"TimeStamp\": \"Tidsstempel\"\n\"Team\": \"Hold\"\n\"Type\": \"Type\"\n\"Replies\": \"Svar\"\n\"Agent\": \"Agent\"\n\"ID\": \"ID\"\n\"Subject\": \"Emne\"\n\"Last Reply\": \"Sidste svar\"\n\"Filter View\": \"Filtervisning\"\n\"Please select CAPTCHA\": \"Vælg CAPTCHA\"\n\"Warning ! Please select correct CAPTCHA !\": \"Advarsel! Vælg den korrekte CAPTCHA!\"\n\"reCAPTCHA Setting\": \"reCAPTCHA-indstilling\"\n\"reCAPTCHA Site Key\": \"reCAPTCHA Site Key\"\n\"reCAPTCHA Secret key\": \"reCAPTCHA Hemmelig nøgle\"\n\"reCAPTCHA Status\": \"reCAPTCHA-status\"\n\"reCAPTCHA is Active\": \"reCAPTCHA er aktiv\"\n\"Save set of filters as a preset to stay more productive\": \"Gem et sæt filtre som en forudindstilling for at forblive mere produktiv\"\n\"Saved Filters\": \"Gemte filtre\"\n\"No saved filter created\": \"Intet gemt filter oprettet\"\n\"Customer\": \"Kunde\"\n\"Priority\": \"Prioritet\"\n\"Tag\": \"tag\"\n\"Source\": \"Kilde\"\n\"Before\": \"Før\"\n\"After\": \"Efter\"\n\"Replies less than\": \"Svar mindre end\"\n\"Replies more than\": \"Svar mere end\"\n\"Clear All\": \"Slet alt\"\n\"Account\": \"Konto\"\n\"Profile\": \"Profil\"\n\"Upload a Profile Image (100px x 100px)<br> in PNG or JPG Format\": \"Upload et profilbillede (100px x 100px) <br> i PNG- eller JPG-format\"\n\"First Name\": \"Fornavn\"\n\"Last Name\": \"Efternavn\"\n\"Email\": \"E-mail\"\n\"Contact Number\": \"Kontakt nummer\"\n\"Timezone\": \"Tidszone\"\n\"Africa/Abidjan\": \"Afrika / Abidjan\"\n\"Africa/Accra\": \"Afrika / Accra\"\n\"Africa/Addis_Ababa\": \"Afrika / Addis_Ababa\"\n\"Africa/Algiers\": \"Afrika / Algiers\"\n\"Africa/Asmara\": \"Afrika / Asmara\"\n\"Africa/Bamako\": \"Afrika / Bamako\"\n\"Africa/Bangui\": \"Afrika / Bangui\"\n\"Africa/Banjul\": \"Afrika / Banjul\"\n\"Africa/Bissau\": \"Afrika / Bissau\"\n\"Africa/Blantyre\": \"Afrika / Blantyre\"\n\"Africa/Brazzaville\": \"Afrika / Brazzaville\"\n\"Africa/Bujumbura\": \"Afrika / Bujumbura\"\n\"Africa/Cairo\": \"Afrika / Cairo\"\n\"Africa/Casablanca\": \"Afrika / Casablanca\"\n\"Africa/Ceuta\": \"Afrika / Ceuta\"\n\"Africa/Conakry\": \"Afrika / Conakry\"\n\"Africa/Dakar\": \"Afrika / Dakar\"\n\"Africa/Dar_es_Salaam\": \"Afrika / Dar_es_Salaam\"\n\"Africa/Djibouti\": \"Afrika / Djibouti\"\n\"Africa/Douala\": \"Afrika / Douala\"\n\"Africa/El_Aaiun\": \"Afrika / El_Aaiun\"\n\"Africa/Freetown\": \"Afrika / Freetown\"\n\"Africa/Gaborone\": \"Afrika / Gaborone\"\n\"Africa/Harare\": \"Afrika / Harare\"\n\"Africa/Johannesburg\": \"Afrika / Johannesburg\"\n\"Africa/Juba\": \"Afrika / Juba\"\n\"Africa/Kampala\": \"Afrika / Kampala\"\n\"Africa/Khartoum\": \"Afrika / Khartoum\"\n\"Africa/Kigali\": \"Afrika / Kigali\"\n\"Africa/Kinshasa\": \"Afrika / Kinshasa\"\n\"Africa/Lagos\": \"Afrika / Lagos\"\n\"Africa/Libreville\": \"Afrika / Libreville\"\n\"Africa/Lome\": \"Afrika / Lome\"\n\"Africa/Luanda\": \"Afrika / Luanda\"\n\"Africa/Lubumbashi\": \"Afrika / Lubumbashi\"\n\"Africa/Lusaka\": \"Afrika / Lusaka\"\n\"Africa/Malabo\": \"Afrika / Malabo\"\n\"Africa/Maputo\": \"Afrika / Maputo\"\n\"Africa/Maseru\": \"Afrika / Maseru\"\n\"Africa/Mbabane\": \"Afrika / Mbabane\"\n\"Africa/Mogadishu\": \"Afrika / Mogadishu\"\n\"Africa/Monrovia\": \"Afrika / Monrovia\"\n\"Africa/Nairobi\": \"Afrika / Nairobi\"\n\"Africa/Ndjamena\": \"Afrika / Ndjamena\"\n\"Africa/Niamey\": \"Afrika / Niamey\"\n\"Africa/Nouakchott\": \"Afrika / Nouakchott\"\n\"Africa/Ouagadougou\": \"Afrika / Ouagadougou\"\n\"Africa/Porto-Novo\": \"Afrika / Porto-Novo\"\n\"Africa/Sao_Tome\": \"Afrika / Sao_Tome\"\n\"Africa/Tripoli\": \"Afrika / Tripoli\"\n\"Africa/Tunis\": \"Afrika / Tunis\"\n\"Africa/Windhoek\": \"Afrika / Windhoek\"\n\"America/Adak\": \"Amerika / Adak\"\n\"America/Anchorage\": \"Amerika / Anchorage\"\n\"America/Anguilla\": \"Amerika / Anguilla\"\n\"America/Antigua\": \"Amerika / Antigua\"\n\"America/Araguaina\": \"Amerika / Araguaina\"\n\"America/Argentina/Buenos_Aires\": \"Amerika / Argentina / Buenos_ Aires\"\n\"America/Argentina/Catamarca\": \"Amerika / Argentina / Catamarca\"\n\"America/Argentina/Cordoba\": \"Amerika / Argentina / Cordoba\"\n\"America/Argentina/Jujuy\": \"Amerika / Argentina / Jujuy\"\n\"America/Argentina/La_Rioja\": \"Amerika / Argentina / La_Rioja\"\n\"America/Argentina/Mendoza\": \"Amerika / Argentina / Mendoza\"\n\"America/Argentina/Rio_Gallegos\": \"Amerika / Argentina / Rio_Gallegos\"\n\"America/Argentina/Salta\": \"Amerika / Argentina / Salta\"\n\"America/Argentina/San_Juan\": \"Amerika / Argentina / San_Juan\"\n\"America/Argentina/San_Luis\": \"Amerika / Argentina / San_Luis\"\n\"America/Argentina/Tucuman\": \"Amerika / Argentina / Tucuman\"\n\"America/Argentina/Ushuaia\": \"Amerika / Argentina / Ushuaia\"\n\"America/Aruba\": \"Amerika / Aruba\"\n\"America/Asuncion\": \"Amerika / Asuncion\"\n\"America/Atikokan\": \"Amerika / Atikokan\"\n\"America/Bahia\": \"Amerika / Bahia\"\n\"America/Bahia_Banderas\": \"Amerika / Bahia_Banderas\"\n\"America/Barbados\": \"Amerika / Barbados\"\n\"America/Belem\": \"Amerika / Belem\"\n\"America/Belize\": \"Amerika / Belize\"\n\"America/Blanc-Sablon\": \"Amerika / Blanc-Sablon\"\n\"America/Boa_Vista\": \"Amerika / Boa_ Vista\"\n\"America/Bogota\": \"Amerika / Bogota\"\n\"America/Boise\": \"Amerika / Boise\"\n\"America/Cambridge_Bay\": \"Amerika / Cambridge_Bay\"\n\"America/Campo_Grande\": \"Amerika / Campo_Grande\"\n\"America/Cancun\": \"Amerika / Cancun\"\n\"America/Caracas\": \"Amerika / Caracas\"\n\"America/Cayenne\": \"Amerika / Cayenne\"\n\"America/Cayman\": \"Amerika / Cayman\"\n\"America/Chicago\": \"Amerika / Chicago\"\n\"America/Chihuahua\": \"Amerika / Chihuahua\"\n\"America/Costa_Rica\": \"Amerika / Costa_Rica\"\n\"America/Creston\": \"Amerika / Creston\"\n\"America/Cuiaba\": \"Amerika / Cuiaba\"\n\"America/Curacao\": \"Amerika / Curacao\"\n\"America/Danmarkshavn\": \"Amerika / Danmarkshavn\"\n\"America/Dawson\": \"Amerika / Dawson\"\n\"America/Dawson_Creek\": \"Amerika / Dawson_Creek\"\n\"America/Denver\": \"Amerika / Denver\"\n\"America/Detroit\": \"Amerika / Detroit\"\n\"America/Dominica\": \"Amerika / Dominica\"\n\"America/Edmonton\": \"Amerika / Edmonton\"\n\"America/Eirunepe\": \"Amerika / Eirunepe\"\n\"America/El_Salvador\": \"Amerika / El_Salvador\"\n\"America/Fort_Nelson\": \"Amerika / Fort_Nelson\"\n\"America/Fortaleza\": \"Amerika / Fortaleza\"\n\"America/Glace_Bay\": \"Amerika / Glace_Bay\"\n\"America/Godthab\": \"Amerika / Godthåb\"\n\"America/Goose_Bay\": \"Amerika / Goose_Bay\"\n\"America/Grand_Turk\": \"Amerika / Grand_Turk\"\n\"America/Grenada\": \"Amerika / Grenada\"\n\"America/Guadeloupe\": \"Amerika / Guadeloupe\"\n\"America/Guatemala\": \"Amerika / Guatemala\"\n\"America/Guayaquil\": \"Amerika / Guayaquil\"\n\"America/Guyana\": \"Amerika / Guyana\"\n\"America/Halifax\": \"Amerika / Halifax\"\n\"America/Havana\": \"Amerika / Havanna\"\n\"America/Hermosillo\": \"Amerika / Hermosillo\"\n\"America/Indiana/Indianapolis\": \"Amerika / Indiana / Indianapolis\"\n\"America/Indiana/Knox\": \"Amerika / Indiana / Knox\"\n\"America/Indiana/Marengo\": \"Amerika / Indiana / Marengo\"\n\"America/Indiana/Petersburg\": \"Amerika / Indiana / Petersburg\"\n\"America/Indiana/Tell_City\": \"Amerika / Indiana / Tell_City\"\n\"America/Indiana/Vevay\": \"Amerika / Indiana / Vevay\"\n\"America/Indiana/Vincennes\": \"Amerika / Indiana / Vincennes\"\n\"America/Indiana/Winamac\": \"Amerika / Indiana / Winamac\"\n\"America/Inuvik\": \"Amerika / Inuvik\"\n\"America/Iqaluit\": \"Amerika / Iqaluit\"\n\"America/Jamaica\": \"Amerika / Jamaica\"\n\"America/Juneau\": \"Amerika / Juneau\"\n\"America/Kentucky/Louisville\": \"Amerika / Kentucky / Louisville\"\n\"America/Kentucky/Monticello\": \"Amerika / Kentucky / Monticello\"\n\"America/Kralendijk\": \"Amerika / Kralendijk\"\n\"America/La_Paz\": \"Amerika / La_Paz\"\n\"America/Lima\": \"Amerika / Lima\"\n\"America/Los_Angeles\": \"Amerika / Los_Angeles\"\n\"America/Lower_Princes\": \"Amerika / Lower_Princes\"\n\"America/Maceio\": \"Amerika / Maceio\"\n\"America/Managua\": \"Amerika / Managua\"\n\"America/Manaus\": \"Amerika / Manaus\"\n\"America/Marigot\": \"Amerika / Marigot\"\n\"America/Martinique\": \"Amerika / Martinique\"\n\"America/Matamoros\": \"Amerika / Matamoros\"\n\"America/Mazatlan\": \"Amerika / Mazatlan\"\n\"America/Menominee\": \"Amerika / Menominee\"\n\"America/Merida\": \"Amerika / Merida\"\n\"America/Metlakatla\": \"Amerika / Metlakatla\"\n\"America/Mexico_City\": \"Amerika / Mexico_City\"\n\"America/Miquelon\": \"Amerika / Miquelon\"\n\"America/Moncton\": \"Amerika / Moncton\"\n\"America/Monterrey\": \"Amerika / Monterrey\"\n\"America/Montevideo\": \"Amerika / Montevideo\"\n\"America/Montserrat\": \"Amerika / Montserrat\"\n\"America/Nassau\": \"Amerika / Nassau\"\n\"America/New_York\": \"Amerika / New_York\"\n\"America/Nipigon\": \"Amerika / Nipigon\"\n\"America/Nome\": \"Amerika / Nome\"\n\"America/Noronha\": \"Amerika / Noronha\"\n\"America/North_Dakota/Beulah\": \"Amerika / North_ / Beulah\"\n\"America/North_Dakota\": \"Amerika / North_\"\n\"America/Ojinaga\": \"Amerika / Ojinaga\"\n\"America/Panama\": \"Amerika / Panama\"\n\"America/Pangnirtung\": \"Amerika / Pangnirtung\"\n\"America/Paramaribo\": \"Amerika / Paramaribo\"\n\"America/Phoenix\": \"Amerika / Phoenix\"\n\"America/Port-au-Prince\": \"Amerika / Port-au-Prince\"\n\"America/Port_of_Spain\": \"Amerika / Port_of_Spain\"\n\"America/Porto_Velho\": \"Amerika / Porto_Velho\"\n\"America/Puerto_Rico\": \"Amerika / Puerto_Rico\"\n\"America/Punta_Arenas\": \"Amerika / Punta_Arenas\"\n\"America/Rainy_River\": \"Amerika / Rainy_ River\"\n\"America/Rankin_Inlet\": \"Amerika / Rankin_Inlet\"\n\"America/Recife\": \"Amerika / Recife\"\n\"America/Regina\": \"Amerika / Regina\"\n\"America/Resolute\": \"Amerika / Resolute\"\n\"America/Rio_Branco\": \"Amerika / Rio_Branco\"\n\"America/Santarem\": \"Amerika / Santarem\"\n\"America/Santiago\": \"Amerika / Santiago\"\n\"America/Santo_Domingo\": \"Amerika / Santo_Domingo\"\n\"America/Sao_Paulo\": \"Amerika / Sao_Paulo\"\n\"America/Scoresbysund\": \"Amerika / Scoresbysund\"\n\"America/Sitka\": \"Amerika / Sitka\"\n\"America/St_Barthelemy\": \"Amerika / St_Barthelemy\"\n\"America/St_Johns\": \"Amerika / St_Johns\"\n\"America/St_Kitts\": \"Amerika / St_Kitts\"\n\"America/St_Lucia\": \"Amerika / St_Lucia\"\n\"America/St_Thomas\": \"Amerika / St_Thomas\"\n\"America/St_Vincent\": \"Amerika / St_Vincent\"\n\"America/Swift_Current\": \"Amerika / Swift_Current\"\n\"America/Tegucigalpa\": \"Amerika / Tegucigalpa\"\n\"America/Thule\": \"Amerika / Thule\"\n\"America/Thunder_Bay\": \"Amerika / Thunder_Bay\"\n\"America/Tijuana\": \"Amerika / Tijuana\"\n\"America/Toronto\": \"Amerika / Toronto\"\n\"America/Tortola\": \"Amerika / Tortola\"\n\"America/Vancouver\": \"Amerika / Vancouver\"\n\"America/Whitehorse\": \"Amerika / Whitehorse\"\n\"America/Winnipeg\": \"Amerika / Winnipeg\"\n\"America/Yakutat\": \"Amerika / Yakutat\"\n\"America/Yellowknife\": \"Amerika / Yellowknife\"\n\"Antarctica/Casey\": \"Antarktis / Casey\"\n\"Antarctica/Davis\": \"Antarktis / Davis\"\n\"Antarctica/DumontDUrville\": \"Antarktis / DumontDUrville\"\n\"Antarctica/Macquarie\": \"Antarktis / Macquarie\"\n\"Antarctica/McMurdo\": \"Antarktis / McMurdo\"\n\"Antarctica/Mawson\": \"Antarktis / Mawson\"\n\"Antarctica/Palmer\": \"Antarktis / Palmer\"\n\"Antarctica/Rothera\": \"Antarktis / Rothera\"\n\"Antarctica/Syowa\": \"Antarktis / Syowa\"\n\"Antarctica/Troll\": \"Antarktis / Troll\"\n\"Antarctica/Vostok\": \"Antarktis / Vostok\"\n\"Arctic/Longyearbyen\": \"Arctic / Longyearbyen\"\n\"Asia/Aden\": \"Asien / Aden\"\n\"Asia/Almaty\": \"Asien / Almaty\"\n\"Asia/Amman\": \"Asien / Amman\"\n\"Asia/Anadyr\": \"Asien / Anadyr\"\n\"Asia/Aqtau\": \"Asien / Aqtau\"\n\"Asia/Aqtobe\": \"Asien / Aqtobe\"\n\"Asia/Ashgabat\": \"Asien / Ashgabat\"\n\"Asia/Atyrau\": \"Asien / Atyrau\"\n\"Asia/Baghdad\": \"Asien / Bagdad\"\n\"Asia/Bahrain\": \"Asien / Bahrain\"\n\"Asia/Baku\": \"Asien / Baku\"\n\"Asia/Bangkok\": \"Asien / Bangkok\"\n\"Asia/Barnaul\": \"Asien / Barnaul\"\n\"Asia/Beirut\": \"Asien / Beirut\"\n\"Asia/Bishkek\": \"Asien / Bishkek\"\n\"Asia/Brunei\": \"Asien / Brunei\"\n\"Asia/Chita\": \"Asien / Chita\"\n\"Asia/Choibalsan\": \"Asien / Choibalsan\"\n\"Asia/Colombo\": \"Asien / Colombo\"\n\"Asia/Damascus\": \"Asien / Damaskus\"\n\"Asia/Dhaka\": \"Asien / Dhaka\"\n\"Asia/Dili\": \"Asien / Dili\"\n\"Asia/Dubai\": \"Asien / Dubai\"\n\"Asia/Dushanbe\": \"Asien / Dushanbe\"\n\"Asia/Famagusta\": \"Asien / Famagusta\"\n\"Asia/Gaza\": \"Asien / Gaza\"\n\"Asia/Hebron\": \"Asien / Hebron\"\n\"Asia/Ho_Chi_Minh\": \"Asien / Ho_Chi_Minh\"\n\"Asia/Hong_Kong\": \"Asien / Hong_Kong\"\n\"Asia/Hovd\": \"Asien / Hovd\"\n\"Asia/Irkutsk\": \"Asien / Irkutsk\"\n\"Asia/Jakarta\": \"Asien / Jakarta\"\n\"Asia/Jayapura\": \"Asien / Jayapura\"\n\"Asia/Jerusalem\": \"Asien / Jerusalem\"\n\"Asia/Kabul\": \"Asien / Kabul\"\n\"Asia/Kamchatka\": \"Asien / Kamchatka\"\n\"Asia/Karachi\": \"Asien / Karachi\"\n\"Asia/Kathmandu\": \"Asien / Kathmandu\"\n\"Asia/Khandyga\": \"Asien / Khandyga\"\n\"Asia/Kolkata\": \"Asien / Kolkata\"\n\"Asia/Krasnoyarsk\": \"Asien / Krasnoyarsk\"\n\"Asia/Kuala_Lumpur\": \"Asien / Kuala_Lumpur\"\n\"Asia/Kuching\": \"Asien / Kuching\"\n\"Asia/Kuwait\": \"Asien / Kuwait\"\n\"Asia/Macau\": \"Asien / Macau\"\n\"Asia/Magadan\": \"Asien / Magadan\"\n\"Asia/Makassar\": \"Asien / Makassar\"\n\"Asia/Manila\": \"Asien / Manila\"\n\"Asia/Muscat\": \"Asien / Muscat\"\n\"Asia/Nicosia\": \"Asien / Nicosia\"\n\"Asia/Novokuznetsk\": \"Asien / Novokuznetsk\"\n\"Asia/Novosibirsk\": \"Asien / Novosibirsk\"\n\"Asia/Omsk\": \"Asien / Omsk\"\n\"Asia/Oral\": \"Asien / Oral\"\n\"Asia/Phnom_Penh\": \"Asien / Phnom_Penh\"\n\"Asia/Pontianak\": \"Asien / Pontianak\"\n\"Asia/Pyongyang\": \"Asien / Pyongyang\"\n\"Asia/Qatar\": \"Asien / Qatar\"\n\"Asia/Qostanay\": \"Asien / Qostanay\"\n\"Asia/Qyzylorda\": \"Asien / Qyzylorda\"\n\"Asia/Riyadh\": \"Asien / Riyadh\"\n\"Asia/Sakhalin\": \"Asien / Sakhalin\"\n\"Asia/Samarkand\": \"Asien / Samarkand\"\n\"Asia/Seoul\": \"Asien / Seoul\"\n\"Asia/Shanghai\": \"Asien / Shanghai\"\n\"Asia/Singapore\": \"Asien / Singapore\"\n\"Asia/Srednekolymsk\": \"Asien / Srednekolymsk\"\n\"Asia/Taipei\": \"Asien / Taipei\"\n\"Asia/Tashkent\": \"Asien / Tashkent\"\n\"Asia/Tbilisi\": \"Asien / Tbilisi\"\n\"Asia/Tehran\": \"Asien / Tehran\"\n\"Asia/Thimphu\": \"Asien / Thimphu\"\n\"Asia/Tokyo\": \"Asien / Tokyo\"\n\"Asia/Tomsk\": \"Asien / Tomsk\"\n\"Asia/Ulaanbaatar\": \"Asien / Ulaanbaatar\"\n\"Asia/Urumqi\": \"Asien / Urumqi\"\n\"Asia/Ust-Nera\": \"Asien / Ust-Nera\"\n\"Asia/Vientiane\": \"Asien / Vientiane\"\n\"Asia/Vladivostok\": \"Asien / Vladivostok\"\n\"Asia/Yakutsk\": \"Asien / Yakutsk\"\n\"Asia/Yangon\": \"Asien / Yangon\"\n\"Asia/Yekaterinburg\": \"Asien / Jekaterinburg\"\n\"Asia/Yerevan\": \"Asien / Yerevan\"\n\"Atlantic/Azores\": \"Atlantic / Azores\"\n\"Atlantic/Bermuda\": \"Atlantic / Bermuda\"\n\"Atlantic/Canary\": \"Atlantic / Canary\"\n\"Atlantic/Cape_Verde\": \"Atlantic / Cape_Verde\"\n\"Atlantic/Faroe\": \"Atlantic / Faroe\"\n\"Atlantic/Madeira\": \"Atlantic / Madeira\"\n\"Atlantic/Reykjavik\": \"Atlantic / Reykjavik\"\n\"Atlantic/South_Georgia\": \"Atlantic / South_\"\n\"Atlantic/St_Helena\": \"Atlantic / St_Helena\"\n\"Atlantic/Stanley\": \"Atlantic / Stanley\"\n\"Australia/Adelaide\": \"Australien / Adelaide\"\n\"Australia/Brisbane\": \"Australien / Brisbane\"\n\"Australia/Broken_Hill\": \"Australien / Broken_Hill\"\n\"Australia/Currie\": \"Australien / Currie\"\n\"Australia/Darwin\": \"Australien / Darwin\"\n\"Australia/Eucla\": \"Australien / Eucla\"\n\"Australia/Hobart\": \"Australien / Hobart\"\n\"Australia/Lindeman\": \"Australien / Lindeman\"\n\"Australia/Lord_Howe\": \"Australien / Lord_Howe\"\n\"Australia/Melbourne\": \"Australien / Melbourne\"\n\"Australia/Perth\": \"Australien / Perth\"\n\"Australia/Sydney\": \"Australien / Sydney\"\n\"Europe/Amsterdam\": \"Europa / Amsterdam\"\n\"Europe/Andorra\": \"Europa / Andorra\"\n\"Europe/Astrakhan\": \"Europa / Astrakhan\"\n\"Europe/Athens\": \"Europa / Athen\"\n\"Europe/Belgrade\": \"Europa / Belgrade\"\n\"Europe/Berlin\": \"Europe / Berlin\"\n\"Europe/Bratislava\": \"Europa / Bratislava\"\n\"Europe/Brussels\": \"Europa / Bruxelles\"\n\"Europe/Bucharest\": \"Europa / Bukarest\"\n\"Europe/Budapest\": \"Europa / Budapest\"\n\"Europe/Busingen\": \"Europa / Busingen\"\n\"Europe/Chisinau\": \"Europa / Chisinau\"\n\"Europe/Copenhagen\": \"Europa / København\"\n\"Europe/Dublin\": \"Europa / Dublin\"\n\"Europe/Gibraltar\": \"Europa / Gibraltar\"\n\"Europe/Guernsey\": \"Europa / Guernsey\"\n\"Europe/Helsinki\": \"Europa / Helsinki\"\n\"Europe/Isle_of_Man\": \"Europa / Isle_of_Man\"\n\"Europe/Istanbul\": \"Europa / Istanbul\"\n\"Europe/Jersey\": \"Europa / Jersey\"\n\"Europe/Kaliningrad\": \"Europa / Kaliningrad\"\n\"Europe/Kiev\": \"Europa / Kiev\"\n\"Europe/Kirov\": \"Europa / Kirov\"\n\"Europe/Lisbon\": \"Europa / Lissabon\"\n\"Europe/Ljubljana\": \"Europa / Ljubljana\"\n\"Europe/London\": \"Europa / London\"\n\"Europe/Luxembourg\": \"Europa / Luxembourg\"\n\"Europe/Madrid\": \"Europa / Madrid\"\n\"Europe/Malta\": \"Europa / Malta\"\n\"Europe/Mariehamn\": \"Europa / Mariehamn\"\n\"Europe/Minsk\": \"Europa / Minsk\"\n\"Europe/Monaco\": \"Europa / Monaco\"\n\"Europe/Moscow\": \"Europa / Moskva\"\n\"Europe/Oslo\": \"Europa / Oslo\"\n\"Europe/Paris\": \"Europa / Paris\"\n\"Europe/Podgorica\": \"Europa / Podgorica\"\n\"Europe/Prague\": \"Europa / Prag\"\n\"Europe/Riga\": \"Europa / Riga\"\n\"Europe/Rome\": \"Europa / Rom\"\n\"Europe/Samara\": \"Europa / Samara\"\n\"Europe/San_Marino\": \"Europa / San_Marino\"\n\"Europe/Sarajevo\": \"Europa / Sarajevo\"\n\"Europe/Saratov\": \"Europa / Saratov\"\n\"Europe/Simferopol\": \"Europa / Simferopol\"\n\"Europe/Skopje\": \"Europa / Skopje\"\n\"Europe/Sofia\": \"Europa / Sofia\"\n\"Europe/Stockholm\": \"Europa / Stockholm\"\n\"Europe/Tallinn\": \"Europa / Tallinn\"\n\"Europe/Tirane\": \"Europa / Tirane\"\n\"Europe/Ulyanovsk\": \"Europa / Ulyanovsk\"\n\"Europe/Uzhgorod\": \"Europa / Uzhgorod\"\n\"Europe/Vaduz\": \"Europa / Vaduz\"\n\"Europe/Vatican\": \"Europa / Vatikanet\"\n\"Europe/Vienna\": \"Europa / Wien\"\n\"Europe/Vilnius\": \"Europa / Vilnius\"\n\"Europe/Volgograd\": \"Europa / Volgograd\"\n\"Europe/Warsaw\": \"Europa / Warszawa\"\n\"Europe/Zagreb\": \"Europa / Zagreb\"\n\"Europe/Zaporozhye\": \"Europa / Zaporozhye\"\n\"Europe/Zurich\": \"Europa / Zurich\"\n\"Indian/Antananarivo\": \"Indian / Antananarivo\"\n\"Indian/Chagos\": \"Indian / Chagos\"\n\"Indian/Christmas\": \"Indian / jul\"\n\"Indian/Cocos\": \"Indian / Cocos\"\n\"Indian/Comoro\": \"Indian / Comorerne\"\n\"Indian/Kerguelen\": \"Indian / Kerguelen\"\n\"Indian/Mahe\": \"Indian / Mahe\"\n\"Indian/Maldives\": \"Indian / Maldiverne\"\n\"Indian/Mauritius\": \"Indian / Mauritius\"\n\"Indian/Mayotte\": \"Indian / Mayotte\"\n\"Indian/Reunion\": \"Indian / Reunion\"\n\"Pacific/Apia\": \"Pacific / Apia\"\n\"Pacific/Auckland\": \"Pacific / Auckland\"\n\"Pacific/Bougainville\": \"Pacific / Bougainville\"\n\"Pacific/Chatham\": \"Pacific / Chatham\"\n\"Pacific/Chuuk\": \"Pacific / Chuuk\"\n\"Pacific/Easter\": \"Pacific / påske\"\n\"Pacific/Efate\": \"Pacific / Efate\"\n\"Pacific/Enderbury\": \"Pacific / Enderbury\"\n\"Pacific/Fakaofo\": \"Pacific / Fakaofo\"\n\"Pacific/Fiji\": \"Pacific / Fiji\"\n\"Pacific/Funafuti\": \"Pacific / Funafuti\"\n\"Pacific/Galapagos\": \"Pacific / Galapagos\"\n\"Pacific/Gambier\": \"Stillehavet / Gambier\"\n\"Pacific/Guadalcanal\": \"Stillehavet / Guadalcanal\"\n\"Pacific/Guam\": \"Pacific / Guam\"\n\"Pacific/Honolulu\": \"Pacific / Honolulu\"\n\"Pacific/Kiritimati\": \"Stillehavet / Kiritimati\"\n\"Pacific/Kosrae\": \"Pacific / Kosrae\"\n\"Pacific/Kwajalein\": \"Pacific / Kwajalein\"\n\"Pacific/Majuro\": \"Pacific / Majuro\"\n\"Pacific/Marquesas\": \"Pacific / Marquesas\"\n\"Pacific/Midway\": \"Pacific / Midway\"\n\"Pacific/Nauru\": \"Stillehavet / Nauru\"\n\"Pacific/Niue\": \"Pacific / Niue\"\n\"Pacific/Norfolk\": \"Pacific / Norfolk\"\n\"Pacific/Noumea\": \"Pacific / Noumea\"\n\"Pacific/Pago_Pago\": \"Pacific / Pago_Pago\"\n\"Pacific/Palau\": \"Pacific / Palau\"\n\"Pacific/Pitcairn\": \"Pacific / Pitcairn\"\n\"Pacific/Pohnpei\": \"Pacific / Pohnpei\"\n\"Pacific/Port_Moresby\": \"Pacific / Port_Moresby\"\n\"Pacific/Rarotonga\": \"Pacific / Rarotonga\"\n\"Pacific/Saipan\": \"Pacific / Saipan\"\n\"Pacific/Tahiti\": \"Pacific / Tahiti\"\n\"Pacific/Tarawa\": \"Pacific / Tarawa\"\n\"Pacific/Tongatapu\": \"Stillehavet / Tongatapu\"\n\"Pacific/Wake\": \"Pacific / Wake\"\n\"Pacific/Wallis\": \"Pacific / Wallis\"\n\"UTC\": \"UTC\"\n\"Time Format\": \"Tidsformat\"\n\"Choose your default timezone\": \"Vælg din standard tidszone\"\n\"Signature\": \"Underskrift\"\n\"User signature will be append at the bottom of ticket reply box\": \"Brugersignatur vil blive tilføjet i bunden af ​​billetsvareboksen\"\n\"Password\": \"Adgangskode\"\n\"Password will remain same if you are not entering something in this field\": \"Adgangskode forbliver det samme, hvis du ikke indtaster noget i dette felt\"\n\"Confirm Password\": \"Bekræft kodeord\"\n\"Password must contain minimum 8 character length, at least two letters (not case sensitive), one number, one special character(space is not allowed).\": \"Adgangskoden skal indeholde mindst 8 tegn, mindst to bogstaver (ikke store og små bogstaver), et tal, et specialtegn (mellemrum er ikke tilladt).\"\n\"Save Changes\": \"Gem ændringer\"\n\"SAVE CHANGES\": \"GEM ÆNDRINGER\"\n\"CREATE TICKET\": \"Opret TICKET\"\n\"Customer full name\": \"Kundens fulde navn\"\n\"Customer email address\": \"Kundens e-mail-adresse\"\n\"Select Type\": \"Vælg type\"\n\"Support\": \"Support\"\n\"Choose ticket type\": \"Vælg billetype\"\n\"Ticket subject\": \"Billetemne\"\n\"Message\": \"Besked\"\n\"Query Message\": \"Forespørgsel\"\n\"Add Attachment\": \"Tilføj vedhæftet fil\"\n\"This field is mandatory\": \"Dette felt er obligatorisk\"\n\"General\": \"Generel\"\n\"Designation\": \"Betegnelse\"\n\"Contant Number\": \"Indholdsnummer\"\n\"User signature will be append in the bottom of ticket reply box\": \"Brugersignatur vil blive tilføjet i bunden af ​​billetsvareboksen\"\n\"Account Status\": \"Kontostatus\"\n\"Account is Active\": \"Konto er aktiv\"\n\"Assigning group(s) to user to view tickets regardless assignment.\": \"Tildeling af gruppe (r) til bruger for at se billetter uanset opgave.\"\n\"Default\": \"Standard\"\n\"Select All\": \"Vælg alle\"\n\"Remove All\": \"Fjern alt\"\n\"Assigning team(s) to user to view tickets regardless assignment.\": \"Tildeling af team (er) til bruger for at se billetter uanset opgave.\"\n\"No Team added !\": \"Intet hold tilføjet!\"\n\"Permission\": \"Tilladelse\"\n\"Role\": \"rolle\"\n\"Administrator\": \"Administrator\"\n\"Select agent role\": \"Vælg agentrolle\"\n\"Add Customer\": \"Tilføj kunde\"\n\"Action\": \"Handling\"\n\"Account Owner\": \"Kontoejer\"\n\"Active\": \"Aktiv\"\n\"Edit\": \"Redigere\"\n\"Delete\": \"Slet\"\n\"Disabled\": \"handicappet\"\n\"New Group\": \"Ny gruppe\"\n\"Default Privileges\": \"Standardrettigheder\"\n\"New Privileges\": \"Nye privilegier\"\n\"NEW PRIVILEGE\": \"NY PRIVILEGE\"\n\"New Privilege\": \"Nyt privilegium\"\n\"New Team\": \"Nyt team\"\n\"No Record Found\": \"Ingen poster fundet\"\n\"Order Synchronization\": \"Bestillingssynkronisering\"\n\"Easily integrate different ecommerce platforms with your helpdesk which can then be later used to swiftly integrate ecommerce order details with your support tickets.\": \"Integrer nemt forskellige e-handelsplatforme med din helpdesk, som derefter senere kan bruges til hurtigt at integrere e-handelsordredetaljer med dine supportbilletter.\"\n\"BigCommerce\": \"BigCommerce\"\n\"No channels have been added.\": \"Ingen kanaler er tilføjet.\"\n\"Add BigCommerce Store\": \"Tilføj BigCommerce Store\"\n\"ADD BIGCOMMERCE STORE\": \"TILFØJ BIGCOMMERCE STORE\"\n\"Mangento\": \"Mangento\"\n\"Add Magento Store\": \"Tilføj Magento-butik\"\n\"OpenCart\": \"OpenCart\"\n\"Add OpenCart Store\": \"Tilføj OpenCart Store\"\n\"ADD OPENCART STORE\": \"TILFØJ OPENCART STORE\"\n\"Shopify\": \"Shopify\"\n\"Add Shopify Store\": \"Tilføj Shopify-butik\"\n\"ADD SHOPIFY STORE\": \"TILFØJ SHOPIFY BUTIK\"\n\"Integrate a new BigCommerce store\": \"Integrer en ny BigCommerce-butik\"\n\"Your BigCommerce Store Name\": \"Dit BigCommerce Store-navn\"\n\"Your BigCommerce Store Hash\": \"Din BigCommerce Store Hash\"\n\"Your BigCommerce Api Token\": \"Din BigCommerce Api-token\"\n\"Your BigCommerce Api Client ID\": \"Din BigCommerce Api-klient-id\"\n\"Enable Channel\": \"Aktivér kanal\"\n\"Add Store\": \"Tilføj butik\"\n\"ADD STORE\": \"TILFØJ BUTIK\"\n\"Integrate a new Magento store\": \"Integrer en ny Magento-butik\"\n\"Your Magento Api Username\": \"Dit Magento Api brugernavn\"\n\"Your Magento Api Password\": \"Dit Magento Api-adgangskode\"\n\"Integrate a new OpenCart store\": \"Integrer en ny OpenCart-butik\"\n\"Your OpenCart Api Key\": \"Din OpenCart Api-nøgle\"\n\"Your Shopify Store Name\": \"Dit Shopify-butiksnavn\"\n\"Your Shopify Api Key\": \"Din Shopify Api-nøgle\"\n\"Your Shopify Api Password\": \"Dit Shopify Api-adgangskode\"\n\"Easily embed custom form to help generate helpdesk tickets.\": \"Integrer let tilpasset form til at hjælpe med at generere helpdesk-billetter.\"\n\"Form-Builder\": \"Form-Builder\"\n\"Add Formbuilder\": \"Tilføj Formbuilder\"\n\"ADD FORMBUILDER\": \"TILFØJ FORBRUGER\"\n\"No FormBuilder have been added.\": \"Ingen FormBuilder er tilføjet.\"\n\"Create a New Custom Form Below\": \"Opret en ny brugerdefineret form nedenfor\"\n\"Form Name\": \"Form Navn\"\n\"It will be shown in the list of created forms\": \"Det vises på listen over oprettede formularer\"\n\"MANDATORY FIELDS\": \"OBLIGATORISKE FELTER\"\n\"These fields will be visible in form and cant be edited\": \"Disse felter vil være synlige i form og kan ikke redigeres \"\n\"Reply\": \"Svar\"\n\"OPTIONAL FIELDS\": \"VALGFRIL\"\n\"Select These Fields to Add in your Form\": \"Vælg disse felter, der skal tilføjes i din form\"\n\"GDPR\": \"BNPR\"\n\"Order\": \"Bestille\"\n\"Categorybuilder\": \"Categorybuilder\"\n\"Add Form\": \"Tilføj formular\"\n\"ADD FORM\": \"TILFØJ FORM\"\n\"UPDATE FORM\": \"UPDATE FORM\"\n\"Update Form\": \"Opdateringsformular\"\n\"Embed\": \"Indlejre\"\n\"EMBED\": \"INDLEJRE\"\n\"EMBED FORMBUILDER\": \"EMBED FORMBUILDER\"\n\"Embed Formbuilder\": \"Embed Formbuilder\"\n\"Visit\": \"Besøg\"\n\"VISIT\": \"BESØG\"\n\"Code\": \"Kode\"\n\"Total Ticket(s)\": \"Total billet (er)\"\n\"Ticket Count\": \"Billetælling\"\n\"SwiftMailer Configurations\": \"SwiftMailer-konfigurationer\"\n\"No swiftmailer configurations found\": \"Ingen swiftmailer-konfigurationer fundet\"\n\"CREATE CONFIGURATION\": \"CREATE CONFIGURATION\"\n\"Add configuration\": \"Tilføj konfiguration\"\n\"Update configuration\": \"Opdater konfiguration\"\n\"Mailer ID\": \"Mailer ID\"\n\"Mailer ID - Leave blank to automatically create id\": \"Mailer ID - Lad være tom for automatisk at oprette id\"\n\"Transport Type\": \"Transporttype\"\n\"SMTP\": \"SMTP\"\n\"Enable Delivery\": \"Aktiver levering\"\n\"Server\": \"Server\"\n\"Port\": \"Havn\"\n\"Encryption Mode\": \"Krypteringstilstand\"\n\"ssl\": \"ssl\"\n\"tsl\": \"TSL\"\n\"None\": \"Ingen\"\n\"Authentication Mode\": \"Godkendelsestilstand\"\n\"login\": \"Log på\"\n\"API\": \"API\"\n\"Plain\": \"Almindeligt\"\n\"CRAM-MD5\": \"CRAM-MD5\"\n\"Sender Address\": \"Afsenderadresse\"\n\"Delivery Address\": \"Leveringsadresse\"\n\"Block Spam\": \"Bloker spam\"\n\"Black list\": \"Sort liste\"\n\"Comma (,) separated values (Eg. support@example.com, @example.com, 68.98.31.226)\": \"Komma (,) adskilte værdier (f.eks. Support@eksempel.com, @ eksempel.com, 68.98.31.226)\"\n\"White list\": \"Hvid liste\"\n\"Mailbox Settings\": \"Mailbox-indstillinger\"\n\"No mailbox configurations found\": \"Ingen postkassekonfigurationer fundet\"\n\"NEW MAILBOX\": \"NY MAILBOX\"\n\"New Mailbox\": \"NY MAILBOX\"\n\"Update Mailbox\": \"Opdater postkassen\"\n\"Add Mailbox\": \"Tilføj postkasse\"\n\"Mailbox ID - Leave blank to automatically create id\": \"Postkasse-id - lad det være tomt for automatisk at oprette id\"\n\"Mailbox Name\": \"Postkassenavn\"\n\"Enable Mailbox\": \"Aktivér postkasse\"\n\"Incoming Mail (IMAP) Server\": \"IMAP-server (indgående post)\"\n\"Configure your imap settings which will be used to fetch emails from your mailbox.\": \"Konfigurer dine imap-indstillinger, som vil blive brugt til at hente e-mails fra din postkasse.\"\n\"Transport\": \"Transportere\"\n\"IMAP\": \"IMAP\"\n\"Gmail\": \"Gmail\"\n\"Yahoo\": \"Yahoo\"\n\"Host\": \"Vært\"\n\"IMAP Host\": \"IMAP vært\"\n\"Email address\": \"Email adresse\"\n\"Associated Password\": \"Tilknyttet adgangskode\"\n\"Outgoing Mail (SMTP) Server\": \"Udgående mail (SMTP) server\"\n\"Select a valid Swift Mailer configuration which will be used to send emails through your mailbox.\": \"Vælg en gyldig Swift Mailer-konfiguration, der vil blive brugt til at sende e-mails gennem din postkasse.\"\n\"Swift Mailer ID\": \"Swift Mailer ID\"\n\"None Selected\": \"Ingen valgt\"\n\"Create Mailbox\": \"Opret postkasse\"\n\"CREATE MAILBOX\": \"CREATE MAILBOX\"\n\"New Template\": \"Ny skabelon\"\n\"NEW TEMPLATE\": \"NY TEMPLAT\"\n\"Customer Forgot Password\": \"Kunden har glemt password\"\n\"Customer Account Created\": \"Kundekonto oprettet\"\n\"Ticket generated success mail to customer\": \"Ticket genereret succes mail til kunden\"\n\"Customer Reply To The Agent\": \"Kundes svar til agenten\"\n\"Ticket Assign\": \"Billetildeling\"\n\"Agent Forgot Password\": \"Agent glemt adgangskode\"\n\"Agent Account Created\": \"Agentkonto oprettet\"\n\"Ticket generated by customer\": \"Billet genereret af kunden\"\n\"Agent Reply To The Customers ticket\": \"Agent svar til kundens billet\"\n\"Email template name\": \"Navn på e-mail-skabelon\"\n\"Email template subject\": \"E-mail-skabelonemne\"\n\"Template For\": \"Skabelon til\"\n\"Nothing Selected\": \"Intet valgt\"\n\"email template will be used for work related with selected option\": \"e-mail-skabelon bruges til arbejde relateret til den valgte indstilling\"\n\"Email template body\": \"Skabelon for e-mail\"\n\"Body\": \"Legeme\"\n\"placeholders\": \"pladsholdere\"\n\"Ticket Subject\": \"Ticket Subject\"\n\"Ticket Message\": \"Billetbesked\"\n\"Ticket Attachments\": \"Billetbilag\"\n\"Ticket Tags\": \"Billetmærker\"\n\"Ticket Source\": \"Billetkilde\"\n\"Ticket Status\": \"Billetstatus\"\n\"Ticket Priority\": \"Billetprioritet\"\n\"Ticket Group\": \"Billetgruppe\"\n\"Ticket Team\": \"Ticket Team\"\n\"Ticket Thread Message\": \"Billettrådbesked\"\n\"Ticket Customer Name\": \"Billetkundenavn\"\n\"Ticket Customer Email\": \"Billet-e-mail\"\n\"Ticket Agent Name\": \"Ticket Agent Name\"\n\"Ticket Agent Email\": \"Ticket Agent Email\"\n\"Ticket Agent Link\": \"Ticket Agent Link\"\n\"Ticket Customer Link\": \"Billetkundelink\"\n\"Last Collaborator Name\": \"Sidste samarbejdsnavn\"\n\"Last Collaborator Email\": \"Sidste samarbejds-e-mail\"\n\"Agent/ Customer Name\": \"Agent / kundenavn\"\n\"Account Validation Link\": \"Konto valideringslink\"\n\"Password Forgot Link\": \"Adgangskode glemt link\"\n\"Company Name\": \"Firmanavn\"\n\"Company Logo\": \"Virksomheds logo\"\n\"Company URL\": \"Virksomheds-URL\"\n\"Swiftmailer id (Select from drop down)\": \"Swiftmailer-id (vælg fra dropdown)\"\n\"SwiftMailer\" : \"SwiftMailer\"\n\"PROCEED\": \"FORTSÆT\"\n\"Proceed\": \"Fortsæt\"\n\"Theme Color\": \"Tema farve\"\n\"Customer Created\": \"Kundeskabt\"\n\"Agent Created\": \"Agent oprettet\"\n\"Ticket Created\": \"Ticket oprettet\"\n\"Agent Replied on Ticket\": \"Agent svaret på billet\"\n\"Customer Replied on Ticket\": \"Kunden svarede på billet\"\n\"Workflow Status\": \"Arbejdsgangsstatus\"\n\"Workflow is Active\": \"Arbejdsgang er aktiv\"\n\"Events\": \"Begivenheder\"\n\"An event automatically triggers to check conditions and perform a respective pre-defined set of actions\": \"En begivenhed udløser automatisk for at kontrollere forholdene og udføre et respektive foruddefineret sæt handlinger\"\n\"Select an Event\": \"Vælg en begivenhed\"\n\"Add More\": \"Tilføj mere\"\n\"Conditions\": \"Betingelser\"\n\"Conditions are set of rules which checks for specific scenarios and are triggered on specific occasions\": \"Betingelser er sæt af regler, der kontrollerer for specifikke scenarier og udløses ved specifikke lejligheder\"\n\"Subject or Description\": \"Emne eller beskrivelse\"\n\"Actions\": \"Handlinger\"\n\"An action not only reduces the workload but also makes it quite easier for ticket automation\": \"En handling reducerer ikke kun arbejdsbyrden, men gør det også meget lettere for billetautomatisering\"\n\"Select an Action\": \"Vælg en handling\"\n\"Add Note\": \"Tilføj note\"\n\"Mail to agent\": \"Mail til agent\"\n\"Mail to customer\": \"Mail til kunde\"\n\"Mail to group\": \"Mail til gruppe\"\n\"Mail to last collaborator\": \"Mail til sidste samarbejdspartner\"\n\"Mail to team\": \"Mail til team\"\n\"Mark Spam\": \"Mark spam\"\n\"Assign to agent\": \"Tildel til agent\"\n\"Assign to group\": \"Tildel til gruppe\"\n\"Set Priority As\": \"Indstil prioritet som\"\n\"Set Status As\": \"Indstil status som\"\n\"Set Tag As\": \"Indstil tag som\"\n\"Set Label As\": \"Indstil etiket som\"\n\"Assign to team\": \"Tildel til team\"\n\"Set Type As\": \"Indstil type som\"\n\"Add Workflow\": \"Tilføj arbejdsgang\"\n\"ADD WORKFLOW\": \"TILFØJ ARBEJDSFLØDE\"\n\"Ticket Type code\": \"Billetypekode\"\n\"Ticket Type description\": \"Billetype beskrivelse\"\n\"Type Status\": \"Type Status\"\n\"Type is Active\": \"Type er aktiv\"\n\"Add Save Reply\": \"Tilføj Gem svar\"\n\"Saved reply name\": \"Gemt svarnavn\"\n\"Share saved reply with user(s) in these group(s)\": \"Del gemt svar med bruger (e) i denne gruppe (r)\"\n\"Share saved reply with user(s) in these teams(s)\": \"Del gemt svar med bruger (e) i disse hold (r)\"\n\"Saved reply Body\": \"Gemt svar organ\"\n\"New Prepared Response\": \"Ny forberedt svar\"\n\"Prepared Response Status\": \"Forberedt svarstatus\"\n\"Prepared Response is Active\": \"Forberedt svar er aktivt\"\n\"Share prepared response with user(s) in these group(s)\": \"Del forberedt svar med bruger (e) i denne gruppe (r)\"\n\"Share prepared response with user(s) in these teams(s)\": \"Del forberedt svar med bruger (e) i disse teams (r)\"\n\"ADD PREPARED RESPONSE\": \"TILFØJ FORBEREDET RESPONSE\"\n\"Add Prepared Response\": \"Tilføj forberedt svar\"\n\"Folder Name is shown upfront at Knowledge Base\": \"Mappenavn vises på forhånd ved Knowledge Base\"\n\"A small text about the folder helps user to navigate more easily\": \"En lille tekst om mappen hjælper brugeren med at navigere lettere\"\n\"Publish\": \"Offentliggøre\"\n\"Choose appropriate status\": \"Vælg passende status\"\n\"Folder Image\": \"Mappebillede\"\n\"An image is worth a thousands words and makes folder more accessible\": \"Et billede er værd tusinder ord og gør mappen mere tilgængelig\"\n\"Add Category\": \"Tilføj kategori\"\n\"Category Name is shown upfront at Knowledge Base\": \"Kategorinavn vises på forhånd ved Knowledge Base\"\n\"A small text about the category helps user to navigate more easily\": \"En lille tekst om kategorien hjælper brugeren med at navigere lettere\"\n\"Using Category Order, you can decide which category should display first\": \"Ved hjælp af kategorirækkefølge kan du bestemme, hvilken kategori der skal vises først\"\n\"Sorting\": \"Sortering\"\n\"Ascending Order (A-Z)\": \"Stigende ordre (A-Z)\"\n\"Descending Order (Z-A)\": \"Faldende rækkefølge (Z-A)\"\n\"Based on Popularity\": \"Baseret på popularitet\"\n\"Article of this category will display according to selected option\": \"Artikel i denne kategori vises efter den valgte indstilling\"\n\"Article\": \"Genstand\"\n\"Title\": \"Titel\"\n\"View\": \"Udsigt\"\n\"Make as Starred\": \"Lav som stjerne\"\n\"Yes\": \"Ja\"\n\"No\": \"Ingen\"\n\"Stared\": \"stared\"\n\"Revisions\": \"revisioner\"\n\"Related Articles\": \"relaterede artikler\"\n\"Delete Article\":\t\"Slet artikel\"\n\"Content\": \"Indhold\"\n\"Slug\": \"Slug\"\n\"Slug is the url identity of this article.\": \"Slug er url-identiteten til denne artikel.\"\n\"Meta Title\": \"Metatitel\"\n\"# Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A pages title tag and meta description are usually shown whenever that page appears in search engine results\": \"Titelkoder og metabeskrivelser er bit af HTML-kode i overskriften på en webside. De hjælper søgemaskiner med at forstå indholdet på en side. En sides titeltag og metabeskrivelse vises normalt, når denne side vises i søgemaskinens resultater \"\n\"Meta Keywords\": \"Meta-nøgleord\"\n\"Meta Description\": \"Meta beskrivelse\"\n\"Description\": \"Beskrivelse\"\n\"Team Status\": \"Team Status\"\n\"Team is Active\": \"Team er aktivt\"\n\"Edit Privilege\": \"Rediger privilegium\"\n\"Can create ticket\": \"Kan oprette billet\"\n\"Can edit ticket\": \"Kan redigere billet\"\n\"Can delete ticket\": \"Kan slette billet\"\n\"Can restore trashed ticket\": \"Kan gendanne papirkurven\"\n\"Can assign ticket\": \"Kan tildele billet\"\n\"Can assign ticket group\": \"Kan tildele billetgruppe\"\n\"Can update ticket status\": \"Kan opdatere billetstatus\"\n\"Can update ticket priority\": \"Kan opdatere billetprioritet\"\n\"Can update ticket type\": \"Kan opdatere billetype\"\n\"Can add internal notes to ticket\": \"Kan tilføje interne noter til billetten\"\n\"Can edit thread/notes\": \"Kan redigere tråd / noter\"\n\"Can lock/unlock thread\": \"Kan låse / låse op tråd\"\n\"Can add collaborator to ticket\": \"Kan tilføje samarbejdspartner til billet\"\n\"Can delete collaborator from ticket\": \"Kan slette samarbejdspartner fra billet\"\n\"Can delete thread/notes\": \"Kan slette tråd / noter\"\n\"Can apply prepared response on ticket\": \"Kan anvende forberedt svar på billet\"\n\"Can add ticket tags\": \"Kan tilføje billetmærker\"\n\"Can delete ticket tags\": \"Kan slette billetmærker\"\n\"Can kick other ticket users\": \"Kan sparke andre billetbrugere\"\n\"Can manage email templates\": \"Kan administrere e-mail-skabeloner\"\n\"Can manage groups\": \"Kan administrere grupper\"\n\"Can manage Sub-Groups/ Teams\": \"Kan administrere undergrupper / hold\"\n\"Can manage agents\": \"Kan administrere agenter\"\n\"Can manage agent privileges\": \"Kan administrere agentrettigheder\"\n\"Can manage ticket types\": \"Kan administrere billettyper\"\n\"Can manage ticket custom fields\": \"Kan administrere brugerdefinerede billetfelter\"\n\"Can manage customers\": \"Kan administrere kunder\"\n\"Can manage Prepared Responses\": \"Kan administrere forberedte svar\"\n\"Can manage Automatic workflow\": \"Kan administrere automatisk arbejdsgang\"\n\"Can manage tags\": \"Kan administrere tags\"\n\"Can manage knowledgebase\": \"Kan administrere vidensbase\"\n\"Can manage Groups Saved Reply\": \"Kan administrere Gruppens gemte svar\"\n\"Add Privilege\": \"Tilføj privilegium\"\n\"Choose set of privileges which will be available to the agent.\": \"Vælg et sæt privilegier, der vil være tilgængelige for agenten.\"\n\"Advanced\": \"Fremskreden\"\n\"Privilege Name must have characters only\": \"Privilege-navn skal kun have tegn\"\n\"Maximum character length is 50\": \"Maksimal karakterlængde er 50\"\n\"Open Tickets\": \"Åbne billetter\"\n\"New Customer\": \"Ny kunde\"\n\"New Agent\": \"Ny agent\"\n\"Total Article(s)\": \"Samlede artikel (er)\"\n\"Please specify a valid email address\": \"Angiv venligst en gyldig e-mail-adresse\"\n\"Please enter the password associated with your email address\": \"Indtast det adgangskode, der er knyttet til din e-mail-adresse\"\n\"Please enter your server host address\": \"Indtast venligst din serverværtsadresse\"\n\"Please specify a port number to connect with your mail server\": \"Angiv venligst et portnummer for at oprette forbindelse til din mailserver\"\n\"Success ! Branding details saved successfully.\": \"Succes! Brandingdetaljer er gemt med succes. \"\n\"Success ! Time details saved successfully.\": \"Succes! Tidsoplysninger er gemt med succes. \"\n\"Spam setting saved successfully.\": \"Spamindstilling er gemt med succes.\"\n\"Please specify a valid name for your mailbox.\": \"Angiv venligst et gyldigt navn til din postkasse.\"\n\"Please select a valid swift-mailer configuration.\": \"Vælg en gyldig hurtig-mailer-konfiguration.\"\n\"Please specify a valid host address.\": \"Angiv venligst en gyldig værtadresse.\"\n\"Please specify a valid email address.\": \"Angiv venligst en gyldig e-mail-adresse.\"\n\"Please enter the associated account password.\": \"Indtast den tilknyttede kontoadgangskode.\"\n\"New Saved Reply\": \"Nyt gemt svar\"\n\"New Category\": \"Ny kategori\"\n\"Folder\": \"Folder\"\n\"Category\": \"Kategori\"\n\"Created\": \"Oprettet\"\n\"All Articles\": \"Alle artikler\"\n\"Viewed\": \"Har set\"\n\"New Article\": \"Ny artikel\"\n\"Thank you for your feedback!\": \"Tak for din feedback!\"\n\"Was this article helpful?\": \"Var denne artikel til hjælp?\"\n\"Helpdesk\": \"Helpdesk\"\n\"Support Center\": \"Support Center\"\n\"Mailboxes\": \"postkasser\"\n\"By\": \"Ved\"\n\"Search Tickets\": \"Søg billetter\"\n\"Customer Information\": \"Kunde information\"\n\"Total Replies\": \"Total svar\"\n\"Filter With\": \"Filtrer med\"\n\"Type email to add\": \"Skriv e-mail for at tilføje\"\n\"Collaborators\": \"Samarbejdspartnere\"\n\"Labels\": \"Etiketter\"\n\"Group\": \"Gruppe\"\n\"group\": \"gruppe\"\n\"Contact Team\": \"Kontakt Team\"\n\"Stay on ticket\": \"Bliv på billet\"\n\"Redirect to list\": \"Omdirigering til liste\"\n\"Nothing interesting here...\": \"Intet interessant her\"\n\"Previous Ticket\": \"Forrige billet\"\n\"Next Ticket\": \"Næste billet\"\n\"Forward\": \"Frem\"\n\"Note\": \"Bemærk\"\n\"Write a reply\": \"Skriv et svar\"\n\"Created Ticket\": \"Oprettet billet\"\n\"All Threads\": \"Alle tråde\"\n\"Forwards\": \"Fremad\"\n\"Notes\": \"Notes\"\n\"Pinned\": \"Pinned\"\n\"Edit Ticket\": \"Rediger billet\"\n\"Print Ticket\": \"Udskriv billet\"\n\"Mark as Spam\": \"Marker som spam\"\n\"Mark as Closed\": \"Markér som lukket\"\n\"Delete Ticket\": \"Slet billet\"\n\"View order details from different eCommerce channels\": \"Se ordredetaljer fra forskellige e-handelskanaler\"\n\"ECOMMERCE CHANNELS\": \"ECOMMERCE CHANNELS\"\n\"Select channel\": \"Vælg kanal\"\n\"Order Id\": \"Ordre ID\"\n\"Fetch Order\": \"Hent ordre\"\n\"No orders have been integrated to this ticket yet.\": \"Der er endnu ikke integreret nogen ordrer til denne billet.\"\n\"Enter your credentials below to gain access to your helpdesk account.\": \"Indtast dine legitimationsoplysninger nedenfor for at få adgang til din helpdesk-konto.\"\n\"Keep me logged in\": \"Lad mig forblive logget ind\"\n\"Forgot Password?\": \"Glemt kodeord?\"\n\"Log in to your\": \"Log ind på din\"\n\"Sign In\": \"Log ind\"\n\"Edit Customer\": \"Rediger kunde\"\n\"Update\": \"Opdater\"\n\"Discard\": \"Kassér\"\n\"Cancel\": \"Afbestille\"\n\"Not Assigned\": \"Ikke tildelt\"\n\"Submit\": \"Indsend\"\n\"Submit And Open\": \"Indsend og åben\"\n\"Submit And Pending\": \"Indsend og venter\"\n\"Submit And Answered\": \"Indsend og besvaret\"\n\"Submit And Resolved\": \"Indsend og løst\"\n\"Submit And Closed\": \"Indsend og lukket\"\n\"Choose a Color\": \"Vælg en farve\"\n\"Create\": \"Skab\"\n\"Edit Label\": \"Rediger etiket\"\n\"Add Label\": \"Tilføj etiket\"\n\"To\": \"Til\"\n\"Ticket\": \"Billet\"\n\"Your browser does not support JavaScript or You disabled JavaScript, Please enable those !\": \"Din browser understøtter ikke JavaScript eller du deaktiverede JavaScript. Aktivér venligst disse!\"\n\"Confirm Action\": \"Bekræft handling\"\n\"Confirm\": \"Bekræfte\"\n\"No result found\": \"Intet resultat fundet\"\n\"ticket delivery status\": \"billetleveringsstatus\"\n\"Warning! Select valid image file.\": \"Advarsel! Vælg gyldig billedfil. \"\n\"Error\": \"Fejl\"\n\"Save\": \"Gemme\"\n\"SEO\": \"SEO\"\n\"Edit Saved Filter\": \"Rediger gemt filter\"\n\"Type atleast 2 letters\": \"Skriv mindst 2 bogstaver\"\n\"Remove Label\": \"Fjern etiket\"\n\"New Saved Filter\": \"Nyt gemt filter\"\n\"Is Default\": \"Er standard\"\n\"Remove Saved Filter\": \"Fjern gemt filter\"\n\"Ticket Info\": \"Billetinfo\"\n\"Last Replied Agent\": \"Sidste replikerede agent\"\n\"created Ticket\": \"oprettet billet\"\n\"Uploaded Files\": \"Uploadede filer\"\n\"Download (as .zip)\": \"Download (som .zip)\"\n\"made last reply\": \"lavet sidste svar\"\n\"N/A\": \"N / A\"\n\"Unassigned\": \"Utildelt\"\n\"Label\": \"Etiket\"\n\"Assigned to me\": \"Tildelt til mig\"\n\"Search Query\": \"Søgeforespørgsel\"\n\"Searching\": \"Søger\"\n\"Saved Filter\": \"Gemt filter\"\n\"No Label Created\": \"Ingen etiket oprettet\"\n\"Label with same name already exist.\": \"Etiket med samme navn findes allerede.\"\n\"Create New\": \"Lav ny\"\n\"Mail status\": \"Poststatus\"\n\"replied\": \"Svarede\"\n\"added note\": \"tilføjet note\"\n\"forwarded\": \"Videresendt\"\n\"TO\": \"TIL\"\n\"CC\": \"CC\"\n\"BCC\": \"BCC\"\n\"Locked\": \"Låst\"\n\"Edit Thread\": \"Rediger tråd\"\n\"Delete Thread\": \"Slet tråd\"\n\"Unpin Thread\": \"Fjern tråden\"\n\"Pin Thread\": \"Pin tråd\"\n\"Unlock Thread\": \"Lås tråd op\"\n\"Lock Thread\": \"Lås tråd\"\n\"Translate Thread\": \"Oversæt tråd\"\n\"Language\": \"Sprog\"\n\"English\": \"Engelsk\"\n\"French\": \"Fransk\"\n\"Italian\": \"Italiensk\"\n\"Arabic\": \"Arabisk\"\n\"German\": \"Tysk\"\n\"Spanish\": \"Spansk\"\n\"Turkish\": \"Tyrkisk\"\n\"Danish\": \"Dansk\"\n\"Chinese\": :\"KINESISK\"\n\"Polish\": \"POLERE\"\n\"Hebrew\": \"hebraisk\"\n\"Portuguese\": \"Portugisisk\"\n\"System\": \"System\"\n\"Open in Files\": \"Åbn i filer\"\n\"Email address is invalid\": \"Email adressen er ugyldig\"\n\"Tag with same name already exist\": \"Tag med samme navn findes allerede\"\n\"Text length should be less than 20 charactors\": \"Tekstlængde skal være mindre end 20 karakterer\"\n\"Label with same name already exist\": \"Etiket med samme navn findes allerede\"\n\"Agent Name\": \"Agentnavn\"\n\"Agent Email\": \"Agent-e-mail\"\n\"open\": \"åben\"\n\"Currently active agents on ticket\": \"Aktuelt aktive agenter på billet\"\n\"Edit Customer Information\": \"Rediger kundeoplysninger\"\n\"Restore\": \"Restore\"\n\"Delete Forever\": \"Slet for evigt\"\n\"Add Team\": \"Tilføj team\"\n\"delete\": \"Slet\"\n\"You didnt have any folder for current filter(s).\": \"Du havde ikke nogen mappe til aktuelle filter (er).\"\n\"Add Folder\": \"Tilføj mappe\"\n\"This field must have valid characters only\": \"Dette felt skal kun have gyldige tegn\"\n\"Can edit task\": \"Kan redigere opgave\"\n\"Can create task\": \"Kan oprette opgave\"\n\"Can delete task\": \"Kan slette opgave\"\n\"Can add member to task\": \"Kan tilføje medlem til opgaven\"\n\"Can remove member from task\": \"Kan fjerne medlem fra opgaven\"\n\"Agent Privileges\": \"Agent privilegier\"\n\"Agent Privilege represents overall permissions in System.\": \"Agent Privilege repræsenterer overordnede tilladelser i System.\"\n\"Ticket View\": \"Ticket View\"\n\"User can view tickets based on selected scope.\": \"Bruger kan se billetter baseret på det valgte omfang.\"\n\"If individual access then user can View assigned Ticket(s) only, If Team access then user can view all Ticket(s) in team(s) he belongs to and so on\": \"Hvis individuel adgang, kan brugeren kun se tildelte billet (er), hvis teamadgang, kan brugeren se alle billet (er) i team (er), han tilhører og så videre\"\n\"Global Access\": \"Global Access\"\n\"Group Access\": \"Gruppeadgang\"\n\"Team Access\": \"Team Access\"\n\"Individual Access\": \"Individuel adgang\"\n\"This field must have characters only\": \"Dette felt skal kun have tegn\"\n\"Maximum character length is 40\": \"Maksimal karakterlængde er 40\"\n\"This is not a valid email address\": \"Dette er ikke en gyldig e-mail-adresse\"\n\"Password must contains 8 Characters\": \"Adgangskode skal indeholde 8 tegn\"\n\"The passwords does not match\": \"Adgangskoderne stemmer ikke overens\"\n\"Enabled\": \"Aktiveret\"\n\"Create Configuration\": \"Opret konfiguration\"\n\"Swift Mailer Settings\": \"Swift Mailer-indstillinger\"\n\"Username\": \"Brugernavn\"\n\"Please select a swiftmailer id\": \"Vælg en hurtig-mail-id\"\n\"Please enter a valid e-mail id\": \"Indtast et gyldigt e-mail-id\"\n\"Please enter a mailer id\": \"Indtast en mailer-id\"\n\"Email Id\": \"E-mail-id\"\n\"Are you sure? You want to perform this action.\": \"Er du sikker? Du vil udføre denne handling. \"\n\"Reorder\": \"Genbestil\"\n\"New Workflow\": \"Ny arbejdsgang\"\n\"OR\": \"ELLER\"\n\"AND\": \"OG\"\n\"Please enter a valid name.\": \"Indtast et gyldigt navn.\"\n\"Please select a value.\": \"Vælg en værdi.\"\n\"Please add a value.\": \"Tilføj en værdi.\"\n\"This field is required\": \"Dette felt er påkrævet\"\n\"or\": \"eller\"\n\"and\": \"og\"\n\"Select a Condition\": \"Vælg en betingelse\"\n\"Loading...\": \"Indlæser...\"\n\"Select Option\": \"Vælg mulighed\"\n\"Inactive\": \"Inaktiv\"\n\"New Type\": \"Ny type\"\n\"Placeholders\": \"Pladsholdere\"\n\"Ticket Link\": \"Billetlink\"\n\"Id\": \"Id\"\n\"Preview\": \"Preview\"\n\"Sort Order\": \"Sorteringsrækkefølge\"\n\"This field must be a number\": \"Dette felt skal være et tal\"\n\"User\": \"Bruger\"\n\"Edit Group\": \"Rediger gruppe\"\n\"Group Status\": \"Gruppestatus\"\n\"Group is Active\": \"Gruppen er aktiv\"\n\"Add Group\": \"Tilføj gruppe\"\n\"Contact number is invalid\": \"Kontaktnummer er ugyldigt\"\n\"Edit Agent\": \"Rediger agent\"\n\"No Privilege added, Please add Privilege(s) first !\": \"Intet privilegium tilføjet, skal du tilføje privilegier (e) først!\"\n\"Edit Email Template\": \"Rediger e-mail-skabelon\"\n\"Edit Workflow\": \"Rediger arbejdsgang\"\n\"Save Workflow\": \"Gem arbejdsgang\"\n\"Edit Ticket Type\": \"Rediger billetype\"\n\"Add Ticket Type\": \"Tilføj billetype\"\n\"Date Released\": \"Udgivet dato\"\n\"Free\": \"Ledig\"\n\"Premium\": \"Præmie\"\n\"Installed\": \"Installeret\"\n\"Installed Applications\": \"Installerede applikationer\"\n\"Apps Dashboard\": \"Apps Dashboard\"\n\"Dashboard\": \"Dashboard\"\n\"Nothing Interesting here\": \"Intet interessant her\"\n\"No Categories Added\": \"Ingen kategorier tilføjet\"\n\"ticket\": \"billet\"\n\"Add Email Template\": \"Tilføj e-mail-skabelon\"\n\"This field contain 100 characters only\": \"Dette felt indeholder kun 100 tegn\"\n\"This field contain characters only\": \"Dette felt indeholder kun tegn\"\n\"Name length must not be greater than 200 !!\": \"Navnets længde må ikke være større end 200 !!\"\n\"Warning! Correct all field values first!\": \"Advarsel! Korrekt alle feltværdier først! \"\n\"Warning ! This is not a valid request\": \"Advarsel! Dette er ikke en gyldig anmodning \"\n\"Success ! Tag removed successfully.\": \"Succes! Mærket blev fjernet. \"\n\"Success ! Tags Saved successfully.\": \"Succes! Mærker er gemt med succes. \"\n\"Success ! Revision restored successfully.\": \"Succes! Revision gendannet med succes. \"\n\"Success ! Categories updated successfully.\": \"Succes! Kategorier opdateret med succes. \"\n\"Success ! Article Related removed successfully.\": \"Succes! Artikelrelateret fjernet med succes. \"\n\"Success ! Article Related is already added.\": \"Succes! Artikel relateret er allerede tilføjet. \"\n\"Success ! Cannot add self as relative article.\": \"Succes! Kan ikke tilføje mig selv som relativ artikel. \"\n\"Success ! Article Related updated successfully.\": \"Succes! Artikelrelateret opdateret med succes. \"\n\"Success ! Articles removed successfully.\": \"Succes! Artikler fjernet med succes. \"\n\"Success ! Article status updated successfully.\": \"Succes! Artikelstatus blev opdateret. \"\n\"Success ! Article star updated successfully.\": \"Succes! Artikelstjernen er opdateret. \"\n\"Success! Article updated successfully\": \"Succes! Artikel opdateret med succes \"\n\"Success ! Category sort  order updated successfully.\": \"Succes! Kategorisorteringsrækkefølge blev opdateret. \"\n\"Success ! Category status updated successfully.\": \"Succes! Kategoristatus blev opdateret. \"\n\"Success ! Folders updated successfully.\": \"Succes! Mapper opdateret med succes. \"\n\"Success ! Categories removed successfully.\": \"Succes! Kategorier fjernet med succes. \"\n\"Success ! Category updated successfully.\": \"Succes! Kategori opdateret med succes. \"\n\"Error ! Category is not exist.\": \"Fejl! Kategori findes ikke. \"\n\"Warning ! Customer Login disabled by admin.\": \"Advarsel! Kunde login deaktiveret af admin. \"\n\"This Email is not registered with us.\": \"Denne e-mail er ikke registreret hos os.\"\n\"Your password has been updated successfully.\": \"Din adgangskode er blevet opdateret.\"\n\"Password dont match.\": \"Adgangskode stemmer ikke overens.\"\n\"Error ! Profile image is not valid, please upload a valid format\": \"Fejl! Profilbillede er ikke gyldigt, skal du uploade et gyldigt format \"\n\"Success! Folder has been added successfully.\": \"Succes! Mappen er tilføjet med succes. \"\n\"Folder updated successfully.\": \"Mappen er opdateret.\"\n\"Success ! Folder status updated successfully.\": \"Succes! Mappestatus blev opdateret. \"\n\"Error ! Folder is not exist.\": \"Fejl! Mappen findes ikke. \"\n\"Success ! Folder updated successfully.\": \"Succes! Mappen er opdateret. \"\n\"Error ! Folder does not exist.\": \"Fejl! Mappen findes ikke. \"\n\"Success ! Folder deleted successfully.\": \"Succes! Mappen blev slettet. \"\n\"Warning ! Folder doesnt exists!\": \"Advarsel! Mappen findes ikke!\"\n\"Warning ! Cannot create ticket, given email is blocked by admin.\": \"Advarsel! Kan ikke oprette billet, da den givne e-mail er blokeret af admin. \"\n\"Success ! Ticket has been created successfully.\": \"Succes! Billetten er oprettet med succes. \"\n\"Warning ! Can not create ticket, invalid details.\": \"Advarsel! Kan ikke oprette billet, ugyldige detaljer. \"\n\"Warning ! Post size can not exceed 25MB\": \"Advarsel! Indlægsstørrelse kan ikke overstige 25 MB\"\n\"Create Ticket Request\": \"Opret billetanmodning\"\n\"Success ! Reply added successfully.\": \"Succes! Svar tilføjet med succes.\"\n\"Warning ! Reply field can not be blank.\": \"Advarsel! Svarfelt kan ikke være tomt.\"\n\"Success ! Rating has been successfully added.\": \"Succes! Bedømmelsen er tilføjet. \"\n\"Warning ! Invalid rating.\": \"Advarsel! Ugyldig bedømmelse. \"\n\"Error ! Can not add customer as a collaborator.\": \"Fejl! Kan ikke tilføje kunde som en samarbejdspartner. \"\n\"Success ! Collaborator added successfully.\": \"Succes! Medarbejder tilføjet med succes. \"\n\"Error ! Collaborator is already added.\": \"Fejl! Samarbejder er allerede tilføjet. \"\n\"Success ! Collaborator removed successfully.\": \"Succes! Medarbejder blev fjernet. \"\n\"Error ! Invalid Collaborator.\": \"Fejl! Ugyldig samarbejdspartner. \"\n\"An unexpected error occurred. Please try again later.\": \"Der opstod en uventet fejl. Prøv igen senere.\"\n\"Feedback saved successfully.\": \"Feedback er gemt.\"\n\"Feedback updated successfully.\": \"Feedback er opdateret.\"\n\"Invalid feedback provided.\": \"Ugyldig feedback givet.\"\n\"Article not found.\": \"Artikel ikke fundet.\"\n\"You need to login to your account before can perform this action.\": \"Du skal logge ind på din konto før du kan udføre denne handling.\"\n\"Warning! Please add valid Actions!\": \"Advarsel! Tilføj venligst gyldige handlinger! \"\n\"Warning! In Free Plan you can not change Events!\": \"Advarsel! I gratis plan kan du ikke ændre begivenheder! \"\n\"Success! Prepared Response has been updated successfully.\": \"Succes! Den forberedte respons er blevet opdateret. \"\n\"Success! Prepared Response has been added successfully.\": \"Succes! Forberedt svar er tilføjet med succes. \"\n\"Warning  This is not a valid request\": \"Advarsel Dette er ikke en gyldig anmodning\"\n\"Use Default Colors\": \"Brug standardfarver\"\n\"Masonry\": \"Murværk\"\n\"Popular Article\": \"Populær artikel\"\n\"Manage Ticket Custom Fields\": \"Administrer brugerdefinerede billetfelter\"\n\"You dont have premission to edit this Prepared response\": \"Du har ikke forudsætning for at redigere dette forberedte svar\"\n\"Save Prepared Response\": \"Gem forberedt svar\"\n\"Success ! Prepared response removed successfully.\": \"Succes! Det forberedte svar blev fjernet. \"\n\"Warning! You are not allowed to perform this action.\": \"Advarsel! Du har ikke tilladelse til at udføre denne handling. \"\n\"Success! Workflow has been updated successfully.\": \"Succes! Arbejdsgang er blevet opdateret. \"\n\"Success! Workflow has been added successfully.\": \"Succes! Arbejdsgang er tilføjet med succes. \"\n\"Success! Order has been updated successfully.\": \"Succes! Bestillingen er blevet opdateret. \"\n\"Success! Workflow has been removed successfully.\": \"Succes! Arbejdsgang er blevet fjernet. \"\n\"Mailbox successfully created.\": \"Postkasse er oprettet.\"\n\"Mailbox successfully updated.\": \"Postkasse er opdateret.\"\n\"Warning ! Bad request !\": \"Advarsel! Dårlig anmodning !\"\n\"Error! Given current password is incorrect.\": \"Fejl! Givet den aktuelle adgangskode er forkert. \"\n\"Success ! Profile update successfully.\": \"Succes! Profilopdatering med succes. \"\n\"Error ! User with same email is already exist.\": \"Fejl! Bruger med samme e-mail findes allerede. \"\n\"Success ! Agent updated successfully.\": \"Succes! Agent opdateret. \"\n\"Success ! Agent removed successfully.\": \"Succes! Agent blev fjernet. \"\n\"Warning ! You are allowed to remove account owners account.\": \"Advarsel! Du har tilladelse til at fjerne kontoejers konto.\"\n\"Error ! Invalid user id.\": \"Fejl! Ugyldigt bruger-id.\"\n\"Success ! Filter has been saved successfully.\": \"Succes! Filteret er gemt med succes.\"\n\"Success ! Filter has been updated successfully.\": \"Succes! Filteret er blevet opdateret.\"\n\"Success ! Filter has been removed successfully.\": \"Succes! Filter er blevet fjernet med succes.\"\n\"Please check your mail for password update.\": \"Kontroller venligst din mail for opdatering af adgangskode.\"\n\"This Email address is not registered with us.\": \"Denne e-mail-adresse er ikke registreret hos os.\"\n\"Success ! Customer saved successfully.\": \"Succes! Kunden er gemt med succes.\"\n\"Error ! User with same email already exist.\": \"Fejl! Bruger med samme e-mail findes allerede.\"\n\"Success ! Customer information updated successfully.\": \"Succes! Kundeinformation er opdateret med succes.\"\n\"Success ! Customer updated successfully.\": \"Succes! Kunden blev opdateret.\"\n\"Error ! Customer with same email already exist.\": \"Fejl! Kunde med samme e-mail findes allerede.\"\n\"unstarred Action Completed successfully\": \"ustjernet handling afsluttet med succes\"\n\"starred Action Completed successfully\": \"stjernemarkeret handling afsluttet med succes\"\n\"Success ! Customer removed successfully.\": \"Succes! Kunden blev fjernet med succes.\"\n\"Error ! Invalid customer id.\": \"Fejl! Ugyldigt kunde-id.\"\n\"Success! Template has been updated successfully.\": \"Succes! Skabelonen er blevet opdateret.\"\n\"Success! Template has been added successfully.\": \"Succes! Skabelon er tilføjet med succes.\"\n\"Success! Template has been deleted successfully.\": \"Succes! Skabelonen er blevet slettet.\"\n\"Warning! resource not found.\": \"Advarsel! Ressource ikke fundet.\"\n\"Warning! You can not remove predefined email template which is being used in workflow(s).\": \"Advarsel! Du kan ikke fjerne foruddefineret e-mail-skabelon, der bruges i arbejdsgang (er).\"\n\"Success ! Email settings are updated successfully.\": \"Succes! E-mail-indstillinger er opdateret med succes.\"\n\"Success ! Group information updated successfully.\": \"Succes! Gruppinformation er opdateret med succes.\"\n\"Success ! Group information saved successfully.\": \"Succes! Gruppens oplysninger er gemt med succes.\"\n\"Support Group removed successfully.\": \"Support Group blev fjernet med succes.\"\n\"Success ! Privilege information saved successfully.\": \"Succes! Oplysninger om privilegier er gemt med succes.\"\n\"Privilege updated successfully.\": \"Privilege blev opdateret.\"\n\"Support Privilege removed successfully.\": \"Support Privilege fjernet med succes.\"\n\"Success! Reply has been updated successfully.\": \"Succes! Svar er blevet opdateret.\"\n\"Success! Reply has been added successfully.\": \"Succes! Svar er tilføjet med succes.\"\n\"Success! Saved Reply has been deleted successfully\": \"Succes! Gemt svar er blevet slettet\"\n\"SwiftMailer configuration updated successfully.\": \"SwiftMailer-konfiguration blev opdateret med succes.\"\n\"Swiftmailer configuration removed successfully.\": \"Swiftmailer-konfiguration blev fjernet med succes.\"\n\"Success ! Team information saved successfully.\": \"Succes! Holdoplysninger er gemt med succes.\"\n\"Success ! Team information updated successfully.\": \"Succes! Holdoplysninger er opdateret med succes.\"\n\"Support Team removed successfully.\": \"Supportteamet blev fjernet med succes.\"\n\"Success! Reply has been added successfully\": \"Succes! Svar er tilføjet med succes\"\n\"Success ! Thread updated successfully.\": \"Succes! Tråden er opdateret med succes.\"\n\"Error ! Reply field can not be blank.\": \"Fejl! Svarfelt kan ikke være tomt.\"\n\"Success ! Thread removed successfully.\": \"Succes! Tråd fjernet med succes.\"\n\"Success ! Thread locked successfully\": \"Succes! Tråd låst med succes\"\n\"Success ! Thread unlocked successfully\": \"Succes! Tråd låst med succes\"\n\"Success ! Thread pinned successfully\": \"Succes! Tråd fastgjort med succes\"\n\"Error ! Invalid thread.\": \"Fejl! Ugyldig tråd.\"\n\"Could not create ticket, invalid details.\": \"Kunne ikke oprette billet, ugyldige detaljer.\"\n\"Success ! Tag updated successfully.\": \"Succes! Tag blev opdateret med succes.\"\n\"Error ! Customer can not be added as collaborator.\": \"Fejl! Kunden kan ikke tilføjes som samarbejdspartner.\"\n\"Success ! Tag unassigned successfully.\": \"Succes! Tag ikke tildelt med succes.\"\n\"Success ! Tag added successfully.\": \"Succes! Tag tilføjet med succes.\"\n\"Please enter tag name.\": \"Indtast tag-navn.\"\n\"Error ! Invalid tag.\": \"Fejl! Ugyldigt tag.\"\n\"Success ! Type removed successfully.\": \"Succes! Type fjernet med succes.\"\n\"Success ! Ticket to label removed successfully.\": \"Succes! Billet til etiketten blev fjernet med succes.\"\n\"Unable to retrieve support team details\": \"Kan ikke hente oplysninger om supportteam\"\n\"Ticket support group updated successfully\": \"Billet supportgruppe opdateret med succes\"\n\"Unable to retrieve status details\": \"Kan ikke hente statusoplysninger\"\n\"Insufficient details provided.\": \"Utilstrækkelige detaljer leveret.\"\n\"Error! Subject field is mandatory\": \"Fejl! Emnefelt er obligatorisk\"\n\"Error! Reply field is mandatory\": \"Fejl! Svarfelt er obligatorisk\"\n\"Success ! Ticket has been updated successfully.\": \"Succes! Billet er blevet opdateret.\"\n\"Success ! Label updated successfully.\": \"Succes! Etiketten blev opdateret med succes.\"\n\"Error ! Invalid label id.\": \"Fejl! Ugyldigt etiket-id.\"\n\"Success ! Label removed successfully.\": \"Succes! Etiketten blev fjernet.\"\n\"Success ! Label created successfully.\": \"Succes! Etiket oprettet med succes.\"\n\"Error ! Label name can not be blank.\": \"Fejl! Etiketnavnet kan ikke være tomt.\"\n\"Success ! Ticket moved to trash successfully.\": \"Succes! Billet flyttes til papirkurven med succes.\"\n\"Success! Ticket type saved successfully.\": \"Succes! Billetypen er gemt med succes.\"\n\"Success! Ticket type updated successfully.\": \"Succes! Billetypen blev opdateret med succes.\"\n\"Error! Ticket type with same name already exist\": \"Fejl! Billetype med samme navn findes allerede\"\n\"SAVE\": \"GEMME\"\n\"Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A pages title tag and meta description are usually shown whenever that page appears in search engine results\": \"Titelkoder og metabeskrivelser er bit af HTML-kode i overskriften på en webside. De hjælper søgemaskiner med at forstå indholdet på en side. En sides titeltag og metabeskrivelse vises normalt, når denne side vises i søgemaskinens resultater\"\n\n# Successfully Pop-up/Notification Messages:\n\"Ticket is already assigned to agent\" : \"Billetten er allerede tildelt agenten\"\n\"Success ! Agent assigned successfully.\" : \"Succes! Agent tildelt.\"\n\"Ticket status is already set\" : \"Billetstatus er allerede indstillet\"\n\"Success ! Tickets status updated successfully.\" : \"Succes! Billetstatus blev opdateret.\"\n\"Ticket priority is already set\" : \"Billetprioritet er allerede indstillet\"\n\"Success ! Tickets priority updated successfully.\" : \"Succes! Billetprioritet blev opdateret.\"\n\"Ticket group is updated successfully\" : \"Billetgruppen er opdateret\"\n\"Ticket is already assigned to group\" : \"Billet er allerede tildelt gruppen\"\n\"Success ! Tickets group updated successfully.\" : \"Succes! Billetgruppen blev opdateret.\"\n\"Ticket team is updated successfully\" : \"Billetteamet er opdateret\"\n\"Ticket is already assigned to team\" : \"Billet er allerede tildelt holdet\"\n\"Success ! Tickets team updated successfully.\" : \"Succes! Billetteamet blev opdateret.\"\n\"Ticket type is already set\" : \"Billettype er allerede indstillet\"\n\"Success ! Tickets type updated successfully.\" : \"Succes! Billettypen blev opdateret.\"\n\"Success ! Tickets label updated successfully.\" : \"Succes! Billetetiketten blev opdateret.\"\n\"Success ! Tickets added to label successfully.\" : \"Succes! Billetter blev tilføjet til etiketten.\"\n\"Success ! Tickets moved to trashed successfully.\" : \"Succes! Billetter blev flyttet til papirkurven.\"\n\"Success ! Tickets removed successfully.\" : \"Succes! Billetter blev fjernet.\"\n\"Success ! Tickets restored successfully.\" : \"Succes! Billetter blev gendannet.\"\n\"Unable to retrieve group details\" : \"Gruppeoplysningerne kunne ikke hentes\"\n\"Unable to retrieve team details\" : \"Teamdetaljerne kunne ikke hentes\"\n\"Tickets details have been updated successfully\": \"Billetoplysninger er blevet opdateret\"\n\"Label added to ticket successfully\" : \"Etiket blev føjet til billetten\"\t\t\t\t\n\"Label already added to ticket\" : \"Etiket er allerede føjet til billetten\"\n\n#customer page\n\"New Ticket Request\": \"Ny billetanmodning\"\n\"Ticket Requests\": \"Billetanmodninger\"\n\"Tickets have been updated successfully\": \"Billetter er blevet opdateret\"\n\"Please check your mail for password update\": \"Kontroller din mail for opdatering af adgangskode\"\n\"This email address is not registered with us\": \"Denne e-mail-adresse er ikke registreret hos os\"\n\"You have already update password using this link if you wish to change password again click on forget password link here from login page\": \"Du har allerede opdateret adgangskode ved hjælp af dette link, hvis du ønsker at ændre adgangskode igen. Klik på glemt password-linket her fra login-siden\"\n\"Your password has been successfully updated. Login using updated password\": \"Din adgangskode er blevet opdateret. Login ved hjælp af opdateret adgangskode\"\n\"Please try again, The passwords do not match\": \"Prøv igen. Adgangskoderne stemmer ikke overens\"\n\"Support Privilege removed successfully\": \"Support Privilege fjernet med succes\"\n\"Success! Saved Reply has been deleted successfully.\": \"Succes! Gemt svar er blevet slettet.\"\n\"SwiftMailer configuration created successfully.\": \"SwiftMailer-konfiguration oprettet med succes.\"\n\"No swiftmailer configurations found for mailer id:\": \"Der blev ikke fundet nogen swiftmailer-konfigurationer til mail-id\"\n\"Reply content cannot be left blank.\": \"Svarindhold kan ikke efterlades tomt.\"\n\"Reply added to the ticket and forwarded successfully.\": \"Svar tilføjet billetten og videresendt med succes.\"\n\"Success ! Thread pinned successfully.\": \"Succes! Tråd fastgjort med succes.\"\n\"Success ! unpinned removed successfully.\": \"Succes! unpinned fjernet med succes.\"\n\"Unable to retrieve priority details\": \"Kan ikke hente prioritetsdetaljer\"\n\"Ticket support team updated successfully\": \"Billet supportteam opdateret med succes\"\n\"Ticket assigned to support group \": \"Billet tildelt supportgruppe\"\n\"Mailbox configuration removed successfully.\": \"Mailbox-konfiguration blev fjernet.\"\n\"visit our website\": \"besøg vores hjemmeside\"\n\"Cookie Usage Policy\": \"Cookie-brugspolitik\"\n\"cookie\": \"Cookie\"\n\"cookies\": \"cookies\"\n\"HELP\": \"HJÆLP\"\n\"Home\": \"Hjem\"\n\"Cookie Policy\": \"Cookiepolitik\"\n\"Prev\": \"Forrige\"\n\"Ticket query message\": \"Billetforespørgselsmeddelelse\"\n\"Select type\": \"Vælg type\"\n\"Search KnowledgeBase\": \"Søg vidensbase\"\n\"You cant merge an account with itself.\": \"Du kan ikke flette en konto med sig selv.\"\n\"Edit Profile\": \"Rediger profil\"\n\"Customer Login\": \"Kundelogin\"\n\"Contact Us\": \"Kontakt os\"\n\"If you have ever contacted our support previously, your account would have already been created.\": \"Hvis du nogensinde har kontaktet vores support tidligere, ville din konto allerede være oprettet.\"\n\"support\": \"support\"\n\"HelpDesk\": \"HelpDesk\"\n\"Enter search keyword\": \"Indtast søgeord\"\n\"Browse via Folders\": \"Gennemse via mapper\"\n\"Looking for something that is queried generally? Choose a relevant folder from below to explore possible solutions\": \"Leder du efter noget, der generelt bliver forespurgt? Vælg en relevant mappe nedenunder for at udforske mulige løsninger\"\n\"Unable to find an answer?\": \"Kan du ikke finde et svar?\"\n\"Looking for anything specific article which resides in general queries? Just browse the various relevant folders and categories and then you will find the desired article.\": \"Leder du efter noget specifikt produkt, der findes i generelle spørgsmål? Gennemse blot de forskellige relevante mapper og kategorier, så finder du den ønskede artikel.\"\n\"Popular Articles \": \"Populære artikler\"\n\"Here are some of the most popular articles, which helped number of users to get their queries and questions resolved. \": \"Her er nogle af de mest populære artikler,som hjalp antal brugere med at få deres spørgsmål og spørgsmål løst.\"\n\"Browse via Categories\": \"Gennemse via kategorier\"\n\"Looking for something specific? Choose a relevant category from below to explore possible solutions\": \"Leder du efter noget specifikt? Vælg en relevant kategori nedenunder for at udforske mulige løsninger\"\n\"No Categories Found!\": \"Ingen kategorier fundet\"\n\"Powered by\": \"Drevet af\"\n\"Powered by %uvdesk%, an open-source project by %webkul%.\": \"\"\n\n#forgotpassword\n\"Forgot Password\": \"Glemt kodeord\"\n\"Enter your email address and we will send you an email with instructions to update your login credentials.\": \"Indtast din e-mail-adresse, så sender vi dig en e-mail med instruktioner til at opdatere dine loginoplysninger.\"\n\"Send Mail\": \"Send e-mail\"\n\"Status:\" : \"Status:\"\n\"Sign In to %websitename%\": \"Log ind på %websitename%\"\n\"Enter your name\": \"Indtast dit navn\"\n\"Enter your email\": \"Indtast din e-mail\"\n\"Learn more about %deliveryStatus%.\": \"Lær mere om %deliveryStatus%.\"\n\"To know more about how our privacy policy works, please %websiteLink%.\": \"Hvis du vil vide mere om, hvordan vores privatlivspolitik fungerer, bedes du venligst %websiteLink%.\"\n\"Some of our site pages utilize %cookies% and other tracking technologies. A %cookie% is a small text file that may be used, for example, to collect information about site activity. Some cookies and other technologies may serve to recall personal information previously indicated by a site user. You may block cookies, or delete existing cookies, by adjusting the appropriate setting on your browser. Please consult the %help% menu of your browser to learn how to do this. If you block or delete %cookies% you may find the usefulness of our site to be impaired.\": \"Nogle af vores sidesider bruger %cookies% og andre sporingsteknologier. En %cookie% er en lille tekstfil, der f.eks. Kan bruges til at indsamle oplysninger om webstedsaktivitet. Nogle cookies og andre teknologier kan tjene til at huske personlige oplysninger, der tidligere er angivet af en webstedsbruger. Du kan blokere cookies eller slette eksisterende cookies ved at justere den korrekte indstilling i din browser. Se menuen %help% i din browser for at lære, hvordan du gør det. Hvis du blokerer eller sletter %cookies%, kan du finde ud af, om nytten af ​​vores websted er forringet.\"\n\"This field contain maximum 40 charectures.\": \"Dette felt indeholder maksimalt 40 karakterer.\"\n\"This field contain maximum 50 charectures.\": \"Dette felt indeholder maksimalt 50 karakterer.\"\n\"Time\": \"Tid\"\n\"Links\": \"Din profil\"\n\"Broadcast Message\": \"Opret billet\"\n\"Wide Logo\": \"Opret agent\"\n\"Upload an Image (200px x 48px) in</br> PNG or JPG Format\": \"Opret kunde\"\n\"It will be shown as Logo on Knowledgebase and Helpdesk\": \"Log ud\"\n\"Website Status\": \"Apps\"\n\"Enable front end website and knowledgebase for customer(s)\": \"Integrer apps efter dine behov for at få tingene gjort hurtigere end nogensinde\"\n\"Brand Color\": \"Udforsk apps\"\n\"Page Background Color\": \"Form Builder\"\n\"Header Background Color\": \"Vidensdatabase\"\n\"Banner Background Color\": \"Knowledgebase er en kilde til stiv og kompleks information, der hjælper kunderne med at hjælpe sig selv\"\n\"Page Link Color\": \"Artikler\"\n\"Page Link Hover Color\": \"Kategorier\"\n\"Article Text Color\": \"mapper\"\n\"Tag Line\": \"MAPPER\"\n\"Hi! how can we help?\": \"Produktivitet\"\n\"Layout\": \"Automatiser dine processer ved at oprette sæt regler og forudindstillinger for at reagere hurtigere på billetterne\"\n\"Ticket Create Option\": \"Forberedte svar\"\n\"Login Required To Create Tickets\": \"Gemte svar\"\n\"Remove Customer Login/Signin Button\": \"Billetyper\"\n\"Disable Customer Login\": \"Arbejdsprocesser\"\n\"Meta Description (Recommended)\": \"Indstillinger\"\n\"Meta Keywords (Recommended)\": \"Administrer din brandidentitet, firmainformation og andre detaljer med et overblik\"\n\"Header Link\": \"Branding\"\n'URL (with http\":/\"/ or https\":/\"/)': \"Tilpassede felter\"\n\"Footer Link\": \"E-mail-indstillinger\"\n\"Custom CSS (Optional)\": \"E-mail-skabeloner\"\n\"It will be add to the frontend knowledgebase only\": \"Postkasse\"\n\"Custom Javascript (Optional)\": \"Indstillinger for spam\"\n\"Broadcast message content to show on helpdesk\": \"Swift Mailer\"\n\"From\": \"Tags\"\n\"Time duration between which message will be displayed(if applicable)\": \"Brugere\"\n\"Broadcasting Status\": \"Kontroller dine grupper, hold, agenter og kunder\"\n\"Broadcasting is Active\": \"Agenter\"\n\"Choose a default company timezone\": \"kunder\"\n\"Date Time Format\": \"grupper\"\n\"Choose a format to convert date to specified date time format\": \"privilegier\"\n\"An empty file is not allowed.\": \"Hold\"\n\"File size must not be greater than 200KB !!\": \"Applikationer\"\n\"Please upload valid Image file (Only JPEG, JPG, PNG allowed)!!\": \"ECommerce ordresynkronisering\"\n'comma \",\" separated': \"komma separeret\"\n\"Provide a valid url(with protocol)\": \"Importer detaljer om e-handelsordre til dine supportbilletter fra forskellige tilgængelige platforme\"\n\"Low\": \"Lav\"\n\"Medium\": \"Medium\"\n\"High\": \"Høj\"\n\"Urgent\": \"Presserende\"\n\"Reset Password\": \"Nulstille kodeord\"\n\"Enter your new password below to update your login credentials\": \"Indtast din nye adgangskode nedenfor for at opdatere dine loginoplysninger\"\n\"Save Password\": \"Gem adgangskode\"\n\"Rate Support\": \"Bedøm support\"\n\"I am very Sad\": \"Jeg er meget trist\"\n\"I am Sad\": \"Jeg er ked af det\"\n\"I am Neutral\": \"Jeg er neutral\"\n\"I am Happy\": \"Jeg er glad\"\n\"I am Very Happy\": \"Jeg er meget glad\"\n\"Kudos\": \"Kudos\"\n\"kudos\": \"Kudos\"\n\"Very Sad\": \"Meget trist\"\n\"Sad\": \"Trist\"\n\"Neutral\": \"Neutral\"\n\"Happy\": \"Lykkelig\"\n\"Very Happy\": \"Meget glad\"\n\"Star(s)\": \"Stjerner\"\n\"Warning ! Swiftmailer not working. An error has occurred while sending emails!\" : \"Advarsel! Swiftmailer virker ikke. Der opstod en fejl under afsendelse af e-mails!\"\n\"Invalid credentials.\": \"Ugyldige legitimationsoplysninger\"\n\"Success ! Project cache cleared successfully.\": \"Succes! Projektcachen blev ryddet.\"\n\"clear cache\": \"ryd cache\"\n\"Last Updated\": \"Sidst opdateret\"\n\"Error! Something went wrong.\": \"Fejl! Noget gik galt.\"\n\"We were not able to find the page you are looking for.\": \"Vi kunne ikke finde den side, du leder efter.\"\n\"Page not found\": \"Siden blev ikke fundet\"\n\"Forbidden\": \"Forbudt\"\n\"You don’t have the necessary permissions to access this Web page :(\": \"Du har ikke de nødvendige tilladelser til at få adgang til denne webside :(\"\n\"Internal server error\": \"Intern serverfejl\"\n\"Our system has goofed up for a while, but good part is it won't last long\": \"Vores system er gået i stå i et stykke tid, men det gode er, at det ikke varer længe\"\n\"Unknown Error\": \"Ukendt fejl\"\n\"We are quite confused about how did you land here:/\": \"Vi er ret forvirrede over, hvordan du landede her :/\"\n\"Few of the links which may help you to get back on the track -\": \"Nogle af de links, der kan hjælpe dig med at komme tilbage på sporet -\"\n\n#Microsoft apps:\n\"Microsoft Apps\": \"Microsoft Apps\"\n\"Add a Microsoft app\": \"Tilføj en Microsoft-app\"\n\"Enable\": \"Aktiveret\"\n\"App Name\": \"App navn\"\n\"Tenant Id\": \"Lejer id\"\n\"Client Id\": \"Kunde-id\"\n\"Client Secret\": \"Klientens hemmelighed\"\n\"NEW APP\": \"NY APP\"\n\"UPDATE APP\": \"OPDATERING APP\"\n\"Guide on creating a new app in Azure Active Directory:\": \"Vejledning til oprettelse af en ny app i Azure Active Directory:\"\n\"To add a new Microsoft App to your azure active directory, follow the steps as given below:\": \"For at tilføje en ny Microsoft-app til dit azure aktive bibliotek skal du følge trinene som angivet nedenfor:\"\n\"Go to Azure Active Directory -> App registerations\": \"Gå til Azure Active Directory -> Appregistreringer\"\n\"Disable\": \"Deaktiver\"\n\"Please enter a valid name for your app.\": \"Indtast venligst et gyldigt navn til din app.\"\n\"Please enter a valid tenant id.\": \"Indtast venligst et gyldigt lejer-id.\"\n\"Please enter a valid client id.\": \"Indtast venligst et gyldigt klient-id.\"\n\"Please enter a valid client secret.\": \"Indtast venligst en gyldig klienthemmelighed.\"\n\"Microsoft app settings\": \"Microsoft app-indstillinger\"\n\"Unverified\": \"Ubekræftet\"\n\"Microsoft app has been updated successfully.\": \"Microsoft-appen er blevet opdateret.\"\n\"No microsoft apps found\": \"Ingen microsoft-apps fundet\"\n\"Microsoft app settings could not be verifired successfully. Please check your settings and try again later.\": \"Microsoft app-indstillinger kunne ikke bekræftes. Tjek venligst dine indstillinger og prøv igen senere.\"\n\"Microsoft app has been integrated successfully.\": \"Microsoft-appen er blevet slettet.\"\n\"Microsoft app has been deleted successfully.\": \"Microsoft-appen er blevet integreret med succes.\"\n\"Verified\": \"Verificeret\"\n\n\"Create a New Registration\": \"Opret en ny registrering\"\n\"Enter your app details as following:\": \"Indtast dine appoplysninger som følger:\"\n\"App Name: Enter an app name to easily help you identify its purpose\": \"Appnavn: Indtast et appnavn for nemt at hjælpe dig med at identificere dens formål\"\n\"Supported Account Types: Select whichever option works the best for you (Recommended: Accounts in any organizational directory and personal Microsoft accounts)\": \"Understøttede kontotyper: Vælg den mulighed, der fungerer bedst for dig (anbefalet: Konti i enhver organisationskatalog og personlige Microsoft-konti)\"\n\"Redirect URI:\": \"Omdirigerings-URI:\"\n\"Select Platform: Web\": \"Vælg Platform: Web\"\n\"Enter the following redirect uri:\": \"Indtast følgende omdirigerings-uri:\"\n\"Proceed to create your application\": \"Fortsæt med at oprette din ansøgning\"\n\"Once your app has been created, in your app overview section, continue with adding a client credential by clicking on \\\"Add a certificate or secret\\\"\": \"Når din app er oprettet, skal du i din appoversigtssektion fortsætte med at tilføje en klientlegitimationsoplysninger ved at klikke på Tilføj et certifikat eller en hemmelighed\"\n\"Create a new client secret\": \"Opret en ny klienthemmelighed\"\n\"Enter a description as per your preference to help identify the purpose of this client secret\": \"Indtast en beskrivelse efter dine præferencer for at hjælpe med at identificere formålet med denne klienthemmelighed\"\n\"Choose an expiration time as per your preference\": \"Vælg en udløbstid efter dine præferencer\"\n\"Proceed to add your client secret\": \"Fortsæt med at tilføje din klienthemmelighed\"\n\"Copy the client secret value which will be needed later and cannot be viewed again\": \"Kopier klientens hemmelige værdi, som vil være nødvendig senere og ikke kan ses igen\"\n\"Navigate to API permissions\": \"Naviger til API-tilladelser\"\n\"Click on \\\"Add a permission\\\" to add a new api permission. Add the following delegated permissions by selecting Microsoft APIs > Microsoft Graph > Delegate Permissions\": \"Klik på Tilføj en tilladelse for at tilføje en ny api-tilladelse Tilføj følgende delegerede tilladelser ved at vælge Microsoft API'er > Microsoft Graph > Delegeret tilladelser\"\n\"Navigate to your app overview section\": \"Naviger til din appoversigtssektion\"\n\"Copy the Application (Client) Id\": \"Kopiér applikationens (klient)-id\"\n\"Copy the Directory (Tenant) Id\": \"Kopiér kataloget (lejer)-id\"\n\"Enter your client id, tenant id, and client secret in settings above as required.\": \"Indtast dit klient-id, lejer-id og klienthemmelighed i indstillingerne ovenfor efter behov.\"\n\"offline_access\": \"offline_adgang\"\n\"openid\": \"åbenid\"\n\"profile\": \"profil\"\n\"User.Read\": \"Bruger.Læs\"\n\"IMAP.AccessAsUser.All\": \"IMAP.AccessAsUser.All\"\n\"SMTP.Send\": \"SMTP.Send\"\n\"POP.AccessAsUser.All\": \"POP.AccessAsUser.All\"\n\"Mail.Read\": \"Mail.Læs\"\n\"Mail.ReadBasic\": \"Mail.ReadBasic\"\n\"Mail.Send\": \"Mail.Send\"\n\"Mail.Send.Shared\": \"Mail.Send.Delt\"\n\"Add App\": \"Tilføj app\"\n\"New App\": \"Ny App\"\n\n#Mailbox option:\n\"Disable email delivery\": \"Deaktiver levering af e-mail\"\n\"Use as default mailbox for sending emails\": \"Brug som standardpostkasse til at sende e-mails\"\n\"Inbound Emails\": \"Indgående e-mails\"\n\"Manage how you wish to retrieve and process emails from your mailbox.\": \"Administrer, hvordan du ønsker at hente og behandle e-mails fra din postkasse.\"\n\"Outbound Emails\": \"Udgående e-mails\"\n\"Manage how you wish to send emails from your mailbox.\": \"Administrer, hvordan du ønsker at sende e-mails fra din postkasse.\"\n\n\"Marketing Modules\" : \"Marketing moduler\"\n\"New Marketing Module\": \"Nyt markedsføringsmodul\"\n\"Marketing Module\": \"Marketing modul\""
  },
  {
    "path": "translations/messages.de.yml",
    "content": "\"Signed in as\": \"Angemeldet als\"\n\"Your Profile\": \"Dein Profil\"\n\"Create Ticket\": \"Ticket erstellen\"\n\"Create Agent\": \"Agent erstellen\"\n\"Create Customer\": \"Kunden erstellen\"\n\"Sign Out\": \"Abmelden\"\n\"Default Language (Optional)\": \"Standardsprache (optional)\"\n\"Username/Email\": \"Benutzername/E-Mail\"\n\"create new\": \"Erstelle neu\"\n\"Howdy!\": \"Hallo!\"\n\"Ticket Information\": \"Ticketinformation\"\n\"CC/BCC\": \"CC/BCC\"\n\"Success! Label created successfully.\": \"Erfolg! Label erfolgreich erstellt.\"\n\"Success! Label removed successfully.\": \"Erfolg! Label erfolgreich entfernt.\"\n\"Reports\": \"Berichte\"\n\"Rating\": \"Bewertung\"\n\"Kudos Rating\": \"Kudos-Bewertung\"\n\"Choose your default timeformat\": \"Wählen Sie Ihr Standardzeitformat\"\n\"Remove profile picture\": \"Profilbild entfernen\"\n\"Success ! Profile updated successfully.\": \"Erfolg ! Profil erfolgreich aktualisiert.\"\n\"Howdy\": \"Hallo\"\n\"Form successfully updated.\": \"Formular erfolgreich aktualisiert.\"\n\"NEW FORM\": \"NEUE FORM\"\n\"Text Box\": \"Textfeld\"\n\"Text Area\": \"Textbereich\"\n\"Select\": \"Auswählen\"\n\"Radio\": \"Radio\"\n\"Checkbox\": \"Kontrollkästchen\"\n\"Date\": \"Datum\"\n\"Both Date and Time\": \"Datum und Uhrzeit\"\n\"Choose a status\": \"Wähle einen Status\"\n\"Choose a group\": \"Wähle eine Gruppe\"\n\"Can manage Group's Saved Reply\": \"Kann die gespeicherte Antwort der Gruppe verwalten\"\n\"Can manage agent activity\": \"Kann Agentenaktivitäten verwalten\"\n\"Slug is the url identity of this article. We will help you to create valid slug at time of typing.\": \"Slug ist die URL-Identität dieses Artikels. Wir helfen Ihnen beim Erstellen eines gültigen Slugs zum Zeitpunkt der Eingabe.\"\n\"The URL for this article\": \"Die URL für diesen Artikel\"\n\"Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A page's title tag and meta description are usually shown whenever that page appears in search engine results\": \"Titel-Tags und Meta-Beschreibungen sind Teile des HTML-Codes im Header einer Webseite. Sie helfen Suchmaschinen, den Inhalt einer Seite zu verstehen. Der Titel-Tag und die Meta-Beschreibung einer Seite werden normalerweise angezeigt, wenn diese Seite in den Suchmaschinenergebnissen erscheint\"\n\"comma separated (,)\": \"Komma getrennt (,)\"\n\"Article Title\": \"Artikelüberschrift\"\n\"Start typing few charactors and add set of relevant article from the list\": \"Beginnen Sie mit der Eingabe weniger Zeichen und fügen Sie einen Satz relevanter Artikel aus der Liste hinzu\"\n\"Success! Announcement data saved successfully.\": \"Erfolg! Ansagedaten erfolgreich gespeichert.\"\n\"Success! Category has been added successfully.\": \"Erfolg! Kategorie wurde erfolgreich hinzugefügt.\"\n\"Success ! Agent added successfully.\": \"Erfolg ! Agent erfolgreich hinzugefügt.\"\n\"Success! Privilege information saved successfully.\": \"Erfolg! Berechtigungsinformationen erfolgreich gespeichert.\"\n\"Edit Prepared Response\": \"Vorbereitete Antwort bearbeiten\"\n\"Success! Type removed successfully.\": \"Erfolg! Typ erfolgreich entfernt.\"\n\"No results available\": \"Keine Ergebnisse verfügbar\"\n\"Success ! Prepared Response applied successfully.\": \"Erfolg ! Vorbereitete Antwort erfolgreich angewendet.\"\n\"Note added to ticket successfully.\": \"Notiz erfolgreich zum Ticket hinzugefügt.\"\n\"Ticket status update to Spam\": \"Ticket-Status-Update zu Spam\"\n\"Ticket status update to Closed\": \"Aktualisierung des Ticketstatus auf „Geschlossen“.\"\n\"Success! Label updated successfully.\": \"Erfolg! Label erfolgreich aktualisiert.\"\n\"Success ! Helpdesk details saved successfully\": \"Erfolg ! Helpdesk-Details erfolgreich gespeichert\"\n\"Can manage marketing announcement\": \"Kann Marketingmitteilungen verwalten\"\n\"User Forgot Password\": \"Benutzer Passwort vergessen\"\n\"Agent Deleted\": \"Agent gelöscht\"\n\"Agent Update\": \"Agenten-Update\"\n\"Customer Update\": \"Kunden-Update\"\n\"Customer Deleted\": \"Kunde gelöscht\"\n\"Agent Updated\": \"Agent aktualisiert\"\n\"Agent Reply\": \"Agentenantwort\"\n\"Collaborator Added\": \"Mitarbeiter hinzugefügt\"\n\"Collaborator Reply\": \"Mitarbeiterantwort\"\n\"Customer Reply\": \"Kundenantwort\"\n\"Ticket Deleted\": \"Ticket gelöscht\"\n\"Group Updated\": \"Gruppe aktualisiert\"\n\"Note Added\": \"Hinweis hinzugefügt\"\n\"Priority Updated\": \"Priorität aktualisiert\"\n\"Status Updated\": \"Status aktualisiert\"\n\"Team Updated\": \"Team aktualisiert\"\n\"Thread Updated\": \"Thema aktualisiert\"\n\"Type Updated\": \"Typ aktualisiert\"\n\"From Email\": \"Aus der Email\"\n\"To Email\": \"Eine E-Mail schicken\"\n\"Is Equal To\": \"Ist gleich\"\n\"Is Not Equal To\": \"Ist ungleich zu\"\n\"Contains\": \"Enthält\"\n\"Does Not Contain\": \"Beinhaltet nicht\"\n\"Starts With\": \"Beginnt mit\"\n\"Ends With\": \"Endet mit\"\n\"Before On\": \"Vor Ein\"\n\"After On\": \"Nach Ein\"\n\"Mail To User\": \"Mail an Benutzer\"\n\"Permanently delete from Inbox\": \"Endgültig aus Posteingang löschen\"\n\"Transfer Tickets\": \"Transfertickets\"\n\"Agent Activity\": \"Agentenaktivität\"\n\"Report From\": \"Bericht von\"\n\"Search Agent\": \"Suchagent\"\n\"Agent Last Reply\": \"Agent Letzte Antwort\"\n\"View analytics and insights to serve a better experience for your customers\": \"Zeigen Sie Analysen und Erkenntnisse an, um Ihren Kunden ein besseres Erlebnis zu bieten\"\n\"Marketing Announcement\": \"Marketing-Ankündigung\"\n\"Advertisement\": \"Werbung\"\n\"Announcement\": \"Bekanntmachung\"\n\"New Announcement\": \"Neue Ankündigung\"\n\"Add Announcement\": \"Ankündigung hinzufügen\"\n\"Edit Announcement\": \"Ankündigung bearbeiten\"\n\"Promo Text\": \"Promo-Text\"\n\"Promo Tag\": \"Promo-Tag\"\n\"Choose a promo tag\": \"Wählen Sie ein Promo-Tag\"\n\"Tag-Color\": \"Tag-Farbe\"\n\"Tag background color\": \"Tag Hintergrundfarbe\"\n\"Link Text\": \"Link Text\"\n\"Link URL\": \"URL verknüpfen\"\n\"Apps\": \"Apps\"\n\"Integrate apps as per your needs to get things done faster than ever\": \"Installieren Sie neue benutzerdefinierte Apps, um Ihre Produktivität zu steigern – <a href='https://store.webkul.com/UVdesk/UVdesk-Open-Source.html' style='font-weight: bold' target='_blank'>Jetzt erkunden</a>\"\n\"Explore Apps\": \"Apps erkunden\"\n\"Form Builder\": \"Form Builder\"\n\"Knowledgebase\": \"Wissensbasis\"\n\"Knowledgebase is a source of rigid and complex information which helps Customers to help themselves\": \"Wissensbasis ist eine Quelle komplexer Informationen, die den Kunden hilft, sich selbständig zu helfen.\"\n\"Articles\": \"Artikel\"\n\"Categories\": \"Kategorien\"\n\"Folders\": \"Ordner\"\n\"FOLDERS\": \"ORDNER\"\n\"Productivity\": \"Produktivität\"\n\"Automate your processes by creating set of rules and presets to respond faster to the tickets\": \"Automatisieren Sie Ihre Prozesse, indem Sie eine Reihe von Regeln und Vorgaben erstellen, um schneller auf die Tickets zu reagieren.\"\n\"Prepared Responses\": \"Vorbereitete Antworten\"\n\"Saved Replies\": \"Gespeicherte Antworten\"\n\"Edit Saved Reply\": \"Gespeicherte Antwort bearbeiten\"\n\"Ticket Types\": \"Ticket-Typen\"\n\"Workflows\": \"Workflows\"\n\"Settings\": \"Einstellungen\"\n\"Manage your Brand Identity, Company Information and other details at a glance\": \"Verwalten der Markenidentität, Unternehmensinformationen und anderer Details auf einen Blick\"\n\"Branding\": \"Markenbildung\"\n\"Custom Fields\": \"Benutzerdefinierte Felder\"\n\"Email Settings\": \"E-Mail-Einstellungen\"\n\"Email Templates\": \"E-Mail-Vorlagen\"\n\"Mailbox\": \"Mailbox\"\n\"Spam Settings\": \"Spam-Einstellungen\"\n\"Swift Mailer\": \"Swift Mailer\"\n\"Tags\": \"Stichwörter\"\n\"Users\": \"Benutzer\"\n\"Control your Groups, Teams, Agents and Customers\": \"Verwalten der Gruppen, Teams, Agenten und Kunden\"\n\"Agents\": \"Agenten\"\n\"Customers\": \"Kunden\"\n\"Groups\": \"Gruppen\"\n\"Privileges\": \"Berechtigungen\"\n\"Teams\": \"Teams\"\n\"Applications\": \"Anwendungen\"\n\"ECommerce Order Syncronization\": \"ECommerce Folder Synchronization\"\n\"Import ecommerce order details to your support tickets from different available platforms\": \"Importieren Sie E-Commerce-Bestelldetails von verschiedenen verfügbaren Plattformen in Ihre Support-Tickets.\"\n\"Search\": \"Suche\"\n\"Sort By\": \"Sortieren nach\"\n\"Sort By:\": \"Sortieren nach:\"\n\"Status\": \"Status\"\n\"Created At\": \"Hergestellt in\"\n\"Name\": \"Name\"\n\"All\": \"Alle\"\n\"Published\": \"Veröffentlicht\"\n\"Draft\": \"Entwurf\"\n\"New Folder\": \"Neuer Ordner\"\n\"Create Knowledgebase Folder\": \"Wissensbasis-Ordner erstellen\"\n\"You did not add any folder to your Knowledgebase yet, Create your first Folder and start adding Categories/Articles to make your customers help themselves.\": \"Sie haben noch keinen Ordner zu Ihrer Wissensbasis hinzugefügt. Erstellen Sie Ihren ersten Ordner und fügen Sie Kategorien / Artikel hinzu, damit Ihre Kunden sich selbst helfen können.\"\n\"Clear Filters\": \"Filter zurücksetzen\"\n\"Back\": \"Zurück\"\n\"Open\": \"Offen (open)\"\n\"Pending\": \"Ausstehend (pending)\"\n\"Answered\": \"Beantwortet (answered)\"\n\"Resolved\": \"Erledigt (resolved)\"\n\"Closed\": \"Geschlossen (closed)\"\n\"Spam\": \"Spam\"\n\"New\": \"Neu\"\n\"UnAssigned\": \"Nicht zugewiesen\"\n\"UnAnswered\": \"Unbeantwortet\"\n\"My Tickets\": \"Meine Tickets\"\n\"Starred\": \"Markiert\"\n\"Trashed\": \"im Papierkorb\"\n\"New Label\": \"Neues Label\"\n\"Tickets\": \"Tickets\"\n\"Ticket Id\": \"Ticket-ID\"\n\"Last Replied\": \"Letzte Antwort\"\n\"Assign To\": \"Zuweisen\"\n\"After Reply\": \"Nach der Antwort\"\n\"Customer Email\": \"E-Mail\"\n\"Customer Name\": \"Kunde\"\n\"Assets Visibility\": \"Sichtbarkeit von Assets\"\n\"Channel/Source\": \"Kanal / Quelle\"\n\"Channel\": \"Kanal\"\n\"Website\": \"Webseite\"\n\"Timestamp\": \"Zeitstempel\"\n\"TimeStamp\": \"Zeitstempel\"\n\"Team\": \"Team\"\n\"Type\": \"Typ\"\n\"Replies\": \"Antworten\"\n\"Agent\": \"Agent\"\n\"ID\": \"ID\"\n\"Subject\": \"Betreff\"\n\"Last Reply\": \"Letzte Antwort\"\n\"Filter View\": \"Filteransicht\"\n\"Please select CAPTCHA\": \"Bitte wählen Sie CAPTCHA\"\n\"Warning ! Please select correct CAPTCHA !\": \"Warnung! Bitte wählen Sie das richtige CAPTCHA!\"\n\"reCAPTCHA Setting\": \"reCAPTCHA-Einstellung\"\n\"reCAPTCHA Site Key\": \"reCAPTCHA Site Key\"\n\"reCAPTCHA Secret key\": \"reCAPTCHA Geheimer Schlüssel\"\n\"reCAPTCHA Status\": \"reCAPTCHA-Status\"\n\"reCAPTCHA is Active\": \"reCAPTCHA ist aktiv\"\n\"Save set of filters as a preset to stay more productive\": \"Filter als Voreinstellung speichern\"\n\"Saved Filters\": \"Gespeicherte Filter\"\n\"No saved filter created\": \"Kein gespeicherter Filter erstellt\"\n\"Customer\": \"Kunde\"\n\"Priority\": \"Priorität\"\n\"Tag\": \"Etikett\"\n\"Source\": \"Quelle\"\n\"Before\": \"Vor\"\n\"After\": \"Nach\"\n\"Replies less than\": \"Antworten weniger als\"\n\"Replies more than\": \"Antworten mehr als\"\n\"Clear All\": \"Alles löschen\"\n\"Account\": \"Konto\"\n\"Profile\": \"Profil\"\n\"Upload a Profile Image (100px x 100px)<br> in PNG or JPG Format\": \"Hochladen eines Profilbilds (100 x 100 Pixel) im PNG- oder JPG-Format\"\n\"First Name\": \"Vorname\"\n\"Last Name\": \"Nachname\"\n\"Email\": \"E-Mail\"\n\"Contact Number\": \"Kontakt Nummer\"\n\"Timezone\": \"Zeitzone\"\n\"Africa/Abidjan\": \"Afrika / Abidjan\"\n\"Africa/Accra\": \"Afrika / Accra\"\n\"Africa/Addis_Ababa\": \"Afrika / Addis_Ababa\"\n\"Africa/Algiers\": \"Afrika / Algier\"\n\"Africa/Asmara\": \"Afrika / Asmara\"\n\"Africa/Bamako\": \"Afrika / Bamako\"\n\"Africa/Bangui\": \"Afrika / Bangui\"\n\"Africa/Banjul\": \"Afrika / Banjul\"\n\"Africa/Bissau\": \"Afrika / Bissau\"\n\"Africa/Blantyre\": \"Afrika / Blantyre\"\n\"Africa/Brazzaville\": \"Afrika / Brazzaville\"\n\"Africa/Bujumbura\": \"Afrika / Bujumbura\"\n\"Africa/Cairo\": \"Afrika / Kairo\"\n\"Africa/Casablanca\": \"Afrika / Casablanca\"\n\"Africa/Ceuta\": \"Afrika / Ceuta\"\n\"Africa/Conakry\": \"Afrika / Conakry\"\n\"Africa/Dakar\": \"Afrika / Dakar\"\n\"Africa/Dar_es_Salaam\": \"Afrika / Dar_es_Salaam\"\n\"Africa/Djibouti\": \"Afrika / Dschibuti\"\n\"Africa/Douala\": \"Afrika / Douala\"\n\"Africa/El_Aaiun\": \"Afrika / El_Aaiun\"\n\"Africa/Freetown\": \"Afrika / Freetown\"\n\"Africa/Gaborone\": \"Afrika / Gaborone\"\n\"Africa/Harare\": \"Afrika / Harare\"\n\"Africa/Johannesburg\": \"Afrika / Johannesburg\"\n\"Africa/Juba\": \"Afrika / Juba\"\n\"Africa/Kampala\": \"Afrika / Kampala\"\n\"Africa/Khartoum\": \"Afrika / Khartoum\"\n\"Africa/Kigali\": \"Afrika / Kigali\"\n\"Africa/Kinshasa\": \"Afrika / Kinshasa\"\n\"Africa/Lagos\": \"Afrika / Lagos\"\n\"Africa/Libreville\": \"Afrika / Libreville\"\n\"Africa/Lome\": \"Afrika / Lome\"\n\"Africa/Luanda\": \"Afrika / Luanda\"\n\"Africa/Lubumbashi\": \"Afrika / Lubumbashi\"\n\"Africa/Lusaka\": \"Afrika / Lusaka\"\n\"Africa/Malabo\": \"Afrika / Malabo\"\n\"Africa/Maputo\": \"Afrika / Maputo\"\n\"Africa/Maseru\": \"Afrika / Maseru\"\n\"Africa/Mbabane\": \"Afrika / Mbabane\"\n\"Africa/Mogadishu\": \"Afrika / Mogadischu\"\n\"Africa/Monrovia\": \"Afrika / Monrovia\"\n\"Africa/Nairobi\": \"Afrika / Nairobi\"\n\"Africa/Ndjamena\": \"Afrika / Ndjamena\"\n\"Africa/Niamey\": \"Afrika / Niamey\"\n\"Africa/Nouakchott\": \"Afrika / Nouakchott\"\n\"Africa/Ouagadougou\": \"Afrika / Ouagadougou\"\n\"Africa/Porto-Novo\": \"Afrika / Porto-Novo\"\n\"Africa/Sao_Tome\": \"Afrika / Sao_Tome\"\n\"Africa/Tripoli\": \"Afrika / Tripoli\"\n\"Africa/Tunis\": \"Afrika / Tunis\"\n\"Africa/Windhoek\": \"Afrika / Windhoek\"\n\"America/Adak\": \"Amerika / Adak\"\n\"America/Anchorage\": \"Amerika / Anchorage\"\n\"America/Anguilla\": \"Amerika / Anguilla\"\n\"America/Antigua\": \"Amerika / Antigua\"\n\"America/Araguaina\": \"Amerika / Araguaina\"\n\"America/Argentina/Buenos_Aires\": \"Amerika / Argentinien / Buenos_Aires\"\n\"America/Argentina/Catamarca\": \"Amerika / Argentinien / Catamarca\"\n\"America/Argentina/Cordoba\": \"Amerika / Argentinien / Cordoba\"\n\"America/Argentina/Jujuy\": \"Amerika / Argentinien / Jujuy\"\n\"America/Argentina/La_Rioja\": \"Amerika / Argentinien / La Rioja\"\n\"America/Argentina/Mendoza\": \"Amerika / Argentinien / Mendoza\"\n\"America/Argentina/Rio_Gallegos\": \"Amerika / Argentinien / Rio_Gallegos\"\n\"America/Argentina/Salta\": \"Amerika / Argentinien / Salta\"\n\"America/Argentina/San_Juan\": \"Amerika / Argentinien / San Juan\"\n\"America/Argentina/San_Luis\": \"Amerika / Argentinien / San Luis\"\n\"America/Argentina/Tucuman\": \"Amerika / Argentinien / Tucuman\"\n\"America/Argentina/Ushuaia\": \"Amerika / Argentinien / Ushuaia\"\n\"America/Aruba\": \"Amerika / Aruba\"\n\"America/Asuncion\": \"Amerika / Asuncion\"\n\"America/Atikokan\": \"Amerika / Atikokan\"\n\"America/Bahia\": \"Amerika / Bahia\"\n\"America/Bahia_Banderas\": \"Amerika / Bahia_Banderas\"\n\"America/Barbados\": \"Amerika / Barbados\"\n\"America/Belem\": \"Amerika / Belem\"\n\"America/Belize\": \"Amerika / Belize\"\n\"America/Blanc-Sablon\": \"Amerika / Blanc-Sablon\"\n\"America/Boa_Vista\": \"Amerika / Boa_Vista\"\n\"America/Bogota\": \"Amerika / Bogota\"\n\"America/Boise\": \"Amerika / Boise\"\n\"America/Cambridge_Bay\": \"Amerika / Cambridge_Bay\"\n\"America/Campo_Grande\": \"Amerika / Campo_Grande\"\n\"America/Cancun\": \"Amerika / Cancun\"\n\"America/Caracas\": \"Amerika / Caracas\"\n\"America/Cayenne\": \"Amerika / Cayenne\"\n\"America/Cayman\": \"Amerika / Cayman\"\n\"America/Chicago\": \"Amerika / Chicago\"\n\"America/Chihuahua\": \"Amerika / Chihuahua\"\n\"America/Costa_Rica\": \"Amerika / Costa_Rica\"\n\"America/Creston\": \"Amerika / Creston\"\n\"America/Cuiaba\": \"Amerika / Cuiaba\"\n\"America/Curacao\": \"Amerika / Curaçao\"\n\"America/Danmarkshavn\": \"Amerika / Danmarkshavn\"\n\"America/Dawson\": \"Amerika / Dawson\"\n\"America/Dawson_Creek\": \"Amerika / Dawson_Creek\"\n\"America/Denver\": \"Amerika / Denver\"\n\"America/Detroit\": \"Amerika / Detroit\"\n\"America/Dominica\": \"Amerika / Dominica\"\n\"America/Edmonton\": \"Amerika / Edmonton\"\n\"America/Eirunepe\": \"Amerika / Eirunepe\"\n\"America/El_Salvador\": \"Amerika / El_Salvador\"\n\"America/Fort_Nelson\": \"Amerika / Fort Nelson\"\n\"America/Fortaleza\": \"Amerika / Fortaleza\"\n\"America/Glace_Bay\": \"Amerika / Glace_Bay\"\n\"America/Godthab\": \"Amerika / Godthab\"\n\"America/Goose_Bay\": \"Amerika / Goose_Bay\"\n\"America/Grand_Turk\": \"Amerika / Grand_Turk\"\n\"America/Grenada\": \"Amerika / Grenada\"\n\"America/Guadeloupe\": \"Amerika / Guadeloupe\"\n\"America/Guatemala\": \"Amerika / Guatemala\"\n\"America/Guayaquil\": \"Amerika / Guayaquil\"\n\"America/Guyana\": \"Amerika / Guyana\"\n\"America/Halifax\": \"Amerika / Halifax\"\n\"America/Havana\": \"Amerika / Havanna\"\n\"America/Hermosillo\": \"Amerika / Hermosillo\"\n\"America/Indiana/Indianapolis\": \"Amerika / Indiana / Indianapolis\"\n\"America/Indiana/Knox\": \"Amerika / Indiana / Knox\"\n\"America/Indiana/Marengo\": \"Amerika / Indiana / Marengo\"\n\"America/Indiana/Petersburg\": \"Amerika / Indiana / Petersburg\"\n\"America/Indiana/Tell_City\": \"Amerika / Indiana / Tell_City\"\n\"America/Indiana/Vevay\": \"Amerika / Indiana / Vevay\"\n\"America/Indiana/Vincennes\": \"Amerika / Indiana / Vincennes\"\n\"America/Indiana/Winamac\": \"Amerika / Indiana / Winamac\"\n\"America/Inuvik\": \"Amerika / Inuvik\"\n\"America/Iqaluit\": \"Amerika / Iqaluit\"\n\"America/Jamaica\": \"Amerika / Jamaika\"\n\"America/Juneau\": \"Amerika / Juneau\"\n\"America/Kentucky/Louisville\": \"Amerika / Kentucky / Louisville\"\n\"America/Kentucky/Monticello\": \"Amerika / Kentucky / Monticello\"\n\"America/Kralendijk\": \"Amerika / Kralendijk\"\n\"America/La_Paz\": \"Amerika / La_Paz\"\n\"America/Lima\": \"Amerika / Lima\"\n\"America/Los_Angeles\": \"Amerika / Los_Angeles\"\n\"America/Lower_Princes\": \"Amerika / Lower_Princes\"\n\"America/Maceio\": \"Amerika / Maceio\"\n\"America/Managua\": \"Amerika / Managua\"\n\"America/Manaus\": \"Amerika / Manaus\"\n\"America/Marigot\": \"Amerika / Marigot\"\n\"America/Martinique\": \"Amerika / Martinique\"\n\"America/Matamoros\": \"Amerika / Matamoros\"\n\"America/Mazatlan\": \"Amerika / Mazatlan\"\n\"America/Menominee\": \"Amerika / Menominee\"\n\"America/Merida\": \"Amerika / Merida\"\n\"America/Metlakatla\": \"Amerika / Metlakatla\"\n\"America/Mexico_City\": \"Amerika / Mexico_City\"\n\"America/Miquelon\": \"Amerika / Miquelon\"\n\"America/Moncton\": \"Amerika / Moncton\"\n\"America/Monterrey\": \"Amerika / Monterrey\"\n\"America/Montevideo\": \"Amerika / Montevideo\"\n\"America/Montserrat\": \"Amerika / Montserrat\"\n\"America/Nassau\": \"Amerika / Nassau\"\n\"America/New_York\": \"Amerika / New_York\"\n\"America/Nipigon\": \"Amerika / Nipigon\"\n\"America/Nome\": \"Amerika / Nome\"\n\"America/Noronha\": \"Amerika / Noronha\"\n\"America/North_Dakota/Beulah\": \"Amerika / North Dakota / Beulah\"\n\"America/North_Dakota\": \"Amerika / North_Dakota\"\n\"America/Ojinaga\": \"Amerika / Ojinaga\"\n\"America/Panama\": \"Amerika / Panama\"\n\"America/Pangnirtung\": \"Amerika / Pangnirtung\"\n\"America/Paramaribo\": \"Amerika / Paramaribo\"\n\"America/Phoenix\": \"Amerika / Phoenix\"\n\"America/Port-au-Prince\": \"Amerika / Port-au-Prince\"\n\"America/Port_of_Spain\": \"Amerika / Port_of_Spain\"\n\"America/Porto_Velho\": \"Amerika / Porto_Velho\"\n\"America/Puerto_Rico\": \"Amerika / Puerto Rico\"\n\"America/Punta_Arenas\": \"Amerika / Punta_Arenas\"\n\"America/Rainy_River\": \"Amerika / Rainy_River\"\n\"America/Rankin_Inlet\": \"Amerika / Rankin_Inlet\"\n\"America/Recife\": \"Amerika / Recife\"\n\"America/Regina\": \"Amerika / Regina\"\n\"America/Resolute\": \"Amerika / Resolute\"\n\"America/Rio_Branco\": \"Amerika / Rio_Branco\"\n\"America/Santarem\": \"Amerika / Santarem\"\n\"America/Santiago\": \"Amerika / Santiago\"\n\"America/Santo_Domingo\": \"Amerika / Santo_Domingo\"\n\"America/Sao_Paulo\": \"Amerika / Sao_Paulo\"\n\"America/Scoresbysund\": \"Amerika / Scoresbysund\"\n\"America/Sitka\": \"Amerika / Sitka\"\n\"America/St_Barthelemy\": \"Amerika / St_Barthelemy\"\n\"America/St_Johns\": \"Amerika / St_Johns\"\n\"America/St_Kitts\": \"Amerika / St_Kitts\"\n\"America/St_Lucia\": \"Amerika / St_Lucia\"\n\"America/St_Thomas\": \"Amerika / St_Thomas\"\n\"America/St_Vincent\": \"Amerika / St_Vincent\"\n\"America/Swift_Current\": \"Amerika / Swift_Current\"\n\"America/Tegucigalpa\": \"Amerika / Tegucigalpa\"\n\"America/Thule\": \"Amerika / Thule\"\n\"America/Thunder_Bay\": \"Amerika / Thunder_Bay\"\n\"America/Tijuana\": \"Amerika / Tijuana\"\n\"America/Toronto\": \"Amerika / Toronto\"\n\"America/Tortola\": \"Amerika / Tortola\"\n\"America/Vancouver\": \"Amerika / Vancouver\"\n\"America/Whitehorse\": \"Amerika / Whitehorse\"\n\"America/Winnipeg\": \"Amerika / Winnipeg\"\n\"America/Yakutat\": \"Amerika / Yakutat\"\n\"America/Yellowknife\": \"Amerika / Yellowknife\"\n\"Antarctica/Casey\": \"Antarktis / Casey\"\n\"Antarctica/Davis\": \"Antarktis / Davis\"\n\"Antarctica/DumontDUrville\": \"Antarktis / DumontDUrville\"\n\"Antarctica/Macquarie\": \"Antarktis / Macquarie\"\n\"Antarctica/McMurdo\": \"Antarktis / McMurdo\"\n\"Antarctica/Mawson\": \"Antarktis / Mawson\"\n\"Antarctica/Palmer\": \"Antarktis / Palmer\"\n\"Antarctica/Rothera\": \"Antarktis / Rothera\"\n\"Antarctica/Syowa\": \"Antarktis / Syowa\"\n\"Antarctica/Troll\": \"Antarktis / Troll\"\n\"Antarctica/Vostok\": \"Antarktis / Wostok\"\n\"Arctic/Longyearbyen\": \"Arktis / Longyearbyen\"\n\"Asia/Aden\": \"Asien / Aden\"\n\"Asia/Almaty\": \"Asien / Almaty\"\n\"Asia/Amman\": \"Asien / Amman\"\n\"Asia/Anadyr\": \"Asien / Anadyr\"\n\"Asia/Aqtau\": \"Asien / Aqtau\"\n\"Asia/Aqtobe\": \"Asien / Aqtobe\"\n\"Asia/Ashgabat\": \"Asien / Ashgabat\"\n\"Asia/Atyrau\": \"Asien / Atyrau\"\n\"Asia/Baghdad\": \"Asien / Bagdad\"\n\"Asia/Bahrain\": \"Asien / Bahrain\"\n\"Asia/Baku\": \"Asien / Baku\"\n\"Asia/Bangkok\": \"Asien / Bangkok\"\n\"Asia/Barnaul\": \"Asien / Barnaul\"\n\"Asia/Beirut\": \"Asien / Beirut\"\n\"Asia/Bishkek\": \"Asien / Bischkek\"\n\"Asia/Brunei\": \"Asien / Brunei\"\n\"Asia/Chita\": \"Asien / Chita\"\n\"Asia/Choibalsan\": \"Asien / Tschoibalsan\"\n\"Asia/Colombo\": \"Asien / Colombo\"\n\"Asia/Damascus\": \"Asien / Damaskus\"\n\"Asia/Dhaka\": \"Asien / Dhaka\"\n\"Asia/Dili\": \"Asien / Dili\"\n\"Asia/Dubai\": \"Asien / Dubai\"\n\"Asia/Dushanbe\": \"Asien / Duschanbe\"\n\"Asia/Famagusta\": \"Asien / Famagusta\"\n\"Asia/Gaza\": \"Asien / Gaza\"\n\"Asia/Hebron\": \"Asien / Hebron\"\n\"Asia/Ho_Chi_Minh\": \"Asien / Ho_Chi_Minh\"\n\"Asia/Hong_Kong\": \"Asien / Hong_Kong\"\n\"Asia/Hovd\": \"Asien / Hovd\"\n\"Asia/Irkutsk\": \"Asien / Irkutsk\"\n\"Asia/Jakarta\": \"Asien / Jakarta\"\n\"Asia/Jayapura\": \"Asien / Jayapura\"\n\"Asia/Jerusalem\": \"Asien / Jerusalem\"\n\"Asia/Kabul\": \"Asien / Kabul\"\n\"Asia/Kamchatka\": \"Asien / Kamtschatka\"\n\"Asia/Karachi\": \"Asien / Karachi\"\n\"Asia/Kathmandu\": \"Asien / Kathmandu\"\n\"Asia/Khandyga\": \"Asien / Khandyga\"\n\"Asia/Kolkata\": \"Asien / Kolkata\"\n\"Asia/Krasnoyarsk\": \"Asien / Krasnojarsk\"\n\"Asia/Kuala_Lumpur\": \"Asien / Kuala_Lumpur\"\n\"Asia/Kuching\": \"Asien / Kuching\"\n\"Asia/Kuwait\": \"Asien / Kuwait\"\n\"Asia/Macau\": \"Asien / Macau\"\n\"Asia/Magadan\": \"Asien / Magadan\"\n\"Asia/Makassar\": \"Asien / Makassar\"\n\"Asia/Manila\": \"Asien / Manila\"\n\"Asia/Muscat\": \"Asien / Muscat\"\n\"Asia/Nicosia\": \"Asien / Nikosia\"\n\"Asia/Novokuznetsk\": \"Asien / Novokuznetsk\"\n\"Asia/Novosibirsk\": \"Asien / Nowosibirsk\"\n\"Asia/Omsk\": \"Asien / Omsk\"\n\"Asia/Oral\": \"Asien / Oral\"\n\"Asia/Phnom_Penh\": \"Asien / Phnom_Penh\"\n\"Asia/Pontianak\": \"Asien / Pontianak\"\n\"Asia/Pyongyang\": \"Asien / Pjöngjang\"\n\"Asia/Qatar\": \"Asien / Katar\"\n\"Asia/Qostanay\": \"Asien / Qostanay\"\n\"Asia/Qyzylorda\": \"Asien / Qyzylorda\"\n\"Asia/Riyadh\": \"Asien / Riad\"\n\"Asia/Sakhalin\": \"Asien / Sachalin\"\n\"Asia/Samarkand\": \"Asien / Samarkand\"\n\"Asia/Seoul\": \"Asien / Seoul\"\n\"Asia/Shanghai\": \"Asien / Shanghai\"\n\"Asia/Singapore\": \"Asien / Singapur\"\n\"Asia/Srednekolymsk\": \"Asien / Srednekolymsk\"\n\"Asia/Taipei\": \"Asien / Taipei\"\n\"Asia/Tashkent\": \"Asien / Taschkent\"\n\"Asia/Tbilisi\": \"Asien / Tiflis\"\n\"Asia/Tehran\": \"Asien / Teheran\"\n\"Asia/Thimphu\": \"Asien / Thimphu\"\n\"Asia/Tokyo\": \"Asien / Tokio\"\n\"Asia/Tomsk\": \"Asien / Tomsk\"\n\"Asia/Ulaanbaatar\": \"Asien / Ulaanbaatar\"\n\"Asia/Urumqi\": \"Asien / Urumqi\"\n\"Asia/Ust-Nera\": \"Asien / Ust-Nera\"\n\"Asia/Vientiane\": \"Asien / Vientiane\"\n\"Asia/Vladivostok\": \"Asien / Wladiwostok\"\n\"Asia/Yakutsk\": \"Asien / Yakutsk\"\n\"Asia/Yangon\": \"Asien / Yangon\"\n\"Asia/Yekaterinburg\": \"Asien / Jekaterinburg\"\n\"Asia/Yerevan\": \"Asien / Eriwan\"\n\"Atlantic/Azores\": \"Atlantik / Azoren\"\n\"Atlantic/Bermuda\": \"Atlantik / Bermuda\"\n\"Atlantic/Canary\": \"Atlantik / Kanarische Inseln\"\n\"Atlantic/Cape_Verde\": \"Atlantic / Cape_Verde\"\n\"Atlantic/Faroe\": \"Atlantik / Färöer\"\n\"Atlantic/Madeira\": \"Atlantik / Madeira\"\n\"Atlantic/Reykjavik\": \"Atlantic / Reykjavik\"\n\"Atlantic/South_Georgia\": \"Atlantik / Südgeorgien\"\n\"Atlantic/St_Helena\": \"Atlantic / St_Helena\"\n\"Atlantic/Stanley\": \"Atlantic / Stanley\"\n\"Australia/Adelaide\": \"Australien / Adelaide\"\n\"Australia/Brisbane\": \"Australien / Brisbane\"\n\"Australia/Broken_Hill\": \"Australien / Broken_Hill\"\n\"Australia/Currie\": \"Australien / Currie\"\n\"Australia/Darwin\": \"Australien / Darwin\"\n\"Australia/Eucla\": \"Australien / Eucla\"\n\"Australia/Hobart\": \"Australien / Hobart\"\n\"Australia/Lindeman\": \"Australien / Lindeman\"\n\"Australia/Lord_Howe\": \"Australien / Lord_Howe\"\n\"Australia/Melbourne\": \"Australien / Melbourne\"\n\"Australia/Perth\": \"Australien / Perth\"\n\"Australia/Sydney\": \"Australien / Sydney\"\n\"Europe/Amsterdam\": \"Europa / Amsterdam\"\n\"Europe/Andorra\": \"Europa / Andorra\"\n\"Europe/Astrakhan\": \"Europa / Astrachan\"\n\"Europe/Athens\": \"Europa / Athen\"\n\"Europe/Belgrade\": \"Europa / Belgrad\"\n\"Europe/Berlin\": \"Europa / Berlin\"\n\"Europe/Bratislava\": \"Europa / Bratislava\"\n\"Europe/Brussels\": \"Europa / Brüssel\"\n\"Europe/Bucharest\": \"Europa / Bukarest\"\n\"Europe/Budapest\": \"Europa / Budapest\"\n\"Europe/Busingen\": \"Europa / Busingen\"\n\"Europe/Chisinau\": \"Europa / Chisinau\"\n\"Europe/Copenhagen\": \"Europa / Kopenhagen\"\n\"Europe/Dublin\": \"Europa / Dublin\"\n\"Europe/Gibraltar\": \"Europa / Gibraltar\"\n\"Europe/Guernsey\": \"Europa / Guernsey\"\n\"Europe/Helsinki\": \"Europa / Helsinki\"\n\"Europe/Isle_of_Man\": \"Europa / Isle_of_Man\"\n\"Europe/Istanbul\": \"Europa / Istanbul\"\n\"Europe/Jersey\": \"Europa / Jersey\"\n\"Europe/Kaliningrad\": \"Europa / Kaliningrad\"\n\"Europe/Kiev\": \"Europa / Kiew\"\n\"Europe/Kirov\": \"Europa / Kirov\"\n\"Europe/Lisbon\": \"Europa / Lissabon\"\n\"Europe/Ljubljana\": \"Europa / Ljubljana\"\n\"Europe/London\": \"Europa / London\"\n\"Europe/Luxembourg\": \"Europa / Luxemburg\"\n\"Europe/Madrid\": \"Europa / Madrid\"\n\"Europe/Malta\": \"Europa / Malta\"\n\"Europe/Mariehamn\": \"Europa / Mariehamn\"\n\"Europe/Minsk\": \"Europa / Minsk\"\n\"Europe/Monaco\": \"Europa / Monaco\"\n\"Europe/Moscow\": \"Europa / Moskau\"\n\"Europe/Oslo\": \"Europa / Oslo\"\n\"Europe/Paris\": \"Europa / Paris\"\n\"Europe/Podgorica\": \"Europa / Podgorica\"\n\"Europe/Prague\": \"Europa / Prag\"\n\"Europe/Riga\": \"Europa / Riga\"\n\"Europe/Rome\": \"Europa / Rom\"\n\"Europe/Samara\": \"Europa / Samara\"\n\"Europe/San_Marino\": \"Europa / San_Marino\"\n\"Europe/Sarajevo\": \"Europa / Sarajevo\"\n\"Europe/Saratov\": \"Europa / Saratov\"\n\"Europe/Simferopol\": \"Europa / Simferopol\"\n\"Europe/Skopje\": \"Europa / Skopje\"\n\"Europe/Sofia\": \"Europa / Sofia\"\n\"Europe/Stockholm\": \"Europa / Stockholm\"\n\"Europe/Tallinn\": \"Europa / Tallinn\"\n\"Europe/Tirane\": \"Europa / Tirane\"\n\"Europe/Ulyanovsk\": \"Europa / Uljanowsk\"\n\"Europe/Uzhgorod\": \"Europa / Uschgorod\"\n\"Europe/Vaduz\": \"Europa / Vaduz\"\n\"Europe/Vatican\": \"Europa / Vatikan\"\n\"Europe/Vienna\": \"Europa / Wien\"\n\"Europe/Vilnius\": \"Europa / Vilnius\"\n\"Europe/Volgograd\": \"Europa / Wolgograd\"\n\"Europe/Warsaw\": \"Europa / Warschau\"\n\"Europe/Zagreb\": \"Europa / Zagreb\"\n\"Europe/Zaporozhye\": \"Europa / Zaporozhye\"\n\"Europe/Zurich\": \"Europa / Zürich\"\n\"Indian/Antananarivo\": \"Indian / Antananarivo\"\n\"Indian/Chagos\": \"Indian / Chagos\"\n\"Indian/Christmas\": \"Indian / Weihnachtsinsel\"\n\"Indian/Cocos\": \"Indian / Cocos\"\n\"Indian/Comoro\": \"Indian / Comoro\"\n\"Indian/Kerguelen\": \"Indian / Kerguelen\"\n\"Indian/Mahe\": \"Indian / Mahe\"\n\"Indian/Maldives\": \"Indian / Malediven\"\n\"Indian/Mauritius\": \"Indian / Mauritius\"\n\"Indian/Mayotte\": \"Indian / Mayotte\"\n\"Indian/Reunion\": \"Indian / Wiedersehen\"\n\"Pacific/Apia\": \"Pazifik / Apia\"\n\"Pacific/Auckland\": \"Pazifik / Auckland\"\n\"Pacific/Bougainville\": \"Pazifik / Bougainville\"\n\"Pacific/Chatham\": \"Pazifik / Chatham\"\n\"Pacific/Chuuk\": \"Pazifik / Chuuk\"\n\"Pacific/Easter\": \"Pazifik / Osterinsel\"\n\"Pacific/Efate\": \"Pazifik / Efate\"\n\"Pacific/Enderbury\": \"Pazifik / Enderbury\"\n\"Pacific/Fakaofo\": \"Pazifik / Fakaofo\"\n\"Pacific/Fiji\": \"Pazifik / Fidschi\"\n\"Pacific/Funafuti\": \"Pazifik / Funafuti\"\n\"Pacific/Galapagos\": \"Pazifik / Galapagos\"\n\"Pacific/Gambier\": \"Pazifik / Gambier\"\n\"Pacific/Guadalcanal\": \"Pazifik / Guadalcanal\"\n\"Pacific/Guam\": \"Pazifik / Guam\"\n\"Pacific/Honolulu\": \"Pazifik / Honolulu\"\n\"Pacific/Kiritimati\": \"Pazifik / Kiritimati\"\n\"Pacific/Kosrae\": \"Pazifik / Kosrae\"\n\"Pacific/Kwajalein\": \"Pazifik / Kwajalein\"\n\"Pacific/Majuro\": \"Pazifik / Majuro\"\n\"Pacific/Marquesas\": \"Pazifik / Marquesas\"\n\"Pacific/Midway\": \"Pazifik / Auf halbem Weg\"\n\"Pacific/Nauru\": \"Pazifik / Nauru\"\n\"Pacific/Niue\": \"Pazifik / Niue\"\n\"Pacific/Norfolk\": \"Pazifik / Norfolk\"\n\"Pacific/Noumea\": \"Pazifik / Noumea\"\n\"Pacific/Pago_Pago\": \"Pazifik / Pago_Pago\"\n\"Pacific/Palau\": \"Pazifik / Palau\"\n\"Pacific/Pitcairn\": \"Pazifik / Pitcairn\"\n\"Pacific/Pohnpei\": \"Pazifik / Pohnpei\"\n\"Pacific/Port_Moresby\": \"Pazifik / Port_Moresby\"\n\"Pacific/Rarotonga\": \"Pazifik / Rarotonga\"\n\"Pacific/Saipan\": \"Pazifik / Saipan\"\n\"Pacific/Tahiti\": \"Pazifik / Tahiti\"\n\"Pacific/Tarawa\": \"Pazifik / Tarawa\"\n\"Pacific/Tongatapu\": \"Pazifik / Tongatapu\"\n\"Pacific/Wake\": \"Pazifik / Wake\"\n\"Pacific/Wallis\": \"Pazifik / Wallis\"\n\"UTC\": \"koordinierte Weltzeit\"\n\"Time Format\": \"Zeitformat\"\n\"Choose your default timezone\": \"Wählen Sie Ihre Standard-Zeitzone\"\n\"Signature\": \"Unterschrift\"\n\"User signature will be append at the bottom of ticket reply box\": \"Die Unterschrift des Benutzers wird am unteren Rand des Antwortfelds des Tickets angehängt.\"\n\"Password\": \"Passwort\"\n\"Password will remain same if you are not entering something in this field\": \"Das Passwort bleibt gleich, wenn Sie in dieses Feld nichts eingeben.\"\n\"Confirm Password\": \"Passwort bestätigen\"\n\"Password must contain minimum 8 character length, at least two letters (not case sensitive), one number, one special character(space is not allowed).\": \"Das Passwort muss mindestens 8 Zeichen lang sein, mindestens zwei Buchstaben (ohne Berücksichtigung der Groß- und Kleinschreibung), eine Zahl und ein Sonderzeichen (Leerzeichen sind nicht zulässig).\"\n\"Save Changes\": \"Änderungen speichern\"\n\"SAVE CHANGES\": \"ÄNDERUNGEN SPEICHERN\"\n\"CREATE TICKET\": \"TICKET ERSTELLEN\"\n\"Customer full name\": \"Vollständiger Name des Kunden\"\n\"Customer email address\": \"E-Mail-Adresse des Kunden\"\n\"Select Type\": \"Typ auswählen\"\n\"Support\": \"Support\"\n\"Choose ticket type\": \"Ticket-Typ wählen\"\n\"Ticket subject\": \"Ticket-Betreff\"\n\"Message\": \"Nachricht\"\n\"Query Message\": \"Nachricht abfragen\"\n\"Add Attachment\": \"Anhang hinzufügen\"\n\"This field is mandatory\": \"Das Feld ist obligatorisch\"\n\"General\": \"Allgemeines\"\n\"Designation\": \"Bezeichnung\"\n\"Contant Number\": \"Contant Number\"\n\"User signature will be append in the bottom of ticket reply box\": \"Die Unterschrift des Benutzers wird unten im Antwortfeld des Tickets angehängt.\"\n\"Account Status\": \"Kontostatus\"\n\"Account is Active\": \"Konto ist aktiv\"\n\"Assigning group(s) to user to view tickets regardless assignment.\": \"Zuweisen von Gruppen zu Benutzern, um Tickets unabhängig von der Zuweisung anzuzeigen.\"\n\"Default\": \"Standard\"\n\"Select All\": \"Wählen Sie Alle\"\n\"Remove All\": \"Alles entfernen\"\n\"Assigning team(s) to user to view tickets regardless assignment.\": \"Zuweisen von Teams zu Benutzern, um Tickets unabhängig von der Zuweisung anzuzeigen.\"\n\"No Team added !\": \"Kein Team hinzugefügt!\"\n\"Permission\": \"Genehmigung\"\n\"Role\": \"Rolle\"\n\"Administrator\": \"Administrator\"\n\"Select agent role\": \"Agentenrolle auswählen\"\n\"Add Customer\": \"Kunden hinzufügen\"\n\"Action\": \"Aktion\"\n\"Account Owner\": \"Kontoinhaber\"\n\"Active\": \"Aktiv\"\n\"Edit\": \"Bearbeiten\"\n\"Delete\": \"Löschen\"\n\"Disabled\": \"Deaktiviert\"\n\"New Group\": \"Neue Gruppe\"\n\"Default Privileges\": \"Standardprivilegien\"\n\"New Privileges\": \"Neue Privilegien\"\n\"NEW PRIVILEGE\": \"NEUES PRIVILEGE\"\n\"New Privilege\": \"Neues Privileg\"\n\"New Team\": \"Neues Team\"\n\"No Record Found\": \"Kein Eintrag gefunden\"\n\"Order Synchronization\": \"Bestellungssynchronisation\"\n\"Easily integrate different ecommerce platforms with your helpdesk which can then be later used to swiftly integrate ecommerce order details with your support tickets.\": \"Integrieren Sie problemlos verschiedene E-Commerce-Plattformen in Ihren Helpdesk. Diese können später verwendet werden, um E-Commerce-Bestelldetails schnell in Ihre Support-Tickets zu integrieren.\"\n\"BigCommerce\": \"BigCommerce\"\n\"No channels have been added.\": \"Es wurden keine Kanäle hinzugefügt.\"\n\"Add BigCommerce Store\": \"BigCommerce Store hinzufügen\"\n\"ADD BIGCOMMERCE STORE\": \"ADD BIGCOMMERCE STORE\"\n\"Mangento\": \"Mangento\"\n\"Add Magento Store\": \"Magento Store hinzufügen\"\n\"OpenCart\": \"OpenCart\"\n\"Add OpenCart Store\": \"OpenCart Store hinzufügen\"\n\"ADD OPENCART STORE\": \"OPENCART STORE HINZUFÜGEN\"\n\"Shopify\": \"Shopify\"\n\"Add Shopify Store\": \"Shopify Store hinzufügen\"\n\"ADD SHOPIFY STORE\": \"SHOPIFY STORE HINZUFÜGEN\"\n\"Integrate a new BigCommerce store\": \"Integriere einen neuen BigCommerce Store\"\n\"Your BigCommerce Store Name\": \"Ihr BigCommerce Store Name\"\n\"Your BigCommerce Store Hash\": \"Ihr BigCommerce Store Hash\"\n\"Your BigCommerce Api Token\": \"Ihr BigCommerce-API-Token\"\n\"Your BigCommerce Api Client ID\": \"Ihre BigCommerce-API-Kunden-ID\"\n\"Enable Channel\": \"Kanal aktivieren\"\n\"Add Store\": \"Store hinzufügen\"\n\"ADD STORE\": \"STORE HINZUFÜGEN\"\n\"Integrate a new Magento store\": \"Integriere einen neuen Magento Store\"\n\"Your Magento Api Username\": \"Dein Magento Api Benutzername\"\n\"Your Magento Api Password\": \"Dein Magento-API-Passwort\"\n\"Integrate a new OpenCart store\": \"Integriere einen neuen OpenCart Store\"\n\"Your OpenCart Api Key\": \"Ihr OpenCart-API-Schlüssel\"\n\"Your Shopify Store Name\": \"Ihr Shopify-Filialname\"\n\"Your Shopify Api Key\": \"Ihr Shopify-API-Schlüssel\"\n\"Your Shopify Api Password\": \"Ihr Shopify-API-Passwort\"\n\"Easily embed custom form to help generate helpdesk tickets.\": \"Einfaches Einbetten eines benutzerdefinierten Formulars zur Erstellung von Helpdesk-Tickets.\"\n\"Form-Builder\": \"Formular-Generator\"\n\"Add Formbuilder\": \"Formbuilder hinzufügen\"\n\"ADD FORMBUILDER\": \"FORMBUILDER HINZUFÜGEN\"\n\"No FormBuilder have been added.\": \"Es wurde kein FormBuilder hinzugefügt.\"\n\"Create a New Custom Form Below\": \"Erstellen Sie unten ein neues benutzerdefiniertes Formular\"\n\"Form Name\": \"Formularname\"\n\"It will be shown in the list of created forms\": \"Es wird in der Liste der erstellten Formulare angezeigt.\"\n\"MANDATORY FIELDS\": \"PFLICHTFELDER\"\n\"These fields will be visible in form and cant be edited\": \"Diese Felder werden im Formular angezeigt und können nicht bearbeitet werden\"\n\"Reply\": \"Antworten\"\n\"OPTIONAL FIELDS\": \"OPTIONALE FELDER\"\n\"Select These Fields to Add in your Form\": \"Wählen Sie diese Felder aus, um sie in Ihr Formular einzufügen\"\n\"GDPR\": \"GDPR\"\n\"Order\": \"Bestellung\"\n\"Categorybuilder\": \"Categorybuilder\"\n\"File\": \"Datei\"\n\"Add Form\": \"Formular hinzufügen\"\n\"ADD FORM\": \"FORMULAR HINZUFÜGEN\"\n\"UPDATE FORM\": \"UPDATE FORMULAR\"\n\"Update Form\": \"Formular aktualisieren\"\n\"Embed\": \"Einbetten\"\n\"EMBED\": \"EINBETTEN\"\n\"EMBED FORMBUILDER\": \"EMBED FORMBUILDER\"\n\"Embed Formbuilder\": \"Formbuilder einbetten\"\n\"Visit\": \"Besuch\"\n\"VISIT\": \"BESUCH\"\n\"Code\": \"Code\"\n\"Total Ticket(s)\": \"Ticket (s) insgesamt\"\n\"Ticket Count\": \"Ticketanzahl\"\n\"SwiftMailer Configurations\": \"SwiftMailer-Konfigurationen\"\n\"No swiftmailer configurations found\": \"Keine Swiftmailer-Konfigurationen gefunden\"\n\"CREATE CONFIGURATION\": \"KONFIGURATION ERSTELLEN\"\n\"Add configuration\": \"Konfiguration hinzufügen\"\n\"Update configuration\": \"Konfiguration aktualisieren\"\n\"Mailer ID\": \"Mailer ID\"\n\"Mailer ID - Leave blank to automatically create id\": \"Mailer ID - Leer lassen, um automatisch eine ID zu erstellen\"\n\"Transport Type\": \"Transportart\"\n\"SMTP\": \"SMTP\"\n\"Enable Delivery\": \"Zustellung aktivieren\"\n\"Server\": \"Server\"\n\"Port\": \"Port\"\n\"Encryption Mode\": \"Verschlüsselungsmodus\"\n\"ssl\": \"ssl\"\n\"tsl\": \"tsl\"\n\"None\": \"Keiner\"\n\"Authentication Mode\": \"Authentifizierungsmodus\"\n\"login\": \"Anmeldung\"\n\"API\": \"API\"\n\"Plain\": \"Einfach\"\n\"CRAM-MD5\": \"CRAM-MD5\"\n\"Sender Address\": \"Absenderadresse\"\n\"Delivery Address\": \"Lieferadresse\"\n\"Block Spam\": \"Spam blockieren\"\n\"Black list\": \"Schwarze Liste\"\n\"Comma (,) separated values (Eg. support@example.com, @example.com, 68.98.31.226)\": \"Durch Komma (,) getrennte Werte (z. B. support@example.com, @ example.com, 68.98.31.226)\"\n\"White list\": \"Weiße Liste\"\n\"Mailbox Settings\": \"Mailbox-Einstellungen\"\n\"No mailbox configurations found\": \"Keine Mailbox-Konfigurationen gefunden\"\n\"NEW MAILBOX\": \"NEUE MAILBOX\"\n\"New Mailbox\": \"NEUE MAILBOX\"\n\"Update Mailbox\": \"Mailbox aktualisieren\"\n\"Add Mailbox\": \"Mailbox hinzufügen\"\n\"Mailbox ID - Leave blank to automatically create id\": \"Mailbox ID - Leer lassen, um automatisch eine ID zu erstellen\"\n\"Mailbox Name\": \"Postfachname\"\n\"Enable Mailbox\": \"Mailbox aktivieren\"\n\"Incoming Mail (IMAP) Server\": \"Posteingangsserver (IMAP)\"\n\"Configure your imap settings which will be used to fetch emails from your mailbox.\": \"Konfigurieren Sie Ihre IMAP-Einstellungen, die zum Abrufen von E-Mails aus Ihrer Mailbox verwendet werden.\"\n\"Transport\": \"Transport\"\n\"IMAP\": \"IMAP\"\n\"Gmail\": \"Google Mail\"\n\"Yahoo\": \"Yahoo\"\n\"Host\": \"Wirt\"\n\"IMAP Host\": \"IMAP-Host\"\n\"Email address\": \"E-Mail-Addresse\"\n\"Associated Password\": \"Zugehöriges Passwort\"\n\"Outgoing Mail (SMTP) Server\": \"Postausgangsserver (SMTP)\"\n\"Select a valid Swift Mailer configuration which will be used to send emails through your mailbox.\": \"Wählen Sie eine gültige Swift Mailer-Konfiguration aus, mit der E-Mails über Ihre Mailbox gesendet werden.\"\n\"Swift Mailer ID\": \"Swift Mailer ID\"\n\"None Selected\": \"Nichts ausgewählt\"\n\"Create Mailbox\": \"Mailbox erstellen\"\n\"CREATE MAILBOX\": \"MAILBOX ERSTELLEN\"\n\"New Template\": \"Neue Vorlage\"\n\"NEW TEMPLATE\": \"NEUE VORLAGE\"\n\"Customer Forgot Password\": \"Kunde hat Passwort vergessen\"\n\"Customer Account Created\": \"Kundenkonto erstellt\"\n\"Ticket generated success mail to customer\": \"Ticket generierte Erfolgsmail an Kunden\"\n\"Customer Reply To The Agent\": \"Kundenantwort an den Agenten\"\n\"Ticket Assign\": \"Ticket zuweisen\"\n\"Agent Forgot Password\": \"Agent Passwort vergessen\"\n\"Agent Account Created\": \"Agentenkonto erstellt\"\n\"Ticket generated by customer\": \"Ticket vom Kunden generiert\"\n\"Agent Reply To The Customers ticket\": \"Agentenantwort auf das Ticket des Kunden\"\n\"Email template name\": \"Name der E-Mail-Vorlage\"\n\"Email template subject\": \"Betreff der E-Mail-Vorlage\"\n\"Template For\": \"Vorlage für\"\n\"Nothing Selected\": \"Nichts ausgewählt\"\n\"email template will be used for work related with selected option\": \"Die E-Mail-Vorlage wird für die Arbeit mit der ausgewählten Option verwendet.\"\n\"Email template body\": \"E-Mail-Vorlagenkörper\"\n\"Body\": \"Körper\"\n\"placeholders\": \"Platzhalter\"\n\"Ticket Subject\": \"Ticket Betreff\"\n\"Ticket Message\": \"Ticket Nachricht\"\n\"Ticket Attachments\": \"Ticket-Anhänge\"\n\"Ticket Tags\": \"Ticket-Tags\"\n\"Ticket Source\": \"Ticketquelle\"\n\"Ticket Status\": \"Ticket Status\"\n\"Ticket Priority\": \"Ticket Priorität\"\n\"Ticket Group\": \"Ticketgruppe\"\n\"Ticket Team\": \"Ticket-Team\"\n\"Ticket Thread Message\": \"Ticket Thread Nachricht\"\n\"Ticket Customer Name\": \"Ticket-Kundenname\"\n\"Ticket Customer Email\": \"Ticket-Kunden-E-Mail\"\n\"Ticket Agent Name\": \"Ticket Agent Name\"\n\"Ticket Agent Email\": \"Ticket Agent Email\"\n\"Ticket Agent Link\": \"Ticket Agent Link\"\n\"Ticket Customer Link\": \"Ticket-Kunden-Link\"\n\"Last Collaborator Name\": \"Name des letzten Mitarbeiters\"\n\"Last Collaborator Email\": \"Letzte Mitarbeiter-E-Mail\"\n\"Agent/ Customer Name\": \"Agent / Kunde\"\n\"Account Validation Link\": \"Link zur Kontoüberprüfung\"\n\"Password Forgot Link\": \"Passwort vergessener Link\"\n\"Company Name\": \"Name der Firma\"\n\"Company Logo\": \"Firmenlogo\"\n\"Company URL\": \"Firmen-URL\"\n\"Swiftmailer id (Select from drop down)\": \"Swiftmailer-ID (Auswahl aus Dropdown-Liste)\"\n\"SwiftMailer\" : \"SwiftMailer\"\n\"PROCEED\": \"VORGEHEN\"\n\"Proceed\": \"Vorgehen\"\n\"Theme Color\": \"Themenfarbe\"\n\"Customer Created\": \"Kunde erstellt\"\n\"Agent Created\": \"Agent erstellt\"\n\"Ticket Created\": \"Ticket erstellt\"\n\"Agent Replied on Ticket\": \"Agent hat auf Ticket geantwortet\"\n\"Customer Replied on Ticket\": \"Kunde hat auf Ticket geantwortet\"\n\"Workflow Status\": \"Workflow Status\"\n\"Workflow is Active\": \"Workflow ist aktiv\"\n\"Events\": \"Veranstaltungen\"\n\"An event automatically triggers to check conditions and perform a respective pre-defined set of actions\": \"Ein Ereignis wird automatisch ausgelöst, um die Bedingungen zu überprüfen und einen entsprechenden vordefinierten Satz von Aktionen auszuführen.\"\n\"Select an Event\": \"Event auswählen\"\n\"Add More\": \"Weitere hinzufügen\"\n\"Conditions\": \"Bedingungen\"\n\"Conditions are set of rules which checks for specific scenarios and are triggered on specific occasions\": \"Bedingungen sind Regeln, die nach bestimmten Szenarien suchen und bei bestimmten Gelegenheiten ausgelöst werden.\"\n\"Subject or Description\": \"Betreff oder Beschreibung\"\n\"Actions\": \"Aktionen\"\n\"An action not only reduces the workload but also makes it quite easier for ticket automation\": \"Eine Aktion reduziert nicht nur den Arbeitsaufwand, sondern erleichtert auch die Ticketautomatisierung erheblich.\"\n\"Select an Action\": \"Aktion auswählen\"\n\"Add Note\": \"Notiz hinzufügen\"\n\"Mail to agent\": \"Mail to agent\"\n\"Mail to customer\": \"Mail an kunden\"\n\"Mail to group\": \"Mail an Gruppe\"\n\"Mail to last collaborator\": \"Mail an letzten Mitarbeiter\"\n\"Mail to team\": \"Mail an das Team\"\n\"Mark Spam\": \"Spam markieren\"\n\"Assign to agent\": \"Agent zuweisen\"\n\"Assign to group\": \"Zu Gruppe zuordnen\"\n\"Set Priority As\": \"Priorität festlegen als\"\n\"Set Status As\": \"Status setzen als\"\n\"Set Tag As\": \"Tag setzen als\"\n\"Set Label As\": \"Label festlegen als\"\n\"Assign to team\": \"Zu Team zuordnen\"\n\"Set Type As\": \"Typ festlegen als\"\n\"Add Workflow\": \"Workflow hinzufügen\"\n\"ADD WORKFLOW\": \"WORKFLOW HINZUFÜGEN\"\n\"Ticket Type code\": \"Ticket Type Code\"\n\"Ticket Type description\": \"Ticket Typ Beschreibung\"\n\"Type Status\": \"Typstatus\"\n\"Type is Active\": \"Typ ist aktiv\"\n\"Add Save Reply\": \"Hinzufügen Speichern Antwortnen\"\n\"Saved reply name\": \"Name der gespeicherten Antwort\"\n\"Share saved reply with user(s) in these group(s)\": \"Gespeicherte Antwort mit Benutzern in diesen Gruppen teilen\"\n\"Share saved reply with user(s) in these teams(s)\": \"Gespeicherte Antwort mit Benutzern in diesen Teams teilen\"\n\"Saved reply Body\": \"Gespeicherter Antworttext\"\n\"New Prepared Response\": \"Neue vorbereitete Antwort\"\n\"Prepared Response Status\": \"Status der vorbereiteten Antwort\"\n\"Prepared Response is Active\": \"Vorbereitete Antwort ist aktiv\"\n\"Share prepared response with user(s) in these group(s)\": \"Teilen Sie vorbereitete Antworten mit Benutzern in diesen Gruppen\"\n\"Share prepared response with user(s) in these teams(s)\": \"Teilen Sie vorbereitete Antworten mit Benutzern in diesen Teams.\"\n\"ADD PREPARED RESPONSE\": \"VORBEREITETE ANTWORT HINZUFÜGEN\"\n\"Add Prepared Response\": \"Vorbereitete Antwort hinzufügen\"\n\"Folder Name is shown upfront at Knowledge Base\": \"Ordnername wird in der Wissensbasis vorne angezeigt\"\n\"A small text about the folder helps user to navigate more easily\": \"Ein kleiner Text über den Ordner erleichtert dem Benutzer das Navigieren.\"\n\"Publish\": \"Veröffentlichen\"\n\"Choose appropriate status\": \"Wählen Sie den entsprechenden Status\"\n\"Folder Image\": \"Ordnerbild\"\n\"An image is worth a thousands words and makes folder more accessible\": \"Ein Bild sagt mehr als tausend Worte und macht Ordner zugänglicher\"\n\"Add Category\": \"Kategorie hinzufügen\"\n\"Category Name is shown upfront at Knowledge Base\": \"Der Kategoriename wird in der Wissensbasis vorne angezeigt.\"\n\"A small text about the category helps user to navigate more easily\": \"Ein kleiner Text über die Kategorie erleichtert dem Benutzer das Navigieren.\"\n\"Using Category Order, you can decide which category should display first\": \"Mit der Kategoriereihenfolge können Sie entscheiden, welche Kategorie zuerst angezeigt werden soll.\"\n\"Sorting\": \"Sortierung\"\n\"Ascending Order (A-Z)\": \"Aufsteigende Reihenfolge (A-Z)\"\n\"Descending Order (Z-A)\": \"Absteigende Reihenfolge (Z-A)\"\n\"Based on Popularity\": \"Basierend auf Popularität\"\n\"Article of this category will display according to selected option\": \"Artikel dieser Kategorie werden nach ausgewählter Option angezeigt\"\n\"Article\": \"Artikel\"\n\"Title\": \"Titel\"\n\"View\": \"Aussicht\"\n\"Make as Starred\": \"Machen Sie wie markiert\"\n\"Yes\": \"Ja\"\n\"No\": \"Nein\"\n\"Stared\": \"Starrte\"\n\"Revisions\": \"Überarbeitungen\"\n\"Related Articles\": \"In Verbindung stehende Artikel\"\n\"Delete Article\":\t\"Artikel löschen\"\n\"Content\": \"Inhalt\"\n\"Slug\": \"Schnecke\"\n\"Slug is the url identity of this article.\": \"Slug ist die URL-Identität dieses Artikels.\"\n\"Meta Title\": \"Meta-Titel\"\n\"Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A pages title tag and meta description are usually shown whenever that page appears in search engine results\": \"Titel-Tags und Meta-Beschreibungen sind Teile des HTML-Codes im Header einer Webseite. Sie helfen Suchmaschinen, den Inhalt einer Seite zu verstehen. Das Titel-Tag und die Meta-Beschreibung einer Seite werden normalerweise angezeigt, wenn diese Seite in Suchmaschinenergebnissen angezeigt wird.\"\n\"Meta Keywords\": \"Meta-Keywords\"\n\"Meta Description\": \"Meta Description\"\n\"Description\": \"Beschreibung\"\n\"Team Status\": \"Team Status\"\n\"Team is Active\": \"Team ist aktiv\"\n\"Edit Privilege\": \"Berechtigung bearbeiten\"\n\"Can create ticket\": \"Kann Ticket erstellen\"\n\"Can edit ticket\": \"Kann Ticket bearbeiten\"\n\"Can delete ticket\": \"Kann Ticket löschen\"\n\"Can restore trashed ticket\": \"Kann das Ticket im Papierkorb wiederherstellen\"\n\"Can assign ticket\": \"Kann Ticket zuweisen\"\n\"Can assign ticket group\": \"Kann Ticketgruppe zuordnen\"\n\"Can update ticket status\": \"Kann Ticketstatus aktualisieren\"\n\"Can update ticket priority\": \"Kann Ticketpriorität aktualisieren\"\n\"Can update ticket type\": \"Kann Ticket-Typ aktualisieren\"\n\"Can add internal notes to ticket\": \"Kann interne Notizen zum Ticket hinzufügen\"\n\"Can edit thread/notes\": \"Kann Thread / Notizen bearbeiten\"\n\"Can lock/unlock thread\": \"Kann Thread sperren / entsperren\"\n\"Can add collaborator to ticket\": \"Kann Mitbearbeiter zum Ticket hinzufügen\"\n\"Can delete collaborator from ticket\": \"Kann Mitbearbeiter aus Ticket löschen\"\n\"Can delete thread/notes\": \"Kann Thread / Notizen löschen\"\n\"Can apply prepared response on ticket\": \"Kann vorbereitete Antwort auf Ticket anwenden\"\n\"Can add ticket tags\": \"Kann Ticket-Tags hinzufügen\"\n\"Can delete ticket tags\": \"Kann Ticket-Tags löschen\"\n\"Can kick other ticket users\": \"Kann andere Ticketbenutzer kicken\"\n\"Can manage email templates\": \"Kann E-Mail-Vorlagen verwalten\"\n\"Can manage groups\": \"Kann Gruppen verwalten\"\n\"Can manage Sub-Groups/ Teams\": \"Kann Untergruppen / Teams verwalten\"\n\"Can manage agents\": \"Kann Agenten verwalten\"\n\"Can manage agent privileges\": \"Kann Agentenrechte verwalten\"\n\"Can manage ticket types\": \"Kann Ticket-Typen verwalten\"\n\"Can manage ticket custom fields\": \"Kann benutzerdefinierte Ticketfelder verwalten\"\n\"Can manage customers\": \"Kann Kunden verwalten\"\n\"Can manage Prepared Responses\": \"Kann vorbereitete Antworten verwalten\"\n\"Can manage Automatic workflow\": \"Kann den automatischen Workflow verwalten\"\n\"Can manage tags\": \"Kann Tags verwalten\"\n\"Can manage knowledgebase\": \"Kann Wissensbasis verwalten\"\n\"Can manage Groups Saved Reply\": \"Kann gespeicherte Antworten der Gruppe verwalten\"\n\"Add Privilege\": \"Privileg hinzufügen\"\n\"Choose set of privileges which will be available to the agent.\": \"Wählen Sie eine Reihe von Berechtigungen aus, die dem Agenten zur Verfügung stehen.\"\n\"Advanced\": \"Erweitert\"\n\"Privilege Name must have characters only\": \"Berechtigungsname darf nur Zeichen enthalten\"\n\"Maximum character length is 50\": \"Maximale Zeichenlänge beträgt 50\"\n\"Open Tickets\": \"Offene Tickets\"\n\"New Customer\": \"Neukunde\"\n\"New Agent\": \"Neuer Agent\"\n\"Total Article(s)\": \"Artikel insgesamt\"\n\"Please specify a valid email address\": \"Bitte geben Sie eine gültige E-Mail-Adresse an.\"\n\"Please enter the password associated with your email address\": \"Bitte geben Sie das mit Ihrer E-Mail-Adresse verknüpfte Passwort ein.\"\n\"Please enter your server host address\": \"Bitte geben Sie Ihre Server-Host-Adresse ein\"\n\"Please specify a port number to connect with your mail server\": \"Bitte geben Sie eine Portnummer an, um sich mit Ihrem Mailserver zu verbinden\"\n\"Success ! Branding details saved successfully.\": \"Erfolg! Markenbildung erfolgreich gespeichert.\"\n\"Success ! Time details saved successfully.\": \"Erfolg! Zeitangaben erfolgreich gespeichert.\"\n\"Spam setting saved successfully.\": \"Spam-Einstellung erfolgreich gespeichert.\"\n\"Please specify a valid name for your mailbox.\": \"Einen gültigen Namen für Mailbox angeben.\"\n\"Please select a valid swift-mailer configuration.\": \"Eine gültige E-Mail-Konfiguration wählen.\"\n\"Please specify a valid host address.\": \"Bitte geben Sie eine gültige Hostadresse an.\"\n\"Please specify a valid email address.\": \"Bitte geben Sie eine gültige E-Mail-Adresse an.\"\n\"Please enter the associated account password.\": \"Bitte geben Sie das zugehörige Passwort ein.\"\n\"New Saved Reply\": \"Neue gespeicherte Antwort\"\n\"New Category\": \"Neue Kategorie\"\n\"Folder\": \"Mappe\"\n\"Category\": \"Kategorie\"\n\"Created\": \"Erstellt\"\n\"All Articles\": \"Alle Artikel\"\n\"Viewed\": \"Gesehen\"\n\"New Article\": \"Neuer Artikel\"\n\"Thank you for your feedback!\": \"Danke für Ihre Rückmeldung!\"\n\"Was this article helpful?\": \"War dieser Artikel hilfreich?\"\n\"Helpdesk\": \"Helpdesk\"\n\"Support Center\": \"Supportzentrum\"\n\"Mailboxes\": \"Postfächer\"\n\"By\": \"Durch\"\n\"Search Tickets\": \"Tickets suchen\"\n\"Customer Information\": \"Kunde\"\n\"Total Replies\": \"Anzahl Antworten\"\n\"Filter With\": \"Filtern mit\"\n\"Type email to add\": \"E-Mail zum Hinzufügen eingeben\"\n\"Collaborators\": \"Mitarbeiter\"\n\"Labels\": \"Etiketten\"\n\"Group\": \"Gruppe\"\n\"group\": \"Gruppe\"\n\"Contact Team\": \"Team kontaktieren\"\n\"Stay on ticket\": \"Bleiben Sie auf Ticket\"\n\"Redirect to list\": \"Zur Liste umleiten\"\n\"Nothing interesting here...\": \"Noch nichts zu sehen...\"\n\"Previous Ticket\": \"Vorheriges Ticket\"\n\"Next Ticket\": \"Nächstes Ticket\"\n\"Forward\": \"Weiterleiten\"\n\"Note\": \"Hinweis\"\n\"Write a reply\": \"Eine Antwort schreiben\"\n\"Created Ticket\": \"Erstelltes Ticket\"\n\"All Threads\": \"Alle Themen\"\n\"Forwards\": \"Weiterleitungen\"\n\"Notes\": \"Anmerkungen\"\n\"Pinned\": \"Gemerkt\"\n\"Edit Ticket\": \"Ticket bearbeiten\"\n\"Print Ticket\": \"Ticket drucken\"\n\"Mark as Spam\": \"Als Spam markieren\"\n\"Mark as Closed\": \"Als geschlossen markieren\"\n\"Delete Ticket\": \"Ticket löschen\"\n\"View order details from different eCommerce channels\": \"Bestelldetails aus verschiedenen E-Commerce-Kanälen anzeigen\"\n\"ECOMMERCE CHANNELS\": \"ECOMMERCE-KANÄLE\"\n\"Select channel\": \"Kanal auswählen\"\n\"Order Id\": \"Auftragsnummer\"\n\"Fetch Order\": \"Bestellung abrufen\"\n\"No orders have been integrated to this ticket yet.\": \"Zu diesem Ticket wurden noch keine Bestellungen integriert.\"\n\"Enter your credentials below to gain access to your helpdesk account.\": \"Geben Sie unten Ihre Anmeldeinformationen ein, um Zugriff auf Ihr Helpdesk-Konto zu erhalten.\"\n\"Keep me logged in\": \"Angemeldet bleiben\"\n\"Forgot Password?\": \"Passwort vergessen?\"\n\"Log in to your\": \"Melden Sie sich bei Ihrem an.\"\n\"Sign In\": \"Anmelden\"\n\"Edit Customer\": \"Kunden bearbeiten\"\n\"Update\": \"Aktualisieren\"\n\"Discard\": \"Verwerfen\"\n\"Cancel\": \"Stornieren\"\n\"Not Assigned\": \"Nicht zugeordnet\"\n\"Submit\": \"Senden\"\n\"Submit And Open\": \"Senden und Status 'offen'\"\n\"Submit And Pending\": \"Senden und Status 'in Bearbeitung'\"\n\"Submit And Answered\": \"Senden und Status 'beantwortet'\"\n\"Submit And Resolved\": \"Senden und Status 'gelöst'\"\n\"Submit And Closed\": \"Senden und Status 'geschlossen'\"\n\"Choose a Color\": \"Farbe wählen\"\n\"Create\": \"Erstellen\"\n\"Edit Label\": \"Label bearbeiten\"\n\"Add Label\": \"Label hinzufügen\"\n\"To\": \"Bis\"\n\"Ticket\": \"Ticket\"\n\"Your browser does not support JavaScript or You disabled JavaScript, Please enable those !\": \"Ihr Browser unterstützt kein JavaScript oder Sie haben JavaScript deaktiviert, bitte aktivieren Sie diese!\"\n\"Confirm Action\": \"Aktion bestätigen\"\n\"Confirm\": \"Bestätigen\"\n\"No result found\": \"Keine Einträge gefunden\"\n\"ticket delivery status\": \"Ticket Lieferstatus\"\n\"Warning! Select valid image file.\": \"Warnung! Wählen Sie eine gültige Bilddatei.\"\n\"Error\": \"Fehler\"\n\"Save\": \"Speichern\"\n\"SEO\": \"SEO\"\n\"Edit Saved Filter\": \"Gespeicherten Filter bearbeiten\"\n\"Type atleast 2 letters\": \"Geben Sie mindestens 2 Buchstaben ein\"\n\"Remove Label\": \"Label entfernen\"\n\"New Saved Filter\": \"Neuer gespeicherter Filter\"\n\"Is Default\": \"Ist Standard\"\n\"Remove Saved Filter\": \"Gespeicherten Filter entfernen\"\n\"Ticket Info\": \"Ticket Info\"\n\"Last Replied Agent\": \"Letzter geantworteter Agent\"\n\"created Ticket\": \"Ticket erstellt\"\n\"Uploaded Files\": \"Hochgeladene Dateien\"\n\"Download (as .zip)\": \"Herunterladen (als ZIP-Datei)\"\n\"made last reply\": \"Letzte Antwort gemacht\"\n\"N/A\": \"N / A\"\n\"Unassigned\": \"Nicht zugewiesen\"\n\"Label\": \"Etikette\"\n\"Assigned to me\": \"Mir zugewiesen\"\n\"Search Query\": \"Suchanfrage\"\n\"Searching\": \"Suchen\"\n\"Saved Filter\": \"Gespeicherter Filter\"\n\"No Label Created\": \"Kein Label erstellt\"\n\"Label with same name already exist.\": \"Label mit gleichem Namen existiert bereits.\"\n\"Create New\": \"Neu\"\n\"Mail status\": \"Mail Status\"\n\"replied\": \"geantwortet\"\n\"added note\": \"Notiz hinzugefügt\"\n\"forwarded\": \"weitergeleitet\"\n\"TO\": \"AN\"\n\"CC\": \"CC\"\n\"BCC\": \"BCC\"\n\"Locked\": \"Verschlossen\"\n\"Edit Thread\": \"Thread bearbeiten\"\n\"Delete Thread\": \"Thread löschen\"\n\"Unpin Thread\": \"Thread abheften\"\n\"Pin Thread\": \"Thread anheften\"\n\"Unlock Thread\": \"Thread freischalten\"\n\"Lock Thread\": \"Thread sperren\"\n\"Translate Thread\": \"Thread übersetzen\"\n\"Language\": \"Sprache\"\n\"English\": \"Englisch\"\n\"French\": \"Französisch\"\n\"Italian\": \"Italienisch\"\n\"Arabic\": \"Arabisch\"\n\"German\": \"Deutsch\"\n\"Spanish\": \"Spanisch\"\n\"Turkish\": \"Türkisch\"\n\"Danish\": \"Dänisch\"\n\"Chinese\": \"CHINESISCH\"\n\"Polish\": \"POLIEREN\"\n\"Hebrew\": \"Hebrew\"\n\"Portuguese\": \"Portugiesisch\"\n\"System\": \"System\"\n\"Open in Files\": \"In Dateien öffnen\"\n\"Email address is invalid\": \"E-mail Adresse ist nicht korrekt\"\n\"Tag with same name already exist\": \"Tag mit gleichem Namen existiert bereits\"\n\"Text length should be less than 20 charactors\": \"Die Textlänge sollte weniger als 20 Zeichen betragen.\"\n\"Label with same name already exist\": \"Label mit gleichem Namen existiert bereits\"\n\"Agent Name\": \"Agent\"\n\"Agent Email\": \"Agent E-Mail\"\n\"open\": \"offen\"\n\"Currently active agents on ticket\": \"Derzeit aktive Agenten im Ticket\"\n\"Edit Customer Information\": \"Kundenangaben bearbeiten\"\n\"Restore\": \"Wiederherstellen\"\n\"Delete Forever\": \"Unwiederuflich löschen\"\n\"Add Team\": \"Team hinzufügen\"\n\"delete\": \"löschen\"\n\"You didnt have any folder for current filter(s).\": \"Msgstr Sie hatten keinen Ordner für aktuelle Filter.\"\n\"Add Folder\": \"Ordner hinzufügen\"\n\"This field must have valid characters only\": \"Dieses Feld darf nur gültige Zeichen enthalten\"\n\"Can edit task\": \"Kann Aufgabe bearbeiten\"\n\"Can create task\": \"Kann Aufgabe erstellen\"\n\"Can delete task\": \"Kann Aufgabe löschen\"\n\"Can add member to task\": \"Kann Mitglied zur Aufgabe hinzufügen\"\n\"Can remove member from task\": \"Kann Mitglied von Aufgabe entfernen\"\n\"Agent Privileges\": \"Agentenrechte\"\n\"Agent Privilege represents overall permissions in System.\": \"Die Agentenberechtigung repräsentiert die allgemeinen Berechtigungen im System.\"\n\"Ticket View\": \"Ticketansicht\"\n\"User can view tickets based on selected scope.\": \"Der Benutzer kann Tickets basierend auf dem ausgewählten Bereich anzeigen.\"\n\"If individual access then user can View assigned Ticket(s) only, If Team access then user can view all Ticket(s) in team(s) he belongs to and so on\": \"Wenn der Benutzer über einen individuellen Zugriff verfügt, können nur zugewiesene Tickets angezeigt werden. Wenn der Teamzugriff verfügt, kann der Benutzer alle Tickets in Teams anzeigen, denen er angehört, usw.\"\n\"Global Access\": \"Globaler Zugriff\"\n\"Group Access\": \"Gruppenzugriff\"\n\"Team Access\": \"Teamzugang\"\n\"Individual Access\": \"Individueller Zugang\"\n\"This field must have characters only\": \"Dieses Feld darf nur Zeichen enthalten\"\n\"Maximum character length is 40\": \"Maximale Zeichenlänge beträgt 40\"\n\"This is not a valid email address\": \"Dies ist keine gültige e-mail Adresse\"\n\"Password must contains 8 Characters\": \"Passwort muss 8 Zeichen enthalten\"\n\"The passwords does not match\": \"Die Passwörter stimmen nicht überein\"\n\"Enabled\": \"Aktiviert\"\n\"Create Configuration\": \"Konfiguration erstellen\"\n\"Swift Mailer Settings\": \"Swift Mailer-Einstellungen\"\n\"Username\": \"Nutzername\"\n\"Please select a swiftmailer id\": \"Bitte wählen Sie eine swiftmailer ID\"\n\"Please enter a valid e-mail id\": \"Bitte geben Sie eine gültige E-Mail-ID ein\"\n\"Please enter a mailer id\": \"Bitte geben Sie eine Mailer-ID ein\"\n\"Email Id\": \"E-Mail-ID\"\n\"Are you sure? You want to perform this action.\": \"Sind Sie sicher? Sie möchten diese Aktion ausführen.\"\n\"Reorder\": \"Nachbestellen\"\n\"New Workflow\": \"Neuer Workflow\"\n\"OR\": \"ODER\"\n\"AND\": \"UND\"\n\"Please enter a valid name.\": \"Bitte geben Sie einen gültigen Namen ein.\"\n\"Please select a value.\": \"Bitte wählen Sie einen Wert aus.\"\n\"Please add a value.\": \"Bitte addieren Sie einen Wert.\"\n\"This field is required\": \"Dieses Feld wird benötigt\"\n\"or\": \"oder\"\n\"and\": \"und\"\n\"Select a Condition\": \"Wählen Sie eine Bedingung aus\"\n\"Loading...\": \"Wird geladen...\"\n\"Select Option\": \"Option wählen\"\n\"Inactive\": \"Inaktiv\"\n\"New Type\": \"Neuer Typ\"\n\"Placeholders\": \"Platzhalter\"\n\"Ticket Link\": \"Ticket Link\"\n\"Id\": \"Id\"\n\"Preview\": \"Vorschau\"\n\"Sort Order\": \"Sortierung\"\n\"This field must be a number\": \"Dieses Feld muss eine Zahl sein\"\n\"User\": \"Benutzer\"\n\"Edit Group\": \"Gruppe bearbeiten\"\n\"Group Status\": \"Gruppenstatus\"\n\"Group is Active\": \"Gruppe ist aktiv\"\n\"Add Group\": \"Gruppe hinzufügen\"\n\"Contact number is invalid\": \"Kontaktnummer ist ungültig\"\n\"Edit Agent\": \"Agent bearbeiten\"\n\"No Privilege added, Please add Privilege(s) first !\": \"Keine Berechtigungen hinzugefügt, bitte zuerst Berechtigungen hinzufügen!\"\n\"Edit Email Template\": \"E-Mail-Vorlage bearbeiten\"\n\"Edit Workflow\": \"Workflow bearbeiten\"\n\"Save Workflow\": \"Workflow speichern\"\n\"Edit Ticket Type\": \"Ticket-Typ bearbeiten\"\n\"Add Ticket Type\": \"Ticket-Typ hinzufügen\"\n\"Date Released\": \"Freigabedatum\"\n\"Free\": \"Kostenlos\"\n\"Premium\": \"Prämie\"\n\"Installed\": \"Eingerichtet\"\n\"Installed Applications\": \"Installierte Anwendungen\"\n\"Apps Dashboard\": \"Apps-Dashboard\"\n\"Dashboard\": \"Armaturenbrett\"\n\"Nothing Interesting here\": \"Nichts Interessantes hier\"\n\"No Categories Added\": \"Keine Kategorien hinzugefügt\"\n\"ticket\": \"Ticket\"\n\"Add Email Template\": \"E-Mail-Vorlage hinzufügen\"\n\"This field contain 100 characters only\": \"Dieses Feld enthält nur 100 Zeichen\"\n\"This field contain characters only\": \"Dieses Feld enthält nur Zeichen\"\n\"Name length must not be greater than 200 !!\": \"Die Länge des Namens darf 200 nicht überschreiten!\"\n\"Warning! Correct all field values first!\": \"Warnung! Korrigieren Sie zuerst alle Feldwerte!\"\n\"Warning ! This is not a valid request\": \"Warnung! Dies ist keine gültige Anfrage.\"\n\"Success ! Tag removed successfully.\": \"Erfolg! Tag erfolgreich entfernt. \"\n\"Success ! Tags Saved successfully.\": \"Erfolg! Tags wurden erfolgreich gespeichert. \"\n\"Success ! Revision restored successfully.\": \"Erfolg! Revision erfolgreich wiederhergestellt. \"\n\"Success ! Categories updated successfully.\": \"Erfolg! Kategorien wurden erfolgreich aktualisiert. \"\n\"Success ! Article Related removed successfully.\": \"Erfolg! Artikelverwandte erfolgreich entfernt. \"\n\"Success ! Article Related is already added.\": \"Erfolg! Artikel ist bereits hinzugefügt. \"\n\"Success ! Cannot add self as relative article.\": \"Erfolg! Ich kann mich nicht als relativen Artikel hinzufügen. \"\n\"Success ! Article Related updated successfully.\": \"Erfolg! Artikelverwandt erfolgreich aktualisiert. \"\n\"Success ! Articles removed successfully.\": \"Erfolg! Artikel erfolgreich entfernt. \"\n\"Success ! Article status updated successfully.\": \"Erfolg! Artikelstatus erfolgreich aktualisiert. \"\n\"Success ! Article star updated successfully.\": \"Erfolg! Artikelstern erfolgreich aktualisiert. \"\n\"Success! Article updated successfully\": \"Erfolg! Artikel erfolgreich aktualisiert\"\n\"Success ! Category sort  order updated successfully.\": \"Erfolg! Sortierreihenfolge der Kategorie erfolgreich aktualisiert. \"\n\"Success ! Category status updated successfully.\": \"Erfolg! Kategoriestatus erfolgreich aktualisiert. \"\n\"Success ! Folders updated successfully.\": \"Erfolg! Ordner wurden erfolgreich aktualisiert. \"\n\"Success ! Categories removed successfully.\": \"Erfolg! Kategorien wurden erfolgreich entfernt. \"\n\"Success ! Category updated successfully.\": \"Erfolg! Kategorie erfolgreich aktualisiert. \"\n\"Error ! Category is not exist.\": \"Fehler! Kategorie ist nicht vorhanden. \"\n\"Warning ! Customer Login disabled by admin.\": \"Warnung! Kunden-Login vom Administrator deaktiviert. \"\n\"This Email is not registered with us.\": \"Diese E-Mail ist bei uns nicht registriert.\"\n\"Your password has been updated successfully.\": \"Passwort wurde erfolgreich aktualisiert.\"\n\"Password dont match.\": \"Passwort stimmt nicht überein.\"\n\"Error ! Profile image is not valid, please upload a valid format\": \"Fehler! Profilbild ist ungültig. Bitte laden Sie ein gültiges Format hoch. \"\n\"Success! Folder has been added successfully.\": \"Erfolg! Ordner wurde erfolgreich hinzugefügt. \"\n\"Folder updated successfully.\": \"Ordner erfolgreich aktualisiert.\"\n\"Success ! Folder status updated successfully.\": \"Erfolg! Ordnerstatus erfolgreich aktualisiert. \"\n\"Error ! Folder is not exist.\": \"Fehler! Ordner ist nicht vorhanden. \"\n\"Success ! Folder updated successfully.\": \"Erfolg! Ordner erfolgreich aktualisiert. \"\n\"Error ! Folder does not exist.\": \"Fehler! Ordner existiert nicht. \"\n\"Success ! Folder deleted successfully.\": \"Erfolg! Ordner erfolgreich gelöscht. \"\n\"Warning ! Folder doesnt exists!\": \"Warnung! Ordner existiert nicht!\"\n\"Warning ! Cannot create ticket, given email is blocked by admin.\": \"Warnung! Ticket kann nicht erstellt werden, da die angegebene E-Mail-Adresse vom Administrator blockiert wird. \"\n\"Success ! Ticket has been created successfully.\": \"Erfolg! Ticket wurde erfolgreich erstellt. \"\n\"Warning ! Can not create ticket, invalid details.\": \"Warnung! Ticket kann nicht erstellt werden, ungültige Angaben. \"\n\"Warning ! Post size can not exceed 25MB\": \"Warnung! Die Postgröße darf 25 MB nicht überschreiten.\"\n\"Create Ticket Request\": \"Ticket erstellen\"\n\"Success ! Reply added successfully.\": \"Erfolgreich! Antwort erfolgreich hinzugefügt.\"\n\"Warning ! Reply field can not be blank.\": \"Warnung! Das Antwortfeld darf nicht leer sein.\"\n\"Success ! Rating has been successfully added.\": \"Erfolg! Die Bewertung wurde erfolgreich hinzugefügt. \"\n\"Warning ! Invalid rating.\": \"Warnung! Ungültige Bewertung. \"\n\"Error ! Can not add customer as a collaborator.\": \"Fehler! Kunde kann nicht als Mitbearbeiter hinzugefügt werden. \"\n\"Success ! Collaborator added successfully.\": \"Erfolg! Mitbearbeiter erfolgreich hinzugefügt. \"\n\"Error ! Collaborator is already added.\": \"Fehler! Der Mitbearbeiter wurde bereits hinzugefügt. \"\n\"Success ! Collaborator removed successfully.\": \"Erfolg! Mitbearbeiter erfolgreich entfernt. \"\n\"Error ! Invalid Collaborator.\": \"Fehler! Ungültiger Mitbearbeiter. \"\n\"An unexpected error occurred. Please try again later.\": \"Ein unerwarteter Fehler ist aufgetreten. Bitte versuchen Sie es später noch einmal. \"\n\"Feedback saved successfully.\": \"Feedback erfolgreich gespeichert.\"\n\"Feedback updated successfully.\": \"Feedback erfolgreich aktualisiert.\"\n\"Invalid feedback provided.\": \"Ungültiges Feedback angegeben.\"\n\"Article not found.\": \"Artikel nicht gefunden.\"\n\"You need to login to your account before can perform this action.\": \"Sie müssen sich bei Ihrem Konto anmelden, bevor Sie diese Aktion ausführen können.\"\n\"Warning! Please add valid Actions!\": \"Warnung! Bitte gültige Aktionen hinzufügen! \"\n\"Warning! In Free Plan you can not change Events!\": \"Warnung! In Free Plan können Sie keine Events ändern! \"\n\"Success! Prepared Response has been updated successfully.\": \"Erfolg! Die vorbereitete Antwort wurde erfolgreich aktualisiert. \"\n\"Success! Prepared Response has been added successfully.\": \"Erfolg! Die vorbereitete Antwort wurde erfolgreich hinzugefügt. \"\n\"Warning  This is not a valid request\": \"Warnung Dies ist keine gültige Anfrage\"\n\"Use Default Colors\": \"Standardfarben verwenden\"\n\"Masonry\": \"Mauerwerk\"\n\"Popular Article\": \"Populärer Artikel\"\n\"Manage Ticket Custom Fields\": \"Benutzerdefinierte Ticketfelder verwalten\"\n\"You dont have premission to edit this Prepared response\": \"Sie haben keine Berechtigung, diese vorbereitete Antwort zu bearbeiten.\"\n\"Save Prepared Response\": \"Vorbereitete Antwort speichern\"\n\"Success ! Prepared response removed successfully.\": \"Erfolg! Vorbereitete Antwort erfolgreich entfernt. \"\n\"Warning! You are not allowed to perform this action.\": \"Warnung! Sie dürfen diese Aktion nicht ausführen. \"\n\"Success! Workflow has been updated successfully.\": \"Erfolg! Der Workflow wurde erfolgreich aktualisiert. \"\n\"Success! Workflow has been added successfully.\": \"Erfolg! Workflow wurde erfolgreich hinzugefügt. \"\n\"Success! Order has been updated successfully.\": \"Erfolg! Bestellung wurde erfolgreich aktualisiert. \"\n\"Success! Workflow has been removed successfully.\": \"Erfolg! Workflow wurde erfolgreich entfernt. \"\n\"Mailbox successfully created.\": \"Postfach erfolgreich erstellt.\"\n\"Mailbox successfully updated.\": \"Postfach erfolgreich aktualisiert.\"\n\"Warning ! Bad request !\": \"Warnung! Ungültige Anfrage!\"\n\"Error! Given current password is incorrect.\": \"Fehler! Das angegebene aktuelle Passwort ist falsch. \"\n\"Success ! Profile update successfully.\": \"Erfolg! Profil erfolgreich aktualisiert. \"\n\"Error ! User with same email is already exist.\": \"Fehler! Benutzer mit derselben E-Mail-Adresse ist bereits vorhanden. \"\n\"Success ! Agent updated successfully.\": \"Erfolg! Agent erfolgreich aktualisiert. \"\n\"Success ! Agent removed successfully.\": \"Erfolg! Agent erfolgreich entfernt. \"\n\"Warning ! You are allowed to remove account owners account.\": \"Warnung! Sie dürfen das Konto des Kontoinhabers entfernen.\"\n\"Error ! Invalid user id.\": \"Fehler! Ungültige Benutzer-ID.\"\n\"Success ! Filter has been saved successfully.\": \"Erfolgreich! Filter wurde erfolgreich gespeichert.\"\n\"Success ! Filter has been updated successfully.\": \"Erfolgreich! Filter wurde erfolgreich aktualisiert.\"\n\"Success ! Filter has been removed successfully.\": \"Erfolgreich! Filter wurde erfolgreich entfernt.\"\n\"Please check your mail for password update.\": \"Bitte überprüfen Sie Ihre E - Mails auf Passwortaktualisierung.\"\n\"This Email address is not registered with us.\": \"Diese E-Mail-Adresse ist bei uns nicht registriert.\"\n\"Success ! Customer saved successfully.\": \"Erfolgreich! Kunde erfolgreich gespeichert.\"\n\"Error ! User with same email already exist.\": \"Fehler! Benutzer mit derselben E-Mail existiert bereits.\"\n\"Success ! Customer information updated successfully.\": \"Erfolgreich! Kundenangaben wurden erfolgreich aktualisiert.\"\n\"Success ! Customer updated successfully.\": \"Erfolgreich! Kunde erfolgreich aktualisiert.\"\n\"Error ! Customer with same email already exist.\": \"Fehler! Kunde mit derselben E-Mail existiert bereits.\"\n\"unstarred Action Completed successfully\": \"nicht markierte Aktion erfolgreich abgeschlossen\"\n\"starred Action Completed successfully\": \"markierte Aktion erfolgreich abgeschlossen\"\n\"Success ! Customer removed successfully.\": \"Erfolgreich! Kunde erfolgreich entfernt.\"\n\"Error ! Invalid customer id.\": \"Fehler! Ungültige Kunden-ID.\"\n\"Success! Template has been updated successfully.\": \"Erfolg! Vorlage wurde erfolgreich aktualisiert.\"\n\"Success! Template has been added successfully.\": \"Erfolg! Vorlage wurde erfolgreich hinzugefügt.\"\n\"Success! Template has been deleted successfully.\": \"Erfolg! Vorlage wurde erfolgreich gelöscht.\"\n\"Warning! resource not found.\": \"Warnung! Ressource nicht gefunden.\"\n\"Warning! You can not remove predefined email template which is being used in workflow(s).\": \"Warnung! Sie können vordefinierte E-Mail-Vorlagen, die in Workflows verwendet werden, nicht entfernen.\"\n\"Success ! Email settings are updated successfully.\": \"Erfolgreich! E-Mail-Einstellungen wurden erfolgreich aktualisiert.\"\n\"Success ! Group information updated successfully.\": \"Erfolgreich! Gruppeninformationen wurden erfolgreich aktualisiert.\"\n\"Success ! Group information saved successfully.\": \"Erfolgreich! Gruppeninformationen erfolgreich gespeichert.\"\n\"Support Group removed successfully.\": \"Support Group erfolgreich entfernt.\"\n\"Success ! Privilege information saved successfully.\": \"Erfolgreich! Berechtigungsinformationen erfolgreich gespeichert.\"\n\"Privilege updated successfully.\": \"Privileg erfolgreich aktualisiert.\"\n\"Support Privilege removed successfully.\": \"Msgstr Support - Berechtigung erfolgreich entfernt.\"\n\"Success! Reply has been updated successfully.\": \"Erfolgreich! Die Antwort wurde erfolgreich aktualisiert.\"\n\"Success! Reply has been added successfully.\": \"Erfolgreich! Antwort wurde erfolgreich hinzugefügt.\"\n\"Success! Saved Reply has been deleted successfully\": \"Erfolgreich! Gespeicherte Antwort wurde erfolgreich gelöscht\"\n\"SwiftMailer configuration updated successfully.\": \"Die SwiftMailer-Konfiguration wurde erfolgreich aktualisiert.\"\n\"Swiftmailer configuration removed successfully.\": \"Msgstr Swiftmailer - Konfiguration erfolgreich entfernt.\"\n\"Success ! Team information saved successfully.\": \"Erfolg! Teaminformationen erfolgreich gespeichert.\"\n\"Success ! Team information updated successfully.\": \"Erfolgreich! Die Teaminformationen wurden erfolgreich aktualisiert.\"\n\"Support Team removed successfully.\": \"Msgstr Support - Team erfolgreich entfernt.\"\n\"Success! Reply has been added successfully\": \"Erfolgreich! Antwort wurde erfolgreich hinzugefügt\"\n\"Success ! Thread updated successfully.\": \"Erfolgreich! Thread erfolgreich aktualisiert.\"\n\"Error ! Reply field can not be blank.\": \"Fehler! Das Antwortfeld darf nicht leer sein.\"\n\"Success ! Thread removed successfully.\": \"Erfolgreich! Thread erfolgreich entfernt.\"\n\"Success ! Thread locked successfully\": \"Erfolg! Thread erfolgreich gesperrt\"\n\"Success ! Thread unlocked successfully\": \"Erfolg! Thread erfolgreich entsperrt\"\n\"Success ! Thread pinned successfully\": \"Erfolg! Thread erfolgreich gepinnt\"\n\"Error ! Invalid thread.\": \"Fehler! Ungültiger Thread.\"\n\"Could not create ticket, invalid details.\": \"Ticket konnte nicht erstellt werden, ungültige Angaben.\"\n\"Success ! Tag updated successfully.\": \"Erfolgreich! Tag erfolgreich aktualisiert.\"\n\"Error ! Customer can not be added as collaborator.\": \"Fehler! Kunde kann nicht als Mitbearbeiter hinzugefügt werden.\"\n\"Success ! Tag unassigned successfully.\": \"Erfolgreich! Tag nicht erfolgreich zugewiesen.\"\n\"Success ! Tag added successfully.\": \"Erfolgreich! Tag erfolgreich hinzugefügt.\"\n\"Please enter tag name.\": \"Bitte geben Sie den Tag-Namen ein.\"\n\"Error ! Invalid tag.\": \"Fehler! Ungültiges Tag.\"\n\"Success ! Type removed successfully.\": \"Erfolgreich! Typ erfolgreich entfernt.\"\n\"Success ! Ticket to label removed successfully.\": \"Erfolg! Ticket zum Etikett erfolgreich entfernt.\"\n\"Unable to retrieve support team details\": \"Support-Team-Details können nicht abgerufen werden\"\n\"Ticket support group updated successfully\": \"Ticket Support Group erfolgreich aktualisiert\"\n\"Unable to retrieve status details\": \"Statusdetails können nicht abgerufen werden\"\n\"Insufficient details provided.\": \"Msgstr Unzureichende Angaben gemacht.\"\n\"Error! Subject field is mandatory\": \"Fehler! Betreff ist Pflichtfeld\"\n\"Error! Reply field is mandatory\": \"Fehler! Antwortfeld ist obligatorisch\"\n\"Success ! Ticket has been updated successfully.\": \"Erfolg! Ticket wurde erfolgreich aktualisiert.\"\n\"Success ! Label updated successfully.\": \"Erfolgreich! Label erfolgreich aktualisiert.\"\n\"Error ! Invalid label id.\": \"Fehler! Ungültige Label-ID.\"\n\"Success ! Label removed successfully.\": \"Erfolg! Label erfolgreich entfernt.\"\n\"Success ! Label created successfully.\": \"Erfolg! Label erfolgreich erstellt.\"\n\"Error ! Label name can not be blank.\": \"Fehler! Der Labelname darf nicht leer sein.\"\n\"Success ! Ticket moved to trash successfully.\": \"Erfolgreich! Ticket wurde erfolgreich in den Papierkorb verschoben.\"\n\"Success! Ticket type saved successfully.\": \"Erfolgreich! Ticket-Typ erfolgreich gespeichert.\"\n\"Success! Ticket type updated successfully.\": \"Erfolgreich! Ticket-Typ erfolgreich aktualisiert.\"\n\"Error! Ticket type with same name already exist\": \"Fehler! Ticket-Typ mit gleichem Namen existiert bereits\"\n\"SAVE\": \"SPEICHERN\"\n\"# Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A pages title tag and meta description are usually shown whenever that page appears in search engine results\": \"Titel-Tags und Meta-Beschreibungen sind Teile des HTML-Codes im Header einer Webseite. Sie helfen Suchmaschinen, den Inhalt einer Seite zu verstehen. Das Titel-Tag und die Meta-Beschreibung einer Seite werden normalerweise angezeigt, wenn diese Seite in Suchmaschinenergebnissen angezeigt wird\"\n\n# Successfully Pop-up/Notification Messages:\n\"Ticket is already assigned to agent\" : \"Das Ticket ist bereits dem Agenten zugewiesen\"\n\"Success ! Agent assigned successfully.\" : \"Erfolg ! Agent erfolgreich zugewiesen.\"\n\"Ticket status is already set\" : \"Der Ticketstatus ist bereits festgelegt\"\n\"Success ! Tickets status updated successfully.\" : \"Erfolg ! Ticketstatus erfolgreich aktualisiert.\"\n\"Ticket priority is already set\" : \"Die Ticketpriorität ist bereits festgelegt\"\n\"Success ! Tickets priority updated successfully.\" : \"Erfolg ! Ticketpriorität erfolgreich aktualisiert.\"\n\"Ticket group is updated successfully\" : \"Die Ticketgruppe wurde erfolgreich aktualisiert\"\n\"Ticket is already assigned to group\" : \"Ticket ist bereits der Gruppe zugewiesen\"\n\"Success ! Tickets group updated successfully.\" : \"Erfolg ! Ticketgruppe erfolgreich aktualisiert.\"\n\"Ticket team is updated successfully\" : \"Das Ticketteam wurde erfolgreich aktualisiert\"\n\"Ticket is already assigned to team\" : \"Ticket ist dem Team bereits zugewiesen\"\n\"Success ! Tickets team updated successfully.\" : \"Erfolg ! Das Ticketteam wurde erfolgreich aktualisiert.\"\n\"Ticket type is already set\" : \"Der Tickettyp ist bereits festgelegt\"\n\"Success ! Tickets type updated successfully.\" : \"Erfolg ! Tickettyp erfolgreich aktualisiert.\"\n\"Success ! Tickets label updated successfully.\" : \"Erfolg ! Ticketetikett erfolgreich aktualisiert.\"\n\"Success ! Tickets added to label successfully.\" : \"Erfolg ! Tickets erfolgreich zum Label hinzugefügt.\"\n\"Success ! Tickets moved to trashed successfully.\" : \"Erfolg ! Tickets wurden erfolgreich in den Papierkorb verschoben.\"\n\"Success ! Tickets removed successfully.\" : \"Erfolg ! Tickets erfolgreich entfernt.\"\n\"Success ! Tickets restored successfully.\" : \"Erfolg ! Tickets erfolgreich wiederhergestellt.\"\n\"Unable to retrieve group details\" : \"Gruppendetails können nicht abgerufen werden\"\n\"Unable to retrieve team details\" : \"Teamdetails können nicht abgerufen werden\"\n\"Tickets details have been updated successfully\": \"Ticketdetails wurden erfolgreich aktualisiert\"\n\"Label added to ticket successfully\" : \"Label erfolgreich zum Ticket hinzugefügt\"\t\t\t\t\n\"Label already added to ticket\" : \"Label bereits zum Ticket hinzugefügt\"\n\n#customer page\n\"New Ticket Request\": \"Ticket erstellen\"\n\"Ticket Requests\": \"Tickets\"\n\"Tickets have been updated successfully\": \"Tickets wurden erfolgreich aktualisiert\"\n\"Please check your mail for password update\": \"Bitte überprüfen Sie Ihre E-Mails auf Passwort-Update\"\n\"This email address is not registered with us\": \"Diese E-Mail-Adresse ist nicht bei uns registriert\"\n\"You have already update password using this link if you wish to change password again click on forget password link here from login page\": \"Sie haben das Passwort bereits über diesen Link aktualisiert, wenn Sie das Passwort erneut ändern möchten. Klicken Sie hier auf der Anmeldeseite auf den Link Passwort vergessen\"\n\"Your password has been successfully updated. Login using updated password\": \"Ihr Passwort wurde erfolgreich aktualisiert. Melden Sie sich mit dem aktualisierten Passwort an\"\n\"Please try again, The passwords do not match\": \"Bitte versuchen Sie es erneut. Die Passwörter stimmen nicht überein\"\n\"Support Privilege removed successfully\": \"Support-Berechtigung erfolgreich entfernt\"\n\"Success! Saved Reply has been deleted successfully.\": \"Erfolg! Gespeicherte Antwort wurde erfolgreich gelöscht.\"\n\"SwiftMailer configuration created successfully.\": \"SwiftMailer-Konfiguration erfolgreich erstellt.\"\n\"No swiftmailer configurations found for mailer id:\": \"Für die Mailer-ID wurden keine Swiftmailer-Konfigurationen gefunden\"\n\"Reply content cannot be left blank.\": \"Der Antwortinhalt darf nicht leer bleiben.\"\n\"Reply added to the ticket and forwarded successfully.\": \"Antwort zum Ticket hinzugefügt und erfolgreich weitergeleitet.\"\n\"Success ! Thread pinned successfully.\": \"Erfolg! Thread erfolgreich gepinnt.\"\n\"Success ! unpinned removed successfully.\": \"Erfolg! nicht fixiert erfolgreich entfernt.\"\n\"Unable to retrieve priority details\": \"Prioritätsdetails können nicht abgerufen werden\"\n\"Ticket support team updated successfully\": \"Ticket-Support-Team erfolgreich aktualisiert\"\n\"Ticket assigned to support group \": \"Ticket der Support-Gruppe zugewiesen\"\n\"Mailbox configuration removed successfully.\": \"Postfachkonfiguration erfolgreich entfernt.\"\n\"visit our website\": \"unsere Webseite besuchen\"\n\"Cookie Usage Policy\": \"Cookie-Verwendungsrichtlinien\"\n\"cookie\": \"Cookie\"\n\"cookies\": \"Cookies\"\n\"HELP\": \"HILFE\"\n\"Home\": \"Startseite\"\n\"Cookie Policy\": \"Cookie-Richtlinie\"\n\"Prev\": \"Zurück\"\n\"Ticket query message\": \"Beschreibung\"\n\"Select type\": \"Typ wählen\"\n\"Search KnowledgeBase\": \"Suchen in Wissensbasis\"\n\"You cant merge an account with itself.\": \"Konto kann nicht mit sich selbst zusammengeführt werden.\"\n\"Edit Profile\": \"Profil bearbeiten\"\n\"Customer Login\": \"Kundenlogin\"\n\"Contact Us\": \"Kontaktiere uns\"\n\"If you have ever contacted our support previously, your account would have already been created.\": \"Wenn Sie schon einmal Kontakt mit unserem Support aufgenommen haben, wurde Ihr Konto bereits erstellt.\"\n\"support\": \"Support\"\n\"HelpDesk\": \"HelpDesk\"\n\"Enter search keyword\": \"Suchbegriff eingeben\"\n\"Browse via Folders\": \"Über Ordner browsen\"\n\"Looking for something that is queried generally? Choose a relevant folder from below to explore possible solutions\": \"Suchen Sie etwas, das allgemein abgefragt wird? Wählen Sie einen relevanten Ordner aus, um nach möglichen Lösungen zu suchen\"\n\"Unable to find an answer?\": \"Keine Antwort gefunden?\"\n\"Looking for anything specific article which resides in general queries? Just browse the various relevant folders and categories and then you will find the desired article.\": \"Suchen Sie nach einem bestimmten Artikel, der sich in allgemeinen Fragen befindet? Durchsuchen Sie einfach die verschiedenen relevanten Ordner und Kategorien und finden Sie den gewünschten Artikel.\"\n\"Popular Articles\": \"populäre Artikel\"\n\"Here are some of the most popular articles, which helped number of users to get their queries and questions resolved.\": \"Im Folgenden finden Sie einige der beliebtesten Artikel, mit deren Hilfe die Anzahl der Benutzer ihre Fragen und Probleme gelöst hat.\"\n\"Browse via Categories\": \"Durchsuchen Sie die Kategorien\"\n\"Looking for something specific? Choose a relevant category from below to explore possible solutions\": \"Auf der Suche nach etwas Bestimmtem? Wählen Sie eine relevante Kategorie aus, um nach möglichen Lösungen zu suchen\"\n\"No Categories Found!\": \"Keine Kategorien gefunden\"\n\"Powered by\": \"Unterstützt von\"\n\"Powered by %uvdesk%, an open-source project by %webkul%.\": \"Mogelijk gemaakt door %uvdesk%, een open-sourceproject van %webkul%.\"\n\n#forgotpassword\n\"Forgot Password\": \"Passwort vergessen\"\n\"Enter your email address and we will send you an email with instructions to update your login credentials.\": \"E-Mail eingeben um die Anmeldung wiederherzustellen\"\n\"Send Mail\": \"Mail senden\"\n\"Status:\": \"Status:\"\n\"Sign In to %websitename%\": \"Anmelden bei %websitename%\"\n\"Enter your name\": \"Name eingeben\"\n\"Enter your email\": \"E-Mail Adresse eingeben\"\n\"Learn more about %deliveryStatus%.\": \"Lerne mehr über %deliveryStatus%.\"\n\"Some of our site pages utilize %cookies% and other tracking technologies. A %cookie% is a small text file that may be used, for example, to collect information about site activity. Some cookies and other technologies may serve to recall personal information previously indicated by a site user. You may block cookies, or delete existing cookies, by adjusting the appropriate setting on your browser. Please consult the %help% menu of your browser to learn how to do this. If you block or delete %cookies% you may find the usefulness of our site to be impaired.\": \"Einige unserer Seiten verwenden %cookies% und andere Tracking-Technologien. Ein %cookie% ist eine kleine Textdatei, die beispielsweise zum Sammeln von Informationen über Site-Aktivitäten verwendet werden kann. Einige %cookies% und andere Technologien können dazu dienen, persönliche Informationen abzurufen, die zuvor von einem Website-Benutzer angegeben wurden. Sie können %cookies% blockieren oder vorhandene %cookies% löschen, indem Sie die entsprechende Einstellung in Ihrem Browser vornehmen. Bitte konsultieren Sie das %help%-Menü Ihres Browsers, um zu erfahren, wie Sie dies tun können. Wenn Sie %cookies% blockieren oder löschen, kann die Nützlichkeit unserer Website beeinträchtigt werden.\"\n\"To know more about how our privacy policy works, please %websiteLink%.\": \"Weitere Informationen zur Funktionsweise unserer Datenschutzbestimmungen erhalten Sie auf %websiteLink%.\"\n\"This field contain maximum 40 charectures.\": \"Dieses Feld enthält maximal 40 Zeichen.\"\n\"This field contain maximum 50 charectures.\": \"Dieses Feld enthält maximal 50 Zeichen.\"\n\"Time\": \"Zeit\"\n\"Links\": \"Links\"\n\"Broadcast Message\": \"Schlagzeile\"\n\"Wide Logo\": \"Logo breit\"\n\"Upload an Image (200px x 48px) in</br> PNG or JPG Format\": \"Bild hochladen (200px x 48px)</br>PNG oder JPG Format\"\n\"It will be shown as Logo on Knowledgebase and Helpdesk\": \"Logo in Wissensbasis und Helpdesk\"\n\"Enable front end website and knowledgebase for customer(s)\": \"Frontend und Wissensbasis für Kunden erlauben\"\n\"Brand Color\": \"Marken-Farbe\"\n\"Page Background Color\": \"Seiten-Hintergrundfarbe\"\n\"Header Background Color\": \"Header Hintergrundfarbe\"\n\"Banner Background Color\": \"Banner Hintergrundfarbe\"\n\"Page Link Color\": \"Seitenlink Farbe\"\n\"Page Link Hover Color\": \"Seitenlink Hover Farbe\"\n\"Article Text Color\": \"Artikel-Textfarbe\"\n\"Tag Line\": \"Tag Line\"\n\"Hi! how can we help?\": \"Wie können wir helfen?\"\n\"Layout\": \"Layout\"\n\"Ticket Create Option\": \"Ticket Erfassen Option\"\n\"Login Required To Create Tickets\": \"Anmeldung notwendig für neue Tickets\"\n\"Remove Customer Login/Signin Button\": \"Kundenanmeldung Button entfernen\"\n\"Disable Customer Login\": \"Kundenanmeldung deaktivieren\"\n\"Meta Description (Recommended)\": \"Meta Beschreibung (empfohlen)\"\n\"Meta Keywords (Recommended)\": \"Meta Schlüsselwörter (empfohlen)\"\n\"Header Link\": \"Header Link\"\n\"URL (with http:// or https://)\": \"URL (http:// oder https://)\"\n\"Footer Link\": \"Footer Link\"\n\"Custom CSS (Optional)\": \"Custom CSS (Optional)\"\n\"It will be add to the frontend knowledgebase only\": \"Wird nur in Frontend Wissensbasis hinzugefügt\"\n\"Custom Javascript (Optional)\": \"Custom Javascript (Optional)\"\n\"Broadcast message content to show on helpdesk\": \"Schlagzeile wird im Helpdesk angezeigt\"\n\"From\": \"Von\"\n\"Time duration between which message will be displayed(if applicable)\": \"Zeitspanne in der die Schlagzeile gezeigt wird\"\n\"Broadcasting Status\": \"Schlagzeilestatus\"\n\"Broadcasting is Active\": \"Schlagzeile aktiv\"\n\"Choose a default company timezone\": \"Standard-Zeitzone wählen\"\n\"Date Time Format\": \"Datumsformat\"\n\"Choose a format to convert date to specified date time format\": \"Format wählen\"\n\"An empty file is not allowed.\": \"Leere Datei nicht erlaubt\"\n\"File size must not be greater than 200KB !!\": \"Dateigrösse darf nicht 200KB überschreiten\"\n\"Please upload valid Image file (Only JPEG, JPG, PNG allowed)!!\": \"Bilddatei hochladen (nur JPEG, JPG, PNG erlaubt)\"\n'comma \",\" separated': 'Kommagetrennt'\n\"Provide a valid url(with protocol)\": \"Gültige URL (mit Protokoll)\"\n\"Low\": \"Niedrig\"\n\"Medium\": \"Mittel\"\n\"High\": \"Hoch\"\n\"Urgent\": \"Dringend\"\n\"Reset Password\": \"Passwort zurücksetzen\"\n\"Enter your new password below to update your login credentials\": \"Geben Sie unten Ihr neues Passwort ein, um Ihre Anmeldeinformationen zu aktualisieren\"\n\"Save Password\": \"Passwort speichern\"\n\"Rate Support\": \"Bewerten Sie Support\"\n\"I am very Sad\": \"Ich bin sehr traurig\"\n\"I am Sad\": \"Ich bin traurig\"\n\"I am Neutral\": \"Ich bin neutral\"\n\"I am Happy\": \"Ich bin fröhlich\"\n\"I am Very Happy\": \"Ich bin sehr glücklich\"\n\"Kudos\": \"Respekt\"\n\"kudos\": \"Respekt\"\n\"Very Sad\": \"Sehr traurig\"\n\"Sad\": \"Traurig\"\n\"Neutral\": \"Neutral\"\n\"Happy\": \"glücklich\"\n\"Very Happy\": \"Sehr glücklich\"\n\"Star(s)\": \"Sterne\"\n\"Warning ! Swiftmailer not working. An error has occurred while sending emails!\" : \"Warnung ! Swiftmailer funktioniert nicht. Beim Senden von E-Mails ist ein Fehler aufgetreten!\"\n\"Invalid credentials.\": \"Ungültige Zugangsdaten\"\n\"Success ! Project cache cleared successfully.\": \"Erfolg ! Projektcache erfolgreich gelöscht.\"\n\"clear cache\": \"Cache leeren\"\n\"Last Updated\": \"Letzte Aktualisierung\"\n\"Error! Something went wrong.\": \"Fehler! Etwas ist schief gelaufen.\"\n\"We were not able to find the page you are looking for.\": \"Wir konnten die von Ihnen gesuchte Seite nicht finden.\"\n\"Page not found\": \"Seite nicht gefunden\"\n\"Forbidden\": \"Verboten\"\n\"You don’t have the necessary permissions to access this Web page :(\": \"Sie haben nicht die erforderlichen Berechtigungen, um auf diese Webseite zuzugreifen :(\"\n\"Internal server error\": \"Interner Serverfehler\"\n\"Our system has goofed up for a while, but good part is it won't last long\": \"Unser System hat eine Weile vermasselt, aber das Gute daran ist, es wird nicht lange halten\"\n\"Unknown Error\": \"Unbekannter Fehler\"\n\"We are quite confused about how did you land here:/\": \"Wir sind ziemlich verwirrt darüber, wie du hier gelandet bist :/\"\n\"Few of the links which may help you to get back on the track -\": \"Einige der Links, die Ihnen helfen können, wieder auf die Spur zu kommen -\"\n\n#Microsoft apps:\n\"Microsoft Apps\": \"Microsoft-Apps\"\n\"Add a Microsoft app\": \"Fügen Sie eine Microsoft-App hinzu\"\n\"Enable\": \"Ermöglicht\"\n\"App Name\": \"App Name\"\n\"Tenant Id\": \"Mieter-ID\"\n\"Client Id\": \"Kunden ID\"\n\"Client Secret\": \"Client-Geheimnis\"\n\"NEW APP:\": \"NEUE APP\"\n\"UPDATE APP\": \"APP AKTUALISIEREN\"\n\"Guide on creating a new app in Azure Active Directory:\": \"Leitfaden zum Erstellen einer neuen App in Azure Active Directory:\"\n\"To add a new Microsoft App to your azure active directory, follow the steps as given below:\": \"Führen Sie die folgenden Schritte aus, um Ihrem Azure Active Directory eine neue Microsoft-App hinzuzufügen:\"\n\"Go to Azure Active Directory -> App registerations\": \"Gehen Sie zu Azure Active Directory -> App-Registrierungen\"\n\"Disable\": \"Deaktivieren\"\n\"Please enter a valid name for your app.\": \"Bitte geben Sie einen gültigen Namen für Ihre App ein.\"\n\"Please enter a valid tenant id.\": \"Bitte geben Sie eine gültige Mandanten-ID ein.\"\n\"Please enter a valid client id.\": \"Bitte geben Sie eine gültige Client-ID ein.\"\n\"Please enter a valid client secret.\": \"Bitte geben Sie ein gültiges Client-Secret ein.\"\n\"Microsoft app settings\": \"Microsoft-App-Einstellungen\"\n\"Unverified\": \"Unbestätigt\"\n\"Microsoft app has been updated successfully.\": \"Die Microsoft-App wurde erfolgreich aktualisiert.\"\n\"No microsoft apps found\": \"Keine Microsoft-Apps gefunden\"\n\"Microsoft app settings could not be verifired successfully. Please check your settings and try again later.\": \"Die Microsoft-App-Einstellungen konnten nicht erfolgreich überprüft werden. Bitte überprüfen Sie Ihre Einstellungen und versuchen Sie es später erneut.\"\n\"Microsoft app has been integrated successfully.\": \"Die Microsoft-App wurde erfolgreich gelöscht.\"\n\"Microsoft app has been deleted successfully.\": \"Die Microsoft-App wurde erfolgreich integriert.\"\n\"Verified\": \"Verifiziert\"\n\n\"Create a New Registration\": \"Erstellen Sie eine neue Registrierung\"\n\"Enter your app details as following:\": \"Geben Sie Ihre App-Details wie folgt ein:\"\n\"App Name: Enter an app name to easily help you identify its purpose\": \"App-Name: Geben Sie einen App-Namen ein, damit Sie den Zweck leicht identifizieren können\"\n\"Supported Account Types: Select whichever option works the best for you (Recommended: Accounts in any organizational directory and personal Microsoft accounts)\": \"Unterstützte Kontotypen: Wählen Sie die Option aus, die für Sie am besten geeignet ist (Empfohlen: Konten in einem beliebigen Organisationsverzeichnis und persönliche Microsoft-Konten)\"\n\"Redirect URI:\": \"Umleitungs-URI:\"\n\"Select Platform: Web\": \"Wählen Sie Plattform: Web\"\n\"Enter the following redirect uri:\": \"Geben Sie die folgende Umleitungs-URI ein:\"\n\"Proceed to create your application\": \"Fahren Sie mit der Erstellung Ihrer Anwendung fort\"\n\"Once your app has been created, in your app overview section, continue with adding a client credential by clicking on \\\"Add a certificate or secret\\\"\": \"Sobald Ihre App erstellt wurde, fahren Sie in Ihrem App-Übersichtsbereich mit dem Hinzufügen von Client-Anmeldeinformationen fort, indem Sie auf „Zertifikat oder Geheimnis hinzufügen“ klicken.\"\n\"Create a new client secret\": \"Erstellen Sie ein neues Clientgeheimnis\"\n\"Enter a description as per your preference to help identify the purpose of this client secret\": \"Geben Sie eine Beschreibung nach Ihren Wünschen ein, um den Zweck dieses geheimen Clientschlüssels zu identifizieren\"\n\"Choose an expiration time as per your preference\": \"Wählen Sie eine Ablaufzeit nach Ihren Wünschen\"\n\"Proceed to add your client secret\": \"Fahren Sie fort, um Ihr Client-Geheimnis hinzuzufügen\"\n\"Copy the client secret value which will be needed later and cannot be viewed again\": \"Kopieren Sie den Client-Secret-Wert, der später benötigt wird und nicht erneut angezeigt werden kann\"\n\"Navigate to API permissions\": \"Navigieren Sie zu API-Berechtigungen\"\n\"Click on \\\"Add a permission\\\" to add a new api permission. Add the following delegated permissions by selecting Microsoft APIs > Microsoft Graph > Delegate Permissions\": \"Klicken Sie auf „Berechtigung hinzufügen“, um eine neue API-Berechtigung hinzuzufügen. Fügen Sie die folgenden delegierten Berechtigungen hinzu, indem Sie Microsoft-APIs > Microsoft Graph > Berechtigungen delegieren auswählen\"\n\"Navigate to your app overview section\": \"Navigieren Sie zu Ihrem App-Übersichtsbereich\"\n\"Copy the Application (Client) Id\": \"Kopieren Sie die Anwendungs-(Client-)ID\"\n\"Copy the Directory (Tenant) Id\": \"Kopieren Sie die Verzeichnis-(Mandanten-)ID\"\n\"Enter your client id, tenant id, and client secret in settings above as required.\": \"Geben Sie Ihre Client-ID, Mandanten-ID und Client-Secret in den Einstellungen oben nach Bedarf ein.\"\n\"offline_access\": \"offline_zugriff\"\n\"openid\": \"openid\"\n\"profile\": \"Profil\"\n\"User.Read\": \"Benutzer.Lesen\"\n\"IMAP.AccessAsUser.All\": \"IMAP.AccessAsUser.All\"\n\"SMTP.Send\": \"SMTP.Send\"\n\"POP.AccessAsUser.All\": \"POP.AccessAsUser.All\"\n\"Mail.Read\": \"Mail.Lesen\"\n\"Mail.ReadBasic\": \"Mail.ReadBasic\"\n\"Mail.Send\": \"Mail.Send\"\n\"Mail.Send.Shared\": \"Mail.Send.Shared\"\n\"Add App\": \"App hinzufügen\"\n\"New App\": \"Neue Anwendung\"\n\n#Mailbox option:\n\"Disable email delivery\": \"Deaktivieren Sie die E-Mail-Zustellung\"\n\"Use as default mailbox for sending emails\": \"Als Standardpostfach zum Versenden von E-Mails verwenden\"\n\"Inbound Emails\": \"Eingehende E-Mails\"\n\"Manage how you wish to retrieve and process emails from your mailbox.\": \"Verwalten Sie, wie Sie E-Mails aus Ihrem Postfach abrufen und verarbeiten möchten.\"\n\"Outbound Emails\": \"Ausgehende E-Mails\"\n\"Manage how you wish to send emails from your mailbox.\": \"Verwalten Sie, wie Sie E-Mails von Ihrem Postfach aus senden möchten.\"\n\n\"Marketing Modules\" : \"Marketingmodule\"\n\"New Marketing Module\": \"Neues Marketingmodul\"\n\"Marketing Module\": \"Marketingmodul\""
  },
  {
    "path": "translations/messages.en.yml",
    "content": "\"Signed in as\": \"Signed in as\"\n\"Your Profile\": \"Your Profile\"\n\"Create Ticket\": \"Create Ticket\"\n\"Create Agent\": \"Create Agent\"\n\"Create Customer\": \"Create Customer\"\n\"Sign Out\": \"Sign Out\"\n\"Default Language (Optional)\": \"Default Language (Optional)\"\n\"Username/Email\": \"Username/Email\"\n\"create new\": \"create new\"\n\"Ticket Information\": \"Ticket Information\"\n\"CC/BCC\": \"CC/BCC\"\n\"Success! Label created successfully.\": \"Success! Label created successfully.\"\n\"Success! Label removed successfully.\": \"Success! Label removed successfully.\"\n\"Reports\": \"Reports\"\n\"Rating\": \"Rating\"\n\"Kudos Rating\": \"Kudos Rating\"\n\"Remove profile picture\": \"Remove profile picture\"\n\"Success ! Profile updated successfully.\": \"Success ! Profile updated successfully.\"\n\"Howdy\": \"Howdy\"\n\"Form successfully updated.\": \"Form successfully updated.\"\n\"NEW FORM\": \"NEW FORM\"\n\"Text Box\": \"Text Box\"\n\"Text Area\": \"Text Area\"\n\"Select\": \"Select\"\n\"Radio\": \"Radio\"\n\"Checkbox\": \"Checkbox\"\n\"Date\": \"Date\"\n\"Both Date and Time\": \"Both Date and Time\"\n\"Choose a status\": \"Choose a status\"\n\"Choose a group\": \"Choose a group\"\n\"Choose your default timeformat\": \"Choose your default timeformat\"\n\"Can manage Group's Saved Reply\": \"Can manage Group's Saved Reply\"\n\"Can manage agent activity\": \"Can manage agent activity\"\n\"Slug is the url identity of this article. We will help you to create valid slug at time of typing.\": \"Slug is the url identity of this article. We will help you to create valid slug at time of typing.\"\n\"The URL for this article\": \"The URL for this article\"\n\"Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A page's title tag and meta description are usually shown whenever that page appears in search engine results\": \"Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A page's title tag and meta description are usually shown whenever that page appears in search engine results\"\n\"comma separated (,)\": \"comma separated (,)\"\n\"Article Title\": \"Article Title\"\n\"Start typing few charactors and add set of relevant article from the list\": \"Start typing few charactors and add set of relevant article from the list\"\n\"Success! Announcement data saved successfully.\": \"Success! Announcement data saved successfully.\"\n\"Success! Category has been added successfully.\": \"Success! Category has been added successfully.\"\n\"Success ! Agent added successfully.\": \"Success ! Agent added successfully.\"\n\"Success! Privilege information saved successfully.\": \"Success! Privilege information saved successfully.\"\n\"Edit Prepared Response\": \"Edit Prepared Response\"\n\"Success! Type removed successfully.\": \"Success! Type removed successfully.\"\n\"No results available\": \"No results available\"\n\"Success ! Prepared Response applied successfully.\": \"Success ! Prepared Response applied successfully.\"\n\"Note added to ticket successfully.\": \"Note added to ticket successfully.\"\n\"Ticket status update to Spam\": \"Ticket status update to Spam\"\n\"Ticket status update to Closed\": \"Ticket status update to Closed\"\n\"Success! Label updated successfully.\": \"Success! Label updated successfully.\"\n\"Success ! Helpdesk details saved successfully\": \"Success ! Helpdesk details saved successfully\"\n\"Can manage marketing announcement\": \"Can manage marketing announcement\"\n\"User Forgot Password\": \"User Forgot Password\"\n\"Agent Deleted\": \"Agent Deleted\"\n\"Agent Update\": \"Agent Update\"\n\"Customer Update\": \"Customer Update\"\n\"Customer Deleted\": \"Customer Deleted\"\n\"Agent Updated\": \"Agent Updated\"\n\"Agent Reply\": \"Agent Reply\"\n\"Collaborator Added\": \"Collaborator Added\"\n\"Collaborator Reply\": \"Collaborator Reply\"\n\"Customer Reply\": \"Customer Reply\"\n\"Ticket Deleted\": \"Ticket Deleted\"\n\"Group Updated\": \"Group Updated\"\n\"Note Added\": \"Note Added\"\n\"Priority Updated\": \"Priority Updated\"\n\"Status Updated\": \"Status Updated\"\n\"Team Updated\": \"Team Updated\"\n\"Thread Updated\": \"Thread Updated\"\n\"Type Updated\": \"Type Updated\"\n\"From Email\": \"From Email\"\n\"To Email\": \"To Email\"\n\"Is Equal To\": \"Is Equal To\"\n\"Is Not Equal To\": \"Is Not Equal To\"\n\"Contains\": \"Contains\"\n\"Does Not Contain\": \"Does Not Contain\"\n\"Starts With\": \"Starts With\"\n\"Ends With\": \"Ends With\"\n\"Before On\": \"Before On\"\n\"After On\": \"After On\"\n\"Mail To User\": \"Mail To User\"\n\"Transfer Tickets\": \"Transfer Tickets\"\n\"Mail To Customer\": \"Mail To Customer\"\n\"Permanently delete from Inbox\": \"Permanently delete from Inbox\"\n\"Agent Activity\": \"Agent Activity\"\n\"Report From\": \"Report From\"\n\"Search Agent\": \"Search Agent\"\n\"Agent Last Reply\": \"Agent Last Reply\"\n\"View analytics and insights to serve a better experience for your customers\": \"Analytics and insight regarding your workflow\"\n\"Marketing Announcement\": \"Marketing Announcement\"\n\"Advertisement\": \"Advertisement\"\n\"Announcement\": \"Announcement\"\n\"New Announcement\": \"New Announcement\"\n\"Add Announcement\": \"Add Announcement\"\n\"Edit Announcement\": \"Edit Announcement\"\n\"Promo Text\": \"Promo Text\"\n\"Promo Tag\": \"Promo Tag\"\n\"Choose a promo tag\": \"Choose a promo tag\"\n\"Tag-Color\": \"Tag-Color\"\n\"Tag background color\": \"Tag background color\"\n\"Link Text\": \"Link Text\"\n\"Link URL\": \"Link URL\"\n\"Apps\": \"Apps\"\n\"Integrate apps as per your needs to get things done faster than ever\": \"Install new custom apps to boost your productivity - <a href='https://store.webkul.com/UVdesk/UVdesk-Open-Source.html' style='font-weight: bold' target='_blank'>Explore Now</a>\"\n\"Explore Apps\": \"Explore Apps\"\n\"Form Builder\": \"Form Builder\"\n\"Knowledgebase\": \"Knowledgebase\"\n\"Knowledgebase is a source of rigid and complex information which helps Customers to help themselves\": \"Help your customers help themselves! Save time on support by building your knowledge base.\"\n\"Articles\": \"Articles\"\n\"Categories\": \"Categories\"\n\"Folders\": \"Folders\"\n\"FOLDERS\": \"FOLDERS\"\n\"Productivity\": \"Productivity\"\n\"Automate your processes by creating set of rules and presets to respond faster to the tickets\": \"Create automation rules to speed up your workflow.\"\n\"Prepared Responses\": \"Prepared Responses\"\n\"Saved Replies\": \"Saved Replies\"\n\"Edit Saved Reply\": \"Edit Saved Reply\"\n\"Ticket Types\": \"Ticket Types\"\n\"Workflows\": \"Workflows\"\n\"Settings\": \"Settings\"\n\"Manage your Brand Identity, Company Information and other details at a glance\": \"Manage your Brand Identity, Company Information and other details at a glance\"\n\"Branding\": \"Branding\"\n\"Custom Fields\": \"Custom Fields\"\n\"Email Settings\": \"Email Settings\"\n\"Email Templates\": \"Email Templates\"\n\"Mailbox\": \"Mailbox\"\n\"Spam Settings\": \"Spam Settings\"\n\"Swift Mailer\": \"Swift Mailer\"\n\"Tags\": \"Tags\"\n\"Users\": \"Users\"\n\"Control your Groups, Teams, Agents and Customers\": \"Manage your Groups, Teams, Agents and Customers\"\n\"Agents\": \"Agents\"\n\"Customers\": \"Customers\"\n\"Groups\": \"Groups\"\n\"Privileges\": \"Privileges\"\n\"Teams\": \"Teams\"\n\"Applications\": \"Applications\"\n\"ECommerce Order Syncronization\": \"eCommerce Order Syncronization\"\n\"Import ecommerce order details to your support tickets from different available platforms\": \"Import eCommerce order details to your support tickets from different available platforms\"\n\"Search\": \"Search\"\n\"Sort By\": \"Sort By\"\n\"Sort By:\" : \"Sort By:\"\n\"Status\" : \"Status\"\n\"Created At\": \"Created At\"\n\"Name\": \"Name\"\n\"All\": \"All\"\n\"Published\": \"Published\"\n\"Draft\": \"Draft\"\n\"New Folder\": \"New Folder\"\n\"Create Knowledgebase Folder\": \"Create Knowledgebase Folder\"\n\"You did not add any folder to your Knowledgebase yet, Create your first Folder and start adding Categories/Articles to make your customers help themselves.\": \"You don't have any folders yet! Create your first folder and start adding articles.\"\n\"Clear Filters\": \"Clear Filters\"\n\"Back\": \"Back\"\n\"Open\": \"Open\"\n\"Pending\": \"Pending\"\n\"Answered\": \"Answered\"\n\"Resolved\": \"Resolved\"\n\"Closed\": \"Closed\"\n\"Spam\": \"Spam\"\n\"New\": \"New\"\n\"UnAssigned\": \"Unassigned\"\n\"UnAnswered\": \"Unanswered\"\n\"My Tickets\": \"My Tickets\"\n\"Starred\": \"Starred\"\n\"Trashed\": \"Trashed\"\n\"New Label\": \"New Label\"\n\"Tickets\": \"Tickets\"\n\"Ticket Id\": \"Ticket Id\"\n\"Last Replied\": \"Last Replied\"\n\"Assign To\": \"Assign To\"\n\"After Reply\": \"After Reply\"\n\"Customer Email\": \"Customer Email\"\n\"Customer Name\": \"Customer Name\"\n\"Assets Visibility\": \"Assets Visibility\"\n\"Channel/Source\": \"Channel/Source\"\n\"Channel\": \"Channel\"\n\"Website\": \"Website\"\n\"Timestamp\": \"Timestamp\"\n\"TimeStamp\": \"TimeStamp\"\n\"Team\": \"Team\"\n\"Type\": \"Type\"\n\"Replies\": \"Replies\"\n\"Agent\": \"Agent\"\n\"ID\": \"ID\"\n\"Subject\": \"Subject\"\n\"Last Reply\": \"Last Reply\"\n\"Filter View\": \"Filter View\"\n\"Please select CAPTCHA\": \"Please select CAPTCHA\"\n\"Warning ! Please select correct CAPTCHA !\": \"CAPTCHA Failed, please try again\"\n\"reCAPTCHA Setting\": \"reCAPTCHA Setting\"\n\"reCAPTCHA Site Key\": \"reCAPTCHA Site Key\"\n\"reCAPTCHA Secret key\": \"reCAPTCHA Secret key\"\n\"reCAPTCHA Status\": \"reCAPTCHA Status\"\n\"reCAPTCHA is Active\": \"reCAPTCHA is Active\"\n\"Save set of filters as a preset to stay more productive\": \"Save filters as preset\"\n\"Saved Filters\": \"Saved Filters\"\n\"No saved filter created\": \"No saved filter created\"\n\"Customer\": \"Customer\"\n\"Priority\": \"Priority\"\n\"Tag\": \"Tag\"\n\"Source\": \"Source\"\n\"Before\": \"Before\"\n\"After\": \"After\"\n\"Replies less than\": \"Replies less than\"\n\"Replies more than\": \"Replies more than\"\n\"Clear All\": \"Clear All\"\n\"Account\": \"Account\"\n\"Profile\": \"Profile\"\n\"Upload a Profile Image (100px x 100px)<br> in PNG or JPG Format\": \"Upload a Profile Image (100px x 100px)<br> in PNG or JPG Format\"\n\"First Name\": \"First Name\"\n\"Last Name\": \"Last Name\"\n\"Email\": \"Email\"\n\"Contact Number\": \"Contact Number\"\n\"Timezone\": \"Timezone\"\n\"Africa/Abidjan\": \"Africa/Abidjan\"\n\"Africa/Accra\": \"Africa/Accra\"\n\"Africa/Addis_Ababa\": \"Africa/Addis_Ababa\"\n\"Africa/Algiers\": \"Africa/Algiers\"\n\"Africa/Asmara\": \"Africa/Asmara\"\n\"Africa/Bamako\": \"Africa/Bamako\"\n\"Africa/Bangui\": \"Africa/Bangui\"\n\"Africa/Banjul\": \"Africa/Banjul\"\n\"Africa/Bissau\": \"Africa/Bissau\"\n\"Africa/Blantyre\": \"Africa/Blantyre\"\n\"Africa/Brazzaville\": \"Africa/Brazzaville\"\n\"Africa/Bujumbura\": \"Africa/Bujumbura\"\n\"Africa/Cairo\": \"Africa/Cairo\"\n\"Africa/Casablanca\": \"Africa/Casablanca\"\n\"Africa/Ceuta\": \"Africa/Ceuta\"\n\"Africa/Conakry\": \"Africa/Conakry\"\n\"Africa/Dakar\": \"Africa/Dakar\"\n\"Africa/Dar_es_Salaam\": \"Africa/Dar_es_Salaam\"\n\"Africa/Djibouti\": \"Africa/Djibouti\"\n\"Africa/Douala\": \"Africa/Douala\"\n\"Africa/El_Aaiun\": \"Africa/El_Aaiun\"\n\"Africa/Freetown\": \"Africa/Freetown\"\n\"Africa/Gaborone\": \"Africa/Gaborone\"\n\"Africa/Harare\": \"Africa/Harare\"\n\"Africa/Johannesburg\": \"Africa/Johannesburg\"\n\"Africa/Juba\": \"Africa/Juba\"\n\"Africa/Kampala\": \"Africa/Kampala\"\n\"Africa/Khartoum\": \"Africa/Khartoum\"\n\"Africa/Kigali\": \"Africa/Kigali\"\n\"Africa/Kinshasa\": \"Africa/Kinshasa\"\n\"Africa/Lagos\": \"Africa/Lagos\"\n\"Africa/Libreville\": \"Africa/Libreville\"\n\"Africa/Lome\": \"Africa/Lome\"\n\"Africa/Luanda\": \"Africa/Luanda\"\n\"Africa/Lubumbashi\": \"Africa/Lubumbashi\"\n\"Africa/Lusaka\": \"Africa/Lusaka\"\n\"Africa/Malabo\": \"Africa/Malabo\"\n\"Africa/Maputo\": \"Africa/Maputo\"\n\"Africa/Maseru\": \"Africa/Maseru\"\n\"Africa/Mbabane\": \"Africa/Mbabane\"\n\"Africa/Mogadishu\": \"Africa/Mogadishu\"\n\"Africa/Monrovia\": \"Africa/Monrovia\"\n\"Africa/Nairobi\": \"Africa/Nairobi\"\n\"Africa/Ndjamena\": \"Africa/Ndjamena\"\n\"Africa/Niamey\": \"Africa/Niamey\"\n\"Africa/Nouakchott\": \"Africa/Nouakchott\"\n\"Africa/Ouagadougou\": \"Africa/Ouagadougou\"\n\"Africa/Porto-Novo\": \"Africa/Porto-Novo\"\n\"Africa/Sao_Tome\": \"Africa/Sao_Tome\"\n\"Africa/Tripoli\": \"Africa/Tripoli\"\n\"Africa/Tunis\": \"Africa/Tunis\"\n\"Africa/Windhoek\": \"Africa/Windhoek\"\n\"America/Adak\": \"America/Adak\"\n\"America/Anchorage\": \"America/Anchorage\"\n\"America/Anguilla\": \"America/Anguilla\"\n\"America/Antigua\": \"America/Antigua\"\n\"America/Araguaina\": \"America/Araguaina\"\n\"America/Argentina/Buenos_Aires\": \"America/Argentina/Buenos_Aires\"\n\"America/Argentina/Catamarca\": \"America/Argentina/Catamarca\"\n\"America/Argentina/Cordoba\": \"America/Argentina/Cordoba\"\n\"America/Argentina/Jujuy\": \"America/Argentina/Jujuy\"\n\"America/Argentina/La_Rioja\": \"America/Argentina/La_Rioja\"\n\"America/Argentina/Mendoza\": \"America/Argentina/Mendoza\"\n\"America/Argentina/Rio_Gallegos\": \"America/Argentina/Rio_Gallegos\"\n\"America/Argentina/Salta\": \"America/Argentina/Salta\"\n\"America/Argentina/San_Juan\": \"America/Argentina/San_Juan\"\n\"America/Argentina/San_Luis\": \"America/Argentina/San_Luis\"\n\"America/Argentina/Tucuman\": \"America/Argentina/Tucuman\"\n\"America/Argentina/Ushuaia\": \"America/Argentina/Ushuaia\"\n\"America/Aruba\": \"America/Aruba\"\n\"America/Asuncion\": \"America/Asuncion\"\n\"America/Atikokan\": \"America/Atikokan\"\n\"America/Bahia\": \"America/Bahia\"\n\"America/Bahia_Banderas\": \"America/Bahia_Banderas\"\n\"America/Barbados\": \"America/Barbados\"\n\"America/Belem\": \"America/Belem\"\n\"America/Belize\": \"America/Belize\"\n\"America/Blanc-Sablon\": \"America/Blanc-Sablon\"\n\"America/Boa_Vista\": \"America/Boa_Vista\"\n\"America/Bogota\": \"America/Bogota\"\n\"America/Boise\": \"America/Boise\"\n\"America/Cambridge_Bay\": \"America/Cambridge_Bay\"\n\"America/Campo_Grande\": \"America/Campo_Grande\"\n\"America/Cancun\": \"America/Cancun\"\n\"America/Caracas\": \"America/Caracas\"\n\"America/Cayenne\": \"America/Cayenne\"\n\"America/Cayman\": \"America/Cayman\"\n\"America/Chicago\": \"America/Chicago\"\n\"America/Chihuahua\": \"America/Chihuahua\"\n\"America/Costa_Rica\": \"America/Costa_Rica\"\n\"America/Creston\": \"America/Creston\"\n\"America/Cuiaba\": \"America/Cuiaba\"\n\"America/Curacao\": \"America/Curacao\"\n\"America/Danmarkshavn\": \"America/Danmarkshavn\"\n\"America/Dawson\": \"America/Dawson\"\n\"America/Dawson_Creek\": \"America/Dawson_Creek\"\n\"America/Denver\": \"America/Denver\"\n\"America/Detroit\": \"America/Detroit\"\n\"America/Dominica\": \"America/Dominica\"\n\"America/Edmonton\": \"America/Edmonton\"\n\"America/Eirunepe\": \"America/Eirunepe\"\n\"America/El_Salvador\": \"America/El_Salvador\"\n\"America/Fort_Nelson\": \"America/Fort_Nelson\"\n\"America/Fortaleza\": \"America/Fortaleza\"\n\"America/Glace_Bay\": \"America/Glace_Bay\"\n\"America/Godthab\": \"America/Godthab\"\n\"America/Goose_Bay\": \"America/Goose_Bay\"\n\"America/Grand_Turk\": \"America/Grand_Turk\"\n\"America/Grenada\": \"America/Grenada\"\n\"America/Guadeloupe\": \"America/Guadeloupe\"\n\"America/Guatemala\": \"America/Guatemala\"\n\"America/Guayaquil\": \"America/Guayaquil\"\n\"America/Guyana\": \"America/Guyana\"\n\"America/Halifax\": \"America/Halifax\"\n\"America/Havana\": \"America/Havana\"\n\"America/Hermosillo\": \"America/Hermosillo\"\n\"America/Indiana/Indianapolis\": \"America/Indiana/Indianapolis\"\n\"America/Indiana/Knox\": \"America/Indiana/Knox\"\n\"America/Indiana/Marengo\": \"America/Indiana/Marengo\"\n\"America/Indiana/Petersburg\": \"America/Indiana/Petersburg\"\n\"America/Indiana/Tell_City\": \"America/Indiana/Tell_City\"\n\"America/Indiana/Vevay\": \"America/Indiana/Vevay\"\n\"America/Indiana/Vincennes\": \"America/Indiana/Vincennes\"\n\"America/Indiana/Winamac\": \"America/Indiana/Winamac\"\n\"America/Inuvik\": \"America/Inuvik\"\n\"America/Iqaluit\": \"America/Iqaluit\"\n\"America/Jamaica\": \"America/Jamaica\"\n\"America/Juneau\": \"America/Juneau\"\n\"America/Kentucky/Louisville\": \"America/Kentucky/Louisville\"\n\"America/Kentucky/Monticello\": \"America/Kentucky/Monticello\"\n\"America/Kralendijk\": \"America/Kralendijk\"\n\"America/La_Paz\": \"America/La_Paz\"\n\"America/Lima\": \"America/Lima\"\n\"America/Los_Angeles\": \"America/Los_Angeles\"\n\"America/Lower_Princes\": \"America/Lower_Princes\"\n\"America/Maceio\": \"America/Maceio\"\n\"America/Managua\": \"America/Managua\"\n\"America/Manaus\": \"America/Manaus\"\n\"America/Marigot\": \"America/Marigot\"\n\"America/Martinique\": \"America/Martinique\"\n\"America/Matamoros\": \"America/Matamoros\"\n\"America/Mazatlan\": \"America/Mazatlan\"\n\"America/Menominee\": \"America/Menominee\"\n\"America/Merida\": \"America/Merida\"\n\"America/Metlakatla\": \"America/Metlakatla\"\n\"America/Mexico_City\": \"America/Mexico_City\"\n\"America/Miquelon\": \"America/Miquelon\"\n\"America/Moncton\": \"America/Moncton\"\n\"America/Monterrey\": \"America/Monterrey\"\n\"America/Montevideo\": \"America/Montevideo\"\n\"America/Montserrat\": \"America/Montserrat\"\n\"America/Nassau\": \"America/Nassau\"\n\"America/New_York\": \"America/New_York\"\n\"America/Nipigon\": \"America/Nipigon\"\n\"America/Nome\": \"America/Nome\"\n\"America/Noronha\": \"America/Noronha\"\n\"America/North_Dakota/Beulah\": \"America/North_Dakota/Beulah\"\n\"America/North_Dakota\": \"America/North_Dakota\"\n\"America/Ojinaga\": \"America/Ojinaga\"\n\"America/Panama\": \"America/Panama\"\n\"America/Pangnirtung\": \"America/Pangnirtung\"\n\"America/Paramaribo\": \"America/Paramaribo\"\n\"America/Phoenix\": \"America/Phoenix\"\n\"America/Port-au-Prince\": \"America/Port-au-Prince\"\n\"America/Port_of_Spain\": \"America/Port_of_Spain\"\n\"America/Porto_Velho\": \"America/Porto_Velho\"\n\"America/Puerto_Rico\": \"America/Puerto_Rico\"\n\"America/Punta_Arenas\": \"America/Punta_Arenas\"\n\"America/Rainy_River\": \"America/Rainy_River\"\n\"America/Rankin_Inlet\": \"America/Rankin_Inlet\"\n\"America/Recife\": \"America/Recife\"\n\"America/Regina\": \"America/Regina\"\n\"America/Resolute\": \"America/Resolute\"\n\"America/Rio_Branco\": \"America/Rio_Branco\"\n\"America/Santarem\": \"America/Santarem\"\n\"America/Santiago\": \"America/Santiago\"\n\"America/Santo_Domingo\": \"America/Santo_Domingo\"\n\"America/Sao_Paulo\": \"America/Sao_Paulo\"\n\"America/Scoresbysund\": \"America/Scoresbysund\"\n\"America/Sitka\": \"America/Sitka\"\n\"America/St_Barthelemy\": \"America/St_Barthelemy\"\n\"America/St_Johns\": \"America/St_Johns\"\n\"America/St_Kitts\": \"America/St_Kitts\"\n\"America/St_Lucia\": \"America/St_Lucia\"\n\"America/St_Thomas\": \"America/St_Thomas\"\n\"America/St_Vincent\": \"America/St_Vincent\"\n\"America/Swift_Current\": \"America/Swift_Current\"\n\"America/Tegucigalpa\": \"America/Tegucigalpa\"\n\"America/Thule\": \"America/Thule\"\n\"America/Thunder_Bay\": \"America/Thunder_Bay\"\n\"America/Tijuana\": \"America/Tijuana\"\n\"America/Toronto\": \"America/Toronto\"\n\"America/Tortola\": \"America/Tortola\"\n\"America/Vancouver\": \"America/Vancouver\"\n\"America/Whitehorse\": \"America/Whitehorse\"\n\"America/Winnipeg\": \"America/Winnipeg\"\n\"America/Yakutat\": \"America/Yakutat\"\n\"America/Yellowknife\": \"America/Yellowknife\"\n\"Antarctica/Casey\": \"Antarctica/Casey\"\n\"Antarctica/Davis\": \"Antarctica/Davis\"\n\"Antarctica/DumontDUrville\": \"Antarctica/DumontDUrville\"\n\"Antarctica/Macquarie\": \"Antarctica/Macquarie\"\n\"Antarctica/McMurdo\": \"Antarctica/McMurdo\"\n\"Antarctica/Mawson\": \"Antarctica/Mawson\"\n\"Antarctica/Palmer\": \"Antarctica/Palmer\"\n\"Antarctica/Rothera\": \"Antarctica/Rothera\"\n\"Antarctica/Syowa\": \"Antarctica/Syowa\"\n\"Antarctica/Troll\": \"Antarctica/Troll\"\n\"Antarctica/Vostok\": \"Antarctica/Vostok\"\n\"Arctic/Longyearbyen\": \"Arctic/Longyearbyen\"\n\"Asia/Aden\": \"Asia/Aden\"\n\"Asia/Almaty\": \"Asia/Almaty\"\n\"Asia/Amman\": \"Asia/Amman\"\n\"Asia/Anadyr\": \"Asia/Anadyr\"\n\"Asia/Aqtau\": \"Asia/Aqtau\"\n\"Asia/Aqtobe\": \"Asia/Aqtobe\"\n\"Asia/Ashgabat\": \"Asia/Ashgabat\"\n\"Asia/Atyrau\": \"Asia/Atyrau\"\n\"Asia/Baghdad\": \"Asia/Baghdad\"\n\"Asia/Bahrain\": \"Asia/Bahrain\"\n\"Asia/Baku\": \"Asia/Baku\"\n\"Asia/Bangkok\": \"Asia/Bangkok\"\n\"Asia/Barnaul\": \"Asia/Barnaul\"\n\"Asia/Beirut\": \"Asia/Beirut\"\n\"Asia/Bishkek\": \"Asia/Bishkek\"\n\"Asia/Brunei\": \"Asia/Brunei\"\n\"Asia/Chita\": \"Asia/Chita\"\n\"Asia/Choibalsan\": \"Asia/Choibalsan\"\n\"Asia/Colombo\": \"Asia/Colombo\"\n\"Asia/Damascus\": \"Asia/Damascus\"\n\"Asia/Dhaka\": \"Asia/Dhaka\"\n\"Asia/Dili\": \"Asia/Dili\"\n\"Asia/Dubai\": \"Asia/Dubai\"\n\"Asia/Dushanbe\": \"Asia/Dushanbe\"\n\"Asia/Famagusta\": \"Asia/Famagusta\"\n\"Asia/Gaza\": \"Asia/Gaza\"\n\"Asia/Hebron\": \"Asia/Hebron\"\n\"Asia/Ho_Chi_Minh\": \"Asia/Ho_Chi_Minh\"\n\"Asia/Hong_Kong\": \"Asia/Hong_Kong\"\n\"Asia/Hovd\": \"Asia/Hovd\"\n\"Asia/Irkutsk\": \"Asia/Irkutsk\"\n\"Asia/Jakarta\": \"Asia/Jakarta\"\n\"Asia/Jayapura\": \"Asia/Jayapura\"\n\"Asia/Jerusalem\": \"Asia/Jerusalem\"\n\"Asia/Kabul\": \"Asia/Kabul\"\n\"Asia/Kamchatka\": \"Asia/Kamchatka\"\n\"Asia/Karachi\": \"Asia/Karachi\"\n\"Asia/Kathmandu\": \"Asia/Kathmandu\"\n\"Asia/Khandyga\": \"Asia/Khandyga\"\n\"Asia/Kolkata\": \"Asia/Kolkata\"\n\"Asia/Krasnoyarsk\": \"Asia/Krasnoyarsk\"\n\"Asia/Kuala_Lumpur\": \"Asia/Kuala_Lumpur\"\n\"Asia/Kuching\": \"Asia/Kuching\"\n\"Asia/Kuwait\": \"Asia/Kuwait\"\n\"Asia/Macau\": \"Asia/Macau\"\n\"Asia/Magadan\": \"Asia/Magadan\"\n\"Asia/Makassar\": \"Asia/Makassar\"\n\"Asia/Manila\": \"Asia/Manila\"\n\"Asia/Muscat\": \"Asia/Muscat\"\n\"Asia/Nicosia\": \"Asia/Nicosia\"\n\"Asia/Novokuznetsk\": \"Asia/Novokuznetsk\"\n\"Asia/Novosibirsk\": \"Asia/Novosibirsk\"\n\"Asia/Omsk\": \"Asia/Omsk\"\n\"Asia/Oral\": \"Asia/Oral\"\n\"Asia/Phnom_Penh\": \"Asia/Phnom_Penh\"\n\"Asia/Pontianak\": \"Asia/Pontianak\"\n\"Asia/Pyongyang\": \"Asia/Pyongyang\"\n\"Asia/Qatar\": \"Asia/Qatar\"\n\"Asia/Qostanay\": \"Asia/Qostanay\"\n\"Asia/Qyzylorda\": \"Asia/Qyzylorda\"\n\"Asia/Riyadh\": \"Asia/Riyadh\"\n\"Asia/Sakhalin\": \"Asia/Sakhalin\"\n\"Asia/Samarkand\": \"Asia/Samarkand\"\n\"Asia/Seoul\": \"Asia/Seoul\"\n\"Asia/Shanghai\": \"Asia/Shanghai\"\n\"Asia/Singapore\": \"Asia/Singapore\"\n\"Asia/Srednekolymsk\": \"Asia/Srednekolymsk\"\n\"Asia/Taipei\": \"Asia/Taipei\"\n\"Asia/Tashkent\": \"Asia/Tashkent\"\n\"Asia/Tbilisi\": \"Asia/Tbilisi\"\n\"Asia/Tehran\": \"Asia/Tehran\"\n\"Asia/Thimphu\": \"Asia/Thimphu\"\n\"Asia/Tokyo\": \"Asia/Tokyo\"\n\"Asia/Tomsk\": \"Asia/Tomsk\"\n\"Asia/Ulaanbaatar\": \"Asia/Ulaanbaatar\"\n\"Asia/Urumqi\": \"Asia/Urumqi\"\n\"Asia/Ust-Nera\": \"Asia/Ust-Nera\"\n\"Asia/Vientiane\": \"Asia/Vientiane\"\n\"Asia/Vladivostok\": \"Asia/Vladivostok\"\n\"Asia/Yakutsk\": \"Asia/Yakutsk\"\n\"Asia/Yangon\": \"Asia/Yangon\"\n\"Asia/Yekaterinburg\": \"Asia/Yekaterinburg\"\n\"Asia/Yerevan\": \"Asia/Yerevan\"\n\"Atlantic/Azores\": \"Atlantic/Azores\"\n\"Atlantic/Bermuda\": \"Atlantic/Bermuda\"\n\"Atlantic/Canary\": \"Atlantic/Canary\"\n\"Atlantic/Cape_Verde\": \"Atlantic/Cape_Verde\"\n\"Atlantic/Faroe\": \"Atlantic/Faroe\"\n\"Atlantic/Madeira\": \"Atlantic/Madeira\"\n\"Atlantic/Reykjavik\": \"Atlantic/Reykjavik\"\n\"Atlantic/South_Georgia\": \"Atlantic/South_Georgia\"\n\"Atlantic/St_Helena\": \"Atlantic/St_Helena\"\n\"Atlantic/Stanley\": \"Atlantic/Stanley\"\n\"Australia/Adelaide\": \"Australia/Adelaide\"\n\"Australia/Brisbane\": \"Australia/Brisbane\"\n\"Australia/Broken_Hill\": \"Australia/Broken_Hill\"\n\"Australia/Currie\": \"Australia/Currie\"\n\"Australia/Darwin\": \"Australia/Darwin\"\n\"Australia/Eucla\": \"Australia/Eucla\"\n\"Australia/Hobart\": \"Australia/Hobart\"\n\"Australia/Lindeman\": \"Australia/Lindeman\"\n\"Australia/Lord_Howe\": \"Australia/Lord_Howe\"\n\"Australia/Melbourne\": \"Australia/Melbourne\"\n\"Australia/Perth\": \"Australia/Perth\"\n\"Australia/Sydney\": \"Australia/Sydney\"\n\"Europe/Amsterdam\": \"Europe/Amsterdam\"\n\"Europe/Andorra\": \"Europe/Andorra\"\n\"Europe/Astrakhan\": \"Europe/Astrakhan\"\n\"Europe/Athens\": \"Europe/Athens\"\n\"Europe/Belgrade\": \"Europe/Belgrade\"\n\"Europe/Berlin\": \"Europe/Berlin\"\n\"Europe/Bratislava\": \"Europe/Bratislava\"\n\"Europe/Brussels\": \"Europe/Brussels\"\n\"Europe/Bucharest\": \"Europe/Bucharest\"\n\"Europe/Budapest\": \"Europe/Budapest\"\n\"Europe/Busingen\": \"Europe/Busingen\"\n\"Europe/Chisinau\": \"Europe/Chisinau\"\n\"Europe/Copenhagen\": \"Europe/Copenhagen\"\n\"Europe/Dublin\": \"Europe/Dublin\"\n\"Europe/Gibraltar\": \"Europe/Gibraltar\"\n\"Europe/Guernsey\": \"Europe/Guernsey\"\n\"Europe/Helsinki\": \"Europe/Helsinki\"\n\"Europe/Isle_of_Man\": \"Europe/Isle_of_Man\"\n\"Europe/Istanbul\": \"Europe/Istanbul\"\n\"Europe/Jersey\": \"Europe/Jersey\"\n\"Europe/Kaliningrad\": \"Europe/Kaliningrad\"\n\"Europe/Kiev\": \"Europe/Kiev\"\n\"Europe/Kirov\": \"Europe/Kirov\"\n\"Europe/Lisbon\": \"Europe/Lisbon\"\n\"Europe/Ljubljana\": \"Europe/Ljubljana\"\n\"Europe/London\": \"Europe/London\"\n\"Europe/Luxembourg\": \"Europe/Luxembourg\"\n\"Europe/Madrid\": \"Europe/Madrid\"\n\"Europe/Malta\": \"Europe/Malta\"\n\"Europe/Mariehamn\": \"Europe/Mariehamn\"\n\"Europe/Minsk\": \"Europe/Minsk\"\n\"Europe/Monaco\": \"Europe/Monaco\"\n\"Europe/Moscow\": \"Europe/Moscow\"\n\"Europe/Oslo\": \"Europe/Oslo\"\n\"Europe/Paris\": \"Europe/Paris\"\n\"Europe/Podgorica\": \"Europe/Podgorica\"\n\"Europe/Prague\": \"Europe/Prague\"\n\"Europe/Riga\": \"Europe/Riga\"\n\"Europe/Rome\": \"Europe/Rome\"\n\"Europe/Samara\": \"Europe/Samara\"\n\"Europe/San_Marino\": \"Europe/San_Marino\"\n\"Europe/Sarajevo\": \"Europe/Sarajevo\"\n\"Europe/Saratov\": \"Europe/Saratov\"\n\"Europe/Simferopol\": \"Europe/Simferopol\"\n\"Europe/Skopje\": \"Europe/Skopje\"\n\"Europe/Sofia\": \"Europe/Sofia\"\n\"Europe/Stockholm\": \"Europe/Stockholm\"\n\"Europe/Tallinn\": \"Europe/Tallinn\"\n\"Europe/Tirane\": \"Europe/Tirane\"\n\"Europe/Ulyanovsk\": \"Europe/Ulyanovsk\"\n\"Europe/Uzhgorod\": \"Europe/Uzhgorod\"\n\"Europe/Vaduz\": \"Europe/Vaduz\"\n\"Europe/Vatican\": \"Europe/Vatican\"\n\"Europe/Vienna\": \"Europe/Vienna\"\n\"Europe/Vilnius\": \"Europe/Vilnius\"\n\"Europe/Volgograd\": \"Europe/Volgograd\"\n\"Europe/Warsaw\": \"Europe/Warsaw\"\n\"Europe/Zagreb\": \"Europe/Zagreb\"\n\"Europe/Zaporozhye\": \"Europe/Zaporozhye\"\n\"Europe/Zurich\": \"Europe/Zurich\"\n\"Indian/Antananarivo\": \"Indian/Antananarivo\"\n\"Indian/Chagos\": \"Indian/Chagos\"\n\"Indian/Christmas\": \"Indian/Christmas\"\n\"Indian/Cocos\": \"Indian/Cocos\"\n\"Indian/Comoro\": \"Indian/Comoro\"\n\"Indian/Kerguelen\": \"Indian/Kerguelen\"\n\"Indian/Mahe\": \"Indian/Mahe\"\n\"Indian/Maldives\": \"Indian/Maldives\"\n\"Indian/Mauritius\": \"Indian/Mauritius\"\n\"Indian/Mayotte\": \"Indian/Mayotte\"\n\"Indian/Reunion\": \"Indian/Reunion\"\n\"Pacific/Apia\": \"Pacific/Apia\"\n\"Pacific/Auckland\": \"Pacific/Auckland\"\n\"Pacific/Bougainville\": \"Pacific/Bougainville\"\n\"Pacific/Chatham\": \"Pacific/Chatham\"\n\"Pacific/Chuuk\": \"Pacific/Chuuk\"\n\"Pacific/Easter\": \"Pacific/Easter\"\n\"Pacific/Efate\": \"Pacific/Efate\"\n\"Pacific/Enderbury\": \"Pacific/Enderbury\"\n\"Pacific/Fakaofo\": \"Pacific/Fakaofo\"\n\"Pacific/Fiji\": \"Pacific/Fiji\"\n\"Pacific/Funafuti\": \"Pacific/Funafuti\"\n\"Pacific/Galapagos\": \"Pacific/Galapagos\"\n\"Pacific/Gambier\": \"Pacific/Gambier\"\n\"Pacific/Guadalcanal\": \"Pacific/Guadalcanal\"\n\"Pacific/Guam\": \"Pacific/Guam\"\n\"Pacific/Honolulu\": \"Pacific/Honolulu\"\n\"Pacific/Kiritimati\": \"Pacific/Kiritimati\"\n\"Pacific/Kosrae\": \"Pacific/Kosrae\"\n\"Pacific/Kwajalein\": \"Pacific/Kwajalein\"\n\"Pacific/Majuro\": \"Pacific/Majuro\"\n\"Pacific/Marquesas\": \"Pacific/Marquesas\"\n\"Pacific/Midway\": \"Pacific/Midway\"\n\"Pacific/Nauru\": \"Pacific/Nauru\"\n\"Pacific/Niue\": \"Pacific/Niue\"\n\"Pacific/Norfolk\": \"Pacific/Norfolk\"\n\"Pacific/Noumea\": \"Pacific/Noumea\"\n\"Pacific/Pago_Pago\": \"Pacific/Pago_Pago\"\n\"Pacific/Palau\": \"Pacific/Palau\"\n\"Pacific/Pitcairn\": \"Pacific/Pitcairn\"\n\"Pacific/Pohnpei\": \"Pacific/Pohnpei\"\n\"Pacific/Port_Moresby\": \"Pacific/Port_Moresby\"\n\"Pacific/Rarotonga\": \"Pacific/Rarotonga\"\n\"Pacific/Saipan\": \"Pacific/Saipan\"\n\"Pacific/Tahiti\": \"Pacific/Tahiti\"\n\"Pacific/Tarawa\": \"Pacific/Tarawa\"\n\"Pacific/Tongatapu\": \"Pacific/Tongatapu\"\n\"Pacific/Wake\": \"Pacific/Wake\"\n\"Pacific/Wallis\": \"Pacific/Wallis\"\n\"UTC\": \"UTC\"\n\"Time Format\": \"Time Format\"\n\"Choose your default timezone\": \"Choose your default timezone\"\n\"Signature\": \"Signature\"\n\"User signature will be append at the bottom of ticket reply box\": \"Your signature will be appended to the bottom of every ticket reply you create.\"\n\"Password\": \"Password\"\n\"Password will remain same if you are not entering something in this field\": \"Password not changed!\"\n\"Confirm Password\": \"Confirm Password\"\n\"Password must contain minimum 8 character length, at least two letters (not case sensitive), one number, one special character(space is not allowed).\": \"Password must be at least 8 characters, two letters (not case-sensitive), one number, and one special character (space is not allowed).\"\n\"Save Changes\": \"Save Changes\"\n\"SAVE CHANGES\": \"SAVE CHANGES\"\n\"CREATE TICKET\": \"CREATE TICKET\"\n\"Customer full name\": \"Customer full name\"\n\"Customer email address\": \"Customer email address\"\n\"Select Type\": \"Select Type\"\n\"Support\": \"Support\"\n\"Choose ticket type\": \"Choose ticket type\"\n\"Ticket subject\": \"Ticket subject\"\n\"Message\": \"Message\"\n\"Query Message\": \"Query Message\"\n\"Add Attachment\": \"Add Attachment\"\n\"This field is mandatory\": \"This field is mandatory\"\n\"General\": \"General\"\n\"Designation\": \"Designation\"\n\"Contant Number\": \"Content Number\"\n\"User signature will be append in the bottom of ticket reply box\": \"Your signature will be appended to the bottom of every ticket reply you create.\"\n\"Account Status\": \"Account Status\"\n\"Account is Active\": \"Account is Active\"\n\"Assigning group(s) to user to view tickets regardless assignment.\": \"Add user to group to view tickets regardless of owner.\"\n\"Default\": \"Default\"\n\"Select All\": \"Select All\"\n\"Remove All\": \"Remove All\"\n\"Assigning team(s) to user to view tickets regardless assignment.\": \"Add user to team to view tickets regardless of owner.\"\n\"No Team added !\": \"No Team added!\"\n\"Permission\": \"Permission\"\n\"Role\": \"Role\"\n\"Administrator\": \"Administrator\"\n\"Select agent role\": \"Select agent role\"\n\"Add Customer\": \"Add Customer\"\n\"Action\": \"Action\"\n\"Account Owner\": \"Account Owner\"\n\"Active\": \"Active\"\n\"Edit\": \"Edit\"\n\"Delete\": \"Delete\"\n\"Disabled\": \"Disabled\"\n\"New Group\": \"New Group\"\n\"Default Privileges\": \"Default Privileges\"\n\"New Privileges\": \"New Privileges\"\n\"NEW PRIVILEGE\": \"NEW PRIVILEGE\"\n\"New Privilege\": \"New Privilege\"\n\"New Team\": \"New Team\"\n\"No Record Found\": \"No Record Found\"\n\"Order Synchronization\": \"Order Synchronization\"\n\"Easily integrate different ecommerce platforms with your helpdesk which can then be later used to swiftly integrate ecommerce order details with your support tickets.\": \"Easily integrate different eCommerce platforms with your helpdesk to show order details within support tickets.\"\n\"BigCommerce\": \"BigCommerce\"\n\"No channels have been added.\": \"No channels have been added.\"\n\"Add BigCommerce Store\": \"Add BigCommerce Store\"\n\"ADD BIGCOMMERCE STORE\": \"ADD BIGCOMMERCE STORE\"\n\"Mangento\": \"Mangento\"\n\"Add Magento Store\": \"Add Magento Store\"\n\"OpenCart\": \"OpenCart\"\n\"Add OpenCart Store\": \"Add OpenCart Store\"\n\"ADD OPENCART STORE\": \"ADD OPENCART STORE\"\n\"Shopify\": \"Shopify\"\n\"Add Shopify Store\": \"Add Shopify Store\"\n\"ADD SHOPIFY STORE\": \"ADD SHOPIFY STORE\"\n\"Integrate a new BigCommerce store\": \"Integrate a new BigCommerce store\"\n\"Your BigCommerce Store Name\": \"Your BigCommerce Store Name\"\n\"Your BigCommerce Store Hash\": \"Your BigCommerce Store Hash\"\n\"Your BigCommerce Api Token\": \"Your BigCommerce Api Token\"\n\"Your BigCommerce Api Client ID\": \"Your BigCommerce Api Client ID\"\n\"Enable Channel\": \"Enable Channel\"\n\"Add Store\": \"Add Store\"\n\"ADD STORE\": \"ADD STORE\"\n\"Integrate a new Magento store\": \"Integrate a new Magento store\"\n\"Your Magento Api Username\": \"Your Magento Api Username\"\n\"Your Magento Api Password\": \"Your Magento Api Password\"\n\"Integrate a new OpenCart store\": \"Integrate a new OpenCart store\"\n\"Your OpenCart Api Key\": \"Your OpenCart Api Key\"\n\"Your Shopify Store Name\": \"Your Shopify Store Name\"\n\"Your Shopify Api Key\": \"Your Shopify Api Key\"\n\"Your Shopify Api Password\": \"Your Shopify Api Password\"\n\"Easily embed custom form to help generate helpdesk tickets.\": \"Easily embed custom forms for creating helpdesk tickets.\"\n\"Form-Builder\": \"Form-Builder\"\n\"Add Formbuilder\": \"Add Formbuilder\"\n\"ADD FORMBUILDER\": \"ADD FORMBUILDER\"\n\"No FormBuilder have been added.\": \"No FormBuilder was added.\"\n\"Create a New Custom Form Below\": \"Create a New Custom Form Below\"\n\"Form Name\": \"Form Name\"\n\"It will be shown in the list of created forms\": \"Displayed in the list of created forms\"\n\"MANDATORY FIELDS\": \"MANDATORY FIELDS\"\n\"These fields will be visible in form and cant be edited\": \"These fields will be visible in this form and can't be edited\"\n\"Reply\": \"Reply\"\n\"OPTIONAL FIELDS\": \"OPTIONAL FIELDS\"\n\"Select These Fields to Add in your Form\": \"Select fields to add\"\n\"GDPR\": \"GDPR\"\n\"Order\": \"Order\"\n\"Categorybuilder\": \"Categorybuilder\"\n\"File\": \"File\"\n\"Add Form\": \"Add Form\"\n\"ADD FORM\": \"ADD FORM\"\n\"UPDATE FORM\": \"UPDATE FORM\"\n\"Update Form\": \"Update Form\"\n\"Embed\": \"Embed\"\n\"EMBED\": \"EMBED\"\n\"EMBED FORMBUILDER\": \"EMBED FORMBUILDER\"\n\"Embed Formbuilder\": \"Embed Formbuilder\"\n\"Visit\": \"Visit\"\n\"VISIT\": \"VISIT\"\n\"Code\": \"Code\"\n\"Total Ticket(s)\": \"Total Ticket(s)\"\n\"Ticket Count\": \"Ticket Count\"\n\"SwiftMailer Configurations\": \"SwiftMailer Configurations\"\n\"No swiftmailer configurations found\": \"No SwiftMailer configurations found\"\n\"CREATE CONFIGURATION\": \"CREATE CONFIGURATION\"\n\"Add configuration\": \"Add configuration\"\n\"Update configuration\": \"Update configuration\"\n\"Mailer ID\": \"Mailer ID\"\n\"Mailer ID - Leave blank to automatically create id\": \"Mailer ID - Leave blank to automatically create id\"\n\"Transport Type\": \"Transport Type\"\n\"SMTP\": \"SMTP\"\n\"Enable Delivery\": \"Enable Delivery\"\n\"Server\": \"Server\"\n\"Port\": \"Port\"\n\"Encryption Mode\": \"Encryption Mode\"\n\"ssl\": \"ssl\"\n\"tsl\": \"tsl\"\n\"None\": \"None\"\n\"Authentication Mode\": \"Authentication Mode\"\n\"login\": \"login\"\n\"API\": \"API\"\n\"Plain\": \"Plain\"\n\"CRAM-MD5\": \"CRAM-MD5\"\n\"Sender Address\": \"Sender Address\"\n\"Delivery Address\": \"Delivery Address\"\n\"Block Spam\": \"Block Spam\"\n\"Black list\": \"Black list\"\n\"Comma (,) separated values (Eg. support@example.com, @example.com, 68.98.31.226)\": \"Comma separated values (Eg. support@example.com, @example.com, 68.98.31.226)\"\n\"White list\": \"White list\"\n\"Mailbox Settings\": \"Mailbox Settings\"\n\"No mailbox configurations found\": \"No mailbox configurations found\"\n\"NEW MAILBOX\": \"NEW MAILBOX\"\n\"New Mailbox\": \"New Mailbox\"\n\"Update Mailbox\": \"Update Mailbox\"\n\"Add Mailbox\": \"Add Mailbox\"\n\"Mailbox ID - Leave blank to automatically create id\": \"Mailbox ID - Leave blank to automatically create id\"\n\"Mailbox Name\": \"Mailbox Name\"\n\"Enable Mailbox\": \"Enable Mailbox\"\n\"Incoming Mail (IMAP) Server\": \"Incoming Mail (IMAP) Server\"\n\"Configure your imap settings which will be used to fetch emails from your mailbox.\": \"Configure your imap settings in order to fetch new mail from your inbox.\"\n\"Transport\": \"Transport\"\n\"IMAP\": \"IMAP\"\n\"Gmail\": \"Gmail\"\n\"Yahoo\": \"Yahoo\"\n\"Host\": \"Host\"\n\"IMAP Host\": \"IMAP Host\"\n\"Email address\": \"Email address\"\n\"Associated Password\": \"Associated Password\"\n\"Outgoing Mail (SMTP) Server\": \"Outgoing Mail (SMTP) Server\"\n\"Select a valid Swift Mailer configuration which will be used to send emails through your mailbox.\": \"Select the SwiftMailer config to use for sending emails through your account.\"\n\"Swift Mailer ID\": \"Swift Mailer ID\"\n\"None Selected\": \"None Selected\"\n\"Create Mailbox\": \"Create Mailbox\"\n\"CREATE MAILBOX\": \"CREATE MAILBOX\"\n\"New Template\": \"New Template\"\n\"NEW TEMPLATE\": \"NEW TEMPLATE\"\n\"Customer Forgot Password\": \"Customer Forgot Password\"\n\"Customer Account Created\": \"Customer Account Created\"\n\"Ticket generated success mail to customer\": \"Ticket successfully generated and sent to customer\"\n\"Customer Reply To The Agent\": \"Customer reply\"\n\"Ticket Assign\": \"Ticket Assign\"\n\"Agent Forgot Password\": \"Agent Forgot Password\"\n\"Agent Account Created\": \"Agent Account Created\"\n\"Ticket generated by customer\": \"Ticket generated by customer\"\n\"Agent Reply To The Customers ticket\": \"Agent reply\"\n\"Email template name\": \"Email template name\"\n\"Email template subject\": \"Email template subject\"\n\"Template For\": \"Template For\"\n\"Nothing Selected\": \"Nothing Selected\"\n\"email template will be used for work related with selected option\": \"email template will be used for selected option\"\n\"Email template body\": \"Email template body\"\n\"Body\": \"Body\"\n\"placeholders\": \"placeholders\"\n\"Ticket Subject\": \"Ticket Subject\"\n\"Ticket Message\": \"Ticket Message\"\n\"Ticket Attachments\": \"Ticket Attachments\"\n\"Ticket Tags\": \"Ticket Tags\"\n\"Ticket Source\": \"Ticket Source\"\n\"Ticket Status\": \"Ticket Status\"\n\"Ticket Priority\": \"Ticket Priority\"\n\"Ticket Group\": \"Ticket Group\"\n\"Ticket Team\": \"Ticket Team\"\n\"Ticket Thread Message\": \"Ticket Thread Message\"\n\"Ticket Customer Name\": \"Ticket Customer Name\"\n\"Ticket Customer Email\": \"Ticket Customer Email\"\n\"Ticket Agent Name\": \"Ticket Agent Name\"\n\"Ticket Agent Email\": \"Ticket Agent Email\"\n\"Ticket Agent Link\": \"Ticket Agent Link\"\n\"Ticket Customer Link\": \"Ticket Customer Link\"\n\"Last Collaborator Name\": \"Last Collaborator Name\"\n\"Last Collaborator Email\": \"Last Collaborator Email\"\n\"Agent/ Customer Name\": \"Agent/ Customer Name\"\n\"Account Validation Link\": \"Account Validation Link\"\n\"Password Forgot Link\": \"Password Forgot Link\"\n\"Company Name\": \"Company Name\"\n\"Company Logo\": \"Company Logo\"\n\"Company URL\": \"Company URL\"\n\"Swiftmailer id (Select from drop down)\": \"Swiftmailer id (Select from drop down)\"\n\"SwiftMailer\": \"SwiftMailer\"\n\"PROCEED\": \"PROCEED\"\n\"Proceed\": \"Proceed\"\n\"Theme Color\": \"Theme Color\"\n\"Customer Created\": \"Customer Created\"\n\"Agent Created\": \"Agent Created\"\n\"Ticket Created\": \"Ticket Created\"\n\"Agent Replied on Ticket\": \"Agent replied to ticket\"\n\"Customer Replied on Ticket\": \"Customer replied to ticket\"\n\"Workflow Status\": \"Workflow status\"\n\"Workflow is Active\": \"Workflow is active\"\n\"Events\": \"Events\"\n\"An event automatically triggers to check conditions and perform a respective pre-defined set of actions\": \"An event automatically triggers to check conditions and perform a set of pre-defined actions\"\n\"Select an Event\": \"Select an Event\"\n\"Add More\": \"Add More\"\n\"Conditions\": \"Conditions\"\n\"Conditions are set of rules which checks for specific scenarios and are triggered on specific occasions\": \"Conditions are sets of rules which check for specific scenarios.\"\n\"Subject or Description\": \"Subject or description\"\n\"Actions\": \"Actions\"\n\"An action not only reduces the workload but also makes it quite easier for ticket automation\": \"Actions help you automate tickets\"\n\"Select an Action\": \"Select an action\"\n\"Add Note\": \"Add note\"\n\"Mail to agent\": \"Mail to agent\"\n\"Mail to customer\": \"Mail to customer\"\n\"Mail to group\": \"Mail to group\"\n\"Mail to last collaborator\": \"Mail to last collaborator\"\n\"Mail to team\": \"Mail to team\"\n\"Mark Spam\": \"Mark spam\"\n\"Assign to agent\": \"Assign to agent\"\n\"Assign to group\": \"Assign to group\"\n\"Set Priority As\": \"Set Priority As\"\n\"Set Status As\": \"Set Status As\"\n\"Set Tag As\": \"Set Tag As\"\n\"Set Label As\": \"Set Label As\"\n\"Assign to team\": \"Assign to team\"\n\"Set Type As\": \"Set Type As\"\n\"Add Workflow\": \"Add Workflow\"\n\"ADD WORKFLOW\": \"ADD WORKFLOW\"\n\"Ticket Type code\": \"Ticket Type code\"\n\"Ticket Type description\": \"Ticket Type description\"\n\"Type Status\": \"Type Status\"\n\"Type is Active\": \"Type is Active\"\n\"Add Save Reply\": \"Add Save Reply\"\n\"Saved reply name\": \"Saved reply name\"\n\"Share saved reply with user(s) in these group(s)\": \"Share saved reply with user(s) in these group(s)\"\n\"Share saved reply with user(s) in these teams(s)\": \"Share saved reply with user(s) in these teams(s)\"\n\"Saved reply Body\": \"Saved reply body\"\n\"New Prepared Response\": \"New Prepared Response\"\n\"Prepared Response Status\": \"Prepared Response Status\"\n\"Prepared Response is Active\": \"Prepared Response is Active\"\n\"Share prepared response with user(s) in these group(s)\": \"Share prepared response with user(s) in these group(s)\"\n\"Share prepared response with user(s) in these teams(s)\": \"Share prepared response with user(s) in these teams(s)\"\n\"ADD PREPARED RESPONSE\": \"ADD PREPARED RESPONSE\"\n\"Add Prepared Response\": \"Add Prepared Response\"\n\"Folder Name is shown upfront at Knowledge Base\": \"The folder name to show in the knowledge base\"\n\"A small text about the folder helps user to navigate more easily\": \"A bit more info about this folder\"\n\"Publish\": \"Publish\"\n\"Choose appropriate status\": \"Choose appropriate status\"\n\"Folder Image\": \"Folder Image\"\n\"An image is worth a thousands words and makes folder more accessible\": \"Help users identify the proper folder with a recognizable image.\"\n\"Add Category\": \"Add Category\"\n\"Category Name is shown upfront at Knowledge Base\": \"The category name to show in the knowledge base\"\n\"A small text about the category helps user to navigate more easily\": \"A bit more info about this category\"\n\"Using Category Order, you can decide which category should display first\": \"Using Category Order, you can decide which category should display first\"\n\"Sorting\": \"Sorting\"\n\"Ascending Order (A-Z)\": \"Ascending Order (A-Z)\"\n\"Descending Order (Z-A)\": \"Descending Order (Z-A)\"\n\"Based on Popularity\": \"Based on Popularity\"\n\"Article of this category will display according to selected option\": \"Articles in this category will display depending on selected option\"\n\"Article\": \"Article\"\n\"Title\": \"Title\"\n\"View\": \"View\"\n\"Make as Starred\": \"Mark as Starred\"\n\"Yes\": \"Yes\"\n\"No\" : \"No\"\n\"Stared\" : \"Stared\"\n\"Revisions\": \"Revisions\"\n\"Related Articles\" : \"Related Articles\"\n\"Delete Article\":\t\"Delete Article\"\n\"Content\": \"Content\"\n\"Slug\": \"Slug\"\n\"Slug is the url identity of this article.\": \"The URL for this article\"\n\"Meta Title\": \"Meta Title\"\n\"Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A pages title tag and meta description are usually shown whenever that page appears in search engine results\": \"Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. The title tag and meta description are usually shown in search engine results for the page.\"\n\"Meta Keywords\": \"Meta Keywords\"\n\"Meta Description\": \"Meta Description\"\n\"Description\": \"Description\"\n\"Team Status\": \"Team Status\"\n\"Team is Active\": \"Team is Active\"\n\"Edit Privilege\": \"Edit Privilege\"\n\"Can create ticket\": \"Can create ticket\"\n\"Can edit ticket\": \"Can edit ticket\"\n\"Can delete ticket\": \"Can delete ticket\"\n\"Can restore trashed ticket\": \"Can restore trashed ticket\"\n\"Can assign ticket\": \"Can assign ticket\"\n\"Can assign ticket group\": \"Can assign ticket group\"\n\"Can update ticket status\": \"Can update ticket status\"\n\"Can update ticket priority\": \"Can update ticket priority\"\n\"Can update ticket type\": \"Can update ticket type\"\n\"Can add internal notes to ticket\": \"Can add internal notes to ticket\"\n\"Can edit thread/notes\": \"Can edit thread/notes\"\n\"Can lock/unlock thread\": \"Can lock/unlock thread\"\n\"Can add collaborator to ticket\": \"Can add collaborator to ticket\"\n\"Can delete collaborator from ticket\": \"Can delete collaborator from ticket\"\n\"Can delete thread/notes\": \"Can delete thread/notes\"\n\"Can apply prepared response on ticket\": \"Can apply prepared response on ticket\"\n\"Can add ticket tags\": \"Can add ticket tags\"\n\"Can delete ticket tags\": \"Can delete ticket tags\"\n\"Can kick other ticket users\": \"Can kick other ticket users\"\n\"Can manage email templates\": \"Can manage email templates\"\n\"Can manage groups\": \"Can manage groups\"\n\"Can manage Sub-Groups/ Teams\": \"Can manage Sub-Groups/ Teams\"\n\"Can manage agents\": \"Can manage agents\"\n\"Can manage agent privileges\": \"Can manage agent privileges\"\n\"Can manage ticket types\": \"Can manage ticket types\"\n\"Can manage ticket custom fields\": \"Can manage ticket custom fields\"\n\"Can manage customers\": \"Can manage customers\"\n\"Can manage Prepared Responses\": \"Can manage Prepared Responses\"\n\"Can manage Automatic workflow\": \"Can manage Automatic workflow\"\n\"Can manage tags\": \"Can manage tags\"\n\"Can manage knowledgebase\": \"Can manage knowledgebase\"\n\"Can manage Groups Saved Reply\": \"Can manage Groups Saved Reply\"\n\"Add Privilege\": \"Add Privilege\"\n\"Choose set of privileges which will be available to the agent.\": \"Choose set of privileges which will be available to the agent.\"\n\"Advanced\": \"Advanced\"\n\"Privilege Name must have characters only\": \"Privilege Name must have characters only\"\n\"Maximum character length is 50\": \"Maximum character length is 50\"\n\"Open Tickets\": \"Open Tickets\"\n\"New Customer\": \"New Customer\"\n\"New Agent\": \"New Agent\"\n\"Total Article(s)\": \"Total Article(s)\"\n\"Please specify a valid email address\": \"Please specify a valid email address\"\n\"Please enter the password associated with your email address\": \"Please enter the password associated with your email address\"\n\"Please enter your server host address\": \"Please enter your server host address\"\n\"Please specify a port number to connect with your mail server\": \"Please specify the port number for your mail server\"\n\"Success ! Branding details saved successfully.\": \"Success! Branding details saved successfully.\"\n\"Success ! Time details saved successfully.\": \"Success! Time details saved successfully.\"\n\"Spam setting saved successfully.\": \"Spam setting saved successfully.\"\n\"Please specify a valid name for your mailbox.\": \"Please specify a valid name for your mailbox.\"\n\"Please select a valid swift-mailer configuration.\": \"Please select a valid swift-mailer configuration.\"\n\"Please specify a valid host address.\": \"Please specify a valid host address.\"\n\"Please specify a valid email address.\": \"Please specify a valid email address.\"\n\"Please enter the associated account password.\": \"Please enter the associated account password.\"\n\"New Saved Reply\": \"New Saved Reply\"\n\"New Category\": \"New Category\"\n\"Folder\": \"Folder\"\n\"Category\": \"Category\"\n\"Created\": \"Created\"\n\"All Articles\": \"All Articles\"\n\"Viewed\": \"Viewed\"\n\"New Article\": \"New Article\"\n\"Thank you for your feedback!\": \"Thank you for your feedback!\"\n\"Was this article helpful?\": \"Was this article helpful?\"\n\"Helpdesk\": \"Helpdesk\"\n\"Support Center\": \"Support Center\"\n\"Mailboxes\": \"Mailboxes\"\n\"By\": \"By\"\n\"Search Tickets\": \"Search Tickets\"\n\"Customer Information\": \"Customer Information\"\n\"Total Replies\": \"Total Replies\"\n\"Filter With\": \"Filter With\"\n\"Type email to add\": \"Type email to add\"\n\"Collaborators\": \"Collaborators\"\n\"Labels\": \"Labels\"\n\"Group\": \"Group\"\n\"group\": \"group\"\n\"Contact Team\": \"Contact Team\"\n\"Stay on ticket\": \"Stay on ticket\"\n\"Redirect to list\": \"Redirect to list\"\n\"Nothing interesting here...\": \"Nothing interesting here\"\n\"Previous Ticket\": \"Previous Ticket\"\n\"Next Ticket\": \"Next Ticket\"\n\"Forward\": \"Forward\"\n\"Note\": \"Note\"\n\"Write a reply\": \"Write a reply\"\n\"Created Ticket\": \"Created Ticket\"\n\"All Threads\": \"All Threads\"\n\"Forwards\": \"Forwards\"\n\"Notes\": \"Notes\"\n\"Pinned\": \"Pinned\"\n\"Edit Ticket\": \"Edit Ticket\"\n\"Print Ticket\": \"Print Ticket\"\n\"Mark as Spam\": \"Mark as Spam\"\n\"Mark as Closed\": \"Mark as Closed\"\n\"Delete Ticket\": \"Delete Ticket\"\n\"View order details from different eCommerce channels\": \"View order details from different eCommerce channels\"\n\"ECOMMERCE CHANNELS\": \"ECOMMERCE CHANNELS\"\n\"Select channel\": \"Select channel\"\n\"Order Id\": \"Order Id\"\n\"Fetch Order\": \"Fetch Order\"\n\"No orders have been integrated to this ticket yet.\": \"No orders have been associated with this ticket yet.\"\n\"Enter your credentials below to gain access to your helpdesk account.\": \"Enter your credentials below to sign in\"\n\"Keep me logged in\": \"Keep me logged in\"\n\"Forgot Password?\": \"Forgot Password?\"\n\"Log in to your\": \"Log in to your\"\n\"Sign In\": \"Sign In\"\n\"Edit Customer\": \"Edit Customer\"\n\"Update\": \"Update\"\n\"Discard\": \"Discard\"\n\"Cancel\": \"Cancel\"\n\"Not Assigned\": \"Not Assigned\"\n\"Submit\": \"Submit\"\n\"Submit And Open\": \"Submit And Open\"\n\"Submit And Pending\": \"Submit And Pending\"\n\"Submit And Answered\": \"Submit And Answered\"\n\"Submit And Resolved\": \"Submit And Resolved\"\n\"Submit And Closed\": \"Submit And Closed\"\n\"Choose a Color\": \"Choose a Color\"\n\"Create\": \"Create\"\n\"Edit Label\": \"Edit Label\"\n\"Add Label\": \"Add Label\"\n\"To\": \"To\"\n\"Ticket\": \"Ticket\"\n\"Your browser does not support JavaScript or You disabled JavaScript, Please enable those !\": \"Your browser does not support Javascript or Javascript is disabled. Please correct this!\"\n\"Confirm Action\": \"Confirm Action\"\n\"Confirm\": \"Confirm\"\n\"No result found\": \"No result found\"\n\"ticket delivery status\": \"ticket delivery status\"\n\"Warning! Select valid image file.\": \"Warning! Select valid image file.\"\n\"Error\": \"Error\"\n\"Save\": \"Save\"\n\"SEO\": \"SEO\"\n\"Edit Saved Filter\": \"Edit Saved Filter\"\n\"Type atleast 2 letters\": \"Type at least 2 letters\"\n\"Remove Label\": \"Remove Label\"\n\"New Saved Filter\": \"New Saved Filter\"\n\"Is Default\": \"Is Default\"\n\"Remove Saved Filter\": \"Remove Saved Filter\"\n\"Ticket Info\": \"Ticket Info\"\n\"Last Replied Agent\": \"Last Replied Agent\"\n\"created Ticket\": \"created Ticket\"\n\"Uploaded Files\": \"Uploaded Files\"\n\"Download (as .zip)\": \"Download ( as .zip)\"\n\"made last reply\": \"last reply\"\n\"N/A\": \"N/A\"\n\"Unassigned\": \"Unassigned\"\n\"Label\": \"Label\"\n\"Assigned to me\": \"Assigned to me\"\n\"Search Query\": \"Search Query\"\n\"Searching\": \"Searching\"\n\"Saved Filter\": \"Saved Filter\"\n\"No Label Created\": \"No Label Created\"\n\"Label with same name already exist.\": \"Label with same name already exists\"\n\"Create New\": \"Create New\"\n\"Mail status\": \"Mail status\"\n\"replied\": \"replied\"\n\"added note\": \"added note\"\n\"forwarded\": \"forwarded\"\n\"TO\": \"TO\"\n\"CC\": \"CC\"\n\"BCC\": \"BCC\"\n\"Locked\": \"Locked\"\n\"Edit Thread\": \"Edit Thread\"\n\"Delete Thread\": \"Delete Thread\"\n\"Unpin Thread\": \"Unpin Thread\"\n\"Pin Thread\": \"Pin Thread\"\n\"Unlock Thread\": \"Unlock Thread\"\n\"Lock Thread\": \"Lock Thread\"\n\"Translate Thread\": \"Translate Thread\"\n\"Language\": \"Language\"\n\"English\": \"English\"\n\"French\": \"French\"\n\"Italian\": \"Italian\"\n\"Arabic\": \"Arabic\"\n\"German\": \"German\"\n\"Spanish\": \"Spanish\"\n\"Turkish\": \"Turkish\"\n\"Danish\": \"Danish\"\n\"Chinese\": \"Chinese\"\n\"Polish\": \"Polish\"\n\"Hebrew\": \"Hebrew\"\n\"Portuguese\": \"Portuguese\"\n\"System\": \"System\"\n\"Open in Files\": \"Open in Files\"\n\"Email address is invalid\": \"Email address is invalid\"\n\"Tag with same name already exist\": \"Tag with this name already exist\"\n\"Text length should be less than 20 charactors\": \"Must be less than 20 characters\"\n\"Label with same name already exist\": \"Label with same name already exist\"\n\"Agent Name\": \"Agent Name\"\n\"Agent Email\": \"Agent Email\"\n\"open\": \"open\"\n\"Currently active agents on ticket\": \"Currently active agents on ticket\"\n\"Edit Customer Information\": \"Edit Customer Information\"\n\"Restore\": \"Restore\"\n\"Delete Forever\": \"Delete Forever\"\n\"Add Team\": \"Add Team\"\n\"delete\": \"delete\"\n\"You didnt have any folder for current filter(s).\": \"No folders match current filter(s).\"\n\"Add Folder\": \"Add Folder\"\n\"This field must have valid characters only\": \"This field must have valid characters only\"\n\"Can edit task\": \"Can edit task\"\n\"Can create task\": \"Can create task\"\n\"Can delete task\": \"Can delete task\"\n\"Can add member to task\": \"Can add member to task\"\n\"Can remove member from task\": \"Can remove member from task\"\n\"Agent Privileges\": \"Agent Privileges\"\n\"Agent Privilege represents overall permissions in System.\": \"Agent privilege represents overall permissions in your helpdesk.\"\n\"Ticket View\": \"Ticket View\"\n\"User can view tickets based on selected scope.\": \"User can view tickets based on selected scope.\"\n\"If individual access then user can View assigned Ticket(s) only, If Team access then user can view all Ticket(s) in team(s) he belongs to and so on\": \"If individual access then user can View assigned Ticket(s) only, If Team access then user can view all Ticket(s) in team(s) they belongs to, etc.\"\n\"Global Access\": \"Global Access\"\n\"Group Access\": \"Group Access\"\n\"Team Access\": \"Team Access\"\n\"Individual Access\": \"Individual Access\"\n\"This field must have characters only\": \"This field must have characters only\"\n\"Maximum character length is 40\": \"Maximum character length is 40\"\n\"This is not a valid email address\": \"This is not a valid email address\"\n\"Password must contains 8 Characters\": \"Password must contains 8 Characters\"\n\"The passwords does not match\": \"The passwords do not match\"\n\"Enabled\": \"Enabled\"\n\"Create Configuration\": \"Create Configuration\"\n\"Swift Mailer Settings\": \"Swift Mailer Settings\"\n\"Username\": \"Username\"\n\"Please select a swiftmailer id\": \"Please select a swiftmailer id\"\n\"Please enter a valid e-mail id\": \"Please enter a valid e-mail id\"\n\"Please enter a mailer id\": \"Please enter a mailer id\"\n\"Email Id\": \"Email Id\"\n\"Are you sure? You want to perform this action.\": \"Are you sure you want to perform this action?\"\n\"Reorder\": \"Reorder\"\n\"New Workflow\": \"New Workflow\"\n\"OR\": \"OR\"\n\"AND\": \"AND\"\n\"Please enter a valid name.\": \"Please enter a valid name.\"\n\"Please select a value.\": \"Please select a value.\"\n\"Please add a value.\": \"Please add a value.\"\n\"This field is required\": \"This field is required\"\n\"or\": \"or\"\n\"and\": \"and\"\n\"Select a Condition\": \"Select a Condition\"\n\"Loading...\": \"Loading...\"\n\"Select Option\": \"Select Option\"\n\"Inactive\": \"Inactive\"\n\"New Type\": \"New Type\"\n\"Placeholders\": \"Placeholders\"\n\"Ticket Link\": \"Ticket Link\"\n\"Id\": \"Id\"\n\"Preview\": \"Preview\"\n\"Sort Order\": \"Sort Order\"\n\"This field must be a number\": \"This field must be a number\"\n\"User\": \"User\"\n\"Edit Group\": \"Edit Group\"\n\"Group Status\": \"Group Status\"\n\"Group is Active\": \"Group is Active\"\n\"Add Group\": \"Add Group\"\n\"Contact number is invalid\": \"Contact number is invalid\"\n\"Edit Agent\": \"Edit Agent\"\n\"No Privilege added, Please add Privilege(s) first !\": \"No privilege added, please add privilege(s) first!\"\n\"Edit Email Template\": \"Edit Email Template\"\n\"Edit Workflow\": \"Edit Workflow\"\n\"Save Workflow\": \"Save Workflow\"\n\"Edit Ticket Type\": \"Edit Ticket Type\"\n\"Add Ticket Type\": \"Add Ticket Type\"\n\"Date Released\": \"\tDate Released\"\n\"Free\": \"Free\"\n\"Premium\": \"Premium\"\n\"Installed\": \"Installed\"\n\"Installed Applications\": \"Installed Applications\"\n\"Apps Dashboard\": \"Apps Dashboard\"\n\"Dashboard\": \"Dashboard\"\n\"Nothing Interesting here\" : \"Nothing interesting here\"\n\"No Categories Added\" : \"No Categories Added\"\n\"Error : Something went wrong, please try again later\" : \"Error: Something went wrong, please try again later\"\n\"ticket\": \"ticket\"\n\"Add Email Template\": \"Add Email Template\"\n\"This field contain 100 characters only\": \"Max 100 characters\"\n\"This field contain characters only\" : \"This field may contain characters only\"\n\"Name length must not be greater than 200 !!\": \"Name length must not be greater than 200!\"\n\"Warning! Correct all field values first!\": \"Warning! Correct all field values first!\"\n\"Warning ! This is not a valid request\": \"Warning! This is not a valid request\"\n\"Success ! Tag removed successfully.\": \"Success! Tag removed successfully.\"\n\"Success ! Tags Saved successfully.\": \"Success! Tags Saved successfully.\"\n\"Success ! Revision restored successfully.\": \"Success! Revision restored successfully.\"\n\"Success ! Categories updated successfully.\": \"Success! Categories updated successfully.\"\n\"Success ! Article Related removed successfully.\": \"Success! Related article removed successfully.\"\n\"Success ! Article Related is already added.\": \"Success! Related article added.\"\n\"Success ! Cannot add self as relative article.\": \"Success! Cannot add self as relative article.\"\n\"Success ! Article Related updated successfully.\": \"Success! Related article updated successfully.\"\n\"Success ! Articles removed successfully.\": \"Success! Articles removed successfully.\"\n\"Success ! Article status updated successfully.\": \"Success! Article status updated successfully.\"\n\"Success ! Article star updated successfully.\": \"Success! Article star updated successfully.\"\n\"Success! Article updated successfully\": \"Success! Article updated successfully\"\n\"Success ! Category sort  order updated successfully.\": \"Success! Category sort order updated successfully.\"\n\"Success ! Category status updated successfully.\": \"Success! Category status updated successfully.\"\n\"Success ! Folders updated successfully.\": \"Success! Folders updated successfully.\"\n\"Success ! Categories removed successfully.\": \"Success! Categories removed successfully.\"\n\"Success ! Category updated successfully.\": \"Success! Category updated successfully.\"\n\"Error ! Category is not exist.\": \"Error! Category does not exist.\"\n\"Warning ! Customer Login disabled by admin.\": \"Warning! Customer Login disabled by admin.\"\n\"This Email is not registered with us.\": \"This email is not registered with us.\"\n\"Your password has been updated successfully.\": \"Your password has been updated successfully.\"\n\"Password dont match.\": \"Password doesn't match.\"\n\"Error ! Profile image is not valid, please upload a valid format\": \"Error! Profile image is not valid, please upload a valid format\"\n'Warning! Provide valid image file. (Recommened\": \"PNG, JPG or GIF Format).': 'Warning! invalid image file. (Recommened\": \"PNG, JPG or GIF Format).'\n\"Success! Folder has been added successfully.\": \"Success! Folder has been added successfully.\"\n\"Folder updated successfully.\": \"Folder updated successfully.\"\n\"Success ! Folder status updated successfully.\": \"Success! Folder status updated successfully.\"\n\"Error ! Folder is not exist.\": \"Error! Folder does not exist.\"\n\"Success ! Folder updated successfully.\": \"Success! Folder updated successfully.\"\n\"Error ! Folder does not exist.\": \"Error! Folder does not exist.\"\n\"Success ! Folder deleted successfully.\": \"Success! Folder deleted successfully.\"\n\"Warning ! Folder doesnt exists!\": \"Warning! Folder doesn't exists!\"\n\"Warning ! Cannot create ticket, given email is blocked by admin.\": \"Warning! Can't create ticket, given email is blocked by admin.\"\n\"Success ! Ticket has been created successfully.\": \"Success! Ticket has been created successfully.\"\n\"Warning ! Can not create ticket, invalid details.\": \"Warning! Can not create ticket, invalid details.\"\n\"Warning ! Post size can not exceed 25MB\": \"Warning! attachmment size can not exceed 25MB\"\n\"Create Ticket Request\": \"Create Ticket Request\"\n\"Success ! Reply added successfully.\": \"Success! Reply added successfully.\"\n\"Warning ! Reply field can not be blank.\": \"Warning! Reply field can not be blank.\"\n\"Success ! Rating has been successfully added.\": \"Success! Rating has been successfully added.\"\n\"Warning ! Invalid rating.\": \"Warning! Invalid rating.\"\n\"Error ! Can not add customer as a collaborator.\": \"Error! Can not add customer as a collaborator.\"\n\"Success ! Collaborator added successfully.\": \"Success! Collaborator added successfully.\"\n\"Error ! Collaborator is already added.\": \"Error! Collaborator is already added.\"\n\"Success ! Collaborator removed successfully.\": \"Success! Collaborator removed successfully.\"\n\"Error ! Invalid Collaborator.\": \"Error! Invalid Collaborator.\"\n\"An unexpected error occurred. Please try again later.\": \"An unexpected error occurred. Please try again later.\"\n\"Feedback saved successfully.\": \"Feedback saved successfully.\"\n\"Feedback updated successfully.\": \"Feedback updated successfully.\"\n\"Invalid feedback provided.\": \"Invalid feedback provided.\"\n\"Article not found.\": \"Article not found.\"\n\"You need to login to your account before can perform this action.\": \"You need to log in to your account before can perform this action.\"\n\"Warning! Please add valid Actions!\": \"Warning! Please add valid actions!\"\n\"Warning! In Free Plan you can not change Events!\": \"Warning! In free plan you can not change events!\"\n\"Success! Prepared Response has been updated successfully.\": \"Success! Prepared response has been updated successfully.\"\n\"Success! Prepared Response has been added successfully.\": \"Success! Prepared response has been added successfully.\"\n\"Warning  This is not a valid request\": \"Warning! This is not a valid request\"\n\"Use Default Colors\": \"Use Default Colors\"\n\"Masonry\": \"Masonry\"\n\"Popular Article\": \"Popular Article\"\n\"Manage Ticket Custom Fields\": \"Manage Ticket Custom Fields\"\n\"Mail status:\": \"Mail status:\"\n\"You dont have premission to edit this Prepared response\": \"You don't have premission to edit this prepared response\"\n\"Save Prepared Response\": \"Save prepared response\"\n\"Success ! Prepared response removed successfully.\": \"Success! Prepared response removed successfully.\"\n\"Warning! You are not allowed to perform this action.\": \"Warning! You are not allowed to perform this action.\"\n\"Success! Workflow has been updated successfully.\": \"Success! Workflow has been updated successfully.\"\n\"Success! Workflow has been added successfully.\": \"Success! Workflow has been added successfully.\"\n\"Success! Order has been updated successfully.\": \"Success! Order has been updated successfully.\"\n\"Success! Workflow has been removed successfully.\": \"Success! Workflow has been removed successfully.\"\n\"Mailbox successfully created.\": \"Mailbox successfully created.\"\n\"Mailbox successfully updated.\": \"Mailbox successfully updated.\"\n\"Warning ! Bad request !\": \"Warning! Bad request!\"\n\"Error! Given current password is incorrect.\": \"Error! Password is incorrect.\"\n\"Success ! Profile update successfully.\": \"Success! Profile update successfully.\"\n\"Error ! User with same email is already exist.\": \"Error! User with same email already exists.\"\n\"Success ! Agent updated successfully.\": \"Success! Agent updated successfully.\"\n\"Success ! Agent removed successfully.\": \"Success! Agent removed successfully.\"\n\"Warning ! You are allowed to remove account owners account.\": \"Warning! You are allowed to remove this account.\"\n\"Error ! Invalid user id.\": \"Error! Invalid user id.\"\n\"Success ! Filter has been saved successfully.\": \"Success! Filter has been saved successfully.\"\n\"Success ! Filter has been updated successfully.\": \"Success! Filter has been updated successfully.\"\n\"Success ! Filter has been removed successfully.\": \"Success! Filter has been removed successfully.\"\n\"Please check your mail for password update.\": \"Please check your inbox for a new password.\"\n\"This Email address is not registered with us.\": \"This email address is not registered with us.\"\n\"Success ! Customer saved successfully.\": \"Success! Customer saved successfully.\"\n\"Error ! User with same email already exist.\": \"Error! User with same email already exists.\"\n\"Success ! Customer information updated successfully.\": \"Success! Customer information updated successfully.\"\n\"Success ! Customer updated successfully.\": \"Success! Customer updated successfully.\"\n\"Error ! Customer with same email already exist.\": \"Error! Customer with same email already exists.\"\n\"unstarred Action Completed successfully\": \"unstarred action completed successfully\"\n\"starred Action Completed successfully\": \"starred action completed successfully\"\n\"Success ! Customer removed successfully.\": \"Success! Customer removed successfully.\"\n\"Error ! Invalid customer id.\": \"Error! Invalid customer id.\"\n\"Success! Template has been updated successfully.\": \"Success! Template has been updated successfully.\"\n\"Success! Template has been added successfully.\": \"Success! Template has been added successfully.\"\n\"Success! Template has been deleted successfully.\": \"Success! Template has been deleted successfully.\"\n\"Warning! resource not found.\": \"Warning! resource not found.\"\n\"Warning! You can not remove predefined email template which is being used in workflow(s).\": \"Warning! You can not remove an email template which is being used in workflow(s).\"\n\"Success ! Email settings are updated successfully.\": \"Success! Email settings successfully updated.\"\n\"Success ! Group information updated successfully.\": \"Success! Group information updated successfully.\"\n\"Success ! Group information saved successfully.\": \"Success! Group information saved successfully.\"\n\"Support Group removed successfully.\": \"Support Group removed successfully.\"\n\"Success ! Privilege information saved successfully.\": \"Success! Privilege information saved successfully.\"\n\"Privilege updated successfully.\": \"Privilege updated successfully.\"\n\"Support Privilege removed successfully.\": \"Support privilege removed successfully.\"\n\"Success! Reply has been updated successfully.\": \"Success! Reply has been updated successfully.\"\n\"Success! Reply has been added successfully.\": \"Success! Reply has been added successfully.\"\n\"Success! Saved Reply has been deleted successfully\": \"Success! Saved Reply has been deleted successfully\"\n\"SwiftMailer configuration updated successfully.\": \"SwiftMailer configuration updated successfully.\"\n\"Swiftmailer configuration removed successfully.\": \"Swiftmailer configuration removed successfully.\"\n\"Success ! Team information saved successfully.\": \"Success! Team information saved successfully.\"\n\"Success ! Team information updated successfully.\": \"Success! Team information updated successfully.\"\n\"Support Team removed successfully.\": \"Support Team removed successfully.\"\n\"Success! Reply has been added successfully\": \"Success! Reply has been added successfully\"\n\"Success ! Thread updated successfully.\": \"Success! Thread updated successfully.\"\n\"Error ! Reply field can not be blank.\": \"Error  Reply field can not be blank.\"\n\"Success ! Thread removed successfully.\": \"Success! Thread removed successfully.\"\n\"Success ! Thread locked successfully\": \"Success! Thread locked successfully\"\n\"Success ! Thread unlocked successfully\": \"Success! Thread unlocked successfully\"\n\"Success ! Thread pinned successfully\": \"Success! Thread unpinned successfully\"\n\"Error ! Invalid thread.\": \"Error! Invalid thread.\"\n\"Could not create ticket, invalid details.\": \"Could not create ticket, invalid details.\"\n\"Success ! Tag updated successfully.\": \"Success! Tag updated successfully.\"\n\"Error ! Customer can not be added as collaborator.\": \"Error! Customer can not be added as collaborator.\"\n\"Success ! Tag unassigned successfully.\": \"Success! Tag unassigned successfully.\"\n\"Success ! Tag added successfully.\": \"Success! Tag added successfully.\"\n\"Please enter tag name.\": \"Please enter tag name.\"\n\"Error ! Invalid tag.\": \"Error! Invalid tag.\"\n\"Success ! Type removed successfully.\": \"Success! Type removed successfully.\"\n\"Success ! Ticket to label removed successfully.\": \"Success! Ticket label removed successfully.\"\n\"Unable to retrieve support team details\": \"Unable to retrieve support team details\"\n\"Ticket support group updated successfully\": \"Ticket support group updated successfully\"\n\"Unable to retrieve status details\": \"Unable to retrieve status details\"\n\"Insufficient details provided.\": \"Insufficient details provided.\"\n\"Error! Subject field is mandatory\": \"Error! Subject field is mandatory\"\n\"Error! Reply field is mandatory\": \"Error! Reply field is mandatory\"\n\"Success ! Ticket has been updated successfully.\": \"Success! Ticket has been updated successfully.\"\n\"Success ! Label updated successfully.\": \"Success! Label updated successfully.\"\n\"Error ! Invalid label id.\": \"Error! Invalid label id.\"\n\"Success ! Label removed successfully.\": \"Success! Label removed successfully.\"\n\"Success ! Label created successfully.\": \"Success! Label created successfully.\"\n\"Error ! Label name can not be blank.\": \"Error! Label name can not be blank.\"\n\"Success ! Ticket moved to trash successfully.\": \"Success! Ticket moved to trash successfully.\"\n\"Success! Ticket type saved successfully.\": \"Success! Ticket type saved successfully.\"\n\"Success! Ticket type updated successfully.\": \"Success! Ticket type updated successfully.\"\n\"Error! Ticket type with same name already exist\": \"Error! Ticket type with same name already exist\"\n\"SAVE\": \"SAVE\"\n\n# Successfully Pop-up/Notification Messages:\n\"Ticket is already assigned to agent\" : \"Ticket is already assigned to agent\"\n\"Success ! Agent assigned successfully.\" : \"Success ! Agent assigned successfully.\"\n\"Ticket status is already set\" : \"Ticket status is already set\"\n\"Success ! Tickets status updated successfully.\" : \"Success ! Tickets status updated successfully.\"\n\"Ticket priority is already set\" : \"Ticket priority is already set\"\n\"Success ! Tickets priority updated successfully.\" : \"Success ! Tickets priority updated successfully.\"\n\"Ticket group is updated successfully\" : \"Ticket group is updated successfully\"\n\"Ticket is already assigned to group\" : \"Ticket is already assigned to group\"\n\"Success ! Tickets group updated successfully.\" : \"Success ! Tickets group updated successfully.\"\n\"Ticket team is updated successfully\" : \"Ticket team is updated successfully\"\n\"Ticket is already assigned to team\" : \"Ticket is already assigned to team\"\n\"Success ! Tickets team updated successfully.\" : \"Success ! Tickets team updated successfully.\"\n\"Ticket type is already set\" : \"Ticket type is already set\"\n\"Success ! Tickets type updated successfully.\" : \"Success ! Tickets type updated successfully.\"\n\"Success ! Tickets label updated successfully.\" : \"Success ! Tickets label updated successfully.\"\n\"Success ! Tickets added to label successfully.\" : \"Success ! Tickets added to label successfully.\"\n\"Success ! Tickets moved to trashed successfully.\" : \"Success ! Tickets moved to trashed successfully.\"\n\"Success ! Tickets removed successfully.\" : \"Success ! Tickets removed successfully.\"\n\"Success ! Tickets restored successfully.\" : \"Success ! Tickets restored successfully.\"\n\"Unable to retrieve group details\" : \"Unable to retrieve group details\"\n\"Unable to retrieve team details\" : \"Unable to retrieve team details\"\n\"Tickets details have been updated successfully\": \"Tickets details have been updated successfully\"\n\"Label added to ticket successfully\" : \"Label added to ticket successfully\"\t\t\t\t\n\"Label already added to ticket\" : \"Label already added to ticket\"\n\n#customer page\n\"Howdy!\": \"Howdy!\"\n\"New Ticket Request\": \"New Ticket Request\"\n\"Ticket Requests\": \"Ticket Requests\"\n\"Tickets have been updated successfully\": \"Tickets have been updated successfully\"\n\"Please check your mail for password update\": \"Please check your inbox for a new password\"\n\"This email address is not registered with us\": \"This email address is not registered with us\"\n\"You have already update password using this link if you wish to change password again click on forget password link here from login page\": \"You have already updated your password using this link. If you wish to change your password again click on the forget password link on the login page.\"\n\"Your password has been successfully updated. Login using updated password\": \"Your password has been successfully updated. Please log in using your new password.\"\n\"Please try again, The passwords do not match\": \"Please try again, The passwords do not match\"\n\"Support Privilege removed successfully\": \"Support Privilege removed successfully\"\n\"Success! Saved Reply has been deleted successfully.\": \"Success! Saved Reply has been deleted successfully.\"\n\"SwiftMailer configuration created successfully.\": \"SwiftMailer configuration created successfully.\"\n\"No swiftmailer configurations found for mailer id:\": \"No swiftmailer configurations found for mailer id:\"\n\"Reply content cannot be left blank.\": \"Reply content cannot be left blank.\"\n\"Reply added to the ticket and forwarded successfully.\": \"Reply added to the ticket and forwarded successfully.\"\n\"Success ! Thread pinned successfully.\": \"Success! Thread pinned successfully.\"\n\"Success ! unpinned removed successfully.\": \"Success! Thread unpinned successfully.\"\n\"Unable to retrieve priority details\": \"Unable to retrieve priority details\"\n\"Ticket support team updated successfully\": \"Ticket support team updated successfully\"\n\"Ticket assigned to support group \": \"Ticket assigned to support group \"\n\"Mailbox configuration removed successfully.\": \"Mailbox configuration removed successfully.\"\n\"visit our website\": \"visit our website\"\n\n\n\"Cookie Usage Policy\": \"Cookie Usage Policy\"\n\"cookie\": \"cookie\"\n\"cookies\": \"cookies\"\n\"HELP\": \"HELP\"\n\"Home\": \"Home\"\n\"Cookie Policy\": \"Cookie Policy\"\n\"Prev\": \"Prev\"\n\"Ticket query message\": \"Ticket content\"\n\"Select type\": \"Select type\"\n\"Search KnowledgeBase\": \"Search KnowledgeBase\"\n\"You cant merge an account with itself.\": \"You can't merge an account with itself.\"\n\"Edit Profile\": \"Edit Profile\"\n\"Customer Login\": \"Customer Login\"\n\"Contact Us\": \"Contact Us\"\n\"If you have ever contacted our support previously, your account would have already been created.\": \"If you have ever contacted us previously, your account is more than likely already created.\"\n\"support\": \"support\"\n\"HelpDesk\": \"HelpDesk\"\n\"Enter search keyword\": \"Enter search keyword\"\n\"Browse via Folders\": \"Explore the knowledge base\"\n\"Looking for something that is queried generally? Choose a relevant folder from below to explore possible solutions\": \"Check out our knowledge base to see if your question has already been answered.\"\n\"Unable to find an answer?\": \"Contact Our Team\"\n\"Looking for anything specific article which resides in general queries? Just browse the various relevant folders and categories and then you will find the desired article.\": \"If you still can't find an answer to what you're looking for, or you have a specific question, open a new ticket and we'd be happy to help!\"\n\"Popular Articles\": \"Popular Articles\"\n\"Here are some of the most popular articles, which helped number of users to get their queries and questions resolved.\": \"Some of the more popular articles in our knowledge base that have helped other customers.\"\n\"Browse via Categories\": \"Browse via Categories\"\n\"Looking for something specific? Choose a relevant category from below to explore possible solutions\": \"Choose a category from the list below to view articles.\"\n\"No Categories Found!\": \"No Categories Found!\"\n\"Powered by\": \"Powered by\"\n\"Powered by %uvdesk%, an open-source project by %webkul%.\": \"Powered by %uvdesk%, an open-source project by %webkul%.\"\n\n#forgotpassword\n\"Forgot Password\": \"Forgot Password\"\n\"Enter your email address and we will send you an email with instructions to update your login credentials.\": \"Enter your email address and we will send you a message to update your login credentials.\"\n\"Send Mail\": \"Send Mail\"\n\"Sign In to %websitename%\": \"Sign In to %websitename%\"\n\"Enter your name\": \"Enter your name\"\n\"Enter your email\": \"Enter your email\"\n\"Learn more about %deliveryStatus%.\": \"Learn more about %deliveryStatus%.\"\n\"Some of our site pages utilize %cookies% and other tracking technologies. A %cookie% is a small text file that may be used, for example, to collect information about site activity. Some cookies and other technologies may serve to recall personal information previously indicated by a site user. You may block cookies, or delete existing cookies, by adjusting the appropriate setting on your browser. Please consult the %help% menu of your browser to learn how to do this. If you block or delete %cookies% you may find the usefulness of our site to be impaired.\": \"Some of our site pages utilize %cookies% and other tracking technologies. A %cookie% is a small text file that may be used, for example, to collect information about site activity. Some cookies and other technologies may serve to recall personal information previously indicated by a site user. You may block cookies, or delete existing cookies, by adjusting the appropriate setting on your browser. Please consult the %help% menu of your browser to learn how to do this. If you block or delete %cookies% you may find the usefulness of our site to be impaired.\"\n\"To know more about how our privacy policy works, please %websiteLink%.\": \"To know more about our privacy policy, please visit %websiteLink%.\"\n\"This field contain maximum 40 charectures.\": \"This field contain maximum 40 charectures.\"\n\"This field contain maximum 50 charectures.\": \"This field contain maximum 50 charectures.\"\n#misc\n\"Time\": \"Time\"\n\"Links\": \"Links\"\n\"Broadcast Message\": \"Broadcast Message\"\n\"Wide Logo\": \"Wide Logo\"\n\"Upload an Image (200px x 48px) in</br> PNG or JPG Format\": \"Upload an Image (200px x 48px) in</br> PNG or JPG Format\"\n\"It will be shown as Logo on Knowledgebase and Helpdesk\": \"Your knowledge base / helpdesk logo\"\n\"Website Status\": \"Website Status\"\n\"Enable front end website and knowledgebase for customer(s)\": \"Enable front end website and knowledgebase for customer(s)\"\n\"Brand Color\": \"Brand Color\"\n\"Page Background Color\": \"Page Background Color\"\n\"Header Background Color\": \"Header Background Color\"\n\"Banner Background Color\": \"Banner Background Color\"\n\"Page Link Color\": \"Page Link Color\"\n\"Page Link Hover Color\": \"Page Link Hover Color\"\n\"Article Text Color\": \"Article Text Color\"\n\"Tag Line\": \"Tag Line\"\n\"Hi! how can we help?\": \"Hi! how can we help?\"\n\"Layout\": \"Layout\"\n\"Ticket Create Option\": \"Ticket Create Option\"\n\"Login Required To Create Tickets\": \"Login required To create tickets\"\n\"Remove Customer Login/Signin Button\": \"Remove customer log in / sign in button\"\n\"Disable Customer Login\": \"Disable Customer Login\"\n\"Meta Description (Recommended)\": \"Meta Description (Recommended)\"\n\"Meta Keywords (Recommended)\": \"Meta Keywords (Recommended)\"\n\"Header Link\": \"Header Link\"\n'URL (with http\":/\"/ or https\":/\"/)': 'URL (with http\":/\"/ or https\":/\"/)'\n\"Footer Link\": \"Footer Link\"\n\"Custom CSS (Optional)\": \"Custom CSS (Optional)\"\n\"It will be add to the frontend knowledgebase only\": \"Displayed only in front end knowledge base\"\n\"Custom Javascript (Optional)\": \"Custom Javascript (Optional)\"\n\"Broadcast message content to show on helpdesk\": \"Broadcast message content to show on helpdesk\"\n\"From\": \"From\"\n\"Time duration between which message will be displayed(if applicable)\": \"How long should the message be displayed?\"\n\"Broadcasting Status\": \"Broadcasting Status\"\n\"Broadcasting is Active\": \"Broadcasting is Active\"\n\"Choose a default company timezone\": \"Choose a default companys timezone\"\n\"Date Time Format\": \"Date Time Format\"\n\"Choose a format to convert date to specified date time format\": \"Choose a format to convert date to specified date time format\"\n\"An empty file is not allowed.\": \"An empty file is not allowed.\"\n\"File size must not be greater than 200KB !!\": \"File size must not be greater than 200KB!\"\n\"Please upload valid Image file (Only JPEG, JPG, PNG allowed)!!\": \"Please upload valid Image file (Only JPEG, JPG, PNG allowed)!!\"\n\"Provide a valid url(with protocol)\": \"Provide a valid url (with protocol)\"\n\"ticket.message.placeHolders.info\": \"ticket.message.placeHolders.info\"\n\"ticket.attachments.placeHolders.info\": \"\tticket.attachments.placeHolders.info\"\n\"ticket.threadMessage.placeHolders.info\": \"ticket.threadMessage.placeHolders.info\"\n\"ticket.tags.placeHolders.info\": \"ticket.tags.placeHolders.info\"\n\"ticket.source.placeHolders.info\": \"ticket.source.placeHolders.info\"\n\"ticket.collaborator.name.placeHolders.info\": \"ticket.collaborator.name.placeHolders.info\"\n\"ticket.collaborator.email.placeHolders.info\": \"ticket.collaborator.email.placeHolders.info\"\n\"user.name.info\": \"user.name.info\"\n\"user.email.info\": \"user.email.info\"\n\"user.account.validate.link.info\": \"user.account.validate.link.info\"\n\"user.password.forgot.link.info\": \"user.password.forgot.link.info\"\n\"global.companyName\": \"global.companyName\"\n\"global.companyLogo\": \"global.companyLogo\"\n\"global.companyUrl\": \"global.companyUrl\"\n\"ticket.priority.placeHolders.info\": \"\tticket.priority.placeHolders.info\"\n\"ticket.group.placeHolders.info\": \"ticket.group.placeHolders.info\"\n\"ticket.team.placeHolders.info\": \"ticket.team.placeHolders.info\"\n\"ticket.customerName.placeHolders.info\": \"\tticket.customerName.placeHolders.info\"\n\"ticket.customerEmail.placeHolders.info\": \"\tticket.customerEmail.placeHolders.info\"\n\"ticket.agentName.placeHolders.info\": \"ticket.agentName.placeHolders.info\"\n\"ticket.agentEmail.placeHolders.info\": \"ticket.agentEmail.placeHolders.info\"\n\"ticket.link.placeHolders.info\": \"\tticket.link.placeHolders.info \"\n\"ticket.id.placeHolders.info\": \"ticket.id.placeHolders.info\"\n\"ticket.subject.placeHolders.info\": \"\tticket.subject.placeHolders.info\"\n\"ticket.status.placeHolders.info\": \"ticket.status.placeHolders.info\"\n'comma \",\" separated': 'comma separated (,)'\n\"Low\": \"Low\"\n\"Medium\": \"Medium\"\n\"High\": \"High\"\n\"Urgent\": \"Urgent\"\n\"Reset Password\": \"Reset Password\"\n\"Enter your new password below to update your login credentials\": \"Enter your new password below to update your login credentials\"\n\"Save Password\": \"Save Password\"\n\"Rate Support\": \"Rate Support\"\n\"I am very Sad\": \"I am very disappointed\"\n\"I am Sad\": \"I am disappointed\"\n\"I am Neutral\": \"I am satisfied\"\n\"I am Happy\": \"I am happy\"\n\"I am Very Happy\": \"I am very happy\"\n\"Kudos\": \"Kudos\"\n\"kudos\": \"Kudos\"\n\"Very Sad\": \"Very disappointed\"\n\"Sad\": \"Disappointed\"\n\"Neutral\": \"Satisfied\"\n\"Happy\": \"Happy\"\n\"Very Happy\": \"Very Happy\"\n\"Star(s)\": \"Star(s)\"\n\"Warning ! Swiftmailer not working. An error has occurred while sending emails!\" : \"Warning ! Swiftmailer not working. An error has occurred while sending emails!\"\n\"Invalid credentials.\": \"Invalid credentials\"\n\"Success ! Project cache cleared successfully.\": \"Success! Project cache cleared successfully.\"\n\"clear cache\": \"clear cache\"\n\"Last Updated\": \"Last Updated\"\n\"Error! Something went wrong.\": \"Error! Something went wrong.\"\n\"We were not able to find the page you are looking for.\": \"We were not able to find the page you are looking for.\" \n\"Page not found\": \"Page not found\"\n\"Forbidden\": \"Forbidden\"\n\"You don’t have the necessary permissions to access this Web page :(\": \"You don’t have the necessary permissions to access this Web page :(\"\n\"Internal server error\": \"Internal server error\"\n\"Our system has goofed up for a while, but good part is it won't last long\": \"Our system has goofed up for a while, but good part is it won't last long\"\n\"Unknown Error\": \"Unknown Error\"\n\"We are quite confused about how did you land here:/\": \"We are quite confused about how did you land here :/\"\n\"Few of the links which may help you to get back on the track -\": \"Few of the links which may help you to get back on the track -\"\n\n#Microsoft apps:\n\"Microsoft Apps\": \"Microsoft Apps\"\n\"Add a Microsoft app\": \"Add a Microsoft app\"\n\"Enable\": \"Enable\"\n\"App Name\": \"App Name\"\n\"Tenant Id\": \"Tenant Id\"\n\"Client Id\": \"Client Id\"\n\"Client Secret\": \"Client Secret\"\n\"NEW APP:\": \"NEW APP:\"\n\"UPDATE APP\": \"UPDATE APP\"\n\"Guide on creating a new app in Azure Active Directory:\": \"Guide on creating a new app in Azure Active Directory:\"\n\"To add a new Microsoft App to your azure active directory, follow the steps as given below:\": \"To add a new Microsoft App to your azure active directory, follow the steps as given below:\"\n\"Go to Azure Active Directory -> App registerations\": \"Go to Azure Active Directory -> App registerations\"\n\"Disable\": \"Disable\"\n\"Please enter a valid name for your app.\": \"Please enter a valid name for your app.\"\n\"Please enter a valid tenant id.\": \"Please enter a valid tenant id.\"\n\"Please enter a valid client id.\": \"Please enter a valid client id.\"\n\"Please enter a valid client secret.\": \"Please enter a valid client secret.\"\n\"Microsoft app settings\": \"Microsoft app settings\"\n\"Unverified\": \"Unverified\"\n\"Microsoft app has been updated successfully.\": \"Microsoft app has been updated successfully.\"\n\"No microsoft apps found\": \"No microsoft apps found\"\n\"Microsoft app settings could not be verifired successfully. Please check your settings and try again later.\": \"Microsoft app settings could not be verifired successfully. Please check your settings and try again later.\"\n\"Microsoft app has been integrated successfully.\": \"Microsoft app has been integrated successfully.\"\n\"Microsoft app has been deleted successfully.\": \"Microsoft app has been deleted successfully.\"\n\"Verified\": \"Verified\"\n\n\"Create a New Registration\": \"Create a New Registration\"\n\"Enter your app details as following:\": \"Enter your app details as following:\"\n\"App Name: Enter an app name to easily help you identify its purpose\": \"App Name: Enter an app name to easily help you identify its purpose\"\n\"Supported Account Types: Select whichever option works the best for you (Recommended: Accounts in any organizational directory and personal Microsoft accounts)\": \"Supported Account Types: Select whichever option works the best for you (Recommended: Accounts in any organizational directory and personal Microsoft accounts)\"\n\"Redirect URI:\": \"Redirect URI:\"\n\"Select Platform: Web\": \"Select Platform: Web\"\n\"Enter the following redirect uri:\": \"Enter the following redirect uri:\"\n\"Proceed to create your application\": \"Proceed to create your application\"\n\"Once your app has been created, in your app overview section, continue with adding a client credential by clicking on \\\"Add a certificate or secret\\\"\": \"Once your app has been created, in your app overview section, continue with adding a client credential by clicking on \\\"Add a certificate or secret\\\"\"\n\"Create a new client secret\": \"Create a new client secret\"\n\"Enter a description as per your preference to help identify the purpose of this client secret\": \"Enter a description as per your preference to help identify the purpose of this client secret\"\n\"Choose an expiration time as per your preference\": \"Choose an expiration time as per your preference\"\n\"Proceed to add your client secret\": \"Proceed to add your client secret\"\n\"Copy the client secret value which will be needed later and cannot be viewed again\": \"Copy the client secret value which will be needed later and cannot be viewed again\"\n\"Navigate to API permissions\": \"Navigate to API permissions\"\n\"Click on \\\"Add a permission\\\" to add a new api permission. Add the following delegated permissions by selecting Microsoft APIs > Microsoft Graph > Delegate Permissions\": \"Click on \\\"Add a permission\\\" to add a new api permission. Add the following delegated permissions by selecting Microsoft APIs > Microsoft Graph > Delegate Permissions\"\n\"Navigate to your app overview section\": \"Navigate to your app overview section\"\n\"Copy the Application (Client) Id\": \"Copy the Application (Client) Id\"\n\"Copy the Directory (Tenant) Id\": \"Copy the Directory (Tenant) Id\"\n\"Enter your client id, tenant id, and client secret in settings above as required.\": \"Enter your client id, tenant id, and client secret in settings above as required.\"\n\"offline_access\": \"offline_access\"\n\"openid\": \"openid\"\n\"profile\": \"profile\"\n\"User.Read\": \"User.Read\"\n\"IMAP.AccessAsUser.All\": \"IMAP.AccessAsUser.All\"\n\"SMTP.Send\": \"SMTP.Send\"\n\"POP.AccessAsUser.All\": \"POP.AccessAsUser.All\"\n\"Mail.Read\": \"Mail.Read\"\n\"Mail.ReadBasic\": \"Mail.ReadBasic\"\n\"Mail.Send\": \"Mail.Send\"\n\"Mail.Send.Shared\": \"Mail.Send.Shared\"\n\"Add App\": \"Add App\"\n\"New App\": \"New App\"\n\n#Mailbox option:\n\"Disable email delivery\": \"Disable email delivery\"\n\"Use as default mailbox for sending emails\": \"Use as default mailbox for sending emails\"\n\"Inbound Emails\": \"Inbound Emails\"\n\"Manage how you wish to retrieve and process emails from your mailbox.\": \"Manage how you wish to retrieve and process emails from your mailbox.\"\n\"Outbound Emails\": \"Outbound Emails\"\n\"Manage how you wish to send emails from your mailbox.\": \"Manage how you wish to send emails from your mailbox.\"\n\n\"Marketing Modules\" : \"Marketing Modules\"\n\"New Marketing Module\": \"New Marketing Module\"\n\"Marketing Module\": \"Marketing Module\"\n\"Status:\": \"Status:\""
  },
  {
    "path": "translations/messages.es.yml",
    "content": "\"Signed in as\": \"Registrado como\"\n\"Your Profile\": \"Tu perfil\"\n\"Create Ticket\": \"Crear Ticket\"\n\"Create Agent\": \"Crear agente\"\n\"Create Customer\": \"Crear cliente\"\n\"Sign Out\": \"Desconectar\"\n\"Default Language (Optional)\": \"Idioma predeterminado (opcional)\"\n\"Swift Mailer ID\": \"ID de envío rápido\"\n\"Username/Email\": \"Nombre de usuario/Correo electrónico\"\n\"create new\": \"crear nuevo\"\n\"Ticket Information\": \"Información de entradas\"\n\"CC/BCC\": \"CC/BCC\"\n\"Success! Label created successfully.\": \"Éxito! Etiqueta creada con éxito.\"\n\"Success! Label removed successfully.\": \"Éxito! Etiqueta eliminada con éxito.\"\n\"Reports\": \"Informes\"\n\"Rating\": \"Clasificación\"\n\"Kudos Rating\": \"Calificación de Kudos\"\n\"Choose your default timeformat\": \"Elija su formato de hora predeterminado\"\n\"Remove profile picture\": \"Quitar foto de perfil\"\n\"Success ! Profile updated successfully.\": \"Éxito ! Perfil actualizado con éxito.\"\n\"Howdy\": \"Hola\"\n\"Form successfully updated.\": \"Formulario actualizado correctamente.\"\n\"NEW FORM\": \"NUEVA FORMA\"\n\"Text Box\": \"Caja de texto\"\n\"Text Area\": \"Textbereich\"\n\"Select\": \"Seleccione\"\n\"Radio\": \"Radio\"\n\"Checkbox\": \"Caja\"\n\"Date\": \"Fecha\"\n\"Both Date and Time\": \"Tanto la fecha como la hora\"\n\"Choose a status\": \"Elige un estado\"\n\"Choose a group\": \"Elige un grupo\"\n\"Can manage Group's Saved Reply\": \"Puede administrar la respuesta guardada del grupo\"\n\"Can manage agent activity\": \"Puede administrar la actividad del agente\"\n\"Slug is the url identity of this article. We will help you to create valid slug at time of typing.\": \"Slug es la identidad URL de este artículo. Lo ayudaremos a crear un slug válido al momento de escribir.\"\n\"The URL for this article\": \"La URL de este artículo\"\n\"Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A page's title tag and meta description are usually shown whenever that page appears in search engine results\": \"Las etiquetas de título y las metadescripciones son fragmentos de código HTML en el encabezado de una página web. Ayudan a los motores de búsqueda a comprender el contenido de una página. La etiqueta de título y la meta descripción de una página generalmente se muestran cada vez que esa página aparece en los resultados del motor de búsqueda.\"\n\"comma separated (,)\": \"separado por comas (,)\"\n\"Article Title\": \"Título del artículo\"\n\"Start typing few charactors and add set of relevant article from the list\": \"Comience a escribir algunos caracteres y agregue un conjunto de artículos relevantes de la lista\"\n\"Success! Announcement data saved successfully.\": \"¡Éxito! Los datos del anuncio se guardaron correctamente.\"\n\"Success ! Agent added successfully.\": \"Éxito ! Agente añadido con éxito.\"\n\"Success! Privilege information saved successfully.\": \"¡Éxito! La información de privilegios se guardó correctamente.\"\n\"Edit Prepared Response\": \"Editar respuesta preparada\"\n\"Success! Type removed successfully.\": \"¡Éxito! Tipo eliminado con éxito.\"\n\"No results available\": \"No hay resultados disponibles\"\n\"Success ! Prepared Response applied successfully.\": \"Éxito ! Respuesta preparada aplicada con éxito.\"\n\"Note added to ticket successfully.\": \"Nota añadida al ticket con éxito.\"\n\"Ticket status update to Spam\": \"Actualización del estado del ticket a Spam\"\n\"Ticket status update to Closed\": \"Actualización del estado del ticket a Cerrado\"\n\"Success! Label updated successfully.\": \"¡Éxito! Etiqueta actualizada con éxito.\"\n\"Success ! Helpdesk details saved successfully\": \"Éxito ! Detalles del servicio de asistencia guardados con éxito\"\n\"Can manage marketing announcement\": \"Puede gestionar anuncios de marketing\"\n\"User Forgot Password\": \"Usuario Olvidó Contraseña\"\n\"Agent Deleted\": \"Agente eliminada\"\n\"Agent Update\": \"Actualización del agente\"\n\"Customer Update\": \"Actualización del cliente\"\n\"Customer Deleted\": \"Cliente eliminada\"\n\"Agent Updated\": \"Agente actualizada\"\n\"Agent Reply\": \"Respuesta de la agente\"\n\"Collaborator Added\": \"Colaboradora agregada\"\n\"Collaborator Reply\": \"Respuesta del colaborador\"\n\"Customer Reply\": \"Respuesta del cliente\"\n\"Ticket Deleted\": \"Ticket eliminado\"\n\"Group Updated\": \"Grupo actualizado\"\n\"Note Added\": \"Nota agregada\"\n\"Priority Updated\": \"Prioridad actualizada\"\n\"Status Updated\": \"Estado actualizado\"\n\"Team Updated\": \"Equipo actualizado\"\n\"Thread Updated\": \"Hilo actualizado\"\n\"Type Updated\": \"Tipo actualizado\"\n\"From Email\": \"Desde el e-mail\"\n\"To Email\": \"Al correo electrónico\"\n\"Is Equal To\": \"Es igual a\"\n\"Is Not Equal To\": \"No es igual a\"\n\"Contains\": \"Contiene\"\n\"Does Not Contain\": \"No contiene\"\n\"Starts With\": \"Comienza con\"\n\"Ends With\": \"Termina con\"\n\"Before On\": \"Antes de\"\n\"After On\": \"Después de On\"\n\"Mail To User\": \"Correo a la usuaria\"\n\"Transfer Tickets\": \"Billetes de transferencia\"\n\"Agent Activity\": \"Actividad del agente\"\n\"Report From\": \"Informe desde\"\n\"Search Agent\": \"Agente de búsqueda\"\n\"Agent Last Reply\": \"Última respuesta del agente\"\n\"View analytics and insights to serve a better experience for your customers\": \"Vea análisis e información para brindar una mejor experiencia a sus clientes\"\n\"Marketing Announcement\": \"Anuncio de marketing\"\n\"Advertisement\": \"Publicidad\"\n\"Announcement\": \"Anuncio\"\n\"New Announcement\": \"Nuevo anuncio\"\n\"Add Announcement\": \"Agregar anuncio\"\n\"Edit Announcement\": \"Editar anuncio\"\n\"Promo Text\": \"Texto promocional\"\n\"Promo Tag\": \"Etiqueta de promoción\"\n\"Choose a promo tag\": \"Elija una etiqueta de promoción\"\n\"Tag-Color\": \"Color de la etiqueta\"\n\"Tag background color\": \"Color de fondo de la etiqueta\"\n\"Link Text\": \"Texto del enlace\"\n\"Link URL\": \"URL del enlace\"\n\"Apps\": \"Aplicaciones\"\n\"Integrate apps as per your needs to get things done faster than ever\": \"Instala nuevas aplicaciones personalizadas para aumentar tu productividad: <a href='https://store.webkul.com/UVdesk/UVdesk-Open-Source.html' style='font-weight: bold' target='_blank'>Explora ahora</a>\"\n\"Explore Apps\": \"Explorar aplicaciones\"\n\"Form Builder\": \"Creador de formularios\"\n\"Knowledgebase\": \"Base de conocimientos\"\n\"Knowledgebase is a source of rigid and complex information which helps Customers to help themselves\": \"La base de conocimiento es una fuente de información rígida y compleja que ayuda a los clientes a ayudarse a sí mismos\"\n\"Articles\": \"Artículos\"\n\"Categories\": \"Categorias\"\n\"Folders\": \"Carpetas\"\n\"FOLDERS\": \"CARPETAS\"\n\"Productivity\": \"Productividad\"\n\"Automate your processes by creating set of rules and presets to respond faster to the tickets\": \"Automatice sus procesos creando un conjunto de reglas y ajustes preestablecidos para responder más rápido a los tickets\"\n\"Prepared Responses\": \"Respuestas preparadas\"\n\"Saved Replies\": \"Respuestas guardadas\"\n\"Edit Saved Reply\": \"Editar respuesta guardada\"\n\"Ticket Types\": \"Tipos de entradas\"\n\"Workflows\": \"Flujos de trabajo\"\n\"Settings\": \"Configuraciones\"\n\"Manage your Brand Identity, Company Information and other details at a glance\": \"Administre su identidad de marca, información de la empresa y otros detalles de un vistazo\"\n\"Branding\": \"Marca\"\n\"Custom Fields\": \"Campos Personalizados\"\n\"Email Settings\": \"Ajustes del correo electrónico\"\n\"Email Templates\": \"Plantillas de correo electrónico\"\n\"Mailbox\": \"Buzón\"\n\"Spam Settings\": \"Configuración de spam\"\n\"Swift Mailer\": \"Swift Mailer\"\n\"Tags\": \"Etiquetas\"\n\"Users\": \"Los usuarios\"\n\"Control your Groups, Teams, Agents and Customers\": \"Controle sus grupos, equipos, agentes y clientes\"\n\"Agents\": \"Agentes\"\n\"Customers\": \"Clientes\"\n\"Groups\": \"Grupos\"\n\"Privileges\": \"Privilegios\"\n\"Teams\": \"Equipos\"\n\"Applications\": \"Aplicaciones\"\n\"ECommerce Order Syncronization\": \"Sincronización de pedidos de comercio electrónico\"\n\"Import ecommerce order details to your support tickets from different available platforms\": \"Importar detalles de pedidos de comercio electrónico a sus tickets de soporte desde diferentes plataformas disponibles\"\n\"Search\": \"Buscar\"\n\"Sort By\": \"Ordenar por\"\n\"Sort By:\": \"Ordenar por:\"\n\"Status:\": \"Estado:\"\n\"Created At\": \"Creado en\"\n\"Name\": \"Nombre\"\n\"All\": \"Todas\"\n\"Published\": \"Publicado\"\n\"Draft\": \"Sequía\"\n\"New Folder\": \"Nueva carpeta\"\n\"Create Knowledgebase Folder\": \"Crear carpeta de base de conocimiento\"\n\"You did not add any folder to your Knowledgebase yet, Create your first Folder and start adding Categories/Articles to make your customers help themselves.\": \"Todavía no ha agregado ninguna carpeta a su base de conocimiento, cree su primera carpeta y comience a agregar categorías / artículos para que sus clientes se ayuden a sí mismos\"\n\"Clear Filters\": \"Borrar filtros\"\n\"Back\": \"atrás\"\n\"Open\": \"Abierto\"\n\"Pending\": \"Pendiente\"\n\"Answered\": \"Contestadas\"\n\"Resolved\": \"Resuelto\"\n\"Closed\": \"Cerrado\"\n\"Spam\": \"Correo no deseado\"\n\"New\": \"Nuevo\"\n\"UnAssigned\": \"Sin asignar\"\n\"UnAnswered\": \"Sin respuesta\"\n\"My Tickets\": \"Mis entradas\"\n\"Starred\": \"Sembrado de estrellas\"\n\"Trashed\": \"Basura\"\n\"New Label\": \"Nueva etiqueta\"\n\"Tickets\": \"Entradas\"\n\"Ticket Id\": \"Identificación de entradas\"\n\"Last Replied\": \"Última respuesta\"\n\"Assign To\": \"Asignar a\"\n\"After Reply\": \"Después de la respuesta\"\n\"Customer Email\": \"Correo electrónico del cliente\"\n\"Customer Name\": \"Nombre del cliente\"\n\"Assets Visibility\": \"Visibilidad de los activos\"\n\"Channel/Source\": \"Canal / Fuente\"\n\"Channel\": \"Canal\"\n\"Website\": \"Sitio web\"\n\"Timestamp\": \"Marca de tiempo\"\n\"TimeStamp\": \"Sello de tiempo\"\n\"Team\": \"Equipo\"\n\"Type\": \"Tipo\"\n\"Replies\": \"Respuestas\"\n\"Agent\": \"Agente\"\n\"ID\": \"CARNÉ DE IDENTIDAD\"\n\"Subject\": \"Tema\"\n\"Last Reply\": \"Última respuesta\"\n\"Filter View\": \"Vista de filtro\"\n\"Please select CAPTCHA\": \"Seleccione CAPTCHA\"\n\"Warning ! Please select correct CAPTCHA !\": \"¡Advertencia! ¡Seleccione el CAPTCHA correcto!\"\n\"reCAPTCHA Setting\": \"Configuración reCAPTCHA\"\n\"reCAPTCHA Site Key\": \"Clave del sitio reCAPTCHA\"\n\"reCAPTCHA Secret key\": \"reCAPTCHA Clave secreta\"\n\"reCAPTCHA Status\": \"Estado de reCAPTCHA\"\n\"reCAPTCHA is Active\": \"reCAPTCHA está activo\"\n\"Save set of filters as a preset to stay more productive\": \"Guardar conjunto de filtros como un preajuste para mantenerse más productivo\"\n\"Saved Filters\": \"Filtros guardados\"\n\"No saved filter created\": \"No se ha creado un filtro guardado\"\n\"Customer\": \"Cliente\"\n\"Priority\": \"Prioridad\"\n\"Tag\": \"Etiqueta\"\n\"Source\": \"Fuente\"\n\"Before\": \"antes de\"\n\"After\": \"Después\"\n\"Replies less than\": \"Respuestas menos de\"\n\"Replies more than\": \"Responde más que\"\n\"Clear All\": \"Limpiar todo\"\n\"Account\": \"Cuenta\"\n\"Profile\": \"Perfil\"\n\"Upload a Profile Image (100px x 100px)<br> in PNG or JPG Format\": \"Cargar una imagen de perfil (100px x 100px) <br> en formato PNG o JPG\"\n\"First Name\": \"Primer nombre\"\n\"Last Name\": \"Apellido\"\n\"Email\": \"Email\"\n\"Contact Number\": \"Número de contacto\"\n\"Timezone\": \"Zona horaria\"\n\"Africa/Abidjan\": \"África / Abidjan\"\n\"Africa/Accra\": \"África / Accra\"\n\"Africa/Addis_Ababa\": \"África / Addis_Ababa\"\n\"Africa/Algiers\": \"África / Argel\"\n\"Africa/Asmara\": \"África / Asmara\"\n\"Africa/Bamako\": \"África / Bamako\"\n\"Africa/Bangui\": \"África / Bangui\"\n\"Africa/Banjul\": \"África / Banjul\"\n\"Africa/Bissau\": \"África / Bissau\"\n\"Africa/Blantyre\": \"África / Blantyre\"\n\"Africa/Brazzaville\": \"África / Brazzaville\"\n\"Africa/Bujumbura\": \"África / Bujumbura\"\n\"Africa/Cairo\": \"África / El Cairo\"\n\"Africa/Casablanca\": \"África / Casablanca\"\n\"Africa/Ceuta\": \"África / Ceuta\"\n\"Africa/Conakry\": \"África / Conakry\"\n\"Africa/Dakar\": \"África / Dakar\"\n\"Africa/Dar_es_Salaam\": \"África / Dar_es_Salaam\"\n\"Africa/Djibouti\": \"África / Djibouti\"\n\"Africa/Douala\": \"África / Douala\"\n\"Africa/El_Aaiun\": \"África / El_Aaiun\"\n\"Africa/Freetown\": \"África / Freetown\"\n\"Africa/Gaborone\": \"África / Gaborone\"\n\"Africa/Harare\": \"África / Harare\"\n\"Africa/Johannesburg\": \"África / Johannesburgo\"\n\"Africa/Juba\": \"África / Juba\"\n\"Africa/Kampala\": \"África / Kampala\"\n\"Africa/Khartoum\": \"África / Jartum\"\n\"Africa/Kigali\": \"África / Kigali\"\n\"Africa/Kinshasa\": \"África / Kinshasa\"\n\"Africa/Lagos\": \"África / Lagos\"\n\"Africa/Libreville\": \"África / Libreville\"\n\"Africa/Lome\": \"África / Lomé\"\n\"Africa/Luanda\": \"África / Luanda\"\n\"Africa/Lubumbashi\": \"África / Lubumbashi\"\n\"Africa/Lusaka\": \"África / Lusaka\"\n\"Africa/Malabo\": \"África / Malabo\"\n\"Africa/Maputo\": \"África / Maputo\"\n\"Africa/Maseru\": \"África / Maseru\"\n\"Africa/Mbabane\": \"África / Mbabane\"\n\"Africa/Mogadishu\": \"África / Mogadiscio\"\n\"Africa/Monrovia\": \"África / Monrovia\"\n\"Africa/Nairobi\": \"África / Nairobi\"\n\"Africa/Ndjamena\": \"África / Yamena\"\n\"Africa/Niamey\": \"África / Niamey\"\n\"Africa/Nouakchott\": \"África / Nouakchott\"\n\"Africa/Ouagadougou\": \"África / Uagadugú\"\n\"Africa/Porto-Novo\": \"África / Porto-Novo\"\n\"Africa/Sao_Tome\": \"Africa / Sao_Tome\"\n\"Africa/Tripoli\": \"África / Trípoli\"\n\"Africa/Tunis\": \"África / Túnez\"\n\"Africa/Windhoek\": \"África / Windhoek\"\n\"America/Adak\": \"America / Adak\"\n\"America/Anchorage\": \"América / Anchorage\"\n\"America/Anguilla\": \"América / Anguila\"\n\"America/Antigua\": \"America / Antigua\"\n\"America/Araguaina\": \"America / Araguaina\"\n\"America/Argentina/Buenos_Aires\": \"América / Argentina / Buenos Aires\"\n\"America/Argentina/Catamarca\": \"América / Argentina / Catamarca\"\n\"America/Argentina/Cordoba\": \"América / Argentina / Córdoba\"\n\"America/Argentina/Jujuy\": \"América / Argentina / Jujuy\"\n\"America/Argentina/La_Rioja\": \"América / Argentina / La_Rioja\"\n\"America/Argentina/Mendoza\": \"América / Argentina / Mendoza\"\n\"America/Argentina/Rio_Gallegos\": \"América / Argentina / Río_Gallegos\"\n\"America/Argentina/Salta\": \"América / Argentina / Salta\"\n\"America/Argentina/San_Juan\": \"América / Argentina / San_Juan\"\n\"America/Argentina/San_Luis\": \"América / Argentina / San_Luis\"\n\"America/Argentina/Tucuman\": \"América / Argentina / Tucumán\"\n\"America/Argentina/Ushuaia\": \"América / Argentina / Ushuaia\"\n\"America/Aruba\": \"América / Aruba\"\n\"America/Asuncion\": \"America / Asuncion\"\n\"America/Atikokan\": \"America / Atikokan\"\n\"America/Bahia\": \"America / Bahia\"\n\"America/Bahia_Banderas\": \"America / Bahia_Banderas\"\n\"America/Barbados\": \"América / Barbados\"\n\"America/Belem\": \"America / Belem\"\n\"America/Belize\": \"América / Belice\"\n\"America/Blanc-Sablon\": \"América / Blanc-Sablon\"\n\"America/Boa_Vista\": \"America / Boa_Vista\"\n\"America/Bogota\": \"America / Bogota\"\n\"America/Boise\": \"America / Boise\"\n\"America/Cambridge_Bay\": \"America / Cambridge_Bay\"\n\"America/Campo_Grande\": \"America / Campo_Grande\"\n\"America/Cancun\": \"America / Cancun\"\n\"America/Caracas\": \"America / Caracas\"\n\"America/Cayenne\": \"America / Cayenne\"\n\"America/Cayman\": \"America / Cayman\"\n\"America/Chicago\": \"America / Chicago\"\n\"America/Chihuahua\": \"America / Chihuahua\"\n\"America/Costa_Rica\": \"America / Costa_Rica\"\n\"America/Creston\": \"America / Creston\"\n\"America/Cuiaba\": \"America / Cuiaba\"\n\"America/Curacao\": \"America / Curacao\"\n\"America/Danmarkshavn\": \"America / Danmarkshavn\"\n\"America/Dawson\": \"America / Dawson\"\n\"America/Dawson_Creek\": \"America / Dawson_Creek\"\n\"America/Denver\": \"America / Denver\"\n\"America/Detroit\": \"América / Detroit\"\n\"America/Dominica\": \"America / Dominica\"\n\"America/Edmonton\": \"America / Edmonton\"\n\"America/Eirunepe\": \"America / Eirunepe\"\n\"America/El_Salvador\": \"America / El_Salvador\"\n\"America/Fort_Nelson\": \"America / Fort_Nelson\"\n\"America/Fortaleza\": \"America / Fortaleza\"\n\"America/Glace_Bay\": \"America / Glace_Bay\"\n\"America/Godthab\": \"America / Godthab\"\n\"America/Goose_Bay\": \"America / Goose_Bay\"\n\"America/Grand_Turk\": \"America / Grand_Turk\"\n\"America/Grenada\": \"América / Granada\"\n\"America/Guadeloupe\": \"América / Guadalupe\"\n\"America/Guatemala\": \"América / Guatemala\"\n\"America/Guayaquil\": \"America / Guayaquil\"\n\"America/Guyana\": \"America / Guyana\"\n\"America/Halifax\": \"America / Halifax\"\n\"America/Havana\": \"América / La Habana\"\n\"America/Hermosillo\": \"America / Hermosillo\"\n\"America/Indiana/Indianapolis\": \"América / Indiana / Indianápolis\"\n\"America/Indiana/Knox\": \"América / Indiana / Knox\"\n\"America/Indiana/Marengo\": \"América / Indiana / Marengo\"\n\"America/Indiana/Petersburg\": \"América / Indiana / Petersburgo\"\n\"America/Indiana/Tell_City\": \"América / Indiana / Tell_City\"\n\"America/Indiana/Vevay\": \"América / Indiana / Vevay\"\n\"America/Indiana/Vincennes\": \"América / Indiana / Vincennes\"\n\"America/Indiana/Winamac\": \"América / Indiana / Winamac\"\n\"America/Inuvik\": \"America / Inuvik\"\n\"America/Iqaluit\": \"America / Iqaluit\"\n\"America/Jamaica\": \"América / Jamaica\"\n\"America/Juneau\": \"America / Juneau\"\n\"America/Kentucky/Louisville\": \"América / Kentucky / Louisville\"\n\"America/Kentucky/Monticello\": \"América / Kentucky / Monticello\"\n\"America/Kralendijk\": \"America / Kralendijk\"\n\"America/La_Paz\": \"America / La_Paz\"\n\"America/Lima\": \"America / Lima\"\n\"America/Los_Angeles\": \"America / Los_Angeles\"\n\"America/Lower_Princes\": \"America / Lower_Princes\"\n\"America/Maceio\": \"America / Maceio\"\n\"America/Managua\": \"America / Managua\"\n\"America/Manaus\": \"América / Manaus\"\n\"America/Marigot\": \"America / Marigot\"\n\"America/Martinique\": \"América / Martinica\"\n\"America/Matamoros\": \"America / Matamoros\"\n\"America/Mazatlan\": \"América / Mazatlán\"\n\"America/Menominee\": \"America / Menominee\"\n\"America/Merida\": \"América / Mérida\"\n\"America/Metlakatla\": \"America / Metlakatla\"\n\"America/Mexico_City\": \"America / Mexico_City\"\n\"America/Miquelon\": \"America / Miquelon\"\n\"America/Moncton\": \"America / Moncton\"\n\"America/Monterrey\": \"America / Monterrey\"\n\"America/Montevideo\": \"America / Montevideo\"\n\"America/Montserrat\": \"América / Montserrat\"\n\"America/Nassau\": \"America / Nassau\"\n\"America/New_York\": \"América / Nueva_York\"\n\"America/Nipigon\": \"América / Nipigon\"\n\"America/Nome\": \"America / Nome\"\n\"America/Noronha\": \"America / Noronha\"\n\"America/North_Dakota/Beulah\": \"América / Norte_Dakota / Beulah\"\n\"America/North_Dakota\": \"América / Norte_Dakota\"\n\"America/Ojinaga\": \"America / Ojinaga\"\n\"America/Panama\": \"America / Panama\"\n\"America/Pangnirtung\": \"America / Pangnirtung\"\n\"America/Paramaribo\": \"America / Paramaribo\"\n\"America/Phoenix\": \"America / Phoenix\"\n\"America/Port-au-Prince\": \"América / Puerto Príncipe\"\n\"America/Port_of_Spain\": \"America / Port_of_Spain\"\n\"America/Porto_Velho\": \"America / Porto_Velho\"\n\"America/Puerto_Rico\": \"America / Puerto_Rico\"\n\"America/Punta_Arenas\": \"America / Punta_Arenas\"\n\"America/Rainy_River\": \"America / Rainy_River\"\n\"America/Rankin_Inlet\": \"America / Rankin_Inlet\"\n\"America/Recife\": \"America / Recife\"\n\"America/Regina\": \"America / Regina\"\n\"America/Resolute\": \"America / Resolute\"\n\"America/Rio_Branco\": \"America / Rio_Branco\"\n\"America/Santarem\": \"America / Santarem\"\n\"America/Santiago\": \"America / Santiago\"\n\"America/Santo_Domingo\": \"America / Santo_Domingo\"\n\"America/Sao_Paulo\": \"America / Sao_Paulo\"\n\"America/Scoresbysund\": \"America / Scoresbysund\"\n\"America/Sitka\": \"America / Sitka\"\n\"America/St_Barthelemy\": \"América / St_Barthelemy\"\n\"America/St_Johns\": \"America / St_Johns\"\n\"America/St_Kitts\": \"America / St_Kitts\"\n\"America/St_Lucia\": \"America / St_Lucia\"\n\"America/St_Thomas\": \"America / St_Thomas\"\n\"America/St_Vincent\": \"América / San Vicente\"\n\"America/Swift_Current\": \"America / Swift_Current\"\n\"America/Tegucigalpa\": \"America / Tegucigalpa\"\n\"America/Thule\": \"America / Thule\"\n\"America/Thunder_Bay\": \"America / Thunder_Bay\"\n\"America/Tijuana\": \"America / Tijuana\"\n\"America/Toronto\": \"América / Toronto\"\n\"America/Tortola\": \"America / Tortola\"\n\"America/Vancouver\": \"América / Vancouver\"\n\"America/Whitehorse\": \"América / Whitehorse\"\n\"America/Winnipeg\": \"América / Winnipeg\"\n\"America/Yakutat\": \"America / Yakutat\"\n\"America/Yellowknife\": \"America / Yellowknife\"\n\"Antarctica/Casey\": \"Antártida / Casey\"\n\"Antarctica/Davis\": \"Antártida / Davis\"\n\"Antarctica/DumontDUrville\": \"Antártida / DumontDUrville\"\n\"Antarctica/Macquarie\": \"Antártida / Macquarie\"\n\"Antarctica/McMurdo\": \"Antártida / McMurdo\"\n\"Antarctica/Mawson\": \"Antártida / Mawson\"\n\"Antarctica/Palmer\": \"Antártida / Palmer\"\n\"Antarctica/Rothera\": \"Antártida / Rothera\"\n\"Antarctica/Syowa\": \"Antártida / Syowa\"\n\"Antarctica/Troll\": \"Antártida / Troll\"\n\"Antarctica/Vostok\": \"Antártida / Vostok\"\n\"Arctic/Longyearbyen\": \"Ártico / Longyearbyen\"\n\"Asia/Aden\": \"Asia / Adén\"\n\"Asia/Almaty\": \"Asia / Almaty\"\n\"Asia/Amman\": \"Asia / Amman\"\n\"Asia/Anadyr\": \"Asia / Anadyr\"\n\"Asia/Aqtau\": \"Asia / Aqtau\"\n\"Asia/Aqtobe\": \"Asia / Aqtobe\"\n\"Asia/Ashgabat\": \"Asia / Ashgabat\"\n\"Asia/Atyrau\": \"Asia / Atyrau\"\n\"Asia/Baghdad\": \"Asia / Bagdad\"\n\"Asia/Bahrain\": \"Asia / Bahrein\"\n\"Asia/Baku\": \"Asia / Bakú\"\n\"Asia/Bangkok\": \"Asia / Bangkok\"\n\"Asia/Barnaul\": \"Asia / Barnaul\"\n\"Asia/Beirut\": \"Asia / Beirut\"\n\"Asia/Bishkek\": \"Asia / Bishkek\"\n\"Asia/Brunei\": \"Asia / Brunei\"\n\"Asia/Chita\": \"Asia / Chita\"\n\"Asia/Choibalsan\": \"Asia / Choibalsan\"\n\"Asia/Colombo\": \"Asia / Colombo\"\n\"Asia/Damascus\": \"Asia / Damasco\"\n\"Asia/Dhaka\": \"Asia / Dhaka\"\n\"Asia/Dili\": \"Asia / Dili\"\n\"Asia/Dubai\": \"Asia / Dubai\"\n\"Asia/Dushanbe\": \"Asia / Dushanbe\"\n\"Asia/Famagusta\": \"Asia / Famagusta\"\n\"Asia/Gaza\": \"Asia / Gaza\"\n\"Asia/Hebron\": \"Asia / Hebrón\"\n\"Asia/Ho_Chi_Minh\": \"Asia / Ho_Chi_Minh\"\n\"Asia/Hong_Kong\": \"Asia / Hong_Kong\"\n\"Asia/Hovd\": \"Asia / Hovd\"\n\"Asia/Irkutsk\": \"Asia / Irkutsk\"\n\"Asia/Jakarta\": \"Asia / Yakarta\"\n\"Asia/Jayapura\": \"Asia / Jayapura\"\n\"Asia/Jerusalem\": \"Asia / Jerusalén\"\n\"Asia/Kabul\": \"Asia / Kabul\"\n\"Asia/Kamchatka\": \"Asia / Kamchatka\"\n\"Asia/Karachi\": \"Asia / Karachi\"\n\"Asia/Kathmandu\": \"Asia / Katmandú\"\n\"Asia/Khandyga\": \"Asia / Khandyga\"\n\"Asia/Kolkata\": \"Asia / Kolkata\"\n\"Asia/Krasnoyarsk\": \"Asia / Krasnoyarsk\"\n\"Asia/Kuala_Lumpur\": \"Asia / Kuala_Lumpur\"\n\"Asia/Kuching\": \"Asia / Kuching\"\n\"Asia/Kuwait\": \"Asia / Kuwait\"\n\"Asia/Macau\": \"Asia / Macao\"\n\"Asia/Magadan\": \"Asia / Magadán\"\n\"Asia/Makassar\": \"Asia / Makassar\"\n\"Asia/Manila\": \"Asia / Manila\"\n\"Asia/Muscat\": \"Asia / Muscat\"\n\"Asia/Nicosia\": \"Asia / Nicosia\"\n\"Asia/Novokuznetsk\": \"Asia / Novokuznetsk\"\n\"Asia/Novosibirsk\": \"Asia / Novosibirsk\"\n\"Asia/Omsk\": \"Asia / Omsk\"\n\"Asia/Oral\": \"Asia / oral\"\n\"Asia/Phnom_Penh\": \"Asia / Phnom_Penh\"\n\"Asia/Pontianak\": \"Asia / Pontianak\"\n\"Asia/Pyongyang\": \"Asia / Pyongyang\"\n\"Asia/Qatar\": \"Asia / Qatar\"\n\"Asia/Qostanay\": \"Asia / Qostanay\"\n\"Asia/Qyzylorda\": \"Asia / Qyzylorda\"\n\"Asia/Riyadh\": \"Asia / Riad\"\n\"Asia/Sakhalin\": \"Asia / Sakhalin\"\n\"Asia/Samarkand\": \"Asia / Samarcanda\"\n\"Asia/Seoul\": \"Asia / Seúl\"\n\"Asia/Shanghai\": \"Asia / Shanghai\"\n\"Asia/Singapore\": \"Asia / Singapur\"\n\"Asia/Srednekolymsk\": \"Asia / Srednekolymsk\"\n\"Asia/Taipei\": \"Asia / Taipei\"\n\"Asia/Tashkent\": \"Asia / Tashkent\"\n\"Asia/Tbilisi\": \"Asia / Tbilisi\"\n\"Asia/Tehran\": \"Asia / Teherán\"\n\"Asia/Thimphu\": \"Asia / Timbu\"\n\"Asia/Tokyo\": \"Asia / Tokio\"\n\"Asia/Tomsk\": \"Asia / Tomsk\"\n\"Asia/Ulaanbaatar\": \"Asia / Ulán Bator\"\n\"Asia/Urumqi\": \"Asia / Urumqi\"\n\"Asia/Ust-Nera\": \"Asia / Ust-Nera\"\n\"Asia/Vientiane\": \"Asia / Vientiane\"\n\"Asia/Vladivostok\": \"Asia / Vladivostok\"\n\"Asia/Yakutsk\": \"Asia / Yakutsk\"\n\"Asia/Yangon\": \"Asia / Yangon\"\n\"Asia/Yekaterinburg\": \"Asia / Ekaterimburgo\"\n\"Asia/Yerevan\": \"Asia / Ereván\"\n\"Atlantic/Azores\": \"Atlántico / Azores\"\n\"Atlantic/Bermuda\": \"Atlántico / Bermudas\"\n\"Atlantic/Canary\": \"Atlántico / Canarias\"\n\"Atlantic/Cape_Verde\": \"Atlántico / Cabo_Verde\"\n\"Atlantic/Faroe\": \"Atlántico / Feroe\"\n\"Atlantic/Madeira\": \"Atlántico / Madeira\"\n\"Atlantic/Reykjavik\": \"Atlántico / Reykjavik\"\n\"Atlantic/South_Georgia\": \"Atlántico / Sur_Georgia\"\n\"Atlantic/St_Helena\": \"Atlántico / Santa Elena\"\n\"Atlantic/Stanley\": \"Atlántico / Stanley\"\n\"Australia/Adelaide\": \"Australia / Adelaida\"\n\"Australia/Brisbane\": \"Australia / Brisbane\"\n\"Australia/Broken_Hill\": \"Australia / Broken_Hill\"\n\"Australia/Currie\": \"Australia / Currie\"\n\"Australia/Darwin\": \"Australia / Darwin\"\n\"Australia/Eucla\": \"Australia / Eucla\"\n\"Australia/Hobart\": \"Australia / Hobart\"\n\"Australia/Lindeman\": \"Australia / Lindeman\"\n\"Australia/Lord_Howe\": \"Australia / Lord_Howe\"\n\"Australia/Melbourne\": \"Australia / Melbourne\"\n\"Australia/Perth\": \"Australia / Perth\"\n\"Australia/Sydney\": \"Australia / Sydney\"\n\"Europe/Amsterdam\": \"Europa / Amsterdam\"\n\"Europe/Andorra\": \"Europa / Andorra\"\n\"Europe/Astrakhan\": \"Europa / Astrakhan\"\n\"Europe/Athens\": \"Europa / Atenas\"\n\"Europe/Belgrade\": \"Europa / Belgrado\"\n\"Europe/Berlin\": \"Europa / Berlín\"\n\"Europe/Bratislava\": \"Europa / Bratislava\"\n\"Europe/Brussels\": \"Europa / Bruselas\"\n\"Europe/Bucharest\": \"Europa / Bucarest\"\n\"Europe/Budapest\": \"Europa / Budapest\"\n\"Europe/Busingen\": \"Europa / Busingen\"\n\"Europe/Chisinau\": \"Europa / Chisinau\"\n\"Europe/Copenhagen\": \"Europa / Copenhague\"\n\"Europe/Dublin\": \"Europa / Dublín\"\n\"Europe/Gibraltar\": \"Europa / Gibraltar\"\n\"Europe/Guernsey\": \"Europa / Guernsey\"\n\"Europe/Helsinki\": \"Europa / Helsinki\"\n\"Europe/Isle_of_Man\": \"Europe / Isle_of_Man\"\n\"Europe/Istanbul\": \"Europa / Estambul\"\n\"Europe/Jersey\": \"Europa / Jersey\"\n\"Europe/Kaliningrad\": \"Europa / Kaliningrado\"\n\"Europe/Kiev\": \"Europa / Kiev\"\n\"Europe/Kirov\": \"Europa / Kirov\"\n\"Europe/Lisbon\": \"Europa / Lisboa\"\n\"Europe/Ljubljana\": \"Europa / Liubliana\"\n\"Europe/London\": \"Europa / Londres\"\n\"Europe/Luxembourg\": \"Europa / Luxemburgo\"\n\"Europe/Madrid\": \"Europa / Madrid\"\n\"Europe/Malta\": \"Europa / Malta\"\n\"Europe/Mariehamn\": \"Europa / Mariehamn\"\n\"Europe/Minsk\": \"Europa / Minsk\"\n\"Europe/Monaco\": \"Europa / Mónaco\"\n\"Europe/Moscow\": \"Europa / Moscú\"\n\"Europe/Oslo\": \"Europa / Oslo\"\n\"Europe/Paris\": \"Europa / Paris\"\n\"Europe/Podgorica\": \"Europa / Podgorica\"\n\"Europe/Prague\": \"Europa / Praga\"\n\"Europe/Riga\": \"Europa / Riga\"\n\"Europe/Rome\": \"Europa / Roma\"\n\"Europe/Samara\": \"Europa / Samara\"\n\"Europe/San_Marino\": \"Europa / San_Marino\"\n\"Europe/Sarajevo\": \"Europa / Sarajevo\"\n\"Europe/Saratov\": \"Europa / Saratov\"\n\"Europe/Simferopol\": \"Europa / Simferopol\"\n\"Europe/Skopje\": \"Europa / Skopje\"\n\"Europe/Sofia\": \"Europa / Sofía\"\n\"Europe/Stockholm\": \"Europa / Estocolmo\"\n\"Europe/Tallinn\": \"Europa / Tallin\"\n\"Europe/Tirane\": \"Europa / Tirane\"\n\"Europe/Ulyanovsk\": \"Europa / Ulyanovsk\"\n\"Europe/Uzhgorod\": \"Europa / Uzhgorod\"\n\"Europe/Vaduz\": \"Europa / Vaduz\"\n\"Europe/Vatican\": \"Europa / Vaticano\"\n\"Europe/Vienna\": \"Europa / Viena\"\n\"Europe/Vilnius\": \"Europa / Vilnius\"\n\"Europe/Volgograd\": \"Europa / Volgogrado\"\n\"Europe/Warsaw\": \"Europa / Varsovia\"\n\"Europe/Zagreb\": \"Europa / Zagreb\"\n\"Europe/Zaporozhye\": \"Europa / Zaporozhye\"\n\"Europe/Zurich\": \"Europa / Zurich\"\n\"Indian/Antananarivo\": \"Indio / Antananarivo\"\n\"Indian/Chagos\": \"Indio / Chagos\"\n\"Indian/Christmas\": \"Indio / Navidad\"\n\"Indian/Cocos\": \"Indio / Cocos\"\n\"Indian/Comoro\": \"Indio / Comoro\"\n\"Indian/Kerguelen\": \"Indio / Kerguelen\"\n\"Indian/Mahe\": \"Indio / Mahé\"\n\"Indian/Maldives\": \"India / Maldivas\"\n\"Indian/Mauritius\": \"India / Mauricio\"\n\"Indian/Mayotte\": \"Indio / Mayotte\"\n\"Indian/Reunion\": \"Indio / Reunión\"\n\"Pacific/Apia\": \"Pacífico / Apia\"\n\"Pacific/Auckland\": \"Pacífico / Auckland\"\n\"Pacific/Bougainville\": \"Pacífico / Bougainville\"\n\"Pacific/Chatham\": \"Pacífico / Chatham\"\n\"Pacific/Chuuk\": \"Pacífico / Chuuk\"\n\"Pacific/Easter\": \"Pacífico / Pascua\"\n\"Pacific/Efate\": \"Pacífico / Efate\"\n\"Pacific/Enderbury\": \"Pacífico / Enderbury\"\n\"Pacific/Fakaofo\": \"Pacífico / Fakaofo\"\n\"Pacific/Fiji\": \"Pacífico / Fiji\"\n\"Pacific/Funafuti\": \"Pacífico / Funafuti\"\n\"Pacific/Galapagos\": \"Pacífico / Galápagos\"\n\"Pacific/Gambier\": \"Pacífico / Gambier\"\n\"Pacific/Guadalcanal\": \"Pacífico / Guadalcanal\"\n\"Pacific/Guam\": \"Pacífico / Guam\"\n\"Pacific/Honolulu\": \"Pacífico / Honolulu\"\n\"Pacific/Kiritimati\": \"Pacífico / Kiritimati\"\n\"Pacific/Kosrae\": \"Pacífico / Kosrae\"\n\"Pacific/Kwajalein\": \"Pacífico / Kwajalein\"\n\"Pacific/Majuro\": \"Pacífico / Majuro\"\n\"Pacific/Marquesas\": \"Pacífico / Marquesas\"\n\"Pacific/Midway\": \"Pacífico / Midway\"\n\"Pacific/Nauru\": \"Pacífico / Nauru\"\n\"Pacific/Niue\": \"Pacífico / Niue\"\n\"Pacific/Norfolk\": \"Pacífico / Norfolk\"\n\"Pacific/Noumea\": \"Pacífico / Numea\"\n\"Pacific/Pago_Pago\": \"Pacific / Pago_Pago\"\n\"Pacific/Palau\": \"Pacífico / Palau\"\n\"Pacific/Pitcairn\": \"Pacífico / Pitcairn\"\n\"Pacific/Pohnpei\": \"Pacífico / Pohnpei\"\n\"Pacific/Port_Moresby\": \"Pacífico / Port_Moresby\"\n\"Pacific/Rarotonga\": \"Pacífico / Rarotonga\"\n\"Pacific/Saipan\": \"Pacífico / Saipan\"\n\"Pacific/Tahiti\": \"Pacífico / Tahití\"\n\"Pacific/Tarawa\": \"Pacífico / Tarawa\"\n\"Pacific/Tongatapu\": \"Pacífico / Tongatapu\"\n\"Pacific/Wake\": \"Pacífico / Wake\"\n\"Pacific/Wallis\": \"Pacífico / Wallis\"\n\"UTC\": \"UTC\"\n\"Time Format\": \"Formato de tiempo\"\n\"Choose your default timezone\": \"Elige tu zona horaria predeterminada\"\n\"Signature\": \"Firma\"\n\"User signature will be append at the bottom of ticket reply box\": \"La firma del usuario se agregará en la parte inferior del cuadro de respuesta del ticket\"\n\"Password\": \"Contraseña\"\n\"Password will remain same if you are not entering something in this field\": \"La contraseña seguirá siendo la misma si no está ingresando algo en este campo\"\n\"Confirm Password\": \"Confirmar contraseña\"\n\"Password must contain minimum 8 character length, at least two letters (not case sensitive), one number, one special character(space is not allowed).\": \"La contraseña debe contener un mínimo de 8 caracteres, al menos dos letras (no distingue entre mayúsculas y minúsculas), un número, un carácter especial (no se permiten espacios).\"\n\"Save Changes\": \"Guardar cambios\"\n\"SAVE CHANGES\": \"GUARDAR CAMBIOS\"\n\"CREATE TICKET\": \"CREAR TICKET\"\n\"Customer full name\": \"Nombre completo del cliente\"\n\"Customer email address\": \"Dirección de correo electrónico del cliente\"\n\"Select Type\": \"Seleccione tipo\"\n\"Support\": \"Apoyo\"\n\"Choose ticket type\": \"Elegir tipo de ticket\"\n\"Ticket subject\": \"Asunto del boleto\"\n\"Message\": \"Mensaje\"\n\"Query Message\": \"Mensaje de consulta\"\n\"Add Attachment\": \"Añadir un adjunto\"\n\"This field is mandatory\": \"Este campo es obligatorio\"\n\"General\": \"General\"\n\"Designation\": \"Designacion\"\n\"Contant Number\": \"Número de contenido\"\n\"User signature will be append in the bottom of ticket reply box\": \"La firma del usuario se agregará en la parte inferior del cuadro de respuesta del ticket\"\n\"Account Status\": \"Estado de la cuenta\"\n\"Account is Active\": \"La cuenta está activa\"\n\"Assigning group(s) to user to view tickets regardless assignment.\": \"Asignación de grupo (s) al usuario para ver tickets independientemente de la asignación\"\n\"Default\": \"Defecto\"\n\"Select All\": \"Seleccionar todo\"\n\"Remove All\": \"Eliminar todo\"\n\"Assigning team(s) to user to view tickets regardless assignment.\": \"Asignación de equipo (s) al usuario para ver tickets independientemente de la asignación\"\n\"No Team added !\": \"¡No se agregó ningún equipo!\"\n\"Permission\": \"Permiso\"\n\"Role\": \"Papel\"\n\"Administrator\": \"Administrador\"\n\"Select agent role\": \"Seleccionar rol de agente\"\n\"Add Customer\": \"Agregar cliente\"\n\"Action\": \"Acción\"\n\"Account Owner\": \"Propietario de la cuenta\"\n\"Active\": \"Activo\"\n\"Edit\": \"Editar\"\n\"Delete\": \"Eliminar\"\n\"Disabled\": \"Discapacitado\"\n\"New Group\": \"Nuevo grupo\"\n\"Default Privileges\": \"Privilegios predeterminados\"\n\"New Privileges\": \"Nuevos privilegios\"\n\"NEW PRIVILEGE\": \"NUEVO PRIVILEGIO\"\n\"New Privilege\": \"Nuevo privilegio\"\n\"New Team\": \"Nuevo equipo\"\n\"No Record Found\": \"Ningún record fue encontrado\"\n\"Order Synchronization\": \"Sincronización de pedidos\"\n\"Easily integrate different ecommerce platforms with your helpdesk which can then be later used to swiftly integrate ecommerce order details with your support tickets.\": \"Integre fácilmente diferentes plataformas de comercio electrónico con su servicio de asistencia que luego se puede utilizar para integrar rápidamente los detalles de los pedidos de comercio electrónico con sus tickets de soporte\"\n\"BigCommerce\": \"BigCommerce\"\n\"No channels have been added.\": \"No se han agregado canales\"\n\"Add BigCommerce Store\": \"Agregar tienda BigCommerce\"\n\"ADD BIGCOMMERCE STORE\": \"AGREGAR TIENDA BIGCOMMERCE\"\n\"Mangento\": \"Mangento\"\n\"Add Magento Store\": \"Agregar tienda Magento\"\n\"OpenCart\": \"OpenCart\"\n\"Add OpenCart Store\": \"Agregar tienda OpenCart\"\n\"ADD OPENCART STORE\": \"AGREGAR TIENDA OPENCART\"\n\"Shopify\": \"Shopify\"\n\"Add Shopify Store\": \"Agregar tienda Shopify\"\n\"ADD SHOPIFY STORE\": \"AGREGAR COMPRAR TIENDA\"\n\"Integrate a new BigCommerce store\": \"Integrar una nueva tienda BigCommerce\"\n\"Your BigCommerce Store Name\": \"El nombre de su tienda BigCommerce\"\n\"Your BigCommerce Store Hash\": \"El hash de tu tienda BigCommerce\"\n\"Your BigCommerce Api Token\": \"Tu token de BigCommerce Api\"\n\"Your BigCommerce Api Client ID\": \"Su ID de cliente de BigCommerce Api\"\n\"Enable Channel\": \"Habilitar canal\"\n\"Add Store\": \"Agregar tienda\"\n\"ADD STORE\": \"AGREGAR TIENDA\"\n\"Integrate a new Magento store\": \"Integrar una nueva tienda Magento\"\n\"Your Magento Api Username\": \"Su nombre de usuario de Magento Api\"\n\"Your Magento Api Password\": \"Su contraseña de Magento Api\"\n\"Integrate a new OpenCart store\": \"Integrar una nueva tienda OpenCart\"\n\"Your OpenCart Api Key\": \"Su clave de API OpenCart\"\n\"Your Shopify Store Name\": \"El nombre de su tienda Shopify\"\n\"Your Shopify Api Key\": \"Tu clave de API de Shopify\"\n\"Your Shopify Api Password\": \"Tu contraseña de Shopify Api\"\n\"Easily embed custom form to help generate helpdesk tickets.\": \"Incruste fácilmente un formulario personalizado para ayudar a generar tickets de servicio de asistencia\"\n\"Form-Builder\": \"Generador de formularios\"\n\"Add Formbuilder\": \"Agregar Formbuilder\"\n\"ADD FORMBUILDER\": \"AGREGAR FORMBUILDER\"\n\"No FormBuilder have been added.\": \"No se ha agregado FormBuilder\"\n\"Create a New Custom Form Below\": \"Crear un nuevo formulario personalizado a continuación\"\n\"Form Name\": \"Nombre del formulario\"\n\"It will be shown in the list of created forms\": \"Se mostrará en la lista de formularios creados\"\n\"MANDATORY FIELDS\": \"CAMPOS OBLIGATORIOS\"\n\"These fields will be visible in form and cant be edited\": \"Estos campos serán visibles en forma y no se pueden editar\"\n\"Reply\": \"Respuesta\"\n\"OPTIONAL FIELDS\": \"CAMPOS OPCIONALES\"\n\"Select These Fields to Add in your Form\": \"Seleccione estos campos para agregar en su formulario\"\n\"GDPR\": \"GDPR\"\n\"Order\": \"Orden\"\n\"Categorybuilder\": \"Constructor de categorías\"\n\"File\": \"Expediente\"\n\"Add Form\": \"Agregar formulario\"\n\"ADD FORM\": \"AGREGAR FORMULARIO\"\n\"UPDATE FORM\": \"FORMULARIO DE ACTUALIZACIÓN\"\n\"Update Form\": \"Formulario de actualización\"\n\"Embed\": \"Empotrar\"\n\"EMBED\": \"EMPOTRAR\"\n\"EMBED FORMBUILDER\": \"FORMBUILDER EMPOTRADO\"\n\"Embed Formbuilder\": \"Constructor de incrustaciones\"\n\"Visit\": \"Visitar\"\n\"VISIT\": \"VISITAR\"\n\"Code\": \"Código\"\n\"Total Ticket(s)\": \"Total de entradas\"\n\"Ticket Count\": \"Conteo de entradas\"\n\"SwiftMailer Configurations\": \"Configuraciones de SwiftMailer\"\n\"No swiftmailer configurations found\": \"No se encontraron configuraciones de swiftmailer\"\n\"CREATE CONFIGURATION\": \"CREAR CONFIGURACIÓN\"\n\"Add configuration\": \"Agregar configuración\"\n\"Update configuration\": \"Actualizar configuración\"\n\"Mailer ID\": \"Identificación del remitente\"\n\"Mailer ID - Leave blank to automatically create id\": \"Identificación del remitente: déjelo en blanco para crear automáticamente la identificación\"\n\"Transport Type\": \"Tipo de transporte\"\n\"SMTP\": \"SMTP\"\n\"Enable Delivery\": \"Habilitar entrega\"\n\"Server\": \"Servidor\"\n\"Port\": \"Puerto\"\n\"Encryption Mode\": \"Modo de encriptación\"\n\"ssl\": \"ssl\"\n\"tsl\": \"tsl\"\n\"None\": \"Ninguna\"\n\"Authentication Mode\": \"Modo de autenticación\"\n\"login\": \"iniciar sesión\"\n\"API\": \"API\"\n\"Plain\": \"Llanura\"\n\"CRAM-MD5\": \"CRAM-MD5\"\n\"Sender Address\": \"Dirección del remitente\"\n\"Delivery Address\": \"Dirección de entrega\"\n\"Block Spam\": \"Bloquear spam\"\n\"Black list\": \"Lista negra\"\n\"Comma (,) separated values (Eg. support@example.com, @example.com, 68.98.31.226)\": \"Valores separados por comas (,) (p. Ej. Support@example.com, @ example.com, 68.98.31.226)\"\n\"White list\": \"Lista blanca\"\n\"Mailbox Settings\": \"Configuración del buzón\"\n\"No mailbox configurations found\": \"No se encontraron configuraciones de buzón\"\n\"NEW MAILBOX\": \"NUEVA CAJA DE CORREO\"\n\"New Mailbox\": \"Nuevo buzón\"\n\"Update Mailbox\": \"Actualizar buzón\"\n\"Add Mailbox\": \"Agregar buzón\"\n\"Mailbox ID - Leave blank to automatically create id\": \"ID de buzón: déjelo en blanco para crear automáticamente la identificación\"\n\"Mailbox Name\": \"Nombre del buzón\"\n\"Enable Mailbox\": \"Habilitar buzón\"\n\"Permanently delete from Inbox\": \"Eliminar permanentemente de la bandeja de entrada\"\n\"Incoming Mail (IMAP) Server\": \"Servidor de correo entrante (IMAP)\"\n\"Configure your imap settings which will be used to fetch emails from your mailbox.\": \"Configure los ajustes de imap que se usarán para recuperar correos electrónicos de su buzón\"\n\"Transport\": \"Transporte\"\n\"IMAP\": \"IMAP\"\n\"Gmail\": \"Gmail\"\n\"Yahoo\": \"Yahoo\"\n\"Host\": \"Anfitrión\"\n\"IMAP Host\": \"Host IMAP\"\n\"Email address\": \"Dirección de correo electrónico\"\n\"Associated Password\": \"Contraseña asociada\"\n\"Outgoing Mail (SMTP) Server\": \"Servidor de correo saliente (SMTP)\"\n\"Select a valid Swift Mailer configuration which will be used to send emails through your mailbox.\": \"Seleccione una configuración válida de Swift Mailer que se utilizará para enviar correos electrónicos a través de su buzón\"\n\"None Selected\": \"Ninguna seleccionada\"\n\"Create Mailbox\": \"Crear buzón\"\n\"CREATE MAILBOX\": \"CREAR BUZÓN DE CORREO\"\n\"New Template\": \"Nueva plantilla\"\n\"NEW TEMPLATE\": \"NUEVA PLANTILLA\"\n\"Customer Forgot Password\": \"El cliente olvidó la contraseña\"\n\"Customer Account Created\": \"Cuenta de cliente creada\"\n\"Ticket generated success mail to customer\": \"Ticket generado correo exitoso al cliente\"\n\"Customer Reply To The Agent\": \"Respuesta del cliente al agente\"\n\"Ticket Assign\": \"Asignación de entradas\"\n\"Agent Forgot Password\": \"El agente olvidó la contraseña\"\n\"Agent Account Created\": \"Cuenta de agente creada\"\n\"Ticket generated by customer\": \"Ticket generado por el cliente\"\n\"Agent Reply To The Customers ticket\": \"Respuesta del agente al ticket del cliente\"\n\"Email template name\": \"Nombre de plantilla de correo electrónico\"\n\"Email template subject\": \"Asunto de plantilla de correo electrónico\"\n\"Template For\": \"Plantilla para\"\n\"Nothing Selected\": \"Nada seleccionado\"\n\"email template will be used for work related with selected option\": \"la plantilla de correo electrónico se usará para el trabajo relacionado con la opción seleccionada\"\n\"Email template body\": \"Cuerpo de plantilla de correo electrónico\"\n\"Body\": \"Cuerpo\"\n\"placeholders\": \"marcadores de posición\"\n\"Ticket Subject\": \"Asunto del boleto\"\n\"Ticket Message\": \"Mensaje de ticket\"\n\"Ticket Attachments\": \"Adjuntos de entradas\"\n\"Ticket Tags\": \"Etiquetas de entradas\"\n\"Ticket Source\": \"Origen del ticket\"\n\"Ticket Status\": \"Estado del ticket\"\n\"Ticket Priority\": \"Prioridad de entradas\"\n\"Ticket Group\": \"Grupo de entradas\"\n\"Ticket Team\": \"Ticket Team\"\n\"Ticket Thread Message\": \"Mensaje de hilo de ticket\"\n\"Ticket Customer Name\": \"Nombre del cliente del ticket\"\n\"Ticket Customer Email\": \"Ticket Email del cliente\"\n\"Ticket Agent Name\": \"Nombre del agente del ticket\"\n\"Ticket Agent Email\": \"Correo electrónico del agente de tickets\"\n\"Ticket Agent Link\": \"Ticket Agent Link\"\n\"Ticket Customer Link\": \"Ticket Customer Link\"\n\"Last Collaborator Name\": \"Apellido del colaborador\"\n\"Last Collaborator Email\": \"Último correo electrónico de colaborador\"\n\"Agent/ Customer Name\": \"Nombre del agente / cliente\"\n\"Account Validation Link\": \"Enlace de validación de cuenta\"\n\"Password Forgot Link\": \"Contraseña Olvidó el enlace\"\n\"Company Name\": \"Nombre de empresa\"\n\"Company Logo\": \"Logo de la compañía\"\n\"Company URL\": \"URL de la compañía\"\n\"Swiftmailer id (Select from drop down)\": \"Identificación de Swiftmailer (Seleccionar del menú desplegable)\"\n\"SwiftMailer\": \"Correo rápido\"\n\"PROCEED\": \"PROCEDER\"\n\"Proceed\": \"Proceder\"\n\"Theme Color\": \"Color del tema\"\n\"Customer Created\": \"Cliente creado\"\n\"Agent Created\": \"Agente creado\"\n\"Ticket Created\": \"Ticket creado\"\n\"Agent Replied on Ticket\": \"Agente respondido en el ticket\"\n\"Customer Replied on Ticket\": \"Cliente respondido en el boleto\"\n\"Workflow Status\": \"Estado del flujo de trabajo\"\n\"Workflow is Active\": \"El flujo de trabajo está activo\"\n\"Events\": \"Eventos\"\n\"An event automatically triggers to check conditions and perform a respective pre-defined set of actions\": \"Un evento se activa automáticamente para verificar las condiciones y realizar un conjunto de acciones predefinido respectivo\"\n\"Select an Event\": \"Seleccionar un evento\"\n\"Add More\": \"Añadir más\"\n\"Conditions\": \"Condiciones\"\n\"Conditions are set of rules which checks for specific scenarios and are triggered on specific occasions\": \"Las condiciones son un conjunto de reglas que verifica escenarios específicos y se activan en ocasiones específicas\"\n\"Subject or Description\": \"Asunto o descripción\"\n\"Actions\": \"Comportamiento\"\n\"An action not only reduces the workload but also makes it quite easier for ticket automation\": \"Una acción no solo reduce la carga de trabajo, sino que también facilita la automatización de tickets\"\n\"Select an Action\": \"Seleccionar una acción\"\n\"Add Note\": \"Añadir la nota\"\n\"Mail to agent\": \"Enviar al agente\"\n\"Mail to customer\": \"Enviar al cliente\"\n\"Mail to group\": \"Enviar al grupo\"\n\"Mail to last collaborator\": \"Enviar al último colaborador\"\n\"Mail to team\": \"Enviar al equipo\"\n\"Mark Spam\": \"Mark Spam\"\n\"Assign to agent\": \"Asignar a agente\"\n\"Assign to group\": \"Asignar a grupo\"\n\"Set Priority As\": \"Establecer prioridad como\"\n\"Set Status As\": \"Establecer estado como\"\n\"Set Tag As\": \"Establecer etiqueta como\"\n\"Set Label As\": \"Establecer etiqueta como\"\n\"Assign to team\": \"Asignar al equipo\"\n\"Set Type As\": \"Establecer tipo como\"\n\"Add Workflow\": \"Agregar flujo de trabajo\"\n\"ADD WORKFLOW\": \"AGREGAR FLUJO DE TRABAJO\"\n\"Ticket Type code\": \"Código de tipo de ticket\"\n\"Ticket Type description\": \"Descripción del tipo de ticket\"\n\"Type Status\": \"Tipo de estado\"\n\"Type is Active\": \"El tipo está activo\"\n\"Add Save Reply\": \"Agregar Guardar respuesta\"\n\"Saved reply name\": \"Nombre de respuesta guardado\"\n\"Share saved reply with user(s) in these group(s)\": \"Compartir respuesta guardada con usuario (s) en estos grupos\"\n\"Share saved reply with user(s) in these teams(s)\": \"Compartir respuesta guardada con usuario (s) en estos equipos\"\n\"Saved reply Body\": \"Cuerpo de respuesta guardado\"\n\"New Prepared Response\": \"Nueva respuesta preparada\"\n\"Prepared Response Status\": \"Estado de respuesta preparado\"\n\"Prepared Response is Active\": \"La respuesta preparada está activa\"\n\"Share prepared response with user(s) in these group(s)\": \"Compartir la respuesta preparada con los usuarios de estos grupos\"\n\"Share prepared response with user(s) in these teams(s)\": \"Compartir la respuesta preparada con los usuarios de estos equipos\"\n\"ADD PREPARED RESPONSE\": \"AGREGAR RESPUESTA PREPARADA\"\n\"Add Prepared Response\": \"Agregar respuesta preparada\"\n\"Folder Name is shown upfront at Knowledge Base\": \"El nombre de la carpeta se muestra por adelantado en Knowledge Base\"\n\"A small text about the folder helps user to navigate more easily\": \"Un pequeño texto sobre la carpeta ayuda al usuario a navegar más fácilmente\"\n\"Publish\": \"Publicar\"\n\"Choose appropriate status\": \"Elegir estado apropiado\"\n\"Folder Image\": \"Imagen de carpeta\"\n\"An image is worth a thousands words and makes folder more accessible\": \"Una imagen vale más que mil palabras y hace que la carpeta sea más accesible\"\n\"Add Category\": \"Añadir categoría\"\n\"Category Name is shown upfront at Knowledge Base\": \"El nombre de la categoría se muestra por adelantado en la Base de conocimiento\"\n\"A small text about the category helps user to navigate more easily\": \"Un pequeño texto sobre la categoría ayuda al usuario a navegar más fácilmente\"\n\"Using Category Order, you can decide which category should display first\": \"Usando el orden de categoría, puede decidir qué categoría debe mostrarse primero\"\n\"Sorting\": \"Clasificación\"\n\"Ascending Order (A-Z)\": \"Orden ascendente (A-Z)\"\n\"Descending Order (Z-A)\": \"Orden descendente (Z-A)\"\n\"Based on Popularity\": \"Basado en popularidad\"\n\"Article of this category will display according to selected option\": \"El artículo de esta categoría se mostrará según la opción seleccionada\"\n\"Article\": \"Artículo\"\n\"Title\": \"Título\"\n\"View\": \"Ver\"\n\"Make as Starred\": \"Hacer como protagonizado\"\n\"Yes\": \"si\"\n\"No\": \"No\"\n\"Stared\": \"Mirado\"\n\"Revisions\": \"Revisiones\"\n\"Related Articles\": \"Artículos relacionados\"\n\"Delete Article\":\t\"Eliminar artículo\"\n\"Content\": \"Contenido\"\n\"Slug\": \"Babosa\"\n\"Slug is the url identity of this article.\": \"Slug es la identidad de URL de este artículo\"\n\"Meta Title\": \"Meta título\"\n\"Meta Keywords\": \"Meta palabras clave\"\n\"Meta Description\": \"Metadescripción\"\n\"Description\": \"Descripción\"\n\"Team Status\": \"Estado del equipo\"\n\"Team is Active\": \"El equipo está activo\"\n\"Edit Privilege\": \"Editar privilegio\"\n\"Can create ticket\": \"Puede crear boleto\"\n\"Can edit ticket\": \"Puede editar el boleto\"\n\"Can delete ticket\": \"Puede borrar el boleto\"\n\"Can restore trashed ticket\": \"Puede restaurar el boleto basura\"\n\"Can assign ticket\": \"Puede asignar boleto\"\n\"Can assign ticket group\": \"Puede asignar grupo de tickets\"\n\"Can update ticket status\": \"Puede actualizar el estado del ticket\"\n\"Can update ticket priority\": \"Puede actualizar la prioridad del ticket\"\n\"Can update ticket type\": \"Puede actualizar el tipo de ticket\"\n\"Can add internal notes to ticket\": \"Puede agregar notas internas al ticket\"\n\"Can edit thread/notes\": \"Puede editar hilo / notas\"\n\"Can lock/unlock thread\": \"Puede bloquear / desbloquear hilo\"\n\"Can add collaborator to ticket\": \"Puede agregar un colaborador al ticket\"\n\"Can delete collaborator from ticket\": \"Puede eliminar al colaborador del ticket\"\n\"Can delete thread/notes\": \"Puede eliminar hilos / notas\"\n\"Can apply prepared response on ticket\": \"Puede aplicar una respuesta preparada en el boleto\"\n\"Can add ticket tags\": \"Puede agregar etiquetas de ticket\"\n\"Can delete ticket tags\": \"Puede eliminar etiquetas de ticket\"\n\"Can kick other ticket users\": \"Puede patear a otros usuarios de boletos\"\n\"Can manage email templates\": \"Puede administrar plantillas de correo electrónico\"\n\"Can manage groups\": \"Puede administrar grupos\"\n\"Can manage Sub-Groups/ Teams\": \"Puede administrar subgrupos / equipos\"\n\"Can manage agents\": \"Puede administrar agentes\"\n\"Can manage agent privileges\": \"Puede administrar privilegios de agente\"\n\"Can manage ticket types\": \"Puede administrar tipos de tickets\"\n\"Can manage ticket custom fields\": \"Puede administrar campos personalizados de tickets\"\n\"Can manage customers\": \"Puede administrar clientes\"\n\"Can manage Prepared Responses\": \"Puede gestionar respuestas preparadas\"\n\"Can manage Automatic workflow\": \"Puede administrar el flujo de trabajo automático\"\n\"Can manage tags\": \"Puede administrar etiquetas\"\n\"Can manage knowledgebase\": \"Puede administrar la base de conocimiento\"\n\"Can manage Groups Saved Reply\": \"Puede administrar la respuesta guardada del grupo\"\n\"Add Privilege\": \"Agregar privilegio\"\n\"Choose set of privileges which will be available to the agent.\": \"Elija un conjunto de privilegios que estarán disponibles para el agente\"\n\"Advanced\": \"Avanzado\"\n\"Privilege Name must have characters only\": \"El nombre de privilegio debe tener solo caracteres\"\n\"Maximum character length is 50\": \"La longitud máxima de caracteres es 50\"\n\"Open Tickets\": \"Entradas Abiertas\"\n\"New Customer\": \"Nuevo cliente\"\n\"New Agent\": \"Nuevo agente\"\n\"Total Article(s)\": \"Total de artículo (s)\"\n\"Please specify a valid email address\": \"Por favor, especifique una dirección de correo electrónico válida\"\n\"Please enter the password associated with your email address\": \"Ingrese la contraseña asociada con su dirección de correo electrónico\"\n\"Please enter your server host address\": \"Ingrese la dirección de host del servidor\"\n\"Please specify a port number to connect with your mail server\": \"Especifique un número de puerto para conectarse con su servidor de correo\"\n\"Success ! Branding details saved successfully.\": \"¡Éxito! Los detalles de la marca se guardaron correctamente \"\n\"Success ! Time details saved successfully.\": \"¡Éxito! Detalles del tiempo guardados con éxito.\"\n\"Spam setting saved successfully.\": \"Configuración de spam guardada con éxito\"\n\"Please specify a valid name for your mailbox.\": \"Especifique un nombre válido para su buzón\"\n\"Please select a valid swift-mailer configuration.\": \"Seleccione una configuración válida de correo rápido\"\n\"Please specify a valid host address.\": \"Especifique una dirección de host válida\"\n\"Please specify a valid email address.\": \"Especifique una dirección de correo electrónico válida\"\n\"Please enter the associated account password.\": \"Ingrese la contraseña de la cuenta asociada\"\n\"New Saved Reply\": \"Nueva respuesta guardada\"\n\"New Category\": \"Nueva categoría\"\n\"Folder\": \"Carpeta\"\n\"Category\": \"Categoría\"\n\"Created\": \"Creado\"\n\"All Articles\": \"Todos los artículos\"\n\"Viewed\": \"Visto\"\n\"New Article\": \"Articulo nuevo\"\n\"Thank you for your feedback!\": \"¡Gracias por tus comentarios!\"\n\"Was this article helpful?\": \"¿Te resultó útil este artículo?\"\n\"Helpdesk\": \"Mesa de ayuda\"\n\"Support Center\": \"Centro de Apoyo\"\n\"Mailboxes\": \"Buzones\"\n\"By\": \"Por\"\n\"Search Tickets\": \"Buscar entradas\"\n\"Customer Information\": \"Información al cliente\"\n\"Total Replies\": \"Respuestas totales\"\n\"Filter With\": \"Filtrar con\"\n\"Type email to add\": \"Escriba correo electrónico para agregar\"\n\"Collaborators\": \"Colaboradores\"\n\"Labels\": \"Etiquetas\"\n\"Group\": \"Grupo\"\n\"group\": \"grupo\"\n\"Contact Team\": \"Equipo de contacto\"\n\"Stay on ticket\": \"Permanecer en boleto\"\n\"Redirect to list\": \"Redirigir a la lista\"\n\"Nothing interesting here...\": \"Nada interesante aquí\"\n\"Previous Ticket\": \"Ticket anterior\"\n\"Next Ticket\": \"Próximo ticket\"\n\"Forward\": \"Adelante\"\n\"Note\": \"Nota\"\n\"Write a reply\": \"Escribe una respuesta\"\n\"Created Ticket\": \"Ticket creado\"\n\"All Threads\": \"Todos los temas\"\n\"Forwards\": \"Hacia adelante\"\n\"Notes\": \"Notas\"\n\"Pinned\": \"Fijado\"\n\"Edit Ticket\": \"Editar ticket\"\n\"Print Ticket\": \"Imprimir boleto\"\n\"Mark as Spam\": \"Marcar como correo no deseado\"\n\"Mark as Closed\": \"Marcar como cerrado\"\n\"Delete Ticket\": \"Eliminar ticket\"\n\"View order details from different eCommerce channels\": \"Ver detalles de pedidos de diferentes canales de comercio electrónico\"\n\"ECOMMERCE CHANNELS\": \"CANALES DE COMERCIO\"\n\"Select channel\": \"Seleccionar canal\"\n\"Order Id\": \"Solicitar ID\"\n\"Fetch Order\": \"Obtener orden\"\n\"No orders have been integrated to this ticket yet.\": \"Aún no se han integrado pedidos a este ticket\"\n\"Enter your credentials below to gain access to your helpdesk account.\": \"Ingrese sus credenciales a continuación para obtener acceso a su cuenta del servicio de asistencia\"\n\"Keep me logged in\": \"Mantenme conectado\"\n\"Forgot Password?\": \"¿Se te olvidó tu contraseña?\"\n\"Log in to your\": \"Inicie sesión en su\"\n\"Sign In\": \"Registrarse\"\n\"Edit Customer\": \"Editar cliente\"\n\"Update\": \"Actualizar\"\n\"Discard\": \"Descarte\"\n\"Cancel\": \"Cancelar\"\n\"Not Assigned\": \"No asignado\"\n\"Submit\": \"Enviar\"\n\"Submit And Open\": \"Enviar y abrir\"\n\"Submit And Pending\": \"Enviar y pendiente\"\n\"Submit And Answered\": \"Enviar y respondido\"\n\"Submit And Resolved\": \"Enviar y resuelto\"\n\"Submit And Closed\": \"Enviar y cerrado\"\n\"Choose a Color\": \"Elige un color\"\n\"Create\": \"Crear\"\n\"Edit Label\": \"Editar etiqueta\"\n\"Add Label\": \"Agregar etiqueta\"\n\"To\": \"A\"\n\"Ticket\": \"Boleto\"\n\"Your browser does not support JavaScript or You disabled JavaScript, Please enable those !\": \"Su navegador no es compatible con JavaScript o Ha desactivado JavaScript, ¡habilítelos!\"\n\"Confirm Action\": \"Confirmar acción\"\n\"Confirm\": \"Confirmar\"\n\"No result found\": \"No se han encontrado resultados\"\n\"ticket delivery status\": \"estado de entrega del boleto\"\n\"Warning! Select valid image file.\": \"¡Advertencia! Seleccione un archivo de imagen válido.\"\n\"SEO\": \"SEO\"\n\"Edit Saved Filter\": \"Editar filtro guardado\"\n\"Type atleast 2 letters\": \"Escriba al menos 2 letras\"\n\"Remove Label\": \"Eliminar etiqueta\"\n\"New Saved Filter\": \"Nuevo filtro guardado\"\n\"Is Default\": \"Es predeterminado\"\n\"Remove Saved Filter\": \"Eliminar filtro guardado\"\n\"Ticket Info\": \"Información del boleto\"\n\"Last Replied Agent\": \"Último agente respondido\"\n\"created Ticket\": \"Ticket creado\"\n\"Uploaded Files\": \"Archivos subidos\"\n\"Download (as .zip)\": \"Descargar como zip)\"\n\"made last reply\": \"hizo la última respuesta\"\n\"N/A\": \"N / A\"\n\"Unassigned\": \"Sin asignar\"\n\"Label\": \"Etiqueta\"\n\"Assigned to me\": \"Asignado a mí\"\n\"Search Query\": \"Consulta de busqueda\"\n\"Searching\": \"Buscando\"\n\"Saved Filter\": \"Filtro guardado\"\n\"No Label Created\": \"Sin etiqueta creada\"\n\"Label with same name already exist.\": \"Ya existe una etiqueta con el mismo nombre\"\n\"Create New\": \"Crear nuevo\"\n\"Mail status\": \"Estado del correo\"\n\"replied\": \"respondido\"\n\"added note\": \"nota agregada\"\n\"forwarded\": \"reenviado\"\n\"TO\": \"A\"\n\"CC\": \"CC\"\n\"BCC\": \"BCC\"\n\"Locked\": \"Bloqueado\"\n\"Edit Thread\": \"Editar hilo\"\n\"Delete Thread\": \"Eliminar hilo\"\n\"Unpin Thread\": \"Desanclar hilo\"\n\"Pin Thread\": \"Hilo de alfiler\"\n\"Unlock Thread\": \"Desbloquear hilo\"\n\"Lock Thread\": \"Bloquear hilo\"\n\"Translate Thread\": \"Traducir hilo\"\n\"Language\": \"Idioma\"\n\"English\": \"Inglés\"\n\"French\": \"Francés\"\n\"Italian\": \"Italiano\"\n\"Arabic\": \"Arábica\"\n\"German\": \"Alemán\"\n\"Spanish\": \"Español\"\n\"Turkish\": \"Turco\"\n\"Danish\": \"Danés\"\n\"Chinese\": \"CHINO\"\n\"Polish\": \"POLACO\"\n\"Hebrew\": \"hebreo\"\n\"Portuguese\": \"Portugués\"\n\"System\": \"Sistema\"\n\"Open in Files\": \"Abrir en archivos\"\n\"Email address is invalid\": \"Dirección de correo electrónico es inválida\"\n\"Tag with same name already exist\": \"Ya existe una etiqueta con el mismo nombre\"\n\"Text length should be less than 20 charactors\": \"La longitud del texto debe ser inferior a 20 caracteres\"\n\"Label with same name already exist\": \"Ya existe una etiqueta con el mismo nombre\"\n\"Agent Name\": \"Nombre del agente\"\n\"Agent Email\": \"Correo electrónico del agente\"\n\"open\": \"abierto\"\n\"Currently active agents on ticket\": \"Agentes actualmente activos en ticket\"\n\"Edit Customer Information\": \"Editar información del cliente\"\n\"Restore\": \"Restaurar\"\n\"Delete Forever\": \"Borrar para siempre\"\n\"Add Team\": \"Agregar equipo\"\n\"delete\": \"Eliminar\"\n\"You didnt have any folder for current filter(s).\": \"No tenía ninguna carpeta para los filtros actuales\"\n\"Add Folder\": \"Agregar carpeta\"\n\"This field must have valid characters only\": \"Este campo debe tener solo caracteres válidos\"\n\"Can edit task\": \"Puede editar tarea\"\n\"Can create task\": \"Puede crear tarea\"\n\"Can delete task\": \"Puede eliminar tarea\"\n\"Can add member to task\": \"Puede agregar miembro a la tarea\"\n\"Can remove member from task\": \"Puede eliminar miembro de la tarea\"\n\"Agent Privileges\": \"Privilegios de agente\"\n\"Agent Privilege represents overall permissions in System.\": \"El privilegio del agente representa los permisos generales en el sistema\"\n\"Ticket View\": \"Vista de entradas\"\n\"User can view tickets based on selected scope.\": \"El usuario puede ver los tickets en función del alcance seleccionado\"\n\"If individual access then user can View assigned Ticket(s) only, If Team access then user can view all Ticket(s) in team(s) he belongs to and so on\": \"Si el acceso individual, entonces el usuario puede ver los tickets asignados únicamente, si el acceso del equipo, el usuario puede ver todos los tickets en el equipo al que pertenece y así sucesivamente\"\n\"Global Access\": \"Acceso global\"\n\"Group Access\": \"Acceso grupal\"\n\"Team Access\": \"Acceso de equipo\"\n\"Individual Access\": \"Acceso individual\"\n\"This field must have characters only\": \"Este campo debe tener solo caracteres\"\n\"Maximum character length is 40\": \"La longitud máxima de caracteres es 40\"\n\"This is not a valid email address\": \"Esta no es una dirección de correo electrónico válida\"\n\"Password must contains 8 Characters\": \"La contraseña debe contener 8 caracteres\"\n\"The passwords does not match\": \"Las contraseñas no coinciden\"\n\"Enabled\": \"Habilitado\"\n\"Create Configuration\": \"Crear configuración\"\n\"Swift Mailer Settings\": \"Configuración de correo rápido\"\n\"Username\": \"Nombre de usuario\"\n\"Please select a swiftmailer id\": \"Seleccione una identificación de swiftmailer\"\n\"Please enter a valid e-mail id\": \"Por favor ingrese una identificación de correo electrónico válida\"\n\"Please enter a mailer id\": \"Por favor, introduzca una identificación de correo\"\n\"Email Id\": \"Identificación de correo\"\n\"Are you sure? You want to perform this action.\": \"¿Estás seguro? Quieres realizar esta acción?\"\n\"Reorder\": \"Reordenar\"\n\"New Workflow\": \"Nuevo flujo de trabajo\"\n\"OR\": \"O\"\n\"AND\": \"Y\"\n\"Please enter a valid name.\": \"Por favor ingrese un nombre valido.\"\n\"Please select a value.\": \"Por favor seleccione un valor.\"\n\"Please add a value.\": \"Por favor agregue un valor\"\n\"This field is required\": \"Este campo es requerido\"\n\"or\": \"o\"\n\"and\": \"y\"\n\"Select a Condition\": \"Seleccionar una condición\"\n\"Loading...\": \"Cargando...\"\n\"Select Option\": \"Seleccionar opción\"\n\"Inactive\": \"Inactivo\"\n\"New Type\": \"Nuevo tipo\"\n\"Placeholders\": \"Marcadores de posición\"\n\"Ticket Link\": \"Ticket Link\"\n\"Id\": \"Carné de identidad\"\n\"Preview\": \"Avance\"\n\"Sort Order\": \"Orden de clasificación\"\n\"This field must be a number\": \"Este campo debe ser un número\"\n\"User\": \"Usuario\"\n\"Edit Group\": \"Editar grupo\"\n\"Group Status\": \"Estado del grupo\"\n\"Group is Active\": \"El grupo está activo\"\n\"Add Group\": \"Añadir grupo\"\n\"Contact number is invalid\": \"El número de contacto no es válido\"\n\"Edit Agent\": \"Editar agente\"\n\"No Privilege added, Please add Privilege(s) first !\": \"No se ha agregado ningún privilegio, ¡por favor agregue privilegios primero!\"\n\"Edit Email Template\": \"Editar plantilla de correo electrónico\"\n\"Edit Workflow\": \"Editar flujo de trabajo\"\n\"Save Workflow\": \"Guardar flujo de trabajo\"\n\"Edit Ticket Type\": \"Editar tipo de ticket\"\n\"Add Ticket Type\": \"Agregar tipo de ticket\"\n\"Date Released\": \"Fecha de publicación\"\n\"Free\": \"Gratis\"\n\"Premium\": \"Prima\"\n\"Installed\": \"Instalado\"\n\"Installed Applications\": \"Aplicaciones instaladas\"\n\"Apps Dashboard\": \"Panel de aplicaciones\"\n\"Dashboard\": \"Tablero\"\n\"Nothing Interesting here\": \"Nada interesante aquí\"\n\"No Categories Added\": \"No se agregaron categorías\"\n\"ticket\": \"boleto\"\n\"Add Email Template\": \"Agregar plantilla de correo electrónico\"\n\"This field contain 100 characters only\": \"Este campo contiene solo 100 caracteres\"\n\"This field contain characters only\": \"Este campo contiene solo caracteres\"\n\"Name length must not be greater than 200 !!\": \"¡La longitud del nombre no debe ser mayor de 200 !\"\n\"Warning! Correct all field values first!\": \"¡Advertencia! ¡Corrija todos los valores de campo primero!\"\n\"Warning ! This is not a valid request\": \"Advertencia ! Esta no es una solicitud válida \"\n\"Success ! Tag removed successfully.\": \"¡Éxito! Etiqueta eliminada con éxito.\"\n\"Success ! Tags Saved successfully.\": \"¡Éxito! Etiquetas guardadas correctamente.\"\n\"Success ! Revision restored successfully.\": \"¡Éxito! Revisión restaurada con éxito.\"\n\"Success ! Categories updated successfully.\": \"¡Éxito! Categorías actualizadas con éxito.\"\n\"Success ! Article Related removed successfully.\": \"¡Éxito! Artículo relacionado eliminado con éxito.\"\n\"Success ! Article Related is already added.\": \"¡Éxito! Artículo relacionado ya se ha añadido.\"\n\"Success ! Cannot add self as relative article.\": \"¡Éxito! No se puede agregar uno mismo como artículo relativo.\"\n\"Success ! Article Related updated successfully.\": \"¡Éxito! Artículo relacionado actualizado con éxito.\"\n\"Success ! Articles removed successfully.\": \"¡Éxito! Artículos eliminados con éxito.\"\n\"Success ! Article status updated successfully.\": \"¡Éxito! Estado del artículo actualizado correctamente.\"\n\"Success ! Article star updated successfully.\": \"¡Éxito! Artículo estrella actualizado con éxito.\"\n\"Success! Article updated successfully\": \"¡Éxito! Artículo actualizado correctamente \"\n\"Success ! Category sort  order updated successfully.\": \"¡Éxito! El orden de clasificación de categoría se actualizó correctamente.\"\n\"Success ! Category status updated successfully.\": \"¡Éxito! El estado de la categoría se actualizó correctamente.\"\n\"Success ! Folders updated successfully.\": \"¡Éxito! Carpetas actualizadas con éxito.\"\n\"Success ! Categories removed successfully.\": \"¡Éxito! Categorías eliminadas con éxito.\"\n\"Success ! Category updated successfully.\": \"¡Éxito! Categoría actualizada con éxito.\"\n\"Error ! Category is not exist.\": \"Error! La categoría no existe.\"\n\"Warning ! Customer Login disabled by admin.\": \"Advertencia ! Inicio de sesión del cliente deshabilitado por el administrador.\"\n\"This Email is not registered with us.\": \"Este correo electrónico no está registrado con nosotros\"\n\"Your password has been updated successfully.\": \"Su contraseña se ha actualizado correctamente.\"\n\"Password dont match.\": \"La contraseña no coincide\"\n\"Error ! Profile image is not valid, please upload a valid format\": \"Error! La imagen de perfil no es válida, cargue un formato válido \"\n\"Success! Folder has been added successfully.\": \"¡Éxito! La carpeta se ha agregado correctamente.\"\n\"Folder updated successfully.\": \"Carpeta actualizada con éxito\"\n\"Success ! Folder status updated successfully.\": \"¡Éxito! El estado de la carpeta se actualizó correctamente.\"\n\"Error ! Folder is not exist.\": \"Error! La carpeta no existe.\"\n\"Success ! Folder updated successfully.\": \"¡Éxito! Carpeta actualizada con éxito.\"\n\"Error ! Folder does not exist.\": \"Error! La carpeta no existe.\"\n\"Success ! Folder deleted successfully.\": \"¡Éxito! Carpeta eliminada con éxito.\"\n\"Warning ! Folder doesnt exists!\": \"¡Advertencia! ¡La carpeta no existe!\"\n\"Warning ! Cannot create ticket, given email is blocked by admin.\": \"Advertencia ! No se puede crear el ticket, dado que el administrador bloquea el correo electrónico dado \"\n\"Success ! Ticket has been created successfully.\": \"¡Éxito! El boleto ha sido creado con éxito.\"\n\"Warning ! Can not create ticket, invalid details.\": \"Advertencia ! No se puede crear el ticket, detalles no válidos \"\n\"Warning ! Post size can not exceed 25MB\": \"¡Advertencia! El tamaño de la publicación no puede superar los 25 MB\"\n\"Create Ticket Request\": \"Crear solicitud de ticket\"\n\"Success ! Reply added successfully.\": \"¡Éxito! Respuesta agregada con éxito\"\n\"Warning ! Reply field can not be blank.\": \"¡Advertencia! El campo de respuesta no puede estar en blanco\"\n\"Success ! Rating has been successfully added.\": \"¡Éxito! La calificación se ha agregado con éxito.\"\n\"Warning ! Invalid rating.\": \"Advertencia ! Calificación inválida.\"\n\"Error ! Can not add customer as a collaborator.\": \"Error! No se puede agregar al cliente como colaborador \"\n\"Success ! Collaborator added successfully.\": \"¡Éxito! Colaborador agregado con éxito.\"\n\"Error ! Collaborator is already added.\": \"Error! El colaborador ya está agregado \"\n\"Success ! Collaborator removed successfully.\": \"¡Éxito! Colaborador eliminado con éxito.\"\n\"Error ! Invalid Collaborator.\": \"Error! Colaborador inválido.\"\n\"An unexpected error occurred. Please try again later.\": \"Ocurrió un error inesperado. Por favor, inténtelo de nuevo más tarde.\"\n\"Feedback saved successfully.\": \"Comentarios guardados correctamente\"\n\"Feedback updated successfully.\": \"Comentarios actualizados correctamente\"\n\"Invalid feedback provided.\": \"Comentarios no válidos proporcionados\"\n\"Article not found.\": \"Artículo no encontrado\"\n\"You need to login to your account before can perform this action.\": \"Debe iniciar sesión en su cuenta antes de poder realizar esta acción\"\n\"Warning! Please add valid Actions!\": \"¡Advertencia! ¡Agregue acciones válidas!\"\n\"Warning! In Free Plan you can not change Events!\": \"¡Advertencia! ¡En Free Plan no puedes cambiar los Eventos! \"\n\"Success! Prepared Response has been updated successfully.\": \"¡Éxito! La respuesta preparada se ha actualizado correctamente.\"\n\"Success! Prepared Response has been added successfully.\": \"¡Éxito! La respuesta preparada se ha agregado con éxito.\"\n\"Warning  This is not a valid request\": \"Advertencia Esta no es una solicitud válida\"\n\"Use Default Colors\": \"Usar colores predeterminados\"\n\"Masonry\": \"Albañilería\"\n\"Popular Article\": \"Artículo popular\"\n\"Manage Ticket Custom Fields\": \"Administrar campos personalizados de tickets\"\n\"You dont have premission to edit this Prepared response\": \"No tiene permiso para editar esta respuesta preparada\"\n\"Save Prepared Response\": \"Guardar respuesta preparada\"\n\"Success ! Prepared response removed successfully.\": \"¡Éxito! Respuesta preparada eliminada con éxito\"\n\"Warning! You are not allowed to perform this action.\": \"¡Advertencia! No tienes permiso para realizar esta acción\"\n\"Success! Workflow has been updated successfully.\": \"¡Éxito! El flujo de trabajo se ha actualizado correctamente\"\n\"Success! Workflow has been added successfully.\": \"¡Éxito! El flujo de trabajo se ha agregado con éxito\"\n\"Success! Order has been updated successfully.\": \"¡Éxito! El pedido se ha actualizado correctamente\"\n\"Success! Workflow has been removed successfully.\": \"¡Éxito! El flujo de trabajo se ha eliminado con éxito\"\n\"Mailbox successfully created.\": \"Buzón creado con éxito\"\n\"Mailbox successfully updated.\": \"Buzón actualizado correctamente\"\n\"Warning ! Bad request !\": \"Advertencia ! Solicitud incorrecta !\"\n\"Error! Given current password is incorrect.\": \"¡Error! La contraseña actual dada es incorrecta.\"\n\"Success ! Profile update successfully.\": \"¡Éxito! Actualización de perfil exitosa.\"\n\"Error ! User with same email is already exist.\": \"Error! El usuario con el mismo correo electrónico ya existe.\"\n\"Success ! Agent updated successfully.\": \"¡Éxito! Agente actualizado con éxito.\"\n\"Success ! Agent removed successfully.\": \"¡Éxito! Agente eliminado con éxito.\"\n\"Warning ! You are allowed to remove account owners account.\": \"¡Advertencia! Se le permite eliminar la cuenta del propietario de la cuenta\"\n\"Error ! Invalid user id.\": \"¡Error! Identificación de usuario no válida\"\n\"Success ! Filter has been saved successfully.\": \"¡Éxito! El filtro se ha guardado correctamente\"\n\"Success ! Filter has been updated successfully.\": \"¡Éxito! El filtro se ha actualizado correctamente\"\n\"Success ! Filter has been removed successfully.\": \"¡Éxito! El filtro se ha eliminado con éxito\"\n\"Please check your mail for password update.\": \"Por favor revise su correo para la actualización de la contraseña\"\n\"This Email address is not registered with us.\": \"Esta dirección de correo electrónico no está registrada con nosotros\"\n\"Success ! Customer saved successfully.\": \"¡Éxito! El cliente se guardó correctamente\"\n\"Error ! User with same email already exist.\": \"¡Error! Ya existe un usuario con el mismo correo electrónico\"\n\"Success ! Customer information updated successfully.\": \"¡Éxito! La información del cliente se actualizó correctamente\"\n\"Success ! Customer updated successfully.\": \"¡Éxito! Cliente actualizado con éxito\"\n\"Error ! Customer with same email already exist.\": \"¡Error! Ya existe un cliente con el mismo correo electrónico\"\n\"unstarred Action Completed successfully\": \"Acción no destacada completada con éxito\"\n\"starred Action Completed successfully\": \"Acción destacada completada con éxito\"\n\"Success ! Customer removed successfully.\": \"¡Éxito! Cliente eliminado con éxito\"\n\"Error ! Invalid customer id.\": \"¡Error! Identificación de cliente no válida\"\n\"Success! Template has been updated successfully.\": \"¡Éxito! La plantilla se ha actualizado correctamente\"\n\"Success! Template has been added successfully.\": \"¡Éxito! La plantilla se ha agregado con éxito\"\n\"Success! Template has been deleted successfully.\": \"¡Éxito! La plantilla se ha eliminado con éxito\"\n\"Warning! resource not found.\": \"¡Advertencia! Recurso no encontrado\"\n\"Warning! You can not remove predefined email template which is being used in workflow(s).\": \"¡Advertencia! No puede eliminar la plantilla de correo electrónico predefinida que se está utilizando en los flujos de trabajo\"\n\"Success ! Email settings are updated successfully.\": \"¡Éxito! La configuración del correo electrónico se actualizó correctamente\"\n\"Success ! Group information updated successfully.\": \"¡Éxito! La información del grupo se actualizó correctamente\"\n\"Success ! Group information saved successfully.\": \"¡Éxito! La información del grupo se guardó correctamente\"\n\"Support Group removed successfully.\": \"Grupo de soporte eliminado con éxito\"\n\"Success ! Privilege information saved successfully.\": \"¡Éxito! La información de privilegio se guardó correctamente\"\n\"Privilege updated successfully.\": \"Privilegio actualizado con éxito\"\n\"Support Privilege removed successfully.\": \"El privilegio de soporte se eliminó correctamente\"\n\"Success! Reply has been updated successfully.\": \"¡Éxito! La respuesta se ha actualizado correctamente\"\n\"Success! Reply has been added successfully.\": \"¡Éxito! La respuesta se ha agregado correctamente\"\n\"Success! Saved Reply has been deleted successfully\": \"¡Éxito! La respuesta guardada se ha eliminado correctamente\"\n\"SwiftMailer configuration updated successfully.\": \"La configuración de SwiftMailer se actualizó correctamente\"\n\"Swiftmailer configuration removed successfully.\": \"La configuración de Swiftmailer se eliminó correctamente\"\n\"Success ! Team information saved successfully.\": \"¡Éxito! La información del equipo se guardó correctamente\"\n\"Success ! Team information updated successfully.\": \"¡Éxito! La información del equipo se actualizó correctamente\"\n\"Support Team removed successfully.\": \"Equipo de soporte eliminado con éxito\"\n\"Success! Reply has been added successfully\": \"¡Éxito! La respuesta se ha agregado correctamente\"\n\"Success ! Thread updated successfully.\": \"¡Éxito! Hilo actualizado correctamente\"\n\"Error ! Reply field can not be blank.\": \"¡Error! El campo de respuesta no puede estar en blanco\"\n\"Success ! Thread removed successfully.\": \"¡Éxito! Hilo eliminado con éxito\"\n\"Success ! Thread locked successfully\": \"¡Éxito! Hilo bloqueado correctamente\"\n\"Success ! Thread unlocked successfully\": \"¡Éxito! Hilo desbloqueado con éxito\"\n\"Success ! Thread pinned successfully\": \"¡Éxito! Hilo fijado correctamente\"\n\"Error ! Invalid thread.\": \"¡Error! Hilo no válido\"\n\"Could not create ticket, invalid details.\": \"No se pudo crear el ticket, detalles no válidos\"\n\"Success ! Tag updated successfully.\": \"¡Éxito! Etiqueta actualizada con éxito\"\n\"Error ! Customer can not be added as collaborator.\": \"¡Error! No se puede agregar al cliente como colaborador\"\n\"Success ! Tag unassigned successfully.\": \"¡Éxito! Etiqueta no asignada con éxito\"\n\"Success ! Tag added successfully.\": \"¡Éxito! Etiqueta añadida con éxito\"\n\"Please enter tag name.\": \"Ingrese el nombre de la etiqueta\"\n\"Error ! Invalid tag.\": \"¡Error! Etiqueta no válida\"\n\"Success ! Type removed successfully.\": \"¡Éxito! Tipo eliminado con éxito\"\n\"Success ! Ticket to label removed successfully.\": \"¡Éxito! Boleto para etiquetar eliminado con éxito\"\n\"Unable to retrieve support team details\": \"No se pueden recuperar los detalles del equipo de soporte\"\n\"Ticket support group updated successfully\": \"El grupo de soporte de tickets se actualizó correctamente\"\n\"Unable to retrieve status details\": \"No se pueden recuperar los detalles del estado\"\n\"Insufficient details provided.\": \"Detalles insuficientes proporcionados\"\n\"Error! Subject field is mandatory\": \"¡Error! El campo de asunto es obligatorio\"\n\"Error! Reply field is mandatory\": \"¡Error! El campo de respuesta es obligatorio\"\n\"Success ! Ticket has been updated successfully.\": \"¡Éxito! El ticket se ha actualizado correctamente\"\n\"Success ! Label updated successfully.\": \"¡Éxito! Etiqueta actualizada con éxito\"\n\"Error ! Invalid label id.\": \"¡Error! Identificación de etiqueta no válida\"\n\"Success ! Label removed successfully.\": \"¡Éxito! Etiqueta eliminada con éxito\"\n\"Success ! Label created successfully.\": \"¡Éxito! Etiqueta creada con éxito\"\n\"Error ! Label name can not be blank.\": \"¡Error! El nombre de la etiqueta no puede estar en blanco\"\n\"Success ! Ticket moved to trash successfully.\": \"¡Éxito! El boleto se movió a la basura con éxito\"\n\"Success! Ticket type saved successfully.\": \"¡Éxito! Tipo de ticket guardado correctamente\"\n\"Success! Ticket type updated successfully.\": \"¡Éxito! Tipo de ticket actualizado correctamente\"\n\"Error! Ticket type with same name already exist\": \"¡Error! El tipo de ticket con el mismo nombre ya existe\"\n\"SAVE\": \"SALVAR\"\n\"Save\": \"Salvar\"\n\"Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A pages title tag and meta description are usually shown whenever that page appears in search engine results\": \"Las etiquetas de título y las metadescripciones son bits de código HTML en el encabezado de una página web. Ayudan a los motores de búsqueda a comprender el contenido de una página. La etiqueta del título y la meta descripción de una página generalmente se muestran cuando esa página aparece en los resultados del motor de búsqueda\"\n\"Success! Category has been added successfully.\": \"¡Éxito! La categoría se ha agregado con éxito.\"\n\n# Successfully Pop-up/Notification Messages:\n\"Ticket is already assigned to agent\" : \"El ticket ya está asignado al agente\"\n\"Success ! Agent assigned successfully.\" : \"Éxito ! Agente asignado con éxito.\"\n\"Ticket status is already set\" : \"El estado del ticket ya está configurado\"\n\"Success ! Tickets status updated successfully.\" : \"Éxito ! Estado de los tickets actualizado con éxito.\"\n\"Ticket priority is already set\" : \"La prioridad del ticket ya está configurada\"\n\"Success ! Tickets priority updated successfully.\" : \"Éxito ! Prioridad de entradas actualizada con éxito.\"\n\"Ticket group is updated successfully\" : \"El grupo de tickets se actualizó correctamente\"\n\"Ticket is already assigned to group\" : \"El ticket ya está asignado al grupo\"\n\"Success ! Tickets group updated successfully.\" : \"Éxito ! Grupo de tickets actualizado con éxito.\"\n\"Ticket team is updated successfully\" : \"El equipo de tickets se actualizó con éxito\"\n\"Ticket is already assigned to team\" : \"El ticket ya está asignado al equipo\"\n\"Success ! Tickets team updated successfully.\" : \"Éxito ! El equipo de tickets se actualizó con éxito.\"\n\"Ticket type is already set\" : \"El tipo de boleto ya está configurado\"\n\"Success ! Tickets type updated successfully.\" : \"Éxito ! Tipo de ticket actualizado con éxito.\"\n\"Success ! Tickets label updated successfully.\" : \"Éxito ! Etiqueta de entradas actualizada con éxito.\"\n\"Success ! Tickets added to label successfully.\" : \"Éxito ! Entradas añadidas a la etiqueta con éxito.\"\n\"Success ! Tickets moved to trashed successfully.\" : \"Éxito ! Los tickets se movieron a la papelera con éxito.\"\n\"Success ! Tickets removed successfully.\" : \"Éxito ! Entradas eliminadas con éxito.\"\n\"Success ! Tickets restored successfully.\" : \"Éxito ! Entradas restauradas con éxito.\"\n\"Unable to retrieve group details\" : \"No se pueden recuperar los detalles del grupo\"\n\"Unable to retrieve team details\" : \"No se pueden recuperar los detalles del equipo\"\n\"Tickets details have been updated successfully\": \"Los detalles de las entradas se han actualizado con éxito\"\n\"Label added to ticket successfully\" : \"Etiqueta añadida al ticket con éxito\"\t\t\t\t\n\"Label already added to ticket\" : \"Etiqueta ya añadida al ticket\"\n\n#customer page\n\"Howdy! \": \"Hola!\"\n\"New Ticket Request\": \"Solicitud de nueva entrada\"\n\"Ticket Requests\": \"Solicitudes de entradas\"\n\"Tickets have been updated successfully\": \"Las entradas se han actualizado correctamente\"\n\"Please check your mail for password update\": \"Por favor revise su correo para actualizar la contraseña\"\n\"This email address is not registered with us\": \"Esta dirección de correo electrónico no está registrada con nosotros.\"\n\"You have already update password using this link if you wish to change password again click on forget password link here from login page\": \"Ya ha actualizado la contraseña usando este enlace si desea cambiar la contraseña nuevamente, haga clic en el enlace para olvidar la contraseña aquí desde la página de inicio de sesión\"\n\"Your password has been successfully updated. Login using updated password\": \"Su contraseña ha sido actualizada satisfactoriamente. Inicie sesión con una contraseña actualizada\"\n\"Please try again, The passwords do not match\": \"Inténtalo de nuevo. Las contraseñas no coinciden.\"\n\"Support Privilege removed successfully\": \"Privilegio de soporte eliminado con éxito\"\n\"Success! Saved Reply has been deleted successfully.\": \"¡Éxito! La respuesta guardada se ha eliminado correctamente.\"\n\"SwiftMailer configuration created successfully.\": \"Configuración de SwiftMailer creada con éxito.\"\n\"No swiftmailer configurations found for mailer id:\": \"No se encontraron configuraciones de swiftmailer para la identificación de correo\"\n\"Reply content cannot be left blank.\": \"El contenido de respuesta no se puede dejar en blanco.\"\n\"Reply added to the ticket and forwarded successfully.\": \"Respuesta agregada al ticket y enviada correctamente.\"\n\"Success ! Thread pinned successfully.\": \"Éxito! Hilo fijado correctamente.\"\n\"Success ! unpinned removed successfully.\": \"Éxito! desanclado eliminado con éxito.\"\n\"Unable to retrieve priority details\": \"No se pueden recuperar detalles de prioridad\"\n\"Ticket support team updated successfully\": \"El equipo de soporte de tickets se actualizó correctamente\"\n\"Ticket assigned to support group \": \"Ticket asignado al grupo de apoyo\"\n\"Mailbox configuration removed successfully.\": \"La configuración del buzón se eliminó correctamente.\"\n\"visit our website\": \"Visite nuestro sitio web\"\n\"Cookie Usage Policy\": \"Política de uso de cookies\"\n\"cookie\": \"Galleta\"\n\"cookies\": \"galletas\"\n\"HELP\": \"AYUDA\"\n\"Home\": \"Casa\"\n\"Cookie Policy\": \"Política de cookies\"\n\"Prev\": \"Anterior\"\n\"Ticket query message\": \"Mensaje de consulta de ticket\"\n\"Select type\": \"Seleccione tipo\"\n\"Search KnowledgeBase\": \"Buscar en KnowledgeBase\"\n\"You cant merge an account with itself.\": \"No puede fusionar una cuenta consigo misma\"\n\"Edit Profile\": \"Editar perfil\"\n\"Customer Login\": \"Inicio de sesión del cliente\"\n\"Contact Us\": \"Contáctenos\"\n\"If you have ever contacted our support previously, your account would have already been created.\": \"Si alguna vez ha contactado con nuestro soporte anteriormente, su cuenta ya se habría creado\"\n\"support\": \"apoyo\"\n\"HelpDesk\": \"Mesa de ayuda\"\n\"Enter search keyword\": \"Ingrese la palabra clave de búsqueda\"\n\"Browse via Folders\": \"Navegar a través de carpetas\"\n\"Looking for something that is queried generally? Choose a relevant folder from below to explore possible solutions\": \"¿Busca algo que se consulta en general? Elija una carpeta relevante de abajo para explorar posibles soluciones\"\n\"Unable to find an answer?\": \"¿No puede encontrar una respuesta?\"\n\"Looking for anything specific article which resides in general queries? Just browse the various relevant folders and categories and then you will find the desired article.\": \"¿Está buscando algo específico que resida en consultas generales? Simplemente explore las diversas carpetas y categorías relevantes y luego encontrará el artículo deseado?\"\n\"Popular Articles \": \"articulos populares\"\n\"Here are some of the most popular articles, which helped number of users to get their queries and questions resolved. \": \"Estos son algunos de los artículos más populares, que ayudaron a varios usuarios a resolver sus consultas y preguntas.\"\n\"Browse via Categories\": \"Navegar por las categorías\"\n\"Looking for something specific? Choose a relevant category from below to explore possible solutions\": \"¿Buscando algo específico? Elija una categoría relevante a continuación para explorar posibles soluciones\"\n\"No Categories Found!\": \"No se encontraron categorías\"\n\"Powered by\": \"Energizado por\"\n\"Powered by %uvdesk%, an open-source project by %webkul%.\": \"Desarrollado por %uvdesk%, un proyecto de código abierto de %webkul%.\"\n\n#forgotpassword\n\"Forgot Password\": \"Se te olvidó tu contraseña\"\n\"Enter your email address and we will send you an email with instructions to update your login credentials.\": \"Ingrese su dirección de correo electrónico y le enviaremos un correo electrónico con instrucciones para actualizar sus credenciales de inicio de sesión.\"\n\"Send Mail\": \"Enviar correo electrónico\"\n\"Status\": \"Estado\"\n\"Sign In to %websitename%\": \"Registrarse en %websitename%\"\n\"Enter your name\": \"Introduzca su nombre\"\n\"Enter your email\": \"Introduce tu correo electrónico\"\n\"Learn more about %deliveryStatus%.\": \"Aprender más sobre  %deliveryStatus%.\"\n\"To know more about how our privacy policy works, please %websiteLink%.\": \"Para más información sobre el funcionamiento de la política de confidencialidad, veuillez %websiteLink%.\"\n\"Some of our site pages utilize %cookies% and other tracking technologies. A %cookie% is a small text file that may be used, for example, to collect information about site activity. Some cookies and other technologies may serve to recall personal information previously indicated by a site user. You may block cookies, or delete existing cookies, by adjusting the appropriate setting on your browser. Please consult the %help% menu of your browser to learn how to do this. If you block or delete %cookies% you may find the usefulness of our site to be impaired.\": \"Algunas de las páginas de nuestro sitio utilizan %cookies% y otras tecnologías de seguimiento. Un %cookie% es un pequeño archivo de texto que se puede utilizar, por ejemplo, para recopilar información sobre la actividad del sitio. Algunas cookies y otras tecnologías pueden servir para recuperar información personal previamente indicada por un usuario del sitio. Puede bloquear las cookies o eliminar las cookies existentes, ajustando la configuración adecuada en su navegador. Consulte el menú %help% de su navegador para obtener información sobre cómo hacerlo. Si bloquea o elimina %cookies%, es posible que la utilidad de nuestro sitio se vea afectada.\"\n\"This field contain maximum 40 charectures.\": \"Este campo contiene un máximo de 40 correcciones.\"\n\"This field contain maximum 50 charectures.\": \"Este campo contiene un máximo de 50 correcciones.\"\n\"Time\": \"Registrado como\"\n\"Links\": \"Tu perfil\"\n\"Broadcast Message\": \"Crear Ticket\"\n\"Wide Logo\": \"Crear agente\"\n\"Upload an Image (200px x 48px) in</br> PNG or JPG Format\": \"Crear cliente\"\n\"It will be shown as Logo on Knowledgebase and Helpdesk\": \"Desconectar\"\n\"Website Status\": \"Aplicaciones\"\n\"Enable front end website and knowledgebase for customer(s)\": \"Integre aplicaciones según sus necesidades para hacer las cosas más rápido que nunca\"\n\"Brand Color\": \"Explorar aplicaciones\"\n\"Page Background Color\": \"Creador de formularios\"\n\"Header Background Color\": \"Base de conocimientos\"\n\"Banner Background Color\": \"La base de conocimiento es una fuente de información rígida y compleja que ayuda a los clientes a ayudarse a sí mismos\"\n\"Page Link Color\": \"Artículos\"\n\"Page Link Hover Color\": \"Categorias\"\n\"Article Text Color\": \"Carpetas\"\n\"Tag Line\": \"CARPETAS\"\n\"Hi! how can we help?\": \"Productividad\"\n\"Layout\": \"Automatice sus procesos creando un conjunto de reglas y ajustes preestablecidos para responder más rápido a los tickets\"\n\"Ticket Create Option\": \"Respuestas preparadas\"\n\"Login Required To Create Tickets\": \"Respuestas guardadas\"\n\"Remove Customer Login/Signin Button\": \"Tipos de entradas\"\n\"Disable Customer Login\": \"Flujos de trabajo\"\n\"Meta Description (Recommended)\": \"Configuraciones\"\n\"Meta Keywords (Recommended)\": \"Administre su identidad de marca, información de la empresa y otros detalles de un vistazo\"\n\"Header Link\": \"Marca\"\n'URL (with http\":/\"/ or https://)': 'Campos Personalizados'\n\"Footer Link\": \"Ajustes del correo electrónico\"\n\"Custom CSS (Optional)\": \"Plantillas de correo electrónico\"\n\"It will be add to the frontend knowledgebase only\": \"Buzón\"\n\"Custom Javascript (Optional)\": \"Configuración de spam\"\n\"Broadcast message content to show on helpdesk\": \"Swift Mailer\"\n\"From\": \"Etiquetas\"\n\"Time duration between which message will be displayed(if applicable)\": \"Los usuarios\"\n\"Broadcasting Status\": \"Controle sus grupos, equipos, agentes y clientes\"\n\"Broadcasting is Active\": \"Agentes\"\n\"Choose a default company timezone\": \"Clientes\"\n\"Date Time Format\": \"Grupos\"\n\"Choose a format to convert date to specified date time format\": \"Privilegios\"\n\"An empty file is not allowed.\": \"Equipos\"\n\"File size must not be greater than 200KB !!\": \"Aplicaciones\"\n\"Please upload valid Image file (Only JPEG, JPG, PNG allowed)!!\": \"Sincronización de pedidos de comercio electrónico\"\n'comma \",\" separated': 'Coma \",\" separado'\n\"Provide a valid url(with protocol)\": \"Importar detalles de pedidos de comercio electrónico a sus tickets de soporte desde diferentes plataformas disponibles\"\n\"Low\": \"Bajo\"\n\"Medium\": \"Medio\"\n\"High\": \"Alto\"\n\"Urgent\": \"Urgente\"\n\"Reset Password\": \"Restablecer la contraseña\"\n\"Enter your new password below to update your login credentials\": \"Ingrese su nueva contraseña a continuación para actualizar sus credenciales de inicio de sesión\"\n\"Save Password\": \"Guardar contraseña\"\n\"Rate Support\": \"Soporte de tarifas\"\n\"I am very Sad\": \"Estoy muy triste\"\n\"I am Sad\": \"Estoy triste\"\n\"I am Neutral\": \"Soy neutral\"\n\"I am Happy\": \"Yo estoy feliz\"\n\"I am Very Happy\": \"Estoy muy feliz\"\n\"Kudos\": \"Prestigio\"\n\"kudos\": \"Prestigio\"\n\"Very Sad\": \"Muy triste\"\n\"Sad\": \"Triste\"\n\"Neutral\": \"Neutral\"\n\"Happy\": \"Contenta\"\n\"Very Happy\": \"Muy feliz\"\n\"Star(s)\": \"Estrellas\"\n\"Warning ! Swiftmailer not working. An error has occurred while sending emails!\" : \"Advertencia ! Swiftmailer no funciona. ¡Se produjo un error al enviar correos electrónicos!\"\n\"Invalid credentials.\": \"Credenciales no válidas\"\n\"Success ! Project cache cleared successfully.\": \"Éxito ! La caché del proyecto se borró correctamente.\"\n\"clear cache\": \"limpiar cache\"\n\"Last Updated\": \"Última actualización\"\n\"Error! Something went wrong.\": \"¡Error! Algo salió mal.\"\n\"We were not able to find the page you are looking for.\": \"No pudimos encontrar la página que busca.\"\n\"Page not found\": \"Página no encontrada\"\n\"Forbidden\": \"Prohibido\"\n\"You don’t have the necessary permissions to access this Web page :(\": \"No tiene los permisos necesarios para acceder a esta página web :(\"\n\"Internal server error\": \"Error de servidor interno\"\n\"Our system has goofed up for a while, but good part is it won't last long\": \"Nuestro sistema ha fallado por un tiempo, pero lo bueno es que no durará mucho\"\n\"Unknown Error\": \"Error desconocido\"\n\"We are quite confused about how did you land here:/\": \"Estamos bastante confundidas sobre cómo aterrizaste aquí :/\"\n\"Few of the links which may help you to get back on the track -\": \"Algunos de los enlaces que pueden ayudarlo a volver a la pista:\"\n\n#Microsoft apps:\n\"Microsoft Apps\": \"Aplicaciones de Microsoft\"\n\"Add a Microsoft app\": \"Agregar una aplicación de Microsoft\"\n\"Enable\": \"Activado\"\n\"App Name\": \"Nombre de la aplicación\"\n\"Tenant Id\": \"Identificación del inquilino\"\n\"Client Id\": \"Identificación del cliente\"\n\"Client Secret\": \"Secreto del cliente\"\n\"NEW APP\": \"NUEVA APLICACIÓN\"\n\"UPDATE APP\": \"ACTUALIZAR APLICACIÓN\"\n\"Guide on creating a new app in Azure Active Directory:\": \"Guía sobre cómo crear una nueva aplicación en Azure Active Directory:\"\n\"To add a new Microsoft App to your azure active directory, follow the steps as given below:\": \"Para agregar una nueva aplicación de Microsoft a su directorio activo de Azure, siga los pasos que se indican a continuación:\"\n\"Go to Azure Active Directory -> App registerations\": \"Vaya a Azure Active Directory -> Registros de aplicaciones\"\n\"Disable\": \"Deshabilitar\"\n\"Please enter a valid name for your app.\": \"Introduzca un nombre válido para su aplicación.\"\n\"Please enter a valid tenant id.\": \"Ingrese una identificación de inquilino válida.\"\n\"Please enter a valid client id.\": \"Ingrese una identificación de cliente válida.\"\n\"Please enter a valid client secret.\": \"Introduzca un secreto de cliente válido.\"\n\"Microsoft app settings\": \"Configuración de la aplicación de Microsoft\"\n\"Unverified\": \"Inconfirmado\"\n\"Microsoft app has been updated successfully.\": \"La aplicación de Microsoft se ha actualizado correctamente.\"\n\"No microsoft apps found\": \"No se encontraron aplicaciones de Microsoft\"\n\"Microsoft app settings could not be verifired successfully. Please check your settings and try again later.\": \"La configuración de la aplicación de Microsoft no se pudo verificar correctamente. Verifique su configuración y vuelva a intentarlo más tarde.\"\n\"Microsoft app has been integrated successfully.\": \"La aplicación de Microsoft se ha eliminado correctamente.\"\n\"Microsoft app has been deleted successfully.\": \"La aplicación de Microsoft se ha integrado correctamente.\"\n\"Verified\": \"Verificado\"\n\n\"Create a New Registration\": \"Crear un nuevo registro\"\n\"Enter your app details as following:\": \"Ingrese los detalles de su aplicación de la siguiente manera:\"\n\"App Name: Enter an app name to easily help you identify its purpose\": \"Nombre de la aplicación: ingrese un nombre de aplicación para ayudarlo a identificar fácilmente su propósito\"\n\"Supported Account Types: Select whichever option works the best for you (Recommended: Accounts in any organizational directory and personal Microsoft accounts)\": \"Tipos de cuenta admitidos: seleccione la opción que mejor se adapte a sus necesidades (recomendado: cuentas en cualquier directorio de la organización y cuentas personales de Microsoft)\"\n\"Redirect URI:\": \"URI de redirección:\"\n\"Select Platform: Web\": \"Seleccione Plataforma: Web\"\n\"Enter the following redirect uri:\": \"Introduzca el siguiente uri de redirección:\"\n\"Proceed to create your application\": \"Procede a crear tu aplicación\"\n\"Once your app has been created, in your app overview section, continue with adding a client credential by clicking on \\\"Add a certificate or secret\\\"\": \"Una vez que se haya creado su aplicación, en la sección de descripción general de su aplicación, continúe agregando una credencial de cliente haciendo clic en Agregar un certificado o secreto\"\n\"Create a new client secret\": \"Crear un nuevo secreto de cliente\"\n\"Enter a description as per your preference to help identify the purpose of this client secret\": \"Ingrese una descripción según su preferencia para ayudar a identificar el propósito de este secreto de cliente\"\n\"Choose an expiration time as per your preference\": \"Elija un tiempo de caducidad según su preferencia\"\n\"Proceed to add your client secret\": \"Proceda a agregar su secreto de cliente\"\n\"Copy the client secret value which will be needed later and cannot be viewed again\": \"Copie el valor del secreto del cliente que se necesitará más adelante y no se puede volver a ver\"\n\"Navigate to API permissions\": \"Navegue a los permisos de la API\"\n\"Click on \\\"Add a permission\\\" to add a new api permission. Add the following delegated permissions by selecting Microsoft APIs > Microsoft Graph > Delegate Permissions\": \"Haga clic en Agregar un permiso para agregar un nuevo permiso de API. Agregue los siguientes permisos delegados seleccionando API de Microsoft > Microsoft Graph > Permisos delegados\"\n\"Navigate to your app overview section\": \"Vaya a la sección de descripción general de su aplicación\"\n\"Copy the Application (Client) Id\": \"Copie la identificación de la aplicación (cliente)\"\n\"Copy the Directory (Tenant) Id\": \"Copie la identificación del directorio (inquilino)\"\n\"Enter your client id, tenant id, and client secret in settings above as required.\": \"Ingrese su identificación de cliente, identificación de inquilino y secreto de cliente en la configuración anterior según sea necesario.\"\n\"offline_access\": \"acceso_sin_conexión\"\n\"openid\": \"abierto\"\n\"profile\": \"perfil\"\n\"User.Read\": \"Usuario.Leer\"\n\"IMAP.AccessAsUser.All\": \"IMAP.AccessAsUser.All\"\n\"SMTP.Send\": \"SMTP.Enviar\"\n\"POP.AccessAsUser.All\": \"POP.AccessAsUser.All\"\n\"Mail.Read\": \"Correo.Leer\"\n\"Mail.ReadBasic\": \"Mail.ReadBasic\"\n\"Mail.Send\": \"Correo.Enviar\"\n\"Mail.Send.Shared\": \"Correo.Enviar.Compartido\"\n\"Add App\": \"Agregar aplicación\"\n\"New App\": \"NUEVA APLICACIÓN\"\n\n#Mailbox option:\n\"Disable email delivery\": \"Deshabilitar la entrega de correo electrónico\"\n\"Use as default mailbox for sending emails\": \"Usar como buzón de correo predeterminado para enviar correos electrónicos\"\n\"Inbound Emails\": \"Correos electrónicos entrantes\"\n\"Manage how you wish to retrieve and process emails from your mailbox.\": \"Administre cómo desea recuperar y procesar los correos electrónicos de su buzón.\"\n\"Outbound Emails\": \"Correos electrónicos salientes\"\n\"Manage how you wish to send emails from your mailbox.\": \"Administre cómo desea enviar correos electrónicos desde su buzón.\"\n\n\"Marketing Modules\" : \"Módulos de marketing\"\n\"New Marketing Module\": \"Nuevo módulo de marketing\"\n\"Marketing Module\": \"Módulo de Mercadotecnia\""
  },
  {
    "path": "translations/messages.fr.yml",
    "content": "\"Signed in as\": \"Connecté en tant que\"\n\"Your Profile\": \"Votre profil\"\n\"Create Ticket\": \"Créer un ticket\"\n\"Create Agent\": \"Créer un agent\"\n\"Create Customer\": \"Créer un client\"\n\"Sign Out\": \"Déconnexion\"\n\"Default Language (Optional)\": \"Langue par défaut (facultatif)\"\n\"Swift Mailer ID\": \"ID d'expéditeur rapide\"\n\"Username/Email\": \"Nom d'utilisateur/Email\"\n\"create new\": \"créer un nouveau\"\n\"Howdy!\": \"Salut!\"\n\"Ticket Information\": \"Informations sur les tickets\"\n\"CC/BCC\": \"CC/BCC\"\n\"Success! Label created successfully.\": \"Étiquette créée avec succès.\"\n\"Success! Label removed successfully.\": \" Étiquette supprimée avec succès.\"\n\"Reports\": \"Rapports\"\n\"Rating\": \"Évaluation\"\n\"Kudos Rating\": \"Évaluation des appréciations\"\n\"Choose your default timeformat\": \"Choisissez votre format d'heure par défaut\"\n\"Remove profile picture\": \"Supprimer la photo de profil\"\n\"Success ! Profile updated successfully.\": \"Succès ! Mise à jour du profil réussie.\"\n\"Howdy\": \"Salut\"\n\"Form successfully updated.\": \"Formulaire mis à jour avec succès.\"\n\"NEW FORM\": \"NOUVEAU FORMULAIRE\"\n\"Text Box\": \"Zone de texte\"\n\"Text Area\": \"Zone de texte\"\n\"Select\": \"Sélectionner\"\n\"Radio\": \"Radio\"\n\"Checkbox\": \"Case à cocher\"\n\"Date\": \"Date\"\n\"Both Date and Time\": \"Date et heure\"\n\"Choose a status\": \"Choisissez un statut\"\n\"Choose a group\": \"Choisissez un groupe\"\n\"Can manage Group's Saved Reply\": \"Peut gérer la réponse enregistrée du groupe\"\n\"Can manage agent activity\": \"Peut gérer l'activité des agents\"\n\"Slug is the url identity of this article. We will help you to create valid slug at time of typing.\": \"Slug est l'identité URL de cet article. Nous vous aiderons à créer un slug valide au moment de la saisie.\"\n\"The URL for this article\": \"L'URL de cet article\"\n\"Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A page's title tag and meta description are usually shown whenever that page appears in search engine results\": \"Les balises de titre et les méta descriptions sont des morceaux de code HTML dans l'en-tête d'une page Web. Ils aident les moteurs de recherche à comprendre le contenu d'une page. La balise de titre et la méta description d'une page sont généralement affichées chaque fois que cette page apparaît dans les résultats des moteurs de recherche.\"\n\"comma separated (,)\": \"séparées par des virgules (,)\"\n\"Article Title\": \"Le titre de l'article\"\n\"Start typing few charactors and add set of relevant article from the list\": \"Commencez à taper quelques caractères et ajoutez un ensemble d'articles pertinents dans la liste\"\n\"Success! Announcement data saved successfully.\": \"Succès! Les données d'annonce ont été enregistrées avec succès.\"\n\"Success! Category has been added successfully.\": \"Succès! La catégorie a été ajoutée avec succès.\"\n\"Success ! Agent added successfully.\": \"Succès ! Agent ajouté avec succès.\"\n\"Success! Privilege information saved successfully.\": \"Succès! Les informations de privilège ont été enregistrées avec succès.\"\n\"Edit Prepared Response\": \"Modifier la réponse préparée\"\n\"Success! Type removed successfully.\": \"Succès! Type supprimé avec succès.\"\n\"No results available\": \"Aucun résultat disponible\"\n\"Success ! Prepared Response applied successfully.\": \"Succès ! Réponse préparée appliquée avec succès.\"\n\"Note added to ticket successfully.\": \"Remarque ajoutée au ticket avec succès.\"\n\"Ticket status update to Spam\": \"Mise à jour du statut du ticket vers le spam\"\n\"Ticket status update to Closed\": \"Mise à jour du statut du ticket sur Fermé\"\n\"Success! Label updated successfully.\": \"Succès! Libellé mis à jour avec succès.\"\n\"Success ! Helpdesk details saved successfully\": \"Succès ! Détails du service d'assistance enregistrés avec succès\"\n\"Can manage marketing announcement\": \"Peut gérer l'annonce marketing\"\n\"User Forgot Password\": \"L'utilisateur a oublié le mot de passe\"\n\"Agent Deleted\": \"Agent supprimé\"\n\"Agent Update\": \"Mise à jour des agents\"\n\"Customer Update\": \"Mise à jour client\"\n\"Customer Deleted\": \"Client supprimé\"\n\"Agent Updated\": \"Agent mis à jour\"\n\"Agent Reply\": \"Réponse de l'agent\"\n\"Collaborator Added\": \"Collaborateur ajouté\"\n\"Collaborator Reply\": \"Réponse du collaborateur\"\n\"Customer Reply\": \"Réponse du client\"\n\"Ticket Deleted\": \"Ticket supprimé\"\n\"Group Updated\": \"Groupe mis à jour\"\n\"Note Added\": \"Remarque ajoutée\"\n\"Priority Updated\": \"Priorité mise à jour\"\n\"Status Updated\": \"Statut mis à jour\"\n\"Team Updated\": \"Équipe mise à jour\"\n\"Thread Updated\": \"Sujet mis à jour\"\n\"Type Updated\": \"Type mis à jour\"\n\"From Email\": \"De l'email\"\n\"To Email\": \"Envoyer un email\"\n\"Is Equal To\": \"Est égal à\"\n\"Is Not Equal To\": \"n'est pas égal à\"\n\"Contains\": \"Contient\"\n\"Does Not Contain\": \"Ne contient pas\"\n\"Starts With\": \"Commence avec\"\n\"Ends With\": \"Se termine par\"\n\"Before On\": \"Avant le\"\n\"After On\": \"Après le\"\n\"Mail To User\": \"Courrier à l'utilisateur\"\n\"Permanently delete from Inbox\": \"Supprimer définitivement de la boîte de réception\"\n\"Transfer Tickets\": \"Tickets de transfert\"\n\"Agent Activity\": \"Activité de l'agent\"\n\"Report From\": \"Rapport de\"\n\"Search Agent\": \"Agent de recherche\"\n\"Agent Last Reply\": \"Dernière réponse de l'agent\"\n\"View analytics and insights to serve a better experience for your customers\": \"Affichez des analyses et des informations pour offrir une meilleure expérience à vos clients\"\n\"Marketing Announcement\": \"Annonce marketing\"\n\"Advertisement\": \"Publicité\"\n\"Announcement\": \"Annonce\"\n\"New Announcement\": \"Nouvelle annonce\"\n\"Add Announcement\": \"Ajouter une annonce\"\n\"Edit Announcement\": \"Modifier l'annonce\"\n\"Promo Text\": \"Texte promotionnel\"\n\"Promo Tag\": \"Balise promotionnelle\"\n\"Choose a promo tag\": \"Choisissez un tag promotionnel\"\n\"Tag-Color\": \"Couleur de l'étiquette\"\n\"Tag background color\": \"Couleur d'arrière-plan de l'étiquette\"\n\"Link Text\": \"Texte du lien\"\n\"Link URL\": \"URL du lien\"\n\"Apps\": \"Applications\"\n\"Integrate apps as per your needs to get things done faster than ever\": \" Installez de nouvelles applications personnalisées pour booster votre productivité – <a href='https://store.webkul.com/UVdesk/UVdesk-Open-Source.html' style='font-weight: bold' target='_blank'>Explorer maintenant</a>\"\n\"Explore Apps\": \"Explorer les applications\"\n\"Form Builder\": \"Générateur de formulaires\"\n\"Knowledgebase\": \"Base de connaissances\"\n\"Knowledgebase is a source of rigid and complex information which helps Customers to help themselves\": \"La base de connaissances est une source d'informations rigides et complexes qui aide les clients à s'aider eux-mêmes\"\n\"Articles\": \"Articles\"\n\"Categories\": \"Catégories\"\n\"Folders\": \"Dossiers\"\n\"FOLDERS\": \"DOSSIERS\"\n\"Productivity\": \"Productivité\"\n\"Automate your processes by creating set of rules and presets to respond faster to the tickets\": \"Automatisez vos processus en créant un ensemble de règles et de préréglages pour répondre plus rapidement aux tickets\"\n\"Prepared Responses\": \"Réponses préparées\"\n\"Saved Replies\": \"Réponses enregistrées\"\n\"Edit Saved Reply\": \"Modifier la réponse enregistrée\"\n\"Ticket Types\": \"Types de tickets\"\n\"Workflows\": \"Flux de travail\"\n\"Settings\": \"Paramètres\"\n\"Manage your Brand Identity, Company Information and other details at a glance\": \"Gérez l'identité de votre marque, les informations sur votre entreprise et d'autres détails en un coup d'œil\"\n\"Branding\": \"Image de marque\"\n\"Custom Fields\": \"Les champs personnalisés\"\n\"Email Settings\": \"Paramètres de messagerie\"\n\"Email Templates\": \"Modèles de courrier électronique\"\n\"Mailbox\": \"Boites aux lettres\"\n\"Spam Settings\": \"Paramètres de spam\"\n\"Swift Mailer\": \"Swift Mailer\"\n\"Tags\": \"Mots clés\"\n\"Users\": \"Utilisateurs\"\n\"Control your Groups, Teams, Agents and Customers\": \"Contrôlez vos groupes, équipes, agents et clients\"\n\"Agents\": \"Agents\"\n\"Customers\": \"Les clients\"\n\"Groups\": \"Groupes\"\n\"Privileges\": \"Privilèges\"\n\"Teams\": \"Equipes\"\n\"Applications\": \"Applications\"\n\"ECommerce Order Syncronization\": \"Synchronisation des commandes de commerce électronique\"\n\"Import ecommerce order details to your support tickets from different available platforms\": \"Importer les détails de la commande de commerce électronique sur vos tickets de support depuis différentes plates-formes disponibles\"\n\"Search\": \"Rechercher\"\n\"Sort By\": \"Trier par\"\n\"Sort By:\": \"Trier par:\"\n\"Status\": \"Statut\"\n\"Created At\": \"Créé à\"\n\"Name\": \"Nom\"\n\"All\": \"Tout\"\n\"Published\": \"Publié\"\n\"Draft\": \"Brouillon\"\n\"New Folder\": \"Nouveau dossier\"\n\"Create Knowledgebase Folder\": \"Créer un dossier de base de connaissances\"\n\"You did not add any folder to your Knowledgebase yet, Create your first Folder and start adding Categories/Articles to make your customers help themselves.\": \"Vous navez pas encore ajouté de dossier à votre base de connaissances. Créez votre premier dossier et commencez à ajouter des catégories / articles pour que vos clients se servent eux-mêmes.\"\n\"Clear Filters\": \"Effacer les filtres\"\n\"Back\": \"Retour\"\n\"Open\": \"Ouvert\"\n\"Pending\": \"En attente\"\n\"Answered\": \"Répondu\"\n\"Resolved\": \"Résolu\"\n\"Closed\": \"Fermé\"\n\"Spam\": \"Spam\"\n\"New\": \"Nouveau\"\n\"UnAssigned\": \"Non attribué\"\n\"UnAnswered\": \"Sans réponse\"\n\"My Tickets\": \"Mes tickets\"\n\"Starred\": \"Favoris\"\n\"Trashed\": \"Corbeille\"\n\"New Label\": \"Nouvelle étiquette\"\n\"Tickets\": \"Tickets\"\n\"Ticket Id\": \"ID de tickets\"\n\"Last Replied\": \"Dernière réponse\"\n\"Assign To\": \"Affectation\"\n\"After Reply\": \"Après réponse\"\n\"Customer Email\": \"Email client\"\n\"Customer Name\": \"Nom du client\"\n\"Assets Visibility\": \"Afficher\"\n\"Channel/Source\": \"Canal / Origine\"\n\"Channel\": \"Canal\"\n\"Website\": \"Site Internet\"\n\"Timestamp\": \"Horodatage\"\n\"TimeStamp\": \"Horodatage\"\n\"Team\": \"Équipe\"\n\"Type\": \"Type\"\n\"Replies\": \"Réponses\"\n\"Agent\": \"Agent\"\n\"ID\": \"ID\"\n\"Subject\": \"Sujet\"\n\"Last Reply\": \"Dernière réponse\"\n\"Filter View\": \"Filtres\"\n\"Please select CAPTCHA\": \"Veuillez sélectionner CAPTCHA\"\n\"Warning ! Please select correct CAPTCHA !\": \"Avertissement! Veuillez sélectionner le bon CAPTCHA!\"\n\"reCAPTCHA Setting\": \"Réglage reCAPTCHA\"\n\"reCAPTCHA Site Key\": \"reCAPTCHA Site Key\"\n\"reCAPTCHA Secret key\": \"Clé secrète reCAPTCHA\"\n\"reCAPTCHA Status\": \"Statut de reCAPTCHA\"\n\"reCAPTCHA is Active\": \"reCAPTCHA est actif\"\n\"Save set of filters as a preset to stay more productive\": \"Enregistrer un ensemble de filtres en tant que préréglage pour rester plus productif\"\n\"Saved Filters\": \"Filtres enregistrés\"\n\"No saved filter created\": \"Aucun filtre enregistré créé\"\n\"Customer\": \"Client\"\n\"Priority\": \"Priorité\"\n\"Tag\": \"Étiquette\"\n\"Source\": \"Origine\"\n\"Before\": \"Avant\"\n\"After\": \"Après\"\n\"Replies less than\": \"Réponses inférieures à\"\n\"Replies more than\": \"Réponses supérieures à\"\n\"Clear All\": \"Tout effacer\"\n\"Account\": \"Compte\"\n\"Profile\": \"Profil\"\n\"Upload a Profile Image (100px x 100px)<br> in PNG or JPG Format\": \"Télécharger une image de profil (100px x 100px) <br> au format PNG ou JPG\"\n\"First Name\": \"Prénom\"\n\"Last Name\": \"Nom\"\n\"Email\": \"Email\"\n\"Contact Number\": \"Téléphone\"\n\"Timezone\": \"Fuseau horaire\"\n\"Africa/Abidjan\": \"Africa / Abidjan\"\n\"Africa/Accra\": \"Afrique / Accra\"\n\"Africa/Addis_Ababa\": \"Africa / Addis_Ababa\"\n\"Africa/Algiers\": \"Afrique / Alger\"\n\"Africa/Asmara\": \"Africa / Asmara\"\n\"Africa/Bamako\": \"Afrique / Bamako\"\n\"Africa/Bangui\": \"Africa / Bangui\"\n\"Africa/Banjul\": \"Africa / Banjul\"\n\"Africa/Bissau\": \"Afrique / Bissau\"\n\"Africa/Blantyre\": \"Africa / Blantyre\"\n\"Africa/Brazzaville\": \"Africa / Brazzaville\"\n\"Africa/Bujumbura\": \"Africa / Bujumbura\"\n\"Africa/Cairo\": \"Afrique / Caire\"\n\"Africa/Casablanca\": \"Afrique / Casablanca\"\n\"Africa/Ceuta\": \"Africa / Ceuta\"\n\"Africa/Conakry\": \"Africa / Conakry\"\n\"Africa/Dakar\": \"Afrique / Dakar\"\n\"Africa/Dar_es_Salaam\": \"Africa / Dar_es_Salaam\"\n\"Africa/Djibouti\": \"Afrique / Djibouti\"\n\"Africa/Douala\": \"Africa / Douala\"\n\"Africa/El_Aaiun\": \"Africa / El_Aaiun\"\n\"Africa/Freetown\": \"Africa / Freetown\"\n\"Africa/Gaborone\": \"Africa / Gaborone\"\n\"Africa/Harare\": \"Afrique / Harare\"\n\"Africa/Johannesburg\": \"Afrique / Johannesburg\"\n\"Africa/Juba\": \"Africa / Juba\"\n\"Africa/Kampala\": \"Africa / Kampala\"\n\"Africa/Khartoum\": \"Africa / Khartoum\"\n\"Africa/Kigali\": \"Africa / Kigali\"\n\"Africa/Kinshasa\": \"Africa / Kinshasa\"\n\"Africa/Lagos\": \"Africa / Lagos\"\n\"Africa/Libreville\": \"Africa / Libreville\"\n\"Africa/Lome\": \"Afrique / Lomé\"\n\"Africa/Luanda\": \"Africa / Luanda\"\n\"Africa/Lubumbashi\": \"Africa / Lubumbashi\"\n\"Africa/Lusaka\": \"Africa / Lusaka\"\n\"Africa/Malabo\": \"Africa / Malabo\"\n\"Africa/Maputo\": \"Africa / Maputo\"\n\"Africa/Maseru\": \"Africa / Maseru\"\n\"Africa/Mbabane\": \"Africa / Mbabane\"\n\"Africa/Mogadishu\": \"Africa / Mogadishu\"\n\"Africa/Monrovia\": \"Africa / Monrovia\"\n\"Africa/Nairobi\": \"Africa / Nairobi\"\n\"Africa/Ndjamena\": \"Africa / Ndjamena\"\n\"Africa/Niamey\": \"Africa / Niamey\"\n\"Africa/Nouakchott\": \"Africa / Nouakchott\"\n\"Africa/Ouagadougou\": \"Africa / Ouagadougou\"\n\"Africa/Porto-Novo\": \"Africa / Porto-Novo\"\n\"Africa/Sao_Tome\": \"Africa / Sao_Tome\"\n\"Africa/Tripoli\": \"Africa / Tripoli\"\n\"Africa/Tunis\": \"Afrique / Tunis\"\n\"Africa/Windhoek\": \"Africa / Windhoek\"\n\"America/Adak\": \"America / Adak\"\n\"America/Anchorage\": \"America / Anchorage\"\n\"America/Anguilla\": \"America / Anguilla\"\n\"America/Antigua\": \"America / Antigua\"\n\"America/Araguaina\": \"America / Araguaina\"\n\"America/Argentina/Buenos_Aires\": \"Amérique / Argentine / Buenos_Aires\"\n\"America/Argentina/Catamarca\": \"Amérique / Argentine / Catamarca\"\n\"America/Argentina/Cordoba\": \"Amérique / Argentine / Cordoba\"\n\"America/Argentina/Jujuy\": \"Amérique / Argentine / Jujuy\"\n\"America/Argentina/La_Rioja\": \"America / Argentina / La_Rioja\"\n\"America/Argentina/Mendoza\": \"Amérique / Argentine / Mendoza\"\n\"America/Argentina/Rio_Gallegos\": \"Amérique / Argentine / Rio_Gallegos\"\n\"America/Argentina/Salta\": \"Amérique / Argentine / Salta\"\n\"America/Argentina/San_Juan\": \"Amérique / Argentine / San Juan\"\n\"America/Argentina/San_Luis\": \"Amérique / Argentine / San_Luis\"\n\"America/Argentina/Tucuman\": \"Amérique / Argentine / Tucuman\"\n\"America/Argentina/Ushuaia\": \"Amérique / Argentine / Ushuaia\"\n\"America/Aruba\": \"America / Aruba\"\n\"America/Asuncion\": \"America / Asuncion\"\n\"America/Atikokan\": \"America / Atikokan\"\n\"America/Bahia\": \"America / Bahia\"\n\"America/Bahia_Banderas\": \"America / Bahia_Banderas\"\n\"America/Barbados\": \"Amérique / Barbade\"\n\"America/Belem\": \"America / Belem\"\n\"America/Belize\": \"Amérique / Belize\"\n\"America/Blanc-Sablon\": \"America / Blanc-Sablon\"\n\"America/Boa_Vista\": \"America / Boa_Vista\"\n\"America/Bogota\": \"America / Bogota\"\n\"America/Boise\": \"America / Boise\"\n\"America/Cambridge_Bay\": \"America / Cambridge_Bay\"\n\"America/Campo_Grande\": \"America / Campo_Grande\"\n\"America/Cancun\": \"America / Cancun\"\n\"America/Caracas\": \"America / Caracas\"\n\"America/Cayenne\": \"America / Cayenne\"\n\"America/Cayman\": \"America / Cayman\"\n\"America/Chicago\": \"America / Chicago\"\n\"America/Chihuahua\": \"America / Chihuahua\"\n\"America/Costa_Rica\": \"Amérique / Costa_Rica\"\n\"America/Creston\": \"America / Creston\"\n\"America/Cuiaba\": \"America / Cuiaba\"\n\"America/Curacao\": \"America / Curaçao\"\n\"America/Danmarkshavn\": \"America / Danmarkshavn\"\n\"America/Dawson\": \"America / Dawson\"\n\"America/Dawson_Creek\": \"America / Dawson_Creek\"\n\"America/Denver\": \"America / Denver\"\n\"America/Detroit\": \"America / Detroit\"\n\"America/Dominica\": \"Amérique / Dominique\"\n\"America/Edmonton\": \"America / Edmonton\"\n\"America/Eirunepe\": \"America / Eirunepe\"\n\"America/El_Salvador\": \"America / El_Salvador\"\n\"America/Fort_Nelson\": \"America / Fort_Nelson\"\n\"America/Fortaleza\": \"America / Fortaleza\"\n\"America/Glace_Bay\": \"America / Glace_Bay\"\n\"America/Godthab\": \"America / Godthab\"\n\"America/Goose_Bay\": \"America / Goose_Bay\"\n\"America/Grand_Turk\": \"America / Grand_Turk\"\n\"America/Grenada\": \"Amérique / Grenade\"\n\"America/Guadeloupe\": \"Amérique / Guadeloupe\"\n\"America/Guatemala\": \"Amérique / Guatemala\"\n\"America/Guayaquil\": \"America / Guayaquil\"\n\"America/Guyana\": \"America / Guyana\"\n\"America/Halifax\": \"America / Halifax\"\n\"America/Havana\": \"America / Havana\"\n\"America/Hermosillo\": \"America / Hermosillo\"\n\"America/Indiana/Indianapolis\": \"America / Indiana / Indianapolis\"\n\"America/Indiana/Knox\": \"America / Indiana / Knox\"\n\"America/Indiana/Marengo\": \"America / Indiana / Marengo\"\n\"America/Indiana/Petersburg\": \"America / Indiana / Petersburg\"\n\"America/Indiana/Tell_City\": \"America / Indiana / Tell_City\"\n\"America/Indiana/Vevay\": \"America / Indiana / Vevay\"\n\"America/Indiana/Vincennes\": \"America / Indiana / Vincennes\"\n\"America/Indiana/Winamac\": \"America / Indiana / Winamac\"\n\"America/Inuvik\": \"America / Inuvik\"\n\"America/Iqaluit\": \"America / Iqaluit\"\n\"America/Jamaica\": \"America / Jamaica\"\n\"America/Juneau\": \"America / Juneau\"\n\"America/Kentucky/Louisville\": \"America / Kentucky / Louisville\"\n\"America/Kentucky/Monticello\": \"America / Kentucky / Monticello\"\n\"America/Kralendijk\": \"America / Kralendijk\"\n\"America/La_Paz\": \"America / La_Paz\"\n\"America/Lima\": \"America / Lima\"\n\"America/Los_Angeles\": \"America / Los_Angeles\"\n\"America/Lower_Princes\": \"America / Lower_Princes\"\n\"America/Maceio\": \"America / Maceio\"\n\"America/Managua\": \"America / Managua\"\n\"America/Manaus\": \"America / Manaus\"\n\"America/Marigot\": \"America / Marigot\"\n\"America/Martinique\": \"Amérique / Martinique\"\n\"America/Matamoros\": \"Amérique / Matamoros\"\n\"America/Mazatlan\": \"America / Mazatlan\"\n\"America/Menominee\": \"America / Menominee\"\n\"America/Merida\": \"America / Merida\"\n\"America/Metlakatla\": \"America / Metlakatla\"\n\"America/Mexico_City\": \"America / Mexico_City\"\n\"America/Miquelon\": \"America / Miquelon\"\n\"America/Moncton\": \"America / Moncton\"\n\"America/Monterrey\": \"America / Monterrey\"\n\"America/Montevideo\": \"America / Montevideo\"\n\"America/Montserrat\": \"America / Montserrat\"\n\"America/Nassau\": \"America / Nassau\"\n\"America/New_York\": \"America / New_York\"\n\"America/Nipigon\": \"America / Nipigon\"\n\"America/Nome\": \"America / Nome\"\n\"America/Noronha\": \"America / Noronha\"\n\"America/North_Dakota/Beulah\": \"Amérique / Dakota du Nord / Beulah\"\n\"America/North_Dakota\": \"America / North_Dakota\"\n\"America/Ojinaga\": \"America / Ojinaga\"\n\"America/Panama\": \"America / Panama\"\n\"America/Pangnirtung\": \"America / Pangnirtung\"\n\"America/Paramaribo\": \"America / Paramaribo\"\n\"America/Phoenix\": \"America / Phoenix\"\n\"America/Port-au-Prince\": \"America / Port-au-Prince\"\n\"America/Port_of_Spain\": \"America / Port_of_Spain\"\n\"America/Porto_Velho\": \"America / Porto_Velho\"\n\"America/Puerto_Rico\": \"America / Puerto_Rico\"\n\"America/Punta_Arenas\": \"America / Punta_Arenas\"\n\"America/Rainy_River\": \"America / Rainy_River\"\n\"America/Rankin_Inlet\": \"America / Rankin_Inlet\"\n\"America/Recife\": \"America / Recife\"\n\"America/Regina\": \"America / Regina\"\n\"America/Resolute\": \"America / Resolute\"\n\"America/Rio_Branco\": \"America / Rio_Branco\"\n\"America/Santarem\": \"America / Santarem\"\n\"America/Santiago\": \"America / Santiago\"\n\"America/Santo_Domingo\": \"America / Santo_Domingo\"\n\"America/Sao_Paulo\": \"America / Sao_Paulo\"\n\"America/Scoresbysund\": \"America / Scoresbysund\"\n\"America/Sitka\": \"America / Sitka\"\n\"America/St_Barthelemy\": \"America / St_Barthelemy\"\n\"America/St_Johns\": \"America / St_Johns\"\n\"America/St_Kitts\": \"America / St_Kitts\"\n\"America/St_Lucia\": \"America / St_Lucia\"\n\"America/St_Thomas\": \"America / St_Thomas\"\n\"America/St_Vincent\": \"America / St_Vincent\"\n\"America/Swift_Current\": \"America / Swift_Current\"\n\"America/Tegucigalpa\": \"America / Tegucigalpa\"\n\"America/Thule\": \"America / Thule\"\n\"America/Thunder_Bay\": \"America / Thunder_Bay\"\n\"America/Tijuana\": \"America / Tijuana\"\n\"America/Toronto\": \"America / Toronto\"\n\"America/Tortola\": \"America / Tortola\"\n\"America/Vancouver\": \"America / Vancouver\"\n\"America/Whitehorse\": \"America / Whitehorse\"\n\"America/Winnipeg\": \"America / Winnipeg\"\n\"America/Yakutat\": \"America / Yakutat\"\n\"America/Yellowknife\": \"Amérique / Yellowknife\"\n\"Antarctica/Casey\": \"Antarctique / Casey\"\n\"Antarctica/Davis\": \"Antarctique / Davis\"\n\"Antarctica/DumontDUrville\": \"Antarctique / DumontDUrville\"\n\"Antarctica/Macquarie\": \"Antarctique / Macquarie\"\n\"Antarctica/McMurdo\": \"Antarctique / McMurdo\"\n\"Antarctica/Mawson\": \"Antarctique / Mawson\"\n\"Antarctica/Palmer\": \"Antarctique / Palmer\"\n\"Antarctica/Rothera\": \"Antarctique / Rothera\"\n\"Antarctica/Syowa\": \"Antarctique / Syowa\"\n\"Antarctica/Troll\": \"Antarctique / Troll\"\n\"Antarctica/Vostok\": \"Antarctique / Vostok\"\n\"Arctic/Longyearbyen\": \"Arctique / Longyearbyen\"\n\"Asia/Aden\": \"Asia / Aden\"\n\"Asia/Almaty\": \"Asia / Almaty\"\n\"Asia/Amman\": \"Asia / Amman\"\n\"Asia/Anadyr\": \"Asia / Anadyr\"\n\"Asia/Aqtau\": \"Asia / Aqtau\"\n\"Asia/Aqtobe\": \"Asia / Aqtobe\"\n\"Asia/Ashgabat\": \"Asia / Ashgabat\"\n\"Asia/Atyrau\": \"Asia / Atyrau\"\n\"Asia/Baghdad\": \"Asia / Bagdad\"\n\"Asia/Bahrain\": \"Asie / Bahreïn\"\n\"Asia/Baku\": \"Asia / Baku\"\n\"Asia/Bangkok\": \"Asia / Bangkok\"\n\"Asia/Barnaul\": \"Asia / Barnaul\"\n\"Asia/Beirut\": \"Asie / Beyrouth\"\n\"Asia/Bishkek\": \"Asia / Bishkek\"\n\"Asia/Brunei\": \"Asie / Brunei\"\n\"Asia/Chita\": \"Asia / Chita\"\n\"Asia/Choibalsan\": \"Asia / Choibalsan\"\n\"Asia/Colombo\": \"Asia / Colombo\"\n\"Asia/Damascus\": \"Asie / Damas\"\n\"Asia/Dhaka\": \"Asia / Dhaka\"\n\"Asia/Dili\": \"Asia / Dili\"\n\"Asia/Dubai\": \"Asia / Dubai\"\n\"Asia/Dushanbe\": \"Asia / Douchanbé\"\n\"Asia/Famagusta\": \"Asia / Famagouste\"\n\"Asia/Gaza\": \"Asie / Gaza\"\n\"Asia/Hebron\": \"Asia / Hebron\"\n\"Asia/Ho_Chi_Minh\": \"Asia / Ho_Chi_Minh\"\n\"Asia/Hong_Kong\": \"Asie / Hong Kong\"\n\"Asia/Hovd\": \"Asia / Hovd\"\n\"Asia/Irkutsk\": \"Asia / Irkutsk\"\n\"Asia/Jakarta\": \"Asia / Jakarta\"\n\"Asia/Jayapura\": \"Asia / Jayapura\"\n\"Asia/Jerusalem\": \"Asie / Jérusalem\"\n\"Asia/Kabul\": \"Asia / Kaboul\"\n\"Asia/Kamchatka\": \"Asie / Kamchatka\"\n\"Asia/Karachi\": \"Asia / Karachi\"\n\"Asia/Kathmandu\": \"Asia / Kathmandu\"\n\"Asia/Khandyga\": \"Asia / Khandyga\"\n\"Asia/Kolkata\": \"Asia / Kolkata\"\n\"Asia/Krasnoyarsk\": \"Asia / Krasnoyarsk\"\n\"Asia/Kuala_Lumpur\": \"Asia / Kuala_Lumpur\"\n\"Asia/Kuching\": \"Asia / Kuching\"\n\"Asia/Kuwait\": \"Asie / Koweït\"\n\"Asia/Macau\": \"Asie / Macao\"\n\"Asia/Magadan\": \"Asia / Magadan\"\n\"Asia/Makassar\": \"Asia / Makassar\"\n\"Asia/Manila\": \"Asia / Manila\"\n\"Asia/Muscat\": \"Asie / Muscat\"\n\"Asia/Nicosia\": \"Asie / Nicosie\"\n\"Asia/Novokuznetsk\": \"Asia / Novokuznetsk\"\n\"Asia/Novosibirsk\": \"Asia / Novosibirsk\"\n\"Asia/Omsk\": \"Asia / Omsk\"\n\"Asia/Oral\": \"Asie / Oral\"\n\"Asia/Phnom_Penh\": \"Asia / Phnom_Penh\"\n\"Asia/Pontianak\": \"Asia / Pontianak\"\n\"Asia/Pyongyang\": \"Asia / Pyongyang\"\n\"Asia/Qatar\": \"Asie / Qatar\"\n\"Asia/Qostanay\": \"Asia / Qostanay\"\n\"Asia/Qyzylorda\": \"Asia / Qyzylorda\"\n\"Asia/Riyadh\": \"Asia / Riyadh\"\n\"Asia/Sakhalin\": \"Asia / Sakhalin\"\n\"Asia/Samarkand\": \"Asia / Samarkand\"\n\"Asia/Seoul\": \"Asia / Seoul\"\n\"Asia/Shanghai\": \"Asie / Shanghai\"\n\"Asia/Singapore\": \"Asie / Singapour\"\n\"Asia/Srednekolymsk\": \"Asia / Srednekolymsk\"\n\"Asia/Taipei\": \"Asia / Taipei\"\n\"Asia/Tashkent\": \"Asie / Tachkent\"\n\"Asia/Tbilisi\": \"Asia / Tbilisi\"\n\"Asia/Tehran\": \"Asia / Téhéran\"\n\"Asia/Thimphu\": \"Asia / Thimphu\"\n\"Asia/Tokyo\": \"Asie / Tokyo\"\n\"Asia/Tomsk\": \"Asia / Tomsk\"\n\"Asia/Ulaanbaatar\": \"Asia / Ulaanbaatar\"\n\"Asia/Urumqi\": \"Asia / Urumqi\"\n\"Asia/Ust-Nera\": \"Asia / Ust-Nera\"\n\"Asia/Vientiane\": \"Asia / Vientiane\"\n\"Asia/Vladivostok\": \"Asia / Vladivostok\"\n\"Asia/Yakutsk\": \"Asia / Yakutsk\"\n\"Asia/Yangon\": \"Asia / Yangon\"\n\"Asia/Yekaterinburg\": \"Asie / Iekaterinbourg\"\n\"Asia/Yerevan\": \"Asie / Erevan\"\n\"Atlantic/Azores\": \"Atlantique / Açores\"\n\"Atlantic/Bermuda\": \"Atlantique / Bermudes\"\n\"Atlantic/Canary\": \"Atlantique / Canaries\"\n\"Atlantic/Cape_Verde\": \"Atlantic / Cape_Verde\"\n\"Atlantic/Faroe\": \"Atlantique / Féroé\"\n\"Atlantic/Madeira\": \"Atlantique / Madère\"\n\"Atlantic/Reykjavik\": \"Atlantique / Reykjavik\"\n\"Atlantic/South_Georgia\": \"Atlantique / Sud_Géorgie\"\n\"Atlantic/St_Helena\": \"Atlantic / St_Helena\"\n\"Atlantic/Stanley\": \"Atlantique / Stanley\"\n\"Australia/Adelaide\": \"Australie / Adélaïde\"\n\"Australia/Brisbane\": \"Australie / Brisbane\"\n\"Australia/Broken_Hill\": \"Australie / Broken_Hill\"\n\"Australia/Currie\": \"Australie / Currie\"\n\"Australia/Darwin\": \"Australie / Darwin\"\n\"Australia/Eucla\": \"Australie / Eucla\"\n\"Australia/Hobart\": \"Australie / Hobart\"\n\"Australia/Lindeman\": \"Australie / Lindeman\"\n\"Australia/Lord_Howe\": \"Australie / Lord_Howe\"\n\"Australia/Melbourne\": \"Australie / Melbourne\"\n\"Australia/Perth\": \"Australie / Perth\"\n\"Australia/Sydney\": \"Australie / Sydney\"\n\"Europe/Amsterdam\": \"Europe / Amsterdam\"\n\"Europe/Andorra\": \"Europe / Andorre\"\n\"Europe/Astrakhan\": \"Europe / Astrakhan\"\n\"Europe/Athens\": \"Europe / Athènes\"\n\"Europe/Belgrade\": \"Europe / Belgrade\"\n\"Europe/Berlin\": \"Europe / Berlin\"\n\"Europe/Bratislava\": \"Europe / Bratislava\"\n\"Europe/Brussels\": \"Europe / Bruxelles\"\n\"Europe/Bucharest\": \"Europe / Bucarest\"\n\"Europe/Budapest\": \"Europe / Budapest\"\n\"Europe/Busingen\": \"Europe / Busingen\"\n\"Europe/Chisinau\": \"Europe / Chisinau\"\n\"Europe/Copenhagen\": \"Europe / Copenhague\"\n\"Europe/Dublin\": \"Europe / Dublin\"\n\"Europe/Gibraltar\": \"Europe / Gibraltar\"\n\"Europe/Guernsey\": \"Europe / Guernesey\"\n\"Europe/Helsinki\": \"Europe / Helsinki\"\n\"Europe/Isle_of_Man\": \"Europe / Isle_of_Man\"\n\"Europe/Istanbul\": \"Europe / Istanbul\"\n\"Europe/Jersey\": \"Europe / Jersey\"\n\"Europe/Kaliningrad\": \"Europe / Kaliningrad\"\n\"Europe/Kiev\": \"Europe / Kiev\"\n\"Europe/Kirov\": \"Europe / Kirov\"\n\"Europe/Lisbon\": \"Europe / Lisbonne\"\n\"Europe/Ljubljana\": \"Europe / Ljubljana\"\n\"Europe/London\": \"Europe / Londres\"\n\"Europe/Luxembourg\": \"Europe / Luxembourg\"\n\"Europe/Madrid\": \"Europe / Madrid\"\n\"Europe/Malta\": \"Europe / Malte\"\n\"Europe/Mariehamn\": \"Europe / Mariehamn\"\n\"Europe/Minsk\": \"Europe / Minsk\"\n\"Europe/Monaco\": \"Europe / Monaco\"\n\"Europe/Moscow\": \"Europe / Moscou\"\n\"Europe/Oslo\": \"Europe / Oslo\"\n\"Europe/Paris\": \"Europe / Paris\"\n\"Europe/Podgorica\": \"Europe / Podgorica\"\n\"Europe/Prague\": \"Europe / Prague\"\n\"Europe/Riga\": \"Europe / Riga\"\n\"Europe/Rome\": \"Europe / Rome\"\n\"Europe/Samara\": \"Europe / Samara\"\n\"Europe/San_Marino\": \"Europe / San_Marino\"\n\"Europe/Sarajevo\": \"Europe / Sarajevo\"\n\"Europe/Saratov\": \"Europe / Saratov\"\n\"Europe/Simferopol\": \"Europe / Simferopol\"\n\"Europe/Skopje\": \"Europe / Skopje\"\n\"Europe/Sofia\": \"Europe / Sofia\"\n\"Europe/Stockholm\": \"Europe / Stockholm\"\n\"Europe/Tallinn\": \"Europe / Tallinn\"\n\"Europe/Tirane\": \"Europe / Tirane\"\n\"Europe/Ulyanovsk\": \"Europe / Ulyanovsk\"\n\"Europe/Uzhgorod\": \"Europe / Uzhgorod\"\n\"Europe/Vaduz\": \"Europe / Vaduz\"\n\"Europe/Vatican\": \"Europe / Vatican\"\n\"Europe/Vienna\": \"Europe / Vienne\"\n\"Europe/Vilnius\": \"Europe / Vilnius\"\n\"Europe/Volgograd\": \"Europe / Volgograd\"\n\"Europe/Warsaw\": \"Europe / Varsovie\"\n\"Europe/Zagreb\": \"Europe / Zagreb\"\n\"Europe/Zaporozhye\": \"Europe / Zaporozhye\"\n\"Europe/Zurich\": \"Europe / Zurich\"\n\"Indian/Antananarivo\": \"Indien / Antananarivo\"\n\"Indian/Chagos\": \"Indien / Chagos\"\n\"Indian/Christmas\": \"Indien / Noël\"\n\"Indian/Cocos\": \"Indien / Cocos\"\n\"Indian/Comoro\": \"Indien / Comoro\"\n\"Indian/Kerguelen\": \"Indien / Kerguelen\"\n\"Indian/Mahe\": \"Indien / Mahe\"\n\"Indian/Maldives\": \"Indien / Maldives\"\n\"Indian/Mauritius\": \"Indien / Maurice\"\n\"Indian/Mayotte\": \"Indien / Mayotte\"\n\"Indian/Reunion\": \"Indien / Réunion\"\n\"Pacific/Apia\": \"Pacifique / Apia\"\n\"Pacific/Auckland\": \"Pacific / Auckland\"\n\"Pacific/Bougainville\": \"Pacific / Bougainville\"\n\"Pacific/Chatham\": \"Pacifique / Chatham\"\n\"Pacific/Chuuk\": \"Pacifique / Chuuk\"\n\"Pacific/Easter\": \"Pacifique / Pâques\"\n\"Pacific/Efate\": \"Pacifique / Efate\"\n\"Pacific/Enderbury\": \"Pacific / Enderbury\"\n\"Pacific/Fakaofo\": \"Pacifique / Fakaofo\"\n\"Pacific/Fiji\": \"Pacifique / Fidji\"\n\"Pacific/Funafuti\": \"Pacific / Funafuti\"\n\"Pacific/Galapagos\": \"Pacifique / Galapagos\"\n\"Pacific/Gambier\": \"Pacific / Gambier\"\n\"Pacific/Guadalcanal\": \"Pacifique / Guadalcanal\"\n\"Pacific/Guam\": \"Pacifique / Guam\"\n\"Pacific/Honolulu\": \"Pacific / Honolulu\"\n\"Pacific/Kiritimati\": \"Pacifique / Kiritimati\"\n\"Pacific/Kosrae\": \"Pacific / Kosrae\"\n\"Pacific/Kwajalein\": \"Pacific / Kwajalein\"\n\"Pacific/Majuro\": \"Pacific / Majuro\"\n\"Pacific/Marquesas\": \"Pacifique / Marquises\"\n\"Pacific/Midway\": \"Pacifique / Midway\"\n\"Pacific/Nauru\": \"Pacifique / Nauru\"\n\"Pacific/Niue\": \"Pacifique / Niue\"\n\"Pacific/Norfolk\": \"Pacifique / Norfolk\"\n\"Pacific/Noumea\": \"Pacifique / Nouméa\"\n\"Pacific/Pago_Pago\": \"Pacific / Pago_Pago\"\n\"Pacific/Palau\": \"Pacifique / Palaos\"\n\"Pacific/Pitcairn\": \"Pacific / Pitcairn\"\n\"Pacific/Pohnpei\": \"Pacifique / Pohnpei\"\n\"Pacific/Port_Moresby\": \"Pacific / Port_Moresby\"\n\"Pacific/Rarotonga\": \"Pacifique / Rarotonga\"\n\"Pacific/Saipan\": \"Pacifique / Saipan\"\n\"Pacific/Tahiti\": \"Pacifique / Tahiti\"\n\"Pacific/Tarawa\": \"Pacific / Tarawa\"\n\"Pacific/Tongatapu\": \"Pacifique / Tongatapu\"\n\"Pacific/Wake\": \"Pacifique / Wake\"\n\"Pacific/Wallis\": \"Pacifique / Wallis\"\n\"UTC\": \"UTC\"\n\"Time Format\": \"Format de l'heure\"\n\"Choose your default timezone\": \"Choisissez votre fuseau horaire par défaut\"\n\"Signature\": \"Signature\"\n\"User signature will be append at the bottom of ticket reply box\": \"La signature de l'utilisateur sera ajoutée au bas de la boîte de réponse du ticket\"\n\"Password\": \"Mot de passe\"\n\"Password will remain same if you are not entering something in this field\": \"Le mot de passe restera le même si vous laissez ce champ vide\"\n\"Password must contain minimum 8 character length, at least two letters (not case sensitive), one number, one special character(space is not allowed).\": \"Le mot de passe doit contenir au moins 8 caractères, au moins deux lettres (non sensibles à la casse), un chiffre, un caractère spécial (l'espace n'est pas autorisé).\"\n\"Confirm Password\": \"Confirmez le mot de passe\"\n\"Save Changes\": \"Sauvegarder les modifications\"\n\"SAVE CHANGES\": \"SAUVEGARDER LES MODIFICATIONS\"\n\"CREATE TICKET\": \"CREER TICKET\"\n\"Customer full name\": \"Nom complet du client\"\n\"Customer email address\": \"Adresse email du client\"\n\"Select Type\": \"Sélectionner le genre\"\n\"Support\": \"Soutien\"\n\"Choose ticket type\": \"Choisissez le type de ticket\"\n\"Ticket subject\": \"Objet du ticket\"\n\"Message\": \"Message\"\n\"Query Message\": \"Message de requête\"\n\"Add Attachment\": \"Ajouter une pièce jointe\"\n\"This field is mandatory\": \"Ce champ est obligatoire\"\n\"General\": \"Général\"\n\"Designation\": \"La désignation\"\n\"Contant Number\": \"«Numéro de candidat»\"\n\"User signature will be append in the bottom of ticket reply box\": \"La signature de lutilisateur sera ajoutée au bas de la boîte de réponse du ticket\"\n\"Account Status\": \"Statut du compte\"\n\"Account is Active\": \"Le compte est actif\"\n\"Assigning group(s) to user to view tickets regardless assignment.\": \"Attribuer des groupes à lutilisateur pour quil visualise les tickets, quelle que soit leur affectation.\"\n\"Default\": \"Défaut\"\n\"Select All\": \"Tout sélectionner\"\n\"Remove All\": \"Enlever tout\"\n\"Assigning team(s) to user to view tickets regardless assignment.\": \"Affecter une ou plusieurs équipes à lutilisateur pour quil visualise les tickets, quelle que soit leur affectation.\"\n\"No Team added !\": \"Aucune équipe ajoutée!\"\n\"Permission\": \"Autorisation\"\n\"Role\": \"Rôle\"\n\"Administrator\": \"Administrateur\"\n\"Select agent role\": \"Sélectionnez le rôle de lagent\"\n\"Add Customer\": \"Ajouter un client\"\n\"Action\": \"action\"\n\"Account Owner\": \"Propriétaire du compte\"\n\"Active\": \"actif\"\n\"Edit\": \"Modifier\"\n\"Delete\": \"Effacer\"\n\"Disabled\": \"désactivé\"\n\"New Group\": \"Nouveau groupe\"\n\"Default Privileges\": \"Privilèges par défaut\"\n\"New Privileges\": \"Nouveaux privilèges\"\n\"NEW PRIVILEGE\": \"NOUVEAU PRIVILEGE\"\n\"New Privilege\": \"Nouveau privilège\"\n\"New Team\": \"Nouvelle équipe\"\n\"No Record Found\": \"Aucun Enregistrement Trouvé\"\n\"Order Synchronization\": \"Synchronisation des commandes\"\n\"Easily integrate different ecommerce platforms with your helpdesk which can then be later used to swiftly integrate ecommerce order details with your support tickets.\": \"Intégrez facilement différentes plates-formes de commerce électronique à votre service dassistance, qui pourra ensuite être utilisé pour intégrer rapidement les détails des commandes de commerce électronique à vos tickets dassistance.\"\n\"BigCommerce\": \"BigCommerce\"\n\"No channels have been added.\": \"Aucun canal na été ajouté.\"\n\"Add BigCommerce Store\": \"Ajouter BigCommerce Store\"\n\"ADD BIGCOMMERCE STORE\": \"AJOUTER BIGCOMMERCE STORE\"\n\"Mangento\": \"Mangento\"\n\"Add Magento Store\": \"Ajouter Magento Store\"\n\"OpenCart\": \"OpenCart\"\n\"Add OpenCart Store\": \"Ajouter OpenCart Store\"\n\"ADD OPENCART STORE\": \"AJOUTER OPENCART STORE\"\n\"Shopify\": \"Shopify\"\n\"Add Shopify Store\": \"Ajouter Shopify Store\"\n\"ADD SHOPIFY STORE\": \"AJOUTER MAGASIN\"\n\"Integrate a new BigCommerce store\": \"Intégrer un nouveau magasin BigCommerce\"\n\"Your BigCommerce Store Name\": \"Votre nom de magasin BigCommerce\"\n\"Your BigCommerce Store Hash\": \"Votre magasin BigCommerce Hash\"\n\"Your BigCommerce Api Token\": \"Votre jeton BigCommerce Api\"\n\"Your BigCommerce Api Client ID\": \"Votre identifiant client BigCommerce Api\"\n\"Enable Channel\": \"Activer le canal\"\n\"Add Store\": \"Ajouter un magasin\"\n\"ADD STORE\": \"AJOUTER UN MAGASIN\"\n\"Integrate a new Magento store\": \"Intégrer un nouveau magasin Magento\"\n\"Your Magento Api Username\": \"Votre nom dutilisateur Api Magento\"\n\"Your Magento Api Password\": \"Votre mot de passe Api Magento\"\n\"Integrate a new OpenCart store\": \"Intégrer un nouveau magasin OpenCart\"\n\"Your OpenCart Api Key\": \"Votre clé OpenCart Api\"\n\"Your Shopify Store Name\": \"Votre nom de boutique Shopify\"\n\"Your Shopify Api Key\": \"Votre clé Shopify Api\"\n\"Your Shopify Api Password\": \"Votre mot de passe Shopify Api\"\n\"Easily embed custom form to help generate helpdesk tickets.\": \"Intégrez facilement un formulaire personnalisé pour générer des tickets de support technique.\"\n\"Form-Builder\": \"Formateur\"\n\"Add Formbuilder\": \"Ajouter Formbuilder\"\n\"ADD FORMBUILDER\": \"AJOUTER FORMBUILDER\"\n\"No FormBuilder have been added.\": \"Aucun FormBuilder na été ajouté.\"\n\"Create a New Custom Form Below\": \"Créer un nouveau formulaire personnalisé ci-dessous\"\n\"Form Name\": \"Nom de forme\"\n\"It will be shown in the list of created forms\": \"Il sera affiché dans la liste des formulaires créés\"\n\"MANDATORY FIELDS\": \"CHAMPS OBLIGATOIRES\"\n\"These fields will be visible in form and cant be edited\": \"Ces champs seront visibles dans le formulaire et ne pourront pas être modifiés\"\n\"Reply\": \"Répondre\"\n\"OPTIONAL FIELDS\": \"CHAMPS FACULTATIFS\"\n\"Select These Fields to Add in your Form\": \"Sélectionnez ces champs à ajouter à votre formulaire\"\n\"GDPR\": \"GDPR\"\n\"Order\": \"Ordre\"\n\"Categorybuilder\": \"Catégorie constructeur\"\n\"File\": \"Fichier\"\n\"Add Form\": \"Ajouter un formulaire\"\n\"ADD FORM\": \"ADD FORM\"\n\"UPDATE FORM\": \"MISE À JOUR DU FORMULAIRE\"\n\"Update Form\": \"Mise à jour du formulaire\"\n\"Embed\": \"Intégrer\"\n\"EMBED\": \"EMBED\"\n\"EMBED FORMBUILDER\": \"INTÉGRER LE FORMBUILDER\"\n\"Embed Formbuilder\": \"Intégrer le Formbuilder\"\n\"Visit\": \"Visite\"\n\"VISIT\": \"VISITE\"\n\"Code\": \"Code\"\n\"Total Ticket(s)\": \"Total Ticket(s)\"\n\"Ticket Count\": \"Nombre de tickets\"\n\"SwiftMailer Configurations\": \"Configurations SwiftMailer\"\n\"No swiftmailer configurations found\": \"Aucune configuration swiftmailer trouvée\"\n\"CREATE CONFIGURATION\": \"CREATE CONFIGURATION\"\n\"Add configuration\": \"Ajouter une configuration\"\n\"Update configuration\": \"Mettre à jour la configuration\"\n\"Mailer ID\": \"Identifiant de courrier\"\n\"Mailer ID - Leave blank to automatically create id\": \"Identifiant de courrier - Laissez le champ vide pour créer automatiquement un identifiant\"\n\"Transport Type\": \"Type de transport\"\n\"SMTP\": \"SMTP\"\n\"Enable Delivery\": \"Activer la livraison\"\n\"Server\": \"Serveur\"\n\"Port\": \"Port\"\n\"Encryption Mode\": \"Mode de cryptage\"\n\"ssl\": \"ssl\"\n\"tsl\": \"tsl\"\n\"None\": \"Aucun\"\n\"Authentication Mode\": \"Mode dauthentification\"\n\"login\": \"sidentifier\"\n\"API\": \"API\"\n\"Plain\": \"Plaine\"\n\"CRAM-MD5\": \"CRAM-MD5\"\n\"Sender Address\": \"Adresse de lexpéditeur\"\n\"Delivery Address\": \"Adresse de livraison\"\n\"Block Spam\": \"Bloquer le spam\"\n\"Black list\": \"Liste noire\"\n\"Comma (,) separated values (Eg. support@example.com, @example.com, 68.98.31.226)\": \"Valeurs séparées par une virgule (,) (Par exemple, support@example.com, @ example.com, 68.98.31.226)\"\n\"White list\": \"«Liste blanche»\"\n\"Mailbox Settings\": \"Paramètres de boîte aux lettres\"\n\"No mailbox configurations found\": \"Aucune configuration de boîte aux lettres trouvée\"\n\"NEW MAILBOX\": \"NOUVELLE BOÎTE AUX LETTRES\"\n\"New Mailbox\": \"Nouvelle boîte aux lettres\"\n\"Update Mailbox\": \"Mettre à jour la boîte aux lettres\"\n\"Add Mailbox\": \"Ajouter une boîte aux lettres\"\n\"Mailbox ID - Leave blank to automatically create id\": \"ID de boîte aux lettres - Laissez vide pour créer automatiquement un identifiant\"\n\"Mailbox Name\": \"Nom de la boîte aux lettres\"\n\"Enable Mailbox\": \"Activer la boîte aux lettres\"\n\"Incoming Mail (IMAP) Server\": \"Serveur de courrier entrant (IMAP)\"\n\"Configure your imap settings which will be used to fetch emails from your mailbox.\": \"Configurez vos paramètres dimap qui seront utilisés pour récupérer les courriels de votre boîte aux lettres.\"\n\"Transport\": \"Transport\"\n\"IMAP\": \"IMAP\"\n\"Gmail\": \"Gmail\"\n\"Yahoo\": \"Yahoo\"\n\"Host\": \"Hôte\"\n\"IMAP Host\": \"Hôte IMAP\"\n\"Email address\": \"Adresse e-mail\"\n\"Associated Password\": \"«Mot de passe associé»\"\n\"Outgoing Mail (SMTP) Server\": \"Serveur de courrier sortant (SMTP)\"\n\"Select a valid Swift Mailer configuration which will be used to send emails through your mailbox.\": \"Sélectionnez une configuration valide de Swift Mailer qui sera utilisée pour envoyer des courriels via votre boîte aux lettres.\"\n\"None Selected\": \"Aucune sélection\"\n\"Create Mailbox\": \"Créer une boîte aux lettres\"\n\"CREATE MAILBOX\": \"CREATE MAILBOX\"\n\"New Template\": \"Nouveau modèle\"\n\"NEW TEMPLATE\": \"NOUVEAU MODÈLE\"\n\"Customer Forgot Password\": \"Client oublié mot de passe\"\n\"Customer Account Created\": \"Compte client créé\"\n\"Ticket generated success mail to customer\": \"Ticket de succès généré par le courrier au client\"\n\"Customer Reply To The Agent\": \"Réponse du client à lagent\"\n\"Ticket Assign\": \"Ticket Assign\"\n\"Agent Forgot Password\": \"Agent Mot de passe oublié\"\n\"Agent Account Created\": \"Compte dagent créé\"\n\"Ticket generated by customer\": \"Ticket généré par le client\"\n\"Agent Reply To The Customers ticket\": \"Réponse de lagent au ticket du client\"\n\"Email template name\": \"Nom du modèle de courrier électronique\"\n\"Email template subject\": \"Objet du modèle de courrier électronique\"\n\"Template For\": \"Modèle pour\"\n\"Nothing Selected\": \"Rien de sélectionné\"\n\"email template will be used for work related with selected option\": \"le modèle de courrier électronique sera utilisé pour les travaux liés à loption sélectionnée\"\n\"Email template body\": \"Corps du modèle de courrier électronique\"\n\"Body\": \"Corps\"\n\"placeholders\": \"espaces réservés\"\n\"Ticket Subject\": \"Objet du ticket\"\n\"Ticket Message\": \"Message du ticket\"\n\"Ticket Attachments\": \"«Pièces jointes»\"\n\"Ticket Tags\": \"Tags du ticket\"\n\"Ticket Source\": \"Origine du ticket\"\n\"Ticket Status\": \"Etat du ticket\"\n\"Ticket Priority\": \"Priorité du ticket\"\n\"Ticket Group\": \"«Groupe de tickets»\"\n\"Ticket Team\": \"Ticket Team\"\n\"Ticket Thread Message\": \"Message du fil de discussion\"\n\"Ticket Customer Name\": \"Nom du client du ticket\"\n\"Ticket Customer Email\": \"Email du client du ticket\"\n\"Ticket Agent Name\": \"Nom de lagent de ticket\"\n\"Ticket Agent Email\": \"Email de lagent de ticket\"\n\"Ticket Agent Link\": \"Ticket Agent Link\"\n\"Ticket Customer Link\": \"Ticket Client Link\"\n\"Last Collaborator Name\": \"Nom du dernier collaborateur\"\n\"Last Collaborator Email\": \"Dernier courriel de collaborateur\"\n\"Agent/ Customer Name\": \"Nom de lagent / du client\"\n\"Account Validation Link\": \"Lien de validation de compte\"\n\"Password Forgot Link\": \"Mot de passe oublié lien\"\n\"Company Name\": \"Nom de la compagnie\"\n\"Company Logo\": \"Logo dentreprise\"\n\"Company URL\": \"URL de lentreprise\"\n\"Swiftmailer id (Select from drop down)\": \"Identifiant Swiftmailer (sélection dans le menu déroulant)\"\n\"SwiftMailer\": \"SwiftMailer\"\n\"PROCEED\": \"PROCÉDER\"\n\"Proceed\": \"Procéder\"\n\"Theme Color\": \"Thème Couleur\"\n\"Customer Created\": \"Client créé\"\n\"Agent Created\": \"Agent créé\"\n\"Ticket Created\": \"Ticket créé\"\n\"Agent Replied on Ticket\": \"Agent a répondu au ticket\"\n\"Customer Replied on Ticket\": \"Le client a répondu sur le ticket\"\n\"Workflow Status\": \"Statut du flux de travail\"\n\"Workflow is Active\": \"Le flux de travail est actif\"\n\"Events\": \"Événements\"\n\"An event automatically triggers to check conditions and perform a respective pre-defined set of actions\": \"Un événement déclenche automatiquement le contrôle des conditions et effectue un ensemble dactions prédéfini respectif\"\n\"Select an Event\": \"Sélectionnez un événement\"\n\"Add More\": \"Ajouter plus de\"\n\"Conditions\": \"Conditions\"\n\"Conditions are set of rules which checks for specific scenarios and are triggered on specific occasions\": \"Les conditions sont un ensemble de règles qui vérifient des scénarios spécifiques et sont déclenchées à des occasions spécifiques\"\n\"Subject or Description\": \"Sujet ou description\"\n\"Actions\": \"Actions\"\n\"An action not only reduces the workload but also makes it quite easier for ticket automation\": \"Une action réduit non seulement la charge de travail, mais facilite également lautomatisation des tickets\"\n\"Select an Action\": \"Sélectionnez une action\"\n\"Add Note\": \"Ajouter une note\"\n\"Mail to agent\": \"Mail à l'agent\"\n\"Mail to customer\": \"Mail au client\"\n\"Mail to group\": \"Mail au groupe\"\n\"Mail to last collaborator\": \"Courrier au dernier collaborateur\"\n\"Mail to team\": \"Mail à l'équipe\"\n\"Mark Spam\": \"Marquer comme spam\"\n\"Assign to agent\": \"Attribuer à l'agent\"\n\"Assign to group\": \"Attribuer à un groupe\"\n\"Set Priority As\": \"Définir la priorité comme\"\n\"Set Status As\": \"Définir le statut comme\"\n\"Set Tag As\": \"Définir l'étiquette comme\"\n\"Set Label As\": \"Définir l'étiquette comme\"\n\"Assign to team\": \"Attribuer à l'équipe\"\n\"Set Type As\": \"Définir le type comme\"\n\"Add Workflow\": \"Ajouter un flux de travail\"\n\"ADD WORKFLOW\": \"AJOUTER UN FLUX DE TRAVAIL\"\n\"Ticket Type code\": \"Code de type de ticket\"\n\"Ticket Type description\": \"Description du type de ticket\"\n\"Type Status\": \"Type Statut\"\n\"Type is Active\": \"Le type est actif\"\n\"Add Save Reply\": \"Ajouter une réponse\"\n\"Saved reply name\": \"Nom de réponse enregistré\"\n\"Share saved reply with user(s) in these group(s)\": \"Partager la réponse enregistrée avec lutilisateur ou les utilisateurs de ces groupes\"\n\"Share saved reply with user(s) in these teams(s)\": \"Partager la réponse enregistrée avec les utilisateurs de ces équipes\"\n\"Saved reply Body\": \"Corps de réponse enregistré\"\n\"New Prepared Response\": \"Nouvelle réponse préparée\"\n\"Prepared Response Status\": \"État de la réponse préparée\"\n\"Prepared Response is Active\": \"La réponse préparée est active\"\n\"Share prepared response with user(s) in these group(s)\": \"Partager les réponses préparées avec les utilisateurs de ces groupes\"\n\"Share prepared response with user(s) in these teams(s)\": \"Partager les réponses préparées avec les utilisateurs de ces équipes\"\n\"ADD PREPARED RESPONSE\": \"AJOUTER UNE RÉPONSE PRÉPARÉE\"\n\"Add Prepared Response\": \"Ajouter une réponse préparée\"\n\"Folder Name is shown upfront at Knowledge Base\": \"Le nom du dossier est affiché dès le départ dans la base de connaissances\"\n\"A small text about the folder helps user to navigate more easily\": \"Un petit texte sur le dossier aide lutilisateur à naviguer plus facilement\"\n\"Publish\": \"Publier\"\n\"Choose appropriate status\": \"Choisissez le statut approprié\"\n\"Folder Image\": \"Image du dossier\"\n\"An image is worth a thousands words and makes folder more accessible\": \"Une image vaut mille mots et rend le dossier plus accessible\"\n\"Add Category\": \"Ajouter une catégorie\"\n\"Category Name is shown upfront at Knowledge Base\": \"Le nom de la catégorie est affiché dès le départ dans la base de connaissances\"\n\"A small text about the category helps user to navigate more easily\": \"Un petit texte sur la catégorie aide lutilisateur à naviguer plus facilement\"\n\"Using Category Order, you can decide which category should display first\": \"En utilisant lordre des catégories, vous pouvez choisir la catégorie à afficher en premier\"\n\"Sorting\": \"Tri\"\n\"Ascending Order (A-Z)\": \"Ordre croissant (AZ)\"\n\"Descending Order (Z-A)\": \"Ordre décroissant (Z-A)\"\n\"Based on Popularity\": \"Basé sur la popularité\"\n\"Article of this category will display according to selected option\": \"Larticle de cette catégorie saffichera en fonction de loption sélectionnée\"\n\"Article\": \"Article\"\n\"Title\": \"Titre\"\n\"View\": \"Vue\"\n\"Make as Starred\": \"Faire comme favori\"\n\"Yes\": \"Oui\"\n\"No\": \"Non\"\n\"Stared\": \"Regardé\"\n\"Revisions\": \"Révisions\"\n\"Related Articles\": \"Articles Liés\"\n\"Delete Article\":\t\"Supprimer l'article\"\n\"Content\": \"Contenu\"\n\"Slug\": \"Slug\"\n\"Slug is the url identity of this article.\": \"Le Slug est l'identité de cet article dans l'URL.\"\n\"Meta Title\": \"Meta Title\"\n\"# Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A pages title tag and meta description are usually shown whenever that page appears in search engine results\": \"Les balises de titre et les méta-descriptions sont des bits de code HTML dans len-tête dune page Web. Ils aident les moteurs de recherche à comprendre le contenu dune page. La balise de titre et la méta description dune page sont généralement affichées chaque fois que cette page apparaît dans les résultats des moteurs de recherche.\"\n\"Meta Keywords\": \"Meta Keywords\"\n\"Meta Description\": \"Meta Description\"\n\"Description\": \"Description\"\n\"Team Status\": \"Statut de l'équipe\"\n\"Team is Active\": \"Equipe active\"\n\"Edit Privilege\": \"Modifier privilège\"\n\"Can create ticket\": \"Peut créer un ticket\"\n\"Can edit ticket\": \"Peut éditer un ticket\"\n\"Can delete ticket\": \"Peut supprimer un ticket\"\n\"Can restore trashed ticket\": \"Peut restaurer un ticket détruit\"\n\"Can assign ticket\": \"Peut attribuer un ticket\"\n\"Can assign ticket group\": \"Peut affecter un groupe de tickets\"\n\"Can update ticket status\": \"Peut mettre à jour le statut du ticket\"\n\"Can update ticket priority\": \"Peut mettre à jour la priorité du ticket\"\n\"Can update ticket type\": \"Peut mettre à jour le type de ticket\"\n\"Can add internal notes to ticket\": \"Peut ajouter des notes internes au ticket\"\n\"Can edit thread/notes\": \"Peut éditer un fil / des notes\"\n\"Can lock/unlock thread\": \"Peut verrouiller / déverrouiller le fil\"\n\"Can add collaborator to ticket\": \"Peut ajouter un collaborateur à un ticket\"\n\"Can delete collaborator from ticket\": \"Peut supprimer un collaborateur du ticket\"\n\"Can delete thread/notes\": \"Peut supprimer un fil / des notes\"\n\"Can apply prepared response on ticket\": \"Peut appliquer une réponse préparée sur le ticket\"\n\"Can add ticket tags\": \"Peut ajouter des étiquettes de ticket\"\n\"Can delete ticket tags\": \"Peut supprimer les étiquettes de ticket\"\n\"Can kick other ticket users\": \"Peut donner un coup de pied à dautres utilisateurs de tickets\"\n\"Can manage email templates\": \"Peut gérer les modèles de courrier électronique\"\n\"Can manage groups\": \"Peut gérer des groupes\"\n\"Can manage Sub-Groups/ Teams\": \"Peut gérer des sous-groupes / équipes\"\n\"Can manage agents\": \"Peut gérer des agents\"\n\"Can manage agent privileges\": \"Peut gérer les privilèges dagent\"\n\"Can manage ticket types\": \"Peut gérer les types de tickets\"\n\"Can manage ticket custom fields\": \"Peut gérer les champs personnalisés de tickets\"\n\"Can manage customers\": \"Peut gérer les clients\"\n\"Can manage Prepared Responses\": \"Peut gérer les réponses préparées\"\n\"Can manage Automatic workflow\": \"Peut gérer le flux de travail automatique\"\n\"Can manage tags\": \"Peut gérer les tags\"\n\"Can manage knowledgebase\": \"Peut gérer la base de connaissances\"\n\"Can manage Groups Saved Reply\": \"Peut gérer la réponse enregistrée du groupe\"\n\"Add Privilege\": \"Ajouter un privilège\"\n\"Choose set of privileges which will be available to the agent.\": \"Choisissez un ensemble de privilèges qui seront disponibles pour lagent.\"\n\"Advanced\": \"Avancé\"\n\"Privilege Name must have characters only\": \"Le nom de privilège doit comporter uniquement des caractères\"\n\"Maximum character length is 50\": \"La longueur maximale des caractères est de 50\"\n\"Open Tickets\": \"Tickets ouverts\"\n\"New Customer\": \"Nouveau client\"\n\"New Agent\": \"«Nouvel agent»\"\n\"Total Article(s)\": \"Total article (s)\"\n\"Please specify a valid email address\": \"Sil vous plaît spécifier une adresse e-mail valide\"\n\"Please enter the password associated with your email address\": \"Veuillez saisir le mot de passe associé à votre adresse e-mail\"\n\"Please enter your server host address\": \"Sil vous plaît entrer votre adresse hôte du serveur\"\n\"Please specify a port number to connect with your mail server\": \"Spécifiez un numéro de port pour vous connecter à votre serveur de messagerie\"\n\"Success ! Branding details saved successfully.\": \"Succès ! Les détails de la marque ont été enregistrés avec succès.\"\n\"Success ! Time details saved successfully.\": \"Succès ! Les détails de l'heure ont été enregistrés avec succès.\"\n\"Spam setting saved successfully.\": \"Réglage du spam enregistré avec succès.\"\n\"Please specify a valid name for your mailbox.\": \"Veuillez spécifier un nom valide pour votre boîte aux lettres.\"\n\"Please select a valid swift-mailer configuration.\": \"Veuillez sélectionner une configuration valide de swift-mailer.\"\n\"Please specify a valid host address.\": \"Sil vous plaît spécifier une adresse dhôte valide.\"\n\"Please specify a valid email address.\": \"Sil vous plaît spécifier une adresse e-mail valide.\"\n\"Please enter the associated account password.\": \"Veuillez saisir le mot de passe du compte associé.\"\n\"New Saved Reply\": \"Nouvelle réponse enregistrée\"\n\"New Category\": \"Nouvelle catégorie\"\n\"Folder\": \"Dossier\"\n\"Category\": \"Catégorie\"\n\"Created\": \"Crée le\"\n\"All Articles\": \"Tous les articles\"\n\"Viewed\": \"Vu\"\n\"New Article\": \"Nouvel article\"\n\"Thank you for your feedback!\": \"Merci pour votre avis !\"\n\"Was this article helpful?\": \"Cet article a-t-il été utile?\"\n\"Helpdesk\": \"Centre d'assistance\"\n\"Support Center\": \"Centre de support\"\n\"Mailboxes\": \"Boîtes aux lettres\"\n\"By\": \"Par\"\n\"Search Tickets\": \"Rechercher des tickets\"\n\"Customer Information\": \"Informations client\"\n\"Total Replies\": \"Total des réponses\"\n\"Filter With\": \"Filtrer avec\"\n\"Type email to add\": \"Tapez l'email à ajouter\"\n\"Collaborators\": \"Collaborateurs\"\n\"Labels\": \"Étiquettes\"\n\"Group\": \"Groupe\"\n\"group\": \"groupe\"\n\"Contact Team\": \"Contacter l'équipe\"\n\"Stay on ticket\": \"Rester sur le ticket\"\n\"Redirect to list\": \"Rediriger vers la liste\"\n\"Nothing interesting here...\": \"Rien d'intéressant ici\"\n\"Previous Ticket\": \"Ticket précédent\"\n\"Next Ticket\": \"Prochain ticket\"\n\"Forward\": \"Transférer\"\n\"Note\": \"Remarque\"\n\"Write a reply\": \"Écrire une réponse\"\n\"Created Ticket\": \"Ticket créé\"\n\"All Threads\": \"Toutes les discussions\"\n\"Forwards\": \"Transferts\"\n\"Notes\": \"Remarques\"\n\"Pinned\": \"Épinglé\"\n\"Edit Ticket\": \"Editer le ticket\"\n\"Print Ticket\": \"Imprimer le ticket\"\n\"Mark as Spam\": \"Marquer comme spam\"\n\"Mark as Closed\": \"Marquer comme fermé\"\n\"Delete Ticket\": \"Supprimer le ticket\"\n\"View order details from different eCommerce channels\": \"Afficher les détails de la commande de différents canaux de commerce électronique\"\n\"ECOMMERCE CHANNELS\": \"Chaînes commerciales\"\n\"Select channel\": \"Sélectionner une chaîne\"\n\"Order Id\": \"Numéro de commande\"\n\"Fetch Order\": \"Fetch Order\"\n\"No orders have been integrated to this ticket yet.\": \"Aucune commande na encore été intégrée à ce ticket.\"\n\"Enter your credentials below to gain access to your helpdesk account.\": \"Saisissez vos identifiants ci-dessous pour accéder à votre compte de support.\"\n\"Keep me logged in\": \"Rester connecté\"\n\"Forgot Password?\": \"Mot de passe oublié ?\"\n\"Log in to your\": \"Connectez-vous à votre\"\n\"Sign In\": \"Se connecter\"\n\"Edit Customer\": \"Modifier le client\"\n\"Update\": \"Mettre à jour\"\n\"Discard\": \"Ignorer\"\n\"Cancel\": \"Annuler\"\n\"Not Assigned\": \"Non assigné\"\n\"Submit\": \"Envoyer\"\n\"Submit And Open\": \"Envoyer et ouvrir\"\n\"Submit And Pending\": \"Envoyer et en attente\"\n\"Submit And Answered\": \"Envoyer et répondu\"\n\"Submit And Resolved\": \"Envoyer et résolu\"\n\"Submit And Closed\": \"Envoyer et fermé\"\n\"Choose a Color\": \"Choisir une couleur\"\n\"Create\": \"Créer\"\n\"Edit Label\": \"Modifier l'étiquette\"\n\"Add Label\": \"Ajouter une étiquette\"\n\"To\": \"À\"\n\"Ticket\": \"Ticket\"\n\"Your browser does not support JavaScript or You disabled JavaScript, Please enable those !\": \"Votre navigateur ne supporte pas JavaScript ou Vous avez désactivé JavaScript, activez-les!\"\n\"Confirm Action\": \"Confirmer laction\"\n\"Confirm\": \"Confirmer\"\n\"No result found\": \"Aucun résultat trouvé\"\n\"ticket delivery status\": \"état de livraison du ticket\"\n\"Warning! Select valid image file.\": \"Attention! Sélectionnez un fichier image valide. \"\n\"Error\": \"Erreur\"\n\"Save\": \"Sauver\"\n\"SEO\": \"SEO\"\n\"Edit Saved Filter\": \"Modifier le filtre enregistré\"\n\"Type atleast 2 letters\": \"Tapez au moins 2 lettres\"\n\"Remove Label\": \"Supprimer l'étiquette\"\n\"New Saved Filter\": \"Nouveau filtre enregistré\"\n\"Is Default\": \"Est-ce par défaut\"\n\"Remove Saved Filter\": \"Supprimer le filtre enregistré\"\n\"Ticket Info\": \"Ticket Info\"\n\"Last Replied Agent\": \"Dernier agent répondu\"\n\"created Ticket\": \"a crée le ticket\"\n\"Uploaded Files\": \"Fichiers téléchargés\"\n\"Download (as .zip)\": \"Télécharger comme ZIP)\"\n\"made last reply\": \"fait la dernière réponse\"\n\"N/A\": \"N / A\"\n\"Unassigned\": \"Non attribué\"\n\"Label\": \"Étiquette\"\n\"Assigned to me\": \"Assigné à moi\"\n\"Search Query\": \"Requête de recherche\"\n\"Searching\": \"Recherche\"\n\"Saved Filter\": \"Filtre enregistré\"\n\"No Label Created\": \"Aucune étiquette créé\"\n\"Label with same name already exist.\": \"Des étiquettes portant le même nom existent déjà.\"\n\"Create New\": \"Créer un nouveau\"\n\"Mail status\": \"Statut du courrier\"\n\"replied\": \"a répondu\"\n\"added note\": \"note ajoutée\"\n\"forwarded\": \"transféré\"\n\"TO\": \"À\"\n\"CC\": \"Copie à\"\n\"BCC\": \"Copie caché à\"\n\"Locked\": \"Verouiller\"\n\"Edit Thread\": \"Editer le fil\"\n\"Delete Thread\": \"Supprimer le fil\"\n\"Unpin Thread\": \"Désépingler le fil\"\n\"Pin Thread\": \"Fil à broche\"\n\"Unlock Thread\": \"Déverrouiller le fil\"\n\"Lock Thread\": \"Verrouiller le fil\"\n\"Translate Thread\": \"Traduire le fil\"\n\"Language\": \"Langue\"\n\"English\": \"Anglais\"\n\"French\": \"Français\"\n\"Italian\": \"Italien\"\n\"Arabic\": \"Arabe\"\n\"German\": \"Allemand\"\n\"Spanish\": \"Espagnol\"\n\"Turkish\": \"Turc\"\n\"Danish\": \"Danois\"\n\"Chinese\": \"CHINOIS\"\n\"Polish\": \"POLONAIS\"\n\"Hebrew\": \"Hébreu\"\n\"Portuguese\": \"Portugais\"\n\"System\": \"Système\"\n\"Open in Files\": \"Ouvrir dans les fichiers\"\n\"Email address is invalid\": \"Adresse email invalide\"\n\"Tag with same name already exist\": \"Les balises avec le même nom existent déjà\"\n\"Text length should be less than 20 charactors\": \"La longueur du texte doit être inférieure à 20 caractères\"\n\"Label with same name already exist\": \"Des étiquettes portant le même nom existent déjà\"\n\"Agent Name\": \"Nom dagent\"\n\"Agent Email\": \"Email de lagent\"\n\"open\": \"ouvert\"\n\"Currently active agents on ticket\": \"Agents actuellement actifs sur le ticket\"\n\"Edit Customer Information\": \"Modifier les informations client\"\n\"Restore\": \"Restaurer\"\n\"Delete Forever\": \"Supprimer définitivement\"\n\"Add Team\": \"Ajouter une équipe\"\n\"delete\": \"supprimer\"\n\"You didnt have any folder for current filter(s).\": \"Vous navez pas de dossier pour le (s) filtre (s) actuel (s).\"\n\"Add Folder\": \"Ajouter le dossier\"\n\"This field must have valid characters only\": \"Ce champ doit contenir uniquement des caractères valides\"\n\"Can edit task\": \"Peut éditer une tâche\"\n\"Can create task\": \"Peut créer une tâche\"\n\"Can delete task\": \"Peut supprimer une tâche\"\n\"Can add member to task\": \"Peut ajouter un membre à une tâche\"\n\"Can remove member from task\": \"Peut retirer un membre de la tâche\"\n\"Agent Privileges\": \"«Privilèges d'agent»\"\n\"Agent Privilege represents overall permissions in System.\": \"Les privilèges de lagent représentent les autorisations globales dans le système.\"\n\"Ticket View\": \"Ticket View\"\n\"User can view tickets based on selected scope.\": \"Lutilisateur peut afficher les tickets en fonction de la portée sélectionnée.\"\n\"If individual access then user can View assigned Ticket(s) only, If Team access then user can view all Ticket(s) in team(s) he belongs to and so on\": \"Si un accès individuel est disponible, lutilisateur peut uniquement afficher les tickets attribués. Si laccès aux équipes, il peut afficher tous les tickets de léquipe à laquelle il appartient et ainsi de suite\"\n\"Global Access\": \"Accès global\"\n\"Group Access\": \"Accès groupe\"\n\"Team Access\": \"Team Access\"\n\"Individual Access\": \"Accès individuel\"\n\"This field must have characters only\": \"Ce champ doit contenir uniquement des caractères\"\n\"Maximum character length is 40\": \"La longueur maximale des caractères est de 40\"\n\"This is not a valid email address\": \"Cette adresse email nest pas valide\"\n\"Password must contains 8 Characters\": \"Le mot de passe doit contenir 8 caractères\"\n\"The passwords does not match\": \"Les mots de passe ne correspondent pas\"\n\"Enabled\": \"Activée\"\n\"Create Configuration\": \"Créer une configuration\"\n\"Swift Mailer Settings\": \"Paramètres Swift Mailer\"\n\"Username\": \"Nom dutilisateur\"\n\"Please select a swiftmailer id\": \"Veuillez sélectionner un identifiant swiftmailer\"\n\"Please enter a valid e-mail id\": \"Veuillez saisir un identifiant de messagerie valide\"\n\"Please enter a mailer id\": \"Sil vous plaît entrer un identifiant de messagerie\"\n\"Email Id\": \"Email Id\"\n\"Are you sure? You want to perform this action.\": \"Êtes-vous sûr? Vous voulez effectuer cette action.\"\n\"Reorder\": \"Réorganiser\"\n\"New Workflow\": \"Nouveau flux de travail\"\n\"OR\": \"OU\"\n\"AND\": \"ET\"\n\"Please enter a valid name.\": \"Merci dentrer un nom valide.\"\n\"Please select a value.\": \"Sil vous plaît sélectionnez une valeur.\"\n\"Please add a value.\": \"Sil vous plaît ajouter une valeur.\"\n\"This field is required\": \"Ce champ est requis\"\n\"or\": \"ou\"\n\"and\": \"et\"\n\"Select a Condition\": \"Sélectionnez une condition\"\n\"Loading...\": \"Chargement...\"\n\"Select Option\": \"Sélectionnez une option\"\n\"Inactive\": \"Inactif\"\n\"New Type\": \"Nouveau genre\"\n\"Placeholders\": \"Placeholders\"\n\"Ticket Link\": \"Ticket Link\"\n\"Id\": \"Id\"\n\"Preview\": \"Aperçu\"\n\"Sort Order\": \"Ordre de tri\"\n\"This field must be a number\": \"Ce champ doit être un nombre\"\n\"User\": \"Utilisateur\"\n\"Edit Group\": \"Modifier le groupe\"\n\"Group Status\": \"Statut du groupe\"\n\"Group is Active\": \"Le groupe est actif\"\n\"Add Group\": \"Ajouter un groupe\"\n\"Contact number is invalid\": \"Le numéro de contact est invalide\"\n\"Edit Agent\": \"Edit Agent\"\n\"No Privilege added, Please add Privilege(s) first !\": \"Aucun privilège ajouté, veuillez ajouter les privilèges en premier!\"\n\"Edit Email Template\": \"Modifier le modèle de-mail\"\n\"Edit Workflow\": \"Modifier le flux de travail\"\n\"Save Workflow\": \"Enregistrer le flux de travail\"\n\"Edit Ticket Type\": \"Modifier le type de ticket\"\n\"Add Ticket Type\": \"Ajouter un type de ticket\"\n\"Date Released\": \"Date de sortie\"\n\"Free\": \"Libre\"\n\"Premium\": \"Prime\"\n\"Installed\": \"Installée\"\n\"Installed Applications\": \"Applications installées\"\n\"Apps Dashboard\": \"Tableau de bord des applications\"\n\"Dashboard\": \"Tableau de bord\"\n\"Nothing Interesting here\": \"Rien dintéressant ici\"\n\"No Categories Added\": \"Aucune catégorie ajoutée\"\n\"ticket\": \"ticket\"\n\"Add Email Template\": \"Ajouter un modèle de courrier électronique\"\n\"This field contain 100 characters only\": \"Ce champ contient 100 caractères seulement\"\n\"This field contain characters only\": \"Ce champ contient uniquement des caractères\"\n\"Name length must not be greater than 200 !!\": \"La longueur du nom ne doit pas dépasser 200 !!\"\n\"Warning! Correct all field values first!\": \"Attention! Corrigez toutes les valeurs de champ en premier! \"\n\"Warning ! This is not a valid request\": \"Attention ! Ce nest pas une demande valide \"\n\"Success ! Tag removed successfully.\": \"Succès ! La balise a bien été supprimée. \"\n\"Success ! Tags Saved successfully.\": \"Succès ! Tags enregistrés avec succès. \"\n\"Success ! Revision restored successfully.\": \"Succès ! Révision restaurée avec succès. \"\n\"Success ! Categories updated successfully.\": \"Succès ! Les catégories ont été mises à jour avec succès. \"\n\"Success ! Article Related removed successfully.\": \"Succès ! Article connexe supprimé avec succès. \"\n\"Success ! Article Related is already added.\": \"Succès ! Article Related est déjà ajouté. \"\n\"Success ! Cannot add self as relative article.\": \"Succès ! Impossible de sajouter comme article relatif. \"\n\"Success ! Article Related updated successfully.\": \"Succès ! Article connexe mis à jour avec succès. \"\n\"Success ! Articles removed successfully.\": \"Succès ! Articles supprimés avec succès. \"\n\"Success ! Article status updated successfully.\": \"Succès ! Le statut de larticle a été mis à jour avec succès. \"\n\"Success ! Article star updated successfully.\": \"Succès ! Article star mis à jour avec succès. \"\n\"Success! Article updated successfully\": \"Succès! Article mis à jour avec succès \"\n\"Success ! Category sort  order updated successfully.\": \"Succès ! Lordre de tri des catégories a été mis à jour avec succès.\" \n\"Success ! Category status updated successfully.\": \"Succès ! Le statut de la catégorie a été mis à jour avec succès. \"\n\"Success ! Folders updated successfully.\": \"Succès ! Les dossiers ont été mis à jour avec succès. \"\n\"Success ! Categories removed successfully.\": \"Succès ! Catégories supprimées avec succès. \"\n\"Success ! Category updated successfully.\": \"Succès ! Catégorie mise à jour avec succès. \"\n\"Error ! Category is not exist.\": \"Erreur ! La catégorie n'existe pas. \"\n\"Warning ! Customer Login disabled by admin.\": \"Attention ! Connexion client désactivée par admin. \"\n\"This Email is not registered with us.\": \"Cet email n'est pas enregistré chez nous nous.\"\n\"Your password has been updated successfully.\": \"Votre mot de passe a été mis à jour avec succès.\"\n\"Password dont match.\": \"Le mot de passe ne correspond pas.\"\n\"Error ! Profile image is not valid, please upload a valid format\": \"Erreur ! L'image de profil n'est pas valide, veuillez télécharger un format valide\"\n\"Success! Folder has been added successfully.\": \"Succès! Le dossier a été ajouté avec succès. \"\n\"Folder updated successfully.\": \"Dossier mis à jour avec succès.\"\n\"Success ! Folder status updated successfully.\": \"Succès ! Le statut du dossier a été mis à jour avec succès. \"\n\"Error ! Folder is not exist.\": \"Erreur ! Le dossier n’existe pas.\"\n\"Success ! Folder updated successfully.\": \"Succès ! Le dossier a été mis à jour avec succès. \"\n\"Error ! Folder does not exist.\": \"Erreur ! Le dossier nexiste pas.\"\n\"Success ! Folder deleted successfully.\": \"Succès ! Le dossier a été supprimé avec succès. \"\n\"Warning ! Folder doesnt exists!\": \"Attention ! Le dossier n'existe pas!\"\n\"Warning ! Cannot create ticket, given email is blocked by admin.\": \"Attention ! Impossible de créer un ticket, l'email étant bloqué par l'administrateur.\"\n\"Success ! Ticket has been created successfully.\": \"Succès ! Le ticket a été créé avec succès. \"\n\"Warning ! Can not create ticket, invalid details.\": \"Attention ! Impossible de créer un ticket, informations non valides. \"\n\"Warning ! Post size can not exceed 25MB\": \"Attention ! La taille du message ne doit pas dépasser 25 Mo\"\n\"Create Ticket Request\": \"Créer une demande de ticket\"\n\"Success ! Reply added successfully.\": \"Succès ! Réponse ajoutée avec succès.\"\n\"Warning ! Reply field can not be blank.\": \"Attention ! Le champ de réponse ne peut pas être vide.\"\n\"Success ! Rating has been successfully added.\": \"Succès ! La note a été ajoutée avec succès. \"\n\"Warning ! Invalid rating.\": \"Attention ! Classement non valide. \"\n\"Error ! Can not add customer as a collaborator.\": \"Erreur ! Impossible dajouter un client en tant que collaborateur. \"\n\"Success ! Collaborator added successfully.\": \"Succès ! Collaborateur ajouté avec succès. \"\n\"Error ! Collaborator is already added.\": \"Erreur ! Le collaborateur est déjà ajouté. \"\n\"Success ! Collaborator removed successfully.\": \"Succès ! Collaborateur supprimé avec succès. \"\n\"Error ! Invalid Collaborator.\": \"Erreur ! Collaborateur invalide. \"\n\"An unexpected error occurred. Please try again later.\": \"Une erreur inattendue est apparue. Veuillez réessayer plus tard.\"\n\"Feedback saved successfully.\": \"Commentaires enregistrés avec succès.\"\n\"Feedback updated successfully.\": \"Commentaires mis à jour avec succès.\"\n\"Invalid feedback provided.\": \"Commentaires non valides fournis.\"\n\"Article not found.\": \"Article non trouvé.\"\n\"You need to login to your account before can perform this action.\": \"Vous devez vous connecter à votre compte avant de pouvoir effectuer cette action.\"\n\"Warning! Please add valid Actions!\": \"Attention! Sil vous plaît ajouter des actions valides! \"\n\"Warning! In Free Plan you can not change Events!\": \"Attention ! Dans Free Plan, vous ne pouvez pas modifier les événements! \"\n\"Success! Prepared Response has been updated successfully.\": \"Succès ! La réponse préparée a été mise à jour avec succès. \"\n\"Success! Prepared Response has been added successfully.\": \"Succès ! La réponse préparée a été ajoutée avec succès. \"\n\"Warning  This is not a valid request\": \"Warning Ceci nest pas une requête valide\"\n\"Use Default Colors\": \"Utiliser les couleurs par défaut\"\n\"Masonry\": \"Maçonnerie\"\n\"Popular Article\": \"Article populaire\"\n\"Manage Ticket Custom Fields\": \"Gérer les champs personnalisés du ticket\"\n\"You dont have premission to edit this Prepared response\": \"Vous navez pas la permission de modifier cette réponse préparée\"\n\"Save Prepared Response\": \"Enregistrer la réponse préparée\"\n\"Success ! Prepared response removed successfully.\": \"Succès ! Réponse préparée supprimée avec succès. \"\n\"Warning! You are not allowed to perform this action.\": \"Attention! Vous nêtes pas autorisé à effectuer cette action. \"\n\"Success! Workflow has been updated successfully.\": \"Succès ! Le workflow a été mis à jour avec succès. \"\n\"Success! Workflow has been added successfully.\": \"Succès ! Le flux de travail a été ajouté avec succès. \"\n\"Success! Order has been updated successfully.\": \"Succès ! La commande a été mise à jour avec succès. \"\n\"Success! Workflow has been removed successfully.\": \"Succès ! Le workflow a été supprimé avec succès. \"\n\"Mailbox successfully created.\": \"Boîte aux lettres créée avec succès.\"\n\"Mailbox successfully updated.\": \"Boîte aux lettres mise à jour avec succès.\"\n\"Warning ! Bad request !\": \"Attention ! Mauvaise Demande !\"\n\"Error! Given current password is incorrect.\": \"Erreur! Le mot de passe actuel est incorrect. \"\n\"Success ! Profile update successfully.\": \"Succès ! Profil mis à jour avec succès. \"\n\"Error ! User with same email is already exist.\": \"Erreur ! email déjà utilisée. \"\n\"Success ! Agent updated successfully.\": \"Succès ! Agent mis à jour avec succès. \"\n\"Success ! Agent removed successfully.\": \"Succès ! Agent supprimé avec succès. \"\n\"Warning ! You are allowed to remove account owners account.\": \"Attention! Vous êtes autorisé à supprimer le compte du propriétaire du compte.\"\n\"Error ! Invalid user id.\": \"Erreur! Identifiant dutilisateur non valide.\"\n\"Success ! Filter has been saved successfully.\": \"Succès! Le filtre a été enregistré avec succès.\"\n\"Success ! Filter has been updated successfully.\": \"Succès! Le filtre a été mis à jour avec succès.\"\n\"Success ! Filter has been removed successfully.\": \"Succès! Le filtre a été supprimé avec succès.\"\n\"Please check your mail for password update.\": \"Veuillez vérifier votre courrier pour la mise à jour du mot de passe.\"\n\"This Email address is not registered with us.\": \"Cette adresse e-mail nest pas enregistrée avec nous.\"\n\"Success ! Customer saved successfully.\": \"Succès! Le client a été enregistré avec succès.\"\n\"Error ! User with same email already exist.\": \"Erreur ! email déjà utilisé.\"\n\"Success ! Customer information updated successfully.\": \"Succès ! Les informations client ont été mises à jour avec succès.\"\n\"Success ! Customer updated successfully.\": \"Succès! Client mis à jour avec succès.\"\n\"Error ! Customer with same email already exist.\": \"Erreur ! email déjà utilisé.\"\n\"unstarred Action Completed successfully\": \"Action sans succès terminée avec succès\"\n\"starred Action Completed successfully\": \"Action sélectionnée terminée avec succès\"\n\"Success ! Customer removed successfully.\": \"Succès ! Le client a été supprimé avec succès.\"\n\"Error ! Invalid customer id.\": \"Erreur! Identifiant client invalide.\"\n\"Success! Template has been updated successfully.\": \"Succès ! Le modèle a été mis à jour avec succès.\"\n\"Success! Template has been added successfully.\": \"Succès ! Template a été ajouté avec succès.\"\n\"Success! Template has been deleted successfully.\": \"Succès ! Le modèle a été supprimé avec succès.\"\n\"Warning! resource not found.\": \"Avertissement! Ressource non trouvée.\"\n\"Warning! You can not remove predefined email template which is being used in workflow(s).\": \"Attention! Vous ne pouvez pas supprimer le modèle de courrier électronique prédéfini utilisé dans les flux de travail.\"\n\"Success ! Email settings are updated successfully.\": \"Succès ! Les paramètres de messagerie sont mis à jour avec succès.\"\n\"Success ! Group information updated successfully.\": \"Succès ! Les informations du groupe ont été mises à jour avec succès.\"\n\"Success ! Group information saved successfully.\": \"Succès ! Les informations de groupe ont été enregistrées avec succès.\"\n\"Support Group removed successfully.\": \"Support Group supprimé avec succès.\"\n\"Success ! Privilege information saved successfully.\": \"Succès ! Les informations de privilège ont été enregistrées avec succès.\"\n\"Privilege updated successfully.\": \"Le privilège a été mis à jour avec succès.\"\n\"Support Privilege removed successfully.\": \"Support Privilege supprimé avec succès.\"\n\"Success! Reply has been updated successfully.\": \"Succès ! Reply a été mis à jour avec succès.\"\n\"Success! Reply has been added successfully.\": \"Succès ! Reply a été ajouté avec succès.\"\n\"Success! Saved Reply has been deleted successfully\": \"Succès ! La réponse enregistrée a été supprimée avec succès\"\n\"SwiftMailer configuration updated successfully.\": \"La configuration de SwiftMailer a été mise à jour avec succès.\"\n\"Swiftmailer configuration removed successfully.\": \"La configuration de Swiftmailer a été supprimée avec succès.\"\n\"Success ! Team information saved successfully.\": \"Succès ! Les informations de léquipe ont été enregistrées avec succès.\"\n\"Success ! Team information updated successfully.\": \"Succès ! Les informations de léquipe ont été mises à jour avec succès.\"\n\"Support Team removed successfully.\": \"Léquipe dassistance a été supprimée avec succès.\"\n\"Success! Reply has been added successfully\": \"Succès ! Reply a été ajouté avec succès\"\n\"Success ! Thread updated successfully.\": \"Succès ! Le fil a été mis à jour avec succès.\"\n\"Error ! Reply field can not be blank.\": \"Erreur ! Le champ de réponse ne peut pas être vide.\"\n\"Success ! Thread removed successfully.\": \"Succès ! Le fil a été supprimé avec succès.\"\n\"Success ! Thread locked successfully\": \"Succès ! Fil bloqué avec succès\"\n\"Success ! Thread unlocked successfully\": \"Succès ! Fil déverrouillé avec succès\"\n\"Success ! Thread pinned successfully\": \"Succès ! Sujet épinglé avec succès\"\n\"Error ! Invalid thread.\": \"Erreur ! Fil non valide.\"\n\"Could not create ticket, invalid details.\": \"Impossible de créer un ticket, détails non valides.\"\n\"Success ! Tag updated successfully.\": \"Succès ! Le tag a été mis à jour avec succès.\"\n\"Error ! Customer can not be added as collaborator.\": \"Erreur ! Le client ne peut pas être ajouté en tant que collaborateur.\"\n\"Success ! Tag unassigned successfully.\": \"Succès ! Tag retiré avec succès.\"\n\"Success ! Tag added successfully.\": \"Succès ! Tag ajouté avec succès.\"\n\"Please enter tag name.\": \"Sil vous plaît entrer le nom de la balise.\"\n\"Error ! Invalid tag.\": \"Erreur! Balise invalide.\"\n\"Success ! Type removed successfully.\": \"Succès ! Type supprimé avec succès.\"\n\"Success ! Ticket to label removed successfully.\": \"Succès ! Etiquette du ticket supprimée avec succès.\"\n\"Unable to retrieve support team details\": \"Impossible de récupérer les détails de léquipe de support\"\n\"Ticket support group updated successfully\": \"Le groupe de support de ticket a été mis à jour avec succès\"\n\"Unable to retrieve status details\": \"Impossible de récupérer les détails du statut\"\n\"Insufficient details provided.\": \"Détails insuffisants.\"\n\"Error! Subject field is mandatory\": \"Erreur ! Le champ sujet est obligatoire\"\n\"Error! Reply field is mandatory\": \"Erreur ! Le champ de réponse est obligatoire\"\n\"Success ! Ticket has been updated successfully.\": \"Succès ! Le ticket a été mis à jour avec succès.\"\n\"Success ! Label updated successfully.\": \"Succès ! Etiquette mise à jour avec succès.\"\n\"Error ! Invalid label id.\": \"Erreur ! Identifiant d'étiquette invalide.\"\n\"Success ! Label removed successfully.\": \"Succès ! Etiquette enlevée avec succès.\"\n\"Success ! Label created successfully.\": \"Succès ! Etiquette créé avec succès.\"\n\"Error ! Label name can not be blank.\": \"Erreur ! Le nom de létiquette ne peut pas être vide.\"\n\"Success ! Ticket moved to trash successfully.\": \"Succès ! Ticket déplacé avec succès dans la corbeille.\"\n\"Success! Ticket type saved successfully.\": \"Succès ! Le type de ticket a été enregistré avec succès.\"\n\"Success! Ticket type updated successfully.\": \"Succès ! Le type de ticket a été mis à jour avec succès.\"\n\"Error! Ticket type with same name already exist\": \"Erreur! Le type de ticket portant le même nom existe déjà\"\n\"SAVE\": \"ENREGISTRER\"\n\"# Save\": \"ENREGISTRER\"\n\"Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A pages title tag and meta description are usually shown whenever that page appears in search engine results\": \"Les balises de titre et les méta-descriptions sont des bits de code HTML dans len-tête dune page Web. Ils aident les moteurs de recherche à comprendre le contenu dune page. La balise de titre et la méta-description dune page sont généralement affichées chaque fois que cette page apparaît dans les résultats des moteurs de recherche.\"\n\n# Successfully Pop-up/Notification Messages:\n\"Ticket is already assigned to agent\" : \"Le ticket est déjà attribué à l'agent\"\n\"Success ! Agent assigned successfully.\" : \"Succès ! Agent attribué avec succès.\"\n\"Ticket status is already set\" : \"Le statut du ticket est déjà défini\"\n\"Success ! Tickets status updated successfully.\" : \"Succès ! Statut des tickets mis à jour avec succès.\"\n\"Ticket priority is already set\" : \"La priorité des tickets est déjà définie\"\n\"Success ! Tickets priority updated successfully.\" : \"Succès ! Priorité des tickets mise à jour avec succès.\"\n\"Ticket group is updated successfully\" : \"Le groupe de tickets est mis à jour avec succès\"\n\"Ticket is already assigned to group\" : \"Le ticket est déjà attribué au groupe\"\n\"Success ! Tickets group updated successfully.\" : \"Succès ! Groupe de tickets mis à jour avec succès.\"\n\"Ticket team is updated successfully\" : \"L'équipe de tickets est mise à jour avec succès\"\n\"Ticket is already assigned to team\" : \"Le ticket est déjà attribué à l'équipe\"\n\"Success ! Tickets team updated successfully.\" : \"Succès ! L'équipe des tickets a été mise à jour avec succès.\"\n\"Ticket type is already set\" : \"Le type de billet est déjà défini\"\n\"Success ! Tickets type updated successfully.\" : \"Succès ! Type de ticket mis à jour avec succès.\"\n\"Success ! Tickets label updated successfully.\" : \"Succès ! L'étiquette des billets a été mise à jour avec succès.\"\n\"Success ! Tickets added to label successfully.\" : \"Succès ! Tickets ajoutés au libellé avec succès.\"\n\"Success ! Tickets moved to trashed successfully.\" : \"Succès ! Les tickets ont été placés dans la corbeille avec succès.\"\n\"Success ! Tickets removed successfully.\" : \"Succès ! Tickets supprimés avec succès.\"\n\"Success ! Tickets restored successfully.\" : \"Succès ! Les tickets ont été restaurés avec succès.\"\n\"Unable to retrieve group details\" : \"Impossible de récupérer les détails du groupe\"\n\"Unable to retrieve team details\" : \"Impossible de récupérer les détails de l'équipe\"\n\"Tickets details have been updated successfully\": \"Les détails des billets ont été mis à jour avec succès\"\n\"Label added to ticket successfully\" : \"Libellé ajouté au ticket avec succès\"\t\t\t\t\n\"Label already added to ticket\" : \"Libellé déjà ajouté au ticket\"\n\n#customer page\n\"New Ticket Request\": \"Nouvelle demande de ticket\"\n\"Ticket Requests\": \"Demandes de tickets\"\n\"Tickets have been updated successfully\": \"Les tickets ont été mis à jour avec succès \"\n\"Please check your mail for password update\": \"Veuillez vérifier votre courrier pour la mise à jour du mot de passe\"\n\"This email address is not registered with us\": \"Cette adresse e-mail n'est pas enregistrée chez nous\"\n\"You have already update password using this link if you wish to change password again click on forget password link here from login page\": \"Vous avez déjà mis à jour le mot de passe en utilisant ce lien si vous souhaitez changer de mot de passe à nouveau cliquez sur le lien oublier le mot de passe ici depuis la page de connexion\"\n\"Your password has been successfully updated. Login using updated password\": \"Votre mot de passe a été modifié avec succès. Connectez-vous en utilisant un mot de passe mis à jour\"\n\"Please try again, The passwords do not match\": \"Veuillez réessayer, les mots de passe ne correspondent pas\"\n\"Support Privilege removed successfully\": \"Support Privilege supprimé avec succès\"\n\"Success! Saved Reply has been deleted successfully.\": \"Succès! La réponse enregistrée a été supprimée avec succès.\"\n\"SwiftMailer configuration created successfully.\": \"La configuration de SwiftMailer a été créée avec succès.\"\n\"No swiftmailer configurations found for mailer id:\": \"Aucune configuration swiftmailer trouvée pour l'identifiant de l'expéditeur\"\n\"Reply content cannot be left blank.\": \"Le contenu de la réponse ne peut pas être laissé vide.\"\n\"Reply added to the ticket and forwarded successfully.\": \"Réponse ajoutée au ticket et transférée avec succès.\"\n\"Success ! Thread pinned successfully.\": \"Succès ! Sujet épinglé avec succès.\"\n\"Success ! unpinned removed successfully.\": \"Succès ! épingle supprimée avec succès.\"\n\"Unable to retrieve priority details\": \"Impossible de récupérer les détails de priorité\"\n\"Ticket support team updated successfully\": \"L'équipe d'assistance aux tickets a été mise à jour avec succès\"\n\"Ticket assigned to support group \": \"Ticket attribué au groupe de support\"\n\"Mailbox configuration removed successfully.\": \"La configuration de la boîte aux lettres a bien été supprimée.\"\n\"visit our website\": \"visitez notre site Internet\"\n\"Cookie Usage Policy\": \"Politique d'utilisation des cookies\"\n\"cookie\": \"cookie\"\n\"cookies\": \"cookies\"\n\"HELP\": \"AIDEZ-MOI\"\n\"Home\": \"Accueil\"\n\"Cookie Policy\": \"Politique de cookies\"\n\"Prev\": \"Précédent\"\n\"Ticket query message\": \"Message du ticket\"\n\"Select type\": \"Sélectionnez le type\"\n\"Search KnowledgeBase\": \"Rechercher dans la base de connaissances\"\n\"You cant merge an account with itself.\": \"Vous ne pouvez pas fusionner un compte avec lui-même.\"\n\"Edit Profile\": \"Editer le profil\"\n\"Customer Login\": \"Login client\"\n\"Contact Us\": \"Contactez-nous\"\n\"If you have ever contacted our support previously, your account would have already been created.\": \"Si vous avez contacté notre service d'assistance par le passé, votre compte a déjà été créé.\"\n\"support\": \"support\"\n\"HelpDesk\": \"Centre de support\"\n\"Enter search keyword\": \"Entrez le mot clé de la recherche\"\n\"Browse via Folders\": \"Parcourir via les dossiers\"\n\"Looking for something that is queried generally? Choose a relevant folder from below to explore possible solutions\": \"Vous cherchez quelque chose qui fait l'objet d'une demande générale ? Choisissez un dossier pertinent parmi les suivants pour explorer les solutions possibles\"\n\"Unable to find an answer?\": \"Impossible de trouver une réponse ?\"\n\"Looking for anything specific article which resides in general queries? Just browse the various relevant folders and categories and then you will find the desired article.\": \"Vous recherchez un article spécifique qui réside dans des requêtes générales? Il suffit de parcourir les différents dossiers et catégories pertinents pour trouver l’article souhaité.\"\n\"Popular Articles \": \"Articles populaires\"\n\"Here are some of the most popular articles, which helped number of users to get their queries and questions resolved. \": \"Voici quelques-uns des articles les plus populaires, qui ont aidé nombre dutilisateurs à résoudre leurs requêtes et questions.\"\n\"Browse via Categories\": \"Parcourir les catégories\"\n\"Looking for something specific? Choose a relevant category from below to explore possible solutions\": \"Vous cherchez quelque chose de spécifique ? Choisissez une catégorie pertinente ci-dessous pour explorer les solutions possibles\"\n\"No Categories Found!\": \"Aucune catégorie trouvée\"\n\"Powered by\": \"Alimenté par\"\n\"Powered by %uvdesk%, an open-source project by %webkul%.\": \"Propulsé par %uvdesk%, un projet open source de %webkul%.\"\n\n#forgotpassword\n\"Forgot Password\": \"Mot de passe oublié\"\n\"Enter your email address and we will send you an email with instructions to update your login credentials.\": \"Entrez votre adresse e-mail et nous vous enverrons un e-mail avec les instructions pour mettre à jour vos informations de connexion.\"\n\"Send Mail\": \"Envoyer un email\"\n\"Status:\" : \"Statut:\"\n\"Sign In to %websitename%\": \"Connectez-vous à %websitename%\"\n\"Enter your name\": \"Entrez votre nom\"\n\"Enter your email\": \"Entrer votre Email\"\n\"Learn more about %deliveryStatus%.\": \"En savoir plus sur  %deliveryStatus%.\"\n\"To know more about how our privacy policy works, please %websiteLink%.\": \"Pour en savoir plus sur le fonctionnement de notre politique de confidentialité, veuillez %websiteLink%.\"\n\"Some of our site pages utilize %cookies% and other tracking technologies. A %cookie% is a small text file that may be used, for example, to collect information about site activity. Some cookies and other technologies may serve to recall personal information previously indicated by a site user. You may block cookies, or delete existing cookies, by adjusting the appropriate setting on your browser. Please consult the %help% menu of your browser to learn how to do this. If you block or delete %cookies% you may find the usefulness of our site to be impaired.\": \"Certaines de nos pages de site utilisent %cookies% et d’autres technologies de suivi. Un %cookie% est un petit fichier texte pouvant être utilisé, par exemple, pour collecter des informations sur lactivité du site. Certains cookies et autres technologies peuvent servir à rappeler des informations personnelles précédemment indiquées par un utilisateur du site. Vous pouvez bloquer les cookies ou supprimer des cookies existants en ajustant les paramètres appropriés de votre navigateur. Veuillez consulter le menu %help% de votre navigateur pour savoir comment procéder. Si vous bloquez ou supprimez %cookies%, vous constaterez peut-être que lutilité de notre site est compromise.\"\n\"This field contain maximum 40 charectures.\": \"Ce champ contient au maximum 40 caractères.\"\n\"This field contain maximum 50 charectures.\": \"Ce champ contient au maximum 50 caractères.\"\n\"Time\": \"Temps\"\n\"Links\": \"Liens\"\n\"Broadcast Message\": \"Message de diffusion\"\n\"Wide Logo\": \"Logo large\"\n\"Upload an Image (200px x 48px) in</br> PNG or JPG Format\": \"Télécharger une image (200px x 48px) au format </br> PNG ou JPG\"\n\"It will be shown as Logo on Knowledgebase and Helpdesk\": \"Il sera affiché sous forme de logo dans la base de connaissances et le Helpdesk\"\n\"Website Status\": \"Statut du site\"\n\"Enable front end website and knowledgebase for customer(s)\": \"Activer le site Web frontal et la base de connaissances pour le (s) client (s)\"\n\"Brand Color\": \"Couleur de la marque\"\n\"Page Background Color\": \"Couleur de fond de la page\"\n\"Header Background Color\": \"Couleur de fond de len-tête\"\n\"Banner Background Color\": \"Couleur de fond de la bannière\"\n\"Page Link Color\": \"Couleur du lien de page\"\n\"Page Link Hover Color\": \"Couleur de survol de lien de page\"\n\"Article Text Color\": \"Couleur du texte de larticle\"\n\"Tag Line\": \"Tag line\"\n\"Hi! how can we help?\": \"Salut! Comment pouvons-nous vous aider?\"\n\"Layout\": \"Disposition\"\n\"Ticket Create Option\": \"Option de création de ticket\"\n\"Login Required To Create Tickets\": \"Connexion requise pour créer des tickets\"\n\"Remove Customer Login/Signin Button\": \"Supprimer le login / le bouton de connexion\"\n\"Disable Customer Login\": \"Désactiver la connexion client\"\n\"Meta Description (Recommended)\": \"Meta Description (Recommandé)\"\n\"Meta Keywords (Recommended)\": \"Meta Keywords (Recommandé)\"\n\"Header Link\": \"Lien den-tête\"\n'URL (with http\":/\"/ or https\":/\"/)': 'URL (avec http\": \"// ou https\": \"//)'\n\"Footer Link\": \"Lien de pied de page\"\n\"Custom CSS (Optional)\": \"CSS personnalisé (facultatif)\"\n\"It will be add to the frontend knowledgebase only\": \"Il sera ajouté à la base de connaissances frontale uniquement\"\n\"Custom Javascript (Optional)\": \"Javascript personnalisé (facultatif)\"\n\"Broadcast message content to show on helpdesk\": \"Diffuser le contenu du message à afficher sur le support technique\"\n\"From\": \"De\"\n\"Time duration between which message will be displayed(if applicable)\": \"Durée pendant laquelle le message sera affiché (si applicable)\"\n\"Broadcasting Status\": \"Statut de diffusion\"\n\"Broadcasting is Active\": \"La diffusion est active\"\n\"Choose a default company timezone\": \"Choisir le fuseau horaire dune entreprise par défaut\"\n\"Date Time Format\": \"Format date-heure\"\n\"Choose a format to convert date to specified date time format\": \"Choisissez un format pour convertir la date au format de date / heure spécifié\"\n\"An empty file is not allowed.\": \"Un fichier vide nest pas autorisé.\"\n\"File size must not be greater than 200KB !!\": \"La taille du fichier ne doit pas dépasser 200 Ko !!\"\n'comma \",\" separated': 'séparées par des virgules'\n\"Please upload valid Image file (Only JPEG, JPG, PNG allowed)!!\": \"Merci de télécharger un fichier image valide (JPEG, JPG, PNG uniquement) !!\"\n\"Provide a valid url(with protocol)\": \"Fournir une URL valide (avec protocole)\"\n\"Low\": \"Faible\"\n\"Medium\": \"Moyen\"\n\"High\": \"Haut\"\n\"Urgent\": \"Urgent\"\n\"Reset Password\": \"Réinitialiser le mot de passe\"\n\"Enter your new password below to update your login credentials\": \"Entrez votre nouveau mot de passe ci-dessous pour mettre à jour vos informations de connexion\"\n\"Save Password\": \"Enregistrer le mot de passe\"\n\"Rate Support\": \"Assistance tarifaire\"\n\"I am very Sad\": \"Je suis très déçu\"\n\"I am Sad\": \"Je suis déçu\"\n\"I am Neutral\": \"je suis neutre\"\n\"I am Happy\": \"Je suis content\"\n\"I am Very Happy\": \"Je suis très heureux\"\n\"Kudos\": \"Appréciations\"\n\"kudos\": \"Appréciations\"\n\"Very Sad\": \"Très déçu\"\n\"Sad\": \"Déçu\"\n\"Neutral\": \"Neutre\"\n\"Happy\": \"Heureux\"\n\"Very Happy\": \"Très heureux\"\n\"Star(s)\": \"Étoile(s)\"\n\"Warning ! Swiftmailer not working. An error has occurred while sending emails!\" : \"Avertissement ! Swiftmailer ne fonctionne pas. Une erreur s'est produite lors de l'envoi des e-mails !\"\n\"Invalid credentials.\": \"Informations d'identification invalides.\"\n\"Success ! Project cache cleared successfully.\": \"Succès ! Cache du projet effacé avec succès.\"\n\"clear cache\": \"vider le cache\"\n\"Last Updated\": \"Dernière mise à jour\"\n\"Error! Something went wrong.\": \"Erreur! Quelque chose s'est mal passé.\"\n\"We were not able to find the page you are looking for.\": \"Nous n'avons pas pu trouver la page que vous recherchez.\"\n\"Page not found\": \"Page non trouvée\"\n\"Forbidden\": \"Interdit\"\n\"You don’t have the necessary permissions to access this Web page :(\": \"Vous n'avez pas les autorisations nécessaires pour accéder à cette page Web :(\"\n\"Internal server error\": \"Erreur Interne du Serveur\"\n\"Our system has goofed up for a while, but good part is it won't last long\": \"Notre système a gaffé pendant un certain temps, mais la bonne nouvelle est que ça ne durera pas longtemps\"\n\"Unknown Error\": \"Erreur inconnue\"\n\"We are quite confused about how did you land here:/\": \"Nous sommes assez confus quant à la façon dont vous avez atterri ici :/\"\n\"Few of the links which may help you to get back on the track -\": \"Quelques liens qui peuvent vous aider à vous remettre sur la bonne voie -\"\n\n#Microsoft apps:\n\"Microsoft Apps\": \"Applications Microsoft\"\n\"Add a Microsoft app\": \"Ajouter une application Microsoft\"\n\"Enable\": \"Activée\"\n\"App Name\": \"Nom de l'application\"\n\"Tenant Id\": \"Identifiant du locataire\"\n\"Client Id\": \"Identité du client\"\n\"Client Secret\": \"Clé secrète du client\"\n\"NEW APP:\": \"NOUVELLE APPLICATION\"\n\"UPDATE APP\": \"MISE À JOUR DE L'APPLICATION\"\n\"Guide on creating a new app in Azure Active Directory:\": \"Guide sur la création d'une nouvelle application dans Azure Active Directory :\"\n\"To add a new Microsoft App to your azure active directory, follow the steps as given below:\": \"Pour ajouter une nouvelle application Microsoft à votre répertoire actif Azure, suivez les étapes ci-dessous :\"\n\"Go to Azure Active Directory -> App registerations\": \"Accédez à Azure Active Directory -> Enregistrements d'applications\"\n\"Disable\": \"Désactiver\"\n\"Please enter a valid name for your app.\": \"Veuillez saisir un nom valide pour votre application.\"\n\"Please enter a valid tenant id.\": \"Veuillez entrer un identifiant de locataire valide.\"\n\"Please enter a valid client id.\": \"Veuillez saisir un identifiant client valide.\"\n\"Please enter a valid client secret.\": \"Veuillez entrer un secret client valide.\"\n\"Microsoft app settings\": \"Paramètres de l'application Microsoft\"\n\"Unverified\": \"Non vérifié\"\n\"Microsoft app has been updated successfully.\": \"L'application Microsoft a été mise à jour avec succès.\"\n\"No microsoft apps found\": \"Aucune application Microsoft trouvée\"\n\"Microsoft app settings could not be verifired successfully. Please check your settings and try again later.\": \"Les paramètres de l'application Microsoft n'ont pas pu être vérifiés avec succès. Veuillez vérifier vos paramètres et réessayer plus tard.\"\n\"Microsoft app has been integrated successfully.\": \"L'application Microsoft a été supprimée avec succès.\"\n\"Microsoft app has been deleted successfully.\": \"L'application Microsoft a été intégrée avec succès.\"\n\"Verified\": \"Vérifié\"\n\n\"Create a New Registration\": \"Créer un nouvel enregistrement\"\n\"Enter your app details as following:\": \"Entrez les détails de votre application comme suit :\"\n\"App Name: Enter an app name to easily help you identify its purpose\": \"Nom de l'application : entrez un nom d'application pour vous aider à identifier facilement son objectif\"\n\"Supported Account Types: Select whichever option works the best for you (Recommended: Accounts in any organizational directory and personal Microsoft accounts)\": \"Types de comptes pris en charge : sélectionnez l'option qui vous convient le mieux (recommandé : comptes dans n'importe quel répertoire organisationnel et comptes Microsoft personnels)\"\n\"Redirect URI:\": \"URI de redirection:\"\n\"Select Platform: Web\": \"Sélectionnez la plate-forme : Web\"\n\"Enter the following redirect uri:\": \"Saisissez l'URI de redirection suivante:\"\n\"Proceed to create your application\": \"Procédez à la création de votre application\"\n\"Once your app has been created, in your app overview section, continue with adding a client credential by clicking on \\\"Add a certificate or secret\\\"\": \"Une fois votre application créée, dans la section de présentation de votre application, continuez avec l'ajout d'un identifiant client en cliquant sur Ajouter un certificat ou un secret\"\n\"Create a new client secret\": \"Créer un nouveau secret client\"\n\"Enter a description as per your preference to help identify the purpose of this client secret\": \"Entrez une description selon vos préférences pour aider à identifier l'objectif de ce secret client\"\n\"Choose an expiration time as per your preference\": \"Choisissez un délai d'expiration selon vos préférences\"\n\"Proceed to add your client secret\": \"Continuez pour ajouter votre secret client\"\n\"Copy the client secret value which will be needed later and cannot be viewed again\": \"Copiez la valeur du secret client qui sera nécessaire plus tard et ne pourra plus être visualisée\"\n\"Navigate to API permissions\": \"Accédez aux autorisations de l'API\"\n\"Click on \\\"Add a permission\\\" to add a new api permission. Add the following delegated permissions by selecting Microsoft APIs > Microsoft Graph > Delegate Permissions\": \"Cliquez sur Ajouter une autorisation pour ajouter une nouvelle autorisation API. Ajoutez les autorisations déléguées suivantes en sélectionnant API Microsoft > Microsoft Graph > Autorisations déléguées\"\n\"Navigate to your app overview section\": \"Accédez à la section de présentation de votre application\"\n\"Copy the Application (Client) Id\": \"Copiez l'identifiant de l'application (client)\"\n\"Copy the Directory (Tenant) Id\": \"Copiez l'identifiant de l'annuaire (locataire)\"\n\"Enter your client id, tenant id, and client secret in settings above as required.\": \"Entrez votre identifiant client, votre identifiant de locataire et votre secret client dans les paramètres ci-dessus, selon les besoins.\"\n\"offline_access\": \"accès_hors ligne\"\n\"openid\": \"ID ouvert\"\n\"profile\": \"profil\"\n\"User.Read\": \"Utilisateur.Lire\"\n\"IMAP.AccessAsUser.All\": \"IMAP.AccessAsUser.All\"\n\"SMTP.Send\": \"SMTP.Envoyer\"\n\"POP.AccessAsUser.All\": \"POP.AccessAsUser.All\"\n\"Mail.Read\": \"Courrier.Lire\"\n\"Mail.ReadBasic\": \"Mail.ReadBasic\"\n\"Mail.Send\": \"Courrier.Envoyer\"\n\"Mail.Send.Shared\": \"Courrier.Envoyer.Partagé\"\n\"Add App\": \"Ajouter une application\"\n\"New App\": \"Nouvelle application\"\n\n#Mailbox option:\n\"Disable email delivery\": \"Désactiver la livraison des e-mails\"\n\"Use as default mailbox for sending emails\": \"Utiliser comme boîte aux lettres par défaut pour envoyer des e-mails\"\n\"Inbound Emails\": \"E-mails entrants\"\n\"Manage how you wish to retrieve and process emails from your mailbox.\": \"Gérez la manière dont vous souhaitez récupérer et traiter les e-mails de votre boîte aux lettres.\"\n\"Outbound Emails\": \"E-mails sortants\"\n\"Manage how you wish to send emails from your mailbox.\": \"Gérez la façon dont vous souhaitez envoyer des e-mails depuis votre boîte aux lettres.\"\n\n\"Marketing Modules\" : \"Modules de marketing\"\n\"New Marketing Module\": \"Nouveau module marketing\"\n\"Marketing Module\": \"Module Marketing\""
  },
  {
    "path": "translations/messages.he.yml",
    "content": "\"Signed in as\": \"מחובר בתור\"\n\"Your Profile\": \"הפרופיל שלך\"\n\"Create Ticket\": \"פתח קריאה\"\n\"Create Agent\": \"צור סוכן\"\n\"Create Customer\": \"צור לקוח\"\n\"Sign Out\": \"צא מהמשתמש\"\n\"Default Language (Optional)\": \"שפת ברירת מחדל (אופציונלי)\"\n\"Username/Email\": \"יוזר/מייל\"\n\"create new\": \"צור חדש\"\n\"Ticket Information\": \"מידע על הקריאה\"\n\"CC/BCC\": \"עותק, עותק מוסתר\"\n\"Success! Label created successfully.\": \"התווית נוצרה בהצלחה.\"\n\"Success! Label removed successfully.\": \"התווית הוסרה בהצלחה.\"\n\"Reports\": \"דוחות\"\n\"Rating\": \"דירוג\"\n\"Kudos Rating\": \"דירוג כבוד\"\n\"Remove profile picture\": \"הסר תמונת פרופיל\"\n\"Success ! Profile updated successfully.\": \"הפרופיל עודכן בהצלחה.\"\n\"Howdy\": \"הידד\"\n\"Form successfully updated.\": \"הטופס עודכן בהצלחה.\"\n\"NEW FORM\": \"טופס חדש\"\n\"Text Box\": \"תיבת טקסט\"\n\"Text Area\": \"איזור טקסט\"\n\"Select\": \"בחר\"\n\"Radio\": \"רדיו\"\n\"Checkbox\": \"תיבת סימון\"\n\"Date\": \"תאריך\"\n\"Both Date and Time\": \"תאריך ושעה\"\n\"Choose a status\": \"בחר סטטוס\"\n\"Choose a group\": \"בחר קבוצה\"\n\"Choose your default timeformat\": \"בחר בפורמט זמן שישמש כברירת מחדל\"\n\"Can manage Group's Saved Reply\": \"יכול לנהל את התגובה השמורה של הקבוצה\"\n\"Can manage agent activity\": \"יכול לנהל פעילות של סוכן\"\n\"Slug is the url identity of this article. We will help you to create valid slug at time of typing.\": \"Slug הוא הזהות של המאמר בכתובת האתר. אנו נעזור לך ליצור Slug חוקי בזמן ההקלדה.\"\n\"The URL for this article\": \"הקישור עבור מאמר זה\"\n\"Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A page's title tag and meta description are usually shown whenever that page appears in search engine results\": \"תגי כותרת ומטא תיאורים הם פיסות קוד HTML בכותרת של דף אינטרנט. הם עוזרים למנועי החיפוש להבין את התוכן בדף. תג כותרת ומטא תיאור של דף מוצגים בדרך כלל בכל פעם שדף זה מופיע בתוצאות של מנוע החיפוש\"\n\"comma separated (,)\": \"מופרד בפסיק (,)\"\n\"Article Title\": \"כותרת המאמר\"\n\"Start typing few charactors and add set of relevant article from the list\": \"התחל להקליד כמה תווים והוסף סט של מאמר רלוונטי מהרשימה\"\n\"Success! Announcement data saved successfully.\": \"נתוני ההודעה נשמרו בהצלחה.\"\n\"Success! Category has been added successfully.\": \"הקטגוריה נוספה בהצלחה.\"\n\"Success ! Agent added successfully.\": \"הסוכן נוסף בהצלחה.\"\n\"Success! Privilege information saved successfully.\": \"המידע על ההרשאות נשמר בהצלחה.\"\n\"Edit Prepared Response\": \"ערוך תשובה מוכנה מראש\"\n\"Success! Type removed successfully.\": \"הסוג הוסר בהצלחה.\"\n\"No results available\": \"לא נמצאו התאמות\"\n\"Success ! Prepared Response applied successfully.\": \"תגובה מוכנה הוחלה בהצלחה.\"\n\"Note added to ticket successfully.\": \"הערה נוספה לקריאה בהצלחה.\"\n\"Ticket status update to Spam\": \"עדכון סטטוס הקריאה לספאם\"\n\"Ticket status update to Closed\": \"עדכון סטטוס הקריאה לסגור\"\n\"Success! Label updated successfully.\": \"התווית עודכנה בהצלחה.\"\n\"Success ! Helpdesk details saved successfully\": \"פרטי ההלפ דסק נשמרו בהצלחה\"\n\"Can manage marketing announcement\": \"יכול לנהל הודעות שיווקיות\"\n\"User Forgot Password\": \"משתמש שכח סיסמה\"\n\"Agent Deleted\": \"הסוכן נמחק\"\n\"Agent Update\": \"עדכן סוכן\"\n\"Customer Update\": \"הלקוח עודכן\"\n\"Customer Deleted\": \"הלקוח נמחק\"\n\"Agent Updated\": \"הסוכן עודכן\"\n\"Agent Reply\": \"תשובת הסוכן\"\n\"Collaborator Added\": \"שותף עריכה נוסף\"\n\"Collaborator Reply\": \"תשובת משתף פעולה\"\n\"Customer Reply\": \"תשובת לקוח\"\n\"Ticket Deleted\": \"הקריאה נמחקה\"\n\"Group Updated\": \"הקבוצה נמחקה\"\n\"Note Added\": \"נוספה תגובה\"\n\"Priority Updated\": \"עדיפות נוספה\"\n\"Status Updated\": \"הסטטוס התעדכן\"\n\"Team Updated\": \"הקבוצה עודכנה\"\n\"Thread Updated\": \"השרשור עודכן\"\n\"Type Updated\": \"הסוג עודכן\"\n\"From Email\": \"מדואר אלקטרוני\"\n\"To Email\": \"אל דואר אלקטרוני\"\n\"Is Equal To\": \"שווה ל\"\n\"Is Not Equal To\": \"אינו שווה ל\"\n\"Contains\": \"מכיל\"\n\"Does Not Contain\": \"אינו מכיל\"\n\"Starts With\": \"מתחיל עם\"\n\"Ends With\": \"מסתיים עם\"\n\"Before On\": \"לפני\"\n\"After On\": \"אחרי\"\n\"Mail To User\": \"מייל למשתמש\"\n\"Transfer Tickets\": \"העבר קריאה\"\n\"Mail To Customer\": \"מייל ללקוח\"\n\"Permanently delete from Inbox\": \"מחק לצמיתות מתיבת הדואר הנכנס\"\n\"Agent Activity\": \"פעילות סוכן\"\n\"Report From\": \"דווח מאת\"\n\"Search Agent\": \"חיפוש סוכן\"\n\"Agent Last Reply\": \"תגובה אחרונה של סוכן\"\n\"View analytics and insights to serve a better experience for your customers\": \"ניתוח ותובנה לגבי זרימת העבודה שלך\"\n\"Marketing Announcement\": \"הודעת שיווק\"\n\"Advertisement\": \"פרסומת\"\n\"Announcement\": \"הכרזה\"\n\"New Announcement\": \"הכרזה חדשה\"\n\"Add Announcement\": \"הוסף הכרזה\"\n\"Edit Announcement\": \"ערוך הכרזה\"\n\"Promo Text\": \"טקסט פרומו\"\n\"Promo Tag\": \"תגית פרומו\"\n\"Choose a promo tag\": \"בחר תגית לפרומו\"\n\"Tag-Color\": \"צבע תגית\"\n\"Tag background color\": \"צבע רקע של תגית\"\n\"Link Text\": \"קשר טקסט\"\n\"Link URL\": \"כתובת הקישור\"\n\"Apps\": \"אפליקציות\"\n\"Integrate apps as per your needs to get things done faster than ever\": \"התקן אפליקציות מותאמות אישית חדשות כדי להגביר את הפרודוקטיביות שלך - <a href='https://store.webkul.com/UVdesk/UVdesk-Open-Source.html' style='font-weight: bold' target='_blank'>חקור עכשיו</a>\"\n\"Explore Apps\": \"סייר באפליקציות\"\n\"Form Builder\": \"יוצר טפסים\"\n\"Knowledgebase\": \"מאגר ידע\"\n\"Knowledgebase is a source of rigid and complex information which helps Customers to help themselves\": \"עזרו ללקוחות שלכם לעזור לעצמם! חסוך זמן בתמיכה על ידי בניית מאגר הידע שלך.\"\n\"Articles\": \"מאמרים\"\n\"Categories\": \"קטגוריות\"\n\"Folders\": \"תיקיות\"\n\"FOLDERS\": \"תיקיות\"\n\"Productivity\": \"פרודקטיביות\"\n\"Automate your processes by creating set of rules and presets to respond faster to the tickets\": \"צור כללי אוטומציה כדי להאיץ את זרימת העבודה שלך.\"\n\"Prepared Responses\": \"תגובות מוכנות\"\n\"Saved Replies\": \"תגובות שמורות\"\n\"Edit Saved Reply\": \"ערוך תגובות שמורות\"\n\"Ticket Types\": \"סוגי קריאות\"\n\"Workflows\": \"זרימות עבודה\"\n\"Settings\": \"הגדרות\"\n\"Manage your Brand Identity, Company Information and other details at a glance\": \"נהל את זהות המותג שלך, פרטי החברה ופרטים אחרים במבט חטוף\"\n\"Branding\": \"מיתוג\"\n\"Custom Fields\": \"שדות מותאמים אישית\"\n\"Email Settings\": \"הגדרות מייל\"\n\"Email Templates\": \"תבניות מייל\"\n\"Mailbox\": \"תיבת מייל\"\n\"Spam Settings\": \"הגדרות דואר זבל\"\n\"Swift Mailer\": \"סוויפט מיילר\"\n\"Tags\": \"תגיות\"\n\"Users\": \"יוזרים\"\n\"Control your Groups, Teams, Agents and Customers\": \"נהל את הקבוצות, הצוותים, הסוכנים והלקוחות שלך\"\n\"Agents\": \"סוכנים\"\n\"Customers\": \"לקוחות\"\n\"Groups\": \"קבוצות\"\n\"Privileges\": \"הרשאות\"\n\"Teams\": \"צוותים\"\n\"Applications\": \"אפליקציות\"\n\"ECommerce Order Syncronization\": \"סנכרון הזמנות מסחר אלקטרוני\"\n\"Import ecommerce order details to your support tickets from different available platforms\": \"ייבא פרטי הזמנת מסחר אלקטרוני לכרטיסי התמיכה שלך מפלטפורמות זמינות שונות\"\n\"Search\": \"חיפוש\"\n\"Sort By\": \"מיין לפי\"\n\"Sort By:\" : \"מיין לפי:\"\n\"Status\" : \"סטטוס\"\n\"Created At\": \"נוצר ב\"\n\"Name\": \"שם\"\n\"All\": \"הכל\"\n\"Published\": \"פורסם\"\n\"Draft\": \"טיוטה\"\n\"New Folder\": \"תיקיה חדשה\"\n\"Create Knowledgebase Folder\": \"צור תיקיית מאגר ידע\"\n\"You did not add any folder to your Knowledgebase yet, Create your first Folder and start adding Categories/Articles to make your customers help themselves.\": \"עדיין אין לך תיקיות! צור את התיקיה הראשונה שלך והתחל להוסיף מאמרים.\"\n\"Clear Filters\": \"נקה מסננים\"\n\"Back\": \"אחורה\"\n\"Open\": \"פתח\"\n\"Pending\": \"ממתין\"\n\"Answered\": \"נענה\"\n\"Resolved\": \"נפתר\"\n\"Closed\": \"נסגר\"\n\"Spam\": \"ספאם\"\n\"New\": \"חדש\"\n\"UnAssigned\": \"לא משוייך\"\n\"UnAnswered\": \"לא נענה\"\n\"My Tickets\": \"הקריאות שלי\"\n\"Starred\": \"סומנו בכוכב\"\n\"Trashed\": \"נזרקו לפח\"\n\"New Label\": \"תווית חדשה\"\n\"Tickets\": \"קריאות\"\n\"Ticket Id\": \"מספר קריאה\"\n\"Last Replied\": \"נענה לאחרונה\"\n\"Assign To\": \"שוייך אל\"\n\"After Reply\": \"לאחר מענה\"\n\"Customer Email\": \"מייל לקוח\"\n\"Customer Name\": \"שם לקוח\"\n\"Assets Visibility\": \"נראות נכסים\"\n\"Channel/Source\": \"ערוץ מקור\"\n\"Channel\": \"ערוץ\"\n\"Website\": \"אתר\"\n\"Timestamp\": \"חתימת זמן\"\n\"TimeStamp\": \"חתימת זמן\"\n\"Team\": \"קבוצה\"\n\"Type\": \"סוג\"\n\"Replies\": \"תגובות\"\n\"Agent\": \"לקוח\"\n\"ID\": \"מספר זהות\"\n\"Subject\": \"נושא\"\n\"Last Reply\": \"נענה לאחרונה\"\n\"Filter View\": \"תצוגת סינון\"\n\"Please select CAPTCHA\": \"אנא בחר CAPTCHA\"\n\"Warning ! Please select correct CAPTCHA !\": \"CAPTCHA נכשל, אנא נסה שוב\"\n\"reCAPTCHA Setting\": \"הגדרת reCAPTCHA\"\n\"reCAPTCHA Site Key\": \"מפתח אתר reCAPTCHA\"\n\"reCAPTCHA Secret key\": \"מפתח סודי reCAPTCHA\"\n\"reCAPTCHA Status\": \"מצב reCAPTCHA\"\n\"reCAPTCHA is Active\": \"reCAPTCHA פעיל\"\n\"Save set of filters as a preset to stay more productive\": \"שמור מסננים כקבוע מראש\"\n\"Saved Filters\": \"מסננים שמורים\"\n\"No saved filter created\": \"לא נוצר מסנן שמור\"\n\"Customer\": \"לקוח\"\n\"Priority\": \"עדיפות\"\n\"Tag\": \"תגית\"\n\"Source\": \"מקור\"\n\"Before\": \"לפני\"\n\"After\": \"אחרי\"\n\"Replies less than\": \"תשובות פחות מ\"\n\"Replies more than\": \"תשובות יותר מ\"\n\"Clear All\": \"נקה הכל\"\n\"Account\": \"חשבון\"\n\"Profile\": \"פרופיל\"\n\"Upload a Profile Image (100px x 100px)<br> in PNG or JPG Format\": \"העלה תמונת פרופיל (100px x 100px)<br> בפורמט PNG או JPG\"\n\"First Name\": \"שם פרטי\"\n\"Last Name\": \"שם משפחה\"\n\"Email\": \"מייל\"\n\"Contact Number\": \"מספר איש קשר\"\n\"Timezone\": \"Timezone\"\n\"Africa/Abidjan\": \"Africa/Abidjan\"\n\"Africa/Accra\": \"Africa/Accra\"\n\"Africa/Addis_Ababa\": \"Africa/Addis_Ababa\"\n\"Africa/Algiers\": \"Africa/Algiers\"\n\"Africa/Asmara\": \"Africa/Asmara\"\n\"Africa/Bamako\": \"Africa/Bamako\"\n\"Africa/Bangui\": \"Africa/Bangui\"\n\"Africa/Banjul\": \"Africa/Banjul\"\n\"Africa/Bissau\": \"Africa/Bissau\"\n\"Africa/Blantyre\": \"Africa/Blantyre\"\n\"Africa/Brazzaville\": \"Africa/Brazzaville\"\n\"Africa/Bujumbura\": \"Africa/Bujumbura\"\n\"Africa/Cairo\": \"Africa/Cairo\"\n\"Africa/Casablanca\": \"Africa/Casablanca\"\n\"Africa/Ceuta\": \"Africa/Ceuta\"\n\"Africa/Conakry\": \"Africa/Conakry\"\n\"Africa/Dakar\": \"Africa/Dakar\"\n\"Africa/Dar_es_Salaam\": \"Africa/Dar_es_Salaam\"\n\"Africa/Djibouti\": \"Africa/Djibouti\"\n\"Africa/Douala\": \"Africa/Douala\"\n\"Africa/El_Aaiun\": \"Africa/El_Aaiun\"\n\"Africa/Freetown\": \"Africa/Freetown\"\n\"Africa/Gaborone\": \"Africa/Gaborone\"\n\"Africa/Harare\": \"Africa/Harare\"\n\"Africa/Johannesburg\": \"Africa/Johannesburg\"\n\"Africa/Juba\": \"Africa/Juba\"\n\"Africa/Kampala\": \"Africa/Kampala\"\n\"Africa/Khartoum\": \"Africa/Khartoum\"\n\"Africa/Kigali\": \"Africa/Kigali\"\n\"Africa/Kinshasa\": \"Africa/Kinshasa\"\n\"Africa/Lagos\": \"Africa/Lagos\"\n\"Africa/Libreville\": \"Africa/Libreville\"\n\"Africa/Lome\": \"Africa/Lome\"\n\"Africa/Luanda\": \"Africa/Luanda\"\n\"Africa/Lubumbashi\": \"Africa/Lubumbashi\"\n\"Africa/Lusaka\": \"Africa/Lusaka\"\n\"Africa/Malabo\": \"Africa/Malabo\"\n\"Africa/Maputo\": \"Africa/Maputo\"\n\"Africa/Maseru\": \"Africa/Maseru\"\n\"Africa/Mbabane\": \"Africa/Mbabane\"\n\"Africa/Mogadishu\": \"Africa/Mogadishu\"\n\"Africa/Monrovia\": \"Africa/Monrovia\"\n\"Africa/Nairobi\": \"Africa/Nairobi\"\n\"Africa/Ndjamena\": \"Africa/Ndjamena\"\n\"Africa/Niamey\": \"Africa/Niamey\"\n\"Africa/Nouakchott\": \"Africa/Nouakchott\"\n\"Africa/Ouagadougou\": \"Africa/Ouagadougou\"\n\"Africa/Porto-Novo\": \"Africa/Porto-Novo\"\n\"Africa/Sao_Tome\": \"Africa/Sao_Tome\"\n\"Africa/Tripoli\": \"Africa/Tripoli\"\n\"Africa/Tunis\": \"Africa/Tunis\"\n\"Africa/Windhoek\": \"Africa/Windhoek\"\n\"America/Adak\": \"America/Adak\"\n\"America/Anchorage\": \"America/Anchorage\"\n\"America/Anguilla\": \"America/Anguilla\"\n\"America/Antigua\": \"America/Antigua\"\n\"America/Araguaina\": \"America/Araguaina\"\n\"America/Argentina/Buenos_Aires\": \"America/Argentina/Buenos_Aires\"\n\"America/Argentina/Catamarca\": \"America/Argentina/Catamarca\"\n\"America/Argentina/Cordoba\": \"America/Argentina/Cordoba\"\n\"America/Argentina/Jujuy\": \"America/Argentina/Jujuy\"\n\"America/Argentina/La_Rioja\": \"America/Argentina/La_Rioja\"\n\"America/Argentina/Mendoza\": \"America/Argentina/Mendoza\"\n\"America/Argentina/Rio_Gallegos\": \"America/Argentina/Rio_Gallegos\"\n\"America/Argentina/Salta\": \"America/Argentina/Salta\"\n\"America/Argentina/San_Juan\": \"America/Argentina/San_Juan\"\n\"America/Argentina/San_Luis\": \"America/Argentina/San_Luis\"\n\"America/Argentina/Tucuman\": \"America/Argentina/Tucuman\"\n\"America/Argentina/Ushuaia\": \"America/Argentina/Ushuaia\"\n\"America/Aruba\": \"America/Aruba\"\n\"America/Asuncion\": \"America/Asuncion\"\n\"America/Atikokan\": \"America/Atikokan\"\n\"America/Bahia\": \"America/Bahia\"\n\"America/Bahia_Banderas\": \"America/Bahia_Banderas\"\n\"America/Barbados\": \"America/Barbados\"\n\"America/Belem\": \"America/Belem\"\n\"America/Belize\": \"America/Belize\"\n\"America/Blanc-Sablon\": \"America/Blanc-Sablon\"\n\"America/Boa_Vista\": \"America/Boa_Vista\"\n\"America/Bogota\": \"America/Bogota\"\n\"America/Boise\": \"America/Boise\"\n\"America/Cambridge_Bay\": \"America/Cambridge_Bay\"\n\"America/Campo_Grande\": \"America/Campo_Grande\"\n\"America/Cancun\": \"America/Cancun\"\n\"America/Caracas\": \"America/Caracas\"\n\"America/Cayenne\": \"America/Cayenne\"\n\"America/Cayman\": \"America/Cayman\"\n\"America/Chicago\": \"America/Chicago\"\n\"America/Chihuahua\": \"America/Chihuahua\"\n\"America/Costa_Rica\": \"America/Costa_Rica\"\n\"America/Creston\": \"America/Creston\"\n\"America/Cuiaba\": \"America/Cuiaba\"\n\"America/Curacao\": \"America/Curacao\"\n\"America/Danmarkshavn\": \"America/Danmarkshavn\"\n\"America/Dawson\": \"America/Dawson\"\n\"America/Dawson_Creek\": \"America/Dawson_Creek\"\n\"America/Denver\": \"America/Denver\"\n\"America/Detroit\": \"America/Detroit\"\n\"America/Dominica\": \"America/Dominica\"\n\"America/Edmonton\": \"America/Edmonton\"\n\"America/Eirunepe\": \"America/Eirunepe\"\n\"America/El_Salvador\": \"America/El_Salvador\"\n\"America/Fort_Nelson\": \"America/Fort_Nelson\"\n\"America/Fortaleza\": \"America/Fortaleza\"\n\"America/Glace_Bay\": \"America/Glace_Bay\"\n\"America/Godthab\": \"America/Godthab\"\n\"America/Goose_Bay\": \"America/Goose_Bay\"\n\"America/Grand_Turk\": \"America/Grand_Turk\"\n\"America/Grenada\": \"America/Grenada\"\n\"America/Guadeloupe\": \"America/Guadeloupe\"\n\"America/Guatemala\": \"America/Guatemala\"\n\"America/Guayaquil\": \"America/Guayaquil\"\n\"America/Guyana\": \"America/Guyana\"\n\"America/Halifax\": \"America/Halifax\"\n\"America/Havana\": \"America/Havana\"\n\"America/Hermosillo\": \"America/Hermosillo\"\n\"America/Indiana/Indianapolis\": \"America/Indiana/Indianapolis\"\n\"America/Indiana/Knox\": \"America/Indiana/Knox\"\n\"America/Indiana/Marengo\": \"America/Indiana/Marengo\"\n\"America/Indiana/Petersburg\": \"America/Indiana/Petersburg\"\n\"America/Indiana/Tell_City\": \"America/Indiana/Tell_City\"\n\"America/Indiana/Vevay\": \"America/Indiana/Vevay\"\n\"America/Indiana/Vincennes\": \"America/Indiana/Vincennes\"\n\"America/Indiana/Winamac\": \"America/Indiana/Winamac\"\n\"America/Inuvik\": \"America/Inuvik\"\n\"America/Iqaluit\": \"America/Iqaluit\"\n\"America/Jamaica\": \"America/Jamaica\"\n\"America/Juneau\": \"America/Juneau\"\n\"America/Kentucky/Louisville\": \"America/Kentucky/Louisville\"\n\"America/Kentucky/Monticello\": \"America/Kentucky/Monticello\"\n\"America/Kralendijk\": \"America/Kralendijk\"\n\"America/La_Paz\": \"America/La_Paz\"\n\"America/Lima\": \"America/Lima\"\n\"America/Los_Angeles\": \"America/Los_Angeles\"\n\"America/Lower_Princes\": \"America/Lower_Princes\"\n\"America/Maceio\": \"America/Maceio\"\n\"America/Managua\": \"America/Managua\"\n\"America/Manaus\": \"America/Manaus\"\n\"America/Marigot\": \"America/Marigot\"\n\"America/Martinique\": \"America/Martinique\"\n\"America/Matamoros\": \"America/Matamoros\"\n\"America/Mazatlan\": \"America/Mazatlan\"\n\"America/Menominee\": \"America/Menominee\"\n\"America/Merida\": \"America/Merida\"\n\"America/Metlakatla\": \"America/Metlakatla\"\n\"America/Mexico_City\": \"America/Mexico_City\"\n\"America/Miquelon\": \"America/Miquelon\"\n\"America/Moncton\": \"America/Moncton\"\n\"America/Monterrey\": \"America/Monterrey\"\n\"America/Montevideo\": \"America/Montevideo\"\n\"America/Montserrat\": \"America/Montserrat\"\n\"America/Nassau\": \"America/Nassau\"\n\"America/New_York\": \"America/New_York\"\n\"America/Nipigon\": \"America/Nipigon\"\n\"America/Nome\": \"America/Nome\"\n\"America/Noronha\": \"America/Noronha\"\n\"America/North_Dakota/Beulah\": \"America/North_Dakota/Beulah\"\n\"America/North_Dakota\": \"America/North_Dakota\"\n\"America/Ojinaga\": \"America/Ojinaga\"\n\"America/Panama\": \"America/Panama\"\n\"America/Pangnirtung\": \"America/Pangnirtung\"\n\"America/Paramaribo\": \"America/Paramaribo\"\n\"America/Phoenix\": \"America/Phoenix\"\n\"America/Port-au-Prince\": \"America/Port-au-Prince\"\n\"America/Port_of_Spain\": \"America/Port_of_Spain\"\n\"America/Porto_Velho\": \"America/Porto_Velho\"\n\"America/Puerto_Rico\": \"America/Puerto_Rico\"\n\"America/Punta_Arenas\": \"America/Punta_Arenas\"\n\"America/Rainy_River\": \"America/Rainy_River\"\n\"America/Rankin_Inlet\": \"America/Rankin_Inlet\"\n\"America/Recife\": \"America/Recife\"\n\"America/Regina\": \"America/Regina\"\n\"America/Resolute\": \"America/Resolute\"\n\"America/Rio_Branco\": \"America/Rio_Branco\"\n\"America/Santarem\": \"America/Santarem\"\n\"America/Santiago\": \"America/Santiago\"\n\"America/Santo_Domingo\": \"America/Santo_Domingo\"\n\"America/Sao_Paulo\": \"America/Sao_Paulo\"\n\"America/Scoresbysund\": \"America/Scoresbysund\"\n\"America/Sitka\": \"America/Sitka\"\n\"America/St_Barthelemy\": \"America/St_Barthelemy\"\n\"America/St_Johns\": \"America/St_Johns\"\n\"America/St_Kitts\": \"America/St_Kitts\"\n\"America/St_Lucia\": \"America/St_Lucia\"\n\"America/St_Thomas\": \"America/St_Thomas\"\n\"America/St_Vincent\": \"America/St_Vincent\"\n\"America/Swift_Current\": \"America/Swift_Current\"\n\"America/Tegucigalpa\": \"America/Tegucigalpa\"\n\"America/Thule\": \"America/Thule\"\n\"America/Thunder_Bay\": \"America/Thunder_Bay\"\n\"America/Tijuana\": \"America/Tijuana\"\n\"America/Toronto\": \"America/Toronto\"\n\"America/Tortola\": \"America/Tortola\"\n\"America/Vancouver\": \"America/Vancouver\"\n\"America/Whitehorse\": \"America/Whitehorse\"\n\"America/Winnipeg\": \"America/Winnipeg\"\n\"America/Yakutat\": \"America/Yakutat\"\n\"America/Yellowknife\": \"America/Yellowknife\"\n\"Antarctica/Casey\": \"Antarctica/Casey\"\n\"Antarctica/Davis\": \"Antarctica/Davis\"\n\"Antarctica/DumontDUrville\": \"Antarctica/DumontDUrville\"\n\"Antarctica/Macquarie\": \"Antarctica/Macquarie\"\n\"Antarctica/McMurdo\": \"Antarctica/McMurdo\"\n\"Antarctica/Mawson\": \"Antarctica/Mawson\"\n\"Antarctica/Palmer\": \"Antarctica/Palmer\"\n\"Antarctica/Rothera\": \"Antarctica/Rothera\"\n\"Antarctica/Syowa\": \"Antarctica/Syowa\"\n\"Antarctica/Troll\": \"Antarctica/Troll\"\n\"Antarctica/Vostok\": \"Antarctica/Vostok\"\n\"Arctic/Longyearbyen\": \"Arctic/Longyearbyen\"\n\"Asia/Aden\": \"Asia/Aden\"\n\"Asia/Almaty\": \"Asia/Almaty\"\n\"Asia/Amman\": \"Asia/Amman\"\n\"Asia/Anadyr\": \"Asia/Anadyr\"\n\"Asia/Aqtau\": \"Asia/Aqtau\"\n\"Asia/Aqtobe\": \"Asia/Aqtobe\"\n\"Asia/Ashgabat\": \"Asia/Ashgabat\"\n\"Asia/Atyrau\": \"Asia/Atyrau\"\n\"Asia/Baghdad\": \"Asia/Baghdad\"\n\"Asia/Bahrain\": \"Asia/Bahrain\"\n\"Asia/Baku\": \"Asia/Baku\"\n\"Asia/Bangkok\": \"Asia/Bangkok\"\n\"Asia/Barnaul\": \"Asia/Barnaul\"\n\"Asia/Beirut\": \"Asia/Beirut\"\n\"Asia/Bishkek\": \"Asia/Bishkek\"\n\"Asia/Brunei\": \"Asia/Brunei\"\n\"Asia/Chita\": \"Asia/Chita\"\n\"Asia/Choibalsan\": \"Asia/Choibalsan\"\n\"Asia/Colombo\": \"Asia/Colombo\"\n\"Asia/Damascus\": \"Asia/Damascus\"\n\"Asia/Dhaka\": \"Asia/Dhaka\"\n\"Asia/Dili\": \"Asia/Dili\"\n\"Asia/Dubai\": \"Asia/Dubai\"\n\"Asia/Dushanbe\": \"Asia/Dushanbe\"\n\"Asia/Famagusta\": \"Asia/Famagusta\"\n\"Asia/Gaza\": \"Asia/Gaza\"\n\"Asia/Hebron\": \"Asia/Hebron\"\n\"Asia/Ho_Chi_Minh\": \"Asia/Ho_Chi_Minh\"\n\"Asia/Hong_Kong\": \"Asia/Hong_Kong\"\n\"Asia/Hovd\": \"Asia/Hovd\"\n\"Asia/Irkutsk\": \"Asia/Irkutsk\"\n\"Asia/Jakarta\": \"Asia/Jakarta\"\n\"Asia/Jayapura\": \"Asia/Jayapura\"\n\"Asia/Jerusalem\": \"Asia/Jerusalem\"\n\"Asia/Kabul\": \"Asia/Kabul\"\n\"Asia/Kamchatka\": \"Asia/Kamchatka\"\n\"Asia/Karachi\": \"Asia/Karachi\"\n\"Asia/Kathmandu\": \"Asia/Kathmandu\"\n\"Asia/Khandyga\": \"Asia/Khandyga\"\n\"Asia/Kolkata\": \"Asia/Kolkata\"\n\"Asia/Krasnoyarsk\": \"Asia/Krasnoyarsk\"\n\"Asia/Kuala_Lumpur\": \"Asia/Kuala_Lumpur\"\n\"Asia/Kuching\": \"Asia/Kuching\"\n\"Asia/Kuwait\": \"Asia/Kuwait\"\n\"Asia/Macau\": \"Asia/Macau\"\n\"Asia/Magadan\": \"Asia/Magadan\"\n\"Asia/Makassar\": \"Asia/Makassar\"\n\"Asia/Manila\": \"Asia/Manila\"\n\"Asia/Muscat\": \"Asia/Muscat\"\n\"Asia/Nicosia\": \"Asia/Nicosia\"\n\"Asia/Novokuznetsk\": \"Asia/Novokuznetsk\"\n\"Asia/Novosibirsk\": \"Asia/Novosibirsk\"\n\"Asia/Omsk\": \"Asia/Omsk\"\n\"Asia/Oral\": \"Asia/Oral\"\n\"Asia/Phnom_Penh\": \"Asia/Phnom_Penh\"\n\"Asia/Pontianak\": \"Asia/Pontianak\"\n\"Asia/Pyongyang\": \"Asia/Pyongyang\"\n\"Asia/Qatar\": \"Asia/Qatar\"\n\"Asia/Qostanay\": \"Asia/Qostanay\"\n\"Asia/Qyzylorda\": \"Asia/Qyzylorda\"\n\"Asia/Riyadh\": \"Asia/Riyadh\"\n\"Asia/Sakhalin\": \"Asia/Sakhalin\"\n\"Asia/Samarkand\": \"Asia/Samarkand\"\n\"Asia/Seoul\": \"Asia/Seoul\"\n\"Asia/Shanghai\": \"Asia/Shanghai\"\n\"Asia/Singapore\": \"Asia/Singapore\"\n\"Asia/Srednekolymsk\": \"Asia/Srednekolymsk\"\n\"Asia/Taipei\": \"Asia/Taipei\"\n\"Asia/Tashkent\": \"Asia/Tashkent\"\n\"Asia/Tbilisi\": \"Asia/Tbilisi\"\n\"Asia/Tehran\": \"Asia/Tehran\"\n\"Asia/Thimphu\": \"Asia/Thimphu\"\n\"Asia/Tokyo\": \"Asia/Tokyo\"\n\"Asia/Tomsk\": \"Asia/Tomsk\"\n\"Asia/Ulaanbaatar\": \"Asia/Ulaanbaatar\"\n\"Asia/Urumqi\": \"Asia/Urumqi\"\n\"Asia/Ust-Nera\": \"Asia/Ust-Nera\"\n\"Asia/Vientiane\": \"Asia/Vientiane\"\n\"Asia/Vladivostok\": \"Asia/Vladivostok\"\n\"Asia/Yakutsk\": \"Asia/Yakutsk\"\n\"Asia/Yangon\": \"Asia/Yangon\"\n\"Asia/Yekaterinburg\": \"Asia/Yekaterinburg\"\n\"Asia/Yerevan\": \"Asia/Yerevan\"\n\"Atlantic/Azores\": \"Atlantic/Azores\"\n\"Atlantic/Bermuda\": \"Atlantic/Bermuda\"\n\"Atlantic/Canary\": \"Atlantic/Canary\"\n\"Atlantic/Cape_Verde\": \"Atlantic/Cape_Verde\"\n\"Atlantic/Faroe\": \"Atlantic/Faroe\"\n\"Atlantic/Madeira\": \"Atlantic/Madeira\"\n\"Atlantic/Reykjavik\": \"Atlantic/Reykjavik\"\n\"Atlantic/South_Georgia\": \"Atlantic/South_Georgia\"\n\"Atlantic/St_Helena\": \"Atlantic/St_Helena\"\n\"Atlantic/Stanley\": \"Atlantic/Stanley\"\n\"Australia/Adelaide\": \"Australia/Adelaide\"\n\"Australia/Brisbane\": \"Australia/Brisbane\"\n\"Australia/Broken_Hill\": \"Australia/Broken_Hill\"\n\"Australia/Currie\": \"Australia/Currie\"\n\"Australia/Darwin\": \"Australia/Darwin\"\n\"Australia/Eucla\": \"Australia/Eucla\"\n\"Australia/Hobart\": \"Australia/Hobart\"\n\"Australia/Lindeman\": \"Australia/Lindeman\"\n\"Australia/Lord_Howe\": \"Australia/Lord_Howe\"\n\"Australia/Melbourne\": \"Australia/Melbourne\"\n\"Australia/Perth\": \"Australia/Perth\"\n\"Australia/Sydney\": \"Australia/Sydney\"\n\"Europe/Amsterdam\": \"Europe/Amsterdam\"\n\"Europe/Andorra\": \"Europe/Andorra\"\n\"Europe/Astrakhan\": \"Europe/Astrakhan\"\n\"Europe/Athens\": \"Europe/Athens\"\n\"Europe/Belgrade\": \"Europe/Belgrade\"\n\"Europe/Berlin\": \"Europe/Berlin\"\n\"Europe/Bratislava\": \"Europe/Bratislava\"\n\"Europe/Brussels\": \"Europe/Brussels\"\n\"Europe/Bucharest\": \"Europe/Bucharest\"\n\"Europe/Budapest\": \"Europe/Budapest\"\n\"Europe/Busingen\": \"Europe/Busingen\"\n\"Europe/Chisinau\": \"Europe/Chisinau\"\n\"Europe/Copenhagen\": \"Europe/Copenhagen\"\n\"Europe/Dublin\": \"Europe/Dublin\"\n\"Europe/Gibraltar\": \"Europe/Gibraltar\"\n\"Europe/Guernsey\": \"Europe/Guernsey\"\n\"Europe/Helsinki\": \"Europe/Helsinki\"\n\"Europe/Isle_of_Man\": \"Europe/Isle_of_Man\"\n\"Europe/Istanbul\": \"Europe/Istanbul\"\n\"Europe/Jersey\": \"Europe/Jersey\"\n\"Europe/Kaliningrad\": \"Europe/Kaliningrad\"\n\"Europe/Kiev\": \"Europe/Kiev\"\n\"Europe/Kirov\": \"Europe/Kirov\"\n\"Europe/Lisbon\": \"Europe/Lisbon\"\n\"Europe/Ljubljana\": \"Europe/Ljubljana\"\n\"Europe/London\": \"Europe/London\"\n\"Europe/Luxembourg\": \"Europe/Luxembourg\"\n\"Europe/Madrid\": \"Europe/Madrid\"\n\"Europe/Malta\": \"Europe/Malta\"\n\"Europe/Mariehamn\": \"Europe/Mariehamn\"\n\"Europe/Minsk\": \"Europe/Minsk\"\n\"Europe/Monaco\": \"Europe/Monaco\"\n\"Europe/Moscow\": \"Europe/Moscow\"\n\"Europe/Oslo\": \"Europe/Oslo\"\n\"Europe/Paris\": \"Europe/Paris\"\n\"Europe/Podgorica\": \"Europe/Podgorica\"\n\"Europe/Prague\": \"Europe/Prague\"\n\"Europe/Riga\": \"Europe/Riga\"\n\"Europe/Rome\": \"Europe/Rome\"\n\"Europe/Samara\": \"Europe/Samara\"\n\"Europe/San_Marino\": \"Europe/San_Marino\"\n\"Europe/Sarajevo\": \"Europe/Sarajevo\"\n\"Europe/Saratov\": \"Europe/Saratov\"\n\"Europe/Simferopol\": \"Europe/Simferopol\"\n\"Europe/Skopje\": \"Europe/Skopje\"\n\"Europe/Sofia\": \"Europe/Sofia\"\n\"Europe/Stockholm\": \"Europe/Stockholm\"\n\"Europe/Tallinn\": \"Europe/Tallinn\"\n\"Europe/Tirane\": \"Europe/Tirane\"\n\"Europe/Ulyanovsk\": \"Europe/Ulyanovsk\"\n\"Europe/Uzhgorod\": \"Europe/Uzhgorod\"\n\"Europe/Vaduz\": \"Europe/Vaduz\"\n\"Europe/Vatican\": \"Europe/Vatican\"\n\"Europe/Vienna\": \"Europe/Vienna\"\n\"Europe/Vilnius\": \"Europe/Vilnius\"\n\"Europe/Volgograd\": \"Europe/Volgograd\"\n\"Europe/Warsaw\": \"Europe/Warsaw\"\n\"Europe/Zagreb\": \"Europe/Zagreb\"\n\"Europe/Zaporozhye\": \"Europe/Zaporozhye\"\n\"Europe/Zurich\": \"Europe/Zurich\"\n\"Indian/Antananarivo\": \"Indian/Antananarivo\"\n\"Indian/Chagos\": \"Indian/Chagos\"\n\"Indian/Christmas\": \"Indian/Christmas\"\n\"Indian/Cocos\": \"Indian/Cocos\"\n\"Indian/Comoro\": \"Indian/Comoro\"\n\"Indian/Kerguelen\": \"Indian/Kerguelen\"\n\"Indian/Mahe\": \"Indian/Mahe\"\n\"Indian/Maldives\": \"Indian/Maldives\"\n\"Indian/Mauritius\": \"Indian/Mauritius\"\n\"Indian/Mayotte\": \"Indian/Mayotte\"\n\"Indian/Reunion\": \"Indian/Reunion\"\n\"Pacific/Apia\": \"Pacific/Apia\"\n\"Pacific/Auckland\": \"Pacific/Auckland\"\n\"Pacific/Bougainville\": \"Pacific/Bougainville\"\n\"Pacific/Chatham\": \"Pacific/Chatham\"\n\"Pacific/Chuuk\": \"Pacific/Chuuk\"\n\"Pacific/Easter\": \"Pacific/Easter\"\n\"Pacific/Efate\": \"Pacific/Efate\"\n\"Pacific/Enderbury\": \"Pacific/Enderbury\"\n\"Pacific/Fakaofo\": \"Pacific/Fakaofo\"\n\"Pacific/Fiji\": \"Pacific/Fiji\"\n\"Pacific/Funafuti\": \"Pacific/Funafuti\"\n\"Pacific/Galapagos\": \"Pacific/Galapagos\"\n\"Pacific/Gambier\": \"Pacific/Gambier\"\n\"Pacific/Guadalcanal\": \"Pacific/Guadalcanal\"\n\"Pacific/Guam\": \"Pacific/Guam\"\n\"Pacific/Honolulu\": \"Pacific/Honolulu\"\n\"Pacific/Kiritimati\": \"Pacific/Kiritimati\"\n\"Pacific/Kosrae\": \"Pacific/Kosrae\"\n\"Pacific/Kwajalein\": \"Pacific/Kwajalein\"\n\"Pacific/Majuro\": \"Pacific/Majuro\"\n\"Pacific/Marquesas\": \"Pacific/Marquesas\"\n\"Pacific/Midway\": \"Pacific/Midway\"\n\"Pacific/Nauru\": \"Pacific/Nauru\"\n\"Pacific/Niue\": \"Pacific/Niue\"\n\"Pacific/Norfolk\": \"Pacific/Norfolk\"\n\"Pacific/Noumea\": \"Pacific/Noumea\"\n\"Pacific/Pago_Pago\": \"Pacific/Pago_Pago\"\n\"Pacific/Palau\": \"Pacific/Palau\"\n\"Pacific/Pitcairn\": \"Pacific/Pitcairn\"\n\"Pacific/Pohnpei\": \"Pacific/Pohnpei\"\n\"Pacific/Port_Moresby\": \"Pacific/Port_Moresby\"\n\"Pacific/Rarotonga\": \"Pacific/Rarotonga\"\n\"Pacific/Saipan\": \"Pacific/Saipan\"\n\"Pacific/Tahiti\": \"Pacific/Tahiti\"\n\"Pacific/Tarawa\": \"Pacific/Tarawa\"\n\"Pacific/Tongatapu\": \"Pacific/Tongatapu\"\n\"Pacific/Wake\": \"Pacific/Wake\"\n\"Pacific/Wallis\": \"Pacific/Wallis\"\n\"UTC\": \"UTC\"\n\"Time Format\": \"פורמט זמן\"\n\"Choose your default timezone\": \"בחר את אזור הזמן המוגדר כברירת מחדל\"\n\"Signature\": \"חתימה\"\n\"User signature will be append at the bottom of ticket reply box\": \"החתימה שלך תצורף בתחתית כל תשובת כרטיס שתיצור.\"\n\"Password\": \"סיסמא\"\n\"Password will remain same if you are not entering something in this field\": \"הסיסמה לא השתנתה!\"\n\"Confirm Password\": \"אשר סיסמה\"\n\"Password must contain minimum 8 character length, at least two letters (not case sensitive), one number, one special character(space is not allowed).\": \"הסיסמה חייבת להיות באורך 8 תווים לפחות, שתי אותיות (לא תלויות רישיות), מספר אחד ותו מיוחד אחד (אסור רווח).\"\n\"Save Changes\": \"שמור שינויים\"\n\"SAVE CHANGES\": \"שמור שינויים\"\n\"CREATE TICKET\": \"צור קריאה\"\n\"Customer full name\": \"שם מלא של לקוח\"\n\"Customer email address\": \"מייל של לקוח\"\n\"Select Type\": \"בחר סוג\"\n\"Support\": \"תמיכה\"\n\"Choose ticket type\": \"בחר סוג קריאה\"\n\"Ticket subject\": \"נושא הקריאה\"\n\"Message\": \"הודעה\"\n\"Query Message\": \"הודעת שאילתה\"\n\"Add Attachment\": \"הוסף צרופה\"\n\"This field is mandatory\": \"זהו שדה חובה\"\n\"General\": \"כללי\"\n\"Designation\": \"יעוד\"\n\"Contant Number\": \"מספר איש קשר\"\n\"User signature will be append in the bottom of ticket reply box\": \"החתימה שלך תצורף בתחתית כל תשובת קריאה שתיצור.\"\n\"Account Status\": \"מצב חשבון\"\n\"Account is Active\": \"חשבון פעיל\"\n\"Assigning group(s) to user to view tickets regardless assignment.\": \"הוסף משתמש לקבוצה כדי להציג קריאה ללא קשר לבעלים.\"\n\"Default\": \"ברירת מחדל\"\n\"Select All\": \"בחר הכל\"\n\"Remove All\": \"הסר הכל\"\n\"Assigning team(s) to user to view tickets regardless assignment.\": \"הוסף משתמש לצוות כדי להציג קריאות ללא קשר לבעלים.\"\n\"No Team added !\": \"לא נוסף צוות!\"\n\"Permission\": \"הרשאות\"\n\"Role\": \"תפקיד\"\n\"Administrator\": \"מנהל\"\n\"Select agent role\": \"בחר תפקיד סוכן\"\n\"Add Customer\": \"הוסף לקוח\"\n\"Action\": \"פעולה\"\n\"Account Owner\": \"בעל החשבון\"\n\"Active\": \"פעיל\"\n\"Edit\": \"ערוך\"\n\"Delete\": \"נמחק\"\n\"Disabled\": \"מושבת\"\n\"New Group\": \"קבוצה חדשה\"\n\"Default Privileges\": \"הרשאות ברירת מחדל\"\n\"New Privileges\": \"הרשאות חדשות\"\n\"NEW PRIVILEGE\": \"הרשאה חדשה\"\n\"New Privilege\": \"הרשאה חדשה\"\n\"New Team\": \"קבוצה חדשה\"\n\"No Record Found\": \"לא נמצאה רשומה\"\n\"Order Synchronization\": \"סנכרון הזמנות\"\n\"Easily integrate different ecommerce platforms with your helpdesk which can then be later used to swiftly integrate ecommerce order details with your support tickets.\": \"שלב בקלות פלטפורמות מסחר אלקטרוני שונות עם העזרה שלך כדי להציג פרטי הזמנה בתוך כרטיסי תמיכה.\"\n\"BigCommerce\": \"BigCommerce\"\n\"No channels have been added.\": \"לא נוספו ערוצים.\"\n\"Add BigCommerce Store\": \"Add BigCommerce Store\"\n\"ADD BIGCOMMERCE STORE\": \"ADD BIGCOMMERCE STORE\"\n\"Mangento\": \"Mangento\"\n\"Add Magento Store\": \"הוסף חנות מג'נטו\"\n\"OpenCart\": \"OpenCart\"\n\"Add OpenCart Store\": \"הוסף OpenCart Store\"\n\"ADD OPENCART STORE\": \"הוסף OpenCart Store\"\n\"Shopify\": \"Shopify\"\n\"Add Shopify Store\": \"הוסף Shopify Store\"\n\"ADD SHOPIFY STORE\": \"הוסף Shopify Store\"\n\"Integrate a new BigCommerce store\": \"שילוב חנות BigCommerce חדשה\"\n\"Your BigCommerce Store Name\": \"שם חנות BigCommerce שלך\"\n\"Your BigCommerce Store Hash\": \"Your BigCommerce Store Hash\"\n\"Your BigCommerce Api Token\": \"Your BigCommerce Api Token\"\n\"Your BigCommerce Api Client ID\": \"Your BigCommerce Api Client ID\"\n\"Enable Channel\": \"הפעל ערוץ\"\n\"Add Store\": \"הוסף חנות\"\n\"ADD STORE\": \"הוסף חנות\"\n\"Integrate a new Magento store\": \"Integrate a new Magento store\"\n\"Your Magento Api Username\": \"Your Magento Api Username\"\n\"Your Magento Api Password\": \"Your Magento Api Password\"\n\"Integrate a new OpenCart store\": \"שילוב חנות מג'נטו חדשה\"\n\"Your OpenCart Api Key\": \"Your OpenCart Api Key\"\n\"Your Shopify Store Name\": \"Your Shopify Store Name\"\n\"Your Shopify Api Key\": \"Your Shopify Api Key\"\n\"Your Shopify Api Password\": \"Your Shopify Api Password\"\n\"Easily embed custom form to help generate helpdesk tickets.\": \"הטמע בקלות טופס מותאם אישית כדי לעזור ביצירת כרטיסי הלפ דסק.\"\n\"Form-Builder\": \"בונה טפסים\"\n\"Add Formbuilder\": \"הוסף בונה טפסים\"\n\"ADD FORMBUILDER\": \"הוסף בונה טפסים\"\n\"No FormBuilder have been added.\": \"לא התווסף הוסף בונה טפסים.\"\n\"Create a New Custom Form Below\": \"צור טופס מותאם אישית חדש למטה\"\n\"Form Name\": \"שם טופס\"\n\"It will be shown in the list of created forms\": \"מוצג ברשימת הטפסים שנוצרו\"\n\"MANDATORY FIELDS\": \"שדה חובה\"\n\"These fields will be visible in form and cant be edited\": \"שדות אלה יהיו גלויים בטופס זה ולא ניתן לערוך אותם\"\n\"Reply\": \"השב\"\n\"OPTIONAL FIELDS\": \"שדות אופציונליים\"\n\"Select These Fields to Add in your Form\": \"בחר שדות להוספה\"\n\"GDPR\": \"GDPR\"\n\"Order\": \"הזמנה\"\n\"Categorybuilder\": \"בונה קטגוריות\"\n\"File\": \"קובץ\"\n\"Add Form\": \"הוסף טופס\"\n\"ADD FORM\": \"הוסף טופס\"\n\"UPDATE FORM\": \"עדכן טופס\"\n\"Update Form\": \"עדכן טופס\"\n\"Embed\": \"הטמע\"\n\"EMBED\": \"הטמע\"\n\"EMBED FORMBUILDER\": \"בונה טפסים מוטמע\"\n\"Embed Formbuilder\": \"בונה טפסים מוטמע\"\n\"Visit\": \"בקר\"\n\"VISIT\": \"בקר\"\n\"Code\": \"קוד\"\n\"Total Ticket(s)\": \"סך כל הכרטיסים\"\n\"Ticket Count\": \"ספירת כרטיסים\"\n\"SwiftMailer Configurations\": \"תצורות של SwiftMailer\"\n\"No swiftmailer configurations found\": \"לא נמצאו תצורות SwiftMailer\"\n\"CREATE CONFIGURATION\": \"צור תצורה\"\n\"Add configuration\": \"הוסף תצורה\"\n\"Update configuration\": \"עדכון תצורה\"\n\"Mailer ID\": \"מזהה דואר\"\n\"Mailer ID - Leave blank to automatically create id\": \"מזהה דואר - השאר ריק כדי ליצור מזהה אוטומטית\"\n\"Transport Type\": \"סוג תחבורה\"\n\"SMTP\": \"SMTP\"\n\"Enable Delivery\": \"אפשר משלוח\"\n\"Server\": \"שרת\"\n\"Port\": \"פורט\"\n\"Encryption Mode\": \"סוג הצפנה\"\n\"ssl\": \"ssl\"\n\"tsl\": \"tsl\"\n\"None\": \"ללא\"\n\"Authentication Mode\": \"מצב אימות\"\n\"login\": \"התחברות\"\n\"API\": \"ממשק API\"\n\"Plain\": \"Plain\"\n\"CRAM-MD5\": \"CRAM-MD5\"\n\"Sender Address\": \"כתובת שולח\"\n\"Delivery Address\": \"כתובת משלוח\"\n\"Block Spam\": \"חסום ספאם\"\n\"Black list\": \"רשימה שחורה\"\n\"Comma (,) separated values (Eg. support@example.com, @example.com, 68.98.31.226)\": \"ערכים מופרדים בפסיקים (למשל support@example.com, @example.com, 68.98.31.226)\"\n\"White list\": \"רשימה לבנה\"\n\"Mailbox Settings\": \"הגדרות תיבת דואר\"\n\"No mailbox configurations found\": \"לא נמצאו תצורות תיבת דואר\"\n\"NEW MAILBOX\": \"תיבת דואר חדשה\"\n\"New Mailbox\": \"תיבת דואר חדשה\"\n\"Update Mailbox\": \"עדכון תיבת דואר\"\n\"Add Mailbox\": \"הוסף תיבת דואר\"\n\"Mailbox ID - Leave blank to automatically create id\": \"מזהה תיבת דואר - השאר ריק כדי ליצור מזהה אוטומטית\"\n\"Mailbox Name\": \"שם תיבת דואר\"\n\"Enable Mailbox\": \"הפעל תיבת דואר\"\n\"Incoming Mail (IMAP) Server\": \"שרת דואר נכנס (IMAP)\"\n\"Configure your imap settings which will be used to fetch emails from your mailbox.\": \"הגדר את הגדרות ה-imap שלך כדי להביא דואר חדש מתיבת הדואר הנכנס שלך.\"\n\"Transport\": \"תחבורה\"\n\"IMAP\": \"IMAP\"\n\"Gmail\": \"Gmail\"\n\"Yahoo\": \"Yahoo\"\n\"Host\": \"מארח\"\n\"IMAP Host\": \"IMAP Host\"\n\"Email address\": \"כתובת מייל\"\n\"Associated Password\": \"סיסמא קשורה\"\n\"Outgoing Mail (SMTP) Server\": \"שרת דואר יוצא (SMTP)\"\n\"Select a valid Swift Mailer configuration which will be used to send emails through your mailbox.\": \"בחר בתצורת SwiftMailer לשימוש לשליחת מיילים דרך החשבון שלך.\"\n\"Swift Mailer ID\": \"Swift Mailer ID\"\n\"None Selected\": \"לא נבחר\"\n\"Create Mailbox\": \"צור תיבת מייל\"\n\"CREATE MAILBOX\": \"צור תיבת מייל\"\n\"New Template\": \"תבנית חדשה\"\n\"NEW TEMPLATE\": \"תבנית חדשה\"\n\"Customer Forgot Password\": \"לקוח שכח סיסמה\"\n\"Customer Account Created\": \"חשבון לקוח נוצר\"\n\"Ticket generated success mail to customer\": \"הכרטיס נוצר בהצלחה ונשלח ללקוח\"\n\"Customer Reply To The Agent\": \"תשובת הלקוח\"\n\"Ticket Assign\": \"הקצאת קריאה\"\n\"Agent Forgot Password\": \"הסוכן שכח את הסיסמה\"\n\"Agent Account Created\": \"חשבון סוכן נוצר\"\n\"Ticket generated by customer\": \"כרטיס שנוצר על ידי לקוח\"\n\"Agent Reply To The Customers ticket\": \"תשובת הסוכן\"\n\"Email template name\": \"שם תבנית אימייל\"\n\"Email template subject\": \"נושא תבנית אימייל\"\n\"Template For\": \"תבנית עבור\"\n\"Nothing Selected\": \"לא נבחר\"\n\"email template will be used for work related with selected option\": \"תבנית מייל תשמש עבור האפשרות שנבחרה\"\n\"Email template body\": \"גוף תבנית אימייל\"\n\"Body\": \"גוף\"\n\"placeholders\": \"מציינים\"\n\"Ticket Subject\": \"נושא הקריאה\"\n\"Ticket Message\": \"הודעת הקריאה\"\n\"Ticket Attachments\": \"צרופת הקריאה\"\n\"Ticket Tags\": \"תגיות הקריאה\"\n\"Ticket Source\": \"מקור הקריאה\"\n\"Ticket Status\": \"סטטוס הקריאה\"\n\"Ticket Priority\": \"עדיפות הקריאה\"\n\"Ticket Group\": \"קבוצת הקריאה\"\n\"Ticket Team\": \"צוות הקריאה\"\n\"Ticket Thread Message\": \"הודעת שרשור כרטיסים\"\n\"Ticket Customer Name\": \"שם לקוח הקריאה\"\n\"Ticket Customer Email\": \"אימייל ללקוח הקריאה\"\n\"Ticket Agent Name\": \"שם סוכן הקריאות\"\n\"Ticket Agent Email\": \"מייל סוכן הקיריאות\"\n\"Ticket Agent Link\": \"קישור לסוכן הקריאות\"\n\"Ticket Customer Link\": \"קישור לכרטיס לקוח\"\n\"Last Collaborator Name\": \"שם שותף אחרון\"\n\"Last Collaborator Email\": \"מייל שותף אחרון\"\n\"Agent/ Customer Name\": \"שם סוכן/לקוח\"\n\"Account Validation Link\": \"קישור לאימות חשבון\"\n\"Password Forgot Link\": \"קישור לשכחתי סיסמא\"\n\"Company Name\": \"שם חברה\"\n\"Company Logo\": \"לוגו חברה\"\n\"Company URL\": \"לינק חברה\"\n\"Swiftmailer id (Select from drop down)\": \"מזהה Swiftmailer (בחר מהתפריט הנפתח)\"\n\"SwiftMailer\": \"SwiftMailer\"\n\"PROCEED\": \"להמשיך\"\n\"Proceed\": \"להמשיך\"\n\"Theme Color\": \"צבע ערכת נושא\"\n\"Customer Created\": \"לקוח נוצר\"\n\"Agent Created\": \"סוכן נוצר\"\n\"Ticket Created\": \"קריאה נוצרה\"\n\"Agent Replied on Ticket\": \"סוכן השיב לקריאה\"\n\"Customer Replied on Ticket\": \"לקוח השיב לקריאה\"\n\"Workflow Status\": \"מצב זרימת עבודה\"\n\"Workflow is Active\": \"זרימת עבודה פעילה\"\n\"Events\": \"אירועים\"\n\"An event automatically triggers to check conditions and perform a respective pre-defined set of actions\": \"אירוע מופעל אוטומטית כדי לבדוק תנאים ולבצע קבוצה של פעולות מוגדרות מראש\"\n\"Select an Event\": \"בחר אירוע\"\n\"Add More\": \"הוסף עוד\"\n\"Conditions\": \"תנאים\"\n\"Conditions are set of rules which checks for specific scenarios and are triggered on specific occasions\": \"תנאים הם קבוצות של כללים שבודקים תרחישים ספציפיים.\"\n\"Subject or Description\": \"נושא או תיאור\"\n\"Actions\": \"פעולות\"\n\"An action not only reduces the workload but also makes it quite easier for ticket automation\": \"פעולות עוזרות לך להפוך כרטיסים לאוטומטיים\"\n\"Select an Action\": \"בחר פעולה\"\n\"Add Note\": \"להוסיף הערה\"\n\"Mail to agent\": \"מייל לסוכן\"\n\"Mail to customer\": \"מייל ללקוח\"\n\"Mail to group\": \"מייל לקבוצה\"\n\"Mail to last collaborator\": \"דואר לשותף האחרון\"\n\"Mail to team\": \"דואר לצוות\"\n\"Mark Spam\": \"סמן ספאם\"\n\"Assign to agent\": \"הקצה לסוכן\"\n\"Assign to group\": \"הקצה לקבוצה\"\n\"Set Priority As\": \"הגדר עדיפות בשם\"\n\"Set Status As\": \"הגדר סטטוס כ\"\n\"Set Tag As\": \"הגדר תג כ\"\n\"Set Label As\": \"הגדר תווית כ\"\n\"Assign to team\": \"הקצה לצוות\"\n\"Set Type As\": \"הגדר סוג כ\"\n\"Add Workflow\": \"הוסף זרימת עבודה\"\n\"ADD WORKFLOW\": \"הוסף זרימת עבודה\"\n\"Ticket Type code\": \"קוד סוג כרטיס\"\n\"Ticket Type description\": \"תיאור סוג הכרטיס\"\n\"Type Status\": \"הקלד סטטוס\"\n\"Type is Active\": \"הסוג פעיל\"\n\"Add Save Reply\": \"הוסף תשובה שמורה\"\n\"Saved reply name\": \"שם תשובה שמורה\"\n\"Share saved reply with user(s) in these group(s)\": \"שתף את התשובה השמורה עם המשתמשים בקבוצות אלה\"\n\"Share saved reply with user(s) in these teams(s)\": \"שתף את התשובה השמורה עם המשתמשים בקבוצות אלה\"\n\"Saved reply Body\": \"גוף התשובה נשמר\"\n\"New Prepared Response\": \"תגובה מוכנה חדשה\"\n\"Prepared Response Status\": \"סטטוס תגובה מוכנה\"\n\"Prepared Response is Active\": \"תגובה מוכנה פעילה\"\n\"Share prepared response with user(s) in these group(s)\": \"שתף תגובה מוכנה עם המשתמש/ים בקבוצות אלה\"\n\"Share prepared response with user(s) in these teams(s)\": \"שתף תגובה מוכנה עם המשתמש/ים בצוות/ים אלה\"\n\"ADD PREPARED RESPONSE\": \"הוסף תגובה מוכנה\"\n\"Add Prepared Response\": \"הוסף תגובה מוכנה\"\n\"Folder Name is shown upfront at Knowledge Base\": \"שם התיקיה שתוצג במאגר הידע\"\n\"A small text about the folder helps user to navigate more easily\": \"קצת יותר מידע על התיקייה הזו\"\n\"Publish\": \"פרסם\"\n\"Choose appropriate status\": \"בחר סטטוס מתאים\"\n\"Folder Image\": \"תמונת תיקיה\"\n\"An image is worth a thousands words and makes folder more accessible\": \"עזור למשתמשים לזהות את התיקיה המתאימה עם תמונה ניתנת לזיהוי.\"\n\"Add Category\": \"הוסף קטגוריה\"\n\"Category Name is shown upfront at Knowledge Base\": \"שם הקטגוריה שיוצג במאגר הידע\"\n\"A small text about the category helps user to navigate more easily\": \"קצת יותר מידע על הקטגוריה הזו\"\n\"Using Category Order, you can decide which category should display first\": \"באמצעות סדר קטגוריה, אתה יכול להחליט איזו קטגוריה תוצג קודם\"\n\"Sorting\": \"מיון\"\n\"Ascending Order (A-Z)\": \"סדר עולה (א-ת)\"\n\"Descending Order (Z-A)\": \"סדר יורד\"\n\"Based on Popularity\": \"מבוסס על פופולריות\"\n\"Article of this category will display according to selected option\": \"מאמרים בקטגוריה זו יוצגו בהתאם לאפשרות שנבחרה\"\n\"Article\": \"מאמר\"\n\"Title\": \"כותרת\"\n\"View\": \"תצוגה\"\n\"Make as Starred\": \"סמן כמסומן בכוכב\"\n\"Yes\": \"כן\"\n\"No\" : \"לא\"\n\"Stared\" : \"Stared\"\n\"Revisions\": \"גרסאות\"\n\"Related Articles\" : \"מאמרים קשורים\"\n\"Delete Article\":\t\"מחק מאמר\"\n\"Content\": \"תוכן\"\n\"Slug\": \"Slug\"\n\"Slug is the url identity of this article.\": \"כתובת האתר של מאמר זה\"\n\"Meta Title\": \"מטא כותרת\"\n\"Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A pages title tag and meta description are usually shown whenever that page appears in search engine results\": \"תגי כותרת ומטא תיאורים הם פיסות קוד HTML בכותרת של דף אינטרנט. הם עוזרים למנועי החיפוש להבין את התוכן בדף. תג הכותרת ומטא תיאור מוצגים בדרך כלל בתוצאות של מנועי החיפוש עבור הדף.\"\n\"Meta Keywords\": \"מטא מילות מפתח\"\n\"Meta Description\": \"מטא תיאור\"\n\"Description\": \"תיאור\"\n\"Team Status\": \"סטטוס צוות\"\n\"Team is Active\": \"הצוות פעיל\"\n\"Edit Privilege\": \"ערוך הרשאה\"\n\"Can create ticket\": \"יכול ליצור קריאה\"\n\"Can edit ticket\": \"יכול לערוך קריאה\"\n\"Can delete ticket\": \"יכול למחוק קריאה\"\n\"Can restore trashed ticket\": \"יכול לשחזר קירות מסל המחזור\"\n\"Can assign ticket\": \"יכול להקצות קריאה\"\n\"Can assign ticket group\": \"יכול להקצות קבוצת קריאות\"\n\"Can update ticket status\": \"יכול לעדכן את סטטוס הקריאה\"\n\"Can update ticket priority\": \"יכול לעדכן את עדיפות הקריאה\"\n\"Can update ticket type\": \"יכול לעדכן את סוג הקריאה\"\n\"Can add internal notes to ticket\": \"יכול להוסיף הערות פנימיות לקריאה\"\n\"Can edit thread/notes\": \"יכול לערוך שרשור/הערות\"\n\"Can lock/unlock thread\": \"יכול לנעול/לפתוח שרשור\"\n\"Can add collaborator to ticket\": \"יכול להוסיף שותף לקריאה\"\n\"Can delete collaborator from ticket\": \"יכול למחוק שותף עריכה מהקריאה\"\n\"Can delete thread/notes\": \"יכול למחוק שרשור/הערות\"\n\"Can apply prepared response on ticket\": \"יכול להחיל תגובה מוכנה על הקריאה\"\n\"Can add ticket tags\": \"יכול להוסיף תגי קריאה\"\n\"Can delete ticket tags\": \"יכול למחוק תגי קריאה\"\n\"Can kick other ticket users\": \"יכול להעיף משתמשי קריאות אחרים\"\n\"Can manage email templates\": \"יכול לנהל תבניות דואר אלקטרוני\"\n\"Can manage groups\": \"יכול לנהל קבוצות\"\n\"Can manage Sub-Groups/Teams\": \"יכול לנהל קבוצות משנה/צוותים\"\n\"Can manage agents\": \"יכול לנהל סוכנים\"\n\"Can manage agent privileges\": \"יכול לנהל הרשאות סוכן\"\n\"Can manage ticket types\": \"יכול לנהל סוגי קריאות\"\n\"Can manage ticket custom fields\": \"יכול לנהל שדות מותאמים אישית של קריאות\"\n\"Can manage customers\": \"יכול לנהל לקוחות\"\n\"Can manage Prepared Responses\": \"יכול לנהל תגובות מוכנות\"\n\"Can manage Automatic workflow\": \"יכול לנהל זרימת עבודה אוטומטית\"\n\"Can manage tags\": \"יכול לנהל תגים\"\n\"Can manage knowledgebase\": \"יכול לנהל מאגר ידע\"\n\"Can manage Groups Saved Reply\": \"יכול לנהל קבוצות שמור תגובה\"\n\"Add Privilege\": \"הוסף הרשאות\"\n\"Choose set of privileges which will be available to the agent.\": \"בחר קבוצת הרשאות שתהיה זמינה לסוכן.\"\n\"Advanced\": \"מתקדם\"\n\"Privilege Name must have characters only\": \"שם הרשאות חייב לכלול תווים בלבד\"\n\"Maximum character length is 50\": \"אורך התווים המרבי הוא 50\"\n\"Open Tickets\": \"פתח קריאות\"\n\"New Customer\": \"לקוח חדש\"\n\"New Agent\": \"סוכן חדש\"\n\"Total Article(s)\": \"סך כל המאמרים\"\n\"Please specify a valid email address\": \"נא לציין כתובת אימייל חוקית\"\n\"Please enter the password associated with your email address\": \"אנא הזן את הסיסמה המשויכת לכתובת האימייל שלך\"\n\"Please enter your server host address\": \"אנא הזן את כתובת מארח השרת שלך\"\n\"Please specify a port number to connect with your mail server\": \"אנא ציין את מספר היציאה עבור שרת הדואר שלך\"\n\"Success ! Branding details saved successfully.\": \"פרטי המיתוג נשמרו בהצלחה.\"\n\"Success ! Time details saved successfully.\": \"פרטי הזמן נשמרו בהצלחה.\"\n\"Spam setting saved successfully.\": \"הגדרת הספאם נשמרה בהצלחה.\"\n\"Please specify a valid name for your mailbox.\": \"אנא ציין שם חוקי לתיבת הדואר שלך.\"\n\"Please select a valid swift-mailer configuration.\": \"אנא בחר תצורה חוקית של Swift-mailer.\"\n\"Please specify a valid host address.\": \"נא לציין כתובת מארח חוקית.\"\n\"Please specify a valid email address.\": \"נא לציין כתובת אימייל חוקית.\"\n\"Please enter the associated account password.\": \"נא להזין את סיסמת החשבון המשויכת.\"\n\"New Saved Reply\": \"תגובה שמורה חדשה\"\n\"New Category\": \"קטגוריה חדשה\"\n\"Folder\": \"תיקיה\"\n\"Category\": \"קטגוריה\"\n\"Created\": \"נוצר\"\n\"All Articles\": \"כל המאמרים\"\n\"Viewed\": \"נצפה\"\n\"New Article\": \"מאמר חדש\"\n\"Thank you for your feedback!\": \"תודה על המשוב שלך!\"\n\"Was this article helpful?\": \"האם המאמר הזה היה מועיל?\"\n\"Helpdesk\": \"Helpdesk\"\n\"Support Center\": \"מרכז תמיכה\"\n\"Mailboxes\": \"תיבות דואר\"\n\"By\": \"על ידי\"\n\"Search Tickets\": \"חיפוש קריאות\"\n\"Customer Information\": \"מידע ללקוחות\"\n\"Total Replies\": \"סך התגובות\"\n\"Filter With\": \"סינון עם\"\n\"Type email to add\": \"הקלד אימייל כדי להוסיף\"\n\"Collaborators\": \"משתפי פעולה\"\n\"Labels\": \"תוויות\"\n\"Group\": \"קבוצה\"\n\"group\": \"קבוצה\"\n\"Contact Team\": \"צור קשר עם הצוות\"\n\"Stay on ticket\": \"הישאר בקריאה\"\n\"Redirect to list\": \"הפנה מחדש לרשימה\"\n\"Nothing interesting here...\": \"שום דבר מעניין כאן\"\n\"Previous Ticket\": \"הקריאה הקודמת\"\n\"Next Ticket\": \"הקריאה הבאה\"\n\"Forward\": \"קדימה\"\n\"Note\": \"הערה\"\n\"Write a reply\": \"כתוב תשובה\"\n\"Created Ticket\": \"קריאה נוצרה\"\n\"All Threads\": \"כל השרשורים\"\n\"Forwards\": \"קדימה\"\n\"Notes\": \"הערות\"\n\"Pinned\": \"מוצמד\"\n\"Edit Ticket\": \"ערוך קריאה\"\n\"Print Ticket\": \"הדפס קריאה\"\n\"Mark as Spam\": \"סמן כספאם\"\n\"Mark as Closed\": \"סמן כסגור\"\n\"Delete Ticket\": \"מחק קריאה\"\n\"View order details from different eCommerce channels\": \"הצג פרטי הזמנה מערוצי מסחר אלקטרוני שונים\"\n\"ECOMMERCE CHANNELS\": \"ערוצי מסחר אלקטרוני\"\n\"Select channel\": \"בחר ערוץ\"\n\"Order Id\": \"מספר הזמנה\"\n\"Fetch Order\": \"סדר אחזור\"\n\"No orders have been integrated to this ticket yet.\": \"עדיין לא נקשרו הזמנות לקריאה זו.\"\n\"Enter your credentials below to gain access to your helpdesk account.\": \"הזן את האישורים שלך למטה כדי להיכנס\"\n\"Keep me logged in\": \"תשאיר אותי מחובר\"\n\"Forgot Password?\": \"שכחת את הסיסמא?\"\n\"Log in to your\": \"היכנס אל שלך\"\n\"Sign In\": \"התחבר\"\n\"Edit Customer\": \"ערוך לקוח\"\n\"Update\": \"עדכון\"\n\"Discard\": \"השלך\"\n\"Cancel\": \"בטל\"\n\"Not Assigned\": \"לא מוקצה\"\n\"Submit\": \"שלח\"\n\"Submit And Open\": \"שלח ופתח\"\n\"Submit And Pending\": \"שלח והמתנה\"\n\"Submit And Answered\": \"שלח וענה\"\n\"Submit And Resolved\": \"שלח ונפתר\"\n\"Submit And Closed\": \"שלח ונסגר\"\n\"Choose a Color\": \"בחר צבע\"\n\"Create\": \"צור\"\n\"Edit Label\": \"ערוך תווית\"\n\"Add Label\": \"הוסף תווית\"\n\"To\": \"אל\"\n\"Ticket\": \"קריאה\"\n\"Your browser does not support JavaScript or You disabled JavaScript, Please enable those !\": \"הדפדפן שלך אינו תומך ב-Javascript או ש-Javascript מושבת. אנא תקן זאת!\"\n\"Confirm Action\": \"אשר פעולה\"\n\"Confirm\": \"אשר\"\n\"No result found\": \"לא נמצאו תוצאות\"\n\"ticket delivery status\": \"מצב שליחת הקריאה\"\n\"Warning! Select valid image file.\": \"בחר קובץ תמונה חוקי.\"\n\"Error\": \"שגיאה\"\n\"Save\": \"שמור\"\n\"SEO\": \"קידום\"\n\"Edit Saved Filter\": \"ערוך פילטר שמור\"\n\"Type atleast 2 letters\": \"הכנס לפחות 2 אותיות\"\n\"Remove Label\": \"הסר תווית\"\n\"New Saved Filter\": \"מסנן שמור חדש\"\n\"Is Default\": \"האם ברירת מחדל\"\n\"Remove Saved Filter\": \"הסר מסנן שמור\"\n\"Ticket Info\": \"פרטי קריאה\"\n\"Last Replied Agent\": \"הסוכן שהשיב לאחרונה\"\n\"created Ticket\": \"קריאה שנוצרה\"\n\"Uploaded Files\": \"העלה קבצים\"\n\"Download (as .zip)\": \"הורד ( כקובץ .zip)\"\n\"made last reply\": \"התגובה האחרונה\"\n\"N/A\": \"N/A\"\n\"Unassigned\": \"לא משוייך\"\n\"Label\": \"תווית\"\n\"Assigned to me\": \"משוייך אלי\"\n\"Search Query\": \"שאילתת חיפוש\"\n\"Searching\": \"מחפש\"\n\"Saved Filter\": \"מסנן שמור\"\n\"No Label Created\": \"לא נוצרה תווית\"\n\"Label with same name already exist.\": \"כבר קיימת תווית עם אותו שם\"\n\"Create New\": \"צור חדש\"\n\"Mail status\": \"סטטוס דואר\"\n\"replied\": \"השיב\"\n\"added note\": \"הערה נוספת\"\n\"forwarded\": \"הועבר\"\n\"TO\": \"אל\"\n\"CC\": \"עותק\"\n\"BCC\": \"מוסתר\"\n\"Locked\": \"נעול\"\n\"Edit Thread\": \"ערוך שרשור\"\n\"Delete Thread\": \"מחק שרשור\"\n\"Unpin Thread\": \"בטל את הצמדת השרשור\"\n\"Pin Thread\": \"הצמד שרשור\"\n\"Unlock Thread\": \"בטל את הנעילה של השרשור\"\n\"Lock Thread\": \"נעל שרשור\"\n\"Translate Thread\": \"תרגם שרשור\"\n\"Language\": \"שפה\"\n\"English\": \"אנגלית\"\n\"French\": \"צרפתית\"\n\"Italian\": \"איטלקית\"\n\"Arabic\": \"ערבית\"\n\"German\": \"גרמנית\"\n\"Spanish\": \"ספרדית\"\n\"Turkish\": \"טורקית\"\n\"Danish\": \"דנית\"\n\"Chinese\": \"סינית\"\n\"Polish\": \"פולנית\"\n\"Hebrew\": \"עברית\"\n\"System\": \"שפת מערכת\"\n\"Open in Files\": \"פתח בקבצים\"\n\"Email address is invalid\": \"כתובת האימייל אינה חוקית\"\n\"Tag with same name already exist\": \"כבר קיים תג בשם זה\"\n\"Text length should be less than 20 charactors\": \"חייב להיות באורך של פחות מ-20 תווים\"\n\"Label with same name already exist\": \"כבר קיימת תווית בעלת אותו שם\"\n\"Agent Name\": \"שם סוכן\"\n\"Agent Email\": \"דואר סוכן\"\n\"open\": \"פתח\"\n\"Currently active agents on ticket\": \"כרגע סוכנים פעילים בכרטיס\"\n\"Edit Customer Information\": \"ערוך את פרטי הלקוח\"\n\"Restore\": \"שחזר\"\n\"Delete Forever\": \"מחק לצמיתות\"\n\"Add Team\": \"הוסף צוות\"\n\"delete\": \"מחק\"\n\"You didnt have any folder for current filter(s).\": \"אין תיקיות שתואמות את המסננים הנוכחיים.\"\n\"Add Folder\": \"Add Folder\"\n\"This field must have valid characters only\": \"שדה זה חייב לכלול תווים חוקיים בלבד\"\n\"Can edit task\": \"יכול לערוך משימה\"\n\"Can create task\": \"יכול ליצור משימה\"\n\"Can delete task\": \"יכול למחוק משימה\"\n\"Can add member to task\": \"יכול להוסיף חבר למשימה\"\n\"Can remove member from task\": \"יכול להסיר חבר מהמשימה\"\n\"Agent Privileges\": \"הרשאות סוכן\"\n\"Agent Privilege represents overall permissions in System.\": \"הרשאות סוכן מייצגות את ההרשאות הכוללות במוקד העזרה שלך.\"\n\"Ticket View\": \"תצוגת קריאות\"\n\"User can view tickets based on selected scope.\": \"המשתמש יכול להציג כרטיסים על סמך היקף נבחר.\"\n\"If individual access then user can View assigned Ticket(s) only, If Team access then user can view all Ticket(s) in team(s) he belongs to and so on\": \"אם גישה פרטנית, המשתמש יכול להציג כרטיסים שהוקצו בלבד, אם גישת צוות, המשתמש יכול להציג את כל הכרטיסים בצוות(ים) שהם שייכים אליהם, וכו'.\"\n\"Global Access\": \"גישה גלובלית\"\n\"Group Access\": \"גישה לקבוצה\"\n\"Team Access\": \"גישה לצוות\"\n\"Individual Access\": \"גישה אישית\"\n\"This field must have characters only\": \"שדה זה חייב לכלול תווים בלבד\"\n\"Maximum character length is 40\": \"אורך התווים המרבי הוא 40\"\n\"This is not a valid email address\": \"זו אינה כתובת אימייל חוקית\"\n\"Password must contains 8 Characters\": \"הסיסמה חייבת להכיל 8 תווים\"\n\"The passwords does not match\": \"הסיסמאות לא תואמות\"\n\"Enabled\": \"מופעל\"\n\"Create Configuration\": \"צור תצורה\"\n\"Swift Mailer Settings\": \"הגדרות Swift Mailer\"\n\"Username\": \"שם משתמש\"\n\"Please select a swiftmailer id\": \"אנא בחר מזהה swiftmailer\"\n\"Please enter a valid e-mail id\": \"נא להזין מזהה דואר אלקטרוני חוקי\"\n\"Please enter a mailer id\": \"נא להזין מזהה דואר\"\n\"Email Id\": \"מזהה אימייל\"\n\"Are you sure? You want to perform this action.\": \"האם אתה בטוח שברצונך לבצע פעולה זו?\"\n\"Reorder\": \"סדר מחדש\"\n\"New Workflow\": \"תהליך עבודה חדש\"\n\"OR\": \"או\"\n\"AND\": \"וגם\"\n\"Please enter a valid name.\": \"נא להזין שם חוקי.\"\n\"Please select a value.\": \"אנא בחר ערך.\"\n\"Please add a value.\": \"נא להוסיף ערך.\"\n\"This field is required\": \"זהו שדה חובה\"\n\"or\": \"או\"\n\"and\": \"וגם\"\n\"Select a Condition\": \"בחר תנאי\"\n\"Loading...\": \"טוען...\"\n\"Select Option\": \"בחר אפשרות\"\n\"Inactive\": \"לא פעיל\"\n\"New Type\": \"סוג חדש\"\n\"Placeholders\": \"מצייני מקום\"\n\"Ticket Link\": \"קישור קריאה\"\n\"Id\": \"זיהוי\"\n\"Preview\": \"תצוגה מקדימה\"\n\"Sort Order\": \"סדר מיון\"\n\"This field must be a number\": \"שדה זה חייב להיות מספר\"\n\"User\": \"משתמש\"\n\"Edit Group\": \"ערוך קבוצה\"\n\"Group Status\": \"סטטוס קבוצה\"\n\"Group is Active\": \"הקבוצה פעילה\"\n\"Add Group\": \"הוסף קבוצה\"\n\"Contact number is invalid\": \"מספר איש הקשר אינו חוקי\"\n\"Edit Agent\": \"ערוך סוכן\"\n\"No Privilege added, Please add Privilege(s) first !\": \"לא נוספה הרשאות, אנא הוסף הרשאות תחילה!\"\n\"Edit Email Template\": \"ערוך תבנית דואר אלקטרוני\"\n\"Edit Workflow\": \"ערוך את תהליך העבודה\"\n\"Save Workflow\": \"שמור את תהליך העבודה\"\n\"Edit Ticket Type\": \"ערוך את סוג הכרטיס\"\n\"Add Ticket Type\": \"הוסף סוג כרטיס\"\n\"Date Released\": \"תאריך פרסום\"\n\"Free\": \"חינם\"\n\"Premium\": \"פרימיום\"\n\"Installed\": \"מותקן\"\n\"Installed Applications\": \"יישומים מותקנים\"\n\"Apps Dashboard\": \"לוח מחוונים של יישומים\"\n\"Dashboard\": \"לוח מחוונים\"\n\"Nothing Interesting here\" : \"אין פה שום דבר מעניין\"\n\"No Categories Added\" : \"לא נוספו קטגוריות\"\n\"Error : Something went wrong, please try again later\" : \"שגיאה: משהו השתבש, נסה שוב מאוחר יותר\"\n\"ticket\": \"קריאה\"\n\"Add Email Template\": \"הוסף תבנית דואר אלקטרוני\"\n\"This field contain 100 characters only\": \"מקסימום 100 תווים\"\n\"This field contain characters only\" : \"שדה זה עשוי להכיל תווים בלבד\"\n\"Name length must not be greater than 200 !!\": \"אורך השם לא יכול להיות גדול מ-200!\"\n\"Warning! Correct all field values first!\": \"אַזהָרָה! תקן את כל ערכי השדות תחילה!\"\n\"Warning ! This is not a valid request\": \"אַזהָרָה! זוהי בקשה לא חוקית\"\n\"Success ! Tag removed successfully.\": \"!התג הוסר בהצלחה\"\n\"Success ! Tags Saved successfully.\": \"!התגים נשמרו בהצלחה.\"\n\"Success ! Revision restored successfully.\": \"הגרסה שוחזרה בהצלחה.\"\n\"Success ! Categories updated successfully.\": \"הצלחה! הקטגוריות עודכנו בהצלחה.\"\n\"Success ! Article Related removed successfully.\": \"הצלחה! המאמר המקושר הוסר בהצלחה.\"\n\"Success ! Article Related is already added.\": \"הצלחה! המאמר המקושר כבר נוסף.\"\n\"Success ! Cannot add self as relative article.\": \"הצלחה! לא ניתן להוסיף את עצמך כמאמר מקושר.\"\n\"Success ! Article Related updated successfully.\": \"הצלחה! המאמר המקושר עודכן בהצלחה.\"\n\"Success ! Articles removed successfully.\": \"הצלחה! המאמרים הוסרו בהצלחה.\"\n\"Success ! Article status updated successfully.\": \"הצלחה! סטטוס המאמר עודכן בהצלחה.\"\n\"Success ! Article star updated successfully.\": \"הצלחה! הכוכב של המאמר עודכן בהצלחה.\"\n\"Success! Article updated successfully\": \"הצלחה! המאמר עודכן בהצלחה\"\n\"Success ! Category sort order updated successfully.\": \"הצלחה! סדר המיון של הקטגוריה עודכן בהצלחה.\"\n\"Success ! Category status updated successfully.\": \"הצלחה! סטטוס הקטגוריה עודכן בהצלחה.\"\n\"Success ! Folders updated successfully.\": \"הצלחה! התיקיות עודכנו בהצלחה.\"\n\"Success ! Categories removed successfully.\": \"הצלחה! הקטגוריות הוסרו בהצלחה.\"\n\"Success ! Category updated successfully.\": \"הצלחה! הקטגוריה עודכנה בהצלחה.\"\n\"Error ! Category is not exist.\": \"שגיאה! הקטגוריה אינה קיימת.\"\n\"Warning ! Customer Login disabled by admin.\": \"אזהרה! הכניסה של הלקוח נוטרלה על ידי המנהל.\"\n\"This Email is not registered with us.\": \"האימייל הזה לא רשום אצלנו.\"\n\"Your password has been updated successfully.\": \"הסיסמא שלך עודכנה בהצלחה.\"\n\"Password dont match.\": \"הסיסמא לא מתאימה.\"\n\"Error ! Profile image is not valid, please upload a valid format\": \"שגיאה! תמונת הפרופיל אינה חוקית, אנא העלה פורמט חוקי\"\n'Warning! Provide valid image file. (Recommened\": \"PNG, JPG or GIF Format).': 'אזהרה! ספק קובץ תמונה חוקי. (מומלץ\": \"פורמט PNG, JPG או GIF).'\n\"Success! Folder has been added successfully.\": \"הצלחה! התיקיה נוספה בהצלחה.\"\n\"Folder updated successfully.\": \"התיקיה עודכנה בהצלחה.\"\n\"Success ! Folder status updated successfully.\": \"הצלחה! סטטוס התיקיה עודכן בהצלחה.\"\n\"Error ! Folder is not exist.\": \"שגיאה! התיקיה לא קיימת.\"\n\"Success ! Folder updated successfully.\": \"הצלחה! התיקיה עודכנה בהצלחה.\"\n\"Error ! Folder does not exist.\": \"שגיאה! התיקיה לא קיימת.\"\n\"Success ! Folder deleted successfully.\": \"הצלחה! התיקיה נמחקה בהצלחה.\"\n\"Warning ! Folder doesnt exists!\": \"אזהרה! התיקיה לא קיימת!\"\n\"Warning ! Cannot create ticket, given email is blocked by admin.\": \"אזהרה! לא ניתן ליצור כרטיס, האימייל שניתן חסום על ידי המנהל.\"\n\"Success ! Ticket has been created successfully.\": \"הצלחה! הכרטיס נוצר בהצלחה.\"\n\"Warning ! Can not create ticket, invalid details.\": \"אזהרה! לא ניתן ליצור כרטיס, פרטים שגויים.\"\n\"Warning ! Post size can not exceed 25MB\": \"אזהרה! גודל הפוסט לא יכול לחרוג מ-25MB\"\n\"Create Ticket Request\": \"צור בקשת כרטיס\"\n\"Success ! Reply added successfully.\": \"הצלחה! התגובה נוספה בהצלחה.\"\n\"Warning ! Reply field can not be blank.\": \"אזהרה! שדה התגובה לא יכול להיות ריק.\"\n\"Success ! Rating has been successfully added.\": \"הצלחה! הדירוג נוסף בהצלחה.\"\n\"Warning ! Invalid rating.\": \"אזהרה! דירוג שגוי.\"\n\"Error ! Can not add customer as a collaborator.\": \"שגיאה! לא ניתן להוסיף לקוח כשותף.\"\n\"Success ! Collaborator added successfully.\": \"הצלחה! השותף נוסף בהצלחה.\"\n\"Error ! Collaborator is already added.\": \"שגיאה! השותף כבר נוסף.\"\n\"Success ! Collaborator removed successfully.\": \"הצלחה! השותף הוסר בהצלחה.\"\n\"Error ! Invalid Collaborator.\": \"שגיאה! שותף שגוי.\"\n\"An unexpected error occurred. Please try again later.\": \"אירעה שגיאה בלתי צפויה. אנא נסה שוב מאוחר יותר.\"\n\"Feedback saved successfully.\": \"המשוב נשמר בהצלחה.\"\n\"Feedback updated successfully.\": \"המשוב עודכן בהצלחה.\"\n\"Invalid feedback provided.\": \"המשוב שניתן לא חוקי.\"\n\"Article not found.\": \"המאמר לא נמצא.\"\n\"You need to login to your account before can perform this action.\": \"אתה צריך להתחבר לחשבון שלך לפני שאתה יכול לבצע פעולה זו.\"\n\"Warning! Please add valid Actions!\": \"אזהרה! אנא הוסף פעולות חוקיות!\"\n\"Warning! In Free Plan you can not change Events!\": \"אזהרה! בתוכנית החינם לא ניתן לשנות אירועים!\"\n\"Success! Prepared Response has been updated successfully.\": \"הצלחה! התגובה המוכנה עודכנה בהצלחה.\"\n\"Success! Prepared Response has been added successfully.\": \"הצלחה! התגובה המוכנה נוספה בהצלחה.\"\n\"Warning This is not a valid request\": \"אזהרה! זו לא בקשה חוקית\"\n\"Use Default Colors\": \"השתמש בצבעים ברירת מחדל\"\n\"Masonry\": \"אבן חצובה\"\n\"Popular Article\": \"מאמר פופולרי\"\n\"Manage Ticket Custom Fields\": \"נהל שדות מותאמים אישית לכרטיס\"\n\"Mail status:\": \"מצב הדואר:\"\n\"You dont have premission to edit this Prepared response\": \"אין לך הרשאה לערוך את התגובה המוכנה הזו\"\n\"Save Prepared Response\": \"שמור תגובה מוכנה\"\n\"Success ! Prepared response removed successfully.\": \"הצלחה! התגובה המוכנה הוסרה בהצלחה.\"\n\"Warning! You are not allowed to perform this action.\": \"אזהרה! אתה לא מורשה לבצע פעולה זו.\"\n\"Success! Workflow has been updated successfully.\": \"הצלחה! התהליך עודכן בהצלחה.\"\n\"Success! Workflow has been added successfully.\": \"הצלחה! התהליך נוסף בהצלחה.\"\n\"Success! Order has been updated successfully.\": \"הצלחה! ההזמנה עודכנה בהצלחה.\"\n\"Success! Workflow has been removed successfully.\": \"הצלחה! התהליך הוסר בהצלחה.\"\n\"Mailbox successfully created.\": \"תיבת המייל נוצרה בהצלחה.\"\n\"Mailbox successfully updated.\": \"התיבה המיילית עודכנה בהצלחה.\"\n\"Warning ! Bad request !\": \"אזהרה! בקשה שגויה!\"\n\"Error! Given current password is incorrect.\": \"שגיאה! הסיסמה הנוכחית שגויה.\"\n\"Success ! Profile update successfully.\": \"הצלחה! הפרופיל עודכן בהצלחה.\"\n\"Error ! User with same email is already exist.\": \"שגיאה! משתמש עם אותו הדואל כבר קיים.\"\n\"Success ! Agent updated successfully.\": \"הצלחה! הסוכן עודכן בהצלחה.\"\n\"Success ! Agent removed successfully.\": \"הצלחה! הסוכן הוסר בהצלחה.\"\n\"Warning ! You are allowed to remove account owners account.\": \"אזהרה! אתה מורשה להסיר את חשבון בעל החשבון.\"\n\"Error ! Invalid user id.\": \"שגיאה! מזהה משתמש לא חוקי.\"\n\"Success ! Filter has been saved successfully.\": \"הצלחה! הפילטר נשמר בהצלחה.\"\n\"Success ! Filter has been updated successfully.\": \"הצלחה! הפילטר עודכן בהצלחה.\"\n\"Success ! Filter has been removed successfully.\": \"הצלחה! הפילטר הוסר בהצלחה.\"\n\"Please check your mail for password update.\": \"אנא בדוק את הדואר שלך לעדכון הסיסמה.\"\n\"This Email address is not registered with us.\": \"כתובת הדואל הזו אינה רשומה אצלנו.\"\n\"Success ! Customer saved successfully.\": \"הצלחה! הלקוח נשמר בהצלחה.\"\n\"Error ! User with same email already exist.\": \"שגיאה! משתמש עם אותו הדואל כבר קיים.\"\n\"Success ! Customer information updated successfully.\": \"הצלחה! מידע הלקוח עודכן בהצלחה.\"\n\"Success ! Customer updated successfully.\": \"הצלחה! הלקוח עודכן בהצלחה.\"\n\"Error ! Customer with same email already exist.\": \"שגיאה! לקוח עם אותו הדואל כבר קיים.\"\n\"unstarred Action Completed successfully\": \"פעולה שלא מסומנת הושלמה בהצלחה\"\n\"starred Action Completed successfully\": \"פעולה מסומנת הושלמה בהצלחה\"\n\"Success ! Customer removed successfully.\": \"הצלחה! הלקוח הוסר בהצלחה.\"\n\"Error ! Invalid customer id.\": \"שגיאה! מזהה לקוח לא חוקי.\"\n\"Success! Template has been updated successfully.\": \"הצלחה! התבנית עודכנה בהצלחה.\"\n\"Success! Template has been added successfully.\": \"הצלחה! התבנית נוספה בהצלחה.\"\n\"Success! Template has been deleted successfully.\": \"הצלחה! התבנית נמחקה בהצלחה.\"\n\"Warning! resource not found.\": \"אזהרה! המשאב לא נמצא.\"\n\"Warning! You can not remove predefined email template which is being used in workflow(s).\": \"אזהרה! אתה לא יכול להסיר תבנית דואר אלקטרוני שנמצאת בשימוש בתהליכים.\"\n\"Success ! Email settings are updated successfully.\": \"הצלחה! הגדרות הדואר האלקטרוני עודכנו בהצלחה.\"\n\"Success ! Group information updated successfully.\": \"הצלחה! מידע הקבוצה עודכן בהצלחה.\"\n\"Success ! Group information saved successfully.\": \"הצלחה! מידע הקבוצה נשמר בהצלחה.\"\n\"Support Group removed successfully.\": \"הקבוצה של התמיכה הוסרה בהצלחה.\"\n\"Success ! Privilege information saved successfully.\": \"הצלחה! מידע ההרשאה נשמר בהצלחה.\"\n\"Privilege updated successfully.\": \"ההרשאה עודכנה בהצלחה.\"\n\"Support Privilege removed successfully.\": \"הרשאת התמיכה הוסרה בהצלחה.\"\n\"Success! Reply has been updated successfully.\": \"הצלחה! התגובה עודכנה בהצלחה.\"\n\"Success! Reply has been added successfully.\": \"הצלחה! התגובה נוספה בהצלחה.\"\nSuccess! Saved Reply has been deleted successfully\": \"הצלחה! התגובה השמורה נמחקה בהצלחה\"\n\"SwiftMailer configuration updated successfully.\": \"תצורת SwiftMailer עודכנה בהצלחה.\"\n\"Swiftmailer configuration removed successfully.\": \"תצורת Swiftmailer הוסרה בהצלחה.\"\n\"Success ! Team information saved successfully.\": \"הצלחה! מידע הצוות נשמר בהצלחה.\"\n\"Success ! Team information updated successfully.\": \"הצלחה! מידע הצוות עודכן בהצלחה.\"\n\"Support Team removed successfully.\": \"צוות התמיכה הוסר בהצלחה.\"\n\"Success! Reply has been added successfully\": \"הצלחה! התגובה נוספה בהצלחה\"\n\"Success ! Thread updated successfully.\": \"הצלחה! השרשור עודכן בהצלחה.\"\n\"Error ! Reply field can not be blank.\": \"שגיאה! שדה התגובה לא יכול להיות ריק.\"\n\"Success ! Thread removed successfully.\": \"הצלחה! השרשור הוסר בהצלחה.\"\n\"Success ! Thread locked successfully\": \"הצלחה! השרשור ננעל בהצלחה\"\n\"Success ! Thread unlocked successfully\": \"הצלחה! השרשור נפתח בהצלחה\"\n\"Success ! Thread pinned successfully\": \"הצלחה! השרשור נעוץ בהצלחה\"\n\"Error ! Invalid thread.\": \"שגיאה! שרשור לא חוקי.\"\n\"Could not create ticket, invalid details.\": \"לא ניתן ליצור כרטיס, פרטים לא חוקיים.\"\n\"Success ! Tag updated successfully.\": \"הצלחה! התג עודכן בהצלחה.\"\n\"Error ! Customer can not be added as collaborator.\": \"שגיאה! לא ניתן להוסיף לקוח כשותף.\"\n\"Success ! Tag unassigned successfully.\": \"הצלחה! התג בוטל בהצלחה.\"\n\"Success ! Tag added successfully.\": \"הצלחה! התג נוסף בהצלחה.\"\n\"Please enter tag name.\": \"אנא הזן שם תג.\"\n\"Error ! Invalid tag.\": \"שגיאה! תג לא חוקי.\"\n\"Success ! Type removed successfully.\": \"הצלחה! הסוג הוסר בהצלחה.\"\n\"Success ! Ticket to label removed successfully.\": \"הצלחה! תווית הכרטיס הוסרה בהצלחה.\"\n\"Unable to retrieve support team details\": \"לא ניתן לאחזר את פרטי צוות התמיכה\"\n\"Ticket support group updated successfully\": \"קבוצת תמיכה בכרטיסים עודכנה בהצלחה\"\n\"Unable to retrieve status details\": \"לא ניתן לאחזר את פרטי המצב\"\n\"Insufficient details provided.\": \"לא סופקו מספיק פרטים.\"\n\"Error! Subject field is mandatory\": \"שגיאה! שדה הנושא הוא חובה\"\n\"Error! Reply field is mandatory\": \"שגיאה! שדה התגובה הוא חובה\"\n\"Success ! Ticket has been updated successfully.\": \"הצלחה! הכרטיס עודכן בהצלחה.\"\n\"Success ! Label updated successfully.\": \"הצלחה! התווית עודכנה בהצלחה.\"\n\"Error ! Invalid label id.\": \"שגיאה! מזהה תווית לא חוקי.\"\n\"Success ! Label removed successfully.\": \"הצלחה! התווית הוסרה בהצלחה.\"\n\"Success ! Label created successfully.\": \"הצלחה! התווית נוצרה בהצלחה.\"\n\"Error ! Label name can not be blank.\": \"שגיאה! שם התווית לא יכול להיות ריק.\"\n\"Success ! Ticket moved to trash successfully.\": \"הצלחה! הכרטיס הועבר לפח בהצלחה.\"\n\"Success! Ticket type saved successfully.\": \"הצלחה! סוג הכרטיס נשמר בהצלחה.\"\n\"Success! Ticket type updated successfully.\": \"הצלחה! סוג הכרטיס עודכן בהצלחה.\"\n\"Error! Ticket type with same name already exist\": \"שגיאה! כבר קיים סוג כרטיס באותו השם.\"\n\"SAVE\": \"שמור\"\n\n# Successfully Pop-up/Notification Messages:\n\"Ticket is already assigned to agent\" : \"הכרטיס כבר משויך לסוכן\"\n\"Success ! Agent assigned successfully.\" : \"הצלחה! הסוכן שויך בהצלחה.\"\n\"Ticket status is already set\" : \"סטטוס הכרטיס כבר נקבע\"\n\"Success ! Tickets status updated successfully.\" : \"הצלחה! סטטוס הכרטיסים עודכן בהצלחה.\"\n\"Ticket priority is already set\" : \"עדיפות הכרטיס כבר נקבעה\"\n\"Success ! Tickets priority updated successfully.\" : \"הצלחה! עדיפות הכרטיסים עודכנה בהצלחה.\"\n\"Ticket group is updated successfully\" : \"קבוצת הכרטיס עודכנה בהצלחה\"\n\"Ticket is already assigned to group\" : \"הכרטיס כבר משויך לקבוצה\"\n\"Success ! Tickets group updated successfully.\" : \"הצלחה! קבוצת הכרטיסים עודכנה בהצלחה.\"\n\"Ticket team is updated successfully\" : \"צוות הכרטיס עודכן בהצלחה\"\n\"Ticket is already assigned to team\" : \"הכרטיס כבר משויך לצוות\"\n\"Success ! Tickets team updated successfully.\" : \"הצלחה! צוות הכרטיסים עודכן בהצלחה.\"\n\"Ticket type is already set\" : \"סוג הכרטיס כבר נקבע\"\n\"Success ! Tickets type updated successfully.\" : \"הצלחה! סוג הכרטיסים עודכן בהצלחה.\"\n\"Success ! Tickets label updated successfully.\" : \"הצלחה! תווית הכרטיסים עודכנה בהצלחה.\"\n\"Success ! Tickets added to label successfully.\" : \"הצלחה! הכרטיסים נוספו לתווית בהצלחה.\"\n\"Success ! Tickets moved to trashed successfully.\" : \"הצלחה! הכרטיסים הועברו לפח בהצלחה.\"\n\"Success ! Tickets removed successfully.\" : \"הצלחה! הכרטיסים הוסרו בהצלחה.\"\n\"Success ! Tickets restored successfully.\" : \"הצלחה! הכרטיסים שוחזרו בהצלחה.\"\n\"Unable to retrieve group details\" : \"לא ניתן לאחזר את פרטי הקבוצה\"\n\"Unable to retrieve team details\" : \"לא ניתן לאחזר את פרטי הצוות\"\n\"Tickets details have been updated successfully\": \"פרטי הכרטיסים עודכנו בהצלחה\"\n\"Label added to ticket successfully\" : \"התווית נוספה לכרטיס בהצלחה\"\n\"Label already added to ticket\" : \"התווית כבר נוספה לכרטיס\"\n\n#customer page\n\"Howdy!\": \"מה נשמע!\"\n\"New Ticket Request\": \"בקשה לכרטיס חדש\"\n\"Ticket Requests\": \"בקשות לכרטיסים\"\n\"Tickets have been updated successfully\": \"הכרטיסים עודכנו בהצלחה\"\n\"Please check your inbox for a new password\": \"אנא בדוק את תיבת הדואר שלך לקבלת סיסמה חדשה\"\n\"This email address is not registered with us\": \"כתובת הדואר האלקטרוני הזו לא רשומה אצלנו\"\n\"You have already updated your password using this link. If you wish to change your password again click on the forget password link on the login page.\": \"כבר עדכנת את הסיסמה שלך באמצעות הקישור הזה. אם אתה מעוניין לשנות שוב את הסיסמה שלך לחץ על קישור 'שכחתי סיסמה' בדף ההתחברות.\"\n\"Your password has been successfully updated. Please log in using your new password.\": \"הסיסמה שלך עודכנה בהצלחה. אנא התחבר באמצעות הסיסמה החדשה שלך.\"\n\"Please try again, The passwords do not match\": \"אנא נסה שוב, הסיסמאות לא תואמות\"\n\"Support Privilege removed successfully\": \"הרשאת תמיכה הוסרה בהצלחה\"\n\"Success! Saved Reply has been deleted successfully.\": \"הצלחה! התגובה שנשמרה נמחקה בהצלחה.\"\n\"SwiftMailer configuration created successfully.\": \"תצורת SwiftMailer נוצרה בהצלחה.\"\n\"No swiftmailer configurations found for mailer id:\": \"לא נמצאו תצורות של SwiftMailer עבור מזהה משלח:\"\n\"Reply content cannot be left blank.\": \"תוכן התגובה לא יכול להישאר ריק.\"\n\"Reply added to the ticket and forwarded successfully.\": \"תגובה נוספה לכרטיס והועברה בהצלחה.\"\n\"Success! Thread pinned successfully.\": \"הצלחה! השרשור נעוץ בהצלחה.\"\n\"Success! Thread unpinned successfully.\": \"הצלחה! השרשור הוסר מהעיגון בהצלחה.\"\n\"Unable to retrieve priority details\": \"לא ניתן לאחזר פרטי עדיפות\"\n\"Ticket support team updated successfully\": \"צוות תמיכה בכרטיסים עודכן בהצלחה\"\n\"Ticket assigned to support group \": \"הכרטיס הוקצה לקבוצת תמיכה \"\n\"Mailbox configuration removed successfully.\": \"תצורת תיבת הדואר הוסרה בהצלחה.\"\n\"visit our website\": \"בקר באתר שלנו\"\n\n\"Cookie Usage Policy\": \"מדיניות שימוש בעוגיות\"\n\"cookie\": \"עוגייה\"\n\"cookies\": \"עוגיות\"\n\"HELP\": \"עזרה\"\n\"Home\": \"בית\"\n\"Cookie Policy\": \"מדיניות עוגיות\"\n\"Prev\": \"הקודם\"\n\"Ticket query message\": \"תוכן הפניה\"\n\"Select type\": \"בחר סוג\"\n\"Search KnowledgeBase\": \"חפש במאגר המידע\"\n\"You can't merge an account with itself.\": \"אי אפשר למזג חשבון עם עצמו.\"\n\"Edit Profile\": \"ערוך פרופיל\"\n\"Customer Login\": \"כניסת לקוח\"\n\"Contact Us\": \"צור קשר\"\n\"If you have ever contacted us previously, your account is more than likely already created.\": \"אם פנית אלינו בעבר, ייתכן וחשבוןך כבר נוצר.\"\n\"support\": \"תמיכה\"\n\"HelpDesk\": \"מרכז תמיכה\"\n\"Enter search keyword\": \"הכנס מילת חיפוש\"\n\"Explore the knowledge base\": \"חקור במאגר המידע\"\n\"Check out our knowledge base to see if your question has already been answered.\": \"בדוק במאגר המידע שלנו אם השאלה שלך כבר נענתה.\"\n\"Contact Our Team\": \"פנה לצוות שלנו\"\n\"If you still can't find an answer to what you're looking for, or you have a specific question, open a new ticket and we'd be happy to help!\": \"אם אתה עדיין לא מצאת תשובה למה שאתה מחפש, או שיש לך שאלה מסוימת, פתח פניה חדשה ונשמח לעזור!\"\n\"Popular Articles\": \"מאמרים פופולריים\"\n\"Some of the more popular articles in our knowledge base that have helped other customers.\": \"חלק מהמאמרים הפופולריים ביותר במאגר המידע שלנו שעזרו ללקוחות אחרים.\"\n\"Browse via Categories\": \"עיין לפי קטגוריות\"\n\"Choose a category from the list below to view articles.\": \"בחר קטגוריה מהרשימה למטה כדי לראות מאמרים.\"\n\"No Categories Found!\": \"לא נמצאו קטגוריות!\"\n\"Powered by\": \"מופעל על ידי\"\n\n#forgotpassword\n\"Forgot Password\": \"שכחתי סיסמה\"\n\"Enter your email address and we will send you a message to update your login credentials.\": \"הזן את כתובת הדואל שלך ונשלח לך הודעה לעדכון פרטי ההתחברות שלך.\"\n\"Send Mail\": \"שלח מייל\"\n\"Sign In to %websitename%\": \"התחבר ל-%websitename%\"\n\"Enter your name\": \"הזן את שמך\"\n\"Enter your email\": \"הזן את הדואל שלך\"\n\"Learn more about %deliveryStatus%.\": \"למד עוד על %deliveryStatus%.\"\n\"Some of our site pages utilize %cookies% and other tracking technologies. A %cookie% is a small text file that may be used, for example, to collect information about site activity. Some cookies and other technologies may serve to recall personal information previously indicated by a site user. You may block cookies, or delete existing cookies, by adjusting the appropriate setting on your browser. Please consult the %help% menu of your browser to learn how to do this. If you block or delete %cookies% you may find the usefulness of our site to be impaired.\": \"חלק מדפי האתר שלנו משתמשים ב-%cookies% ובטכנולוגיות מעקב אחרות. %cookie% הוא קובץ טקסט קטן שיכול לשמש, לדוגמה, לאיסוף מידע על פעילות באתר. חלק מהעוגיות והטכנולוגיות האחרות יכולות לשרת לזכירת מידע אישי שצוין בעבר על ידי משתמש האתר. אתה יכול לחסום עוגיות, או למחוק עוגיות קיימות, על ידי התאמת ההגדרה המתאימה בדפדפן שלך. אנא פנה לתפריט ה-%help% של הדפדפן שלך כדי ללמוד איך לעשות זאת. אם תחסום או תמחק %cookies%, ייתכן שתמצא את שימושיות האתר שלנו מוגבלת.\"\n\"To know more about our privacy policy, please visit %websiteLink%.\": \"למידע נוסף על מדיניות הפרטיות שלנו, אנא בקר ב-%websiteLink%.\"\n\"This field contain maximum 40 charectures.\": \"השדה הזה מכיל מקסימום 40 תווים.\"\n\"This field contain maximum 50 charectures.\": \"השדה הזה מכיל מקסימום 50 תווים.\"\n\n#misc\n\"Time\": \"זמן\"\n\"Links\": \"קישורים\"\n\"Broadcast Message\": \"הודעת שידור\"\n\"Wide Logo\": \"לוגו רחב\"\n\"Upload an Image (200px x 48px) in</br> PNG or JPG Format\": \"העלה תמונה (200 פיקסלים על 48 פיקסלים) בפורמט PNG או JPG\"\n\"It will be shown as Logo on Knowledgebase and Helpdesk\": \"התמונה תוצג כלוגו בבסיס הידע ובמרכז התמיכה\"\n\"Website Status\": \"מצב האתר\"\n\"Enable front end website and knowledgebase for customer(s)\": \"הפעל אתר חזיתי ובסיס ידע עבור לקוחות\"\n\"Brand Color\": \"צבע המותג\"\n\"Page Background Color\": \"צבע רקע העמוד\"\n\"Header Background Color\": \"צבע רקע הכותרת\"\n\"Banner Background Color\": \"צבע רקע הבאנר\"\n\"Page Link Color\": \"צבע הקישור בעמוד\"\n\"Page Link Hover Color\": \"צבע הקישור בעמוד כאשר העכבר מעליו\"\n\"Article Text Color\": \"צבע הטקסט במאמר\"\n\"Tag Line\": \"משפט תג\"\n\"Hi! how can we help?\": \"היי! איך אנו יכולים לעזור?\"\n\"Layout\": \"פריסה\"\n\"Ticket Create Option\": \"אפשרות יצירת כרטיס\"\n\"Login Required To Create Tickets\": \"נדרש כניסה ליצירת כרטיסים\"\n\"Remove Customer Login/Signin Button\": \"הסר לחצן כניסת הלקוח / הרשמה\"\n\"Disable Customer Login\": \"ביטול כניסת לקוח\"\n\"Meta Description (Recommended)\": \"תיאור מטא (מומלץ)\"\n\"Meta Keywords (Recommended)\": \"מילות מפתח מטא (מומלצות)\"\n\"Header Link\": \"קישור כותרת\"\n'URL (with http\":/\"/ or https\":/\"/)': 'כתובת URL (עם http\":/\"/ או https\":/\"/)'\n\"Footer Link\": \"קישור כותרת תחתונה\"\n\"Custom CSS (Optional)\": \"CSS מותאם אישית (אופציונלי)\"\n\"It will be add to the frontend knowledgebase only\": \"הוא יתווסף לבסיס הידע בחזית בלבד\"\n\"Custom Javascript (Optional)\": \"Javascript מותאם אישית (אופציונלי)\"\n\"Broadcast message content to show on helpdesk\": \"תוכן הודעת השידור שיתווסף למרכז התמיכה\"\n\"From\": \"מאת\"\n\"Time duration between which message will be displayed(if applicable)\": \"משך הזמן בין ההודעות (אם יש זימון)\"\n\"Broadcasting Status\": \"מצב שידור\"\n\"Broadcasting is Active\": \"השידור פעיל\"\n\"Choose a default company timezone\": \"בחר אזור זמן ברירת מחדל לחברה\"\n\"Date Time Format\": \"פורמט תאריך ושעה\"\n\"Choose a format to convert date to specified date time format\": \"בחר פורמט להמרת תאריך לפורמט תאריך ושעה מסוים\"\n\"An empty file is not allowed.\": \"אסור קובץ ריק.\"\n\"File size must not be greater than 200KB !!\": \"גודל הקובץ לא יכול להיות גדול מ-200KB!\"\n\"Please upload valid Image file (Only JPEG, JPG, PNG allowed)!!\": \"נא להעלות קובץ תמונה תקף (נתמכים רק תקני JPEG, JPG ו-PNG)!\"\n\"Provide a valid url(with protocol)\": \"ספק כתובת URL תקנית (עם פרוטוקול)\"\n\"ticket.message.placeHolders.info\": \"ticket.message.placeHolders.info\"\n\"ticket.attachments.placeHolders.info\": \"\tticket.attachments.placeHolders.info\"\n\"ticket.threadMessage.placeHolders.info\": \"ticket.threadMessage.placeHolders.info\"\n\"ticket.tags.placeHolders.info\": \"ticket.tags.placeHolders.info\"\n\"ticket.source.placeHolders.info\": \"ticket.source.placeHolders.info\"\n\"ticket.collaborator.name.placeHolders.info\": \"ticket.collaborator.name.placeHolders.info\"\n\"ticket.collaborator.email.placeHolders.info\": \"ticket.collaborator.email.placeHolders.info\"\n\"user.name.info\": \"user.name.info\"\n\"user.email.info\": \"user.email.info\"\n\"user.account.validate.link.info\": \"user.account.validate.link.info\"\n\"user.password.forgot.link.info\": \"user.password.forgot.link.info\"\n\"global.companyName\": \"global.companyName\"\n\"global.companyLogo\": \"global.companyLogo\"\n\"global.companyUrl\": \"global.companyUrl\"\n\"ticket.priority.placeHolders.info\": \"\tticket.priority.placeHolders.info\"\n\"ticket.group.placeHolders.info\": \"ticket.group.placeHolders.info\"\n\"ticket.team.placeHolders.info\": \"ticket.team.placeHolders.info\"\n\"ticket.customerName.placeHolders.info\": \"\tticket.customerName.placeHolders.info\"\n\"ticket.customerEmail.placeHolders.info\": \"\tticket.customerEmail.placeHolders.info\"\n\"ticket.agentName.placeHolders.info\": \"ticket.agentName.placeHolders.info\"\n\"ticket.agentEmail.placeHolders.info\": \"ticket.agentEmail.placeHolders.info\"\n\"ticket.link.placeHolders.info\": \"\tticket.link.placeHolders.info \"\n\"ticket.id.placeHolders.info\": \"ticket.id.placeHolders.info\"\n\"ticket.subject.placeHolders.info\": \"\tticket.subject.placeHolders.info\"\n\"ticket.status.placeHolders.info\": \"ticket.status.placeHolders.info\"\n\"comma-separated\": \"מופרד באמצעות פסיקים (,)\"\n\"Low\": \"נמוך\"\n\"Medium\": \"בינוני\"\n\"High\": \"גבוה\"\n\"Urgent\": \"דחוף\"\n\"Reset Password\": \"איפוס סיסמה\"\n\"Enter your new password below to update your login credentials\": \"הזן את הסיסמה החדשה שלך למטה כדי לעדכן את פרטי הכניסה שלך\"\n\"Save Password\": \"שמירת סיסמה\"\n\"Rate Support\": \"דרג תמיכה\"\n\"I am very Sad\": \"אני כואב מאוד\"\n\"I am Sad\": \"אני כואב\"\n\"I am Neutral\": \"אני במצב נייטרלי\"\n\"I am Happy\": \"אני שמח\"\n\"I am Very Happy\": \"אני מאוד שמח\"\n\"Kudos\": \"יש!\"\n\"kudos\": \"יש!\"\n\"Very Sad\": \"כואב מאוד\"\n\"Sad\": \"כואב\"\n\"Neutral\": \"נייטרלי\"\n\"Happy\": \"שמח\"\n\"Very Happy\": \"מאוד שמח\"\n\"Star(s)\": \"כוכבים\"\n\"Warning ! Swiftmailer not working. An error has occurred while sending emails!\": \"אזהרה! Swiftmailer לא פועל. אירעה שגיאה במהלך שליחת הודעות דואל!\"\n\"Invalid credentials.\": \"פרטי כניסה לא חוקיים.\"\n\"Success ! Project cache cleared successfully.\": \"הצלחה! מטמון הפרויקט נוקה בהצלחה.\"\n\"clear cache\": \"ניקוי מטמון\"\n\"Last Updated\": \"עודכן לאחרונה\"\n\"Error! Something went wrong.\": \"שגיאה! משהו השתבש.\"\n\"We were not able to find the page you are looking for.\": \"לא הצלחנו למצוא את הדף שאתה מחפש.\"\n\"Page not found\": \"הדף לא נמצא\"\n\"Forbidden\": \"אסור\"\n\"You dont have the necessary permissions to access this Web page :(\": \"אין לך הרשאות מתאימות לגשת לדף זה :(\"\n\"Internal server error\": \"שגיאת שרת פנימית\"\n\"Our system has goofed up for a while, but the good part is it won't last long\": \"המערכת שלנו התבלבלה לזמן מה, אך הטוב הוא שזה לא יימשך לזמן רב\"\n\"Unknown Error\": \"שגיאה לא ידועה\"\n\"We are quite confused about how did you land here:/\": \"אנחנו מופתעים מאוד כיצד הגעת לכאן :/\"\n\"A few of the links that may help you get back on track -\": \"חלק מהקישורים שעשויים לעזור לך לחזור לנתיב -\"\n\n#Microsoft apps:\n\"Microsoft Apps\": \"אפליקציות של מיקרוסופט\"\n\"Add a Microsoft app\": \"הוסף אפליקציה של מיקרוסופט\"\n\"Enable\": \"אפשר\"\n\"App Name\": \"שם האפליקציה\"\n\"Tenant Id\": \"מזהה הדייר\"\n\"Client Id\": \"מזהה הלקוח\"\n\"Client Secret\": \"סוד הלקוח\"\n\"NEW APP:\": \"אפליקציה חדשה:\"\n\"UPDATE APP\": \"עדכן אפליקציה\"\n\"Guide on creating a new app in Azure Active Directory:\": \"מדריך ליצירת אפליקציה חדשה ב-Azure Active Directory:\"\n\"To add a new Microsoft App to your azure active directory, follow the steps as given below:\": \"להוספת אפליקציה חדשה ל-Azure Active Directory שלך, בצע את השלבים הבאים:\"\n\"Go to Azure Active Directory -> App registerations\": \"עבור אל Azure Active Directory -> רישום אפליקציות\"\n\"Disable\": \"השבת\"\n\"Please enter a valid name for your app.\": \"נא להזין שם חוקי לאפליקציה שלך.\"\n\"Please enter a valid tenant id.\": \"נא להזין מזהה דייר חוקי.\"\n\"Please enter a valid client id.\": \"נא להזין מזהה לקוח חוקי.\"\n\"Please enter a valid client secret.\": \"נא להזין סוד לקוח חוקי.\"\n\"Microsoft app settings\": \"הגדרות אפליקציית Microsoft\"\n\"Unverified\": \"לא מאומת\"\n\"Microsoft app has been updated successfully.\": \"אפליקציית Microsoft עודכנה בהצלחה.\"\n\"No microsoft apps found\": \"לא נמצאו אפליקציות Microsoft\"\n\"Microsoft app settings could not be verifired successfully. Please check your settings and try again later.\": \"לא ניתן לאמת את הגדרות אפליקציית Microsoft. אנא בדוק את ההגדרות ונסה שוב מאוחר יותר.\"\n\"Microsoft app has been integrated successfully.\": \"אפליקציית Microsoft שולבה בהצלחה.\"\n\"Microsoft app has been deleted successfully.\": \"אפליקציית Microsoft נמחקה בהצלחה.\"\n\"Verified\": \"מאומת\"\n\n\"Create a New Registration\": \"צור רישום חדש\"\n\"Enter your app details as following:\": \"הזן את פרטי האפליקציה שלך כפי שמפורט להלן:\"\n\"App Name: Enter an app name to easily help you identify its purpose\": \"שם האפליקציה: הזן שם אפליקציה שיסייע לך לזהות את מטרתה בקלות\"\n\"Supported Account Types: Select whichever option works the best for you (Recommended: Accounts in any organizational directory and personal Microsoft accounts)\": \"סוגי חשבונות נתמכים: בחר באפשרות שהכי מתאימה לך (מומלץ: חשבונות בכל ספריות הארגונים וחשבונות Microsoft אישיים)\"\n\"Redirect URI:\": \"URI להפניה:\"\n\"Select Platform: Web\": \"בחר פלטפורמה: אינטרנט\"\n\"Enter the following redirect uri:\": \"הזן את ה-URI להפניה הבא:\"\n\"Proceed to create your application\": \"המשך ליצור את האפליקציה שלך\"\n\"Once your app has been created, in your app overview section, continue with adding a client credential by clicking on \\\"Add a certificate or secret\\\"\": \"לאחר יצירת האפליקציה, באזור סקירת האפליקציה שלך, המשך להוסיף אישור לקוח על ידי לחיצה על \\\"הוסף אישור או סוד\\\"\"\n\"Create a new client secret\": \"צור סוד לקוח חדש\"\n\"Enter a description as per your preference to help identify the purpose of this client secret\": \"הזן תיאור לפי העדפתך כדי לסייע בזיהוי מטרת סוד לקוח זה\"\n\"Choose an expiration time as per your preference\": \"בחר זמן תפוגה לפי העדפתך\"\n\"Proceed to add your client secret\": \"המשך להוסיף את סוד הלקוח שלך\"\n\"Copy the client secret value which will be needed later and cannot be viewed again\": \"העתק את ערך סוד הלקוח אשר יידרש בהמשך ולא ניתן לצפות בו שוב\"\n\"Navigate to API permissions\": \"נווט לאזור הרשאות API\"\n\"Click on \\\"Add a permission\\\" to add a new api permission. Add the following delegated permissions by selecting Microsoft APIs > Microsoft Graph > Delegate Permissions\": \"לחץ על \\\"הוסף הרשאה\\\" כדי להוסיף הרשאת API חדשה. הוסף את ההרשאות המואצלות הבאות על ידי בחירת Microsoft APIs > Microsoft Graph > Delegate Permissions\"\n\"Navigate to your app overview section\": \"נווט לאזור סקירת האפליקציה שלך\"\n\"Copy the Application (Client) Id\": \"העתק את מזהה האפליקציה (Client Id)\"\n\"Copy the Directory (Tenant) Id\": \"העתק את מזהה הספרייה (Tenant Id)\"\n\"Enter your client id, tenant id, and client secret in settings above as required.\": \"הזן את מזהה הלקוח, מזהה הדייר, וסוד הלקוח בהגדרות למעלה כנדרש.\"\n\"offline_access\": \"גישה לא מקוונת\"\n\"openid\": \"openid\"\n\"profile\": \"פרופיל\"\n\"User.Read\": \"קריאת משתמש\"\n\"IMAP.AccessAsUser.All\": \"IMAP.AccessAsUser.All\"\n\"SMTP.Send\": \"SMTP.Send\"\n\"POP.AccessAsUser.All\": \"POP.AccessAsUser.All\"\n\"Mail.Read\": \"קריאת דואר\"\n\"Mail.ReadBasic\": \"קריאת דואר בסיסית\"\n\"Mail.Send\": \"שליחת דואר\"\n\"Mail.Send.Shared\": \"שליחת דואר משותף\"\n\"Add App\": \"הוסף אפליקציה\"\n\"New App\": \"אפליקציה חדשה\"\n\n#Mailbox option:\n\"Disable email delivery\": \"השבת משלוח דוא\\\"ל\"\n\"Use as default mailbox for sending emails\": \"השתמש כתיבת דוא\\\"ל ברירת מחדל לשליחת דוא\\\"ל\"\n\"Inbound Emails\": \"דוא\\\"ל נכנס\"\n\"Manage how you wish to retrieve and process emails from your mailbox.\": \"נהל כיצד ברצונך לאחזר ולעבד דוא\\\"ל מהתיבה שלך.\"\n\"Outbound Emails\": \"דוא\\\"ל יוצא\"\n\"Manage how you wish to send emails from your mailbox.\": \"נהל כיצד ברצונך לשלוח דוא\\\"ל מהתיבה שלך.\"\n\n\"Marketing Modules\" : \"מודולים שיווקיים\"\n\"New Marketing Module\": \"מודול שיווק חדש\"\n\"Marketing Module\": \"מודול שיווק\"\n\"Status:\": \"סטָטוּס:\""
  },
  {
    "path": "translations/messages.it.yml",
    "content": "\"Signed in as\": \"Accesso eseguito come\"\n\"Your Profile\": \"Profilo\"\n\"Create Ticket\": \"Crea ticket\"\n\"Create Agent\": \"Crea agente\"\n\"Create Customer\": \"Crea cliente\"\n\"Sign Out\": \"Disconnessione\"\n\"Default Language (Optional)\": \"Lingua predefinita (opzionale)\"\n\"Swift Mailer ID\": \"ID mittente rapido\"\n\"Username/Email\": \"Nome utente/E-mail\"\n\"create new\": \"creare nuovo\"\n\"Howdy!\": \"Ciao!\"\n\"Ticket Information\": \"Informazioni sul biglietto\"\n\"CC/BCC\": \"CC/BCC\"\n\"Success! Label created successfully.\": \"Successo! Etichetta creata con successo.\"\n\"Success! Label removed successfully.\": \"Successo! Etichetta rimossa con successo.\"\n\"Apps\": \"Applicazioni\"\n\"Rating\": \"Valutazione\"\n\"Kudos Rating\": \"Complimenti Valutazione\"\n\"Choose your default timeformat\": \"Scegli il tuo formato orario predefinito\"\n\"Remove profile picture\": \"Rimuovi l'immagine del profilo\"\n\"Success ! Profile updated successfully.\": \"Successo ! Profilo aggiornato con successo.\"\n\"Howdy\": \"ciao\"\n\"Form successfully updated.\": \"Modulo aggiornato con successo.\"\n\"NEW FORM\": \"NUOVA FORMA\"\n\"Text Box\": \"Casella di testo\"\n\"Text Area\": \"Area di testo\"\n\"Select\": \"Selezionare\"\n\"Radio\": \"Radio\"\n\"Checkbox\": \"Casella di controllo\"\n\"Date\": \"Data\"\n\"Both Date and Time\": \"Sia data che ora\"\n\"Choose a status\": \"Scegli uno stato\"\n\"Choose a group\": \"Scegli un gruppo\"\n\"Can manage Group's Saved Reply\": \"Può gestire la risposta salvata del gruppo\"\n\"Can manage agent activity\": \"Può gestire l'attività dell'agente\"\n\"Slug is the url identity of this article. We will help you to create valid slug at time of typing.\": \"Slug è l'identità dell'URL di questo articolo. Ti aiuteremo a creare uno slug valido al momento della digitazione.\"\n\"The URL for this article\": \"L'URL di questo articolo\"\n\"Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A page's title tag and meta description are usually shown whenever that page appears in search engine results\": \"I tag del titolo e le meta descrizioni sono frammenti di codice HTML nell'intestazione di una pagina web. Aiutano i motori di ricerca a comprendere il contenuto di una pagina. Il tag del titolo e la meta descrizione di una pagina vengono solitamente mostrati ogni volta che la pagina viene visualizzata nei risultati dei motori di ricerca\"\n\"comma separated (,)\": \"separato da virgola (,)\"\n\"Article Title\": \"Titolo dell'articolo\"\n\"Start typing few charactors and add set of relevant article from the list\": \"Inizia a digitare pochi caratteri e aggiungi un set di articoli rilevanti dall'elenco\"\n\"Success! Announcement data saved successfully.\": \"Successo! I dati dell'annuncio sono stati salvati correttamente.\"\n\"Success! Category has been added successfully.\": \"Successo! La categoria è stata aggiunta con successo.\"\n\"Success ! Agent added successfully.\": \"Successo ! Agente aggiunto correttamente.\"\n\"Success! Privilege information saved successfully.\": \"Successo! Informazioni sui privilegi salvate correttamente.\"\n\"Edit Prepared Response\": \"Modifica risposta preparata\"\n\"Success! Type removed successfully.\": \"Successo! Digitare rimosso correttamente.\"\n\"No results available\": \"Nessun risultato disponibile\"\n\"Success ! Prepared Response applied successfully.\": \"Successo ! Risposta preparata applicata correttamente.\"\n\"Note added to ticket successfully.\": \"Nota aggiunta al ticket con successo.\"\n\"Ticket status update to Spam\": \"Aggiornamento dello stato del biglietto a Spam\"\n\"Ticket status update to Closed\": \"Aggiornamento dello stato del biglietto su Chiuso\"\n\"Success! Label updated successfully.\": \"Successo! Etichetta aggiornata correttamente.\"\n\"Success ! Helpdesk details saved successfully\": \"Successo ! I dettagli dell'helpdesk sono stati salvati correttamente\"\n\"Can manage marketing announcement\": \"Può gestire annunci di marketing\"\n\"User Forgot Password\": \"L'utente ha dimenticato la password\"\n\"Agent Deleted\": \"Agente eliminato\"\n\"Agent Update\": \"Aggiornamento agente\"\n\"Customer Update\": \"Aggiornamento del cliente\"\n\"Customer Deleted\": \"Cliente eliminato\"\n\"Agent Updated\": \"Agente aggiornato\"\n\"Agent Reply\": \"Risposta dell'agente\"\n\"Collaborator Added\": \"Collaboratore aggiunto\"\n\"Collaborator Reply\": \"Risposta del collaboratore\"\n\"Customer Reply\": \"Risposta del cliente\"\n\"Ticket Deleted\": \"Biglietto cancellato\"\n\"Group Updated\": \"Gruppo aggiornato\"\n\"Note Added\": \"Nota aggiunta\"\n\"Priority Updated\": \"Priorità aggiornata\"\n\"Status Updated\": \"Stato aggiornato\"\n\"Team Updated\": \"Team aggiornato\"\n\"Thread Updated\": \"Discussione aggiornata\"\n\"Type Updated\": \"Tipo aggiornato\"\n\"From Email\": \"Dall'email\"\n\"To Email\": \"Per e-mail\"\n\"Is Equal To\": \"È uguale a\"\n\"Is Not Equal To\": \"Non è uguale a\"\n\"Contains\": \"Contiene\"\n\"Does Not Contain\": \"Non contiene\"\n\"Starts With\": \"Inizia con\"\n\"Ends With\": \"Finisce con\"\n\"Before On\": \"Prima dell'attivazione\"\n\"After On\": \"Dopo l'attivazione\"\n\"Mail To User\": \"Posta all'utente\"\n\"Permanently delete from Inbox\": \"Elimina in modo permanente dalla posta in arrivo\"\n\"Transfer Tickets\": \"Biglietti di trasferimento\"\n\"Reports\": \"Rapporti\"\n\"Agent Activity\": \"Attività dell'agente\"\n\"Report From\": \"Rapporto da\"\n\"Search Agent\": \"Agente di ricerca\"\n\"Agent Last Reply\": \"Ultima risposta dell'agente\"\n\"View analytics and insights to serve a better experience for your customers\": \"Visualizza analisi e approfondimenti per offrire una migliore esperienza ai tuoi clienti\"\n\"Marketing Announcement\": \"Annuncio di marketing\"\n\"Advertisement\": \"Pubblicità\"\n\"Announcement\": \"Annuncio\"\n\"New Announcement\": \"Nuovo annuncio\"\n\"Add Announcement\": \"Aggiungi annuncio\"\n\"Edit Announcement\": \"Modifica annuncio\"\n\"Promo Text\": \"Testo promozionale\"\n\"Promo Tag\": \"Tag promozionale\"\n\"Choose a promo tag\": \"Scegli un tag promozionale\"\n\"Tag-Color\": \"Tag-Color\"\n\"Tag background color\": \"Colore di sfondo del tag\"\n\"Link Text\": \"Testo del collegamento\"\n\"Link URL\": \"URL del collegamento\"\n\"Integrate apps as per your needs to get things done faster than ever\": \"Installa nuove app personalizzate per aumentare la tua produttività: <a href='https://store.webkul.com/UVdesk/UVdesk-Open-Source.html' style='font-weight: bold' target='_blank'>Esplora ora</a>\"\n\"Explore Apps\": \"Esplora le applicazioni\"\n\"Form Builder\": \"Generatore di moduli\"\n\"Knowledgebase\": \"Knowledgebase\"\n\"Knowledgebase is a source of rigid and complex information which helps Customers to help themselves\": \"La knowledge base è una fonte di informazioni rigide e complesse che aiutano i clienti ad aiutare se stessi\"\n\"Articles\": \"Articoli\"\n\"Categories\": \"Categorie\"\n\"Folders\": \"Cartelle\"\n\"FOLDERS\": \"CARTELLE\"\n\"Productivity\": \"Produttività\"\n\"Automate your processes by creating set of rules and presets to respond faster to the tickets\": \"Automatizza i tuoi processi creando un set di regole e preset per rispondere più rapidamente ai ticket\"\n\"Prepared Responses\": \"Risposte preparate\"\n\"Saved Replies\": \"Risposte salvate\"\n\"Edit Saved Reply\": \"Modifica risposta salvata\"\n\"Ticket Types\": \"Tipi di ticket\"\n\"Workflows\": \"Flussi di lavoro\"\n\"Settings\": \"impostazioni\"\n\"Manage your Brand Identity, Company Information and other details at a glance\": \"Gestisci la tua identità di marchio, le informazioni sulla società e altri dettagli a colpo docchio\"\n\"Branding\": \"Branding\"\n\"Custom Fields\": \"Campi personalizzati\"\n\"Email Settings\": \"Impostazioni Email\"\n\"Email Templates\": \"Modelli email\"\n\"Mailbox\": \"Casella\"\n\"Spam Settings\": \"Impostazioni spam\"\n\"Swift Mailer\": \"Swift Mailer\"\n\"Tags\": \"Tag\"\n\"Users\": \"Utenti\"\n\"Control your Groups, Teams, Agents and Customers\": \"Controlla i tuoi gruppi, team, agenti e clienti\"\n\"Agents\": \"Agenti\"\n\"Customers\": \"Clienti\"\n\"Groups\": \"Gruppi\"\n\"Privileges\": \"Privilegi\"\n\"Teams\": \"Team\"\n\"Applications\": \"Applicazioni\"\n\"ECommerce Order Syncronization\": \"Sincronizzazione degli ordini e-commerce\"\n\"Import ecommerce order details to your support tickets from different available platforms\": \"Importa i dettagli dellordine e-commerce nei ticket di supporto da diverse piattaforme disponibili\"\n\"Search\": \"Ricerca\"\n\"Sort By\": \"Ordina per\"\n\"Sort By:\" : \"Ordina per:\"\n\"Status\": \"Stato\"\n\"Created At\": \"Data di creazione\"\n\"Name\": \"Nome\"\n\"All\": \"Tutti\"\n\"Published\": \"Pubblicato\"\n\"Draft\": \"Bozza\"\n\"New Folder\": \"Nuova cartella\"\n\"Create Knowledgebase Folder\": \"Crea cartella della knowledgebase\"\n\"You did not add any folder to your Knowledgebase yet, Create your first Folder and start adding Categories/Articles to make your customers help themselves.\": \"Non hai ancora aggiunto alcuna cartella alla tua knowledge base, crea la tua prima cartella e inizia ad aggiungere categorie / articoli per aiutare i tuoi clienti.\"\n\"Clear Filters\": \"Elimina filtri\"\n\"Back\": \"Indietro\"\n\"Open\": \"Aperto\"\n\"Pending\": \"In attesa\"\n\"Answered\": \"Risposto\"\n\"Resolved\": \"Risolto\"\n\"Closed\": \"Chiuso\"\n\"Spam\": \"Spam\"\n\"New\": \"Nuovo\"\n\"UnAssigned\": \"Non assegnato\"\n\"UnAnswered\": \"Senza risposta\"\n\"My Tickets\": \"I miei ticket\"\n\"Starred\": \"Preferiti\"\n\"Trashed\": \"Cestinati\"\n\"New Label\": \"Nuova etichetta\"\n\"Tickets\": \"Ticket\"\n\"Ticket Id\": \"ID Ticket\"\n\"Last Replied\": \"Ultima risposta\"\n\"Assign To\": \"Assegnato a\"\n\"After Reply\": \"Dopo la risposta\"\n\"Customer Email\": \"Email Cliente\"\n\"Customer Name\": \"Nome Cliente\"\n\"Assets Visibility\": \"Visibilità delle risorse\"\n\"Channel/Source\": \"Canale / Fonte\"\n\"Channel\": \"Canale\"\n\"Website\": \"Sito web\"\n\"Timestamp\": \"Data e ora\"\n\"TimeStamp\": \"Data e Ora\"\n\"Team\": \"Team\"\n\"Type\": \"Tipo\"\n\"Replies\": \"Risposte\"\n\"Agent\": \"Agente\"\n\"ID\": \"ID\"\n\"Subject\": \"Oggetto\"\n\"Last Reply\": \"Ultima risposta\"\n\"Filter View\": \"Filtra\"\n\"Please select CAPTCHA\": \"Esegui la verifica CAPTCHA non sono un robot | Please select CAPTCHA Im not a robot\"\n\"Warning ! Please select correct CAPTCHA !\": \"Esegui la verifica CAPTCHA non sono un robot | Please select CAPTCHA Im not a robot\"\n\"reCAPTCHA Setting\": \"Impostazioni reCAPTCHA\"\n\"reCAPTCHA Site Key\": \"Chiave del sito reCAPTCHA\"\n\"reCAPTCHA Secret key\": \"Chiave segreta reCAPTCHA\"\n\"reCAPTCHA Status\": \"Stato reCAPTCHA\"\n\"reCAPTCHA is Active\": \"reCAPTCHA è attivo\"\n\"Save set of filters as a preset to stay more productive\": \"Salva set di filtri come predefinito per rimanere più produttivo\"\n\"Saved Filters\": \"Filtri salvati\"\n\"No saved filter created\": \"Nessun filtro salvato creato\"\n\"Customer\": \"Cliente\"\n\"Priority\": \"Priorità\"\n\"Tag\": \"Etichetta\"\n\"Source\": \"Fonte\"\n\"Before\": \"Prima\"\n\"After\": \"Dopo\"\n\"Replies less than\": \"Risposte meno di\"\n\"Replies more than\": \"Risposte più di\"\n\"Clear All\": \"Cancella tutto\"\n\"Account\": \"Account\"\n\"Profile\": \"Profilo\"\n\"Upload a Profile Image (100px x 100px)<br> in PNG or JPG Format\": \"Carica un'immagine del profilo (100px x 100px) <br> in formato PNG o JPG\"\n\"First Name\": \"Nome\"\n\"Last Name\": \"Cognome\"\n\"Email\": \"E-mail\"\n\"Contact Number\": \"Numero di telefono\"\n\"Timezone\": \"Fuso orario\"\n\"Africa/Abidjan\": \"Africa / Abidjan\"\n\"Africa/Accra\": \"Africa / Accra\"\n\"Africa/Addis_Ababa\": \"Africa / Addis_Ababa\"\n\"Africa/Algiers\": \"Africa / Algiers\"\n\"Africa/Asmara\": \"Africa / Asmara\"\n\"Africa/Bamako\": \"Africa / Bamako\"\n\"Africa/Bangui\": \"Africa / Bangui\"\n\"Africa/Banjul\": \"Africa / Banjul\"\n\"Africa/Bissau\": \"Africa / Bissau\"\n\"Africa/Blantyre\": \"Africa / Blantyre\"\n\"Africa/Brazzaville\": \"Africa / Brazzaville\"\n\"Africa/Bujumbura\": \"Africa / Bujumbura\"\n\"Africa/Cairo\": \"Africa / Cairo\"\n\"Africa/Casablanca\": \"Africa / Casablanca\"\n\"Africa/Ceuta\": \"Africa / Ceuta\"\n\"Africa/Conakry\": \"Africa / Conakry\"\n\"Africa/Dakar\": \"Africa / Dakar\"\n\"Africa/Dar_es_Salaam\": \"Africa / Dar_es_Salaam\"\n\"Africa/Djibouti\": \"Africa / Gibuti\"\n\"Africa/Douala\": \"Africa / Douala\"\n\"Africa/El_Aaiun\": \"Africa / El_Aaiun\"\n\"Africa/Freetown\": \"Africa / Freetown\"\n\"Africa/Gaborone\": \"Africa / Gaborone\"\n\"Africa/Harare\": \"Africa / Harare\"\n\"Africa/Johannesburg\": \"Africa / Johannesburg\"\n\"Africa/Juba\": \"Africa / Juba\"\n\"Africa/Kampala\": \"Africa / Kampala\"\n\"Africa/Khartoum\": \"Africa / Khartoum\"\n\"Africa/Kigali\": \"Africa / Kigali\"\n\"Africa/Kinshasa\": \"Africa / Kinshasa\"\n\"Africa/Lagos\": \"Africa / Lagos\"\n\"Africa/Libreville\": \"Africa / Libreville\"\n\"Africa/Lome\": \"Africa / Lome\"\n\"Africa/Luanda\": \"Africa / Luanda\"\n\"Africa/Lubumbashi\": \"Africa / Lubumbashi\"\n\"Africa/Lusaka\": \"Africa / Lusaka\"\n\"Africa/Malabo\": \"Africa / Malabo\"\n\"Africa/Maputo\": \"Africa / Maputo\"\n\"Africa/Maseru\": \"Africa / Maseru\"\n\"Africa/Mbabane\": \"Africa / Mbabane\"\n\"Africa/Mogadishu\": \"Africa / Mogadishu\"\n\"Africa/Monrovia\": \"Africa / Monrovia\"\n\"Africa/Nairobi\": \"Africa / Nairobi\"\n\"Africa/Ndjamena\": \"Africa / Ndjamena\"\n\"Africa/Niamey\": \"Africa / Niamey\"\n\"Africa/Nouakchott\": \"Africa / Nouakchott\"\n\"Africa/Ouagadougou\": \"Africa / Ouagadougou\"\n\"Africa/Porto-Novo\": \"Africa / Porto-Novo\"\n\"Africa/Sao_Tome\": \"Africa / Sao_Tome\"\n\"Africa/Tripoli\": \"Africa / Tripoli\"\n\"Africa/Tunis\": \"Africa / Tunisi\"\n\"Africa/Windhoek\": \"Africa / Windhoek\"\n\"America/Adak\": \"America / Adak\"\n\"America/Anchorage\": \"America / Anchorage\"\n\"America/Anguilla\": \"America / Anguilla\"\n\"America/Antigua\": \"America / Antigua\"\n\"America/Araguaina\": \"America / Araguaina\"\n\"America/Argentina/Buenos_Aires\": \"America / Argentina / Buenos_Aires\"\n\"America/Argentina/Catamarca\": \"America / Argentina / Catamarca\"\n\"America/Argentina/Cordoba\": \"America / Argentina / Cordoba\"\n\"America/Argentina/Jujuy\": \"America / Argentina / Jujuy\"\n\"America/Argentina/La_Rioja\": \"America / Argentina / La_Rioja\"\n\"America/Argentina/Mendoza\": \"America / Argentina / Mendoza\"\n\"America/Argentina/Rio_Gallegos\": \"America / Argentina / Rio_Gallegos\"\n\"America/Argentina/Salta\": \"America / Argentina / Salta\"\n\"America/Argentina/San_Juan\": \"America / Argentina / San_Juan\"\n\"America/Argentina/San_Luis\": \"America / Argentina / San_Luis\"\n\"America/Argentina/Tucuman\": \"America / Argentina / Tucuman\"\n\"America/Argentina/Ushuaia\": \"America / Argentina / Ushuaia\"\n\"America/Aruba\": \"America / Aruba\"\n\"America/Asuncion\": \"America / Asuncion\"\n\"America/Atikokan\": \"America / Atikokan\"\n\"America/Bahia\": \"America / Bahia\"\n\"America/Bahia_Banderas\": \"America / Bahia_Banderas\"\n\"America/Barbados\": \"America / Barbados\"\n\"America/Belem\": \"America / Belem\"\n\"America/Belize\": \"America / Belize\"\n\"America/Blanc-Sablon\": \"America / Blanc-Sablon\"\n\"America/Boa_Vista\": \"America / Boa_Vista\"\n\"America/Bogota\": \"America / Bogota\"\n\"America/Boise\": \"America / Boise\"\n\"America/Cambridge_Bay\": \"America / Cambridge_Bay\"\n\"America/Campo_Grande\": \"America / Campo_Grande\"\n\"America/Cancun\": \"America / Cancun\"\n\"America/Caracas\": \"America / Caracas\"\n\"America/Cayenne\": \"America / Cayenne\"\n\"America/Cayman\": \"America / Cayman\"\n\"America/Chicago\": \"America / Chicago\"\n\"America/Chihuahua\": \"America / Chihuahua\"\n\"America/Costa_Rica\": \"America / Costa_Rica\"\n\"America/Creston\": \"America / Creston\"\n\"America/Cuiaba\": \"America / Cuiaba\"\n\"America/Curacao\": \"America / Curacao\"\n\"America/Danmarkshavn\": \"America / Danmarkshavn\"\n\"America/Dawson\": \"America / Dawson\"\n\"America/Dawson_Creek\": \"America / Dawson_Creek\"\n\"America/Denver\": \"America / Denver\"\n\"America/Detroit\": \"America / Detroit\"\n\"America/Dominica\": \"America / Dominica\"\n\"America/Edmonton\": \"America / Edmonton\"\n\"America/Eirunepe\": \"America / Eirunepe\"\n\"America/El_Salvador\": \"America / El_Salvador\"\n\"America/Fort_Nelson\": \"America / Fort_Nelson\"\n\"America/Fortaleza\": \"America / Fortaleza\"\n\"America/Glace_Bay\": \"America / Glace_Bay\"\n\"America/Godthab\": \"America / Godthab\"\n\"America/Goose_Bay\": \"America / Goose_Bay\"\n\"America/Grand_Turk\": \"America / Grand_Turk\"\n\"America/Grenada\": \"America / Grenada\"\n\"America/Guadeloupe\": \"America / Guadeloupe\"\n\"America/Guatemala\": \"AMERICA / GUATEMALA\"\n\"America/Guayaquil\": \"America / Guayaquil\"\n\"America/Guyana\": \"America / Guyana\"\n\"America/Halifax\": \"America / Halifax\"\n\"America/Havana\": \"America / Havana\"\n\"America/Hermosillo\": \"America / Hermosillo\"\n\"America/Indiana/Indianapolis\": \"America / Indiana / Indianapolis\"\n\"America/Indiana/Knox\": \"America / Indiana / Knox\"\n\"America/Indiana/Marengo\": \"America / Indiana / Marengo\"\n\"America/Indiana/Petersburg\": \"America / Indiana / Petersburg\"\n\"America/Indiana/Tell_City\": \"America / Indiana / Tell_City\"\n\"America/Indiana/Vevay\": \"America / Indiana / Vevay\"\n\"America/Indiana/Vincennes\": \"America / Indiana / Vincennes\"\n\"America/Indiana/Winamac\": \"America / Indiana / Winamac\"\n\"America/Inuvik\": \"America / Inuvik\"\n\"America/Iqaluit\": \"America / Iqaluit\"\n\"America/Jamaica\": \"America / Jamaica\"\n\"America/Juneau\": \"America / Juneau\"\n\"America/Kentucky/Louisville\": \"America / Kentucky / Louisville\"\n\"America/Kentucky/Monticello\": \"America / Kentucky / Monticello\"\n\"America/Kralendijk\": \"America / Kralendijk\"\n\"America/La_Paz\": \"America / La_Paz\"\n\"America/Lima\": \"America / Lima\"\n\"America/Los_Angeles\": \"America / Los_Angeles\"\n\"America/Lower_Princes\": \"America / Lower_Princes\"\n\"America/Maceio\": \"America / Maceio\"\n\"America/Managua\": \"America / Managua\"\n\"America/Manaus\": \"America / Manaus\"\n\"America/Marigot\": \"America / Marigot\"\n\"America/Martinique\": \"America / Martinique\"\n\"America/Matamoros\": \"America / Matamoros\"\n\"America/Mazatlan\": \"America / Mazatlan\"\n\"America/Menominee\": \"America / Menominee\"\n\"America/Merida\": \"America / Merida\"\n\"America/Metlakatla\": \"America / Metlakatla\"\n\"America/Mexico_City\": \"America / Mexico_City\"\n\"America/Miquelon\": \"America / Miquelon\"\n\"America/Moncton\": \"America / Moncton\"\n\"America/Monterrey\": \"America / Monterrey\"\n\"America/Montevideo\": \"America / Montevideo\"\n\"America/Montserrat\": \"America / Montserrat\"\n\"America/Nassau\": \"America / Nassau\"\n\"America/New_York\": \"America / New_York\"\n\"America/Nipigon\": \"America / Nipigon\"\n\"America/Nome\": \"America / Nome\"\n\"America/Noronha\": \"America / Noronha\"\n\"America/North_Dakota/Beulah\": \"America / North_Dakota / Beulah\"\n\"America/North_Dakota\": \"America / North_Dakota\"\n\"America/Ojinaga\": \"America / Ojinaga\"\n\"America/Panama\": \"America / Panama\"\n\"America/Pangnirtung\": \"America / Pangnirtung\"\n\"America/Paramaribo\": \"America / Paramaribo\"\n\"America/Phoenix\": \"America / Phoenix\"\n\"America/Port-au-Prince\": \"America / Port-au-Prince\"\n\"America/Port_of_Spain\": \"America / Port_of_Spain\"\n\"America/Porto_Velho\": \"America / Porto_Velho\"\n\"America/Puerto_Rico\": \"America / Puerto_Rico\"\n\"America/Punta_Arenas\": \"America / Punta_Arenas\"\n\"America/Rainy_River\": \"America / Rainy_River\"\n\"America/Rankin_Inlet\": \"America / Rankin_Inlet\"\n\"America/Recife\": \"America / Recife\"\n\"America/Regina\": \"America / Regina\"\n\"America/Resolute\": \"America / Resolute\"\n\"America/Rio_Branco\": \"America / Rio_Branco\"\n\"America/Santarem\": \"America / Santarem\"\n\"America/Santiago\": \"America / Santiago\"\n\"America/Santo_Domingo\": \"America / Santo_Domingo\"\n\"America/Sao_Paulo\": \"America / Sao_Paulo\"\n\"America/Scoresbysund\": \"America / Scoresbysund\"\n\"America/Sitka\": \"America / Sitka\"\n\"America/St_Barthelemy\": \"America / St_Barthelemy\"\n\"America/St_Johns\": \"America / St_Johns\"\n\"America/St_Kitts\": \"America / St_Kitts\"\n\"America/St_Lucia\": \"America / St_Lucia\"\n\"America/St_Thomas\": \"America / St_Thomas\"\n\"America/St_Vincent\": \"America / St_Vincent\"\n\"America/Swift_Current\": \"America / Swift_Current\"\n\"America/Tegucigalpa\": \"America / Tegucigalpa\"\n\"America/Thule\": \"America / Thule\"\n\"America/Thunder_Bay\": \"America / Thunder_Bay\"\n\"America/Tijuana\": \"America / Tijuana\"\n\"America/Toronto\": \"America / Toronto\"\n\"America/Tortola\": \"America / Tortola\"\n\"America/Vancouver\": \"America / Vancouver\"\n\"America/Whitehorse\": \"America / Whitehorse\"\n\"America/Winnipeg\": \"America / Winnipeg\"\n\"America/Yakutat\": \"America / Yakutat\"\n\"America/Yellowknife\": \"America / Yellowknife\"\n\"Antarctica/Casey\": \"Antartide / Casey\"\n\"Antarctica/Davis\": \"Antartide / Davis\"\n\"Antarctica/DumontDUrville\": \"Antartide / DumontDUrville\"\n\"Antarctica/Macquarie\": \"Antartide / Macquarie\"\n\"Antarctica/McMurdo\": \"Antartide / McMurdo\"\n\"Antarctica/Mawson\": \"Antartide / Mawson\"\n\"Antarctica/Palmer\": \"Antartide / Palmer\"\n\"Antarctica/Rothera\": \"Antartide / Rothera\"\n\"Antarctica/Syowa\": \"Antartide / Syowa\"\n\"Antarctica/Troll\": \"Antartide / Troll\"\n\"Antarctica/Vostok\": \"Antartide / Vostok\"\n\"Arctic/Longyearbyen\": \"Arctic / Longyearbyen\"\n\"Asia/Aden\": \"Asia / Aden\"\n\"Asia/Almaty\": \"Asia / Almaty\"\n\"Asia/Amman\": \"Asia / Amman\"\n\"Asia/Anadyr\": \"Asia / Anadyr\"\n\"Asia/Aqtau\": \"Asia / Aqtau\"\n\"Asia/Aqtobe\": \"Asia / Aqtobe\"\n\"Asia/Ashgabat\": \"Asia / Ashgabat\"\n\"Asia/Atyrau\": \"Asia / Atyrau\"\n\"Asia/Baghdad\": \"Asia / Baghdad\"\n\"Asia/Bahrain\": \"Asia / Bahrain\"\n\"Asia/Baku\": \"Asia / Baku\"\n\"Asia/Bangkok\": \"Asia / Bangkok\"\n\"Asia/Barnaul\": \"Asia / Barnaul\"\n\"Asia/Beirut\": \"Asia / Beirut\"\n\"Asia/Bishkek\": \"Asia / Bishkek\"\n\"Asia/Brunei\": \"Asia / Brunei\"\n\"Asia/Chita\": \"Asia / Chita\"\n\"Asia/Choibalsan\": \"Asia / Choibalsan\"\n\"Asia/Colombo\": \"Asia / Colombo\"\n\"Asia/Damascus\": \"Asia / Damascus\"\n\"Asia/Dhaka\": \"Asia / Dhaka\"\n\"Asia/Dili\": \"Asia / Dili\"\n\"Asia/Dubai\": \"Asia / Dubai\"\n\"Asia/Dushanbe\": \"Asia / Dushanbe\"\n\"Asia/Famagusta\": \"Asia / Famagosta\"\n\"Asia/Gaza\": \"Asia / Gaza\"\n\"Asia/Hebron\": \"Asia / Hebron\"\n\"Asia/Ho_Chi_Minh\": \"Asia / Ho_Chi_Minh\"\n\"Asia/Hong_Kong\": \"Asia / Hong_Kong\"\n\"Asia/Hovd\": \"Asia / Hovd\"\n\"Asia/Irkutsk\": \"Asia / Irkutsk\"\n\"Asia/Jakarta\": \"Asia / Jakarta\"\n\"Asia/Jayapura\": \"Asia / Jayapura\"\n\"Asia/Jerusalem\": \"Asia / Jerusalem\"\n\"Asia/Kabul\": \"Asia / Kabul\"\n\"Asia/Kamchatka\": \"Asia / Kamchatka\"\n\"Asia/Karachi\": \"Asia / Karachi\"\n\"Asia/Kathmandu\": \"Asia / Kathmandu\"\n\"Asia/Khandyga\": \"Asia / Khandyga\"\n\"Asia/Kolkata\": \"Asia / Kolkata\"\n\"Asia/Krasnoyarsk\": \"Asia / Krasnoyarsk\"\n\"Asia/Kuala_Lumpur\": \"Asia / Kuala_Lumpur\"\n\"Asia/Kuching\": \"Asia / Kuching\"\n\"Asia/Kuwait\": \"Asia / Kuwait\"\n\"Asia/Macau\": \"Asia / Macao\"\n\"Asia/Magadan\": \"Asia / Magadan\"\n\"Asia/Makassar\": \"Asia / Makassar\"\n\"Asia/Manila\": \"Asia / Manila\"\n\"Asia/Muscat\": \"Asia / Muscat\"\n\"Asia/Nicosia\": \"Asia / Nicosia\"\n\"Asia/Novokuznetsk\": \"Asia / Novokuznetsk\"\n\"Asia/Novosibirsk\": \"Asia / Novosibirsk\"\n\"Asia/Omsk\": \"Asia / Omsk\"\n\"Asia/Oral\": \"Asia / orale\"\n\"Asia/Phnom_Penh\": \"Asia / Phnom_Penh\"\n\"Asia/Pontianak\": \"Asia / Pontianak\"\n\"Asia/Pyongyang\": \"Asia / Pyongyang\"\n\"Asia/Qatar\": \"Asia / Qatar\"\n\"Asia/Qostanay\": \"Asia / Qostanay\"\n\"Asia/Qyzylorda\": \"Asia / Qyzylorda\"\n\"Asia/Riyadh\": \"Asia / Riyadh\"\n\"Asia/Sakhalin\": \"Asia / Sakhalin\"\n\"Asia/Samarkand\": \"Asia / Samarcanda\"\n\"Asia/Seoul\": \"Asia / Seoul\"\n\"Asia/Shanghai\": \"Asia / Shanghai\"\n\"Asia/Singapore\": \"Asia / Singapore\"\n\"Asia/Srednekolymsk\": \"Asia / Srednekolymsk\"\n\"Asia/Taipei\": \"Asia / Taipei\"\n\"Asia/Tashkent\": \"Asia / Tashkent\"\n\"Asia/Tbilisi\": \"Asia / Tbilisi\"\n\"Asia/Tehran\": \"Asia / Teheran\"\n\"Asia/Thimphu\": \"Asia / Thimphu\"\n\"Asia/Tokyo\": \"Asia / Tokyo\"\n\"Asia/Tomsk\": \"Asia / Tomsk\"\n\"Asia/Ulaanbaatar\": \"Asia / Ulaanbaatar\"\n\"Asia/Urumqi\": \"Asia / Urumqi\"\n\"Asia/Ust-Nera\": \"Asia / Ust-Nera\"\n\"Asia/Vientiane\": \"Asia / Vientiane\"\n\"Asia/Vladivostok\": \"Asia / Vladivostok\"\n\"Asia/Yakutsk\": \"Asia / Yakutsk\"\n\"Asia/Yangon\": \"Asia / Yangon\"\n\"Asia/Yekaterinburg\": \"Asia / Yekaterinburg\"\n\"Asia/Yerevan\": \"Asia / Yerevan\"\n\"Atlantic/Azores\": \"Atlantic / Azores\"\n\"Atlantic/Bermuda\": \"Atlantic / Bermuda\"\n\"Atlantic/Canary\": \"Atlantic / Canary\"\n\"Atlantic/Cape_Verde\": \"Atlantic / Cape_Verde\"\n\"Atlantic/Faroe\": \"Atlantic / Faroe\"\n\"Atlantic/Madeira\": \"Atlantic / Madeira\"\n\"Atlantic/Reykjavik\": \"Atlantic / Reykjavik\"\n\"Atlantic/South_Georgia\": \"Atlantic / South_Georgia\"\n\"Atlantic/St_Helena\": \"Atlantic / St_Helena\"\n\"Atlantic/Stanley\": \"Atlantic / Stanley\"\n\"Australia/Adelaide\": \"Australia / Adelaide\"\n\"Australia/Brisbane\": \"Australia / Brisbane\"\n\"Australia/Broken_Hill\": \"Australia / Broken_Hill\"\n\"Australia/Currie\": \"Australia / Currie\"\n\"Australia/Darwin\": \"Australia / Darwin\"\n\"Australia/Eucla\": \"Australia / Eucla\"\n\"Australia/Hobart\": \"Australia / Hobart\"\n\"Australia/Lindeman\": \"Australia / Lindeman\"\n\"Australia/Lord_Howe\": \"Australia / Lord_Howe\"\n\"Australia/Melbourne\": \"Australia / Melbourne\"\n\"Australia/Perth\": \"Australia / Perth\"\n\"Australia/Sydney\": \"Australia / Sydney\"\n\"Europe/Amsterdam\": \"Europe / Amsterdam\"\n\"Europe/Andorra\": \"Europe / Andorra\"\n\"Europe/Astrakhan\": \"Europe / Astrakhan\"\n\"Europe/Athens\": \"Europe / Athens\"\n\"Europe/Belgrade\": \"Europe / Belgrado\"\n\"Europe/Berlin\": \"Europe / Berlin\"\n\"Europe/Bratislava\": \"Europe / Bratislava\"\n\"Europe/Brussels\": \"Europe / Brussels\"\n\"Europe/Bucharest\": \"Europe / Bucharest\"\n\"Europe/Budapest\": \"Europe / Budapest\"\n\"Europe/Busingen\": \"Europe / Busingen\"\n\"Europe/Chisinau\": \"Europe / Chisinau\"\n\"Europe/Copenhagen\": \"Europe / Copenhagen\"\n\"Europe/Dublin\": \"Europa / Dublino\"\n\"Europe/Gibraltar\": \"Europa / Gibilterra\"\n\"Europe/Guernsey\": \"Europe / Guernsey\"\n\"Europe/Helsinki\": \"Europe / Helsinki\"\n\"Europe/Isle_of_Man\": \"Europe / Isle_of_Man\"\n\"Europe/Istanbul\": \"Europe / Istanbul\"\n\"Europe/Jersey\": \"Europe / Jersey\"\n\"Europe/Kaliningrad\": \"Europe / Kaliningrad\"\n\"Europe/Kiev\": \"Europe / Kiev\"\n\"Europe/Kirov\": \"Europe / Kirov\"\n\"Europe/Lisbon\": \"Europe / Lisbon\"\n\"Europe/Ljubljana\": \"Europe / Ljubljana\"\n\"Europe/London\": \"Europe / London\"\n\"Europe/Luxembourg\": \"Europe / Luxembourg\"\n\"Europe/Madrid\": \"Europe / Madrid\"\n\"Europe/Malta\": \"Europe / Malta\"\n\"Europe/Mariehamn\": \"Europe / Mariehamn\"\n\"Europe/Minsk\": \"Europe / Minsk\"\n\"Europe/Monaco\": \"Europa / Monaco\"\n\"Europe/Moscow\": \"Europe / Moscow\"\n\"Europe/Oslo\": \"Europe / Oslo\"\n\"Europe/Paris\": \"Europe / Paris\"\n\"Europe/Podgorica\": \"Europe / Podgorica\"\n\"Europe/Prague\": \"Europe / Prague\"\n\"Europe/Riga\": \"Europe / Riga\"\n\"Europe/Rome\": \"Europe / Rome\"\n\"Europe/Samara\": \"Europe / Samara\"\n\"Europe/San_Marino\": \"Europe / San_Marino\"\n\"Europe/Sarajevo\": \"Europe / Sarajevo\"\n\"Europe/Saratov\": \"Europe / Saratov\"\n\"Europe/Simferopol\": \"Europe / Simferopol\"\n\"Europe/Skopje\": \"Europe / Skopje\"\n\"Europe/Sofia\": \"Europe / Sofia\"\n\"Europe/Stockholm\": \"Europa / Stoccolma\"\n\"Europe/Tallinn\": \"Europe / Tallinn\"\n\"Europe/Tirane\": \"Europe / Tirane\"\n\"Europe/Ulyanovsk\": \"Europe / Ulyanovsk\"\n\"Europe/Uzhgorod\": \"Europe / Uzhgorod\"\n\"Europe/Vaduz\": \"Europe / Vaduz\"\n\"Europe/Vatican\": \"Europe / Vatican\"\n\"Europe/Vienna\": \"Europe / Vienna\"\n\"Europe/Vilnius\": \"Europe / Vilnius\"\n\"Europe/Volgograd\": \"Europe / Volgograd\"\n\"Europe/Warsaw\": \"Europe / Warsaw\"\n\"Europe/Zagreb\": \"Europe / Zagreb\"\n\"Europe/Zaporozhye\": \"Europe / Zaporozhye\"\n\"Europe/Zurich\": \"Europe / Zurich\"\n\"Indian/Antananarivo\": \"Indian / Antananarivo\"\n\"Indian/Chagos\": \"Indiano / Chagos\"\n\"Indian/Christmas\": \"Indian / Natale\"\n\"Indian/Cocos\": \"Indian / Cocos\"\n\"Indian/Comoro\": \"Indian / Comore\"\n\"Indian/Kerguelen\": \"Indian / Kerguelen\"\n\"Indian/Mahe\": \"Indian / Mahe\"\n\"Indian/Maldives\": \"Indiano / Maldive\"\n\"Indian/Mauritius\": \"Indian / Mauritius\"\n\"Indian/Mayotte\": \"Indian / Mayotte\"\n\"Indian/Reunion\": \"Indian / Reunion\"\n\"Pacific/Apia\": \"Pacific / Apia\"\n\"Pacific/Auckland\": \"Pacifico / Auckland\"\n\"Pacific/Bougainville\": \"Pacifico / Bougainville\"\n\"Pacific/Chatham\": \"Pacifico / Chatham\"\n\"Pacific/Chuuk\": \"Pacifico / Chuuk\"\n\"Pacific/Easter\": \"Pacifico / Pasqua\"\n\"Pacific/Efate\": \"Pacifico / Efate\"\n\"Pacific/Enderbury\": \"Pacifico / Enderbury\"\n\"Pacific/Fakaofo\": \"Pacifico / Fakaofo\"\n\"Pacific/Fiji\": \"Pacifico / Fiji\"\n\"Pacific/Funafuti\": \"Pacifico / Funafuti\"\n\"Pacific/Galapagos\": \"Pacifico / Galapagos\"\n\"Pacific/Gambier\": \"Pacifico / Gambier\"\n\"Pacific/Guadalcanal\": \"Pacifico / Guadalcanal\"\n\"Pacific/Guam\": \"Pacifico / Guam\"\n\"Pacific/Honolulu\": \"Pacific / Honolulu\"\n\"Pacific/Kiritimati\": \"Pacifico / Kiritimati\"\n\"Pacific/Kosrae\": \"Pacifico / Kosrae\"\n\"Pacific/Kwajalein\": \"Pacifico / Kwajalein\"\n\"Pacific/Majuro\": \"Pacifico / Majuro\"\n\"Pacific/Marquesas\": \"Pacifico / Marchesi\"\n\"Pacific/Midway\": \"Pacifico / Midway\"\n\"Pacific/Nauru\": \"Pacifico / Nauru\"\n\"Pacific/Niue\": \"Pacifico / Niue\"\n\"Pacific/Norfolk\": \"Pacifico / Norfolk\"\n\"Pacific/Noumea\": \"Pacifico / Noumea\"\n\"Pacific/Pago_Pago\": \"Pacifico / Pago_Pago\"\n\"Pacific/Palau\": \"Pacifico / Palau\"\n\"Pacific/Pitcairn\": \"Pacifico / Pitcairn\"\n\"Pacific/Pohnpei\": \"Pacifico / Pohnpei\"\n\"Pacific/Port_Moresby\": \"Pacifico / Port_Moresby\"\n\"Pacific/Rarotonga\": \"Pacifico / Rarotonga\"\n\"Pacific/Saipan\": \"Pacifico / Saipan\"\n\"Pacific/Tahiti\": \"Pacifico / Tahiti\"\n\"Pacific/Tarawa\": \"Pacifico / Tarawa\"\n\"Pacific/Tongatapu\": \"Pacifico / Tongatapu\"\n\"Pacific/Wake\": \"Pacifico / Wake\"\n\"Pacific/Wallis\": \"Pacifico / Wallis\"\n\"UTC\": \"UTC\"\n\"Time Format\": \"Formato orario\"\n\"Choose your default timezone\": \"Scegli il fuso orario predefinito\"\n\"Signature\": \"Firma\"\n\"User signature will be append at the bottom of ticket reply box\": \"La firma verrà aggiunta nella parte inferiore della casella di risposta del ticket\"\n\"Password\": \"Password\"\n\"Password will remain same if you are not entering something in this field\": \"La password rimarrà la stessa se non si inserisce qualcosa in questo campo\"\n\"Password must contain minimum 8 character length, at least two letters (not case sensitive), one number, one special character(space is not allowed).\": \"La password deve contenere almeno 8 caratteri di lunghezza, almeno due lettere (senza distinzione tra maiuscole e minuscole), un numero, un carattere speciale (lo spazio non è consentito).\"\n\"Confirm Password\": \"Conferma password\"\n\"Save Changes\": \"Salva\"\n\"SAVE CHANGES\": \"SALVA\"\n\"CREATE TICKET\": \"CREA TICKET\"\n\"Customer full name\": \"Nome completo del cliente\"\n\"Customer email address\": \"Indirizzo email del cliente\"\n\"Select Type\": \"Seleziona tipo\"\n\"Support\": \"Supporto\"\n\"Choose ticket type\": \"Scegli il tipo di ticket\"\n\"Ticket subject\": \"Oggetto del ticket\"\n\"Message\": \"Messaggio\"\n\"Query Message\": \"Messaggio di query\"\n\"Add Attachment\": \"Aggiungi allegato\"\n\"This field is mandatory\": \"Questo campo è obbligatorio\"\n\"General\": \"Generale\"\n\"Designation\": \"Titolo\"\n\"Contant Number\": \"Numero concorrente\"\n\"User signature will be append in the bottom of ticket reply box\": \"La firma verrà aggiunta nella parte inferiore della casella di risposta del ticket\"\n\"Account Status\": \"Stato dell'account\"\n\"Account is Active\": \"L'account è attivo\"\n\"Assigning group(s) to user to view tickets regardless assignment.\": \"Assegnazione di gruppo / i all'utente per visualizzare i ticket indipendentemente dall'assegnazione.\"\n\"Default\": \"Predefinito\"\n\"Select All\": \"Seleziona tutto\"\n\"Remove All\": \"Rimuovi tutto\"\n\"Assigning team(s) to user to view tickets regardless assignment.\": \"Assegnazione di una o più squadre all'utente per visualizzare i ticket indipendentemente dall'assegnazione.\"\n\"No Team added !\": \"Nessuna squadra aggiunta!\"\n\"Permission\": \"Autorizzazione\"\n\"Role\": \"Ruolo\"\n\"Administrator\": \"Amministratore\"\n\"Select agent role\": \"Seleziona ruolo agente\"\n\"Add Customer\": \"Aggiungi cliente\"\n\"Action\": \"Azione\"\n\"Account Owner\": \"Titolare dell'account\"\n\"Active\": \"Attivo\"\n\"Edit\": \"Modifica\"\n\"Delete\": \"Elimina\"\n\"Disabled\": \"Non attivo\"\n\"New Group\": \"Nuovo gruppo\"\n\"Default Privileges\": \"Privilegi predefiniti\"\n\"New Privileges\": \"Nuovi privilegi\"\n\"NEW PRIVILEGE\": \"NUOVO PRIVILEGIO\"\n\"New Privilege\": \"Nuovo privilegio\"\n\"New Team\": \"Nuovo team\"\n\"No Record Found\": \"Nessun record trovato\"\n\"Order Synchronization\": \"Sincronizzazione ordini\"\n\"Easily integrate different ecommerce platforms with your helpdesk which can then be later used to swiftly integrate ecommerce order details with your support tickets.\": \"Integra facilmente diverse piattaforme di e-commerce con il tuo helpdesk che può essere successivamente utilizzato per integrare rapidamente i dettagli dellordine e-commerce con i tuoi ticket di supporto.\"\n\"BigCommerce\": \"BigCommerce\"\n\"No channels have been added.\": \"Nessun canale aggiunto.\"\n\"Add BigCommerce Store\": \"Aggiungi negozio BigCommerce\"\n\"ADD BIGCOMMERCE STORE\": \"AGGIUNGI BIGCOMMERCE STORE\"\n\"Mangento\": \"Mangento\"\n\"Add Magento Store\": \"Aggiungi Magento Store\"\n\"OpenCart\": \"OpenCart\"\n\"Add OpenCart Store\": \"Aggiungi OpenCart Store\"\n\"ADD OPENCART STORE\": \"AGGIUNGI NEGOZIO OPENCART\"\n\"Shopify\": \"Shopify\"\n\"Add Shopify Store\": \"Aggiungi negozio Shopify\"\n\"ADD SHOPIFY STORE\": \"AGGIUNGI NEGOZIO SHOPIFY\"\n\"Integrate a new BigCommerce store\": \"Integra un nuovo negozio BigCommerce\"\n\"Your BigCommerce Store Name\": \"Il nome del tuo negozio BigCommerce\"\n\"Your BigCommerce Store Hash\": \"Hash del tuo negozio BigCommerce\"\n\"Your BigCommerce Api Token\": \"Il tuo token Api BigCommerce\"\n\"Your BigCommerce Api Client ID\": \"Il tuo ID client Api BigCommerce\"\n\"Enable Channel\": \"Abilita canale\"\n\"Add Store\": \"Aggiungi negozio\"\n\"ADD STORE\": \"AGGIUNGI NEGOZIO\"\n\"Integrate a new Magento store\": \"Integra un nuovo negozio Magento\"\n\"Your Magento Api Username\": \"Il tuo nome utente Magento Api\"\n\"Your Magento Api Password\": \"La tua password Api Magento\"\n\"Integrate a new OpenCart store\": \"Integra un nuovo negozio OpenCart\"\n\"Your OpenCart Api Key\": \"La tua chiave Api OpenCart\"\n\"Your Shopify Store Name\": \"Il nome del tuo negozio Shopify\"\n\"Your Shopify Api Key\": \"La tua chiave Api di Shopify\"\n\"Your Shopify Api Password\": \"La tua password Api di Shopify\"\n\"Easily embed custom form to help generate helpdesk tickets.\": \"Incorpora facilmente un modulo personalizzato per aiutare a generare ticket di helpdesk.\"\n\"Form-Builder\": \"Form-Builder\"\n\"Add Formbuilder\": \"Aggiungi formbuilder\"\n\"ADD FORMBUILDER\": \"AGGIUNGI FORMBUILDER\"\n\"No FormBuilder have been added.\": \"Nessun FormBuilder è stato aggiunto.\"\n\"Create a New Custom Form Below\": \"Crea un nuovo modulo personalizzato di seguito\"\n\"Form Name\": \"Nome modulo\"\n\"It will be shown in the list of created forms\": \"Verrà visualizzato nellelenco dei moduli creati\"\n\"MANDATORY FIELDS\": \"CAMPI OBBLIGATORI\"\n\"These fields will be visible in form and cant be edited\": \"Questi campi saranno visibili nel modulo e non possono essere modificati\"\n\"Reply\": \"Rispondere\"\n\"OPTIONAL FIELDS\": \"CAMPI OPZIONALI\"\n\"Select These Fields to Add in your Form\": \"Seleziona questi campi da aggiungere nel modulo\"\n\"GDPR\": \"GDPR\"\n\"Order\": \"Ordine\"\n\"Categorybuilder\": \"Categorybuilder\"\n\"File\": \"File\"\n\"Add Form\": \"Aggiungi modulo\"\n\"ADD FORM\": \"AGGIUNGI MODULO\"\n\"UPDATE FORM\": \"MODULO DI AGGIORNAMENTO\"\n\"Update Form\": \"Modulo di aggiornamento\"\n\"Embed\": \"Incorporare\"\n\"EMBED\": \"INCORPORARE\"\n\"EMBED FORMBUILDER\": \"FORMBUILDER EMBED\"\n\"Embed Formbuilder\": \"Incorpora Formbuilder\"\n\"Visit\": \"Visita\"\n\"VISIT\": \"VISITA\"\n\"Code\": \"Codice\"\n\"Total Ticket(s)\": \"Totale ticket\"\n\"Ticket Count\": \"Conteggio ticket\"\n\"SwiftMailer Configurations\": \"Configurazioni SwiftMailer\"\n\"No swiftmailer configurations found\": \"Nessuna configurazione di swiftmailer trovata\"\n\"CREATE CONFIGURATION\": \"CREA CONFIGURAZIONE\"\n\"Add configuration\": \"Aggiungi configurazione\"\n\"Update configuration\": \"Aggiorna configurazione\"\n\"Mailer ID\": \"ID mailer\"\n\"Mailer ID - Leave blank to automatically create id\": \"ID mailer - Lascia vuoto per creare automaticamente lid\"\n\"Transport Type\": \"Tipo di trasporto\"\n\"SMTP\": \"SMTP\"\n\"Enable Delivery\": \"Abilita consegna\"\n\"Server\": \"server\"\n\"Port\": \"Porta\"\n\"Encryption Mode\": \"Modalità di crittografia\"\n\"ssl\": \"ssl\"\n\"tsl\": \"tsl\"\n\"None\": \"Nessuna\"\n\"Authentication Mode\": \"Modalità di autenticazione\"\n\"login\": \"accesso\"\n\"API\": \"API\"\n\"Plain\": \"Plain\"\n\"CRAM-MD5\": \"CRAM-MD5\"\n\"Sender Address\": \"Indirizzo mittente\"\n\"Delivery Address\": \"Indirizzo di consegna\"\n\"Block Spam\": \"Blocca spam\"\n\"Black list\": \"Lista nera\"\n\"Comma (,) separated values (Eg. support@example.com, @example.com, 68.98.31.226)\": \"Valori separati tramite virgola (,) (es. support@esempio.com, @esempio.com, 68.98.31.226)\"\n\"White list\": \"Lista bianca\"\n\"Mailbox Settings\": \"Impostazioni Casella\"\n\"No mailbox configurations found\": \"Nessuna configurazione di casella trovata\"\n\"NEW MAILBOX\": \"NUOVA MAILBOX\"\n\"New Mailbox\": \"Nuova Casella\"\n\"Update Mailbox\": \"Aggiorna Casella\"\n\"Add Mailbox\": \"Aggiungi Casella\"\n\"Mailbox ID - Leave blank to automatically create id\": \"ID casella - Lascia vuoto per creare automaticamente lid\"\n\"Mailbox Name\": \"Nome casella\"\n\"Enable Mailbox\": \"Abilita casella\"\n\"Incoming Mail (IMAP) Server\": \"Server posta in arrivo (IMAP)\"\n\"Configure your imap settings which will be used to fetch emails from your mailbox.\": \"Configura le impostazioni di imap che verranno utilizzate per recuperare le e-mail dalla tua casella di posta.\"\n\"Transport\": \"Trasporto\"\n\"IMAP\": \"IMAP\"\n\"Gmail\": \"Gmail\"\n\"Yahoo\": \"Yahoo\"\n\"Host\": \"Host\"\n\"IMAP Host\": \"Host IMAP\"\n\"Email address\": \"Indirizzo email\"\n\"Associated Password\": \"Password associata\"\n\"Outgoing Mail (SMTP) Server\": \"Server posta in uscita (SMTP)\"\n\"Select a valid Swift Mailer configuration which will be used to send emails through your mailbox.\": \"Seleziona una configurazione Swift Mailer valida che verrà utilizzata per inviare e-mail tramite la tua casella di posta.\"\n\"None Selected\": \"Nessuno selezionato\"\n\"Create Mailbox\": \"Crea casella\"\n\"CREATE MAILBOX\": \"CREA CASELLA\"\n\"New Template\": \"Nuovo modello\"\n\"NEW TEMPLATE\": \"NUOVO MODELLO\"\n\"Customer Forgot Password\": \"Password dimenticata cliente\"\n\"Customer Account Created\": \"Account cliente creato\"\n\"Ticket generated success mail to customer\": \"Un Ticket ha generato posta di successo al cliente\"\n\"Customer Reply To The Agent\": \"Risposta del cliente all'agente\"\n\"Ticket Assign\": \"Ticket Assign\"\n\"Agent Forgot Password\": \"Password dimenticata agente\"\n\"Agent Account Created\": \"Account agente creato\"\n\"Ticket generated by customer\": \"Ticket generati dal cliente\"\n\"Agent Reply To The Customers ticket\": \"Risposta dell'agente al ticket del cliente\"\n\"Email template name\": \"Nome modello email\"\n\"Email template subject\": \"Oggetto modello email\"\n\"Template For\": \"Modello per\"\n\"Nothing Selected\": \"Niente di selezionato\"\n\"email template will be used for work related with selected option\": \"Il modello di email verrà utilizzato per lavori relativi all'opzione selezionata\"\n\"Email template body\": \"Corpo modello email\"\n\"Body\": \"Corpo\"\n\"placeholders\": \"Variabili\"\n\"Ticket Subject\": \"Oggetto Ticket\"\n\"Ticket Message\": \"Messaggio Ticket\"\n\"Ticket Attachments\": \"Allegati Ticket\"\n\"Ticket Tags\": \"Etichette Ticket\"\n\"Ticket Source\": \"Fonte Ticket\"\n\"Ticket Status\": \"Stato Ticket\"\n\"Ticket Priority\": \"Priorità Ticket\"\n\"Ticket Group\": \"Gruppo Ticket\"\n\"Ticket Team\": \"Team Ticket\"\n\"Ticket Thread Message\": \"Messaggio thread del ticket\"\n\"Ticket Customer Name\": \"Nome cliente del ticket\"\n\"Ticket Customer Email\": \"Email Cliente Ticket\"\n\"Ticket Agent Name\": \"Nome Agente Ticket\"\n\"Ticket Agent Email\": \"Email Agente Ticket\"\n\"Ticket Agent Link\": \"Link Agente Ticket\"\n\"Ticket Customer Link\": \"Link Cliente Ticket\"\n\"Last Collaborator Name\": \"Ultimo Cognome Collaboratore\"\n\"Last Collaborator Email\": \"Ultima Email Collaboratore\"\n\"Agent/ Customer Name\": \"Nome agente / cliente\"\n\"Account Validation Link\": \"Link di convalida dell'account\"\n\"Password Forgot Link\": \"Password dimenticata collegamento\"\n\"Company Name\": \"Nome dell'azienda\"\n\"Company Logo\": \"Logo dell'azienda\"\n\"Company URL\": \"URL dell'azienda\"\n\"Swiftmailer id (Select from drop down)\": \"ID Swiftmailer (seleziona dal menu)\"\n\"SwiftMailer\": \"SwiftMailer\"\n\"PROCEED\": \"PROCEDERE\"\n\"Proceed\": \"Procedere\"\n\"Theme Color\": \"Colore del tema\"\n\"Customer Created\": \"Cliente Creato\"\n\"Agent Created\": \"Agente Creato\"\n\"Ticket Created\": \"Ticket Creato\"\n\"Agent Replied on Ticket\": \"Risposta dell'agente sul ticket\"\n\"Customer Replied on Ticket\": \"Risposta del cliente sul ticket\"\n\"Workflow Status\": \"Stato del flusso di lavoro\"\n\"Workflow is Active\": \"Il flusso di lavoro è attivo\"\n\"Events\": \"Eventi\"\n\"An event automatically triggers to check conditions and perform a respective pre-defined set of actions\": \"Un evento si attiva automaticamente per verificare le condizioni ed eseguire un rispettivo set di azioni predefinito\"\n\"Select an Event\": \"Seleziona un evento\"\n\"Add More\": \"Aggiungi\"\n\"Conditions\": \"Condizioni\"\n\"Conditions are set of rules which checks for specific scenarios and are triggered on specific occasions\": \"Le condizioni sono un insieme di regole che verificano scenari specifici e sono attivate in occasioni specifiche\"\n\"Subject or Description\": \"Oggetto o descrizione\"\n\"Actions\": \"Azioni\"\n\"An action not only reduces the workload but also makes it quite easier for ticket automation\": \"Unazione non solo riduce il carico di lavoro, ma lo rende anche più semplice per lautomazione dei ticket\"\n\"Select an Action\": \"Seleziona unazione\"\n\"Add Note\": \"Aggiungi nota\"\n\"Mail to agent\": \"Mail all'agente\"\n\"Mail to customer\": \"Mail al cliente\"\n\"Mail to group\": \"Mail al gruppo\"\n\"Mail to last collaborator\": \"Mail all'ultimo collaboratore\"\n\"Mail to team\": \"Mail al team\"\n\"Mark Spam\": \"Marca Spam\"\n\"Assign to agent\": \"Assegna a agente\"\n\"Assign to group\": \"Assegna a gruppo\"\n\"Set Priority As\": \"Imposta priorità come\"\n\"Set Status As\": \"Imposta stato come\"\n\"Set Tag As\": \"Imposta tag come\"\n\"Set Label As\": \"Imposta etichetta come\"\n\"Assign to team\": \"Assegna a squadra\"\n\"Set Type As\": \"Imposta tipo come\"\n\"Add Workflow\": \"Aggiungi flusso di lavoro\"\n\"ADD WORKFLOW\": \"AGGIUNGI FLUSSO DI LAVORO\"\n\"Ticket Type code\": \"Codice del tipo di ticket\"\n\"Ticket Type description\": \"Descrizione del tipo di ticket\"\n\"Type Status\": \"Tipo di stato\"\n\"Type is Active\": \"Tipo è attivo\"\n\"Add Save Reply\": \"Aggiungi Salva risposta\"\n\"Saved reply name\": \"Nome risposta salvato\"\n\"Share saved reply with user(s) in these group(s)\": \"Condividi la risposta salvata con gli utenti in questi gruppi\"\n\"Share saved reply with user(s) in these teams(s)\": \"Condividi la risposta salvata con gli utenti in questi team\"\n\"Saved reply Body\": \"Organismo di risposta salvato\"\n\"New Prepared Response\": \"Nuova risposta preparata\"\n\"Prepared Response Status\": \"Stato di risposta preparato\"\n\"Prepared Response is Active\": \"La risposta preparata è attiva\"\n\"Share prepared response with user(s) in these group(s)\": \"Condividi le risposte preparate con gli utenti in questi gruppi\"\n\"Share prepared response with user(s) in these teams(s)\": \"Condividi le risposte preparate con gli utenti in questi team\"\n\"ADD PREPARED RESPONSE\": \"AGGIUNGI RISPOSTA PREPARATA\"\n\"Add Prepared Response\": \"Aggiungi risposta preparata\"\n\"Folder Name is shown upfront at Knowledge Base\": \"Il nome della cartella viene mostrato in anticipo nella Knowledge Base\"\n\"A small text about the folder helps user to navigate more easily\": \"Un piccolo testo sulla cartella aiuta lutente a navigare più facilmente\"\n\"Publish\": \"Pubblicata\"\n\"Choose appropriate status\": \"Scegli lo stato appropriato\"\n\"Folder Image\": \"Immagine cartella\"\n\"An image is worth a thousands words and makes folder more accessible\": \"Unimmagine vale più di mille parole e rende la cartella più accessibile\"\n\"Add Category\": \"Aggiungi categoria\"\n\"Category Name is shown upfront at Knowledge Base\": \"Il nome della categoria è mostrato in anticipo nella Knowledge Base\"\n\"A small text about the category helps user to navigate more easily\": \"Un piccolo testo sulla categoria aiuta lutente a navigare più facilmente\"\n\"Using Category Order, you can decide which category should display first\": \"Utilizzando lordine delle categorie, puoi decidere quale categoria visualizzare per prima\"\n\"Sorting\": \"Ordinamento\"\n\"Ascending Order (A-Z)\": \"Ordine crescente (A-Z)\"\n\"Descending Order (Z-A)\": \"Ordine decrescente (Z-A)\"\n\"Based on Popularity\": \"Basato sulla popolarità\"\n\"Article of this category will display according to selected option\": \"Larticolo di questa categoria verrà visualizzato in base allopzione selezionata\"\n\"Article\": \"Articolo\"\n\"Title\": \"Titolo\"\n\"View\": \"Visualizza\"\n\"Make as Starred\": \"Crea come preferito\"\n\"Yes\": \"Sì\"\n\"No\": \"No\"\n\"Stared\": \"Fissato\"\n\"Revisions\": \"Revisioni\"\n\"Related Articles\": \"Articoli Correlati\"\n\"Delete Article\":\t\"Elimina articolo\"\n\"Content\": \"Contenuto\"\n\"Slug\": \"Slug\"\n\"Slug is the url identity of this article.\": \"Lo slug è l'identità dell'URL di questo articolo.\"\n\"Meta Title\": \"Meta Title\"\n\"# Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A pages title tag and meta description are usually shown whenever that page appears in search engine results\": \"I tag del titolo e le meta descrizioni sono frammenti di codice HTML nellintestazione di una pagina web. Aiutano i motori di ricerca a comprendere il contenuto di una pagina. Il tag del titolo e la meta descrizione di una pagina vengono generalmente visualizzati ogni volta che tale pagina appare nei risultati del motore di ricerca\"\n\"Meta Keywords\": \"Meta Keywords\"\n\"Meta Description\": \"Meta Description\"\n\"Description\": \"Descrizione\"\n\"Team Status\": \"Stato del Team\"\n\"Team is Active\": \"Il team è attivo\"\n\"Edit Privilege\": \"Modifica privilegio\"\n\"Can create ticket\": \"Può creare un ticket\"\n\"Can edit ticket\": \"Può modificare un ticket\"\n\"Can delete ticket\": \"Può eliminare un ticket\"\n\"Can restore trashed ticket\": \"Può ripristinare un ticket cestinato\"\n\"Can assign ticket\": \"Può assegnare un ticket\"\n\"Can assign ticket group\": \"Può assegnare un gruppo ad un ticket\"\n\"Can update ticket status\": \"Può aggiornare lo stato del ticket\"\n\"Can update ticket priority\": \"Può aggiornare la priorità del ticket\"\n\"Can update ticket type\": \"Può aggiornare il tipo di ticket\"\n\"Can add internal notes to ticket\": \"Può aggiungere note interne al ticket\"\n\"Can edit thread/notes\": \"Può modificare thread / note\"\n\"Can lock/unlock thread\": \"Può bloccare / sbloccare il thread\"\n\"Can add collaborator to ticket\": \"Può aggiungere un collaboratore al ticket\"\n\"Can delete collaborator from ticket\": \"Può eliminare il collaboratore dal ticket\"\n\"Can delete thread/notes\": \"Può eliminare thread / note\"\n\"Can apply prepared response on ticket\": \"Può applicare una risposta preparata su un ticket\"\n\"Can add ticket tags\": \"Può aggiungere tag ticket\"\n\"Can delete ticket tags\": \"Può eliminare i tag ticket\"\n\"Can kick other ticket users\": \"Può espellere altri utenti di un ticket\"\n\"Can manage email templates\": \"Può gestire i modelli di email\"\n\"Can manage groups\": \"Può gestire i gruppi\"\n\"Can manage Sub-Groups/ Teams\": \"Può gestire sottogruppi / squadre\"\n\"Can manage agents\": \"Può gestire gli agenti\"\n\"Can manage agent privileges\": \"Può gestire i privilegi degli agenti\"\n\"Can manage ticket types\": \"Può gestire i tipi di ticket\"\n\"Can manage ticket custom fields\": \"Può gestire i campi personalizzati dei ticket\"\n\"Can manage customers\": \"Può gestire i clienti\"\n\"Can manage Prepared Responses\": \"Può gestire le risposte preparate\"\n\"Can manage Automatic workflow\": \"Può gestire il flusso di lavoro automatico\"\n\"Can manage tags\": \"Può gestire i tag\"\n\"Can manage knowledgebase\": \"Può gestire la knowledge base\"\n\"Can manage Groups Saved Reply\": \"Può gestire la risposta salvata del gruppo\"\n\"Add Privilege\": \"Aggiungi privilegio\"\n\"Choose set of privileges which will be available to the agent.\": \"Scegli un set di privilegi che saranno disponibili per lagente.\"\n\"Advanced\": \"Avanzate\"\n\"Privilege Name must have characters only\": \"Il nome privilegio deve contenere solo caratteri\"\n\"Maximum character length is 50\": \"La lunghezza massima dei caratteri è 50\"\n\"Open Tickets\": \"Ticket aperti\"\n\"New Customer\": \"Nuovo cliente\"\n\"New Agent\": \"Nuovo agente\"\n\"Total Article(s)\": \"Totale articoli\"\n\"Please specify a valid email address\": \"Specifica un indirizzo email valido\"\n\"Please enter the password associated with your email address\": \"Inserisci la password associata al tuo indirizzo email\"\n\"Please enter your server host address\": \"Inserisci lindirizzo del tuo server\"\n\"Please specify a port number to connect with your mail server\": \"Specificare un numero di porta per connettersi con il proprio server di posta\"\n\"Success ! Branding details saved successfully.\": \"Successo! Dettagli di branding salvati correttamente. \"\n\"Success ! Time details saved successfully.\": \"Successo! Dettagli temporali salvati correttamente. \"\n\"Spam setting saved successfully.\": \"Impostazioni spam salvate correttamente.\"\n\"Please specify a valid name for your mailbox.\": \"Specifica un nome valido per la tua casella di posta.\"\n\"Please select a valid swift-mailer configuration.\": \"Seleziona una configurazione swift-mailer valida.\"\n\"Please specify a valid host address.\": \"Specificare un indirizzo host valido.\"\n\"Please specify a valid email address.\": \"Specifica un indirizzo email valido.\"\n\"Please enter the associated account password.\": \"Inserisci la password dellaccount associata.\"\n\"New Saved Reply\": \"Nuova risposta salvata\"\n\"New Category\": \"Nuova categoria\"\n\"Folder\": \"Cartella\"\n\"Category\": \"Categoria\"\n\"Created\": \"Data di creazione\"\n\"All Articles\": \"Tutti gli articoli\"\n\"Viewed\": \"Visualizzazioni\"\n\"New Article\": \"Nuovo articolo\"\n\"Thank you for your feedback!\": \"Grazie per il tuo feedback!\"\n\"Was this article helpful?\": \"Questo articolo è stato utile?\"\n\"Helpdesk\": \"Helpdesk\"\n\"Support Center\": \"Centro di supporto\"\n\"Mailboxes\": \"Caselle\"\n\"By\": \"Da\"\n\"Search Tickets\": \"Cerca ticket\"\n\"Customer Information\": \"Informazioni per il cliente\"\n\"Total Replies\": \"Risposte totali\"\n\"Filter With\": \"Filtra con\"\n\"Type email to add\": \"Digita lemail da aggiungere\"\n\"Collaborators\": \"Collaboratori\"\n\"Labels\": \"Etichette\"\n\"Group\": \"Gruppo\"\n\"group\": \"gruppo\"\n\"Contact Team\": \"Contatta il team\"\n\"Stay on ticket\": \"Resta sul ticket\"\n\"Redirect to list\": \"Reindirizza all'elenco\"\n\"Nothing interesting here...\": \"Niente di interessante qui\"\n\"Previous Ticket\": \"Ticket precedente\"\n\"Next Ticket\": \"Ticket successivo\"\n\"Forward\": \"Inoltrare\"\n\"Note\": \"Nota\"\n\"Write a reply\": \"Scrivi una risposta\"\n\"Created Ticket\": \"Ticket creato\"\n\"All Threads\": \"Tutte le discussioni\"\n\"Forwards\": \"Inoltrati\"\n\"Notes\": \"Note\"\n\"Pinned\": \"Fissato\"\n\"Edit Ticket\": \"Modifica ticket\"\n\"Print Ticket\": \"Stampa ticket\"\n\"Mark as Spam\": \"Segna come spam\"\n\"Mark as Closed\": \"Segna come chiuso\"\n\"Delete Ticket\": \"Elimina ticket\"\n\"View order details from different eCommerce channels\": \"Visualizza i dettagli dellordine da diversi canali di e-commerce\"\n\"ECOMMERCE CHANNELS\": \"CANALI ECOMMERCE\"\n\"Select channel\": \"Seleziona canale\"\n\"Order Id\": \"ID ordine\"\n\"Fetch Order\": \"Recupera ordine\"\n\"No orders have been integrated to this ticket yet.\": \"Nessun ordine è stato ancora integrato in questo ticket.\"\n\"Enter your credentials below to gain access to your helpdesk account.\": \"Inserisci le credenziali per accedere al tuo account di helpdesk.\"\n\"Keep me logged in\": \"Resta collegato\"\n\"Forgot Password?\": \"Ha dimenticato la password?\"\n\"Log in to your\": \"Accedi al tuo\"\n\"Sign In\": \"Accedi\"\n\"Edit Customer\": \"Modifica cliente\"\n\"Update\": \"Aggiorna\"\n\"Discard\": \"Scarta\"\n\"Cancel\": \"Annulla\"\n\"Not Assigned\": \"Non assegnato\"\n\"Submit\": \"Invia\"\n\"Submit And Open\": \"Invia e aperto\"\n\"Submit And Pending\": \"Invia e in attesa\"\n\"Submit And Answered\": \"Invia e risposto\"\n\"Submit And Resolved\": \"Invia e risolto\"\n\"Submit And Closed\": \"Invia e chiuso\"\n\"Choose a Color\": \"Scegli un colore\"\n\"Create\": \"Creare\"\n\"Edit Label\": \"Modifica etichetta\"\n\"Add Label\": \"Aggiungi etichetta\"\n\"To\": \"Per\"\n\"Ticket\": \"Ticket\"\n\"Your browser does not support JavaScript or You disabled JavaScript, Please enable those !\": \"Il tuo browser non supporta JavaScript o hai disabilitato JavaScript, abilitalo!\"\n\"Confirm Action\": \"Conferma azione\"\n\"Confirm\": \"Confermare\"\n\"No result found\": \"Nessun risultato trovato\"\n\"ticket delivery status\": \"stato di consegna del ticket\"\n\"Warning! Select valid image file.\": \"Avvertimento! Seleziona un file di immagine valido. \"\n\"Error\": \"Errore\"\n\"Save\": \"Salva\"\n\"SEO\": \"SEO\"\n\"Edit Saved Filter\": \"Modifica filtro salvato\"\n\"Type atleast 2 letters\": \"Digitare almeno 2 lettere\"\n\"Remove Label\": \"Rimuovi etichetta\"\n\"New Saved Filter\": \"Nuovo filtro salvato\"\n\"Is Default\": \"È predefinito\"\n\"Remove Saved Filter\": \"Rimuovi filtro salvato\"\n\"Ticket Info\": \"Informazioni ticket\"\n\"Last Replied Agent\": \"Ultimo agente replicato\"\n\"created Ticket\": \"Ticket creato\"\n\"Uploaded Files\": \"File caricati\"\n\"Download (as .zip)\": \"Scarica (con il nome .zip)\"\n\"made last reply\": \"ha fatto lultima risposta\"\n\"N/A\": \"N / A\"\n\"Unassigned\": \"Non assegnato\"\n\"Label\": \"Etichetta\"\n\"Assigned to me\": \"Assegnato a me\"\n\"Search Query\": \"Query di ricerca\"\n\"Searching\": \"Ricerca\"\n\"Saved Filter\": \"Filtro salvato\"\n\"No Label Created\": \"Nessuna etichetta creata\"\n\"Label with same name already exist.\": \"Un'etichetta con lo stesso nome esiste già.\"\n\"Create New\": \"Creare nuovo\"\n\"Mail status\": \"Stato della posta\"\n\"replied\": \"Risposto\"\n\"added note\": \"nota aggiunta\"\n\"forwarded\": \"Trasmessa\"\n\"TO\": \"PER\"\n\"CC\": \"CC\"\n\"BCC\": \"BCC\"\n\"Locked\": \"Bloccato\"\n\"Edit Thread\": \"Modifica discussione\"\n\"Delete Thread\": \"Elimina discussione\"\n\"Unpin Thread\": \"Sblocca discussione\"\n\"Pin Thread\": \"Pin Thread\"\n\"Unlock Thread\": \"Sblocca discussione\"\n\"Lock Thread\": \"Blocca discussione\"\n\"Translate Thread\": \"Traduci discussione\"\n\"Language\": \"Linguaggio\"\n\"English\": \"Inglese\"\n\"French\": \"Francese\"\n\"Italian\": \"Italiano\"\n\"Arabic\": \"Arabo\"\n\"German\": \"Tedesco\"\n\"Spanish\": \"Spagnolo\"\n\"Turkish\": \"Turco\"\n\"Danish\": \"Danese\"\n\"Chinese\": \"CINESE\"\n\"Polish\": \"POLACCO\"\n\"Hebrew\": \"Hebrew\"\n\"Portuguese\": \"Portoghese\"\n\"System\": \"Sistema\"\n\"Open in Files\": \"Apri in file\"\n\"Email address is invalid\": \"Lindirizzo email non è valido\"\n\"Tag with same name already exist\": \"Il tag con lo stesso nome esiste già\"\n\"Text length should be less than 20 charactors\": \"La lunghezza del testo deve essere inferiore a 20 caratteri\"\n\"Label with same name already exist\": \"L'etichetta con lo stesso nome esiste già\"\n\"Agent Name\": \"Nome agente\"\n\"Agent Email\": \"Email agente\"\n\"open\": \"Aperto\"\n\"Currently active agents on ticket\": \"Agenti attualmente attivi sul ticket\"\n\"Edit Customer Information\": \"Modifica informazioni cliente\"\n\"Restore\": \"Ristabilire\"\n\"Delete Forever\": \"Elimina per sempre\"\n\"Add Team\": \"Aggiungi squadra\"\n\"delete\": \"Elimina\"\n\"You didnt have any folder for current filter(s).\": \"Non avevi nessuna cartella per i filtri correnti.\"\n\"Add Folder\": \"Aggiungi cartella\"\n\"This field must have valid characters only\": \"Questo campo deve contenere solo caratteri validi\"\n\"Can edit task\": \"Può modificare l'attività\"\n\"Can create task\": \"Può creare attività\"\n\"Can delete task\": \"Può eliminare lattività\"\n\"Can add member to task\": \"Può aggiungere un membro all'attività\"\n\"Can remove member from task\": \"Può rimuovere un membro dall'attività\"\n\"Agent Privileges\": \"Privilegi agente\"\n\"Agent Privilege represents overall permissions in System.\": \"Privilegio agente rappresenta le autorizzazioni generali nel sistema.\"\n\"Ticket View\": \"Ticket View\"\n\"User can view tickets based on selected scope.\": \"Lutente può visualizzare i ticket in base all'ambito selezionato.\"\n\"If individual access then user can View assigned Ticket(s) only, If Team access then user can view all Ticket(s) in team(s) he belongs to and so on\": \"Se l'accesso individuale l'utente può visualizzare solo i ticket assegnati, se l'accesso al team l'utente può visualizzare tutti i ticket della squadra a cui appartiene e così via\"\n\"Global Access\": \"Accesso globale\"\n\"Group Access\": \"Accesso al gruppo\"\n\"Team Access\": \"Accesso al team\"\n\"Individual Access\": \"Accesso individuale\"\n\"This field must have characters only\": \"Questo campo deve contenere solo caratteri\"\n\"Maximum character length is 40\": \"La lunghezza massima dei caratteri è 40\"\n\"This is not a valid email address\": \"Questo non è un indirizzo e-mail valido\"\n\"Password must contains 8 Characters\": \"La password deve contenere 8 caratteri\"\n\"The passwords does not match\": \"Le password non corrispondono\"\n\"Enabled\": \"Abilitato\"\n\"Create Configuration\": \"Crea configurazione\"\n\"Swift Mailer Settings\": \"Impostazioni di Swift Mailer\"\n\"Username\": \"Nome utente\"\n\"Please select a swiftmailer id\": \"Seleziona un ID swiftmailer\"\n\"Please enter a valid e-mail id\": \"Inserisci un ID e-mail valido\"\n\"Please enter a mailer id\": \"Inserisci un ID mailer\"\n\"Email Id\": \"E-mail identificativa\"\n\"Are you sure? You want to perform this action.\": \"Sei sicuro? Vuoi eseguire questa azione. \"\n\"Reorder\": \"Riordina\"\n\"New Workflow\": \"Nuovo flusso di lavoro\"\n\"OR\": \"O\"\n\"AND\": \"E\"\n\"Please enter a valid name.\": \"Per favore inserire un nome valido.\"\n\"Please select a value.\": \"Seleziona un valore.\"\n\"Please add a value.\": \"Per favore, aggiungi un valore.\"\n\"This field is required\": \"Questo campo è obbligatorio\"\n\"or\": \"o\"\n\"and\": \"e\"\n\"Select a Condition\": \"Seleziona una condizione\"\n\"Loading...\": \"Caricamento in corso...\"\n\"Select Option\": \"Selezionare lopzione\"\n\"Inactive\": \"Inattivo\"\n\"New Type\": \"Nuovo tipo\"\n\"Placeholders\": \"segnaposto\"\n\"Ticket Link\": \"Ticket Link\"\n\"Id\": \"Id\"\n\"Preview\": \"Anteprima\"\n\"Sort Order\": \"Ordinamento\"\n\"This field must be a number\": \"Questo campo deve essere un numero\"\n\"User\": \"Utente\"\n\"Edit Group\": \"Modifica gruppo\"\n\"Group Status\": \"Stato del gruppo\"\n\"Group is Active\": \"Il gruppo è attivo\"\n\"Add Group\": \"Aggiungere gruppo\"\n\"Contact number is invalid\": \"Il numero di contatto non è valido\"\n\"Edit Agent\": \"Modifica agente\"\n\"No Privilege added, Please add Privilege(s) first !\": \"Nessun privilegio aggiunto, per favore aggiungi prima i privilegi!\"\n\"Edit Email Template\": \"Modifica modello email\"\n\"Edit Workflow\": \"Modifica flusso di lavoro\"\n\"Save Workflow\": \"Salva flusso di lavoro\"\n\"Edit Ticket Type\": \"Modifica tipo di ticket\"\n\"Add Ticket Type\": \"Aggiungi tipo di ticket\"\n\"Date Released\": \"Data di rilascio\"\n\"Free\": \"Gratuito\"\n\"Premium\": \"Premium\"\n\"Installed\": \"Installata\"\n\"Installed Applications\": \"Applicazioni installate\"\n\"Apps Dashboard\": \"Dashboard delle app\"\n\"Dashboard\": \"Pannello di controllo\"\n\"Nothing Interesting here\": \"Niente di interessante qui\"\n\"No Categories Added\": \"Nessuna categoria aggiunta\"\n\"ticket\": \"ticket\"\n\"Add Email Template\": \"Aggiungi modello email\"\n\"This field contain 100 characters only\": \"Questo campo contiene solo 100 caratteri\"\n\"This field contain characters only\": \"Questo campo contiene solo caratteri\"\n\"Name length must not be greater than 200 !!\": \"La lunghezza del nome non deve essere maggiore di 200 !!\"\n\"Warning! Correct all field values first!\": \"Avvertimento! Prima correggi tutti i valori dei campi! \"\n\"Warning ! This is not a valid request\": \"Avvertimento ! Questa non è una richiesta valida \"\n\"Success ! Tag removed successfully.\": \"Successo! Tag rimosso correttamente. \"\n\"Success ! Tags Saved successfully.\": \"Successo! Tag salvati correttamente. \"\n\"Success ! Revision restored successfully.\": \"Successo! Revisione ripristinata correttamente. \"\n\"Success ! Categories updated successfully.\": \"Successo! Categorie aggiornate correttamente. \"\n\"Success ! Article Related removed successfully.\": \"Successo! Articolo correlato rimosso correttamente. \"\n\"Success ! Article Related is already added.\": \"Successo! L'articolo correlato è già stato aggiunto. \"\n\"Success ! Cannot add self as relative article.\": \"Successo! Impossibile aggiungere se stesso come articolo relativo. \"\n\"Success ! Article Related updated successfully.\": \"Successo! Articolo correlato aggiornato correttamente. \"\n\"Success ! Articles removed successfully.\": \"Successo! Articoli rimossi correttamente. \"\n\"Success ! Article status updated successfully.\": \"Successo! Stato dell'articolo aggiornato correttamente. \"\n\"Success ! Article star updated successfully.\": \"Successo! Stella dell'articolo aggiornata correttamente. \"\n\"Success! Article updated successfully\": \"Successo! Articolo aggiornato correttamente \"\n\"Success ! Category sort  order updated successfully.\": \"Successo! Ordinamento delle categorie aggiornato correttamente. \"\n\"Success ! Category status updated successfully.\": \"Successo! Stato della categoria aggiornato correttamente. \"\n\"Success ! Folders updated successfully.\": \"Successo! Cartelle aggiornate correttamente. \"\n\"Success ! Categories removed successfully.\": \"Successo! Categorie rimosse correttamente. \"\n\"Success ! Category updated successfully.\": \"Successo! Categoria aggiornata correttamente. \"\n\"Error ! Category is not exist.\": \"Errore! La categoria non esiste. \"\n\"Warning ! Customer Login disabled by admin.\": \"Avvertimento ! Accesso cliente disabilitato dallamministratore. \"\n\"This Email is not registered with us.\": \"Questa email non è registrata con noi.\"\n\"Your password has been updated successfully.\": \"La tua password è stata aggiornata correttamente.\"\n\"Password dont match.\": \"La password non corrisponde.\"\n\"Error ! Profile image is not valid, please upload a valid format\": \"Errore! L'immagine del profilo non è valida, carica un formato valido\"\n\"Success! Folder has been added successfully.\": \"Successo! La cartella è stata aggiunta correttamente. \"\n\"Folder updated successfully.\": \"Cartella aggiornata correttamente.\"\n\"Success ! Folder status updated successfully.\": \"Successo! Stato della cartella aggiornato correttamente. \"\n\"Error ! Folder is not exist.\": \"Errore! La cartella non esiste. \"\n\"Success ! Folder updated successfully.\": \"Successo! Cartella aggiornata correttamente. \"\n\"Error ! Folder does not exist.\": \"Errore! La cartella non esiste. \"\n\"Success ! Folder deleted successfully.\": \"Successo! Cartella eliminata correttamente. \"\n\"Warning ! Folder doesnt exists!\": \"Attenzione! La cartella non esiste!\"\n\"Warning ! Cannot create ticket, given email is blocked by admin.\": \"Avvertimento ! Impossibile creare il ticket, dato che le-mail è bloccata dallamministratore.\" \n\"Success ! Ticket has been created successfully.\": \"Successo! Il ticket è stato creato correttamente. \"\n\"Warning ! Can not create ticket, invalid details.\": \"Avvertimento ! Impossibile creare il ticket, dettagli non validi.\"\n\"Warning ! Post size can not exceed 25MB\": \"Attenzione! Le dimensioni del post non possono superare i 25 MB\"\n\"Create Ticket Request\": \"Crea richiesta ticket\"\n\"Success ! Reply added successfully.\": \"Successo! Risposta aggiunta correttamente.\"\n\"Warning ! Reply field can not be blank.\": \"Attenzione! Il campo di risposta non può essere vuoto.\"\n\"Success ! Rating has been successfully added.\": \"Successo! La valutazione è stata aggiunta correttamente. \"\n\"Warning ! Invalid rating.\": \"Avvertimento ! Valutazione non valida.\"\n\"Error ! Can not add customer as a collaborator.\": \"Errore! Impossibile aggiungere il cliente come collaboratore\"\n\"Success ! Collaborator added successfully.\": \"Successo! Collaboratore aggiunto correttamente.\"\n\"Error ! Collaborator is already added.\": \"Errore! Il collaboratore è già stato aggiunto.\"\n\"Success ! Collaborator removed successfully.\": \"Successo! Collaboratore rimosso con successo.\"\n\"Error ! Invalid Collaborator.\": \"Errore! Collaboratore non valido.\"\n\"An unexpected error occurred. Please try again later.\": \"Si è verificato un errore imprevisto. Per favore riprova più tardi.\"\n\"Feedback saved successfully.\": \"Feedback salvato correttamente.\"\n\"Feedback updated successfully.\": \"Feedback aggiornato correttamente.\"\n\"Invalid feedback provided.\": \"Feedback non valido fornito.\"\n\"Article not found.\": \"Articolo non trovato.\"\n\"You need to login to your account before can perform this action.\": \"Devi accedere al tuo account prima di poter eseguire questa azione.\"\n\"Warning! Please add valid Actions!\": \"Avvertimento! Aggiungi azioni valide! \"\n\"Warning! In Free Plan you can not change Events!\": \"Avvertimento! In Free Plan non puoi cambiare Eventi! \"\n\"Success! Prepared Response has been updated successfully.\": \"Successo! La risposta preparata è stata aggiornata correttamente.\"\n\"Success! Prepared Response has been added successfully.\": \"Successo! La risposta preparata è stata aggiunta correttamente. \"\n\"Warning  This is not a valid request\": \"Avviso Questa non è una richiesta valida\"\n\"Use Default Colors\": \"Usa colori predefiniti\"\n\"Masonry\": \"Masonry\"\n\"Popular article\": \"Articolo popolare\"\n\"Manage Ticket Custom Fields\": \"Gestisci campi personalizzati ticket\"\n\"You dont have premission to edit this Prepared response \": \"Non hai la premessa di modificare questa risposta preparata\"\n\"Save Prepared Response\": \"Salva risposta preparata\"\n\"Success ! Prepared response removed successfully.\": \"Successo! Risposta preparata rimossa correttamente. \"\n\"Warning! You are not allowed to perform this action.\": \"Avvertimento! Non ti è consentito eseguire questa azione. \"\n\"Success! Workflow has been updated successfully.\": \"Successo! Il flusso di lavoro è stato aggiornato correttamente. \"\n\"Success! Workflow has been added successfully.\": \"Successo! Il flusso di lavoro è stato aggiunto correttamente. \"\n\"Success! Order has been updated successfully.\": \"Successo! L'ordine è stato aggiornato correttamente. \"\n\"Success! Workflow has been removed successfully.\": \"Successo! Il flusso di lavoro è stato rimosso correttamente. \"\n\"Mailbox successfully created.\": \"Casella creata correttamente.\"\n\"Mailbox successfully updated.\": \"Casella aggiornata correttamente.\"\n\"Warning ! Bad request !\": \"Avvertimento ! Brutta richiesta !\"\n\"Error! Given current password is incorrect.\": \"Errore! La password corrente è errata. \"\n\"Success ! Profile update successfully.\": \"Successo! Aggiornamento del profilo eseguito correttamente. \"\n\"Error ! User with same email is already exist.\": \"Errore! Lutente con la stessa email è già esistente. \"\n\"Success ! Agent updated successfully.\": \"Successo! Agente aggiornato correttamente. \"\n\"Success ! Agent removed successfully.\": \"Successo! Agente rimosso correttamente. \"\n\"Warning ! You are allowed to remove account owners account.\": \"Avviso! Puoi rimuovere l'account del proprietario dell'account.\"\n\"Error ! Invalid user id.\": \"Errore! ID utente non valido.\"\n\"Success ! Filter has been saved successfully.\": \"Successo! Il filtro è stato salvato con successo.\"\n\"Success ! Filter has been updated successfully.\": \"Successo! Il filtro è stato aggiornato con successo.\"\n\"Success ! Filter has been removed successfully.\": \"Operazione riuscita! Il filtro è stato rimosso correttamente.\"\n\"Please check your mail for password update.\": \"Controlla la tua posta per laggiornamento della password.\"\n\"This Email address is not registered with us.\": \"Questo indirizzo email non è registrato presso di noi.\"\n\"Success ! Customer saved successfully.\": \"Successo! Il cliente è stato salvato con successo.\"\n\"Error ! User with same email already exist.\": \"Errore! Esistono già utenti con la stessa e-mail.\"\n\"Success ! Customer information updated successfully.\": \"Successo! Informazioni sui clienti aggiornate con successo.\"\n\"Success ! Customer updated successfully.\": \"Successo! Il cliente è stato aggiornato con successo.\"\n\"Error ! Customer with same email already exist.\": \"Errore! Esistono già clienti con la stessa e-mail.\"\n\"unstarred Action Completed successfully\": \"Azione non contrassegnata completata correttamente\"\n\"starred Action Completed successfully\": \"Azione speciale completata correttamente\"\n\"Success ! Customer removed successfully.\": \"Successo! Cliente rimosso con successo.\"\n\"Error ! Invalid customer id.\": \"Errore! ID cliente non valido.\"\n\"Success! Template has been updated successfully.\": \"Successo! Il modello è stato aggiornato con successo.\"\n\"Success! Template has been added successfully.\": \"Successo! Il modello è stato aggiunto correttamente.\"\n\"Success! Template has been deleted successfully.\": \"Successo! Il modello è stato cancellato con successo.\"\n\"Warning! resource not found.\": \"Attenzione! Risorsa non trovata.\"\n\"Warning! You can not remove predefined email template which is being used in workflow(s).\": \"Attenzione! Non è possibile rimuovere il modello di posta elettronica predefinito utilizzato nei flussi di lavoro.\"\n\"Success ! Email settings are updated successfully.\": \"Operazione riuscita. Le impostazioni e-mail sono state aggiornate correttamente.\"\n\"Success ! Group information updated successfully.\": \"Successo! Informazioni sul gruppo aggiornate con successo.\"\n\"Success ! Group information saved successfully.\": \"Successo! Informazioni di gruppo salvate correttamente.\"\n\"Support Group removed successfully.\": \"Gruppo di supporto rimosso correttamente.\"\n\"Success ! Privilege information saved successfully.\": \"Successo! Informazioni sui privilegi salvate correttamente.\"\n\"Privilege updated successfully.\": \"Privilegio aggiornato con successo.\"\n\"Support Privilege removed successfully.\": \"Privilegio di supporto rimosso correttamente.\"\n\"Success! Reply has been updated successfully.\": \"Successo! La risposta è stata aggiornata correttamente.\"\n\"Success! Reply has been added successfully.\": \"Successo! La risposta è stata aggiunta correttamente.\"\n\"Success! Saved Reply has been deleted successfully\": \"Successo! La risposta salvata è stata eliminata correttamente\"\n\"SwiftMailer configuration updated successfully.\": \"Configurazione SwiftMailer aggiornata correttamente.\"\n\"Swiftmailer configuration removed successfully.\": \"La configurazione di Swiftmailer è stata rimossa correttamente.\"\n\"Success ! Team information saved successfully.\": \"Successo! Informazioni sulla squadra salvate correttamente.\"\n\"Success ! Team information updated successfully.\": \"Successo! Informazioni sulla squadra aggiornate con successo.\"\n\"Support Team removed successfully.\": \"Il team di supporto è stato rimosso correttamente.\"\n\"Success! Reply has been added successfully\": \"Successo! La risposta è stata aggiunta correttamente\"\n\"Success ! Thread updated successfully.\": \"Successo! Discussione aggiornata con successo.\"\n\"Error ! Reply field can not be blank.\": \"Errore! Il campo di risposta non può essere vuoto.\"\n\"Success ! Thread removed successfully.\": \"Operazione riuscita. Discussione rimossa correttamente.\"\n\"Success ! Thread locked successfully\": \"Successo! Discussione bloccata con successo\"\n\"Success ! Thread unlocked successfully\": \"Successo! Discussione sbloccata con successo\"\n\"Success ! Thread pinned successfully\": \"Successo! Discussione appuntata correttamente\"\n\"Error ! Invalid thread.\": \"Errore! Discussione non valida.\"\n\"Could not create ticket, invalid details.\": \"Impossibile creare il ticket, dettagli non validi.\"\n\"Success ! Tag updated successfully.\": \"Successo! Tag aggiornato correttamente.\"\n\"Error ! Customer can not be added as collaborator.\": \"Errore! Il cliente non può essere aggiunto come collaboratore.\"\n\"Success ! Tag unassigned successfully.\": \"Successo! Tag rimosso con successo.\"\n\"Success ! Tag added successfully.\": \"Successo! Tag aggiunto correttamente.\"\n\"Please enter tag name.\": \"Inserisci il nome del tag.\"\n\"Error ! Invalid tag.\": \"Errore! Tag non valido.\"\n\"Success ! Type removed successfully.\": \"Operazione riuscita. Tipo rimosso con successo.\"\n\"Success ! Ticket to label removed successfully.\": \"Successo! Il ticket per l'etichetta è stato rimosso con successo.\"\n\"Unable to retrieve support team details\": \"Impossibile recuperare i dettagli del team di supporto\"\n\"Ticket support group updated successfully\": \"Gruppo di supporto ticket aggiornato correttamente\"\n\"Unable to retrieve status details\": \"Impossibile recuperare i dettagli dello stato\"\n\"Insufficient details provided.\": \"Dettagli forniti insufficienti.\"\n\"Error! Subject field is mandatory\": \"Errore! Il campo delloggetto è obbligatorio\"\n\"Error! Reply field is mandatory\": \"Errore! Il campo di risposta è obbligatorio\"\n\"Success ! Ticket has been updated successfully.\": \"Successo! Il ticket è stato aggiornato con successo.\"\n\"Success ! Label updated successfully.\": \"Successo! Etichetta aggiornata con successo.\"\n\"Error ! Invalid label id.\": \"Errore! ID etichetta non valido.\"\n\"Success ! Label removed successfully.\": \"Successo! Etichetta rimossa correttamente.\"\n\"Success ! Label created successfully.\": \"Successo! Etichetta creata con successo.\"\n\"Error ! Label name can not be blank.\": \"Errore! Il nome dell'etichetta non può essere vuoto.\"\n\"Success ! Ticket moved to trash successfully.\": \"Successo! Il ticket è stato spostato correttamente nel cestino.\"\n\"Success! Ticket type saved successfully.\": \"Successo! Tipo di ticket salvato con successo.\"\n\"Success! Ticket type updated successfully.\": \"Operazione riuscita. Tipo di ticket aggiornato correttamente.\"\n\"Error! Ticket type with same name already exist\": \"Errore! Il tipo di ticket con lo stesso nome esiste già\"\n\"SAVE\": \"SALVA\"\n\"# Save\": \"Salva\"\n\"Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A pages title tag and meta description are usually shown whenever that page appears in search engine results\": \"I tag del titolo e le meta descrizioni sono frammenti di codice HTML nellintestazione di una pagina Web. Aiutano i motori di ricerca a comprendere il contenuto di una pagina. Il tag del titolo e la meta descrizione di una pagina sono generalmente mostrati ogni volta che quella pagina appare nei risultati del motore di ricerca\"\n\n# Successfully Pop-up/Notification Messages:\n\"Ticket is already assigned to agent\" : \"Il biglietto è già assegnato all'agente\"\n\"Success ! Agent assigned successfully.\" : \"Successo ! Agente assegnato correttamente.\"\n\"Ticket status is already set\" : \"Lo stato del ticket è già impostato\"\n\"Success ! Tickets status updated successfully.\" : \"Successo ! Stato dei ticket aggiornato con successo.\"\n\"Ticket priority is already set\" : \"La priorità del ticket è già impostata\"\n\"Success ! Tickets priority updated successfully.\" : \"Successo ! Priorità ticket aggiornata con successo.\"\n\"Ticket group is updated successfully\" : \"Il gruppo di ticket è stato aggiornato correttamente\"\n\"Ticket is already assigned to group\" : \"Il biglietto è già assegnato al gruppo\"\n\"Success ! Tickets group updated successfully.\" : \"Successo ! Gruppo di ticket aggiornato con successo.\"\n\"Ticket team is updated successfully\" : \"Il team ticket è stato aggiornato con successo\"\n\"Ticket is already assigned to team\" : \"Il biglietto è già assegnato alla squadra\"\n\"Success ! Tickets team updated successfully.\" : \"Successo ! Il team dei ticket è stato aggiornato correttamente.\"\n\"Ticket type is already set\" : \"Il tipo di biglietto è già impostato\"\n\"Success ! Tickets type updated successfully.\" : \"Successo ! Tipo di ticket aggiornato con successo.\"\n\"Success ! Tickets label updated successfully.\" : \"Successo ! Etichetta dei biglietti aggiornata con successo.\"\n\"Success ! Tickets added to label successfully.\" : \"Successo ! Biglietti aggiunti all'etichetta con successo.\"\n\"Success ! Tickets moved to trashed successfully.\" : \"Successo ! I biglietti sono stati spostati nel cestino con successo.\"\n\"Success ! Tickets removed successfully.\" : \"Successo ! Ticket rimossi con successo.\"\n\"Success ! Tickets restored successfully.\" : \"Successo ! Ticket ripristinati con successo.\"\n\"Unable to retrieve group details\" : \"Impossibile recuperare i dettagli del gruppo\"\n\"Unable to retrieve team details\" : \"Impossibile recuperare i dettagli del team\"\n\"Tickets details have been updated successfully\": \"I dettagli dei biglietti sono stati aggiornati con successo\"\n\"Label added to ticket successfully\" : \"Etichetta aggiunta al ticket con successo\"\t\t\t\t\n\"Label already added to ticket\" : \"Etichetta già aggiunta al biglietto\"\n\n#customer page\n\"New Ticket Request\": \"Nuova richiesta\"\n\"Ticket Requests\": \"Richieste\"\n\"Tickets have been updated successfully\": \n\"Please check your mail for password update\": \"Controlla la tua posta per l'aggiornamento della password\"\n\"This email address is not registered with us\": \"Questo indirizzo email non è registrato presso di noi\"\n\"You have already update password using this link if you wish to change password again click on forget password link here from login page\": \"Hai già aggiornato la password usando questo link se desideri cambiare di nuovo la password clicca sul link dimentica password qui dalla pagina di accesso\"\n\"Your password has been successfully updated. Login using updated password\": \"La tua password è stata aggiornata con successo. Accedi usando la password aggiornata\"\n\"Please try again, The passwords do not match\": \"Riprova, le password non corrispondono\"\n\"Support Privilege removed successfully\": \"Privilegio di supporto rimosso correttamente\"\n\"Success! Saved Reply has been deleted successfully.\": \"Successo! La risposta salvata è stata eliminata correttamente.\"\n\"SwiftMailer configuration created successfully.\": \"Configurazione di SwiftMailer creata correttamente.\"\n\"No swiftmailer configurations found for mailer id:\": \"Nessuna configurazione di swiftmailer trovata per l'id mailer\"\n\"Reply content cannot be left blank.\": \"Il contenuto della risposta non può essere lasciato vuoto.\"\n\"Reply added to the ticket and forwarded successfully.\": \"Risposta aggiunta al ticket e inoltrata correttamente.\"\n\"Success ! Thread pinned successfully.\": \"Successo! Discussione appuntata correttamente.\"\n\"Success ! unpinned removed successfully.\": \"Successo! non accoppiato rimosso correttamente.\"\n\"Unable to retrieve priority details\": \"Impossibile recuperare i dettagli della priorità\"\n\"Ticket support team updated successfully\": \"Team di supporto ticket aggiornato correttamente\"\n\"Ticket assigned to support group \": \"Ticket assegnato al gruppo di supporto\"\n\"Mailbox configuration removed successfully.\": \"Configurazione della casella rimossa correttamente.\"\n\"visit our website\": \"visita il nostro sito web\"\n\"Cookie Usage Policy\": \"Informativa sull'uso dei cookie\"\n\"cookie\": \"cookie\"\n\"cookies\": \"cookies\"\n\"HELP\": \"AIUTO\"\n\"Home\": \"Home\"\n\"Cookie Policy\": \"Gestione dei Cookie\"\n\"Prev\": \"Precedente\"\n\"Ticket query message\": \"Messaggio del ticket\"\n\"Select type\": \"Seleziona il tipo\"\n\"Search KnowledgeBase\": \"Cerca nella knowledge base\"\n\"You cant merge an account with itself.\": \"Non puoi unire un account con se stesso.\"\n\"Edit Profile\": \"Modifica Profilo\"\n\"Customer Login\": \"Accesso cliente\"\n\"Contact Us\": \"Contattaci\"\n\"If you have ever contacted our support previously, your account would have already been created.\": \"Se ci hai già contattati in precedenza l'account è già stato creato, puoi recuperarlo tramite la funzione di recupero password.\"\n\"HelpDesk\": \"HelpDesk\"\n\"Enter search keyword\": \"Inserisci la parola chiave di ricerca\"\n\"Browse via Folders\": \"Sfoglia tramite cartelle\"\n\"Looking for something that is queried generally? Choose a relevant folder from below to explore possible solutions\": \"Alla ricerca di qualcosa che viene interrogato in generale? Scegli una cartella pertinente dal basso per esplorare le possibili soluzioni\"\n\"Unable to find an answer?\": \"Impossibile trovare una risposta?\"\n\"Looking for anything specific article which resides in general queries? Just browse the various relevant folders and categories and then you will find the desired article.\": \"Cerchi qualcosa di specifico che risieda nelle domande generali? Sfoglia le varie cartelle e categorie pertinenti e troverai larticolo desiderato.\"\n\"Popular Articles \": \"Articoli popolari\"\n\"Here are some of the most popular articles, which helped number of users to get their queries and questions resolved.\": \"Ecco alcuni degli articoli più popolari, che hanno aiutato il numero di utenti a risolvere le loro domande e domande.\"\n\"Browse via Categories\": \"Sfoglia le categorie\"\n\"Looking for something specific? Choose a relevant category from below to explore possible solutions\": \"Stai cercando qualcosa di specifico? Scegli una categoria pertinente in basso per esplorare le possibili soluzioni\"\n\"No Categories Found!\": \"Nessuna categoria trovata\"\n\"Powered by\": \"Offerto da\"\n\"Powered by %uvdesk%, an open-source project by %webkul%.\": \"Realizzato da %uvdesk%, un progetto open source di %webkul%.\"\n\n#forgotpassword\n\"Forgot Password\": \"Ha dimenticato la password\"\n\"Enter your email address and we will send you an email with instructions to update your login credentials.\": \"Inserisci il tuo indirizzo email, ti invieremo una email con le istruzioni per aggiornare le tue credenziali di accesso.\"\n\"Send Mail\": \"Invia una email\"\n\"Status:\": \"Stato:\"\n\"Sign In to %websitename%\": \"Accedere a %websitename%\"\n\"Enter your name\": \"Inserisci il tuo nome\"\n\"Enter your email\": \"Inserisci il tuo indirizzo email\"\n\"Learn more about %deliveryStatus%.\": \"Impara di più riguardo %deliveryStatus%.\"\n\"To know more about how our privacy policy works, please %websiteLink%.\": \"Per saperne di più su come funziona la nostra politica sulla privacy, per favore %websiteLink%.\"\n\"Some of our site pages utilize %cookies% and other tracking technologies. A %cookie% is a small text file that may be used, for example, to collect information about site activity. Some cookies and other technologies may serve to recall personal information previously indicated by a site user. You may block cookies, or delete existing cookies, by adjusting the appropriate setting on your browser. Please consult the %help% menu of your browser to learn how to do this. If you block or delete %cookies% you may find the usefulness of our site to be impaired.\": \"Alcune delle nostre pagine del sito utilizzano %cookies% e altre tecnologie di tracciamento. Un %cookie% è un piccolo file di testo che può essere utilizzato, ad esempio, per raccogliere informazioni sull'attività del sito. Alcuni cookie e altre tecnologie potrebbero servire a richiamare informazioni personali precedentemente indicate da un utente del sito. È possibile bloccare i cookie o eliminare i cookie esistenti, modificando limpostazione appropriata sul proprio browser. Consulta il menu %help% del tuo browser per sapere come fare. Se blocchi o elimini %cookie%, potresti scoprire che lutilità del nostro sito è compromessa.\"\n\"This field contain maximum 40 charectures.\": \"Questo campo contiene un massimo di 40 lezioni.\"\n\"This field contain maximum 50 charectures.\": \"Questo campo contiene un massimo di 50 lezioni.\"\n\"Time\": \"Orario\"\n\"Links\": \"Links\"\n\"Broadcast Message\": \"Messaggio broadcast\"\n\"Wide Logo\": \"Logo largo\"\n\"Upload an Image (200px x 48px) in</br> PNG or JPG Format\": \"Carica un'immagine (200px x 48px) in </br> formato PNG o JPG\"\n\"It will be shown as Logo on Knowledgebase and Helpdesk\": \"Verrà mostrato come logo nella knowledge base e nell'helpdesk\"\n\"Website Status\": \"Stato del sito Web\"\n\"Enable front end website and knowledgebase for customer(s)\": \"Abilita sito Web front-end e knowledge base per i clienti\"\n\"Brand Color\": \"Colore del marchio\"\n\"Page Background Color\": \"Colore sfondo pagina\"\n\"Header Background Color\": \"Colore di sfondo dell'intestazione\"\n\"Banner Background Color\": \"Colore sfondo banner\"\n\"Page Link Color\": \"Colore link pagina\"\n\"Page Link Hover Color\": \"Colore al passaggio del mouse sul collegamento della pagina\"\n\"Article Text Color\": \"Colore testo articolo\"\n\"Tag Line\": \"Tag Line\"\n\"Hi! how can we help?\": \"Ciao! Come possiamo aiutare?\"\n\"Layout\": \"Disposizione\"\n\"Ticket Create Option\": \"Opzione di creazione ticket\"\n\"Login Required To Create Tickets\": \"Accesso richiesto per creare ticket\"\n\"Remove Customer Login/Signin Button\": \"Rimuovi pulsante Login / accesso cliente\"\n\"Disable Customer Login\": \"Disabilita accesso cliente\"\n\"Meta Description (Recommended)\": \"Meta Description (consigliato)\"\n\"Meta Keywords (Recommended)\": \"Meta Keywords (consigliate)\"\n\"Header Link\": \"Link intestazione\"\n'URL (with http\":/\"/ or https\":/\"/)': 'URL (con http\": \"// o https\": \"//)'\n\"Footer Link\": \"Link piè di pagina\"\n\"Custom CSS (Optional)\": \"CSS personalizzato (opzionale)\"\n\"It will be add to the frontend knowledgebase only\": \"Verrà aggiunto solo alla knowledge base del frontend\"\n\"Custom Javascript (Optional)\": \"Javascript personalizzato (opzionale)\"\n\"Broadcast message content to show on helpdesk\": \"Trasmetti il ​​contenuto del messaggio da mostrare sull'helpdesk\"\n\"From\": \"A partire dal\"\n\"Time duration between which message will be displayed(if applicable)\": \"Durata tra cui verrà visualizzato il messaggio (se applicabile)\"\n\"Broadcasting Status\": \"Stato di trasmissione\"\n\"Broadcasting is Active\": \"La trasmissione è attiva\"\n\"Choose a default company timezone\": \"Scegli il fuso orario di unazienda predefinita\"\n\"Date Time Format\": \"Formato data e ora\"\n\"Choose a format to convert date to specified date time format\": \"Scegli un formato per convertire la data nel formato di data e ora specificato\"\n\"An empty file is not allowed.\": \"Un file vuoto non è consentito.\"\n\"File size must not be greater than 200KB !!\": \"La dimensione del file non deve essere superiore a 200 KB !!\"\n'comma \",\" separated': 'separato da virgola'\n\"Please upload valid Image file (Only JPEG, JPG, PNG allowed)!!\": \"Carica un file di immagine valido (sono consentiti solo JPEG, JPG, PNG) !!\"\n\"Provide a valid url(with protocol)\": \"Fornisci un URL valido (con protocollo)\"\n\"View all articles\": \"Visualizza tutti gli articoli\"\n\"View all categories\": \"Visualizza tutte le categorie\"\n\"Low\": \"Bassa\"\n\"Medium\": \"Media\"\n\"High\": \"Alta\"\n\"Urgent\" : \"Urgente\"\n\"Reset Password\": \"Resetta la password\"\n\"Enter your new password below to update your login credentials\": \"Inserisci la tua nuova password qui sotto per aggiornare le tue credenziali di accesso\"\n\"Save Password\": \"Salva la password\"\n\"Rate Support\": \"Valuta il supporto\"\n\"I am very Sad\": \"Sono molto triste\"\n\"I am Sad\": \"Sono triste\"\n\"I am Neutral\": \"Sono neutrale\"\n\"I am Happy\": \"Sono felice\"\n\"I am Very Happy\": \"Sono molto felice\"\n\"Kudos\": \"Grado di soddisfazione Kudos\"\n\"kudos\": \"complimenti\"\n\"Very Sad\": \"Molto triste\"\n\"Sad\": \"Triste\"\n\"Neutral\": \"Neutrale\"\n\"Happy\": \"Felice\"\n\"Very Happy\": \"Molto felice\"\n\"Star(s)\": \"Stelle\"\n\"Warning ! Swiftmailer not working. An error has occurred while sending emails!\" : \"Attenzione! Errrore Swiftmailer durante l'invio delle e-mail | Warning ! Swiftmailer not working. An error has occurred while sending emails!\"\n\"Success ! Project cache cleared successfully.\": \"Successo ! La cache del progetto è stata cancellata correttamente.\"\n\"clear cache\": \"svuota la cache\"\n\"Last Updated\": \"Ultimo aggiornamento\"\n\"Error! Something went wrong.\": \"Errore! Qualcosa è andato storto.\"\n\"We were not able to find the page you are looking for.\": \"Non siamo riusciti a trovare la pagina che stai cercando.\"\n\"Page not found\": \"pagina non trovata\"\n\"Forbidden\": \"Proibita\"\n\"You don’t have the necessary permissions to access this Web page :(\": \"Non disponi delle autorizzazioni necessarie per accedere a questa pagina Web :(\"\n\"Internal server error\": \"Errore interno del server\"\n\"Our system has goofed up for a while, but good part is it won't last long\": \"Il nostro sistema ha funzionato per un po', ma la parte buona è che non durerà a lungo\"\n\"Unknown Error\": \"Errore sconosciuto\"\n\"We are quite confused about how did you land here:/\": \"Siamo piuttosto confusi su come sei atterrato qui :/\"\n\"Few of the links which may help you to get back on the track -\": \"Alcuni dei link che possono aiutarti a rimetterti in carreggiata -\"\n\n#Microsoft apps:\n\"Microsoft Apps\": \"App Microsoft\"\n\"Add a Microsoft app\": \"Aggiungi un'app Microsoft\"\n\"Enable\": \"Abilitato\"\n\"App Name\": \"Nome dell'applicazione\"\n\"Tenant Id\": \"ID inquilino\"\n\"Client Id\": \"Identificativo cliente\"\n\"Client Secret\": \"Segreto del cliente\"\n\"NEW APP:\": \"NUOVA APP\"\n\"UPDATE APP\": \"AGGIORNA APP\"\n\"Guide on creating a new app in Azure Active Directory:\": \"Guida alla creazione di una nuova app in Azure Active Directory:\"\n\"To add a new Microsoft App to your azure active directory, follow the steps as given below:\": \"Per aggiungere una nuova app Microsoft alla tua directory attiva di Azure, segui i passaggi indicati di seguito:\"\n\"Go to Azure Active Directory -> App registerations\": \"Passare ad Azure Active Directory -> Registrazioni app\"\n\"Disable\": \"disattivare\"\n\"Please enter a valid name for your app.\": \"Inserisci un nome valido per la tua app.\"\n\"Please enter a valid tenant id.\": \"Inserisci un ID inquilino valido.\"\n\"Please enter a valid client id.\": \"Inserisci un ID cliente valido.\"\n\"Please enter a valid client secret.\": \"Inserisci un segreto client valido.\"\n\"Microsoft app settings\": \"Impostazioni dell'app Microsoft\"\n\"Unverified\": \"Non verificato\"\n\"Microsoft app has been updated successfully.\": \"L'app Microsoft è stata aggiornata correttamente.\"\n\"No microsoft apps found\": \"Nessuna app Microsoft trovata\"\n\"Microsoft app settings could not be verifired successfully. Please check your settings and try again later.\": \"Non è stato possibile verificare correttamente le impostazioni dell'app Microsoft. Controlla le impostazioni e riprova più tardi.\"\n\"Microsoft app has been integrated successfully.\": \"L'app Microsoft è stata eliminata correttamente.\"\n\"Microsoft app has been deleted successfully.\": \"L'app Microsoft è stata integrata correttamente.\"\n\"Verified\": \"Verificato\"\n\n\"Create a New Registration\": \"Crea una nuova registrazione\"\n\"Enter your app details as following:\": \"Inserisci i dettagli della tua app come segue:\"\n\"App Name: Enter an app name to easily help you identify its purpose\": \"Nome app: inserisci il nome di un'app per aiutarti a identificarne facilmente lo scopo\"\n\"Supported Account Types: Select whichever option works the best for you (Recommended: Accounts in any organizational directory and personal Microsoft accounts)\": \"Tipi di account supportati: seleziona l'opzione che funziona meglio per te (consigliato: account in qualsiasi directory aziendale e account Microsoft personali)\"\n\"Redirect URI:\": \"URI di reindirizzamento:\"\n\"Select Platform: Web\": \"Seleziona Piattaforma: Web\"\n\"Enter the following redirect uri:\": \"Inserisci il seguente URI di reindirizzamento:\"\n\"Proceed to create your application\": \"Procedi con la creazione della tua applicazione\"\n\"Once your app has been created, in your app overview section, continue with adding a client credential by clicking on \\\"Add a certificate or secret\\\"\": \"Una volta creata la tua app, nella sezione Panoramica della tua app, continua con l'aggiunta di una credenziale client facendo clic su Aggiungi un certificato o un segreto\"\n\"Create a new client secret\": \"Crea un nuovo segreto client\"\n\"Enter a description as per your preference to help identify the purpose of this client secret\": \"Immettere una descrizione in base alle proprie preferenze per identificare lo scopo di questo segreto client\"\n\"Choose an expiration time as per your preference\": \"Scegli un tempo di scadenza secondo le tue preferenze\"\n\"Proceed to add your client secret\": \"Procedi con l'aggiunta del segreto client\"\n\"Copy the client secret value which will be needed later and cannot be viewed again\": \"Copia il valore del segreto client che sarà necessario in seguito e non potrà essere visualizzato di nuovo\"\n\"Navigate to API permissions\": \"Passare alle autorizzazioni API\"\n\"Click on \\\"Add a permission\\\" to add a new api permission. Add the following delegated permissions by selecting Microsoft APIs > Microsoft Graph > Delegate Permissions\": \"Fare clic su Aggiungi un'autorizzazione per aggiungere una nuova autorizzazione API. Aggiungi le seguenti autorizzazioni delegate selezionando API Microsoft > Microsoft Graph > Delega autorizzazioni\"\n\"Navigate to your app overview section\": \"Vai alla sezione Panoramica dell'app\"\n\"Copy the Application (Client) Id\": \"Copia l'ID dell'applicazione (cliente).\"\n\"Copy the Directory (Tenant) Id\": \"Copia l'ID della directory (tenant).\"\n\"Enter your client id, tenant id, and client secret in settings above as required.\": \"Immettere l'ID client, l'ID tenant e il segreto client nelle impostazioni precedenti come richiesto.\"\n\"offline_access\": \"accesso_offline\"\n\"openid\": \"id\"\n\"profile\": \"profilo\"\n\"User.Read\": \"Utente.Leggi\"\n\"IMAP.AccessAsUser.All\": \"IMAP.AccessAsUser.All\"\n\"SMTP.Send\": \"SMTP.Invia\"\n\"POP.AccessAsUser.All\": \"POP.AccessAsUser.All\"\n\"Mail.Read\": \"Posta.Leggi\"\n\"Mail.ReadBasic\": \"Mail.ReadBasic\"\n\"Mail.Send\": \"Posta.Invia\"\n\"Mail.Send.Shared\": \"Posta.Invia.Condivisa\"\n\"Add App\": \"Aggiungi app\"\n\"New App\": \"Nuova App\"\n\n#Mailbox option:\n\"Disable email delivery\": \"Disabilita la consegna della posta elettronica\"\n\"Use as default mailbox for sending emails\": \"Utilizzare come casella di posta predefinita per l'invio di e-mail\"\n\"Inbound Emails\": \"Email in entrata\"\n\"Manage how you wish to retrieve and process emails from your mailbox.\": \"Gestisci il modo in cui desideri recuperare ed elaborare le e-mail dalla tua casella di posta.\"\n\"Outbound Emails\": \"Email in uscita\"\n\"Manage how you wish to send emails from your mailbox.\": \"Gestisci come desideri inviare e-mail dalla tua casella di posta.\"\n\n\"Marketing Modules\" : \"Moduli di marketing\"\n\"New Marketing Module\": \"Nuovo modulo di marketing\"\n\"Marketing Module\": \"Modulo di marketing\""
  },
  {
    "path": "translations/messages.pl.yml",
    "content": "\"Signed in as\": \"Zalogowany jako\"\n\"Your Profile\": \"Twój profil\"\n\"Create Ticket\": \"Utwórz zgłoszenie\"\n\"Create Agent\": \"Utwórz agenta\"\n\"Create Customer\": \"Utwórz użytkownika\"\n\"Sign Out\": \"Wyloguj\"\n\"Default Language (Optional)\": \"Język domyślny (opcjonalnie)\"\n\"Swift Mailer ID\": \"Szybki identyfikator pocztowy\"\n\"Username/Email\": \"Nazwa użytkownika/adres e-mail\"\n\"create new\": \"tworzyć nowe\"\n\"Ticket Information\": \"Informacje o Bilecie\"\n\"Success! Label created successfully.\": \"Sukces! Etykieta utworzona pomyślnie.\"\n\"Success! Label removed successfully.\": \"Sukces! Etykieta została pomyślnie usunięta.\"\n\"Reports\": \"Raporty\"\n\"Rating\": \"Ocena\"\n\"Kudos Rating\": \"Ocena Kudo\"\n\"Remove profile picture\": \"Usuń zdjęcie profilowe\"\n\"Success ! Profile updated successfully.\": \"Powodzenie ! Profil zaktualizowany pomyślnie.\"\n\"Howdy\": \"Cześć!\"\n\"Form successfully updated.\": \"Pomyślnie zaktualizowano formularz.\"\n\"NEW FORM\": \"NOWA FORMA\"\n\"Text Box\": \"Pole tekstowe\"\n\"Text Area\": \"Obszar tekstowy\"\n\"Select\": \"Wybierz\"\n\"Radio\": \"Radio\"\n\"Checkbox\": \"Pole wyboru\"\n\"Date\": \"Data\"\n\"Both Date and Time\": \"Zarówno data, jak i godzina\"\n\"Choose a status\": \"Wybierz status\"\n\"Choose a group\": \"Wybierz grupę\"\n\"Can manage Group's Saved Reply\": \"Może zarządzać zapisaną odpowiedzią grupy\"\n\"Can manage agent activity\": \"Może zarządzać aktywnością agenta\"\n\"Can manage marketing announcement\": \"Może zarządzać ogłoszeniami marketingowymi\"\n\"Slug is the url identity of this article. We will help you to create valid slug at time of typing.\": \"Slug to adres URL tego artykułu. Pomożemy Ci stworzyć poprawny ślimak w momencie pisania.\"\n\"The URL for this article\": \"Adres URL tego artykułu\"\n\"Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A page's title tag and meta description are usually shown whenever that page appears in search engine results\": \"Tagi tytułu i opisy meta to fragmenty kodu HTML w nagłówku strony internetowej. Pomagają wyszukiwarkom zrozumieć zawartość strony. Tag tytułu strony i metaopis są zwykle wyświetlane za każdym razem, gdy strona pojawia się w wynikach wyszukiwania\"\n\"comma separated (,)\": \"oddzielone przecinkami (,)\"\n\"Article Title\": \"Tytuł artykułu\"\n\"Start typing few charactors and add set of relevant article from the list\": \"Zacznij wpisywać kilka znaków i dodaj zestaw odpowiednich artykułów z listy\"\n\"Success! Announcement data saved successfully.\": \"Powodzenie! Dane ogłoszenia zostały pomyślnie zapisane.\"\n\"Success! Category has been added successfully.\": \"Powodzenie! Kategoria została pomyślnie dodana.\"\n\"Success ! Agent added successfully.\": \"Powodzenie ! Agent został pomyślnie dodany.\"\n\"Success! Privilege information saved successfully.\": \"Powodzenie! Informacje o uprawnieniach zostały pomyślnie zapisane.\"\n\"Edit Prepared Response\": \"Edytuj przygotowaną odpowiedź\"\n\"Success! Type removed successfully.\": \"Powodzenie! Typ został pomyślnie usunięty.\"\n\"Success ! Prepared Response applied successfully.\": \"Powodzenie ! Przygotowana odpowiedź została zastosowana pomyślnie.\"\n\"Note added to ticket successfully.\": \"Pomyślnie dodano notatkę do zgłoszenia.\"\n\"Ticket status update to Spam\": \"Aktualizacja statusu zgłoszenia do spamu\"\n\"Ticket status update to Closed\": \"Aktualizacja statusu biletu na Zamknięty\"\n\"Success! Label updated successfully.\": \"Powodzenie! Pomyślnie zaktualizowano etykietę.\"\n\"Success ! Helpdesk details saved successfully\": \"Powodzenie ! Dane pomocy technicznej zostały pomyślnie zapisane\"\n\"User Forgot Password\": \"Użytkownik nie pamięta hasła\"\n\"Agent Deleted\": \"Usunięto agenta\"\n\"Agent Update\": \"Aktualizacja agenta\"\n\"Customer Update\": \"Aktualizacja klienta\"\n\"Customer Deleted\": \"Usunięto klienta\"\n\"Agent Updated\": \"Zaktualizowano agenta\"\n\"Agent Reply\": \"Odpowiedź agenta\"\n\"Collaborator Added\": \"Dodano współpracownika\"\n\"Collaborator Reply\": \"Odpowiedź współpracownika\"\n\"Customer Reply\": \"Odpowiedź klienta\"\n\"Ticket Deleted\": \"Bilet usunięty\"\n\"Group Updated\": \"Zaktualizowano grupę\"\n\"Note Added\": \"Dodano notatkę\"\n\"Priority Updated\": \"Zaktualizowano priorytet\"\n\"Status Updated\": \"Zaktualizowano status\"\n\"Team Updated\": \"Zaktualizowano zespół\"\n\"Thread Updated\": \"Zaktualizowano wątek\"\n\"Type Updated\": \"Zaktualizowano typ\"\n\"From Email\": \"Z emaila\"\n\"To Email\": \"Na e-mail\"\n\"Is Equal To\": \"Jest równe\"\n\"Is Not Equal To\": \"nie równa się\"\n\"Contains\": \"Zawiera\"\n\"Does Not Contain\": \"Nie zawiera\"\n\"Starts With\": \"Zaczynać z\"\n\"Ends With\": \"Kończy się na\"\n\"Before On\": \"Przed wł.\"\n\"After On\": \"Po dniu\"\n\"Mail To User\": \"Wyślij do użytkownika\"\n\"Transfer Tickets\": \"Bilety transferowe\"\n\"Mail To Customer\": \"Poczta do klienta\"\n\"Set Label As\": \"Ustaw etykietę jako\"\n\"Permanently delete from Inbox\": \"Usuń trwale ze skrzynki odbiorczej\"\n\"Agent Activity\": \"Aktywność agenta\"\n\"Report From\": \"Raport z\"\n\"Search Agent\": \"Wyszukaj agenta\"\n\"Agent Last Reply\": \"Ostatnia odpowiedź agenta\"\n\"View analytics and insights to serve a better experience for your customers\": \"Wyświetlaj analizy i spostrzeżenia, aby zapewnić swoim klientom lepsze wrażenia\"\n\"Marketing Announcement\": \"Ogłoszenie marketingowe\"\n\"Advertisement\": \"Reklama\"\n\"Announcement\": \"Ogłoszenie\"\n\"New Announcement\": \"Nowe ogłoszenie\"\n\"Add Announcement\": \"Dodaj ogłoszenie\"\n\"Edit Announcement\": \"Edytuj ogłoszenie\"\n\"Promo Text\": \"Tekst promocyjny\"\n\"Promo Tag\": \"Tag promocyjny\"\n\"Choose a promo tag\": \"Wybierz tag promocyjny\"\n\"Tag-Color\": \"Kolor tagu\"\n\"Tag background color\": \"Kolor tła tagu\"\n\"Link Text\": \"Tekst linku\"\n\"Link URL\": \"URL linku\"\n\"Apps\": \"Aplikacje\"\n\"Integrate apps as per your needs to get things done faster than ever\": \"Instaluj nowe, niestandardowe aplikacje, aby zwiększyć swoją produktywność — <a href='https://store.webkul.com/UVdesk/UVdesk-Open-Source.html' style='font-weight: bold' target='_blank'>Przeglądaj teraz</a>\"\n\"Explore Apps\": \"Przeglądaj aplikacje\"\n\"Form Builder\": \"Kreator formularzy\"\n\"Knowledgebase\": \"Baza wiedzy\"\n\"Knowledgebase is a source of rigid and complex information which helps Customers to help themselves\": \"Baza wiedzy jest źródłem informacji, które pomagają klientom samodzielnie poradzić sobie z problemem\"\n\"Articles\": \"Artykuły\"\n\"Categories\": \"Kategorie\"\n\"Folders\": \"Foldery\"\n\"FOLDERS\": \"FOLDERY\"\n\"Productivity\": \"Wydajność\"\n\"Automate your processes by creating set of rules and presets to respond faster to the tickets\": \"Zautomatyzuj swoje procesy, tworząc zestaw reguł i ustawień wstępnych, aby szybciej reagować na zgłoszenia\"\n\"Prepared Responses\": \"Przygotowane odpowiedzi\"\n\"Saved Replies\": \"Zapisane odpowiedzi\"\n\"Edit Saved Reply\": \"Edytuj zapisaną odpowiedź\"\n\"Ticket Types\": \"Rodzaje zgłoszeń\"\n\"Workflows\": \"Workflows\"\n\"Settings\": \"Ustawienia\"\n\"Manage your Brand Identity, Company Information and other details at a glance\": \"Zarządzaj tożsamością marki, informacjami o firmie i innymi szczegółami\"\n\"Branding\": \"Branding\"\n\"Custom Fields\": \"Pola niestandardowe\"\n\"Email Settings\": \"Ustawienia email\"\n\"Email Templates\": \"Szablony wiadomości\"\n\"Mailbox\": \"Skrzynka pocztowa\"\n\"Spam Settings\": \"Ustawienia spamu\"\n\"Swift Mailer\": \"Swift mailer\"\n\"Tags\": \"Tagi\"\n\"Users\": \"Użytkownicy\"\n\"Control your Groups, Teams, Agents and Customers\": \"Kontroluj swoje grupy, zespoły, agentów i klientów\"\n\"Agents\": \"Agenci\"\n\"Customers\": \"Klienci\"\n\"Groups\": \"Grupy\"\n\"Privileges\": \"Uprawnienia\"\n\"Teams\": \"Zespoły\"\n\"Applications\": \"Aplikacje\"\n\"ECommerce Order Syncronization\": \"Synchronizacja zamówień ECommerce\"\n\"Import ecommerce order details to your support tickets from different available platforms\": \"Importuj szczegóły zamówień e-commerce do zgłoszeń pomocy technicznej z różnych dostępnych platform\"\n\"Search\": \"Szukaj\"\n\"Sort By\": \"Sortuj według\"\n\"Status\" : \"Status\"\n\"Created At\": \"Utworzono w\"\n\"Name\": \"Nazwa\"\n\"All\": \"Wszystko\"\n\"Published\": \"Opublikowany\"\n\"Draft\": \"Wersja robocza\"\n\"New Folder\": \"Nowy folder\"\n\"Create Knowledgebase Folder\": \"Utwórz folder bazy wiedzy\"\n\"You did not add any folder to your Knowledgebase yet, Create your first Folder and start adding Categories/Articles to make your customers help themselves.\": \"Nie dodałeś jeszcze żadnego folderu do swojej Bazy wiedzy. Utwórz swój pierwszy folder i zacznij dodawać kategorie / artykuły, aby klienci mogli sobie pomóc.\"\n\"Clear Filters\": \"Wyczyść filtry\"\n\"Back\": \"Z powrotem\"\n\"Open\": \"Otwarty\"\n\"Pending\": \"W oczekiwaniu\"\n\"Answered\": \"Odpowiedział\"\n\"Resolved\": \"Rozwiązany\"\n\"Closed\": \"Zamknięty\"\n\"Spam\": \"Spam\"\n\"New\": \"Nowy\"\n\"UnAssigned\": \"Nieprzypisany\"\n\"UnAnswered\": \"Bez odpowiedzi\"\n\"My Tickets\": \"Moje Zgłoszenia\"\n\"Starred\": \"Oznaczone Gwiazdką\"\n\"Trashed\": \"W koszu\"\n\"New Label\": \"Nowa etykieta\"\n\"Tickets\": \"Zgłoszenia\"\n\"Ticket Id\": \"ID zgłoszenia\"\n\"Last Replied\": \"Ostatnia odpowiedź\"\n\"Assign To\": \"Przypisać do\"\n\"After Reply\": \"Po odpowiedzi\"\n\"Customer Email\": \"Email klienta\"\n\"Customer Name\": \"Imię klienta\"\n\"Assets Visibility\": \"Widoczność zasobów\"\n\"Channel/Source\": \"Kanał / źródło\"\n\"Channel\": \"Kanał\"\n\"Website\": \"Stronie internetowej\"\n\"Timestamp\": \"Utworzono\"\n\"TimeStamp\": \"Utworzono\"\n\"Team\": \"Zespół\"\n\"Type\": \"Typ\"\n\"Replies\": \"Odpowiadać\"\n\"Agent\": \"Agent\"\n\"ID\": \"ID\"\n\"Subject\": \"Temat\"\n\"Last Reply\": \"Ostatnia odpowiedź\"\n\"Filter View\": \"Widok filtra\"\n\"Please select CAPTCHA\": \"Wybierz CAPTCHA\"\n\"Warning ! Please select correct CAPTCHA !\": \"Ostrzeżenie! Wybierz poprawne CAPTCHA!\"\n\"reCAPTCHA Setting\": \"Ustawienie reCAPTCHA\"\n\"reCAPTCHA Site Key\": \"Klucz witryny reCAPTCHA\"\n\"reCAPTCHA Secret key\": \"reCAPTCHA Tajny klucz\"\n\"reCAPTCHA Status\": \"Status reCAPTCHA\"\n\"reCAPTCHA is Active\": \"reCAPTCHA jest aktywna\"\n\"Save set of filters as a preset to stay more productive\": \"Zapisz zestaw filtrów jako ustawienie wstępne, aby zachować większą produktywność\"\n\"Saved Filters\": \"Zapisane filtry\"\n\"No saved filter created\": \"Nie utworzono zapisanego filtra\"\n\"Customer\": \"Klient\"\n\"Priority\": \"Priorytet\"\n\"Tag\": \"Etykietka\"\n\"Source\": \"Źródło\"\n\"Before\": \"Przed\"\n\"After\": \"Po\"\n\"Replies less than\": \"Odpowiedzi mniej niż\"\n\"Replies more than\": \"Odpowiedzi więcej niż\"\n\"Clear All\": \"Wyczyść wszystko\"\n\"Account\": \"Konto\"\n\"Profile\": \"Profil\"\n\"Upload a Profile Image (100px x 100px)<br> in PNG or JPG Format\": \"Prześlij zdjęcie profilowe (100 x 100 pikseli) <br> w formacie PNG lub JPG\"\n\"First Name\": \"Imię\"\n\"Last Name\": \"Nazwisko\"\n\"Email\": \"E-mail\"\n\"Contact Number\": \"Numer kontaktowy\"\n\"Timezone\": \"Strefa czasowa\"\n\"Africa/Abidjan\": \"Afryka/Abidżan\"\n\"Africa/Accra\": \"Afryka/Accra\"\n\"Africa/Addis_Ababa\": \"Afryka/Addis_Ababa\"\n\"Africa/Algiers\": \"Afryka/Algier\"\n\"Africa/Asmara\": \"Afryka/Asmara\"\n\"Africa/Bamako\": \"Afryka/Bamako\"\n\"Africa/Bangui\": \"Afryka/Bangi\"\n\"Africa/Banjul\": \"Afryka/Bandżul\"\n\"Africa/Bissau\": \"Afryka/Bissau\"\n\"Africa/Blantyre\": \"Afryka/Blantyre\"\n\"Africa/Brazzaville\": \"Afryka/Brazzaville\"\n\"Africa/Bujumbura\": \"Afryka/Bużumbura\"\n\"Africa/Cairo\": \"Afryka/Kair\"\n\"Africa/Casablanca\": \"Afryka/Casablanka\"\n\"Africa/Ceuta\": \"Afryka/Ceuta\"\n\"Africa/Conakry\": \"Afryka/Konakri\"\n\"Africa/Dakar\": \"Afryka/Dakar\"\n\"Africa/Dar_es_Salaam\": \"Afryka/Dar_es_Salaam\"\n\"Africa/Djibouti\": \"Afryka/Dżibuti\"\n\"Africa/Douala\": \"Afryka/Douala\"\n\"Africa/El_Aaiun\": \"Afryka/El_Aaiun\"\n\"Africa/Freetown\": \"Afryka/Freetown\"\n\"Africa/Gaborone\": \"Afryka/Gaborone\"\n\"Africa/Harare\": \"Afryka/Harare\"\n\"Africa/Johannesburg\": \"Afryka/Johannesburg\"\n\"Africa/Juba\": \"Afryka/Juba\"\n\"Africa/Kampala\": \"Afryka/Kampala\"\n\"Africa/Khartoum\": \"Afryka/Chartum\"\n\"Africa/Kigali\": \"Afryka/Kigali\"\n\"Africa/Kinshasa\": \"Afryka/Kinszasa\"\n\"Africa/Lagos\": \"Afryka/Lagos\"\n\"Africa/Libreville\": \"Afryka/Libreville\"\n\"Africa/Lome\": \"Afryka/Lome\"\n\"Africa/Luanda\": \"Afryka/Luanda\"\n\"Africa/Lubumbashi\": \"Afryka/Łubumbaszy\"\n\"Africa/Lusaka\": \"Afryka/Lusaka\"\n\"Africa/Malabo\": \"Afryka/Malabo\"\n\"Africa/Maputo\": \"Afryka/Maputo\"\n\"Africa/Maseru\": \"Afryka/Maseru\"\n\"Africa/Mbabane\": \"Afryka/Mbabane\"\n\"Africa/Mogadishu\": \"Afryka/Mogadiszu\"\n\"Africa/Monrovia\": \"Afryka/Monrovia\"\n\"Africa/Nairobi\": \"Afryka/Nairobi\"\n\"Africa/Ndjamena\": \"Afryka/Ndjamena\"\n\"Africa/Niamey\": \"Afryka/Niamey\"\n\"Africa/Nouakchott\": \"Afryka/Nouakchott\"\n\"Africa/Ouagadougou\": \"Afryka/Wagadugu\"\n\"Africa/Porto-Novo\": \"Afryka/Porto-Novo\"\n\"Africa/Sao_Tome\": \"Afryka/Sao_Tome\"\n\"Africa/Tripoli\": \"Afryka/Trypolis\"\n\"Africa/Tunis\": \"Afryka/Tunis\"\n\"Africa/Windhoek\": \"Afryka/Windhoek\"\n\"America/Adak\": \"Ameryka/Adak\"\n\"America/Anchorage\": \"Ameryka/Zamocowanie\"\n\"America/Anguilla\": \"Ameryka/Anguilla\"\n\"America/Antigua\": \"Ameryka/Antigua\"\n\"America/Araguaina\": \"Ameryka/Araguaina\"\n\"America/Argentina/Buenos_Aires\": \"Ameryka/Argentyna/Buenos Aires\"\n\"America/Argentina/Catamarca\": \"Ameryka/Argentyna/Catamarca\"\n\"America/Argentina/Cordoba\": \"Ameryka/Argentyna/Cordoba\"\n\"America/Argentina/Jujuy\": \"Ameryka/Argentyna/Jujuy\"\n\"America/Argentina/La_Rioja\": \"Ameryka/Argentyna/La_Rioja\"\n\"America/Argentina/Mendoza\": \"Ameryka/Argentyna/Mendoza\"\n\"America/Argentina/Rio_Gallegos\": \"Ameryka/Argentyna/Rio_Gallegos\"\n\"America/Argentina/Salta\": \"Ameryka/Argentyna/Salta\"\n\"America/Argentina/San_Juan\": \"Ameryka/Argentyna/San_Juan\"\n\"America/Argentina/San_Luis\": \"Ameryka/Argentyna/San_Luis\"\n\"America/Argentina/Tucuman\": \"Ameryka/Argentyna/Tucuman\"\n\"America/Argentina/Ushuaia\": \"Ameryka/Argentyna/Ushuaia\"\n\"America/Aruba\": \"Ameryka/Aruba\"\n\"America/Asuncion\": \"Ameryka/Asuncion\"\n\"America/Atikokan\": \"Ameryka/Atikokan\"\n\"America/Bahia\": \"Ameryka/Bahia\"\n\"America/Bahia_Banderas\": \"Ameryka/Bahia_Banderas\"\n\"America/Barbados\": \"Ameryka/Barbados\"\n\"America/Belem\": \"Ameryka/Belem\"\n\"America/Belize\": \"Ameryka/Belize\"\n\"America/Blanc-Sablon\": \"Ameryka/Blanc-Sablon\"\n\"America/Boa_Vista\": \"Ameryka/Boa_Vista\"\n\"America/Bogota\": \"Ameryka/Bogota\"\n\"America/Boise\": \"Ameryka/Boise\"\n\"America/Cambridge_Bay\": \"Ameryka/Cambridge_Bay\"\n\"America/Campo_Grande\": \"Ameryka/Campo_Grande\"\n\"America/Cancun\": \"Ameryka/Cancun\"\n\"America/Caracas\": \"Ameryka/Carakas\"\n\"America/Cayenne\": \"Ameryka/Cayenne\"\n\"America/Cayman\": \"Ameryka/Kajman\"\n\"America/Chicago\": \"Ameryka/Chicago\"\n\"America/Chihuahua\": \"Ameryka/Chihuahua\"\n\"America/Costa_Rica\": \"Ameryka/Kostaryka\"\n\"America/Creston\": \"Ameryka/Creston\"\n\"America/Cuiaba\": \"Ameryka/Cuiaba\"\n\"America/Curacao\": \"Ameryka/Curacao\"\n\"America/Danmarkshavn\": \"Ameryka/Danmarkshavn\"\n\"America/Dawson\": \"Ameryka/Dawson\"\n\"America/Dawson_Creek\": \"Ameryka/Dawson_Creek\"\n\"America/Denver\": \"Ameryka/Denver\"\n\"America/Detroit\": \"Ameryka/Detroit\"\n\"America/Dominica\": \"Ameryka/Dominika\"\n\"America/Edmonton\": \"Ameryka/Edmonton\"\n\"America/Eirunepe\": \"Ameryka/Eirunepe\"\n\"America/El_Salvador\": \"Ameryka/Salwador\"\n\"America/Fort_Nelson\": \"Ameryka/Fort_Nelson\"\n\"America/Fortaleza\": \"Ameryka/Fortaleza\"\n\"America/Glace_Bay\": \"Ameryka/Glace_Bay\"\n\"America/Godthab\": \"Ameryka/Godthab\"\n\"America/Goose_Bay\": \"Ameryka/Goose_Bay\"\n\"America/Grand_Turk\": \"Ameryka/Grand_Turk\"\n\"America/Grenada\": \"Ameryka/Grenada\"\n\"America/Guadeloupe\": \"Ameryka/Gwadelupa\"\n\"America/Guatemala\": \"Ameryka/Gwatemala\"\n\"America/Guayaquil\": \"Ameryka/Guayaquil\"\n\"America/Guyana\": \"Ameryka/Gujana\"\n\"America/Halifax\": \"Ameryka/Halifax\"\n\"America/Havana\": \"Ameryka/Hawana\"\n\"America/Hermosillo\": \"Ameryka/Hermosillo\"\n\"America/Indiana/Indianapolis\": \"Ameryka/Indiana/Indianapolis\"\n\"America/Indiana/Knox\": \"Ameryka/Indiana/Knox\"\n\"America/Indiana/Marengo\": \"Ameryka/Indiana/Marengo\"\n\"America/Indiana/Petersburg\": \"Ameryka/Indiana/Petersburgu\"\n\"America/Indiana/Tell_City\": \"Ameryka/Indiana/Tell_City\"\n\"America/Indiana/Vevay\": \"Ameryka/Indiana/Vevay\"\n\"America/Indiana/Vincennes\": \"Ameryka/Indiana/Vincennes\"\n\"America/Indiana/Winamac\": \"Ameryka/Indiana/Winamac\"\n\"America/Inuvik\": \"Ameryka/Inuvik\"\n\"America/Iqaluit\": \"Ameryka/Iqaluit\"\n\"America/Jamaica\": \"Ameryka/Jamajka\"\n\"America/Juneau\": \"Ameryka/Juneau\"\n\"America/Kentucky/Louisville\": \"Ameryka/Kentucky/Louisville\"\n\"America/Kentucky/Monticello\": \"Ameryka/Kentucky/Monticello\"\n\"America/Kralendijk\": \"Ameryka/Kralendijk\"\n\"America/La_Paz\": \"Ameryka/La_Paz\"\n\"America/Lima\": \"Ameryka/Lima\"\n\"America/Los_Angeles\": \"Ameryka/Los_Angeles\"\n\"America/Lower_Princes\": \"Ameryka/Lower_Princes\"\n\"America/Maceio\": \"Ameryka/Maceió\"\n\"America/Managua\": \"Ameryka/Managua\"\n\"America/Manaus\": \"Ameryka/Manaus\"\n\"America/Marigot\": \"Ameryka/Marigot\"\n\"America/Martinique\": \"Ameryka/Martynika\"\n\"America/Matamoros\": \"Ameryka/Matamoros\"\n\"America/Mazatlan\": \"Ameryka/Mazatlan\"\n\"America/Menominee\": \"Ameryka/Menominee\"\n\"America/Merida\": \"Ameryka/Merida\"\n\"America/Metlakatla\": \"Ameryka/Metlakatla\"\n\"America/Mexico_City\": \"Ameryka/Meksyk\"\n\"America/Miquelon\": \"Ameryka/Miquelon\"\n\"America/Moncton\": \"Ameryka/Moncton\"\n\"America/Monterrey\": \"Ameryka/Monterrey\"\n\"America/Montevideo\": \"Ameryka/Montevideo\"\n\"America/Montserrat\": \"Ameryka/Montserrat\"\n\"America/Nassau\": \"Ameryka/Nassau\"\n\"America/New_York\": \"Ameryka/Nowy Jork\"\n\"America/Nipigon\": \"Ameryka/Nipigon\"\n\"America/Nome\": \"Ameryka/Nome\"\n\"America/Noronha\": \"Ameryka/Noronha\"\n\"America/North_Dakota/Beulah\": \"Ameryka/Północna Dakota/Beulah\"\n\"America/North_Dakota\": \"Ameryka/Północna Dakota\"\n\"America/Ojinaga\": \"Ameryka/Ojinaga\"\n\"America/Panama\": \"Ameryka/Panama\"\n\"America/Pangnirtung\": \"Ameryka/Pangnirtung\"\n\"America/Paramaribo\": \"Ameryka/Paramaribo\"\n\"America/Phoenix\": \"Ameryka/Feniks\"\n\"America/Port-au-Prince\": \"Ameryka/Port-au-Prince\"\n\"America/Port_of_Spain\": \"Ameryka/Port_of_Spain\"\n\"America/Porto_Velho\": \"Ameryka/Porto_Velho\"\n\"America/Puerto_Rico\": \"Ameryka/Portoryko\"\n\"America/Punta_Arenas\": \"Ameryka/Punta_Arenas\"\n\"America/Rainy_River\": \"Ameryka/Rainy_River\"\n\"America/Rankin_Inlet\": \"Ameryka/Rankin_Inlet\"\n\"America/Recife\": \"Ameryka/Recife\"\n\"America/Regina\": \"Ameryka/Regina\"\n\"America/Resolute\": \"Ameryka/Zdecydowany\"\n\"America/Rio_Branco\": \"Ameryka/Rio_Branco\"\n\"America/Santarem\": \"Ameryka/Santarem\"\n\"America/Santiago\": \"Ameryka/Santiago\"\n\"America/Santo_Domingo\": \"Ameryka/Santo Domingo\"\n\"America/Sao_Paulo\": \"Ameryka/Sao_Paulo\"\n\"America/Scoresbysund\": \"Ameryka/Scoresbysund\"\n\"America/Sitka\": \"Ameryka/Sitka\"\n\"America/St_Barthelemy\": \"Ameryka/St_Barthelemy\"\n\"America/St_Johns\": \"Ameryka/Świętego Jana\"\n\"America/St_Kitts\": \"Ameryka/St_Kitts\"\n\"America/St_Lucia\": \"Ameryka/St_Lucia\"\n\"America/St_Thomas\": \"Ameryka/St_Thomas\"\n\"America/St_Vincent\": \"Ameryka/St_Vincent\"\n\"America/Swift_Current\": \"Ameryka/Swift_Current\"\n\"America/Tegucigalpa\": \"Ameryka/Tegucigalpa\"\n\"America/Thule\": \"Ameryka/Thule\"\n\"America/Thunder_Bay\": \"Ameryka/Zatoka grzmotów\"\n\"America/Tijuana\": \"Ameryka/Tijuana\"\n\"America/Toronto\": \"Ameryka/Toronto\"\n\"America/Tortola\": \"Ameryka/Tortola\"\n\"America/Vancouver\": \"Ameryka/Vancouver\"\n\"America/Whitehorse\": \"Ameryka/Biały koń\"\n\"America/Winnipeg\": \"Ameryka/Winnipeg\"\n\"America/Yakutat\": \"Ameryka/Yakutat\"\n\"America/Yellowknife\": \"Ameryka/Yellowknife\"\n\"Antarctica/Casey\": \"Antarktyda/Casey\"\n\"Antarctica/Davis\": \"Antarktyda/Davis\"\n\"Antarctica/DumontDUrville\": \"Antarktyda/DumontDUrville\"\n\"Antarctica/Macquarie\": \"Antarktyda/Macquarie\"\n\"Antarctica/McMurdo\": \"Antarktyda/McMurdo\"\n\"Antarctica/Mawson\": \"Antarktyda/Mawson\"\n\"Antarctica/Palmer\": \"Antarktyda/Pielgrzym z ziemi świętej\"\n\"Antarctica/Rothera\": \"Antarktyda/Rothera\"\n\"Antarctica/Syowa\": \"Antarktyda/Syowa\"\n\"Antarctica/Troll\": \"Antarktyda/Troll\"\n\"Antarctica/Vostok\": \"Antarktyda/Vostok\"\n\"Arctic/Longyearbyen\": \"Arktyczny/Longyearbyen\"\n\"Asia/Aden\": \"Azja/Aden\"\n\"Asia/Almaty\": \"Azja/Ałmaty\"\n\"Asia/Amman\": \"Azja/Amman\"\n\"Asia/Anadyr\": \"Azja/Anadyr\"\n\"Asia/Aqtau\": \"Azja/Aqtau\"\n\"Asia/Aqtobe\": \"Azja/Aqtobe\"\n\"Asia/Ashgabat\": \"Azja/Aszchabad\"\n\"Asia/Atyrau\": \"Azja/Atyrau\"\n\"Asia/Baghdad\": \"Azja/Bagdad\"\n\"Asia/Bahrain\": \"Azja/Bahrajn\"\n\"Asia/Baku\": \"Azja/Baku\"\n\"Asia/Bangkok\": \"Azja/Bangkok\"\n\"Asia/Barnaul\": \"Azja/Barnaul\"\n\"Asia/Beirut\": \"Azja/Bejrut\"\n\"Asia/Bishkek\": \"Azja/Biszkek\"\n\"Asia/Brunei\": \"Azja/Brunei\"\n\"Asia/Chita\": \"Azja/Chita\"\n\"Asia/Choibalsan\": \"Azja/Choibalsan\"\n\"Asia/Colombo\": \"Azja/Colombo\"\n\"Asia/Damascus\": \"Azja/Damaszek\"\n\"Asia/Dhaka\": \"Azja/Dhaka\"\n\"Asia/Dili\": \"Azja/Dili\"\n\"Asia/Dubai\": \"Azja/Dubai\"\n\"Asia/Dushanbe\": \"Azja/Duszanbe\"\n\"Asia/Famagusta\": \"Azja/Famagusta\"\n\"Asia/Gaza\": \"Azja/Gaza\"\n\"Asia/Hebron\": \"Azja/Hebron\"\n\"Asia/Ho_Chi_Minh\": \"Azja/Ho Chi Minh\"\n\"Asia/Hong_Kong\": \"Azja/Hong_Kong\"\n\"Asia/Hovd\": \"Azja/Hovd\"\n\"Asia/Irkutsk\": \"Azja/Irkuck\"\n\"Asia/Jakarta\": \"Azja/Djakarta\"\n\"Asia/Jayapura\": \"Azja/Jayapura\"\n\"Asia/Jerusalem\": \"Azja/Jerozolima\"\n\"Asia/Kabul\": \"Azja/Kabul\"\n\"Asia/Kamchatka\": \"Azja/Kamczatka\"\n\"Asia/Karachi\": \"Azja/Kathmandu\"\n\"Asia/Kathmandu\": \"Azja/Kathmandu\"\n\"Asia/Khandyga\": \"Azja/Khandyga\"\n\"Asia/Kolkata\": \"Azja/Kalkuta\"\n\"Asia/Krasnoyarsk\": \"Azja/Krasnojarsk\"\n\"Asia/Kuala_Lumpur\": \"Azja/Kuala_Lumpur\"\n\"Asia/Kuching\": \"Azja/Kuching\"\n\"Asia/Kuwait\": \"Azja/Kuwejt\"\n\"Asia/Macau\": \"Azja/Makau\"\n\"Asia/Magadan\": \"Azja/Magadan\"\n\"Asia/Makassar\": \"Azja/Makassar\"\n\"Asia/Manila\": \"Azja/Manila\"\n\"Asia/Muscat\": \"Azja/Muskat\"\n\"Asia/Nicosia\": \"Azja/Nikozja\"\n\"Asia/Novokuznetsk\": \"Azja/Nowokuźnieck\"\n\"Asia/Novosibirsk\": \"Azja/Nowosybirsk\"\n\"Asia/Omsk\": \"Azja/Omsk\"\n\"Asia/Oral\": \"Azja/Doustny\"\n\"Asia/Phnom_Penh\": \"Azja/Phnom_Penh\"\n\"Asia/Pontianak\": \"Azja/Pontiniak\"\n\"Asia/Pyongyang\": \"Azja/Pyongyang\"\n\"Asia/Qatar\": \"Azja/Katar\"\n\"Asia/Qostanay\": \"Azja/Qostanay\"\n\"Asia/Qyzylorda\": \"Azja/Qyzylorda\"\n\"Asia/Riyadh\": \"Azja/Rijad\"\n\"Asia/Sakhalin\": \"Azja/Sachalin\"\n\"Asia/Samarkand\": \"Azja/Samarkanda\"\n\"Asia/Seoul\": \"Azja/Seul\"\n\"Asia/Shanghai\": \"Azja/Szanghaj\"\n\"Asia/Singapore\": \"Azja/Singapur\"\n\"Asia/Srednekolymsk\": \"Azja/Srednekolymsk\"\n\"Asia/Taipei\": \"Azja/Tajpej\"\n\"Asia/Tashkent\": \"Azja/Taszkent\"\n\"Asia/Tbilisi\": \"Azja/Tbilisi\"\n\"Asia/Tehran\": \"Azja/Teheran\"\n\"Asia/Thimphu\": \"Azja/Thimphu\"\n\"Asia/Tokyo\": \"Azja/Tokio\"\n\"Asia/Tomsk\": \"Azja/Tomsk\"\n\"Asia/Ulaanbaatar\": \"Azja/Ułan Bator\"\n\"Asia/Urumqi\": \"Azja/Urumqi\"\n\"Asia/Ust-Nera\": \"Azja/Ust-Nera\"\n\"Asia/Vientiane\": \"Azja/Wientian\"\n\"Asia/Vladivostok\": \"Azja/Władywostok\"\n\"Asia/Yakutsk\": \"Azja/Jakuck\"\n\"Asia/Yangon\": \"Azja/Yangon\"\n\"Asia/Yekaterinburg\": \"Azja/Jekaterynburg\"\n\"Asia/Yerevan\": \"Azja/Erewan\"\n\"Atlantic/Azores\": \"Atlantic/Azores\"\n\"Atlantic/Bermuda\": \"Atlantic/Bermuda\"\n\"Atlantic/Canary\": \"Atlantic/Canary\"\n\"Atlantic/Cape_Verde\": \"Atlantic/Cape_Verde\"\n\"Atlantic/Faroe\": \"Atlantic/Faroe\"\n\"Atlantic/Madeira\": \"Atlantic/Madeira\"\n\"Atlantic/Reykjavik\": \"Atlantic/Reykjavik\"\n\"Atlantic/South_Georgia\": \"Atlantic/South_Georgia\"\n\"Atlantic/St_Helena\": \"Atlantic/St_Helena\"\n\"Atlantic/Stanley\": \"Atlantic/Stanley\"\n\"Australia/Adelaide\": \"Australia/Adelaide\"\n\"Australia/Brisbane\": \"Australia/Brisbane\"\n\"Australia/Broken_Hill\": \"Australia/Broken_Hill\"\n\"Australia/Currie\": \"Australia/Currie\"\n\"Australia/Darwin\": \"Australia/Darwin\"\n\"Australia/Eucla\": \"Australia/Eucla\"\n\"Australia/Hobart\": \"Australia/Hobart\"\n\"Australia/Lindeman\": \"Australia/Lindeman\"\n\"Australia/Lord_Howe\": \"Australia/Lord_Howe\"\n\"Australia/Melbourne\": \"Australia/Melbourne\"\n\"Australia/Perth\": \"Australia/Perth\"\n\"Australia/Sydney\": \"Australia/Sydney\"\n\"Europe/Amsterdam\": \"Europe/Amsterdam\"\n\"Europe/Andorra\": \"Europe/Andorra\"\n\"Europe/Astrakhan\": \"Europe/Astrakhan\"\n\"Europe/Athens\": \"Europe/Athens\"\n\"Europe/Belgrade\": \"Europe/Belgrade\"\n\"Europe/Berlin\": \"Europe/Berlin\"\n\"Europe/Bratislava\": \"Europe/Bratislava\"\n\"Europe/Brussels\": \"Europe/Brussels\"\n\"Europe/Bucharest\": \"Europe/Bucharest\"\n\"Europe/Budapest\": \"Europe/Budapest\"\n\"Europe/Busingen\": \"Europe/Busingen\"\n\"Europe/Chisinau\": \"Europe/Chisinau\"\n\"Europe/Copenhagen\": \"Europe/Copenhagen\"\n\"Europe/Dublin\": \"Europe/Dublin\"\n\"Europe/Gibraltar\": \"Europe/Gibraltar\"\n\"Europe/Guernsey\": \"Europe/Guernsey\"\n\"Europe/Helsinki\": \"Europe/Helsinki\"\n\"Europe/Isle_of_Man\": \"Europe/Isle_of_Man\"\n\"Europe/Istanbul\": \"Europe/Istanbul\"\n\"Europe/Jersey\": \"Europe/Jersey\"\n\"Europe/Kaliningrad\": \"Europe/Kaliningrad\"\n\"Europe/Kiev\": \"Europe/Kiev\"\n\"Europe/Kirov\": \"Europe/Kirov\"\n\"Europe/Lisbon\": \"Europe/Lisbon\"\n\"Europe/Ljubljana\": \"Europe/Ljubljana\"\n\"Europe/London\": \"Europe/London\"\n\"Europe/Luxembourg\": \"Europe/Luxembourg\"\n\"Europe/Madrid\": \"Europe/Madrid\"\n\"Europe/Malta\": \"Europe/Malta\"\n\"Europe/Mariehamn\": \"Europe/Mariehamn\"\n\"Europe/Minsk\": \"Europe/Minsk\"\n\"Europe/Monaco\": \"Europe/Monaco\"\n\"Europe/Moscow\": \"Europe/Moscow\"\n\"Europe/Oslo\": \"Europe/Oslo\"\n\"Europe/Paris\": \"Europe/Paris\"\n\"Europe/Podgorica\": \"Europe/Podgorica\"\n\"Europe/Prague\": \"Europe/Prague\"\n\"Europe/Riga\": \"Europe/Riga\"\n\"Europe/Rome\": \"Europe/Rome\"\n\"Europe/Samara\": \"Europe/Samara\"\n\"Europe/San_Marino\": \"Europe/San_Marino\"\n\"Europe/Sarajevo\": \"Europe/Sarajevo\"\n\"Europe/Saratov\": \"Europe/Saratov\"\n\"Europe/Simferopol\": \"Europe/Simferopol\"\n\"Europe/Skopje\": \"Europe/Skopje\"\n\"Europe/Sofia\": \"Europe/Sofia\"\n\"Europe/Stockholm\": \"Europe/Stockholm\"\n\"Europe/Tallinn\": \"Europe/Tallinn\"\n\"Europe/Tirane\": \"Europe/Tirane\"\n\"Europe/Ulyanovsk\": \"Europe/Ulyanovsk\"\n\"Europe/Uzhgorod\": \"Europe/Uzhgorod\"\n\"Europe/Vaduz\": \"Europe/Vaduz\"\n\"Europe/Vatican\": \"Europe/Vatican\"\n\"Europe/Vienna\": \"Europe/Vienna\"\n\"Europe/Vilnius\": \"Europe/Vilnius\"\n\"Europe/Volgograd\": \"Europe/Volgograd\"\n\"Europe/Warsaw\": \"Europe/Warsaw\"\n\"Europe/Zagreb\": \"Europe/Zagreb\"\n\"Europe/Zaporozhye\": \"Europe/Zaporozhye\"\n\"Europe/Zurich\": \"Europe/Zurich\"\n\"Indian/Antananarivo\": \"Indian/Antananarivo\"\n\"Indian/Chagos\": \"Indian/Chagos\"\n\"Indian/Christmas\": \"Indian/Christmas\"\n\"Indian/Cocos\": \"Indian/Cocos\"\n\"Indian/Comoro\": \"Indian/Comoro\"\n\"Indian/Kerguelen\": \"Indian/Kerguelen\"\n\"Indian/Mahe\": \"Indian/Mahe\"\n\"Indian/Maldives\": \"Indian/Maldives\"\n\"Indian/Mauritius\": \"Indian/Mauritius\"\n\"Indian/Mayotte\": \"Indian/Mayotte\"\n\"Indian/Reunion\": \"Indian/Reunion\"\n\"Pacific/Apia\": \"Pacific/Apia\"\n\"Pacific/Auckland\": \"Pacific/Auckland\"\n\"Pacific/Bougainville\": \"Pacific/Bougainville\"\n\"Pacific/Chatham\": \"Pacific/Chatham\"\n\"Pacific/Chuuk\": \"Pacific/Chuuk\"\n\"Pacific/Easter\": \"Pacific/Easter\"\n\"Pacific/Efate\": \"Pacific/Efate\"\n\"Pacific/Enderbury\": \"Pacific/Enderbury\"\n\"Pacific/Fakaofo\": \"Pacific/Fakaofo\"\n\"Pacific/Fiji\": \"Pacific/Fiji\"\n\"Pacific/Funafuti\": \"Pacific/Funafuti\"\n\"Pacific/Galapagos\": \"Pacific/Galapagos\"\n\"Pacific/Gambier\": \"Pacific/Gambier\"\n\"Pacific/Guadalcanal\": \"Pacific/Guadalcanal\"\n\"Pacific/Guam\": \"Pacific/Guam\"\n\"Pacific/Honolulu\": \"Pacific/Honolulu\"\n\"Pacific/Kiritimati\": \"Pacific/Kiritimati\"\n\"Pacific/Kosrae\": \"Pacific/Kosrae\"\n\"Pacific/Kwajalein\": \"Pacific/Kwajalein\"\n\"Pacific/Majuro\": \"Pacific/Majuro\"\n\"Pacific/Marquesas\": \"Pacific/Marquesas\"\n\"Pacific/Midway\": \"Pacific/Midway\"\n\"Pacific/Nauru\": \"Pacific/Nauru\"\n\"Pacific/Niue\": \"Pacific/Niue\"\n\"Pacific/Norfolk\": \"Pacific/Norfolk\"\n\"Pacific/Noumea\": \"Pacific/Noumea\"\n\"Pacific/Pago_Pago\": \"Pacific/Pago_Pago\"\n\"Pacific/Palau\": \"Pacific/Palau\"\n\"Pacific/Pitcairn\": \"Pacific/Pitcairn\"\n\"Pacific/Pohnpei\": \"Pacific/Pohnpei\"\n\"Pacific/Port_Moresby\": \"Pacific/Port_Moresby\"\n\"Pacific/Rarotonga\": \"Pacific/Rarotonga\"\n\"Pacific/Saipan\": \"Pacific/Saipan\"\n\"Pacific/Tahiti\": \"Pacific/Tahiti\"\n\"Pacific/Tarawa\": \"Pacific/Tarawa\"\n\"Pacific/Tongatapu\": \"Pacific/Tongatapu\"\n\"Pacific/Wake\": \"Pacific/Wake\"\n\"Pacific/Wallis\": \"Pacific/Wallis\"\n\"UTC\": \"UTC\"\n\"Time Format\": \"Format czasu\"\n\"Choose your default timezone\": \"Wybierz domyślną strefę czasową\"\n\"Signature\": \"Podpis\"\n\"User signature will be append at the bottom of ticket reply box\": \"Podpis użytkownika zostanie dołączony na dole pola odpowiedzi na zgłoszenie\"\n\"Password\": \"Hasło\"\n\"Password will remain same if you are not entering something in this field\": \"Hasło pozostanie takie samo, jeśli nie uzupełnisz tego pola\"\n\"Password must contain minimum 8 character length, at least two letters (not case sensitive), one number, one special character(space is not allowed).\": \"Hasło musi zawierać co najmniej 8 znaków, co najmniej dwie litery (bez rozróżniania wielkości liter), jedną cyfrę, jeden znak specjalny (spacja jest niedozwolona).\"\n\"Confirm Password\": \"Potwierdź hasło\"\n\"Save Changes\": \"Zapisz zmiany\"\n\"SAVE CHANGES\": \"ZAPISZ ZMIANY\"\n\"Customer full name\": \"Imię i nazwisko klienta\"\n\"Customer email address\": \"Adres e-mail klienta\"\n\"Select Type\": \"Wybierz rodzaj\"\n\"Support\": \"Wsparcie\"\n\"Choose ticket type\": \"Wybierz rodzaj zgłoszenia\"\n\"Ticket subject\": \"Temat zgłoszenia\"\n\"Message\": \"Wiadomość\"\n\"Query Message\": \"Wiadomość z zapytaniem\"\n\"Add Attachment\": \"Dodaj załącznik\"\n\"This field is mandatory\": \"To pole jest obowiązkowe\"\n\"General\": \"Ogólny\"\n\"Designation\": \"Przeznaczenie\"\n\"Contant Number\": \"Numer kontaktowy\"\n\"User signature will be append in the bottom of ticket reply box\": \"Podpis użytkownika zostanie dołączony na dole pola odpowiedzi na zgłoszenie\"\n\"Account Status\": \"Status Konta\"\n\"Account is Active\": \"Konto jest aktywne\"\n\"Assigning group(s) to user to view tickets regardless assignment.\": \"Przypisywanie grup użytkownikowi w celu przeglądania zgłoszeń niezależnie od przydziału.\"\n\"Default\": \"Domyślna\"\n\"Select All\": \"Zaznacz wszystko\"\n\"Remove All\": \"Usuń wszystko\"\n\"Assigning team(s) to user to view tickets regardless assignment.\": \"Przydzielanie zespołu użytkownikowi w celu przeglądania zgłoszeń niezależnie od przydziału.\"\n\"No Team added !\": \"Nie dodano żadnego zespołu!\"\n\"Permission\": \"Pozwolenie\"\n\"Role\": \"Rola\"\n\"Administrator\": \"Administrator\"\n\"Select agent role\": \"Wybierz rolę agenta\"\n\"Add Customer\": \"Dodaj klienta\"\n\"Action\": \"Akcja\"\n\"Account Owner\": \"Właściciel konta\"\n\"Active\": \"Aktywny\"\n\"Edit\": \"Edytuj\"\n\"Delete\": \"Skasuj\"\n\"Disabled\": \"Wyłączony\"\n\"New Group\": \"Nowa grupa\"\n\"Default Privileges\": \"Uprawnienia domyślne\"\n\"New Privileges\": \"Nowe uprawnienia\"\n\"NEW PRIVILEGE\": \"NOWE UPRAWNIENIE\"\n\"New Privilege\": \"Nowe uprawnienie\"\n\"New Team\": \"Nowy Zespół\"\n\"No Record Found\": \"Nie znaleziono elementów\"\n\"Order Synchronization\": \"Synchronizuj\"\n\"Easily integrate different ecommerce platforms with your helpdesk which can then be later used to swiftly integrate ecommerce order details with your support tickets.\": \"Z łatwością zintegruj różne platformy e-commerce z działem pomocy technicznej, które można później wykorzystać do szybkiej integracji szczegółów zamówień e-commerce ze zgłoszeniami pomocy technicznej.\"\n\"BigCommerce\": \"BigCommerce\"\n\"No channels have been added.\": \"Nie dodano żadnych kanałów.\"\n\"Add BigCommerce Store\": \"Dodaj sklep BigCommerce\"\n\"ADD BIGCOMMERCE STORE\": \"DODAJ SKLEP BIGCOMMERCE\"\n\"Mangento\": \"Magento\"\n\"Add Magento Store\": \"Dodaj sklep Magento\"\n\"OpenCart\": \"OpenCart\"\n\"Add OpenCart Store\": \"Dodaj sklep OpenCart\"\n\"ADD OPENCART STORE\": \"DODAJ SKLEP OPENCART\"\n\"Shopify\": \"Shopify\"\n\"Add Shopify Store\": \"Dodaj sklep Shopify\"\n\"ADD SHOPIFY STORE\": \"DODAJ SKLEP\"\n\"Integrate a new BigCommerce store\": \"Zintegruj nowy sklep BigCommerce\"\n\"Your BigCommerce Store Name\": \"Nazwa Twojego sklepu BigCommerce\"\n\"Your BigCommerce Store Hash\": \"Hash Twojego sklepu BigCommerce\"\n\"Your BigCommerce Api Token\": \"Twój token BigCommerce Api\"\n\"Your BigCommerce Api Client ID\": \"Twój identyfikator klienta BigCommerce Api\"\n\"Enable Channel\": \"Włącz kanał\"\n\"Add Store\": \"Dodaj sklep\"\n\"ADD STORE\": \"DODAJ SKLEP\"\n\"Integrate a new Magento store\": \"Zintegruj nowy sklep Magento\"\n\"Your Magento Api Username\": \"Twoja nazwa użytkownika Magento Api\"\n\"Your Magento Api Password\": \"Twoje hasło Magento Api\"\n\"Integrate a new OpenCart store\": \"Zintegruj nowy sklep OpenCart\"\n\"Your OpenCart Api Key\": \"Twój klucz OpenCart Api\"\n\"Your Shopify Store Name\": \"Nazwa Twojego sklepu Shopify\"\n\"Your Shopify Api Key\": \"Twój klucz Shopify Api\"\n\"Your Shopify Api Password\": \"Twoje hasło Shopify Api\"\n\"Easily embed custom form to help generate helpdesk tickets.\": \"Z łatwością osadzaj niestandardowy formularz, aby pomóc w generowaniu zgłoszeń do działu pomocy technicznej.\"\n\"Form-Builder\": \"Kreator Formularzy\"\n\"Add Formbuilder\": \"Dodaj Kreator Formularzy\"\n\"ADD FORMBUILDER\": \"DODAJ KREATOR FORMULARZY\"\n\"No FormBuilder have been added.\": \"Nie dodano żadnego Kreatora Formularzy.\"\n\"Create a New Custom Form Below\": \"Utwórz nowy niestandardowy formularz poniżej\"\n\"Form Name\": \"Nazwa formularza\"\n\"It will be shown in the list of created forms\": \"Zostanie wyświetlony na liście utworzonych formularzy\"\n\"MANDATORY FIELDS\": \"POLA OBOWIĄZKOWE\"\n\"These fields will be visible in form and cant be edited\": \"Te pola będą widoczne w formularzu i nie będzie można ich edytować\"\n\"Reply\": \"Odpowiedz\"\n\"OPTIONAL FIELDS\": \"POLA OPCJONALNE\"\n\"Select These Fields to Add in your Form\": \"Wybierz te pola, aby dodać je w formularzu\"\n\"GDPR\": \"RODO\"\n\"Order\": \"Zamówienie\"\n\"Categorybuilder\": \"Categorybuilder\"\n\"File\": \"Plik\"\n\"Add Form\": \"Dodaj formularz\"\n\"ADD FORM\": \"DODAJ FORMULARZ\"\n\"UPDATE FORM\": \"FORMULARZ AKTUALIZACJI\"\n\"Update Form\": \"Zaktualizuj formularz\"\n\"Embed\": \"Osadź\"\n\"EMBED\": \"OSADŹ\"\n\"EMBED FORMBUILDER\": \"EMBED FORMBUILDER\"\n\"Embed Formbuilder\": \"Osadź Formbuilder\"\n\"Visit\": \"Odwiedź\"\n\"VISIT\": \"ODWIEDŹ\"\n\"Code\": \"Kod\"\n\"Total Ticket(s)\": \"Łączna liczba zgłoszeń\"\n\"Ticket Count\": \"Liczba zgłoszeń\"\n\"SwiftMailer Configurations\": \"Konfiguracje SwiftMailer\"\n\"No swiftmailer configurations found\": \"Nie znaleziono konfiguracji Swiftmailer\"\n\"CREATE CONFIGURATION\": \"UTWÓRZ KONFIGURACJĘ\"\n\"Add configuration\": \"Dodaj konfigurację\"\n\"Update configuration\": \"Zaktualizuj konfigurację\"\n\"Mailer ID\": \"Identyfikator pocztowy\"\n\"Mailer ID - Leave blank to automatically create id\": \"ID - pozostaw puste, aby automatycznie utworzyć ID\"\n\"Transport Type\": \"Rodzaj transportu\"\n\"SMTP\": \"SMTP\"\n\"Enable Delivery\": \"Włącz dostarczanie maili\"\n\"Server\": \"Serwer\"\n\"Port\": \"Port\"\n\"Encryption Mode\": \"Tryb szyfrowania\"\n\"ssl\": \"ssl\"\n\"tls\": \"tls\"\n\"None\": \"Żaden\"\n\"Authentication Mode\": \"Tryb Uwierzytelniania\"\n\"login\": \"login\"\n\"API\": \"API\"\n\"Plain\": \"Plain\"\n\"CRAM-MD5\": \"CRAM-MD5\"\n\"Sender Address\": \"Adres nadawcy\"\n\"Delivery Address\": \"Adres dostawy\"\n\"Block Spam\": \"Blokuj spam\"\n\"Black list\": \"Czarna lista\"\n\"Comma (,) separated values (Eg. support@example.com, @example.com, 68.98.31.226)\": \"Wartości oddzielone przecinkami (,) (np. support@example.com, @ example.com, 68.98.31.226)\"\n\"White list\": \"Biała lista\"\n\"Mailbox Settings\": \"Ustawienia skrzynki pocztowej\"\n\"No mailbox configurations found\": \"Nie znaleziono konfiguracji skrzynek pocztowych\"\n\"NEW MAILBOX\": \"NOWA SKRZYNKA POCZTOWA\"\n\"New Mailbox\": \"Nowa skrzynka pocztowa\"\n\"Update Mailbox\": \"Zaktualizuj skrzynkę pocztową\"\n\"Add Mailbox\": \"Dodaj skrzynkę pocztową\"\n\"Mailbox ID - Leave blank to automatically create id\": \"ID - pozostaw puste, aby automatycznie utworzyć ID\"\n\"Mailbox Name\": \"Nazwa skrzynki pocztowej\"\n\"Enable Mailbox\": \"Włącz skrzynkę pocztową\"\n\"Incoming Mail (IMAP) Server\": \"Serwer poczty przychodzącej (IMAP)\"\n\"Configure your imap settings which will be used to fetch emails from your mailbox.\": \"Skonfiguruj ustawienia IMAP, które będą używane do pobierania wiadomości e-mail z Twojej skrzynki pocztowej.\"\n\"Transport\": \"Transport\"\n\"IMAP\": \"IMAP\"\n\"Gmail\": \"Gmail\"\n\"Yahoo\": \"Yahoo\"\n\"Host\": \"Host\"\n\"IMAP Host\": \"Host IMAP\"\n\"Email address\": \"Adres e-mail\"\n\"Associated Password\": \"Powiązane hasło\"\n\"Outgoing Mail (SMTP) Server\": \"Serwer poczty wychodzącej (SMTP)\"\n\"Select a valid Swift Mailer configuration which will be used to send emails through your mailbox.\": \"Wybierz prawidłową konfigurację Swift Mailer, która będzie używana do wysyłania wiadomości e-mail za pośrednictwem Twojej skrzynki pocztowej.\"\n\"None Selected\": \"Nie wybrano\"\n\"Create Mailbox\": \"Utwórz skrzynkę pocztową\"\n\"CREATE MAILBOX\": \"UTWÓRZ SKRZYNKĘ POCZTOWĄ\"\n\"New Template\": \"Nowy szablon\"\n\"NEW TEMPLATE\": \"NOWY SZABLON\"\n\"Customer Forgot Password\": \"Klient zapomniał hasła\"\n\"Customer Account Created\": \"Utworzono konto klienta\"\n\"Ticket generated success mail to customer\": \"Zgłoszenie wygenerowało wiadomość e-mail do klienta\"\n\"Customer Reply To The Agent\": \"Odpowiedź klienta do agenta\"\n\"Ticket Assign\": \"Przypisz Zgłoszenie\"\n\"Agent Forgot Password\": \"Agent zapomniał hasła\"\n\"Agent Account Created\": \"Utworzono konto agenta\"\n\"Ticket generated by customer\": \"Zgłoszenie wygenerowane przez klienta\"\n\"Agent Reply To The Customers ticket\": \"Odpowiedź agenta na zgłoszenie klientów\"\n\"Email template name\": \"Nazwa szablonu wiadomości e-mail\"\n\"Email template subject\": \"Temat szablonu e-maila\"\n\"Template For\": \"Szablon dla\"\n\"Nothing Selected\": \"Nic nie zostało zaznaczone\"\n\"email template will be used for work related with selected option\": \"szablon wiadomości e-mail zostanie wykorzystany do pracy związanej z wybraną opcją\"\n\"Email template body\": \"Treść szablonu wiadomości e-mail\"\n\"Body\": \"Ciało\"\n\"placeholders\": \"symbole zastępcze\"\n\"Ticket Subject\": \"Temat zgłoszenia\"\n\"Ticket Message\": \"Wiadomość zgłoszenia\"\n\"Ticket Attachments\": \"Załączniki do zgłoszenia\"\n\"Ticket Tags\": \"Tagi zgłoszenia\"\n\"Ticket Source\": \"Źródło zgłoszenia\"\n\"Ticket Status\": \"Status zgłoszenia\"\n\"Ticket Priority\": \"Priorytet zgłoszenia\"\n\"Ticket Group\": \"Grupa Zgłoszenia\"\n\"Ticket Team\": \"Zespół Zgłoszenia\"\n\"Ticket Thread Message\": \"Wiadomość wątku zgłoszenia\"\n\"Ticket Customer Name\": \"Zgłaszający\"\n\"Ticket Customer Email\": \"Adres e-mail klienta\"\n\"Ticket Agent Name\": \"Imię i nazwisko agenta\"\n\"Ticket Agent Email\": \"E-mail agenta\"\n\"Ticket Agent Link\": \"Link do agenta\"\n\"Ticket Customer Link\": \"Link do klienta\"\n\"Last Collaborator Name\": \"Nazwisko ostatniego współpracownika\"\n\"Last Collaborator Email\": \"Ostatni e-mail współpracownika\"\n\"Agent/ Customer Name\": \"Nazwa agenta / klienta\"\n\"Account Validation Link\": \"Link do weryfikacji konta\"\n\"Password Forgot Link\": \"Link Resetowania hasła\"\n\"Company Name\": \"Nazwa firmy\"\n\"Company Logo\": \"Logo firmy\"\n\"Company URL\": \"Adres URL firmy\"\n\"Swiftmailer id (Select from drop down)\": \"Identyfikator Swiftmailer (wybierz z listy rozwijanej)\"\n\"PROCEED\": \"KONTYNUUJ\"\n\"Proceed\": \"Kontynuuj\"\n\"Theme Color\": \"Kolor motywu\"\n\"Customer Created\": \"Utworzono klienta\"\n\"Agent Created\": \"Utworzono agenta\"\n\"Ticket Created\": \"Utworzono zgłoszenie\"\n\"Agent Replied on Ticket\": \"Agent odpowiedział na zgłoszenie\"\n\"Customer Replied on Ticket\": \"Klient odpowiedział na zgłoszenie\"\n\"Workflow Status\": \"Stan Workflow\"\n\"Workflow is Active\": \"Workflow jest aktywny\"\n\"Events\": \"Eventy\"\n\"An event automatically triggers to check conditions and perform a respective pre-defined set of actions\": \"Event automatycznie wyzwala sprawdzenie warunków i wykonanie odpowiedniego, wstępnie zdefiniowanego zestawu działań\"\n\"Select an Event\": \"Wybierz event\"\n\"Add More\": \"Dodaj więcej\"\n\"Conditions\": \"Warunki\"\n\"Conditions are set of rules which checks for specific scenarios and are triggered on specific occasions\": \"Warunki to zbiór reguł, które sprawdzają określone scenariusze i są uruchamiane w określonych sytuacjach\"\n\"Subject or Description\": \"Temat lub opis\"\n\"Actions\": \"Akcje\"\n\"An action not only reduces the workload but also makes it quite easier for ticket automation\": \"Akcja nie tylko zmniejsza obciążenie pracą, ale także znacznie ułatwia automatyzację zgłoszeń\"\n\"Select an Action\": \"Wybierz akcję\"\n\"Add Note\": \"Dodaj notatkę\"\n\"Mail to Agent\": \"Wyślij maila do Agent\"\n\"Mail to Customer\": \"Wyślij maila do klienta\"\n\"Mail to group\": \"Wyślij e-maila do grupy\"\n\"Mail to last collaborator\": \"Wyślij e-maila do ostatniego współpracownika\"\n\"Mail to team\": \"Wyślij maila do zespołu\"\n\"Mark Spam\": \"Oznacz jako spam\"\n\"Assign to agent\": \"Przypisz do agenta\"\n\"Assign to group\": \"Przypisz do grupy\"\n\"Set Priority As\": \"Ustaw priorytet jako\"\n\"Set Status As\": \"Ustaw status jako\"\n\"Set Tag As\": \"Ustaw tag jako \"\n\"Assign to Team\": \"Przypisz do zespołu\"\n\"Set Type As\": \"Przypisz do zespołu\"\n\"Add Workflow\": \"Dodaj Workflow\"\n\"ADD WORKFLOW\": \"DODAJ WORKFLOW\"\n\"Ticket Type code\": \"Tytuł\"\n\"Ticket Type description\": \"Opis typu zgłoszenia\"\n\"Type Status\": \"Wybierz Stan\"\n\"Type is Active\": \"Aktywny\"\n\"Add Save Reply\": \"Dodaj odpowiedź\"\n\"Saved reply name\": \"Nazwa odpowiedzi\"\n\"Share saved reply with user(s) in these group(s)\": \"Udostępnij zapisaną odpowiedź użytkownikom w tych grupach\"\n\"Share saved reply with user(s) in these teams(s)\": \"Udostępnij zapisaną odpowiedź użytkownikom w tych zespołach\"\n\"Saved reply Body\": \"Treść odpowiedzi\"\n\"New Prepared Response\": \"Nowa odpowiedź\"\n\"Prepared Response Status\": \"Stan przygotowanej odpowiedzi\"\n\"Prepared Response is Active\": \"Aktywna\"\n\"Share prepared response with user(s) in these group(s)\": \"Udostępnij przygotowaną odpowiedź użytkownikom w tych grupach\"\n\"Share prepared response with user(s) in these teams(s)\": \"Udostępnij przygotowaną odpowiedź użytkownikom w tych zespołach\"\n\"ADD PREPARED RESPONSE\": \"DODAJ ODPOWIEDŹ\"\n\"Add Prepared Response\": \"Dodaj odpowiedź\"\n\"Folder Name is shown upfront at Knowledge Base\": \"Nazwa folderu jest wyświetlana w pierwszej kolejności w bazie wiedzy\"\n\"A small text about the folder helps user to navigate more easily\": \"Tekst dotyczący folderu który ułatwia użytkownikowi nawigację\"\n\"Publish\": \"Publikuj\"\n\"Choose appropriate status\": \"Wybierz odpowiedni status\"\n\"Folder Image\": \"Obraz folderu\"\n\"An image is worth a thousands words and makes folder more accessible\": \"Obraz ułatwia ustalić zawartość folderu\"\n\"Add Category\": \"Dodaj kategorię\"\n\"Category Name is shown upfront at Knowledge Base\": \"Nazwa kategorii jest wyświetlana w pierwszej kolejności w Bazie wiedzy\"\n\"A small text about the category helps user to navigate more easily\": \"Tekst dotyczący kategorii który ułatwia użytkownikowi nawigację\"\n\"Using Category Order, you can decide which category should display first\": \"Korzystając z kolejności kategorii, możesz zdecydować, która kategoria ma być wyświetlana jako pierwsza\"\n\"Sorting\": \"Sortowanie\"\n\"Ascending Order (A-Z)\": \"W porządku rosnącym (A-Z)\"\n\"Descending Order (Z-A)\": \"Kolejność malejąca (Z-A)\"\n\"Based on Popularity\": \"Na podstawie popularności\"\n\"Article of this category will display according to selected option\": \"Artykuł z tej kategorii będzie wyświetlany zgodnie z wybraną opcją\"\n\"Article\": \"Artykuł\"\n\"Title\": \"Tytuł\"\n\"View\": \"Widok\"\n\"Make as Starred\": \"Oznacz gwiazdką\"\n\"Yes\": \"Tak\"\n\"No\" : \"Nie\"\n\"Stared\" : \"Gwiazdka\"\n\"Revisions\": \"Poprawki\"\n\"Related Articles\" : \"Powiązane artykuły\"\n\"Delete Article\":\t\"Usuń artykuł\"\n\"Content\": \"Zawartość\"\n\"Slug\": \"Ślimak\"\n\"Slug is the url identity of this article.\": \"Slug to tożsamość adresu URL tego artykułu.\"\n\"Meta Title\": \"Tytuł meta\"\n\"Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A pages title tag and meta description are usually shown whenever that page appears in search engine results\": \"Tagi tytułu i opisy meta to fragmenty kodu HTML w nagłówku strony internetowej. Pomagają wyszukiwarkom zrozumieć zawartość strony. Znacznik tytułu strony i opis meta są zwykle wyświetlane za każdym razem, gdy strona pojawia się w wynikach wyszukiwania\"\n\"Meta Keywords\": \"Słowa kluczowe meta\"\n\"Meta Description\": \"Opis meta\"\n\"Description\": \"Opis\"\n\"Team Status\": \"Status Zespołu\"\n\"Team is Active\": \"Zespół jest aktywny\"\n\"Edit Privilege\": \"Edytuj uprawnienia\"\n\"Can create ticket\": \"Może stworzyć zgłoszenie\"\n\"Can edit ticket\": \"Może edytować zgłoszenie\"\n\"Can delete ticket\": \"Może usunąć zgłoszenie\"\n\"Can restore trashed ticket\": \"Może przywrócić skasowane zgłoszenie\"\n\"Can assign ticket\": \"Może przypisać zgłoszenie\"\n\"Can assign ticket group\": \"Może przypisać grupę zgłoszeń\"\n\"Can update ticket status\": \"Może aktualizować status zgłoszenia\"\n\"Can update ticket priority\": \"Może aktualizować priorytet zgłoszenia\"\n\"Can update ticket type\": \"Może aktualizować typ zgłoszenia\"\n\"Can add internal notes to ticket\": \"Może dodawać wewnętrzne notatki do zgłoszenia\"\n\"Can edit thread/notes\": \"Może edytować wątek / notatki\"\n\"Can lock/unlock thread\": \"Może zablokować / odblokować wątek\"\n\"Can add collaborator to ticket\": \"Może dodać współpracownika do zgłoszenia\"\n\"Can delete collaborator from ticket\": \"Może usunąć współpracownika ze zgłoszenia\"\n\"Can delete thread/notes\": \"Może usuwać wątki / notatki\"\n\"Can apply prepared response on ticket\": \"Może użyć przygotowanej odpowiedzi do zgłoszenia\"\n\"Can add ticket tags\": \"Może dodawać tagi do zgłoszeń\"\n\"Can delete ticket tags\": \"Może usuwać tagi ze zgłoszeń\"\n\"Can kick other ticket users\": \"Może wyrzucić innych użytkowników ze zgłoszenia\"\n\"Can manage email templates\": \"Może zarządzać szablonami wiadomości e-mail\"\n\"Can manage groups\": \"Może zarządzać grupami\"\n\"Can manage Sub-Groups/ Teams\": \"Może zarządzać podgrupami / zespołami\"\n\"Can manage agents\": \"Może zarządzać agentami\"\n\"Can manage agent privileges\": \"Może zarządzać uprawnieniami agentów\"\n\"Can manage ticket types\": \"Może zarządzać typami zgłoszeń\"\n\"Can manage ticket custom fields\": \"Może zarządzać polami niestandardowymi zgłoszenia\"\n\"Can manage customers\": \"Może zarządzać klientami\"\n\"Can manage Prepared Responses\": \"Może zarządzać przygotowanymi odpowiedziami\"\n\"Can manage Automatic workflow\": \"Może zarządzać automatycznym Workflow\"\n\"Can manage tags\": \"Może zarządzać tagami\"\n\"Can manage knowledgebase\": \"Może zarządzać bazą wiedzy\"\n\"Can manage Groups Saved Reply\": \"Może zarządzać zapisanymi odpowiedziami grup\"\n\"Add Privilege\": \"Dodaj uprawnienia\"\n\"Choose set of privileges which will be available to the agent.\": \"Wybierz zestaw uprawnień, które będą dostępne dla agenta.\"\n\"Advanced\": \"Zaawansowane\"\n\"Privilege Name must have characters only\": \"Nazwa uprawnienia może zawierać tylko litery\"\n\"Maximum character length is 50\": \"Maksymalna ilość znaków to 50\"\n\"Open Tickets\": \"Otwarte Zgłoszenia\"\n\"New Customer\": \"Nowy klient\"\n\"New Agent\": \"Nowy agent\"\n\"Total Article(s)\": \"Ilość Artykułów\"\n\"Please specify a valid email address\": \"Podaj prawidłowy adres e-mail\"\n\"Please enter the password associated with your email address\": \"Wprowadź hasło powiązane z Twoim adresem e-mail\"\n\"Please enter your server host address\": \"Wprowadź adres hosta serwera\"\n\"Please specify a port number to connect with your mail server\": \"Podaj numer portu, aby połączyć się z serwerem poczty\"\n\"Success ! Branding details saved successfully.\": \"Ustawienia Branding zostały zapisane.\"\n\"Success ! Time details saved successfully.\": \"Ustawienia czasu zapisano pomyślnie.\"\n\"Spam setting saved successfully.\": \"Ustawienia spamu zostały zapisane.\"\n\"Please specify a valid name for your mailbox.\": \"Podaj prawidłową nazwę swojej skrzynki pocztowej.\"\n\"Please select a valid swift-mailer configuration.\": \"Wybierz prawidłową konfigurację Swift-Mailera.\"\n\"Please specify a valid host address.\": \"Podaj prawidłowy adres hosta.\"\n\"Please specify a valid email address.\": \"Podaj prawidłowy adres e-mail.\"\n\"Please enter the associated account password.\": \"Wprowadź hasło do konta.\"\n\"New Saved Reply\": \"Utwórz nową odpowiedź\"\n\"New Category\": \"Nowa kategoria\"\n\"Folder\": \"Folder\"\n\"Category\": \"Kategoria\"\n\"Created\": \"Utworzony\"\n\"All Articles\": \"Wszystkie artykuły\"\n\"Viewed\": \"Wyświetlone\"\n\"New Article\": \"Nowy artykuł\"\n\"Thank you for your feedback!\": \"Dziękujemy za twoją opinię!\"\n\"Was this article helpful?\": \"Czy ten artykuł był pomocny?\"\n\"Helpdesk\": \"Helpdesk\"\n\"Support Center\": \"Centrum Wsparcia\"\n\"Mailboxes\": \"Skrzynki pocztowe\"\n\"By\": \"Przez\"\n\"Search Tickets\": \"Szukaj Zgłoszeń\"\n\"Customer Information\": \"Informacje o kliencie\"\n\"Total Replies\": \"Łączna liczba odpowiedzi\"\n\"Filter With\": \"Filtruj za pomocą\"\n\"Type email to add\": \"Wpisz e-mail, aby dodać\"\n\"Collaborators\": \"Współpracownicy\"\n\"Labels\": \"Etykiety\"\n\"Group\": \"Grupa\"\n\"group\": \"Grupa\"\n\"Contact Team\": \"Skontaktuj się z zespołem\"\n\"Stay on ticket\": \"Zostań w zgłoszeniu\"\n\"Redirect to list\": \"Przekieruj do listy\"\n\"Nothing interesting here...\": \"Nie ma tu nic ciekawego\"\n\"Previous Ticket\": \"Poprzednie Zgłoszenie\"\n\"Next Ticket\": \"Następne Zgłoszenie\"\n\"Forward\": \"Przekaż\"\n\"Note\": \"Notka\"\n\"Write a reply\": \"Napisz odpowiedź\"\n\"Created Ticket\": \"Utworzono Zgłoszenie\"\n\"All Threads\": \"Wszystkie wątki\"\n\"Forwards\": \"Przekaż\"\n\"Notes\": \"Notatki\"\n\"Pinned\": \"Przypięty\"\n\"Edit Ticket\": \"Edytuj Zgłoszenie\"\n\"Print Ticket\": \"Wydrukuj Zgłoszenie\"\n\"Mark as Spam\": \"Oznacz jako spam\"\n\"Mark as Closed\": \"Oznacz jako zamknięte\"\n\"Delete Ticket\": \"Usuń Zgłoszenie\"\n\"View order details from different eCommerce channels\": \"Zobacz szczegóły zamówienia z różnych kanałów eCommerce\"\n\"ECOMMERCE CHANNELS\": \"KANAŁY ECOMMERCE\"\n\"Select channel\": \"Wybierz kanał\"\n\"Order Id\": \"ID zamówienia\"\n\"Fetch Order\": \"Pobierz zamówienie\"\n\"No orders have been integrated to this ticket yet.\": \"Żadne zamówienia nie zostały jeszcze zintegrowane z tym zgłoszeniem.\"\n\"Enter your credentials below to gain access to your helpdesk account.\": \"Wprowadź poniżej swoje dane uwierzytelniające, aby uzyskać dostęp do swojego konta pomocy technicznej.\"\n\"Keep me logged in\": \"Pozostaw mnie zalogowanym\"\n\"Forgot Password?\": \"Nie pamiętam hasła.\"\n\"Log in to your\": \"Zaloguj się do swojego\"\n\"Sign In\": \"Zaloguj się\"\n\"Edit Customer\": \"Edytuj klienta\"\n\"Update\": \"Aktualizacja\"\n\"Discard\": \"Odrzuć\"\n\"Cancel\": \"Anuluj\"\n\"Not Assigned\": \"Nie przypisano\"\n\"Submit\": \"Prześlij\"\n\"Submit And Open\": \"Prześlij | Otwarty\"\n\"Submit And Pending\": \"Prześlij | Oczekuje\"\n\"Submit And Answered\": \"Prześlij | Odpowiedź\"\n\"Submit And Resolved\": \"Prześlij | Rozwiązany\"\n\"Submit And Closed\": \"Prześlij | Zamknięty\"\n\"Choose a Color\": \"Wybierz kolor\"\n\"Create\": \"Stwórz\"\n\"Edit Label\": \"Edytuj etykietę\"\n\"Add Label\": \"Dodaj etykietę\"\n\"To\": \"Do\"\n\"Ticket\": \"Zgłoszenie\"\n\"Your browser does not support JavaScript or You disabled JavaScript, Please enable those !\": \"Twoja przeglądarka nie obsługuje JavaScript lub wyłączyłeś JavaScript.\"\n\"Confirm Action\": \"Potwierdź akcję\"\n\"Confirm\": \"Potwierdź\"\n\"No result found\": \"Brak wyników\"\n\"ticket delivery status\": \"status dostawy Zgłoszeń\"\n\"Warning! Select valid image file.\": \"Wybierz prawidłowy plik obrazu.\"\n\"Error\": \"Błąd\"\n\"Save\": \"Zapisz\"\n\"SEO\": \"SEO\"\n\"Edit Saved Filter\": \"Edytuj zapisany filtr\"\n\"Type atleast 2 letters\": \"Wpisz co najmniej 2 litery\"\n\"Remove Label\": \"Usuń etykietę\"\n\"New Saved Filter\": \"Nowy zapisany filtr\"\n\"Is Default\": \"Jest domyślna\"\n\"Remove Saved Filter\": \"Usuń zapisany filtr\"\n\"Ticket Info\": \"Informacje o Zgłoszeniu\"\n\"Last Replied Agent\": \"Ostatni agent\"\n\"created Ticket\": \"utworzył Zgłoszenie\"\n\"Uploaded Files\": \"Przesłane pliki\"\n\"Download (as .zip)\": \"Ściągnij jako .zip\"\n\"made last reply\": \"udzielił ostatniej odpowiedzi\"\n\"N/A\": \"N/A\"\n\"Unassigned\": \"Nieprzypisany\"\n\"Label\": \"Etykieta\"\n\"Assigned to me\": \"Przydzielony do mnie\"\n\"Search Query\": \"Wyszukiwana fraza\"\n\"Searching\": \"Szukanie\"\n\"Saved Filter\": \"Zapisany filtr\"\n\"No Label Created\": \"Nie utworzono etykiety\"\n\"Label with same name already exist.\": \"Etykieta o tej samej nazwie już istnieje.\"\n\"Create New\": \"Utwórz\"\n\"Mail status\": \"Stan poczty\"\n\"replied\": \"odpowiedział\"\n\"added note\": \"dodano notke\"\n\"forwarded\": \"przekazane\"\n\"TO\": \"DO\"\n\"CC\": \"CC\"\n\"BCC\": \"BCC\"\n\"Locked\": \"Zablokowany\"\n\"Edit Thread\": \"Edytuj wątek\"\n\"Delete Thread\": \"Usuń wątek\"\n\"Unpin Thread\": \"Odepnij wątek\"\n\"Pin Thread\": \"Przypnij wątek\"\n\"Unlock Thread\": \"Odblokuj wątek\"\n\"Lock Thread\": \"Zablokuj wątek\"\n\"Translate Thread\": \"Przetłumacz wątek\"\n\"Language\": \"Język\"\n\"English\": \"Angielski\"\n\"French\": \"Francuski\"\n\"Italian\": \"Włoski\"\n\"Arabic\": \"Arabski\"\n\"German\": \"Niemiecki\"\n\"Spanish\": \"Hiszpański\"\n\"Turkish\": \"Turecki\"\n\"Danish\": \"Duński\"\n\"Chinese\": \"CHIŃSKI\"\n\"Polish\": \"POLSKIE\"\n\"Hebrew\": \"Hebrew\"\n\"Portuguese\": \"PORTUGALSKI\"\n\"System\": \"System\"\n\"Open in Files\": \"Otwórz w plikach\"\n\"Email address is invalid\": \"Adres email jest nieprawidłowy\"\n\"Tag with same name already exist\": \"Tag o tej samej nazwie już istnieje\"\n\"Text length should be less than 20 charactors\": \"Długość tekstu powinna być mniejsza niż 20 znaków\"\n\"Label with same name already exist\": \"Etykieta o tej samej nazwie już istnieje\"\n\"Agent Name\": \"Imię agenta\"\n\"Agent Email\": \"Adres e-mail agenta\"\n\"open\": \"otwarty\"\n\"Currently active agents on ticket\": \"Aktualnie aktywni agenci na zgłoszeniu\"\n\"Edit Customer Information\": \"Edytuj informacje o kliencie\"\n\"Restore\": \"Przywróć\"\n\"Delete Forever\": \"Usuń na zawsze\"\n\"Add Team\": \"Dodaj zespół\"\n\"delete\": \"skasuj\"\n\"You didnt have any folder for current filter(s).\": \"Nie masz żadnego folderu dla bieżących filtrów.\"\n\"Add Folder\": \"Dodaj folder\"\n\"This field must have valid characters only\": \"To pole musi zawierać tylko prawidłowe znaki\"\n\"Can edit task\": \"Może edytować zadanie\"\n\"Can create task\": \"Może tworzyć zadania\"\n\"Can delete task\": \"Może usunąć zadanie\"\n\"Can add member to task\": \"Może dodać członka do zadania\"\n\"Can remove member from task\": \"Może usunąć członka z zadania\"\n\"Agent Privileges\": \"Uprawnienia agenta\"\n\"Agent Privilege represents overall permissions in System.\": \"Uprawnienia agenta reprezentują ogólne uprawnienia w systemie.\"\n\"Ticket View\": \"Widok Zgłoszeń\"\n\"User can view tickets based on selected scope.\": \"Użytkownik może przeglądać zgłoszenia na podstawie wybranego zakresu.\"\n\"If individual access then user can View assigned Ticket(s) only, If Team access then user can view all Ticket(s) in team(s) he belongs to and so on\": \"Użytkownik może wyświetlać indywidualnie przypisane zgłoszenia i te które zostały przypisane do zespołu którego członkiem jest dany użytkownik.\"\n\"Global Access\": \"Dostęp globalny\"\n\"Group Access\": \"Dostęp grupowy\"\n\"Team Access\": \"Dostęp zespołu\"\n\"Individual Access\": \"Indywidualny dostęp\"\n\"This field must have characters only\": \"To pole może zawierać tylko znaki\"\n\"Maximum character length is 40\": \"Maksymalna długość znaków to 40\"\n\"This is not a valid email address\": \"To nie jest prawidłowy adres email\"\n\"Password must contains 8 Characters\": \"Hasło musi zawierać 8 znaków\"\n\"The passwords does not match\": \"Hasła się nie zgadzają\"\n\"Enabled\": \"Włączone\"\n\"Create Configuration\": \"Utwórz konfigurację\"\n\"Swift Mailer Settings\": \"Ustawienia Swift-Mailera\"\n\"Username\": \"Nazwa Użytkownika\"\n\"Please select a swiftmailer id\": \"Wybierz identyfikator Swiftmailer\"\n\"Please enter a valid e-mail id\": \"Wprowadź prawidłowy identyfikator e-mail\"\n\"Please enter a mailer id\": \"Wprowadź identyfikator poczty\"\n\"Email Id\": \"ID e-mail\"\n\"Are you sure? You want to perform this action.\": \"Jesteś pewny że chcesz wykonać tę czynność?\"\n\"Reorder\": \"Zmień kolejność\"\n\"New Workflow\": \"Nowy Workflow\"\n\"OR\": \"LUB\"\n\"AND\": \"I\"\n\"Please enter a valid name.\": \"Proszę wpisać prawidłowe imię.\"\n\"Please select a value.\": \"Wybierz wartość.\"\n\"Please add a value.\": \"Dodaj wartość.\"\n\"This field is required\": \"To pole jest wymagane\"\n\"or\": \"lub\"\n\"and\": \"i\"\n\"Select a Condition\": \"Wybierz warunek\"\n\"Loading...\": \"Ładowanie...\"\n\"Select Option\": \"Wybierz opcję\"\n\"Inactive\": \"Nieaktywny\"\n\"New Type\": \"Nowy typ\"\n\"Placeholders\": \"Symbole zastępcze\"\n\"Ticket Link\": \"Link do Zgłoszenia\"\n\"Id\": \"ID\"\n\"Preview\": \"Zapowiedź\"\n\"Sort Order\": \"Porządek sortowania\"\n\"This field must be a number\": \"To pole musi być liczbą\"\n\"User\": \"Użytkownik\"\n\"Edit Group\": \"Edytuj grupę\"\n\"Group Status\": \"Status grupy\"\n\"Group is Active\": \"Grupa jest aktywna\"\n\"Add Group\": \"Dodaj grupę\"\n\"Contact number is invalid\": \"Numer kontaktowy jest nieprawidłowy\"\n\"Edit Agent\": \"Edytuj agenta\"\n\"No Privilege added, Please add Privilege(s) first !\": \"Nie dodano uprawnień. Najpierw dodaj uprawnienia!\"\n\"Edit Email Template\": \"Edytuj szablon wiadomości e-mail\"\n\"Edit Workflow\": \"Edytuj Workflow\"\n\"Save Workflow\": \"Zapisz Workflow\"\n\"Edit Ticket Type\": \"Edytuj typ zgłoszenia\"\n\"Add Ticket Type\": \"Dodaj typ zgłoszenia\"\n\"Date Released\": \"Data wydania\"\n\"Free\": \"Darmowy\"\n\"Premium\": \"Premium\"\n\"Installed\": \"Zainstalowano\"\n\"Installed Applications\": \"Zainstalowane aplikacje\"\n\"Apps Dashboard\": \"Panel aplikacji\"\n\"Dashboard\": \"Panel\"\n\"Nothing Interesting here\" : \"Nie ma tu nic ciekawego\"\n\"No Categories Added\" : \"Nie dodano żadnych kategorii\"\n\"Error : Something went wrong, please try again later\" : \"Błąd: coś poszło nie tak, spróbuj ponownie później\"\n\"ticket\": \"zgłoszenie\"\n\"Add Email Template\": \"Dodaj szablon wiadomości e-mail\"\n\"This field contain 100 characters only\": \"To pole zawiera tylko 100 znaków\"\n\"This field contain characters only\" : \"To pole zawiera tylko znaki\"\n\"Name length must not be greater than 200 !!\": \"Długość nazwy nie może przekraczać 200 znaków\"\n\"Warning! Correct all field values first!\": \"Popraw wartości pól.\"\n\"Warning ! This is not a valid request\": \"Ostrzeżenie ! To nie jest prawidłowe żądanie\"\n\"Success ! Tag removed successfully.\": \"Tag został pomyślnie usunięty.\"\n\"Success ! Tags Saved successfully.\": \"Tagi zostały zapisane pomyślnie.\"\n\"Success ! Revision restored successfully.\": \"Wersja została przywrócona pomyślnie.\"\n\"Success ! Categories updated successfully.\": \"Kategorie zostały zaktualizowane pomyślnie.\"\n\"Success ! Article Related removed successfully.\": \"Powiązany artykuł został pomyślnie usunięty.\"\n\"Success ! Article Related is already added.\": \"Powiązany artykuł jest już dodany.\"\n\"Success ! Cannot add self as relative article.\": \"Nie można dodać siebie jako artykułu względnego.\"\n\"Success ! Article Related updated successfully.\": \"Powiązany artykuł został pomyślnie zaktualizowany.\"\n\"Success ! Articles removed successfully.\": \"Artykuły zostały pomyślnie usunięte.\"\n\"Success ! Article status updated successfully.\": \"Status artykułu został zaktualizowany pomyślnie.\"\n\"Success ! Article star updated successfully.\": \"Gwiazdka artykułu została pomyślnie zaktualizowana.\"\n\"Success! Article updated successfully\": \"Artykuł został zaktualizowany pomyślnie\"\n\"Success ! Category sort  order updated successfully.\": \"Kolejność sortowania kategorii została pomyślnie zaktualizowana.\"\n\"Success ! Category status updated successfully.\": \"Status kategorii został zaktualizowany pomyślnie.\"\n\"Success ! Folders updated successfully.\": \"Foldery zostały zaktualizowane pomyślnie.\"\n\"Success ! Categories removed successfully.\": \"Kategorie zostały pomyślnie usunięte.\"\n\"Success ! Category updated successfully.\": \"Kategoria została zaktualizowana pomyślnie.\"\n\"Error ! Category is not exist.\": \"Błąd! Kategoria nie istnieje.\"\n\"Warning ! Customer Login disabled by admin.\": \"Ostrzeżenie ! Logowanie klienta wyłączone przez administratora.\"\n\"This Email is not registered with us.\": \"Ten e-mail nie jest u nas zarejestrowany.\"\n\"Your password has been updated successfully.\": \"Twoje hasło zostało poprawnie zaaktualizowane.\"\n\"Password dont match.\": \"Hasło nie pasuje.\"\n\"Error ! Profile image is not valid, please upload a valid format\": \"Błąd! Obraz profilu jest nieprawidłowy, prześlij prawidłowy format\"\n'Warning! Provide valid image file. (Recommened\": \"PNG, JPG or GIF Format).': 'Ostrzeżenie! Podaj prawidłowy plik obrazu. (Zalecany format „:” PNG, JPG lub GIF).'\n\"Success! Folder has been added successfully.\": \"Folder został pomyślnie dodany.\"\n\"Folder updated successfully.\": \"Folder został zaktualizowany pomyślnie.\"\n\"Success ! Folder status updated successfully.\": \"Status folderu został zaktualizowany pomyślnie.\"\n\"Error ! Folder is not exist.\": \"Błąd! Folder nie istnieje.\"\n\"Success ! Folder updated successfully.\": \"Folder został zaktualizowany pomyślnie.\"\n\"Error ! Folder does not exist.\": \"Błąd! Folder nie istnieje.\"\n\"Success ! Folder deleted successfully.\": \"Folder został pomyślnie usunięty.\"\n\"Warning ! Folder doesnt exists!\": \"Ostrzeżenie ! Folder nie istnieje!\"\n\"Warning ! Cannot create ticket, given email is blocked by admin.\": \"Ostrzeżenie ! Nie można utworzyć zgłoszenia, podany adres e-mail jest zablokowany przez administratora.\"\n\"Success ! Ticket has been created successfully.\": \"Zgłoszenie zostało pomyślnie utworzone.\"\n\"Warning ! Can not create ticket, invalid details.\": \"Ostrzeżenie ! Nie można utworzyć zgłoszenia, nieprawidłowe dane.\"\n\"Warning ! Post size can not exceed 25MB\": \"Ostrzeżenie ! Rozmiar posta nie może przekraczać 25 MB\"\n\"Create Ticket Request\": \"Utwórz Zgłoszenie\"\n\"Success ! Reply added successfully.\": \"Odpowiedź dodana pomyślnie.\"\n\"Warning ! Reply field can not be blank.\": \"Ostrzeżenie ! Pole odpowiedzi nie może być puste.\"\n\"Success ! Rating has been successfully added.\": \"Ocena została pomyślnie dodana.\"\n\"Warning ! Invalid rating.\": \"Ostrzeżenie ! Nieprawidłowa ocena.\"\n\"Error ! Can not add customer as a collaborator.\": \"Błąd! Nie można dodać klienta jako współpracownika.\"\n\"Success ! Collaborator added successfully.\": \"Współpracownik został dodany pomyślnie.\"\n\"Error ! Collaborator is already added.\": \"Błąd! Współpracownik jest już dodany.\"\n\"Success ! Collaborator removed successfully.\": \"Współpracownik został pomyślnie usunięty.\"\n\"Error ! Invalid Collaborator.\": \"Błąd! Nieprawidłowy współpracownik.\"\n\"An unexpected error occurred. Please try again later.\": \"Wystąpił nieoczekiwany błąd. Spróbuj ponownie później.\"\n\"Feedback saved successfully.\": \"Opinia została pomyślnie zapisana.\"\n\"Feedback updated successfully.\": \"Opinia została zaktualizowana pomyślnie.\"\n\"Invalid feedback provided.\": \"Podano nieprawidłową informację zwrotną.\"\n\"Article not found.\": \"Nie znaleziono artykułu.\"\n\"You need to login to your account before can perform this action.\": \"Aby wykonać tę czynność, musisz zalogować się na swoje konto.\"\n\"Warning! Please add valid Actions!\": \"Ostrzeżenie! Dodaj prawidłowe akcje!\"\n\"Warning! In Free Plan you can not change Events!\": \"Ostrzeżenie! W planie darmowym nie możesz zmieniać wydarzeń!\"\n\"Success! Prepared Response has been updated successfully.\": \"Przygotowana odpowiedź została pomyślnie zaktualizowana.\"\n\"Success! Prepared Response has been added successfully.\": \"Przygotowana odpowiedź została pomyślnie dodana.\"\n\"Warning  This is not a valid request\": \"Ostrzeżenie! To nie jest prawidłowe żądanie\"\n\"Use Default Colors\": \"Użyj kolorów domyślnych\"\n\"Masonry\": \"Masonry\"\n\"Popular Article\": \"Popularny artykuł\"\n\"Manage Ticket Custom Fields\": \"Zarządzaj niestandardowymi polami zgłoszeń\"\n\"Mail status:\": \"Status poczty:\"\n\"You dont have premission to edit this Prepared response\": \"Nie masz uprawnień, aby edytować tę przygotowaną odpowiedź\"\n\"Save Prepared Response\": \"Zapisz przygotowaną odpowiedź\"\n\"Success ! Prepared response removed successfully.\": \"Przygotowana odpowiedź została pomyślnie usunięta.\"\n\"Warning! You are not allowed to perform this action.\": \"Ostrzeżenie! Nie możesz wykonać tej czynności.\"\n\"Success! Workflow has been updated successfully.\": \"Workflow został pomyślnie zaktualizowany.\"\n\"Success! Workflow has been added successfully.\": \"Workflow został pomyślnie dodany.\"\n\"Success! Order has been updated successfully.\": \"Kolejność została zaktualizowana.\"\n\"Success! Workflow has been removed successfully.\": \"Workflow został pomyślnie usunięty.\"\n\"Mailbox successfully created.\": \"Skrzynka pocztowa została pomyślnie utworzona.\"\n\"Mailbox successfully updated.\": \"Skrzynka pocztowa została pomyślnie zaktualizowana.\"\n\"Warning ! Bad request !\": \"Ostrzeżenie! Błąd żądania.\"\n\"Error! Given current password is incorrect.\": \"Błąd! Podane aktualne hasło jest nieprawidłowe.\"\n\"Success ! Profile update successfully.\": \"Aktualizacja profilu powiodła się.\"\n\"Error ! User with same email is already exist.\": \"Błąd! Użytkownik z tym samym adresem e-mail już istnieje.\"\n\"Success ! Agent updated successfully.\": \"Agent został pomyślnie zaktualizowany.\"\n\"Success ! Agent removed successfully.\": \"Agent został pomyślnie usunięty.\"\n\"Warning ! You are allowed to remove account owners account.\": \"Ostrzeżenie ! Możesz usunąć konto właściciela konta.\"\n\"Error ! Invalid user id.\": \"Błąd! Nieprawidłowy identyfikator użytkownika.\"\n\"Success ! Filter has been saved successfully.\": \"Filtr został pomyślnie zapisany.\"\n\"Success ! Filter has been updated successfully.\": \"Filtr został pomyślnie zaktualizowany.\"\n\"Success ! Filter has been removed successfully.\": \"Filtr został pomyślnie usunięty.\"\n\"Please check your mail for password update.\": \"Sprawdź pocztę aby zmienić hasło.\"\n\"This Email address is not registered with us.\": \"Ten adres e-mail nie jest u nas zarejestrowany.\"\n\"Success ! Customer saved successfully.\": \"Klient został pomyślnie zapisany.\"\n\"Error ! User with same email already exist.\": \"Błąd! Użytkownik z tym adresem e-mail już istnieje.\"\n\"Success ! Customer information updated successfully.\": \"Informacje o kliencie zostały zaktualizowane pomyślnie.\"\n\"Success ! Customer updated successfully.\": \"Klient został pomyślnie zaktualizowany.\"\n\"Error ! Customer with same email already exist.\": \"Błąd! Klient z tym adresem e-mail już istnieje.\"\n\"unstarred Action Completed successfully\": \"Akcja bez gwiazdki została pomyślnie zakończona\"\n\"starred Action Completed successfully\": \"oznaczona gwiazdką Akcja Ukończona pomyślnie\"\n\"Success ! Customer removed successfully.\": \"Klient został pomyślnie usunięty.\"\n\"Error ! Invalid customer id.\": \"Błąd! Nieprawidłowy identyfikator klienta.\"\n\"Success! Template has been updated successfully.\": \"Szablon został pomyślnie zaktualizowany.\"\n\"Success! Template has been added successfully.\": \"Szablon został pomyślnie dodany.\"\n\"Success! Template has been deleted successfully.\": \"Szablon został pomyślnie usunięty.\"\n\"Warning! resource not found.\": \"Ostrzeżenie! Nie znaleziono zasobów.\"\n\"Warning! You can not remove predefined email template which is being used in workflow(s).\": \"Ostrzeżenie! Nie można usunąć predefiniowanego szablonu wiadomości e-mail, który jest używany w Workflow.\"\n\"Success ! Email settings are updated successfully.\": \"Ustawienia poczty e-mail zostały pomyślnie zaktualizowane.\"\n\"Success ! Group information updated successfully.\": \"Informacje o grupie zostały pomyślnie zaktualizowane.\"\n\"Success ! Group information saved successfully.\": \"Informacje o grupie zostały pomyślnie zapisane.\"\n\"Support Group removed successfully.\": \"Grupa wsparcia została pomyślnie usunięta.\"\n\"Success ! Privilege information saved successfully.\": \"Informacje o uprawnieniach zostały pomyślnie zapisane.\"\n\"Privilege updated successfully.\": \"Uprawnienia zostały zaktualizowane pomyślnie.\"\n\"Support Privilege removed successfully.\": \"Usunięto uprawnienia do pomocy technicznej.\"\n\"Success! Reply has been updated successfully.\": \"Odpowiedź została pomyślnie zaktualizowana.\"\n\"Success! Reply has been added successfully.\": \"Odpowiedź została pomyślnie dodana.\"\n\"Success! Saved Reply has been deleted successfully\": \"Zapisana odpowiedź została pomyślnie usunięta\"\n\"SwiftMailer configuration updated successfully.\": \"Konfiguracja SwiftMailer została pomyślnie zaktualizowana.\"\n\"Swiftmailer configuration removed successfully.\": \"Konfiguracja Swiftmailer została pomyślnie usunięta.\"\n\"Success ! Team information saved successfully.\": \"Informacje o Zespole zostały pomyślnie zapisane.\"\n\"Success ! Team information updated successfully.\": \"Informacje o zespole zostały pomyślnie zaktualizowane.\"\n\"Support Team removed successfully.\": \"Zespół pomocy został pomyślnie usunięty.\"\n\"Success! Reply has been added successfully\": \"Odpowiedź została pomyślnie dodana\"\n\"Success ! Thread updated successfully.\": \"Wątek został zaktualizowany pomyślnie.\"\n\"Error ! Reply field can not be blank.\": \"Błąd! Pole odpowiedzi nie może być puste.\"\n\"Success ! Thread removed successfully.\": \"Wątek został pomyślnie usunięty.\"\n\"Success ! Thread locked successfully\": \"Wątek został pomyślnie zamknięty\"\n\"Success ! Thread unlocked successfully\": \"Wątek został pomyślnie odblokowany\"\n\"Success ! Thread pinned successfully\": \"Wątek został odpięty\"\n\"Error ! Invalid thread.\": \"Błąd! Nieprawidłowy wątek.\"\n\"Could not create ticket, invalid details.\": \"Nie można utworzyć zgłoszenia, nieprawidłowe dane.\"\n\"Success ! Tag updated successfully.\": \"Tag został zaktualizowany pomyślnie.\"\n\"Error ! Customer can not be added as collaborator.\": \"Błąd! Klienta nie można dodać jako współpracownika.\"\n\"Success ! Tag unassigned successfully.\": \"Tag został usunięty.\"\n\"Success ! Tag added successfully.\": \"Tag został dodany pomyślnie.\"\n\"Please enter tag name.\": \"Wpisz nazwę tagu.\"\n\"Error ! Invalid tag.\": \"Błąd! Nieprawidłowy tag.\"\n\"Success ! Type removed successfully.\": \"Typ usunięty pomyślnie.\"\n\"Success ! Ticket to label removed successfully.\": \"Zgłoszenie do oznaczenia zostało pomyślnie usunięte.\"\n\"Unable to retrieve support team details\": \"Nie można pobrać szczegółów zespołu pomocy\"\n\"Ticket support group updated successfully\": \"Grupa obsługi zgłoszeń została pomyślnie zaktualizowana\"\n\"Unable to retrieve status details\": \"Nie można pobrać szczegółów stanu\"\n\"Insufficient details provided.\": \"Podano niewystarczające szczegóły.\"\n\"Error! Subject field is mandatory\": \"Błąd! Pole tematu jest obowiązkowe\"\n\"Error! Reply field is mandatory\": \"Błąd! Pole odpowiedzi jest obowiązkowe\"\n\"Success ! Ticket has been updated successfully.\": \"Zgłoszenie zostało pomyślnie zaktualizowane.\"\n\"Success ! Label updated successfully.\": \"Etykieta została zaktualizowana pomyślnie.\"\n\"Error ! Invalid label id.\": \"Błąd! Nieprawidłowy identyfikator etykiety.\"\n\"Success ! Label removed successfully.\": \"Etykieta została pomyślnie usunięta.\"\n\"Success ! Label created successfully.\": \"Etykieta została utworzona pomyślnie.\"\n\"Error ! Label name can not be blank.\": \"Błąd! Nazwa etykiety nie może być pusta.\"\n\"Success ! Ticket moved to trash successfully.\": \"Zgłoszenie zostało przeniesione do kosza.\"\n\"Success! Ticket type saved successfully.\": \"Typ zgłoszenia został pomyślnie zapisany.\"\n\"Success! Ticket type updated successfully.\": \"Typ zgłoszenia został pomyślnie zaktualizowany.\"\n\"Error! Ticket type with same name already exist\": \"Błąd! Typ zgłoszenia o tej samej nazwie już istnieje\"\n\"SAVE\": \"ZAPISZ\"\n\n# Successfully Pop-up/Notification Messages:\n\"Ticket is already assigned to agent\" : \"Bilet jest już przypisany do agenta\"\n\"Success ! Agent assigned successfully.\" : \"Sukces ! Pomyślnie przypisano agenta.\"\n\"Ticket status is already set\" : \"Status biletu jest już ustawiony\"\n\"Success ! Tickets status updated successfully.\" : \"Sukces ! Status biletów został pomyślnie zaktualizowany.\"\n\"Ticket priority is already set\" : \"Priorytet biletu jest już ustawiony\"\n\"Success ! Tickets priority updated successfully.\" : \"Sukces ! Pomyślnie zaktualizowano priorytet zgłoszeń.\"\n\"Ticket group is updated successfully\" : \"Grupa zgłoszeń została pomyślnie zaktualizowana\"\n\"Ticket is already assigned to group\" : \"Bilet jest już przypisany do grupy\"\n\"Success ! Tickets group updated successfully.\" : \"Sukces ! Grupa zgłoszeń została pomyślnie zaktualizowana.\"\n\"Ticket team is updated successfully\" : \"Zespół biletów został pomyślnie zaktualizowany\"\n\"Ticket is already assigned to team\" : \"Bilet jest już przypisany do zespołu\"\n\"Success ! Tickets team updated successfully.\" : \"Sukces ! Zespół Tickets został pomyślnie zaktualizowany.\"\n\"Ticket type is already set\" : \"Typ biletu jest już ustawiony\"\n\"Success ! Tickets type updated successfully.\" : \"Sukces ! Pomyślnie zaktualizowano typ biletów.\"\n\"Success ! Tickets label updated successfully.\" : \"Sukces ! Pomyślnie zaktualizowano etykietę biletów.\"\n\"Success ! Tickets added to label successfully.\" : \"Sukces ! Bilety zostały pomyślnie dodane do etykiety.\"\n\"Success ! Tickets moved to trashed successfully.\" : \"Sukces ! Bilety zostały pomyślnie przeniesione do kosza.\"\n\"Success ! Tickets removed successfully.\" : \"Sukces ! Bilety zostały pomyślnie usunięte.\"\n\"Success ! Tickets restored successfully.\" : \"Sukces ! Bilety zostały pomyślnie przywrócone.\"\n\"Unable to retrieve group details\" : \"Nie można pobrać szczegółów grupy\"\n\"Unable to retrieve team details\" : \"Nie można pobrać danych zespołu\"\n\"Tickets details have been updated successfully\": \"Szczegóły biletów zostały pomyślnie zaktualizowane\"\n\"Label added to ticket successfully\" : \"Pomyślnie dodano etykietę do biletu\"\t\t\t\t\n\"Label already added to ticket\" : \"Etykieta została już dodana do zgłoszenia\"\n\n#customer page\n\"Howdy!\": \"Cześć!\"\n\"New Ticket Request\": \"Nowe Zgłoszenie\"\n\"Ticket Requests\": \"Zgłoszenia\"\n\"Tickets have been updated successfully\": \"Zgłoszenia zostały pomyślnie zaktualizowane\"\n\"Please check your mail for password update\": \"Sprawdź pocztę pod kątem aktualizacji hasła\"\n\"This email address is not registered with us\": \"Ten adres e-mail nie jest u nas zarejestrowany\"\n\"You have already update password using this link if you wish to change password again click on forget password link here from login page\": \"Już zaktualizowałeś hasło za pomocą tego linku, jeśli chcesz ponownie zmienić hasło, kliknij 'Nie pamiętam hasła' tutaj na stronie logowania\"\n\"Your password has been successfully updated. Login using updated password\": \"Twoje hasło zostało pomyślnie zaktualizowane. Zaloguj się, używając zaktualizowanego hasła\"\n\"Please try again, The passwords do not match\": \"Spróbuj ponownie. Hasła się nie zgadzają\"\n\"Support Privilege removed successfully\": \"Usunięto uprawnienia do pomocy technicznej\"\n\"Success! Saved Reply has been deleted successfully.\": \"Zapisana odpowiedź została pomyślnie usunięta.\"\n\"SwiftMailer configuration created successfully.\": \"Konfiguracja SwiftMailer została utworzona pomyślnie.\"\n\"No swiftmailer configurations found for mailer id:\": \"Nie znaleziono konfiguracji Swiftmailer dla identyfikatora poczty:\"\n\"Reply content cannot be left blank.\": \"Treść odpowiedzi nie może być pusta.\"\n\"Reply added to the ticket and forwarded successfully.\": \"Odpowiedź dodana do zgłoszenia i przekazana pomyślnie.\"\n\"Success ! Thread pinned successfully.\": \"Wątek został przypięty pomyślnie.\"\n\"Success ! unpinned removed successfully.\": \"Sukces ! Odpięte i usunięte pomyślnie.\"\n\"Unable to retrieve priority details\": \"Nie można odzyskać szczegółów priorytetu\"\n\"Ticket support team updated successfully\": \"Zespół obsługi zgłoszeń został zaktualizowany pomyślnie\"\n\"Ticket assigned to support group \": \"Zgłoszenie przypisane do grupy wsparcia \"\n\"Mailbox configuration removed successfully.\": \"Konfiguracja skrzynki pocztowej została pomyślnie usunięta.\"\n\"visit our website\": \"Odwiedź naszą stronę internetową\"\n\n\n\"Cookie Usage Policy\": \"Zasady korzystania z plików cookie\"\n\"cookie\": \"ciastko\"\n\"cookies\": \"ciasteczka\"\n\"HELP\": \"WSPARCIE\"\n\"Home\": \"Strona Główna\"\n\"Cookie Policy\": \"Polityka Cookie\"\n\"Prev\": \"Poprzednie\"\n\"Ticket query message\": \"Komunikat z zapytaniem o zgłoszenie\"\n\"Select type\": \"Wybierz typ\"\n\"Search KnowledgeBase\": \"Przeszukaj bazę wiedzy\"\n\"You can't merge an account with itself.\": \"Nie możesz połączyć konta ze sobą.\"\n\"Edit Profile\": \"Edytuj profil\"\n\"Customer Login\": \"Login klienta\"\n\"Contact Us\": \"Skontaktuj się z nami\"\n\"If you have ever contacted our support previously, your account would have already been created.\": \"Jeśli kiedykolwiek wcześniej skontaktowałeś się z naszym działem pomocy, Twoje konto zostałoby już utworzone.\"\n\"support\": \"wsparcie\"\n\"HelpDesk\": \"HelpDesk\"\n\"Enter search keyword\": \"Wpisz szukane słowo\"\n\"Browse via Folders\": \"Przeglądaj foldery\"\n\"Looking for something that is queried generally? Choose a relevant folder from below to explore possible solutions\": \"Szukasz czegoś, o co ogólnie pytano? Wybierz odpowiedni folder poniżej, aby sprawdzić możliwe rozwiązania\"\n\"Unable to find an answer?\": \"Nie możesz znaleźć odpowiedzi?\"\n\"Looking for anything specific article which resides in general queries? Just browse the various relevant folders and categories and then you will find the desired article.\": \"Szukasz konkretnego artykułu? Po prostu przejrzyj różne odpowiednie foldery i kategorie, a znajdziesz żądany artykuł.\"\n\"Popular Articles\": \"Popularne Artykuły\"\n\"Here are some of the most popular articles, which helped number of users to get their queries and questions resolved.\": \"Oto niektóre z najpopularniejszych artykułów, które pomogły wielu użytkownikom w rozwiązaniu ich problemów.\"\n\"Browse via Categories\": \"Przeglądaj według kategorii\"\n\"Looking for something specific? Choose a relevant category from below to explore possible solutions\": \"Szukasz czegoś konkretnego? Wybierz odpowiednią kategorię poniżej, aby poznać możliwe rozwiązania\"\n\"No Categories Found!\": \"Nie znaleziono kategorii!\"\n\"Powered by\": \"Obsługiwane przez\"\n\"Powered by %uvdesk%, an open-source project by %webkul%.\": \"Obsługiwane przez %uvdesk%, projekt open source autorstwa %webkul%.\"\n\n#forgotpassword\n\"Forgot Password\": \"Zapomniałeś hasła\"\n\"Enter your email address and we will send you an email with instructions to update your login credentials.\": \"Wpisz swój adres e-mail, a wyślemy Ci wiadomość e-mail z instrukcjami dotyczącymi aktualizacji danych logowania.\"\n\"Send Mail\": \"Wyślij maila\"\n\"Sign In to %websitename%\": \"Zaloguj się do %websitename%\"\n\"Enter your name\": \"Wpisz swoje imię\"\n\"Enter your email\": \"Wprowadź swój email\"\n\"Learn more about %deliveryStatus%.\": \"Dowiedz się więcej o %deliveryStatus%.\"\n\"To know more about how our privacy policy works, please %websiteLink%.\": \"Aby dowiedzieć się więcej o tym, jak działa nasza polityka prywatności, %websiteLink%.\"\n\"Some of our site pages utilize %cookies% and other tracking technologies. A %cookie% is a small text file that may be used, for example, to collect information about site activity. Some cookies and other technologies may serve to recall personal information previously indicated by a site user. You may block cookies, or delete existing cookies, by adjusting the appropriate setting on your browser. Please consult the %help% menu of your browser to learn how to do this. If you block or delete %cookies% you may find the usefulness of our site to be impaired.\": \"Niektóre strony naszej witryny wykorzystują %cookie% i inne technologie śledzenia. %cookie% to mały plik tekstowy, który może służyć na przykład do zbierania informacji o aktywności na stronie. Niektóre pliki cookie i inne technologie mogą służyć do przywoływania danych osobowych wskazanych wcześniej przez użytkownika witryny. Możesz zablokować pliki cookie lub usunąć istniejące pliki cookie, dostosowując odpowiednie ustawienia w swojej przeglądarce. Zapoznaj się z menu %help% swojej przeglądarki, aby dowiedzieć się, jak to zrobić. Jeśli zablokujesz lub usuniesz %cookies%, może to pogorszyć użyteczność naszej strony.\"\n\"This field contain maximum 40 charectures.\": \"To pole zawiera maksymalnie 40 znaków.\"\n\"This field contain maximum 50 charectures.\": \"To pole zawiera maksymalnie 50 znaków.\"\n#misc\n\"Time\": \"Czas\"\n\"Links\": \"Linki\"\n\"Broadcast Message\": \"Wiadomość rozgłoszeniowa\"\n\"Wide Logo\": \"Szerokie logo\"\n\"Upload an Image (200px x 48px) in</br> PNG or JPG Format\": \"Wyślij obraz(200px x 48px, PNG lub JPG)\"\n\"It will be shown as Logo on Knowledgebase and Helpdesk\": \"Będzie wyświetlane jako Logo w Bazie wiedzy i Helpdesku\"\n\"Website Status\": \"Stan witryny internetowej\"\n\"Enable front end website and knowledgebase for customer(s)\": \"Włącz witrynę internetową i bazę wiedzy dla klientów\"\n\"Brand Color\": \"Kolor marki\"\n\"Page Background Color\": \"Kolor tła strony\"\n\"Header Background Color\": \"Kolor tła nagłówka\"\n\"Banner Background Color\": \"Kolor tła banera\"\n\"Page Link Color\": \"Kolor łącza do strony\"\n\"Page Link Hover Color\": \"Kolor odnośnika do strony\"\n\"Article Text Color\": \"Kolor tekstu artykułu\"\n\"Tag Line\": \"Slogan\"\n\"Hi! how can we help?\": \"Cześć! jak możemy ci pomóc?\"\n\"Layout \": \"Układ\"\n\"Ticket Create Option\": \"Opcja tworzenia zgłoszeń\"\n\"Login Required To Create Tickets\": \"Do tworzenia zgłoszeń wymagane jest zalogowanie się\"\n\"Remove Customer Login/Signin Button\": \"Usuń przycisk logowania klienta\"\n\"Disable Customer Login\": \"Wyłącz logowanie klienta\"\n\"Meta Description (Recommended)\": \"Metaopis (zalecany)\"\n\"Meta Keywords (Recommended)\": \"Słowa kluczowe meta (zalecane)\"\n\"Header Link\": \"Link do nagłówka\"\n\"URL (with http:// or https://)\": \"URL (z http:// lub https://)\"\n\"Footer Link\": \"Link do stopki\"\n\"Custom CSS (Optional)\": \"Niestandardowy CSS (opcjonalnie)\"\n\"It will be add to the frontend knowledgebase only\": \"Zostanie dodany tylko do frontendowej bazy wiedzy\"\n\"Custom Javascript (Optional)\": \"Niestandardowy JavaScript (opcjonalnie)\"\n\"Broadcast message content to show on helpdesk\": \"Transmituj treść wiadomości do wyświetlenia w helpdesku\"\n\"From\": \"Od\"\n\"Time duration between which message will be displayed(if applicable)\": \"Czas między wyświetleniem wiadomości (jeśli dotyczy)\"\n\"Broadcasting Status\": \"Stan nadawania\"\n\"Broadcasting is Active\": \"Nadawanie jest aktywne\"\n\"Choose a default company timezone\": \"Wybierz domyślną strefę czasową firmy\"\n\"Date Time Format\": \"Format daty i godziny\"\n\"Choose a format to convert date to specified date time format\": \"Wybierz format, aby przekonwertować datę na określony format daty i godziny\"\n\"An empty file is not allowed.\": \"Pusty plik jest niedozwolony.\"\n\"File Signed in as\": \"Zalogowany jako\"\n\"Rate Support\": \"Oceń wsparcie\"\n\"I am very Sad\": \"Jestem bardzo niezadowolony/a\"\n\"I am Sad\": \"Jestem niezadowolony/a\"\n\"I am Neutral\": \"Nie mam zdania\"\n\"I am Happy\": \"Jestem zadowolony/a\"\n\"I am Very Happy\": \"Jestem bardzo zadowolony/a\"\n\"Kudos\": \"sława\"\n\"kudos\": \"sława\"\n\"Very Sad\": \"Bardzo smutny\"\n\"Sad\": \"Smutny\"\n\"Neutral\": \"Neutralny\"\n\"Happy\": \"Szczęśliwy\"\n\"Very Happy\": \"Bardzo szczęśliwy\"\n\"Star(s)\": \"Gwiazdki\"\n\"Warning ! Swiftmailer not working. An error has occurred while sending emails!\" : \"Ostrzeżenie ! Swiftmailer nie działa. Wystąpił błąd podczas wysyłania e-maili!\"\n\"Low\": \"Niski\"\n\"Medium\": \"Średni\"\n\"High\": \"Wysoki\"\n\"Urgent\": \"Pilny\"\n\"low\": \"niski\"\n\"medium\": \"średni\"\n\"high\": \"wysoki\"\n\"urgent\": \"pilny\"\n\"Sort By:\": \"Sortuj:\"\n\"SwiftMailer\": \"SwiftMailer\"\n\"Total Reply\": \"Ilość odpowiedzi\"\n\"No results available\": \"Brak Wyników\"\n\"Status:\": \"Status:\"\n\"CC/BCC\": \"CC/BCC\"\n\"Confirm Close Ticket\": \"Potwierdź zamknięcie zgłoszenia\"\n\"Are you sure? You want to reply and close ticket.\": \"Czy jesteś pewny że chcesz odpowiedzieć i zamknąć zgłoszenie?\"\n\"Please enter a valid email\": \"Proszę podać prawidłowy adres email\"\n\"Helpdesk Search\": \"Wyniki wyszukiwania\"\n\"Search results for %search%\": \"Wyniki dla szukanej frazy: %search%\"\n\"No Article Found!\": \"Brak artykułów.\"\n\"Choose your default timeformat\": \"Wybierz domyślny format czasu\"\n\"File size must not be greater than 200KB !!\": \"Plik nie może być większy niż 200KB\"\n\"Please upload valid Image file (Only JPEG, JPG, PNG allowed)!!\": \"Nie prawidłowy format pliku. Obsługiwane formaty: JPEG, JPG, PNG.\"\n\"Provide a valid url(with protocol)\": \"Podaj poprawny url(z protokołem)\"\n\"This field should contains maximum 300 characters.\": \"To pole powinno zaiwerać maksymalnie 300 znaków.\"\n\"Cram-MD5\": \"Cram-MD5\"\n\"user\": \"Użytkownik\"\n\"Invalid credentials.\": \"Nieprawidłowe dane uwierzytelniające\"\n\"Success ! Project cache cleared successfully.\": \"Powodzenie ! Pamięć podręczna projektu została pomyślnie wyczyszczona.\"\n\"clear cache\": \"Wyczyść pamięć podręczną\"\n\"Last Updated\": \"Ostatnio zaktualizowany\"\n\"Error! Something went wrong.\": \"Błąd! Coś poszło nie tak.\"\n\"We were not able to find the page you are looking for.\": \"Nie udało nam się znaleźć strony, której szukasz.\"\n\"Page not found\": \"Strona nie znaleziona\"\n\"Forbidden\": \"Zabroniony\"\n\"You don’t have the necessary permissions to access this Web page :(\": \"Nie masz niezbędnych uprawnień, aby uzyskać dostęp do tej strony internetowej :(\"\n\"Internal server error\": \"Wewnętrzny błąd serwera\"\n\"Our system has goofed up for a while, but good part is it won't last long\": \"Nasz system trochę się pomylił, ale dobrą stroną jest to, że nie potrwa długo\"\n\"Unknown Error\": \"Nieznany błąd\"\n\"We are quite confused about how did you land here:/\": \"Jesteśmy dość zdezorientowani, jak tu wylądowałeś :/\"\n\"Few of the links which may help you to get back on the track -\": \"Kilka linków, które mogą pomóc Ci wrócić na tor -\"\n\n#Microsoft apps:\n\"Microsoft Apps\": \"Aplikacje Microsoftu\"\n\"Add a Microsoft app\": \"Dodaj aplikację firmy Microsoft\"\n\"Enable\": \"Włączony\"\n\"App Name\": \"Nazwa aplikacji\"\n\"Tenant Id\": \"Identyfikator najemcy\"\n\"Client Id\": \"Identyfikator klienta\"\n\"Client Secret\": \"Sekret klienta\"\n\"NEW APP:\": \"NOWA APLIKACJA\"\n\"UPDATE APP\": \"AKTUALIZUJ APLIKACJĘ\"\n\"Guide on creating a new app in Azure Active Directory:\": \"Przewodnik po tworzeniu nowej aplikacji w Azure Active Directory:\"\n\"To add a new Microsoft App to your azure active directory, follow the steps as given below:\": \"Aby dodać nową aplikację firmy Microsoft do usługi Azure Active Directory, wykonaj następujące czynności:\"\n\"Go to Azure Active Directory -> App registerations\": \"Przejdź do Azure Active Directory -> Rejestracje aplikacji\"\n\"Disable\": \"Wyłączyć\"\n\"Please enter a valid name for your app.\": \"Wprowadź prawidłową nazwę swojej aplikacji.\"\n\"Please enter a valid tenant id.\": \"Wprowadź prawidłowy identyfikator najemcy.\"\n\"Please enter a valid client id.\": \"Wprowadź prawidłowy identyfikator klienta.\"\n\"Please enter a valid client secret.\": \"Wprowadź prawidłowy klucz tajny klienta.\"\n\"Microsoft app settings\": \"Ustawienia aplikacji Microsoftu\"\n\"Unverified\": \"Niesprawdzony\"\n\"Microsoft app has been updated successfully.\": \"Aplikacja Microsoft została pomyślnie zaktualizowana.\"\n\"No microsoft apps found\": \"Nie znaleziono aplikacji firmy Microsoft\"\n\"Microsoft app settings could not be verifired successfully. Please check your settings and try again later.\": \"Nie udało się pomyślnie zweryfikować ustawień aplikacji firmy Microsoft. Sprawdź ustawienia i spróbuj ponownie później.\"\n\"Microsoft app has been integrated successfully.\": \"Aplikacja firmy Microsoft została pomyślnie usunięta.\"\n\"Microsoft app has been deleted successfully.\": \"Aplikacja firmy Microsoft została pomyślnie zintegrowana.\"\n\"Verified\": \"Zweryfikowano\"\n\n\"Create a New Registration\": \"Utwórz nową rejestrację\"\n\"Enter your app details as following:\": \"Wprowadź dane aplikacji w następujący sposób:\"\n\"App Name: Enter an app name to easily help you identify its purpose\": \"Nazwa aplikacji: Wprowadź nazwę aplikacji, aby łatwo zidentyfikować jej przeznaczenie\"\n\"Supported Account Types: Select whichever option works the best for you (Recommended: Accounts in any organizational directory and personal Microsoft accounts)\": \"Obsługiwane typy kont: wybierz opcję, która najbardziej Ci odpowiada (zalecane: konta w dowolnym katalogu organizacyjnym i osobiste konta Microsoft)\"\n\"Redirect URI:\": \"URI przekierowania:\"\n\"Select Platform: Web\": \"Wybierz platformę: Sieć\"\n\"Enter the following redirect uri:\": \"Wprowadź następujący adres URL przekierowania:\"\n\"Proceed to create your application\": \"Kontynuuj tworzenie aplikacji\"\n\"Once your app has been created, in your app overview section, continue with adding a client credential by clicking on \\\"Add a certificate or secret\\\"\": \"Po utworzeniu aplikacji w sekcji przeglądu aplikacji kontynuuj dodawanie poświadczeń klienta, klikając „Dodaj certyfikat lub klucz tajny\"\n\"Create a new client secret\": \"Utwórz nowy klucz tajny klienta\"\n\"Enter a description as per your preference to help identify the purpose of this client secret\": \"Wprowadź opis zgodnie ze swoimi preferencjami, aby pomóc zidentyfikować cel tego klucza tajnego klienta\"\n\"Choose an expiration time as per your preference\": \"Wybierz czas wygaśnięcia zgodnie z własnymi preferencjami\"\n\"Proceed to add your client secret\": \"Kontynuuj, aby dodać klucz tajny klienta\"\n\"Copy the client secret value which will be needed later and cannot be viewed again\": \"Skopiuj klucz tajny klienta, który będzie potrzebny później i nie będzie można go ponownie wyświetlić\"\n\"Navigate to API permissions\": \"Przejdź do uprawnień interfejsu API\"\n\"Click on \\\"Add a permission\\\" to add a new api permission. Add the following delegated permissions by selecting Microsoft APIs > Microsoft Graph > Delegate Permissions\": \"Kliknij Dodaj uprawnienie, aby dodać nowe uprawnienie interfejsu API. Dodaj następujące delegowane uprawnienia, wybierając interfejsy API firmy Microsoft > Microsoft Graph > deleguj uprawnienia\"\n\"Navigate to your app overview section\": \"Przejdź do sekcji przeglądu aplikacji\"\n\"Copy the Application (Client) Id\": \"Skopiuj identyfikator aplikacji (klienta).\"\n\"Copy the Directory (Tenant) Id\": \"Skopiuj identyfikator katalogu (dzierżawy).\"\n\"Enter your client id, tenant id, and client secret in settings above as required.\": \"Wprowadź swój identyfikator klienta, identyfikator dzierżawy i klucz tajny klienta w ustawieniach powyżej zgodnie z wymaganiami.\"\n\"offline_access\": \"dostęp_w trybie offline\"\n\"openid\": \"openid\"\n\"profile\": \"profil\"\n\"User.Read\": \"Użytkownik.Przeczytaj\"\n\"IMAP.AccessAsUser.All\": \"IMAP.AccessAsUser.All\"\n\"SMTP.Send\": \"SMTP.Wyślij\"\n\"POP.AccessAsUser.All\": \"POP.AccessAsUser.All\"\n\"Mail.Read\": \"Poczta.Czytaj\"\n\"Mail.ReadBasic\": \"Mail.ReadBasic\"\n\"Mail.Send\": \"Poczta.Wyślij\"\n\"Mail.Send.Shared\": \"Poczta.Wyślij.Udostępnione\"\n\"Add App\": \"Dodaj aplikację\"\n\"New App\": \"Nowa aplikacja\"\n\n#Mailbox option:\n\"Disable email delivery\": \"Wyłącz dostarczanie e-maili\"\n\"Use as default mailbox for sending emails\": \"Użyj jako domyślnej skrzynki pocztowej do wysyłania wiadomości e-mail\"\n\"Inbound Emails\": \"Przychodzące wiadomości e-mail\"\n\"Manage how you wish to retrieve and process emails from your mailbox.\": \"Zarządzaj sposobem pobierania i przetwarzania wiadomości e-mail ze swojej skrzynki pocztowej.\"\n\"Outbound Emails\": \"Wychodzące wiadomości e-mail\"\n\"Manage how you wish to send emails from your mailbox.\": \"Zarządzaj sposobem wysyłania e-maili ze swojej skrzynki pocztowej.\"\n\n\"Marketing Modules\" : \"Moduły marketingowe\"\n\"New Marketing Module\": \"Nowy moduł marketingowy\"\n\"Marketing Module\": \"Moduł marketingowy\""
  },
  {
    "path": "translations/messages.pt_BR.yml",
    "content": "\"Signed in as\": \"Autenticado como\"\n\"Your Profile\": \"Seu Perfil\"\n\"Create Ticket\": \"Criar Chamado\"\n\"Create Agent\": \"Criar Agente\"\n\"Create Customer\": \"Criar Cliente\"\n\"Sign Out\": \"Sair\"\n\"Default Language (Optional)\": \"Idioma Padrão (Opcional)\"\n\"Username/Email\": \"Usuário/Email\"\n\"create new\": \"criar novo\"\n\"Ticket Information\": \"Informações do Chamado\"\n\"CC/BCC\": \"CC/BCC\"\n\"Success! Label created successfully.\": \"Sucesso! Etiqueta criada com sucesso.\"\n\"Success! Label removed successfully.\": \"Sucesso! Etiqueta removida com sucesso.\"\n\"Reports\": \"Relatórios\"\n\"Rating\": \"Avaliação\"\n\"Kudos Rating\": \"Avaliação de Aplausos\"\n\"Remove profile picture\": \"Remover foto do perfil\"\n\"Success ! Profile updated successfully.\": \"Sucesso! Perfil atualizado com sucesso.\"\n\"Howdy\": \"Olá\"\n\"Form successfully updated.\": \"Formulário atualizado com sucesso.\"\n\"NEW FORM\": \"NOVO FORMULÁRIO\"\n\"Text Box\": \"Caixa de Texto\"\n\"Text Area\": \"Área de Texto\"\n\"Select\": \"Selecionar\"\n\"Radio\": \"Botão de Opção\"\n\"Checkbox\": \"Caixa de Seleção\"\n\"Date\": \"Data\"\n\"Both Date and Time\": \"Data e Hora\"\n\"Choose a status\": \"Escolha um status\"\n\"Choose a group\": \"Escolha um grupo\"\n\"Choose your default timeformat\": \"Escolha o formato de hora padrão\"\n\"Can manage Group's Saved Reply\": \"Pode gerenciar Respostas Salvas do Grupo\"\n\"Can manage agent activity\": \"Pode gerenciar atividade do agente\"\n\"Slug is the url identity of this article. We will help you to create valid slug at time of typing.\": \"Slug é a identidade da URL deste artigo. Ajudaremos você a criar um slug válido enquanto digita.\"\n\"The URL for this article\": \"A URL para este artigo\"\n\"Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A page's title tag and meta description are usually shown whenever that page appears in search engine results\": \"As tags de título e as meta descrições são trechos de código HTML no cabeçalho de uma página da web. Elas ajudam os motores de busca a entender o conteúdo de uma página. O título e a descrição meta de uma página geralmente são exibidos sempre que essa página aparece nos resultados de pesquisa.\"\n\"comma separated (,)\": \"separado por vírgulas (,)\"\n\"Article Title\": \"Título do Artigo\"\n\"Start typing few charactors and add set of relevant article from the list\": \"Comece a digitar alguns caracteres e adicione um conjunto de artigos relevantes da lista\"\n\"Success! Announcement data saved successfully.\": \"Sucesso! Dados do anúncio salvos com sucesso.\"\n\"Success! Category has been added successfully.\": \"Sucesso! Categoria adicionada com sucesso.\"\n\"Success ! Agent added successfully.\": \"Sucesso! Agente adicionado com sucesso.\"\n\"Success! Privilege information saved successfully.\": \"Sucesso! Informações de privilégio salvas com sucesso.\"\n\"Edit Prepared Response\": \"Editar Resposta Preparada\"\n\"Success! Type removed successfully.\": \"Sucesso! Tipo removido com sucesso.\"\n\"No results available\": \"Nenhum resultado disponível\"\n\"Success ! Prepared Response applied successfully.\": \"Sucesso! Resposta Preparada aplicada com sucesso.\"\n\"Note added to ticket successfully.\": \"Nota adicionada ao chamado com sucesso.\"\n\"Ticket status update to Spam\": \"Status do chamado atualizado para Spam\"\n\"Ticket status update to Closed\": \"Status do chamado atualizado para Fechado\"\n\"Success! Label updated successfully.\": \"Sucesso! Etiqueta atualizada com sucesso.\"\n\"Success ! Helpdesk details saved successfully\": \"Sucesso! Detalhes do Helpdesk salvos com sucesso\"\n\"Can manage marketing announcement\": \"Pode gerenciar anúncios de marketing\"\n\"User Forgot Password\": \"Usuário Esqueceu a Senha\"\n\"Agent Deleted\": \"Agente Excluído\"\n\"Agent Update\": \"Atualização do Agente\"\n\"Customer Update\": \"Atualização do Cliente\"\n\"Customer Deleted\": \"Cliente Excluído\"\n\"Agent Updated\": \"Agente Atualizado\"\n\"Agent Reply\": \"Resposta do Agente\"\n\"Collaborator Added\": \"Colaborador Adicionado\"\n\"Collaborator Reply\": \"Resposta do Colaborador\"\n\"Customer Reply\": \"Resposta do Cliente\"\n\"Ticket Deleted\": \"Chamado Excluído\"\n\"Group Updated\": \"Grupo Atualizado\"\n\"Note Added\": \"Nota Adicionada\"\n\"Priority Updated\": \"Prioridade Atualizada\"\n\"Status Updated\": \"Status Atualizado\"\n\"Team Updated\": \"Equipe Atualizada\"\n\"Thread Updated\": \"Thread Atualizada\"\n\"Type Updated\": \"Tipo Atualizado\"\n\"From Email\": \"Remetente\"\n\"To Email\": \"Destinatário\"\n\"Is Equal To\": \"É Igual A\"\n\"Is Not Equal To\": \"Não É Igual A\"\n\"Contains\": \"Contém\"\n\"Does Not Contain\": \"Não Contém\"\n\"Starts With\": \"Começa Com\"\n\"Ends With\": \"Termina Com\"\n\"Before On\": \"Antes Em\"\n\"After On\": \"Após\"\n\"Mail To User\": \"Enviar E-mail ao Usuário\"\n\"Transfer Tickets\": \"Transferir Chamados\"\n\"Mail To Customer\": \"Enviar E-mail ao Cliente\"\n\"Permanently delete from Inbox\": \"Excluir permanentemente da Caixa de Entrada\"\n\"Agent Activity\": \"Atividade do Agente\"\n\"Report From\": \"Relatório de\"\n\"Search Agent\": \"Buscar Agente\"\n\"Agent Last Reply\": \"Última Resposta do Agente\"\n\"View analytics and insights to serve a better experience for your customers\": \"Visualize análises e insights para oferecer uma melhor experiência aos seus clientes\"\n\"Marketing Announcement\": \"Anúncio de Marketing\"\n\"Advertisment\": \"Publicidade\"\n\"Announcement\": \"Anúncio\"\n\"New Announcement\": \"Novo Anúncio\"\n\"Add Announcement\": \"Adicionar Anúncio\"\n\"Edit Announcement\": \"Editar Anúncio\"\n\"Promo Text\": \"Texto Promocional\"\n\"Promo Tag\": \"Etiqueta Promocional\"\n\"Choose a promo tag\": \"Escolha uma etiqueta promocional\"\n\"Tag-Color\": \"Cor da Etiqueta\"\n\"Tag background color\": \"Cor de fundo da Etiqueta\"\n\"Link Text\": \"Texto do Link\"\n\"Link URL\": \"URL do Link\"\n\"Apps\": \"Aplicativos\"\n\"Integrate apps as per your needs to get things done faster than ever\": \"Instale novos aplicativos personalizados para aumentar sua produtividade - <a href='https://store.webkul.com/UVdesk/UVdesk-Open-Source.html' style='font-weight: bold' target='_blank'>Explore agora</a>\"\n\"Explore Apps\": \"Explorar Aplicativos\"\n\"Form Builder\": \"Construtor de Formulários\"\n\"Knowledgebase\": \"Base de Conhecimento\"\n\"Knowledgebase is a source of rigid and complex information which helps Customers to help themselves\": \"A Base de Conhecimento é uma fonte de informações úteis que ajuda os clientes a se ajudarem.\"\n\"Articles\": \"Artigos\"\n\"Categories\": \"Categorias\"\n\"Folders\": \"Pastas\"\n\"FOLDERS\": \"PASTAS\"\n\"Productivity\": \"Produtividade\"\n\"Automate your processes by creating set of rules and presets to respond faster to the tickets\": \"Automatize seus processos criando regras e predefinições para responder mais rapidamente aos chamados.\"\n\"Prepared Responses\": \"Respostas Preparadas\"\n\"Saved Replies\": \"Respostas Salvas\"\n\"Edit Saved Reply\": \"Editar Resposta Salva\"\n\"Ticket Types\": \"Tipos de Chamados\"\n\"Workflows\": \"Fluxos de Trabalho\"\n\"Settings\": \"Configurações\"\n\"Manage your Brand Identity, Company Information and other details at a glance\": \"Gerencie sua Identidade de Marca, Informações da Empresa e outros detalhes facilmente.\"\n\"Branding\": \"Branding\"\n\"Custom Fields\": \"Campos Personalizados\"\n\"Email Settings\": \"Configurações de E-mail\"\n\"Email Templates\": \"Modelos de E-mail\"\n\"Mailbox\": \"Caixa de Correio\"\n\"Spam Settings\": \"Configurações de Spam\"\n\"Swift Mailer\": \"Swift Mailer\"\n\"Tags\": \"Etiquetas\"\n\"Users\": \"Usuários\"\n\"Control your Groups, Teams, Agents and Customers\": \"Controle seus Grupos, Equipes, Agentes e Clientes\"\n\"Agents\": \"Agentes\"\n\"Customers\": \"Clientes\"\n\"Groups\": \"Grupos\"\n\"Privileges\": \"Privilégios\"\n\"Teams\": \"Equipes\"\n\"Applications\": \"Aplicativos\"\n\"ECommerce Order Syncronization\": \"Sincronização de Pedidos de eCommerce\"\n\"Import ecommerce order details to your support tickets from different available platforms\": \"Importe os detalhes dos pedidos de eCommerce para seus chamados de suporte a partir de diferentes plataformas disponíveis.\"\n\"Search\": \"Buscar\"\n\"Sort By\": \"Ordenar Por\"\n\"Sort By:\": \"Ordenar Por:\"\n\"Status\": \"Status\"\n\"Created At\": \"Criado Em\"\n\"Name\": \"Nome\"\n\"All\": \"Todos\"\n\"Published\": \"Publicado\"\n\"Draft\": \"Rascunho\"\n\"New Folder\": \"Nova Pasta\"\n\"Create Knowledgebase Folder\": \"Criar Pasta de Base de Conhecimento\"\n\"You did not add any folder to your Knowledgebase yet, Create your first Folder and start adding Categories/Articles to make your customers help themselves.\": \"Você ainda não adicionou nenhuma pasta à sua Base de Conhecimento. Crie sua primeira pasta e comece a adicionar categorias/artigos para que seus clientes possam se ajudar.\"\n\"Clear Filters\": \"Limpar Filtros\"\n\"Back\": \"Voltar\"\n\"Open\": \"Aberto\"\n\"Pending\": \"Pendente\"\n\"Answered\": \"Respondido\"\n\"Resolved\": \"Resolvido\"\n\"Closed\": \"Fechado\"\n\"Spam\": \"Spam\"\n\"New\": \"Novo\"\n\"UnAssigned\": \"Não Atribuído\"\n\"UnAnswered\": \"Não Respondido\"\n\"My Tickets\": \"Meus Chamados\"\n\"Starred\": \"Com Estrela\"\n\"Trashed\": \"Na Lixeira\"\n\"New Label\": \"Nova Etiqueta\"\n\"Tickets\": \"Chamados\"\n\"Ticket Id\": \"ID do Chamado\"\n\"Last Replied\": \"Última Resposta\"\n\"Assign To\": \"Atribuir A\"\n\"After Reply\": \"Após Resposta\"\n\"Customer Email\": \"E-mail do Cliente\"\n\"Customer Name\": \"Nome do Cliente\"\n\"Assets Visibility\": \"Visibilidade dos Recursos\"\n\"Channel/Source\": \"Canal/Fonte\"\n\"Channel\": \"Canal\"\n\"Website\": \"Website\"\n\"Timestamp\": \"Carimbo de Data/Hora\"\n\"TimeStamp\": \"Carimbo de Data/Hora\"\n\"Team\": \"Equipe\"\n\"Type\": \"Tipo\"\n\"Replies\": \"Respostas\"\n\"Agent\": \"Agente\"\n\"ID\": \"ID\"\n\"Subject\": \"Assunto\"\n\"Last Reply\": \"Última Resposta\"\n\"Filter View\": \"Visualizar Filtros\"\n\"Please select CAPTCHA\": \"Por favor, selecione o CAPTCHA\"\n\"Warning ! Please select correct CAPTCHA !\": \"Falha no CAPTCHA, tente novamente\"\n\"reCAPTCHA Setting\": \"Configuração do reCAPTCHA\"\n\"reCAPTCHA Site Key\": \"Chave do Site do reCAPTCHA\"\n\"reCAPTCHA Secret key\": \"Chave Secreta do reCAPTCHA\"\n\"reCAPTCHA Status\": \"Status do reCAPTCHA\"\n\"reCAPTCHA is Active\": \"reCAPTCHA está Ativo\"\n\"Save set of filters as a preset to stay more productive\": \"Salve um conjunto de filtros como predefinição para aumentar sua produtividade.\"\n\"Saved Filters\": \"Filtros Salvos\"\n\"No saved filter created\": \"Nenhum filtro salvo criado\"\n\"Customer\": \"Cliente\"\n\"Priority\": \"Prioridade\"\n\"Tag\": \"Etiqueta\"\n\"Source\": \"Fonte\"\n\"Before\": \"Antes\"\n\"After\": \"Depois\"\n\"Replies less than\": \"Respostas menos que\"\n\"Replies more than\": \"Respostas mais que\"\n\"Clear All\": \"Limpar Tudo\"\n\"Account\": \"Conta\"\n\"Profile\": \"Perfil\"\n\"Upload a Profile Image (100px x 100px)<br> in PNG or JPG Format\": \"Carregar uma Imagem de Perfil (100px x 100px)<br> em Formato PNG ou JPG\"\n\"First Name\": \"Nome\"\n\"Last Name\": \"Sobrenome\"\n\"Email\": \"Email\"\n\"Contact Number\": \"Número de Contato\"\n\"Timezone\": \"Fuso Horário\"\n\"Africa/Abidjan\": \"Africa/Abidjan\"\n\"Africa/Accra\": \"Africa/Accra\"\n\"Africa/Addis_Ababa\": \"Africa/Addis_Ababa\"\n\"Africa/Algiers\": \"Africa/Algiers\"\n\"Africa/Asmara\": \"Africa/Asmara\"\n\"Africa/Bamako\": \"Africa/Bamako\"\n\"Africa/Bangui\": \"Africa/Bangui\"\n\"Africa/Banjul\": \"Africa/Banjul\"\n\"Africa/Bissau\": \"Africa/Bissau\"\n\"Africa/Blantyre\": \"Africa/Blantyre\"\n\"Africa/Brazzaville\": \"Africa/Brazzaville\"\n\"Africa/Bujumbura\": \"Africa/Bujumbura\"\n\"Africa/Cairo\": \"Africa/Cairo\"\n\"Africa/Casablanca\": \"Africa/Casablanca\"\n\"Africa/Ceuta\": \"Africa/Ceuta\"\n\"Africa/Conakry\": \"Africa/Conakry\"\n\"Africa/Dakar\": \"Africa/Dakar\"\n\"Africa/Dar_es_Salaam\": \"Africa/Dar_es_Salaam\"\n\"Africa/Djibouti\": \"Africa/Djibouti\"\n\"Africa/Douala\": \"Africa/Douala\"\n\"Africa/El_Aaiun\": \"Africa/El_Aaiun\"\n\"Africa/Freetown\": \"Africa/Freetown\"\n\"Africa/Gaborone\": \"Africa/Gaborone\"\n\"Africa/Harare\": \"Africa/Harare\"\n\"Africa/Johannesburg\": \"Africa/Johannesburg\"\n\"Africa/Juba\": \"Africa/Juba\"\n\"Africa/Kampala\": \"Africa/Kampala\"\n\"Africa/Khartoum\": \"Africa/Khartoum\"\n\"Africa/Kigali\": \"Africa/Kigali\"\n\"Africa/Kinshasa\": \"Africa/Kinshasa\"\n\"Africa/Lagos\": \"Africa/Lagos\"\n\"Africa/Libreville\": \"Africa/Libreville\"\n\"Africa/Lome\": \"Africa/Lome\"\n\"Africa/Luanda\": \"Africa/Luanda\"\n\"Africa/Lubumbashi\": \"Africa/Lubumbashi\"\n\"Africa/Lusaka\": \"Africa/Lusaka\"\n\"Africa/Malabo\": \"Africa/Malabo\"\n\"Africa/Maputo\": \"Africa/Maputo\"\n\"Africa/Maseru\": \"Africa/Maseru\"\n\"Africa/Mbabane\": \"Africa/Mbabane\"\n\"Africa/Mogadishu\": \"Africa/Mogadishu\"\n\"Africa/Monrovia\": \"Africa/Monrovia\"\n\"Africa/Nairobi\": \"Africa/Nairobi\"\n\"Africa/Ndjamena\": \"Africa/Ndjamena\"\n\"Africa/Niamey\": \"Africa/Niamey\"\n\"Africa/Nouakchott\": \"Africa/Nouakchott\"\n\"Africa/Ouagadougou\": \"Africa/Ouagadougou\"\n\"Africa/Porto-Novo\": \"Africa/Porto-Novo\"\n\"Africa/Sao_Tome\": \"Africa/Sao_Tome\"\n\"Africa/Tripoli\": \"Africa/Tripoli\"\n\"Africa/Tunis\": \"Africa/Tunis\"\n\"Africa/Windhoek\": \"Africa/Windhoek\"\n\"America/Adak\": \"America/Adak\"\n\"America/Anchorage\": \"America/Anchorage\"\n\"America/Anguilla\": \"America/Anguilla\"\n\"America/Antigua\": \"America/Antigua\"\n\"America/Araguaina\": \"America/Araguaina\"\n\"America/Argentina/Buenos_Aires\": \"America/Argentina/Buenos_Aires\"\n\"America/Argentina/Catamarca\": \"America/Argentina/Catamarca\"\n\"America/Argentina/Cordoba\": \"America/Argentina/Cordoba\"\n\"America/Argentina/Jujuy\": \"America/Argentina/Jujuy\"\n\"America/Argentina/La_Rioja\": \"America/Argentina/La_Rioja\"\n\"America/Argentina/Mendoza\": \"America/Argentina/Mendoza\"\n\"America/Argentina/Rio_Gallegos\": \"America/Argentina/Rio_Gallegos\"\n\"America/Argentina/Salta\": \"America/Argentina/Salta\"\n\"America/Argentina/San_Juan\": \"America/Argentina/San_Juan\"\n\"America/Argentina/San_Luis\": \"America/Argentina/San_Luis\"\n\"America/Argentina/Tucuman\": \"America/Argentina/Tucuman\"\n\"America/Argentina/Ushuaia\": \"America/Argentina/Ushuaia\"\n\"America/Aruba\": \"America/Aruba\"\n\"America/Asuncion\": \"America/Asuncion\"\n\"America/Atikokan\": \"America/Atikokan\"\n\"America/Bahia\": \"America/Bahia\"\n\"America/Bahia_Banderas\": \"America/Bahia_Banderas\"\n\"America/Barbados\": \"America/Barbados\"\n\"America/Belem\": \"America/Belem\"\n\"America/Belize\": \"America/Belize\"\n\"America/Blanc-Sablon\": \"America/Blanc-Sablon\"\n\"America/Boa_Vista\": \"America/Boa_Vista\"\n\"America/Bogota\": \"America/Bogota\"\n\"America/Boise\": \"America/Boise\"\n\"America/Cambridge_Bay\": \"America/Cambridge_Bay\"\n\"America/Campo_Grande\": \"America/Campo_Grande\"\n\"America/Cancun\": \"America/Cancun\"\n\"America/Caracas\": \"America/Caracas\"\n\"America/Cayenne\": \"America/Cayenne\"\n\"America/Cayman\": \"America/Cayman\"\n\"America/Chicago\": \"America/Chicago\"\n\"America/Chihuahua\": \"America/Chihuahua\"\n\"America/Costa_Rica\": \"America/Costa_Rica\"\n\"America/Creston\": \"America/Creston\"\n\"America/Cuiaba\": \"America/Cuiaba\"\n\"America/Curacao\": \"America/Curacao\"\n\"America/Danmarkshavn\": \"America/Danmarkshavn\"\n\"America/Dawson\": \"America/Dawson\"\n\"America/Dawson_Creek\": \"America/Dawson_Creek\"\n\"America/Denver\": \"America/Denver\"\n\"America/Detroit\": \"America/Detroit\"\n\"America/Dominica\": \"America/Dominica\"\n\"America/Edmonton\": \"America/Edmonton\"\n\"America/Eirunepe\": \"America/Eirunepe\"\n\"America/El_Salvador\": \"America/El_Salvador\"\n\"America/Fort_Nelson\": \"America/Fort_Nelson\"\n\"America/Fortaleza\": \"America/Fortaleza\"\n\"America/Glace_Bay\": \"America/Glace_Bay\"\n\"America/Godthab\": \"America/Godthab\"\n\"America/Goose_Bay\": \"America/Goose_Bay\"\n\"America/Grand_Turk\": \"America/Grand_Turk\"\n\"America/Grenada\": \"America/Grenada\"\n\"America/Guadeloupe\": \"America/Guadeloupe\"\n\"America/Guatemala\": \"America/Guatemala\"\n\"America/Guayaquil\": \"America/Guayaquil\"\n\"America/Guyana\": \"America/Guyana\"\n\"America/Halifax\": \"America/Halifax\"\n\"America/Havana\": \"America/Havana\"\n\"America/Hermosillo\": \"America/Hermosillo\"\n\"America/Indiana/Indianapolis\": \"America/Indiana/Indianapolis\"\n\"America/Indiana/Knox\": \"America/Indiana/Knox\"\n\"America/Indiana/Marengo\": \"America/Indiana/Marengo\"\n\"America/Indiana/Petersburg\": \"America/Indiana/Petersburg\"\n\"America/Indiana/Tell_City\": \"America/Indiana/Tell_City\"\n\"America/Indiana/Vevay\": \"America/Indiana/Vevay\"\n\"America/Indiana/Vincennes\": \"America/Indiana/Vincennes\"\n\"America/Indiana/Winamac\": \"America/Indiana/Winamac\"\n\"America/Inuvik\": \"America/Inuvik\"\n\"America/Iqaluit\": \"America/Iqaluit\"\n\"America/Jamaica\": \"America/Jamaica\"\n\"America/Juneau\": \"America/Juneau\"\n\"America/Kentucky/Louisville\": \"America/Kentucky/Louisville\"\n\"America/Kentucky/Monticello\": \"America/Kentucky/Monticello\"\n\"America/Kralendijk\": \"America/Kralendijk\"\n\"America/La_Paz\": \"America/La_Paz\"\n\"America/Lima\": \"America/Lima\"\n\"America/Los_Angeles\": \"America/Los_Angeles\"\n\"America/Lower_Princes\": \"America/Lower_Princes\"\n\"America/Maceio\": \"America/Maceio\"\n\"America/Managua\": \"America/Managua\"\n\"America/Manaus\": \"America/Manaus\"\n\"America/Marigot\": \"America/Marigot\"\n\"America/Martinique\": \"America/Martinique\"\n\"America/Matamoros\": \"America/Matamoros\"\n\"America/Mazatlan\": \"America/Mazatlan\"\n\"America/Menominee\": \"America/Menominee\"\n\"America/Merida\": \"America/Merida\"\n\"America/Metlakatla\": \"America/Metlakatla\"\n\"America/Mexico_City\": \"America/Mexico_City\"\n\"America/Miquelon\": \"America/Miquelon\"\n\"America/Moncton\": \"America/Moncton\"\n\"America/Monterrey\": \"America/Monterrey\"\n\"America/Montevideo\": \"America/Montevideo\"\n\"America/Montserrat\": \"America/Montserrat\"\n\"America/Nassau\": \"America/Nassau\"\n\"America/New_York\": \"America/New_York\"\n\"America/Nipigon\": \"America/Nipigon\"\n\"America/Nome\": \"America/Nome\"\n\"America/Noronha\": \"America/Noronha\"\n\"America/North_Dakota/Beulah\": \"America/North_Dakota/Beulah\"\n\"America/North_Dakota\": \"America/North_Dakota\"\n\"America/Ojinaga\": \"America/Ojinaga\"\n\"America/Panama\": \"America/Panama\"\n\"America/Pangnirtung\": \"America/Pangnirtung\"\n\"America/Paramaribo\": \"America/Paramaribo\"\n\"America/Phoenix\": \"America/Phoenix\"\n\"America/Port-au-Prince\": \"America/Port-au-Prince\"\n\"America/Port_of_Spain\": \"America/Port_of_Spain\"\n\"America/Porto_Velho\": \"America/Porto_Velho\"\n\"America/Puerto_Rico\": \"America/Puerto_Rico\"\n\"America/Punta_Arenas\": \"America/Punta_Arenas\"\n\"America/Rainy_River\": \"America/Rainy_River\"\n\"America/Rankin_Inlet\": \"America/Rankin_Inlet\"\n\"America/Recife\": \"America/Recife\"\n\"America/Regina\": \"America/Regina\"\n\"America/Resolute\": \"America/Resolute\"\n\"America/Rio_Branco\": \"America/Rio_Branco\"\n\"America/Santarem\": \"America/Santarem\"\n\"America/Santiago\": \"America/Santiago\"\n\"America/Santo_Domingo\": \"America/Santo_Domingo\"\n\"America/Sao_Paulo\": \"America/Sao_Paulo\"\n\"America/Scoresbysund\": \"America/Scoresbysund\"\n\"America/Sitka\": \"America/Sitka\"\n\"America/St_Barthelemy\": \"America/St_Barthelemy\"\n\"America/St_Johns\": \"America/St_Johns\"\n\"America/St_Kitts\": \"America/St_Kitts\"\n\"America/St_Lucia\": \"America/St_Lucia\"\n\"America/St_Thomas\": \"America/St_Thomas\"\n\"America/St_Vincent\": \"America/St_Vincent\"\n\"America/Swift_Current\": \"America/Swift_Current\"\n\"America/Tegucigalpa\": \"America/Tegucigalpa\"\n\"America/Thule\": \"America/Thule\"\n\"America/Thunder_Bay\": \"America/Thunder_Bay\"\n\"America/Tijuana\": \"America/Tijuana\"\n\"America/Toronto\": \"America/Toronto\"\n\"America/Tortola\": \"America/Tortola\"\n\"America/Vancouver\": \"America/Vancouver\"\n\"America/Whitehorse\": \"America/Whitehorse\"\n\"America/Winnipeg\": \"America/Winnipeg\"\n\"America/Yakutat\": \"America/Yakutat\"\n\"America/Yellowknife\": \"America/Yellowknife\"\n\"Antarctica/Casey\": \"Antarctica/Casey\"\n\"Antarctica/Davis\": \"Antarctica/Davis\"\n\"Antarctica/DumontDUrville\": \"Antarctica/DumontDUrville\"\n\"Antarctica/Macquarie\": \"Antarctica/Macquarie\"\n\"Antarctica/McMurdo\": \"Antarctica/McMurdo\"\n\"Antarctica/Mawson\": \"Antarctica/Mawson\"\n\"Antarctica/Palmer\": \"Antarctica/Palmer\"\n\"Antarctica/Rothera\": \"Antarctica/Rothera\"\n\"Antarctica/Syowa\": \"Antarctica/Syowa\"\n\"Antarctica/Troll\": \"Antarctica/Troll\"\n\"Antarctica/Vostok\": \"Antarctica/Vostok\"\n\"Arctic/Longyearbyen\": \"Arctic/Longyearbyen\"\n\"Asia/Aden\": \"Asia/Aden\"\n\"Asia/Almaty\": \"Asia/Almaty\"\n\"Asia/Amman\": \"Asia/Amman\"\n\"Asia/Anadyr\": \"Asia/Anadyr\"\n\"Asia/Aqtau\": \"Asia/Aqtau\"\n\"Asia/Aqtobe\": \"Asia/Aqtobe\"\n\"Asia/Ashgabat\": \"Asia/Ashgabat\"\n\"Asia/Atyrau\": \"Asia/Atyrau\"\n\"Asia/Baghdad\": \"Asia/Baghdad\"\n\"Asia/Bahrain\": \"Asia/Bahrain\"\n\"Asia/Baku\": \"Asia/Baku\"\n\"Asia/Bangkok\": \"Asia/Bangkok\"\n\"Asia/Barnaul\": \"Asia/Barnaul\"\n\"Asia/Beirut\": \"Asia/Beirut\"\n\"Asia/Bishkek\": \"Asia/Bishkek\"\n\"Asia/Brunei\": \"Asia/Brunei\"\n\"Asia/Chita\": \"Asia/Chita\"\n\"Asia/Choibalsan\": \"Asia/Choibalsan\"\n\"Asia/Colombo\": \"Asia/Colombo\"\n\"Asia/Damascus\": \"Asia/Damascus\"\n\"Asia/Dhaka\": \"Asia/Dhaka\"\n\"Asia/Dili\": \"Asia/Dili\"\n\"Asia/Dubai\": \"Asia/Dubai\"\n\"Asia/Dushanbe\": \"Asia/Dushanbe\"\n\"Asia/Famagusta\": \"Asia/Famagusta\"\n\"Asia/Gaza\": \"Asia/Gaza\"\n\"Asia/Hebron\": \"Asia/Hebron\"\n\"Asia/Ho_Chi_Minh\": \"Asia/Ho_Chi_Minh\"\n\"Asia/Hong_Kong\": \"Asia/Hong_Kong\"\n\"Asia/Hovd\": \"Asia/Hovd\"\n\"Asia/Irkutsk\": \"Asia/Irkutsk\"\n\"Asia/Jakarta\": \"Asia/Jakarta\"\n\"Asia/Jayapura\": \"Asia/Jayapura\"\n\"Asia/Jerusalem\": \"Asia/Jerusalem\"\n\"Asia/Kabul\": \"Asia/Kabul\"\n\"Asia/Kamchatka\": \"Asia/Kamchatka\"\n\"Asia/Karachi\": \"Asia/Karachi\"\n\"Asia/Kathmandu\": \"Asia/Kathmandu\"\n\"Asia/Khandyga\": \"Asia/Khandyga\"\n\"Asia/Kolkata\": \"Asia/Kolkata\"\n\"Asia/Krasnoyarsk\": \"Asia/Krasnoyarsk\"\n\"Asia/Kuala_Lumpur\": \"Asia/Kuala_Lumpur\"\n\"Asia/Kuching\": \"Asia/Kuching\"\n\"Asia/Kuwait\": \"Asia/Kuwait\"\n\"Asia/Macau\": \"Asia/Macau\"\n\"Asia/Magadan\": \"Asia/Magadan\"\n\"Asia/Makassar\": \"Asia/Makassar\"\n\"Asia/Manila\": \"Asia/Manila\"\n\"Asia/Muscat\": \"Asia/Muscat\"\n\"Asia/Nicosia\": \"Asia/Nicosia\"\n\"Asia/Novokuznetsk\": \"Asia/Novokuznetsk\"\n\"Asia/Novosibirsk\": \"Asia/Novosibirsk\"\n\"Asia/Omsk\": \"Asia/Omsk\"\n\"Asia/Oral\": \"Asia/Oral\"\n\"Asia/Phnom_Penh\": \"Asia/Phnom_Penh\"\n\"Asia/Pontianak\": \"Asia/Pontianak\"\n\"Asia/Pyongyang\": \"Asia/Pyongyang\"\n\"Asia/Qatar\": \"Asia/Qatar\"\n\"Asia/Qostanay\": \"Asia/Qostanay\"\n\"Asia/Qyzylorda\": \"Asia/Qyzylorda\"\n\"Asia/Riyadh\": \"Asia/Riyadh\"\n\"Asia/Sakhalin\": \"Asia/Sakhalin\"\n\"Asia/Samarkand\": \"Asia/Samarkand\"\n\"Asia/Seoul\": \"Asia/Seoul\"\n\"Asia/Shanghai\": \"Asia/Shanghai\"\n\"Asia/Singapore\": \"Asia/Singapore\"\n\"Asia/Srednekolymsk\": \"Asia/Srednekolymsk\"\n\"Asia/Taipei\": \"Asia/Taipei\"\n\"Asia/Tashkent\": \"Asia/Tashkent\"\n\"Asia/Tbilisi\": \"Asia/Tbilisi\"\n\"Asia/Tehran\": \"Asia/Tehran\"\n\"Asia/Thimphu\": \"Asia/Thimphu\"\n\"Asia/Tokyo\": \"Asia/Tokyo\"\n\"Asia/Tomsk\": \"Asia/Tomsk\"\n\"Asia/Ulaanbaatar\": \"Asia/Ulaanbaatar\"\n\"Asia/Urumqi\": \"Asia/Urumqi\"\n\"Asia/Ust-Nera\": \"Asia/Ust-Nera\"\n\"Asia/Vientiane\": \"Asia/Vientiane\"\n\"Asia/Vladivostok\": \"Asia/Vladivostok\"\n\"Asia/Yakutsk\": \"Asia/Yakutsk\"\n\"Asia/Yangon\": \"Asia/Yangon\"\n\"Asia/Yekaterinburg\": \"Asia/Yekaterinburg\"\n\"Asia/Yerevan\": \"Asia/Yerevan\"\n\"Atlantic/Azores\": \"Atlantic/Azores\"\n\"Atlantic/Bermuda\": \"Atlantic/Bermuda\"\n\"Atlantic/Canary\": \"Atlantic/Canary\"\n\"Atlantic/Cape_Verde\": \"Atlantic/Cape_Verde\"\n\"Atlantic/Faroe\": \"Atlantic/Faroe\"\n\"Atlantic/Madeira\": \"Atlantic/Madeira\"\n\"Atlantic/Reykjavik\": \"Atlantic/Reykjavik\"\n\"Atlantic/South_Georgia\": \"Atlantic/South_Georgia\"\n\"Atlantic/St_Helena\": \"Atlantic/St_Helena\"\n\"Atlantic/Stanley\": \"Atlantic/Stanley\"\n\"Australia/Adelaide\": \"Australia/Adelaide\"\n\"Australia/Brisbane\": \"Australia/Brisbane\"\n\"Australia/Broken_Hill\": \"Australia/Broken_Hill\"\n\"Australia/Currie\": \"Australia/Currie\"\n\"Australia/Darwin\": \"Australia/Darwin\"\n\"Australia/Eucla\": \"Australia/Eucla\"\n\"Australia/Hobart\": \"Australia/Hobart\"\n\"Australia/Lindeman\": \"Australia/Lindeman\"\n\"Australia/Lord_Howe\": \"Australia/Lord_Howe\"\n\"Australia/Melbourne\": \"Australia/Melbourne\"\n\"Australia/Perth\": \"Australia/Perth\"\n\"Australia/Sydney\": \"Australia/Sydney\"\n\"Europe/Amsterdam\": \"Europe/Amsterdam\"\n\"Europe/Andorra\": \"Europe/Andorra\"\n\"Europe/Astrakhan\": \"Europe/Astrakhan\"\n\"Europe/Athens\": \"Europe/Athens\"\n\"Europe/Belgrade\": \"Europe/Belgrade\"\n\"Europe/Berlin\": \"Europe/Berlin\"\n\"Europe/Bratislava\": \"Europe/Bratislava\"\n\"Europe/Brussels\": \"Europe/Brussels\"\n\"Europe/Bucharest\": \"Europe/Bucharest\"\n\"Europe/Budapest\": \"Europe/Budapest\"\n\"Europe/Busingen\": \"Europe/Busingen\"\n\"Europe/Chisinau\": \"Europe/Chisinau\"\n\"Europe/Copenhagen\": \"Europe/Copenhagen\"\n\"Europe/Dublin\": \"Europe/Dublin\"\n\"Europe/Gibraltar\": \"Europe/Gibraltar\"\n\"Europe/Guernsey\": \"Europe/Guernsey\"\n\"Europe/Helsinki\": \"Europe/Helsinki\"\n\"Europe/Isle_of_Man\": \"Europe/Isle_of_Man\"\n\"Europe/Istanbul\": \"Europe/Istanbul\"\n\"Europe/Jersey\": \"Europe/Jersey\"\n\"Europe/Kaliningrad\": \"Europe/Kaliningrad\"\n\"Europe/Kiev\": \"Europe/Kiev\"\n\"Europe/Kirov\": \"Europe/Kirov\"\n\"Europe/Lisbon\": \"Europe/Lisbon\"\n\"Europe/Ljubljana\": \"Europe/Ljubljana\"\n\"Europe/London\": \"Europe/London\"\n\"Europe/Luxembourg\": \"Europe/Luxembourg\"\n\"Europe/Madrid\": \"Europe/Madrid\"\n\"Europe/Malta\": \"Europe/Malta\"\n\"Europe/Mariehamn\": \"Europe/Mariehamn\"\n\"Europe/Minsk\": \"Europe/Minsk\"\n\"Europe/Monaco\": \"Europe/Monaco\"\n\"Europe/Moscow\": \"Europe/Moscow\"\n\"Europe/Oslo\": \"Europe/Oslo\"\n\"Europe/Paris\": \"Europe/Paris\"\n\"Europe/Podgorica\": \"Europe/Podgorica\"\n\"Europe/Prague\": \"Europe/Prague\"\n\"Europe/Riga\": \"Europe/Riga\"\n\"Europe/Rome\": \"Europe/Rome\"\n\"Europe/Samara\": \"Europe/Samara\"\n\"Europe/San_Marino\": \"Europe/San_Marino\"\n\"Europe/Sarajevo\": \"Europe/Sarajevo\"\n\"Europe/Saratov\": \"Europe/Saratov\"\n\"Europe/Simferopol\": \"Europe/Simferopol\"\n\"Europe/Skopje\": \"Europe/Skopje\"\n\"Europe/Sofia\": \"Europe/Sofia\"\n\"Europe/Stockholm\": \"Europe/Stockholm\"\n\"Europe/Tallinn\": \"Europe/Tallinn\"\n\"Europe/Tirane\": \"Europe/Tirane\"\n\"Europe/Ulyanovsk\": \"Europe/Ulyanovsk\"\n\"Europe/Uzhgorod\": \"Europe/Uzhgorod\"\n\"Europe/Vaduz\": \"Europe/Vaduz\"\n\"Europe/Vatican\": \"Europe/Vatican\"\n\"Europe/Vienna\": \"Europe/Vienna\"\n\"Europe/Vilnius\": \"Europe/Vilnius\"\n\"Europe/Volgograd\": \"Europe/Volgograd\"\n\"Europe/Warsaw\": \"Europe/Warsaw\"\n\"Europe/Zagreb\": \"Europe/Zagreb\"\n\"Europe/Zaporozhye\": \"Europe/Zaporozhye\"\n\"Europe/Zurich\": \"Europe/Zurich\"\n\"Indian/Antananarivo\": \"Indian/Antananarivo\"\n\"Indian/Chagos\": \"Indian/Chagos\"\n\"Indian/Christmas\": \"Indian/Christmas\"\n\"Indian/Cocos\": \"Indian/Cocos\"\n\"Indian/Comoro\": \"Indian/Comoro\"\n\"Indian/Kerguelen\": \"Indian/Kerguelen\"\n\"Indian/Mahe\": \"Indian/Mahe\"\n\"Indian/Maldives\": \"Indian/Maldives\"\n\"Indian/Mauritius\": \"Indian/Mauritius\"\n\"Indian/Mayotte\": \"Indian/Mayotte\"\n\"Indian/Reunion\": \"Indian/Reunion\"\n\"Pacific/Apia\": \"Pacific/Apia\"\n\"Pacific/Auckland\": \"Pacific/Auckland\"\n\"Pacific/Bougainville\": \"Pacific/Bougainville\"\n\"Pacific/Chatham\": \"Pacific/Chatham\"\n\"Pacific/Chuuk\": \"Pacific/Chuuk\"\n\"Pacific/Easter\": \"Pacific/Easter\"\n\"Pacific/Efate\": \"Pacific/Efate\"\n\"Pacific/Enderbury\": \"Pacific/Enderbury\"\n\"Pacific/Fakaofo\": \"Pacific/Fakaofo\"\n\"Pacific/Fiji\": \"Pacific/Fiji\"\n\"Pacific/Funafuti\": \"Pacific/Funafuti\"\n\"Pacific/Galapagos\": \"Pacific/Galapagos\"\n\"Pacific/Gambier\": \"Pacific/Gambier\"\n\"Pacific/Guadalcanal\": \"Pacific/Guadalcanal\"\n\"Pacific/Guam\": \"Pacific/Guam\"\n\"Pacific/Honolulu\": \"Pacific/Honolulu\"\n\"Pacific/Kiritimati\": \"Pacific/Kiritimati\"\n\"Pacific/Kosrae\": \"Pacific/Kosrae\"\n\"Pacific/Kwajalein\": \"Pacific/Kwajalein\"\n\"Pacific/Majuro\": \"Pacific/Majuro\"\n\"Pacific/Marquesas\": \"Pacific/Marquesas\"\n\"Pacific/Midway\": \"Pacific/Midway\"\n\"Pacific/Nauru\": \"Pacific/Nauru\"\n\"Pacific/Niue\": \"Pacific/Niue\"\n\"Pacific/Norfolk\": \"Pacific/Norfolk\"\n\"Pacific/Noumea\": \"Pacific/Noumea\"\n\"Pacific/Pago_Pago\": \"Pacific/Pago_Pago\"\n\"Pacific/Palau\": \"Pacific/Palau\"\n\"Pacific/Pitcairn\": \"Pacific/Pitcairn\"\n\"Pacific/Pohnpei\": \"Pacific/Pohnpei\"\n\"Pacific/Port_Moresby\": \"Pacific/Port_Moresby\"\n\"Pacific/Rarotonga\": \"Pacific/Rarotonga\"\n\"Pacific/Saipan\": \"Pacific/Saipan\"\n\"Pacific/Tahiti\": \"Pacific/Tahiti\"\n\"Pacific/Tarawa\": \"Pacific/Tarawa\"\n\"Pacific/Tongatapu\": \"Pacific/Tongatapu\"\n\"Pacific/Wake\": \"Pacific/Wake\"\n\"Pacific/Wallis\": \"Pacific/Wallis\"\n\"UTC\": \"UTC\"\n\"Time Format\": \"Formato de Hora\"\n\"Choose your default timezone\": \"Escolha seu fuso horário padrão\"\n\"Signature\": \"Assinatura\"\n\"User signature will be append at the bottom of ticket reply box\": \"Sua assinatura será adicionada ao final de cada resposta de chamado que você criar.\"\n\"Password\": \"Senha\"\n\"Password will remain same if you are not entering something in this field\": \"Senha não alterada!\"\n\"Confirm Password\": \"Confirmar Senha\"\n\"Password must contain minimum 8 character length, at least two letters (not case sensitive), one number, one special character(space is not allowed).\": \"A senha deve ter no mínimo 8 caracteres, incluir pelo menos duas letras (não diferencia maiúsculas de minúsculas), um número e um caractere especial (espaços não são permitidos).\"\n\"Save Changes\": \"Salvar Alterações\"\n\"SAVE CHANGES\": \"SALVAR ALTERAÇÕES\"\n\"CREATE TICKET\": \"CRIAR CHAMADO\"\n\"Customer full name\": \"Nome completo do cliente\"\n\"Customer email address\": \"Endereço de e-mail do cliente\"\n\"Select Type\": \"Selecionar Tipo\"\n\"Support\": \"Suporte\"\n\"Choose ticket type\": \"Escolha o tipo de chamado\"\n\"Ticket subject\": \"Assunto do chamado\"\n\"Message\": \"Mensagem\"\n\"Query Message\": \"Mensagem de Consulta\"\n\"Add Attachment\": \"Adicionar Anexo\"\n\"This field is mandatory\": \"Este campo é obrigatório\"\n\"General\": \"Geral\"\n\"Designation\": \"Cargo\"\n\"Contant Number\": \"Número de Contato\"\n\"User signature will be append in the bottom of ticket reply box\": \"Sua assinatura será adicionada ao final de cada resposta de chamado que você criar.\"\n\"Account Status\": \"Status da Conta\"\n\"Account is Active\": \"Conta está Ativa\"\n\"Assigning group(s) to user to view tickets regardless assignment.\": \"Adicione o usuário a um grupo para visualizar chamados independentemente do proprietário.\"\n\"Default\": \"Padrão\"\n\"Select All\": \"Selecionar Todos\"\n\"Remove All\": \"Remover Todos\"\n\"Assigning team(s) to user to view tickets regardless assignment.\": \"Adicione o usuário a uma equipe para visualizar chamados independentemente do proprietário.\"\n\"No Team added !\": \"Nenhuma equipe adicionada!\"\n\"Permission\": \"Permissão\"\n\"Role\": \"Função\"\n\"Administrator\": \"Administrador\"\n\"Select agent role\": \"Selecionar função do agente\"\n\"Add Customer\": \"Adicionar Cliente\"\n\"Action\": \"Ação\"\n\"Account Owner\": \"Proprietário da Conta\"\n\"Active\": \"Ativo\"\n\"Edit\": \"Editar\"\n\"Delete\": \"Excluir\"\n\"Disabled\": \"Desativado\"\n\"New Group\": \"Novo Grupo\"\n\"Default Privileges\": \"Privilégios Padrão\"\n\"New Privileges\": \"Novos Privilégios\"\n\"NEW PRIVILEGE\": \"NOVO PRIVILÉGIO\"\n\"New Privilege\": \"Novo Privilégio\"\n\"New Team\": \"Nova Equipe\"\n\"No Record Found\": \"Nenhum Registro Encontrado\"\n\"Order Synchronization\": \"Sincronização de Pedidos\"\n\"Easily integrate different ecommerce platforms with your helpdesk which can then be later used to swiftly integrate ecommerce order details with your support tickets.\": \"Integre facilmente diferentes plataformas de eCommerce ao seu helpdesk para exibir os detalhes dos pedidos nos chamados de suporte.\"\n\"BigCommerce\": \"BigCommerce\"\n\"No channels have been added.\": \"Nenhum canal foi adicionado.\"\n\"Add BigCommerce Store\": \"Adicionar Loja BigCommerce\"\n\"ADD BIGCOMMERCE STORE\": \"ADICIONAR LOJA BIGCOMMERCE\"\n\"Mangento\": \"Magento\"\n\"Add Magento Store\": \"Adicionar Loja Magento\"\n\"OpenCart\": \"OpenCart\"\n\"Add OpenCart Store\": \"Adicionar Loja OpenCart\"\n\"ADD OPENCART STORE\": \"ADICIONAR LOJA OPENCART\"\n\"Shopify\": \"Shopify\"\n\"Add Shopify Store\": \"Adicionar Loja Shopify\"\n\"ADD SHOPIFY STORE\": \"ADICIONAR LOJA SHOPIFY\"\n\"Integrate a new BigCommerce store\": \"Integrar uma nova loja BigCommerce\"\n\"Your BigCommerce Store Name\": \"Nome da sua Loja BigCommerce\"\n\"Your BigCommerce Store Hash\": \"Hash da sua Loja BigCommerce\"\n\"Your BigCommerce Api Token\": \"Token API da sua Loja BigCommerce\"\n\"Your BigCommerce Api Client ID\": \"ID do Cliente API da sua Loja BigCommerce\"\n\"Enable Channel\": \"Ativar Canal\"\n\"Add Store\": \"Adicionar Loja\"\n\"ADD STORE\": \"ADICIONAR LOJA\"\n\"Integrate a new Magento store\": \"Integrar uma nova loja Magento\"\n\"Your Magento Api Username\": \"Nome de usuário API da sua Loja Magento\"\n\"Your Magento Api Password\": \"Senha API da sua Loja Magento\"\n\"Integrate a new OpenCart store\": \"Integrar uma nova loja OpenCart\"\n\"Your OpenCart Api Key\": \"Chave API da sua Loja OpenCart\"\n\"Your Shopify Store Name\": \"Nome da sua Loja Shopify\"\n\"Your Shopify Api Key\": \"Chave API da sua Loja Shopify\"\n\"Your Shopify Api Password\": \"Senha API da sua Loja Shopify\"\n\"Easily embed custom form to help generate helpdesk tickets.\": \"Incorpore formulários personalizados facilmente para criar chamados no helpdesk.\"\n\"Form-Builder\": \"Construtor de Formulários\"\n\"Add Formbuilder\": \"Adicionar Construtor de Formulários\"\n\"ADD FORMBUILDER\": \"ADICIONAR CONSTRUTOR DE FORMULÁRIOS\"\n\"No FormBuilder have been added.\": \"Nenhum Construtor de Formulários foi adicionado.\"\n\"Create a New Custom Form Below\": \"Crie um novo formulário personalizado abaixo\"\n\"Form Name\": \"Nome do Formulário\"\n\"It will be shown in the list of created forms\": \"Será exibido na lista de formulários criados\"\n\"MANDATORY FIELDS\": \"CAMPOS OBRIGATÓRIOS\"\n\"These fields will be visible in form and cant be edited\": \"Esses campos serão visíveis no formulário e não podem ser editados\"\n\"Reply\": \"Resposta\"\n\"OPTIONAL FIELDS\": \"CAMPOS OPCIONAIS\"\n\"Select These Fields to Add in your Form\": \"Selecione campos para adicionar\"\n\"GDPR\": \"GDPR\"\n\"Order\": \"Pedido\"\n\"Categorybuilder\": \"Construtor de Categorias\"\n\"File\": \"Arquivo\"\n\"Add Form\": \"Adicionar Formulário\"\n\"ADD FORM\": \"ADICIONAR FORMULÁRIO\"\n\"UPDATE FORM\": \"ATUALIZAR FORMULÁRIO\"\n\"Update Form\": \"Atualizar Formulário\"\n\"Embed\": \"Incorporar\"\n\"EMBED\": \"INCORPORAR\"\n\"EMBED FORMBUILDER\": \"INCORPORAR CONSTRUTOR DE FORMULÁRIOS\"\n\"Embed Formbuilder\": \"Incorporar Construtor de Formulários\"\n\"Visit\": \"Visitar\"\n\"VISIT\": \"VISITAR\"\n\"Code\": \"Código\"\n\"Total Ticket(s)\": \"Total de Chamados\"\n\"Ticket Count\": \"Quantidade de Chamados\"\n\"SwiftMailer Configurations\": \"Configurações do SwiftMailer\"\n\"No swiftmailer configurations found\": \"Nenhuma configuração do SwiftMailer encontrada\"\n\"CREATE CONFIGURATION\": \"CRIAR CONFIGURAÇÃO\"\n\"Add configuration\": \"Adicionar configuração\"\n\"Update configuration\": \"Atualizar configuração\"\n\"Mailer ID\": \"ID do Mailer\"\n\"Mailer ID - Leave blank to automatically create id\": \"ID do Mailer - Deixe em branco para criar automaticamente\"\n\"Transport Type\": \"Tipo de Transporte\"\n\"SMTP\": \"SMTP\"\n\"Enable Delivery\": \"Ativar Entrega\"\n\"Server\": \"Servidor\"\n\"Port\": \"Porta\"\n\"Encryption Mode\": \"Modo de Criptografia\"\n\"ssl\": \"ssl\"\n\"tsl\": \"tsl\"\n\"None\": \"Nenhum\"\n\"Authentication Mode\": \"Modo de Autenticação\"\n\"login\": \"login\"\n\"Plain\": \"Simples\"\n\"CRAM-MD5\": \"CRAM-MD5\"\n\"Sender Address\": \"Endereço do Remetente\"\n\"Delivery Address\": \"Endereço de Entrega\"\n\"Block Spam\": \"Bloquear Spam\"\n\"Black list\": \"Lista Negra\"\n\"Comma (,) separated values (Eg. support@example.com, @example.com, 68.98.31.226)\": \"Valores separados por vírgula (Ex.: suporte@exemplo.com, @exemplo.com, 68.98.31.226)\"\n\"White list\": \"Lista Branca\"\n\"Mailbox Settings\": \"Configurações da Caixa de Correio\"\n\"No mailbox configurations found\": \"Nenhuma configuração de caixa de correio encontrada\"\n\"NEW MAILBOX\": \"NOVA CAIXA DE CORREIO\"\n\"New Mailbox\": \"Nova Caixa de Correio\"\n\"Update Mailbox\": \"Atualizar Caixa de Correio\"\n\"Add Mailbox\": \"Adicionar Caixa de Correio\"\n\"Mailbox ID - Leave blank to automatically create id\": \"ID da Caixa de Correio - Deixe em branco para criar automaticamente\"\n\"Mailbox Name\": \"Nome da Caixa de Correio\"\n\"Enable Mailbox\": \"Ativar Caixa de Correio\"\n\"Incoming Mail (IMAP) Server\": \"Servidor de Entrada (IMAP)\"\n\"Configure your imap settings which will be used to fetch emails from your mailbox.\": \"Configure as definições do IMAP para buscar e-mails da sua caixa de correio.\"\n\"Transport\": \"Transporte\"\n\"IMAP\": \"IMAP\"\n\"Gmail\": \"Gmail\"\n\"Yahoo\": \"Yahoo\"\n\"Host\": \"Host\"\n\"IMAP Host\": \"Host IMAP\"\n\"Email address\": \"Endereço de E-mail\"\n\"Associated Password\": \"Senha Associada\"\n\"Outgoing Mail (SMTP) Server\": \"Servidor de Saída (SMTP)\"\n\"Select a valid Swift Mailer configuration which will be used to send emails through your mailbox.\": \"Selecione uma configuração SwiftMailer válida para enviar e-mails através da sua caixa de correio.\"\n\"Swift Mailer ID\": \"ID do Swift Mailer\"\n\"None Selected\": \"Nenhum Selecionado\"\n\"Create Mailbox\": \"Criar Caixa de Correio\"\n\"CREATE MAILBOX\": \"CRIAR CAIXA DE CORREIO\"\n\"New Template\": \"Novo Template\"\n\"NEW TEMPLATE\": \"NOVO TEMPLATE\"\n\"Customer Forgot Password\": \"Cliente Esqueceu a Senha\"\n\"Customer Account Created\": \"Conta do Cliente Criada\"\n\"Ticket generated success mail to customer\": \"Chamado gerado com sucesso enviado ao cliente\"\n\"Customer Reply To The Agent\": \"Resposta do Cliente ao Agente\"\n\"Ticket Assign\": \"Atribuição de Chamado\"\n\"Agent Forgot Password\": \"Agente Esqueceu a Senha\"\n\"Agent Account Created\": \"Conta do Agente Criada\"\n\"Ticket generated by customer\": \"Chamado gerado pelo cliente\"\n\"Agent Reply To The Customers ticket\": \"Resposta do Agente ao Chamado do Cliente\"\n\"Email template name\": \"Nome do Template de E-mail\"\n\"Email template subject\": \"Assunto do Template de E-mail\"\n\"Template For\": \"Template Para\"\n\"Nothing Selected\": \"Nada Selecionado\"\n\"email template will be used for work related with selected option\": \"o template de e-mail será usado para o trabalho relacionado à opção selecionada\"\n\"Email template body\": \"Corpo do Template de E-mail\"\n\"Body\": \"Corpo\"\n\"placeholders\": \"marcadores\"\n\"Ticket Subject\": \"Assunto do Chamado\"\n\"Ticket Message\": \"Mensagem do Chamado\"\n\"Ticket Attachments\": \"Anexos do Chamado\"\n\"Ticket Tags\": \"Tags do Chamado\"\n\"Ticket Source\": \"Fonte do Chamado\"\n\"Ticket Status\": \"Status do Chamado\"\n\"Ticket Priority\": \"Prioridade do Chamado\"\n\"Ticket Group\": \"Grupo do Chamado\"\n\"Ticket Team\": \"Equipe do Chamado\"\n\"Ticket Thread Message\": \"Mensagem do Fio do Chamado\"\n\"Ticket Customer Name\": \"Nome do Cliente do Chamado\"\n\"Ticket Customer Email\": \"E-mail do Cliente do Chamado\"\n\"Ticket Agent Name\": \"Nome do Agente do Chamado\"\n\"Ticket Agent Email\": \"E-mail do Agente do Chamado\"\n\"Ticket Agent Link\": \"Link do Agente do Chamado\"\n\"Ticket Customer Link\": \"Link do Cliente do Chamado\"\n\"Last Collaborator Name\": \"Nome do Último Colaborador\"\n\"Last Collaborator Email\": \"E-mail do Último Colaborador\"\n\"Agent/ Customer Name\": \"Nome do Agente/Cliente\"\n\"Account Validation Link\": \"Link de Validação da Conta\"\n\"Password Forgot Link\": \"Link de Recuperação de Senha\"\n\"Company Name\": \"Nome da Empresa\"\n\"Company Logo\": \"Logo da Empresa\"\n\"Company URL\": \"URL da Empresa\"\n\"Swiftmailer id (Select from drop down)\": \"ID do SwiftMailer (Selecione da lista)\"\n\"PROCEED\": \"CONTINUAR\"\n\"Proceed\": \"Continuar\"\n\"Theme Color\": \"Cor do Tema\"\n\"Customer Created\": \"Cliente Criado\"\n\"Agent Created\": \"Agente Criado\"\n\"Ticket Created\": \"Chamado Criado\"\n\"Agent Replied on Ticket\": \"Agente Respondeu ao Chamado\"\n\"Customer Replied on Ticket\": \"Cliente Respondeu ao Chamado\"\n\"Workflow Status\": \"Status do Fluxo de Trabalho\"\n\"Workflow is Active\": \"O Fluxo de Trabalho está Ativo\"\n\"Events\": \"Eventos\"\n\"An event automatically triggers to check conditions and perform a respective pre-defined set of actions\": \"Um evento é disparado automaticamente para verificar condições e executar um conjunto de ações predefinidas\"\n\"Select an Event\": \"Selecione um Evento\"\n\"Add More\": \"Adicionar Mais\"\n\"Conditions\": \"Condições\"\n\"Conditions are set of rules which checks for specific scenarios and are triggered on specific occasions\": \"Condições são um conjunto de regras que verificam cenários específicos e são acionadas em ocasiões específicas.\"\n\"Subject or Description\": \"Assunto ou descrição\"\n\"Actions\": \"Ações\"\n\"An action not only reduces the workload but also makes it quite easier for ticket automation\": \"Uma ação não apenas reduz a carga de trabalho, mas também facilita a automação de tickets.\"\n\"Select an Action\": \"Selecionar uma ação\"\n\"Add Note\": \"Adicionar nota\"\n\"Mail to agent\": \"Enviar e-mail para agente\"\n\"Mail to customer\": \"Enviar e-mail para cliente\"\n\"Mail to group\": \"Enviar e-mail para grupo\"\n\"Mail to last collaborator\": \"Enviar e-mail para o último colaborador\"\n\"Mail to team\": \"Enviar e-mail para equipe\"\n\"Mark Spam\": \"Marcar como spam\"\n\"Assign to agent\": \"Atribuir a agente\"\n\"Assign to group\": \"Atribuir a grupo\"\n\"Set Priority As\": \"Definir prioridade como\"\n\"Set Status As\": \"Definir status como\"\n\"Set Tag As\": \"Definir tag como\"\n\"Set Label As\": \"Definir rótulo como\"\n\"Assign to team\": \"Atribuir a equipe\"\n\"Set Type As\": \"Definir tipo como\"\n\"Add Workflow\": \"Adicionar fluxo de trabalho\"\n\"ADD WORKFLOW\": \"ADICIONAR FLUXO DE TRABALHO\"\n\"Ticket Type code\": \"Código do tipo de ticket\"\n\"Ticket Type description\": \"Descrição do tipo de ticket\"\n\"Type Status\": \"Status do tipo\"\n\"Type is Active\": \"Tipo está ativo\"\n\"Add Save Reply\": \"Adicionar resposta salva\"\n\"Saved reply name\": \"Nome da resposta salva\"\n\"Share saved reply with user(s) in these group(s)\": \"Compartilhar resposta salva com usuário(s) destes grupo(s)\"\n\"Share saved reply with user(s) in these teams(s)\": \"Compartilhar resposta salva com usuário(s) destas equipes(s)\"\n\"Saved reply Body\": \"Corpo da resposta salva\"\n\"New Prepared Response\": \"Nova resposta preparada\"\n\"Prepared Response Status\": \"Status da resposta preparada\"\n\"Prepared Response is Active\": \"Resposta preparada está ativa\"\n\"Share prepared response with user(s) in these group(s)\": \"Compartilhar resposta preparada com usuário(s) destes grupo(s)\"\n\"Share prepared response with user(s) in these teams(s)\": \"Compartilhar resposta preparada com usuário(s) destas equipes(s)\"\n\"ADD PREPARED RESPONSE\": \"ADICIONAR RESPOSTA PREPARADA\"\n\"Add Prepared Response\": \"Adicionar resposta preparada\"\n\"Folder Name is shown upfront at Knowledge Base\": \"O nome da pasta aparece na base de conhecimento\"\n\"A small text about the folder helps user to navigate more easily\": \"Um texto breve sobre a pasta ajuda o usuário a navegar mais facilmente.\"\n\"Publish\": \"Publicar\"\n\"Choose appropriate status\": \"Escolha o status apropriado\"\n\"Folder Image\": \"Imagem da pasta\"\n\"An image is worth a thousands words and makes folder more accessible\": \"Uma imagem vale mais que mil palavras e torna a pasta mais acessível.\"\n\"Add Category\": \"Adicionar categoria\"\n\"Category Name is shown upfront at Knowledge Base\": \"O nome da categoria aparece na base de conhecimento\"\n\"A small text about the category helps user to navigate more easily\": \"Um texto breve sobre a categoria ajuda o usuário a navegar mais facilmente.\"\n\"Using Category Order, you can decide which category should display first\": \"Com a ordem da categoria, você pode decidir qual categoria deve ser exibida primeiro.\"\n\"Sorting\": \"Ordenação\"\n\"Ascending Order (A-Z)\": \"Ordem ascendente (A-Z)\"\n\"Descending Order (Z-A)\": \"Ordem descendente (Z-A)\"\n\"Based on Popularity\": \"Com base na popularidade\"\n\"Article of this category will display according to selected option\": \"Artigos desta categoria serão exibidos de acordo com a opção selecionada.\"\n\"Article\": \"Artigo\"\n\"Title\": \"Título\"\n\"View\": \"Visualizar\"\n\"Make as Starred\": \"Marcar como destacado\"\n\"Yes\": \"Sim\"\n\"No\": \"Não\"\n\"Stared\": \"Destacado\"\n\"Revisions\": \"Revisões\"\n\"Related Articles\": \"Artigos relacionados\"\n\"Delete Article\": \"Excluir artigo\"\n\"Content\": \"Conteúdo\"\n\"Slug\": \"Slug\"\n\"Slug is the url identity of this article.\": \"Slug é a identidade da URL deste artigo.\"\n\"Meta Title\": \"Título Meta\"\n\"Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A pages title tag and meta description are usually shown whenever that page appears in search engine results\": \"As tags de título e as descrições meta são pedaços de código HTML no cabeçalho de uma página web. Elas ajudam os motores de busca a entender o conteúdo de uma página. O título e a descrição meta geralmente aparecem nos resultados de busca.\"\n\"Meta Keywords\": \"Palavras-chave Meta\"\n\"Meta Description\": \"Descrição Meta\"\n\"Description\": \"Descrição\"\n\"Team Status\": \"Status da equipe\"\n\"Team is Active\": \"Equipe está ativa\"\n\"Edit Privilege\": \"Editar privilégio\"\n\"Can create ticket\": \"Pode criar ticket\"\n\"Can edit ticket\": \"Pode editar ticket\"\n\"Can delete ticket\": \"Pode excluir ticket\"\n\"Can restore trashed ticket\": \"Pode restaurar ticket excluído\"\n\"Can assign ticket\": \"Pode atribuir ticket\"\n\"Can assign ticket group\": \"Pode atribuir grupo de ticket\"\n\"Can update ticket status\": \"Pode atualizar status do ticket\"\n\"Can update ticket priority\": \"Pode atualizar a prioridade do ticket\"\n\"Can update ticket type\": \"Pode atualizar o tipo de ticket\"\n\"Can add internal notes to ticket\": \"Pode adicionar notas internas ao ticket\"\n\"Can edit thread/notes\": \"Pode editar threads/notas\"\n\"Can lock/unlock thread\": \"Pode bloquear/desbloquear threads\"\n\"Can add collaborator to ticket\": \"Pode adicionar colaboradores ao ticket\"\n\"Can delete collaborator from ticket\": \"Pode remover colaboradores do ticket\"\n\"Can delete thread/notes\": \"Pode excluir threads/notas\"\n\"Can apply prepared response on ticket\": \"Pode aplicar respostas prontas ao ticket\"\n\"Can add ticket tags\": \"Pode adicionar tags ao ticket\"\n\"Can delete ticket tags\": \"Pode remover tags do ticket\"\n\"Can kick other ticket users\": \"Pode remover outros usuários do ticket\"\n\"Can manage email templates\": \"Pode gerenciar modelos de e-mail\"\n\"Can manage groups\": \"Pode gerenciar grupos\"\n\"Can manage Sub-Groups/ Teams\": \"Pode gerenciar subgrupos/equipes\"\n\"Can manage agents\": \"Pode gerenciar agentes\"\n\"Can manage agent privileges\": \"Pode gerenciar privilégios de agentes\"\n\"Can manage ticket types\": \"Pode gerenciar tipos de tickets\"\n\"Can manage ticket custom fields\": \"Pode gerenciar campos personalizados de tickets\"\n\"Can manage customers\": \"Pode gerenciar clientes\"\n\"Can manage Prepared Responses\": \"Pode gerenciar respostas prontas\"\n\"Can manage Automatic workflow\": \"Pode gerenciar fluxos de trabalho automáticos\"\n\"Can manage tags\": \"Pode gerenciar tags\"\n\"Can manage knowledgebase\": \"Pode gerenciar a base de conhecimento\"\n\"Can manage Groups Saved Reply\": \"Pode gerenciar respostas salvas em grupos\"\n\"Add Privilege\": \"Adicionar privilégio\"\n\"Choose set of privileges which will be available to the agent.\": \"Escolha os privilégios disponíveis para o agente.\"\n\"Advanced\": \"Avançado\"\n\"Privilege Name must have characters only\": \"O nome do privilégio deve conter apenas caracteres\"\n\"Maximum character length is 50\": \"O comprimento máximo de caracteres é 50\"\n\"Open Tickets\": \"Tickets abertos\"\n\"New Customer\": \"Novo cliente\"\n\"New Agent\": \"Novo agente\"\n\"Total Article(s)\": \"Total de artigos\"\n\"Please specify a valid email address\": \"Por favor, informe um endereço de e-mail válido\"\n\"Please enter the password associated with your email address\": \"Insira a senha associada ao seu endereço de e-mail\"\n\"Please enter your server host address\": \"Insira o endereço do host do seu servidor\"\n\"Please specify a port number to connect with your mail server\": \"Informe o número da porta para conectar ao seu servidor de e-mail\"\n\"Success ! Branding details saved successfully.\": \"Sucesso! Detalhes de marca salvos com sucesso.\"\n\"Success ! Time details saved successfully.\": \"Sucesso! Detalhes de tempo salvos com sucesso.\"\n\"Spam setting saved successfully.\": \"Configuração de spam salva com sucesso.\"\n\"Please specify a valid name for your mailbox.\": \"Informe um nome válido para sua caixa de entrada.\"\n\"Please select a valid swift-mailer configuration.\": \"Selecione uma configuração swift-mailer válida.\"\n\"Please specify a valid host address.\": \"Informe um endereço de host válido.\"\n\"Please specify a valid email address.\": \"Informe um endereço de e-mail válido.\"\n\"Please enter the associated account password.\": \"Insira a senha da conta associada.\"\n\"New Saved Reply\": \"Nova resposta salva\"\n\"New Category\": \"Nova categoria\"\n\"Folder\": \"Pasta\"\n\"Category\": \"Categoria\"\n\"Created\": \"Criado\"\n\"All Articles\": \"Todos os artigos\"\n\"Viewed\": \"Visualizado\"\n\"New Article\": \"Novo artigo\"\n\"Thank you for your feedback!\": \"Obrigado pelo seu feedback!\"\n\"Was this article helpful?\": \"Este artigo foi útil?\"\n\"Helpdesk\": \"Central de ajuda\"\n\"Support Center\": \"Centro de suporte\"\n\"Mailboxes\": \"Caixas de entrada\"\n\"By\": \"Por\"\n\"Search Tickets\": \"Buscar tickets\"\n\"Customer Information\": \"Informações do cliente\"\n\"Total Replies\": \"Total de respostas\"\n\"Filter With\": \"Filtrar com\"\n\"Type email to add\": \"Digite o e-mail para adicionar\"\n\"Collaborators\": \"Colaboradores\"\n\"Labels\": \"Rótulos\"\n\"Group\": \"Grupo\"\n\"group\": \"grupo\"\n\"Contact Team\": \"Equipe de contato\"\n\"Stay on ticket\": \"Permanecer no ticket\"\n\"Redirect to list\": \"Redirecionar para a lista\"\n\"Nothing interesting here...\": \"Nada de interessante aqui...\"\n\"Previous Ticket\": \"Ticket anterior\"\n\"Next Ticket\": \"Próximo ticket\"\n\"Forward\": \"Encaminhar\"\n\"Note\": \"Nota\"\n\"Write a reply\": \"Escrever uma resposta\"\n\"Created Ticket\": \"Ticket criado\"\n\"All Threads\": \"Todos os tópicos\"\n\"Forwards\": \"Encaminhamentos\"\n\"Notes\": \"Notas\"\n\"Pinned\": \"Fixado\"\n\"Edit Ticket\": \"Editar ticket\"\n\"Print Ticket\": \"Imprimir ticket\"\n\"Mark as Spam\": \"Marcar como spam\"\n\"Mark as Closed\": \"Marcar como fechado\"\n\"Delete Ticket\": \"Excluir ticket\"\n\"View order details from different eCommerce channels\": \"Visualizar detalhes de pedidos de diferentes canais de e-commerce\"\n\"ECOMMERCE CHANNELS\": \"CANAIS DE E-COMMERCE\"\n\"Select channel\": \"Selecionar canal\"\n\"Order Id\": \"ID do pedido\"\n\"Fetch Order\": \"Buscar pedido\"\n\"No orders have been integrated to this ticket yet.\": \"Nenhum pedido foi associado a este ticket ainda.\"\n\"Enter your credentials below to gain access to your helpdesk account.\": \"Insira suas credenciais abaixo para acessar sua conta da central de ajuda.\"\n\"Keep me logged in\": \"Manter-me conectado\"\n\"Forgot Password?\": \"Esqueceu a senha?\"\n\"Log in to your\": \"Faça login no seu\"\n\"Sign In\": \"Entrar\"\n\"Edit Customer\": \"Editar cliente\"\n\"Update\": \"Atualizar\"\n\"Discard\": \"Descartar\"\n\"Cancel\": \"Cancelar\"\n\"Not Assigned\": \"Não atribuído\"\n\"Submit\": \"Enviar\"\n\"Submit And Open\": \"Enviar e abrir\"\n\"Submit And Pending\": \"Enviar e pendente\"\n\"Submit And Answered\": \"Enviar e respondido\"\n\"Submit And Resolved\": \"Enviar e resolvido\"\n\"Submit And Closed\": \"Enviar e fechado\"\n\"Choose a Color\": \"Escolha uma cor\"\n\"Create\": \"Criar\"\n\"Edit Label\": \"Editar rótulo\"\n\"Add Label\": \"Adicionar rótulo\"\n\"To\": \"Para\"\n\"Ticket\": \"Ticket\"\n\"Your browser does not support JavaScript or You disabled JavaScript, Please enable those !\": \"Seu navegador não suporta JavaScript ou você desativou o JavaScript. Por favor, ative!\"\n\"Confirm Action\": \"Confirmar ação\"\n\"Confirm\": \"Confirmar\"\n\"No result found\": \"Nenhum resultado encontrado\"\n\"ticket delivery status\": \"status de entrega do ticket\"\n\"Warning! Select valid image file.\": \"Aviso! Selecione um arquivo de imagem válido.\"\n\"Error\": \"Erro\"\n\"Save\": \"Salvar\"\n\"SEO\": \"SEO\"\n\"Edit Saved Filter\": \"Editar Filtro Salvo\"\n\"Type atleast 2 letters\": \"Digite pelo menos 2 letras\"\n\"Remove Label\": \"Remover Rótulo\"\n\"New Saved Filter\": \"Novo Filtro Salvo\"\n\"Is Default\": \"É Padrão\"\n\"Remove Saved Filter\": \"Remover Filtro Salvo\"\n\"Ticket Info\": \"Informações do Ticket\"\n\"Last Replied Agent\": \"Último Agente que Respondeu\"\n\"created Ticket\": \"ticket criado\"\n\"Uploaded Files\": \"Arquivos Enviados\"\n\"Download (as .zip)\": \"Baixar (como .zip)\"\n\"made last reply\": \"fez a última resposta\"\n\"N/A\": \"N/D\"\n\"Unassigned\": \"Não Atribuído\"\n\"Label\": \"Rótulo\"\n\"Assigned to me\": \"Atribuído a mim\"\n\"Search Query\": \"Consulta de Busca\"\n\"Searching\": \"Pesquisando\"\n\"Saved Filter\": \"Filtro Salvo\"\n\"No Label Created\": \"Nenhum Rótulo Criado\"\n\"Label with same name already exist.\": \"Um rótulo com o mesmo nome já existe.\"\n\"Create New\": \"Criar Novo\"\n\"Mail status\": \"Status do Email\"\n\"replied\": \"respondeu\"\n\"added note\": \"adicionou nota\"\n\"forwarded\": \"encaminhado\"\n\"TO\": \"PARA\"\n\"CC\": \"CC\"\n\"BCC\": \"BCC\"\n\"Locked\": \"Bloqueado\"\n\"Edit Thread\": \"Editar Tópico\"\n\"Delete Thread\": \"Excluir Tópico\"\n\"Unpin Thread\": \"Desafixar Tópico\"\n\"Pin Thread\": \"Fixar Tópico\"\n\"Unlock Thread\": \"Desbloquear Tópico\"\n\"Lock Thread\": \"Bloquear Tópico\"\n\"Translate Thread\": \"Traduzir Tópico\"\n\"Language\": \"Idioma\"\n\"English\": \"Inglês\"\n\"French\": \"Francês\"\n\"Italian\": \"Italiano\"\n\"Arabic\": \"Árabe\"\n\"German\": \"Alemão\"\n\"Spanish\": \"Espanhol\"\n\"Turkish\": \"Turco\"\n\"Danish\": \"Dinamarquês\"\n\"Chinese\": \"Chinês\"\n\"Polish\": \"Polonês\"\n\"Portuguese\": \"Português\"\n\"System\": \"Sistema\"\n\"Open in Files\": \"Abrir nos Arquivos\"\n\"Email address is invalid\": \"Endereço de email inválido\"\n\"Tag with same name already exist\": \"Etiqueta com o mesmo nome já existe\"\n\"Text length should be less than 20 charactors\": \"O comprimento do texto deve ser inferior a 20 caracteres\"\n\"Label with same name already exist\": \"Rótulo com o mesmo nome já existe\"\n\"Agent Name\": \"Nome do Agente\"\n\"Agent Email\": \"Email do Agente\"\n\"open\": \"aberto\"\n\"Currently active agents on ticket\": \"Agentes atualmente ativos no ticket\"\n\"Edit Customer Information\": \"Editar Informações do Cliente\"\n\"Restore\": \"Restaurar\"\n\"Delete Forever\": \"Excluir para Sempre\"\n\"Add Team\": \"Adicionar Equipe\"\n\"delete\": \"excluir\"\n\"You didnt have any folder for current filter(s).\": \"Você não possui nenhuma pasta para o(s) filtro(s) atual(is).\"\n\"Add Folder\": \"Adicionar Pasta\"\n\"This field must have valid characters only\": \"Este campo deve conter apenas caracteres válidos\"\n\"Can edit task\": \"Pode editar tarefa\"\n\"Can create task\": \"Pode criar tarefa\"\n\"Can delete task\": \"Pode excluir tarefa\"\n\"Can add member to task\": \"Pode adicionar membro à tarefa\"\n\"Can remove member from task\": \"Pode remover membro da tarefa\"\n\"Agent Privileges\": \"Privilégios do Agente\"\n\"Agent Privilege represents overall permissions in System.\": \"Os privilégios do agente representam permissões gerais no sistema.\"\n\"Ticket View\": \"Visualização do Ticket\"\n\"User can view tickets based on selected scope.\": \"O usuário pode visualizar tickets com base no escopo selecionado.\"\n\"If individual access then user can View assigned Ticket(s) only, If Team access then user can view all Ticket(s) in team(s) he belongs to and so on\": \"Se acesso individual, o usuário pode visualizar apenas os tickets atribuídos a ele. Se acesso de equipe, ele pode visualizar todos os tickets das equipes a que pertence, e assim por diante.\"\n\"Global Access\": \"Acesso Global\"\n\"Group Access\": \"Acesso ao Grupo\"\n\"Team Access\": \"Acesso à Equipe\"\n\"Individual Access\": \"Acesso Individual\"\n\"This field must have characters only\": \"Este campo deve conter apenas caracteres\"\n\"Maximum character length is 40\": \"O comprimento máximo é de 40 caracteres\"\n\"This is not a valid email address\": \"Este não é um endereço de email válido\"\n\"Password must contains 8 Characters\": \"A senha deve conter 8 caracteres\"\n\"The passwords does not match\": \"As senhas não coincidem\"\n\"Enabled\": \"Ativado\"\n\"Create Configuration\": \"Criar Configuração\"\n\"Swift Mailer Settings\": \"Configurações do Swift Mailer\"\n\"Username\": \"Nome de Usuário\"\n\"Please select a swiftmailer id\": \"Por favor, selecione um ID do swiftmailer\"\n\"Please enter a valid e-mail id\": \"Por favor, insira um email válido\"\n\"Please enter a mailer id\": \"Por favor, insira um ID do mailer\"\n\"Email Id\": \"ID de Email\"\n\"Are you sure? You want to perform this action.\": \"Tem certeza de que deseja executar esta ação?\"\n\"Reorder\": \"Reordenar\"\n\"New Workflow\": \"Novo Fluxo de Trabalho\"\n\"OR\": \"OU\"\n\"AND\": \"E\"\n\"Please enter a valid name.\": \"Por favor, insira um nome válido.\"\n\"Please select a value.\": \"Por favor, selecione um valor.\"\n\"Please add a value.\": \"Por favor, adicione um valor.\"\n\"This field is required\": \"Este campo é obrigatório\"\n\"or\": \"ou\"\n\"and\": \"e\"\n\"Select a Condition\": \"Selecione uma Condição\"\n\"Loading...\": \"Carregando...\"\n\"Select Option\": \"Selecione uma Opção\"\n\"Inactive\": \"Inativo\"\n\"New Type\": \"Novo Tipo\"\n\"Placeholders\": \"Marcadores\"\n\"Ticket Link\": \"Link do Ticket\"\n\"Id\": \"ID\"\n\"Preview\": \"Pré-visualização\"\n\"Sort Order\": \"Ordem de Classificação\"\n\"This field must be a number\": \"Este campo deve ser um número\"\n\"User\": \"Usuário\"\n\"Edit Group\": \"Editar Grupo\"\n\"Group Status\": \"Status do Grupo\"\n\"Group is Active\": \"Grupo está Ativo\"\n\"Add Group\": \"Adicionar Grupo\"\n\"Contact number is invalid\": \"Número de contato inválido\"\n\"Edit Agent\": \"Editar Agente\"\n\"No Privilege added, Please add Privilege(s) first !\": \"Nenhum privilégio adicionado, por favor, adicione privilégio(s) primeiro!\"\n\"Edit Email Template\": \"Editar Template de Email\"\n\"Edit Workflow\": \"Editar Fluxo de Trabalho\"\n\"Save Workflow\": \"Salvar Fluxo de Trabalho\"\n\"Edit Ticket Type\": \"Editar Tipo de Ticket\"\n\"Add Ticket Type\": \"Adicionar Tipo de Ticket\"\n\"Date Released\": \"Data de Lançamento\"\n\"Free\": \"Gratuito\"\n\"Premium\": \"Premium\"\n\"Installed\": \"Instalado\"\n\"Installed Applications\": \"Aplicativos Instalados\"\n\"Apps Dashboard\": \"Painel de Aplicativos\"\n\"Dashboard\": \"Painel\"\n\"Nothing Interesting here\": \"Nada interessante aqui\"\n\"No Categories Added\": \"Nenhuma Categoria Adicionada\"\n\"Error : Something went wrong, please try again later\": \"Erro: Algo deu errado, tente novamente mais tarde\"\n\"ticket\": \"ticket\"\n\"Add Email Template\": \"Adicionar Template de Email\"\n\"This field contain 100 characters only\": \"Máximo de 100 caracteres\"\n\"This field contain characters only\": \"Este campo pode conter apenas caracteres\"\n\"Name length must not be greater than 200 !!\": \"O comprimento do nome não deve exceder 200!\"\n\"Warning! Correct all field values first!\": \"Aviso! Corrija todos os valores dos campos primeiro!\"\n\"Warning ! This is not a valid request\": \"Aviso! Esta não é uma solicitação válida\"\n\"Success ! Tag removed successfully.\": \"Sucesso! Etiqueta removida com sucesso.\"\n\"Success ! Tags Saved successfully.\": \"Sucesso! Etiquetas salvas com sucesso.\"\n\"Success ! Revision restored successfully.\": \"Sucesso! Revisão restaurada com sucesso.\"\n\"Success ! Categories updated successfully.\": \"Sucesso! Categorias atualizadas com sucesso.\"\n\"Success ! Article Related removed successfully.\": \"Sucesso! Artigo relacionado removido com sucesso.\"\n\"Success ! Article Related is already added.\": \"Sucesso! Artigo relacionado já adicionado.\"\n\"Success ! Cannot add self as relative article.\": \"Sucesso! Não é possível adicionar a si mesmo como artigo relacionado.\"\n\"Success ! Article Related updated successfully.\": \"Sucesso! Artigo relacionado atualizado com sucesso.\"\n\"Success ! Articles removed successfully.\": \"Sucesso! Artigos removidos com sucesso.\"\n\"Success ! Article status updated successfully.\": \"Sucesso! Status do artigo atualizado com sucesso.\"\n\"Success ! Article star updated successfully.\": \"Sucesso! Estrela do artigo atualizada com sucesso.\"\n\"Success! Article updated successfully\": \"Sucesso! Artigo atualizado com sucesso\"\n\"Success ! Category sort order updated successfully.\": \"Sucesso! Ordem de classificação da categoria atualizada com sucesso.\"\n\"Success ! Category status updated successfully.\": \"Sucesso! Status da categoria atualizado com sucesso.\"\n\"Success ! Folders updated successfully.\": \"Sucesso! Pastas atualizadas com sucesso.\"\n\"Success ! Categories removed successfully.\": \"Sucesso! Categorias removidas com sucesso.\"\n\"Success ! Category updated successfully.\": \"Sucesso! Categoria atualizada com sucesso.\"\n\"Error ! Category is not exist.\": \"Erro! Categoria não existe.\"\n\"Warning ! Customer Login disabled by admin.\": \"Aviso! Login de cliente desativado pelo administrador.\"\n\"This Email is not registered with us.\": \"Este email não está registrado conosco.\"\n\"Your password has been updated successfully.\": \"Sua senha foi atualizada com sucesso.\"\n\"Password dont match.\": \"As senhas não coincidem.\"\n\"Error ! Profile image is not valid, please upload a valid format\": \"Erro! A imagem de perfil não é válida, por favor, faça o upload em um formato válido.\"\n\"Warning! Provide valid image file. (Recommened\": \"Aviso! Forneça um arquivo de imagem válido. (Recomendado: PNG, JPG ou GIF)\"\n\"Success! Folder has been added successfully.\": \"Sucesso! A pasta foi adicionada com sucesso.\"\n\"Folder updated successfully.\": \"Pasta atualizada com sucesso.\"\n\"Success ! Folder status updated successfully.\": \"Sucesso! O status da pasta foi atualizado com sucesso.\"\n\"Error ! Folder is not exist.\": \"Erro! A pasta não existe.\"\n\"Success ! Folder updated successfully.\": \"Sucesso! A pasta foi atualizada com sucesso.\"\n\"Error ! Folder does not exist.\": \"Erro! A pasta não existe.\"\n\"Success ! Folder deleted successfully.\": \"Sucesso! A pasta foi excluída com sucesso.\"\n\"Warning ! Folder doesnt exists!\": \"Aviso! A pasta não existe!\"\n\"Warning ! Cannot create ticket, given email is blocked by admin.\": \"Aviso! Não é possível criar o ticket, o email fornecido está bloqueado pelo administrador.\"\n\"Success ! Ticket has been created successfully.\": \"Sucesso! O ticket foi criado com sucesso.\"\n\"Warning ! Can not create ticket, invalid details.\": \"Aviso! Não é possível criar o ticket, detalhes inválidos.\"\n\"Warning ! Post size can not exceed 25MB\": \"Aviso! O tamanho do anexo não pode exceder 25MB.\"\n\"Create Ticket Request\": \"Criar Solicitação de Ticket\"\n\"Success ! Reply added successfully.\": \"Sucesso! Resposta adicionada com sucesso.\"\n\"Warning ! Reply field can not be blank.\": \"Aviso! O campo de resposta não pode estar vazio.\"\n\"Success ! Rating has been successfully added.\": \"Sucesso! A avaliação foi adicionada com sucesso.\"\n\"Warning ! Invalid rating.\": \"Aviso! Avaliação inválida.\"\n\"Error ! Can not add customer as a collaborator.\": \"Erro! Não é possível adicionar o cliente como colaborador.\"\n\"Success ! Collaborator added successfully.\": \"Sucesso! Colaborador adicionado com sucesso.\"\n\"Error ! Collaborator is already added.\": \"Erro! Colaborador já adicionado.\"\n\"Success ! Collaborator removed successfully.\": \"Sucesso! Colaborador removido com sucesso.\"\n\"Error ! Invalid Collaborator.\": \"Erro! Colaborador inválido.\"\n\"An unexpected error occurred. Please try again later.\": \"Ocorreu um erro inesperado. Por favor, tente novamente mais tarde.\"\n\"Feedback saved successfully.\": \"Feedback salvo com sucesso.\"\n\"Feedback updated successfully.\": \"Feedback atualizado com sucesso.\"\n\"Invalid feedback provided.\": \"Feedback inválido fornecido.\"\n\"Article not found.\": \"Artigo não encontrado.\"\n\"You need to login to your account before can perform this action.\": \"Você precisa fazer login em sua conta antes de realizar esta ação.\"\n\"Warning! Please add valid Actions!\": \"Aviso! Por favor, adicione ações válidas!\"\n\"Warning! In Free Plan you can not change Events!\": \"Aviso! No plano gratuito, você não pode alterar eventos!\"\n\"Success! Prepared Response has been updated successfully.\": \"Sucesso! A resposta preparada foi atualizada com sucesso.\"\n\"Success! Prepared Response has been added successfully.\": \"Sucesso! A resposta preparada foi adicionada com sucesso.\"\n\"Warning  This is not a valid request\": \"Aviso! Esta não é uma solicitação válida.\"\n\"Use Default Colors\": \"Usar Cores Padrão\"\n\"Masonry\": \"Masonry\"\n\"Popular Article\": \"Artigo Popular\"\n\"Manage Ticket Custom Fields\": \"Gerenciar Campos Personalizados do Ticket\"\n\"Mail status:\": \"Status do e-mail:\"\n\"You dont have premission to edit this Prepared response\": \"Você não tem permissão para editar esta resposta preparada.\"\n\"Save Prepared Response\": \"Salvar resposta preparada\"\n\"Success ! Prepared response removed successfully.\": \"Sucesso! Resposta preparada removida com sucesso.\"\n\"Warning! You are not allowed to perform this action.\": \"Aviso! Você não tem permissão para realizar esta ação.\"\n\"Success! Workflow has been updated successfully.\": \"Sucesso! O fluxo de trabalho foi atualizado com sucesso.\"\n\"Success! Workflow has been added successfully.\": \"Sucesso! O fluxo de trabalho foi adicionado com sucesso.\"\n\"Success! Order has been updated successfully.\": \"Sucesso! O pedido foi atualizado com sucesso.\"\n\"Success! Workflow has been removed successfully.\": \"Sucesso! O fluxo de trabalho foi removido com sucesso.\"\n\"Mailbox successfully created.\": \"Caixa de correio criada com sucesso.\"\n\"Mailbox successfully updated.\": \"Caixa de correio atualizada com sucesso.\"\n\"Warning ! Bad request !\": \"Aviso! Solicitação inválida!\"\n\"Error! Given current password is incorrect.\": \"Erro! A senha atual fornecida está incorreta.\"\n\"Success ! Profile update successfully.\": \"Sucesso! Perfil atualizado com sucesso.\"\n\"Error ! User with same email is already exist.\": \"Erro! Já existe um usuário com o mesmo e-mail.\"\n\"Success ! Agent updated successfully.\": \"Sucesso! Agente atualizado com sucesso.\"\n\"Success ! Agent removed successfully.\": \"Sucesso! Agente removido com sucesso.\"\n\"Warning ! You are allowed to remove account owners account.\": \"Aviso! Você pode remover a conta do proprietário da conta.\"\n\"Error ! Invalid user id.\": \"Erro! ID de usuário inválido.\"\n\"Success ! Filter has been saved successfully.\": \"Sucesso! Filtro salvo com sucesso.\"\n\"Success ! Filter has been updated successfully.\": \"Sucesso! Filtro atualizado com sucesso.\"\n\"Success ! Filter has been removed successfully.\": \"Sucesso! Filtro removido com sucesso.\"\n\"Please check your mail for password update.\": \"Por favor, verifique seu e-mail para atualização da senha.\"\n\"This Email address is not registered with us.\": \"Este endereço de e-mail não está registrado conosco.\"\n\"Success ! Customer saved successfully.\": \"Sucesso! Cliente salvo com sucesso.\"\n\"Error ! User with same email already exist.\": \"Erro! Usuário com o mesmo e-mail já existe.\"\n\"Success ! Customer information updated successfully.\": \"Sucesso! Informações do cliente atualizadas com sucesso.\"\n\"Success ! Customer updated successfully.\": \"Sucesso! Cliente atualizado com sucesso.\"\n\"Error ! Customer with same email already exist.\": \"Erro! Cliente com o mesmo e-mail já existe.\"\n\"unstarred Action Completed successfully\": \"Ação não marcada concluída com sucesso\"\n\"starred Action Completed successfully\": \"Ação marcada concluída com sucesso\"\n\"Success ! Customer removed successfully.\": \"Sucesso! Cliente removido com sucesso.\"\n\"Error ! Invalid customer id.\": \"Erro! ID de cliente inválido.\"\n\"Success! Template has been updated successfully.\": \"Sucesso! O modelo foi atualizado com sucesso.\"\n\"Success! Template has been added successfully.\": \"Sucesso! O modelo foi adicionado com sucesso.\"\n\"Success! Template has been deleted successfully.\": \"Sucesso! O modelo foi excluído com sucesso.\"\n\"Warning! resource not found.\": \"Aviso! Recurso não encontrado.\"\n\"Warning! You can not remove predefined email template which is being used in workflow(s).\": \"Aviso! Você não pode remover um modelo de e-mail pré-definido que está sendo usado em fluxo(s) de trabalho.\"\n\"Success ! Email settings are updated successfully.\": \"Sucesso! As configurações de e-mail foram atualizadas com sucesso.\"\n\"Success ! Group information updated successfully.\": \"Sucesso! Informações do grupo atualizadas com sucesso.\"\n\"Success ! Group information saved successfully.\": \"Sucesso! Informações do grupo salvas com sucesso.\"\n\"Support Group removed successfully.\": \"Grupo de Suporte removido com sucesso.\"\n\"Success ! Privilege information saved successfully.\": \"Sucesso! Informações de privilégio salvas com sucesso.\"\n\"Privilege updated successfully.\": \"Privilégio atualizado com sucesso.\"\n\"Support Privilege removed successfully.\": \"Privilégio de Suporte removido com sucesso.\"\n\"Success! Reply has been updated successfully.\": \"Sucesso! A resposta foi atualizada com sucesso.\"\n\"Success! Reply has been added successfully.\": \"Sucesso! A resposta foi adicionada com sucesso.\"\n\"Success! Saved Reply has been deleted successfully\": \"Sucesso! Resposta salva foi excluída com sucesso.\"\n\"SwiftMailer configuration updated successfully.\": \"Configuração do SwiftMailer atualizada com sucesso.\"\n\"Swiftmailer configuration removed successfully.\": \"Configuração do SwiftMailer removida com sucesso.\"\n\"Success ! Team information saved successfully.\": \"Sucesso! Informações da equipe salvas com sucesso.\"\n\"Success ! Team information updated successfully.\": \"Sucesso! Informações da equipe atualizadas com sucesso.\"\n\"Support Team removed successfully.\": \"Equipe de suporte removida com sucesso.\"\n\"Success! Reply has been added successfully\": \"Sucesso! Resposta adicionada com sucesso.\"\n\"Success ! Thread updated successfully.\": \"Sucesso! Tópico atualizado com sucesso.\"\n\"Error ! Reply field can not be blank.\": \"Erro! O campo de resposta não pode estar vazio.\"\n\"Success ! Thread removed successfully.\": \"Sucesso! Tópico removido com sucesso.\"\n\"Success ! Thread locked successfully\": \"Sucesso! Tópico bloqueado com sucesso.\"\n\"Success ! Thread unlocked successfully\": \"Sucesso! Tópico desbloqueado com sucesso.\"\n\"Success ! Thread pinned successfully\": \"Sucesso! Tópico fixado com sucesso.\"\n\"Error ! Invalid thread.\": \"Erro! Tópico inválido.\"\n\"Could not create ticket, invalid details.\": \"Não foi possível criar o ticket, detalhes inválidos.\"\n\"Success ! Tag updated successfully.\": \"Sucesso! Etiqueta atualizada com sucesso.\"\n\"Error ! Customer can not be added as collaborator.\": \"Erro! O cliente não pode ser adicionado como colaborador.\"\n\"Success ! Tag unassigned successfully.\": \"Sucesso! Etiqueta desatribuída com sucesso.\"\n\"Success ! Tag added successfully.\": \"Sucesso! Etiqueta adicionada com sucesso.\"\n\"Please enter tag name.\": \"Por favor, insira o nome da etiqueta.\"\n\"Error ! Invalid tag.\": \"Erro! Etiqueta inválida.\"\n\"Success ! Type removed successfully.\": \"Sucesso! Tipo removido com sucesso.\"\n\"Success ! Ticket to label removed successfully.\": \"Sucesso! Etiqueta do ticket removida com sucesso.\"\n\"Unable to retrieve support team details\": \"Não foi possível recuperar os detalhes da equipe de suporte.\"\n\"Ticket support group updated successfully\": \"Grupo de suporte do ticket atualizado com sucesso.\"\n\"Unable to retrieve status details\": \"Não foi possível recuperar os detalhes do status.\"\n\"Insufficient details provided.\": \"Detalhes insuficientes fornecidos.\"\n\"Error! Subject field is mandatory\": \"Erro! O campo de assunto é obrigatório.\"\n\"Error! Reply field is mandatory\": \"Erro! O campo de resposta é obrigatório.\"\n\"Success ! Ticket has been updated successfully.\": \"Sucesso! Ticket atualizado com sucesso.\"\n\"Success ! Label updated successfully.\": \"Sucesso! Rótulo atualizado com sucesso.\"\n\"Error ! Invalid label id.\": \"Erro! ID de rótulo inválido.\"\n\"Success ! Label removed successfully.\": \"Sucesso! Rótulo removido com sucesso.\"\n\"Success ! Label created successfully.\": \"Sucesso! Rótulo criado com sucesso.\"\n\"Error ! Label name can not be blank.\": \"Erro! O nome do rótulo não pode estar vazio.\"\n\"Success ! Ticket moved to trash successfully.\": \"Sucesso! Ticket movido para a lixeira com sucesso.\"\n\"Success! Ticket type saved successfully.\": \"Sucesso! Tipo de ticket salvo com sucesso.\"\n\"Success! Ticket type updated successfully.\": \"Sucesso! Tipo de ticket atualizado com sucesso.\"\n\"Error! Ticket type with same name already exist\": \"Erro! Já existe um tipo de ticket com o mesmo nome.\"\n\"SAVE\": \"SALVAR\"\n#customer page\n\"Howdy!\": \"Olá!\"\n\"New Ticket Request\": \"Nova Solicitação de Ticket\"\n\"Ticket Requests\": \"Solicitações de Ticket\"\n\"Tickets have been updated successfully\": \"Tickets atualizados com sucesso.\"\n\"Please check your mail for password update\": \"Por favor, verifique seu e-mail para atualização da senha.\"\n\"This email address is not registered with us\": \"Este endereço de e-mail não está registrado conosco.\"\n\"You have already update password using this link if you wish to change password again click on forget password link here from login page\": \"Você já atualizou a senha usando este link. Se desejar alterar a senha novamente, clique no link de esqueci a senha na página de login.\"\n\"Your password has been successfully updated. Login using updated password\": \"Sua senha foi atualizada com sucesso. Faça login usando a senha atualizada.\"\n\"Please try again, The passwords do not match\": \"Por favor, tente novamente. As senhas não coincidem.\"\n\"Support Privilege removed successfully\": \"Privilégio de suporte removido com sucesso.\"\n\"Success! Saved Reply has been deleted successfully.\": \"Sucesso! Resposta salva foi excluída com sucesso.\"\n\"SwiftMailer configuration created successfully.\": \"Configuração do SwiftMailer criada com sucesso.\"\n\"No swiftmailer configurations found for mailer id:\": \"Nenhuma configuração do SwiftMailer encontrada para o ID do mailer:\"\n\"Reply content cannot be left blank.\": \"O conteúdo da resposta não pode estar vazio.\"\n\"Reply added to the ticket and forwarded successfully.\": \"Resposta adicionada ao ticket e encaminhada com sucesso.\"\n\"Success ! Thread pinned successfully.\": \"Sucesso! Tópico fixado com sucesso.\"\n\"Success ! unpinned removed successfully.\": \"Sucesso! Tópico desafixado com sucesso.\"\n\"Unable to retrieve priority details\": \"Não foi possível recuperar os detalhes da prioridade.\"\n\"Ticket support team updated successfully\": \"Equipe de suporte do ticket atualizada com sucesso.\"\n\"Ticket assigned to support group \": \"Ticket atribuído ao grupo de suporte.\"\n\"Mailbox configuration removed successfully.\": \"Configuração da caixa de correio removida com sucesso.\"\n\"visit our website\": \"visite nosso site\"\n\n\n\"Cookie Usage Policy\": \"Política de Uso de Cookies\"\n\"cookie\": \"cookie\"\n\"cookies\": \"cookies\"\n\"HELP\": \"AJUDA\"\n\"Home\": \"Início\"\n\"Cookie Policy\": \"Política de Cookies\"\n\"Prev\": \"Anterior\"\n\"Ticket query message\": \"Conteúdo do Ticket\"\n\"Select type\": \"Selecionar tipo\"\n\"Search KnowledgeBase\": \"Buscar na Base de Conhecimento\"\n\"You cant merge an account with itself.\": \"Você não pode mesclar uma conta consigo mesma.\"\n\"Edit Profile\": \"Editar Perfil\"\n\"Customer Login\": \"Login do Cliente\"\n\"Contact Us\": \"Contate-Nos\"\n\"If you have ever contacted our support previously, your account would have already been created.\": \"Se você já entrou em contato com nosso suporte anteriormente, sua conta já deve ter sido criada.\"\n\"support\": \"suporte\"\n\"HelpDesk\": \"Central de Ajuda\"\n\"Enter search keyword\": \"Digite a palavra-chave de busca\"\n\"Browse via Folders\": \"Explorar a base de conhecimento\"\n\"Looking for something that is queried generally? Choose a relevant folder from below to explore possible solutions\": \"Procurando algo que geralmente é questionado? Escolha uma pasta relevante abaixo para explorar possíveis soluções.\"\n\"Unable to find an answer?\": \"Contate Nossa Equipe\"\n\"Looking for anything specific article which resides in general queries? Just browse the various relevant folders and categories and then you will find the desired article.\": \"Procurando um artigo específico que reside em consultas gerais? Basta navegar pelas várias pastas e categorias relevantes e você encontrará o artigo desejado.\"\n\"Popular Articles\": \"Artigos Populares\"\n\"Here are some of the most popular articles, which helped number of users to get their queries and questions resolved.\": \"Aqui estão alguns dos artigos mais populares, que ajudaram vários usuários a resolver suas dúvidas e perguntas.\"\n\"Browse via Categories\": \"Navegar por Categorias\"\n\"Looking for something specific? Choose a relevant category from below to explore possible solutions\": \"Procurando algo específico? Escolha uma categoria relevante abaixo para explorar possíveis soluções.\"\n\"No Categories Found!\": \"Nenhuma Categoria Encontrada!\"\n\"Powered by\": \"Desenvolvido por\"\n\n#forgotpassword\n\"Forgot Password\": \"Esqueceu a Senha\"\n\"Enter your email address and we will send you an email with instructions to update your login credentials.\": \"Digite seu endereço de e-mail e enviaremos um e-mail com instruções para atualizar suas credenciais de login.\"\n\"Send Mail\": \"Enviar E-mail\"\n\"Sign In to %websitename%\": \"Entrar no %websitename%\"\n\"Enter your name\": \"Digite seu nome\"\n\"Enter your email\": \"Digite seu e-mail\"\n\"Learn more about %deliveryStatus%.\": \"Saiba mais sobre %deliveryStatus%.\"\n\"Some of our site pages utilize %cookies% and other tracking technologies. A %cookie% is a small text file that may be used, for example, to collect information about site activity. Some cookies and other technologies may serve to recall personal information previously indicated by a site user. You may block cookies, or delete existing cookies, by adjusting the appropriate setting on your browser. Please consult the %help% menu of your browser to learn how to do this. If you block or delete %cookies% you may find the usefulness of our site to be impaired.\": \"Algumas páginas do nosso site utilizam %cookies% e outras tecnologias de rastreamento. Um %cookie% é um pequeno arquivo de texto que pode ser usado, por exemplo, para coletar informações sobre a atividade do site. Alguns cookies e outras tecnologias podem servir para lembrar informações pessoais previamente indicadas por um usuário do site. Você pode bloquear cookies ou excluir cookies existentes ajustando a configuração apropriada no seu navegador. Consulte o menu %help% do seu navegador para saber como fazer isso. Se você bloquear ou excluir %cookies%, poderá achar a utilidade do nosso site prejudicada.\"\n\"To know more about how our privacy policy works, please %websiteLink%.\": \"Para saber mais sobre como nossa política de privacidade funciona, por favor %websiteLink%.\"\n\"This field contain maximum 40 charectures.\": \"Este campo contém no máximo 40 caracteres.\"\n\"This field contain maximum 50 charectures.\": \"Este campo contém no máximo 50 caracteres.\"\n#misc\n\"Time\": \"Tempo\"\n\"Links\": \"Links\"\n\"Broadcast Message\": \"Mensagem de Transmissão\"\n\"Wide Logo\": \"Logo Largo\"\n\"Upload an Image (200px x 48px) in</br> PNG or JPG Format\": \"Carregar uma Imagem (200px x 48px) em</br> Formato PNG ou JPG\"\n\"It will be shown as Logo on Knowledgebase and Helpdesk\": \"Será exibido como Logo na Base de Conhecimento e Helpdesk\"\n\"Website Status\": \"Status do Site\"\n\"Enable front end website and knowledgebase for customer(s)\": \"Ativar site e base de conhecimento para cliente(s)\"\n\"Brand Color\": \"Cor da Marca\"\n\"Page Background Color\": \"Cor de Fundo da Página\"\n\"Header Background Color\": \"Cor de Fundo do Cabeçalho\"\n\"Banner Background Color\": \"Cor de Fundo do Banner\"\n\"Page Link Color\": \"Cor do Link da Página\"\n\"Page Link Hover Color\": \"Cor do Link ao Passar o Mouse\"\n\"Article Text Color\": \"Cor do Texto do Artigo\"\n\"Tag Line\": \"Linha de Tag\"\n\"Hi! how can we help?\": \"Oi! Como podemos ajudar?\"\n\"Layout\": \"Layout\"\n\"Ticket Create Option\": \"Opção de Criação de Ticket\"\n\"Login Required To Create Tickets\": \"Login Necessário para Criar Tickets\"\n\"Remove Customer Login/Signin Button\": \"Remover Botão de Login/Entrar do Cliente\"\n\"Disable Customer Login\": \"Desativar Login do Cliente\"\n\"Meta Description (Recommended)\": \"Meta Descrição (Recomendado)\"\n\"Meta Keywords (Recommended)\": \"Meta Palavras-chave (Recomendado)\"\n\"Header Link\": \"Link do Cabeçalho\"\n'URL (with http\":/\"/ or https\":/\"/)': 'URL (com http\":/\"/ ou https\":/\"/)'\n\"Footer Link\": \"Link do Rodapé\"\n\"Custom CSS (Optional)\": \"CSS Personalizado (Opcional)\"\n\"It will be add to the frontend knowledgebase only\": \"Exibido apenas na base de conhecimento do frontend\"\n\"Custom Javascript (Optional)\": \"Javascript Personalizado (Opcional)\"\n\"Broadcast message content to show on helpdesk\": \"Conteúdo da mensagem de transmissão para exibir no helpdesk\"\n\"From\": \"De\"\n\"Time duration between which message will be displayed(if applicable)\": \"Por quanto tempo a mensagem deve ser exibida?\"\n\"Broadcasting Status\": \"Status da Transmissão\"\n\"Broadcasting is Active\": \"Transmissão está Ativa\"\n\"Choose a default company timezone\": \"Escolha o fuso horário padrão da empresa\"\n\"Date Time Format\": \"Formato de Data e Hora\"\n\"Choose a format to convert date to specified date time format\": \"Escolha um formato para converter a data para o formato de data e hora especificado\"\n\"An empty file is not allowed.\": \"Um arquivo vazio não é permitido.\"\n\"File size must not be greater than 200KB !!\": \"O tamanho do arquivo não deve ser maior que 200KB!\"\n\"Please upload valid Image file (Only JPEG, JPG, PNG allowed)!!\": \"Por favor, envie um arquivo de imagem válido (apenas JPEG, JPG, PNG permitidos)!\"\n\"Provide a valid url(with protocol)\": \"Forneça uma URL válida (com protocolo)\"\n\"ticket.message.placeHolders.info\": \"ticket.message.placeHolders.info\"\n\"ticket.attachments.placeHolders.info\": \"\tticket.attachments.placeHolders.info\"\n\"ticket.threadMessage.placeHolders.info\": \"ticket.threadMessage.placeHolders.info\"\n\"ticket.tags.placeHolders.info\": \"ticket.tags.placeHolders.info\"\n\"ticket.source.placeHolders.info\": \"ticket.source.placeHolders.info\"\n\"ticket.collaborator.name.placeHolders.info\": \"ticket.collaborator.name.placeHolders.info\"\n\"ticket.collaborator.email.placeHolders.info\": \"ticket.collaborator.email.placeHolders.info\"\n\"user.name.info\": \"user.name.info\"\n\"user.email.info\": \"user.email.info\"\n\"user.account.validate.link.info\": \"user.account.validate.link.info\"\n\"user.password.forgot.link.info\": \"user.password.forgot.link.info\"\n\"global.companyName\": \"global.companyName\"\n\"global.companyLogo\": \"global.companyLogo\"\n\"global.companyUrl\": \"global.companyUrl\"\n\"ticket.priority.placeHolders.info\": \"\tticket.priority.placeHolders.info\"\n\"ticket.group.placeHolders.info\": \"ticket.group.placeHolders.info\"\n\"ticket.team.placeHolders.info\": \"ticket.team.placeHolders.info\"\n\"ticket.customerName.placeHolders.info\": \"\tticket.customerName.placeHolders.info\"\n\"ticket.customerEmail.placeHolders.info\": \"\tticket.customerEmail.placeHolders.info\"\n\"ticket.agentName.placeHolders.info\": \"ticket.agentName.placeHolders.info\"\n\"ticket.agentEmail.placeHolders.info\": \"ticket.agentEmail.placeHolders.info\"\n\"ticket.link.placeHolders.info\": \"\tticket.link.placeHolders.info \"\n\"ticket.id.placeHolders.info\": \"ticket.id.placeHolders.info\"\n\"ticket.subject.placeHolders.info\": \"\tticket.subject.placeHolders.info\"\n\"ticket.status.placeHolders.info\": \"ticket.status.placeHolders.info\"\n'comma \",\" separated': 'separado por vírgula (,)'\n\"Low\": \"Baixo\"\n\"Medium\": \"Médio\"\n\"High\": \"Alto\"\n\"Urgent\": \"Urgente\"\n\"Reset Password\": \"Redefinir Senha\"\n\"Enter your new password below to update your login credentials\": \"Digite sua nova senha abaixo para atualizar suas credenciais de login\"\n\"Save Password\": \"Salvar Senha\"\n\"Rate Support\": \"Avaliar Suporte\"\n\"I am very Sad\": \"Estou muito decepcionado\"\n\"I am Sad\": \"Estou decepcionado\"\n\"I am Neutral\": \"Estou satisfeito\"\n\"I am Happy\": \"Estou feliz\"\n\"I am Very Happy\": \"Estou muito feliz\"\n\"Kudos\": \"Aplausos\"\n\"kudos\": \"Aplausos\"\n\"Very Sad\": \"Muito decepcionado\"\n\"Sad\": \"Decepcionado\"\n\"Neutral\": \"Satisfeito\"\n\"Happy\": \"Feliz\"\n\"Very Happy\": \"Muito feliz\"\n\"Star(s)\": \"Estrela(s)\"\n\"Warning ! Swiftmailer not working. An error has occurred while sending emails!\": \"Aviso! Swiftmailer não está funcionando. Ocorreu um erro ao enviar e-mails!\"\n\"Invalid credentials.\": \"Credenciais inválidas.\"\n\"Success ! Project cache cleared successfully.\": \"Sucesso! Cache do projeto limpo com sucesso.\"\n\"clear cache\": \"limpar cache\"\n\"Last Updated\": \"Última Atualização\"\n\"Error! Something went wrong.\": \"Erro! Algo deu errado.\"\n\"We were not able to find the page you are looking for.\": \"Não conseguimos encontrar a página que você está procurando.\"\n\"Page not found\": \"Página não encontrada\"\n\"Forbidden\": \"Proibido\"\n\"You don’t have the necessary permissions to access this Web page :(\": \"Você não tem as permissões necessárias para acessar esta página da Web :(\"\n\"Internal server error\": \"Erro interno do servidor\"\n\"Our system has goofed up for a while, but good part is it won't last long\": \"Nosso sistema falhou por um tempo, mas a boa notícia é que não vai durar muito\"\n\"Unknown Error\": \"Erro Desconhecido\"\n\"We are quite confused about how did you land here:/\": \"Estamos bastante confusos sobre como você chegou aqui :/\"\n\"Few of the links which may help you to get back on the track -\": \"Alguns links que podem ajudá-lo a voltar ao caminho certo -\""
  },
  {
    "path": "translations/messages.tr.yml",
    "content": "\"Signed in as\": \"Olarak giriş yapıldı\"\n\"Your Profile\": \"Profil\"\n\"Create Ticket\": \"Kayıt Oluştur\"\n\"Create Agent\": \"Kullanıcı Oluştur\"\n\"Create Customer\": \"Müşteri Oluştur\"\n\"Sign Out\": \"Oturumu Kapat\"\n\"Default Language (Optional)\": \"Varsayılan Dil (Opsiyonel)\"\n\"Username/Email\": \"Kullanıcı adı/E-posta\"\n\"create new\": \"Yeni oluşturmak\"\n\"Howdy!\": \"Naber!\"\n\"Ticket Information\": \"Bilet Bilgileri\"\n\"CC/BCC\": \"CC/BCC\"\n\"Success! Label created successfully.\": \"Başarılı! Etiket başarıyla oluşturuldu.\"\n\"Success! Label removed successfully.\": \"Başarılı! Etiket başarıyla kaldırıldı.\"\n\"Reports\": \"Raporlar\"\n\"Rating\": \"Değerlendirme\"\n\"Kudos Rating\": \"Kudos Değerlendirmesi\"\n\"Remove profile picture\": \"Profil resmini kaldır\"\n\"Success ! Profile updated successfully.\": \"Başarı ! Profil başarıyla güncellendi.\"\n\"Howdy\": \"merhaba\"\n\"Form successfully updated.\": \"Form başarıyla güncellendi.\"\n\"NEW FORM\": \"YENİ FORM\"\n\"Text Box\": \"Metin kutusu\"\n\"Text Area\": \"Metin Alanı\"\n\"Select\": \"Seçme\"\n\"Radio\": \"Radyo\"\n\"Checkbox\": \"onay kutusu\"\n\"Date\": \"Tarih\"\n\"Both Date and Time\": \"Hem Tarih hem Saat\"\n\"Choose a status\": \"Bir durum seçin\"\n\"Choose a group\": \"Scegli un gruppo\"\n\"Can manage Group's Saved Reply\": \"Grubun Kayıtlı Yanıtını yönetebilir\"\n\"Can manage agent activity\": \"Aracı etkinliğini yönetebilir\"\n\"Can manage marketing announcement\": \"Pazarlama duyurusunu yönetebilir\"\n\"Slug is the url identity of this article. We will help you to create valid slug at time of typing.\": \"Slug, bu makalenin url kimliğidir. Yazarken geçerli bilgi oluşturmanıza yardımcı olacağız.\"\n\"The URL for this article\": \"Bu makalenin URL'si\"\n\"Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A page's title tag and meta description are usually shown whenever that page appears in search engine results\": \"Başlık etiketleri ve meta açıklamalar, bir web sayfasının başlığındaki HTML kodu parçalarıdır. Arama motorlarının bir sayfadaki içeriği anlamasına yardımcı olurlar. Bir sayfanın başlık etiketi ve meta açıklaması genellikle o sayfa arama motoru sonuçlarında göründüğünde gösterilir.\"\n\"comma separated (,)\": \"virgülle ayrılmış (,)\"\n\"Article Title\": \"Makale başlığı\"\n\"Start typing few charactors and add set of relevant article from the list\": \"Birkaç karakter yazmaya başlayın ve listeden ilgili makale kümesini ekleyin\"\n\"Success! Announcement data saved successfully.\": \"Başarı! Duyuru verileri başarıyla kaydedildi.\"\n\"Success! Category has been added successfully.\": \"Başarı! Kategori başarıyla eklendi.\"\n\"Success ! Agent added successfully.\": \"Başarı ! Temsilci başarıyla eklendi.\"\n\"Success! Privilege information saved successfully.\": \"Başarı! Ayrıcalık bilgileri başarıyla kaydedildi.\"\n\"Edit Prepared Response\": \"Hazırlanan Yanıtı Düzenle\"\n\"Success! Type removed successfully.\": \"Başarı! Tür başarıyla kaldırıldı.\"\n\"No results available\": \"Sonuç yok\"\n\"Success ! Prepared Response applied successfully.\": \"Başarı ! Hazırlanan Yanıt başarıyla uygulandı.\"\n\"Note added to ticket successfully.\": \"Not, bilete başarıyla eklendi.\"\n\"Ticket status update to Spam\": \"Spam için bilet durumu güncellemesi\"\n\"Ticket status update to Closed\": \"Kapalı olarak bilet durumu güncellemesi\"\n\"Success! Label updated successfully.\": \"Başarı! Etiket başarıyla güncellendi.\"\n\"Success ! Helpdesk details saved successfully\": \"Başarı ! Yardım masası ayrıntıları başarıyla kaydedildi\"\n\"User Forgot Password\": \"Kullanıcı Şifremi Unuttum\"\n\"Agent Deleted\": \"Temsilci Silindi\"\n\"Agent Update\": \"Temsilci Güncellemesi\"\n\"Customer Update\": \"Müşteri Güncellemesi\"\n\"Customer Deleted\": \"Müşteri Silindi\"\n\"Agent Updated\": \"Temsilci Güncellendi\"\n\"Agent Reply\": \"Temsilci Yanıtı\"\n\"Collaborator Added\": \"Ortak Çalışan Eklendi\"\n\"Collaborator Reply\": \"Ortak Çalışan Yanıtı\"\n\"Customer Reply\": \"Müşteri Yanıtı\"\n\"Ticket Deleted\": \"Bilet Silindi\"\n\"Group Updated\": \"Grup Güncellendi\"\n\"Note Added\": \"Not Eklendi\"\n\"Priority Updated\": \"Öncelik Güncellendi\"\n\"Status Updated\": \"Durum Güncellendi\"\n\"Team Updated\": \"Takım Güncellendi\"\n\"Thread Updated\": \"Konu Güncellendi\"\n\"Type Updated\": \"Tür Güncellendi\"\n\"From Email\": \"E-postadan\"\n\"To Email\": \"E-postaya\"\n\"Is Equal To\": \"Eşittir\"\n\"Is Not Equal To\": \"Eşit değildir\"\n\"Contains\": \"içerir\"\n\"Does Not Contain\": \"İçermiyor\"\n\"Starts With\": \"İle başlar\"\n\"Ends With\": \"ile biter\"\n\"Before On\": \"Öncesinde\"\n\"After On\": \"sonra\"\n\"Mail To User\": \"Kullanıcıya Posta\"\n\"Transfer Tickets\": \"Transfer Biletleri\"\n\"Mail To Customer\": \"Müşteriye Posta\"\n\"Agent Activity\": \"Temsilci Etkinliği\"\n\"Report From\": \"Rapor Gönderen\"\n\"Search Agent\": \"Ajan Ara\"\n\"Agent Last Reply\": \"Temsilci Son Cevap\"\n\"View analytics and insights to serve a better experience for your customers\": \"Müşterilerinize daha iyi bir deneyim sunmak için analizleri ve içgörüleri görüntüleyin\"\n\"Marketing Announcement\": \"Pazarlama Duyurusu\"\n\"Advertisement\": \"Reklam\"\n\"Announcement\": \"Duyuru\"\n\"New Announcement\": \"Yeni Duyuru\"\n\"Add Announcement\": \"Duyuru Ekle\"\n\"Edit Announcement\": \"Duyuru Düzenleyin\"\n\"Promo Text\": \"Promosyon Metni\"\n\"Promo Tag\": \"Promosyon Etiketi\"\n\"Choose a promo tag\": \"Bir promosyon etiketi seçin\"\n\"Tag-Color\": \"Etiket Rengi\"\n\"Tag background color\": \"Arka plan rengini etiketle\"\n\"Link Text\": \"Bağlantı metni\"\n\"Link URL\": \"bağlantı adresi\"\n\"Apps\": \"Uygulamalar\"\n\"Integrate apps as per your needs to get things done faster than ever\": \"Üretkenliğinizi artırmak için yeni özel uygulamalar yükleyin - <a href='https://store.webkul.com/UVdesk/UVdesk-Open-Source.html' style='font-weight: bold' target='_blank'>Şimdi Keşfedin</a>\"\n\"Explore Apps\": \"Uygulamaları Keşfedin\"\n\"Form Builder\": \"Form Oluşturucu\"\n\"Knowledgebase\": \"Bilgi tabanı\"\n\"Knowledgebase is a source of rigid and complex information which helps Customers to help themselves\": \"Bilgi Bankası, Müşterilerin kendilerine yardım etmesine yardımcı olan sağlam ve karmaşık bir bilgi kaynağıdır\"\n\"Articles\": \"Makaleler\"\n\"Categories\": \"Kategoriler\"\n\"Folders\": \"Klasörler\"\n\"FOLDERS\": \"KLASÖRLER\"\n\"Productivity\": \"verimlilik\"\n\"Automate your processes by creating set of rules and presets to respond faster to the tickets\": \"Kayıtlara daha hızlı yanıt verebilmek için kurallar ve hazır ayarlar oluşturarak işlemlerinizi otomatikleştirin\"\n\"Prepared Responses\": \"Hazırlanmış Cevaplar\"\n\"Saved Replies\": \"Kayıtlı Cevaplar\"\n\"Edit Saved Reply\": \"Kayıtlı Yanıtı Düzenle\"\n\"Ticket Types\": \"Kayıt Türleri\"\n\"Workflows\": \"İş Akışları\"\n\"Settings\": \"Ayarlar\"\n\"Manage your Brand Identity, Company Information and other details at a glance\": \"Marka Kimliğinizi, Şirket Bilgilerini ve diğer detayları bir bakışta yönetin\"\n\"Branding\": \"Markalaşma\"\n\"Custom Fields\": \"Özel Alanlar\"\n\"Email Settings\": \"E mail ayarları\"\n\"Email Templates\": \"E-posta Şablonları\"\n\"Mailbox\": \"Posta kutusu\"\n\"Spam Settings\": \"Spam Ayarları\"\n\"Swift Mailer\": \"Swift Mailer\"\n\"Tags\": \"Etiketler\"\n\"Users\": \"Kullanıcılar\"\n\"Control your Groups, Teams, Agents and Customers\": \"Gruplarınızı, Ekiplerinizi, Acentelerinizi ve Müşterilerinizi Kontrol Edin\"\n\"Agents\": \"Kullanıcılar\"\n\"Customers\": \"Müşteriler\"\n\"Groups\": \"Gruplar\"\n\"Privileges\": \"Ayrıcalıklar\"\n\"Teams\": \"Takımlar\"\n\"Applications\": \"Uygulamalar\"\n\"ECommerce Order Syncronization\": \"E-Ticaret Sipariş Senkronizasyonu\"\n\"Import ecommerce order details to your support tickets from different available platforms\": \"Farklı ticari platformlardan e-ticaret siparişi detaylarını destek kaydına aktarın\"\n\"Search\": \"Ara\"\n\"Sort By\": \"Göre sırala\"\n\"Sort By:\" : \"Göre sırala:\"\n\"Status\": \"Durum\"\n\"Created At\": \"Hazırlanışa\"\n\"Name\": \"İsim\"\n\"All\": \"Hepsi\"\n\"Published\": \"Yayınlanan\"\n\"Draft\": \"Taslak\"\n\"New Folder\": \"Yeni dosya\"\n\"Create Knowledgebase Folder\": \"Bilgi Bankası Klasörü Oluştur\"\n\"You did not add any folder to your Knowledgebase yet, Create your first Folder and start adding Categories/Articles to make your customers help themselves.\": \"Bilgi Merkezinize henüz bir klasör eklemediniz, İlk Klasörünüzü oluşturun ve müşterilerinizin kendilerine yardımcı olması için Kategoriler / Makaleler eklemeye başlayın.\"\n\"Clear Filters\": \"Filtreleri Temizle\"\n\"Back\": \"Geri\"\n\"Open\": \"Açık\"\n\"Pending\": \"Bekleyen\"\n\"Answered\": \"Yanıtlanan\"\n\"Resolved\": \"Çözümlenen\"\n\"Closed\": \"Kapalı\"\n\"Spam\": \"Spam\"\n\"New\": \"Yeni\"\n\"UnAssigned\": \"Atanmayanlar\"\n\"UnAnswered\": \"Cevaplanmamış\"\n\"My Tickets\": \"Kayıtlarım\"\n\"Starred\": \"Yıldızlı\"\n\"Trashed\": \"Çöpe atılmış\"\n\"New Label\": \"Yeni etiket\"\n\"Tickets\": \"Kayıtlar\"\n\"Ticket Id\": \"Kayıt Kimliği\"\n\"Last Replied\": \"Son Cevaplanan\"\n\"Assign To\": \"Görevlendirilen\"\n\"After Reply\": \"Yanıtladıktan Sonra\"\n\"Customer Email\": \"Müşteri e-postası\"\n\"Customer Name\": \"Müşteri adı\"\n\"Assets Visibility\": \"Varlıkların Görünürlüğü\"\n\"Channel/Source\": \"Kanal / Kaynak\"\n\"Channel\": \"Kanal\"\n\"Website\": \"İnternet sitesi\"\n\"Timestamp\": \"Zaman Damgası\"\n\"TimeStamp\": \"Zaman Damgası\"\n\"Team\": \"Takım\"\n\"Type\": \"Tür\"\n\"Replies\": \"Cevaplar\"\n\"Agent\": \"Ajan\"\n\"ID\": \"İD\"\n\"Subject\": \"Konu\"\n\"Last Reply\": \"Son Cevap\"\n\"Filter View\": \"Filtre Görünümü\"\n\"Please select CAPTCHA\": \"Lütfen CAPTCHA seçin\"\n\"Warning ! Please select correct CAPTCHA !\": \"Uyarı! Lütfen doğru CAPTCHA'yı seçin!\"\n\"reCAPTCHA Setting\": \"reCAPTCHA Ayarı\"\n\"reCAPTCHA Site Key\": \"reCAPTCHA Site Anahtarı\"\n\"reCAPTCHA Secret key\": \"reCAPTCHA Gizli anahtar\"\n\"reCAPTCHA Status\": \"reCAPTCHA Durumu\"\n\"reCAPTCHA is Active\": \"reCAPTCHA Etkin\"\n\"Save set of filters as a preset to stay more productive\": \"Daha üretken kalabilmek için filtre kümesini hazır ayar olarak kaydedin\"\n\"Saved Filters\": \"Kayıtlı Filtreler\"\n\"No saved filter created\": \"Kayıtlı filtre oluşturulmadı\"\n\"Customer\": \"Müşteri\"\n\"Priority\": \"Öncelik\"\n\"Tag\": \"Etiket\"\n\"Source\": \"Kaynak\"\n\"Before\": \"Önce\"\n\"After\": \"Sonra\"\n\"Replies less than\": \"Den küçük yanıtlar\"\n\"Replies more than\": \"Den fazla yanıt veriyor\"\n\"Clear All\": \"Hepsini temizle\"\n\"Account\": \"Hesap\"\n\"Profile\": \"Profil\"\n\"Upload a Profile Image (100px x 100px)<br> in PNG or JPG Format\": \"Bir Profil Resmi Yükle (100px x 100px) <br> PNG veya JPG Biçiminde\"\n\"First Name\": \"İsim\"\n\"Last Name\": \"Soyadı\"\n\"Email\": \"E-posta\"\n\"Contact Number\": \"İletişim numarası\"\n\"Timezone\": \"Saat dilimi\"\n\"Africa/Abidjan\": \"Afrika / Abidjan\"\n\"Africa/Accra\": \"Afrika / Accra\"\n\"Africa/Addis_Ababa\": \"Afrika / Addis_Ababa\"\n\"Africa/Algiers\": \"Afrika / Cezayir\"\n\"Africa/Asmara\": \"Afrika / Asmara\"\n\"Africa/Bamako\": \"Africa / Bamako\"\n\"Africa/Bangui\": \"Afrika / Bangui\"\n\"Africa/Banjul\": \"Afrika / Banjul\"\n\"Africa/Bissau\": \"Afrika / Bissau\"\n\"Africa/Blantyre\": \"Afrika / Blantyre\"\n\"Africa/Brazzaville\": \"Afrika / Brazzaville\"\n\"Africa/Bujumbura\": \"Afrika / Bujumbura\"\n\"Africa/Cairo\": \"Afrika / Kahire\"\n\"Africa/Casablanca\": \"Afrika / Casablanca\"\n\"Africa/Ceuta\": \"Afrika / Ceuta\"\n\"Africa/Conakry\": \"Afrika / Conakry\"\n\"Africa/Dakar\": \"Afrika / Dakar\"\n\"Africa/Dar_es_Salaam\": \"Afrika / Dar_es_Salaam\"\n\"Africa/Djibouti\": \"Afrika / Cibuti\"\n\"Africa/Douala\": \"Afrika / Douala\"\n\"Africa/El_Aaiun\": \"Afrika / El_Aaiun\"\n\"Africa/Freetown\": \"Afrika / Freetown\"\n\"Africa/Gaborone\": \"Afrika / Gaborone\"\n\"Africa/Harare\": \"Afrika / Harare\"\n\"Africa/Johannesburg\": \"Afrika / Johannesburg\"\n\"Africa/Juba\": \"Afrika / Juba\"\n\"Africa/Kampala\": \"Afrika / Kampala\"\n\"Africa/Khartoum\": \"Afrika / Khartoum\"\n\"Africa/Kigali\": \"Afrika / Kigali\"\n\"Africa/Kinshasa\": \"Afrika / Kinshasa\"\n\"Africa/Lagos\": \"Afrika / Lagos\"\n\"Africa/Libreville\": \"Afrika / Libreville\"\n\"Africa/Lome\": \"Afrika / Lome\"\n\"Africa/Luanda\": \"Afrika / Luanda\"\n\"Africa/Lubumbashi\": \"Afrika / Lubumbaşi\"\n\"Africa/Lusaka\": \"Afrika / Lusaka\"\n\"Africa/Malabo\": \"Afrika / Malabo\"\n\"Africa/Maputo\": \"Afrika / Maputo\"\n\"Africa/Maseru\": \"Afrika / Maseru\"\n\"Africa/Mbabane\": \"Afrika / Mbabane\"\n\"Africa/Mogadishu\": \"Afrika / Mogadişu\"\n\"Africa/Monrovia\": \"Afrika / Monrovia\"\n\"Africa/Nairobi\": \"Afrika / Nairobi\"\n\"Africa/Ndjamena\": \"Afrika / Ndjamena\"\n\"Africa/Niamey\": \"Afrika / Niamey\"\n\"Africa/Nouakchott\": \"Afrika / Nouakchott\"\n\"Africa/Ouagadougou\": \"Afrika / Ouagadougou\"\n\"Africa/Porto-Novo\": \"Afrika / Porto-Novo\"\n\"Africa/Sao_Tome\": \"Afrika / Sao_Tome\"\n\"Africa/Tripoli\": \"Afrika / Tripoli\"\n\"Africa/Tunis\": \"Afrika / Tunus\"\n\"Africa/Windhoek\": \"Afrika / Windhoek\"\n\"America/Adak\": \"Amerika / Adak\"\n\"America/Anchorage\": \"Amerika / Anchorage\"\n\"America/Anguilla\": \"Amerika / Anguilla\"\n\"America/Antigua\": \"Amerika / Antigua\"\n\"America/Araguaina\": \"Amerika / Araguaina\"\n\"America/Argentina/Buenos_Aires\": \"Amerika / Arjantin / Buenos_Aires\"\n\"America/Argentina/Catamarca\": \"Amerika / Arjantin / Catamarca\"\n\"America/Argentina/Cordoba\": \"Amerika / Arjantin / Cordoba\"\n\"America/Argentina/Jujuy\": \"Amerika / Arjantin / Jujuy\"\n\"America/Argentina/La_Rioja\": \"Amerika / Arjantin / La_ Rioja\"\n\"America/Argentina/Mendoza\": \"Amerika / Arjantin / Mendoza\"\n\"America/Argentina/Rio_Gallegos\": \"Amerika / Arjantin / Rio_Gallegos\"\n\"America/Argentina/Salta\": \"Amerika / Arjantin / Salta\"\n\"America/Argentina/San_Juan\": \"Amerika / Arjantin / San_ Juan\"\n\"America/Argentina/San_Luis\": \"Amerika / Arjantin / San_Luis\"\n\"America/Argentina/Tucuman\": \"Amerika / Arjantin / Tucuman\"\n\"America/Argentina/Ushuaia\": \"Amerika / Arjantin / Ushuaia\"\n\"America/Aruba\": \"Amerika / Aruba\"\n\"America/Asuncion\": \"Amerika / Asuncion\"\n\"America/Atikokan\": \"Amerika / Atikokan\"\n\"America/Bahia\": \"Amerika / Bahia\"\n\"America/Bahia_Banderas\": \"Amerika / Bahia_Banderas\"\n\"America/Barbados\": \"Amerika / Barbados\"\n\"America/Belem\": \"Amerika / Belem\"\n\"America/Belize\": \"Amerika / Belize\"\n\"America/Blanc-Sablon\": \"Amerika / Blanc-Sablon\"\n\"America/Boa_Vista\": \"Amerika / Boa_Vista\"\n\"America/Bogota\": \"Amerika / Bogota\"\n\"America/Boise\": \"Amerika / Boise\"\n\"America/Cambridge_Bay\": \"Amerika / Cambridge_Bay\"\n\"America/Campo_Grande\": \"Amerika / Campo_Grande\"\n\"America/Cancun\": \"Amerika / Cancun\"\n\"America/Caracas\": \"Amerika / Caracas\"\n\"America/Cayenne\": \"Amerika / Cayenne\"\n\"America/Cayman\": \"Amerika / Kayman\"\n\"America/Chicago\": \"Amerika / Chicago\"\n\"America/Chihuahua\": \"Amerika / Chihuahua\"\n\"America/Costa_Rica\": \"Amerika / Costa_Rica\"\n\"America/Creston\": \"Amerika / Creston\"\n\"America/Cuiaba\": \"Amerika / Cuiaba\"\n\"America/Curacao\": \"Amerika / Curacao\"\n\"America/Danmarkshavn\": \"Amerika / Danmarkshavn\"\n\"America/Dawson\": \"Amerika / Dawson\"\n\"America/Dawson_Creek\": \"Amerika / Dawson_Creek\"\n\"America/Denver\": \"Amerika / Denver\"\n\"America/Detroit\": \"Amerika / Detroit\"\n\"America/Dominica\": \"Amerika / Dominica\"\n\"America/Edmonton\": \"Amerika / Edmonton\"\n\"America/Eirunepe\": \"Amerika / Eirunepe\"\n\"America/El_Salvador\": \"Amerika / El_Salvador\"\n\"America/Fort_Nelson\": \"Amerika / Fort_Nelson\"\n\"America/Fortaleza\": \"Amerika / Fortaleza\"\n\"America/Glace_Bay\": \"Amerika / Glace_Bay\"\n\"America/Godthab\": \"Amerika / Godthab\"\n\"America/Goose_Bay\": \"Amerika / Goose_Bay\"\n\"America/Grand_Turk\": \"Amerika / Grand_Turk\"\n\"America/Grenada\": \"Amerika / Grenada\"\n\"America/Guadeloupe\": \"Amerika / Guadeloupe\"\n\"America/Guatemala\": \"Amerika / Guatemala\"\n\"America/Guayaquil\": \"Amerika / Guayaquil\"\n\"America/Guyana\": \"Amerika / Guyana\"\n\"America/Halifax\": \"Amerika / Halifax\"\n\"America/Havana\": \"Amerika / Havana\"\n\"America/Hermosillo\": \"Amerika / Hermosillo\"\n\"America/Indiana/Indianapolis\": \"Amerika / Indiana / Indianapolis\"\n\"America/Indiana/Knox\": \"Amerika / Indiana / Knox\"\n\"America/Indiana/Marengo\": \"Amerika / Indiana / Marengo\"\n\"America/Indiana/Petersburg\": \"Amerika / Indiana / Petersburg\"\n\"America/Indiana/Tell_City\": \"Amerika / Indiana / Tell_City\"\n\"America/Indiana/Vevay\": \"Amerika / Indiana / Vevay\"\n\"America/Indiana/Vincennes\": \"Amerika / Indiana / Vincennes\"\n\"America/Indiana/Winamac\": \"Amerika / Indiana / Winamac\"\n\"America/Inuvik\": \"Amerika / Inuvik\"\n\"America/Iqaluit\": \"Amerika / Iqaluit\"\n\"America/Jamaica\": \"Amerika / Jamaika\"\n\"America/Juneau\": \"Amerika / Juneau\"\n\"America/Kentucky/Louisville\": \"Amerika / Kentucky / Louisville\"\n\"America/Kentucky/Monticello\": \"Amerika / Kentucky / Monticello\"\n\"America/Kralendijk\": \"Amerika / Kralendijk\"\n\"America/La_Paz\": \"Amerika / La_Paz\"\n\"America/Lima\": \"Amerika / Lima\"\n\"America/Los_Angeles\": \"Tane /\"\n\"America/Lower_Princes\": \"Amerika / Lower_Princes\"\n\"America/Maceio\": \"Amerika / Maceio\"\n\"America/Managua\": \"Amerika / Managua\"\n\"America/Manaus\": \"Amerika / Manaus\"\n\"America/Marigot\": \"Amerika / Marigot\"\n\"America/Martinique\": \"Amerika / Martinique\"\n\"America/Matamoros\": \"Amerika / Matamoros\"\n\"America/Mazatlan\": \"Amerika / Mazatlan\"\n\"America/Menominee\": \"Amerika / Menominee\"\n\"America/Merida\": \"Amerika / Merida\"\n\"America/Metlakatla\": \"Amerika / Metlakatla\"\n\"America/Mexico_City\": \"Amerika / Mexico_City\"\n\"America/Miquelon\": \"America / Miquelon\"\n\"America/Moncton\": \"Amerika / Moncton\"\n\"America/Monterrey\": \"Amerika / Monterrey\"\n\"America/Montevideo\": \"Amerika / Montevideo\"\n\"America/Montserrat\": \"Amerika / Montserrat\"\n\"America/Nassau\": \"Amerika / Nassau\"\n\"America/New_York\": \"Amerika / New_York\"\n\"America/Nipigon\": \"Amerika / Nipigon\"\n\"America/Nome\": \"Amerika / Nome\"\n\"America/Noronha\": \"Amerika / Noronha\"\n\"America/North_Dakota/Beulah\": \"Amerika / North_Dakota / Beulah\"\n\"America/North_Dakota\": \"Amerika / North_Dakota\"\n\"America/Ojinaga\": \"Amerika / Ojinaga\"\n\"America/Panama\": \"Amerika / Panama\"\n\"America/Pangnirtung\": \"Amerika / Pangnirtung\"\n\"America/Paramaribo\": \"Amerika / Paramaribo\"\n\"America/Phoenix\": \"Amerika / Phoenix\"\n\"America/Port-au-Prince\": \"Amerika / Port-au-Prince\"\n\"America/Port_of_Spain\": \"Amerika / Port_of_Spain\"\n\"America/Porto_Velho\": \"Amerika / Porto_Velho\"\n\"America/Puerto_Rico\": \"Amerika / Porto_Riko\"\n\"America/Punta_Arenas\": \"Amerika / Punta_Arenas\"\n\"America/Rainy_River\": \"Amerika / Rainy_River\"\n\"America/Rankin_Inlet\": \"Amerika / Rankin_Inlet\"\n\"America/Recife\": \"Amerika / Recife\"\n\"America/Regina\": \"Amerika / Regina\"\n\"America/Resolute\": \"Amerika / Resolute\"\n\"America/Rio_Branco\": \"Amerika / Rio_Branco\"\n\"America/Santarem\": \"Amerika / Santarem\"\n\"America/Santiago\": \"Amerika / Santiago\"\n\"America/Santo_Domingo\": \"Amerika / Santo_Domingo\"\n\"America/Sao_Paulo\": \"Amerika / Sao_Paulo\"\n\"America/Scoresbysund\": \"Amerika / Scoresbysund\"\n\"America/Sitka\": \"Amerika / Sitka\"\n\"America/St_Barthelemy\": \"Amerika / St_Barthelemy\"\n\"America/St_Johns\": \"Amerika / St_Johns\"\n\"America/St_Kitts\": \"Amerika / St_Kitts\"\n\"America/St_Lucia\": \"Amerika / St_Lucia\"\n\"America/St_Thomas\": \"Amerika / St_Thomas\"\n\"America/St_Vincent\": \"Amerika / St_Vincent\"\n\"America/Swift_Current\": \"Amerika / Swift_Current\"\n\"America/Tegucigalpa\": \"Amerika / Tegucigalpa\"\n\"America/Thule\": \"Amerika / Thule\"\n\"America/Thunder_Bay\": \"Amerika / Thunder_Bay\"\n\"America/Tijuana\": \"Amerika / Tijuana\"\n\"America/Toronto\": \"Amerika / Toronto\"\n\"America/Tortola\": \"Amerika / Tortola\"\n\"America/Vancouver\": \"Amerika / Vancouver\"\n\"America/Whitehorse\": \"Amerika / Whitehorse\"\n\"America/Winnipeg\": \"Amerika / Winnipeg\"\n\"America/Yakutat\": \"Amerika / Yakutat\"\n\"America/Yellowknife\": \"Amerika / Yellowknife\"\n\"Antarctica/Casey\": \"Antarktika / Casey\"\n\"Antarctica/Davis\": \"Antarktika / Davis\"\n\"Antarctica/DumontDUrville\": \"Antarktika / DumontDUrville\"\n\"Antarctica/Macquarie\": \"Antarktika / Macquarie\"\n\"Antarctica/McMurdo\": \"Antarktika / McMurdo\"\n\"Antarctica/Mawson\": \"Antarktika / Mawson\"\n\"Antarctica/Palmer\": \"Antarktika / Palmer\"\n\"Antarctica/Rothera\": \"Antarktika / Rothera\"\n\"Antarctica/Syowa\": \"Antarktika / Syowa\"\n\"Antarctica/Troll\": \"Antarktika / Troll\"\n\"Antarctica/Vostok\": \"Antarktika / Vostok\"\n\"Arctic/Longyearbyen\": \"Arktik / Longyearbyen\"\n\"Asia/Aden\": \"Asya / Aden\"\n\"Asia/Almaty\": \"Asya / Almatı\"\n\"Asia/Amman\": \"Asya / Amman\"\n\"Asia/Anadyr\": \"Asya / Anadır\"\n\"Asia/Aqtau\": \"Asya / Aqtau\"\n\"Asia/Aqtobe\": \"Asya / Aqtobe\"\n\"Asia/Ashgabat\": \"Asya / Aşkabat\"\n\"Asia/Atyrau\": \"Asya / Atyrau\"\n\"Asia/Baghdad\": \"Asya / Bağdat\"\n\"Asia/Bahrain\": \"Asya / Bahreyn\"\n\"Asia/Baku\": \"Asya / Bakü\"\n\"Asia/Bangkok\": \"Asya / Bangkok\"\n\"Asia/Barnaul\": \"Asya / Barnaul\"\n\"Asia/Beirut\": \"Asya / Beyrut\"\n\"Asia/Bishkek\": \"Asya / Bişkek\"\n\"Asia/Brunei\": \"Asya / Brunei\"\n\"Asia/Chita\": \"Asya / Chita\"\n\"Asia/Choibalsan\": \"Asya / Çoybalsan\"\n\"Asia/Colombo\": \"Asya / Colombo\"\n\"Asia/Damascus\": \"Asya / Şam\"\n\"Asia/Dhaka\": \"Asya / Dhaka\"\n\"Asia/Dili\": \"Asya / Dili\"\n\"Asia/Dubai\": \"Asya / Dubai\"\n\"Asia/Dushanbe\": \"Asya / Duşanbe\"\n\"Asia/Famagusta\": \"Asya / Mağusa\"\n\"Asia/Gaza\": \"Asya / Gaza\"\n\"Asia/Hebron\": \"Asya / Hebron\"\n\"Asia/Ho_Chi_Minh\": \"Asya / Ho_Chi_Minh\"\n\"Asia/Hong_Kong\": \"Asya / Hong_Kong\"\n\"Asia/Hovd\": \"Asya / Kobdo\"\n\"Asia/Irkutsk\": \"Asya / Irkutsk\"\n\"Asia/Jakarta\": \"Asya / Cakarta\"\n\"Asia/Jayapura\": \"Asya / Jayapura\"\n\"Asia/Jerusalem\": \"Asya / Kudüs\"\n\"Asia/Kabul\": \"Asya / Kabil\"\n\"Asia/Kamchatka\": \"Asya / Kamçatka\"\n\"Asia/Karachi\": \"Asya / Karaçi\"\n\"Asia/Kathmandu\": \"Asya / Katmandu\"\n\"Asia/Khandyga\": \"Asya / Khandyga\"\n\"Asia/Kolkata\": \"Asya / Kalküta\"\n\"Asia/Krasnoyarsk\": \"Asya / Krasnoyarsk\"\n\"Asia/Kuala_Lumpur\": \"Asya / Kuala_Lumpur\"\n\"Asia/Kuching\": \"Asya / Kuching\"\n\"Asia/Kuwait\": \"Asya / Kuveyt\"\n\"Asia/Macau\": \"Asya / Macau\"\n\"Asia/Magadan\": \"Asya / Magadan\"\n\"Asia/Makassar\": \"Asya / Makassar\"\n\"Asia/Manila\": \"Asya / Manila\"\n\"Asia/Muscat\": \"Asya / Muscat\"\n\"Asia/Nicosia\": \"Asya / Lefkoşa\"\n\"Asia/Novokuznetsk\": \"Asya / Novokuznetsk\"\n\"Asia/Novosibirsk\": \"Asya / Novosibirsk\"\n\"Asia/Omsk\": \"Asya / Omsk\"\n\"Asia/Oral\": \"Asya / Sözlü\"\n\"Asia/Phnom_Penh\": \"Asya / Phnom_Penh\"\n\"Asia/Pontianak\": \"Asya / Pontianak\"\n\"Asia/Pyongyang\": \"Asya / Pyongyang\"\n\"Asia/Qatar\": \"Asya / Katar\"\n\"Asia/Qostanay\": \"Asya / Qostanay\"\n\"Asia/Qyzylorda\": \"Asya / Qyzylorda\"\n\"Asia/Riyadh\": \"Asya / Riyad\"\n\"Asia/Sakhalin\": \"Asya / Sakhalin\"\n\"Asia/Samarkand\": \"Asya / Semerkant\"\n\"Asia/Seoul\": \"Asya / Seul\"\n\"Asia/Shanghai\": \"Asya / Şanghay\"\n\"Asia/Singapore\": \"Asya / Singapur\"\n\"Asia/Srednekolymsk\": \"Asya / Srednekolymsk\"\n\"Asia/Taipei\": \"Asya / Taipei\"\n\"Asia/Tashkent\": \"Asya / Taşkent\"\n\"Asia/Tbilisi\": \"Asya / Tbilisi\"\n\"Asia/Tehran\": \"Asya / Tahran\"\n\"Asia/Thimphu\": \"Asya / Thimphu\"\n\"Asia/Tokyo\": \"Asya / Tokyo\"\n\"Asia/Tomsk\": \"Asya / Tomsk\"\n\"Asia/Ulaanbaatar\": \"Asya / Ulaanbaatar\"\n\"Asia/Urumqi\": \"Asya / Urumçi\"\n\"Asia/Ust-Nera\": \"Asya / Ust-Nera\"\n\"Asia/Vientiane\": \"Asya / Vientiane\"\n\"Asia/Vladivostok\": \"Asya / Vladivostok\"\n\"Asia/Yakutsk\": \"Asya / Yakutsk\"\n\"Asia/Yangon\": \"Asya / Yangon\"\n\"Asia/Yekaterinburg\": \"Asya / Yekaterinburg\"\n\"Asia/Yerevan\": \"Asya / Erivan\"\n\"Atlantic/Azores\": \"Atlantik / Azores\"\n\"Atlantic/Bermuda\": \"Atlantik / Bermuda\"\n\"Atlantic/Canary\": \"Atlantik / Kanarya\"\n\"Atlantic/Cape_Verde\": \"Atlantik / Cape_Verde\"\n\"Atlantic/Faroe\": \"Atlantik / Faroe\"\n\"Atlantic/Madeira\": \"Atlantik / Madeira\"\n\"Atlantic/Reykjavik\": \"Atlantik / Reykjavik\"\n\"Atlantic/South_Georgia\": \"Atlantik / South_Georgia\"\n\"Atlantic/St_Helena\": \"Atlantik / St_Helena\"\n\"Atlantic/Stanley\": \"Atlantik / Stanley\"\n\"Australia/Adelaide\": \"Avustralya / Adelaide\"\n\"Australia/Brisbane\": \"Avustralya / Brisbane\"\n\"Australia/Broken_Hill\": \"Avustralya / Broken_Hill\"\n\"Australia/Currie\": \"Avustralya / Currie\"\n\"Australia/Darwin\": \"Avustralya / Darwin\"\n\"Australia/Eucla\": \"Avustralya / Eucla\"\n\"Australia/Hobart\": \"Avustralya / Hobart\"\n\"Australia/Lindeman\": \"Avustralya / Lindeman\"\n\"Australia/Lord_Howe\": \"Avustralya / Lord_Howe\"\n\"Australia/Melbourne\": \"Avustralya / Melbourne\"\n\"Australia/Perth\": \"Avustralya / Perth\"\n\"Australia/Sydney\": \"Avusturalya / Sidney\"\n\"Europe/Amsterdam\": \"Avrupa / Amsterdam\"\n\"Europe/Andorra\": \"Avrupa / Andorra\"\n\"Europe/Astrakhan\": \"Avrupa / Astrahan\"\n\"Europe/Athens\": \"Avrupa / Atina\"\n\"Europe/Belgrade\": \"Avrupa / Belgrad\"\n\"Europe/Berlin\": \"Avrupa / Berlin\"\n\"Europe/Bratislava\": \"Avrupa / Bratislava\"\n\"Europe/Brussels\": \"Avrupa / Brüksel\"\n\"Europe/Bucharest\": \"Avrupa / Bükreş\"\n\"Europe/Budapest\": \"Avrupa / Budapeşte\"\n\"Europe/Busingen\": \"Avrupa / Busingen\"\n\"Europe/Chisinau\": \"Avrupa / Chisinau\"\n\"Europe/Copenhagen\": \"Avrupa / Kopenhag\"\n\"Europe/Dublin\": \"Avrupa / Dublin\"\n\"Europe/Gibraltar\": \"Avrupa / Cebelitarık\"\n\"Europe/Guernsey\": \"Avrupa / Guernsey\"\n\"Europe/Helsinki\": \"Avrupa / Helsinki\"\n\"Europe/Isle_of_Man\": \"Avrupa / Isle_of_Man\"\n\"Europe/Istanbul\": \"Avrupa / İstanbul\"\n\"Europe/Jersey\": \"Avrupa / Jersey\"\n\"Europe/Kaliningrad\": \"Avrupa / Kaliningrad\"\n\"Europe/Kiev\": \"Avrupa / Kiev\"\n\"Europe/Kirov\": \"Avrupa / Kirov\"\n\"Europe/Lisbon\": \"Avrupa / Lizbon\"\n\"Europe/Ljubljana\": \"Avrupa / Ljubljana\"\n\"Europe/London\": \"Avrupa / Londra\"\n\"Europe/Luxembourg\": \"Avrupa / Lüksemburg\"\n\"Europe/Madrid\": \"Avrupa / Madrid\"\n\"Europe/Malta\": \"Avrupa / Malta\"\n\"Europe/Mariehamn\": \"Avrupa / Mariehamn\"\n\"Europe/Minsk\": \"Avrupa / Minsk\"\n\"Europe/Monaco\": \"Avrupa / Monako\"\n\"Europe/Moscow\": \"Avrupa / Moskova\"\n\"Europe/Oslo\": \"Avrupa / Oslo\"\n\"Europe/Paris\": \"Avrupa / Paris\"\n\"Europe/Podgorica\": \"Avrupa / Podgorica\"\n\"Europe/Prague\": \"Avrupa / Prag\"\n\"Europe/Riga\": \"Avrupa / Riga\"\n\"Europe/Rome\": \"Avrupa / Roma\"\n\"Europe/Samara\": \"Avrupa / Samara\"\n\"Europe/San_Marino\": \"Avrupa / San_Marino\"\n\"Europe/Sarajevo\": \"Avrupa / Saraybosna\"\n\"Europe/Saratov\": \"Avrupa / Saratov\"\n\"Europe/Simferopol\": \"Avrupa / Simferopol\"\n\"Europe/Skopje\": \"Avrupa / Üsküp\"\n\"Europe/Sofia\": \"Avrupa / Sofya\"\n\"Europe/Stockholm\": \"Avrupa / Stockholm\"\n\"Europe/Tallinn\": \"Avrupa / Tallinn\"\n\"Europe/Tirane\": \"Avrupa / Tiran\"\n\"Europe/Ulyanovsk\": \"Avrupa / Ulyanovsk\"\n\"Europe/Uzhgorod\": \"Avrupa / Uzhgorod\"\n\"Europe/Vaduz\": \"Avrupa / Vaduz\"\n\"Europe/Vatican\": \"Avrupa / Vatikan\"\n\"Europe/Vienna\": \"Avrupa / Viyana\"\n\"Europe/Vilnius\": \"Avrupa / Vilnius\"\n\"Europe/Volgograd\": \"Avrupa / Volgograd\"\n\"Europe/Warsaw\": \"Avrupa / Varşova\"\n\"Europe/Zagreb\": \"Avrupa / Zagreb\"\n\"Europe/Zaporozhye\": \"Avrupa / Zaporozhye\"\n\"Europe/Zurich\": \"Avrupa / Zürih\"\n\"Indian/Antananarivo\": \"Hint / Antananarivo\"\n\"Indian/Chagos\": \"Hint / Chagos\"\n\"Indian/Christmas\": \"Hint / Noel\"\n\"Indian/Cocos\": \"Hint / Cocos\"\n\"Indian/Comoro\": \"Hint / Komorlar\"\n\"Indian/Kerguelen\": \"Hint / Kerguelen\"\n\"Indian/Mahe\": \"Hint / Mahe\"\n\"Indian/Maldives\": \"Hint / Maldivler\"\n\"Indian/Mauritius\": \"Hint / Mauritius\"\n\"Indian/Mayotte\": \"Hint / Mayotte\"\n\"Indian/Reunion\": \"Hint / Reunion\"\n\"Pacific/Apia\": \"Pasifik / Apia\"\n\"Pacific/Auckland\": \"Pasifik / Auckland\"\n\"Pacific/Bougainville\": \"Pasifik / Bougainville\"\n\"Pacific/Chatham\": \"Pasifik / Chatham\"\n\"Pacific/Chuuk\": \"Pasifik / Chuuk\"\n\"Pacific/Easter\": \"Pasifik / Easter\"\n\"Pacific/Efate\": \"Pasifik / Efate\"\n\"Pacific/Enderbury\": \"Pasifik / Enderbury\"\n\"Pacific/Fakaofo\": \"Pasifik / Fakaofo\"\n\"Pacific/Fiji\": \"Pasifik / Fiji\"\n\"Pacific/Funafuti\": \"Pasifik / Funafuti\"\n\"Pacific/Galapagos\": \"Pasifik / Galapagos\"\n\"Pacific/Gambier\": \"Pasifik / Gambier\"\n\"Pacific/Guadalcanal\": \"Pasifik / Guadalcanal\"\n\"Pacific/Guam\": \"Pasifik / Guam\"\n\"Pacific/Honolulu\": \"Pasifik / Honolulu\"\n\"Pacific/Kiritimati\": \"Pasifik / Kiritimati\"\n\"Pacific/Kosrae\": \"Pasifik / Kosrae\"\n\"Pacific/Kwajalein\": \"Pasifik / Kwajalein\"\n\"Pacific/Majuro\": \"Pasifik / Majuro\"\n\"Pacific/Marquesas\": \"Pasifik / Markiz\"\n\"Pacific/Midway\": \"Pasifik / Midway\"\n\"Pacific/Nauru\": \"Pasifik / Nauru\"\n\"Pacific/Niue\": \"Pasifik / Niue\"\n\"Pacific/Norfolk\": \"Pasifik / Norfolk\"\n\"Pacific/Noumea\": \"Pasifik / Noumea\"\n\"Pacific/Pago_Pago\": \"Pasifik / Pago_Pago\"\n\"Pacific/Palau\": \"Pasifik / Palau\"\n\"Pacific/Pitcairn\": \"Pasifik / Pitcairn\"\n\"Pacific/Pohnpei\": \"Pasifik / Pohnpei\"\n\"Pacific/Port_Moresby\": \"Pasifik / Port_Moresby\"\n\"Pacific/Rarotonga\": \"Pasifik / Rarotonga\"\n\"Pacific/Saipan\": \"Pasifik / Saipan\"\n\"Pacific/Tahiti\": \"Pasifik / Tahiti\"\n\"Pacific/Tarawa\": \"Pasifik / Tarawa\"\n\"Pacific/Tongatapu\": \"Pasifik / Tongatapu\"\n\"Pacific/Wake\": \"Pasifik / Uyandır\"\n\"Pacific/Wallis\": \"Pasifik / Wallis\"\n\"UTC\": \"UTC\"\n\"Time Format\": \"Zaman formatı\"\n\"Choose your default timezone\": \"Varsayılan saat diliminizi seçin\"\n\"Signature\": \"İmza\"\n\"User signature will be append at the bottom of ticket reply box\": \"Kullanıcı imzası, kayıt cevap kutusunun altına eklenecek\"\n\"Password\": \"Parola\"\n\"Password will remain same if you are not entering something in this field\": \"Bu alana bir şey girmiyorsanız şifre aynı kalacaktır\"\n\"Password must contain minimum 8 character length, at least two letters (not case sensitive), one number, one special character(space is not allowed).\": \"Parola minimum 8 karakter uzunluğunda, en az iki harf (büyük / küçük harfe duyarlı değil), bir rakam, bir özel karakter (boşluğa izin verilmez) içermelidir.\"\n\"Confirm Password\": \"Şifreyi Onayla\"\n\"Save Changes\": \"Değişiklikleri Kaydet\"\n\"SAVE CHANGES\": \"DEĞİŞİKLİKLERİ KAYDET\"\n\"CREATE TICKET\": \"KAYIT OLUŞTURUN\"\n\"Customer full name\": \"Müşteri tam adı\"\n\"Customer email address\": \"Müşteri e-posta adresi\"\n\"Select Type\": \"Tür Seçin\"\n\"Support\": \"Destek\"\n\"Choose ticket type\": \"Kayıt türünü seçin\"\n\"Ticket subject\": \"Kayıt konusu\"\n\"Message\": \"Mesaj\"\n\"Query Message\": \"Sorgu Mesajı\"\n\"Add Attachment\": \"Eklenti Ekle\"\n\"This field is mandatory\": \"Bu alan zorunlu\"\n\"General\": \"Genel\"\n\"Designation\": \"Atama\"\n\"Contant Number\": \"İletişim Numarası\"\n\"User signature will be append in the bottom of ticket reply box\": \"Kullanıcı imzası kayıtAssigning group(s) to user to view tickets regardless assignment cevap kutusunun altına eklenecek\"\n\"Account Status\": \"Hesap durumu\"\n\"Account is Active\": \"Hesap Aktif\"\n\"Assigning group(s) to user to view tickets regardless assignment.\": \"Atamaya bakılmaksızın kayıtları görüntülemek için kullanıcıya grup atama.\"\n\"Default\": \"Varsayılan\"\n\"Select All\": \"Hepsini seç\"\n\"Remove All\": \"Hepsini kaldır\"\n\"Assigning team(s) to user to view tickets regardless assignment.\": \"Göreve bakılmaksızın kayıtları görüntülemek için kullanıcıya takım (lar) atama.\"\n\"No Team added !\": \"Hiçbir takım eklenmedi!\"\n\"Permission\": \"İzin\"\n\"Role\": \"Rol\"\n\"Administrator\": \"Yönetici\"\n\"Select agent role\": \"Kullanıcı rolü seç\"\n\"Add Customer\": \"Müşteri Ekle\"\n\"Action\": \"Aksiyon\"\n\"Account Owner\": \"Hesap sahibi\"\n\"Active\": \"Aktif\"\n\"Edit\": \"Düzenle\"\n\"Delete\": \"Sil\"\n\"Disabled\": \"Pasif\"\n\"New Group\": \"Yeni Grup\"\n\"Default Privileges\": \"Varsayılan Ayrıcalıklar\"\n\"New Privileges\": \"Yeni Ayrıcalıklar\"\n\"NEW PRIVILEGE\": \"YENİ ÖZEL\"\n\"New Privilege\": \"Yeni Ayrıcalık\"\n\"New Team\": \"Yeni takım\"\n\"No Record Found\": \"Kayıt Bulunamadı\"\n\"Order Synchronization\": \"Sipariş Senkronizasyonu\"\n\"Easily integrate different ecommerce platforms with your helpdesk which can then be later used to swiftly integrate ecommerce order details with your support tickets.\": \"Farklı e-ticaret platformlarını, yardım masanıza kolayca entegre edin; bu daha sonra e-ticaret sipariş ayrıntılarını hızlı bir şekilde destek kayıtlarınzla entegre etmek için kullanılabilir.\"\n\"BigCommerce\": \"BigCommerce\"\n\"No channels have been added.\": \"Hiçbir kanal eklenmedi.\"\n\"Add BigCommerce Store\": \"BigCommerce Mağazası Ekle\"\n\"ADD BIGCOMMERCE STORE\": \"BIGCOMMERCE MAĞAZASI EKLE\"\n\"Mangento\": \"Mangento\"\n\"Add Magento Store\": \"Magento Mağazası Ekle\"\n\"OpenCart\": \"OpenCart\"\n\"Add OpenCart Store\": \"OpenCart Mağazası Ekle\"\n\"ADD OPENCART STORE\": \"OPENCART MAĞAZASI EKLE\"\n\"Shopify\": \"Shopify\"\n\"Add Shopify Store\": \"Shopify Mağazası Ekle\"\n\"ADD SHOPIFY STORE\": \"MAĞAZA DEPOSU EKLE\"\n\"Integrate a new BigCommerce store\": \"Yeni bir BigCommerce mağazasını entegre et\"\n\"Your BigCommerce Store Name\": \"BigCommerce Mağaza Adınız\"\n\"Your BigCommerce Store Hash\": \"BigCommerce Mağaza Karmanız\"\n\"Your BigCommerce Api Token\": \"BigCommerce Api Simgeniz\"\n\"Your BigCommerce Api Client ID\": \"BigCommerce Api Müşteri Kimliğiniz\"\n\"Enable Channel\": \"Kanalı Etkinleştir\"\n\"Add Store\": \"Mağaza Ekle\"\n\"ADD STORE\": \"MAĞAZA EKLE\"\n\"Integrate a new Magento store\": \"Yeni bir Magento mağazasını entegre et\"\n\"Your Magento Api Username\": \"Magento Api Kullanıcı Adınız\"\n\"Your Magento Api Password\": \"Magento Api Şifreniz\"\n\"Integrate a new OpenCart store\": \"Yeni bir OpenCart mağazası ekle\"\n\"Your OpenCart Api Key\": \"OpenCart Api Anahtarınız\"\n\"Your Shopify Store Name\": \"Shopify Mağaza Adınız\"\n\"Your Shopify Api Key\": \"Shopify Api Anahtarınız\"\n\"Your Shopify Api Password\": \"Shopify Api Şifreniz\"\n\"Easily embed custom form to help generate helpdesk tickets.\": \"Yardım masası kayıtları oluşturmanıza yardımcı olmak için özel formu kolayca gömün.\"\n\"Form-Builder\": \"Form-Oluşturucu\"\n\"Add Formbuilder\": \"Formbuilder ekle\"\n\"ADD FORMBUILDER\": \"FORMBUILDER EKLE\"\n\"No FormBuilder have been added.\": \"Hiçbir FormBuilder eklenmedi.\"\n\"Create a New Custom Form Below\": \"Aşağıda Yeni Bir Özel Form Oluşturun\"\n\"Form Name\": \"Form Adı\"\n\"It will be shown in the list of created forms\": \"Oluşturulan formlar listesinde gösterilecektir\"\n\"MANDATORY FIELDS\": \"ZORUNLU ALANLAR\"\n\"These fields will be visible in form and cant be edited\": \"Bu alanlar formda görünür olacak ve düzenlenemezler\"\n\"Reply\": \"Cevap\"\n\"OPTIONAL FIELDS\": \"İSTEĞE BAĞLI ALANLAR\"\n\"Select These Fields to Add in your Form\": \"Formunuza Eklemek İçin Bu Alanları Seçin\"\n\"GDPR\": \"GDPR\"\n\"Order\": \"Sipariş\"\n\"Categorybuilder\": \"Categorybuilder\"\n\"File\": \"Dosya\"\n\"Add Form\": \"Form Ekle\"\n\"ADD FORM\": \"FORM EKLE\"\n\"UPDATE FORM\": \"GÜNCELLEME FORMU\"\n\"Update Form\": \"Güncelleme Formu\"\n\"Embed\": \"Yerleştir\"\n\"EMBED\": \"YERLEŞTİR\"\n\"EMBED FORMBUILDER\": \"Formbuilderı Ekle\"\n\"Embed Formbuilder\": \"Formbuilderı Ekle\"\n\"Visit\": \"Ziyaret\"\n\"VISIT\": \"ZİYARET\"\n\"Code\": \"kod\"\n\"Total Ticket(s)\": \"Toplam Kayıt (lar)\"\n\"Ticket Count\": \"Kayıt Sayısı\"\n\"SwiftMailer Configurations\": \"SwiftMailer Konfigürasyonları\"\n\"No swiftmailer configurations found\": \"Hiçbir swiftmailer yapılandırması bulunamadı\"\n\"CREATE CONFIGURATION\": \"YAPILANDIRMA OLUŞTURMA\"\n\"Add configuration\": \"Yapılandırma ekle\"\n\"Update configuration\": \"Yapılandırmayı güncelle\"\n\"Mailer ID\": \"Mailer Kimliği\"\n\"Mailer ID - Leave blank to automatically create id\": \"Mailer ID - otomatik olarak kimlik oluşturmak için boş bırakın\"\n\"Transport Type\": \"Taşıma Türü\"\n\"SMTP\": \"SMTP\"\n\"Enable Delivery\": \"Teslimatı Etkinleştir\"\n\"Server\": \"Sunucu\"\n\"Port\": \"Port\"\n\"Encryption Mode\": \"Şifreleme Modu\"\n\"ssl\": \"ssl\"\n\"tsl\": \"tsl\"\n\"None\": \"Yok\"\n\"Authentication Mode\": \"Kimlik Doğrulama Modu\"\n\"login\": \"oturum aç\"\n\"API\": \"API\"\n\"Plain\": \"Sade\"\n\"CRAM-MD5\": \"CRAM-MD5\"\n\"Sender Address\": \"Gönderen adresi\"\n\"Delivery Address\": \"Teslimat adresi\"\n\"Block Spam\": \"Spam Spam\"\n\"Black list\": \"Kara liste\"\n\"Comma (,) separated values (Eg. support@example.com, @example.com, 68.98.31.226)\": \"Virgül (,) ile ayrılmış değerler (Örn. Support@example.com, @ example.com, 68.98.31.226)\"\n\"White list\": \"Beyaz liste\"\n\"Mailbox Settings\": \"Posta Kutusu Ayarları\"\n\"No mailbox configurations found\": \"Posta kutusu yapılandırması bulunamadı\"\n\"NEW MAILBOX\": \"YENİ POSTA KUTUSU\"\n\"New Mailbox\": \"Yeni Posta Kutusu\"\n\"Update Mailbox\": \"Posta Kutusunu Güncelle\"\n\"Add Mailbox\": \"Posta Kutusu Ekle\"\n\"Mailbox ID - Leave blank to automatically create id\": \"Posta Kutusu Kimliği - Otomatik olarak kimlik oluşturmak için boş bırakın\"\n\"Mailbox Name\": \"Posta Kutusu Adı\"\n\"Enable Mailbox\": \"Posta Kutusunu Etkinleştir\"\n\"Permanently delete from Inbox\": \"Gelen Kutusundan kalıcı olarak sil\"\n\"Incoming Mail (IMAP) Server\": \"Gelen Posta (IMAP) Sunucusu\"\n\"Configure your imap settings which will be used to fetch emails from your mailbox.\": \"Posta kutunuzdan e-postaları almak için kullanılacak imap ayarlarınızı yapılandırın.\"\n\"Transport\": \"taşıma\"\n\"IMAP\": \"IMAP\"\n\"Gmail\": \"Gmail\"\n\"Yahoo\": \"Yahoo\"\n\"Host\": \"evsahibi\"\n\"IMAP Host\": \"IMAP Sunucusu\"\n\"Email address\": \"E\"\n\"Associated Password\": \"İlişkili Şifre\"\n\"Outgoing Mail (SMTP) Server\": \"Giden Posta (SMTP) Sunucusu\"\n\"Select a valid Swift Mailer configuration which will be used to send emails through your mailbox.\": \"Posta kutunuzdan e-posta göndermek için kullanılacak geçerli bir Swift Mailer yapılandırması seçin.\"\n\"Swift Mailer ID\": \"Swift Mailer Kimliği\"\n\"None Selected\": \"Hiçbiri seçilmedi\"\n\"Create Mailbox\": \"Posta Kutusu Oluştur\"\n\"CREATE MAILBOX\": \"POSTA OLUŞTURMA\"\n\"New Template\": \"Yeni şablon\"\n\"NEW TEMPLATE\": \"YENİ ŞABLON\"\n\"Customer Forgot Password\": \"Müşteri Şifremi Unuttum\"\n\"Customer Account Created\": \"Müşteri Hesabı Oluşturuldu\"\n\"Ticket generated success mail to customer\": \"Kayıt müşteriye başarılı postalar üretti\"\n\"Customer Reply To The Agent\": \"Temsilciye Müşteri Yanıtı\"\n\"Ticket Assign\": \"Kayıt Ata\"\n\"Agent Forgot Password\": \"Kullanıcı Şifremi Unuttum\"\n\"Agent Account Created\": \"Kullanıcı Hesabı Oluşturuldu\"\n\"Ticket generated by customer\": \"Müşteri tarafından oluşturulan kayıt\"\n\"Agent Reply To The Customers ticket\": \"Müşteri Temsilcisine Müşteri Temsilcisi\"\n\"Email template name\": \"E-posta şablonu adı\"\n\"Email template subject\": \"E-posta şablonu konusu\"\n\"Template For\": \"Şablon İçin\"\n\"Nothing Selected\": \"Hiçbir şey seçilmedi\"\n\"email template will be used for work related with selected option\": \"e-posta şablonu seçilen seçenekle ilgili işlerde kullanılacak\"\n\"Email template body\": \"E-posta şablonu gövdesi\"\n\"Body\": \"Gövde\"\n\"placeholders\": \"tutucuları\"\n\"Ticket Subject\": \"Kayıt Konusu\"\n\"Ticket Message\": \"Kayıt Mesajı\"\n\"Ticket Attachments\": \"Kayıt Ekleri\"\n\"Ticket Tags\": \"Kayıt Etiketleri\"\n\"Ticket Source\": \"Kayıt Kaynağı\"\n\"Ticket Status\": \"Kayıt Durumu\"\n\"Ticket Priority\": \"Kayıt Önceliği\"\n\"Ticket Group\": \"Kayıt Grubu\"\n\"Ticket Team\": \"Kayıt Takımı\"\n\"Ticket Thread Message\": \"Kayıt Konusu Mesajı\"\n\"Ticket Customer Name\": \"KAyıt Müşteri Adı\"\n\"Ticket Customer Email\": \"Kayıt Müşteri E-postası\"\n\"Ticket Agent Name\": \"KAyıt Kullanıcı Adı\"\n\"Ticket Agent Email\": \"Kayıt Kullanıcı E-postası\"\n\"Ticket Agent Link\": \"Kayıt Kullanıcı Bağlantısı\"\n\"Ticket Customer Link\": \"Kayıt Müşteri Bağlantısı\"\n\"Last Collaborator Name\": \"Son İşbirliği Adı\"\n\"Last Collaborator Email\": \"Son İşbirliği E-postası\"\n\"Agent/ Customer Name\": \"Kullanıcı / Müşteri Adı\"\n\"Account Validation Link\": \"Hesap Doğrulama Bağlantısı\"\n\"Password Forgot Link\": \"Şifreyi Unuttum Bağlantısı\"\n\"Company Name\": \"Şirket Adı\"\n\"Company Logo\": \"Şirket logosu\"\n\"Company URL\": \"Şirket urlsi\"\n\"Swiftmailer id (Select from drop down)\": \"Swiftmailer kimliği (Aşağıdan seç)\"\n\"SwiftMailer\": \"SwiftMailer\"\n\"PROCEED\": \"İLERLEMEK\"\n\"Proceed\": \"İlerlemek\"\n\"Theme Color\": \"Tema Rengi\"\n\"Customer Created\": \"Müşteri Oluşturuldu\"\n\"Agent Created\": \"Kullanıcı Oluşturuldu\"\n\"Ticket Created\": \"Kayıt Oluşturuldu\"\n\"Agent Replied on Ticket\": \"Kayıt Üzerine Kullanıcı Cevaplandı\"\n\"Customer Replied on Ticket\": \"Müşteri Kayda Yanıt Verdi\"\n\"Workflow Status\": \"İş Akışı Durumu\"\n\"Workflow is Active\": \"İş Akışı Aktif\"\n\"Events\": \"Etkinlikler\"\n\"An event automatically triggers to check conditions and perform a respective pre-defined set of actions\": \"Bir olay, koşulları kontrol etmeyi ve önceden tanımlanmış bir eylemler dizisini gerçekleştirmeyi otomatik olarak tetikler\"\n\"Select an Event\": \"Bir Etkinlik Seçin\"\n\"Add More\": \"Daha ekle\"\n\"Conditions\": \"Koşullar\"\n\"Conditions are set of rules which checks for specific scenarios and are triggered on specific occasions\": \"Koşullar, belirli senaryoları kontrol eden ve belirli durumlarda tetiklenen kurallar kümesidir\"\n\"Subject or Description\": \"Konu veya Açıklama\"\n\"Actions\": \"Eylemler\"\n\"An action not only reduces the workload but also makes it quite easier for ticket automation\": \"Bir eylem yalnızca iş yükünü azaltmakla kalmaz, aynı zamanda kayıt otomasyonu için oldukça kolaylaştırır\"\n\"Select an Action\": \"Bir Eylem Seçin\"\n\"Add Note\": \"Not ekle\"\n\"Mail to agent\": \"Kullanıcıya Mail\"\n\"Mail to customer\": \"Müşteriye Mail\"\n\"Mail to group\": \"Gruba postala\"\n\"Mail to last collaborator\": \"Son ortak çalışana posta gönder\"\n\"Mail to team\": \"Ekibe postala\"\n\"Mark Spam\": \"Spami İşaretle\"\n\"Assign to agent\": \"Temsilciye tayin et\"\n\"Assign to group\": \"Gruba ata\"\n\"Set Priority As\": \"Önceliği Farklı Ayarla\"\n\"Set Status As\": \"Durumu Farklı Olarak Ayarla\"\n\"Set Tag As\": \"Etiketi Farklı Yap\"\n\"Set Label As\": \"Etiketi Farklı Ayarla\"\n\"Assign to team\": \"Takıma Ata\"\n\"Set Type As\": \"Türü Ayarla\"\n\"Add Workflow\": \"İş Akışı Ekle\"\n\"ADD WORKFLOW\": \"İŞ AKIŞI EKLE\"\n\"Ticket Type code\": \"Kayıt Türü kodu\"\n\"Ticket Type description\": \"Kayıt Türü açıklaması\"\n\"Type Status\": \"Tür Durumu\"\n\"Type is Active\": \"Tür Etkindir\"\n\"Add Save Reply\": \"Yanıt Ekle Kaydet\"\n\"Saved reply name\": \"Kayıtlı cevap adı\"\n\"Share saved reply with user(s) in these group(s)\": \"Bu gruptaki kullanıcılarla paylaşılan cevabı paylaş\"\n\"Share saved reply with user(s) in these teams(s)\": \"Bu takım (lar) daki kullanıcı (lar) ile kaydedilmiş yanıtı kaydet\"\n\"Saved reply Body\": \"Cevab ile kaydet\"\n\"New Prepared Response\": \"Yeni Hazırlanmış Cevap\"\n\"Prepared Response Status\": \"Hazırlanan Müdahale Durumu\"\n\"Prepared Response is Active\": \"Hazırlanan Cevap Etkin\"\n\"Share prepared response with user(s) in these group(s)\": \"Bu gruplardaki kullanıcılarla hazırlanan yanıtı paylaş\"\n\"Share prepared response with user(s) in these teams(s)\": \"Bu ekiplerdeki kullanıcılarla hazırlanan yanıtı paylaş\"\n\"ADD PREPARED RESPONSE\": \"HAZIRLANMIŞ YANIT EKLE\"\n\"Add Prepared Response\": \"Hazırlanmış Yanıt Ekle\"\n\"Folder Name is shown upfront at Knowledge Base\": \"Klasör Adı Knowledge Basede önceden gösteriliyor\"\n\"A small text about the folder helps user to navigate more easily\": \"Klasörle ilgili küçük bir metin kullanıcının daha kolay gezinmesine yardımcı olur\"\n\"Publish\": \"Yayınla\"\n\"Choose appropriate status\": \"Uygun durumu seç\"\n\"Folder Image\": \"Klasör Resmi\"\n\"An image is worth a thousands words and makes folder more accessible\": \"Bir görüntü binlerce kelimeye değer ve klasörü daha erişilebilir hale getirir\"\n\"Add Category\": \"Kategori ekle\"\n\"Category Name is shown upfront at Knowledge Base\": \"Kategori Adı Bilgi Bankasında önceden gösteriliyor\"\n\"A small text about the category helps user to navigate more easily\": \"Kategori hakkında küçük bir metin, kullanıcının daha kolay gezinmesine yardımcı olur\"\n\"Using Category Order, you can decide which category should display first\": \"Kategori Sırasını kullanarak ilk önce hangi kategorinin gösterilmesi gerektiğine karar verebilirsiniz\"\n\"Sorting\": \"Sınıflandırma\"\n\"Ascending Order (A-Z)\": \"Artan Düzen (A-Z)\"\n\"Descending Order (Z-A)\": \"Azalan Sipariş (Z-A)\"\n\"Based on Popularity\": \"Popülerliğe göre\"\n\"Article of this category will display according to selected option\": \"Bu kategorinin maddesi seçili seçeneğe göre gösterilecek\"\n\"Article\": \"Makale\"\n\"Title\": \"Başlık\"\n\"View\": \"Görünüm\"\n\"Make as Starred\": \"Yıldızlı Yap\"\n\"Yes\": \"Evet\"\n\"No\": \"Hayır\"\n\"Stared\": \"Yıldızlı\"\n\"Revisions\": \"Düzeltmeler\"\n\"Related Articles\": \"İlgili Makaleler\"\n\"Delete Article\":\t\"Makaleyi Sil\"\n\"Content\": \"İçerik\"\n\"Slug\": \"Weblink\"\n\"Slug is the url identity of this article.\": \"Weblink bu makalenin URLsidir.\"\n\"Meta Title\": \"Meta Başlığı\"\n\"Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A pages title tag and meta description are usually shown whenever that page appears in search engine results\": \"Başlık etiketleri ve meta açıklamaları, bir web sayfasının başlığındaki HTML kodlarının parçalarıdır. Arama motorlarının bir sayfadaki içeriği anlamalarına yardımcı olur. Bir sayfanın başlık etiketi ve meta açıklaması genellikle bu sayfa arama motoru sonuçlarında göründüğünde gösterilir.\"\n\"Meta Keywords\": \"Anahtar Kelimeler\"\n\"Meta Description\": \"Meta Açıklaması\"\n\"Description\": \"Açıklama\"\n\"Team Status\": \"Takım Durumu\"\n\"Team is Active\": \"Takım Aktif\"\n\"Edit Privilege\": \"Ayrıcalık Düzenle\"\n\"Can create ticket\": \"Kayıt yaratabilir\"\n\"Can edit ticket\": \"Kayıt düzenleyebilir\"\n\"Can delete ticket\": \"Kayıt silebilir\"\n\"Can restore trashed ticket\": \"Düşen kaydı geri yükleyebilir\"\n\"Can assign ticket\": \"Kayıt atayabilir\"\n\"Can assign ticket group\": \"Kayıt grubu atayabilir\"\n\"Can update ticket status\": \"Kayıt durumunu güncelleyebilir\"\n\"Can update ticket priority\": \"Kayıt önceliğini güncelleyebilir\"\n\"Can update ticket type\": \"Kayıt türünü güncelleyebilir\"\n\"Can add internal notes to ticket\": \"Kayda dahili notlar ekleyebilir\"\n\"Can edit thread/notes\": \"Konuyu / notları düzenleyebilir\"\n\"Can lock/unlock thread\": \"Konuyu kilitleyebilir / kilidini açabilir\"\n\"Can add collaborator to ticket\": \"Kayda ortak çalışabilir mi?\"\n\"Can delete collaborator from ticket\": \"Ortak çalışanı kayıttan silebilir\"\n\"Can delete thread/notes\": \"Konuyu / notları silebilir\"\n\"Can apply prepared response on ticket\": \"Kayda hazır yanıtı uygulayabilir\"\n\"Can add ticket tags\": \"Kayıt etiketi ekleyebilirim\"\n\"Can delete ticket tags\": \"Kayıt etiketlerini silebilir\"\n\"Can kick other ticket users\": \"Diğer kayıt kullanıcılarını tekmeleyebilir\"\n\"Can manage email templates\": \"E-posta şablonlarını yönetebilir\"\n\"Can manage groups\": \"Grupları yönetebilir\"\n\"Can manage Sub-Groups/ Teams\": \"Alt Grupları / Takımları Yönetebilir\"\n\"Can manage agents\": \"Kullanıcıları yönetebilir\"\n\"Can manage agent privileges\": \"Kullanıcı ayrıcalıklarını yönetebilir\"\n\"Can manage ticket types\": \"Kayıt türlerini yönetebilir\"\n\"Can manage ticket custom fields\": \"Özel kayıt alanlarını yönetebilir\"\n\"Can manage customers\": \"Müşterileri yönetebilir\"\n\"Can manage Prepared Responses\": \"Hazırlanmış Yanıtları Yönetebilir\"\n\"Can manage Automatic workflow\": \"Otomatik iş akışını yönetebilir\"\n\"Can manage tags\": \"Etiketleri yönetebilir\"\n\"Can manage knowledgebase\": \"Bilgi tabanını yönetebilir\"\n\"Can manage Groups Saved Reply\": \"Grubun Kayıtlı Yanıtını Yönetebilir\"\n\"Add Privilege\": \"Ayrıcalık ekle\"\n\"Choose set of privileges which will be available to the agent.\": \"Temsilciye sunulacak bir dizi imtiyaz seçin.\"\n\"Advanced\": \"Gelişmiş\"\n\"Privilege Name must have characters only\": \"Ayrıcalık Adı yalnızca karakter içermeli\"\n\"Maximum character length is 50\": \"Maksimum karakter uzunluğu 50\"\n\"Open Tickets\": \"Açık Kayıtlar\"\n\"New Customer\": \"Yeni müşteri\"\n\"New Agent\": \"Yeni Kullanıcı\"\n\"Total Article(s)\": \"Toplam Makale (ler)\"\n\"Please specify a valid email address\": \"Lütfen geçerli bir e-posta adresi belirtin\"\n\"Please enter the password associated with your email address\": \"Lütfen e-posta adresinizle ilişkili şifreyi girin\"\n\"Please enter your server host address\": \"Lütfen sunucu ana adresinizi girin\"\n\"Please specify a port number to connect with your mail server\": \"Lütfen posta sunucunuza bağlanmak için bir bağlantı noktası numarası belirtin\"\n\"Success ! Branding details saved successfully.\": \"Başarı! Marka detayları başarıyla kaydedildi. \"\n\"Success ! Time details saved successfully.\": \"Başarı! Zaman detayları başarıyla kaydedildi. \"\n\"Spam setting saved successfully.\": \"Spam ayarı başarıyla kaydedildi.\"\n\"Please specify a valid name for your mailbox.\": \"Lütfen posta kutunuz için geçerli bir ad belirtin.\"\n\"Please select a valid swift-mailer configuration.\": \"Lütfen geçerli bir hızlı posta göndericisi yapılandırması seçin.\"\n\"Please specify a valid host address.\": \"Lütfen geçerli bir ana bilgisayar adresi belirtin.\"\n\"Please specify a valid email address.\": \"Lütfen geçerli bir e-posta adresi belirtin.\"\n\"Please enter the associated account password.\": \"Lütfen ilişkili hesap şifresini girin.\"\n\"New Saved Reply\": \"Yeni Kayıtlı Yanıt\"\n\"New Category\": \"Yeni kategori\"\n\"Folder\": \"Klasör\"\n\"Category\": \"Kategori\"\n\"Created\": \"Oluşturuldu\"\n\"All Articles\": \"Bütün Makaleler\"\n\"Viewed\": \"Görüntülenen\"\n\"New Article\": \"Yeni makale\"\n\"Thank you for your feedback!\": \"Geri bildiriminiz için teşekkür ederiz!\"\n\"Was this article helpful?\": \"Bu makale yardımcı oldu mu?\"\n\"Helpdesk\": \"Yardım Masası\"\n\"Support Center\": \"Destek Merkezi\"\n\"Mailboxes\": \"Posta kutuları\"\n\"By\": \"Tarafından\"\n\"Search Tickets\": \"Kayıtları Ara\"\n\"Customer Information\": \"Müşteri Bilgileri\"\n\"Total Replies\": \"Toplam Cevap\"\n\"Filter With\": \"İle Filtrele\"\n\"Type email to add\": \"Eklenecek e-postayı yazın\"\n\"Collaborators\": \"İşbirlikçiler\"\n\"Labels\": \"Etiketler\"\n\"Group\": \"grup\"\n\"group\": \"grup\"\n\"Contact Team\": \"İletişim Ekibi\"\n\"Stay on ticket\": \"Kayıtta kal\"\n\"Redirect to list\": \"Listeye yönlendir\"\n\"Nothing interesting here...\": \"Burada ilginç bir şey yok\"\n\"Previous Ticket\": \"Önceki Kayıt\"\n\"Next Ticket\": \"Sonraki Kayıt\"\n\"Forward\": \"Yönlendir\"\n\"Note\": \"Not\"\n\"Write a reply\": \"Bir cevap yaz\"\n\"Created Ticket\": \"Kayıt Oluşturuldu\"\n\"All Threads\": \"Tüm konular\"\n\"Forwards\": \"Yönlendirilenler\"\n\"Notes\": \"Notlar\"\n\"Pinned\": \"Sabitlenen\"\n\"Edit Ticket\": \"Kayıt Düzenle\"\n\"Print Ticket\": \"Kayıt Yazdır\"\n\"Mark as Spam\": \"Spam olarak işaretle\"\n\"Mark as Closed\": \"Kapalı Olarak İşaretle\"\n\"Delete Ticket\": \"Kayıt Sil\"\n\"View order details from different eCommerce channels\": \"Farklı e-ticaret kanallarından sipariş ayrıntılarını görüntüleyin\"\n\"ECOMMERCE CHANNELS\": \"ECOMMERCE KANALLARI\"\n\"Select channel\": \"Kanal seç\"\n\"Order Id\": \"Sipariş Kimliği\"\n\"Fetch Order\": \"Siparişi Al\"\n\"No orders have been integrated to this ticket yet.\": \"Bu kayda henüz bir sipariş eklenmedi.\"\n\"Enter your credentials below to gain access to your helpdesk account.\": \"Yardım masası hesabınıza erişmek için bilgilerinizi aşağıya girin.\"\n\"Keep me logged in\": \"Oturumumu açık tut\"\n\"Forgot Password?\": \"Parolanızı mı unuttunuz?\"\n\"Log in to your\": \"Giriş yapın\"\n\"Sign In\": \"Oturum aç\"\n\"Edit Customer\": \"Müşteriyi Düzenle\"\n\"Update\": \"Güncelleme\"\n\"Discard\": \"Vazgeç\"\n\"Cancel\": \"İptal\"\n\"Not Assigned\": \"Atanmadı\"\n\"Submit\": \"Gönder\"\n\"Submit And Open\": \"Gönder ve Aç\"\n\"Submit And Pending\": \"Gönder ve Beklemede\"\n\"Submit And Answered\": \"Gönder Ve Cevaplandı\"\n\"Submit And Resolved\": \"Gönder ve Çözüldü\"\n\"Submit And Closed\": \"Gönder ve Kapat\"\n\"Choose a Color\": \"Bir renk seç\"\n\"Create\": \"Oluştur\"\n\"Edit Label\": \"Kaydı Düzenle\"\n\"Add Label\": \"Kayıt Ekle\"\n\"To\": \"Kime\"\n\"Ticket\": \"Kayıt\"\n\"Your browser does not support JavaScript or You disabled JavaScript, Please enable those !\": \"Tarayıcınız JavaScripti desteklemiyor veya JavaScripti devre dışı bıraktınız, lütfen bunları etkinleştirin!\"\n\"Confirm Action\": \"İşlemi Onayla\"\n\"Confirm\": \"Onayla\"\n\"No result found\": \"Sonuç bulunamadı\"\n\"ticket delivery status\": \"kayıt teslim durumu\"\n\"Warning! Select valid image file.\": \"Uyarı! Geçerli bir resim dosyası seçin.\"\n\"Error\": \"Hata\"\n\"Save\": \"Kaydet\"\n\"SEO\": \"SEO\"\n\"Edit Saved Filter\": \"Kayıtlı Filtreyi Düzenle\"\n\"Type atleast 2 letters\": \"En az 2 harf yazın\"\n\"Remove Label\": \"Etiketi Kaldır\"\n\"New Saved Filter\": \"Yeni Kayıtlı Filtre\"\n\"Is Default\": \"Varsayılandır\"\n\"Remove Saved Filter\": \"Kayıtlı Filtreyi Kaldır\"\n\"Ticket Info\": \"Kayıt Bilgisi\"\n\"Last Replied Agent\": \"Son Cevaplanan Kullanıcı\"\n\"created Ticket\": \"Kayıt oluşturuldu\"\n\"Uploaded Files\": \"Yüklenmiş dosyalar\"\n\"Download (as .zip)\": \"Zip şeklinde indir)\"\n\"made last reply\": \"son cevabı yaptım\"\n\"N/A\": \"N / A\"\n\"Unassigned\": \"Atanmayanlar\"\n\"Label\": \"Etiket\"\n\"Assigned to me\": \"Beni görevlendirdi\"\n\"Search Query\": \"Arama Sorgusu\"\n\"Searching\": \"Aranıyor\"\n\"Saved Filter\": \"Kayıtlı Filtre\"\n\"No Label Created\": \"Hiçbir Etiket Oluşturulmadı\"\n\"Label with same name already exist.\": \"Aynı ada sahip etiket zaten var.\"\n\"Create New\": \"Yeni Oluştur\"\n\"Mail status\": \"Posta durumu\"\n\"replied\": \"cevaplandı\"\n\"added note\": \"eklenmiş not\"\n\"forwarded\": \"İletilen\"\n\"TO\": \"KİME\"\n\"CC\": \"CC\"\n\"BCC\": \"BCC\"\n\"Locked\": \"Kilitli\"\n\"Edit Thread\": \"Konuyu Düzenle\"\n\"Delete Thread\": \"Konuyu Sil\"\n\"Unpin Thread\": \"Konuyu Kaldır\"\n\"Pin Thread\": \"Pin Konusu\"\n\"Unlock Thread\": \"Konunun Kilidini Aç\"\n\"Lock Thread\": \"Konuyu Kilitle\"\n\"Translate Thread\": \"Konuyu Çevir\"\n\"Language\": \"Dil\"\n\"English\": \"İngilizce\"\n\"French\": \"Fransızca\"\n\"Italian\": \"İtalyan\"\n\"Arabic\": \"Arapça\"\n\"German\": \"Almanca\"\n\"Spanish\": \"İspanyol\"\n\"Turkish\": \"Türk\"\n\"Danish\": \"Danimarka\"\n\"Chinese\": \"ÇİNCE\"\n\"Polish\": \"LEHÇE\"\n\"Hebrew\": \"Hebrew\"\n\"Portuguese\": \"PORTUGALSKI\"\n\"System\": \"Sistem\"\n\"Open in Files\": \"Dosyalarda Aç\"\n\"Email address is invalid\": \"Email adresi geçersiz\"\n\"Tag with same name already exist\": \"Aynı ada sahip etiket zaten var\"\n\"Text length should be less than 20 charactors\": \"Metin uzunluğu 20 karakterden az olmalıdır\"\n\"Label with same name already exist\": \"Aynı ada sahip etiket zaten var\"\n\"Agent Name\": \"Kullanıcı adı\"\n\"Agent Email\": \"Kullanıcı E-postası\"\n\"open\": \"açık\"\n\"Currently active agents on ticket\": \"Şu anda kayıttaki aktif kullanıcılar\"\n\"Edit Customer Information\": \"Müşteri Bilgilerini Düzenle\"\n\"Restore\": \"Onar\"\n\"Delete Forever\": \"Çöptekileri Boşalt\"\n\"Add Team\": \"Takım Ekle\"\n\"delete\": \"Sil\"\n\"You didnt have any folder for current filter(s).\": \"Msgstr Mevcut filtreler için klasörünüz yoktu.\"\n\"Add Folder\": \"Klasörü eklemek\"\n\"This field must have valid characters only\": \"Bu alanın yalnızca geçerli karakterleri olması gerekir\"\n\"Can edit task\": \"Görevi düzenleyebilir\"\n\"Can create task\": \"Görev oluşturabilir\"\n\"Can delete task\": \"Görevi silebilir\"\n\"Can add member to task\": \"Göreve üye ekleyebilir\"\n\"Can remove member from task\": \"Üyeyi görevden kaldırabilir\"\n\"Agent Privileges\": \"Kullanıcı Ayrıcalıkları\"\n\"Agent Privilege represents overall permissions in System.\": \"Kullanıcı Ayrıcalığı, Sistemdeki genel izinleri temsil eder.\"\n\"Ticket View\": \"Kayıt Görünümü\"\n\"User can view tickets based on selected scope.\": \"Kullanıcı seçilen kapsamı temel alarak kayıtları görebilir.\"\n\"If individual access then user can View assigned Ticket(s) only, If Team access then user can view all Ticket(s) in team(s) he belongs to and so on\": \"Bireysel erişim varsa, kullanıcı yalnızca Atanmış Biletleri Gösterebiliyorsa, Ekip erişimi varsa, kullanıcı ait olduğu ekipteki tüm Kayıt (lar) i görebilir ve böyle devam eder\"\n\"Global Access\": \"Genel Erişim\"\n\"Group Access\": \"Grup Erişimi\"\n\"Team Access\": \"Ekip Erişimi\"\n\"Individual Access\": \"Bireysel Erişim\"\n\"This field must have characters only\": \"Bu alan sadece karakter içermeli\"\n\"Maximum character length is 40\": \"Maksimum karakter uzunluğu 40\"\n\"This is not a valid email address\": \"Bu geçerli bir email adresi değildir\"\n\"Password must contains 8 Characters\": \"Şifre 8 Karakter İçermelidir\"\n\"The passwords does not match\": \"Şifreler uyuşmuyor\"\n\"Enabled\": \"Etkin\"\n\"Create Configuration\": \"Yapılandırma Oluştur\"\n\"Swift Mailer Settings\": \"Swift Mailer Ayarları\"\n\"Username\": \"Kullanıcı adı\"\n\"Please select a swiftmailer id\": \"Lütfen bir swiftmailer kimliği seçin\"\n\"Please enter a valid e-mail id\": \"Lütfen geçerli bir e-posta adresi giriniz\"\n\"Please enter a mailer id\": \"Lütfen bir posta numarası girin\"\n\"Email Id\": \"Email kimliği\"\n\"Are you sure? You want to perform this action.\": \"Emin misiniz? Bu işlemi yapmak istiyorsun. \"\n\"Reorder\": \"Yeniden sıralama\"\n\"New Workflow\": \"Yeni İş Akışı\"\n\"OR\": \"VEYA\"\n\"AND\": \"VE\"\n\"Please enter a valid name.\": \"Lütfen geçerli bir isim girin.\"\n\"Please select a value.\": \"Lütfen bir değer seçin.\"\n\"Please add a value.\": \"Lütfen bir değer ekleyin.\"\n\"This field is required\": \"Bu alan gereklidir\"\n\"or\": \"veya\"\n\"and\": \"ve\"\n\"Select a Condition\": \"Bir Koşul Seçin\"\n\"Loading...\": \"Yükleniyor...\"\n\"Select Option\": \"Seçeneği Seçin\"\n\"Inactive\": \"Etkin\"\n\"New Type\": \"Yeni tür\"\n\"Placeholders\": \"Yer tutucular\"\n\"Ticket Link\": \"Kayıt Bağlantısı\"\n\"Id\": \"İD\"\n\"Preview\": \"Ön izleme\"\n\"Sort Order\": \"Sıralama düzeni\"\n\"This field must be a number\": \"Bu alan bir sayı olmalıdır\"\n\"User\": \"Kullanıcı\"\n\"Edit Group\": \"Grubu Düzenle\"\n\"Group Status\": \"Grup Durumu\"\n\"Group is Active\": \"Grup Aktif\"\n\"Add Group\": \"Grup ekle\"\n\"Contact number is invalid\": \"İrtibat numarası geçersiz\"\n\"Edit Agent\": \"Kullanıcıyı Düzenle\"\n\"No Privilege added, Please add Privilege(s) first !\": \"Hiçbir Ayrıcalık eklenmedi, lütfen önce Ayrıcalık (lar) ı ekleyin!\"\n\"Edit Email Template\": \"E-posta Şablonunu Düzenle\"\n\"Edit Workflow\": \"İş Akışını Düzenle\"\n\"Save Workflow\": \"İş Akışını Kaydet\"\n\"Edit Ticket Type\": \"Kayıt Türünü Düzenle\"\n\"Add Ticket Type\": \"Kayıt Türü Ekle\"\n\"Date Released\": \"Çıkış tarihi\"\n\"Free\": \"Ücretsiz\"\n\"Premium\": \"Ödül\"\n\"Installed\": \"Kurulmuş\"\n\"Installed Applications\": \"Yüklü Uygulamalar\"\n\"Apps Dashboard\": \"Apps Gösterge Tablosu\"\n\"Dashboard\": \"Gösterge Paneli\"\n\"Nothing Interesting here\": \"Burada ilginç bir şey yok\"\n\"No Categories Added\": \"Kategori Eklenmedi\"\n\"ticket\": \"kayıt\"\n\"Add Email Template\": \"E-posta Şablonu Ekle\"\n\"This field contain 100 characters only\": \"Bu alan sadece 100 karakter içeriyor\"\n\"This field contain characters only\": \"Bu alan sadece karakter içeriyor\"\n\"Name length must not be greater than 200 !!\": \"İsim uzunluğu 200den büyük olmamalıdır !!\"\n\"Warning! Correct all field values first!\": \"Uyarı! Önce tüm alan değerlerini düzeltin! \"\n\"Warning ! This is not a valid request\": \"Uyarı! Bu geçerli bir istek değil \"\n\"Success ! Tag removed successfully.\": \"Başarı! Etiket başarıyla kaldırıldı. \"\n\"Success ! Tags Saved successfully.\": \"Başarı! Etiketler başarıyla kaydedildi. \"\n\"Success ! Revision restored successfully.\": \"Başarı! Düzeltme başarıyla geri yüklendi. \"\n\"Success ! Categories updated successfully.\": \"Başarı! Kategoriler başarıyla güncellendi. \"\n\"Success ! Article Related removed successfully.\": \"Başarı! Madde İlgili başarıyla kaldırıldı. \"\n\"Success ! Article Related is already added.\": \"Başarı! İlgili Makale zaten eklenmiş. \"\n\"Success ! Cannot add self as relative article.\": \"Başarı! Kendini göreceli makale olarak ekleyemiyorum. \"\n\"Success ! Article Related updated successfully.\": \"Başarı! Madde İlgili başarıyla güncellendi. \"\n\"Success ! Articles removed successfully.\": \"Başarı! Makaleler başarıyla kaldırıldı. \"\n\"Success ! Article status updated successfully.\": \"Başarı! Makale durumu başarıyla güncellendi. \"\n\"Success ! Article star updated successfully.\": \"Başarı! Makale yıldızı başarıyla güncellendi. \"\n\"Success! Article updated successfully\": \"Başarı! Makale başarıyla güncellendi\"\n\"Success ! Category sort  order updated successfully.\": \"Başarı! Kategori sıralama düzeni başarıyla güncellendi. \"\n\"Success ! Category status updated successfully.\": \"Başarı! Kategori durumu başarıyla güncellendi. \"\n\"Success ! Folders updated successfully.\": \"Başarı! Klasörler başarıyla güncellendi. \"\n\"Success ! Categories removed successfully.\": \"Başarı! Kategoriler başarıyla kaldırıldı. \"\n\"Success ! Category updated successfully.\": \"Başarı! Kategori başarıyla güncellendi. \"\n\"Error ! Category is not exist.\": \"Hata ! Kategori mevcut değil. \"\n\"Warning ! Customer Login disabled by admin.\": \"Uyarı! Müşteri Girişi yönetici tarafından devre dışı bırakıldı. \"\n\"This Email is not registered with us.\": \"Bu e-posta bize kayıtlı değil.\"\n\"Your password has been updated successfully.\": \"Şifreniz başarıyla güncellendi.\"\n\"Password dont match.\": \"Parola eşleşmiyor.\"\n\"Error ! Profile image is not valid, please upload a valid format\": \"Hata ! Profil resmi geçerli değil, lütfen geçerli bir biçim yükle\"\n\"Success! Folder has been added successfully.\": \"Başarı! Klasör başarıyla eklendi. \"\n\"Folder updated successfully.\": \"Klasör başarıyla güncellendi.\"\n\"Success ! Folder status updated successfully.\": \"Başarı! Klasör durumu başarıyla güncellendi. \"\n\"Error ! Folder is not exist.\": \"Hata ! Klasör mevcut değil. \"\n\"Success ! Folder updated successfully.\": \"Başarı! Klasör başarıyla güncellendi. \"\n\"Error ! Folder does not exist.\": \"Hata ! Klasör mevcut değil. \"\n\"Success ! Folder deleted successfully.\": \"Başarı! Klasör başarıyla silindi. \"\n\"Warning ! Folder doesnt exists!\": \"Uyarı! Klasör mevcut değil!\"\n\"Warning ! Cannot create ticket, given email is blocked by admin.\": \"Uyarı! Kayıt oluşturulamıyor, verilen e-posta admin tarafından engelleniyor. \"\n\"Success ! Ticket has been created successfully.\": \"Başarı! Kayıt başarıyla oluşturuldu. \"\n\"Warning ! Can not create ticket, invalid details.\": \"Uyarı! Kayıt oluşturulamıyor, geçersiz bilgiler var. \"\n\"Warning ! Post size can not exceed 25MB\": \"Uyarı! Yazı boyutu 25 MBı geçemez\"\n\"Create Ticket Request\": \"Kayıt Oluştur\"\n\"Success ! Reply added successfully.\": \"Başarı! Cevap başarıyla eklendi.\"\n\"Warning ! Reply field can not be blank.\": \"Uyarı! Cevap alanı boş bırakılamaz.\"\n\"Success ! Rating has been successfully added.\": \"Başarı! Değerlendirme başarıyla eklendi. \"\n\"Warning ! Invalid rating.\": \"Uyarı! Geçersiz derecelendirme. \"\n\"Error ! Can not add customer as a collaborator.\": \"Hata ! Müşteriyi ortak çalışan olarak ekleyemiyorum. \"\n\"Success ! Collaborator added successfully.\": \"Başarı! Ortak çalışan başarıyla eklendi. \"\n\"Error ! Collaborator is already added.\": \"Hata ! Ortak çalışan zaten eklenmiş. \"\n\"Success ! Collaborator removed successfully.\": \"Başarı! Ortak çalışan başarıyla kaldırıldı. \"\n\"Error ! Invalid Collaborator.\": \"Hata ! Geçersiz Ortak Çalışan. \"\n\"An unexpected error occurred. Please try again later.\": \"Beklenmeyen bir hata oluştu. Lütfen daha sonra tekrar deneyiniz.\"\n\"Feedback saved successfully.\": \"Geri bildirim başarıyla kaydedildi.\"\n\"Feedback updated successfully.\": \"Geri bildirim başarıyla güncellendi.\"\n\"Invalid feedback provided.\": \"Geçersiz geri bildirim sağlandı.\"\n\"Article not found.\": \"Makale bulunamadı.\"\n\"You need to login to your account before can perform this action.\": \"Bu işlemi yapabilmek için önce hesabınıza giriş yapmanız gerekiyor.\"\n\"Warning! Please add valid Actions!\": \"Uyarı! Lütfen geçerli İşlemler ekleyin! \"\n\"Warning! In Free Plan you can not change Events!\": \"Uyarı! Ücretsiz Planda, Olayları değiştiremezsiniz! \"\n\"Success! Prepared Response has been updated successfully.\": \"Başarı! Hazırlanan Yanıt başarıyla güncellendi. \"\n\"Success! Prepared Response has been added successfully.\": \"Başarı! Hazırlanan yanıt başarıyla eklendi. \"\n\"Warning  This is not a valid request\": \"Uyarı Bu geçerli bir istek değil\"\n\"Use Default Colors\": \"Varsayılan Renkleri Kullan\"\n\"Masonry\": \"Duvar\"\n\"Popular Article\": \"Popüler Makale\"\n\"Manage Ticket Custom Fields\": \"Kayıt Özel Alanlarını Yönet\"\n\"You dont have premission to edit this Prepared response\": \"Bu Hazırlanan yanıtı düzenlemek için bir önceliğiniz yok\"\n\"Save Prepared Response\": \"Hazırlanmış Yanıtı Kaydet\"\n\"Success ! Prepared response removed successfully.\": \"Başarı! Hazırlanan yanıt başarıyla kaldırıldı. \"\n\"Warning! You are not allowed to perform this action.\": \"Uyarı! Bu işlemi gerçekleştirme izniniz yok. \"\n\"Success! Workflow has been updated successfully.\": \"Başarı! İş akışı başarıyla güncellendi. \"\n\"Success! Workflow has been added successfully.\": \"Başarı! İş akışı başarıyla eklendi. \"\n\"Success! Order has been updated successfully.\": \"Başarı! Sipariş başarıyla güncellendi. \"\n\"Success! Workflow has been removed successfully.\": \"Başarı! İş akışı başarıyla kaldırıldı. \"\n\"Mailbox successfully created.\": \"Posta kutusu başarıyla oluşturuldu.\"\n\"Mailbox successfully updated.\": \"Posta kutusu başarıyla güncellendi.\"\n\"Warning ! Bad request !\": \"Uyarı! Geçersiz istek !\"\n\"Error! Given current password is incorrect.\": \"Hata! Verilen mevcut şifre yanlış. \"\n\"Success ! Profile update successfully.\": \"Başarı! Profil başarıyla güncellendi. \"\n\"Error ! User with same email is already exist.\": \"Hata ! Aynı e-postaya sahip bir kullanıcı zaten var. \"\n\"Success ! Agent updated successfully.\": \"Başarı! Kullanıcı başarıyla güncellendi. \"\n\"Success ! Agent removed successfully.\": \"Başarı! Kullanıcı başarıyla kaldırıldı. \"\n\"Warning ! You are allowed to remove account owners account.\": \"Uyarı! Hesap sahibinin hesabını kaldırma izniniz var.\"\n\"Error ! Invalid user id.\": \"Hata! Geçersiz kullanıcı kimliği.\"\n\"Success ! Filter has been saved successfully.\": \"Başarı! Filtre başarıyla kaydedildi.\"\n\"Success ! Filter has been updated successfully.\": \"Başarı! Filtre başarıyla güncellendi.\"\n\"Success ! Filter has been removed successfully.\": \"Başarı! Filtre başarıyla kaldırıldı.\"\n\"Please check your mail for password update.\": \"Lütfen şifrenizi güncellemek için postanızı kontrol edin.\"\n\"This Email address is not registered with us.\": \"Bu e-posta adresi bize kayıtlı değil.\"\n\"Success ! Customer saved successfully.\": \"Başarı! Müşteri başarıyla kaydedildi.\"\n\"Error ! User with same email already exist.\": \"Hata! Aynı e-postaya sahip kullanıcı zaten var.\"\n\"Success ! Customer information updated successfully.\": \"Başarı! Müşteri bilgileri başarıyla güncellendi.\"\n\"Success ! Customer updated successfully.\": \"Başarı! Müşteri başarıyla güncellendi.\"\n\"Error ! Customer with same email already exist.\": \"Hata! Aynı e-postaya sahip müşteri zaten var.\"\n\"unstarred Action Completed successfully\": \"başlatılmamış işlem başarıyla tamamlandı\"\n\"starred Action Completed successfully\": \"yıldızlı Eylem başarıyla tamamlandı\"\n\"Success ! Customer removed successfully.\": \"Başarı! Müşteri başarıyla kaldırıldı.\"\n\"Error ! Invalid customer id.\": \"Hata! Geçersiz müşteri kimliği.\"\n\"Success! Template has been updated successfully.\": \"Başarı! Şablon başarıyla güncellendi.\"\n\"Success! Template has been added successfully.\": \"Başarı! Şablon başarıyla eklendi.\"\n\"Success! Template has been deleted successfully.\": \"Başarı! Şablon başarıyla silindi.\"\n\"Warning! resource not found.\": \"Uyarı! Kaynak bulunamadı.\"\n\"Warning! You can not remove predefined email template which is being used in workflow(s).\": \"Uyarı! İş akışlarında kullanılan önceden tanımlanmış e-posta şablonunu kaldıramazsınız.\"\n\"Success ! Email settings are updated successfully.\": \"Başarı! E-posta ayarları başarıyla güncellendi.\"\n\"Success ! Group information updated successfully.\": \"Başarı! Grup bilgileri başarıyla güncellendi.\"\n\"Success ! Group information saved successfully.\": \"Başarı! Grup bilgileri başarıyla kaydedildi.\"\n\"Support Group removed successfully.\": \"Destek Grubu başarıyla kaldırıldı.\"\n\"Success ! Privilege information saved successfully.\": \"Başarı! Ayrıcalık bilgileri başarıyla kaydedildi.\"\n\"Privilege updated successfully.\": \"Ayrıcalık başarıyla güncellendi.\"\n\"Support Privilege removed successfully.\": \"Destek Ayrıcalığı başarıyla kaldırıldı.\"\n\"Success! Reply has been updated successfully.\": \"Başarı! Cevap başarıyla güncellendi.\"\n\"Success! Reply has been added successfully.\": \"Başarı! Cevap başarıyla eklendi.\"\n\"Success! Saved Reply has been deleted successfully\": \"Başarı! Kayıtlı Yanıt başarıyla silindi\"\n\"SwiftMailer configuration updated successfully.\": \"SwiftMailer yapılandırması başarıyla güncellendi.\"\n\"Swiftmailer configuration removed successfully.\": \"Swiftmailer yapılandırması başarıyla kaldırıldı.\"\n\"Success ! Team information saved successfully.\": \"Başarı! Takım bilgileri başarıyla kaydedildi.\"\n\"Success ! Team information updated successfully.\": \"Başarı! Takım bilgileri başarıyla güncellendi.\"\n\"Support Team removed successfully.\": \"Destek Ekibi başarıyla kaldırıldı.\"\n\"Success! Reply has been added successfully\": \"Başarı! Cevap başarıyla eklendi\"\n\"Success ! Thread updated successfully.\": \"Başarı! Konu başarıyla güncellendi.\"\n\"Error ! Reply field can not be blank.\": \"Hata! Yanıt alanı boş bırakılamaz.\"\n\"Success ! Thread removed successfully.\": \"Başarı! Konu başarıyla kaldırıldı.\"\n\"Success ! Thread locked successfully\": \"Başarı! Konu başarıyla kilitlendi\"\n\"Success ! Thread unlocked successfully\": \"Başarı! Konu başarıyla kilitlendi\"\n\"Success ! Thread pinned successfully\": \"Başarı! Konu başarıyla sabitlendi\"\n\"Error ! Invalid thread.\": \"Hata! Geçersiz konu.\"\n\"Could not create ticket, invalid details.\": \"Kayıt oluşturulamadı, geçersiz detaylar.\"\n\"Success ! Tag updated successfully.\": \"Başarı! Tag başarıyla güncellendi.\"\n\"Error ! Customer can not be added as collaborator.\": \"Hata! Müşteri ortak çalışan olarak eklenemez.\"\n\"Success ! Tag unassigned successfully.\": \"Success! Tag başarıyla atandı.\"\n\"Success ! Tag added successfully.\": \"Başarı! Tag başarıyla eklendi.\"\n\"Please enter tag name.\": \"Lütfen etiketin adını girin.\"\n\"Error ! Invalid tag.\": \"Hata! Geçersiz etiket.\"\n\"Success ! Type removed successfully.\": \"Başarılı! Tür başarıyla kaldırıldı.\"\n\"Success ! Ticket to label removed successfully.\": \"Başarı! Etiketi etiket başarıyla kaldırıldı.\"\n\"Unable to retrieve support team details\": \"Destek ekibi detayları alınamadı\"\n\"Ticket support group updated successfully\": \"Kayıt destek grubu başarıyla güncellendi\"\n\"Unable to retrieve status details\": \"Durum ayrıntıları alınamadı\"\n\"Insufficient details provided.\": \"Yetersiz detay verildi.\"\n\"Error! Subject field is mandatory\": \"Hata! Konu alanı zorunlu\"\n\"Error! Reply field is mandatory\": \"Hata! Cevap alanı zorunlu\"\n\"Success ! Ticket has been updated successfully.\": \"Başarı! Kayıt başarıyla güncellendi.\"\n\"Success ! Label updated successfully.\": \"Başarı! Kayıt başarıyla güncellendi.\"\n\"Error ! Invalid label id.\": \"Hata! Geçersiz etiket kimliği.\"\n\"Success ! Label removed successfully.\": \"Başarı! Etiket başarıyla kaldırıldı.\"\n\"Success ! Label created successfully.\": \"Başarı! Etiket başarıyla oluşturuldu.\"\n\"Error ! Label name can not be blank.\": \"Hata! Etiket adı boş bırakılamaz.\"\n\"Success ! Ticket moved to trash successfully.\": \"Başarı! Kayıt başarıyla çöpe taşındı.\"\n\"Success! Ticket type saved successfully.\": \"Başarı! Kayıt türü başarıyla kaydedildi.\"\n\"Success! Ticket type updated successfully.\": \"Başarı! Kayıt türü başarıyla güncellendi.\"\n\"Error! Ticket type with same name already exist\": \"Hata! Aynı adı taşıyan kayıt türü zaten var\"\n\"SAVE\": \"KAYDET\"\n\"# Save\": \"Kaydet\"\n\n# Successfully Pop-up/Notification Messages:\n\"Ticket is already assigned to agent\" : \"Bilet zaten acenteye atanmış\"\n\"Success ! Agent assigned successfully.\" : \"Başarı ! Aracı başarıyla atandı.\"\n\"Ticket status is already set\" : \"Bilet durumu zaten ayarlandı\"\n\"Success ! Tickets status updated successfully.\" : \"Başarı ! Bilet durumu başarıyla güncellendi.\"\n\"Ticket priority is already set\" : \"Bilet önceliği zaten ayarlandı\"\n\"Success ! Tickets priority updated successfully.\" : \"Başarı ! Bilet önceliği başarıyla güncellendi.\"\n\"Ticket group is updated successfully\" : \"Bilet grubu başarıyla güncellendi\"\n\"Ticket is already assigned to group\" : \"Bilet zaten gruba atanmış\"\n\"Success ! Tickets group updated successfully.\" : \"Başarı ! Bilet grubu başarıyla güncellendi.\"\n\"Ticket team is updated successfully\" : \"Bilet ekibi başarıyla güncellendi\"\n\"Ticket is already assigned to team\" : \"Bilet zaten takıma atanmış\"\n\"Success ! Tickets team updated successfully.\" : \"Başarı ! Bilet ekibi başarıyla güncellendi.\"\n\"Ticket type is already set\" : \"Bilet türü zaten ayarlandı\"\n\"Success ! Tickets type updated successfully.\" : \"Başarı ! Bilet türü başarıyla güncellendi.\"\n\"Success ! Tickets label updated successfully.\" : \"Başarı ! Bilet etiketi başarıyla güncellendi.\"\n\"Success ! Tickets added to label successfully.\" : \"Başarı ! Biletler etikete başarıyla eklendi.\"\n\"Success ! Tickets moved to trashed successfully.\" : \"Başarı ! Biletler başarıyla çöp kutusuna taşındı.\"\n\"Success ! Tickets removed successfully.\" : \"Başarı ! Biletler başarıyla kaldırıldı.\"\n\"Success ! Tickets restored successfully.\" : \"Başarı ! Biletler başarıyla geri yüklendi.\"\n\"Unable to retrieve group details\" : \"Grup ayrıntıları alınamıyor\"\n\"Unable to retrieve team details\" : \"Ekip ayrıntıları alınamadı\"\n\"Tickets details have been updated successfully\": \"Bilet ayrıntıları başarıyla güncellendi\"\n\"Label added to ticket successfully\" : \"Etiket bilete başarıyla eklendi\"\t\t\t\t\n\"Label already added to ticket\" : \"Etiket zaten bilete eklendi\"\n\n#customer page\n\"New Ticket Request\": \"Yeni Kayıt\"\n\"Ticket Requests\": \"Kayıtlar\"\n\"Tickets have been updated successfully\": \"Kayıtlar başarıyla güncellendi\"\n\"Please check your mail for password update\": \"Lütfen şifrenizi güncellemek için postanızı kontrol edin\"\n\"This email address is not registered with us\": \"Bu e-posta adresi bize kayıtlı değil\"\n\"You have already update password using this link if you wish to change password again click on forget password link here from login page\": \"Şifreyi tekrar değiştirmek istiyorsanız, giriş sayfasından şifreyi unut bağlantısını tıklayın.\"\n\"Your password has been successfully updated. Login using updated password\": \"Şifreniz başarıyla güncellendi. Güncellenmiş şifreyi kullanarak giriş yapın\"\n\"Please try again, The passwords do not match\": \"Lütfen tekrar deneyin, Şifreler eşleşmiyor\"\n\"Support Privilege removed successfully\": \"Destek Ayrıcalığı başarıyla kaldırıldı\"\n\"Success! Saved Reply has been deleted successfully.\": \"Başarı! Kayıtlı Yanıt başarıyla silindi.\"\n\"SwiftMailer configuration created successfully.\": \"SwiftMailer yapılandırması başarıyla oluşturuldu.\"\n\"No swiftmailer configurations found for mailer id:\": \"E-posta kimliği için swiftmailer yapılandırması bulunamadı\"\n\"Reply content cannot be left blank.\": \"Yanıt içeriği boş bırakılamaz.\"\n\"Reply added to the ticket and forwarded successfully.\": \"Yanıt kayda eklendi ve başarıyla yönlendirildi.\"\n\"Success ! Thread pinned successfully.\": \"Başarılı! Konu başarıyla sabitlendi.\"\n\"Success ! unpinned removed successfully.\": \"Başarılı! sabitlenmemiş başarıyla kaldırıldı.\"\n\"Unable to retrieve priority details\": \"Öncelik ayrıntıları alınamadı\"\n\"Ticket assigned to support group \": \"Destek grubuna atanmış kayıt\"\n\"Mailbox configuration removed successfully.\": \"Posta kutusu yapılandırması başarıyla kaldırıldı.\"\n\"visit our website\": \"İnternet sitemizi ziyaret edin\"\n\"Cookie Usage Policy\": \"Çerez Kullanım Politikası\"\n\"cookie\": \"çerez\"\n\"cookies\": \"çerezler\"\n\"HELP\": \"YARDIM\"\n\"Home\": \"ANA SAYFA\"\n\"Cookie Policy\": \"Çerez politikası\"\n\"Prev\": \"Önceki\"\n\"Ticket query message\": \"Kayıt mesajı\"\n\"Select type\": \"Türünü seçin\"\n\"Search KnowledgeBase\": \"Bilgi Bankasında Ara\"\n\"You cant merge an account with itself.\": \"Bir hesabı kendisiyle birleştiremezsiniz.\"\n\"Edit Profile\": \"Profili Düzenle\"\n\"Customer Login\": \"Müşteri girişi\"\n\"Contact Us\": \"Bizimle iletişime geçin\"\n\"If you have ever contacted our support previously, your account would have already been created.\": \"Daha önce desteğimize başvurduysanız, hesabınız çoktan oluşturulmuştur.\"\n\"HelpDesk\": \"Yardım Masası\"\n\"Enter search keyword\": \"Anahtar sözcüğünü girin\"\n\"Browse via Folders\": \"Klasörlere göz atın\"\n\"Looking for something that is queried generally? Choose a relevant folder from below to explore possible solutions\": \"Genel olarak sorgulanan bir şey mi arıyorsunuz? Olası çözümleri keşfetmek için aşağıdan ilgili bir klasör seçin\"\n\"Unable to find an answer?\": \"Bir cevap bulamadınız mı?\"\n\"Looking for anything specific article which resides in general queries? Just browse the various relevant folders and categories and then you will find the desired article.\": \"Genel sorgularda yer alan belirli bir makaleyi mi arıyorsunuz? Sadece çeşitli ilgili klasör ve kategorilere göz attığınızda istediğiniz makaleyi bulacaksınız.\"\n\"Popular Articles \": \"Popüler Makaleler\"\n\"Here are some of the most popular articles, which helped number of users to get their queries and questions resolved. \": \"Aşağıda, kullanıcıların sayısının sorgularını ve sorularını çözmelerini sağlayan en popüler makalelerden bazıları yer almaktadır.\"\n\"Browse via Categories\": \"Kategoriler yoluyla göz atın\"\n\"Looking for something specific? Choose a relevant category from below to explore possible solutions\": \"Belirli bir şey mi arıyorsunuz? Olası çözümleri keşfetmek için aşağıdan alakalı bir kategori seçin\"\n\"No Categories Found!\": \"Kategori Bulunamadı\"\n\"Powered by\": \"Tüm hakları saklıdır.\"\n\"Powered by %uvdesk%, an open-source project by %webkul%.\": \"%webkul% tarafından sağlanan açık kaynaklı bir proje olan %uvdesk% tarafından desteklenmektedir.\"\n\n#forgotpassword\n\"Forgot Password\": \"Parolanızı mı unuttunuz\"\n\"Enter your email address and we will send you an email with instructions to update your login credentials.\": \"E-posta adresinizi girin, giriş bilgilerinizi güncellemeniz için talimatları içeren bir e-posta göndereceğiz.\"\n\"Send Mail\": \"Eposta gönder\"\n\"Status:\" : \"Durum:\"\n\"Sign In to %websitename%\": \"Giriş yap %websitename%\"\n\"Enter your name\": \"Adınızı giriniz\"\n\"Enter your email\": \"E-postanızı giriniz\"\n\"Learn more about %deliveryStatus%.\": \"Hakkında daha fazla öğren  %deliveryStatus%.\"\n\"To know more about how our privacy policy works, please %websiteLink%.\": \"Gizlilik politikamızın nasıl çalıştığı hakkında daha fazla bilgi için, lütfen %websiteLink%.\"\n\"Some of our site pages utilize %cookies% and other tracking technologies. A %cookie% is a small text file that may be used, for example, to collect information about site activity. Some cookies and other technologies may serve to recall personal information previously indicated by a site user. You may block cookies, or delete existing cookies, by adjusting the appropriate setting on your browser. Please consult the %help% menu of your browser to learn how to do this. If you block or delete %cookies% you may find the usefulness of our site to be impaired.\": \"Site sayfalarımızdan bazıları %cookies% ve diğer izleme teknolojilerini kullanır. %cookie%, örneğin site etkinliği hakkında bilgi toplamak için kullanılabilecek küçük bir metin dosyasıdır. Bazı çerezler ve diğer teknolojiler, daha önce bir site kullanıcısı tarafından belirtilen kişisel bilgileri geri çağırmaya hizmet edebilir. Tarayıcınızdaki uygun ayarı yaparak çerezleri engelleyebilir veya mevcut çerezleri silebilirsiniz. Bunun nasıl yapılacağını öğrenmek için lütfen tarayıcınızın %help% menüsüne bakın. %cookies%  engeller veya silerseniz, sitemizin yararını engelli olarak bulabilirsiniz.\"\n\"This field contain maximum 40 charectures.\": \"Bu alan maksimum 40 adet grafik içermektedir.\"\n\"This field contain maximum 50 charectures.\": \"Bu alan maksimum 50 adet grafik içermektedir.\"\n\"Time\": \"Zaman\"\n\"Links\": \"Bağlantılar\"\n\"Broadcast Message\": \"Yayın mesajı\"\n\"Wide Logo\": \"Geniş Logo\"\n'Upload an Image (200px x 48px) in</br> PNG or JPG Format': 'PNG veya JPG Formatında Resim Yükle (200px x 48px)'\n\"It will be shown as Logo on Knowledgebase and Helpdesk\": \"Bilgi Bankası ve Yardım Masası üzerinde Logo olarak gösterilecek\"\n\"Website Status\": \"Web Sitesi Durumu\"\n\"Enable front end website and knowledgebase for customer(s)\": \"Müşteri için ön uç web sitesini ve bilgi bankasını etkinleştir\"\n\"Brand Color\": \"Marka Rengi\"\n\"Page Background Color\": \"Sayfa Arka Plan Rengi\"\n\"Header Background Color\": \"Başlık Arka Plan Rengi\"\n\"Banner Background Color\": \"Afiş Arka Plan Rengi\"\n\"Page Link Color\": \"Sayfa Bağlantısı Rengi\"\n\"Page Link Hover Color\": \"Sayfa Bağlantısı Vurgulu Rengi\"\n\"Article Text Color\": \"Makale Metin Rengi\"\n\"Tag Line\": \"Etiket Satırı\"\n\"Hi! how can we help?\": \"“Merhaba! Nasıl yardımcı olabiliriz?”\"\n\"Layout\": \"Yerleşim\"\n\"Ticket Create Option\": \"Kayıt Oluşturma Seçeneği\"\n\"Login Required To Create Tickets\": \"Kayıt Oluşturmak için Giriş Yapmanız Gerekiyor\"\n\"Remove Customer Login/Signin Button\": \"Müşteri Giriş / Giriş Düğmesini Kaldır\"\n\"Disable Customer Login\": \"Müşteri Girişini Devre Dışı Bırak\"\n\"Meta Description (Recommended)\": \"Meta Açıklama (Önerilen)\"\n\"Meta Keywords (Recommended)\": \"Meta Anahtar Kelimeler (Önerilen)\"\n\"Header Link\": \"Başlık Bağlantısı\"\n'URL (with http\":/\"/ or https\":/\"/)': 'URL (http\": \"// veya https\": \"// ile)'\n\"Footer Link\": \"Altbilgi Bağlantısı\"\n\"Custom CSS (Optional)\": \"Özel CSS (İsteğe bağlı)\"\n\"It will be add to the frontend knowledgebase only\": \"Sadece ön bilgi tabanına eklenecek\"\n\"Custom Javascript (Optional)\": \"Özel Javascript (İsteğe bağlı)\"\n\"Broadcast message content to show on helpdesk\": \"Yardım masasında gösterilecek mesaj içeriğini yayınla\"\n\"From\": \"Kimden\"\n\"Time duration between which message will be displayed(if applicable)\": \"Hangi mesajın görüntüleneceği arasındaki süre (varsa)\"\n\"Broadcasting Status\": \"Yayın Durumu\"\n\"Broadcasting is Active\": \"Yayın Etkindir\"\n\"Choose a default company timezone\": \"Varsayılan bir şirketin saat dilimini seçin\"\n\"Date Time Format\": \"Tarih Saat Biçimi\"\n\"Choose a format to convert date to specified date time format\": \"Tarihi belirtilen tarih saat biçimine dönüştürmek için bir biçim seçin\"\n\"An empty file is not allowed.\": \"Boş bir dosyaya izin verilmiyor.\"\n\"File size must not be greater than 200KB !!\": \"Dosya boyutu 200KBtan büyük olmamalıdır !!\"\n'comma \",\" separated': 'virgülle ayrılmış'\n\"Please upload valid Image file (Only JPEG, JPG, PNG allowed)!!\": \"Lütfen geçerli bir resim dosyası yükle (Sadece JPEG, JPG, PNG izin verilir) !!\"\n\"Provide a valid url(with protocol)\": \"Geçerli bir URL sağla (protokollü)\"\n\"Low\": \"Düşük\"\n\"Medium\": \"Orta\"\n\"High\": \"Yüksek\"\n\"Urgent\": \"Acil\"\n\"Reset Password\": \"Şifreyi yenile\"\n\"Enter your new password below to update your login credentials\": \"Giriş kimlik bilgilerinizi güncellemek için aşağıya yeni şifrenizi girin\"\n\"Save Password\": \"Şifreyi kaydet\"\n\"Rate Support\": \"Puan Desteği\"\n\"I am very Sad\": \"Çok üzgünüm\"\n\"I am Sad\": \"İmutsuzum\"\n\"I am Neutral\": \"ben tarafsızım\"\n\"I am Happy\": \"Mutluyum\"\n\"I am Very Happy\": \"Çok mutluyum\"\n\"Kudos\": \"şeref\"\n\"kudos\": \"şeref\"\n\"Very Sad\": \"Çok üzgün\"\n\"Sad\": \"Üzgün\"\n\"Neutral\": \"nötr\"\n\"Happy\": \"Mutlu\"\n\"Very Happy\": \"Çok mutlu\"\n\"Star(s)\": \"Yıldızlar\"\n\"Warning ! Swiftmailer not working. An error has occurred while sending emails!\" : \"Uyarı ! Swiftmailer çalışmıyor. E-posta gönderirken bir hata oluştu!\"\n\"Invalid credentials.\": \"Geçersiz kimlik bilgileri\"\n\"Success ! Project cache cleared successfully.\": \"Başarı ! Proje önbelleği başarıyla temizlendi.\"\n\"clear cache\": \"önbelleği temizle\"\n\"Last Updated\": \"Son güncelleme\"\n\"Error! Something went wrong.\": \"Hata! Bir şeyler yanlış gitti.\"\n\"We were not able to find the page you are looking for.\": \"Aradığınız sayfayı bulamadık.\"\n\"Page not found\": \"sayfa bulunamadı\"\n\"Forbidden\": \"Yasaklı\"\n\"You don’t have the necessary permissions to access this Web page :(\": \"Bu Web sayfasına erişmek için gerekli izinlere sahip değilsiniz :(\"\n\"Internal server error\": \"İç Sunucu Hatası\"\n\"Our system has goofed up for a while, but good part is it won't last long\": \"Sistemimiz bir süredir saçmalıyor, ama iyi yanı, uzun sürmeyecek\"\n\"Unknown Error\": \"Bilinmeyen hata\"\n\"We are quite confused about how did you land here:/\": \"Buraya nasıl indiğiniz konusunda kafamız oldukça karıştı. :/\"\n\"Few of the links which may help you to get back on the track -\": \"Piste geri dönmenize yardımcı olabilecek bağlantılardan birkaçı -\"\n\n#Microsoft apps:\n\"Microsoft Apps\": \"Microsoft Uygulamaları\"\n\"Add a Microsoft app\": \"Bir Microsoft uygulaması ekleyin\"\n\"Enable\": \"Etkinleştirilmiş\"\n\"App Name\": \"Uygulama ismi\"\n\"Tenant Id\": \"Kiracı Kimliği\"\n\"Client Id\": \"Müşteri Kimliği\"\n\"Client Secret\": \"Müşteri Sırrı\"\n\"NEW APP:\": \"YENİ UYGULAMA\"\n\"UPDATE APP\": \"UYGULAMAYI GÜNCELLE\"\n\"Guide on creating a new app in Azure Active Directory:\": \"Azure Active Directory'de yeni uygulama oluşturma kılavuzu:\"\n\"To add a new Microsoft App to your azure active directory, follow the steps as given below:\": \"Azure aktif dizininize yeni bir Microsoft Uygulaması eklemek için aşağıda verilen adımları izleyin:\"\n\"Go to Azure Active Directory -> App registerations\": \"Azure Active Directory -> Uygulama kayıtlarına gidin\"\n\"Disable\": \"Devre dışı bırakmak\"\n\"Please enter a valid name for your app.\": \"Lütfen uygulamanız için geçerli bir ad girin.\"\n\"Please enter a valid tenant id.\": \"Lütfen geçerli bir kiracı kimliği girin.\"\n\"Please enter a valid client id.\": \"Lütfen geçerli bir müşteri kimliği girin.\"\n\"Please enter a valid client secret.\": \"Lütfen geçerli bir müşteri sırrı girin.\"\n\"Microsoft app settings\": \"Microsoft uygulama ayarları\"\n\"Unverified\": \"Doğrulanmamış\"\n\"Microsoft app has been updated successfully.\": \"Microsoft uygulaması başarıyla güncellendi.\"\n\"No microsoft apps found\": \"Microsoft uygulaması bulunamadı\"\n\"Microsoft app settings could not be verifired successfully. Please check your settings and try again later.\": \"Microsoft uygulama ayarları başarıyla doğrulanamadı. Lütfen ayarlarınızı kontrol edin ve daha sonra tekrar deneyin.\"\n\"Microsoft app has been integrated successfully.\": \"Microsoft uygulaması başarıyla silindi.\"\n\"Microsoft app has been deleted successfully.\": \"Microsoft uygulaması başarıyla entegre edildi.\"\n\"Verified\": \"doğrulandı\"\n\n\"Create a New Registration\": \"Yeni Kayıt Oluştur\"\n\"Enter your app details as following:\": \"Uygulama ayrıntılarınızı aşağıdaki gibi girin:\"\n\"App Name: Enter an app name to easily help you identify its purpose\": \"Uygulama Adı: Amacını belirlemenize kolayca yardımcı olması için bir uygulama adı girin\"\n\"Supported Account Types: Select whichever option works the best for you (Recommended: Accounts in any organizational directory and personal Microsoft accounts)\": \"Desteklenen Hesap Türleri: Sizin için en uygun seçeneği seçin (Önerilen: Herhangi bir kurumsal dizindeki hesaplar ve kişisel Microsoft hesapları)\"\n\"Redirect URI:\": \"Yönlendirme URI'sı:\"\n\"Select Platform: Web\": \"Platform Seçin: Web\"\n\"Enter the following redirect uri:\": \"Aşağıdaki yönlendirme uri'sini girin:\"\n\"Proceed to create your application\": \"Uygulamanızı oluşturmaya devam edin\"\n\"Once your app has been created, in your app overview section, continue with adding a client credential by clicking on \\\"Add a certificate or secret\\\"\": \"Uygulamanız oluşturulduktan sonra, uygulamanıza genel bakış bölümünde Sertifika veya sır ekle ye tıklayarak bir müşteri kimlik bilgisi eklemeye devam edin.\"\n\"Create a new client secret\": \"Yeni bir müşteri sırrı oluşturun\"\n\"Enter a description as per your preference to help identify the purpose of this client secret\": \"Bu müşteri sırrının amacını belirlemeye yardımcı olması için tercihinize göre bir açıklama girin\"\n\"Choose an expiration time as per your preference\": \"Tercihinize göre bir son kullanma süresi seçin\"\n\"Proceed to add your client secret\": \"Müşteri sırrınızı eklemeye devam edin\"\n\"Copy the client secret value which will be needed later and cannot be viewed again\": \"Daha sonra ihtiyaç duyulacak ve tekrar görüntülenemeyecek olan müşteri sırrı değerini kopyalayın\"\n\"Navigate to API permissions\": \"API izinlerine gidin\"\n\"Click on \\\"Add a permission\\\" to add a new api permission. Add the following delegated permissions by selecting Microsoft APIs > Microsoft Graph > Delegate Permissions\": \"Yeni bir api izni eklemek için İzin ekle ye tıklayın. Microsoft API'leri > Microsoft Graph > Temsilci İzinleri'ni seçerek aşağıdaki temsilci izinlerini ekleyin\"\n\"Navigate to your app overview section\": \"Uygulamanıza genel bakış bölümüne gidin\"\n\"Copy the Application (Client) Id\": \"Uygulama (İstemci) Kimliğini Kopyalayın\"\n\"Copy the Directory (Tenant) Id\": \"Dizin (Kiracı) Kimliğini Kopyalayın\"\n\"Enter your client id, tenant id, and client secret in settings above as required.\": \"Yukarıdaki ayarlara müşteri kimliğinizi, kiracı kimliğinizi ve müşteri sırrınızı gerektiği gibi girin.\"\n\"offline_access\": \"offline_access\"\n\"openid\": \"açık kimlik\"\n\"profile\": \"profil\"\n\"User.Read\": \"Kullanıcı.Oku\"\n\"IMAP.AccessAsUser.All\": \"IMAP.AccessAsUser.All\"\n\"SMTP.Send\": \"SMTP.Gönder\"\n\"POP.AccessAsUser.All\": \"POP.AccessAsUser.All\"\n\"Mail.Read\": \"Posta.Oku\"\n\"Mail.ReadBasic\": \"Mail.ReadBasic\"\n\"Mail.Send\": \"Posta.Gönder\"\n\"Mail.Send.Shared\": \"Posta.Gönder.Paylaşılan\"\n\"Add App\": \"Uygulama Ekle\"\n\"New App\": \"Yeni Uygulama\"\n\n#Mailbox option:\n\"Disable email delivery\": \"E-posta teslimini devre dışı bırak\"\n\"Use as default mailbox for sending emails\": \"E-posta göndermek için varsayılan posta kutusu olarak kullan\"\n\"Inbound Emails\": \"Gelen E-postalar\"\n\"Manage how you wish to retrieve and process emails from your mailbox.\": \"Posta kutunuzdaki e-postaları nasıl almak ve işlemek istediğinizi yönetin.\"\n\"Outbound Emails\": \"Giden E-postalar\"\n\"Manage how you wish to send emails from your mailbox.\": \"Posta kutunuzdan nasıl e-posta göndermek istediğinizi yönetin.\"\n\n\"Marketing Modules\" : \"Pazarlama Modülleri\"\n\"New Marketing Module\": \"Yeni Pazarlama Modülü\"\n\"Marketing Module\": \"Pazarlama Modülü\""
  },
  {
    "path": "translations/messages.zh.yml",
    "content": "\"Signed in as\": \"登入为\"\n\"Your Profile\": \"您的个人资料\"\n\"Create Ticket\": \"创建工单\"\n\"Create Agent\": \"创建接单员\"\n\"Create Customer\": \"建立客户\"\n\"Sign Out\": \"登出\"\n\"Default Language (Optional)\": \"默认语言（可选\"\n\"Username/Email\": \"用户名/电子邮件\"\n\"create new\": \"创建新的\"\n\"Ticket Information\": \"票务信息\"\n\"CC/BCC\": \"抄送/密送\"\n\"Success! Label created successfully.\": \"成功！标签创建成功.\"\n\"Success! Label removed successfully.\": \"成功！标签移除成功.\"\n\"Reports\": \"报告书\"\n\"Rating\": \"评分\"\n\"Kudos Rating\": \"荣誉评分\"\n\"Remove profile picture\": \"删除个人资料图片\"\n\"Success ! Profile updated successfully.\": \"成功 ！个人资料更新成功。\"\n\"Howdy\": \"你好\"\n\"Form successfully updated.\": \"表格已成功更新。\"\n\"NEW FORM\": \"新表格\"\n\"Text Box\": \"文本框\"\n\"Text Area\": \"文本区\"\n\"Select\": \"选择\"\n\"Radio\": \"收音机\"\n\"Checkbox\": \"复选框\"\n\"Date\": \"日期\"\n\"Both Date and Time\": \"日期和时间\"\n\"Choose a status\": \"选择状态\"\n\"Choose a group\": \"选择一个组\"\n\"Choose your default timeformat\": \"选择您的默认时间格式\"\n\"Can manage Group's Saved Reply\": \"可以管理群组的已保存回复\"\n\"Can manage agent activity\": \"可以管理代理活动\"\n\"Slug is the url identity of this article. We will help you to create valid slug at time of typing.\": \"Slug 是本文的 url 标识。我们将帮助您在打字时创建有效的 slug\"\n\"The URL for this article\": \"这篇文章的网址\"\n\"Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A page's title tag and meta description are usually shown whenever that page appears in search engine results\": \"标题标签和元描述是网页标题中的一些 HTML 代码。它们帮助搜索引擎了解页面上的内容。每当该页面出现在搜索引擎结果中时，通常会显示页面的标题标签和元描述\"\n\"comma separated (,)\": \"逗号分隔 (,)\"\n\"Article Title\": \"文章标题\"\n\"Start typing few charactors and add set of relevant article from the list\": \"开始输入几个字符并从列表中添加一组相关文章\"\n\"Success! Announcement data saved successfully.\": \"成功！公告数据保存成功\"\n\"Success! Category has been added successfully.\": \"成功！已成功添加类别\"\n\"Success ! Agent added successfully.\": \"成功 ！代理添加成功\"\n\"Success! Privilege information saved successfully.\": \"成功！权限信息保存成功\"\n\"Edit Prepared Response\": \"编辑准备好的响应\"\n\"Success! Type removed successfully.\": \"成功！类型已成功删除\"\n\"No results available\": \"没有可用的结果\"\n\"Success ! Prepared Response applied successfully.\": \"成功 ！ Prepared Response 已成功应用\"\n\"Note added to ticket successfully.\": \"注释已成功添加到工单\"\n\"Ticket status update to Spam\": \"垃圾邮件的工单状态更新\"\n\"Ticket status update to Closed\": \"工单状态更新为已关闭\"\n\"Success! Label updated successfully.\": \"成功！标签更新成功\"\n\"Success ! Helpdesk details saved successfully\": \"成功 ！帮助台详细信息已成功保存\"\n\"Can manage marketing announcement\": \"可以管理营销公告\"\n\"User Forgot Password\": \"用户忘记密码\"\n\"Agent Deleted\": \"代理已删除\"\n\"Agent Update\": \"代理更新\"\n\"Customer Update\": \"客户更新\"\n\"Customer Deleted\": \"客户已删除\"\n\"Agent Updated\": \"代理更新\"\n\"Agent Reply\": \"代理回复\"\n\"Collaborator Added\": \"添加了合作者\"\n\"Collaborator Reply\": \"合作者回复\"\n\"Customer Reply\": \"客户回复\"\n\"Ticket Deleted\": \"票已删除\"\n\"Group Updated\": \"组更新\"\n\"Note Added\": \"注释已添加\"\n\"Priority Updated\": \"优先更新\"\n\"Status Updated\": \"状态更新\"\n\"Team Updated\": \"团队更新\"\n\"Thread Updated\": \"主题更新\"\n\"Type Updated\": \"类型更新\"\n\"From Email\": \"从电子邮件\"\n\"To Email\": \"发邮件\"\n\"Is Equal To\": \"等于\"\n\"Is Not Equal To\": \"不等于\"\n\"Contains\": \"包含\"\n\"Does Not Contain\": \"不含\"\n\"Starts With\": \"以。。开始\"\n\"Ends With\": \"以。。结束\"\n\"Before On\": \"开启前\"\n\"After On\": \"开启后\"\n\"Mail To User\": \"邮寄给用户\"\n\"Transfer Tickets\": \"转车票\"\n\"Mail To Customer\": \"邮寄给客户\"\n\"Permanently delete from Inbox\": \"從收件箱中永久刪除\"\n\"Agent Activity\": \"代理活动\"\n\"Report From\": \"报告来源\"\n\"Search Agent\": \"搜索代理\"\n\"Agent Last Reply\": \"特工最后回覆\"\n\"View analytics and insights to serve a better experience for your customers\": \"查看分析和见解，为您的客户提供更好的体验\"\n\"Marketing Announcement\": \"营销公告\"\n\"Advertisement\": \"广告宣传\"\n\"Announcement\": \"公告\"\n\"New Announcement\": \"新公告\"\n\"Add Announcement\": \"添加公告\"\n\"Edit Announcement\": \"编辑公告\"\n\"Promo Text\": \"促销文字\"\n\"Promo Tag\": \"促销标签\"\n\"Choose a promo tag\": \"选择促销标签\"\n\"Tag-Color\": \"标签颜色\"\n\"Tag background color\": \"标签背景色\"\n\"Link Text\": \"连结文字\"\n\"Link URL\": \"连结网址\"\n\"Apps\": \"应用\"\n\"Integrate apps as per your needs to get things done faster than ever\": \"安裝新的自訂應用程式以提高您的工作效率 - <a href='https://store.webkul.com/UVdesk/UVdesk-Open-Source.html' style='font-weight: bold' target='_blank'>立即探索</a>\"\n\"Explore Apps\": \"探索应用\"\n\"Form Builder\": \"表单生成器\"\n\"Knowledgebase\": \"知识库\"\n\"Knowledgebase is a source of rigid and complex information which helps Customers to help themselves\": \"知识库是固定成型和复杂信息的来源，可帮助客户自助服务\"\n\"Articles\": \"文章\"\n\"Categories\": \"分类目录\"\n\"Folders\": \"资料夹\"\n\"FOLDERS\": \"资料夹\"\n\"Productivity\": \"生产率\"\n\"Automate your processes by creating set of rules and presets to respond faster to the tickets\": \"通过创建一组规则和预设来自动化您的流程，以更快地响应工单\"\n\"Prepared Responses\": \"准备好的回应\"\n\"Saved Replies\": \"保存的回复\"\n\"Edit Saved Reply\": \"编辑已保存的回复\"\n\"Ticket Types\": \"工单类型\"\n\"Workflows\": \"工作流程\"\n\"Settings\": \"设定\"\n\"Manage your Brand Identity, Company Information and other details at a glance\": \"一目了然地管理您的品牌标识，公司信息和其他详细信息\"\n\"Branding\": \"品牌推广\"\n\"Custom Fields\": \"自定义字段\"\n\"Email Settings\": \"电子邮件设定\"\n\"Email Templates\": \"电子邮件模板\"\n\"Mailbox\": \"邮箱\"\n\"Spam Settings\": \"垃圾邮件设置\"\n\"Swift Mailer\": \"快捷邮件管理器\"\n\"Tags\": \"标记\"\n\"Users\": \"用户数\"\n\"Control your Groups, Teams, Agents and Customers\": \"管控您的群组，团队，接单员和客户\"\n\"Agents\": \"接单员\"\n\"Customers\": \"顾客\"\n\"Groups\": \"群组\"\n\"Privileges\": \"权限\"\n\"Teams\": \"团队\"\n\"Applications\": \"应用程序\"\n\"ECommerce Order Syncronization\": \"电子商务订单同步\"\n\"Import ecommerce order details to your support tickets from different available platforms\": \"从不同的可用平台将电子商务订单详细信息导入您的支持工单\"\n\"Search\": \"搜索\"\n\"Sort By\": \"排序方式\"\n\"Status\" : \"状态\"\n\"Sort By:\": \"排序方式:\"\n\"Status:\" : \"状态:\"\n\"Created At\": \"创建于\"\n\"Name\": \"名称\"\n\"All\": \"全部\"\n\"Published\": \"已发布\"\n\"Draft\": \"草稿\"\n\"New Folder\": \"新建文件夹\"\n\"Create Knowledgebase Folder\": \"创建知识库文件夹\"\n\"You did not add any folder to your Knowledgebase yet, Create your first Folder and start adding Categories/Articles to make your customers help themselves.\": \"您尚未将任何文件夹添加到知识库中，创建第一个文件夹并开始添加类别/文章以便客户自助服务。\"\n\"Clear Filters\": \"清除筛选器\"\n\"Back\": \"后退\"\n\"Open\": \"打开\"\n\"Pending\": \"待办的\"\n\"Answered\": \"已回答\"\n\"Resolved\": \"已解决\"\n\"Closed\": \"已关闭\"\n\"Spam\": \"垃圾邮件\"\n\"New\": \"新的\"\n\"UnAssigned\": \"未分配\"\n\"UnAnswered\": \"未解答\"\n\"My Tickets\": \"我的工单\"\n\"Starred\": \"已加星标\"\n\"Trashed\": \"已删除\"\n\"New Label\": \"新标签\"\n\"Tickets\": \"工单\"\n\"Ticket Id\": \"工单编号\"\n\"Last Replied\": \"最后回复\"\n\"Assign To\": \"分配给\"\n\"After Reply\": \"回复后\"\n\"Customer Email\": \"客户电邮\"\n\"Customer Name\": \"顾客姓名\"\n\"Assets Visibility\": \"资产可见性\"\n\"Channel/Source\": \"渠道/来源\"\n\"Channel\": \"渠道\"\n\"Website\": \"网站\"\n\"Timestamp\": \"时间戳\"\n\"TimeStamp\": \"时间戳\"\n\"Team\": \"团队\"\n\"Type\": \"类型\"\n\"Replies\": \"回复\"\n\"Agent\": \"接单员\"\n\"ID\": \"ID\"\n\"Subject\": \"主题\"\n\"Last Reply\": \"最后回复\"\n\"Filter View\": \"筛选器视图\"\n\"Please select CAPTCHA\": \"请选择验证码\"\n\"Warning ! Please select correct CAPTCHA !\": \"警告 ！请选择正确的验证码！\"\n\"reCAPTCHA Setting\": \"reCAPTCHA设置\"\n\"reCAPTCHA Site Key\": \"reCAPTCHA网站密钥\"\n\"reCAPTCHA Secret key\": \"reCAPTCHA密钥\"\n\"reCAPTCHA Status\": \"reCAPTCHA状态\"\n\"reCAPTCHA is Active\": \"reCAPTCHA已启用\"\n\"Save set of filters as a preset to stay more productive\": \"将筛选器集另存为预设，以保持更高的生产率\"\n\"Saved Filters\": \"保存的筛选器\"\n\"No saved filter created\": \"未创建已保存的筛选器\"\n\"Customer\": \"顾客\"\n\"Priority\": \"优先级\"\n\"Tag\": \"标记\"\n\"Source\": \"来源\"\n\"Before\": \"之前\"\n\"After\": \"之后\"\n\"Replies less than\": \"回复少于\"\n\"Replies more than\": \"回复不只\"\n\"Clear All\": \"全部清除\"\n\"Account\": \"帐户\"\n\"Profile\": \"个人资料\"\n\"Upload a Profile Image (100px x 100px)<br> in PNG or JPG Format\": \"上载个人资料图片（100px x 100px）<br> 使用PNG或JPG格式\"\n\"First Name\": \"名\"\n\"Last Name\": \"姓\"\n\"Email\": \"电子邮件\"\n\"Contact Number\": \"联系电话\"\n\"Timezone\": \"时区\"\n\"Africa/Abidjan\": \"非洲/阿比让\"\n\"Africa/Accra\": \"非洲/阿克拉\"\n\"Africa/Addis_Ababa\": \"非洲/亚的斯亚贝巴\"\n\"Africa/Algiers\": \"非洲/阿尔及尔\"\n\"Africa/Asmara\": \"非洲/阿斯马拉\"\n\"Africa/Bamako\": \"非洲/巴马科\"\n\"Africa/Bangui\": \"非洲/班吉\"\n\"Africa/Banjul\": \"非洲/班珠尔\"\n\"Africa/Bissau\": \"非洲/比绍\"\n\"Africa/Blantyre\": \"非洲/布兰太尔\"\n\"Africa/Brazzaville\": \"非洲/布拉柴维尔\"\n\"Africa/Bujumbura\": \"非洲/布琼布拉\"\n\"Africa/Cairo\": \"非洲/开罗\"\n\"Africa/Casablanca\": \"非洲/卡萨布兰卡\"\n\"Africa/Ceuta\": \"非洲/休达\"\n\"Africa/Conakry\": \"非洲/科纳克里\"\n\"Africa/Dakar\": \"非洲/达喀尔\"\n\"Africa/Dar_es_Salaam\": \"非洲/达累斯萨拉姆\"\n\"Africa/Djibouti\": \"非洲/吉布提\"\n\"Africa/Douala\": \"非洲/杜阿拉\"\n\"Africa/El_Aaiun\": \"非洲/ El_Aaiun\"\n\"Africa/Freetown\": \"非洲/弗里敦\"\n\"Africa/Gaborone\": \"非洲/加博隆\"\n\"Africa/Harare\": \"非洲/哈拉雷\"\n\"Africa/Johannesburg\": \"非洲/约翰内斯堡\"\n\"Africa/Juba\": \"非洲/朱巴\"\n\"Africa/Kampala\": \"非洲/坎帕拉\"\n\"Africa/Khartoum\": \"非洲/喀土穆\"\n\"Africa/Kigali\": \"非洲/基加利\"\n\"Africa/Kinshasa\": \"非洲/金沙萨\"\n\"Africa/Lagos\": \"非洲/拉各斯\"\n\"Africa/Libreville\": \"非洲/利伯维尔\"\n\"Africa/Lome\": \"非洲/洛美\"\n\"Africa/Luanda\": \"非洲/罗安达\"\n\"Africa/Lubumbashi\": \"非洲/卢本巴希\"\n\"Africa/Lusaka\": \"非洲/卢萨卡\"\n\"Africa/Malabo\": \"非洲/马拉博\"\n\"Africa/Maputo\": \"非洲/马普托\"\n\"Africa/Maseru\": \"非洲/马塞鲁\"\n\"Africa/Mbabane\": \"非洲/姆巴巴内\"\n\"Africa/Mogadishu\": \"非洲/摩加迪沙\"\n\"Africa/Monrovia\": \"非洲/蒙罗维亚\"\n\"Africa/Nairobi\": \"非洲/内罗毕\"\n\"Africa/Ndjamena\": \"非洲/恩贾梅纳\"\n\"Africa/Niamey\": \"非洲/尼亚美\"\n\"Africa/Nouakchott\": \"非洲/努瓦克肖特\"\n\"Africa/Ouagadougou\": \"非洲/瓦加杜古\"\n\"Africa/Porto-Novo\": \"非洲/波多诺伏\"\n\"Africa/Sao_Tome\": \"非洲/圣保罗\"\n\"Africa/Tripoli\": \"非洲/的黎波里\"\n\"Africa/Tunis\": \"非洲/突尼斯\"\n\"Africa/Windhoek\": \"非洲/温得和克\"\n\"America/Adak\": \"美国/阿达克\"\n\"America/Anchorage\": \"美国/安克雷奇\"\n\"America/Anguilla\": \"美国/安圭拉\"\n\"America/Antigua\": \"美国/安提瓜\"\n\"America/Araguaina\": \"美洲/阿拉瓜那\"\n\"America/Argentina/Buenos_Aires\": \"美国/阿根廷/布宜诺斯艾利斯\"\n\"America/Argentina/Catamarca\": \"美国/阿根廷/卡塔马卡\"\n\"America/Argentina/Cordoba\": \"美国/阿根廷/科尔多瓦\"\n\"America/Argentina/Jujuy\": \"美国/阿根廷/胡胡伊\"\n\"America/Argentina/La_Rioja\": \"美国/阿根廷/拉里奥哈\"\n\"America/Argentina/Mendoza\": \"美国/阿根廷/门多萨\"\n\"America/Argentina/Rio_Gallegos\": \"美国/阿根廷/里约热内卢\"\n\"America/Argentina/Salta\": \"美国/阿根廷/萨尔塔\"\n\"America/Argentina/San_Juan\": \"美国/阿根廷/圣胡安\"\n\"America/Argentina/San_Luis\": \"美国/阿根廷/圣路易斯\"\n\"America/Argentina/Tucuman\": \"美国/阿根廷/土库曼\"\n\"America/Argentina/Ushuaia\": \"美国/阿根廷/乌斯怀亚\"\n\"America/Aruba\": \"美国/阿鲁巴\"\n\"America/Asuncion\": \"美国/亚松森\"\n\"America/Atikokan\": \"美国/ Atikokan\"\n\"America/Bahia\": \"美国/巴伊亚州\"\n\"America/Bahia_Banderas\": \"美国/巴伊亚州（Bahia_Banderas）\"\n\"America/Barbados\": \"美国/巴巴多斯\"\n\"America/Belem\": \"美国/贝伦\"\n\"America/Belize\": \"美国/伯利兹\"\n\"America/Blanc-Sablon\": \"美国/布兰-萨布隆\"\n\"America/Boa_Vista\": \"美国/ Boa_Vista\"\n\"America/Bogota\": \"美国/波哥大\"\n\"America/Boise\": \"美国/博伊西\"\n\"America/Cambridge_Bay\": \"美国/剑桥湾\"\n\"America/Campo_Grande\": \"美国/ Campo_Grande\"\n\"America/Cancun\": \"美国/坎昆\"\n\"America/Caracas\": \"美国/加拉加斯\"\n\"America/Cayenne\": \"美国/卡宴\"\n\"America/Cayman\": \"美国/开曼\"\n\"America/Chicago\": \"美国/芝加哥\"\n\"America/Chihuahua\": \"美国/奇瓦瓦州\"\n\"America/Costa_Rica\": \"美国/哥斯达黎加\"\n\"America/Creston\": \"美国/克雷斯顿\"\n\"America/Cuiaba\": \"美国/库亚巴\"\n\"America/Curacao\": \"美国/库拉索岛\"\n\"America/Danmarkshavn\": \"美国/丹麦\"\n\"America/Dawson\": \"美国/道森\"\n\"America/Dawson_Creek\": \"美国/道森克里克\"\n\"America/Denver\": \"美国/丹佛\"\n\"America/Detroit\": \"美国/底特律\"\n\"America/Dominica\": \"美国/多米尼加\"\n\"America/Edmonton\": \"美国/埃德蒙顿\"\n\"America/Eirunepe\": \"美国/埃鲁尼佩\"\n\"America/El_Salvador\": \"美国/萨尔瓦多\"\n\"America/Fort_Nelson\": \"美国/纳尔逊堡\"\n\"America/Fortaleza\": \"美国/福塔雷萨\"\n\"America/Glace_Bay\": \"美国/ Glace_Bay\"\n\"America/Godthab\": \"美国/哥达卜\"\n\"America/Goose_Bay\": \"美国/鹅湾\"\n\"America/Grand_Turk\": \"美国/大突厥\"\n\"America/Grenada\": \"美国/格林纳达\"\n\"America/Guadeloupe\": \"美国/瓜德罗普岛\"\n\"America/Guatemala\": \"美国/危地马拉\"\n\"America/Guayaquil\": \"美国/瓜亚基尔\"\n\"America/Guyana\": \"美国/圭亚那\"\n\"America/Halifax\": \"美国/哈利法克斯\"\n\"America/Havana\": \"美国/哈瓦那\"\n\"America/Hermosillo\": \"美国/埃莫西约\"\n\"America/Indiana/Indianapolis\": \"美国/印第安纳州/印第安纳波利斯\"\n\"America/Indiana/Knox\": \"美国/印第安纳州/诺克斯\"\n\"America/Indiana/Marengo\": \"美洲/印第安纳州/马伦戈\"\n\"America/Indiana/Petersburg\": \"美国/印第安纳州/彼得斯堡\"\n\"America/Indiana/Tell_City\": \"美洲/印第安纳州/特拉城\"\n\"America/Indiana/Vevay\": \"美洲/印第安纳州/韦韦\"\n\"America/Indiana/Vincennes\": \"美国/印第安纳州/文森斯\"\n\"America/Indiana/Winamac\": \"美洲/印第安纳州/威纳马克\"\n\"America/Inuvik\": \"美国/ Inuvik\"\n\"America/Iqaluit\": \"美国/伊卡卢特\"\n\"America/Jamaica\": \"美国/牙买加\"\n\"America/Juneau\": \"美国/朱诺\"\n\"America/Kentucky/Louisville\": \"美国/肯塔基州/路易斯维尔\"\n\"America/Kentucky/Monticello\": \"美国/肯塔基州/蒙蒂塞洛\"\n\"America/Kralendijk\": \"美国/克拉伦代克\"\n\"America/La_Paz\": \"美洲/拉巴斯\"\n\"America/Lima\": \"美国/利马\"\n\"America/Los_Angeles\": \"美国/洛杉矶\"\n\"America/Lower_Princes\": \"美国/下王子\"\n\"America/Maceio\": \"美国/马塞约\"\n\"America/Managua\": \"美国/马那瓜\"\n\"America/Manaus\": \"美国/马瑙斯\"\n\"America/Marigot\": \"美国/马里戈特\"\n\"America/Martinique\": \"美国/马提尼克岛\"\n\"America/Matamoros\": \"美国/马塔莫罗斯\"\n\"America/Mazatlan\": \"美洲/马萨特兰\"\n\"America/Menominee\": \"美国/密胺\"\n\"America/Merida\": \"美国/梅里达\"\n\"America/Metlakatla\": \"美国/梅特拉卡特拉\"\n\"America/Mexico_City\": \"美国/墨西哥城\"\n\"America/Miquelon\": \"美国/密克隆\"\n\"America/Moncton\": \"美国/蒙克顿\"\n\"America/Monterrey\": \"美国/蒙特雷\"\n\"America/Montevideo\": \"美国/蒙得维的亚\"\n\"America/Montserrat\": \"美国/蒙特塞拉特\"\n\"America/Nassau\": \"美国/拿骚\"\n\"America/New_York\": \"美国/纽约\"\n\"America/Nipigon\": \"美国/尼皮贡\"\n\"America/Nome\": \"美国/ Nome\"\n\"America/Noronha\": \"美国/诺罗尼亚\"\n\"America/North_Dakota/Beulah\": \"美国/北达科他州/比拉\"\n\"America/North_Dakota\": \"美国/北达科他州\"\n\"America/Ojinaga\": \"美国/冲绳\"\n\"America/Panama\": \"美国/巴拿马\"\n\"America/Pangnirtung\": \"美国/庞尼城\"\n\"America/Paramaribo\": \"美国/巴拉马里博\"\n\"America/Phoenix\": \"美国/凤凰城\"\n\"America/Port-au-Prince\": \"美国/太子港\"\n\"America/Port_of_Spain\": \"美国/西班牙港\"\n\"America/Porto_Velho\": \"美国/ Porto_Velho\"\n\"America/Puerto_Rico\": \"美国/波多黎各\"\n\"America/Punta_Arenas\": \"美国/蓬塔阿雷纳斯\"\n\"America/Rainy_River\": \"美国/多雨河\"\n\"America/Rankin_Inlet\": \"美国/ Rankin_Inlet\"\n\"America/Recife\": \"美国/累西腓\"\n\"America/Regina\": \"美国/里贾纳\"\n\"America/Resolute\": \"美国/坚决\"\n\"America/Rio_Branco\": \"美国/里约布兰科\"\n\"America/Santarem\": \"美国/圣塔伦\"\n\"America/Santiago\": \"美国/圣地亚哥\"\n\"America/Santo_Domingo\": \"美国/圣多明各\"\n\"America/Sao_Paulo\": \"美国/圣保罗\"\n\"America/Scoresbysund\": \"美国/斯科比斯松\"\n\"America/Sitka\": \"美国/锡特卡\"\n\"America/St_Barthelemy\": \"美国/圣巴托洛缪岛\"\n\"America/St_Johns\": \"美国/圣约翰斯\"\n\"America/St_Kitts\": \"美国/圣基茨\"\n\"America/St_Lucia\": \"美国/圣卢西亚\"\n\"America/St_Thomas\": \"美国/圣托马斯\"\n\"America/St_Vincent\": \"美国/圣文森特\"\n\"America/Swift_Current\": \"America / Swift_Current\"\n\"America/Tegucigalpa\": \"美国/特古西加尔巴\"\n\"America/Thule\": \"美国/图勒\"\n\"America/Thunder_Bay\": \"美国/雷霆湾\"\n\"America/Tijuana\": \"美国/蒂华纳\"\n\"America/Toronto\": \"美国/多伦多\"\n\"America/Tortola\": \"美国/托托拉\"\n\"America/Vancouver\": \"美国/温哥华\"\n\"America/Whitehorse\": \"美国/怀特霍斯\"\n\"America/Winnipeg\": \"美国/温尼伯\"\n\"America/Yakutat\": \"美国/雅库特\"\n\"America/Yellowknife\": \"美国/黄刀\"\n\"Antarctica/Casey\": \"南极洲/凯西\"\n\"Antarctica/Davis\": \"南极洲/戴维斯\"\n\"Antarctica/DumontDUrville\": \"南极洲/杜蒙特\"\n\"Antarctica/Macquarie\": \"南极/麦格理\"\n\"Antarctica/McMurdo\": \"南极洲/麦克默多\"\n\"Antarctica/Mawson\": \"南极洲/莫森\"\n\"Antarctica/Palmer\": \"南极洲/帕尔默\"\n\"Antarctica/Rothera\": \"南极洲/罗瑟拉\"\n\"Antarctica/Syowa\": \"南极洲/昭和\"\n\"Antarctica/Troll\": \"南极/巨魔\"\n\"Antarctica/Vostok\": \"南极洲/沃斯托克\"\n\"Arctic/Longyearbyen\": \"北极/朗伊尔城\"\n\"Asia/Aden\": \"亚洲/亚丁\"\n\"Asia/Almaty\": \"亚洲/阿拉木图\"\n\"Asia/Amman\": \"亚洲/安曼\"\n\"Asia/Anadyr\": \"亚洲/ Anadyr\"\n\"Asia/Aqtau\": \"亚洲/阿克套\"\n\"Asia/Aqtobe\": \"亚洲/阿克托比\"\n\"Asia/Ashgabat\": \"亚洲/阿什哈巴德\"\n\"Asia/Atyrau\": \"亚洲/阿特劳\"\n\"Asia/Baghdad\": \"亚洲/巴格达\"\n\"Asia/Bahrain\": \"亚洲/巴林\"\n\"Asia/Baku\": \"亚洲/巴库\"\n\"Asia/Bangkok\": \"亚洲/曼谷\"\n\"Asia/Barnaul\": \"亚洲/巴尔瑙尔\"\n\"Asia/Beirut\": \"亚洲/贝鲁特\"\n\"Asia/Bishkek\": \"亚洲/比什凯克\"\n\"Asia/Brunei\": \"亚洲/文莱\"\n\"Asia/Chita\": \"亚洲/赤塔\"\n\"Asia/Choibalsan\": \"亚洲/乔瓦山\"\n\"Asia/Colombo\": \"亚洲/科伦坡\"\n\"Asia/Damascus\": \"亚洲/大马士革\"\n\"Asia/Dhaka\": \"亚洲/达卡\"\n\"Asia/Dili\": \"亚洲/帝力\"\n\"Asia/Dubai\": \"亚洲/迪拜\"\n\"Asia/Dushanbe\": \"亚洲/杜尚别\"\n\"Asia/Famagusta\": \"亚洲/法马古斯塔\"\n\"Asia/Gaza\": \"亚洲/加沙\"\n\"Asia/Hebron\": \"亚洲/希伯伦\"\n\"Asia/Ho_Chi_Minh\": \"亚洲/胡志明市\"\n\"Asia/Hong_Kong\": \"亚洲/香港\"\n\"Asia/Hovd\": \"亚洲/香港\"\n\"Asia/Irkutsk\": \"亚洲/伊尔库茨克\"\n\"Asia/Jakarta\": \"亚洲/雅加达\"\n\"Asia/Jayapura\": \"亚洲/贾亚普拉\"\n\"Asia/Jerusalem\": \"亚洲/耶路撒冷\"\n\"Asia/Kabul\": \"亚洲/喀布尔\"\n\"Asia/Kamchatka\": \"亚洲/堪察加半岛\"\n\"Asia/Karachi\": \"亚洲/卡拉奇\"\n\"Asia/Kathmandu\": \"亚洲/加德满都\"\n\"Asia/Khandyga\": \"亚洲/坎迪加\"\n\"Asia/Kolkata\": \"亚洲/加尔各答\"\n\"Asia/Krasnoyarsk\": \"亚洲/克拉斯诺亚尔斯克\"\n\"Asia/Kuala_Lumpur\": \"亚洲/吉隆坡\"\n\"Asia/Kuching\": \"亚洲/古晋\"\n\"Asia/Kuwait\": \"亚洲/科威特\"\n\"Asia/Macau\": \"亚洲/澳门\"\n\"Asia/Magadan\": \"亚洲/马达加丹\"\n\"Asia/Makassar\": \"亚洲/马卡萨尔\"\n\"Asia/Manila\": \"亚洲/马尼拉\"\n\"Asia/Muscat\": \"亚洲/马斯喀特\"\n\"Asia/Nicosia\": \"亚洲/尼科西亚\"\n\"Asia/Novokuznetsk\": \"亚洲/新库兹涅茨克\"\n\"Asia/Novosibirsk\": \"亚洲/新西伯利亚\"\n\"Asia/Omsk\": \"亚洲/鄂木斯克\"\n\"Asia/Oral\": \"亚洲/口头\"\n\"Asia/Phnom_Penh\": \"亚洲/金边\"\n\"Asia/Pontianak\": \"亚洲/蓬塔纳克\"\n\"Asia/Pyongyang\": \"亚洲/平壤\"\n\"Asia/Qatar\": \"亚洲/卡塔尔\"\n\"Asia/Qostanay\": \"亚洲/ Qostanay\"\n\"Asia/Qyzylorda\": \"亚洲/齐齐洛达\"\n\"Asia/Riyadh\": \"亚洲/利雅得\"\n\"Asia/Sakhalin\": \"亚洲/萨哈林岛\"\n\"Asia/Samarkand\": \"亚洲/撒马尔罕\"\n\"Asia/Seoul\": \"亚洲/首尔\"\n\"Asia/Shanghai\": \"亚洲/上海\"\n\"Asia/Singapore\": \"亚洲/新加坡\"\n\"Asia/Srednekolymsk\": \"亚洲/斯雷德涅科林斯克\"\n\"Asia/Taipei\": \"亚洲/台北\"\n\"Asia/Tashkent\": \"亚洲/塔什干\"\n\"Asia/Tbilisi\": \"亚洲/第比利斯\"\n\"Asia/Tehran\": \"亚洲/德黑兰\"\n\"Asia/Thimphu\": \"亚洲/廷布\"\n\"Asia/Tokyo\": \"亚洲/东京\"\n\"Asia/Tomsk\": \"亚洲/托木斯克\"\n\"Asia/Ulaanbaatar\": \"亚洲/乌兰巴托\"\n\"Asia/Urumqi\": \"亚洲/乌鲁木齐\"\n\"Asia/Ust-Nera\": \"亚洲/乌斯特-尼拉\"\n\"Asia/Vientiane\": \"亚洲/万象\"\n\"Asia/Vladivostok\": \"亚洲/符拉迪沃斯托克（海参div）\"\n\"Asia/Yakutsk\": \"亚洲/雅库茨克\"\n\"Asia/Yangon\": \"亚洲/仰光\"\n\"Asia/Yekaterinburg\": \"亚洲/叶卡捷琳堡\"\n\"Asia/Yerevan\": \"亚洲/埃里温\"\n\"Atlantic/Azores\": \"大西洋/亚速尔群岛\"\n\"Atlantic/Bermuda\": \"大西洋/百慕大\"\n\"Atlantic/Canary\": \"大西洋/金丝雀\"\n\"Atlantic/Cape_Verde\": \"大西洋/佛得角\"\n\"Atlantic/Faroe\": \"大西洋/法罗\"\n\"Atlantic/Madeira\": \"大西洋/马德拉\"\n\"Atlantic/Reykjavik\": \"大西洋/雷克雅未克\"\n\"Atlantic/South_Georgia\": \"大西洋/南乔治亚\"\n\"Atlantic/St_Helena\": \"大西洋/圣海伦娜\"\n\"Atlantic/Stanley\": \"大西洋/史丹利\"\n\"Australia/Adelaide\": \"澳大利亚/阿德莱德\"\n\"Australia/Brisbane\": \"澳大利亚/布里斯班\"\n\"Australia/Broken_Hill\": \"澳大利亚/断山\"\n\"Australia/Currie\": \"澳大利亚/科里\"\n\"Australia/Darwin\": \"澳大利亚/达尔文\"\n\"Australia/Eucla\": \"澳大利亚/尤克拉\"\n\"Australia/Hobart\": \"澳大利亚/霍巴特\"\n\"Australia/Lindeman\": \"澳大利亚/林德曼\"\n\"Australia/Lord_Howe\": \"澳大利亚/豪勋爵\"\n\"Australia/Melbourne\": \"澳大利亚/墨尔本\"\n\"Australia/Perth\": \"澳大利亚/珀斯\"\n\"Australia/Sydney\": \"澳大利亚/悉尼\"\n\"Europe/Amsterdam\": \"欧洲/阿姆斯特丹\"\n\"Europe/Andorra\": \"欧洲/安道尔\"\n\"Europe/Astrakhan\": \"欧洲/阿斯特拉罕\"\n\"Europe/Athens\": \"欧洲/雅典\"\n\"Europe/Belgrade\": \"欧洲/贝尔格莱德\"\n\"Europe/Berlin\": \"欧洲/柏林\"\n\"Europe/Bratislava\": \"欧洲/布拉迪斯拉发\"\n\"Europe/Brussels\": \"欧洲/布鲁塞尔\"\n\"Europe/Bucharest\": \"欧洲/布加勒斯特\"\n\"Europe/Budapest\": \"欧洲/布达佩斯\"\n\"Europe/Busingen\": \"欧洲/布辛根\"\n\"Europe/Chisinau\": \"欧洲/基希讷乌\"\n\"Europe/Copenhagen\": \"欧洲/哥本哈根\"\n\"Europe/Dublin\": \"欧洲/都柏林\"\n\"Europe/Gibraltar\": \"欧洲/直布罗陀\"\n\"Europe/Guernsey\": \"欧洲/根西岛\"\n\"Europe/Helsinki\": \"欧洲/赫尔辛基\"\n\"Europe/Isle_of_Man\": \"欧洲/马恩岛\"\n\"Europe/Istanbul\": \"欧洲/伊斯坦布尔\"\n\"Europe/Jersey\": \"欧洲/泽西岛\"\n\"Europe/Kaliningrad\": \"欧洲/加里宁格勒\"\n\"Europe/Kiev\": \"欧洲/基辅\"\n\"Europe/Kirov\": \"欧洲/基洛夫\"\n\"Europe/Lisbon\": \"欧洲/里斯本\"\n\"Europe/Ljubljana\": \"欧洲/卢布尔雅那\"\n\"Europe/London\": \"欧洲/伦敦\"\n\"Europe/Luxembourg\": \"欧洲/卢森堡\"\n\"Europe/Madrid\": \"欧洲/马德里\"\n\"Europe/Malta\": \"欧洲/马耳他\"\n\"Europe/Mariehamn\": \"欧洲/玛丽港\"\n\"Europe/Minsk\": \"欧洲/明斯克\"\n\"Europe/Monaco\": \"欧洲/摩纳哥\"\n\"Europe/Moscow\": \"欧洲/莫斯科\"\n\"Europe/Oslo\": \"欧洲/奥斯陆\"\n\"Europe/Paris\": \"欧洲/巴黎\"\n\"Europe/Podgorica\": \"欧洲/波德戈里察\"\n\"Europe/Prague\": \"欧洲/布拉格\"\n\"Europe/Riga\": \"欧洲/里加\"\n\"Europe/Rome\": \"欧洲/罗马\"\n\"Europe/Samara\": \"欧洲/萨马拉\"\n\"Europe/San_Marino\": \"欧洲/圣马力诺\"\n\"Europe/Sarajevo\": \"欧洲/萨拉热窝\"\n\"Europe/Saratov\": \"欧洲/萨拉托夫\"\n\"Europe/Simferopol\": \"欧洲/辛菲罗波尔\"\n\"Europe/Skopje\": \"欧洲/斯科普里\"\n\"Europe/Sofia\": \"欧洲/索非亚\"\n\"Europe/Stockholm\": \"欧洲/斯德哥尔摩\"\n\"Europe/Tallinn\": \"欧洲/塔林\"\n\"Europe/Tirane\": \"欧洲/地拉那\"\n\"Europe/Ulyanovsk\": \"欧洲/乌利亚诺夫斯克\"\n\"Europe/Uzhgorod\": \"欧洲/乌日哥罗德\"\n\"Europe/Vaduz\": \"欧洲/瓦杜兹\"\n\"Europe/Vatican\": \"欧洲/梵蒂冈\"\n\"Europe/Vienna\": \"欧洲/维也纳\"\n\"Europe/Vilnius\": \"欧洲/维尔纽斯\"\n\"Europe/Volgograd\": \"欧洲/伏尔加格勒\"\n\"Europe/Warsaw\": \"欧洲/华沙\"\n\"Europe/Zagreb\": \"欧洲/萨格勒布\"\n\"Europe/Zaporozhye\": \"欧洲/扎波罗热\"\n\"Europe/Zurich\": \"欧洲/苏黎世\"\n\"Indian/Antananarivo\": \"印度/塔那那利佛\"\n\"Indian/Chagos\": \"印度/查戈斯\"\n\"Indian/Christmas\": \"印度/圣诞节\"\n\"Indian/Cocos\": \"印度/可可\"\n\"Indian/Comoro\": \"印度/科摩罗\"\n\"Indian/Kerguelen\": \"印度/克格伦\"\n\"Indian/Mahe\": \"印度/马赫\"\n\"Indian/Maldives\": \"印度/马尔代夫\"\n\"Indian/Mauritius\": \"印度/毛里求斯\"\n\"Indian/Mayotte\": \"印度/马约特岛\"\n\"Indian/Reunion\": \"印度/留尼旺\"\n\"Pacific/Apia\": \"太平洋/阿皮亚\"\n\"Pacific/Auckland\": \"太平洋/奥克兰\"\n\"Pacific/Bougainville\": \"太平洋/九重葛\"\n\"Pacific/Chatham\": \"太平洋/查塔姆\"\n\"Pacific/Chuuk\": \"太平洋/楚克\"\n\"Pacific/Easter\": \"太平洋/复活节\"\n\"Pacific/Efate\": \"太平洋/命运\"\n\"Pacific/Enderbury\": \"太平洋/恩德伯里\"\n\"Pacific/Fakaofo\": \"太平洋/法考福\"\n\"Pacific/Fiji\": \"太平洋/斐济\"\n\"Pacific/Funafuti\": \"太平洋/富纳富提\"\n\"Pacific/Galapagos\": \"太平洋/加拉帕戈斯\"\n\"Pacific/Gambier\": \"太平洋/甘比尔\"\n\"Pacific/Guadalcanal\": \"太平洋/瓜达尔卡纳尔岛\"\n\"Pacific/Guam\": \"太平洋/关岛\"\n\"Pacific/Honolulu\": \"太平洋/檀香山\"\n\"Pacific/Kiritimati\": \"太平洋/基里蒂马蒂\"\n\"Pacific/Kosrae\": \"太平洋/科斯雷\"\n\"Pacific/Kwajalein\": \"太平洋/夸贾林\"\n\"Pacific/Majuro\": \"太平洋/马朱罗\"\n\"Pacific/Marquesas\": \"太平洋/马萨诸塞州\"\n\"Pacific/Midway\": \"太平洋/中途岛\"\n\"Pacific/Nauru\": \"太平洋/瑙鲁\"\n\"Pacific/Niue\": \"太平洋/纽埃\"\n\"Pacific/Norfolk\": \"太平洋/诺福克\"\n\"Pacific/Noumea\": \"太平洋/努美阿\"\n\"Pacific/Pago_Pago\": \"太平洋/ Pago_Pago\"\n\"Pacific/Palau\": \"太平洋/帕劳\"\n\"Pacific/Pitcairn\": \"太平洋/皮特凯恩\"\n\"Pacific/Pohnpei\": \"太平洋/庞贝\"\n\"Pacific/Port_Moresby\": \"太平洋/莫尔斯比港\"\n\"Pacific/Rarotonga\": \"太平洋/拉罗通加\"\n\"Pacific/Saipan\": \"太平洋/塞班岛\"\n\"Pacific/Tahiti\": \"太平洋/大溪地\"\n\"Pacific/Tarawa\": \"太平洋/塔拉瓦\"\n\"Pacific/Tongatapu\": \"太平洋/汤加塔普\"\n\"Pacific/Wake\": \"太平洋/苏醒\"\n\"Pacific/Wallis\": \"太平洋/沃利斯\"\n\"UTC\": \"世界标准时间\"\n\"Time Format\": \"时间格式\"\n\"Choose your default timezone\": \"选择默认时区\"\n\"Signature\": \"签名\"\n\"User signature will be append at the bottom of ticket reply box\": \"用户签名将附加在工单回复框的底部\"\n\"Password\": \"密码\"\n\"Password will remain same if you are not entering something in this field\": \"如果您未在此字段中输入任何内容，密码将保持不变\"\n\"Confirm Password\": \"确认密码\"\n\"Password must contain minimum 8 character length, at least two letters (not case sensitive), one number, one special character(space is not allowed).\": \"密码必须包含至少8个字符的长度，至少两个字母（不区分大小写），一个数字，一个特殊字符（不允许空格）。\"\n\"Save Changes\": \"保存更改\"\n\"SAVE CHANGES\": \"保存更改\"\n\"CREATE TICKET\": \"创建工单\"\n\"Customer full name\": \"客户全程\"\n\"Customer email address\": \"客户电子邮件地址\"\n\"Select Type\": \"选择类型\"\n\"Support\": \"支持\"\n\"Choose ticket type\": \"选择工单类型\"\n\"Ticket subject\": \"工单主题\"\n\"Message\": \"信息\"\n\"Query Message\": \"查询讯息\"\n\"Add Attachment\": \"添加附件\"\n\"This field is mandatory\": \"此字段是必填字段\"\n\"General\": \"一般的\"\n\"Designation\": \"指定\"\n\"Contant Number\": \"接触数\"\n\"User signature will be append in the bottom of ticket reply box\": \"用户签名将附加在工单回复框的底部\"\n\"Account Status\": \"帐户状态\"\n\"Account is Active\": \"帐户有效\"\n\"Assigning group(s) to user to view tickets regardless assignment.\": \"将群组分配给用户以查看工单，无论分配如何。\"\n\"Default\": \"默认\"\n\"Select All\": \"全选\"\n\"Remove All\": \"移除所有\"\n\"Assigning team(s) to user to view tickets regardless assignment.\": \"将团队分配给用户以查看故障单，无论分配如何。\"\n\"No Team added !\": \"未添加团队！\"\n\"Permission\": \"许可\"\n\"Role\": \"角色\"\n\"Administrator\": \"行政人员\"\n\"Select agent role\": \"选择接单员角色\"\n\"Add Customer\": \"新增客户\"\n\"Action\": \"行动\"\n\"Account Owner\": \"帐户所有者\"\n\"Active\": \"活动的\"\n\"Edit\": \"编辑\"\n\"Delete\": \"删除\"\n\"Disabled\": \"已禁用\"\n\"New Group\": \"新建群组\"\n\"Default Privileges\": \"默认权限\"\n\"New Privileges\": \"新权限\"\n\"NEW PRIVILEGE\": \"新权限\"\n\"New Privilege\": \"新权限\"\n\"New Team\": \"新团队\"\n\"No Record Found\": \"没有找到记录\"\n\"Order Synchronization\": \"订单同步\"\n\"Easily integrate different ecommerce platforms with your helpdesk which can then be later used to swiftly integrate ecommerce order details with your support tickets.\": \"轻松地将不同的电子商务平台与您的服务台集成，然后可以在以后用于快速将电子商务订单详细信息与支持工单集成在一起。\"\n\"BigCommerce\": \"BigCommerce\"\n\"No channels have been added.\": \"未添加任何渠道。\"\n\"Add BigCommerce Store\": \"添加BigCommerce商店\"\n\"ADD BIGCOMMERCE STORE\": \"添加BigCommerce商店\"\n\"Mangento\": \"Mangento\"\n\"Add Magento Store\": \"添加Magento商店\"\n\"OpenCart\": \"OpenCart\"\n\"Add OpenCart Store\": \"添加OpenCart商店\"\n\"ADD OPENCART STORE\": \"添加OpenCART商店\"\n\"Shopify\": \"Shopify\"\n\"Add Shopify Store\": \"添加Shopify商店\"\n\"ADD SHOPIFY STORE\": \"添加Shopify商店\"\n\"Integrate a new BigCommerce store\": \"整合新的BigCommerce商店\"\n\"Your BigCommerce Store Name\": \"您的BigCommerce商店名称\"\n\"Your BigCommerce Store Hash\": \"您的BigCommerce商店哈希\"\n\"Your BigCommerce Api Token\": \"您的BigCommerce Api令牌\"\n\"Your BigCommerce Api Client ID\": \"您的BigCommerce Api客户ID\"\n\"Enable Channel\": \"启用渠道\"\n\"Add Store\": \"添加商店\"\n\"ADD STORE\": \"添加商店\"\n\"Integrate a new Magento store\": \"整合新的Magento商店\"\n\"Your Magento Api Username\": \"您的Magento Api用户名\"\n\"Your Magento Api Password\": \"您的Magento Api密码\"\n\"Integrate a new OpenCart store\": \"整合新的OpenCart商店\"\n\"Your OpenCart Api Key\": \"您的OpenCart Api密钥\"\n\"Your Shopify Store Name\": \"您的Shopify商店名称\"\n\"Your Shopify Api Key\": \"您的Shopify Api密钥\"\n\"Your Shopify Api Password\": \"您的Shopify Api密码\"\n\"Easily embed custom form to help generate helpdesk tickets.\": \"轻松嵌入自定义表单，以帮助生成服务台工单。\"\n\"Form-Builder\": \"表单生成器\"\n\"Add Formbuilder\": \"添加表单生成器\"\n\"ADD FORMBUILDER\": \"添加表单生成器\"\n\"No FormBuilder have been added.\": \"未添加表单生成器。\"\n\"Create a New Custom Form Below\": \"在下面创建一个新的自定义表单\"\n\"Form Name\": \"表单名称\"\n\"It will be shown in the list of created forms\": \"它将显示在创建的表单列表中\"\n\"MANDATORY FIELDS\": \"必须填写\"\n\"These fields will be visible in form and cant be edited\": \"这些字段将以表单形式显示，并且无法进行编辑\"\n\"Reply\": \"回复\"\n\"OPTIONAL FIELDS\": \"可选字段\"\n\"Select These Fields to Add in your Form\": \"选择这些字段以添加到表单中\"\n\"GDPR\": \"GDPR\"\n\"Order\": \"订单\"\n\"Categorybuilder\": \"分类构建器\"\n\"File\": \"文件\"\n\"Add Form\": \"新增表单\"\n\"ADD FORM\": \"新增表单\"\n\"UPDATE FORM\": \"更新表单\"\n\"Update Form\": \"更新表单\"\n\"Embed\": \"嵌入\"\n\"EMBED\": \"嵌入\"\n\"EMBED FORMBUILDER\": \"嵌入式表单生成器\"\n\"Embed Formbuilder\": \"嵌入式表单生成器\"\n\"Visit\": \"访问\"\n\"VISIT\": \"访问\"\n\"Code\": \"代码\"\n\"Total Ticket(s)\": \"总工单数\"\n\"Ticket Count\": \"工单计数\"\n\"SwiftMailer Configurations\": \"快捷邮件管理器配置\"\n\"No swiftmailer configurations found\": \"找不到快捷邮件管理器配置\"\n\"CREATE CONFIGURATION\": \"创建配置\"\n\"Add configuration\": \"添加配置\"\n\"Update configuration\": \"更新配置\"\n\"Mailer ID\": \"邮件ID\"\n\"Mailer ID - Leave blank to automatically create id\": \"邮件程序ID-保留空白以自动创建ID\"\n\"Transport Type\": \"传输类型\"\n\"SMTP\": \"SMTP 协议\"\n\"Enable Delivery\": \"启用传输\"\n\"Server\": \"服务器\"\n\"Port\": \"端口\"\n\"Encryption Mode\": \"加密方式\"\n\"ssl\": \"ssl\"\n\"tsl\": \"tsl\"\n\"None\": \"无\"\n\"Authentication Mode\": \"认证方式\"\n\"login\": \"登录\"\n\"API\": \"應用程式介面\"\n\"Plain\": \"明文\"\n\"CRAM-MD5\": \"CRAM-MD5\"\n\"Sender Address\": \"发件人地址\"\n\"Delivery Address\": \"邮寄地址\"\n\"Block Spam\": \"阻止垃圾邮件\"\n\"Black list\": \"黑名单\"\n\"Comma (,) separated values (Eg. support@example.com, @example.com, 68.98.31.226)\": \"以逗号（，）分隔的值（例如，support @ example.com，@ example.com，68.98.31.226）\"\n\"White list\": \"白名单\"\n\"Mailbox Settings\": \"邮箱设置\"\n\"No mailbox configurations found\": \"找不到邮箱配置\"\n\"NEW MAILBOX\": \"新邮箱\"\n\"New Mailbox\": \"新邮箱\"\n\"Update Mailbox\": \"更新邮箱\"\n\"Add Mailbox\": \"添加邮箱\"\n\"Mailbox ID - Leave blank to automatically create id\": \"邮箱ID-保留空白以自动创建ID\"\n\"Mailbox Name\": \"邮箱名称\"\n\"Enable Mailbox\": \"启用邮箱\"\n\"Incoming Mail (IMAP) Server\": \"传入邮件（IMAP）服务器\"\n\"Configure your imap settings which will be used to fetch emails from your mailbox.\": \"配置您的imap设置，该设置将用于从您的邮箱中获取电子邮件。\"\n\"Transport\": \"传输\"\n\"IMAP\": \"地图\"\n\"Gmail\": \"邮箱\"\n\"Yahoo\": \"雅虎\"\n\"Host\": \"主机\"\n\"IMAP Host\": \"IMAP 主机\"\n\"Email address\": \"电子邮件地址\"\n\"Associated Password\": \"关联密码\"\n\"Outgoing Mail (SMTP) Server\": \"发送邮件（SMTP）服务器\"\n\"Select a valid Swift Mailer configuration which will be used to send emails through your mailbox.\": \"选择一个有效的快捷邮件管理器配置，该配置将用于通过您的邮箱发送电子邮件。\"\n\"Swift Mailer ID\": \"快捷邮件管理器 ID\"\n\"None Selected\": \"未选择\"\n\"Create Mailbox\": \"创建邮箱\"\n\"CREATE MAILBOX\": \"创建邮箱\"\n\"New Template\": \"新模板\"\n\"NEW TEMPLATE\": \"新模板\"\n\"Customer Forgot Password\": \"客户忘记密码\"\n\"Customer Account Created\": \"客户帐户已创建\"\n\"Ticket generated success mail to customer\": \"工单生成的成功邮件发送给客户\"\n\"Customer Reply To The Agent\": \"客户回复接单员\"\n\"Ticket Assign\": \"工单分配\"\n\"Agent Forgot Password\": \"接单员忘记密码\"\n\"Agent Account Created\": \"接单员帐户已创建\"\n\"Ticket generated by customer\": \"客户生成的工单\"\n\"Agent Reply To The Customers ticket\": \"接单员回复客户工单\"\n\"Email template name\": \"电子邮件模板名称\"\n\"Email template subject\": \"电子邮件模板主题\"\n\"Template For\": \"模板给\"\n\"Nothing Selected\": \"无选择\"\n\"email template will be used for work related with selected option\": \"电子邮件模板将用于与所选选项相关的工作\"\n\"Email template body\": \"电子邮件模板正文\"\n\"Body\": \"正文\"\n\"placeholders\": \"占位符\"\n\"Ticket Subject\": \"工单主题\"\n\"Ticket Message\": \"工单信息\"\n\"Ticket Attachments\": \"工单附件\"\n\"Ticket Tags\": \"工单标记\"\n\"Ticket Source\": \"工单来源\"\n\"Ticket Status\": \"工单状态\"\n\"Ticket Priority\": \"工单优先级\"\n\"Ticket Group\": \"工单群组\"\n\"Ticket Team\": \"工单团队\"\n\"Ticket Thread Message\": \"工单线程消息\"\n\"Ticket Customer Name\": \"工单客户名称\"\n\"Ticket Customer Email\": \"工单客户电子邮件\"\n\"Ticket Agent Name\": \"工单接单员名称\"\n\"Ticket Agent Email\": \"工单接单员电子邮件\"\n\"Ticket Agent Link\": \"工单接单员链接\"\n\"Ticket Customer Link\": \"工单客户链接\"\n\"Last Collaborator Name\": \"最后的协作者名字\"\n\"Last Collaborator Email\": \"最后的协作者电子邮件\"\n\"Agent/ Customer Name\": \"接单员/客户名称\"\n\"Account Validation Link\": \"帐户验证链接\"\n\"Password Forgot Link\": \"密码忘记链接\"\n\"Company Name\": \"公司名称\"\n\"Company Logo\": \"公司Logo\"\n\"Company URL\": \"公司网址\"\n\"Swiftmailer id (Select from drop down)\": \"快捷邮件管理器ID（从下拉列表中选择）\"\n\"SwiftMailer\": \"迅捷郵差\"\n\"PROCEED\": \"继续\"\n\"Proceed\": \"继续\"\n\"Theme Color\": \"主题色\"\n\"Customer Created\": \"客户创建\"\n\"Agent Created\": \"接单员已创建\"\n\"Ticket Created\": \"工单已创建\"\n\"Agent Replied on Ticket\": \"接单员在工单上回复\"\n\"Customer Replied on Ticket\": \"顾客回复工单\"\n\"Workflow Status\": \"工作流程状态\"\n\"Workflow is Active\": \"工作流程处于活动状态\"\n\"Events\": \"事件\"\n\"An event automatically triggers to check conditions and perform a respective pre-defined set of actions\": \"事件会自动触发以检查条件并执行相应的预定义的一系列操作\"\n\"Select an Event\": \"选择一个事件\"\n\"Add More\": \"添加更多\"\n\"Conditions\": \"条件\"\n\"Conditions are set of rules which checks for specific scenarios and are triggered on specific occasions\": \"条件是一组规则，用于检查特定场景并在特定情况下触发\"\n\"Subject or Description\": \"主题或描述\"\n\"Actions\": \"动作\"\n\"An action not only reduces the workload but also makes it quite easier for ticket automation\": \"动作不仅减少了工作量，而且使工单自动化变得相当容易\"\n\"Select an Action\": \"选择一个动作\"\n\"Add Note\": \"加备注\"\n\"Mail to agent\": \"邮寄给接单员\"\n\"Mail to customer\": \"邮寄给客户\"\n\"Mail to group\": \"邮寄到群组\"\n\"Mail to last collaborator\": \"邮寄给最近的合作者\"\n\"Mail to team\": \"邮寄给团队\"\n\"Mark Spam\": \"标记为垃圾邮件\"\n\"Assign to agent\": \"分配给接单员\"\n\"Assign to group\": \"分配给群组\"\n\"Set Priority As\": \"将优先级设置为\"\n\"Set Status As\": \"将状态设置为\"\n\"Set Tag As\": \"将标记设置为\"\n\"Set Label As\": \"将标签设置为\"\n\"Assign to team\": \"分配给团队\"\n\"Set Type As\": \"将类型设置为\"\n\"Add Workflow\": \"添加工作流程\"\n\"ADD WORKFLOW\": \"添加工作流程\"\n\"Ticket Type code\": \"工单类型代码\"\n\"Ticket Type description\": \"工单类型描述\"\n\"Type Status\": \"类型状态\"\n\"Type is Active\": \"类型有效\"\n\"Add Save Reply\": \"添加保存回复\"\n\"Saved reply name\": \"保存的回复名称\"\n\"Share saved reply with user(s) in these group(s)\": \"与这些群组中的用户共享保存的回复\"\n\"Share saved reply with user(s) in these teams(s)\": \"与这些团队中的用户共享保存的回复\"\n\"Saved reply Body\": \"保存的回复正文\"\n\"New Prepared Response\": \"新的准备好的响应\"\n\"Prepared Response Status\": \"准备好的响应状态\"\n\"Prepared Response is Active\": \"准备好的响应处于活动状态\"\n\"Share prepared response with user(s) in these group(s)\": \"与这些群组中的用户共享准备好的响应\"\n\"Share prepared response with user(s) in these teams(s)\": \"与这些团队中的用户共享准备好的响应\"\n\"ADD PREPARED RESPONSE\": \"添加准备的响应\"\n\"Add Prepared Response\": \"添加准备好的响应\"\n\"Folder Name is shown upfront at Knowledge Base\": \"文件夹名称显示在知识库的前面\"\n\"A small text about the folder helps user to navigate more easily\": \"有关文件夹的小文字可帮助用户更轻松地导航\"\n\"Publish\": \"发布\"\n\"Choose appropriate status\": \"选择适当的状态\"\n\"Folder Image\": \"资料夹图片\"\n\"An image is worth a thousands words and makes folder more accessible\": \"图片价值数千个单词，使文件夹更易于访问\"\n\"Add Category\": \"添加类别\"\n\"Category Name is shown upfront at Knowledge Base\": \"类别名称显示在知识库的前面\"\n\"A small text about the category helps user to navigate more easily\": \"有关类别的小文字可帮助用户更轻松地导航\"\n\"Using Category Order, you can decide which category should display first\": \"使用类别顺序，您可以决定哪个类别应首先显示\"\n\"Sorting\": \"排序\"\n\"Ascending Order (A-Z)\": \"升序（A-Z）\"\n\"Descending Order (Z-A)\": \"降序（Z-A）\"\n\"Based on Popularity\": \"基于人气\"\n\"Article of this category will display according to selected option\": \"此类别的文章将根据所选选项显示\"\n\"Article\": \"文章\"\n\"Title\": \"标题\"\n\"View\": \"查看\"\n\"Make as Starred\": \"加星标\"\n\"Yes\": \"是\"\n\"No\" : \"否\"\n\"Stared\" : \"已加星标\"\n\"Revisions\": \"修订版本\"\n\"Related Articles\" : \"相关文章\"\n\"Delete Article\": \"删除文章\"\n\"Content\": \"内容\"\n\"Slug\": \"弹头\"\n\"Slug is the url identity of this article.\": \"Slug是本文的url身份。\"\n\"Meta Title\": \"元标题\"\n\"Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A pages title tag and meta description are usually shown whenever that page appears in search engine results\": \"标题标记和元描述是网页标题中的HTML代码的一部分。它们帮助搜索引擎了解页面上的内容。每当页面出现在搜索引擎结果中时，通常会显示页面标题标记和元描述\"\n\"Meta Keywords\": \"元关键字\"\n\"Meta Description\": \"元描述\"\n\"Description\": \"描述\"\n\"Team Status\": \"团队状态\"\n\"Team is Active\": \"团队有效\"\n\"Edit Privilege\": \"编辑权限\"\n\"Can create ticket\": \"可以创建工单\"\n\"Can edit ticket\": \"可以编辑工单\"\n\"Can delete ticket\": \"可以删除工单\"\n\"Can restore trashed ticket\": \"可以恢复垃圾工单\"\n\"Can assign ticket\": \"可以分配工单\"\n\"Can assign ticket group\": \"可以分配工单群组\"\n\"Can update ticket status\": \"可以更新工单状态\"\n\"Can update ticket priority\": \"可以更新工单优先级\"\n\"Can update ticket type\": \"可以更新工单类型\"\n\"Can add internal notes to ticket\": \"可以在工单中添加内部注释\"\n\"Can edit thread/notes\": \"可以编辑线程/注释\"\n\"Can lock/unlock thread\": \"可以锁定/解锁线程\"\n\"Can add collaborator to ticket\": \"可以将协作者添加到工单\"\n\"Can delete collaborator from ticket\": \"可以从工单中删除协作者\"\n\"Can delete thread/notes\": \"可以删除线程/注释\"\n\"Can apply prepared response on ticket\": \"可以在工单上应用准备好的响应\"\n\"Can add ticket tags\": \"可以添加工单标记\"\n\"Can delete ticket tags\": \"可以删除工单标记\"\n\"Can kick other ticket users\": \"可以踢出其他工单用户\"\n\"Can manage email templates\": \"可以管理电子邮件模板\"\n\"Can manage groups\": \"可以管理群组\"\n\"Can manage Sub-Groups/ Teams\": \"可以管理子群组/团队\"\n\"Can manage agents\": \"可以管理接单员\"\n\"Can manage agent privileges\": \"可以管理接单员权限\"\n\"Can manage ticket types\": \"可以管理工单类型\"\n\"Can manage ticket custom fields\": \"可以管理工单自定义字段\"\n\"Can manage customers\": \"可以管理客户\"\n\"Can manage Prepared Responses\": \"可以管理准备好的响应\"\n\"Can manage Automatic workflow\": \"可以管理自动工作流程\"\n\"Can manage tags\": \"可以管理标记\"\n\"Can manage knowledgebase\": \"可以管理知识库\"\n\"Can manage Groups Saved Reply\": \"可以管理群组已保存的回复\"\n\"Add Privilege\": \"添加权限\"\n\"Choose set of privileges which will be available to the agent.\": \"选择将对接单员可用的权限集。\"\n\"Advanced\": \"高级的\"\n\"Privilege Name must have characters only\": \"权限名称只能包含字符\"\n\"Maximum character length is 50\": \"最大字符长度为50\"\n\"Open Tickets\": \"开放工单\"\n\"New Customer\": \"新客户\"\n\"New Agent\": \"新接单员\"\n\"Total Article(s)\": \"文章总数\"\n\"Please specify a valid email address\": \"请指定一个有效的电子邮件地址\"\n\"Please enter the password associated with your email address\": \"请输入与您的电子邮件地址关联的密码\"\n\"Please enter your server host address\": \"请输入您的服务器主机地址\"\n\"Please specify a port number to connect with your mail server\": \"请指定用于连接您的邮件服务器的端口号\"\n\"Success ! Branding details saved successfully.\": \"成功 ！品牌推广详细信息已成功保存。\"\n\"Success ! Time details saved successfully.\": \"成功 ！时间详细信息已成功保存。\"\n\"Spam setting saved successfully.\": \"垃圾邮件设置已成功保存。\"\n\"Please specify a valid name for your mailbox.\": \"请为您的邮箱指定一个有效的名称。\"\n\"Please select a valid swift-mailer configuration.\": \"请选择一个有效的快捷邮件管理器配置。\"\n\"Please specify a valid host address.\": \"请指定一个有效的主机地址。\"\n\"Please specify a valid email address.\": \"请指定一个有效的电子邮件地址。\"\n\"Please enter the associated account password.\": \"请输入关联的帐户密码。\"\n\"New Saved Reply\": \"新保存的回复\"\n\"New Category\": \"新类别\"\n\"Folder\": \"文件夹\"\n\"Category\": \"类别\"\n\"Created\": \"已建立\"\n\"All Articles\": \"所有文章\"\n\"Viewed\": \"已查看\"\n\"New Article\": \"新文章\"\n\"Thank you for your feedback!\": \"感谢您的反馈意见！\"\n\"Was this article helpful?\": \"本文是否有帮助？\"\n\"Helpdesk\": \"服务台\"\n\"Support Center\": \"支持中心\"\n\"Mailboxes\": \"邮箱\"\n\"By\": \"经过\"\n\"Search Tickets\": \"搜索工单\"\n\"Customer Information\": \"客户信息\"\n\"Total Replies\": \"所有回复\"\n\"Filter With\": \"筛选方式\"\n\"Type email to add\": \"输入电子邮件以添加\"\n\"Collaborators\": \"合作者\"\n\"Labels\": \"标签\"\n\"Group\": \"群组\"\n\"group\": \"团体\"\n\"Contact Team\": \"联系团队\"\n\"Stay on ticket\": \"留在工单\"\n\"Redirect to list\": \"重定向到列表\"\n\"Nothing interesting here...\": \"这里没什么有趣的...\"\n\"Previous Ticket\": \"上一工单\"\n\"Next Ticket\": \"下一工单\"\n\"Forward\": \"向前\"\n\"Note\": \"注释\"\n\"Write a reply\": \"写回复\"\n\"Created Ticket\": \"已创建工单\"\n\"All Threads\": \"所有线程\"\n\"Forwards\": \"转发\"\n\"Notes\": \"注释\"\n\"Pinned\": \"固定\"\n\"Edit Ticket\": \"编辑工单\"\n\"Print Ticket\": \"打印工单\"\n\"Mark as Spam\": \"标记为垃圾邮件\"\n\"Mark as Closed\": \"标记为已关闭\"\n\"Delete Ticket\": \"删除工单\"\n\"View order details from different eCommerce channels\": \"查看来自不同电子商务渠道的订单详细信息\"\n\"ECOMMERCE CHANNELS\": \"电子商务渠道\"\n\"Select channel\": \"选择渠道\"\n\"Order Id\": \"订单编号\"\n\"Fetch Order\": \"取货单\"\n\"No orders have been integrated to this ticket yet.\": \"尚无订单被集成到此工单。\"\n\"Enter your credentials below to gain access to your helpdesk account.\": \"在下面输入您的凭据即可访问您的服务台帐户。\"\n\"Keep me logged in\": \"保持登录状态\"\n\"Forgot Password?\": \"忘记密码？\"\n\"Log in to your\": \"登录到您的\"\n\"Sign In\": \"登入\"\n\"Edit Customer\": \"编辑客户\"\n\"Update\": \"更新\"\n\"Discard\": \"丢弃\"\n\"Cancel\": \"取消\"\n\"Not Assigned\": \"未分配\"\n\"Submit\": \"提交\"\n\"Submit And Open\": \"提交并打开\"\n\"Submit And Pending\": \"提交并待定\"\n\"Submit And Answered\": \"提交并回答\"\n\"Submit And Resolved\": \"提交并解决\"\n\"Submit And Closed\": \"提交并关闭\"\n\"Choose a Color\": \"选择一种颜色\"\n\"Create\": \"创建\"\n\"Edit Label\": \"编辑标签\"\n\"Add Label\": \"添加标签\"\n\"To\": \"至\"\n\"Ticket\": \"工单\"\n\"Your browser does not support JavaScript or You disabled JavaScript, Please enable those !\": \"您的浏览器不支持JavaScript或您禁用了JavaScript，请启用这些功能！\"\n\"Confirm Action\": \"确认动作\"\n\"Confirm\": \"确认\"\n\"No result found\": \"找不到结果\"\n\"ticket delivery status\": \"工单交付状态\"\n\"Warning! Select valid image file.\": \"警告！选择有效的图像文件。\"\n\"Error\": \"错误\"\n\"Save\": \"保存\"\n\"SEO\": \"搜索引擎优化\"\n\"Edit Saved Filter\": \"编辑已保存的筛选器\"\n\"Type atleast 2 letters\": \"输入至少2个字母\"\n\"Remove Label\": \"移除标签\"\n\"New Saved Filter\": \"新保存的筛选器\"\n\"Is Default\": \"是默认值\"\n\"Remove Saved Filter\": \"删除保存的筛选器\"\n\"Ticket Info\": \"工单信息\"\n\"Last Replied Agent\": \"最后回复的接单员\"\n\"created Ticket\": \"已创建的工单\"\n\"Uploaded Files\": \"已上传的文件\"\n\"Download (as .zip)\": \"下载（作为.zip文件）\"\n\"made last reply\": \"做最后回复\"\n\"N/A\": \"不适用\"\n\"Unassigned\": \"未分配\"\n\"Label\": \"标签\"\n\"Assigned to me\": \"分配给我\"\n\"Search Query\": \"搜索查询\"\n\"Searching\": \"搜寻中\"\n\"Saved Filter\": \"保存的筛选器\"\n\"No Label Created\": \"没有创建标签\"\n\"Label with same name already exist.\": \"具有相同名称的标签已存在。\"\n\"Create New\": \"创建新的\"\n\"Mail status\": \"邮件状态\"\n\"replied\": \"回复\"\n\"added note\": \"增加的注释\"\n\"forwarded\": \"已转发\"\n\"TO\": \"至\"\n\"CC\": \"抄送\"\n\"BCC\": \"密件抄送\"\n\"Locked\": \"已锁定\"\n\"Edit Thread\": \"编辑线程\"\n\"Delete Thread\": \"删除线程\"\n\"Unpin Thread\": \"取消固定线程\"\n\"Pin Thread\": \"固定线程\"\n\"Unlock Thread\": \"解锁线程\"\n\"Lock Thread\": \"锁定线程\"\n\"Translate Thread\": \"翻译线程\"\n\"Language\": \"语言\"\n\"English\": \"英语\"\n\"French\": \"法语\"\n\"Italian\": \"意大利语\"\n\"Arabic\": \"阿拉伯语\"\n\"German\": \"德语\"\n\"Spanish\": \"西班牙语\"\n\"Turkish\": \"土耳其语\"\n\"Danish\": \"丹麦语\"\n\"Chinese\": \"中国人\"\n\"Polish\": \"抛光\"\n\"Hebrew\": \"希伯來文\"\n\"Portuguese\": \"葡萄牙語\"\n\"System\": \"系统语言\"\n\"Open in Files\": \"在文件中打开\"\n\"Email address is invalid\": \"电子邮箱地址不可用\"\n\"Tag with same name already exist\": \"具有相同名称的标记已存在\"\n\"Text length should be less than 20 charactors\": \"文字长度应少于20个字符\"\n\"Label with same name already exist\": \"具有相同名称的标签已存在\"\n\"Agent Name\": \"接单员名称\"\n\"Agent Email\": \"接单员电子邮件\"\n\"open\": \"打开\"\n\"Currently active agents on ticket\": \"当前在工单上活跃的接单员\"\n\"Edit Customer Information\": \"编辑客户信息\"\n\"Restore\": \"恢复\"\n\"Delete Forever\": \"永久删除\"\n\"Add Team\": \"新增团队\"\n\"delete\": \"删除\"\n\"You didnt have any folder for current filter(s).\": \"您没有用于当前筛选器的任何文件夹。\"\n\"Add Folder\": \"新增文件夹\"\n\"This field must have valid characters only\": \"此字段只能包含有效字符\"\n\"Can edit task\": \"可以编辑任务\"\n\"Can create task\": \"可以创建任务\"\n\"Can delete task\": \"可以删除任务\"\n\"Can add member to task\": \"可以将成员添加到任务\"\n\"Can remove member from task\": \"可以从任务中删除成员\"\n\"Agent Privileges\": \"接单员权限\"\n\"Agent Privilege represents overall permissions in System.\": \"接单员权限代表系统中的总体许可权限。\"\n\"Ticket View\": \"工单视图\"\n\"User can view tickets based on selected scope.\": \"用户可以根据所选范围查看工单。\"\n\"If individual access then user can View assigned Ticket(s) only, If Team access then user can view all Ticket(s) in team(s) he belongs to and so on\": \"如果是个人访问，则用户只能查看分配的工单；如果是团队访问，则用户可以查看他所属的团队的所有工单，依此类推\"\n\"Global Access\": \"全局访问\"\n\"Group Access\": \"群组访问\"\n\"Team Access\": \"团队访问\"\n\"Individual Access\": \"个人访问\"\n\"This field must have characters only\": \"此字段只能包含字符\"\n\"Maximum character length is 40\": \"最大字符长度为40\"\n\"This is not a valid email address\": \"这个电子邮件地址无效\"\n\"Password must contains 8 Characters\": \"密码必须包含8个字符\"\n\"The passwords does not match\": \"密码不匹配\"\n\"Enabled\": \"已启用\"\n\"Create Configuration\": \"创建配置\"\n\"Swift Mailer Settings\": \"快捷邮件管理器设置\"\n\"Username\": \"用户名\"\n\"Please select a swiftmailer id\": \"请选择一个快捷邮件管理器ID\"\n\"Please enter a valid e-mail id\": \"请输入有效的电子邮件ID\"\n\"Please enter a mailer id\": \"请输入一个邮件管理器ID\"\n\"Email Id\": \"电子邮件ID\"\n\"Are you sure? You want to perform this action.\": \"你确定吗？您要执行此操作。\"\n\"Reorder\": \"重新排序\"\n\"New Workflow\": \"新工作流程\"\n\"OR\": \"或者\"\n\"AND\": \"并且\"\n\"Please enter a valid name.\": \"请输入有效的名字。\"\n\"Please select a value.\": \"请选择一个值。\"\n\"Please add a value.\": \"请添加一个值。\"\n\"This field is required\": \"此字段是必需的\"\n\"or\": \"或者\"\n\"and\": \"并且\"\n\"Select a Condition\": \"选择条件\"\n\"Loading...\": \"载入中...\"\n\"Select Option\": \"选择选项\"\n\"Inactive\": \"不活跃\"\n\"New Type\": \"新类型\"\n\"Placeholders\": \"占位符\"\n\"Ticket Link\": \"工单链接\"\n\"Id\": \"ID\"\n\"Preview\": \"预览\"\n\"Sort Order\": \"排序\"\n\"This field must be a number\": \"该字段必须是数字\"\n\"User\": \"用户\"\n\"Edit Group\": \"编辑群组\"\n\"Group Status\": \"群组状态\"\n\"Group is Active\": \"群组处于活动状态\"\n\"Add Group\": \"新增群组\"\n\"Contact number is invalid\": \"联络电话无效\"\n\"Edit Agent\": \"编辑接单员\"\n\"No Privilege added, Please add Privilege(s) first !\": \"未添加权，请先添加权限！\"\n\"Edit Email Template\": \"编辑电子邮件模板\"\n\"Edit Workflow\": \"编辑工作流程\"\n\"Save Workflow\": \"保存工作流程\"\n\"Edit Ticket Type\": \"编辑工单类型\"\n\"Add Ticket Type\": \"添加工单类型\"\n\"Date Released\": \"发布日期\"\n\"Free\": \"自由的\"\n\"Premium\": \"优质的\"\n\"Installed\": \"已安装\"\n\"Installed Applications\": \"已安装的应用程序\"\n\"Apps Dashboard\": \"应用程序仪表板\"\n\"Dashboard\": \"仪表板\"\n\"Nothing Interesting here\" : \"这里没什么有趣的\"\n\"No Categories Added\" : \"未添加类别\"\n\"ticket\": \"工单\"\n\"Add Email Template\": \"添加电子邮件模板\"\n\"This field contain 100 characters only\": \"该字段仅包含100个字符\"\n\"This field contain characters only\" : \"该字段仅包含字符\"\n\"Name length must not be greater than 200 !!\": \"名称长度不能大于200！\"\n\"Warning! Correct all field values first!\": \"警告！首先更正所有字段值！\"\n\"Warning ! This is not a valid request\": \"警告 ！这是无效的要求\"\n\"Success ! Tag removed successfully.\": \"成功 ！标记已成功删除。\"\n\"Success ! Tags Saved successfully.\": \"成功 ！标签已成功保存。\"\n\"Success ! Revision restored successfully.\": \"成功 ！修订已成功恢复。\"\n\"Success ! Categories updated successfully.\": \"成功 ！类别已成功更新。\"\n\"Success ! Article Related removed successfully.\": \"成功 ！相关文章已成功删除。\"\n\"Success ! Article Related is already added.\": \"成功 ！相关文章已添加。\"\n\"Success ! Cannot add self as relative article.\": \"成功 ！无法将自己添加为相关文章。\"\n\"Success ! Article Related updated successfully.\": \"成功 ！相关文章已成功更新。\"\n\"Success ! Articles removed successfully.\": \"成功 ！文章已成功删除。\"\n\"Success ! Article status updated successfully.\": \"成功 ！文章状态已成功更新。\"\n\"Success ! Article star updated successfully.\": \"成功 ！文章星标已成功更新。\"\n\"Success! Article updated successfully\": \"成功！文章更新成功\"\n\"Success ! Category sort  order updated successfully.\": \"成功 ！类别排序已成功更新。\"\n\"Success ! Category status updated successfully.\": \"成功 ！类别状态已成功更新。\"\n\"Success ! Folders updated successfully.\": \"成功 ！文件夹更新成功。\"\n\"Success ! Categories removed successfully.\": \"成功 ！类别已成功删除。\"\n\"Success ! Category updated successfully.\": \"成功 ！类别已成功更新。\"\n\"Error ! Category is not exist.\": \"错误 ！类别不存在。\"\n\"Warning ! Customer Login disabled by admin.\": \"警告 ！客户登录已被管理员禁用。\"\n\"This Email is not registered with us.\": \"此电子邮件未在我处注册。\"\n\"Your password has been updated successfully.\": \"您的密码已成功更新。\"\n\"Password dont match.\": \"密码不匹配。\"\n\"Error ! Profile image is not valid, please upload a valid format\": \"错误 ！个人资料图片无效，请上传有效格式\"\n\"Warning! Provide valid image file. (Recommened\": \"警告！提供有效的图像文件。 （推荐\"\n\"Success! Folder has been added successfully.\": \"成功！文件夹已成功添加。\"\n\"Folder updated successfully.\": \"文件夹更新成功。\"\n\"Success ! Folder status updated successfully.\": \"成功 ！文件夹状态已成功更新。\"\n\"Error ! Folder is not exist.\": \"错误 ！文件夹不存在。\"\n\"Success ! Folder updated successfully.\": \"成功 ！文件夹更新成功。\"\n\"Error ! Folder does not exist.\": \"错误 ！文件夹不存在。\"\n\"Success ! Folder deleted successfully.\": \"成功 ！文件夹已成功删除。\"\n\"Warning ! Folder doesnt exists!\": \"警告 ！文件夹不存在！\"\n\"Warning ! Cannot create ticket, given email is blocked by admin.\": \"警告 ！给定电子邮件已被管理员阻止，因此无法创建工单。\"\n\"Success ! Ticket has been created successfully.\": \"成功 ！工单已成功创建。\"\n\"Warning ! Can not create ticket, invalid details.\": \"警告 ！无法创建工单，无效的详细信息。\"\n\"Warning ! Post size can not exceed 25MB\": \"警告 ！帖子大小不能超过25MB\"\n\"Create Ticket Request\": \"创建工单请求\"\n\"Success ! Reply added successfully.\": \"成功 ！回复已成功添加。\"\n\"Warning ! Reply field can not be blank.\": \"警告 ！回复字段不能为空。\"\n\"Success ! Rating has been successfully added.\": \"成功 ！评分已成功添加。\"\n\"Warning ! Invalid rating.\": \"警告 ！无效的评分。\"\n\"Error ! Can not add customer as a collaborator.\": \"错误 ！无法将客户添加为协作者。\"\n\"Success ! Collaborator added successfully.\": \"成功 ！协作者添加成功。\"\n\"Error ! Collaborator is already added.\": \"错误 ！协作者已添加。\"\n\"Success ! Collaborator removed successfully.\": \"成功 ！协作者已成功删除。\"\n\"Error ! Invalid Collaborator.\": \"错误 ！无效的协作者。\"\n\"An unexpected error occurred. Please try again later.\": \"一个意料之外的问题发生了。请稍后再试。\"\n\"Feedback saved successfully.\": \"反馈已成功保存。\"\n\"Feedback updated successfully.\": \"反馈已成功更新。\"\n\"Invalid feedback provided.\": \"提供了无效的反馈。\"\n\"Article not found.\": \"找不到文章。\"\n\"You need to login to your account before can perform this action.\": \"您需要先登录帐户，然后才能执行此操作。\"\n\"Warning! Please add valid Actions!\": \"警告！请添加有效的动作！\"\n\"Warning! In Free Plan you can not change Events!\": \"警告！在免费计划中，您无法更改事件！\"\n\"Success! Prepared Response has been updated successfully.\": \"成功！准备好的响应已成功更新。\"\n\"Success! Prepared Response has been added successfully.\": \"成功！准备好的响应已成功添加。\"\n\"Warning  This is not a valid request\": \"警告这不是有效的请求\"\n\"Use Default Colors\": \"使用默认颜色\"\n\"Masonry\": \"Masonry\"\n\"Popular Article\": \"热门文章\"\n\"Manage Ticket Custom Fields\": \"管理工单自定义字段\"\n\"You dont have premission to edit this Prepared response\": \"您没有权限编辑此准备好的响应\"\n\"Save Prepared Response\": \"保存准备好的响应\"\n\"Success ! Prepared response removed successfully.\": \"成功 ！准备好的响应已成功删除。\"\n\"Warning! You are not allowed to perform this action.\": \"警告！您无权执行此操作。\"\n\"Success! Workflow has been updated successfully.\": \"成功！工作流程已成功更新。\"\n\"Success! Workflow has been added successfully.\": \"成功！工作流程已成功添加。\"\n\"Success! Order has been updated successfully.\": \"成功！订单已成功更新。\"\n\"Success! Workflow has been removed successfully.\": \"成功！工作流程已成功删除。\"\n\"Mailbox successfully created.\": \"邮箱已成功创建。\"\n\"Mailbox successfully updated.\": \"邮箱已成功更新。\"\n\"Warning ! Bad request !\": \"警告 ！错误的请求 ！\"\n\"Error! Given current password is incorrect.\": \"错误！给出的当前密码不正确。\"\n\"Success ! Profile update successfully.\": \"成功 ！个人资料更新成功。\"\n\"Error ! User with same email is already exist.\": \"错误 ！具有相同电子邮件的用户已经存在。\"\n\"Success ! Agent updated successfully.\": \"成功 ！接单员已成功更新。\"\n\"Success ! Agent removed successfully.\": \"成功 ！接单员已成功删除。\"\n\"Warning ! You are allowed to remove account owners account.\": \"警告 ！您可以删除帐户所有者帐户。\"\n\"Error ! Invalid user id.\": \"错误 ！无效的用户ID。\"\n\"Success ! Filter has been saved successfully.\": \"成功 ！筛选器已成功保存。\"\n\"Success ! Filter has been updated successfully.\": \"成功 ！筛选器已成功更新。\"\n\"Success ! Filter has been removed successfully.\": \"成功 ！筛选器已成功删除。\"\n\"Please check your mail for password update.\": \"请检查您的邮件以获取密码更新。\"\n\"This Email address is not registered with us.\": \"此电子邮件地址未在我处注册。\"\n\"Success ! Customer saved successfully.\": \"成功 ！客户保存成功。\"\n\"Error ! User with same email already exist.\": \"错误 ！具有相同电子邮件的用户已存在。\"\n\"Success ! Customer information updated successfully.\": \"成功 ！客户信息更新成功。\"\n\"Success ! Customer updated successfully.\": \"成功 ！客户更新成功。\"\n\"Error ! Customer with same email already exist.\": \"错误 ！使用相同电子邮件的客户已经存在。\"\n\"unstarred Action Completed successfully\": \"未加星标的动作已成功完成\"\n\"starred Action Completed successfully\": \"已加星标的动作已成功完成\"\n\"Success ! Customer removed successfully.\": \"成功 ！客户已成功删除。\"\n\"Error ! Invalid customer id.\": \"错误 ！无效的客户ID。\"\n\"Success! Template has been updated successfully.\": \"成功！模板已成功更新。\"\n\"Success! Template has been added successfully.\": \"成功！模板已成功添加。\"\n\"Success! Template has been deleted successfully.\": \"成功！模板已成功删除。\"\n\"Warning! resource not found.\": \"警告！找不到资源。\"\n\"Warning! You can not remove predefined email template which is being used in workflow(s).\": \"警告！您无法删除工作流中正在使用的预定义电子邮件模板。\"\n\"Success ! Email settings are updated successfully.\": \"成功 ！电子邮件设置已成功更新。\"\n\"Success ! Group information updated successfully.\": \"成功 ！群组信息已成功更新。\"\n\"Success ! Group information saved successfully.\": \"成功 ！群组信息已成功保存。\"\n\"Support Group removed successfully.\": \"支持群组已成功删除。\"\n\"Success ! Privilege information saved successfully.\": \"成功 ！权限信息已成功保存。\"\n\"Privilege updated successfully.\": \"权限已成功更新。\"\n\"Support Privilege removed successfully.\": \"支持权限已成功删除。\"\n\"Success! Reply has been updated successfully.\": \"成功！回复已成功更新。\"\n\"Success! Reply has been added successfully.\": \"成功！回复已成功添加。\"\n\"Success! Saved Reply has been deleted successfully\": \"成功！已保存的回复已成功删除\"\n\"SwiftMailer configuration updated successfully.\": \"快捷邮件管理器配置已成功更新。\"\n\"Swiftmailer configuration removed successfully.\": \"快捷邮件管理器配置已成功删除。\"\n\"Success ! Team information saved successfully.\": \"成功 ！团队信息已成功保存。\"\n\"Success ! Team information updated successfully.\": \"成功 ！团队信息已成功更新。\"\n\"Support Team removed successfully.\": \"支持团队已成功删除。\"\n\"Success! Reply has been added successfully\": \"成功！回复已成功添加\"\n\"Success ! Thread updated successfully.\": \"成功 ！线程更新成功。\"\n\"Error ! Reply field can not be blank.\": \"错误 ！回复字段不能为空。\"\n\"Success ! Thread removed successfully.\": \"成功 ！线程已成功删除。\"\n\"Success ! Thread locked successfully\": \"成功 ！线程已成功锁定\"\n\"Success ! Thread unlocked successfully\": \"成功 ！线程已成功解锁\"\n\"Success ! Thread pinned successfully\": \"成功 ！线程已成功固定\"\n\"Error ! Invalid thread.\": \"错误 ！无效的线程。\"\n\"Could not create ticket, invalid details.\": \"无法创建工单，无效的详细信息。\"\n\"Success ! Tag updated successfully.\": \"成功 ！标记已成功更新。\"\n\"Error ! Customer can not be added as collaborator.\": \"错误 ！无法将客户添加为协作者。\"\n\"Success ! Tag unassigned successfully.\": \"成功 ！标记取消分配成功。\"\n\"Success ! Tag added successfully.\": \"成功 ！标记添加成功。\"\n\"Please enter tag name.\": \"请输入标记名称。\"\n\"Error ! Invalid tag.\": \"错误 ！无效的标记。\"\n\"Success ! Type removed successfully.\": \"成功 ！类型已成功删除。\"\n\"Success ! Ticket to label removed successfully.\": \"成功 ！标签工单已成功删除。\"\n\"Unable to retrieve support team details\": \"无法检索支持团队的详细信息\"\n\"Ticket support group updated successfully\": \"工单支持群组已成功更新\"\n\"Unable to retrieve status details\": \"无法检索状态详细信息\"\n\"Insufficient details provided.\": \"提供的详细信息不足。\"\n\"Error! Subject field is mandatory\": \"错误！主题字段为必填项\"\n\"Error! Reply field is mandatory\": \"错误！回复字段为必填项\"\n\"Success ! Ticket has been updated successfully.\": \"成功 ！工单已成功更新。\"\n\"Success ! Label updated successfully.\": \"成功 ！标签已成功更新。\"\n\"Error ! Invalid label id.\": \"错误 ！无效的标签ID。\"\n\"Success ! Label removed successfully.\": \"成功 ！标签已成功删除。\"\n\"Success ! Label created successfully.\": \"成功 ！标签创建成功。\"\n\"Error ! Label name can not be blank.\": \"错误 ！标签名称不能为空。\"\n\"Success ! Ticket moved to trash successfully.\": \"成功 ！工单已成功移至垃圾箱。\"\n\"Success! Ticket type saved successfully.\": \"成功！工单类型已成功保存。\"\n\"Success! Ticket type updated successfully.\": \"成功！工单类型已成功更新。\"\n\"Error! Ticket type with same name already exist\": \"错误！具有相同名称的工单类型已存在\"\n\"SAVE\": \"保存\"\n\"customer page\": \"客户页面\"\n\"Howdy!\": \"你好！\"\n\n# Successfully Pop-up/Notification Messages:\n\"Ticket is already assigned to agent\" : \"工单已分配给代理\"\n\"Success ! Agent assigned successfully.\" : \"成功 ！代理分配成功.\"\n\"Ticket status is already set\" : \"工单状态已设置\"\n\"Success ! Tickets status updated successfully.\" : \"成功 ！工单状态更新成功.\"\n\"Ticket priority is already set\" : \"工单优先级已设置\"\n\"Success ! Tickets priority updated successfully.\" : \"成功 ！工单优先级更新成功.\"\n\"Ticket group is updated successfully\" : \"票组更新成功\"\n\"Ticket is already assigned to group\" : \"票已分配给组\"\n\"Success ! Tickets group updated successfully.\" : \"成功 ！门票组更新成功.\"\n\"Ticket team is updated successfully\" : \"工单团队更新成功\"\n\"Ticket is already assigned to team\" : \"工单已分配给团队\"\n\"Success ! Tickets team updated successfully.\" : \"成功 ！门票团队更新成功.\"\n\"Ticket type is already set\" : \"门票类型已设置\"\n\"Success ! Tickets type updated successfully.\" : \"成功 ！工单类型更新成功.\"\n\"Success ! Tickets label updated successfully.\" : \"成功 ！门票标签更新成功.\"\n\"Success ! Tickets added to label successfully.\" : \"成功 ！票证已成功添加到标签.\"\n\"Success ! Tickets moved to trashed successfully.\" : \"成功 ！工单已成功移至垃圾箱.\"\n\"Success ! Tickets removed successfully.\" : \"成功 ！已成功移除门票.\"\n\"Success ! Tickets restored successfully.\" : \"成功 ！门票成功恢复.\"\n\"Unable to retrieve group details\" : \"无法检索组详细信息\"\n\"Unable to retrieve team details\" : \"无法检索团队详细信息\"\n\"Tickets details have been updated successfully\": \"门票详情已成功更新\"\n\"Label added to ticket successfully\" : \"标签添加到工单成功\"\t\t\t\t\n\"Label already added to ticket\" : \"标签已添加到工单\"\n\n\"New Ticket Request\": \"请求开新工单\"\n\"Ticket Requests\": \"工单请求\"\n\"Tickets have been updated successfully\": \"工单已成功更新\"\n\"Please check your mail for password update\": \"请检查您的邮件以获取密码更新\"\n\"This email address is not registered with us\": \"此电子邮件地址未在我处注册\"\n\"You have already update password using this link if you wish to change password again click on forget password link here from login page\": \"您已经使用此链接更新了密码的话，如果您想再次更改密码，单击登录页面上的“忘记密码”链接。\"\n\"Your password has been successfully updated. Login using updated password\": \"你的密码已被成功更新。使用更新的密码登录\"\n\"Please try again, The passwords do not match\": \"请重试，密码不匹配\"\n\"Support Privilege removed successfully\": \"支持权限已成功删除\"\n\"Success! Saved Reply has been deleted successfully.\": \"成功！已保存的回复已成功删除。\"\n\"SwiftMailer configuration created successfully.\": \"快捷邮件管理器配置成功创建。\"\n\"No swiftmailer configurations found for mailer id\": \"找不到为此邮件发件人ID的快捷邮件管理器配置\"\n\"Reply content cannot be left blank.\": \"回复内容不能为空。\"\n\"Reply added to the ticket and forwarded successfully.\": \"已将回复添加到工单并成功转发。\"\n\"Success ! Thread pinned successfully.\": \"成功 ！线程已成功固定。\"\n\"Success ! unpinned removed successfully.\": \"成功 ！取消固定已成功删除。\"\n\"Unable to retrieve priority details\": \"无法检索优先级详细信息\"\n\"Ticket support team updated successfully\": \"工单支持团队已成功更新\"\n\"Ticket assigned to support group \": \"工单已分配给支持群组\"\n\"Mailbox configuration removed successfully.\": \"邮箱配置已成功删除。\"\n\"visit our website\": \"访问我们的网站\"\n\"HELP\": \"帮助\"\n\"Home\": \"主页\"\n\"Prev\": \"上一个\"\n\"Ticket query message\": \"工单查询消息\"\n\"Select type\": \"选择类型\"\n\"Search KnowledgeBase\": \"搜索知识库\"\n\"You cant merge an account with itself.\": \"您无法将帐户与其自身合并。\"\n\"Edit Profile\": \"编辑个人资料\"\n\"Customer Login\": \"客户登入\"\n\"Contact Us\": \"联系我们（开新工单）\"\n\"If you have ever contacted our support previously, your account would have already been created.\": \"如果您以前在我们的支持中心联系过，那么您的帐户则已经被创建。\"\n\"support\": \"支持\"\n\"HelpDesk\": \"服务台\"\n\"Enter search keyword\": \"输入搜索关键字\"\n\"Browse via Folders\": \"通过文件夹浏览\"\n\"Looking for something that is queried generally? Choose a relevant folder from below to explore possible solutions\": \"寻找一般查询的内容？从下面选择一个相关的文件夹以探索可能的解决方案\"\n\"Unable to find an answer?\": \"找不到答案？\"\n\"Looking for anything specific article which resides in general queries? Just browse the various relevant folders and categories and then you will find the desired article.\": \"寻找常规查询中包含的任何特定文章？只需浏览各种相关的文件夹和类别，即可找到所需的文章。\"\n\"Popular Articles\": \"热门文章\"\n\"Here are some of the most popular articles, which helped number of users to get their queries and questions resolved.\": \"以下是一些最受欢迎的文章，它们帮助许多用户解决了他们的查询和问题。\"\n\"Browse via Categories\": \"通过分类浏览\"\n\"Looking for something specific? Choose a relevant category from below to explore possible solutions\": \"寻找特定的东西吗？从下面选择一个相关类别以探索可能的解决方案\"\n\"No Categories Found!\": \"找不到分类！\"\n\"Powered by\": \"技术动力提供\"\n\"Powered by %uvdesk%, an open-source project by %webkul%.\": \"由 %uvdesk% 提供支援，%webkul% 的開源專案。\"\n\n#forgotpassword: \"＃忘记密码\"\n\"Forgot Password\": \"忘记密码\"\n\"Enter your email address and we will send you an email with instructions to update your login credentials.\": \"输入您的电子邮件地址，我们将向您发送一封电子邮件，其中包含更新登录凭据的说明。\"\n\"Send Mail\": \"发送邮件\"\n\"Sign In to %websitename%\": \"登录 %websitename%\"\n\"Enter your name\": \"输入你的名字\"\n\"Enter your email\": \"输入你的电子邮箱\"\n\"Learn more about %deliveryStatus%.\": \"了解有关%deliveryStatus%的更多信息\"\n\"Some of our site pages utilize %cookies% and other tracking technologies. A %cookie% is a small text file that may be used, for example, to collect information about site activity. Some cookies and other technologies may serve to recall personal information previously indicated by a site user. You may block cookies, or delete existing cookies, by adjusting the appropriate setting on your browser. Please consult the %help% menu of your browser to learn how to do this. If you block or delete %cookies% you may find the usefulness of our site to be impaired.\": \"我们的一些网站页面使用 %cookies% 和其他跟踪技术。 %cookie% 是一个小文本文件，例如，可用于收集有关站点活动的信息。某些  和其他技术可能会用于调用网站用户先前指示的个人信息。您可以通过调整浏览器上的适当设置来阻止 或删除现有 请查阅浏览器的 %help% 菜单以了解如何执行此操作。如果您阻止或删除 %cookies%，您可能会发现我们网站的实用性受到损害\"\n\"To know more about how our privacy policy works, please %websiteLink%.\": \"要了解有关我们的隐私政策如何运作的更多信息，请 %websiteLink%\"\n\"Cookie Usage Policy\": \"曲奇饼 使用政策\"\n\"Cookie Policy\": \"曲奇饼 政策\"\n\"cookie\": \"曲奇饼\"\n\"cookies\": \"曲奇饼\"\n\"This field contain maximum 40 charectures.\": \"该字段最多包含40个字符。\"\n\"This field contain maximum 50 charectures.\": \"该字段最多包含50个字符。\"\n\"#misc\": \"#杂项\"\n\"Time\": \"时间\"\n\"Links\": \"链接\"\n\"Broadcast Message\": \"广播消息\"\n\"Wide Logo\": \"宽幅徽标\"\n\"Upload an Image (200px x 48px) in</br> PNG or JPG Format\": \"上载PNG或JPG格式的图片 (200px x 48px)\"\n\"It will be shown as Logo on Knowledgebase and Helpdesk\": \"它将在知识库和服务台上显示为徽标\"\n\"Website Status\": \"网站状态\"\n\"Enable front end website and knowledgebase for customer(s)\": \"为客户启用前端网站和知识库\"\n\"Brand Color\": \"品牌颜色\"\n\"Page Background Color\": \"页面背景色\"\n\"Header Background Color\": \"标头背景色\"\n\"Banner Background Color\": \"横幅背景色\"\n\"Page Link Color\": \"页面链接颜色\"\n\"Page Link Hover Color\": \"页面链接悬停颜色\"\n\"Article Text Color\": \"文章文字颜色\"\n\"Tag Line\": \"标记行\"\n\"Hi! how can we help?\": \"你好！我们能帮你什么吗？\"\n\"Layout\": \"布局\"\n\"Ticket Create Option\": \"工单创建选项\"\n\"Login Required To Create Tickets\": \"必须先登录才能创建工单\"\n\"Remove Customer Login/Signin Button\": \"删除客户登录/签入按钮\"\n\"Disable Customer Login\": \"禁用客户登录\"\n\"Meta Description (Recommended)\": \"元描述（推荐）\"\n\"Meta Keywords (Recommended)\": \"元关键字（推荐）\"\n\"Header Link\": \"标题链接\"\n\"URL (with http\": \"网址 (带http\"\n\"Footer Link\": \"页脚链接\"\n\"Custom CSS (Optional)\": \"自定义CSS (可选)\"\n\"It will be add to the frontend knowledgebase only\": \"仅将其添加到前端知识库中\"\n\"Custom Javascript (Optional)\": \"自定义Javascript (可选)\"\n\"Broadcast message content to show on helpdesk\": \"广播消息内容将显示在服务台上\"\n\"From\": \"从\"\n\"Time duration between which message will be displayed(if applicable)\": \"显示消息的持续时间（如果适用）\"\n\"Broadcasting Status\": \"广播状态\"\n\"Broadcasting is Active\": \"广播处于活动状态\"\n\"Choose a default company timezone\": \"选择默认的公司时区\"\n\"Date Time Format\": \"日期时间格式\"\n\"Choose a format to convert date to specified date time format\": \"选择一种格式以将日期转换为指定的日期时间格式\"\n\"An empty file is not allowed.\": \"不允许为空文件。\"\n\"File size must not be greater than 200KB !!\": \"文件大小不能大于200KB!\"\n\"Please upload valid Image file (Only JPEG, JPG, PNG allowed)!!\": \"请上传有效的图片文件 (仅允许JPEG, JPG, PNG)!\"\n\"Provide a valid url(with protocol)\": \"提供有效的网址（带有协议）\"\n\"ticket.message.placeHolders.info\": \"ticket.message.placeHolders.info\"\n\"ticket.attachments.placeHolders.info\": \"ticket.attachments.placeHolders.info\"\n\"ticket.threadMessage.placeHolders.info\": \"ticket.threadMessage.placeHolders.info\"\n\"ticket.tags.placeHolders.info\": \"ticket.tags.placeHolders.info\"\n\"ticket.source.placeHolders.info\": \"ticket.source.placeHolders.info\"\n\"ticket.collaborator.name.placeHolders.info\": \"ticket.collaborator.name.placeHolders.info\"\n\"ticket.collaborator.email.placeHolders.info\": \"ticket.collaborator.email.placeHolders.info\"\n\"user.name.info\": \"user.name.info\"\n\"user.email.info\": \"user.email.info\"\n\"user.account.validate.link.info\": \"user.account.validate.link.info\"\n\"user.password.forgot.link.info\": \"user.password.forgot.link.info\"\n\"global.companyName\": \"global.companyName\"\n\"global.companyLogo\": \"global.companyLogo\"\n\"global.companyUrl\": \"global.companyUrl\"\n\"ticket.priority.placeHolders.info\": \"ticket.priority.placeHolders.info\"\n\"ticket.group.placeHolders.info\": \"ticket.group.placeHolders.info\"\n\"ticket.team.placeHolders.info\": \"ticket.team.placeHolders.info\"\n\"ticket.customerName.placeHolders.info\": \"ticket.customerName.placeHolders.info\"\n\"ticket.customerEmail.placeHolders.info\": \"ticket.customerEmail.placeHolders.info\"\n\"ticket.agentName.placeHolders.info\": \"ticket.agentName.placeHolders.info\"\n\"ticket.agentEmail.placeHolders.info\": \"ticket.agentEmail.placeHolders.info\"\n\"ticket.link.placeHolders.info\": \"ticket.link.placeHolders.info\"\n\"ticket.id.placeHolders.info\": \"ticket.id.placeHolders.info\"\n\"ticket.subject.placeHolders.info\": \"ticket.subject.placeHolders.info\"\n\"ticket.status.placeHolders.info\": \"ticket.status.placeHolders.info\"\n'comma \",\" separated': \"逗号分隔\"\n\"Low\": \"低\"\n\"Medium\": \"中等\"\n\"High\": \"高\"\n\"Urgent\": \"紧迫\"\n\"Reset Password\": \"重设密码\"\n\"Enter your new password below to update your login credentials\": \"在下面输入您的新密码以更新您的登录凭据\"\n\"Save Password\": \"保存密码\"\n\"Rate Support\": \"速率支持\"\n\"I am very Sad\": \"我很难过\"\n\"I am Sad\": \"我很伤心\"\n\"I am Neutral\": \"我是中立的\"\n\"I am Happy\": \"我很开心\"\n\"I am Very Happy\": \"我很高兴\"\n\"Kudos\": \"点赞\"\n\"kudos\": \"点赞\"\n\"Very Sad\": \"很伤心\"\n\"Sad\": \"伤心\"\n\"Neutral\": \"中性的\"\n\"Happy\": \"快乐的\"\n\"Very Happy\": \"很高兴\"\n\"Star(s)\": \"星星\"\n\"Warning ! Swiftmailer not working. An error has occurred while sending emails!\" : \"警告 ！ Swiftmailer 不工作。發送電子郵件時發生錯誤！\"\n\"Invalid credentials.\": \"无效证件\"\n\"Success ! Project cache cleared successfully.\": \"成功 ！项目缓存已成功清除。\"\n\"clear cache\": \"清除缓存\"\n\"Last Updated\": \"最近更新时间\"\n\"Error! Something went wrong.\": \"错误！出了些问题。\"\n\"We were not able to find the page you are looking for.\": \"我们无法找到您要查找的页面。\"\n\"Page not found\": \"找不到网页\"\n\"Forbidden\": \"禁止的\"\n\"You don’t have the necessary permissions to access this Web page :(\": \"您没有访问此网页的必要权限 :(\"\n\"Internal server error\": \"内部服务器错误\"\n\"Our system has goofed up for a while, but good part is it won't last long\": \"我们的系统已经有一段时间了，但好的部分是它不会持续很长时间\"\n\"Unknown Error\": \"未知错误\"\n\"We are quite confused about how did you land here:/\": \"我们很困惑你是怎么在这里着陆的 :/\"\n\"Few of the links which may help you to get back on the track -\": \"很少有链接可以帮助您重回正轨 -\"\n\n#Microsoft apps:\n\"Microsoft Apps\": \"微软应用程序\"\n\"Add a Microsoft app\": \"添加 Microsoft 应用\"\n\"Enable\": \"启用\"\n\"App Name\": \"应用名称\"\n\"Tenant Id\": \"租户编号\"\n\"Client Id\": \"客户编号\"\n\"Client Secret\": \"客户秘密\"\n\"NEW APP:\": \"新应用\"\n\"UPDATE APP\": \"更新应用程序\"\n\"Guide on creating a new app in Azure Active Directory:\": \"在 Azure Active Directory 中创建新应用的指南:\"\n\"To add a new Microsoft App to your azure active directory, follow the steps as given below:\": \"要将新的 Microsoft 应用程序添加到您的 Azure 活动目录，请按照以下步骤操作：\"\n\"Go to Azure Active Directory -> App registerations\": \"转到 Azure Active Directory -> 应用程序注册\"\n\"Disable\": \"停用\"\n\"Please enter a valid name for your app.\": \"请为您的应用输入一个有效的名称。\"\n\"Please enter a valid tenant id.\": \"请输入有效的租户 ID\"\n\"Please enter a valid client id.\": \"请输入有效的客户 ID。\"\n\"Please enter a valid client secret.\": \"请输入有效的客户端密码\"\n\"Microsoft app settings\": \"微软应用设置\"\n\"Unverified\": \"未验证\"\n\"Microsoft app has been updated successfully.\": \"Microsoft 应用已成功更新。\"\n\"No microsoft apps found\": \"未找到 Microsoft 应用\"\n\"Microsoft app settings could not be verifired successfully. Please check your settings and try again later.\": \"无法成功验证 Microsoft 应用程序设置。请检查您的设置，稍后再试.\"\n\"Microsoft app has been integrated successfully.\": \"Microsoft 应用程序已成功删除.\"\n\"Microsoft app has been deleted successfully.\": \"Microsoft 应用程序已成功集成.\"\n\"Verified\": \"已验证\"\n\n\"Create a New Registration\": \"创建新注册\"\n\"Enter your app details as following:\": \"输入您的应用程序详细信息如下:\"\n\"App Name: Enter an app name to easily help you identify its purpose\": \"应用名称：输入应用名称以轻松帮助您识别其用途\"\n\"Supported Account Types: Select whichever option works the best for you (Recommended: Accounts in any organizational directory and personal Microsoft accounts)\": \"支持的帐户类型：选择最适合您的选项（推荐：任何组织目录中的帐户和个人 Microsoft 帐户\"\n\"Redirect URI:\": \"重定向 URI：\"\n\"Select Platform: Web\": \"选择平台：Web\"\n\"Enter the following redirect uri:\": \"输入以下重定向 uri:\"\n\"Proceed to create your application\": \"继续创建您的应用程序\"\n\"Once your app has been created, in your app overview section, continue with adding a client credential by clicking on \\\"Add a certificate or secret\\\"\": \"创建您的应用程序后，在您的应用程序概述部分，通过单击“添加证书或机密”继续添加客户端凭据\"\n\"Create a new client secret\": \"创建一个新的客户端密码\"\n\"Enter a description as per your preference to help identify the purpose of this client secret\": \"根据您的喜好输入描述，以帮助识别此客户端密码的用途\"\n\"Choose an expiration time as per your preference\": \"根据您的喜好选择到期时间\"\n\"Proceed to add your client secret\": \"继续添加您的客户密码\"\n\"Copy the client secret value which will be needed later and cannot be viewed again\": \"复制client secret值，以后需要用到，不能再次查看\"\n\"Navigate to API permissions\": \"导航到 API 权限\"\n\"Click on \\\"Add a permission\\\" to add a new api permission. Add the following delegated permissions by selecting Microsoft APIs > Microsoft Graph > Delegate Permissions\": \"单击 添加权限 以添加新的 api 权限。通过选择 Microsoft APIs > Microsoft Graph > Delegate Permissions 添加以下委派权限\"\n\"Navigate to your app overview section\": \"导航到您的应用概述部分\"\n\"Copy the Application (Client) Id\": \"复制应用程序（客户端）ID\"\n\"Copy the Directory (Tenant) Id\": \"复制目录（租户）ID\"\n\"Enter your client id, tenant id, and client secret in settings above as required.\": \"根据需要在上面的设置中输入您的客户端 ID、租户 ID 和客户端密码.\"\n\"offline_access\": \"离线访问\"\n\"openid\": \"openid\"\n\"profile\": \"轮廓\"\n\"User.Read\": \"用户.读取\"\n\"IMAP.AccessAsUser.All\": \"IMAP.AccessAsUser.All\"\n\"SMTP.Send\": \"SMTP.发送\"\n\"POP.AccessAsUser.All\": \"POP.AccessAsUser.All\"\n\"Mail.Read\": \"邮件.阅读\"\n\"Mail.ReadBasic\": \"Mail.ReadBasic\"\n\"Mail.Send\": \"邮件.发送\"\n\"Mail.Send.Shared\": \"邮件.发送.共享\"\n\"Add App\": \"添加应用\"\n\"New App\": \"新应用\"\n\n#Mailbox option:\n\"Disable email delivery\": \"禁用电子邮件发送\"\n\"Use as default mailbox for sending emails\": \"用作发送电子邮件的默认邮箱\"\n\"Inbound Emails\": \"入站电子邮件\"\n\"Manage how you wish to retrieve and process emails from your mailbox.\": \"管理您希望如何从邮箱中检索和处理电子邮件.\"\n\"Outbound Emails\": \"出站电子邮件\"\n\"Manage how you wish to send emails from your mailbox.\": \"管理您希望如何从邮箱发送电子邮件.\"\n\n\"Marketing Modules\" : \"行銷模組\"\n\"New Marketing Module\": \"新的行銷模組\"\n\"Marketing Module\": \"行銷模組\""
  }
]