diff --git a/app/Condition.php b/app/Condition.php index 078c93de2768..7e1a1444439a 100644 --- a/app/Condition.php +++ b/app/Condition.php @@ -54,6 +54,7 @@ class Condition 'next60days' => ['label' => 'LBL_NEXT_60_DAYS'], 'next90days' => ['label' => 'LBL_NEXT_90_DAYS'], 'next120days' => ['label' => 'LBL_NEXT_120_DAYS'], + 'moreThanDaysAgo' => ['label' => 'LBL_DATE_CONDITION_MORE_THAN_DAYS_AGO'], ]; /** * Supported advanced filter operations. diff --git a/app/Conditions/QueryFields/DateField.php b/app/Conditions/QueryFields/DateField.php index 66cddb58bca7..95942dcd59e9 100644 --- a/app/Conditions/QueryFields/DateField.php +++ b/app/Conditions/QueryFields/DateField.php @@ -169,4 +169,14 @@ public function operatorSmallerthannow() { return ['<', $this->getColumnName(), date('Y-m-d')]; } + + /** + * MoreThanDaysAgo operator. + * + * @return bool + */ + public function operatorMoreThanDaysAgo() + { + return ['<=', $this->getColumnName(), date('Y-m-d', strtotime('-' . $this->getValue() . ' days'))]; + } } diff --git a/app/Conditions/RecordFields/BaseField.php b/app/Conditions/RecordFields/BaseField.php index 8dc780f4758f..42a9016f5f62 100644 --- a/app/Conditions/RecordFields/BaseField.php +++ b/app/Conditions/RecordFields/BaseField.php @@ -87,13 +87,13 @@ public function check() } /** - * Get value. + * Get value from record. * * @return mixed */ public function getValue() { - return $this->recordModel->get($this->fieldModel->getFieldName()); + return $this->recordModel->get($this->fieldModel->getName()); } /** diff --git a/app/Conditions/RecordFields/DateField.php b/app/Conditions/RecordFields/DateField.php index f8302db3855e..60870af7d262 100644 --- a/app/Conditions/RecordFields/DateField.php +++ b/app/Conditions/RecordFields/DateField.php @@ -365,4 +365,14 @@ public function operatorNext120days() $dateValue = date('Y-m-d', strtotime($this->getValue())); return ($dateValue >= $today) && ($dateValue <= date('Y-m-d', strtotime($today . '+119 day'))); } + + /** + * MoreThanDaysAgo operator. + * + * @return bool + */ + public function operatorMoreThanDaysAgo() + { + return $this->getValue() <= date('Y-m-d', strtotime('-' . $this->value . ' days')); + } } diff --git a/app/Controller/Components/View/MailMessageAnalysisModal.php b/app/Controller/Components/View/MailMessageAnalysisModal.php index d5bf8005659d..9b2604837829 100644 --- a/app/Controller/Components/View/MailMessageAnalysisModal.php +++ b/app/Controller/Components/View/MailMessageAnalysisModal.php @@ -52,6 +52,10 @@ public function checkPermission(\App\Request $request) if (!\Users_Privileges_Model::getCurrentUserPrivilegesModel()->hasModulePermission('OSSMail')) { throw new \App\Exceptions\NoPermitted('LBL_PERMISSION_DENIED', 406); } + } elseif ($request->has('header') && $request->has('body') && $request->has('sourceModule') && $request->has('sourceRecord')) { + if (!\App\Privilege::isPermitted($request->getByType('sourceModule', 'Alnum'), 'DetailView', $request->getInteger('sourceRecord'))) { + throw new \App\Exceptions\NoPermittedToRecord('ERR_NO_PERMISSIONS_FOR_THE_RECORD', 406); + } } else { throw new \App\Exceptions\AppException('ERR_NO_CONTENT', 406); } diff --git a/app/Integrations/Dav/Calendar.php b/app/Integrations/Dav/Calendar.php index 25ab39a022f5..5f37bfabafc2 100644 --- a/app/Integrations/Dav/Calendar.php +++ b/app/Integrations/Dav/Calendar.php @@ -46,6 +46,14 @@ class Calendar * @var bool */ private $createdTimeZone = false; + /** + * Custom values. + * + * @var string[] + */ + protected static $customValues = [ + 'X-MICROSOFT-SKYPETEAMSMEETINGURL' => 'meeting_url' + ]; /** * Delete calendar event by crm id. @@ -248,6 +256,7 @@ private function parseComponent() $this->parseState(); $this->parseType(); $this->parseDateTime(); + $this->parseCustomValues(); } /** @@ -281,7 +290,7 @@ private function parseStatus() $values = [ 'TENTATIVE' => 'PLL_PLANNED', 'CANCELLED' => 'PLL_CANCELLED', - 'CONFIRMED' => 'PLL_COMPLETED', + 'CONFIRMED' => 'PLL_PLANNED', ]; } else { $values = [ @@ -426,6 +435,20 @@ private function parseDateTime() $this->record->set('time_end', $timeEnd); } + /** + * Parse parse custom values. + * + * @return void + */ + private function parseCustomValues(): void + { + foreach (self::$customValues as $key => $fieldName) { + if (isset($this->vcomponent->{$key})) { + $this->record->set($fieldName, (string) $this->vcomponent->{$key}); + } + } + } + /** * Create calendar entry component. * diff --git a/app/Integrations/Dav/Card.php b/app/Integrations/Dav/Card.php index 1823c427b255..e57a1baf7e07 100644 --- a/app/Integrations/Dav/Card.php +++ b/app/Integrations/Dav/Card.php @@ -187,7 +187,11 @@ public static function getAddressBook(int $id) public function setValuesForRecord(\Vtiger_Record_Model $record) { $this->record = $record; - $head = $this->vcard->N->getParts(); + if (isset($this->vcard->N)) { + $head = $this->vcard->N->getParts(); + } elseif (isset($this->vcard->FN)) { + $head = $this->vcard->FN->getParts(); + } $moduleName = $record->getModuleName(); if ('Contacts' === $moduleName) { if (isset($head[1]) && ($fieldModel = $record->getField('firstname'))) { diff --git a/app/Log.php b/app/Log.php index 15a32a5b69aa..ac7ec445cff6 100644 --- a/app/Log.php +++ b/app/Log.php @@ -86,7 +86,7 @@ class Log extends Logger 'icon' => 'fas fa-swatchbook', 'columns' => [ 'date' => ['type' => 'DateTime', 'label' => 'LBL_TIME'], - 'method' => ['type' => 'Text', 'label' => 'LBL_METHOD'], + 'method' => ['type' => 'Text', 'label' => 'LBL_BATCH_NAME'], 'message' => ['type' => 'Text', 'label' => 'LBL_ERROR_MASAGE'], 'userid' => ['type' => 'Owner', 'label' => 'LBL_OWNER'], 'params' => ['type' => 'Text', 'label' => 'LBL_PARAMS'], diff --git a/app/Mail/Rbl.php b/app/Mail/Rbl.php index e2042f43b132..c75192575e33 100644 --- a/app/Mail/Rbl.php +++ b/app/Mail/Rbl.php @@ -43,10 +43,37 @@ class Rbl extends \App\Base * @var array */ public const LIST_TYPES = [ - 0 => ['label' => 'LBL_BLACK_LIST', 'icon' => 'fas fa-ban text-danger', 'color' => '#eaeaea'], - 1 => ['label' => 'LBL_WHITE_LIST', 'icon' => 'far fa-check-circle text-success', 'color' => '#E1FFE3'], - 2 => ['label' => 'LBL_PUBLIC_BLACK_LIST', 'icon' => 'fas fa-ban text-danger', 'color' => '#eaeaea'], - 3 => ['label' => 'LBL_PUBLIC_WHITE_LIST', 'icon' => 'far fa-check-circle text-success', 'color' => '#E1FFE3'], + 0 => ['label' => 'LBL_BLACK_LIST', 'icon' => 'fas fa-ban text-danger', 'alertColor' => '#ff555233', 'listColor' => '#ff555233'], + 1 => ['label' => 'LBL_WHITE_LIST', 'icon' => 'far fa-check-circle text-success', 'alertColor' => '#E1FFE3', 'listColor' => '#fff'], + 2 => ['label' => 'LBL_PUBLIC_BLACK_LIST', 'icon' => 'fas fa-ban text-danger', 'alertColor' => '#eaeaea', 'listColor' => '#ff555233'], + 3 => ['label' => 'LBL_PUBLIC_WHITE_LIST', 'icon' => 'far fa-check-circle text-success', 'alertColor' => '#E1FFE3', 'listColor' => '#fff'], + ]; + /** + * List categories. + * + * @var array + */ + public const LIST_CATEGORIES = [ + 'Black' => [ + '[SPAM] Single unwanted message' => 'LBL_SPAM_SINGLE_UNWANTED_MESSAGE', + '[SPAM] Mass unwanted message' => 'LBL_SPAM_MASS_UNWANTED_MESSAGE', + '[SPAM] Sending an unsolicited message repeatedly' => 'LBL_SPAM_SENDING_UNSOLICITED_MESSAGE_REPEATEDLY', + '[Fraud] Money scam' => 'LBL_FRAUD_MONEY_SCAM', + '[Fraud] Phishing' => 'LBL_FRAUD_PHISHING', + '[Fraud] An attempt to persuade people to buy a product or service' => 'LBL_FRAUD_ATTEMPT_TO_PERSUADE_PEOPLE_TO_BUY', + '[Security] An attempt to impersonate another person' => 'LBL_SECURITY_ATTEMPT_TO_IMPERSONATE_ANOTHER_PERSON', + '[Security] An attempt to persuade the recipient to open a resource from outside the organization' => 'LBL_SECURITY_ATTEMPT_TO_PERSUADE_FROM_ORGANIZATION', + '[Security] An attempt to persuade the recipient to open a resource inside the organization' => 'LBL_SECURITY_ATTEMPT_TO_PERSUADE_INSIDE_ORGANIZATION', + '[Security] Infrastructure and application scanning' => 'LBL_SECURITY_INFRASTRUCTURE_AND_APPLICATION_SCANNING', + '[Security] Attack on infrastructure or application' => 'LBL_SECURITY_ATTACK_INFRASTRUCTURE_OR_APPLICATION', + '[Security] Overloading infrastructure or application' => 'LBL_SECURITY_OVERLOADING_INFRASTRUCTURE_OR_APPLICATION', + '[Other] The message contains inappropriate words' => 'LBL_OTHER_MESSAGE_CONTAINS_INAPPROPRIATE_WORDS', + '[Other] The message contains inappropriate materials' => 'LBL_OTHER_MESSAGE_CONTAINS_INAPPROPRIATE_MATERIALS', + '[Other] Malicious message' => 'LBL_OTHER_MALICIOUS_MESSAGE' + ], + 'White' => [ + '[Whitelist] Trusted sender' => 'LBL_TRUSTED_SENDER' + ] ]; /** * RLB black list type. @@ -281,12 +308,15 @@ public function getSender(): array $fromDomain = $this->getDomain($received->getFromName()); $byDomain = $this->getDomain($received->getByName()); if (!($fromIp = $received->getFromAddress())) { - $fromIp = $this->getIp($received->getFromName()); + if (!($fromIp = $this->findIpByName($received->getValueFor('from')))) { + $fromIp = $this->getIpByName($received->getFromName(), $received->getFromHostname()); + } } if (!($byIp = $received->getByAddress())) { - $byIp = $this->getIp($received->getByName()); + if (!($byIp = $this->findIpByName($received->getValueFor('by')))) { + $byIp = $this->getIpByName($received->getByName(), $received->getByHostname()); + } } - if ($fromIp !== $byIp && ((!$fromDomain && !$byDomain) || $fromDomain !== $byDomain)) { $row['ip'] = $fromIp; $row['key'] = $key; @@ -339,21 +369,49 @@ public function getDomain(string $url): string } /** - * Get mail ip address. + * Find mail ip address. * - * @param string $url + * @param string $value * * @return string */ - public function getIp(string $url): string + public function findIpByName(string $value): string { - if (']' === substr($url, -1) || '[' === substr($url, 0, 1)) { - $url = rtrim(ltrim($url, '['), ']'); + $pattern = '~\[(IPv[64])?([a-f\d\.\:]+)\]~i'; + if (preg_match($pattern, $value, $matches)) { + if (!empty($matches[2])) { + return $matches[2]; + } } - if (filter_var($url, FILTER_VALIDATE_IP)) { - return $url; + return ''; + } + + /** + * Get mail ip address by hostname or ehloName. + * + * @param string $fromName + * @param ?string $hostName + * + * @return string + */ + public function getIpByName(string $fromName, ?string $hostName = null): string + { + if (']' === substr($fromName, -1) || '[' === substr($fromName, 0, 1)) { + $fromName = rtrim(ltrim($fromName, '['), ']'); + } + if (filter_var($fromName, FILTER_VALIDATE_IP)) { + return $fromName; + } + if (0 === stripos($hostName, 'helo=')) { + $hostName = substr($hostName, 5); + if ($ip = \App\RequestUtil::getIpByName($hostName)) { + return $ip; + } + } + if ($ip = \App\RequestUtil::getIpByName($fromName)) { + return $ip; } - return filter_var(gethostbyname($url), FILTER_VALIDATE_IP); + return ''; } /** @@ -392,9 +450,10 @@ public function verifySender(): array if (0 === stripos($returnPath, 'SRS')) { $separator = substr($returnPath, 4, 1); $parts = explode($separator, $returnPath); - if (isset($parts[4])) { - $mail = explode('@', $parts[4]); - $returnPathSrs = "{$mail[0]}@{$parts[3]}"; + $mail = explode('@', array_pop($parts)); + if (isset($mail[1])) { + $last = array_pop($parts); + $returnPathSrs = "{$mail[0]}@{$last}"; } $status = $from === $returnPathSrs; } else { @@ -667,7 +726,7 @@ public static function getColorByList(string $ip, array $rows): string $color = ''; foreach ($rows as $row) { if (1 !== (int) $row['status']) { - $color = self::LIST_TYPES[$row['type']]['color']; + $color = self::LIST_TYPES[$row['type']]['listColor']; break; } } diff --git a/app/RequestUtil.php b/app/RequestUtil.php index 6a4b7121baf2..2d2e745f8b34 100644 --- a/app/RequestUtil.php +++ b/app/RequestUtil.php @@ -167,4 +167,26 @@ public static function isHttps(): bool } return self::$httpsCache; } + + /** + * Get the IP address corresponding to a given Internet host name. + * + * @param string $name + * + * @return string + */ + public static function getIpByName(string $name): string + { + if (!self::isNetConnection()) { + return false; + } + if (\App\Cache::has(__METHOD__, $name)) { + return \App\Cache::get(__METHOD__, $name); + } + $ip = gethostbyname($name); + if ($ip === $name) { + $ip = ''; + } + return \App\Cache::save(__METHOD__, $name, $ip); + } } diff --git a/app/Session/Base.php b/app/Session/Base.php index a67aa343da7c..980781ad33e3 100644 --- a/app/Session/Base.php +++ b/app/Session/Base.php @@ -32,7 +32,7 @@ public function __construct(string $name = 'YTSID') return; } $cookie = session_get_cookie_params(); - $cookie['lifetime'] = \Config\Security::$maxLifetimeSession; + $cookie['lifetime'] = \Config\Security::$maxLifetimeSessionCookie ?? 0; $cookie['secure'] = \App\RequestUtil::isHttps(); $cookie['domain'] = $_SERVER['HTTP_HOST'] ?? ''; if (isset(\Config\Security::$cookieForceHttpOnly)) { diff --git a/app/Session/File.php b/app/Session/File.php index 92f20edf5935..5a99a5cc8117 100644 --- a/app/Session/File.php +++ b/app/Session/File.php @@ -21,11 +21,11 @@ public static function clean() foreach (new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator(\App\Session::SESSION_PATH, \RecursiveDirectoryIterator::SKIP_DOTS), \RecursiveIteratorIterator::SELF_FIRST) as $item) { if ($item->isFile() && !\in_array($item->getBasename(), $exclusion)) { $sessionData = static::unserialize(file_get_contents($item->getPathname())); - if (!empty($sessionData['last_activity']) && $time - $sessionData['last_activity'] < $lifeTime) { + if (!empty($sessionData['last_activity']) && ($time - $sessionData['last_activity']) < $lifeTime) { continue; } unlink($item->getPathname()); - if (!empty($sessionData['authenticated_user_id'])) { + if (!empty($sessionData['baseUserId']) || !empty($sessionData['authenticated_user_id'])) { $userId = empty($sessionData['baseUserId']) ? $sessionData['authenticated_user_id'] : $sessionData['baseUserId']; $userName = \App\User::getUserModel($userId)->getDetail('user_name'); if (!empty($userName)) { diff --git a/app/Utils/ConfReport.php b/app/Utils/ConfReport.php index 9aa01267a354..c78c3a637686 100644 --- a/app/Utils/ConfReport.php +++ b/app/Utils/ConfReport.php @@ -636,9 +636,6 @@ public static function getCronVariables(string $type) private static function getRequest() { $requestUrl = static::$crmUrl; - if (!IS_PUBLIC_DIR) { - $requestUrl .= 'public_html/'; - } $request = []; try { foreach (static::$urlsToCheck as $type => $url) { diff --git a/app/Version.php b/app/Version.php index cc27c8fca5fb..07005b150e89 100644 --- a/app/Version.php +++ b/app/Version.php @@ -20,17 +20,30 @@ class Version * * @return string */ - public static function get($type = 'appVersion') + public static function get($type = 'appVersion'): string { static::init(); - return static::$versions[$type]; } + /** + * Get current short version of system. + * + * @param string $type + * + * @return string + */ + public static function getShort($type = 'appVersion'): string + { + $fullVer = \explode('.', self::get($type)); + array_pop($fullVer); + return \implode('.', $fullVer); + } + /** * Function to load versions. */ - private static function init() + private static function init(): void { if (false === static::$versions) { static::$versions = require 'config/version.php'; diff --git a/app_data/icons.php b/app_data/icons.php index 2a95923be980..780956e109a9 100644 --- a/app_data/icons.php +++ b/app_data/icons.php @@ -1,7 +1,7 @@ [ - 'PermissionInspector', 'MailIntegration', 'Faq', 'Locations', 'ApprovalsRegister', 'Occurrences', 'Announcements', 'ModTracker', 'Users', 'AuditRegister', 'ActivityRegister', 'Import', 'Password', 'Dashboard', 'MultiCompany', 'ApiAddress', 'LocationRegister', 'DataSetRegister', 'IncidentRegister', 'OpenStreetMap', 'Chat', 'OSSMailScanner', 'SCalculations', 'ProjectMilestones', 'NewOrders', 'TeamWork', 'Bookkeeping', 'OSSEmployees', 'Faktury', 'CInternalTickets', 'CMileageLogbook', 'FCorectingInvoice', 'FInvoiceCost', 'CFixedAssets', 'Announcement', 'SVendorEnquiries', 'ISTDN', 'IGRNC', 'IGDNC', 'ISTRN', 'ISTN', 'Notification', 'MeetingCards_old', 'IPreOrder', 'IStorages', 'IGDN', 'IGIN', 'IGRN', 'IIDN', 'KnowledgeBase', 'ShoppingCart', 'Target', 'Plane', 'WithoutOwnersAccounts', 'VendorsAccounts', 'CompanyAccounts', 'ShutdownAccounts', 'MyAccounts', 'UnassignedAccounts', 'AllAccounts', 'RecycleBin', 'FInvoice', 'Faktury_old', 'FInvoiceProforma', 'ModComments', 'FBookkeeping', 'Events', 'Activity', 'Marketing', 'SRecurringOrders', 'Competition', 'Accounts', 'CompaniesAndContact', 'HolidaysEntitlement', 'Assets', 'SCalculations_old', 'Calendar', 'CallHistory', 'Campaigns', 'Contacts', 'OSSMailView', 'Database', 'Documents', 'OSSEmployees_old', 'Home', 'HumanResources', 'Ideas', 'Leads', 'LettersIn', 'LettersOut', 'PBXManager', 'OSSMailTemplates', 'EmailTemplates', 'OSSMail', 'SSalesProcesses', 'Portal', 'OutsourcedProducts', 'OSSOutsourcedServices', 'Partners', 'OSSPasswords', 'PaymentsIn', 'PaymentsOut', 'PriceBooks', 'Products', 'ProjectMilestone', 'Project', 'ProjectTask', 'SQuotes', 'Realization', 'Reports', 'Reservations', 'Rss', 'Sales', 'SQuoteEnquiries', 'SSingleOrders', 'SRequirementsCards', 'Secretary', 'ServiceContracts', 'Services', 'OSSSoldServices', 'Support', 'SMSNotifier', 'HelpDesk', 'OSSTimeControl', 'Vendors', 'VirtualDesk' + 'Approvals', 'BankAccounts', 'ProductCategory', 'PermissionInspector', 'MailIntegration', 'Faq', 'Locations', 'ApprovalsRegister', 'Occurrences', 'Announcements', 'ModTracker', 'Users', 'AuditRegister', 'ActivityRegister', 'Import', 'Password', 'Dashboard', 'MultiCompany', 'ApiAddress', 'LocationRegister', 'DataSetRegister', 'IncidentRegister', 'OpenStreetMap', 'Chat', 'OSSMailScanner', 'SCalculations', 'ProjectMilestones', 'NewOrders', 'TeamWork', 'Bookkeeping', 'OSSEmployees', 'Faktury', 'CInternalTickets', 'CMileageLogbook', 'FCorectingInvoice', 'FInvoiceCost', 'CFixedAssets', 'Announcement', 'SVendorEnquiries', 'ISTDN', 'IGRNC', 'IGDNC', 'ISTRN', 'ISTN', 'Notification', 'MeetingCards_old', 'IPreOrder', 'IStorages', 'IGDN', 'IGIN', 'IGRN', 'IIDN', 'KnowledgeBase', 'ShoppingCart', 'Target', 'Plane', 'WithoutOwnersAccounts', 'VendorsAccounts', 'CompanyAccounts', 'ShutdownAccounts', 'MyAccounts', 'UnassignedAccounts', 'AllAccounts', 'RecycleBin', 'FInvoice', 'Faktury_old', 'FInvoiceProforma', 'ModComments', 'FBookkeeping', 'Events', 'Activity', 'Marketing', 'SRecurringOrders', 'Competition', 'Accounts', 'CompaniesAndContact', 'HolidaysEntitlement', 'Assets', 'SCalculations_old', 'Calendar', 'CallHistory', 'Campaigns', 'Contacts', 'OSSMailView', 'Database', 'Documents', 'OSSEmployees_old', 'Home', 'HumanResources', 'Ideas', 'Leads', 'LettersIn', 'LettersOut', 'PBXManager', 'OSSMailTemplates', 'EmailTemplates', 'OSSMail', 'SSalesProcesses', 'Portal', 'OutsourcedProducts', 'OSSOutsourcedServices', 'Partners', 'OSSPasswords', 'PaymentsIn', 'PaymentsOut', 'PriceBooks', 'Products', 'ProjectMilestone', 'Project', 'ProjectTask', 'SQuotes', 'Realization', 'Reports', 'Reservations', 'Rss', 'Sales', 'SQuoteEnquiries', 'SSingleOrders', 'SRequirementsCards', 'Secretary', 'ServiceContracts', 'Services', 'OSSSoldServices', 'Support', 'SMSNotifier', 'HelpDesk', 'OSSTimeControl', 'Vendors', 'VirtualDesk' ], 'admin' => [ 'Occurrences', 'Approvals', 'ApprovalsRegister', 'Locations', 'MailIntegration', 'system-monitoring', 'marketplace', 'my-shortcuts', 'branding-off', 'premium-support', 'filed-picklist-2', 'modules-relations-2', 'modules-installations-2', 'menu-configuration-2', 'workflows-2', 'modules-2', 'security-errors-2', 'users-2', 'system-warnings-2', 'modules-widgets-2', 'premium-modules', 'donate', 'hosting', 'footer-off', 'enterprise-modules', 'for-admin', 'for-partners', 'prodprouct-preview', 'buy', 'NotificationConfiguration', 'mail-queue', 'webservice-users', 'webservice-apps', 'automatic-assignment', 'shared-owner', 'owner', 'locks', 'system-warnings', 'advanced-permission', 'help', 'menu-summary', 'magento', 'system-incidents', 'github', 'sla-policy', 'business-hours', 'backup-manager', 'yetiforce-status', 'social-media', 'shop', 'password-encryption', 'countries', 'vendor-sms', 'permissions', 'user', 'roles', 'profiles', 'groups', 'module-access', 'special-access', 'standard-modules', 'modules-installation', 'modules-widgets', 'modules-fields', 'modules-relations', 'modules-track-chanegs', 'modules-prefixes', 'modules-pdf-templates', 'fields-quick-create', 'fields-picklists', 'fields-picklists-relations', 'field-folders', 'filed-hide-bloks', 'filed-mapping', 'menu-configuration', 'widgets-configuration', 'mapped-fields', 'advenced-modules', 'taxes-rates', 'discount-configuration', 'discount-base', 'taxes-caonfiguration', 'credit-limit-base_2', 'calendar-labels-colors', 'calendar-types', 'calendar-configuration', 'calendar-holidys', 'colors', 'search-and-filtres', 'search-configuration', 'filters-configuration', 'security', 'brute-force', 'passwords-configuration', 'passwords-encryption', 'backup', 'logs', 'server-configuration', 'server-updates', 'users-login', 'mail-download-history', 'integration', 'pbx-manager', 'currencies', 'customer-portal', 'online-forms', 'address', 'mobile-applications', 'dav-applications', 'automation', 'triggers', 'recording-control', 'cron', 'document_flow', 'document-templates', 'mail-tools', 'mail-configuration', 'mail-roundcube', 'mail-scanner', 'mail-auto-login', 'mail-smtp-server', 'oss_mailview', 'system-tools', 'languages-and-translations', 'system-messages', 'terms-and-conditions', 'system-configuration', 'users', 'company-information', 'company-detlis', 'processes', 'marketing', 'sales', 'realization', 'logistics', 'finances', 'support', 'workflow', 'yeti-force', 'about-yetiforce', 'about-yetiforce-ltd', 'contributors', 'license' @@ -10,10 +10,10 @@ 'Linkedin', 'Twitter', 'Facebook', 'Github', 'NetworkInterfaceCards', 'UtmNgf', 'Virtualization', 'Ups', 'Notebooks', 'VideoConference', 'Encryption', 'Servers', 'EmailProtection', 'Other', 'BackUpCopies', 'Matrixes', 'Monitoring', 'Antivirus' ], 'yfi' => [ - 'conference-details', 'copy-invitation', 'enter-guest', 'enter-moderator', 'guest-link', 'moderator-link', 'send-invitation', 'location', 'vies', 'merging-records', 'social-media', 'change-of-owner', 'adminIcon-menu-summary', 'adminIcon-advanced-permission', 'adminIcon-backup', 'adminIcon-countries', 'gus', 'adminIcon-sla-policy', 'adminIcon-time-control-processes', 'adminIcon-vendor-sms', 'quick-creation', 'full-editing-view', 'own-hosting', 'yetiforce-hosting', 'yetiforce-cloud', 'yeti-register-alert', 'newsletter-alert', 'shop-alert', 'partners', 'premium', 'enterprise', 'about-yetiforce', 'about-yetiforce-ltd', 'address', 'advanced-permission', 'advenced-modules', 'automatic-assignment', 'automation', 'backup', 'backup-manager', 'branding-off', 'brute-force', 'business-hours', 'buy', 'calendar-configuration', 'calendar-holidys', 'calendar-labels-colors', 'calendar-types', 'colors', 'company-detlis', 'company-information', 'contributors', 'countries', 'credit-limit-base_2', 'cron', 'currencies', 'customer-portal', 'dav-applications', 'discount-base', 'discount-configuration', 'document_flow', 'document-templates', 'donate', 'enterprise-modules', 'field-folders', 'fields-picklists', 'fields-picklists-relations', 'fields-quick-create', 'filed-hide-bloks', 'filed-mapping', 'filed-picklist-2', 'filters-configuration', 'finances', 'footer-off', 'for-admin', 'for-partners', 'github', 'groups', 'help', 'hosting', 'integration', 'languages-and-translations', 'license', 'locks', 'logistics', 'logs', 'magento', 'mail-auto-login', 'mail-configuration', 'mail-download-history', 'mail-queue', 'mail-roundcube', 'mail-scanner', 'mail-smtp-server', 'mail-tools', 'mapped-fields', 'marketing', 'marketplace', 'menu-configuration', 'menu-configuration-2', 'menu-summary', 'mobile-applications', 'module-access', 'modules-2', 'modules-fields', 'modules-installation', 'modules-installations-2', 'modules-pdf-templates', 'modules-prefixes', 'modules-relations', 'modules-relations-2', 'modules-track-chanegs', 'modules-widgets', 'modules-widgets-2', 'my-shortcuts', 'NotificationConfiguration', 'online-forms', 'oss_mailview', 'owner', 'password-encryption', 'passwords-configuration', 'passwords-encryption', 'pbx-manager', 'permissions', 'premium-modules', 'premium-support', 'processes', 'prodprouct-preview', 'profiles', 'realization', 'recording-control', 'roles', 'sales', 'search-and-filtres', 'search-configuration', 'security', 'security-errors-2', 'server-configuration', 'server-updates', 'shared-owner', 'shop', 'sla-policy', 'social-media1', 'special-access', 'standard-modules', 'support', 'system-configuration', 'system-incidents', 'system-messages', 'system-monitoring', 'system-tools', 'system-warnings', 'system-warnings-2', 'taxes-caonfiguration', 'taxes-rates', 'terms-and-conditions', 'triggers', 'user', 'users', 'users-2', 'users-login', 'vendor-sms', 'webservice-apps', 'webservice-users', 'widgets-configuration', 'workflow', 'workflows-2', 'yeti-force', 'yetiforce-status', 'menu-entrant', 'menu-group-room', 'chat-notification-off', 'register-offline', 'enter-on', 'virtual-desk', 'support-premium', 'user-part', 'admin-part', 'favorite-room', 'group-room', 'entrant-chat', 'global-room', 'hash-user', 'branding-chat', 'chat-notification-on', 'calendar-notifications', 'support-free', 'special-search', 'advanced-search', 'knowledge-base', 'register-online', 'unread-messages', 'enter-off' + 'free-support', 'paid-sapport', 'twitter', 'social-media2', 'partner-solution-shop', 'adds-on-shop', 'integration-shop', 'support-shop', 'hosting-cloud-shop', 'all-shop', 'report-list-rbl', 'public-rbl', 'analysis-details', 'rbl', 'dependent-fields', 'mail-integrator-panel', 'meeting-services', 'dav', 'address-serch', 'pbx', 'ldap', 'confirm-conflict', 'conflict-interests', 'event-handlers', 'admin-access', 'security-incidents', 'view-logs', 'change-passowrd', 'login-history', 'conflict-list', 'conference-details', 'copy-invitation', 'enter-guest', 'enter-moderator', 'guest-link', 'moderator-link', 'send-invitation', 'location', 'vies', 'merging-records', 'social-media', 'change-of-owner', 'adminIcon-menu-summary', 'adminIcon-advanced-permission', 'adminIcon-backup', 'adminIcon-countries', 'gus', 'adminIcon-sla-policy', 'adminIcon-time-control-processes', 'adminIcon-vendor-sms', 'quick-creation', 'full-editing-view', 'own-hosting', 'yetiforce-hosting', 'yetiforce-cloud', 'yeti-register-alert', 'newsletter-alert', 'shop-alert', 'partners', 'premium', 'enterprise', 'about-yetiforce', 'about-yetiforce-ltd', 'address', 'advanced-permission', 'advenced-modules', 'automatic-assignment', 'automation', 'backup', 'backup-manager', 'branding-off', 'brute-force', 'business-hours', 'buy', 'calendar-configuration', 'calendar-holidys', 'calendar-labels-colors', 'calendar-types', 'colors', 'company-detlis', 'company-information', 'contributors', 'countries', 'credit-limit-base_2', 'cron', 'currencies', 'customer-portal', 'dav-applications', 'discount-base', 'discount-configuration', 'document_flow', 'document-templates', 'donate', 'enterprise-modules', 'field-folders', 'fields-picklists', 'fields-picklists-relations', 'fields-quick-create', 'filed-hide-bloks', 'filed-mapping', 'filed-picklist-2', 'filters-configuration', 'finances', 'footer-off', 'for-admin', 'for-partners', 'github', 'groups', 'help', 'hosting', 'integration', 'languages-and-translations', 'license', 'locks', 'logistics', 'logs', 'magento', 'mail-auto-login', 'mail-configuration', 'mail-download-history', 'mail-queue', 'mail-roundcube', 'mail-scanner', 'mail-smtp-server', 'mail-tools', 'mapped-fields', 'marketing', 'marketplace', 'menu-configuration', 'menu-configuration-2', 'menu-summary', 'mobile-applications', 'module-access', 'modules-2', 'modules-fields', 'modules-installation', 'modules-installations-2', 'modules-pdf-templates', 'modules-prefixes', 'modules-relations', 'modules-relations-2', 'modules-track-chanegs', 'modules-widgets', 'modules-widgets-2', 'my-shortcuts', 'NotificationConfiguration', 'online-forms', 'oss_mailview', 'owner', 'password-encryption', 'passwords-configuration', 'passwords-encryption', 'pbx-manager', 'permissions', 'premium-modules', 'premium-support', 'processes', 'prodprouct-preview', 'profiles', 'realization', 'recording-control', 'roles', 'sales', 'search-and-filtres', 'search-configuration', 'security', 'security-errors-2', 'server-configuration', 'server-updates', 'shared-owner', 'shop', 'sla-policy', 'social-media1', 'special-access', 'standard-modules', 'support', 'system-configuration', 'system-incidents', 'system-messages', 'system-monitoring', 'system-tools', 'system-warnings', 'system-warnings-2', 'taxes-caonfiguration', 'taxes-rates', 'terms-and-conditions', 'triggers', 'user', 'users', 'users-2', 'users-login', 'vendor-sms', 'webservice-apps', 'webservice-users', 'widgets-configuration', 'workflow', 'workflows-2', 'yeti-force', 'yetiforce-status', 'menu-entrant', 'menu-group-room', 'chat-notification-off', 'register-offline', 'enter-on', 'virtual-desk', 'support-premium', 'user-part', 'admin-part', 'favorite-room', 'group-room', 'entrant-chat', 'global-room', 'hash-user', 'branding-chat', 'chat-notification-on', 'calendar-notifications', 'support-free', 'special-search', 'advanced-search', 'knowledge-base', 'register-online', 'unread-messages', 'enter-off' ], 'yfm' => [ - 'PermissionInspector', 'MailIntegration', 'Faq', 'Locations', 'ApprovalsRegister', 'Occurrences', 'Announcements', 'ModTracker', 'Users', 'AuditRegister', 'ActivityRegister', 'Import', 'Password', 'Dashboard', 'MultiCompany', 'ApiAddress', 'LocationRegister', 'DataSetRegister', 'IncidentRegister', 'OpenStreetMap', 'Chat', 'OSSMailScanner', 'SCalculations', 'ProjectMilestones', 'NewOrders', 'TeamWork', 'Bookkeeping', 'OSSEmployees', 'Faktury', 'CInternalTickets', 'CMileageLogbook', 'FCorectingInvoice', 'FInvoiceCost', 'CFixedAssets', 'Announcement', 'SVendorEnquiries', 'ISTDN', 'IGRNC', 'IGDNC', 'ISTRN', 'ISTN', 'Notification', 'MeetingCards_old', 'IPreOrder', 'IStorages', 'IGDN', 'IGIN', 'IGRN', 'IIDN', 'KnowledgeBase', 'ShoppingCart', 'Target', 'Plane', 'WithoutOwnersAccounts', 'VendorsAccounts', 'CompanyAccounts', 'ShutdownAccounts', 'MyAccounts', 'UnassignedAccounts', 'AllAccounts', 'RecycleBin', 'FInvoice', 'Faktury_old', 'FInvoiceProforma', 'ModComments', 'FBookkeeping', 'Events', 'Activity', 'Marketing', 'SRecurringOrders', 'Competition', 'Accounts', 'CompaniesAndContact', 'HolidaysEntitlement', 'Assets', 'SCalculations_old', 'Calendar', 'CallHistory', 'Campaigns', 'Contacts', 'OSSMailView', 'Database', 'Documents', 'OSSEmployees_old', 'Home', 'HumanResources', 'Ideas', 'Leads', 'LettersIn', 'LettersOut', 'PBXManager', 'OSSMailTemplates', 'EmailTemplates', 'OSSMail', 'SSalesProcesses', 'Portal', 'OutsourcedProducts', 'OSSOutsourcedServices', 'Partners', 'OSSPasswords', 'PaymentsIn', 'PaymentsOut', 'PriceBooks', 'Products', 'ProjectMilestone', 'Project', 'ProjectTask', 'SQuotes', 'Realization', 'Reports', 'Reservations', 'Rss', 'Sales', 'SQuoteEnquiries', 'SSingleOrders', 'SRequirementsCards', 'Secretary', 'ServiceContracts', 'Services', 'OSSSoldServices', 'Support', 'SMSNotifier', 'HelpDesk', 'OSSTimeControl', 'Vendors', 'VirtualDesk' + 'Approvals', 'BankAccounts', 'ProductCategory', 'PermissionInspector', 'MailIntegration', 'Faq', 'Locations', 'ApprovalsRegister', 'Occurrences', 'Announcements', 'ModTracker', 'Users', 'AuditRegister', 'ActivityRegister', 'Import', 'Password', 'Dashboard', 'MultiCompany', 'ApiAddress', 'LocationRegister', 'DataSetRegister', 'IncidentRegister', 'OpenStreetMap', 'Chat', 'OSSMailScanner', 'SCalculations', 'ProjectMilestones', 'NewOrders', 'TeamWork', 'Bookkeeping', 'OSSEmployees', 'Faktury', 'CInternalTickets', 'CMileageLogbook', 'FCorectingInvoice', 'FInvoiceCost', 'CFixedAssets', 'Announcement', 'SVendorEnquiries', 'ISTDN', 'IGRNC', 'IGDNC', 'ISTRN', 'ISTN', 'Notification', 'MeetingCards_old', 'IPreOrder', 'IStorages', 'IGDN', 'IGIN', 'IGRN', 'IIDN', 'KnowledgeBase', 'ShoppingCart', 'Target', 'Plane', 'WithoutOwnersAccounts', 'VendorsAccounts', 'CompanyAccounts', 'ShutdownAccounts', 'MyAccounts', 'UnassignedAccounts', 'AllAccounts', 'RecycleBin', 'FInvoice', 'Faktury_old', 'FInvoiceProforma', 'ModComments', 'FBookkeeping', 'Events', 'Activity', 'Marketing', 'SRecurringOrders', 'Competition', 'Accounts', 'CompaniesAndContact', 'HolidaysEntitlement', 'Assets', 'SCalculations_old', 'Calendar', 'CallHistory', 'Campaigns', 'Contacts', 'OSSMailView', 'Database', 'Documents', 'OSSEmployees_old', 'Home', 'HumanResources', 'Ideas', 'Leads', 'LettersIn', 'LettersOut', 'PBXManager', 'OSSMailTemplates', 'EmailTemplates', 'OSSMail', 'SSalesProcesses', 'Portal', 'OutsourcedProducts', 'OSSOutsourcedServices', 'Partners', 'OSSPasswords', 'PaymentsIn', 'PaymentsOut', 'PriceBooks', 'Products', 'ProjectMilestone', 'Project', 'ProjectTask', 'SQuotes', 'Realization', 'Reports', 'Reservations', 'Rss', 'Sales', 'SQuoteEnquiries', 'SSingleOrders', 'SRequirementsCards', 'Secretary', 'ServiceContracts', 'Services', 'OSSSoldServices', 'Support', 'SMSNotifier', 'HelpDesk', 'OSSTimeControl', 'Vendors', 'VirtualDesk' ], 'mdi' => [ 'ab-testing', 'abjad-arabic', 'abjad-hebrew', 'abugida-devanagari', 'abugida-thai', 'access-point', 'access-point-check', 'access-point-minus', 'access-point-network', 'access-point-network-off', 'access-point-off', 'access-point-plus', 'access-point-remove', 'account', 'account-alert', 'account-alert-outline', 'account-arrow-left', 'account-arrow-left-outline', 'account-arrow-right', 'account-arrow-right-outline', 'account-box', 'account-box-multiple', 'account-box-multiple-outline', 'account-box-outline', 'account-cancel', 'account-cancel-outline', 'account-cash', 'account-cash-outline', 'account-check', 'account-check-outline', 'account-child', 'account-child-circle', 'account-child-outline', 'account-circle', 'account-circle-outline', 'account-clock', 'account-clock-outline', 'account-cog', 'account-cog-outline', 'account-convert', 'account-convert-outline', 'account-cowboy-hat', 'account-details', 'account-details-outline', 'account-edit', 'account-edit-outline', 'account-group', 'account-group-outline', 'account-hard-hat', 'account-heart', 'account-heart-outline', 'account-key', 'account-key-outline', 'account-lock', 'account-lock-outline', 'account-minus', 'account-minus-outline', 'account-multiple', 'account-multiple-check', 'account-multiple-check-outline', 'account-multiple-minus', 'account-multiple-minus-outline', 'account-multiple-outline', 'account-multiple-plus', 'account-multiple-plus-outline', 'account-multiple-remove', 'account-multiple-remove-outline', 'account-music', 'account-music-outline', 'account-network', 'account-network-outline', 'account-off', 'account-off-outline', 'account-outline', 'account-plus', 'account-plus-outline', 'account-question', 'account-question-outline', 'account-reactivate', 'account-reactivate-outline', 'account-remove', 'account-remove-outline', 'account-search', 'account-search-outline', 'account-settings', 'account-settings-outline', 'account-star', 'account-star-outline', 'account-supervisor', 'account-supervisor-circle', 'account-supervisor-circle-outline', 'account-supervisor-outline', 'account-switch', 'account-switch-outline', 'account-tie', 'account-tie-outline', 'account-tie-voice', 'account-tie-voice-off', 'account-tie-voice-off-outline', 'account-tie-voice-outline', 'account-voice', 'adjust', 'adobe', 'adobe-acrobat', 'air-conditioner', 'air-filter', 'air-horn', 'air-humidifier', 'air-humidifier-off', 'air-purifier', 'airbag', 'airballoon', 'airballoon-outline', 'airplane', 'airplane-landing', 'airplane-off', 'airplane-takeoff', 'airport', 'alarm', 'alarm-bell', 'alarm-check', 'alarm-light', 'alarm-light-outline', 'alarm-multiple', 'alarm-note', 'alarm-note-off', 'alarm-off', 'alarm-panel', 'alarm-panel-outline', 'alarm-plus', 'alarm-snooze', 'album', 'alert', 'alert-box', 'alert-box-outline', 'alert-circle', 'alert-circle-check', 'alert-circle-check-outline', 'alert-circle-outline', 'alert-decagram', 'alert-decagram-outline', 'alert-minus', 'alert-minus-outline', 'alert-octagon', 'alert-octagon-outline', 'alert-octagram', 'alert-octagram-outline', 'alert-outline', 'alert-plus', 'alert-plus-outline', 'alert-remove', 'alert-remove-outline', 'alert-rhombus', 'alert-rhombus-outline', 'alien', 'alien-outline', 'align-horizontal-center', 'align-horizontal-left', 'align-horizontal-right', 'align-vertical-bottom', 'align-vertical-center', 'align-vertical-top', 'all-inclusive', 'allergy', 'alpha', 'alpha-a', 'alpha-a-box', 'alpha-a-box-outline', 'alpha-a-circle', 'alpha-a-circle-outline', 'alpha-b', 'alpha-b-box', 'alpha-b-box-outline', 'alpha-b-circle', 'alpha-b-circle-outline', 'alpha-c', 'alpha-c-box', 'alpha-c-box-outline', 'alpha-c-circle', 'alpha-c-circle-outline', 'alpha-d', 'alpha-d-box', 'alpha-d-box-outline', 'alpha-d-circle', 'alpha-d-circle-outline', 'alpha-e', 'alpha-e-box', 'alpha-e-box-outline', 'alpha-e-circle', 'alpha-e-circle-outline', 'alpha-f', 'alpha-f-box', 'alpha-f-box-outline', 'alpha-f-circle', 'alpha-f-circle-outline', 'alpha-g', 'alpha-g-box', 'alpha-g-box-outline', 'alpha-g-circle', 'alpha-g-circle-outline', 'alpha-h', 'alpha-h-box', 'alpha-h-box-outline', 'alpha-h-circle', 'alpha-h-circle-outline', 'alpha-i', 'alpha-i-box', 'alpha-i-box-outline', 'alpha-i-circle', 'alpha-i-circle-outline', 'alpha-j', 'alpha-j-box', 'alpha-j-box-outline', 'alpha-j-circle', 'alpha-j-circle-outline', 'alpha-k', 'alpha-k-box', 'alpha-k-box-outline', 'alpha-k-circle', 'alpha-k-circle-outline', 'alpha-l', 'alpha-l-box', 'alpha-l-box-outline', 'alpha-l-circle', 'alpha-l-circle-outline', 'alpha-m', 'alpha-m-box', 'alpha-m-box-outline', 'alpha-m-circle', 'alpha-m-circle-outline', 'alpha-n', 'alpha-n-box', 'alpha-n-box-outline', 'alpha-n-circle', 'alpha-n-circle-outline', 'alpha-o', 'alpha-o-box', 'alpha-o-box-outline', 'alpha-o-circle', 'alpha-o-circle-outline', 'alpha-p', 'alpha-p-box', 'alpha-p-box-outline', 'alpha-p-circle', 'alpha-p-circle-outline', 'alpha-q', 'alpha-q-box', 'alpha-q-box-outline', 'alpha-q-circle', 'alpha-q-circle-outline', 'alpha-r', 'alpha-r-box', 'alpha-r-box-outline', 'alpha-r-circle', 'alpha-r-circle-outline', 'alpha-s', 'alpha-s-box', 'alpha-s-box-outline', 'alpha-s-circle', 'alpha-s-circle-outline', 'alpha-t', 'alpha-t-box', 'alpha-t-box-outline', 'alpha-t-circle', 'alpha-t-circle-outline', 'alpha-u', 'alpha-u-box', 'alpha-u-box-outline', 'alpha-u-circle', 'alpha-u-circle-outline', 'alpha-v', 'alpha-v-box', 'alpha-v-box-outline', 'alpha-v-circle', 'alpha-v-circle-outline', 'alpha-w', 'alpha-w-box', 'alpha-w-box-outline', 'alpha-w-circle', 'alpha-w-circle-outline', 'alpha-x', 'alpha-x-box', 'alpha-x-box-outline', 'alpha-x-circle', 'alpha-x-circle-outline', 'alpha-y', 'alpha-y-box', 'alpha-y-box-outline', 'alpha-y-circle', 'alpha-y-circle-outline', 'alpha-z', 'alpha-z-box', 'alpha-z-box-outline', 'alpha-z-circle', 'alpha-z-circle-outline', 'alphabet-aurebesh', 'alphabet-cyrillic', 'alphabet-greek', 'alphabet-latin', 'alphabet-piqad', 'alphabet-tengwar', 'alphabetical', 'alphabetical-off', 'alphabetical-variant', 'alphabetical-variant-off', 'altimeter', 'amazon', 'amazon-alexa', 'ambulance', 'ammunition', 'ampersand', 'amplifier', 'amplifier-off', 'anchor', 'android', 'android-auto', 'android-debug-bridge', 'android-messages', 'android-studio', 'angle-acute', 'angle-obtuse', 'angle-right', 'angular', 'angularjs', 'animation', 'animation-outline', 'animation-play', 'animation-play-outline', 'ansible', 'antenna', 'anvil', 'apache-kafka', 'api', 'api-off', 'apple', 'apple-airplay', 'apple-finder', 'apple-icloud', 'apple-ios', 'apple-keyboard-caps', 'apple-keyboard-command', 'apple-keyboard-control', 'apple-keyboard-option', 'apple-keyboard-shift', 'apple-safari', 'application', 'application-cog', 'application-export', 'application-import', 'application-settings', 'approximately-equal', 'approximately-equal-box', 'apps', 'apps-box', 'arch', 'archive', 'archive-alert', 'archive-alert-outline', 'archive-arrow-down', 'archive-arrow-down-outline', 'archive-arrow-up', 'archive-arrow-up-outline', 'archive-outline', 'arm-flex', 'arm-flex-outline', 'arrange-bring-forward', 'arrange-bring-to-front', 'arrange-send-backward', 'arrange-send-to-back', 'arrow-all', 'arrow-bottom-left', 'arrow-bottom-left-bold-outline', 'arrow-bottom-left-thick', 'arrow-bottom-left-thin-circle-outline', 'arrow-bottom-right', 'arrow-bottom-right-bold-outline', 'arrow-bottom-right-thick', 'arrow-bottom-right-thin-circle-outline', 'arrow-collapse', 'arrow-collapse-all', 'arrow-collapse-down', 'arrow-collapse-horizontal', 'arrow-collapse-left', 'arrow-collapse-right', 'arrow-collapse-up', 'arrow-collapse-vertical', 'arrow-decision', 'arrow-decision-auto', 'arrow-decision-auto-outline', 'arrow-decision-outline', 'arrow-down', 'arrow-down-bold', 'arrow-down-bold-box', 'arrow-down-bold-box-outline', 'arrow-down-bold-circle', 'arrow-down-bold-circle-outline', 'arrow-down-bold-hexagon-outline', 'arrow-down-bold-outline', 'arrow-down-box', 'arrow-down-circle', 'arrow-down-circle-outline', 'arrow-down-drop-circle', 'arrow-down-drop-circle-outline', 'arrow-down-thick', 'arrow-down-thin-circle-outline', 'arrow-expand', 'arrow-expand-all', 'arrow-expand-down', 'arrow-expand-horizontal', 'arrow-expand-left', 'arrow-expand-right', 'arrow-expand-up', 'arrow-expand-vertical', 'arrow-horizontal-lock', 'arrow-left', 'arrow-left-bold', 'arrow-left-bold-box', 'arrow-left-bold-box-outline', 'arrow-left-bold-circle', 'arrow-left-bold-circle-outline', 'arrow-left-bold-hexagon-outline', 'arrow-left-bold-outline', 'arrow-left-box', 'arrow-left-circle', 'arrow-left-circle-outline', 'arrow-left-drop-circle', 'arrow-left-drop-circle-outline', 'arrow-left-right', 'arrow-left-right-bold', 'arrow-left-right-bold-outline', 'arrow-left-thick', 'arrow-left-thin-circle-outline', 'arrow-right', 'arrow-right-bold', 'arrow-right-bold-box', 'arrow-right-bold-box-outline', 'arrow-right-bold-circle', 'arrow-right-bold-circle-outline', 'arrow-right-bold-hexagon-outline', 'arrow-right-bold-outline', 'arrow-right-box', 'arrow-right-circle', 'arrow-right-circle-outline', 'arrow-right-drop-circle', 'arrow-right-drop-circle-outline', 'arrow-right-thick', 'arrow-right-thin-circle-outline', 'arrow-split-horizontal', 'arrow-split-vertical', 'arrow-top-left', 'arrow-top-left-bold-outline', 'arrow-top-left-bottom-right', 'arrow-top-left-bottom-right-bold', 'arrow-top-left-thick', 'arrow-top-left-thin-circle-outline', 'arrow-top-right', 'arrow-top-right-bold-outline', 'arrow-top-right-bottom-left', 'arrow-top-right-bottom-left-bold', 'arrow-top-right-thick', 'arrow-top-right-thin-circle-outline', 'arrow-up', 'arrow-up-bold', 'arrow-up-bold-box', 'arrow-up-bold-box-outline', 'arrow-up-bold-circle', 'arrow-up-bold-circle-outline', 'arrow-up-bold-hexagon-outline', 'arrow-up-bold-outline', 'arrow-up-box', 'arrow-up-circle', 'arrow-up-circle-outline', 'arrow-up-down', 'arrow-up-down-bold', 'arrow-up-down-bold-outline', 'arrow-up-drop-circle', 'arrow-up-drop-circle-outline', 'arrow-up-thick', 'arrow-up-thin-circle-outline', 'arrow-vertical-lock', 'artstation', 'aspect-ratio', 'assistant', 'asterisk', 'at', 'atlassian', 'atm', 'atom', 'atom-variant', 'attachment', 'audio-video', 'audio-video-off', 'augmented-reality', 'auto-download', 'auto-fix', 'auto-upload', 'autorenew', 'av-timer', 'aws', 'axe', 'axis', 'axis-arrow', 'axis-arrow-info', 'axis-arrow-lock', 'axis-lock', 'axis-x-arrow', 'axis-x-arrow-lock', 'axis-x-rotate-clockwise', 'axis-x-rotate-counterclockwise', 'axis-x-y-arrow-lock', 'axis-y-arrow', 'axis-y-arrow-lock', 'axis-y-rotate-clockwise', 'axis-y-rotate-counterclockwise', 'axis-z-arrow', 'axis-z-arrow-lock', 'axis-z-rotate-clockwise', 'axis-z-rotate-counterclockwise', 'babel', 'baby', 'baby-bottle', 'baby-bottle-outline', 'baby-buggy', 'baby-carriage', 'baby-carriage-off', 'baby-face', 'baby-face-outline', 'backburger', 'backspace', 'backspace-outline', 'backspace-reverse', 'backspace-reverse-outline', 'backup-restore', 'bacteria', 'bacteria-outline', 'badge-account', 'badge-account-alert', 'badge-account-alert-outline', 'badge-account-horizontal', 'badge-account-horizontal-outline', 'badge-account-outline', 'badminton', 'bag-carry-on', 'bag-carry-on-check', 'bag-carry-on-off', 'bag-checked', 'bag-personal', 'bag-personal-off', 'bag-personal-off-outline', 'bag-personal-outline', 'bag-suitcase', 'bag-suitcase-off', 'bag-suitcase-off-outline', 'bag-suitcase-outline', 'baguette', 'balloon', 'ballot', 'ballot-outline', 'ballot-recount', 'ballot-recount-outline', 'bandage', 'bandcamp', 'bank', 'bank-check', 'bank-minus', 'bank-off', 'bank-off-outline', 'bank-outline', 'bank-plus', 'bank-remove', 'bank-transfer', 'bank-transfer-in', 'bank-transfer-out', 'barcode', 'barcode-off', 'barcode-scan', 'barley', 'barley-off', 'barn', 'barrel', 'baseball', 'baseball-bat', 'baseball-diamond', 'baseball-diamond-outline', 'bash', 'basket', 'basket-fill', 'basket-minus', 'basket-minus-outline', 'basket-off', 'basket-off-outline', 'basket-outline', 'basket-plus', 'basket-plus-outline', 'basket-remove', 'basket-remove-outline', 'basket-unfill', 'basketball', 'basketball-hoop', 'basketball-hoop-outline', 'bat', 'battery', 'battery-10', 'battery-10-bluetooth', 'battery-20', 'battery-20-bluetooth', 'battery-30', 'battery-30-bluetooth', 'battery-40', 'battery-40-bluetooth', 'battery-50', 'battery-50-bluetooth', 'battery-60', 'battery-60-bluetooth', 'battery-70', 'battery-70-bluetooth', 'battery-80', 'battery-80-bluetooth', 'battery-90', 'battery-90-bluetooth', 'battery-alert', 'battery-alert-bluetooth', 'battery-alert-variant', 'battery-alert-variant-outline', 'battery-bluetooth', 'battery-bluetooth-variant', 'battery-charging', 'battery-charging-10', 'battery-charging-100', 'battery-charging-20', 'battery-charging-30', 'battery-charging-40', 'battery-charging-50', 'battery-charging-60', 'battery-charging-70', 'battery-charging-80', 'battery-charging-90', 'battery-charging-high', 'battery-charging-low', 'battery-charging-medium', 'battery-charging-outline', 'battery-charging-wireless', 'battery-charging-wireless-10', 'battery-charging-wireless-20', 'battery-charging-wireless-30', 'battery-charging-wireless-40', 'battery-charging-wireless-50', 'battery-charging-wireless-60', 'battery-charging-wireless-70', 'battery-charging-wireless-80', 'battery-charging-wireless-90', 'battery-charging-wireless-alert', 'battery-charging-wireless-outline', 'battery-heart', 'battery-heart-outline', 'battery-heart-variant', 'battery-high', 'battery-low', 'battery-medium', 'battery-minus', 'battery-negative', 'battery-off', 'battery-off-outline', 'battery-outline', 'battery-plus', 'battery-positive', 'battery-unknown', 'battery-unknown-bluetooth', 'battlenet', 'beach', 'beaker', 'beaker-alert', 'beaker-alert-outline', 'beaker-check', 'beaker-check-outline', 'beaker-minus', 'beaker-minus-outline', 'beaker-outline', 'beaker-plus', 'beaker-plus-outline', 'beaker-question', 'beaker-question-outline', 'beaker-remove', 'beaker-remove-outline', 'bed', 'bed-double', 'bed-double-outline', 'bed-empty', 'bed-king', 'bed-king-outline', 'bed-outline', 'bed-queen', 'bed-queen-outline', 'bed-single', 'bed-single-outline', 'bee', 'bee-flower', 'beehive-off-outline', 'beehive-outline', 'beekeeper', 'beer', 'beer-outline', 'bell', 'bell-alert', 'bell-alert-outline', 'bell-cancel', 'bell-cancel-outline', 'bell-check', 'bell-check-outline', 'bell-circle', 'bell-circle-outline', 'bell-minus', 'bell-minus-outline', 'bell-off', 'bell-off-outline', 'bell-outline', 'bell-plus', 'bell-plus-outline', 'bell-remove', 'bell-remove-outline', 'bell-ring', 'bell-ring-outline', 'bell-sleep', 'bell-sleep-outline', 'beta', 'betamax', 'biathlon', 'bicycle', 'bicycle-basket', 'bicycle-electric', 'bicycle-penny-farthing', 'bike', 'bike-fast', 'billboard', 'billiards', 'billiards-rack', 'binoculars', 'bio', 'biohazard', 'bird', 'bitbucket', 'bitcoin', 'black-mesa', 'blender', 'blender-software', 'blinds', 'blinds-open', 'block-helper', 'blogger', 'blood-bag', 'bluetooth', 'bluetooth-audio', 'bluetooth-connect', 'bluetooth-off', 'bluetooth-settings', 'bluetooth-transfer', 'blur', 'blur-linear', 'blur-off', 'blur-radial', 'bolnisi-cross', 'bolt', 'bomb', 'bomb-off', 'bone', 'book', 'book-account', 'book-account-outline', 'book-alert', 'book-alert-outline', 'book-alphabet', 'book-arrow-down', 'book-arrow-down-outline', 'book-arrow-left', 'book-arrow-left-outline', 'book-arrow-right', 'book-arrow-right-outline', 'book-arrow-up', 'book-arrow-up-outline', 'book-cancel', 'book-cancel-outline', 'book-check', 'book-check-outline', 'book-clock', 'book-clock-outline', 'book-cog', 'book-cog-outline', 'book-cross', 'book-edit', 'book-edit-outline', 'book-education', 'book-education-outline', 'book-information-variant', 'book-lock', 'book-lock-open', 'book-lock-open-outline', 'book-lock-outline', 'book-marker', 'book-marker-outline', 'book-minus', 'book-minus-multiple', 'book-minus-multiple-outline', 'book-minus-outline', 'book-multiple', 'book-multiple-outline', 'book-music', 'book-music-outline', 'book-off', 'book-off-outline', 'book-open', 'book-open-blank-variant', 'book-open-outline', 'book-open-page-variant', 'book-open-page-variant-outline', 'book-open-variant', 'book-outline', 'book-play', 'book-play-outline', 'book-plus', 'book-plus-multiple', 'book-plus-multiple-outline', 'book-plus-outline', 'book-refresh', 'book-refresh-outline', 'book-remove', 'book-remove-multiple', 'book-remove-multiple-outline', 'book-remove-outline', 'book-search', 'book-search-outline', 'book-settings', 'book-settings-outline', 'book-sync', 'book-sync-outline', 'book-variant', 'book-variant-multiple', 'bookmark', 'bookmark-check', 'bookmark-check-outline', 'bookmark-minus', 'bookmark-minus-outline', 'bookmark-multiple', 'bookmark-multiple-outline', 'bookmark-music', 'bookmark-music-outline', 'bookmark-off', 'bookmark-off-outline', 'bookmark-outline', 'bookmark-plus', 'bookmark-plus-outline', 'bookmark-remove', 'bookmark-remove-outline', 'bookshelf', 'boom-gate', 'boom-gate-alert', 'boom-gate-alert-outline', 'boom-gate-down', 'boom-gate-down-outline', 'boom-gate-outline', 'boom-gate-up', 'boom-gate-up-outline', 'boombox', 'boomerang', 'bootstrap', 'border-all', 'border-all-variant', 'border-bottom', 'border-bottom-variant', 'border-color', 'border-horizontal', 'border-inside', 'border-left', 'border-left-variant', 'border-none', 'border-none-variant', 'border-outside', 'border-right', 'border-right-variant', 'border-style', 'border-top', 'border-top-variant', 'border-vertical', 'bottle-soda', 'bottle-soda-classic', 'bottle-soda-classic-outline', 'bottle-soda-outline', 'bottle-tonic', 'bottle-tonic-outline', 'bottle-tonic-plus', 'bottle-tonic-plus-outline', 'bottle-tonic-skull', 'bottle-tonic-skull-outline', 'bottle-wine', 'bottle-wine-outline', 'bow-tie', 'bowl', 'bowl-mix', 'bowl-mix-outline', 'bowl-outline', 'bowling', 'box', 'box-cutter', 'box-cutter-off', 'box-shadow', 'boxing-glove', 'braille', 'brain', 'bread-slice', 'bread-slice-outline', 'bridge', 'briefcase', 'briefcase-account', 'briefcase-account-outline', 'briefcase-check', 'briefcase-check-outline', 'briefcase-clock', 'briefcase-clock-outline', 'briefcase-download', 'briefcase-download-outline', 'briefcase-edit', 'briefcase-edit-outline', 'briefcase-minus', 'briefcase-minus-outline', 'briefcase-off', 'briefcase-off-outline', 'briefcase-outline', 'briefcase-plus', 'briefcase-plus-outline', 'briefcase-remove', 'briefcase-remove-outline', 'briefcase-search', 'briefcase-search-outline', 'briefcase-upload', 'briefcase-upload-outline', 'briefcase-variant', 'briefcase-variant-off', 'briefcase-variant-off-outline', 'briefcase-variant-outline', 'brightness-1', 'brightness-2', 'brightness-3', 'brightness-4', 'brightness-5', 'brightness-6', 'brightness-7', 'brightness-auto', 'brightness-percent', 'broom', 'brush', 'bucket', 'bucket-outline', 'buddhism', 'buffer', 'buffet', 'bug', 'bug-check', 'bug-check-outline', 'bug-outline', 'bugle', 'bulldozer', 'bullet', 'bulletin-board', 'bullhorn', 'bullhorn-outline', 'bullseye', 'bullseye-arrow', 'bulma', 'bunk-bed', 'bunk-bed-outline', 'bus', 'bus-alert', 'bus-articulated-end', 'bus-articulated-front', 'bus-clock', 'bus-double-decker', 'bus-marker', 'bus-multiple', 'bus-school', 'bus-side', 'bus-stop', 'bus-stop-covered', 'bus-stop-uncovered', 'butterfly', 'butterfly-outline', 'cable-data', 'cached', 'cactus', 'cake', 'cake-layered', 'cake-variant', 'calculator', 'calculator-variant', 'calculator-variant-outline', 'calendar', 'calendar-account', 'calendar-account-outline', 'calendar-alert', 'calendar-arrow-left', 'calendar-arrow-right', 'calendar-blank', 'calendar-blank-multiple', 'calendar-blank-outline', 'calendar-check', 'calendar-check-outline', 'calendar-clock', 'calendar-cursor', 'calendar-edit', 'calendar-end', 'calendar-export', 'calendar-heart', 'calendar-import', 'calendar-lock', 'calendar-lock-outline', 'calendar-minus', 'calendar-month', 'calendar-month-outline', 'calendar-multiple', 'calendar-multiple-check', 'calendar-multiselect', 'calendar-outline', 'calendar-plus', 'calendar-question', 'calendar-range', 'calendar-range-outline', 'calendar-refresh', 'calendar-refresh-outline', 'calendar-remove', 'calendar-remove-outline', 'calendar-search', 'calendar-star', 'calendar-start', 'calendar-sync', 'calendar-sync-outline', 'calendar-text', 'calendar-text-outline', 'calendar-today', 'calendar-week', 'calendar-week-begin', 'calendar-weekend', 'calendar-weekend-outline', 'call-made', 'call-merge', 'call-missed', 'call-received', 'call-split', 'camcorder', 'camcorder-off', 'camera', 'camera-account', 'camera-burst', 'camera-control', 'camera-enhance', 'camera-enhance-outline', 'camera-flip', 'camera-flip-outline', 'camera-front', 'camera-front-variant', 'camera-gopro', 'camera-image', 'camera-iris', 'camera-metering-center', 'camera-metering-matrix', 'camera-metering-partial', 'camera-metering-spot', 'camera-off', 'camera-outline', 'camera-party-mode', 'camera-plus', 'camera-plus-outline', 'camera-rear', 'camera-rear-variant', 'camera-retake', 'camera-retake-outline', 'camera-switch', 'camera-switch-outline', 'camera-timer', 'camera-wireless', 'camera-wireless-outline', 'campfire', 'cancel', 'candle', 'candycane', 'cannabis', 'cannabis-off', 'caps-lock', 'car', 'car-2-plus', 'car-3-plus', 'car-arrow-left', 'car-arrow-right', 'car-back', 'car-battery', 'car-brake-abs', 'car-brake-alert', 'car-brake-hold', 'car-brake-parking', 'car-brake-retarder', 'car-child-seat', 'car-clutch', 'car-cog', 'car-connected', 'car-convertible', 'car-coolant-level', 'car-cruise-control', 'car-defrost-front', 'car-defrost-rear', 'car-door', 'car-door-lock', 'car-electric', 'car-electric-outline', 'car-emergency', 'car-esp', 'car-estate', 'car-hatchback', 'car-info', 'car-key', 'car-lifted-pickup', 'car-light-dimmed', 'car-light-fog', 'car-light-high', 'car-limousine', 'car-multiple', 'car-off', 'car-outline', 'car-parking-lights', 'car-pickup', 'car-seat', 'car-seat-cooler', 'car-seat-heater', 'car-settings', 'car-shift-pattern', 'car-side', 'car-sports', 'car-tire-alert', 'car-traction-control', 'car-turbocharger', 'car-wash', 'car-windshield', 'car-windshield-outline', 'carabiner', 'caravan', 'card', 'card-account-details', 'card-account-details-outline', 'card-account-details-star', 'card-account-details-star-outline', 'card-account-mail', 'card-account-mail-outline', 'card-account-phone', 'card-account-phone-outline', 'card-bulleted', 'card-bulleted-off', 'card-bulleted-off-outline', 'card-bulleted-outline', 'card-bulleted-settings', 'card-bulleted-settings-outline', 'card-minus', 'card-minus-outline', 'card-off', 'card-off-outline', 'card-outline', 'card-plus', 'card-plus-outline', 'card-remove', 'card-remove-outline', 'card-search', 'card-search-outline', 'card-text', 'card-text-outline', 'cards', 'cards-club', 'cards-diamond', 'cards-diamond-outline', 'cards-heart', 'cards-outline', 'cards-playing-outline', 'cards-spade', 'cards-variant', 'carrot', 'cart', 'cart-arrow-down', 'cart-arrow-right', 'cart-arrow-up', 'cart-check', 'cart-minus', 'cart-off', 'cart-outline', 'cart-plus', 'cart-remove', 'cart-variant', 'case-sensitive-alt', 'cash', 'cash-100', 'cash-check', 'cash-lock', 'cash-lock-open', 'cash-marker', 'cash-minus', 'cash-multiple', 'cash-plus', 'cash-refund', 'cash-register', 'cash-remove', 'cash-usd', 'cash-usd-outline', 'cassette', 'cast', 'cast-audio', 'cast-connected', 'cast-education', 'cast-off', 'castle', 'cat', 'cctv', 'ceiling-light', 'cellphone', 'cellphone-android', 'cellphone-arrow-down', 'cellphone-basic', 'cellphone-charging', 'cellphone-cog', 'cellphone-dock', 'cellphone-erase', 'cellphone-information', 'cellphone-iphone', 'cellphone-key', 'cellphone-link', 'cellphone-link-off', 'cellphone-lock', 'cellphone-message', 'cellphone-message-off', 'cellphone-nfc', 'cellphone-nfc-off', 'cellphone-off', 'cellphone-play', 'cellphone-screenshot', 'cellphone-settings', 'cellphone-sound', 'cellphone-text', 'cellphone-wireless', 'celtic-cross', 'centos', 'certificate', 'certificate-outline', 'chair-rolling', 'chair-school', 'charity', 'chart-arc', 'chart-areaspline', 'chart-areaspline-variant', 'chart-bar', 'chart-bar-stacked', 'chart-bell-curve', 'chart-bell-curve-cumulative', 'chart-box', 'chart-box-outline', 'chart-box-plus-outline', 'chart-bubble', 'chart-donut', 'chart-donut-variant', 'chart-gantt', 'chart-histogram', 'chart-line', 'chart-line-stacked', 'chart-line-variant', 'chart-multiline', 'chart-multiple', 'chart-pie', 'chart-ppf', 'chart-sankey', 'chart-sankey-variant', 'chart-scatter-plot', 'chart-scatter-plot-hexbin', 'chart-timeline', 'chart-timeline-variant', 'chart-timeline-variant-shimmer', 'chart-tree', 'chat', 'chat-alert', 'chat-alert-outline', 'chat-minus', 'chat-minus-outline', 'chat-outline', 'chat-plus', 'chat-plus-outline', 'chat-processing', 'chat-processing-outline', 'chat-remove', 'chat-remove-outline', 'chat-sleep', 'chat-sleep-outline', 'check', 'check-all', 'check-bold', 'check-box-multiple-outline', 'check-box-outline', 'check-circle', 'check-circle-outline', 'check-decagram', 'check-network', 'check-network-outline', 'check-outline', 'check-underline', 'check-underline-circle', 'check-underline-circle-outline', 'checkbook', 'checkbox-blank', 'checkbox-blank-circle', 'checkbox-blank-circle-outline', 'checkbox-blank-off', 'checkbox-blank-off-outline', 'checkbox-blank-outline', 'checkbox-intermediate', 'checkbox-marked', 'checkbox-marked-circle', 'checkbox-marked-circle-outline', 'checkbox-marked-outline', 'checkbox-multiple-blank', 'checkbox-multiple-blank-circle', 'checkbox-multiple-blank-circle-outline', 'checkbox-multiple-blank-outline', 'checkbox-multiple-marked', 'checkbox-multiple-marked-circle', 'checkbox-multiple-marked-circle-outline', 'checkbox-multiple-marked-outline', 'checkerboard', 'checkerboard-minus', 'checkerboard-plus', 'checkerboard-remove', 'cheese', 'cheese-off', 'chef-hat', 'chemical-weapon', 'chess-bishop', 'chess-king', 'chess-knight', 'chess-pawn', 'chess-queen', 'chess-rook', 'chevron-double-down', 'chevron-double-left', 'chevron-double-right', 'chevron-double-up', 'chevron-down', 'chevron-down-box', 'chevron-down-box-outline', 'chevron-down-circle', 'chevron-down-circle-outline', 'chevron-left', 'chevron-left-box', 'chevron-left-box-outline', 'chevron-left-circle', 'chevron-left-circle-outline', 'chevron-right', 'chevron-right-box', 'chevron-right-box-outline', 'chevron-right-circle', 'chevron-right-circle-outline', 'chevron-triple-down', 'chevron-triple-left', 'chevron-triple-right', 'chevron-triple-up', 'chevron-up', 'chevron-up-box', 'chevron-up-box-outline', 'chevron-up-circle', 'chevron-up-circle-outline', 'chili-hot', 'chili-medium', 'chili-mild', 'chili-off', 'chip', 'christianity', 'christianity-outline', 'church', 'cigar', 'cigar-off', 'circle', 'circle-box', 'circle-box-outline', 'circle-double', 'circle-edit-outline', 'circle-expand', 'circle-half', 'circle-half-full', 'circle-medium', 'circle-multiple', 'circle-multiple-outline', 'circle-off-outline', 'circle-outline', 'circle-slice-1', 'circle-slice-2', 'circle-slice-3', 'circle-slice-4', 'circle-slice-5', 'circle-slice-6', 'circle-slice-7', 'circle-slice-8', 'circle-small', 'circular-saw', 'city', 'city-variant', 'city-variant-outline', 'clipboard', 'clipboard-account', 'clipboard-account-outline', 'clipboard-alert', 'clipboard-alert-outline', 'clipboard-arrow-down', 'clipboard-arrow-down-outline', 'clipboard-arrow-left', 'clipboard-arrow-left-outline', 'clipboard-arrow-right', 'clipboard-arrow-right-outline', 'clipboard-arrow-up', 'clipboard-arrow-up-outline', 'clipboard-check', 'clipboard-check-multiple', 'clipboard-check-multiple-outline', 'clipboard-check-outline', 'clipboard-edit', 'clipboard-edit-outline', 'clipboard-file', 'clipboard-file-outline', 'clipboard-flow', 'clipboard-flow-outline', 'clipboard-list', 'clipboard-list-outline', 'clipboard-minus', 'clipboard-minus-outline', 'clipboard-multiple', 'clipboard-multiple-outline', 'clipboard-off', 'clipboard-off-outline', 'clipboard-outline', 'clipboard-play', 'clipboard-play-multiple', 'clipboard-play-multiple-outline', 'clipboard-play-outline', 'clipboard-plus', 'clipboard-plus-outline', 'clipboard-pulse', 'clipboard-pulse-outline', 'clipboard-remove', 'clipboard-remove-outline', 'clipboard-search', 'clipboard-search-outline', 'clipboard-text', 'clipboard-text-multiple', 'clipboard-text-multiple-outline', 'clipboard-text-off', 'clipboard-text-off-outline', 'clipboard-text-outline', 'clipboard-text-play', 'clipboard-text-play-outline', 'clipboard-text-search', 'clipboard-text-search-outline', 'clippy', 'clock', 'clock-alert', 'clock-alert-outline', 'clock-check', 'clock-check-outline', 'clock-digital', 'clock-end', 'clock-fast', 'clock-in', 'clock-out', 'clock-outline', 'clock-start', 'clock-time-eight', 'clock-time-eight-outline', 'clock-time-eleven', 'clock-time-eleven-outline', 'clock-time-five', 'clock-time-five-outline', 'clock-time-four', 'clock-time-four-outline', 'clock-time-nine', 'clock-time-nine-outline', 'clock-time-one', 'clock-time-one-outline', 'clock-time-seven', 'clock-time-seven-outline', 'clock-time-six', 'clock-time-six-outline', 'clock-time-ten', 'clock-time-ten-outline', 'clock-time-three', 'clock-time-three-outline', 'clock-time-twelve', 'clock-time-twelve-outline', 'clock-time-two', 'clock-time-two-outline', 'close', 'close-box', 'close-box-multiple', 'close-box-multiple-outline', 'close-box-outline', 'close-circle', 'close-circle-multiple', 'close-circle-multiple-outline', 'close-circle-outline', 'close-network', 'close-network-outline', 'close-octagon', 'close-octagon-outline', 'close-outline', 'close-thick', 'closed-caption', 'closed-caption-outline', 'cloud', 'cloud-alert', 'cloud-braces', 'cloud-check', 'cloud-check-outline', 'cloud-circle', 'cloud-download', 'cloud-download-outline', 'cloud-lock', 'cloud-lock-outline', 'cloud-off-outline', 'cloud-outline', 'cloud-print', 'cloud-print-outline', 'cloud-question', 'cloud-refresh', 'cloud-search', 'cloud-search-outline', 'cloud-sync', 'cloud-sync-outline', 'cloud-tags', 'cloud-upload', 'cloud-upload-outline', 'clover', 'coach-lamp', 'coat-rack', 'code-array', 'code-braces', 'code-braces-box', 'code-brackets', 'code-equal', 'code-greater-than', 'code-greater-than-or-equal', 'code-json', 'code-less-than', 'code-less-than-or-equal', 'code-not-equal', 'code-not-equal-variant', 'code-parentheses', 'code-parentheses-box', 'code-string', 'code-tags', 'code-tags-check', 'codepen', 'coffee', 'coffee-maker', 'coffee-off', 'coffee-off-outline', 'coffee-outline', 'coffee-to-go', 'coffee-to-go-outline', 'coffin', 'cog', 'cog-box', 'cog-clockwise', 'cog-counterclockwise', 'cog-off', 'cog-off-outline', 'cog-outline', 'cog-refresh', 'cog-refresh-outline', 'cog-sync', 'cog-sync-outline', 'cog-transfer', 'cog-transfer-outline', 'cogs', 'collage', 'collapse-all', 'collapse-all-outline', 'color-helper', 'comma', 'comma-box', 'comma-box-outline', 'comma-circle', 'comma-circle-outline', 'comment', 'comment-account', 'comment-account-outline', 'comment-alert', 'comment-alert-outline', 'comment-arrow-left', 'comment-arrow-left-outline', 'comment-arrow-right', 'comment-arrow-right-outline', 'comment-bookmark', 'comment-bookmark-outline', 'comment-check', 'comment-check-outline', 'comment-edit', 'comment-edit-outline', 'comment-eye', 'comment-eye-outline', 'comment-flash', 'comment-flash-outline', 'comment-minus', 'comment-minus-outline', 'comment-multiple', 'comment-multiple-outline', 'comment-off', 'comment-off-outline', 'comment-outline', 'comment-plus', 'comment-plus-outline', 'comment-processing', 'comment-processing-outline', 'comment-question', 'comment-question-outline', 'comment-quote', 'comment-quote-outline', 'comment-remove', 'comment-remove-outline', 'comment-search', 'comment-search-outline', 'comment-text', 'comment-text-multiple', 'comment-text-multiple-outline', 'comment-text-outline', 'compare', 'compare-horizontal', 'compare-vertical', 'compass', 'compass-off', 'compass-off-outline', 'compass-outline', 'compass-rose', 'concourse-ci', 'connection', 'console', 'console-line', 'console-network', 'console-network-outline', 'consolidate', 'contactless-payment', 'contactless-payment-circle', 'contactless-payment-circle-outline', 'contacts', 'contacts-outline', 'contain', 'contain-end', 'contain-start', 'content-copy', 'content-cut', 'content-duplicate', 'content-paste', 'content-save', 'content-save-alert', 'content-save-alert-outline', 'content-save-all', 'content-save-all-outline', 'content-save-cog', 'content-save-cog-outline', 'content-save-edit', 'content-save-edit-outline', 'content-save-move', 'content-save-move-outline', 'content-save-off', 'content-save-off-outline', 'content-save-outline', 'content-save-settings', 'content-save-settings-outline', 'contrast', 'contrast-box', 'contrast-circle', 'controller-classic', 'controller-classic-outline', 'cookie', 'cookie-alert', 'cookie-alert-outline', 'cookie-check', 'cookie-check-outline', 'cookie-cog', 'cookie-cog-outline', 'cookie-minus', 'cookie-minus-outline', 'cookie-outline', 'cookie-plus', 'cookie-plus-outline', 'cookie-remove', 'cookie-remove-outline', 'cookie-settings', 'cookie-settings-outline', 'coolant-temperature', 'copyright', 'cordova', 'corn', 'corn-off', 'cosine-wave', 'counter', 'cow', 'cpu-32-bit', 'cpu-64-bit', 'crane', 'creation', 'creative-commons', 'credit-card', 'credit-card-check', 'credit-card-check-outline', 'credit-card-clock', 'credit-card-clock-outline', 'credit-card-marker', 'credit-card-marker-outline', 'credit-card-minus', 'credit-card-minus-outline', 'credit-card-multiple', 'credit-card-multiple-outline', 'credit-card-off', 'credit-card-off-outline', 'credit-card-outline', 'credit-card-plus', 'credit-card-plus-outline', 'credit-card-refresh', 'credit-card-refresh-outline', 'credit-card-refund', 'credit-card-refund-outline', 'credit-card-remove', 'credit-card-remove-outline', 'credit-card-scan', 'credit-card-scan-outline', 'credit-card-search', 'credit-card-search-outline', 'credit-card-settings', 'credit-card-settings-outline', 'credit-card-sync', 'credit-card-sync-outline', 'credit-card-wireless', 'credit-card-wireless-off', 'credit-card-wireless-off-outline', 'credit-card-wireless-outline', 'cricket', 'crop', 'crop-free', 'crop-landscape', 'crop-portrait', 'crop-rotate', 'crop-square', 'crosshairs', 'crosshairs-gps', 'crosshairs-off', 'crosshairs-question', 'crown', 'crown-outline', 'cryengine', 'crystal-ball', 'cube', 'cube-off', 'cube-off-outline', 'cube-outline', 'cube-scan', 'cube-send', 'cube-unfolded', 'cup', 'cup-off', 'cup-off-outline', 'cup-outline', 'cup-water', 'cupboard', 'cupboard-outline', 'cupcake', 'curling', 'currency-bdt', 'currency-brl', 'currency-btc', 'currency-cny', 'currency-eth', 'currency-eur', 'currency-eur-off', 'currency-gbp', 'currency-ils', 'currency-inr', 'currency-jpy', 'currency-krw', 'currency-kzt', 'currency-mnt', 'currency-ngn', 'currency-php', 'currency-rial', 'currency-rub', 'currency-sign', 'currency-try', 'currency-twd', 'currency-usd', 'currency-usd-circle', 'currency-usd-circle-outline', 'currency-usd-off', 'current-ac', 'current-dc', 'cursor-default', 'cursor-default-click', 'cursor-default-click-outline', 'cursor-default-gesture', 'cursor-default-gesture-outline', 'cursor-default-outline', 'cursor-move', 'cursor-pointer', 'cursor-text', 'dance-ballroom', 'dance-pole', 'data-matrix', 'data-matrix-edit', 'data-matrix-minus', 'data-matrix-plus', 'data-matrix-remove', 'data-matrix-scan', 'database', 'database-alert', 'database-alert-outline', 'database-arrow-down', 'database-arrow-down-outline', 'database-arrow-left', 'database-arrow-left-outline', 'database-arrow-right', 'database-arrow-right-outline', 'database-arrow-up', 'database-arrow-up-outline', 'database-check', 'database-check-outline', 'database-clock', 'database-clock-outline', 'database-cog', 'database-cog-outline', 'database-edit', 'database-edit-outline', 'database-export', 'database-export-outline', 'database-import', 'database-import-outline', 'database-lock', 'database-lock-outline', 'database-marker', 'database-marker-outline', 'database-minus', 'database-minus-outline', 'database-off', 'database-off-outline', 'database-outline', 'database-plus', 'database-plus-outline', 'database-refresh', 'database-refresh-outline', 'database-remove', 'database-remove-outline', 'database-search', 'database-search-outline', 'database-settings', 'database-settings-outline', 'database-sync', 'database-sync-outline', 'death-star', 'death-star-variant', 'deathly-hallows', 'debian', 'debug-step-into', 'debug-step-out', 'debug-step-over', 'decagram', 'decagram-outline', 'decimal', 'decimal-comma', 'decimal-comma-decrease', 'decimal-comma-increase', 'decimal-decrease', 'decimal-increase', 'delete', 'delete-alert', 'delete-alert-outline', 'delete-circle', 'delete-circle-outline', 'delete-clock', 'delete-clock-outline', 'delete-empty', 'delete-empty-outline', 'delete-forever', 'delete-forever-outline', 'delete-off', 'delete-off-outline', 'delete-outline', 'delete-restore', 'delete-sweep', 'delete-sweep-outline', 'delete-variant', 'delta', 'desk', 'desk-lamp', 'deskphone', 'desktop-classic', 'desktop-mac', 'desktop-mac-dashboard', 'desktop-tower', 'desktop-tower-monitor', 'details', 'dev-to', 'developer-board', 'deviantart', 'devices', 'diabetes', 'dialpad', 'diameter', 'diameter-outline', 'diameter-variant', 'diamond', 'diamond-outline', 'diamond-stone', 'dice-1', 'dice-1-outline', 'dice-2', 'dice-2-outline', 'dice-3', 'dice-3-outline', 'dice-4', 'dice-4-outline', 'dice-5', 'dice-5-outline', 'dice-6', 'dice-6-outline', 'dice-d10', 'dice-d10-outline', 'dice-d12', 'dice-d12-outline', 'dice-d20', 'dice-d20-outline', 'dice-d4', 'dice-d4-outline', 'dice-d6', 'dice-d6-outline', 'dice-d8', 'dice-d8-outline', 'dice-multiple', 'dice-multiple-outline', 'digital-ocean', 'dip-switch', 'directions', 'directions-fork', 'disc', 'disc-alert', 'disc-player', 'discord', 'dishwasher', 'dishwasher-alert', 'dishwasher-off', 'disqus', 'distribute-horizontal-center', 'distribute-horizontal-left', 'distribute-horizontal-right', 'distribute-vertical-bottom', 'distribute-vertical-center', 'distribute-vertical-top', 'diving-flippers', 'diving-helmet', 'diving-scuba', 'diving-scuba-flag', 'diving-scuba-tank', 'diving-scuba-tank-multiple', 'diving-snorkel', 'division', 'division-box', 'dlna', 'dna', 'dns', 'dns-outline', 'do-not-disturb', 'do-not-disturb-off', 'dock-bottom', 'dock-left', 'dock-right', 'dock-top', 'dock-window', 'docker', 'doctor', 'dog', 'dog-service', 'dog-side', 'dolby', 'dolly', 'domain', 'domain-off', 'domain-plus', 'domain-remove', 'dome-light', 'domino-mask', 'donkey', 'door', 'door-closed', 'door-closed-lock', 'door-open', 'doorbell', 'doorbell-video', 'dot-net', 'dots-grid', 'dots-hexagon', 'dots-horizontal', 'dots-horizontal-circle', 'dots-horizontal-circle-outline', 'dots-square', 'dots-triangle', 'dots-vertical', 'dots-vertical-circle', 'dots-vertical-circle-outline', 'douban', 'download', 'download-box', 'download-box-outline', 'download-circle', 'download-circle-outline', 'download-lock', 'download-lock-outline', 'download-multiple', 'download-network', 'download-network-outline', 'download-off', 'download-off-outline', 'download-outline', 'drag', 'drag-horizontal', 'drag-horizontal-variant', 'drag-variant', 'drag-vertical', 'drag-vertical-variant', 'drama-masks', 'draw', 'drawing', 'drawing-box', 'dresser', 'dresser-outline', 'drone', 'dropbox', 'drupal', 'duck', 'dumbbell', 'dump-truck', 'ear-hearing', 'ear-hearing-off', 'earth', 'earth-arrow-right', 'earth-box', 'earth-box-minus', 'earth-box-off', 'earth-box-plus', 'earth-box-remove', 'earth-minus', 'earth-off', 'earth-plus', 'earth-remove', 'egg', 'egg-easter', 'egg-off', 'egg-off-outline', 'egg-outline', 'eiffel-tower', 'eight-track', 'eject', 'eject-outline', 'electric-switch', 'electric-switch-closed', 'electron-framework', 'elephant', 'elevation-decline', 'elevation-rise', 'elevator', 'elevator-down', 'elevator-passenger', 'elevator-up', 'ellipse', 'ellipse-outline', 'email', 'email-alert', 'email-alert-outline', 'email-box', 'email-check', 'email-check-outline', 'email-edit', 'email-edit-outline', 'email-lock', 'email-mark-as-unread', 'email-minus', 'email-minus-outline', 'email-multiple', 'email-multiple-outline', 'email-newsletter', 'email-off', 'email-off-outline', 'email-open', 'email-open-multiple', 'email-open-multiple-outline', 'email-open-outline', 'email-outline', 'email-plus', 'email-plus-outline', 'email-receive', 'email-receive-outline', 'email-remove', 'email-remove-outline', 'email-search', 'email-search-outline', 'email-send', 'email-send-outline', 'email-sync', 'email-sync-outline', 'email-variant', 'ember', 'emby', 'emoticon', 'emoticon-angry', 'emoticon-angry-outline', 'emoticon-confused', 'emoticon-confused-outline', 'emoticon-cool', 'emoticon-cool-outline', 'emoticon-cry', 'emoticon-cry-outline', 'emoticon-dead', 'emoticon-dead-outline', 'emoticon-devil', 'emoticon-devil-outline', 'emoticon-excited', 'emoticon-excited-outline', 'emoticon-frown', 'emoticon-frown-outline', 'emoticon-happy', 'emoticon-happy-outline', 'emoticon-kiss', 'emoticon-kiss-outline', 'emoticon-lol', 'emoticon-lol-outline', 'emoticon-neutral', 'emoticon-neutral-outline', 'emoticon-outline', 'emoticon-poop', 'emoticon-poop-outline', 'emoticon-sad', 'emoticon-sad-outline', 'emoticon-sick', 'emoticon-sick-outline', 'emoticon-tongue', 'emoticon-tongue-outline', 'emoticon-wink', 'emoticon-wink-outline', 'engine', 'engine-off', 'engine-off-outline', 'engine-outline', 'epsilon', 'equal', 'equal-box', 'equalizer', 'equalizer-outline', 'eraser', 'eraser-variant', 'escalator', 'escalator-box', 'escalator-down', 'escalator-up', 'eslint', 'et', 'ethereum', 'ethernet', 'ethernet-cable', 'ethernet-cable-off', 'ev-plug-ccs1', 'ev-plug-ccs2', 'ev-plug-chademo', 'ev-plug-tesla', 'ev-plug-type1', 'ev-plug-type2', 'ev-station', 'evernote', 'excavator', 'exclamation', 'exclamation-thick', 'exit-run', 'exit-to-app', 'expand-all', 'expand-all-outline', 'expansion-card', 'expansion-card-variant', 'exponent', 'exponent-box', 'export', 'export-variant', 'eye', 'eye-check', 'eye-check-outline', 'eye-circle', 'eye-circle-outline', 'eye-minus', 'eye-minus-outline', 'eye-off', 'eye-off-outline', 'eye-outline', 'eye-plus', 'eye-plus-outline', 'eye-remove', 'eye-remove-outline', 'eye-settings', 'eye-settings-outline', 'eyedropper', 'eyedropper-minus', 'eyedropper-off', 'eyedropper-plus', 'eyedropper-remove', 'eyedropper-variant', 'face', 'face-agent', 'face-mask', 'face-mask-outline', 'face-outline', 'face-profile', 'face-profile-woman', 'face-recognition', 'face-shimmer', 'face-shimmer-outline', 'face-woman', 'face-woman-outline', 'face-woman-shimmer', 'face-woman-shimmer-outline', 'facebook', 'facebook-gaming', 'facebook-messenger', 'facebook-workplace', 'factory', 'family-tree', 'fan', 'fan-alert', 'fan-chevron-down', 'fan-chevron-up', 'fan-minus', 'fan-off', 'fan-plus', 'fan-remove', 'fan-speed-1', 'fan-speed-2', 'fan-speed-3', 'fast-forward', 'fast-forward-10', 'fast-forward-30', 'fast-forward-5', 'fast-forward-60', 'fast-forward-outline', 'fax', 'feather', 'feature-search', 'feature-search-outline', 'fedora', 'fencing', 'ferris-wheel', 'ferry', 'file', 'file-account', 'file-account-outline', 'file-alert', 'file-alert-outline', 'file-cabinet', 'file-cad', 'file-cad-box', 'file-cancel', 'file-cancel-outline', 'file-certificate', 'file-certificate-outline', 'file-chart', 'file-chart-outline', 'file-check', 'file-check-outline', 'file-clock', 'file-clock-outline', 'file-cloud', 'file-cloud-outline', 'file-code', 'file-code-outline', 'file-cog', 'file-cog-outline', 'file-compare', 'file-delimited', 'file-delimited-outline', 'file-document', 'file-document-edit', 'file-document-edit-outline', 'file-document-multiple', 'file-document-multiple-outline', 'file-document-outline', 'file-download', 'file-download-outline', 'file-edit', 'file-edit-outline', 'file-excel', 'file-excel-box', 'file-excel-box-outline', 'file-excel-outline', 'file-export', 'file-export-outline', 'file-eye', 'file-eye-outline', 'file-find', 'file-find-outline', 'file-hidden', 'file-image', 'file-image-outline', 'file-import', 'file-import-outline', 'file-key', 'file-key-outline', 'file-link', 'file-link-outline', 'file-lock', 'file-lock-outline', 'file-move', 'file-move-outline', 'file-multiple', 'file-multiple-outline', 'file-music', 'file-music-outline', 'file-outline', 'file-pdf', 'file-pdf-box', 'file-pdf-box-outline', 'file-pdf-outline', 'file-percent', 'file-percent-outline', 'file-phone', 'file-phone-outline', 'file-plus', 'file-plus-outline', 'file-powerpoint', 'file-powerpoint-box', 'file-powerpoint-box-outline', 'file-powerpoint-outline', 'file-presentation-box', 'file-question', 'file-question-outline', 'file-refresh', 'file-refresh-outline', 'file-remove', 'file-remove-outline', 'file-replace', 'file-replace-outline', 'file-restore', 'file-restore-outline', 'file-search', 'file-search-outline', 'file-send', 'file-send-outline', 'file-settings', 'file-settings-outline', 'file-star', 'file-star-outline', 'file-swap', 'file-swap-outline', 'file-sync', 'file-sync-outline', 'file-table', 'file-table-box', 'file-table-box-multiple', 'file-table-box-multiple-outline', 'file-table-box-outline', 'file-table-outline', 'file-tree', 'file-tree-outline', 'file-undo', 'file-undo-outline', 'file-upload', 'file-upload-outline', 'file-video', 'file-video-outline', 'file-word', 'file-word-box', 'file-word-box-outline', 'file-word-outline', 'film', 'filmstrip', 'filmstrip-box', 'filmstrip-box-multiple', 'filmstrip-off', 'filter', 'filter-menu', 'filter-menu-outline', 'filter-minus', 'filter-minus-outline', 'filter-off', 'filter-off-outline', 'filter-outline', 'filter-plus', 'filter-plus-outline', 'filter-remove', 'filter-remove-outline', 'filter-variant', 'filter-variant-minus', 'filter-variant-plus', 'filter-variant-remove', 'finance', 'find-replace', 'fingerprint', 'fingerprint-off', 'fire', 'fire-alert', 'fire-extinguisher', 'fire-hydrant', 'fire-hydrant-alert', 'fire-hydrant-off', 'fire-truck', 'firebase', 'firefox', 'fireplace', 'fireplace-off', 'firework', 'fish', 'fish-off', 'fishbowl', 'fishbowl-outline', 'fit-to-page', 'fit-to-page-outline', 'flag', 'flag-checkered', 'flag-minus', 'flag-minus-outline', 'flag-outline', 'flag-plus', 'flag-plus-outline', 'flag-remove', 'flag-remove-outline', 'flag-triangle', 'flag-variant', 'flag-variant-outline', 'flare', 'flash', 'flash-alert', 'flash-alert-outline', 'flash-auto', 'flash-circle', 'flash-off', 'flash-outline', 'flash-red-eye', 'flashlight', 'flashlight-off', 'flask', 'flask-empty', 'flask-empty-minus', 'flask-empty-minus-outline', 'flask-empty-off', 'flask-empty-off-outline', 'flask-empty-outline', 'flask-empty-plus', 'flask-empty-plus-outline', 'flask-empty-remove', 'flask-empty-remove-outline', 'flask-minus', 'flask-minus-outline', 'flask-off', 'flask-off-outline', 'flask-outline', 'flask-plus', 'flask-plus-outline', 'flask-remove', 'flask-remove-outline', 'flask-round-bottom', 'flask-round-bottom-empty', 'flask-round-bottom-empty-outline', 'flask-round-bottom-outline', 'fleur-de-lis', 'flip-horizontal', 'flip-to-back', 'flip-to-front', 'flip-vertical', 'floor-lamp', 'floor-lamp-dual', 'floor-lamp-variant', 'floor-plan', 'floppy', 'floppy-variant', 'flower', 'flower-outline', 'flower-poppy', 'flower-tulip', 'flower-tulip-outline', 'focus-auto', 'focus-field', 'focus-field-horizontal', 'focus-field-vertical', 'folder', 'folder-account', 'folder-account-outline', 'folder-alert', 'folder-alert-outline', 'folder-clock', 'folder-clock-outline', 'folder-cog', 'folder-cog-outline', 'folder-download', 'folder-download-outline', 'folder-edit', 'folder-edit-outline', 'folder-google-drive', 'folder-heart', 'folder-heart-outline', 'folder-home', 'folder-home-outline', 'folder-image', 'folder-information', 'folder-information-outline', 'folder-key', 'folder-key-network', 'folder-key-network-outline', 'folder-key-outline', 'folder-lock', 'folder-lock-open', 'folder-marker', 'folder-marker-outline', 'folder-move', 'folder-move-outline', 'folder-multiple', 'folder-multiple-image', 'folder-multiple-outline', 'folder-multiple-plus', 'folder-multiple-plus-outline', 'folder-music', 'folder-music-outline', 'folder-network', 'folder-network-outline', 'folder-open', 'folder-open-outline', 'folder-outline', 'folder-plus', 'folder-plus-outline', 'folder-pound', 'folder-pound-outline', 'folder-refresh', 'folder-refresh-outline', 'folder-remove', 'folder-remove-outline', 'folder-search', 'folder-search-outline', 'folder-settings', 'folder-settings-outline', 'folder-star', 'folder-star-multiple', 'folder-star-multiple-outline', 'folder-star-outline', 'folder-swap', 'folder-swap-outline', 'folder-sync', 'folder-sync-outline', 'folder-table', 'folder-table-outline', 'folder-text', 'folder-text-outline', 'folder-upload', 'folder-upload-outline', 'folder-zip', 'folder-zip-outline', 'font-awesome', 'food', 'food-apple', 'food-apple-outline', 'food-croissant', 'food-drumstick', 'food-drumstick-off', 'food-drumstick-off-outline', 'food-drumstick-outline', 'food-fork-drink', 'food-halal', 'food-kosher', 'food-off', 'food-steak', 'food-steak-off', 'food-variant', 'food-variant-off', 'foot-print', 'football', 'football-australian', 'football-helmet', 'forklift', 'form-dropdown', 'form-select', 'form-textarea', 'form-textbox', 'form-textbox-lock', 'form-textbox-password', 'format-align-bottom', 'format-align-center', 'format-align-justify', 'format-align-left', 'format-align-middle', 'format-align-right', 'format-align-top', 'format-annotation-minus', 'format-annotation-plus', 'format-bold', 'format-clear', 'format-color-fill', 'format-color-highlight', 'format-color-marker-cancel', 'format-color-text', 'format-columns', 'format-float-center', 'format-float-left', 'format-float-none', 'format-float-right', 'format-font', 'format-font-size-decrease', 'format-font-size-increase', 'format-header-1', 'format-header-2', 'format-header-3', 'format-header-4', 'format-header-5', 'format-header-6', 'format-header-decrease', 'format-header-equal', 'format-header-increase', 'format-header-pound', 'format-horizontal-align-center', 'format-horizontal-align-left', 'format-horizontal-align-right', 'format-indent-decrease', 'format-indent-increase', 'format-italic', 'format-letter-case', 'format-letter-case-lower', 'format-letter-case-upper', 'format-letter-ends-with', 'format-letter-matches', 'format-letter-starts-with', 'format-line-spacing', 'format-line-style', 'format-line-weight', 'format-list-bulleted', 'format-list-bulleted-square', 'format-list-bulleted-triangle', 'format-list-bulleted-type', 'format-list-checkbox', 'format-list-checks', 'format-list-numbered', 'format-list-numbered-rtl', 'format-list-text', 'format-overline', 'format-page-break', 'format-paint', 'format-paragraph', 'format-pilcrow', 'format-quote-close', 'format-quote-close-outline', 'format-quote-open', 'format-quote-open-outline', 'format-rotate-90', 'format-section', 'format-size', 'format-strikethrough', 'format-strikethrough-variant', 'format-subscript', 'format-superscript', 'format-text', 'format-text-rotation-angle-down', 'format-text-rotation-angle-up', 'format-text-rotation-down', 'format-text-rotation-down-vertical', 'format-text-rotation-none', 'format-text-rotation-up', 'format-text-rotation-vertical', 'format-text-variant', 'format-text-variant-outline', 'format-text-wrapping-clip', 'format-text-wrapping-overflow', 'format-text-wrapping-wrap', 'format-textbox', 'format-textdirection-l-to-r', 'format-textdirection-r-to-l', 'format-title', 'format-underline', 'format-vertical-align-bottom', 'format-vertical-align-center', 'format-vertical-align-top', 'format-wrap-inline', 'format-wrap-square', 'format-wrap-tight', 'format-wrap-top-bottom', 'forum', 'forum-outline', 'forward', 'forwardburger', 'fountain', 'fountain-pen', 'fountain-pen-tip', 'freebsd', 'frequently-asked-questions', 'fridge', 'fridge-alert', 'fridge-alert-outline', 'fridge-bottom', 'fridge-industrial', 'fridge-industrial-alert', 'fridge-industrial-alert-outline', 'fridge-industrial-off', 'fridge-industrial-off-outline', 'fridge-industrial-outline', 'fridge-off', 'fridge-off-outline', 'fridge-outline', 'fridge-top', 'fridge-variant', 'fridge-variant-alert', 'fridge-variant-alert-outline', 'fridge-variant-off', 'fridge-variant-off-outline', 'fridge-variant-outline', 'fruit-cherries', 'fruit-cherries-off', 'fruit-citrus', 'fruit-citrus-off', 'fruit-grapes', 'fruit-grapes-outline', 'fruit-pineapple', 'fruit-watermelon', 'fuel', 'fullscreen', 'fullscreen-exit', 'function', 'function-variant', 'furigana-horizontal', 'furigana-vertical', 'fuse', 'fuse-alert', 'fuse-blade', 'fuse-off', 'gamepad', 'gamepad-circle', 'gamepad-circle-down', 'gamepad-circle-left', 'gamepad-circle-outline', 'gamepad-circle-right', 'gamepad-circle-up', 'gamepad-down', 'gamepad-left', 'gamepad-right', 'gamepad-round', 'gamepad-round-down', 'gamepad-round-left', 'gamepad-round-outline', 'gamepad-round-right', 'gamepad-round-up', 'gamepad-square', 'gamepad-square-outline', 'gamepad-up', 'gamepad-variant', 'gamepad-variant-outline', 'gamma', 'gantry-crane', 'garage', 'garage-alert', 'garage-alert-variant', 'garage-open', 'garage-open-variant', 'garage-variant', 'gas-cylinder', 'gas-station', 'gas-station-off', 'gas-station-off-outline', 'gas-station-outline', 'gate', 'gate-and', 'gate-arrow-right', 'gate-nand', 'gate-nor', 'gate-not', 'gate-open', 'gate-or', 'gate-xnor', 'gate-xor', 'gatsby', 'gauge', 'gauge-empty', 'gauge-full', 'gauge-low', 'gavel', 'gender-female', 'gender-male', 'gender-male-female', 'gender-male-female-variant', 'gender-non-binary', 'gender-transgender', 'gentoo', 'gesture', 'gesture-double-tap', 'gesture-pinch', 'gesture-spread', 'gesture-swipe', 'gesture-swipe-down', 'gesture-swipe-horizontal', 'gesture-swipe-left', 'gesture-swipe-right', 'gesture-swipe-up', 'gesture-swipe-vertical', 'gesture-tap', 'gesture-tap-box', 'gesture-tap-button', 'gesture-tap-hold', 'gesture-two-double-tap', 'gesture-two-tap', 'ghost', 'ghost-off', 'ghost-off-outline', 'ghost-outline', 'gif', 'gift', 'gift-outline', 'git', 'github', 'gitlab', 'glass-cocktail', 'glass-cocktail-off', 'glass-flute', 'glass-mug', 'glass-mug-off', 'glass-mug-variant', 'glass-mug-variant-off', 'glass-pint-outline', 'glass-stange', 'glass-tulip', 'glass-wine', 'glasses', 'globe-light', 'globe-model', 'gmail', 'gnome', 'go-kart', 'go-kart-track', 'gog', 'gold', 'golf', 'golf-cart', 'golf-tee', 'gondola', 'goodreads', 'google', 'google-ads', 'google-analytics', 'google-assistant', 'google-cardboard', 'google-chrome', 'google-circles', 'google-circles-communities', 'google-circles-extended', 'google-circles-group', 'google-classroom', 'google-cloud', 'google-controller', 'google-controller-off', 'google-downasaur', 'google-drive', 'google-earth', 'google-fit', 'google-glass', 'google-hangouts', 'google-home', 'google-keep', 'google-lens', 'google-maps', 'google-my-business', 'google-nearby', 'google-photos', 'google-play', 'google-plus', 'google-podcast', 'google-spreadsheet', 'google-street-view', 'google-translate', 'gradient', 'grain', 'graph', 'graph-outline', 'graphql', 'grass', 'grave-stone', 'grease-pencil', 'greater-than', 'greater-than-or-equal', 'grid', 'grid-large', 'grid-off', 'grill', 'grill-outline', 'group', 'guitar-acoustic', 'guitar-electric', 'guitar-pick', 'guitar-pick-outline', 'guy-fawkes-mask', 'hail', 'hair-dryer', 'hair-dryer-outline', 'halloween', 'hamburger', 'hammer', 'hammer-screwdriver', 'hammer-wrench', 'hand', 'hand-heart', 'hand-heart-outline', 'hand-left', 'hand-okay', 'hand-peace', 'hand-peace-variant', 'hand-pointing-down', 'hand-pointing-left', 'hand-pointing-right', 'hand-pointing-up', 'hand-right', 'hand-saw', 'hand-wash', 'hand-wash-outline', 'hand-water', 'handball', 'handcuffs', 'handshake', 'handshake-outline', 'hanger', 'hard-hat', 'harddisk', 'harddisk-plus', 'harddisk-remove', 'hat-fedora', 'hazard-lights', 'hdr', 'hdr-off', 'head', 'head-alert', 'head-alert-outline', 'head-check', 'head-check-outline', 'head-cog', 'head-cog-outline', 'head-dots-horizontal', 'head-dots-horizontal-outline', 'head-flash', 'head-flash-outline', 'head-heart', 'head-heart-outline', 'head-lightbulb', 'head-lightbulb-outline', 'head-minus', 'head-minus-outline', 'head-outline', 'head-plus', 'head-plus-outline', 'head-question', 'head-question-outline', 'head-remove', 'head-remove-outline', 'head-snowflake', 'head-snowflake-outline', 'head-sync', 'head-sync-outline', 'headphones', 'headphones-bluetooth', 'headphones-box', 'headphones-off', 'headphones-settings', 'headset', 'headset-dock', 'headset-off', 'heart', 'heart-box', 'heart-box-outline', 'heart-broken', 'heart-broken-outline', 'heart-circle', 'heart-circle-outline', 'heart-cog', 'heart-cog-outline', 'heart-flash', 'heart-half', 'heart-half-full', 'heart-half-outline', 'heart-minus', 'heart-minus-outline', 'heart-multiple', 'heart-multiple-outline', 'heart-off', 'heart-off-outline', 'heart-outline', 'heart-plus', 'heart-plus-outline', 'heart-pulse', 'heart-remove', 'heart-remove-outline', 'heart-settings', 'heart-settings-outline', 'helicopter', 'help', 'help-box', 'help-circle', 'help-circle-outline', 'help-network', 'help-network-outline', 'help-rhombus', 'help-rhombus-outline', 'hexadecimal', 'hexagon', 'hexagon-multiple', 'hexagon-multiple-outline', 'hexagon-outline', 'hexagon-slice-1', 'hexagon-slice-2', 'hexagon-slice-3', 'hexagon-slice-4', 'hexagon-slice-5', 'hexagon-slice-6', 'hexagram', 'hexagram-outline', 'high-definition', 'high-definition-box', 'highway', 'hiking', 'hinduism', 'history', 'hockey-puck', 'hockey-sticks', 'hololens', 'home', 'home-account', 'home-alert', 'home-alert-outline', 'home-analytics', 'home-assistant', 'home-automation', 'home-circle', 'home-circle-outline', 'home-city', 'home-city-outline', 'home-currency-usd', 'home-edit', 'home-edit-outline', 'home-export-outline', 'home-flood', 'home-floor-0', 'home-floor-1', 'home-floor-2', 'home-floor-3', 'home-floor-a', 'home-floor-b', 'home-floor-g', 'home-floor-l', 'home-floor-negative-1', 'home-group', 'home-heart', 'home-import-outline', 'home-lightbulb', 'home-lightbulb-outline', 'home-lock', 'home-lock-open', 'home-map-marker', 'home-minus', 'home-minus-outline', 'home-modern', 'home-outline', 'home-plus', 'home-plus-outline', 'home-remove', 'home-remove-outline', 'home-roof', 'home-search', 'home-search-outline', 'home-thermometer', 'home-thermometer-outline', 'home-variant', 'home-variant-outline', 'hook', 'hook-off', 'hops', 'horizontal-rotate-clockwise', 'horizontal-rotate-counterclockwise', 'horse', 'horse-human', 'horse-variant', 'horseshoe', 'hospital', 'hospital-box', 'hospital-box-outline', 'hospital-building', 'hospital-marker', 'hot-tub', 'hours-24', 'hubspot', 'hulu', 'human', 'human-baby-changing-table', 'human-cane', 'human-capacity-decrease', 'human-capacity-increase', 'human-child', 'human-edit', 'human-female', 'human-female-boy', 'human-female-dance', 'human-female-female', 'human-female-girl', 'human-greeting', 'human-greeting-proximity', 'human-handsdown', 'human-handsup', 'human-male', 'human-male-boy', 'human-male-child', 'human-male-female', 'human-male-girl', 'human-male-height', 'human-male-height-variant', 'human-male-male', 'human-pregnant', 'human-queue', 'human-scooter', 'human-wheelchair', 'humble-bundle', 'hvac', 'hvac-off', 'hydraulic-oil-level', 'hydraulic-oil-temperature', 'hydro-power', 'ice-cream', 'ice-cream-off', 'ice-pop', 'id-card', 'identifier', 'ideogram-cjk', 'ideogram-cjk-variant', 'iframe', 'iframe-array', 'iframe-array-outline', 'iframe-braces', 'iframe-braces-outline', 'iframe-outline', 'iframe-parentheses', 'iframe-parentheses-outline', 'iframe-variable', 'iframe-variable-outline', 'image', 'image-album', 'image-area', 'image-area-close', 'image-auto-adjust', 'image-broken', 'image-broken-variant', 'image-edit', 'image-edit-outline', 'image-filter-black-white', 'image-filter-center-focus', 'image-filter-center-focus-strong', 'image-filter-center-focus-strong-outline', 'image-filter-center-focus-weak', 'image-filter-drama', 'image-filter-frames', 'image-filter-hdr', 'image-filter-none', 'image-filter-tilt-shift', 'image-filter-vintage', 'image-frame', 'image-minus', 'image-move', 'image-multiple', 'image-multiple-outline', 'image-off', 'image-off-outline', 'image-outline', 'image-plus', 'image-remove', 'image-search', 'image-search-outline', 'image-size-select-actual', 'image-size-select-large', 'image-size-select-small', 'image-text', 'import', 'inbox', 'inbox-arrow-down', 'inbox-arrow-down-outline', 'inbox-arrow-up', 'inbox-arrow-up-outline', 'inbox-full', 'inbox-full-outline', 'inbox-multiple', 'inbox-multiple-outline', 'inbox-outline', 'inbox-remove', 'inbox-remove-outline', 'incognito', 'incognito-circle', 'incognito-circle-off', 'incognito-off', 'infinity', 'information', 'information-outline', 'information-variant', 'instagram', 'instrument-triangle', 'invert-colors', 'invert-colors-off', 'iobroker', 'ip', 'ip-network', 'ip-network-outline', 'ipod', 'islam', 'island', 'iv-bag', 'jabber', 'jeepney', 'jellyfish', 'jellyfish-outline', 'jira', 'jquery', 'jsfiddle', 'judaism', 'jump-rope', 'kabaddi', 'kangaroo', 'karate', 'keg', 'kettle', 'kettle-alert', 'kettle-alert-outline', 'kettle-off', 'kettle-off-outline', 'kettle-outline', 'kettle-steam', 'kettle-steam-outline', 'kettlebell', 'key', 'key-arrow-right', 'key-chain', 'key-chain-variant', 'key-change', 'key-link', 'key-minus', 'key-outline', 'key-plus', 'key-remove', 'key-star', 'key-variant', 'key-wireless', 'keyboard', 'keyboard-backspace', 'keyboard-caps', 'keyboard-close', 'keyboard-esc', 'keyboard-f1', 'keyboard-f10', 'keyboard-f11', 'keyboard-f12', 'keyboard-f2', 'keyboard-f3', 'keyboard-f4', 'keyboard-f5', 'keyboard-f6', 'keyboard-f7', 'keyboard-f8', 'keyboard-f9', 'keyboard-off', 'keyboard-off-outline', 'keyboard-outline', 'keyboard-return', 'keyboard-settings', 'keyboard-settings-outline', 'keyboard-space', 'keyboard-tab', 'keyboard-variant', 'khanda', 'kickstarter', 'klingon', 'knife', 'knife-military', 'kodi', 'kubernetes', 'label', 'label-multiple', 'label-multiple-outline', 'label-off', 'label-off-outline', 'label-outline', 'label-percent', 'label-percent-outline', 'label-variant', 'label-variant-outline', 'ladder', 'ladybug', 'lambda', 'lamp', 'lamps', 'lan', 'lan-check', 'lan-connect', 'lan-disconnect', 'lan-pending', 'language-c', 'language-cpp', 'language-csharp', 'language-css3', 'language-fortran', 'language-go', 'language-haskell', 'language-html5', 'language-java', 'language-javascript', 'language-kotlin', 'language-lua', 'language-markdown', 'language-markdown-outline', 'language-php', 'language-python', 'language-r', 'language-ruby', 'language-ruby-on-rails', 'language-rust', 'language-swift', 'language-typescript', 'language-xaml', 'laptop', 'laptop-chromebook', 'laptop-mac', 'laptop-off', 'laptop-windows', 'laravel', 'laser-pointer', 'lasso', 'lastpass', 'latitude', 'launch', 'lava-lamp', 'layers', 'layers-minus', 'layers-off', 'layers-off-outline', 'layers-outline', 'layers-plus', 'layers-remove', 'layers-search', 'layers-search-outline', 'layers-triple', 'layers-triple-outline', 'lead-pencil', 'leaf', 'leaf-maple', 'leaf-maple-off', 'leaf-off', 'leak', 'leak-off', 'led-off', 'led-on', 'led-outline', 'led-strip', 'led-strip-variant', 'led-variant-off', 'led-variant-on', 'led-variant-outline', 'leek', 'less-than', 'less-than-or-equal', 'library', 'library-shelves', 'license', 'lifebuoy', 'light-switch', 'lightbulb', 'lightbulb-cfl', 'lightbulb-cfl-off', 'lightbulb-cfl-spiral', 'lightbulb-cfl-spiral-off', 'lightbulb-group', 'lightbulb-group-off', 'lightbulb-group-off-outline', 'lightbulb-group-outline', 'lightbulb-multiple', 'lightbulb-multiple-off', 'lightbulb-multiple-off-outline', 'lightbulb-multiple-outline', 'lightbulb-off', 'lightbulb-off-outline', 'lightbulb-on', 'lightbulb-on-outline', 'lightbulb-outline', 'lighthouse', 'lighthouse-on', 'lightning-bolt', 'lightning-bolt-outline', 'lingerie', 'link', 'link-box', 'link-box-outline', 'link-box-variant', 'link-box-variant-outline', 'link-lock', 'link-off', 'link-plus', 'link-variant', 'link-variant-minus', 'link-variant-off', 'link-variant-plus', 'link-variant-remove', 'linkedin', 'linux', 'linux-mint', 'lipstick', 'list-status', 'litecoin', 'loading', 'location-enter', 'location-exit', 'lock', 'lock-alert', 'lock-alert-outline', 'lock-check', 'lock-check-outline', 'lock-clock', 'lock-minus', 'lock-minus-outline', 'lock-off', 'lock-off-outline', 'lock-open', 'lock-open-alert', 'lock-open-alert-outline', 'lock-open-check', 'lock-open-check-outline', 'lock-open-minus', 'lock-open-minus-outline', 'lock-open-outline', 'lock-open-plus', 'lock-open-plus-outline', 'lock-open-remove', 'lock-open-remove-outline', 'lock-open-variant', 'lock-open-variant-outline', 'lock-outline', 'lock-pattern', 'lock-plus', 'lock-plus-outline', 'lock-question', 'lock-remove', 'lock-remove-outline', 'lock-reset', 'lock-smart', 'locker', 'locker-multiple', 'login', 'login-variant', 'logout', 'logout-variant', 'longitude', 'looks', 'lotion', 'lotion-outline', 'lotion-plus', 'lotion-plus-outline', 'loupe', 'lumx', 'lungs', 'magnet', 'magnet-on', 'magnify', 'magnify-close', 'magnify-minus', 'magnify-minus-cursor', 'magnify-minus-outline', 'magnify-plus', 'magnify-plus-cursor', 'magnify-plus-outline', 'magnify-remove-cursor', 'magnify-remove-outline', 'magnify-scan', 'mail', 'mailbox', 'mailbox-open', 'mailbox-open-outline', 'mailbox-open-up', 'mailbox-open-up-outline', 'mailbox-outline', 'mailbox-up', 'mailbox-up-outline', 'manjaro', 'map', 'map-check', 'map-check-outline', 'map-clock', 'map-clock-outline', 'map-legend', 'map-marker', 'map-marker-alert', 'map-marker-alert-outline', 'map-marker-check', 'map-marker-check-outline', 'map-marker-circle', 'map-marker-distance', 'map-marker-down', 'map-marker-left', 'map-marker-left-outline', 'map-marker-minus', 'map-marker-minus-outline', 'map-marker-multiple', 'map-marker-multiple-outline', 'map-marker-off', 'map-marker-off-outline', 'map-marker-outline', 'map-marker-path', 'map-marker-plus', 'map-marker-plus-outline', 'map-marker-question', 'map-marker-question-outline', 'map-marker-radius', 'map-marker-radius-outline', 'map-marker-remove', 'map-marker-remove-outline', 'map-marker-remove-variant', 'map-marker-right', 'map-marker-right-outline', 'map-marker-star', 'map-marker-star-outline', 'map-marker-up', 'map-minus', 'map-outline', 'map-plus', 'map-search', 'map-search-outline', 'mapbox', 'margin', 'marker', 'marker-cancel', 'marker-check', 'mastodon', 'material-design', 'material-ui', 'math-compass', 'math-cos', 'math-integral', 'math-integral-box', 'math-log', 'math-norm', 'math-norm-box', 'math-sin', 'math-tan', 'matrix', 'medal', 'medal-outline', 'medical-bag', 'meditation', 'memory', 'menu', 'menu-down', 'menu-down-outline', 'menu-left', 'menu-left-outline', 'menu-open', 'menu-right', 'menu-right-outline', 'menu-swap', 'menu-swap-outline', 'menu-up', 'menu-up-outline', 'merge', 'message', 'message-alert', 'message-alert-outline', 'message-arrow-left', 'message-arrow-left-outline', 'message-arrow-right', 'message-arrow-right-outline', 'message-bookmark', 'message-bookmark-outline', 'message-bulleted', 'message-bulleted-off', 'message-cog', 'message-cog-outline', 'message-draw', 'message-flash', 'message-flash-outline', 'message-image', 'message-image-outline', 'message-lock', 'message-lock-outline', 'message-minus', 'message-minus-outline', 'message-off', 'message-off-outline', 'message-outline', 'message-plus', 'message-plus-outline', 'message-processing', 'message-processing-outline', 'message-reply', 'message-reply-text', 'message-settings', 'message-settings-outline', 'message-text', 'message-text-clock', 'message-text-clock-outline', 'message-text-lock', 'message-text-lock-outline', 'message-text-outline', 'message-video', 'meteor', 'metronome', 'metronome-tick', 'micro-sd', 'microphone', 'microphone-minus', 'microphone-off', 'microphone-outline', 'microphone-plus', 'microphone-settings', 'microphone-variant', 'microphone-variant-off', 'microscope', 'microsoft', 'microsoft-access', 'microsoft-azure', 'microsoft-azure-devops', 'microsoft-bing', 'microsoft-dynamics-365', 'microsoft-edge', 'microsoft-edge-legacy', 'microsoft-excel', 'microsoft-internet-explorer', 'microsoft-office', 'microsoft-onedrive', 'microsoft-onenote', 'microsoft-outlook', 'microsoft-powerpoint', 'microsoft-sharepoint', 'microsoft-teams', 'microsoft-visual-studio', 'microsoft-visual-studio-code', 'microsoft-windows', 'microsoft-windows-classic', 'microsoft-word', 'microsoft-xbox', 'microsoft-xbox-controller', 'microsoft-xbox-controller-battery-alert', 'microsoft-xbox-controller-battery-charging', 'microsoft-xbox-controller-battery-empty', 'microsoft-xbox-controller-battery-full', 'microsoft-xbox-controller-battery-low', 'microsoft-xbox-controller-battery-medium', 'microsoft-xbox-controller-battery-unknown', 'microsoft-xbox-controller-menu', 'microsoft-xbox-controller-off', 'microsoft-xbox-controller-view', 'microsoft-yammer', 'microwave', 'microwave-off', 'middleware', 'middleware-outline', 'midi', 'midi-port', 'mine', 'minecraft', 'mini-sd', 'minidisc', 'minus', 'minus-box', 'minus-box-multiple', 'minus-box-multiple-outline', 'minus-box-outline', 'minus-circle', 'minus-circle-multiple', 'minus-circle-multiple-outline', 'minus-circle-off', 'minus-circle-off-outline', 'minus-circle-outline', 'minus-network', 'minus-network-outline', 'minus-thick', 'mirror', 'mixed-martial-arts', 'mixed-reality', 'molecule', 'molecule-co', 'molecule-co2', 'monitor', 'monitor-cellphone', 'monitor-cellphone-star', 'monitor-clean', 'monitor-dashboard', 'monitor-edit', 'monitor-eye', 'monitor-lock', 'monitor-multiple', 'monitor-off', 'monitor-screenshot', 'monitor-share', 'monitor-speaker', 'monitor-speaker-off', 'monitor-star', 'moon-first-quarter', 'moon-full', 'moon-last-quarter', 'moon-new', 'moon-waning-crescent', 'moon-waning-gibbous', 'moon-waxing-crescent', 'moon-waxing-gibbous', 'moped', 'moped-electric', 'moped-electric-outline', 'moped-outline', 'more', 'mother-heart', 'mother-nurse', 'motion', 'motion-outline', 'motion-pause', 'motion-pause-outline', 'motion-play', 'motion-play-outline', 'motion-sensor', 'motion-sensor-off', 'motorbike', 'motorbike-electric', 'mouse', 'mouse-bluetooth', 'mouse-move-down', 'mouse-move-up', 'mouse-move-vertical', 'mouse-off', 'mouse-variant', 'mouse-variant-off', 'move-resize', 'move-resize-variant', 'movie', 'movie-edit', 'movie-edit-outline', 'movie-filter', 'movie-filter-outline', 'movie-open', 'movie-open-outline', 'movie-outline', 'movie-roll', 'movie-search', 'movie-search-outline', 'mower', 'mower-bag', 'muffin', 'multiplication', 'multiplication-box', 'mushroom', 'mushroom-off', 'mushroom-off-outline', 'mushroom-outline', 'music', 'music-accidental-double-flat', 'music-accidental-double-sharp', 'music-accidental-flat', 'music-accidental-natural', 'music-accidental-sharp', 'music-box', 'music-box-multiple', 'music-box-multiple-outline', 'music-box-outline', 'music-circle', 'music-circle-outline', 'music-clef-alto', 'music-clef-bass', 'music-clef-treble', 'music-note', 'music-note-bluetooth', 'music-note-bluetooth-off', 'music-note-eighth', 'music-note-eighth-dotted', 'music-note-half', 'music-note-half-dotted', 'music-note-off', 'music-note-off-outline', 'music-note-outline', 'music-note-plus', 'music-note-quarter', 'music-note-quarter-dotted', 'music-note-sixteenth', 'music-note-sixteenth-dotted', 'music-note-whole', 'music-note-whole-dotted', 'music-off', 'music-rest-eighth', 'music-rest-half', 'music-rest-quarter', 'music-rest-sixteenth', 'music-rest-whole', 'mustache', 'nail', 'nas', 'nativescript', 'nature', 'nature-people', 'navigation', 'navigation-outline', 'near-me', 'necklace', 'needle', 'netflix', 'network', 'network-off', 'network-off-outline', 'network-outline', 'network-strength-1', 'network-strength-1-alert', 'network-strength-2', 'network-strength-2-alert', 'network-strength-3', 'network-strength-3-alert', 'network-strength-4', 'network-strength-4-alert', 'network-strength-off', 'network-strength-off-outline', 'network-strength-outline', 'new-box', 'newspaper', 'newspaper-minus', 'newspaper-plus', 'newspaper-variant', 'newspaper-variant-multiple', 'newspaper-variant-multiple-outline', 'newspaper-variant-outline', 'nfc', 'nfc-search-variant', 'nfc-tap', 'nfc-variant', 'nfc-variant-off', 'ninja', 'nintendo-game-boy', 'nintendo-switch', 'nintendo-wii', 'nintendo-wiiu', 'nix', 'nodejs', 'noodles', 'not-equal', 'not-equal-variant', 'note', 'note-minus', 'note-minus-outline', 'note-multiple', 'note-multiple-outline', 'note-outline', 'note-plus', 'note-plus-outline', 'note-remove', 'note-remove-outline', 'note-search', 'note-search-outline', 'note-text', 'note-text-outline', 'notebook', 'notebook-check', 'notebook-check-outline', 'notebook-edit', 'notebook-edit-outline', 'notebook-minus', 'notebook-minus-outline', 'notebook-multiple', 'notebook-outline', 'notebook-plus', 'notebook-plus-outline', 'notebook-remove', 'notebook-remove-outline', 'notification-clear-all', 'npm', 'nuke', 'null', 'numeric', 'numeric-0', 'numeric-0-box', 'numeric-0-box-multiple', 'numeric-0-box-multiple-outline', 'numeric-0-box-outline', 'numeric-0-circle', 'numeric-0-circle-outline', 'numeric-1', 'numeric-1-box', 'numeric-1-box-multiple', 'numeric-1-box-multiple-outline', 'numeric-1-box-outline', 'numeric-1-circle', 'numeric-1-circle-outline', 'numeric-10', 'numeric-10-box', 'numeric-10-box-multiple', 'numeric-10-box-multiple-outline', 'numeric-10-box-outline', 'numeric-10-circle', 'numeric-10-circle-outline', 'numeric-2', 'numeric-2-box', 'numeric-2-box-multiple', 'numeric-2-box-multiple-outline', 'numeric-2-box-outline', 'numeric-2-circle', 'numeric-2-circle-outline', 'numeric-3', 'numeric-3-box', 'numeric-3-box-multiple', 'numeric-3-box-multiple-outline', 'numeric-3-box-outline', 'numeric-3-circle', 'numeric-3-circle-outline', 'numeric-4', 'numeric-4-box', 'numeric-4-box-multiple', 'numeric-4-box-multiple-outline', 'numeric-4-box-outline', 'numeric-4-circle', 'numeric-4-circle-outline', 'numeric-5', 'numeric-5-box', 'numeric-5-box-multiple', 'numeric-5-box-multiple-outline', 'numeric-5-box-outline', 'numeric-5-circle', 'numeric-5-circle-outline', 'numeric-6', 'numeric-6-box', 'numeric-6-box-multiple', 'numeric-6-box-multiple-outline', 'numeric-6-box-outline', 'numeric-6-circle', 'numeric-6-circle-outline', 'numeric-7', 'numeric-7-box', 'numeric-7-box-multiple', 'numeric-7-box-multiple-outline', 'numeric-7-box-outline', 'numeric-7-circle', 'numeric-7-circle-outline', 'numeric-8', 'numeric-8-box', 'numeric-8-box-multiple', 'numeric-8-box-multiple-outline', 'numeric-8-box-outline', 'numeric-8-circle', 'numeric-8-circle-outline', 'numeric-9', 'numeric-9-box', 'numeric-9-box-multiple', 'numeric-9-box-multiple-outline', 'numeric-9-box-outline', 'numeric-9-circle', 'numeric-9-circle-outline', 'numeric-9-plus', 'numeric-9-plus-box', 'numeric-9-plus-box-multiple', 'numeric-9-plus-box-multiple-outline', 'numeric-9-plus-box-outline', 'numeric-9-plus-circle', 'numeric-9-plus-circle-outline', 'numeric-negative-1', 'numeric-positive-1', 'nut', 'nutrition', 'nuxt', 'oar', 'ocarina', 'oci', 'ocr', 'octagon', 'octagon-outline', 'octagram', 'octagram-outline', 'odnoklassniki', 'offer', 'office-building', 'office-building-marker', 'office-building-marker-outline', 'office-building-outline', 'oil', 'oil-lamp', 'oil-level', 'oil-temperature', 'omega', 'one-up', 'onepassword', 'opacity', 'open-in-app', 'open-in-new', 'open-source-initiative', 'openid', 'opera', 'orbit', 'orbit-variant', 'order-alphabetical-ascending', 'order-alphabetical-descending', 'order-bool-ascending', 'order-bool-ascending-variant', 'order-bool-descending', 'order-bool-descending-variant', 'order-numeric-ascending', 'order-numeric-descending', 'origin', 'ornament', 'ornament-variant', 'outdoor-lamp', 'overscan', 'owl', 'pac-man', 'package', 'package-down', 'package-up', 'package-variant', 'package-variant-closed', 'page-first', 'page-last', 'page-layout-body', 'page-layout-footer', 'page-layout-header', 'page-layout-header-footer', 'page-layout-sidebar-left', 'page-layout-sidebar-right', 'page-next', 'page-next-outline', 'page-previous', 'page-previous-outline', 'pail', 'pail-minus', 'pail-minus-outline', 'pail-off', 'pail-off-outline', 'pail-outline', 'pail-plus', 'pail-plus-outline', 'pail-remove', 'pail-remove-outline', 'palette', 'palette-advanced', 'palette-outline', 'palette-swatch', 'palette-swatch-outline', 'palm-tree', 'pan', 'pan-bottom-left', 'pan-bottom-right', 'pan-down', 'pan-horizontal', 'pan-left', 'pan-right', 'pan-top-left', 'pan-top-right', 'pan-up', 'pan-vertical', 'panda', 'pandora', 'panorama', 'panorama-fisheye', 'panorama-horizontal', 'panorama-vertical', 'panorama-wide-angle', 'paper-cut-vertical', 'paper-roll', 'paper-roll-outline', 'paperclip', 'parachute', 'parachute-outline', 'parking', 'party-popper', 'passport', 'passport-biometric', 'pasta', 'patio-heater', 'patreon', 'pause', 'pause-circle', 'pause-circle-outline', 'pause-octagon', 'pause-octagon-outline', 'paw', 'paw-off', 'paw-off-outline', 'paw-outline', 'pdf-box', 'peace', 'peanut', 'peanut-off', 'peanut-off-outline', 'peanut-outline', 'pen', 'pen-lock', 'pen-minus', 'pen-off', 'pen-plus', 'pen-remove', 'pencil', 'pencil-box', 'pencil-box-multiple', 'pencil-box-multiple-outline', 'pencil-box-outline', 'pencil-circle', 'pencil-circle-outline', 'pencil-lock', 'pencil-lock-outline', 'pencil-minus', 'pencil-minus-outline', 'pencil-off', 'pencil-off-outline', 'pencil-outline', 'pencil-plus', 'pencil-plus-outline', 'pencil-remove', 'pencil-remove-outline', 'pencil-ruler', 'penguin', 'pentagon', 'pentagon-outline', 'pentagram', 'percent', 'percent-outline', 'periodic-table', 'perspective-less', 'perspective-more', 'pharmacy', 'phone', 'phone-alert', 'phone-alert-outline', 'phone-bluetooth', 'phone-bluetooth-outline', 'phone-cancel', 'phone-cancel-outline', 'phone-check', 'phone-check-outline', 'phone-classic', 'phone-classic-off', 'phone-dial', 'phone-dial-outline', 'phone-forward', 'phone-forward-outline', 'phone-hangup', 'phone-hangup-outline', 'phone-in-talk', 'phone-in-talk-outline', 'phone-incoming', 'phone-incoming-outline', 'phone-lock', 'phone-lock-outline', 'phone-log', 'phone-log-outline', 'phone-message', 'phone-message-outline', 'phone-minus', 'phone-minus-outline', 'phone-missed', 'phone-missed-outline', 'phone-off', 'phone-off-outline', 'phone-outgoing', 'phone-outgoing-outline', 'phone-outline', 'phone-paused', 'phone-paused-outline', 'phone-plus', 'phone-plus-outline', 'phone-remove', 'phone-remove-outline', 'phone-return', 'phone-return-outline', 'phone-ring', 'phone-ring-outline', 'phone-rotate-landscape', 'phone-rotate-portrait', 'phone-settings', 'phone-settings-outline', 'phone-voip', 'pi', 'pi-box', 'pi-hole', 'piano', 'pickaxe', 'picture-in-picture-bottom-right', 'picture-in-picture-bottom-right-outline', 'picture-in-picture-top-right', 'picture-in-picture-top-right-outline', 'pier', 'pier-crane', 'pig', 'pig-variant', 'pig-variant-outline', 'piggy-bank', 'piggy-bank-outline', 'pill', 'pillar', 'pin', 'pin-off', 'pin-off-outline', 'pin-outline', 'pine-tree', 'pine-tree-box', 'pine-tree-fire', 'pinterest', 'pinwheel', 'pinwheel-outline', 'pipe', 'pipe-disconnected', 'pipe-leak', 'pipe-wrench', 'pirate', 'pistol', 'piston', 'pitchfork', 'pizza', 'play', 'play-box', 'play-box-multiple', 'play-box-multiple-outline', 'play-box-outline', 'play-circle', 'play-circle-outline', 'play-network', 'play-network-outline', 'play-outline', 'play-pause', 'play-protected-content', 'play-speed', 'playlist-check', 'playlist-edit', 'playlist-minus', 'playlist-music', 'playlist-music-outline', 'playlist-play', 'playlist-plus', 'playlist-remove', 'playlist-star', 'plex', 'plus', 'plus-box', 'plus-box-multiple', 'plus-box-multiple-outline', 'plus-box-outline', 'plus-circle', 'plus-circle-multiple', 'plus-circle-multiple-outline', 'plus-circle-outline', 'plus-minus', 'plus-minus-box', 'plus-minus-variant', 'plus-network', 'plus-network-outline', 'plus-one', 'plus-outline', 'plus-thick', 'podcast', 'podium', 'podium-bronze', 'podium-gold', 'podium-silver', 'point-of-sale', 'pokeball', 'pokemon-go', 'poker-chip', 'polaroid', 'police-badge', 'police-badge-outline', 'poll', 'poll-box', 'poll-box-outline', 'polo', 'polymer', 'pool', 'popcorn', 'post', 'post-outline', 'postage-stamp', 'pot', 'pot-mix', 'pot-mix-outline', 'pot-outline', 'pot-steam', 'pot-steam-outline', 'pound', 'pound-box', 'pound-box-outline', 'power', 'power-cycle', 'power-off', 'power-on', 'power-plug', 'power-plug-off', 'power-plug-off-outline', 'power-plug-outline', 'power-settings', 'power-sleep', 'power-socket', 'power-socket-au', 'power-socket-de', 'power-socket-eu', 'power-socket-fr', 'power-socket-it', 'power-socket-jp', 'power-socket-uk', 'power-socket-us', 'power-standby', 'powershell', 'prescription', 'presentation', 'presentation-play', 'pretzel', 'printer', 'printer-3d', 'printer-3d-nozzle', 'printer-3d-nozzle-alert', 'printer-3d-nozzle-alert-outline', 'printer-3d-nozzle-outline', 'printer-alert', 'printer-check', 'printer-eye', 'printer-off', 'printer-pos', 'printer-search', 'printer-settings', 'printer-wireless', 'priority-high', 'priority-low', 'professional-hexagon', 'progress-alert', 'progress-check', 'progress-clock', 'progress-close', 'progress-download', 'progress-question', 'progress-upload', 'progress-wrench', 'projector', 'projector-screen', 'propane-tank', 'propane-tank-outline', 'protocol', 'publish', 'pulse', 'pump', 'pumpkin', 'purse', 'purse-outline', 'puzzle', 'puzzle-check', 'puzzle-check-outline', 'puzzle-edit', 'puzzle-edit-outline', 'puzzle-heart', 'puzzle-heart-outline', 'puzzle-minus', 'puzzle-minus-outline', 'puzzle-outline', 'puzzle-plus', 'puzzle-plus-outline', 'puzzle-remove', 'puzzle-remove-outline', 'puzzle-star', 'puzzle-star-outline', 'qi', 'qqchat', 'qrcode', 'qrcode-edit', 'qrcode-minus', 'qrcode-plus', 'qrcode-remove', 'qrcode-scan', 'quadcopter', 'quality-high', 'quality-low', 'quality-medium', 'quora', 'rabbit', 'racing-helmet', 'racquetball', 'radar', 'radiator', 'radiator-disabled', 'radiator-off', 'radio', 'radio-am', 'radio-fm', 'radio-handheld', 'radio-off', 'radio-tower', 'radioactive', 'radioactive-off', 'radiobox-blank', 'radiobox-marked', 'radiology-box', 'radiology-box-outline', 'radius', 'radius-outline', 'railroad-light', 'rake', 'raspberry-pi', 'ray-end', 'ray-end-arrow', 'ray-start', 'ray-start-arrow', 'ray-start-end', 'ray-start-vertex-end', 'ray-vertex', 'react', 'read', 'receipt', 'record', 'record-circle', 'record-circle-outline', 'record-player', 'record-rec', 'rectangle', 'rectangle-outline', 'recycle', 'recycle-variant', 'reddit', 'redhat', 'redo', 'redo-variant', 'reflect-horizontal', 'reflect-vertical', 'refresh', 'refresh-circle', 'regex', 'registered-trademark', 'reiterate', 'relation-many-to-many', 'relation-many-to-one', 'relation-many-to-one-or-many', 'relation-many-to-only-one', 'relation-many-to-zero-or-many', 'relation-many-to-zero-or-one', 'relation-one-or-many-to-many', 'relation-one-or-many-to-one', 'relation-one-or-many-to-one-or-many', 'relation-one-or-many-to-only-one', 'relation-one-or-many-to-zero-or-many', 'relation-one-or-many-to-zero-or-one', 'relation-one-to-many', 'relation-one-to-one', 'relation-one-to-one-or-many', 'relation-one-to-only-one', 'relation-one-to-zero-or-many', 'relation-one-to-zero-or-one', 'relation-only-one-to-many', 'relation-only-one-to-one', 'relation-only-one-to-one-or-many', 'relation-only-one-to-only-one', 'relation-only-one-to-zero-or-many', 'relation-only-one-to-zero-or-one', 'relation-zero-or-many-to-many', 'relation-zero-or-many-to-one', 'relation-zero-or-many-to-one-or-many', 'relation-zero-or-many-to-only-one', 'relation-zero-or-many-to-zero-or-many', 'relation-zero-or-many-to-zero-or-one', 'relation-zero-or-one-to-many', 'relation-zero-or-one-to-one', 'relation-zero-or-one-to-one-or-many', 'relation-zero-or-one-to-only-one', 'relation-zero-or-one-to-zero-or-many', 'relation-zero-or-one-to-zero-or-one', 'relative-scale', 'reload', 'reload-alert', 'reminder', 'remote', 'remote-desktop', 'remote-off', 'remote-tv', 'remote-tv-off', 'rename-box', 'reorder-horizontal', 'reorder-vertical', 'repeat', 'repeat-off', 'repeat-once', 'replay', 'reply', 'reply-all', 'reply-all-outline', 'reply-circle', 'reply-outline', 'reproduction', 'resistor', 'resistor-nodes', 'resize', 'resize-bottom-right', 'responsive', 'restart', 'restart-alert', 'restart-off', 'restore', 'restore-alert', 'rewind', 'rewind-10', 'rewind-30', 'rewind-5', 'rewind-60', 'rewind-outline', 'rhombus', 'rhombus-medium', 'rhombus-medium-outline', 'rhombus-outline', 'rhombus-split', 'rhombus-split-outline', 'ribbon', 'rice', 'rickshaw', 'rickshaw-electric', 'ring', 'rivet', 'road', 'road-variant', 'robber', 'robot', 'robot-angry', 'robot-angry-outline', 'robot-confused', 'robot-confused-outline', 'robot-dead', 'robot-dead-outline', 'robot-excited', 'robot-excited-outline', 'robot-industrial', 'robot-love', 'robot-love-outline', 'robot-mower', 'robot-mower-outline', 'robot-off', 'robot-off-outline', 'robot-outline', 'robot-vacuum', 'robot-vacuum-variant', 'rocket', 'rocket-launch', 'rocket-launch-outline', 'rocket-outline', 'rodent', 'roller-skate', 'roller-skate-off', 'rollerblade', 'rollerblade-off', 'rollupjs', 'roman-numeral-1', 'roman-numeral-10', 'roman-numeral-2', 'roman-numeral-3', 'roman-numeral-4', 'roman-numeral-5', 'roman-numeral-6', 'roman-numeral-7', 'roman-numeral-8', 'roman-numeral-9', 'room-service', 'room-service-outline', 'rotate-3d', 'rotate-3d-variant', 'rotate-left', 'rotate-left-variant', 'rotate-orbit', 'rotate-right', 'rotate-right-variant', 'rounded-corner', 'router', 'router-network', 'router-wireless', 'router-wireless-off', 'router-wireless-settings', 'routes', 'routes-clock', 'rowing', 'rss', 'rss-box', 'rss-off', 'rug', 'rugby', 'ruler', 'ruler-square', 'ruler-square-compass', 'run', 'run-fast', 'rv-truck', 'sack', 'sack-percent', 'safe', 'safe-square', 'safe-square-outline', 'safety-goggles', 'sail-boat', 'sale', 'salesforce', 'sass', 'satellite', 'satellite-uplink', 'satellite-variant', 'sausage', 'saw-blade', 'sawtooth-wave', 'saxophone', 'scale', 'scale-balance', 'scale-bathroom', 'scale-off', 'scan-helper', 'scanner', 'scanner-off', 'scatter-plot', 'scatter-plot-outline', 'school', 'school-outline', 'scissors-cutting', 'scooter', 'scooter-electric', 'scoreboard', 'scoreboard-outline', 'screen-rotation', 'screen-rotation-lock', 'screw-flat-top', 'screw-lag', 'screw-machine-flat-top', 'screw-machine-round-top', 'screw-round-top', 'screwdriver', 'script', 'script-outline', 'script-text', 'script-text-outline', 'sd', 'seal', 'seal-variant', 'search-web', 'seat', 'seat-flat', 'seat-flat-angled', 'seat-individual-suite', 'seat-legroom-extra', 'seat-legroom-normal', 'seat-legroom-reduced', 'seat-outline', 'seat-passenger', 'seat-recline-extra', 'seat-recline-normal', 'seatbelt', 'security', 'security-network', 'seed', 'seed-off', 'seed-off-outline', 'seed-outline', 'seesaw', 'segment', 'select', 'select-all', 'select-color', 'select-compare', 'select-drag', 'select-group', 'select-inverse', 'select-marker', 'select-multiple', 'select-multiple-marker', 'select-off', 'select-place', 'select-search', 'selection', 'selection-drag', 'selection-ellipse', 'selection-ellipse-arrow-inside', 'selection-marker', 'selection-multiple', 'selection-multiple-marker', 'selection-off', 'selection-search', 'semantic-web', 'send', 'send-check', 'send-check-outline', 'send-circle', 'send-circle-outline', 'send-clock', 'send-clock-outline', 'send-lock', 'send-lock-outline', 'send-outline', 'serial-port', 'server', 'server-minus', 'server-network', 'server-network-off', 'server-off', 'server-plus', 'server-remove', 'server-security', 'set-all', 'set-center', 'set-center-right', 'set-left', 'set-left-center', 'set-left-right', 'set-merge', 'set-none', 'set-right', 'set-split', 'set-square', 'set-top-box', 'settings-helper', 'shaker', 'shaker-outline', 'shape', 'shape-circle-plus', 'shape-outline', 'shape-oval-plus', 'shape-plus', 'shape-polygon-plus', 'shape-rectangle-plus', 'shape-square-plus', 'shape-square-rounded-plus', 'share', 'share-all', 'share-all-outline', 'share-circle', 'share-off', 'share-off-outline', 'share-outline', 'share-variant', 'share-variant-outline', 'shark-fin', 'shark-fin-outline', 'sheep', 'shield', 'shield-account', 'shield-account-outline', 'shield-account-variant', 'shield-account-variant-outline', 'shield-airplane', 'shield-airplane-outline', 'shield-alert', 'shield-alert-outline', 'shield-bug', 'shield-bug-outline', 'shield-car', 'shield-check', 'shield-check-outline', 'shield-cross', 'shield-cross-outline', 'shield-edit', 'shield-edit-outline', 'shield-half', 'shield-half-full', 'shield-home', 'shield-home-outline', 'shield-key', 'shield-key-outline', 'shield-link-variant', 'shield-link-variant-outline', 'shield-lock', 'shield-lock-outline', 'shield-off', 'shield-off-outline', 'shield-outline', 'shield-plus', 'shield-plus-outline', 'shield-refresh', 'shield-refresh-outline', 'shield-remove', 'shield-remove-outline', 'shield-search', 'shield-star', 'shield-star-outline', 'shield-sun', 'shield-sun-outline', 'shield-sync', 'shield-sync-outline', 'ship-wheel', 'shoe-ballet', 'shoe-cleat', 'shoe-formal', 'shoe-heel', 'shoe-print', 'shoe-sneaker', 'shopping', 'shopping-music', 'shopping-outline', 'shopping-search', 'shore', 'shovel', 'shovel-off', 'shower', 'shower-head', 'shredder', 'shuffle', 'shuffle-disabled', 'shuffle-variant', 'shuriken', 'sigma', 'sigma-lower', 'sign-caution', 'sign-direction', 'sign-direction-minus', 'sign-direction-plus', 'sign-direction-remove', 'sign-pole', 'sign-real-estate', 'sign-text', 'signal', 'signal-2g', 'signal-3g', 'signal-4g', 'signal-5g', 'signal-cellular-1', 'signal-cellular-2', 'signal-cellular-3', 'signal-cellular-outline', 'signal-distance-variant', 'signal-hspa', 'signal-hspa-plus', 'signal-off', 'signal-variant', 'signature', 'signature-freehand', 'signature-image', 'signature-text', 'silo', 'silverware', 'silverware-clean', 'silverware-fork', 'silverware-fork-knife', 'silverware-spoon', 'silverware-variant', 'sim', 'sim-alert', 'sim-alert-outline', 'sim-off', 'sim-off-outline', 'sim-outline', 'simple-icons', 'sina-weibo', 'sine-wave', 'sitemap', 'size-l', 'size-m', 'size-s', 'size-xl', 'size-xs', 'size-xxl', 'size-xxs', 'size-xxxl', 'skate', 'skateboard', 'skew-less', 'skew-more', 'ski', 'ski-cross-country', 'ski-water', 'skip-backward', 'skip-backward-outline', 'skip-forward', 'skip-forward-outline', 'skip-next', 'skip-next-circle', 'skip-next-circle-outline', 'skip-next-outline', 'skip-previous', 'skip-previous-circle', 'skip-previous-circle-outline', 'skip-previous-outline', 'skull', 'skull-crossbones', 'skull-crossbones-outline', 'skull-outline', 'skull-scan', 'skull-scan-outline', 'skype', 'skype-business', 'slack', 'slash-forward', 'slash-forward-box', 'sleep', 'sleep-off', 'slide', 'slope-downhill', 'slope-uphill', 'slot-machine', 'slot-machine-outline', 'smart-card', 'smart-card-outline', 'smart-card-reader', 'smart-card-reader-outline', 'smog', 'smoke-detector', 'smoking', 'smoking-off', 'smoking-pipe', 'smoking-pipe-off', 'snail', 'snake', 'snapchat', 'snowboard', 'snowflake', 'snowflake-alert', 'snowflake-melt', 'snowflake-off', 'snowflake-variant', 'snowman', 'soccer', 'soccer-field', 'social-distance-2-meters', 'social-distance-6-feet', 'sofa', 'sofa-outline', 'sofa-single', 'sofa-single-outline', 'solar-panel', 'solar-panel-large', 'solar-power', 'soldering-iron', 'solid', 'sony-playstation', 'sort', 'sort-alphabetical-ascending', 'sort-alphabetical-ascending-variant', 'sort-alphabetical-descending', 'sort-alphabetical-descending-variant', 'sort-alphabetical-variant', 'sort-ascending', 'sort-bool-ascending', 'sort-bool-ascending-variant', 'sort-bool-descending', 'sort-bool-descending-variant', 'sort-calendar-ascending', 'sort-calendar-descending', 'sort-clock-ascending', 'sort-clock-ascending-outline', 'sort-clock-descending', 'sort-clock-descending-outline', 'sort-descending', 'sort-numeric-ascending', 'sort-numeric-ascending-variant', 'sort-numeric-descending', 'sort-numeric-descending-variant', 'sort-numeric-variant', 'sort-reverse-variant', 'sort-variant', 'sort-variant-lock', 'sort-variant-lock-open', 'sort-variant-remove', 'soundcloud', 'source-branch', 'source-branch-check', 'source-branch-minus', 'source-branch-plus', 'source-branch-refresh', 'source-branch-remove', 'source-branch-sync', 'source-commit', 'source-commit-end', 'source-commit-end-local', 'source-commit-local', 'source-commit-next-local', 'source-commit-start', 'source-commit-start-next-local', 'source-fork', 'source-merge', 'source-pull', 'source-repository', 'source-repository-multiple', 'soy-sauce', 'soy-sauce-off', 'spa', 'spa-outline', 'space-invaders', 'space-station', 'spade', 'sparkles', 'speaker', 'speaker-bluetooth', 'speaker-multiple', 'speaker-off', 'speaker-wireless', 'speedometer', 'speedometer-medium', 'speedometer-slow', 'spellcheck', 'spider', 'spider-thread', 'spider-web', 'spirit-level', 'spoon-sugar', 'spotify', 'spotlight', 'spotlight-beam', 'spray', 'spray-bottle', 'sprinkler', 'sprinkler-variant', 'sprout', 'sprout-outline', 'square', 'square-circle', 'square-edit-outline', 'square-medium', 'square-medium-outline', 'square-off', 'square-off-outline', 'square-outline', 'square-root', 'square-root-box', 'square-rounded', 'square-rounded-outline', 'square-small', 'square-wave', 'squeegee', 'ssh', 'stack-exchange', 'stack-overflow', 'stackpath', 'stadium', 'stadium-variant', 'stairs', 'stairs-box', 'stairs-down', 'stairs-up', 'stamper', 'standard-definition', 'star', 'star-box', 'star-box-multiple', 'star-box-multiple-outline', 'star-box-outline', 'star-check', 'star-check-outline', 'star-circle', 'star-circle-outline', 'star-cog', 'star-cog-outline', 'star-face', 'star-four-points', 'star-four-points-outline', 'star-half', 'star-half-full', 'star-minus', 'star-minus-outline', 'star-off', 'star-off-outline', 'star-outline', 'star-plus', 'star-plus-outline', 'star-remove', 'star-remove-outline', 'star-settings', 'star-settings-outline', 'star-three-points', 'star-three-points-outline', 'state-machine', 'steam', 'steering', 'steering-off', 'step-backward', 'step-backward-2', 'step-forward', 'step-forward-2', 'stethoscope', 'sticker', 'sticker-alert', 'sticker-alert-outline', 'sticker-check', 'sticker-check-outline', 'sticker-circle-outline', 'sticker-emoji', 'sticker-minus', 'sticker-minus-outline', 'sticker-outline', 'sticker-plus', 'sticker-plus-outline', 'sticker-remove', 'sticker-remove-outline', 'stocking', 'stomach', 'stop', 'stop-circle', 'stop-circle-outline', 'store', 'store-24-hour', 'store-minus', 'store-outline', 'store-plus', 'store-remove', 'storefront', 'storefront-outline', 'stove', 'strategy', 'stretch-to-page', 'stretch-to-page-outline', 'string-lights', 'string-lights-off', 'subdirectory-arrow-left', 'subdirectory-arrow-right', 'submarine', 'subtitles', 'subtitles-outline', 'subway', 'subway-alert-variant', 'subway-variant', 'summit', 'sunglasses', 'surround-sound', 'surround-sound-2-0', 'surround-sound-3-1', 'surround-sound-5-1', 'surround-sound-7-1', 'svg', 'swap-horizontal', 'swap-horizontal-bold', 'swap-horizontal-circle', 'swap-horizontal-circle-outline', 'swap-horizontal-variant', 'swap-vertical', 'swap-vertical-bold', 'swap-vertical-circle', 'swap-vertical-circle-outline', 'swap-vertical-variant', 'swim', 'switch', 'sword', 'sword-cross', 'syllabary-hangul', 'syllabary-hiragana', 'syllabary-katakana', 'syllabary-katakana-halfwidth', 'symbol', 'symfony', 'sync', 'sync-alert', 'sync-circle', 'sync-off', 'tab', 'tab-minus', 'tab-plus', 'tab-remove', 'tab-unselected', 'table', 'table-account', 'table-alert', 'table-arrow-down', 'table-arrow-left', 'table-arrow-right', 'table-arrow-up', 'table-border', 'table-cancel', 'table-chair', 'table-check', 'table-clock', 'table-cog', 'table-column', 'table-column-plus-after', 'table-column-plus-before', 'table-column-remove', 'table-column-width', 'table-edit', 'table-eye', 'table-eye-off', 'table-furniture', 'table-headers-eye', 'table-headers-eye-off', 'table-heart', 'table-key', 'table-large', 'table-large-plus', 'table-large-remove', 'table-lock', 'table-merge-cells', 'table-minus', 'table-multiple', 'table-network', 'table-of-contents', 'table-off', 'table-plus', 'table-refresh', 'table-remove', 'table-row', 'table-row-height', 'table-row-plus-after', 'table-row-plus-before', 'table-row-remove', 'table-search', 'table-settings', 'table-split-cell', 'table-star', 'table-sync', 'table-tennis', 'tablet', 'tablet-android', 'tablet-cellphone', 'tablet-dashboard', 'tablet-ipad', 'taco', 'tag', 'tag-faces', 'tag-heart', 'tag-heart-outline', 'tag-minus', 'tag-minus-outline', 'tag-multiple', 'tag-multiple-outline', 'tag-off', 'tag-off-outline', 'tag-outline', 'tag-plus', 'tag-plus-outline', 'tag-remove', 'tag-remove-outline', 'tag-text', 'tag-text-outline', 'tailwind', 'tank', 'tanker-truck', 'tape-drive', 'tape-measure', 'target', 'target-account', 'target-variant', 'taxi', 'tea', 'tea-outline', 'teach', 'teamviewer', 'telegram', 'telescope', 'television', 'television-ambient-light', 'television-box', 'television-classic', 'television-classic-off', 'television-clean', 'television-guide', 'television-off', 'television-pause', 'television-play', 'television-stop', 'temperature-celsius', 'temperature-fahrenheit', 'temperature-kelvin', 'tennis', 'tennis-ball', 'tent', 'terraform', 'terrain', 'test-tube', 'test-tube-empty', 'test-tube-off', 'text', 'text-account', 'text-box', 'text-box-check', 'text-box-check-outline', 'text-box-minus', 'text-box-minus-outline', 'text-box-multiple', 'text-box-multiple-outline', 'text-box-outline', 'text-box-plus', 'text-box-plus-outline', 'text-box-remove', 'text-box-remove-outline', 'text-box-search', 'text-box-search-outline', 'text-recognition', 'text-search', 'text-shadow', 'text-short', 'text-subject', 'text-to-speech', 'text-to-speech-off', 'texture', 'texture-box', 'theater', 'theme-light-dark', 'thermometer', 'thermometer-alert', 'thermometer-chevron-down', 'thermometer-chevron-up', 'thermometer-high', 'thermometer-lines', 'thermometer-low', 'thermometer-minus', 'thermometer-off', 'thermometer-plus', 'thermostat', 'thermostat-box', 'thought-bubble', 'thought-bubble-outline', 'thumb-down', 'thumb-down-outline', 'thumb-up', 'thumb-up-outline', 'thumbs-up-down', 'ticket', 'ticket-account', 'ticket-confirmation', 'ticket-confirmation-outline', 'ticket-outline', 'ticket-percent', 'ticket-percent-outline', 'tie', 'tilde', 'timelapse', 'timeline', 'timeline-alert', 'timeline-alert-outline', 'timeline-check', 'timeline-check-outline', 'timeline-clock', 'timeline-clock-outline', 'timeline-help', 'timeline-help-outline', 'timeline-minus', 'timeline-minus-outline', 'timeline-outline', 'timeline-plus', 'timeline-plus-outline', 'timeline-remove', 'timeline-remove-outline', 'timeline-text', 'timeline-text-outline', 'timer', 'timer-10', 'timer-3', 'timer-off', 'timer-off-outline', 'timer-outline', 'timer-sand', 'timer-sand-empty', 'timer-sand-full', 'timetable', 'toaster', 'toaster-off', 'toaster-oven', 'toggle-switch', 'toggle-switch-off', 'toggle-switch-off-outline', 'toggle-switch-outline', 'toilet', 'toolbox', 'toolbox-outline', 'tools', 'tooltip', 'tooltip-account', 'tooltip-check', 'tooltip-check-outline', 'tooltip-edit', 'tooltip-edit-outline', 'tooltip-image', 'tooltip-image-outline', 'tooltip-minus', 'tooltip-minus-outline', 'tooltip-outline', 'tooltip-plus', 'tooltip-plus-outline', 'tooltip-remove', 'tooltip-remove-outline', 'tooltip-text', 'tooltip-text-outline', 'tooth', 'tooth-outline', 'toothbrush', 'toothbrush-electric', 'toothbrush-paste', 'torch', 'tortoise', 'toslink', 'tournament', 'tow-truck', 'tower-beach', 'tower-fire', 'toy-brick', 'toy-brick-marker', 'toy-brick-marker-outline', 'toy-brick-minus', 'toy-brick-minus-outline', 'toy-brick-outline', 'toy-brick-plus', 'toy-brick-plus-outline', 'toy-brick-remove', 'toy-brick-remove-outline', 'toy-brick-search', 'toy-brick-search-outline', 'track-light', 'trackpad', 'trackpad-lock', 'tractor', 'tractor-variant', 'trademark', 'traffic-cone', 'traffic-light', 'train', 'train-car', 'train-variant', 'tram', 'tram-side', 'transcribe', 'transcribe-close', 'transfer', 'transfer-down', 'transfer-left', 'transfer-right', 'transfer-up', 'transit-connection', 'transit-connection-horizontal', 'transit-connection-variant', 'transit-detour', 'transit-skip', 'transit-transfer', 'transition', 'transition-masked', 'translate', 'translate-off', 'transmission-tower', 'trash-can', 'trash-can-outline', 'tray', 'tray-alert', 'tray-full', 'tray-minus', 'tray-plus', 'tray-remove', 'treasure-chest', 'tree', 'tree-outline', 'trello', 'trending-down', 'trending-neutral', 'trending-up', 'triangle', 'triangle-outline', 'triangle-wave', 'triforce', 'trophy', 'trophy-award', 'trophy-broken', 'trophy-outline', 'trophy-variant', 'trophy-variant-outline', 'truck', 'truck-check', 'truck-check-outline', 'truck-delivery', 'truck-delivery-outline', 'truck-fast', 'truck-fast-outline', 'truck-outline', 'truck-trailer', 'trumpet', 'tshirt-crew', 'tshirt-crew-outline', 'tshirt-v', 'tshirt-v-outline', 'tumble-dryer', 'tumble-dryer-alert', 'tumble-dryer-off', 'tune', 'tune-variant', 'tune-vertical', 'tune-vertical-variant', 'turnstile', 'turnstile-outline', 'turtle', 'twitch', 'twitter', 'twitter-retweet', 'two-factor-authentication', 'typewriter', 'ubisoft', 'ubuntu', 'ufo', 'ufo-outline', 'ultra-high-definition', 'umbraco', 'umbrella', 'umbrella-closed', 'umbrella-closed-outline', 'umbrella-closed-variant', 'umbrella-outline', 'undo', 'undo-variant', 'unfold-less-horizontal', 'unfold-less-vertical', 'unfold-more-horizontal', 'unfold-more-vertical', 'ungroup', 'unicode', 'unicorn', 'unicorn-variant', 'unicycle', 'unity', 'unreal', 'untappd', 'update', 'upload', 'upload-lock', 'upload-lock-outline', 'upload-multiple', 'upload-network', 'upload-network-outline', 'upload-off', 'upload-off-outline', 'upload-outline', 'usb', 'usb-flash-drive', 'usb-flash-drive-outline', 'usb-port', 'valve', 'valve-closed', 'valve-open', 'van-passenger', 'van-utility', 'vanish', 'vanish-quarter', 'vanity-light', 'variable', 'variable-box', 'vector-arrange-above', 'vector-arrange-below', 'vector-bezier', 'vector-circle', 'vector-circle-variant', 'vector-combine', 'vector-curve', 'vector-difference', 'vector-difference-ab', 'vector-difference-ba', 'vector-ellipse', 'vector-intersection', 'vector-line', 'vector-link', 'vector-point', 'vector-polygon', 'vector-polyline', 'vector-polyline-edit', 'vector-polyline-minus', 'vector-polyline-plus', 'vector-polyline-remove', 'vector-radius', 'vector-rectangle', 'vector-selection', 'vector-square', 'vector-triangle', 'vector-union', 'vhs', 'vibrate', 'vibrate-off', 'video', 'video-3d', 'video-3d-off', 'video-3d-variant', 'video-4k-box', 'video-account', 'video-box', 'video-box-off', 'video-check', 'video-check-outline', 'video-high-definition', 'video-image', 'video-input-antenna', 'video-input-component', 'video-input-hdmi', 'video-input-scart', 'video-input-svideo', 'video-minus', 'video-minus-outline', 'video-off', 'video-off-outline', 'video-outline', 'video-plus', 'video-plus-outline', 'video-stabilization', 'video-switch', 'video-switch-outline', 'video-vintage', 'video-wireless', 'video-wireless-outline', 'view-agenda', 'view-agenda-outline', 'view-array', 'view-array-outline', 'view-carousel', 'view-carousel-outline', 'view-column', 'view-column-outline', 'view-comfy', 'view-comfy-outline', 'view-compact', 'view-compact-outline', 'view-dashboard', 'view-dashboard-outline', 'view-dashboard-variant', 'view-dashboard-variant-outline', 'view-day', 'view-day-outline', 'view-grid', 'view-grid-outline', 'view-grid-plus', 'view-grid-plus-outline', 'view-headline', 'view-list', 'view-list-outline', 'view-module', 'view-module-outline', 'view-parallel', 'view-parallel-outline', 'view-quilt', 'view-quilt-outline', 'view-sequential', 'view-sequential-outline', 'view-split-horizontal', 'view-split-vertical', 'view-stream', 'view-stream-outline', 'view-week', 'view-week-outline', 'vimeo', 'violin', 'virtual-reality', 'virus', 'virus-outline', 'vk', 'vlc', 'voice-off', 'voicemail', 'volleyball', 'volume-high', 'volume-low', 'volume-medium', 'volume-minus', 'volume-mute', 'volume-off', 'volume-plus', 'volume-source', 'volume-variant-off', 'volume-vibrate', 'vote', 'vote-outline', 'vpn', 'vuejs', 'vuetify', 'walk', 'wall', 'wall-sconce', 'wall-sconce-flat', 'wall-sconce-flat-variant', 'wall-sconce-round', 'wall-sconce-round-variant', 'wallet', 'wallet-giftcard', 'wallet-membership', 'wallet-outline', 'wallet-plus', 'wallet-plus-outline', 'wallet-travel', 'wallpaper', 'wan', 'wardrobe', 'wardrobe-outline', 'warehouse', 'washing-machine', 'washing-machine-alert', 'washing-machine-off', 'watch', 'watch-export', 'watch-export-variant', 'watch-import', 'watch-import-variant', 'watch-variant', 'watch-vibrate', 'watch-vibrate-off', 'water', 'water-alert', 'water-alert-outline', 'water-boiler', 'water-boiler-alert', 'water-boiler-off', 'water-check', 'water-check-outline', 'water-minus', 'water-minus-outline', 'water-off', 'water-off-outline', 'water-outline', 'water-percent', 'water-percent-alert', 'water-plus', 'water-plus-outline', 'water-polo', 'water-pump', 'water-pump-off', 'water-remove', 'water-remove-outline', 'water-well', 'water-well-outline', 'watering-can', 'watering-can-outline', 'watermark', 'wave', 'waveform', 'waves', 'waze', 'weather-cloudy', 'weather-cloudy-alert', 'weather-cloudy-arrow-right', 'weather-fog', 'weather-hail', 'weather-hazy', 'weather-hurricane', 'weather-lightning', 'weather-lightning-rainy', 'weather-night', 'weather-night-partly-cloudy', 'weather-partly-cloudy', 'weather-partly-lightning', 'weather-partly-rainy', 'weather-partly-snowy', 'weather-partly-snowy-rainy', 'weather-pouring', 'weather-rainy', 'weather-snowy', 'weather-snowy-heavy', 'weather-snowy-rainy', 'weather-sunny', 'weather-sunny-alert', 'weather-sunny-off', 'weather-sunset', 'weather-sunset-down', 'weather-sunset-up', 'weather-tornado', 'weather-windy', 'weather-windy-variant', 'web', 'web-box', 'web-clock', 'webcam', 'webhook', 'webpack', 'webrtc', 'wechat', 'weight', 'weight-gram', 'weight-kilogram', 'weight-lifter', 'weight-pound', 'whatsapp', 'wheel-barrow', 'wheelchair-accessibility', 'whistle', 'whistle-outline', 'white-balance-auto', 'white-balance-incandescent', 'white-balance-iridescent', 'white-balance-sunny', 'widgets', 'widgets-outline', 'wifi', 'wifi-alert', 'wifi-arrow-down', 'wifi-arrow-left', 'wifi-arrow-left-right', 'wifi-arrow-right', 'wifi-arrow-up', 'wifi-arrow-up-down', 'wifi-cancel', 'wifi-check', 'wifi-cog', 'wifi-lock', 'wifi-lock-open', 'wifi-marker', 'wifi-minus', 'wifi-off', 'wifi-plus', 'wifi-refresh', 'wifi-remove', 'wifi-settings', 'wifi-star', 'wifi-strength-1', 'wifi-strength-1-alert', 'wifi-strength-1-lock', 'wifi-strength-1-lock-open', 'wifi-strength-2', 'wifi-strength-2-alert', 'wifi-strength-2-lock', 'wifi-strength-2-lock-open', 'wifi-strength-3', 'wifi-strength-3-alert', 'wifi-strength-3-lock', 'wifi-strength-3-lock-open', 'wifi-strength-4', 'wifi-strength-4-alert', 'wifi-strength-4-lock', 'wifi-strength-4-lock-open', 'wifi-strength-alert-outline', 'wifi-strength-lock-open-outline', 'wifi-strength-lock-outline', 'wifi-strength-off', 'wifi-strength-off-outline', 'wifi-strength-outline', 'wifi-sync', 'wikipedia', 'wind-turbine', 'window-close', 'window-closed', 'window-closed-variant', 'window-maximize', 'window-minimize', 'window-open', 'window-open-variant', 'window-restore', 'window-shutter', 'window-shutter-alert', 'window-shutter-open', 'windsock', 'wiper', 'wiper-wash', 'wizard-hat', 'wordpress', 'wrap', 'wrap-disabled', 'wrench', 'wrench-outline', 'xamarin', 'xamarin-outline', 'xing', 'xml', 'xmpp', 'y-combinator', 'yahoo', 'yeast', 'yin-yang', 'yoga', 'youtube', 'youtube-gaming', 'youtube-studio', 'youtube-subscription', 'youtube-tv', 'yurt', 'z-wave', 'zend', 'zigbee', 'zip-box', 'zip-box-outline', 'zip-disk', 'zodiac-aquarius', 'zodiac-aries', 'zodiac-cancer', 'zodiac-capricorn', 'zodiac-gemini', 'zodiac-leo', 'zodiac-libra', 'zodiac-pisces', 'zodiac-sagittarius', 'zodiac-scorpio', 'zodiac-taurus', 'zodiac-virgo', 'blank' diff --git a/app_data/libraries.json b/app_data/libraries.json index ebaa25a9781d..61b4b9d68a6c 100644 --- a/app_data/libraries.json +++ b/app_data/libraries.json @@ -91,7 +91,7 @@ }, "vuex": { "name": "vuex", - "version": "3.5.1", + "version": "3.6.0", "license": "MIT", "homepage": "https:\/\/github.com\/vuejs\/vuex#readme", "licenseError": false, diff --git a/composer.lock b/composer.lock index 5c3bd836b29b..1d2c750addb1 100644 --- a/composer.lock +++ b/composer.lock @@ -61,6 +61,10 @@ "social", "twitter" ], + "support": { + "issues": "https://github.com/abraham/twitteroauth/issues", + "source": "https://github.com/abraham/twitteroauth" + }, "time": "2020-09-22T14:27:00+00:00" }, { @@ -108,6 +112,10 @@ "jwt-php", "token" ], + "support": { + "issues": "https://github.com/adhocore/php-jwt/issues", + "source": "https://github.com/adhocore/php-jwt/tree/1.1.0" + }, "funding": [ { "url": "https://paypal.me/ji10", @@ -156,6 +164,12 @@ "text", "wysiwyg" ], + "support": { + "forum": "https://stackoverflow.com/tags/ckeditor", + "issues": "https://github.com/ckeditor/ckeditor4/issues", + "source": "https://github.com/ckeditor/ckeditor4", + "wiki": "https://ckeditor.com/docs/ckeditor4/latest/" + }, "time": "2020-11-09T14:21:03+00:00" }, { @@ -212,6 +226,11 @@ "ssl", "tls" ], + "support": { + "irc": "irc://irc.freenode.org/composer", + "issues": "https://github.com/composer/ca-bundle/issues", + "source": "https://github.com/composer/ca-bundle/tree/1.2.8" + }, "funding": [ { "url": "https://packagist.com", @@ -230,16 +249,16 @@ }, { "name": "dg/rss-php", - "version": "v1.4", + "version": "v1.5", "source": { "type": "git", "url": "https://github.com/dg/rss-php.git", - "reference": "4d018b27b0a4d7b13dde34a402f0efe90024c40a" + "reference": "18f00ab1828948a8cfe107729ca1f11c20129b47" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dg/rss-php/zipball/4d018b27b0a4d7b13dde34a402f0efe90024c40a", - "reference": "4d018b27b0a4d7b13dde34a402f0efe90024c40a", + "url": "https://api.github.com/repos/dg/rss-php/zipball/18f00ab1828948a8cfe107729ca1f11c20129b47", + "reference": "18f00ab1828948a8cfe107729ca1f11c20129b47", "shasum": "" }, "require": { @@ -269,7 +288,10 @@ "feed", "rss" ], - "time": "2019-09-29T08:57:45+00:00" + "support": { + "source": "https://github.com/dg/rss-php/tree/v1.5" + }, + "time": "2020-11-25T22:57:16+00:00" }, { "name": "doctrine/collections", @@ -334,6 +356,10 @@ "iterators", "php" ], + "support": { + "issues": "https://github.com/doctrine/collections/issues", + "source": "https://github.com/doctrine/collections/tree/1.6.7" + }, "time": "2020-07-27T17:53:49+00:00" }, { @@ -411,6 +437,10 @@ "uppercase", "words" ], + "support": { + "issues": "https://github.com/doctrine/inflector/issues", + "source": "https://github.com/doctrine/inflector/tree/2.0.x" + }, "funding": [ { "url": "https://www.doctrine-project.org/sponsorship.html", @@ -475,6 +505,10 @@ "keywords": [ "html" ], + "support": { + "issues": "https://github.com/ezyang/htmlpurifier/issues", + "source": "https://github.com/ezyang/htmlpurifier/tree/master" + }, "time": "2020-06-29T00:56:53+00:00" }, { @@ -543,6 +577,11 @@ "phonenumber", "validation" ], + "support": { + "irc": "irc://irc.appliedirc.com/lobby", + "issues": "https://github.com/giggsey/libphonenumber-for-php/issues", + "source": "https://github.com/giggsey/libphonenumber-for-php" + }, "time": "2020-11-12T14:42:30+00:00" }, { @@ -592,6 +631,10 @@ } ], "description": "Locale functions required by libphonenumber-for-php", + "support": { + "issues": "https://github.com/giggsey/Locale/issues", + "source": "https://github.com/giggsey/Locale/tree/master" + }, "time": "2020-07-07T11:16:24+00:00" }, { @@ -672,6 +715,10 @@ "rest", "web service" ], + "support": { + "issues": "https://github.com/guzzle/guzzle/issues", + "source": "https://github.com/guzzle/guzzle/tree/7.2.0" + }, "funding": [ { "url": "https://github.com/GrahamCampbell", @@ -741,6 +788,10 @@ "keywords": [ "promise" ], + "support": { + "issues": "https://github.com/guzzle/promises/issues", + "source": "https://github.com/guzzle/promises/tree/1.4.0" + }, "time": "2020-09-30T07:37:28+00:00" }, { @@ -812,6 +863,10 @@ "uri", "url" ], + "support": { + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/1.7.0" + }, "time": "2020-09-30T07:37:11+00:00" }, { @@ -856,6 +911,10 @@ ], "description": "The Illuminate Contracts package.", "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, "time": "2020-10-27T15:11:37+00:00" }, { @@ -918,6 +977,10 @@ ], "description": "The Illuminate Support package.", "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, "time": "2020-10-29T15:16:59+00:00" }, { @@ -979,6 +1042,10 @@ "stream", "zip" ], + "support": { + "issues": "https://github.com/maennchen/ZipStream-PHP/issues", + "source": "https://github.com/maennchen/ZipStream-PHP/tree/master" + }, "funding": [ { "url": "https://opencollective.com/zipstream", @@ -1080,6 +1147,10 @@ "complex", "mathematics" ], + "support": { + "issues": "https://github.com/MarkBaker/PHPComplex/issues", + "source": "https://github.com/MarkBaker/PHPComplex/tree/PHP8" + }, "time": "2020-08-26T10:42:07+00:00" }, { @@ -1150,6 +1221,10 @@ "matrix", "vector" ], + "support": { + "issues": "https://github.com/MarkBaker/PHPMatrix/issues", + "source": "https://github.com/MarkBaker/PHPMatrix/tree/PHP8" + }, "time": "2020-08-28T17:11:00+00:00" }, { @@ -1211,6 +1286,10 @@ "debug", "debugbar" ], + "support": { + "issues": "https://github.com/maximebf/php-debugbar/issues", + "source": "https://github.com/maximebf/php-debugbar/tree/v1.16.3" + }, "time": "2020-05-06T07:06:27+00:00" }, { @@ -1271,6 +1350,10 @@ "qr code", "qrcode" ], + "support": { + "issues": "https://github.com/milon/barcode/issues", + "source": "https://github.com/milon/barcode/tree/7.0.1" + }, "funding": [ { "type": "custom" @@ -1354,6 +1437,10 @@ "punycode", "unicode" ], + "support": { + "issues": "https://github.com/mlocati/idna/issues", + "source": "https://github.com/mlocati/idna" + }, "time": "2019-09-02T15:52:28+00:00" }, { @@ -1412,6 +1499,10 @@ "range", "subnet" ], + "support": { + "issues": "https://github.com/mlocati/ip-lib/issues", + "source": "https://github.com/mlocati/ip-lib/tree/1.13.0" + }, "funding": [ { "url": "https://github.com/sponsors/mlocati", @@ -1477,6 +1568,10 @@ "smtp", "spf" ], + "support": { + "issues": "https://github.com/mlocati/spf-lib/issues", + "source": "https://github.com/mlocati/spf-lib" + }, "funding": [ { "url": "https://github.com/sponsors/mlocati", @@ -1533,6 +1628,10 @@ "keywords": [ "enum" ], + "support": { + "issues": "https://github.com/myclabs/php-enum/issues", + "source": "https://github.com/myclabs/php-enum/tree/1.7.7" + }, "funding": [ { "url": "https://github.com/mnapoli", @@ -1547,16 +1646,16 @@ }, { "name": "nesbot/carbon", - "version": "2.41.5", + "version": "2.42.0", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "c4a9caf97cfc53adfc219043bcecf42bc663acee" + "reference": "d0463779663437392fe42ff339ebc0213bd55498" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/c4a9caf97cfc53adfc219043bcecf42bc663acee", - "reference": "c4a9caf97cfc53adfc219043bcecf42bc663acee", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d0463779663437392fe42ff339ebc0213bd55498", + "reference": "d0463779663437392fe42ff339ebc0213bd55498", "shasum": "" }, "require": { @@ -1571,7 +1670,7 @@ "kylekatarnls/multi-tester": "^2.0", "phpmd/phpmd": "^2.9", "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^0.12.35", + "phpstan/phpstan": "^0.12.54", "phpunit/phpunit": "^7.5 || ^8.0", "squizlabs/php_codesniffer": "^3.4" }, @@ -1622,6 +1721,10 @@ "datetime", "time" ], + "support": { + "issues": "https://github.com/briannesbitt/Carbon/issues", + "source": "https://github.com/briannesbitt/Carbon" + }, "funding": [ { "url": "https://opencollective.com/Carbon", @@ -1632,7 +1735,7 @@ "type": "tidelift" } ], - "time": "2020-10-23T06:02:30+00:00" + "time": "2020-11-28T14:25:28+00:00" }, { "name": "nette/php-generator", @@ -1696,24 +1799,31 @@ "php", "scaffolding" ], + "support": { + "issues": "https://github.com/nette/php-generator/issues", + "source": "https://github.com/nette/php-generator/tree/v3.5.1" + }, "time": "2020-11-04T11:26:26+00:00" }, { "name": "nette/utils", - "version": "v3.1.3", + "version": "v3.2.0", "source": { "type": "git", "url": "https://github.com/nette/utils.git", - "reference": "c09937fbb24987b2a41c6022ebe84f4f1b8eec0f" + "reference": "d0427c1811462dbb6c503143eabe5478b26685f7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/utils/zipball/c09937fbb24987b2a41c6022ebe84f4f1b8eec0f", - "reference": "c09937fbb24987b2a41c6022ebe84f4f1b8eec0f", + "url": "https://api.github.com/repos/nette/utils/zipball/d0427c1811462dbb6c503143eabe5478b26685f7", + "reference": "d0427c1811462dbb6c503143eabe5478b26685f7", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2 <8.1" + }, + "conflict": { + "nette/di": "<3.0.6" }, "require-dev": { "nette/tester": "~2.0", @@ -1732,7 +1842,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.1-dev" + "dev-master": "3.2-dev" } }, "autoload": { @@ -1756,7 +1866,7 @@ "homepage": "https://nette.org/contributors" } ], - "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", + "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", "homepage": "https://nette.org", "keywords": [ "array", @@ -1774,7 +1884,11 @@ "utility", "validation" ], - "time": "2020-08-07T10:34:21+00:00" + "support": { + "issues": "https://github.com/nette/utils/issues", + "source": "https://github.com/nette/utils/tree/v3.2.0" + }, + "time": "2020-11-25T23:47:50+00:00" }, { "name": "parsecsv/php-parsecsv", @@ -1834,6 +1948,10 @@ } ], "description": "CSV data parser for PHP", + "support": { + "issues": "https://github.com/parsecsv/parsecsv-for-php/issues", + "source": "https://github.com/parsecsv/parsecsv-for-php" + }, "time": "2020-04-25T17:17:04+00:00" }, { @@ -1871,6 +1989,10 @@ ], "description": "A library to read, parse, export and make subsets of different types of font files.", "homepage": "https://github.com/PhenX/php-font-lib", + "support": { + "issues": "https://github.com/PhenX/php-font-lib/issues", + "source": "https://github.com/PhenX/php-font-lib/tree/0.5.2" + }, "time": "2020-03-08T15:31:32+00:00" }, { @@ -1918,20 +2040,24 @@ } ], "description": "A DKIM signature validator in PHP.", + "support": { + "issues": "https://github.com/PHPMailer/DKIMValidator/issues", + "source": "https://github.com/PHPMailer/DKIMValidator/tree/v0.3" + }, "time": "2019-10-10T17:19:06+00:00" }, { "name": "phpmailer/phpmailer", - "version": "v6.1.8", + "version": "v6.2.0", "source": { "type": "git", "url": "https://github.com/PHPMailer/PHPMailer.git", - "reference": "917ab212fa00dc6eacbb26e8bc387ebe40993bc1" + "reference": "e38888a75c070304ca5514197d4847a59a5c853f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/917ab212fa00dc6eacbb26e8bc387ebe40993bc1", - "reference": "917ab212fa00dc6eacbb26e8bc387ebe40993bc1", + "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e38888a75c070304ca5514197d4847a59a5c853f", + "reference": "e38888a75c070304ca5514197d4847a59a5c853f", "shasum": "" }, "require": { @@ -1941,9 +2067,12 @@ "php": ">=5.5.0" }, "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", "doctrine/annotations": "^1.2", - "friendsofphp/php-cs-fixer": "^2.2", - "phpunit/phpunit": "^4.8 || ^5.7" + "phpcompatibility/php-compatibility": "^9.3.5", + "roave/security-advisories": "dev-latest", + "squizlabs/php_codesniffer": "^3.5.6", + "yoast/phpunit-polyfills": "^0.2.0" }, "suggest": { "ext-mbstring": "Needed to send email in multibyte encoding charset", @@ -1981,13 +2110,17 @@ } ], "description": "PHPMailer is a full-featured email creation and transfer class for PHP", + "support": { + "issues": "https://github.com/PHPMailer/PHPMailer/issues", + "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.2.0" + }, "funding": [ { - "url": "https://github.com/synchro", + "url": "https://github.com/Synchro", "type": "github" } ], - "time": "2020-10-09T14:55:58+00:00" + "time": "2020-11-25T15:24:57+00:00" }, { "name": "phpoffice/phpspreadsheet", @@ -2083,6 +2216,10 @@ "xls", "xlsx" ], + "support": { + "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues", + "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.15.0" + }, "time": "2020-10-11T13:20:59+00:00" }, { @@ -2132,6 +2269,10 @@ "container-interop", "psr" ], + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/master" + }, "time": "2017-02-14T16:28:37+00:00" }, { @@ -2181,6 +2322,9 @@ "psr", "psr-18" ], + "support": { + "source": "https://github.com/php-fig/http-client/tree/master" + }, "time": "2020-06-29T06:28:15+00:00" }, { @@ -2233,6 +2377,9 @@ "request", "response" ], + "support": { + "source": "https://github.com/php-fig/http-factory/tree/master" + }, "time": "2019-04-30T12:38:16+00:00" }, { @@ -2283,6 +2430,9 @@ "request", "response" ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/master" + }, "time": "2016-08-06T14:39:51+00:00" }, { @@ -2330,6 +2480,9 @@ "psr", "psr-3" ], + "support": { + "source": "https://github.com/php-fig/log/tree/1.1.3" + }, "time": "2020-03-23T09:12:05+00:00" }, { @@ -2378,6 +2531,9 @@ "psr-16", "simple-cache" ], + "support": { + "source": "https://github.com/php-fig/simple-cache/tree/master" + }, "time": "2017-10-23T01:57:42+00:00" }, { @@ -2418,6 +2574,10 @@ } ], "description": "A polyfill for getallheaders.", + "support": { + "issues": "https://github.com/ralouphie/getallheaders/issues", + "source": "https://github.com/ralouphie/getallheaders/tree/develop" + }, "time": "2019-03-08T08:55:37+00:00" }, { @@ -2463,6 +2623,10 @@ "parser", "stylesheet" ], + "support": { + "issues": "https://github.com/sabberworm/PHP-CSS-Parser/issues", + "source": "https://github.com/sabberworm/PHP-CSS-Parser/tree/8.3.1" + }, "time": "2020-06-01T09:10:00+00:00" }, { @@ -2544,6 +2708,11 @@ "framework", "iCalendar" ], + "support": { + "forum": "https://groups.google.com/group/sabredav-discuss", + "issues": "https://github.com/sabre-io/dav/issues", + "source": "https://github.com/fruux/sabre-dav" + }, "time": "2020-11-09T07:48:35+00:00" }, { @@ -2605,6 +2774,11 @@ "reactor", "signal" ], + "support": { + "forum": "https://groups.google.com/group/sabredav-discuss", + "issues": "https://github.com/sabre-io/event/issues", + "source": "https://github.com/fruux/sabre-event" + }, "time": "2020-10-03T11:02:22+00:00" }, { @@ -2663,6 +2837,11 @@ "keywords": [ "http" ], + "support": { + "forum": "https://groups.google.com/group/sabredav-discuss", + "issues": "https://github.com/sabre-io/http/issues", + "source": "https://github.com/fruux/sabre-http" + }, "time": "2020-10-03T11:27:32+00:00" }, { @@ -2715,6 +2894,11 @@ "uri", "url" ], + "support": { + "forum": "https://groups.google.com/group/sabredav-discuss", + "issues": "https://github.com/sabre-io/uri/issues", + "source": "https://github.com/fruux/sabre-uri" + }, "time": "2020-10-03T10:33:23+00:00" }, { @@ -2813,6 +2997,11 @@ "xCal", "xCard" ], + "support": { + "forum": "https://groups.google.com/group/sabredav-discuss", + "issues": "https://github.com/sabre-io/vobject/issues", + "source": "https://github.com/fruux/sabre-vobject" + }, "time": "2020-11-09T04:31:38+00:00" }, { @@ -2877,6 +3066,11 @@ "dom", "xml" ], + "support": { + "forum": "https://groups.google.com/group/sabredav-discuss", + "issues": "https://github.com/sabre-io/xml/issues", + "source": "https://github.com/fruux/sabre-xml" + }, "time": "2020-10-03T10:08:14+00:00" }, { @@ -2931,6 +3125,10 @@ "recurring", "rrule" ], + "support": { + "issues": "https://github.com/simshaun/recurr/issues", + "source": "https://github.com/simshaun/recurr/tree/v4.0.2" + }, "time": "2019-11-18T17:48:08+00:00" }, { @@ -2988,6 +3186,12 @@ "keywords": [ "templating" ], + "support": { + "forum": "http://www.smarty.net/forums/", + "irc": "irc://irc.freenode.org/smarty", + "issues": "https://github.com/smarty-php/smarty/issues", + "source": "https://github.com/smarty-php/smarty/tree/v3.1.36" + }, "time": "2020-04-14T14:44:26+00:00" }, { @@ -3045,6 +3249,10 @@ "keywords": [ "google authenticator" ], + "support": { + "issues": "https://github.com/sonata-project/GoogleAuthenticator/issues", + "source": "https://github.com/sonata-project/GoogleAuthenticator/tree/2.2.0" + }, "time": "2018-07-18T22:08:02+00:00" }, { @@ -3108,6 +3316,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-iconv/tree/v1.20.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -3185,6 +3396,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -3265,6 +3479,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.20.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -3283,23 +3500,23 @@ }, { "name": "symfony/translation", - "version": "v5.1.8", + "version": "v5.2.0", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "27980838fd261e04379fa91e94e81e662fe5a1b6" + "reference": "52f486a707510884450df461b5a6429dd7a67379" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/27980838fd261e04379fa91e94e81e662fe5a1b6", - "reference": "27980838fd261e04379fa91e94e81e662fe5a1b6", + "url": "https://api.github.com/repos/symfony/translation/zipball/52f486a707510884450df461b5a6429dd7a67379", + "reference": "52f486a707510884450df461b5a6429dd7a67379", "shasum": "" }, "require": { "php": ">=7.2.5", "symfony/polyfill-mbstring": "~1.0", "symfony/polyfill-php80": "^1.15", - "symfony/translation-contracts": "^2" + "symfony/translation-contracts": "^2.3" }, "conflict": { "symfony/config": "<4.4", @@ -3329,6 +3546,9 @@ }, "type": "library", "autoload": { + "files": [ + "Resources/functions.php" + ], "psr-4": { "Symfony\\Component\\Translation\\": "" }, @@ -3352,6 +3572,9 @@ ], "description": "Symfony Translation Component", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/translation/tree/v5.2.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -3366,7 +3589,7 @@ "type": "tidelift" } ], - "time": "2020-10-24T12:01:57+00:00" + "time": "2020-11-28T11:24:18+00:00" }, { "name": "symfony/translation-contracts", @@ -3427,6 +3650,9 @@ "interoperability", "standards" ], + "support": { + "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -3445,16 +3671,16 @@ }, { "name": "symfony/var-dumper", - "version": "v5.1.8", + "version": "v5.2.0", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a" + "reference": "173a79c462b1c81e1fa26129f71e41333d846b26" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/4e13f3fcefb1fcaaa5efb5403581406f4e840b9a", - "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/173a79c462b1c81e1fa26129f71e41333d846b26", + "reference": "173a79c462b1c81e1fa26129f71e41333d846b26", "shasum": "" }, "require": { @@ -3512,6 +3738,9 @@ "debug", "dump" ], + "support": { + "source": "https://github.com/symfony/var-dumper/tree/v5.2.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -3526,7 +3755,7 @@ "type": "tidelift" } ], - "time": "2020-10-27T10:11:13+00:00" + "time": "2020-11-27T00:39:34+00:00" }, { "name": "voku/portable-ascii", @@ -3574,6 +3803,10 @@ "clean", "php" ], + "support": { + "issues": "https://github.com/voku/portable-ascii/issues", + "source": "https://github.com/voku/portable-ascii/tree/1.5.6" + }, "funding": [ { "url": "https://www.paypal.me/moelleken", @@ -3644,6 +3877,9 @@ "php", "security" ], + "support": { + "source": "https://github.com/YetiForceCompany/csrf-magic/tree/master" + }, "time": "2019-11-19T12:16:36+00:00" }, { @@ -3696,6 +3932,10 @@ "html to pdf", "pdf" ], + "support": { + "issues": "https://github.com/YetiForceCompany/YetiForcePDF/issues", + "source": "https://github.com/YetiForceCompany/YetiForcePDF/tree/developer" + }, "funding": [ { "url": "https://opencollective.com/yetiforcecrm", @@ -3793,6 +4033,9 @@ "framework", "yii2" ], + "support": { + "source": "https://github.com/YetiForceCompany/yii2-framework/tree/2.0.39.2" + }, "time": "2020-11-19T07:05:31+00:00" }, { @@ -3857,6 +4100,11 @@ "parser", "php-imap" ], + "support": { + "docs": "https://mail-mime-parser.org/#usage-guide", + "issues": "https://github.com/zbateson/mail-mime-parser/issues", + "source": "https://github.com/zbateson/mail-mime-parser" + }, "funding": [ { "url": "https://github.com/zbateson", @@ -3920,6 +4168,10 @@ "multibyte", "string" ], + "support": { + "issues": "https://github.com/zbateson/mb-wrapper/issues", + "source": "https://github.com/zbateson/mb-wrapper/tree/1.0.1" + }, "funding": [ { "url": "https://github.com/zbateson", @@ -3977,6 +4229,10 @@ "stream", "uuencode" ], + "support": { + "issues": "https://github.com/zbateson/stream-decorators/issues", + "source": "https://github.com/zbateson/stream-decorators/tree/master" + }, "funding": [ { "url": "https://github.com/zbateson", @@ -4020,5 +4276,5 @@ "ext-hash": "*" }, "platform-dev": [], - "plugin-api-version": "1.1.0" + "plugin-api-version": "2.0.0" } diff --git a/composer_dev.lock b/composer_dev.lock index a67234153614..1f4303a6ce98 100644 --- a/composer_dev.lock +++ b/composer_dev.lock @@ -61,6 +61,10 @@ "social", "twitter" ], + "support": { + "issues": "https://github.com/abraham/twitteroauth/issues", + "source": "https://github.com/abraham/twitteroauth" + }, "time": "2020-09-22T14:27:00+00:00" }, { @@ -108,6 +112,10 @@ "jwt-php", "token" ], + "support": { + "issues": "https://github.com/adhocore/php-jwt/issues", + "source": "https://github.com/adhocore/php-jwt/tree/1.1.0" + }, "funding": [ { "url": "https://paypal.me/ji10", @@ -156,6 +164,12 @@ "text", "wysiwyg" ], + "support": { + "forum": "https://stackoverflow.com/tags/ckeditor", + "issues": "https://github.com/ckeditor/ckeditor4/issues", + "source": "https://github.com/ckeditor/ckeditor4", + "wiki": "https://ckeditor.com/docs/ckeditor4/latest/" + }, "time": "2020-11-09T14:21:03+00:00" }, { @@ -212,6 +226,11 @@ "ssl", "tls" ], + "support": { + "irc": "irc://irc.freenode.org/composer", + "issues": "https://github.com/composer/ca-bundle/issues", + "source": "https://github.com/composer/ca-bundle/tree/1.2.8" + }, "funding": [ { "url": "https://packagist.com", @@ -230,16 +249,16 @@ }, { "name": "dg/rss-php", - "version": "v1.4", + "version": "v1.5", "source": { "type": "git", "url": "https://github.com/dg/rss-php.git", - "reference": "4d018b27b0a4d7b13dde34a402f0efe90024c40a" + "reference": "18f00ab1828948a8cfe107729ca1f11c20129b47" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dg/rss-php/zipball/4d018b27b0a4d7b13dde34a402f0efe90024c40a", - "reference": "4d018b27b0a4d7b13dde34a402f0efe90024c40a", + "url": "https://api.github.com/repos/dg/rss-php/zipball/18f00ab1828948a8cfe107729ca1f11c20129b47", + "reference": "18f00ab1828948a8cfe107729ca1f11c20129b47", "shasum": "" }, "require": { @@ -269,7 +288,10 @@ "feed", "rss" ], - "time": "2019-09-29T08:57:45+00:00" + "support": { + "source": "https://github.com/dg/rss-php/tree/v1.5" + }, + "time": "2020-11-25T22:57:16+00:00" }, { "name": "doctrine/collections", @@ -334,6 +356,10 @@ "iterators", "php" ], + "support": { + "issues": "https://github.com/doctrine/collections/issues", + "source": "https://github.com/doctrine/collections/tree/1.6.7" + }, "time": "2020-07-27T17:53:49+00:00" }, { @@ -411,6 +437,10 @@ "uppercase", "words" ], + "support": { + "issues": "https://github.com/doctrine/inflector/issues", + "source": "https://github.com/doctrine/inflector/tree/2.0.x" + }, "funding": [ { "url": "https://www.doctrine-project.org/sponsorship.html", @@ -475,6 +505,10 @@ "keywords": [ "html" ], + "support": { + "issues": "https://github.com/ezyang/htmlpurifier/issues", + "source": "https://github.com/ezyang/htmlpurifier/tree/master" + }, "time": "2020-06-29T00:56:53+00:00" }, { @@ -543,6 +577,11 @@ "phonenumber", "validation" ], + "support": { + "irc": "irc://irc.appliedirc.com/lobby", + "issues": "https://github.com/giggsey/libphonenumber-for-php/issues", + "source": "https://github.com/giggsey/libphonenumber-for-php" + }, "time": "2020-11-12T14:42:30+00:00" }, { @@ -592,6 +631,10 @@ } ], "description": "Locale functions required by libphonenumber-for-php", + "support": { + "issues": "https://github.com/giggsey/Locale/issues", + "source": "https://github.com/giggsey/Locale/tree/master" + }, "time": "2020-07-07T11:16:24+00:00" }, { @@ -672,6 +715,10 @@ "rest", "web service" ], + "support": { + "issues": "https://github.com/guzzle/guzzle/issues", + "source": "https://github.com/guzzle/guzzle/tree/7.2.0" + }, "funding": [ { "url": "https://github.com/GrahamCampbell", @@ -741,6 +788,10 @@ "keywords": [ "promise" ], + "support": { + "issues": "https://github.com/guzzle/promises/issues", + "source": "https://github.com/guzzle/promises/tree/1.4.0" + }, "time": "2020-09-30T07:37:28+00:00" }, { @@ -812,6 +863,10 @@ "uri", "url" ], + "support": { + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/1.7.0" + }, "time": "2020-09-30T07:37:11+00:00" }, { @@ -856,6 +911,10 @@ ], "description": "The Illuminate Contracts package.", "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, "time": "2020-10-27T15:11:37+00:00" }, { @@ -918,6 +977,10 @@ ], "description": "The Illuminate Support package.", "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, "time": "2020-10-29T15:16:59+00:00" }, { @@ -979,6 +1042,10 @@ "stream", "zip" ], + "support": { + "issues": "https://github.com/maennchen/ZipStream-PHP/issues", + "source": "https://github.com/maennchen/ZipStream-PHP/tree/master" + }, "funding": [ { "url": "https://opencollective.com/zipstream", @@ -1080,6 +1147,10 @@ "complex", "mathematics" ], + "support": { + "issues": "https://github.com/MarkBaker/PHPComplex/issues", + "source": "https://github.com/MarkBaker/PHPComplex/tree/PHP8" + }, "time": "2020-08-26T10:42:07+00:00" }, { @@ -1150,6 +1221,10 @@ "matrix", "vector" ], + "support": { + "issues": "https://github.com/MarkBaker/PHPMatrix/issues", + "source": "https://github.com/MarkBaker/PHPMatrix/tree/PHP8" + }, "time": "2020-08-28T17:11:00+00:00" }, { @@ -1211,6 +1286,10 @@ "debug", "debugbar" ], + "support": { + "issues": "https://github.com/maximebf/php-debugbar/issues", + "source": "https://github.com/maximebf/php-debugbar/tree/v1.16.3" + }, "time": "2020-05-06T07:06:27+00:00" }, { @@ -1271,6 +1350,10 @@ "qr code", "qrcode" ], + "support": { + "issues": "https://github.com/milon/barcode/issues", + "source": "https://github.com/milon/barcode/tree/7.0.1" + }, "funding": [ { "type": "custom" @@ -1354,6 +1437,10 @@ "punycode", "unicode" ], + "support": { + "issues": "https://github.com/mlocati/idna/issues", + "source": "https://github.com/mlocati/idna" + }, "time": "2019-09-02T15:52:28+00:00" }, { @@ -1412,6 +1499,10 @@ "range", "subnet" ], + "support": { + "issues": "https://github.com/mlocati/ip-lib/issues", + "source": "https://github.com/mlocati/ip-lib/tree/1.13.0" + }, "funding": [ { "url": "https://github.com/sponsors/mlocati", @@ -1477,6 +1568,10 @@ "smtp", "spf" ], + "support": { + "issues": "https://github.com/mlocati/spf-lib/issues", + "source": "https://github.com/mlocati/spf-lib" + }, "funding": [ { "url": "https://github.com/sponsors/mlocati", @@ -1533,6 +1628,10 @@ "keywords": [ "enum" ], + "support": { + "issues": "https://github.com/myclabs/php-enum/issues", + "source": "https://github.com/myclabs/php-enum/tree/1.7.7" + }, "funding": [ { "url": "https://github.com/mnapoli", @@ -1547,16 +1646,16 @@ }, { "name": "nesbot/carbon", - "version": "2.41.5", + "version": "2.42.0", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "c4a9caf97cfc53adfc219043bcecf42bc663acee" + "reference": "d0463779663437392fe42ff339ebc0213bd55498" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/c4a9caf97cfc53adfc219043bcecf42bc663acee", - "reference": "c4a9caf97cfc53adfc219043bcecf42bc663acee", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d0463779663437392fe42ff339ebc0213bd55498", + "reference": "d0463779663437392fe42ff339ebc0213bd55498", "shasum": "" }, "require": { @@ -1571,7 +1670,7 @@ "kylekatarnls/multi-tester": "^2.0", "phpmd/phpmd": "^2.9", "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^0.12.35", + "phpstan/phpstan": "^0.12.54", "phpunit/phpunit": "^7.5 || ^8.0", "squizlabs/php_codesniffer": "^3.4" }, @@ -1622,6 +1721,10 @@ "datetime", "time" ], + "support": { + "issues": "https://github.com/briannesbitt/Carbon/issues", + "source": "https://github.com/briannesbitt/Carbon" + }, "funding": [ { "url": "https://opencollective.com/Carbon", @@ -1632,7 +1735,7 @@ "type": "tidelift" } ], - "time": "2020-10-23T06:02:30+00:00" + "time": "2020-11-28T14:25:28+00:00" }, { "name": "nette/php-generator", @@ -1696,24 +1799,31 @@ "php", "scaffolding" ], + "support": { + "issues": "https://github.com/nette/php-generator/issues", + "source": "https://github.com/nette/php-generator/tree/v3.5.1" + }, "time": "2020-11-04T11:26:26+00:00" }, { "name": "nette/utils", - "version": "v3.1.3", + "version": "v3.2.0", "source": { "type": "git", "url": "https://github.com/nette/utils.git", - "reference": "c09937fbb24987b2a41c6022ebe84f4f1b8eec0f" + "reference": "d0427c1811462dbb6c503143eabe5478b26685f7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/utils/zipball/c09937fbb24987b2a41c6022ebe84f4f1b8eec0f", - "reference": "c09937fbb24987b2a41c6022ebe84f4f1b8eec0f", + "url": "https://api.github.com/repos/nette/utils/zipball/d0427c1811462dbb6c503143eabe5478b26685f7", + "reference": "d0427c1811462dbb6c503143eabe5478b26685f7", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2 <8.1" + }, + "conflict": { + "nette/di": "<3.0.6" }, "require-dev": { "nette/tester": "~2.0", @@ -1732,7 +1842,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.1-dev" + "dev-master": "3.2-dev" } }, "autoload": { @@ -1756,7 +1866,7 @@ "homepage": "https://nette.org/contributors" } ], - "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", + "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", "homepage": "https://nette.org", "keywords": [ "array", @@ -1774,7 +1884,11 @@ "utility", "validation" ], - "time": "2020-08-07T10:34:21+00:00" + "support": { + "issues": "https://github.com/nette/utils/issues", + "source": "https://github.com/nette/utils/tree/v3.2.0" + }, + "time": "2020-11-25T23:47:50+00:00" }, { "name": "parsecsv/php-parsecsv", @@ -1834,6 +1948,10 @@ } ], "description": "CSV data parser for PHP", + "support": { + "issues": "https://github.com/parsecsv/parsecsv-for-php/issues", + "source": "https://github.com/parsecsv/parsecsv-for-php" + }, "time": "2020-04-25T17:17:04+00:00" }, { @@ -1871,6 +1989,10 @@ ], "description": "A library to read, parse, export and make subsets of different types of font files.", "homepage": "https://github.com/PhenX/php-font-lib", + "support": { + "issues": "https://github.com/PhenX/php-font-lib/issues", + "source": "https://github.com/PhenX/php-font-lib/tree/0.5.2" + }, "time": "2020-03-08T15:31:32+00:00" }, { @@ -1918,20 +2040,24 @@ } ], "description": "A DKIM signature validator in PHP.", + "support": { + "issues": "https://github.com/PHPMailer/DKIMValidator/issues", + "source": "https://github.com/PHPMailer/DKIMValidator/tree/v0.3" + }, "time": "2019-10-10T17:19:06+00:00" }, { "name": "phpmailer/phpmailer", - "version": "v6.1.8", + "version": "v6.2.0", "source": { "type": "git", "url": "https://github.com/PHPMailer/PHPMailer.git", - "reference": "917ab212fa00dc6eacbb26e8bc387ebe40993bc1" + "reference": "e38888a75c070304ca5514197d4847a59a5c853f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/917ab212fa00dc6eacbb26e8bc387ebe40993bc1", - "reference": "917ab212fa00dc6eacbb26e8bc387ebe40993bc1", + "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e38888a75c070304ca5514197d4847a59a5c853f", + "reference": "e38888a75c070304ca5514197d4847a59a5c853f", "shasum": "" }, "require": { @@ -1941,9 +2067,12 @@ "php": ">=5.5.0" }, "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", "doctrine/annotations": "^1.2", - "friendsofphp/php-cs-fixer": "^2.2", - "phpunit/phpunit": "^4.8 || ^5.7" + "phpcompatibility/php-compatibility": "^9.3.5", + "roave/security-advisories": "dev-latest", + "squizlabs/php_codesniffer": "^3.5.6", + "yoast/phpunit-polyfills": "^0.2.0" }, "suggest": { "ext-mbstring": "Needed to send email in multibyte encoding charset", @@ -1981,13 +2110,17 @@ } ], "description": "PHPMailer is a full-featured email creation and transfer class for PHP", + "support": { + "issues": "https://github.com/PHPMailer/PHPMailer/issues", + "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.2.0" + }, "funding": [ { - "url": "https://github.com/synchro", + "url": "https://github.com/Synchro", "type": "github" } ], - "time": "2020-10-09T14:55:58+00:00" + "time": "2020-11-25T15:24:57+00:00" }, { "name": "phpoffice/phpspreadsheet", @@ -2083,6 +2216,10 @@ "xls", "xlsx" ], + "support": { + "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues", + "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.15.0" + }, "time": "2020-10-11T13:20:59+00:00" }, { @@ -2132,6 +2269,10 @@ "container-interop", "psr" ], + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/master" + }, "time": "2017-02-14T16:28:37+00:00" }, { @@ -2181,6 +2322,9 @@ "psr", "psr-18" ], + "support": { + "source": "https://github.com/php-fig/http-client/tree/master" + }, "time": "2020-06-29T06:28:15+00:00" }, { @@ -2233,6 +2377,9 @@ "request", "response" ], + "support": { + "source": "https://github.com/php-fig/http-factory/tree/master" + }, "time": "2019-04-30T12:38:16+00:00" }, { @@ -2283,6 +2430,9 @@ "request", "response" ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/master" + }, "time": "2016-08-06T14:39:51+00:00" }, { @@ -2330,6 +2480,9 @@ "psr", "psr-3" ], + "support": { + "source": "https://github.com/php-fig/log/tree/1.1.3" + }, "time": "2020-03-23T09:12:05+00:00" }, { @@ -2378,6 +2531,9 @@ "psr-16", "simple-cache" ], + "support": { + "source": "https://github.com/php-fig/simple-cache/tree/master" + }, "time": "2017-10-23T01:57:42+00:00" }, { @@ -2418,6 +2574,10 @@ } ], "description": "A polyfill for getallheaders.", + "support": { + "issues": "https://github.com/ralouphie/getallheaders/issues", + "source": "https://github.com/ralouphie/getallheaders/tree/develop" + }, "time": "2019-03-08T08:55:37+00:00" }, { @@ -2463,6 +2623,10 @@ "parser", "stylesheet" ], + "support": { + "issues": "https://github.com/sabberworm/PHP-CSS-Parser/issues", + "source": "https://github.com/sabberworm/PHP-CSS-Parser/tree/8.3.1" + }, "time": "2020-06-01T09:10:00+00:00" }, { @@ -2544,6 +2708,11 @@ "framework", "iCalendar" ], + "support": { + "forum": "https://groups.google.com/group/sabredav-discuss", + "issues": "https://github.com/sabre-io/dav/issues", + "source": "https://github.com/fruux/sabre-dav" + }, "time": "2020-11-09T07:48:35+00:00" }, { @@ -2605,6 +2774,11 @@ "reactor", "signal" ], + "support": { + "forum": "https://groups.google.com/group/sabredav-discuss", + "issues": "https://github.com/sabre-io/event/issues", + "source": "https://github.com/fruux/sabre-event" + }, "time": "2020-10-03T11:02:22+00:00" }, { @@ -2663,6 +2837,11 @@ "keywords": [ "http" ], + "support": { + "forum": "https://groups.google.com/group/sabredav-discuss", + "issues": "https://github.com/sabre-io/http/issues", + "source": "https://github.com/fruux/sabre-http" + }, "time": "2020-10-03T11:27:32+00:00" }, { @@ -2715,6 +2894,11 @@ "uri", "url" ], + "support": { + "forum": "https://groups.google.com/group/sabredav-discuss", + "issues": "https://github.com/sabre-io/uri/issues", + "source": "https://github.com/fruux/sabre-uri" + }, "time": "2020-10-03T10:33:23+00:00" }, { @@ -2813,6 +2997,11 @@ "xCal", "xCard" ], + "support": { + "forum": "https://groups.google.com/group/sabredav-discuss", + "issues": "https://github.com/sabre-io/vobject/issues", + "source": "https://github.com/fruux/sabre-vobject" + }, "time": "2020-11-09T04:31:38+00:00" }, { @@ -2877,6 +3066,11 @@ "dom", "xml" ], + "support": { + "forum": "https://groups.google.com/group/sabredav-discuss", + "issues": "https://github.com/sabre-io/xml/issues", + "source": "https://github.com/fruux/sabre-xml" + }, "time": "2020-10-03T10:08:14+00:00" }, { @@ -2931,6 +3125,10 @@ "recurring", "rrule" ], + "support": { + "issues": "https://github.com/simshaun/recurr/issues", + "source": "https://github.com/simshaun/recurr/tree/v4.0.2" + }, "time": "2019-11-18T17:48:08+00:00" }, { @@ -2988,6 +3186,12 @@ "keywords": [ "templating" ], + "support": { + "forum": "http://www.smarty.net/forums/", + "irc": "irc://irc.freenode.org/smarty", + "issues": "https://github.com/smarty-php/smarty/issues", + "source": "https://github.com/smarty-php/smarty/tree/v3.1.36" + }, "time": "2020-04-14T14:44:26+00:00" }, { @@ -3045,6 +3249,10 @@ "keywords": [ "google authenticator" ], + "support": { + "issues": "https://github.com/sonata-project/GoogleAuthenticator/issues", + "source": "https://github.com/sonata-project/GoogleAuthenticator/tree/2.2.0" + }, "time": "2018-07-18T22:08:02+00:00" }, { @@ -3108,6 +3316,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-iconv/tree/v1.20.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -3185,6 +3396,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -3265,6 +3479,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.20.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -3283,23 +3500,23 @@ }, { "name": "symfony/translation", - "version": "v5.1.8", + "version": "v5.2.0", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "27980838fd261e04379fa91e94e81e662fe5a1b6" + "reference": "52f486a707510884450df461b5a6429dd7a67379" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/27980838fd261e04379fa91e94e81e662fe5a1b6", - "reference": "27980838fd261e04379fa91e94e81e662fe5a1b6", + "url": "https://api.github.com/repos/symfony/translation/zipball/52f486a707510884450df461b5a6429dd7a67379", + "reference": "52f486a707510884450df461b5a6429dd7a67379", "shasum": "" }, "require": { "php": ">=7.2.5", "symfony/polyfill-mbstring": "~1.0", "symfony/polyfill-php80": "^1.15", - "symfony/translation-contracts": "^2" + "symfony/translation-contracts": "^2.3" }, "conflict": { "symfony/config": "<4.4", @@ -3329,6 +3546,9 @@ }, "type": "library", "autoload": { + "files": [ + "Resources/functions.php" + ], "psr-4": { "Symfony\\Component\\Translation\\": "" }, @@ -3352,6 +3572,9 @@ ], "description": "Symfony Translation Component", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/translation/tree/v5.2.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -3366,7 +3589,7 @@ "type": "tidelift" } ], - "time": "2020-10-24T12:01:57+00:00" + "time": "2020-11-28T11:24:18+00:00" }, { "name": "symfony/translation-contracts", @@ -3427,6 +3650,9 @@ "interoperability", "standards" ], + "support": { + "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -3445,16 +3671,16 @@ }, { "name": "symfony/var-dumper", - "version": "v5.1.8", + "version": "v5.2.0", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a" + "reference": "173a79c462b1c81e1fa26129f71e41333d846b26" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/4e13f3fcefb1fcaaa5efb5403581406f4e840b9a", - "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/173a79c462b1c81e1fa26129f71e41333d846b26", + "reference": "173a79c462b1c81e1fa26129f71e41333d846b26", "shasum": "" }, "require": { @@ -3512,6 +3738,9 @@ "debug", "dump" ], + "support": { + "source": "https://github.com/symfony/var-dumper/tree/v5.2.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -3526,7 +3755,7 @@ "type": "tidelift" } ], - "time": "2020-10-27T10:11:13+00:00" + "time": "2020-11-27T00:39:34+00:00" }, { "name": "voku/portable-ascii", @@ -3574,6 +3803,10 @@ "clean", "php" ], + "support": { + "issues": "https://github.com/voku/portable-ascii/issues", + "source": "https://github.com/voku/portable-ascii/tree/1.5.6" + }, "funding": [ { "url": "https://www.paypal.me/moelleken", @@ -3644,6 +3877,9 @@ "php", "security" ], + "support": { + "source": "https://github.com/YetiForceCompany/csrf-magic/tree/master" + }, "time": "2019-11-19T12:16:36+00:00" }, { @@ -3696,6 +3932,10 @@ "html to pdf", "pdf" ], + "support": { + "issues": "https://github.com/YetiForceCompany/YetiForcePDF/issues", + "source": "https://github.com/YetiForceCompany/YetiForcePDF/tree/developer" + }, "funding": [ { "url": "https://opencollective.com/yetiforcecrm", @@ -3793,6 +4033,9 @@ "framework", "yii2" ], + "support": { + "source": "https://github.com/YetiForceCompany/yii2-framework/tree/2.0.39.2" + }, "time": "2020-11-19T07:05:31+00:00" }, { @@ -3857,6 +4100,11 @@ "parser", "php-imap" ], + "support": { + "docs": "https://mail-mime-parser.org/#usage-guide", + "issues": "https://github.com/zbateson/mail-mime-parser/issues", + "source": "https://github.com/zbateson/mail-mime-parser" + }, "funding": [ { "url": "https://github.com/zbateson", @@ -3920,6 +4168,10 @@ "multibyte", "string" ], + "support": { + "issues": "https://github.com/zbateson/mb-wrapper/issues", + "source": "https://github.com/zbateson/mb-wrapper/tree/1.0.1" + }, "funding": [ { "url": "https://github.com/zbateson", @@ -3977,6 +4229,10 @@ "stream", "uuencode" ], + "support": { + "issues": "https://github.com/zbateson/stream-decorators/issues", + "source": "https://github.com/zbateson/stream-decorators/tree/master" + }, "funding": [ { "url": "https://github.com/zbateson", @@ -4016,6 +4272,10 @@ ], "description": "Promoting the interoperability of container objects (DIC, SL, etc.)", "homepage": "https://github.com/container-interop/container-interop", + "support": { + "issues": "https://github.com/container-interop/container-interop/issues", + "source": "https://github.com/container-interop/container-interop/tree/master" + }, "abandoned": "psr/container", "time": "2017-02-14T19:40:03+00:00" }, @@ -4088,6 +4348,10 @@ "docblock", "parser" ], + "support": { + "issues": "https://github.com/doctrine/annotations/issues", + "source": "https://github.com/doctrine/annotations/tree/1.11.1" + }, "time": "2020-10-26T10:28:16+00:00" }, { @@ -4139,6 +4403,10 @@ "constructor", "instantiate" ], + "support": { + "issues": "https://github.com/doctrine/instantiator/issues", + "source": "https://github.com/doctrine/instantiator/tree/1.4.0" + }, "funding": [ { "url": "https://www.doctrine-project.org/sponsorship.html", @@ -4215,6 +4483,10 @@ "parser", "php" ], + "support": { + "issues": "https://github.com/doctrine/lexer/issues", + "source": "https://github.com/doctrine/lexer/tree/1.2.1" + }, "funding": [ { "url": "https://www.doctrine-project.org/sponsorship.html", @@ -4282,6 +4554,10 @@ "test", "testing" ], + "support": { + "issues": "https://github.com/Maks3w/SwaggerAssertions/issues", + "source": "https://github.com/Maks3w/SwaggerAssertions/tree/v0.12.0" + }, "time": "2020-02-12T15:58:08+00:00" }, { @@ -4348,6 +4624,10 @@ "json", "schema" ], + "support": { + "issues": "https://github.com/justinrainbow/json-schema/issues", + "source": "https://github.com/justinrainbow/json-schema/tree/5.2.10" + }, "time": "2020-05-27T16:41:55+00:00" }, { @@ -4397,6 +4677,14 @@ "escaper", "laminas" ], + "support": { + "chat": "https://laminas.dev/chat", + "docs": "https://docs.laminas.dev/laminas-escaper/", + "forum": "https://discourse.laminas.dev", + "issues": "https://github.com/laminas/laminas-escaper/issues", + "rss": "https://github.com/laminas/laminas-escaper/releases.atom", + "source": "https://github.com/laminas/laminas-escaper" + }, "time": "2019-12-31T16:43:30+00:00" }, { @@ -4449,6 +4737,14 @@ "http client", "laminas" ], + "support": { + "chat": "https://laminas.dev/chat", + "docs": "https://docs.laminas.dev/laminas-http/", + "forum": "https://discourse.laminas.dev", + "issues": "https://github.com/laminas/laminas-http/issues", + "rss": "https://github.com/laminas/laminas-http/releases.atom", + "source": "https://github.com/laminas/laminas-http" + }, "funding": [ { "url": "https://funding.communitybridge.org/projects/laminas-project", @@ -4504,6 +4800,14 @@ "laminas", "loader" ], + "support": { + "chat": "https://laminas.dev/chat", + "docs": "https://docs.laminas.dev/laminas-loader/", + "forum": "https://discourse.laminas.dev", + "issues": "https://github.com/laminas/laminas-loader/issues", + "rss": "https://github.com/laminas/laminas-loader/releases.atom", + "source": "https://github.com/laminas/laminas-loader" + }, "time": "2019-12-31T17:18:27+00:00" }, { @@ -4554,6 +4858,14 @@ "laminas", "stdlib" ], + "support": { + "chat": "https://laminas.dev/chat", + "docs": "https://docs.laminas.dev/laminas-stdlib/", + "forum": "https://discourse.laminas.dev", + "issues": "https://github.com/laminas/laminas-stdlib/issues", + "rss": "https://github.com/laminas/laminas-stdlib/releases.atom", + "source": "https://github.com/laminas/laminas-stdlib" + }, "time": "2019-12-31T17:51:15+00:00" }, { @@ -4605,6 +4917,14 @@ "laminas", "uri" ], + "support": { + "chat": "https://laminas.dev/chat", + "docs": "https://docs.laminas.dev/laminas-uri/", + "forum": "https://discourse.laminas.dev", + "issues": "https://github.com/laminas/laminas-uri/issues", + "rss": "https://github.com/laminas/laminas-uri/releases.atom", + "source": "https://github.com/laminas/laminas-uri" + }, "time": "2019-12-31T17:56:00+00:00" }, { @@ -4684,6 +5004,14 @@ "laminas", "validator" ], + "support": { + "chat": "https://laminas.dev/chat", + "docs": "https://docs.laminas.dev/laminas-validator/", + "forum": "https://discourse.laminas.dev", + "issues": "https://github.com/laminas/laminas-validator/issues", + "rss": "https://github.com/laminas/laminas-validator/releases.atom", + "source": "https://github.com/laminas/laminas-validator" + }, "time": "2020-03-31T18:57:01+00:00" }, { @@ -4732,6 +5060,12 @@ "laminas", "zf" ], + "support": { + "forum": "https://discourse.laminas.dev/", + "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues", + "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom", + "source": "https://github.com/laminas/laminas-zendframework-bridge" + }, "funding": [ { "url": "https://funding.communitybridge.org/projects/laminas-project", @@ -4786,6 +5120,10 @@ "object", "object graph" ], + "support": { + "issues": "https://github.com/myclabs/DeepCopy/issues", + "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2" + }, "funding": [ { "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", @@ -4796,28 +5134,29 @@ }, { "name": "phar-io/manifest", - "version": "1.0.3", + "version": "2.0.1", "source": { "type": "git", "url": "https://github.com/phar-io/manifest.git", - "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4" + "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4", - "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133", + "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133", "shasum": "" }, "require": { "ext-dom": "*", "ext-phar": "*", - "phar-io/version": "^2.0", - "php": "^5.6 || ^7.0" + "ext-xmlwriter": "*", + "phar-io/version": "^3.0.1", + "php": "^7.2 || ^8.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "2.0.x-dev" } }, "autoload": { @@ -4847,24 +5186,28 @@ } ], "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", - "time": "2018-07-08T19:23:20+00:00" + "support": { + "issues": "https://github.com/phar-io/manifest/issues", + "source": "https://github.com/phar-io/manifest/tree/master" + }, + "time": "2020-06-27T14:33:11+00:00" }, { "name": "phar-io/version", - "version": "2.0.1", + "version": "3.0.3", "source": { "type": "git", "url": "https://github.com/phar-io/version.git", - "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6" + "reference": "726c026815142e4f8677b7cb7f2249c9ffb7ecae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6", - "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6", + "url": "https://api.github.com/repos/phar-io/version/zipball/726c026815142e4f8677b7cb7f2249c9ffb7ecae", + "reference": "726c026815142e4f8677b7cb7f2249c9ffb7ecae", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0" + "php": "^7.2 || ^8.0" }, "type": "library", "autoload": { @@ -4894,7 +5237,11 @@ } ], "description": "Library for handling version information and constraints", - "time": "2018-07-08T19:19:57+00:00" + "support": { + "issues": "https://github.com/phar-io/version/issues", + "source": "https://github.com/phar-io/version/tree/3.0.3" + }, + "time": "2020-11-30T09:21:21+00:00" }, { "name": "php-console/php-console", @@ -4945,6 +5292,10 @@ "google chrome", "php" ], + "support": { + "issues": "https://github.com/barbushin/php-console/issues", + "source": "https://github.com/barbushin/php-console/tree/master" + }, "time": "2019-07-25T03:43:28+00:00" }, { @@ -5012,6 +5363,10 @@ "selenium", "webdriver" ], + "support": { + "issues": "https://github.com/php-webdriver/php-webdriver/issues", + "source": "https://github.com/php-webdriver/php-webdriver/tree/1.9.0" + }, "time": "2020-11-19T15:21:05+00:00" }, { @@ -5061,6 +5416,10 @@ "reflection", "static analysis" ], + "support": { + "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues", + "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x" + }, "time": "2020-06-27T09:03:43+00:00" }, { @@ -5113,6 +5472,10 @@ } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", + "support": { + "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", + "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master" + }, "time": "2020-09-03T19:13:55+00:00" }, { @@ -5158,6 +5521,10 @@ } ], "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", + "support": { + "issues": "https://github.com/phpDocumentor/TypeResolver/issues", + "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0" + }, "time": "2020-09-17T18:55:26+00:00" }, { @@ -5221,26 +5588,30 @@ "spy", "stub" ], + "support": { + "issues": "https://github.com/phpspec/prophecy/issues", + "source": "https://github.com/phpspec/prophecy/tree/1.12.1" + }, "time": "2020-09-29T09:10:42+00:00" }, { "name": "phpunit/php-code-coverage", - "version": "7.0.10", + "version": "7.0.13", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf" + "reference": "ad0dcd7b184e76f7198a1fe07685bfbec3ae911a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f1884187926fbb755a9aaf0b3836ad3165b478bf", - "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ad0dcd7b184e76f7198a1fe07685bfbec3ae911a", + "reference": "ad0dcd7b184e76f7198a1fe07685bfbec3ae911a", "shasum": "" }, "require": { "ext-dom": "*", "ext-xmlwriter": "*", - "php": "^7.2", + "php": ">=7.2", "phpunit/php-file-iterator": "^2.0.2", "phpunit/php-text-template": "^1.2.1", "phpunit/php-token-stream": "^3.1.1", @@ -5284,27 +5655,37 @@ "testing", "xunit" ], - "time": "2019-11-20T13:55:58+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.13" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-11-30T08:35:22+00:00" }, { "name": "phpunit/php-file-iterator", - "version": "2.0.2", + "version": "2.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-file-iterator.git", - "reference": "050bedf145a257b1ff02746c31894800e5122946" + "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946", - "reference": "050bedf145a257b1ff02746c31894800e5122946", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/4b49fb70f067272b659ef0174ff9ca40fdaa6357", + "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357", "shasum": "" }, "require": { - "php": "^7.1" + "php": ">=7.1" }, "require-dev": { - "phpunit/phpunit": "^7.1" + "phpunit/phpunit": "^8.5" }, "type": "library", "extra": { @@ -5334,7 +5715,17 @@ "filesystem", "iterator" ], - "time": "2018-09-13T20:33:42+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-11-30T08:25:21+00:00" }, { "name": "phpunit/php-text-template", @@ -5375,27 +5766,31 @@ "keywords": [ "template" ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-text-template/issues", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1" + }, "time": "2015-06-21T13:50:34+00:00" }, { "name": "phpunit/php-timer", - "version": "2.1.2", + "version": "2.1.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-timer.git", - "reference": "1038454804406b0b5f5f520358e78c1c2f71501e" + "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e", - "reference": "1038454804406b0b5f5f520358e78c1c2f71501e", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662", + "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662", "shasum": "" }, "require": { - "php": "^7.1" + "php": ">=7.1" }, "require-dev": { - "phpunit/phpunit": "^7.0" + "phpunit/phpunit": "^8.5" }, "type": "library", "extra": { @@ -5424,25 +5819,35 @@ "keywords": [ "timer" ], - "time": "2019-06-07T04:22:29+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/php-timer/issues", + "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-11-30T08:20:02+00:00" }, { "name": "phpunit/php-token-stream", - "version": "3.1.1", + "version": "3.1.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-token-stream.git", - "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff" + "reference": "472b687829041c24b25f475e14c2f38a09edf1c2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff", - "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff", + "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/472b687829041c24b25f475e14c2f38a09edf1c2", + "reference": "472b687829041c24b25f475e14c2f38a09edf1c2", "shasum": "" }, "require": { "ext-tokenizer": "*", - "php": "^7.1" + "php": ">=7.1" }, "require-dev": { "phpunit/phpunit": "^7.0" @@ -5473,21 +5878,31 @@ "keywords": [ "tokenizer" ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-token-stream/issues", + "source": "https://github.com/sebastianbergmann/php-token-stream/tree/3.1.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], "abandoned": true, - "time": "2019-09-17T06:23:10+00:00" + "time": "2020-11-30T08:38:46+00:00" }, { "name": "phpunit/phpunit", - "version": "8.5.9", + "version": "8.5.13", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "f5c8a5dd5e7e8d68d7562bfb48d47287d33937d6" + "reference": "8e86be391a58104ef86037ba8a846524528d784e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f5c8a5dd5e7e8d68d7562bfb48d47287d33937d6", - "reference": "f5c8a5dd5e7e8d68d7562bfb48d47287d33937d6", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8e86be391a58104ef86037ba8a846524528d784e", + "reference": "8e86be391a58104ef86037ba8a846524528d784e", "shasum": "" }, "require": { @@ -5499,11 +5914,11 @@ "ext-xml": "*", "ext-xmlwriter": "*", "myclabs/deep-copy": "^1.10.0", - "phar-io/manifest": "^1.0.3", - "phar-io/version": "^2.0.1", - "php": "^7.2", + "phar-io/manifest": "^2.0.1", + "phar-io/version": "^3.0.2", + "php": ">=7.2", "phpspec/prophecy": "^1.10.3", - "phpunit/php-code-coverage": "^7.0.10", + "phpunit/php-code-coverage": "^7.0.12", "phpunit/php-file-iterator": "^2.0.2", "phpunit/php-text-template": "^1.2.1", "phpunit/php-timer": "^2.1.2", @@ -5557,6 +5972,10 @@ "testing", "xunit" ], + "support": { + "issues": "https://github.com/sebastianbergmann/phpunit/issues", + "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.13" + }, "funding": [ { "url": "https://phpunit.de/donate.html", @@ -5567,7 +5986,7 @@ "type": "github" } ], - "time": "2020-11-10T12:51:38+00:00" + "time": "2020-12-01T04:53:52+00:00" }, { "name": "rize/uri-template", @@ -5611,27 +6030,31 @@ "template", "uri" ], + "support": { + "issues": "https://github.com/rize/UriTemplate/issues", + "source": "https://github.com/rize/UriTemplate/tree/master" + }, "time": "2017-06-14T03:57:53+00:00" }, { "name": "sebastian/code-unit-reverse-lookup", - "version": "1.0.1", + "version": "1.0.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", - "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18" + "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", - "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619", + "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0" + "php": ">=5.6" }, "require-dev": { - "phpunit/phpunit": "^5.7 || ^6.0" + "phpunit/phpunit": "^8.5" }, "type": "library", "extra": { @@ -5656,29 +6079,39 @@ ], "description": "Looks up which function or method a line of code belongs to", "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", - "time": "2017-03-04T06:30:41+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-11-30T08:15:22+00:00" }, { "name": "sebastian/comparator", - "version": "3.0.2", + "version": "3.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da" + "reference": "1071dfcef776a57013124ff35e1fc41ccd294758" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da", - "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758", + "reference": "1071dfcef776a57013124ff35e1fc41ccd294758", "shasum": "" }, "require": { - "php": "^7.1", + "php": ">=7.1", "sebastian/diff": "^3.0", "sebastian/exporter": "^3.1" }, "require-dev": { - "phpunit/phpunit": "^7.1" + "phpunit/phpunit": "^8.5" }, "type": "library", "extra": { @@ -5696,6 +6129,10 @@ "BSD-3-Clause" ], "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, { "name": "Jeff Welch", "email": "whatthejeff@gmail.com" @@ -5707,10 +6144,6 @@ { "name": "Bernhard Schussek", "email": "bschussek@2bepublished.at" - }, - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" } ], "description": "Provides the functionality to compare PHP values for equality", @@ -5720,24 +6153,34 @@ "compare", "equality" ], - "time": "2018-07-12T15:12:46+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/comparator/issues", + "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-11-30T08:04:30+00:00" }, { "name": "sebastian/diff", - "version": "3.0.2", + "version": "3.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29" + "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29", - "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211", + "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211", "shasum": "" }, "require": { - "php": "^7.1" + "php": ">=7.1" }, "require-dev": { "phpunit/phpunit": "^7.5 || ^8.0", @@ -5759,13 +6202,13 @@ "BSD-3-Clause" ], "authors": [ - { - "name": "Kore Nordmann", - "email": "mail@kore-nordmann.de" - }, { "name": "Sebastian Bergmann", "email": "sebastian@phpunit.de" + }, + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" } ], "description": "Diff implementation", @@ -5776,24 +6219,34 @@ "unidiff", "unified diff" ], - "time": "2019-02-04T06:01:07+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/diff/issues", + "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-11-30T07:59:04+00:00" }, { "name": "sebastian/environment", - "version": "4.2.3", + "version": "4.2.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368" + "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368", - "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0", + "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0", "shasum": "" }, "require": { - "php": "^7.1" + "php": ">=7.1" }, "require-dev": { "phpunit/phpunit": "^7.5" @@ -5829,24 +6282,34 @@ "environment", "hhvm" ], - "time": "2019-11-20T08:46:58+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/environment/issues", + "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-11-30T07:53:42+00:00" }, { "name": "sebastian/exporter", - "version": "3.1.2", + "version": "3.1.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e" + "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e", - "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e", + "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e", "shasum": "" }, "require": { - "php": "^7.0", + "php": ">=7.0", "sebastian/recursion-context": "^3.0" }, "require-dev": { @@ -5896,24 +6359,34 @@ "export", "exporter" ], - "time": "2019-09-14T09:02:43+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/exporter/issues", + "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-11-30T07:47:53+00:00" }, { "name": "sebastian/global-state", - "version": "3.0.0", + "version": "3.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/global-state.git", - "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4" + "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4", - "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/474fb9edb7ab891665d3bfc6317f42a0a150454b", + "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b", "shasum": "" }, "require": { - "php": "^7.2", + "php": ">=7.2", "sebastian/object-reflector": "^1.1.1", "sebastian/recursion-context": "^3.0" }, @@ -5950,24 +6423,34 @@ "keywords": [ "global state" ], - "time": "2019-02-01T05:30:01+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/global-state/issues", + "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-11-30T07:43:24+00:00" }, { "name": "sebastian/object-enumerator", - "version": "3.0.3", + "version": "3.0.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/object-enumerator.git", - "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5" + "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5", - "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2", + "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2", "shasum": "" }, "require": { - "php": "^7.0", + "php": ">=7.0", "sebastian/object-reflector": "^1.1.1", "sebastian/recursion-context": "^3.0" }, @@ -5997,24 +6480,34 @@ ], "description": "Traverses array structures and object graphs to enumerate all referenced objects", "homepage": "https://github.com/sebastianbergmann/object-enumerator/", - "time": "2017-08-03T12:35:26+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-11-30T07:40:27+00:00" }, { "name": "sebastian/object-reflector", - "version": "1.1.1", + "version": "1.1.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/object-reflector.git", - "reference": "773f97c67f28de00d397be301821b06708fca0be" + "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be", - "reference": "773f97c67f28de00d397be301821b06708fca0be", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d", + "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d", "shasum": "" }, "require": { - "php": "^7.0" + "php": ">=7.0" }, "require-dev": { "phpunit/phpunit": "^6.0" @@ -6042,24 +6535,34 @@ ], "description": "Allows reflection of object attributes, including inherited and non-public ones", "homepage": "https://github.com/sebastianbergmann/object-reflector/", - "time": "2017-03-29T09:07:27+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/object-reflector/issues", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-11-30T07:37:18+00:00" }, { "name": "sebastian/recursion-context", - "version": "3.0.0", + "version": "3.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8" + "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", - "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb", + "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb", "shasum": "" }, "require": { - "php": "^7.0" + "php": ">=7.0" }, "require-dev": { "phpunit/phpunit": "^6.0" @@ -6080,14 +6583,14 @@ "BSD-3-Clause" ], "authors": [ - { - "name": "Jeff Welch", - "email": "whatthejeff@gmail.com" - }, { "name": "Sebastian Bergmann", "email": "sebastian@phpunit.de" }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, { "name": "Adam Harvey", "email": "aharvey@php.net" @@ -6095,24 +6598,34 @@ ], "description": "Provides functionality to recursively process PHP variables", "homepage": "http://www.github.com/sebastianbergmann/recursion-context", - "time": "2017-03-03T06:23:57+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/recursion-context/issues", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-11-30T07:34:24+00:00" }, { "name": "sebastian/resource-operations", - "version": "2.0.1", + "version": "2.0.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/resource-operations.git", - "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9" + "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9", - "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9", + "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3", + "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3", "shasum": "" }, "require": { - "php": "^7.1" + "php": ">=7.1" }, "type": "library", "extra": { @@ -6137,24 +6650,34 @@ ], "description": "Provides a list of PHP built-in functions that operate on resources", "homepage": "https://www.github.com/sebastianbergmann/resource-operations", - "time": "2018-10-04T04:07:39+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/resource-operations/issues", + "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-11-30T07:30:19+00:00" }, { "name": "sebastian/type", - "version": "1.1.3", + "version": "1.1.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/type.git", - "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3" + "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/3aaaa15fa71d27650d62a948be022fe3b48541a3", - "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4", + "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4", "shasum": "" }, "require": { - "php": "^7.2" + "php": ">=7.2" }, "require-dev": { "phpunit/phpunit": "^8.2" @@ -6183,7 +6706,17 @@ ], "description": "Collection of value objects that represent the types of the PHP type system", "homepage": "https://github.com/sebastianbergmann/type", - "time": "2019-07-02T08:10:15+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/type/issues", + "source": "https://github.com/sebastianbergmann/type/tree/1.1.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-11-30T07:25:11+00:00" }, { "name": "sebastian/version", @@ -6226,6 +6759,10 @@ ], "description": "Library that helps with managing the version number of Git-hosted PHP projects", "homepage": "https://github.com/sebastianbergmann/version", + "support": { + "issues": "https://github.com/sebastianbergmann/version/issues", + "source": "https://github.com/sebastianbergmann/version/tree/master" + }, "time": "2016-10-03T07:35:21+00:00" }, { @@ -6275,6 +6812,10 @@ "parser", "validator" ], + "support": { + "issues": "https://github.com/Seldaek/jsonlint/issues", + "source": "https://github.com/Seldaek/jsonlint/tree/1.8.3" + }, "funding": [ { "url": "https://github.com/Seldaek", @@ -6335,6 +6876,9 @@ ], "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/deprecation-contracts/tree/master" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6353,16 +6897,16 @@ }, { "name": "symfony/finder", - "version": "v5.1.8", + "version": "v5.2.0", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "e70eb5a69c2ff61ea135a13d2266e8914a67b3a0" + "reference": "fd8305521692f27eae3263895d1ef1571c71a78d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/e70eb5a69c2ff61ea135a13d2266e8914a67b3a0", - "reference": "e70eb5a69c2ff61ea135a13d2266e8914a67b3a0", + "url": "https://api.github.com/repos/symfony/finder/zipball/fd8305521692f27eae3263895d1ef1571c71a78d", + "reference": "fd8305521692f27eae3263895d1ef1571c71a78d", "shasum": "" }, "require": { @@ -6393,6 +6937,9 @@ ], "description": "Symfony Finder Component", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/finder/tree/v5.2.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6407,7 +6954,7 @@ "type": "tidelift" } ], - "time": "2020-10-24T12:01:57+00:00" + "time": "2020-11-18T09:42:36+00:00" }, { "name": "symfony/polyfill-ctype", @@ -6469,6 +7016,9 @@ "polyfill", "portable" ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6487,16 +7037,16 @@ }, { "name": "symfony/process", - "version": "v5.1.8", + "version": "v5.2.0", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "f00872c3f6804150d6a0f73b4151daab96248101" + "reference": "240e74140d4d956265048f3025c0aecbbc302d54" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/f00872c3f6804150d6a0f73b4151daab96248101", - "reference": "f00872c3f6804150d6a0f73b4151daab96248101", + "url": "https://api.github.com/repos/symfony/process/zipball/240e74140d4d956265048f3025c0aecbbc302d54", + "reference": "240e74140d4d956265048f3025c0aecbbc302d54", "shasum": "" }, "require": { @@ -6528,6 +7078,9 @@ ], "description": "Symfony Process Component", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/process/tree/v5.2.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6542,20 +7095,20 @@ "type": "tidelift" } ], - "time": "2020-10-24T12:01:57+00:00" + "time": "2020-11-02T15:47:15+00:00" }, { "name": "symfony/yaml", - "version": "v5.1.8", + "version": "v5.2.0", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "f284e032c3cefefb9943792132251b79a6127ca6" + "reference": "bb73619b2ae5121bbbcd9f191dfd53ded17ae598" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/f284e032c3cefefb9943792132251b79a6127ca6", - "reference": "f284e032c3cefefb9943792132251b79a6127ca6", + "url": "https://api.github.com/repos/symfony/yaml/zipball/bb73619b2ae5121bbbcd9f191dfd53ded17ae598", + "reference": "bb73619b2ae5121bbbcd9f191dfd53ded17ae598", "shasum": "" }, "require": { @@ -6600,6 +7153,9 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/yaml/tree/v5.2.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6614,7 +7170,7 @@ "type": "tidelift" } ], - "time": "2020-10-24T12:03:25+00:00" + "time": "2020-11-28T10:57:20+00:00" }, { "name": "theseer/tokenizer", @@ -6654,6 +7210,10 @@ } ], "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", + "support": { + "issues": "https://github.com/theseer/tokenizer/issues", + "source": "https://github.com/theseer/tokenizer/tree/master" + }, "funding": [ { "url": "https://github.com/theseer", @@ -6709,6 +7269,10 @@ "check", "validate" ], + "support": { + "issues": "https://github.com/webmozart/assert/issues", + "source": "https://github.com/webmozart/assert/tree/master" + }, "time": "2020-07-08T17:02:28+00:00" }, { @@ -6776,6 +7340,10 @@ "rest", "service discovery" ], + "support": { + "issues": "https://github.com/zircote/swagger-php/issues", + "source": "https://github.com/zircote/swagger-php/tree/3.1.0" + }, "time": "2020-09-03T20:18:43+00:00" } ], @@ -6812,5 +7380,5 @@ "ext-hash": "*" }, "platform-dev": [], - "plugin-api-version": "1.1.0" + "plugin-api-version": "2.0.0" } diff --git a/config/ConfigTemplates.php b/config/ConfigTemplates.php index 2c9782580fa3..9c9b9ebbab33 100644 --- a/config/ConfigTemplates.php +++ b/config/ConfigTemplates.php @@ -282,6 +282,18 @@ 'default' => true, 'description' => 'Enable advanced phone number validation. Enabling it will block saving invalid phone number.' ], + 'headerAlertMessage' => [ + 'default' => '', + 'description' => 'Header alert message' + ], + 'headerAlertType' => [ + 'default' => '', + 'description' => 'Header alert type' + ], + 'headerAlertIcon' => [ + 'default' => '', + 'description' => 'Header alert icon' + ], ], 'debug' => [ 'LOG_TO_FILE' => [ @@ -959,6 +971,11 @@ 'description' => 'Lifetime session (in seconds)', 'validation' => '\App\Validator::integer' ], + 'maxLifetimeSessionCookie' => [ + 'default' => 0, + 'description' => "Specifies the lifetime of the cookie in seconds which is sent to the browser. The value 0 means 'until the browser is closed.'\nHow much time can someone be logged in to the browser. Defaults to 0.", + 'validation' => '\App\Validator::integer' + ], 'loginSessionRegenerate' => [ 'default' => true, 'description' => 'Update the current session id with a newly generated one after login and logout', diff --git a/config/Security.php b/config/Security.php index a271e9bfd529..fa28bf9a5d99 100644 --- a/config/Security.php +++ b/config/Security.php @@ -89,6 +89,12 @@ class Security /** Lifetime session (in seconds) */ public static $maxLifetimeSession = 900; + /** + * Specifies the lifetime of the cookie in seconds which is sent to the browser. The value 0 means 'until the browser is closed.' + * How much time can someone be logged in to the browser. Defaults to 0. + */ + public static $maxLifetimeSessionCookie = 0; + /** Update the current session id with a newly generated one after login and logout */ public static $loginSessionRegenerate = true; diff --git a/config/version.php b/config/version.php index 22414a9d0a9f..282735892acb 100644 --- a/config/version.php +++ b/config/version.php @@ -1,7 +1,7 @@ '6.0.0', - 'patchVersion' => '2020.11.23', - 'lib_roundcube' => '0.1.0' + 'appVersion' => '6.1.0', + 'patchVersion' => '2020.12.01', + 'lib_roundcube' => '0.1.5' ]; diff --git a/install/install_schema/data.sql b/install/install_schema/data.sql index 554871cd734e..4ad28d8e34a0 100644 --- a/install/install_schema/data.sql +++ b/install/install_schema/data.sql @@ -2260,7 +2260,7 @@ insert into `vtiger_cron_task`(`id`,`status`,`name`,`handler_class`,`frequency` insert into `vtiger_cron_task`(`id`,`status`,`name`,`handler_class`,`frequency`,`max_exe_time`,`laststart`,`lastend`,`sequence`,`module`,`description`,`lase_error`) values (34,0,'LBL_ARCHIVE_OLD_RECORDS','Vtiger_Social_Cron',86400,NULL,NULL,NULL,32,'Vtiger','',NULL); insert into `vtiger_cron_task`(`id`,`status`,`name`,`handler_class`,`frequency`,`max_exe_time`,`laststart`,`lastend`,`sequence`,`module`,`description`,`lase_error`) values (35,0,'LBL_GET_SOCIAL_MEDIA_MESSAGES','Vtiger_SocialGet_Cron',1800,NULL,NULL,NULL,33,'Vtiger','',NULL); insert into `vtiger_cron_task`(`id`,`status`,`name`,`handler_class`,`frequency`,`max_exe_time`,`laststart`,`lastend`,`sequence`,`module`,`description`,`lase_error`) values (36,0,'LBL_MAGENTO','Vtiger_Magento_Cron',60,NULL,NULL,NULL,29,'Vtiger',NULL,NULL); -insert into `vtiger_cron_task`(`id`,`status`,`name`,`handler_class`,`frequency`,`max_exe_time`,`laststart`,`lastend`,`sequence`,`module`,`description`,`lase_error`) values (37,1,'LBL_MAIL_RBL','Vtiger_MailRbl_Cron',86400,NULL,NULL,NULL,35,'Vtiger',NULL,NULL); +insert into `vtiger_cron_task`(`id`,`status`,`name`,`handler_class`,`frequency`,`max_exe_time`,`laststart`,`lastend`,`sequence`,`module`,`description`,`lase_error`) values (37,1,'LBL_MAIL_RBL','Vtiger_MailRbl_Cron',7200,NULL,NULL,NULL,35,'Vtiger',NULL,NULL); /*Data for the table `vtiger_currencies` */ diff --git a/install/languages/ar-SA/Settings/YetiForce.json b/install/languages/ar-SA/Settings/YetiForce.json index dd94155b3b7c..87f3ffeb860c 100644 --- a/install/languages/ar-SA/Settings/YetiForce.json +++ b/install/languages/ar-SA/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Help us create the best open system in the world and invest in your future!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce has been installed by 40,000+ companies in over 100 countries, it is completely free and our company develops it together with customers and thanks to paid add-ons. The system is equipped with over 150 free functionalities, which you can adjust and modify.\n\nWe want the system to develop dynamically, so support our project with any amount per month (even with 1 Euro). All collected funds will be used for support tickets on GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues) and to create new functionalities, which will be available for free in the system.\n\nThe YetiForce system has always been and will remain free of charge, but it depends on you how it will continue to develop and whether it will be able to compete with the largest systems in the world. What we have already produced results from our passion and desire to create a unique system that is accessible to everyone.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Basic support for system admins [email, video, documentation]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n- Free update (only for customers who have purchased YetiForce Cloud or YetiForce Hosting)\n\nYetiForce Help price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 25 EUR / M\n- Small (21 to 50 users) - 50 EUR / M\n- Medium (51 to 250 users) - 100 EUR / M\n- Large (251 to 1000 users) - 250 EUR / M\n- Corporation (1000+ users) - 1250 EUR / M\n\nYetiForce Help contains a support limit depending on the size of the organization:\n- Micro [5 emails per month + 2 system updates per year]\n- Small [10 emails per month + 2 system updates per year]\n- Medium [15 emails per month + 4 system updates per year]\n- Large [20 emails per month + 6 system updates per year]\n- Corporation [30 emails per month + 12 system updates per year]\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Replace YetiForce branding with your own", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Integrator", "LBL_SHOP_INTEGRATOR_INTRO": "Offer the YetiForce system to your clients and gain exclusive perks available only to YetiForce Integrator partners.", "LBL_SHOP_INTEGRATOR_DESC": "REQUIREMENTS \n\n 1. Correct registration of all YetiForce installations used by the Partner and the Partner’s clients. \n 2. Owning a GitHub account and active participation in the YetiForce repository. \n\n BENEFITS \n\n 1. Direct support (chat, e-mail, GitHub) from the YetiForce team in terms of advanced problems related to system operation, API and configuration. Support can be provided in Polish or English. Support may also be provided to the Partner’s customers in cases when the Partner will not be able to help its customers. \n 2. The possibility of hiring YetiForce’s employees for large implementations (service available for an additional charge, provided remotely, communication in Polish and English). \n 3. The opportunity to cooperate in tenders (shared customer testimonials, a common list of specialists, support in price estimates). \n 4. Ability to use the “YetiForce Integrator” logo on the Internet. \n 5. Promotion in the partnership catalog on the official website and in the YetiForce system. \n 6. 10% discount on all products offered in the marketplace by the YetiForce producer and other Partners (also for Partner’s own customers). The possibility of booking a project - the discount might be 20% but it will be granted to a Partner which books the project as first. \n 7. The impact on the direction of system development and new functionalities. \n\n COST \n\n 1. The monthly participation fee for the YetiForce Integrator partnership is 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Advanced system support and development [chat, email, phone]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nYetiForce Development price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 200 EUR / M\n- Small (21 to 50 users) - 380 EUR / M\n- Medium (51 to 250 users) - 700 EUR / M\n- Large (251 to 1000 users) - 1.200 EUR / M\n- Corporation (1000+ users) - 6.000 EUR / M\n\nThe number of support hours in YetiForce Development package depends on the size of the organization:\n- Micro [5h support / M]\n- Small [10h support / M]\n- Medium [20h support / M]\n- Large [40h support / M]\n- Corporation [200h support / M]\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "عالية الأداء وآمنة سحابة", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "ونحن سوف تثبيت النظام على الأكثر كفاءة البنية التحتية التي تلبي توقعات العملاء الأكثر تطلبا. ونحن سوف تأخذ الرعاية من السلامة والأداء حل أي مشكلة البنية التحتية من أجل راحتك. كل مستخدم سيستلم من بضعة إلى عدة غيغابايت بيانات الشركات ، قاعدة البيانات سيتم وضعها على ارتفاع أداء إنتل Optane محركات الأقراص. بالإضافة إلى إنتاج نسخة ، وسوف تكوين اختبار نسخة من النظام و سوف تتلقى الوصول الكامل إلى تطبيق النسخ الاحتياطي. \n ملاحظة: نحن نعمل من الاثنين إلى الجمعة من الساعة 8 صباحا-4 عصرا (CEST) و تحتاج يوم عمل واحد من أجل معالجة طلبك.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "استضافة المهنية للشركة الخاصة بك", diff --git a/install/languages/bg-BG/ConfReport.json b/install/languages/bg-BG/ConfReport.json index e038a0f7df08..e12a0fe43054 100644 --- a/install/languages/bg-BG/ConfReport.json +++ b/install/languages/bg-BG/ConfReport.json @@ -77,7 +77,7 @@ "LBL_LATEST_PHP_VERSIONS_ARE": "Най-новите версии на PHP: %s", "BTN_CHECK_LATEST_VERSION": "Проверка на най-новите PHP версия", "BTN_SERVER_SPEED_TEST": "Скоростен тест на сървъра", - "BTN_DB_INFO": "Информация за база данни", + "BTN_DB_INFO": "Database information", "LBL_SERVER_SPEED_TEST": "Скорост на сървъра", "LBL_READ_TEST": "Прочети", "LBL_WRITE_TEST": "Пиши", diff --git a/install/languages/bg-BG/Settings/YetiForce.json b/install/languages/bg-BG/Settings/YetiForce.json index a22bcbb67031..3f2ca6e0f4f6 100644 --- a/install/languages/bg-BG/Settings/YetiForce.json +++ b/install/languages/bg-BG/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Help us create the best open system in the world and invest in your future!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce has been installed by 40,000+ companies in over 100 countries, it is completely free and our company develops it together with customers and thanks to paid add-ons. The system is equipped with over 150 free functionalities, which you can adjust and modify.\n\nWe want the system to develop dynamically, so support our project with any amount per month (even with 1 Euro). All collected funds will be used for support tickets on GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues) and to create new functionalities, which will be available for free in the system.\n\nThe YetiForce system has always been and will remain free of charge, but it depends on you how it will continue to develop and whether it will be able to compete with the largest systems in the world. What we have already produced results from our passion and desire to create a unique system that is accessible to everyone.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Basic support for system admins [email, video, documentation]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n- Free update (only for customers who have purchased YetiForce Cloud or YetiForce Hosting)\n\nYetiForce Help price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 25 EUR / M\n- Small (21 to 50 users) - 50 EUR / M\n- Medium (51 to 250 users) - 100 EUR / M\n- Large (251 to 1000 users) - 250 EUR / M\n- Corporation (1000+ users) - 1250 EUR / M\n\nYetiForce Help contains a support limit depending on the size of the organization:\n- Micro [5 emails per month + 2 system updates per year]\n- Small [10 emails per month + 2 system updates per year]\n- Medium [15 emails per month + 4 system updates per year]\n- Large [20 emails per month + 6 system updates per year]\n- Corporation [30 emails per month + 12 system updates per year]\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Заменете марката на YetiForce със своя собствена", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Интегратор", "LBL_SHOP_INTEGRATOR_INTRO": "Предложете системата YetiForce на вашите клиенти и спечелете ексклузивни перки, достъпни само за партньори на YetiForce Integrator.", "LBL_SHOP_INTEGRATOR_DESC": "ИЗИСКВАНИЯ\n\n 1. Правилна регистрация на всички инсталации на YetiForce, използвани от партньора и клиентите на партньора.\n 2. Притежаване на акаунт в GitHub и активно участие в хранилището на YetiForce.\n\nПОЛЗИ\n\n 1. Директна поддръжка (чат, електронна поща, GitHub) от екипа на YetiForce по отношение на напреднали проблеми, свързани с работата на системата, API и конфигурация. Поддръжката може да бъде предоставена на полски или английски език. Поддръжка може да се предоставя и на клиентите на Партньора в случаите, когато Партньорът няма да може да помогне на своите клиенти.\n 2. Възможността за наемане на служители на YetiForce за големи внедрявания (услуга достъпна срещу допълнително заплащане, предоставена дистанционно, комуникация на полски и английски).\n 3. Възможност за сътрудничество при търгове (споделени отзиви от клиенти, общ списък от специалисти, подкрепа в оценките на цените).\n 4. Възможност за използване на логото „YetiForce Integrator” в Интернет.\n 5. Промоция в каталога за партньорство на официалния уебсайт и в системата YetiForce.\n 6. 10% отстъпка от всички продукти, предлагани на пазара от производителя на YetiForce и други партньори (също и за собствените клиенти на Партньор). Възможност за резервация на проект - отстъпката може да бъде 20%, но тя ще бъде предоставена на партньор, който резервира проекта като първи.\n 7. Въздействието върху посоката на развитие на системата и новите функционалности.\n\nЦена\n\n 1. Месечната такса за участие в партньорството на YetiForce Integrator е 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Advanced system support and development [chat, email, phone]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nYetiForce Development price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 200 EUR / M\n- Small (21 to 50 users) - 380 EUR / M\n- Medium (51 to 250 users) - 700 EUR / M\n- Large (251 to 1000 users) - 1.200 EUR / M\n- Corporation (1000+ users) - 6.000 EUR / M\n\nThe number of support hours in YetiForce Development package depends on the size of the organization:\n- Micro [5h support / M]\n- Small [10h support / M]\n- Medium [20h support / M]\n- Large [40h support / M]\n- Corporation [200h support / M]\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "Висока производителност и безопасен cloud", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "Ще инсталираме системата върху най-ефективната инфраструктура, която отговаря на очакванията на най-взискателните клиенти. Ние ще се погрижим за безопасността, производителността и ще решим всеки инфраструктурен проблем за ваше удобство. Всеки потребител ще получи от няколко до няколко GB за корпоративни данни, а базата данни ще бъде поставена на високоефективни Intel Optane устройства. В допълнение към производствената версия, ние ще конфигурираме тестващата версия на системата и ще получите пълен достъп до архивирането на приложението.\n Забележка: Работим от понеделник до петък 8: 00 до 16: 00 (CEST) и се нуждаем от един работен ден, за да обработим вашата поръчка.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Професионален уеб хостинг за вашата компания", diff --git a/install/languages/bs-BA/ConfReport.json b/install/languages/bs-BA/ConfReport.json index 1b349688e8a7..6456d82e0af1 100644 --- a/install/languages/bs-BA/ConfReport.json +++ b/install/languages/bs-BA/ConfReport.json @@ -77,7 +77,7 @@ "LBL_LATEST_PHP_VERSIONS_ARE": "Najnovije PHP verzija: %s", "BTN_CHECK_LATEST_VERSION": "Provjeri najnoviju PHP verziju", "BTN_SERVER_SPEED_TEST": "Server test brzine", - "BTN_DB_INFO": "Informacije o bazi podataka", + "BTN_DB_INFO": "Database information", "LBL_SERVER_SPEED_TEST": "Brzina servera", "LBL_READ_TEST": "Čitaj", "LBL_WRITE_TEST": "Pisanje", diff --git a/install/languages/bs-BA/Settings/YetiForce.json b/install/languages/bs-BA/Settings/YetiForce.json index bf3578dc290a..a3a447ecd84d 100644 --- a/install/languages/bs-BA/Settings/YetiForce.json +++ b/install/languages/bs-BA/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Pomozite nam da stvorimo najbolji otvoreni sistem na svijetu i uložimo u vašu budućnost!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce je instaliralo 40.000+ kompanija u preko 100 zemalja, potpuno je besplatan i naša tvrtka to razvija zajedno sa kupcima i zahvaljujući plaćenim dodacima. Sistem je opremljen sa preko 150 besplatnih funkcija, koje možete podešavati i modificirati.\n\nŽelimo da se sistem razvija dinamično, tako da podržavamo naš projekt sa bilo kojim iznosom mjesečno (čak i sa 1 Euro). Sva prikupljena sredstva koristit će se za ulaznice za podršku na GitHub-u (https://github.com/YetiForceCompany/YetiForceCRM/isissue) i za stvaranje novih funkcionalnosti, koje će u sistemu biti besplatno dostupne.\n\nYetiForce sistem je oduvijek bio i ostat će besplatan, ali od vas zavisi kako će se dalje razvijati i hoće li moći konkurirati najvećim sistemima na svijetu. Ono što smo već proizveli rezultat je naše strasti i želje za stvaranjem jedinstvenog sistema koji je dostupan svima.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Osnovna podrška za administratore sistema [e-pošta, video, dokumentacija]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce je vrlo moćan sistem, pruža 80+ korisničkih modula, 80+ konfiguracijskih ploča, 30+ alata, a njihovo razumijevanje zahtijeva vrijeme i veliko iskustvo. Kupovinom osnovne podrške dobijate pristup znanju i iskustvu tima YetiForce koji razvija sistem. Podrška se pruža na engleskom i poljskom jeziku.\n- Podrška putem e-pošte za korisnike\n- Podrška putem e-pošte za administratore\n- Besplatno ažuriranje (samo za korisnike koji su kupili YetiForce Cloud ili YetiForce hosting)\n\nYetiForce cijena pomoći varira ovisno o veličini organizacije:\n- Micro (1 do 20 korisnika) - 25 EUR / M\n- Mali (21 do 50 korisnika) - 50 EUR / M\n- Srednja (51 do 250 korisnika) - 100 EUR / M\n- Veliki (251 do 1000 korisnika) - 250 EUR / M\n- Korporacija (1000+ korisnika) - 1250 EUR / M\n\nYetiForce Help sadrži ograničenje podrške ovisno o veličini organizacije:\n- Micro [5 e-poruka mjesečno + 2 ažuriranja sistema godišnje]\n- Mala [10 e-poruka mjesečno + 2 ažuriranja sistema godišnje]\n- Srednja [15 e-poruka mjesečno + 4 ažuriranja sistema godišnje]\n- Veliki [20 e-poruka mjesečno + 6 ažuriranja sistema godišnje]\n- Corporation [30 e-poruka mjesečno + 12 ažuriranja sistema godišnje]\n\nPodrška putem e-pošte odnosi se samo na osnovna pitanja. Ako vašoj kompaniji treba podršku u vezi s naprednim mogućnostima sistema, npr. kreiranje novih modula, automatizacija procesa - ili je sistem modificirao programer, preporučujemo kupnju YetiForce razvojnog paketa.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Zamijeniti YetiForce brendiranje sa svojim", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Integrator", "LBL_SHOP_INTEGRATOR_INTRO": "Ponudite svojim klijentima sistem YetiForce i steknite ekskluzivne pogodnosti dostupne samo partnerima kompanije YetiForce Integrator.", "LBL_SHOP_INTEGRATOR_DESC": "ZAHTJEVI\n\n 1. Ispravna registracija svih YetiForce instalacija koje koriste Partner i Partneri partneri.\n 2. Posjedovanje GitHub računa i aktivno sudjelovanje u YetiForce repozitorijumu.\n\n PREDNOSTI\n\n 1. Direktna podrška (chat, e-pošta, GitHub) iz tima YetiForce u pogledu naprednih problema vezanih za rad sistema, API i konfiguraciju. Podrška se može pružiti na poljskom ili engleskom jeziku. Podrška se takođe može pružiti kupčevim partnerima u slučajevima kada Partner neće biti u mogućnosti da pomogne svojim kupcima.\n 2. Mogućnost angažiranja YetiForceovih zaposlenika za velike implementacije (usluga dostupna uz doplatu, pruža se na daljinu, komunikacija na poljskom i engleskom jeziku).\n 3. Mogućnost saradnje na natječajima (zajedničke ocjene kupaca, zajednička lista stručnjaka, podrška u procjeni cijena).\n 4. Mogućnost korištenja logotipa „YetiForce Integrator“ na Internetu.\n 5. Promocija u katalogu partnerstva na službenoj web stranici i u sistemu YetiForce.\n 6. 10% popusta na sve proizvode koje nudi YetiForce proizvođač i ostali partneri (takođe za partnerove klijente). Mogućnost rezervacije projekta - popust može biti 20%, ali dodijelit će se partneru koji projekt rezervira kao prvi.\n 7. Uticaj na smjer razvoja sistema i nove funkcionalnosti.\n\n TROŠKOVI\n\n 1. Mjesečna naknada za učešće u YetiForce Integrator partnerstvu iznosi 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Napredna podrška i razvoj sistema [chat, e-pošta, telefon]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Napredna podrška sistema omogućava sveobuhvatnu podršku ne samo administratorima, već uključuje i prilagodbu i dodavanje novih funkcionalnosti sistemu. Sve poslove koordiniraju iskusni programeri koji doprinose sistemu. Podrška se pruža na engleskom i poljskom jeziku. YetiForce razvojni paket uključuje:\n- Podrška putem e-pošte za korisnike (besplatna)\n- E-mail podrška za administratore (besplatno)\n- Rješavanje tehničkih i sistemskih grešaka (oduzeto od sati paketa)\n- Dodavanje novih funkcionalnosti u sistem (oduzeto od sati paketa)\n- Ažuriranja sistema (oduzeto od sati paketa)\n- Trening (oduzeto od sati paketa)\n\nYetiForce Development cijena varira ovisno o veličini organizacije:\n- Micro (1 do 20 korisnika) - 200 EUR / M\n- Mali (21 do 50 korisnika) - 380 EUR / M\n- Srednja (51 do 250 korisnika) - 700 EUR / M\n- Veliki (251 do 1000 korisnika) - 1.200 EUR / M\n- Korporacija (1000+ korisnika) - 6.000 EUR / M\n\nBroj sati podrške u YetiForce Development paketu ovisi o veličini organizacije:\n- Micro [5h podrška / M]\n- Mala [10h podrška / M]\n- Srednja [20h podrška / M]\n- velika [40h podrška / M]\n- Korporacija [podrška 200h / M]\n\nAnalizira se svaki email s opisom i procjenjuje se broj sati. Ako je citat prihvaćen, zadatak je zakazan.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "Visoko učinkovit i siguran oblak", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "Instalirat ćemo sustav na najefikasniju infrastrukturu koja zadovoljava očekivanja najzahtjevnijih kupaca. Mi ćemo se pobrinuti za sigurnost, performanse i riješiti svaki infrastrukturni problem za vašu udobnost. Svaki će korisnik dobiti od nekoliko do nekoliko GB-a za korporativne podatke, a baza podataka bit će smještena na visokoučinkovitim pogonskim Intel Optane. Pored proizvodne verzije, konfigurirat ćemo testnu verziju sustava i dobit ćete potpuni pristup sigurnosnim kopijama aplikacija.\n Napomena: Radimo od ponedjeljka do petka od 8 do 16 sati (CEST) i potreban vam je jedan radni dan da bismo obradili vašu narudžbu.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Profesionalni hosting za tvoju kompaniju", diff --git a/install/languages/cs-CZ/Settings/YetiForce.json b/install/languages/cs-CZ/Settings/YetiForce.json index d7f7954a10e2..46bcdd84b37f 100644 --- a/install/languages/cs-CZ/Settings/YetiForce.json +++ b/install/languages/cs-CZ/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Help us create the best open system in the world and invest in your future!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce has been installed by 40,000+ companies in over 100 countries, it is completely free and our company develops it together with customers and thanks to paid add-ons. The system is equipped with over 150 free functionalities, which you can adjust and modify.\n\nWe want the system to develop dynamically, so support our project with any amount per month (even with 1 Euro). All collected funds will be used for support tickets on GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues) and to create new functionalities, which will be available for free in the system.\n\nThe YetiForce system has always been and will remain free of charge, but it depends on you how it will continue to develop and whether it will be able to compete with the largest systems in the world. What we have already produced results from our passion and desire to create a unique system that is accessible to everyone.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Basic support for system admins [email, video, documentation]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n- Free update (only for customers who have purchased YetiForce Cloud or YetiForce Hosting)\n\nYetiForce Help price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 25 EUR / M\n- Small (21 to 50 users) - 50 EUR / M\n- Medium (51 to 250 users) - 100 EUR / M\n- Large (251 to 1000 users) - 250 EUR / M\n- Corporation (1000+ users) - 1250 EUR / M\n\nYetiForce Help contains a support limit depending on the size of the organization:\n- Micro [5 emails per month + 2 system updates per year]\n- Small [10 emails per month + 2 system updates per year]\n- Medium [15 emails per month + 4 system updates per year]\n- Large [20 emails per month + 6 system updates per year]\n- Corporation [30 emails per month + 12 system updates per year]\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Replace YetiForce branding with your own", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Integrátor", "LBL_SHOP_INTEGRATOR_INTRO": "Nabídněte svým klientům systém YetiForce a získejte exkluzivní výhody dostupné pouze partnerům YetiForce Integrator.", "LBL_SHOP_INTEGRATOR_DESC": "REQUIREMENTS \n\n 1. Correct registration of all YetiForce installations used by the Partner and the Partner’s clients. \n 2. Owning a GitHub account and active participation in the YetiForce repository. \n\n BENEFITS \n\n 1. Direct support (chat, e-mail, GitHub) from the YetiForce team in terms of advanced problems related to system operation, API and configuration. Support can be provided in Polish or English. Support may also be provided to the Partner’s customers in cases when the Partner will not be able to help its customers. \n 2. The possibility of hiring YetiForce’s employees for large implementations (service available for an additional charge, provided remotely, communication in Polish and English). \n 3. The opportunity to cooperate in tenders (shared customer testimonials, a common list of specialists, support in price estimates). \n 4. Ability to use the “YetiForce Integrator” logo on the Internet. \n 5. Promotion in the partnership catalog on the official website and in the YetiForce system. \n 6. 10% discount on all products offered in the marketplace by the YetiForce producer and other Partners (also for Partner’s own customers). The possibility of booking a project - the discount might be 20% but it will be granted to a Partner which books the project as first. \n 7. The impact on the direction of system development and new functionalities. \n\n COST \n\n 1. The monthly participation fee for the YetiForce Integrator partnership is 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Advanced system support and development [chat, email, phone]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nYetiForce Development price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 200 EUR / M\n- Small (21 to 50 users) - 380 EUR / M\n- Medium (51 to 250 users) - 700 EUR / M\n- Large (251 to 1000 users) - 1.200 EUR / M\n- Corporation (1000+ users) - 6.000 EUR / M\n\nThe number of support hours in YetiForce Development package depends on the size of the organization:\n- Micro [5h support / M]\n- Small [10h support / M]\n- Medium [20h support / M]\n- Large [40h support / M]\n- Corporation [200h support / M]\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "High-performance and safe cloud", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "We will install the system on the most efficient infrastructure that meets the expectations of the most demanding customers. We will take care of safety, performance and solve any infrastructure problem for your convenience. Each user will receive from a few to several GB for corporate data, and the database will be placed on high-performance Intel Optane drives. In addition to the production version, we will configure the testing version of the system and you will receive full access to the application backups. \n Note: We work from Monday to Friday 8am-4pm (CEST) and need one working day to process your order.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Professional hosting for your company", diff --git a/install/languages/da-DK/Settings/YetiForce.json b/install/languages/da-DK/Settings/YetiForce.json index c871adea60ad..a2d28f9047ad 100644 --- a/install/languages/da-DK/Settings/YetiForce.json +++ b/install/languages/da-DK/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Help us create the best open system in the world and invest in your future!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce has been installed by 40,000+ companies in over 100 countries, it is completely free and our company develops it together with customers and thanks to paid add-ons. The system is equipped with over 150 free functionalities, which you can adjust and modify.\n\nWe want the system to develop dynamically, so support our project with any amount per month (even with 1 Euro). All collected funds will be used for support tickets on GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues) and to create new functionalities, which will be available for free in the system.\n\nThe YetiForce system has always been and will remain free of charge, but it depends on you how it will continue to develop and whether it will be able to compete with the largest systems in the world. What we have already produced results from our passion and desire to create a unique system that is accessible to everyone.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Basic support for system admins [email, video, documentation]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n- Free update (only for customers who have purchased YetiForce Cloud or YetiForce Hosting)\n\nYetiForce Help price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 25 EUR / M\n- Small (21 to 50 users) - 50 EUR / M\n- Medium (51 to 250 users) - 100 EUR / M\n- Large (251 to 1000 users) - 250 EUR / M\n- Corporation (1000+ users) - 1250 EUR / M\n\nYetiForce Help contains a support limit depending on the size of the organization:\n- Micro [5 emails per month + 2 system updates per year]\n- Small [10 emails per month + 2 system updates per year]\n- Medium [15 emails per month + 4 system updates per year]\n- Large [20 emails per month + 6 system updates per year]\n- Corporation [30 emails per month + 12 system updates per year]\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Replace YetiForce branding with your own", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Integrator", "LBL_SHOP_INTEGRATOR_INTRO": "Offer the YetiForce system to your clients and gain exclusive perks available only to YetiForce Integrator partners.", "LBL_SHOP_INTEGRATOR_DESC": "REQUIREMENTS \n\n 1. Correct registration of all YetiForce installations used by the Partner and the Partner’s clients. \n 2. Owning a GitHub account and active participation in the YetiForce repository. \n\n BENEFITS \n\n 1. Direct support (chat, e-mail, GitHub) from the YetiForce team in terms of advanced problems related to system operation, API and configuration. Support can be provided in Polish or English. Support may also be provided to the Partner’s customers in cases when the Partner will not be able to help its customers. \n 2. The possibility of hiring YetiForce’s employees for large implementations (service available for an additional charge, provided remotely, communication in Polish and English). \n 3. The opportunity to cooperate in tenders (shared customer testimonials, a common list of specialists, support in price estimates). \n 4. Ability to use the “YetiForce Integrator” logo on the Internet. \n 5. Promotion in the partnership catalog on the official website and in the YetiForce system. \n 6. 10% discount on all products offered in the marketplace by the YetiForce producer and other Partners (also for Partner’s own customers). The possibility of booking a project - the discount might be 20% but it will be granted to a Partner which books the project as first. \n 7. The impact on the direction of system development and new functionalities. \n\n COST \n\n 1. The monthly participation fee for the YetiForce Integrator partnership is 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Advanced system support and development [chat, email, phone]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nYetiForce Development price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 200 EUR / M\n- Small (21 to 50 users) - 380 EUR / M\n- Medium (51 to 250 users) - 700 EUR / M\n- Large (251 to 1000 users) - 1.200 EUR / M\n- Corporation (1000+ users) - 6.000 EUR / M\n\nThe number of support hours in YetiForce Development package depends on the size of the organization:\n- Micro [5h support / M]\n- Small [10h support / M]\n- Medium [20h support / M]\n- Large [40h support / M]\n- Corporation [200h support / M]\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "High-performance and safe cloud", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "We will install the system on the most efficient infrastructure that meets the expectations of the most demanding customers. We will take care of safety, performance and solve any infrastructure problem for your convenience. Each user will receive from a few to several GB for corporate data, and the database will be placed on high-performance Intel Optane drives. In addition to the production version, we will configure the testing version of the system and you will receive full access to the application backups. \n Note: We work from Monday to Friday 8am-4pm (CEST) and need one working day to process your order.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Professional hosting for your company", diff --git a/install/languages/de-DE/ConfReport.json b/install/languages/de-DE/ConfReport.json index 40b8b444b04b..ed794c641f72 100644 --- a/install/languages/de-DE/ConfReport.json +++ b/install/languages/de-DE/ConfReport.json @@ -77,7 +77,7 @@ "LBL_LATEST_PHP_VERSIONS_ARE": "Neueste PHP-Versionen: %s", "BTN_CHECK_LATEST_VERSION": "Letzte PHP Version prüfen", "BTN_SERVER_SPEED_TEST": "Server Performance Test", - "BTN_DB_INFO": "Datenbank Information", + "BTN_DB_INFO": "Database information", "LBL_SERVER_SPEED_TEST": "Server Geschwindigkeit", "LBL_READ_TEST": "Lesen", "LBL_WRITE_TEST": "Schreiben", diff --git a/install/languages/de-DE/Settings/YetiForce.json b/install/languages/de-DE/Settings/YetiForce.json index 76d043e0e84d..6d449dbae7ee 100644 --- a/install/languages/de-DE/Settings/YetiForce.json +++ b/install/languages/de-DE/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Helfen Sie uns, das beste offene System der Welt zu schaffen und in Ihre Zukunft zu investieren!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce wurde von über 40.000 Unternehmen in über 100 Ländern installiert. Es ist, dank bezahlter Add-ons, völlig kostenlos und unser Unternehmen entwickelt es zusammen mit Kunden. Das System ist mit über 150 kostenlosen Funktionen ausgestattet, die Sie anpassen und ändern können.\n\nWir wollen, dass sich das System dynamisch entwickelt, unterstützen Sie also unser Projekt mit beliebigem Betrag pro Monat (sogar mit 1 Euro). Alle gesammelten Gelder werden für Support-Tickets auf GitHub verwendet (https://github. om/YetiForceCompany/YetiForceCRM/Issues) und um neue Funktionen zu erstellen, die kostenlos im System verfügbar sein werden.\n\nDas YetiForce-System war und bleibt immer kostenlos, aber es hängt von Ihnen ab, wie es sich weiter entwickeln wird und ob es in der Lage sein wird, mit den größten Systemen der Welt zu konkurrieren. Was wir bereits produziert haben, resultiert aus unserer Leidenschaft und dem Wunsch, ein einzigartiges System zu schaffen, das für jeden zugänglich ist.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Basisunterstützung für Systemadministratoren [E-Mail, Video, Dokumentation]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce ist ein sehr leistungsfähiges system, es bietet 80+ user-Module, die 80+ Konfiguration panels, 30+ tools, und Sie zu verstehen erfordert Zeit und umfangreiche Erfahrung. Durch den Kauf des Basic-Support erhalten Sie Zugriff auf das Wissen und die Erfahrung der YetiForce-Team Entwickler. \nUnterstützung erfolgt in Englisch und Polnisch.\n- E-Mail-support für Anwender\n- E-Mail-support für admins\n- Kostenloses update (nur für Kunden, die YetiForce Cloud oder YetiForce Hosting gekauft haben)\n\nYetiForce Hilfe enthält ein Supportlimit wobei der Preis variiert je nach Größe der Organisation:\n- Micro (1-20 Benutzer) - 25 EUR / M\n- Klein (21 bis 50 Benutzer) - 50 EUR / M\n- Mittel (51 bis 250 Benutzer) - 100 EUR / M\n- Large (251 bis 1000 user) - 250 EUR / M\n- Corporation (1000+ Benutzer) - 1250, - EUR / M\n\nYetiForce-Hilfe enthält einen support-Grenzwert abhängig von der Größe der Organisation:\n- Mikro - [5 E-Mails pro Monat + 2 system-updates pro Jahr]\n- Klein [10 E-Mails pro Monat + 2 system-updates pro Jahr]\n- Medium [15 E-Mails pro Monat + 4-system-updates pro Jahr]\n- Large [20 Mails pro Monat + 6 system-updates pro Jahr]\n- Corporation [30 E-Mails pro Monat + 12 system-updates pro Jahr]\n\nSupport per E-Mail gilt nur für grundlegende Fragen. Wenn Ihr Unternehmen Unterstützung benötigt, in Bezug auf erweiterte system-Leistungsmerkmale, wie z.B. das Erstellen von neuen Modulen, Prozess-Automatisierung - oder Systemänderungen durch einen Entwickler, empfehlen wir den Kauf eines YetiForce Entwicklungs Paket.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "YetiForce Branding durch dein eigenes ersetzen", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Integrierer", "LBL_SHOP_INTEGRATOR_INTRO": "Bieten Sie das YetiForce-System Ihren Kunden an und erhalten Sie exklusive Vergünstigungen, die nur den YetiForce Integrator-Partnern zur Verfügung stehen.", "LBL_SHOP_INTEGRATOR_DESC": "ANFORDERUNGEN \n\n 1. Richtige Registrierung aller YetiForce-Installationen, die vom Partner und den Kunden des Partners genutzt werden. \n 2. Besitzer eines GitHub Accounts und aktive Teilnahme am YetiForce Repository. \n\n VORTEILE \n\n 1. Direkter Support (Chat, E-Mail, GitHub) des YetiForce-Teams in Bezug auf fortgeschrittene Probleme im Zusammenhang mit Systembetrieb, API und Konfiguration. Der Support kann auf Polnisch oder Englisch erfolgen. Für den Fall, dass der Partner seinen Kunden nicht behilflich sein kann, kann auch der Kundenservice des Partners gewährt werden. \n 2. Die Möglichkeit, Mitarbeiter von YetiForce für große Implementierungen einzustellen (Service gegen Aufpreis, vorausgesetzt, Fernbedienung, Kommunikation in Polnisch und Englisch). \n 3. Die Möglichkeit zur Zusammenarbeit bei Ausschreibungen (gemeinsame Kundenbezeugungen, eine gemeinsame Liste von Spezialisten, Unterstützung bei Preisschätzungen). \n 4. Möglichkeit, das Logo „YetiForce Integrator“ im Internet zu verwenden. \n 5. Promotion im Partnerschaftskatalog auf der offiziellen Webseite und im YetiForce System. \n 6. 10% Rabatt auf alle Produkte, die der YetiForce-Hersteller und andere Partner auf dem Markt anbieten (auch für die eigenen Kunden). Die Möglichkeit ein Projekt zu buchen - der Rabatt kann 20 % betragen aber wird einem Partner gewährt, der das Projekt als erstes bucht. \n 7. Die Auswirkungen auf die Richtung der Systementwicklung und die neuen Funktionalitäten \n\n KOSTEN \n\n 1. Die monatliche Teilnahmegebühr für YetiForce Integrator beträgt 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Erweiterter System-Support und Entwicklung [Chat, E-Mail, Telefon]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced-system-support ermöglicht die umfassende Unterstützung nicht nur für Administratoren, sondern es beinhaltet auch die Anpassung und das hinzufügen neuer Funktionalitäten zu dem system. Alle arbeiten koordiniert durch erfahrene Entwickler, die beitragen zu dem system. Unterstützung in Englisch und Polnisch. YetiForce Entwicklung Paket beinhaltet:\n- E-Mail-support für Anwender (kostenlos)\n- E-Mail-support für admins (frei)\n- Lösung der technischen und system-Fehler (subtrahiert Paket Stunden)\n- Hinzufügen neuer Funktionalitäten zu dem system (subtrahiert Paket Stunden)\n- System-updates (subtrahiert Paket Stunden)\n- Training (subtrahiert Paket Stunden)\n\nYetiForce Entwicklung der Preis variiert je nach Größe der Organisation:\n- Micro (1-20 Benutzer) - 200 EUR / M\n- Klein (21 bis 50 Benutzer) - 380 EUR / M\n- Mittel (51 bis 250 Benutzer) - 700 EUR / M\n- Large (251 bis 1000 Benutzer) - 1.200 EUR / M\n- Corporation (1000+ Benutzer) - 6.000 EUR / M\n\nDie Anzahl von support-Stunden in YetiForce Entwicklung Paket hängt von der Größe der Organisation:\n- Mikro - [5h support - / M]\n- Klein [10h support / M]\n- Medium [20h support - / M]\n- Large [40h-support - / M]\n- Corporation [200h-support - / M]\n\nJede E-Mail mit Beschreibung wird analysiert und die Anzahl der Stunden geschätzt wird. Wenn das Angebot angenommen wird, die Aufgabe ist eingeplant.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "Hochleistungs- und sichere Cloud", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "Wir werden das System auf der effizientesten Infrastruktur installieren, die den Erwartungen der anspruchsvollsten Kunden entspricht. Wir kümmern uns um Sicherheit, Leistung und lösen für Sie alle Infrastrukturprobleme. Jeder Benutzer erhält von ein paar bis mehrere GB für Unternehmensdaten, und die Datenbank wird auf leistungsstarken Intel Optane-Laufwerken platziert. Zusätzlich zur Produktionsversion konfigurieren wir die Testversion des Systems und Sie erhalten vollen Zugriff auf die Backup der Anwendungen. \n Hinweis: Wir arbeiten von Montag bis Freitag von 8: 00 bis 16: 00 Uhr (CEST) und benötigen einen Arbeitstag, um Ihre Bestellung zu bearbeiten.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Professionelles Hosting für Ihr Unternehmen", @@ -99,7 +99,7 @@ "LBL_SHOP_YETIFORCEPASSWORD_DESC": "YetiForce launched a server with more than 572 million passwords that were leaked as a result of database hacks all over the world. Using this extension will allow you to verify passwords in real time (while creating users, changing passwords, logging into the system) and will warn you if a password that is being currently used has been compromised and should be changed immediately.\n\nOnly password hashes (SHA1) are exchanged between your system and our server. We don’t store any information about the system, user, or login; moreover, we don’t record the IP address that sent the request that includes the password hash.\n\nKeep in mind that using Multi-Factor Authentication (MFA), as well as allowing access only via trusted IPs or encrypted VPNs will also significantly increase your system security.", "LBL_SHOP_YETIFORCEOUTLOOK_INTRO": "Integrieren Sie YetiForceCRM mit Ihrem Microsoft Outlook E-Mail-Client", "LBL_SHOP_YETIFORCEOUTLOOK_DESC": "It’s a modern add-on for Microsoft Outlook. It allows you to load the CRM system directly in the Outlook window, where you can download and relate an e-mail to data in the system. In addition, the integration allows you to perform the same operations from the e-mail view as in the standard system, i.e.\n\n- Add companies and contacts (Accounts, Contacts, Leads, Vendors, Partners, Competition)\n- Add processes and sub-processes (Opportunities, Agreements, SLA, Campaigns, Quotes, Sales orders, Tickets, etc.)\n- Add notes, events, documents\n- Work directly from the e-mail client which allows you to optimize the customer service process and makes it easier to perform many activities from one place.", - "LBL_SHOP_YETIFORCEMAGENTO_INTRO": "Integrate the YetiForce CRM system with the Marento e-commerce platform", + "LBL_SHOP_YETIFORCEMAGENTO_INTRO": "Integriere das YetiForce CRM system mit der Magento e-Commerce Plattform", "LBL_SHOP_YETIFORCEMAGENTO_DESC": "YetiForce integrated with Magento, one of the largest and most popular e-commerce platforms. This solution allows you to conduct centralized activities related to customer service and e-store orders straight from the CRM. It means that you will be able to communicate with clients, create all necessary documents related to orders (eg. invoices, receipts, storage documents) and update stocks - all in one place.\n\nYour employees won’t have to learn how to use the complex Magento platform if you integrate your CRM with this extension, which will result in lower training costs.\n\nData synchronisation between the two systems takes place using the API (Magento Admin REST endpoints). Flexible design of the solution allows multi store management, i.e integration of YetiForce with multiple stores based on the Magento engine. It also allows one central warehouse or multiple warehouses where each store has its warehouse. Regardless of stores number, YetiForce is always the master system that centralizes data from the Magento platform. The communication is one-way, i.e YetiForce CRM queries the Magento API downloading and updating data in both ways.", "LBL_SHOP_YETIFORCEPLGUS_INTRO": "Get all the company information straight from the polish Central Statistical Office", "LBL_SHOP_YETIFORCEPLGUS_DESC": "This module saves time of your employees. Manual search and data verification will be no longer necessary as well as entering the data into the appropriate fields in the record - the system will search for and fill in the appropriate fields. You only need one of the following numbers: VAT ID, NCR, or NOBR numbers to get all the necessary information about a given company and easily save it in the system.\n\nAll data is downloaded in real-time directly from the Polish Central Statistical Office using the API (https://api.stat.gov.pl/Home/RegonApi), so it is reliable and up-to-date.\n\nLists of fields completed automatically in individual modules:\n\n- Accounts: VAT ID, NCR, NOBR, Account name, State, County, Township, City/Village, Post code, Street, Building number, Office number, Country\n- Leads: NOBR, State, County, Township, City/Village, Post code, Street, Building number, Office number\n- Vendors: Vendor name, NOBR, State, County, Township, City/Village, Post code, Street, Building number, Office number\n- Competition: Name, State, County, Township, City/Village, Post code, Street, Building number\n\nNotice: The YetiForce GUS extension can only search for companies registered in Poland." diff --git a/install/languages/el-GR/ConfReport.json b/install/languages/el-GR/ConfReport.json index 83dcf4b561b2..6b5a13d17734 100644 --- a/install/languages/el-GR/ConfReport.json +++ b/install/languages/el-GR/ConfReport.json @@ -77,7 +77,7 @@ "LBL_LATEST_PHP_VERSIONS_ARE": "Τελευταίες εκδόσεις PHP: %s", "BTN_CHECK_LATEST_VERSION": "Τελευταία έκδοση PHP", "BTN_SERVER_SPEED_TEST": "Ταχύτητα Διακομιστή", - "BTN_DB_INFO": "Πληροφορίες βάσης δεδομένων", + "BTN_DB_INFO": "Database information", "LBL_SERVER_SPEED_TEST": "Ταχύτητα διακομιστή", "LBL_READ_TEST": "Ανάγνωση", "LBL_WRITE_TEST": "Εγγραφή", diff --git a/install/languages/el-GR/Settings/YetiForce.json b/install/languages/el-GR/Settings/YetiForce.json index 7801738ab4ec..361689cdfea0 100644 --- a/install/languages/el-GR/Settings/YetiForce.json +++ b/install/languages/el-GR/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Help us create the best open system in the world and invest in your future!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce has been installed by 40,000+ companies in over 100 countries, it is completely free and our company develops it together with customers and thanks to paid add-ons. The system is equipped with over 150 free functionalities, which you can adjust and modify.\n\nWe want the system to develop dynamically, so support our project with any amount per month (even with 1 Euro). All collected funds will be used for support tickets on GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues) and to create new functionalities, which will be available for free in the system.\n\nThe YetiForce system has always been and will remain free of charge, but it depends on you how it will continue to develop and whether it will be able to compete with the largest systems in the world. What we have already produced results from our passion and desire to create a unique system that is accessible to everyone.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Basic support for system admins [email, video, documentation]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n- Free update (only for customers who have purchased YetiForce Cloud or YetiForce Hosting)\n\nYetiForce Help price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 25 EUR / M\n- Small (21 to 50 users) - 50 EUR / M\n- Medium (51 to 250 users) - 100 EUR / M\n- Large (251 to 1000 users) - 250 EUR / M\n- Corporation (1000+ users) - 1250 EUR / M\n\nYetiForce Help contains a support limit depending on the size of the organization:\n- Micro [5 emails per month + 2 system updates per year]\n- Small [10 emails per month + 2 system updates per year]\n- Medium [15 emails per month + 4 system updates per year]\n- Large [20 emails per month + 6 system updates per year]\n- Corporation [30 emails per month + 12 system updates per year]\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Αντικαταστήστε το εμπορικό σήμα YetiForce με το δικό σας", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Integrator", "LBL_SHOP_INTEGRATOR_INTRO": "Προσφέρετε το σύστημα YetiForce στους πελάτες σας και κερδίστε αποκλειστικά προνόμια διαθέσιμα μόνο στους συνεργάτες YetiForce Integrator.", "LBL_SHOP_INTEGRATOR_DESC": "ΑΠΑΙΤΗΣΕΙΣ \n\n 1. Σωστή καταχώρηση όλων των YetiForce εγκαταστάσεων που χρησιμοποιούνται από τον Συνεργάτη και τους πελάτες του Συνεργάτη. \n 2. Δικό σου λογαριασμό GitHub και ενεργή συμμετοχή στο αποθετήριο της YetiForce. \n\n ΟΦΕΛΗ \n\n 1. Άμεση υποστήριξη (chat, e-mail, GitHub) από την ομάδα της YetiForce σχετικά με προχωρημένα προβλήματα που σχετίζονται με τη λειτουργίες API και διαμόρφωσης. Η υποστήριξη παρέχεται στα Πολωνικά ή τα Αγγλικά. Η υποστήριξη μπορεί να δοθεί και στους πελάτες του Συνεργάτη σε περίπτωση που ο Συνεργάτης δεν μπορεί να βοηθήσει τους πελάτες του. \n 2. Η δυνατότητα πρόσληψης εργαζομένων της YetiForce για μεγάλες υλοποιήσεις (η υπηρεσία διατίθεται με επιπλέον χρέωση, παρέχεται απομακρυσμένα, στα πολωνικά και αγγλικά). \n 3. Την ευκαιρία να συνεργαστούν σε διαγωνισμούς (κοινές μαρτυρίες πελατών, μια κοινή λίστα με ειδικούς, υποστήριξη για εκτίμηση τιμής). \n 4. Δυνατότητα να χρησιμοποιήσετε το \"YetiForce Integrator\" λογότυπο στο Διαδίκτυο. \n 5. Προώθηση στον κατάλογο Συνεργατών στην επίσημη ιστοσελίδα και στο YetiForce.\n 6. 10% έκπτωση σε όλα τα προϊόντα που προσφέρονται στην αγορά από την YetiForce και άλλων Εταίρων (και για τους πελάτες των Συνεργατών). Όταν καταχωρείται ένα έργο από έναν συνεργάτη, η έκπτωση μπορεί να γίνει 20%, αλλά θα πρέπει να χορηγείται μόνο σε αυτόν κι όχι στους πελάτες του.\n 7. Ο αντίκτυπος στην ανάπτυξη του συστήματος και τις νέες λειτουργίες. \n\n ΚΟΣΤΟΣ \n\n 1. Η μηνιαία αμοιβή για τη συμμετοχή ως συνεργάτης YetiForce Integrator είναι 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Advanced system support and development [chat, email, phone]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nYetiForce Development price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 200 EUR / M\n- Small (21 to 50 users) - 380 EUR / M\n- Medium (51 to 250 users) - 700 EUR / M\n- Large (251 to 1000 users) - 1.200 EUR / M\n- Corporation (1000+ users) - 6.000 EUR / M\n\nThe number of support hours in YetiForce Development package depends on the size of the organization:\n- Micro [5h support / M]\n- Small [10h support / M]\n- Medium [20h support / M]\n- Large [40h support / M]\n- Corporation [200h support / M]\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "Υψηλής απόδοσης και ασφαλές cloud", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "Θα εγκαταστήσουμε το σύστημα στην πιο αποδοτική υποδομή που να ανταποκρίνεται στις απαιτήσεις και των πιο απαιτητικών πελατών. Εμείς θα φροντίσουμε για την ασφάλεια, τις επιδόσεις και να λύσει οποιαδήποτε πρόβλημα υποδομής για τη διευκόλυνσή σας. Κάθε χρήστης θα λάβει κάποια GB για τα εταιρικά δεδομένα, και την βάση δεδομένων θα τοποθετηθούν σε υπολογιστή υψηλής απόδοσης Intel Optane. Εκτός από την έκδοση παραγωγής, θα διαμορφώσουμε την testing έκδοση του συστήματος και θα λάβετε πλήρη πρόσβαση στα αντίγραφα ασφαλείας των εφαρμογών σας. \n Σημείωση: Εμείς δουλεύουμε από Δευτέρα έως Παρασκευή 8πμ-4μμ (CEST), και χρειάζομαστ μία εργάσιμη ημέρα για να επεξεργαστούμε την παραγγελία σας.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Επαγγελματικό hosting για την επιχείρησή σας", diff --git a/install/languages/en-US/Settings/YetiForce.json b/install/languages/en-US/Settings/YetiForce.json index c871adea60ad..a2d28f9047ad 100644 --- a/install/languages/en-US/Settings/YetiForce.json +++ b/install/languages/en-US/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Help us create the best open system in the world and invest in your future!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce has been installed by 40,000+ companies in over 100 countries, it is completely free and our company develops it together with customers and thanks to paid add-ons. The system is equipped with over 150 free functionalities, which you can adjust and modify.\n\nWe want the system to develop dynamically, so support our project with any amount per month (even with 1 Euro). All collected funds will be used for support tickets on GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues) and to create new functionalities, which will be available for free in the system.\n\nThe YetiForce system has always been and will remain free of charge, but it depends on you how it will continue to develop and whether it will be able to compete with the largest systems in the world. What we have already produced results from our passion and desire to create a unique system that is accessible to everyone.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Basic support for system admins [email, video, documentation]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n- Free update (only for customers who have purchased YetiForce Cloud or YetiForce Hosting)\n\nYetiForce Help price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 25 EUR / M\n- Small (21 to 50 users) - 50 EUR / M\n- Medium (51 to 250 users) - 100 EUR / M\n- Large (251 to 1000 users) - 250 EUR / M\n- Corporation (1000+ users) - 1250 EUR / M\n\nYetiForce Help contains a support limit depending on the size of the organization:\n- Micro [5 emails per month + 2 system updates per year]\n- Small [10 emails per month + 2 system updates per year]\n- Medium [15 emails per month + 4 system updates per year]\n- Large [20 emails per month + 6 system updates per year]\n- Corporation [30 emails per month + 12 system updates per year]\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Replace YetiForce branding with your own", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Integrator", "LBL_SHOP_INTEGRATOR_INTRO": "Offer the YetiForce system to your clients and gain exclusive perks available only to YetiForce Integrator partners.", "LBL_SHOP_INTEGRATOR_DESC": "REQUIREMENTS \n\n 1. Correct registration of all YetiForce installations used by the Partner and the Partner’s clients. \n 2. Owning a GitHub account and active participation in the YetiForce repository. \n\n BENEFITS \n\n 1. Direct support (chat, e-mail, GitHub) from the YetiForce team in terms of advanced problems related to system operation, API and configuration. Support can be provided in Polish or English. Support may also be provided to the Partner’s customers in cases when the Partner will not be able to help its customers. \n 2. The possibility of hiring YetiForce’s employees for large implementations (service available for an additional charge, provided remotely, communication in Polish and English). \n 3. The opportunity to cooperate in tenders (shared customer testimonials, a common list of specialists, support in price estimates). \n 4. Ability to use the “YetiForce Integrator” logo on the Internet. \n 5. Promotion in the partnership catalog on the official website and in the YetiForce system. \n 6. 10% discount on all products offered in the marketplace by the YetiForce producer and other Partners (also for Partner’s own customers). The possibility of booking a project - the discount might be 20% but it will be granted to a Partner which books the project as first. \n 7. The impact on the direction of system development and new functionalities. \n\n COST \n\n 1. The monthly participation fee for the YetiForce Integrator partnership is 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Advanced system support and development [chat, email, phone]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nYetiForce Development price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 200 EUR / M\n- Small (21 to 50 users) - 380 EUR / M\n- Medium (51 to 250 users) - 700 EUR / M\n- Large (251 to 1000 users) - 1.200 EUR / M\n- Corporation (1000+ users) - 6.000 EUR / M\n\nThe number of support hours in YetiForce Development package depends on the size of the organization:\n- Micro [5h support / M]\n- Small [10h support / M]\n- Medium [20h support / M]\n- Large [40h support / M]\n- Corporation [200h support / M]\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "High-performance and safe cloud", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "We will install the system on the most efficient infrastructure that meets the expectations of the most demanding customers. We will take care of safety, performance and solve any infrastructure problem for your convenience. Each user will receive from a few to several GB for corporate data, and the database will be placed on high-performance Intel Optane drives. In addition to the production version, we will configure the testing version of the system and you will receive full access to the application backups. \n Note: We work from Monday to Friday 8am-4pm (CEST) and need one working day to process your order.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Professional hosting for your company", diff --git a/install/languages/es-ES/ConfReport.json b/install/languages/es-ES/ConfReport.json index a293a02d00cf..7e89460fda0a 100644 --- a/install/languages/es-ES/ConfReport.json +++ b/install/languages/es-ES/ConfReport.json @@ -77,7 +77,7 @@ "LBL_LATEST_PHP_VERSIONS_ARE": "Última versión de PHP %s", "BTN_CHECK_LATEST_VERSION": "Compruebe la última versión PHP", "BTN_SERVER_SPEED_TEST": "Prueba de velocidad del servidor", - "BTN_DB_INFO": "Información de la base de datos", + "BTN_DB_INFO": "Database information", "LBL_SERVER_SPEED_TEST": "Velocidad del servidor", "LBL_READ_TEST": "Leer", "LBL_WRITE_TEST": "Escribir", diff --git a/install/languages/es-ES/Settings/YetiForce.json b/install/languages/es-ES/Settings/YetiForce.json index fe7eeff3227f..287148b853eb 100644 --- a/install/languages/es-ES/Settings/YetiForce.json +++ b/install/languages/es-ES/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "¡Ayúdanos a crear el mejor sistema abierto del mundo e invierte en su futuro!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce has been installed by 40,000+ companies in over 100 countries, it is completely free and our company develops it together with customers and thanks to paid add-ons. The system is equipped with over 150 free functionalities, which you can adjust and modify.\n\nWe want the system to develop dynamically, so support our project with any amount per month (even with 1 Euro). All collected funds will be used for support tickets on GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues) and to create new functionalities, which will be available for free in the system.\n\nThe YetiForce system has always been and will remain free of charge, but it depends on you how it will continue to develop and whether it will be able to compete with the largest systems in the world. What we have already produced results from our passion and desire to create a unique system that is accessible to everyone.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Soporte básico para administradores del sistema [correo electrónico, video, documentación]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n- Free update (only for customers who have purchased YetiForce Cloud or YetiForce Hosting)\n\nYetiForce Help price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 25 EUR / M\n- Small (21 to 50 users) - 50 EUR / M\n- Medium (51 to 250 users) - 100 EUR / M\n- Large (251 to 1000 users) - 250 EUR / M\n- Corporation (1000+ users) - 1250 EUR / M\n\nYetiForce Help contains a support limit depending on the size of the organization:\n- Micro [5 emails per month + 2 system updates per year]\n- Small [10 emails per month + 2 system updates per year]\n- Medium [15 emails per month + 4 system updates per year]\n- Large [20 emails per month + 6 system updates per year]\n- Corporation [30 emails per month + 12 system updates per year]\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Replace YetiForce branding with your own", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Integrator", "LBL_SHOP_INTEGRATOR_INTRO": "Offer the YetiForce system to your clients and gain exclusive perks available only to YetiForce Integrator partners.", "LBL_SHOP_INTEGRATOR_DESC": "REQUIREMENTS \n\n 1. Correct registration of all YetiForce installations used by the Partner and the Partner’s clients. \n 2. Owning a GitHub account and active participation in the YetiForce repository. \n\n BENEFITS \n\n 1. Direct support (chat, e-mail, GitHub) from the YetiForce team in terms of advanced problems related to system operation, API and configuration. Support can be provided in Polish or English. Support may also be provided to the Partner’s customers in cases when the Partner will not be able to help its customers. \n 2. The possibility of hiring YetiForce’s employees for large implementations (service available for an additional charge, provided remotely, communication in Polish and English). \n 3. The opportunity to cooperate in tenders (shared customer testimonials, a common list of specialists, support in price estimates). \n 4. Ability to use the “YetiForce Integrator” logo on the Internet. \n 5. Promotion in the partnership catalog on the official website and in the YetiForce system. \n 6. 10% discount on all products offered in the marketplace by the YetiForce producer and other Partners (also for Partner’s own customers). The possibility of booking a project - the discount might be 20% but it will be granted to a Partner which books the project as first. \n 7. The impact on the direction of system development and new functionalities. \n\n COST \n\n 1. The monthly participation fee for the YetiForce Integrator partnership is 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Soporte y desarrollo avanzado del sistema [chat, correo electrónico, teléfono]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nYetiForce Development price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 200 EUR / M\n- Small (21 to 50 users) - 380 EUR / M\n- Medium (51 to 250 users) - 700 EUR / M\n- Large (251 to 1000 users) - 1.200 EUR / M\n- Corporation (1000+ users) - 6.000 EUR / M\n\nThe number of support hours in YetiForce Development package depends on the size of the organization:\n- Micro [5h support / M]\n- Small [10h support / M]\n- Medium [20h support / M]\n- Large [40h support / M]\n- Corporation [200h support / M]\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "High-performance and safe cloud", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "We will install the system on the most efficient infrastructure that meets the expectations of the most demanding customers. We will take care of safety, performance and solve any infrastructure problem for your convenience. Each user will receive from a few to several GB for corporate data, and the database will be placed on high-performance Intel Optane drives. In addition to the production version, we will configure the testing version of the system and you will receive full access to the application backups. \n Note: We work from Monday to Friday 8am-4pm (CEST) and need one working day to process your order.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Professional hosting for your company", diff --git a/install/languages/fa-IR/ConfReport.json b/install/languages/fa-IR/ConfReport.json index 8df62c8f85b5..cc5a4151d4d4 100644 --- a/install/languages/fa-IR/ConfReport.json +++ b/install/languages/fa-IR/ConfReport.json @@ -77,7 +77,7 @@ "LBL_LATEST_PHP_VERSIONS_ARE": "آخرین نسخه های پی اچ پی: %s", "BTN_CHECK_LATEST_VERSION": "بررسی آخرین نسخه PHP", "BTN_SERVER_SPEED_TEST": "تست سرعت سرور", - "BTN_DB_INFO": "اطلاعات پايگاه داده", + "BTN_DB_INFO": "Database information", "LBL_SERVER_SPEED_TEST": "سرعت سرور", "LBL_READ_TEST": "خواندن", "LBL_WRITE_TEST": "نوشتن", diff --git a/install/languages/fa-IR/Settings/YetiForce.json b/install/languages/fa-IR/Settings/YetiForce.json index 2dff98c045db..bd2b9ecef809 100644 --- a/install/languages/fa-IR/Settings/YetiForce.json +++ b/install/languages/fa-IR/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Help us create the best open system in the world and invest in your future!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce has been installed by 40,000+ companies in over 100 countries, it is completely free and our company develops it together with customers and thanks to paid add-ons. The system is equipped with over 150 free functionalities, which you can adjust and modify.\n\nWe want the system to develop dynamically, so support our project with any amount per month (even with 1 Euro). All collected funds will be used for support tickets on GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues) and to create new functionalities, which will be available for free in the system.\n\nThe YetiForce system has always been and will remain free of charge, but it depends on you how it will continue to develop and whether it will be able to compete with the largest systems in the world. What we have already produced results from our passion and desire to create a unique system that is accessible to everyone.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Basic support for system admins [email, video, documentation]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n- Free update (only for customers who have purchased YetiForce Cloud or YetiForce Hosting)\n\nYetiForce Help price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 25 EUR / M\n- Small (21 to 50 users) - 50 EUR / M\n- Medium (51 to 250 users) - 100 EUR / M\n- Large (251 to 1000 users) - 250 EUR / M\n- Corporation (1000+ users) - 1250 EUR / M\n\nYetiForce Help contains a support limit depending on the size of the organization:\n- Micro [5 emails per month + 2 system updates per year]\n- Small [10 emails per month + 2 system updates per year]\n- Medium [15 emails per month + 4 system updates per year]\n- Large [20 emails per month + 6 system updates per year]\n- Corporation [30 emails per month + 12 system updates per year]\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "نام تجاری خود را جایگزین مارک تجاری YetiForce کنید", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "یکپارچه گر", "LBL_SHOP_INTEGRATOR_INTRO": "سیستم YetiForce را به مشتریان خود پیشنهاد دهید و به منابع انحصاری که فقط در دسترس همکاران YetiForce Integrator دسترسی پیدا کنید.", "LBL_SHOP_INTEGRATOR_DESC": "الزامات\n\n۱. ثبت صحیح در تمام نصب های YetiForce مورد استفاده توسط شریک و مشتریان شریک.\n ۲. داشتن یک حساب GitHub و مشارکت فعال در مخزن YetiForce.\n\n فواید\n\n ۱. پشتیبانی مستقیم (چت ، ایمیل ، GitHub) از نظر تیم YetiForce از نظر مشکلات پیشرفته مربوط به عملکرد سیستم ، API و پیکربندی. پشتیبانی می تواند به زبان لهستانی یا انگلیسی ارائه شود. همچنین ممکن است در مواردی که شریک نتواند به مشتریان خود کمک کند ، پشتیبانی به مشتریان شریک ارائه شود.\n ۲. امکان استخدام کارمندان YetiForce برای پیاده سازی های بزرگ (خدمات موجود با هزینه اضافی ، از راه دور ، ارتباط به زبان لهستانی و انگلیسی).\n ۳. فرصت همکاری در مناقصه ها (توصیفات مشترک مشتری ، لیست مشترک متخصصان ، پشتیبانی در برآورد قیمت).\n ۴. امکان استفاده از آرم \"YetiForce Integrator\" در اینترنت.\n ۵. تبلیغ در فروشگاه مشارکت در وب سایت رسمی و در سیستم YetiForce.\n ۶. ۱۰٪ تخفیف در کلیه محصولات ارائه شده در بازار توسط تولیدکننده YetiForce و سایر همکاران (همچنین برای مشتریان خود شریک). امکان رزرو یک پروژه - تخفیف ممکن است ۲۰٪ باشد اما به یک شریک اهدا می شود که در ابتدا پروژه را رزرو کند.\n۷. تأثیر در جهت توسعه سیستم و عملکردهای جدید.\n\n هزینه\n\n ۱. هزینه مشارکت ماهانه شریک YetiForce Integrator مقدار ۲۵۰ یورو است.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Advanced system support and development [chat, email, phone]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nYetiForce Development price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 200 EUR / M\n- Small (21 to 50 users) - 380 EUR / M\n- Medium (51 to 250 users) - 700 EUR / M\n- Large (251 to 1000 users) - 1.200 EUR / M\n- Corporation (1000+ users) - 6.000 EUR / M\n\nThe number of support hours in YetiForce Development package depends on the size of the organization:\n- Micro [5h support / M]\n- Small [10h support / M]\n- Medium [20h support / M]\n- Large [40h support / M]\n- Corporation [200h support / M]\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "عملکرد بالا و پردازش ابری امن", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "ما این سیستم را بر روی کارآمدترین زیرساخت ها نصب خواهیم کرد که پاسخگوی انتظارات مشتریان بیشتر باشد. ما برای راحتی شما از ایمنی ، عملکرد و مراقبت از شما استفاده خواهیم کرد. هر کاربر از داده های شرکتی از مقداری تا چند گیگابایت دریافت می کند و بانک اطلاعاتی در درایوهای با عملکرد بالا Intel Optane قرار می گیرد. علاوه بر نسخه تولید ، نسخه آزمایشی سیستم را پیکربندی خواهیم کرد و به نسخه پشتیبان تهیه برنامه دسترسی کامل خواهید داشت.\n توجه: ما از دوشنبه تا جمعه 8 صبح- 4 عصر (CEST) کار می کنیم و به پردازش سفارش شما نیاز به یک روز کاری داریم.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "میزبانی حرفه ای برای شرکت شما", diff --git a/install/languages/fr-FR/Settings/YetiForce.json b/install/languages/fr-FR/Settings/YetiForce.json index edfca7c2fe7d..5ec64cb1c312 100644 --- a/install/languages/fr-FR/Settings/YetiForce.json +++ b/install/languages/fr-FR/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Aidez à façonner l'avenir de YetiForce CRM!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "Les projets open source qui sont soutenus par la communauté se développent beaucoup plus rapidement que les projets sans aucune contribution, nous vous encourageons donc à nous soutenir avec un don mensuel qui nous permettra de créer un produit encore meilleur pour vous et votre entreprise. Je vous remercie!", "LBL_SHOP_YETIFORCEHELP_INTRO": "Support de base pour les administrateurs système [email, vidéo, documentation]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce est un système très puissant, il fournit plus de 80 modules utilisateur, plus de 80 panneaux de configuration, plus de 30 outils, et leur compréhension nécessite du temps et une vaste expérience. En achetant un support de base, vous accédez aux connaissances et à l'expérience de l'équipe YetiForce qui développe le système. L'assistance est fournie en anglais et en polonais - Assistance par e-mail pour les utilisateurs - Assistance par e-mail pour les administrateurs - Mise à jour gratuite (uniquement pour les clients ayant acheté YetiForce Cloud ou YetiForce Hosting) Le prix de l'aide YetiForce varie en fonction de la taille de l'organisation: - Micro (1 à 20 utilisateurs) - 25 EUR / M - Petit (21 à 50 utilisateurs) - 50 EUR / M - Moyen (51 à 250 utilisateurs) - 100 EUR / M - Grand (251 à 1000 utilisateurs) - 250 EUR / M - Société (1000 utilisateurs) - L'aide de 1250 EUR / MYetiForce contient une limite de support en fonction de la taille de l'organisation: - Micro [5 e-mails par mois 2 mises à jour système par an] - Petit [10 e-mails par mois 2 mises à jour système par an ] - Moyen [15 e-mails par mois 4 mises à jour du système par an] - Grand [20 e-mails par mois 6 mises à jour du système par an] - Entreprise [30 e-mails par mois 12 mises à jour du système par an] problèmes. Si votre entreprise a besoin d'une assistance concernant les capacités système avancées, par exemple la création de nouveaux modules, l'automatisation des processus - ou le système a été modifié par un développeur, nous vous recommandons d'acheter le package de développement YetiForce.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Remplacez la marque YetiForce par la vôtre", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Intégrateur", "LBL_SHOP_INTEGRATOR_INTRO": "Offrez le système YetiForce à vos clients et bénéficiez d'avantages exclusifs disponibles uniquement pour les partenaires YetiForce Integrator.", "LBL_SHOP_INTEGRATOR_DESC": "EXIGENCES 1. Enregistrement correct de toutes les installations YetiForce utilisées par le partenaire et ses clients. 2. Posséder un compte GitHub et participer activement au référentiel YetiForce. AVANTAGES 1. Support direct (chat, e-mail, GitHub) de l'équipe YetiForce en termes de problèmes avancés liés au fonctionnement du système, à l'API et à la configuration. L'assistance peut être fournie en polonais ou en anglais. Une assistance peut également être fournie aux clients du partenaire dans les cas où le partenaire ne sera pas en mesure d'aider ses clients. 2. La possibilité d'embaucher des employés de YetiForce pour de grandes implémentations (service disponible moyennant un supplément, fourni à distance, communication en polonais et en anglais). 3. La possibilité de coopérer dans les appels d'offres (témoignages clients partagés, liste commune de spécialistes, support dans les devis). 4. Possibilité d'utiliser le logo «YetiForce Integrator» sur Internet. 5. Promotion dans le catalogue de partenariat sur le site officiel et dans le système YetiForce. 6. 10% de réduction sur tous les produits offerts sur le marché par le producteur YetiForce et d'autres partenaires (également pour les propres clients du partenaire). La possibilité de réserver un projet - la remise peut être de 20% mais elle sera accordée à un partenaire qui réserve le projet en premier. 7. L'impact sur l'orientation du développement du système et les nouvelles fonctionnalités. COÛT 1. Les frais de participation mensuels pour le partenariat YetiForce Integrator sont de 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Support dédiée de YetiForce CRM", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Ce package de support est dédié aux entreprises qui ont besoin de personnaliser le système, d'ajouter de nouvelles fonctionnalités ou d'intégrer des systèmes externes. Remarque: Les heures non utilisées au cours d'un mois donné peuvent être déplacées vers le suivant mais après cela, elles seront perdues.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "Cloud performant et sûr", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "Nous installerons le système sur l'infrastructure la plus efficace répondant aux attentes des clients les plus exigeants. Nous nous occupons de la sécurité, des performances et résolvons tout problème d'infrastructure pour votre commodité. Chaque utilisateur recevra de quelques à plusieurs Go pour les données d'entreprise et la base de données sera placée sur des disques Intel Optane hautes performances. En plus de la version de production, nous configurerons la version de test du système et vous recevrez un accès complet aux sauvegardes d'application. Remarque: Nous travaillons du lundi au vendredi de 8h à 16h (CEST) et avons besoin d'un jour ouvrable pour traiter votre commande.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Hébergement professionnel pour votre entreprise", diff --git a/install/languages/he-IL/Settings/YetiForce.json b/install/languages/he-IL/Settings/YetiForce.json index c871adea60ad..a2d28f9047ad 100644 --- a/install/languages/he-IL/Settings/YetiForce.json +++ b/install/languages/he-IL/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Help us create the best open system in the world and invest in your future!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce has been installed by 40,000+ companies in over 100 countries, it is completely free and our company develops it together with customers and thanks to paid add-ons. The system is equipped with over 150 free functionalities, which you can adjust and modify.\n\nWe want the system to develop dynamically, so support our project with any amount per month (even with 1 Euro). All collected funds will be used for support tickets on GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues) and to create new functionalities, which will be available for free in the system.\n\nThe YetiForce system has always been and will remain free of charge, but it depends on you how it will continue to develop and whether it will be able to compete with the largest systems in the world. What we have already produced results from our passion and desire to create a unique system that is accessible to everyone.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Basic support for system admins [email, video, documentation]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n- Free update (only for customers who have purchased YetiForce Cloud or YetiForce Hosting)\n\nYetiForce Help price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 25 EUR / M\n- Small (21 to 50 users) - 50 EUR / M\n- Medium (51 to 250 users) - 100 EUR / M\n- Large (251 to 1000 users) - 250 EUR / M\n- Corporation (1000+ users) - 1250 EUR / M\n\nYetiForce Help contains a support limit depending on the size of the organization:\n- Micro [5 emails per month + 2 system updates per year]\n- Small [10 emails per month + 2 system updates per year]\n- Medium [15 emails per month + 4 system updates per year]\n- Large [20 emails per month + 6 system updates per year]\n- Corporation [30 emails per month + 12 system updates per year]\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Replace YetiForce branding with your own", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Integrator", "LBL_SHOP_INTEGRATOR_INTRO": "Offer the YetiForce system to your clients and gain exclusive perks available only to YetiForce Integrator partners.", "LBL_SHOP_INTEGRATOR_DESC": "REQUIREMENTS \n\n 1. Correct registration of all YetiForce installations used by the Partner and the Partner’s clients. \n 2. Owning a GitHub account and active participation in the YetiForce repository. \n\n BENEFITS \n\n 1. Direct support (chat, e-mail, GitHub) from the YetiForce team in terms of advanced problems related to system operation, API and configuration. Support can be provided in Polish or English. Support may also be provided to the Partner’s customers in cases when the Partner will not be able to help its customers. \n 2. The possibility of hiring YetiForce’s employees for large implementations (service available for an additional charge, provided remotely, communication in Polish and English). \n 3. The opportunity to cooperate in tenders (shared customer testimonials, a common list of specialists, support in price estimates). \n 4. Ability to use the “YetiForce Integrator” logo on the Internet. \n 5. Promotion in the partnership catalog on the official website and in the YetiForce system. \n 6. 10% discount on all products offered in the marketplace by the YetiForce producer and other Partners (also for Partner’s own customers). The possibility of booking a project - the discount might be 20% but it will be granted to a Partner which books the project as first. \n 7. The impact on the direction of system development and new functionalities. \n\n COST \n\n 1. The monthly participation fee for the YetiForce Integrator partnership is 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Advanced system support and development [chat, email, phone]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nYetiForce Development price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 200 EUR / M\n- Small (21 to 50 users) - 380 EUR / M\n- Medium (51 to 250 users) - 700 EUR / M\n- Large (251 to 1000 users) - 1.200 EUR / M\n- Corporation (1000+ users) - 6.000 EUR / M\n\nThe number of support hours in YetiForce Development package depends on the size of the organization:\n- Micro [5h support / M]\n- Small [10h support / M]\n- Medium [20h support / M]\n- Large [40h support / M]\n- Corporation [200h support / M]\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "High-performance and safe cloud", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "We will install the system on the most efficient infrastructure that meets the expectations of the most demanding customers. We will take care of safety, performance and solve any infrastructure problem for your convenience. Each user will receive from a few to several GB for corporate data, and the database will be placed on high-performance Intel Optane drives. In addition to the production version, we will configure the testing version of the system and you will receive full access to the application backups. \n Note: We work from Monday to Friday 8am-4pm (CEST) and need one working day to process your order.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Professional hosting for your company", diff --git a/install/languages/hr-HR/ConfReport.json b/install/languages/hr-HR/ConfReport.json index 8d929c617722..bcb74217ab35 100644 --- a/install/languages/hr-HR/ConfReport.json +++ b/install/languages/hr-HR/ConfReport.json @@ -77,7 +77,7 @@ "LBL_LATEST_PHP_VERSIONS_ARE": "Najnovije PHP verzija: %s", "BTN_CHECK_LATEST_VERSION": "Provjeri najnoviju PHP verziju", "BTN_SERVER_SPEED_TEST": "Poslužitelj test brzine", - "BTN_DB_INFO": "Informacije o bazi podataka", + "BTN_DB_INFO": "Database information", "LBL_SERVER_SPEED_TEST": "Brzina poslužitelja", "LBL_READ_TEST": "Čitaj", "LBL_WRITE_TEST": "Pisanje", diff --git a/install/languages/hr-HR/Settings/YetiForce.json b/install/languages/hr-HR/Settings/YetiForce.json index 83ca2f62558d..e5fc95ebb758 100644 --- a/install/languages/hr-HR/Settings/YetiForce.json +++ b/install/languages/hr-HR/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Pomozite nam da stvorimo najbolji otvoreni sistem na svijetu i uložimo u vašu budućnost!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce je instaliralo 40.000+ kompanija u preko 100 zemalja, potpuno je besplatan i naša tvrtka to razvija zajedno sa kupcima i zahvaljujući plaćenim dodacima. Sistem je opremljen sa preko 150 besplatnih funkcija, koje možete podešavati i modificirati.\n\nŽelimo da se sistem razvija dinamično, tako da podržavamo naš projekt sa bilo kojim iznosom mjesečno (čak i sa 1 Euro). Sva prikupljena sredstva koristit će se za ulaznice za podršku na GitHub-u (https://github.com/YetiForceCompany/YetiForceCRM/isissue) i za stvaranje novih funkcionalnosti, koje će u sistemu biti besplatno dostupne.\n\nYetiForce sistem je oduvijek bio i ostat će besplatan, ali od vas zavisi kako će se dalje razvijati i hoće li moći konkurirati najvećim sistemima na svijetu. Ono što smo već proizveli rezultat je naše strasti i želje za stvaranjem jedinstvenog sistema koji je dostupan svima.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Osnovna podrška za administratore sistema [e-pošta, video, dokumentacija]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce je vrlo moćan sistem, pruža 80+ korisničkih modula, 80+ konfiguracijskih ploča, 30+ alata, a njihovo razumijevanje zahtijeva vrijeme i veliko iskustvo. Kupovinom osnovne podrške dobijate pristup znanju i iskustvu tima YetiForce koji razvija sistem. Podrška se pruža na engleskom i poljskom jeziku.\n- Podrška putem e-pošte za korisnike\n- Podrška putem e-pošte za administratore\n- Besplatno ažuriranje (samo za korisnike koji su kupili YetiForce Cloud ili YetiForce hosting)\n\nYetiForce cijena pomoći varira ovisno o veličini organizacije:\n- Micro (1 do 20 korisnika) - 25 EUR / M\n- Mali (21 do 50 korisnika) - 50 EUR / M\n- Srednja (51 do 250 korisnika) - 100 EUR / M\n- Veliki (251 do 1000 korisnika) - 250 EUR / M\n- Korporacija (1000+ korisnika) - 1250 EUR / M\n\nYetiForce Help sadrži ograničenje podrške ovisno o veličini organizacije:\n- Micro [5 e-poruka mjesečno + 2 ažuriranja sistema godišnje]\n- Mala [10 e-poruka mjesečno + 2 ažuriranja sistema godišnje]\n- Srednja [15 e-poruka mjesečno + 4 ažuriranja sistema godišnje]\n- Veliki [20 e-poruka mjesečno + 6 ažuriranja sistema godišnje]\n- Corporation [30 e-poruka mjesečno + 12 ažuriranja sistema godišnje]\n\nPodrška putem e-pošte odnosi se samo na osnovna pitanja. Ako vašoj kompaniji treba podršku u vezi s naprednim mogućnostima sistema, npr. kreiranje novih modula, automatizacija procesa - ili je sistem modificirao programer, preporučujemo kupnju YetiForce razvojnog paketa.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Zamijeniti YetiForce brendiranje sa svojim", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Integrator", "LBL_SHOP_INTEGRATOR_INTRO": "Ponudite svojim klijentima sistem YetiForce i steknite ekskluzivne pogodnosti dostupne samo partnerima kompanije YetiForce Integrator.", "LBL_SHOP_INTEGRATOR_DESC": "ZAHTJEVI\n\n 1. Ispravna registracija svih YetiForce instalacija koje koriste Partner i Partneri partneri.\n 2. Posjedovanje GitHub računa i aktivno sudjelovanje u YetiForce repozitorijumu.\n\n PREDNOSTI\n\n 1. Direktna podrška (chat, e-pošta, GitHub) iz tima YetiForce u pogledu naprednih problema vezanih za rad sistema, API i konfiguraciju. Podrška se može pružiti na poljskom ili engleskom jeziku. Podrška se takođe može pružiti kupčevim partnerima u slučajevima kada Partner neće biti u mogućnosti da pomogne svojim kupcima.\n 2. Mogućnost angažiranja YetiForceovih zaposlenika za velike implementacije (usluga dostupna uz doplatu, pruža se na daljinu, komunikacija na poljskom i engleskom jeziku).\n 3. Mogućnost saradnje na natječajima (zajedničke ocjene kupaca, zajednička lista stručnjaka, podrška u procjeni cijena).\n 4. Mogućnost korištenja logotipa „YetiForce Integrator“ na Internetu.\n 5. Promocija u katalogu partnerstva na službenoj web stranici i u sistemu YetiForce.\n 6. 10% popusta na sve proizvode koje nudi YetiForce proizvođač i ostali partneri (takođe za partnerove klijente). Mogućnost rezervacije projekta - popust može biti 20%, ali dodijelit će se partneru koji projekt rezervira kao prvi.\n 7. Uticaj na smjer razvoja sistema i nove funkcionalnosti.\n\n TROŠKOVI\n\n 1. Mjesečna naknada za učešće u YetiForce Integrator partnerstvu iznosi 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Napredna podrška i razvoj sistema [chat, e-pošta, telefon]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Napredna podrška sistema omogućava sveobuhvatnu podršku ne samo administratorima, već uključuje i prilagodbu i dodavanje novih funkcionalnosti sistemu. Sve poslove koordiniraju iskusni programeri koji doprinose sistemu. Podrška se pruža na engleskom i poljskom jeziku. YetiForce razvojni paket uključuje:\n- Podrška putem e-pošte za korisnike (besplatna)\n- E-mail podrška za administratore (besplatno)\n- Rješavanje tehničkih i sistemskih grešaka (oduzeto od sati paketa)\n- Dodavanje novih funkcionalnosti u sistem (oduzeto od sati paketa)\n- Ažuriranja sistema (oduzeto od sati paketa)\n- Trening (oduzeto od sati paketa)\n\nYetiForce Development cijena varira ovisno o veličini organizacije:\n- Micro (1 do 20 korisnika) - 200 EUR / M\n- Mali (21 do 50 korisnika) - 380 EUR / M\n- Srednja (51 do 250 korisnika) - 700 EUR / M\n- Veliki (251 do 1000 korisnika) - 1.200 EUR / M\n- Korporacija (1000+ korisnika) - 6.000 EUR / M\n\nBroj sati podrške u YetiForce Development paketu ovisi o veličini organizacije:\n- Micro [5h podrška / M]\n- Mala [10h podrška / M]\n- Srednja [20h podrška / M]\n- velika [40h podrška / M]\n- Korporacija [podrška 200h / M]\n\nAnalizira se svaki email s opisom i procjenjuje se broj sati. Ako je citat prihvaćen, zadatak je zakazan.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "Visoko učinkovit i siguran oblak", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "Instalirat ćemo sustav na najefikasniju infrastrukturu koja zadovoljava očekivanja najzahtjevnijih kupaca. Mi ćemo se pobrinuti za sigurnost, performanse i riješiti svaki infrastrukturni problem za vašu udobnost. Svaki će korisnik dobiti od nekoliko do nekoliko GB-a za korporativne podatke, a baza podataka bit će smještena na visokoučinkovitim pogonskim Intel Optane. Pored proizvodne verzije, konfigurirat ćemo testnu verziju sustava i dobit ćete potpuni pristup sigurnosnim kopijama aplikacija.\n Napomena: Radimo od ponedjeljka do petka od 8 do 16 sati (CEST) i potreban vam je jedan radni dan da bismo obradili vašu narudžbu.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Profesionalni hosting za tvoju kompaniju", diff --git a/install/languages/hu-HU/ConfReport.json b/install/languages/hu-HU/ConfReport.json index bbc10428f0e4..395e0aa1e19b 100644 --- a/install/languages/hu-HU/ConfReport.json +++ b/install/languages/hu-HU/ConfReport.json @@ -77,7 +77,7 @@ "LBL_LATEST_PHP_VERSIONS_ARE": "Latest PHP versions: %s", "BTN_CHECK_LATEST_VERSION": "Check the latest PHP version", "BTN_SERVER_SPEED_TEST": "Server speed test", - "BTN_DB_INFO": "Database information", + "BTN_DB_INFO": "Adatbázis információk", "LBL_SERVER_SPEED_TEST": "Server speed", "LBL_READ_TEST": "Read", "LBL_WRITE_TEST": "Write", diff --git a/install/languages/hu-HU/Settings/YetiForce.json b/install/languages/hu-HU/Settings/YetiForce.json index ab508079b0c2..0276314560b5 100644 --- a/install/languages/hu-HU/Settings/YetiForce.json +++ b/install/languages/hu-HU/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Segítsenek nekünk a legjobb nyílt rendszer a világon a Yetiforce Crm, valamint fektessen be a jövőbe!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce rendszert telepítette 40,000+ vállalat több mint 100 országban, teljesen ingyenes, valamint a társaság alakult ki együtt a felhasználókkal, és köszönöm, hogy fizetett a bővítményeket is használják. A rendszer fel van szerelve, több mint 150 ingyenes funkcióval, amit megadhat, illetve módosíthatja.\n\nAzt akarjuk, hogy a rendszer fejlesztése dinamikusan haladjon, így a támogatás a projekt számára bármely összeg havonta (még 1 Euro) nagyon fontos. Minden összegyűjtött észrevétel, a használt támogató jegyek a GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues), fel lesznek használva, hogy új funkciókkalbővüljön az ingyenesen elérhető a rendszer.\n\nA YetiForce rendszer mindig is az volt, továbbra is ingyenes, de ez attól függ, hogy továbbra is tudjuk-e fejleszteni, illetve képes lesz-e felvenni a versenyt a legnagyobb rendszerek a világon. Mi már elértünk eredményeketés hajt bennünket a szenvedély, a vágy, hogy létrehozzunk egy egyedülálló rendszer, amely mindenki számára elérhető.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Alapvető támogatás a rendszer adminok részére [e-mail, video, dokumentáció]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce egy nagyon hatékony rendszer, ez biztosítja a 80+ felhasználói modulok, 80+ konfigurációs panel, 30+ eszközök, megértése több időt igényel, valamint széles körű tapasztalatot. A támogatás megvásárlásával hozzáfér a tudáshoz és a tapasztalathoz, a YetiForce csapattól, amely fejleszti a rendszert. Támogatás nyelve angol, lengyel.\n- e-Mail támogatás a felhasználók számára\n- e-Mail támogatás az adminok részére\n- Ingyenes frissítés (csak az ügyfelek, akik vásároltak YetiForce Felhő, vagy YetiForce Hosting)\n\nYetiForce támogatás ára változó, attól függően, hogy a vállalat mérete mekkora:\n- Micro (1 20 felhasználók) - 25 EUR / hó\n- Kicsi (21-50 felhasználó) - 50 EUR / hó\n- Közepes (51 250 felhasználók) - 100 EUR / hó\n- Nagy (251 1000 felhasználók) - 250 EUR / hó\n- Corporation (1000+ felhasználók) - 1250 EUR / hó\n\nYetiForce támogatás tartalmaz egy támogatási határt, attól függően, hogy a vállalat mérete mekkora:\n- Micro [5 e-mailt / hó + 2 rendszer frissítés / év]\n- Kicsi, [10 e-mailt / hó + 2 rendszer frissítések / év]\n- Közepes [15 e-mailt havonta + 4 rendszer frissítések / év]\n- Nagy [20 e-mailt / hó + 6 rendszer frissítések / év]\n- Corporation [30 e-mailt / hó + 12 rendszer frissítések / év]\n\nTámogatás e-mailben, csak az alapvető kérdésekre terjed ki. Ha a vállalat támogatásra vonatkozó speciális rendszer képességekre van szükssége, pl. hozzunk létre új modulokat, automatizálási -, vagy a rendszer módosítást a fejlesztőtől, akkor javasoljuk, hogy vásárolja meg a YetiForce Fejlesztési csomagját.", + "LBL_SHOP_YETIFORCEHELP_DESC": "A YetiForce egy nagyon hatékony rendszer, amely 80+ felhasználói modult, 80+ konfigurációs panelt, 30+ eszközt biztosít, és mindezek megértéséhez időre és kiterjedt tapasztalatra van szükség. Az alapvető támogatás megvásárlásával hozzáférést kap a rendszert fejlesztő YetiForce csapat tudásához és tapasztalatához. A támogatást angol és lengyel nyelven nyújtják.\n- E-mail támogatás a felhasználók számára\n- E-mail támogatás az adminoknak\n\nAz e-mailes támogatás csak az alapvető kérdésekre vonatkozik. Ha cége támogatást igényel a fejlett rendszer képességekkel kapcsolatban, pl. új modulok létrehozása, folyamat-automatizálás - vagy a rendszert egy fejlesztő módosította, javasoljuk a YetiForce Development csomag megvásárlását.\n", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Replace YetiForce branding with your own", - "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", + "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "A YetiForce CRM márkanév testreszabása a rendszerben megjelenített adatok megváltoztatásával. Adjon hozzá lényeges információkat a létrehozott dokumentumokhoz, írja be cége adatait a láblécbe, vagy állítsa be saját linkjeit a közösségi média profilokhoz.\n\nA YetiForce Branding letiltása lehetővé teszi, hogy eltávolítsa a YetiForce közösségi média profiljainak linkjeit a rendszer láblécéből, és helyettesítse azokat a vállalat szociális média profiljaira mutató linkekkel. Ez lehetővé teszi, hogy személyre szabja a YetiForce rendszer megjelenését, hogy az alkalmazás felhasználói ne láthassák a felesleges információkat a láblécben. Ezenkívül letiltja a gyártó láblécét a rendszer által küldött összes e-mailben és a rendszer által generált PDF nyomtatásban.\n\nMegjegyzés: Ez az addon nem tiltja le az összes YetiForce márkahivatkozást, amely megtalálható a rendszerben. További információért látogasson el a Piactérre hivatalos weboldalunkon.", "LBL_SHOP_INTEGRATOR": "Integrator", "LBL_SHOP_INTEGRATOR_INTRO": "Offer the YetiForce system to your clients and gain exclusive perks available only to YetiForce Integrator partners.", "LBL_SHOP_INTEGRATOR_DESC": "KÖVETELMÉNYEK\n\n 1. A Partner és a Partner ügyfelei által használt összes YetiForce telepítés helyes regisztrációja.\n 2. GitHub-fiók birtoklása és aktív részvétel a YetiForce adattárban.\n\n ELŐNYÖK\n\n 1. Közvetlen támogatás (csevegés, e-mail, GitHub) a YetiForce csapatától a rendszer működésével, az API-val és a konfigurációval kapcsolatos haladó problémák szempontjából. A támogatást lengyel vagy angol nyelven lehet biztosítani. Támogatás nyújtható a Partner ügyfeleinek abban az esetben is, amikor a Partner nem lesz képes segíteni ügyfeleinek.\n 2. A YetiForce alkalmazottainak alkalmazásának lehetősége nagy megvalósításokhoz (szolgáltatás felár ellenében elérhető, távolról biztosított, kommunikáció lengyel és angol nyelven).\n 3. A pályázatokon való együttműködés lehetősége (megosztott vásárlói ajánlások, közös szakember-lista, támogatás az árbecslésekben).\n 4. Használhatja a „YetiForce Integrator” logót az interneten.\n 5. Promóció a partnerségi katalógusban a hivatalos weboldalon és a YetiForce rendszerben.\n 6. 10% kedvezmény minden olyan termékről, amelyet a YetiForce gyártója és más partnerek kínálnak a piacon (a Partner saját ügyfelei számára is). Projekt lefoglalásának lehetősége - a kedvezmény 20% lehet, de megkapják azt a Partneret, aki elsőnek könyveli el a projektet.\n 7. A rendszerfejlesztés és az új funkciók irányának hatása.\n\n KÖLTSÉG\n\n 1. A YetiForce Integrator partnerség havi részvételi díja 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Speciális rendszer támogatás, fejlesztés [chat, e-mail, telefon]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Speciális támogatási rendszer lehetővé teszi, hogy átfogó támogatást kapjanak nem csak a rendszergazdák. Ez is tartalmaz, testreszabást, hozzátéve új funkciókat, hogy a rendszer megfeleljen. Minden munkát koordinálnak tapasztalt fejlesztők, akik hozzájárulnak ahhoz, hogy a rendszer jól működjön. A támogatás, angol, vagy lengyel nyelven történik. YetiForce fejlesztési csomag tartalma:\n- e-Mail támogatás a felhasználók számára (ingyenes)\n- e-Mail támogatás az adminok (ingyenes)\n- Technikai rendszer hiba megoldása (levonni csomagban foglalt órákból)\n- új funkciók megvalósítása a rendszerben (levonni csomagban foglalt órákból)\n- Rendszer frissítések (levonni csomagban foglalt órákból)\n- Képzés (levonni csomagban foglalt órákból)\n\nYetiForce Fejlesztési ára változó, attól függően, hogy a vállalat mérete mekkora:\n- Micro (1 20 felhasználók) - 200 EUR / hó\n- Kicsi (21-50 felhasználó) - 380, - EUR / hó\n- Közepes (51 - 250 felhasználók) - 700 EUR / hó\n- Nagy (251 1000 felhasználók) - 1.200 EUR / hó\n- Corporation (1000+ felhasználók) - 6.000, - EUR / hó\n\nA támogatási órák száma a YetiForce Fejlesztési csomag méretétől függ, és a szervezet nagyságához igazodik:\n- Micro [5h support / hó]\n- Kis [10h support / hó]\n- Közepes [20h support / hó]\n- Nagy [40h support / hó]\n- Corporation [200h support / hó]\n\nMinden e-mailt leírása, elemzése, s az órák száma a becslések szerint. Ha az árajánlatot elfogadja, az a feladat, tervezetté válik.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "A fejlett rendszertámogatás nemcsak a rendszergazdák számára nyújt átfogó támogatást, hanem testreszabást és új funkciók hozzáadását is magában foglalja a rendszerben. Minden munkát tapasztalt fejlesztők koordinálnak, akik hozzájárulnak a rendszerhez. A támogatást angol és lengyel nyelven nyújtják. A YetiForce fejlesztési csomag a következőket tartalmazza:\n- E-mail támogatás a felhasználók számára (ingyenes)\n- E-mail támogatás az adminoknak (ingyenes)\n- Műszaki és rendszerhibák megoldása (kivonva a csomagidőből)\n- Új funkciók hozzáadása a rendszerhez (kivonva a csomagórákból)\n- Rendszerfrissítések (kivonva a csomag óráiból)\n- Képzés (kivonva a csomagidőből)\n\nMinden egyes e-mailt leírással elemezünk és becsüljük az órák számát. Ha az ajánlatot elfogadják, a feladat ütemezésre kerül.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "High-performance and safe cloud", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "We will install the system on the most efficient infrastructure that meets the expectations of the most demanding customers. We will take care of safety, performance and solve any infrastructure problem for your convenience. Each user will receive from a few to several GB for corporate data, and the database will be placed on high-performance Intel Optane drives. In addition to the production version, we will configure the testing version of the system and you will receive full access to the application backups. \n Note: We work from Monday to Friday 8am-4pm (CEST) and need one working day to process your order.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Professional hosting for your company", @@ -92,16 +92,16 @@ "LBL_SHOP_MODULESENTERPRISE_INTRO": "", "LBL_SHOP_MODULESENTERPRISE_DESC": "", "LBL_SHOP_YETIFORCEGEOCODER_INTRO": "Integrálva a modern térképcím alapú keresés", - "LBL_SHOP_YETIFORCEGEOCODER_DESC": "YetiForce Address Search is our proprietary solution that allows you to search for a postal address located anywhere in the world as well as postal addresses for major public administration institutions. This addon is based on the OpenStreetMap (OSM) engine that is run in our hyper-efficient cloud. This integration increases the efficiency of the functionality, significantly improves security in relation to public OSM servers, and provides cost-saving in comparison to using the popular Google Maps service.\n\nThe functionality can be used in every module which requires entering address data, e.g. in 'Leads', 'Accounts', 'Contacts', 'Quotes' or 'Sales invoices'.\n\nNOTE! We care about the confidentiality and security of your company's sensitive data. Any data entered by users (employees) into the YetiForce CRM system is not saved or sent to YetiForce Sp. z o.o., which is a software producer.", + "LBL_SHOP_YETIFORCEGEOCODER_DESC": "A YetiForce Address Search a saját fejlesztésű megoldásunk, amely lehetővé teszi, hogy keressen a világ bármely pontján található postacímet, valamint a nagy közigazgatási intézmények postacímeit. Ez az addon az OpenStreetMap (OSM) motoron alapul, amelyet a hiperhatékony felhőnkben futtatnak. Ez az integráció növeli a funkcionalitás hatékonyságát, jelentősen javítja a nyilvános OSM-kiszolgálók biztonságát, és költségmegtakarítást eredményez a népszerű Google Maps szolgáltatáshoz képest.\n\nA funkcionalitás minden modulban használható, amely címadatok megadását igényli, pl. a „Leadek”, „Számlák”, „Kapcsolatok”, „Ajánlatok” vagy „Értékesítési számlák” alatt.\n\nJEGYZET! Törődünk a vállalat bizalmas adatainak titkosságával és biztonságával. A felhasználók (alkalmazottak) által a YetiForce CRM rendszerbe beírt adatokat nem menti és nem küldi el a YetiForce Sp. z o.o. részére, amely szoftvergyártó.", "LBL_SHOP_YETIFORCEMAP_INTRO": "Integrálja a modern térkép adat-vizualizáció, útvonal feltérképezése, cím keresés", - "LBL_SHOP_YETIFORCEMAP_DESC": "YetiForce has launched its own, incredibly efficient and secure map servers that are based on the Open Street Maps engine. The add-on enables:\n\n- Direct visualization of Companies and Contacts added to YetiForce CRM.\n- Routes calculation between Companies and Contacts existing in the system.\n- Searching address data of Companies added to the system.\n\nThe main advantages of the YetiForce Map solution are increased security (in comparison to public servers), saving a significant amount of money (in comparison to Google Maps), and high efficiency due to the use of cutting edge server technology.", + "LBL_SHOP_YETIFORCEMAP_DESC": "A YetiForce elindította saját, hihetetlenül hatékony és biztonságos térképszervereit, amelyek az Open Street Maps motorra épülnek. A kiegészítő lehetővé teszi:\n\n- A YetiForce CRM-hez hozzáadott vállalatok és kapcsolattartók közvetlen megjelenítése.\n- Útvonalak kiszámítása a rendszerben létező vállalatok és kapcsolattartók között.\n- A rendszerhez felvett vállalatok címadatainak keresése.\n\nA YetiForce Map megoldás fő előnyei a fokozott biztonság (a nyilvános szerverekhez képest), jelentős összeg megtakarítása (összehasonlítva a Google Maps-szel), valamint a csúcstechnológiájú szerver-technológiának köszönhetően magas hatékonyság.", "LBL_SHOP_YETIFORCEPASSWORD_INTRO": "A felhasználói jelszavak valós idejű ellenőrzése az adatokvédelem érdekében", - "LBL_SHOP_YETIFORCEPASSWORD_DESC": "YetiForce launched a server with more than 572 million passwords that were leaked as a result of database hacks all over the world. Using this extension will allow you to verify passwords in real time (while creating users, changing passwords, logging into the system) and will warn you if a password that is being currently used has been compromised and should be changed immediately.\n\nOnly password hashes (SHA1) are exchanged between your system and our server. We don’t store any information about the system, user, or login; moreover, we don’t record the IP address that sent the request that includes the password hash.\n\nKeep in mind that using Multi-Factor Authentication (MFA), as well as allowing access only via trusted IPs or encrypted VPNs will also significantly increase your system security.", + "LBL_SHOP_YETIFORCEPASSWORD_DESC": "A YetiForce egy olyan kiszolgálót indított el, amely több mint 572 millió jelszóval szivárgott ki az adatbázis-feltörések eredményeként a világ minden tájáról. Ennek a kiterjesztésnek a használata lehetővé teszi a jelszavak valós időben történő ellenőrzését (a felhasználók létrehozása, a jelszavak megváltoztatása, a rendszerbe való bejelentkezés közben), és figyelmeztet, ha a jelenleg használt jelszó sérült és azonnal meg kell változtatni.\n\nCsak a jelszó kivonatok (SHA1) cserélhetők ki a rendszer és a szerver között. Nem tárolunk semmilyen információt a rendszerről, a felhasználóról vagy a bejelentkezésről; ráadásul nem rögzítjük azt az IP-címet, amely elküldte a jelszó kivonatát tartalmazó kérést.\n\nNe feledje, hogy a többtényezős hitelesítés (MFA) használata, valamint a hozzáférés csak megbízható IP-n vagy titkosított VPN-en keresztül történő engedélyezése jelentősen megnöveli a rendszer biztonságát is.", "LBL_SHOP_YETIFORCEOUTLOOK_INTRO": "Integrate YetiForceCRM with your Microsoft Outlook email client", - "LBL_SHOP_YETIFORCEOUTLOOK_DESC": "It’s a modern add-on for Microsoft Outlook. It allows you to load the CRM system directly in the Outlook window, where you can download and relate an e-mail to data in the system. In addition, the integration allows you to perform the same operations from the e-mail view as in the standard system, i.e.\n\n- Add companies and contacts (Accounts, Contacts, Leads, Vendors, Partners, Competition)\n- Add processes and sub-processes (Opportunities, Agreements, SLA, Campaigns, Quotes, Sales orders, Tickets, etc.)\n- Add notes, events, documents\n- Work directly from the e-mail client which allows you to optimize the customer service process and makes it easier to perform many activities from one place.", - "LBL_SHOP_YETIFORCEMAGENTO_INTRO": "Integrate the YetiForce CRM system with the Marento e-commerce platform", - "LBL_SHOP_YETIFORCEMAGENTO_DESC": "YetiForce integrated with Magento, one of the largest and most popular e-commerce platforms. This solution allows you to conduct centralized activities related to customer service and e-store orders straight from the CRM. It means that you will be able to communicate with clients, create all necessary documents related to orders (eg. invoices, receipts, storage documents) and update stocks - all in one place.\n\nYour employees won’t have to learn how to use the complex Magento platform if you integrate your CRM with this extension, which will result in lower training costs.\n\nData synchronisation between the two systems takes place using the API (Magento Admin REST endpoints). Flexible design of the solution allows multi store management, i.e integration of YetiForce with multiple stores based on the Magento engine. It also allows one central warehouse or multiple warehouses where each store has its warehouse. Regardless of stores number, YetiForce is always the master system that centralizes data from the Magento platform. The communication is one-way, i.e YetiForce CRM queries the Magento API downloading and updating data in both ways.", - "LBL_SHOP_YETIFORCEPLGUS_INTRO": "Get all the company information straight from the polish Central Statistical Office", - "LBL_SHOP_YETIFORCEPLGUS_DESC": "This module saves time of your employees. Manual search and data verification will be no longer necessary as well as entering the data into the appropriate fields in the record - the system will search for and fill in the appropriate fields. You only need one of the following numbers: VAT ID, NCR, or NOBR numbers to get all the necessary information about a given company and easily save it in the system.\n\nAll data is downloaded in real-time directly from the Polish Central Statistical Office using the API (https://api.stat.gov.pl/Home/RegonApi), so it is reliable and up-to-date.\n\nLists of fields completed automatically in individual modules:\n\n- Accounts: VAT ID, NCR, NOBR, Account name, State, County, Township, City/Village, Post code, Street, Building number, Office number, Country\n- Leads: NOBR, State, County, Township, City/Village, Post code, Street, Building number, Office number\n- Vendors: Vendor name, NOBR, State, County, Township, City/Village, Post code, Street, Building number, Office number\n- Competition: Name, State, County, Township, City/Village, Post code, Street, Building number\n\nNotice: The YetiForce GUS extension can only search for companies registered in Poland." + "LBL_SHOP_YETIFORCEOUTLOOK_DESC": "Ez egy modern kiegészítő a Microsoft Outlook számára. Lehetővé teszi a CRM rendszer betöltését közvetlenül az Outlook ablakba, ahonnan letölthet egy e-mailt és összekapcsolhatja azt a rendszer adataival. Ezenkívül az integráció lehetővé teszi, hogy az e-mail nézetből ugyanazokat a műveleteket hajtsa végre, mint a szokásos rendszerben, azaz\n\n- Vállalatok és kapcsolattartók hozzáadása (számlák, kapcsolattartók, vezetők, szállítók, partnerek, verseny)\n- Folyamatok és alfolyamatok hozzáadása (Lehetőségek, megállapodások, SLA, kampányok, árajánlatok, értékesítési rendelések, jegyek stb.)\n- Adjon hozzá jegyzeteket, eseményeket, dokumentumokat\n- Dolgozzon közvetlenül az e-mail klienstől, amely lehetővé teszi az ügyfélszolgálat folyamatának optimalizálását, és megkönnyíti számos tevékenység egy helyen történő elvégzését.", + "LBL_SHOP_YETIFORCEMAGENTO_INTRO": "Integrálja a YetiForce CRM rendszert a Marento e-kereskedelmi platformjával", + "LBL_SHOP_YETIFORCEMAGENTO_DESC": "A YetiForce integrálódott a Magentóval, amely az egyik legnagyobb és legnépszerűbb e-kereskedelmi platform. Ez a megoldás lehetővé teszi az ügyfélszolgálattal és az e-áruházi megrendelésekkel kapcsolatos központosított tevékenységek végrehajtását közvetlenül a CRM-től. Ez azt jelenti, hogy képes lesz kommunikálni az ügyfelekkel, elkészíteni a megrendelésekhez szükséges összes dokumentumot (pl. Számlák, nyugták, tárolási dokumentumok) és frissíteni a készleteket - mindezt egy helyen.\n\nMunkatársainak nem kell megtanulniuk a komplex Magento platform használatát, ha integrálja CRM-jét ezzel a kiterjesztéssel, ami alacsonyabb képzési költségeket eredményez.\n\nAz adatok szinkronizálása a két rendszer között az API (Magento Admin REST végpontok) segítségével történik. A megoldás rugalmas kialakítása lehetővé teszi a több üzlet kezelését, azaz a YetiForce integrálását a Magento motoron alapuló több üzlettel. Lehetővé teszi egy központi raktár vagy több raktár elhelyezését is, ahol mindegyik üzlet rendelkezik saját raktárral. A boltok számától függetlenül a YetiForce mindig a fő rendszer, amely központosítja a Magento platform adatait. A kommunikáció egyirányú, vagyis a YetiForce CRM mindkét módon lekérdezi a Magento API-t az adatok letöltésével és frissítésével.", + "LBL_SHOP_YETIFORCEPLGUS_INTRO": "Az összes céginformációt közvetlenül a lengyel Központi Statisztikai Hivataltól szerezheti be", + "LBL_SHOP_YETIFORCEPLGUS_DESC": "Ez a modul időt takarít meg az alkalmazottak számára. A kézi keresésre és az adatok ellenőrzésére már nem lesz szükség, valamint az adatok bejegyzésének megfelelő mezőibe történő beírására - a rendszer megkeresi és kitölti a megfelelő mezőket. Csak az alábbi számok egyikére van szüksége: ÁFA-azonosító, NCR vagy NOBR szám, hogy minden szükséges információt megkapjon egy adott vállalattal kapcsolatban, és könnyedén elmentse a rendszerbe.\n\nMinden adatot valós időben, közvetlenül az Lengyel Központi Statisztikai Hivataltól töltenek le az API segítségével (https://api.stat.gov.pl/Home/RegonApi), tehát megbízhatóak és naprakészek.\n\nAz egyes modulokban automatikusan kitöltött mezők listája:\n\n- Számlák: ÁFA-azonosító, NCR, NOBR, Számla neve, Állam, Megye, Település, Város / Falu, Irányítószám, Utca, Épületszám, Iroda száma, Ország\n- Vezet: NOBR, állam, megye, település, város / falu, irányítószám, utca, épület száma, iroda száma\n- Eladók: Szállító neve, NOBR, állam, megye, település, város / falu, irányítószám, utca, épületszám, iroda száma\n- Verseny: név, állam, megye, település, város / falu, irányítószám, utca, épületszám." } } diff --git a/install/languages/id-ID/Settings/YetiForce.json b/install/languages/id-ID/Settings/YetiForce.json index c871adea60ad..a2d28f9047ad 100644 --- a/install/languages/id-ID/Settings/YetiForce.json +++ b/install/languages/id-ID/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Help us create the best open system in the world and invest in your future!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce has been installed by 40,000+ companies in over 100 countries, it is completely free and our company develops it together with customers and thanks to paid add-ons. The system is equipped with over 150 free functionalities, which you can adjust and modify.\n\nWe want the system to develop dynamically, so support our project with any amount per month (even with 1 Euro). All collected funds will be used for support tickets on GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues) and to create new functionalities, which will be available for free in the system.\n\nThe YetiForce system has always been and will remain free of charge, but it depends on you how it will continue to develop and whether it will be able to compete with the largest systems in the world. What we have already produced results from our passion and desire to create a unique system that is accessible to everyone.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Basic support for system admins [email, video, documentation]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n- Free update (only for customers who have purchased YetiForce Cloud or YetiForce Hosting)\n\nYetiForce Help price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 25 EUR / M\n- Small (21 to 50 users) - 50 EUR / M\n- Medium (51 to 250 users) - 100 EUR / M\n- Large (251 to 1000 users) - 250 EUR / M\n- Corporation (1000+ users) - 1250 EUR / M\n\nYetiForce Help contains a support limit depending on the size of the organization:\n- Micro [5 emails per month + 2 system updates per year]\n- Small [10 emails per month + 2 system updates per year]\n- Medium [15 emails per month + 4 system updates per year]\n- Large [20 emails per month + 6 system updates per year]\n- Corporation [30 emails per month + 12 system updates per year]\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Replace YetiForce branding with your own", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Integrator", "LBL_SHOP_INTEGRATOR_INTRO": "Offer the YetiForce system to your clients and gain exclusive perks available only to YetiForce Integrator partners.", "LBL_SHOP_INTEGRATOR_DESC": "REQUIREMENTS \n\n 1. Correct registration of all YetiForce installations used by the Partner and the Partner’s clients. \n 2. Owning a GitHub account and active participation in the YetiForce repository. \n\n BENEFITS \n\n 1. Direct support (chat, e-mail, GitHub) from the YetiForce team in terms of advanced problems related to system operation, API and configuration. Support can be provided in Polish or English. Support may also be provided to the Partner’s customers in cases when the Partner will not be able to help its customers. \n 2. The possibility of hiring YetiForce’s employees for large implementations (service available for an additional charge, provided remotely, communication in Polish and English). \n 3. The opportunity to cooperate in tenders (shared customer testimonials, a common list of specialists, support in price estimates). \n 4. Ability to use the “YetiForce Integrator” logo on the Internet. \n 5. Promotion in the partnership catalog on the official website and in the YetiForce system. \n 6. 10% discount on all products offered in the marketplace by the YetiForce producer and other Partners (also for Partner’s own customers). The possibility of booking a project - the discount might be 20% but it will be granted to a Partner which books the project as first. \n 7. The impact on the direction of system development and new functionalities. \n\n COST \n\n 1. The monthly participation fee for the YetiForce Integrator partnership is 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Advanced system support and development [chat, email, phone]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nYetiForce Development price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 200 EUR / M\n- Small (21 to 50 users) - 380 EUR / M\n- Medium (51 to 250 users) - 700 EUR / M\n- Large (251 to 1000 users) - 1.200 EUR / M\n- Corporation (1000+ users) - 6.000 EUR / M\n\nThe number of support hours in YetiForce Development package depends on the size of the organization:\n- Micro [5h support / M]\n- Small [10h support / M]\n- Medium [20h support / M]\n- Large [40h support / M]\n- Corporation [200h support / M]\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "High-performance and safe cloud", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "We will install the system on the most efficient infrastructure that meets the expectations of the most demanding customers. We will take care of safety, performance and solve any infrastructure problem for your convenience. Each user will receive from a few to several GB for corporate data, and the database will be placed on high-performance Intel Optane drives. In addition to the production version, we will configure the testing version of the system and you will receive full access to the application backups. \n Note: We work from Monday to Friday 8am-4pm (CEST) and need one working day to process your order.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Professional hosting for your company", diff --git a/install/languages/it-IT/ConfReport.json b/install/languages/it-IT/ConfReport.json index b5c62747c6f5..788a54f03e5c 100644 --- a/install/languages/it-IT/ConfReport.json +++ b/install/languages/it-IT/ConfReport.json @@ -77,7 +77,7 @@ "LBL_LATEST_PHP_VERSIONS_ARE": "Ultime versioni PHP: %s", "BTN_CHECK_LATEST_VERSION": "Controlla l'ultima versione PHP", "BTN_SERVER_SPEED_TEST": "Test di velocità del server", - "BTN_DB_INFO": "Informazioni database", + "BTN_DB_INFO": "Database information", "LBL_SERVER_SPEED_TEST": "Velocità server", "LBL_READ_TEST": "Lettura", "LBL_WRITE_TEST": "Scrittura", diff --git a/install/languages/it-IT/Settings/YetiForce.json b/install/languages/it-IT/Settings/YetiForce.json index 8e4c4a8f3a68..5f5e8808652e 100644 --- a/install/languages/it-IT/Settings/YetiForce.json +++ b/install/languages/it-IT/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Aiutaci a creare il miglior sistema aperto del mondo e investire nel tuo futuro!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce è stato installato da oltre 40.000 aziende in oltre 100 paesi, è completamente gratuito e la nostra azienda lo sviluppa insieme ai clienti e grazie ai componenti aggiuntivi a pagamento. Il sistema è dotato di oltre 150 funzionalità gratuite, che puoi regolare e modificare.\n\nVogliamo che il sistema si sviluppi dinamicamente, quindi supporta il nostro progetto con qualsiasi importo al mese (anche con 1 Euro). Tutti i fondi raccolti verranno utilizzati per i ticket di supporto su GitHub (https://github. om/YetiForceCompany/YetiForceCRM/issues) e per creare nuove funzionalità, che saranno disponibili gratuitamente nel sistema.\n\nIl sistema YetiForce è sempre stato e rimarrà gratuito, ma dipende da voi come continuerà a svilupparsi e se sarà in grado di competere con i più grandi sistemi del mondo. Quello che abbiamo già prodotto è il risultato della nostra passione e del nostro desiderio di creare un sistema unico accessibile a tutti.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Supporto di base per gli amministratori di sistema [e-mail, video, documentazione]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce è un sistema molto potente, fornisce 80+ moduli utente, 80+ pannelli di configurazione, 30+ strumenti, e la comprensione di tutti, che richiede tempo ed esperienza. Con l'acquisto di un supporto di base, si guadagna l'accesso alla conoscenza e all'esperienza del YetiForce team che sviluppa il sistema. Il supporto è disponibile in inglese e polacco.\n- Mail di sostegno per gli utenti\n- Mail di sostegno per gli amministratori\n- aggiornamento Gratuito (solo per i clienti che hanno acquistato YetiForce Cloud o YetiForce Hosting)\n\nYetiForce Aiutare prezzo varia a seconda della dimensione dell'organizzazione:\n- Micro (da 1 a 20 utenti) - 25 EURO / M\n- Piccola (da 21 a 50 utenti) - 50 EURO / M\n- Medio (da 51 a 250 utenti) - 100 EURO / M\n- Grande (da 251 a 1000 utenti) - 250 EURO / M\n- Corporation (1000+ utenti) - 1250 EUR / M\n\nYetiForce Guida contiene un supporto limite a seconda della dimensione dell'organizzazione:\n- Micro [5 messaggi al mese + 2 aggiornamenti all'anno]\n- Piccolo [10 messaggi al mese + 2 aggiornamenti all'anno]\n- Medio [15 email al mese + 4 aggiornamenti di sistema per anno]\n- Grande [20 mail al mese + 6 aggiornamenti di sistema per anno]\n- Corporation [30 email al mese + 12 aggiornamenti di sistema per anno]\n\nSupporto via e-mail valida solo per i problemi di base. Se la vostra azienda richiede il supporto in materia di sistema avanzate funzionalità, ad esempio la creazione di nuovi moduli, automazione di processo o il sistema è stato modificato da uno sviluppatore, si consiglia di acquistare il YetiForce pacchetto di Sviluppo.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Sostituisci il marchio YetiForce con il tuo", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Integratore", "LBL_SHOP_INTEGRATOR_INTRO": "Offri il sistema YetiForce ai tuoi clienti e ottieni vantaggi esclusivi disponibili solo ai partner di YetiForce Integrator.", "LBL_SHOP_INTEGRATOR_DESC": "RICHIETTI \n\n 1. Registrazione corretta di tutte le installazioni YetiForce utilizzate dal Partner e dai clienti del Partner. \n 2. Possedere un account GitHub e partecipare attivamente al repository YetiForce. \n\n BENEFITS \n\n 1. Supporto diretto (chat, e-mail, GitHub) dal team YetiForce in termini di problemi avanzati legati all'operazione di sistema, API e configurazione. Il sostegno può essere fornito in polacco o in inglese. Può essere fornito anche supporto ai clienti del Partner nei casi in cui il Partner non sarà in grado di aiutare i suoi clienti. \n 2. La possibilità di assumere i dipendenti di YetiForce per grandi implementazioni (servizio disponibile per un addebito aggiuntivo, fornito a distanza, comunicazione in polacco e inglese). \n 3. L'opportunità di cooperare nelle offerte (testimonianze dei clienti condivisi, un elenco comune di specialisti, sostegno nelle stime dei prezzi). \n 4. Possibilità di utilizzare il logo \"YetiForce Integrator\" su Internet. \n 5. Promozione nel catalogo di partenariato sul sito ufficiale e nel sistema YetiForce. \n 6. Sconto del 10% su tutti i prodotti offerti nel mercato dal produttore YetiForce e altri partner (anche per i clienti dei partner). La possibilità di prenotare un progetto - lo sconto potrebbe essere del 20 per cento, ma sarà concesso a un partner che prima prenota il progetto. \n 7. L'impatto sulla direzione dello sviluppo del sistema e sulle nuove funzionalità. \n\n COST \n\n 1. La quota mensile di partecipazione per il partenariato YetiForce Integrator è di 250 euro.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Supporto di sistema avanzato e sviluppo [chat, e-mail, telefono]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Avanzato sistema di supporto consente di supporto completo, non solo per gli amministratori, ma include anche la personalizzazione e l'aggiunta di nuove funzionalità al sistema. Tutto il lavoro è coordinato da esperti sviluppatori che contribuiscono al sistema. Il supporto è disponibile in inglese e polacco. YetiForce sviluppo pacchetto include:\n- Mail di sostegno per gli utenti (gratuito)\n- Mail di sostegno per gli amministratori (gratuito)\n- Solving tecniche ed errori di sistema (sottratto dal pacchetto di ore)\n- Aggiunta di nuove funzionalità al sistema (sottratto dal pacchetto di ore)\n- aggiornamenti di Sistema (sottratto dal pacchetto di ore)\n- Formazione (sottratto dal pacchetto di ore)\n\nYetiForce Sviluppo prezzo varia a seconda della dimensione dell'organizzazione:\n- Micro (da 1 a 20 utenti) - 200 EURO / M\n- Piccola (da 21 a 50 utenti) - 380 EUR / M\n- Medio (da 51 a 250 utenti) - 700 EURO / M\n- Grande (da 251 a 1000 utenti) - 1.200 EURO / M\n- Corporation (1000+ utenti) - 6.000 EURO / M\n\nIl numero di ore di sostegno in YetiForce pacchetto di Sviluppo dipende dalla dimensione dell'organizzazione:\n- Micro [5h di supporto / M]\n- Piccolo [10h di supporto / M]\n- Medio [20h di supporto / M]\n- Grande [40h di supporto / M]\n- Corporation [200h di supporto / M]\n\nOgni e-mail con descrizione analizzati e il numero di ore è stimato. Se il preventivo viene accettato, l'attività è programmata.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "Nuvola sicura e ad alta performance", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "Installeremo il sistema sulle infrastrutture più efficienti che soddisfano le aspettative dei clienti più esigenti. Ci occuperemo della sicurezza, delle prestazioni e risolveremo qualsiasi problema di infrastruttura per la vostra comodità. Ogni utente riceverà da pochi a diversi GB per i dati aziendali, e il database verrà inserito su unità Intel Optane ad alte prestazioni. Oltre alla versione di produzione, configureremo la versione di prova del sistema e si riceverà pieno accesso ai backup dell'applicazione. \n Nota: lavoriamo dal lunedì al venerdì dalle 8 alle 4 del mattino (CEST) e abbiamo bisogno di un giorno lavorativo per elaborare il tuo ordine.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Hosting professionale per la tua azienda", diff --git a/install/languages/ja-JP/ConfReport.json b/install/languages/ja-JP/ConfReport.json index 29e38681a093..2a11969efa3f 100644 --- a/install/languages/ja-JP/ConfReport.json +++ b/install/languages/ja-JP/ConfReport.json @@ -77,7 +77,7 @@ "LBL_LATEST_PHP_VERSIONS_ARE": "最新の PHP バージョン: %s", "BTN_CHECK_LATEST_VERSION": "最新のPHPバージョンを確認してください", "BTN_SERVER_SPEED_TEST": "サーバー速度テスト", - "BTN_DB_INFO": "データベース情報", + "BTN_DB_INFO": "Database information", "LBL_SERVER_SPEED_TEST": "サーバー速度", "LBL_READ_TEST": "読み", "LBL_WRITE_TEST": "書き", diff --git a/install/languages/ja-JP/Settings/YetiForce.json b/install/languages/ja-JP/Settings/YetiForce.json index 661ba27d8c45..1f6920cadb52 100644 --- a/install/languages/ja-JP/Settings/YetiForce.json +++ b/install/languages/ja-JP/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "私たちは世界で最高のオープンシステムを作成し、あなたの将来に投資するのに役立ちます!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForceは100カ国以上で40,000社以上の企業にインストールされています。システムには150以上の無料機能が搭載されており、お客様はそれらを調整・変更することができます。\n\n私たちは、システムをダイナミックに開発したいと考えていますので、毎月任意の金額で私たちのプロジェクトをサポートしてください(1ユーロでも)。集まった資金は、GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues) でのサポートチケットや新機能の作成に使われ、システム内で無料で利用できるようになります。\n\nYetiForceのシステムはこれまでもこれからも無料で提供されてきましたが、今後どのように発展していくのか、世界最大級のシステムに対抗できるかどうかは皆さん次第です。私たちがすでに生み出してきたものは、誰もが利用できるユニークなシステムを作りたいという私たちの情熱と思いから生まれた結果なのです。", "LBL_SHOP_YETIFORCEHELP_INTRO": "システム管理者の基本的なサポート[メール、ビデオ、ドキュメント]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce は非常に強力なシステムであり、80以上のユーザーモジュール、80以上の設定パネル、30以上のツールを提供していますが、それらをすべて理解するには時間と豊富な経験が必要です。ベーシックサポートを購入することで、システムを開発している YetiForce チームの知識と経験を利用することができます。サポートは英語とポーランド語で提供されます。\n- ユーザーへのメールサポート\n- 管理者へのメールサポート\n- 無料アップデート(YetiForceクラウドまたはYetiForceホスティングをご購入いただいたお客様のみ\n\nYetiForce ヘルプの価格は組織の規模によって異なります。\n- マイクロ (1~20ユーザ) - 25 EUR / M\n- 小(21~50ユーザー) - 50 EUR / M\n- ミディアム(51~250ユーザー) - 100 EUR / M\n- 大規模(251~1000ユーザー) - 250 EUR / M\n- 法人(1000人以上のユーザー) - 1250ユーロ/月\n\nYetiForce ヘルプには、組織の規模に応じたサポート制限があります。\n- マイクロ [月5回のメール配信+年2回のシステムアップデート] の場合\n- 小規模【月に10通のメール+年間2回のシステムアップデート\n- ミディアム【月15通+システム更新4回/年\n- 大規模[月20通+年間6回のシステム更新]のメール対応\n- 株式会社【月30通のメール+年間12回のシステムアップデート\n\nメールでのサポートは基本的な問題にのみ適用されます。新しいモジュールの作成やプロセスの自動化など、高度なシステム機能のサポートが必要な場合や、開発者によってシステムが変更された場合は、YetiForce 開発パッケージのご購入をお勧めします。", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "YetiForce のブランディングをあなた自身のものに置き換え", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "インテグレーター", "LBL_SHOP_INTEGRATOR_INTRO": "お客様にYetiForceシステムを提供し、YetiForce インテグレーターパートナーのみに限定した特典を入手してください。", "LBL_SHOP_INTEGRATOR_DESC": "必要条件 \n\n 1. パートナーおよびパートナーのクライアントが使用する全ての YetiForce のインストールを正しく登録すること。\n 2. 2. GitHub アカウントを所有し、YetiForce リポジトリに積極的に参加していること。\n\n 特典 \n\n 1. システム操作、API、設定に関する高度な問題について、YetiForceチームからの直接サポート(チャット、電子メール、GitHub)。サポートはポーランド語または英語で提供されます。また、パートナーの顧客に対してパートナーが対応できない場合には、パートナーの顧客に対してサポートを提供することもあります。\n 2. 2. 大規模な実装のためにイエティフォースの従業員を雇用する可能性(追加料金で利用可能、リモートでの提供、ポーランド語と英語でのコミュニケーション)。\n 3. 3. 入札に協力する機会(顧客の声の共有、専門家の共通リスト、価格見積もりのサポート)。\n 4. インターネット上での \"YetiForce Integrator \"ロゴの使用可能性 \n 5. 公式ウェブサイト上のパートナーシップカタログおよびYetiForceシステム上でのプロモーション。\n 6. YetiForce の生産者や他のパートナーが市場で提供するすべての製品の 10% 割引(パートナー自身の顧客も対象)。プロジェクトの予約の可能性 - 20%の割引が適用される場合がありますが、最初にプロジェクトを予約したパートナーにのみ適用されます。\n 7. システム開発の方向性や新機能への影響。\n\n コスト \n\n 1. YetiForce Integrator パートナーシップの参加費は月々250ユーロです。\n\nwww. DeepL. com/Translator(無料版)で翻訳しました。", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "高度なシステムサポートと開発 [チャット、メール、電話]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "高度なシステムサポートでは、管理者だけでなく、システムのカスタマイズや新機能の追加なども含めた総合的なサポートが可能です。すべての作業は、システムに貢献している経験豊富な開発者によって調整されています。サポートは英語とポーランド語で提供されます。YetiForce の開発パッケージには以下のものが含まれています。\n- ユーザーへのメールサポート (無料)\n- 管理者へのメールサポート(無料\n- 技術・システムエラーの解決(パッケージ時間から減算\n- システムへの新機能追加(パッケージ時間からの減算\n- システム更新(パッケージ時間から差し引く\n- 研修(パッケージ時間から差し引く\n\nYetiForce開発価格は組織の規模によって異なります。\n- マイクロ (1~20ユーザ) - 200 EUR / M\n- 小 (21~50人) - 380 EUR / M\n- ミディアム(51~250ユーザー) - 700 EUR / M\n- ラージ(251~1000ユーザー) - 1.200 EUR / M\n- 株式会社(1000人以上のユーザー) - 6.000 EUR / M\n\nYetiForce開発パッケージのサポート時間数は組織規模によって異なります。\n- マイクロ [5時間サポート / M]\n- 小 [10h対応/M]\n- 中型【20hサポート/M\n- ラージ[40h対応/M]\n- コーポレーション【200h対応/M\n\n説明文付きのメールを1通1通分析し、時間数を見積もる。見積もりが受理されると、タスクがスケジュールされます。", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "高性能で安全なクラウド", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "私たちは、最も要求の厳しい顧客の期待に応える最も効率的なインフラストラクチャにシステムをインストールします。 私たちは安全性の世話をし、パフォーマンスとあなたの利便性のためのインフラストラクチャの問題を解決します。 各ユーザーは、企業データ用に数GBから数GBまで受信し、データベースは高性能のIntel Optaneドライブに配置されます。 本番バージョンに加えて、システムのテストバージョンを設定し、アプリケーションバックアップへのフルアクセスを受け取ります。 \n ご注意:月曜日から金曜日の午前8時から午後4時(CEST)まで、ご注文の処理には1営業日が必要です。", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "あなたの会社のためのプロのホスティング", diff --git a/install/languages/ko-KR/Settings/YetiForce.json b/install/languages/ko-KR/Settings/YetiForce.json index c871adea60ad..a2d28f9047ad 100644 --- a/install/languages/ko-KR/Settings/YetiForce.json +++ b/install/languages/ko-KR/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Help us create the best open system in the world and invest in your future!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce has been installed by 40,000+ companies in over 100 countries, it is completely free and our company develops it together with customers and thanks to paid add-ons. The system is equipped with over 150 free functionalities, which you can adjust and modify.\n\nWe want the system to develop dynamically, so support our project with any amount per month (even with 1 Euro). All collected funds will be used for support tickets on GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues) and to create new functionalities, which will be available for free in the system.\n\nThe YetiForce system has always been and will remain free of charge, but it depends on you how it will continue to develop and whether it will be able to compete with the largest systems in the world. What we have already produced results from our passion and desire to create a unique system that is accessible to everyone.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Basic support for system admins [email, video, documentation]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n- Free update (only for customers who have purchased YetiForce Cloud or YetiForce Hosting)\n\nYetiForce Help price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 25 EUR / M\n- Small (21 to 50 users) - 50 EUR / M\n- Medium (51 to 250 users) - 100 EUR / M\n- Large (251 to 1000 users) - 250 EUR / M\n- Corporation (1000+ users) - 1250 EUR / M\n\nYetiForce Help contains a support limit depending on the size of the organization:\n- Micro [5 emails per month + 2 system updates per year]\n- Small [10 emails per month + 2 system updates per year]\n- Medium [15 emails per month + 4 system updates per year]\n- Large [20 emails per month + 6 system updates per year]\n- Corporation [30 emails per month + 12 system updates per year]\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Replace YetiForce branding with your own", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Integrator", "LBL_SHOP_INTEGRATOR_INTRO": "Offer the YetiForce system to your clients and gain exclusive perks available only to YetiForce Integrator partners.", "LBL_SHOP_INTEGRATOR_DESC": "REQUIREMENTS \n\n 1. Correct registration of all YetiForce installations used by the Partner and the Partner’s clients. \n 2. Owning a GitHub account and active participation in the YetiForce repository. \n\n BENEFITS \n\n 1. Direct support (chat, e-mail, GitHub) from the YetiForce team in terms of advanced problems related to system operation, API and configuration. Support can be provided in Polish or English. Support may also be provided to the Partner’s customers in cases when the Partner will not be able to help its customers. \n 2. The possibility of hiring YetiForce’s employees for large implementations (service available for an additional charge, provided remotely, communication in Polish and English). \n 3. The opportunity to cooperate in tenders (shared customer testimonials, a common list of specialists, support in price estimates). \n 4. Ability to use the “YetiForce Integrator” logo on the Internet. \n 5. Promotion in the partnership catalog on the official website and in the YetiForce system. \n 6. 10% discount on all products offered in the marketplace by the YetiForce producer and other Partners (also for Partner’s own customers). The possibility of booking a project - the discount might be 20% but it will be granted to a Partner which books the project as first. \n 7. The impact on the direction of system development and new functionalities. \n\n COST \n\n 1. The monthly participation fee for the YetiForce Integrator partnership is 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Advanced system support and development [chat, email, phone]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nYetiForce Development price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 200 EUR / M\n- Small (21 to 50 users) - 380 EUR / M\n- Medium (51 to 250 users) - 700 EUR / M\n- Large (251 to 1000 users) - 1.200 EUR / M\n- Corporation (1000+ users) - 6.000 EUR / M\n\nThe number of support hours in YetiForce Development package depends on the size of the organization:\n- Micro [5h support / M]\n- Small [10h support / M]\n- Medium [20h support / M]\n- Large [40h support / M]\n- Corporation [200h support / M]\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "High-performance and safe cloud", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "We will install the system on the most efficient infrastructure that meets the expectations of the most demanding customers. We will take care of safety, performance and solve any infrastructure problem for your convenience. Each user will receive from a few to several GB for corporate data, and the database will be placed on high-performance Intel Optane drives. In addition to the production version, we will configure the testing version of the system and you will receive full access to the application backups. \n Note: We work from Monday to Friday 8am-4pm (CEST) and need one working day to process your order.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Professional hosting for your company", diff --git a/install/languages/my-MM/Settings/YetiForce.json b/install/languages/my-MM/Settings/YetiForce.json index c871adea60ad..a2d28f9047ad 100644 --- a/install/languages/my-MM/Settings/YetiForce.json +++ b/install/languages/my-MM/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Help us create the best open system in the world and invest in your future!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce has been installed by 40,000+ companies in over 100 countries, it is completely free and our company develops it together with customers and thanks to paid add-ons. The system is equipped with over 150 free functionalities, which you can adjust and modify.\n\nWe want the system to develop dynamically, so support our project with any amount per month (even with 1 Euro). All collected funds will be used for support tickets on GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues) and to create new functionalities, which will be available for free in the system.\n\nThe YetiForce system has always been and will remain free of charge, but it depends on you how it will continue to develop and whether it will be able to compete with the largest systems in the world. What we have already produced results from our passion and desire to create a unique system that is accessible to everyone.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Basic support for system admins [email, video, documentation]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n- Free update (only for customers who have purchased YetiForce Cloud or YetiForce Hosting)\n\nYetiForce Help price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 25 EUR / M\n- Small (21 to 50 users) - 50 EUR / M\n- Medium (51 to 250 users) - 100 EUR / M\n- Large (251 to 1000 users) - 250 EUR / M\n- Corporation (1000+ users) - 1250 EUR / M\n\nYetiForce Help contains a support limit depending on the size of the organization:\n- Micro [5 emails per month + 2 system updates per year]\n- Small [10 emails per month + 2 system updates per year]\n- Medium [15 emails per month + 4 system updates per year]\n- Large [20 emails per month + 6 system updates per year]\n- Corporation [30 emails per month + 12 system updates per year]\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Replace YetiForce branding with your own", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Integrator", "LBL_SHOP_INTEGRATOR_INTRO": "Offer the YetiForce system to your clients and gain exclusive perks available only to YetiForce Integrator partners.", "LBL_SHOP_INTEGRATOR_DESC": "REQUIREMENTS \n\n 1. Correct registration of all YetiForce installations used by the Partner and the Partner’s clients. \n 2. Owning a GitHub account and active participation in the YetiForce repository. \n\n BENEFITS \n\n 1. Direct support (chat, e-mail, GitHub) from the YetiForce team in terms of advanced problems related to system operation, API and configuration. Support can be provided in Polish or English. Support may also be provided to the Partner’s customers in cases when the Partner will not be able to help its customers. \n 2. The possibility of hiring YetiForce’s employees for large implementations (service available for an additional charge, provided remotely, communication in Polish and English). \n 3. The opportunity to cooperate in tenders (shared customer testimonials, a common list of specialists, support in price estimates). \n 4. Ability to use the “YetiForce Integrator” logo on the Internet. \n 5. Promotion in the partnership catalog on the official website and in the YetiForce system. \n 6. 10% discount on all products offered in the marketplace by the YetiForce producer and other Partners (also for Partner’s own customers). The possibility of booking a project - the discount might be 20% but it will be granted to a Partner which books the project as first. \n 7. The impact on the direction of system development and new functionalities. \n\n COST \n\n 1. The monthly participation fee for the YetiForce Integrator partnership is 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Advanced system support and development [chat, email, phone]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nYetiForce Development price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 200 EUR / M\n- Small (21 to 50 users) - 380 EUR / M\n- Medium (51 to 250 users) - 700 EUR / M\n- Large (251 to 1000 users) - 1.200 EUR / M\n- Corporation (1000+ users) - 6.000 EUR / M\n\nThe number of support hours in YetiForce Development package depends on the size of the organization:\n- Micro [5h support / M]\n- Small [10h support / M]\n- Medium [20h support / M]\n- Large [40h support / M]\n- Corporation [200h support / M]\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "High-performance and safe cloud", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "We will install the system on the most efficient infrastructure that meets the expectations of the most demanding customers. We will take care of safety, performance and solve any infrastructure problem for your convenience. Each user will receive from a few to several GB for corporate data, and the database will be placed on high-performance Intel Optane drives. In addition to the production version, we will configure the testing version of the system and you will receive full access to the application backups. \n Note: We work from Monday to Friday 8am-4pm (CEST) and need one working day to process your order.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Professional hosting for your company", diff --git a/install/languages/nl-BE/Settings/YetiForce.json b/install/languages/nl-BE/Settings/YetiForce.json index edfa1e9e71b3..58dd47d318b2 100644 --- a/install/languages/nl-BE/Settings/YetiForce.json +++ b/install/languages/nl-BE/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Help us create the best open system in the world and invest in your future!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce has been installed by 40,000+ companies in over 100 countries, it is completely free and our company develops it together with customers and thanks to paid add-ons. The system is equipped with over 150 free functionalities, which you can adjust and modify.\n\nWe want the system to develop dynamically, so support our project with any amount per month (even with 1 Euro). All collected funds will be used for support tickets on GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues) and to create new functionalities, which will be available for free in the system.\n\nThe YetiForce system has always been and will remain free of charge, but it depends on you how it will continue to develop and whether it will be able to compete with the largest systems in the world. What we have already produced results from our passion and desire to create a unique system that is accessible to everyone.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Basic support for system admins [email, video, documentation]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n- Free update (only for customers who have purchased YetiForce Cloud or YetiForce Hosting)\n\nYetiForce Help price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 25 EUR / M\n- Small (21 to 50 users) - 50 EUR / M\n- Medium (51 to 250 users) - 100 EUR / M\n- Large (251 to 1000 users) - 250 EUR / M\n- Corporation (1000+ users) - 1250 EUR / M\n\nYetiForce Help contains a support limit depending on the size of the organization:\n- Micro [5 emails per month + 2 system updates per year]\n- Small [10 emails per month + 2 system updates per year]\n- Medium [15 emails per month + 4 system updates per year]\n- Large [20 emails per month + 6 system updates per year]\n- Corporation [30 emails per month + 12 system updates per year]\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Replace YetiForce branding with your own", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Integrator", "LBL_SHOP_INTEGRATOR_INTRO": "Offer the YetiForce system to your clients and gain exclusive perks available only to YetiForce Integrator partners.", "LBL_SHOP_INTEGRATOR_DESC": "REQUIREMENTS \n\n 1. Correct registration of all YetiForce installations used by the Partner and the Partner’s clients. \n 2. Owning a GitHub account and active participation in the YetiForce repository. \n\n BENEFITS \n\n 1. Direct support (chat, e-mail, GitHub) from the YetiForce team in terms of advanced problems related to system operation, API and configuration. Support can be provided in Polish or English. Support may also be provided to the Partner’s customers in cases when the Partner will not be able to help its customers. \n 2. The possibility of hiring YetiForce’s employees for large implementations (service available for an additional charge, provided remotely, communication in Polish and English). \n 3. The opportunity to cooperate in tenders (shared customer testimonials, a common list of specialists, support in price estimates). \n 4. Ability to use the “YetiForce Integrator” logo on the Internet. \n 5. Promotion in the partnership catalog on the official website and in the YetiForce system. \n 6. 10% discount on all products offered in the marketplace by the YetiForce producer and other Partners (also for Partner’s own customers). The possibility of booking a project - the discount might be 20% but it will be granted to a Partner which books the project as first. \n 7. The impact on the direction of system development and new functionalities. \n\n COST \n\n 1. The monthly participation fee for the YetiForce Integrator partnership is 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Advanced system support and development [chat, email, phone]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nYetiForce Development price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 200 EUR / M\n- Small (21 to 50 users) - 380 EUR / M\n- Medium (51 to 250 users) - 700 EUR / M\n- Large (251 to 1000 users) - 1.200 EUR / M\n- Corporation (1000+ users) - 6.000 EUR / M\n\nThe number of support hours in YetiForce Development package depends on the size of the organization:\n- Micro [5h support / M]\n- Small [10h support / M]\n- Medium [20h support / M]\n- Large [40h support / M]\n- Corporation [200h support / M]\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "High-performance and safe cloud", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "We will install the system on the most efficient infrastructure that meets the expectations of the most demanding customers. We will take care of safety, performance and solve any infrastructure problem for your convenience. Each user will receive from a few to several GB for corporate data, and the database will be placed on high-performance Intel Optane drives. In addition to the production version, we will configure the testing version of the system and you will receive full access to the application backups. \n Note: We work from Monday to Friday 8am-4pm (CEST) and need one working day to process your order.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Professional hosting for your company", diff --git a/install/languages/nl-NL/Settings/YetiForce.json b/install/languages/nl-NL/Settings/YetiForce.json index edfa1e9e71b3..58dd47d318b2 100644 --- a/install/languages/nl-NL/Settings/YetiForce.json +++ b/install/languages/nl-NL/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Help us create the best open system in the world and invest in your future!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce has been installed by 40,000+ companies in over 100 countries, it is completely free and our company develops it together with customers and thanks to paid add-ons. The system is equipped with over 150 free functionalities, which you can adjust and modify.\n\nWe want the system to develop dynamically, so support our project with any amount per month (even with 1 Euro). All collected funds will be used for support tickets on GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues) and to create new functionalities, which will be available for free in the system.\n\nThe YetiForce system has always been and will remain free of charge, but it depends on you how it will continue to develop and whether it will be able to compete with the largest systems in the world. What we have already produced results from our passion and desire to create a unique system that is accessible to everyone.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Basic support for system admins [email, video, documentation]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n- Free update (only for customers who have purchased YetiForce Cloud or YetiForce Hosting)\n\nYetiForce Help price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 25 EUR / M\n- Small (21 to 50 users) - 50 EUR / M\n- Medium (51 to 250 users) - 100 EUR / M\n- Large (251 to 1000 users) - 250 EUR / M\n- Corporation (1000+ users) - 1250 EUR / M\n\nYetiForce Help contains a support limit depending on the size of the organization:\n- Micro [5 emails per month + 2 system updates per year]\n- Small [10 emails per month + 2 system updates per year]\n- Medium [15 emails per month + 4 system updates per year]\n- Large [20 emails per month + 6 system updates per year]\n- Corporation [30 emails per month + 12 system updates per year]\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Replace YetiForce branding with your own", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Integrator", "LBL_SHOP_INTEGRATOR_INTRO": "Offer the YetiForce system to your clients and gain exclusive perks available only to YetiForce Integrator partners.", "LBL_SHOP_INTEGRATOR_DESC": "REQUIREMENTS \n\n 1. Correct registration of all YetiForce installations used by the Partner and the Partner’s clients. \n 2. Owning a GitHub account and active participation in the YetiForce repository. \n\n BENEFITS \n\n 1. Direct support (chat, e-mail, GitHub) from the YetiForce team in terms of advanced problems related to system operation, API and configuration. Support can be provided in Polish or English. Support may also be provided to the Partner’s customers in cases when the Partner will not be able to help its customers. \n 2. The possibility of hiring YetiForce’s employees for large implementations (service available for an additional charge, provided remotely, communication in Polish and English). \n 3. The opportunity to cooperate in tenders (shared customer testimonials, a common list of specialists, support in price estimates). \n 4. Ability to use the “YetiForce Integrator” logo on the Internet. \n 5. Promotion in the partnership catalog on the official website and in the YetiForce system. \n 6. 10% discount on all products offered in the marketplace by the YetiForce producer and other Partners (also for Partner’s own customers). The possibility of booking a project - the discount might be 20% but it will be granted to a Partner which books the project as first. \n 7. The impact on the direction of system development and new functionalities. \n\n COST \n\n 1. The monthly participation fee for the YetiForce Integrator partnership is 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Advanced system support and development [chat, email, phone]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nYetiForce Development price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 200 EUR / M\n- Small (21 to 50 users) - 380 EUR / M\n- Medium (51 to 250 users) - 700 EUR / M\n- Large (251 to 1000 users) - 1.200 EUR / M\n- Corporation (1000+ users) - 6.000 EUR / M\n\nThe number of support hours in YetiForce Development package depends on the size of the organization:\n- Micro [5h support / M]\n- Small [10h support / M]\n- Medium [20h support / M]\n- Large [40h support / M]\n- Corporation [200h support / M]\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "High-performance and safe cloud", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "We will install the system on the most efficient infrastructure that meets the expectations of the most demanding customers. We will take care of safety, performance and solve any infrastructure problem for your convenience. Each user will receive from a few to several GB for corporate data, and the database will be placed on high-performance Intel Optane drives. In addition to the production version, we will configure the testing version of the system and you will receive full access to the application backups. \n Note: We work from Monday to Friday 8am-4pm (CEST) and need one working day to process your order.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Professional hosting for your company", diff --git a/install/languages/no-NO/Settings/YetiForce.json b/install/languages/no-NO/Settings/YetiForce.json index 348334f884fa..c9bef968641a 100644 --- a/install/languages/no-NO/Settings/YetiForce.json +++ b/install/languages/no-NO/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Help us create the best open system in the world and invest in your future!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce has been installed by 40,000+ companies in over 100 countries, it is completely free and our company develops it together with customers and thanks to paid add-ons. The system is equipped with over 150 free functionalities, which you can adjust and modify.\n\nWe want the system to develop dynamically, so support our project with any amount per month (even with 1 Euro). All collected funds will be used for support tickets on GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues) and to create new functionalities, which will be available for free in the system.\n\nThe YetiForce system has always been and will remain free of charge, but it depends on you how it will continue to develop and whether it will be able to compete with the largest systems in the world. What we have already produced results from our passion and desire to create a unique system that is accessible to everyone.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Basic support for system admins [email, video, documentation]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n- Free update (only for customers who have purchased YetiForce Cloud or YetiForce Hosting)\n\nYetiForce Help price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 25 EUR / M\n- Small (21 to 50 users) - 50 EUR / M\n- Medium (51 to 250 users) - 100 EUR / M\n- Large (251 to 1000 users) - 250 EUR / M\n- Corporation (1000+ users) - 1250 EUR / M\n\nYetiForce Help contains a support limit depending on the size of the organization:\n- Micro [5 emails per month + 2 system updates per year]\n- Small [10 emails per month + 2 system updates per year]\n- Medium [15 emails per month + 4 system updates per year]\n- Large [20 emails per month + 6 system updates per year]\n- Corporation [30 emails per month + 12 system updates per year]\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Replace YetiForce branding with your own", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Integrator", "LBL_SHOP_INTEGRATOR_INTRO": "Offer the YetiForce system to your clients and gain exclusive perks available only to YetiForce Integrator partners.", "LBL_SHOP_INTEGRATOR_DESC": "REQUIREMENTS \n\n 1. Correct registration of all YetiForce installations used by the Partner and the Partner’s clients. \n 2. Owning a GitHub account and active participation in the YetiForce repository. \n\n BENEFITS \n\n 1. Direct support (chat, e-mail, GitHub) from the YetiForce team in terms of advanced problems related to system operation, API and configuration. Support can be provided in Polish or English. Support may also be provided to the Partner’s customers in cases when the Partner will not be able to help its customers. \n 2. The possibility of hiring YetiForce’s employees for large implementations (service available for an additional charge, provided remotely, communication in Polish and English). \n 3. The opportunity to cooperate in tenders (shared customer testimonials, a common list of specialists, support in price estimates). \n 4. Ability to use the “YetiForce Integrator” logo on the Internet. \n 5. Promotion in the partnership catalog on the official website and in the YetiForce system. \n 6. 10% discount on all products offered in the marketplace by the YetiForce producer and other Partners (also for Partner’s own customers). The possibility of booking a project - the discount might be 20% but it will be granted to a Partner which books the project as first. \n 7. The impact on the direction of system development and new functionalities. \n\n COST \n\n 1. The monthly participation fee for the YetiForce Integrator partnership is 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Advanced system support and development [chat, email, phone]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nYetiForce Development price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 200 EUR / M\n- Small (21 to 50 users) - 380 EUR / M\n- Medium (51 to 250 users) - 700 EUR / M\n- Large (251 to 1000 users) - 1.200 EUR / M\n- Corporation (1000+ users) - 6.000 EUR / M\n\nThe number of support hours in YetiForce Development package depends on the size of the organization:\n- Micro [5h support / M]\n- Small [10h support / M]\n- Medium [20h support / M]\n- Large [40h support / M]\n- Corporation [200h support / M]\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "High-performance and safe cloud", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "We will install the system on the most efficient infrastructure that meets the expectations of the most demanding customers. We will take care of safety, performance and solve any infrastructure problem for your convenience. Each user will receive from a few to several GB for corporate data, and the database will be placed on high-performance Intel Optane drives. In addition to the production version, we will configure the testing version of the system and you will receive full access to the application backups. \n Note: We work from Monday to Friday 8am-4pm (CEST) and need one working day to process your order.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Professional hosting for your company", diff --git a/install/languages/pl-PL/Settings/YetiForce.json b/install/languages/pl-PL/Settings/YetiForce.json index 51b8fae6443d..a92fad773f5d 100644 --- a/install/languages/pl-PL/Settings/YetiForce.json +++ b/install/languages/pl-PL/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Twórz razem z nami najlepszy otwarty system na świecie, zainwestuj w swoją przyszłość!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "System YetiForce został zainstalowany przez 40.000+ firm w ponad 100 krajach, jest całkowicie bezpłatny a nasza firma rozwija go razem z Klientami i za pomocą płatnych dodatków. Bezpłatnie w systemie masz do dyspozycji ponad 150 funkcjonalności, które możesz dowolnie dopasować i zmieniać. \n\nChcemy, aby system rozwijał się dynamicznie, dlatego wesprzyj nasz projekt dowolną kwotą miesięcznie [nawet kwotą 1 euro]. Wszystkie zebrane środki, będą przeznaczane na wsparcie użytkowników na platformie GitHub [https://github.com/YetiForceCompany/YetiForceCRM/issues] oraz na tworzenie nowych funkcjonalności, które będą następnie dostępne bezpłatnie w systemie.\n\nSystem YetiForce był, jest i będzie bezpłatny, ale to od Was zależy jak szybko będzie się rozwijał i czy będzie mógł konkurować z największymi systemami na świecie. To co tworzymy wynika z naszej pasji i chęci tworzenia wyjątkowego systemu dostępnego dla wszystkich.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Podstawowe wsparcie dla administratora systemu (email, video, dokumentacja)", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce to bardzo rozbudowany system, zawiera 80+ modułów użytkownika, 80+ paneli konfiguracyjnych, 30+ narzędzi a zrozumienie ich wszystkich wymaga czasu i dużego doświadczenia. Kupując podstawowe wsparcie, uzyskujesz dostęp do wiedzy i doświadczenia zespołu, który tworzy system. W chwili obecnej, wsparcie jest udzielane w języku angielskim oraz języku polskim.\n- Wsparcie email na poziomie użytkownika\n- Wsparcie email na poziomie administratora\n- Bezpłatna aktualizacja [tylko dla klientów, którzy wykupili usługi YetiForce Cloud lub YetiForce Hosting]\n\nYetiForce Help cenowo różni się w zależności od wielkości organizacji:\n- Micro (1 do 20 użytkowników) - 25 EUR / M\n- Small (21 do 50 użytkowników) - 50 EUR / M\n- Medium (51 do 250 użytkowników) - 100 EUR / M\n- Large (251 do 1000 użytkowników) - 250 EUR / M\n- Corporation (1000+ użytkowników) - 1250 EUR / M\n\nYetiForce Help zawiera limit wsparcia w zależności od wielkości organizacji:\n- Micro [5 zgłoszeń email na miesiąc + 2 aktualizacje systemu rocznie]\n- Small [10 zgłoszeń email na miesiąc + 2 aktualizacje systemu rocznie]\n- Medium [15 zgłoszeń email na miesiąc + 4 aktualizacji systemu rocznie]\n- Large [20 zgłoszeń email na miesiąc + 6 aktualizacji systemu rocznie]\n- Corporation [30 zgłoszeń email na miesiąc + 12 aktualizacji systemu rocznie]\n\nZgłoszenia email dotyczą tylko podstawowego wsparcia, jeżeli potrzebujesz wsparcia dotyczącego zaawansowanych możliwości systemu, np. tworzenie nowych modułów, automatyzacja procesów - lub system był modyfikowany przez programistę wówczas zalecamy wykupienie pakietu YetiForce Development.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce jest bardzo potężnym systemem, który dostarcza ponad 80 modułów użytkownika, ponad 80 paneli konfiguracyjnych, ponad 30 narzędzi i zrozumienie ich wszystkich wymaga czasu i dużego doświadczenia. Kupując podstawowe wsparcie, uzyskujesz dostęp do wiedzy i doświadczenia zespołu YetiForce, który rozwija system. Wsparcie udzielane jest w języku angielskim i polskim.\n- Wsparcie mailowe dla użytkowników\n- Wsparcie mailowe dla administratorów\n\nWsparcie mailowe dotyczy tylko podstawowych problemów. Jeśli Twoja firma wymaga wsparcia w zakresie zaawansowanych funkcji systemowych, np. tworzenia nowych modułów, automatyzacji procesów lub system został zmodyfikowany przez programistę, zalecamy zakup pakietu YetiForce Development.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Zamień branding YetiForce na własny", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Spersonalizuj branding YetiForce CRM, zmieniając wiele danych wyświetlanych w systemie. Dodaj istotne informacje do generowanych dokumentów, wstaw dane swojej firmy do stopki lub ustaw własne linki do profili w mediach społecznościowych\n\nUsługa Disable Branding pozwala na usunięcie ze stopki systemu linków prowadzących do profili mediów społecznościowych YetiForce i zastąpienie ich odnośnikami do profili na mediach społecznościowych Twojej firmy. Pozwoli to jeszcze bardziej spersonalizować wygląd systemu YetiForce, tak, by użytkownicy aplikacji nie widzieli zbędnych informacji w stopce. Dzięki tej usłudze wyłączysz również stopkę producenta we wszystkich mailach wysyłanych przez system oraz wydrukach PDF generowanych przez system. \n\nUwaga: Usługa ta nie wyłącza wszystkich odnośników do brandingu YetiForce, które znajdują się w systemie. Przed zakupem prosimy zapoznać się z FAQ na dole strony.", "LBL_SHOP_INTEGRATOR": "Integrator", "LBL_SHOP_INTEGRATOR_INTRO": "Zaoferuj system YetiForce swoim klientom i zyskaj ekskluzywne korzyści dostępne tylko dla partnerów YetiForce Integrator.", "LBL_SHOP_INTEGRATOR_DESC": "WYMAGANIA\n1. Poprawna rejestracja instalacji systemu YetiForce używanych przez Partnera oraz klientów Partnera.\n2. Posiadanie konta na platformie GitHub oraz aktywność w repozytorium YetiForce.\n\nKORZYŚCI\n1. Bezpośrednie wsparcie merytoryczne (czat, email, GitHub) od zespołu YetiForce w zakresie zaawansowanych problemów dotyczących działania systemu, API i konfiguracji. Wsparcie może być udzielane w języku PL lub EN. Wsparcie może być świadczone również na rzecz Klientów Partnera w sytuacji w której Partner nie będzie wstanie pomóc klientowi.\n2. Możliwość korzystania z pracowników producenta YetiForce przy dużych wdrożeniach (usługa dodatkowo płatna, praca wykonywana zdalnie, komunikacja w języku PL lub EN).\n3. Możliwość współpracy przy przetargach (wspólne referencje klientów, wspólna lista specjalistów, wsparcie przy wycenie).\n4. Możliwość posługiwania się logiem partnera “YetiForce Integrator” w Internecie.\n5. Promowanie w katalogu partnerów na stronie www i w systemie YetiForce.\n6. 10% rabatu na wszystkie usługi i produkty oferowane przez producenta YetiForce (również dla swoich klientów). Możliwość rezerwacji projektu, wówczas rabat wynosi 20% - rabat ten może otrzymać tylko pierwszy partner, który zarezerwuje projekt.\n7. Wpływ na kierunek rozwoju systemu oraz na nowe funkcjonalności.\n\nKOSZTY\n1. Miesięczna opłata za udział w partnerstwie YetiForce Integrator wynosi 250€.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Zaawansowane wsparcie systemu i jego rozbudowa (chat, email, telefon)", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Zaawansowane wsparcie systemu, umożliwia kompleksowe wsparcie nie tylko dla administratora, ale również pozwala na dowolną rozbudowę i zmiany w systemie. Całość prac jest koordynowana przez doświadczonych programistów, którzy współtworzą system. W chwili obecnej, wsparcie jest udzielane w języku angielskim oraz języku polskim. Zakres wsparcia obejmuje m.in.: \n- Wsparcie email na poziomie użytkownika (bezpłatne)\n- Wsparcie email na poziomie administratora (bezpłatne)\n- Rozwiązywanie błędów technicznych i systemowych (pobierane z puli godzin)\n- Rozbudowa systemu o nowe funkcjonalności (pobierane z puli godzin)\n- Aktualizacja systemu (pobierane z puli godzin)\n- Szkolenie (pobierane z puli godzin)\n\nYetiForce Development cenowo różni się w zależności od wielkości organizacji:\n- Micro (1 do 20 użytkowników) - 200 EUR / M\n- Small (21 do 50 użytkowników) - 380 EUR / M\n- Medium (51 do 250 użytkowników) - 700 EUR / M\n- Large (251 do 1000 użytkowników) - 1.200 EUR / M\n- Corporation (1000+ użytkowników) - 6.000 EUR / M\n\nYetiForce Development zawiera pulę godzin w zależności od wielkości organizacji:\n- Micro [5h wsparcia / M]\n- Small [10h wsparcia / M]\n- Medium [20h wsparcia / M]\n- Large [40h wsparcia / M]\n- Corporation [200h wsparcia / M]\n\nKażde zgłoszenie email jest wyceniane oraz jest określany czas realizacji, po akceptacji wyceny zadanie jest realizowane.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Zaawansowane wsparcie systemu pozwala na wszechstronne wsparcie dla administratorów, ale obejmuje również dostosowywanie i dodawanie nowych funkcji do systemu. Wszystkie prace są koordynowane przez doświadczonych deweloperów, którzy współtworzą system. Wsparcie jest udzielane w języku angielskim i polskim. Pakiet YetiForce Development zawiera:\n- Wsparcie e-mail dla użytkowników (darmowe)\n- Wsparcie e-mail dla administratorów (darmowe)\n- Rozwiązywanie błędów technicznych i systemowych (odejmowane od godzin pakietu)\n- Dodawanie nowych funkcjonalności do systemu (odejmowane od godzin pakietu)\n- Aktualizacje systemu (odejmowane od godzin pakietu)\n- Szkolenie (odejmowane od godzin pakietu)\n\nKażdy e-mail z opisem jest analizowany i szacuje się liczbę godzin. Jeśli oferta zostanie zaakceptowana, zadanie zostanie zaplanowane.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "Superwydajna i bezpieczna chmura", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "Zainstalujemy system na najbardziej wydajnej infrastrukturze idealnie dopasowanej dla najbardziej wymagających klientów. Zadbamy o bezpieczeństwo, wydajność i rozwiążemy każdy problem z infrastrukturą dla twojej wygody. Każdy użytkownik otrzyma od kilku do kilkunastu GB na dane firmowe, a bazę danych umieścimy na superwydajnych dyskach Intel Optane. Oprócz wersji produkcyjnej, skonfigurujemy wersję testową systemu oraz otrzymasz pełen dostęp do kopii zapasowych aplikacji. \nUwaga: Pracujemy od poniedziałku do piątku w godzinach od 08:00 do 16:00 i potrzebujemy około jednego dnia roboczego na realizację zamówienia.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Profesjonalny hosting dla Twojej firmy", diff --git a/install/languages/pt-BR/Settings/YetiForce.json b/install/languages/pt-BR/Settings/YetiForce.json index f32c9537be70..810687a5bf72 100644 --- a/install/languages/pt-BR/Settings/YetiForce.json +++ b/install/languages/pt-BR/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Help us create the best open system in the world and invest in your future!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce has been installed by 40,000+ companies in over 100 countries, it is completely free and our company develops it together with customers and thanks to paid add-ons. The system is equipped with over 150 free functionalities, which you can adjust and modify.\n\nWe want the system to develop dynamically, so support our project with any amount per month (even with 1 Euro). All collected funds will be used for support tickets on GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues) and to create new functionalities, which will be available for free in the system.\n\nThe YetiForce system has always been and will remain free of charge, but it depends on you how it will continue to develop and whether it will be able to compete with the largest systems in the world. What we have already produced results from our passion and desire to create a unique system that is accessible to everyone.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Basic support for system admins [email, video, documentation]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n- Free update (only for customers who have purchased YetiForce Cloud or YetiForce Hosting)\n\nYetiForce Help price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 25 EUR / M\n- Small (21 to 50 users) - 50 EUR / M\n- Medium (51 to 250 users) - 100 EUR / M\n- Large (251 to 1000 users) - 250 EUR / M\n- Corporation (1000+ users) - 1250 EUR / M\n\nYetiForce Help contains a support limit depending on the size of the organization:\n- Micro [5 emails per month + 2 system updates per year]\n- Small [10 emails per month + 2 system updates per year]\n- Medium [15 emails per month + 4 system updates per year]\n- Large [20 emails per month + 6 system updates per year]\n- Corporation [30 emails per month + 12 system updates per year]\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Replace YetiForce branding with your own", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Integrator", "LBL_SHOP_INTEGRATOR_INTRO": "Offer the YetiForce system to your clients and gain exclusive perks available only to YetiForce Integrator partners.", "LBL_SHOP_INTEGRATOR_DESC": "REQUIREMENTS \n\n 1. Correct registration of all YetiForce installations used by the Partner and the Partner’s clients. \n 2. Owning a GitHub account and active participation in the YetiForce repository. \n\n BENEFITS \n\n 1. Direct support (chat, e-mail, GitHub) from the YetiForce team in terms of advanced problems related to system operation, API and configuration. Support can be provided in Polish or English. Support may also be provided to the Partner’s customers in cases when the Partner will not be able to help its customers. \n 2. The possibility of hiring YetiForce’s employees for large implementations (service available for an additional charge, provided remotely, communication in Polish and English). \n 3. The opportunity to cooperate in tenders (shared customer testimonials, a common list of specialists, support in price estimates). \n 4. Ability to use the “YetiForce Integrator” logo on the Internet. \n 5. Promotion in the partnership catalog on the official website and in the YetiForce system. \n 6. 10% discount on all products offered in the marketplace by the YetiForce producer and other Partners (also for Partner’s own customers). The possibility of booking a project - the discount might be 20% but it will be granted to a Partner which books the project as first. \n 7. The impact on the direction of system development and new functionalities. \n\n COST \n\n 1. The monthly participation fee for the YetiForce Integrator partnership is 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Advanced system support and development [chat, email, phone]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nYetiForce Development price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 200 EUR / M\n- Small (21 to 50 users) - 380 EUR / M\n- Medium (51 to 250 users) - 700 EUR / M\n- Large (251 to 1000 users) - 1.200 EUR / M\n- Corporation (1000+ users) - 6.000 EUR / M\n\nThe number of support hours in YetiForce Development package depends on the size of the organization:\n- Micro [5h support / M]\n- Small [10h support / M]\n- Medium [20h support / M]\n- Large [40h support / M]\n- Corporation [200h support / M]\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "High-performance and safe cloud", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "We will install the system on the most efficient infrastructure that meets the expectations of the most demanding customers. We will take care of safety, performance and solve any infrastructure problem for your convenience. Each user will receive from a few to several GB for corporate data, and the database will be placed on high-performance Intel Optane drives. In addition to the production version, we will configure the testing version of the system and you will receive full access to the application backups. \n Note: We work from Monday to Friday 8am-4pm (CEST) and need one working day to process your order.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Professional hosting for your company", diff --git a/install/languages/pt-PT/ConfReport.json b/install/languages/pt-PT/ConfReport.json index ae04d00755f6..b871eaa8393a 100644 --- a/install/languages/pt-PT/ConfReport.json +++ b/install/languages/pt-PT/ConfReport.json @@ -77,7 +77,7 @@ "LBL_LATEST_PHP_VERSIONS_ARE": "Versões mais recentes do PHP: %s", "BTN_CHECK_LATEST_VERSION": "Check the latest PHP version", "BTN_SERVER_SPEED_TEST": "Server speed test", - "BTN_DB_INFO": "Database information", + "BTN_DB_INFO": "Informação da Base de Dados", "LBL_SERVER_SPEED_TEST": "Server speed", "LBL_READ_TEST": "Read", "LBL_WRITE_TEST": "Write", diff --git a/install/languages/pt-PT/Settings/YetiForce.json b/install/languages/pt-PT/Settings/YetiForce.json index 660eaa15dca6..0486dc7429bd 100644 --- a/install/languages/pt-PT/Settings/YetiForce.json +++ b/install/languages/pt-PT/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Help us create the best open system in the world and invest in your future!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce has been installed by 40,000+ companies in over 100 countries, it is completely free and our company develops it together with customers and thanks to paid add-ons. The system is equipped with over 150 free functionalities, which you can adjust and modify.\n\nWe want the system to develop dynamically, so support our project with any amount per month (even with 1 Euro). All collected funds will be used for support tickets on GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues) and to create new functionalities, which will be available for free in the system.\n\nThe YetiForce system has always been and will remain free of charge, but it depends on you how it will continue to develop and whether it will be able to compete with the largest systems in the world. What we have already produced results from our passion and desire to create a unique system that is accessible to everyone.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Basic support for system admins [email, video, documentation]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n- Free update (only for customers who have purchased YetiForce Cloud or YetiForce Hosting)\n\nYetiForce Help price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 25 EUR / M\n- Small (21 to 50 users) - 50 EUR / M\n- Medium (51 to 250 users) - 100 EUR / M\n- Large (251 to 1000 users) - 250 EUR / M\n- Corporation (1000+ users) - 1250 EUR / M\n\nYetiForce Help contains a support limit depending on the size of the organization:\n- Micro [5 emails per month + 2 system updates per year]\n- Small [10 emails per month + 2 system updates per year]\n- Medium [15 emails per month + 4 system updates per year]\n- Large [20 emails per month + 6 system updates per year]\n- Corporation [30 emails per month + 12 system updates per year]\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Replace YetiForce branding with your own", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Integrator", "LBL_SHOP_INTEGRATOR_INTRO": "Offer the YetiForce system to your clients and gain exclusive perks available only to YetiForce Integrator partners.", "LBL_SHOP_INTEGRATOR_DESC": "REQUIREMENTS \n\n 1. Correct registration of all YetiForce installations used by the Partner and the Partner’s clients. \n 2. Owning a GitHub account and active participation in the YetiForce repository. \n\n BENEFITS \n\n 1. Direct support (chat, e-mail, GitHub) from the YetiForce team in terms of advanced problems related to system operation, API and configuration. Support can be provided in Polish or English. Support may also be provided to the Partner’s customers in cases when the Partner will not be able to help its customers. \n 2. The possibility of hiring YetiForce’s employees for large implementations (service available for an additional charge, provided remotely, communication in Polish and English). \n 3. The opportunity to cooperate in tenders (shared customer testimonials, a common list of specialists, support in price estimates). \n 4. Ability to use the “YetiForce Integrator” logo on the Internet. \n 5. Promotion in the partnership catalog on the official website and in the YetiForce system. \n 6. 10% discount on all products offered in the marketplace by the YetiForce producer and other Partners (also for Partner’s own customers). The possibility of booking a project - the discount might be 20% but it will be granted to a Partner which books the project as first. \n 7. The impact on the direction of system development and new functionalities. \n\n COST \n\n 1. The monthly participation fee for the YetiForce Integrator partnership is 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Advanced system support and development [chat, email, phone]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nYetiForce Development price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 200 EUR / M\n- Small (21 to 50 users) - 380 EUR / M\n- Medium (51 to 250 users) - 700 EUR / M\n- Large (251 to 1000 users) - 1.200 EUR / M\n- Corporation (1000+ users) - 6.000 EUR / M\n\nThe number of support hours in YetiForce Development package depends on the size of the organization:\n- Micro [5h support / M]\n- Small [10h support / M]\n- Medium [20h support / M]\n- Large [40h support / M]\n- Corporation [200h support / M]\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "High-performance and safe cloud", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "We will install the system on the most efficient infrastructure that meets the expectations of the most demanding customers. We will take care of safety, performance and solve any infrastructure problem for your convenience. Each user will receive from a few to several GB for corporate data, and the database will be placed on high-performance Intel Optane drives. In addition to the production version, we will configure the testing version of the system and you will receive full access to the application backups. \n Note: We work from Monday to Friday 8am-4pm (CEST) and need one working day to process your order.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Professional hosting for your company", diff --git a/install/languages/ro-RO/ConfReport.json b/install/languages/ro-RO/ConfReport.json index 73c3231625b3..a08374036795 100644 --- a/install/languages/ro-RO/ConfReport.json +++ b/install/languages/ro-RO/ConfReport.json @@ -77,7 +77,7 @@ "LBL_LATEST_PHP_VERSIONS_ARE": "Latest PHP versions: %s", "BTN_CHECK_LATEST_VERSION": "Check the latest PHP version", "BTN_SERVER_SPEED_TEST": "Test viteza server", - "BTN_DB_INFO": "Informatii baza de date", + "BTN_DB_INFO": "Database information", "LBL_SERVER_SPEED_TEST": "Server speed", "LBL_READ_TEST": "Read", "LBL_WRITE_TEST": "Write", diff --git a/install/languages/ro-RO/Settings/YetiForce.json b/install/languages/ro-RO/Settings/YetiForce.json index c871adea60ad..a2d28f9047ad 100644 --- a/install/languages/ro-RO/Settings/YetiForce.json +++ b/install/languages/ro-RO/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Help us create the best open system in the world and invest in your future!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce has been installed by 40,000+ companies in over 100 countries, it is completely free and our company develops it together with customers and thanks to paid add-ons. The system is equipped with over 150 free functionalities, which you can adjust and modify.\n\nWe want the system to develop dynamically, so support our project with any amount per month (even with 1 Euro). All collected funds will be used for support tickets on GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues) and to create new functionalities, which will be available for free in the system.\n\nThe YetiForce system has always been and will remain free of charge, but it depends on you how it will continue to develop and whether it will be able to compete with the largest systems in the world. What we have already produced results from our passion and desire to create a unique system that is accessible to everyone.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Basic support for system admins [email, video, documentation]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n- Free update (only for customers who have purchased YetiForce Cloud or YetiForce Hosting)\n\nYetiForce Help price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 25 EUR / M\n- Small (21 to 50 users) - 50 EUR / M\n- Medium (51 to 250 users) - 100 EUR / M\n- Large (251 to 1000 users) - 250 EUR / M\n- Corporation (1000+ users) - 1250 EUR / M\n\nYetiForce Help contains a support limit depending on the size of the organization:\n- Micro [5 emails per month + 2 system updates per year]\n- Small [10 emails per month + 2 system updates per year]\n- Medium [15 emails per month + 4 system updates per year]\n- Large [20 emails per month + 6 system updates per year]\n- Corporation [30 emails per month + 12 system updates per year]\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Replace YetiForce branding with your own", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Integrator", "LBL_SHOP_INTEGRATOR_INTRO": "Offer the YetiForce system to your clients and gain exclusive perks available only to YetiForce Integrator partners.", "LBL_SHOP_INTEGRATOR_DESC": "REQUIREMENTS \n\n 1. Correct registration of all YetiForce installations used by the Partner and the Partner’s clients. \n 2. Owning a GitHub account and active participation in the YetiForce repository. \n\n BENEFITS \n\n 1. Direct support (chat, e-mail, GitHub) from the YetiForce team in terms of advanced problems related to system operation, API and configuration. Support can be provided in Polish or English. Support may also be provided to the Partner’s customers in cases when the Partner will not be able to help its customers. \n 2. The possibility of hiring YetiForce’s employees for large implementations (service available for an additional charge, provided remotely, communication in Polish and English). \n 3. The opportunity to cooperate in tenders (shared customer testimonials, a common list of specialists, support in price estimates). \n 4. Ability to use the “YetiForce Integrator” logo on the Internet. \n 5. Promotion in the partnership catalog on the official website and in the YetiForce system. \n 6. 10% discount on all products offered in the marketplace by the YetiForce producer and other Partners (also for Partner’s own customers). The possibility of booking a project - the discount might be 20% but it will be granted to a Partner which books the project as first. \n 7. The impact on the direction of system development and new functionalities. \n\n COST \n\n 1. The monthly participation fee for the YetiForce Integrator partnership is 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Advanced system support and development [chat, email, phone]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nYetiForce Development price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 200 EUR / M\n- Small (21 to 50 users) - 380 EUR / M\n- Medium (51 to 250 users) - 700 EUR / M\n- Large (251 to 1000 users) - 1.200 EUR / M\n- Corporation (1000+ users) - 6.000 EUR / M\n\nThe number of support hours in YetiForce Development package depends on the size of the organization:\n- Micro [5h support / M]\n- Small [10h support / M]\n- Medium [20h support / M]\n- Large [40h support / M]\n- Corporation [200h support / M]\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "High-performance and safe cloud", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "We will install the system on the most efficient infrastructure that meets the expectations of the most demanding customers. We will take care of safety, performance and solve any infrastructure problem for your convenience. Each user will receive from a few to several GB for corporate data, and the database will be placed on high-performance Intel Optane drives. In addition to the production version, we will configure the testing version of the system and you will receive full access to the application backups. \n Note: We work from Monday to Friday 8am-4pm (CEST) and need one working day to process your order.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Professional hosting for your company", diff --git a/install/languages/ru-RU/ConfReport.json b/install/languages/ru-RU/ConfReport.json index 7667674559bc..80872f54cc0c 100644 --- a/install/languages/ru-RU/ConfReport.json +++ b/install/languages/ru-RU/ConfReport.json @@ -77,7 +77,7 @@ "LBL_LATEST_PHP_VERSIONS_ARE": "Последние версии PHP: %s", "BTN_CHECK_LATEST_VERSION": "Проверьте последнюю версию PHP", "BTN_SERVER_SPEED_TEST": "Тест скорости сервера", - "BTN_DB_INFO": "Информация о базе данных", + "BTN_DB_INFO": "Database information", "LBL_SERVER_SPEED_TEST": "Скорость сервера", "LBL_READ_TEST": "Чтение", "LBL_WRITE_TEST": "Запись", diff --git a/install/languages/ru-RU/Settings/YetiForce.json b/install/languages/ru-RU/Settings/YetiForce.json index 23eb439d6469..55a0fc8dc75c 100644 --- a/install/languages/ru-RU/Settings/YetiForce.json +++ b/install/languages/ru-RU/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Help us create the best open system in the world and invest in your future!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce has been installed by 40,000+ companies in over 100 countries, it is completely free and our company develops it together with customers and thanks to paid add-ons. The system is equipped with over 150 free functionalities, which you can adjust and modify.\n\nWe want the system to develop dynamically, so support our project with any amount per month (even with 1 Euro). All collected funds will be used for support tickets on GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues) and to create new functionalities, which will be available for free in the system.\n\nThe YetiForce system has always been and will remain free of charge, but it depends on you how it will continue to develop and whether it will be able to compete with the largest systems in the world. What we have already produced results from our passion and desire to create a unique system that is accessible to everyone.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Basic support for system admins [email, video, documentation]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n- Free update (only for customers who have purchased YetiForce Cloud or YetiForce Hosting)\n\nYetiForce Help price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 25 EUR / M\n- Small (21 to 50 users) - 50 EUR / M\n- Medium (51 to 250 users) - 100 EUR / M\n- Large (251 to 1000 users) - 250 EUR / M\n- Corporation (1000+ users) - 1250 EUR / M\n\nYetiForce Help contains a support limit depending on the size of the organization:\n- Micro [5 emails per month + 2 system updates per year]\n- Small [10 emails per month + 2 system updates per year]\n- Medium [15 emails per month + 4 system updates per year]\n- Large [20 emails per month + 6 system updates per year]\n- Corporation [30 emails per month + 12 system updates per year]\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Заменить брендинг YetiForce на собственный", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Интегратор", "LBL_SHOP_INTEGRATOR_INTRO": "Предложите системе YetiForce своим клиентам и получите эксклюзивные перки, доступные только партнерам YetiForce Integrator.", "LBL_SHOP_INTEGRATOR_DESC": "ЗАМЕЧАНИЯ \n\n 1. Правильная регистрация всех объектов YetiForce, используемых Партнером и клиентами Партнера. \n 2. Владение учетной записью GitHub и активное участие в репозитории YetiForce. \n\n БЕНЕФИТАЦИИ \n\n 1. Прямая поддержка (чат, электронная почта, GitHub) из команды YetiForce с точки зрения дополнительных проблем, связанных с функционированием системы, API и конфигурацией. Поддержка может быть предоставлена на польском или английском языках. Поддержка может быть также предоставлена клиентам Партнера в тех случаях, когда Партнер не сможет помочь своим клиентам. \n 2. Возможность найма сотрудников YetiForce для больших реализаций (услуга предоставляется за дополнительную плату, обеспечиваемая удаленно, связь на польском и английском языках). \n 3. Возможность сотрудничества в тендерах (общие отзывы клиентов, общий список специалистов, поддержка ценовых оценок). \n 4. Возможность использовать логотип \"YetiForce Integrator\" в Интернете. \n 5. Содействие в каталоге партнерских отношений на официальном сайте и в системе YetiForce. \n 6. Скидка на 10% на все продукты, предлагаемые на рынке производителем YetiForce и другими партнерами (также для собственных клиентов Партнера). Возможность бронирования проекта - скидка может быть 20%, но она будет предоставлена Партнеру, который книги проекта как-то в первую очередь. \n 7. Влияние на направление разработки системы и новые функциональные возможности. \n\n ЗАТРАТЫ \n\n 1. Ежемесячная плата за участие в партнерстве YetiForce Integrator составляет 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Advanced system support and development [chat, email, phone]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nYetiForce Development price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 200 EUR / M\n- Small (21 to 50 users) - 380 EUR / M\n- Medium (51 to 250 users) - 700 EUR / M\n- Large (251 to 1000 users) - 1.200 EUR / M\n- Corporation (1000+ users) - 6.000 EUR / M\n\nThe number of support hours in YetiForce Development package depends on the size of the organization:\n- Micro [5h support / M]\n- Small [10h support / M]\n- Medium [20h support / M]\n- Large [40h support / M]\n- Corporation [200h support / M]\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "High-performance and safe cloud", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "We will install the system on the most efficient infrastructure that meets the expectations of the most demanding customers. We will take care of safety, performance and solve any infrastructure problem for your convenience. Each user will receive from a few to several GB for corporate data, and the database will be placed on high-performance Intel Optane drives. In addition to the production version, we will configure the testing version of the system and you will receive full access to the application backups. \n Note: We work from Monday to Friday 8am-4pm (CEST) and need one working day to process your order.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Professional hosting for your company", diff --git a/install/languages/sh-HR/ConfReport.json b/install/languages/sh-HR/ConfReport.json index 1b349688e8a7..6456d82e0af1 100644 --- a/install/languages/sh-HR/ConfReport.json +++ b/install/languages/sh-HR/ConfReport.json @@ -77,7 +77,7 @@ "LBL_LATEST_PHP_VERSIONS_ARE": "Najnovije PHP verzija: %s", "BTN_CHECK_LATEST_VERSION": "Provjeri najnoviju PHP verziju", "BTN_SERVER_SPEED_TEST": "Server test brzine", - "BTN_DB_INFO": "Informacije o bazi podataka", + "BTN_DB_INFO": "Database information", "LBL_SERVER_SPEED_TEST": "Brzina servera", "LBL_READ_TEST": "Čitaj", "LBL_WRITE_TEST": "Pisanje", diff --git a/install/languages/sh-HR/Settings/YetiForce.json b/install/languages/sh-HR/Settings/YetiForce.json index bf3578dc290a..a3a447ecd84d 100644 --- a/install/languages/sh-HR/Settings/YetiForce.json +++ b/install/languages/sh-HR/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Pomozite nam da stvorimo najbolji otvoreni sistem na svijetu i uložimo u vašu budućnost!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce je instaliralo 40.000+ kompanija u preko 100 zemalja, potpuno je besplatan i naša tvrtka to razvija zajedno sa kupcima i zahvaljujući plaćenim dodacima. Sistem je opremljen sa preko 150 besplatnih funkcija, koje možete podešavati i modificirati.\n\nŽelimo da se sistem razvija dinamično, tako da podržavamo naš projekt sa bilo kojim iznosom mjesečno (čak i sa 1 Euro). Sva prikupljena sredstva koristit će se za ulaznice za podršku na GitHub-u (https://github.com/YetiForceCompany/YetiForceCRM/isissue) i za stvaranje novih funkcionalnosti, koje će u sistemu biti besplatno dostupne.\n\nYetiForce sistem je oduvijek bio i ostat će besplatan, ali od vas zavisi kako će se dalje razvijati i hoće li moći konkurirati najvećim sistemima na svijetu. Ono što smo već proizveli rezultat je naše strasti i želje za stvaranjem jedinstvenog sistema koji je dostupan svima.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Osnovna podrška za administratore sistema [e-pošta, video, dokumentacija]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce je vrlo moćan sistem, pruža 80+ korisničkih modula, 80+ konfiguracijskih ploča, 30+ alata, a njihovo razumijevanje zahtijeva vrijeme i veliko iskustvo. Kupovinom osnovne podrške dobijate pristup znanju i iskustvu tima YetiForce koji razvija sistem. Podrška se pruža na engleskom i poljskom jeziku.\n- Podrška putem e-pošte za korisnike\n- Podrška putem e-pošte za administratore\n- Besplatno ažuriranje (samo za korisnike koji su kupili YetiForce Cloud ili YetiForce hosting)\n\nYetiForce cijena pomoći varira ovisno o veličini organizacije:\n- Micro (1 do 20 korisnika) - 25 EUR / M\n- Mali (21 do 50 korisnika) - 50 EUR / M\n- Srednja (51 do 250 korisnika) - 100 EUR / M\n- Veliki (251 do 1000 korisnika) - 250 EUR / M\n- Korporacija (1000+ korisnika) - 1250 EUR / M\n\nYetiForce Help sadrži ograničenje podrške ovisno o veličini organizacije:\n- Micro [5 e-poruka mjesečno + 2 ažuriranja sistema godišnje]\n- Mala [10 e-poruka mjesečno + 2 ažuriranja sistema godišnje]\n- Srednja [15 e-poruka mjesečno + 4 ažuriranja sistema godišnje]\n- Veliki [20 e-poruka mjesečno + 6 ažuriranja sistema godišnje]\n- Corporation [30 e-poruka mjesečno + 12 ažuriranja sistema godišnje]\n\nPodrška putem e-pošte odnosi se samo na osnovna pitanja. Ako vašoj kompaniji treba podršku u vezi s naprednim mogućnostima sistema, npr. kreiranje novih modula, automatizacija procesa - ili je sistem modificirao programer, preporučujemo kupnju YetiForce razvojnog paketa.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Zamijeniti YetiForce brendiranje sa svojim", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Integrator", "LBL_SHOP_INTEGRATOR_INTRO": "Ponudite svojim klijentima sistem YetiForce i steknite ekskluzivne pogodnosti dostupne samo partnerima kompanije YetiForce Integrator.", "LBL_SHOP_INTEGRATOR_DESC": "ZAHTJEVI\n\n 1. Ispravna registracija svih YetiForce instalacija koje koriste Partner i Partneri partneri.\n 2. Posjedovanje GitHub računa i aktivno sudjelovanje u YetiForce repozitorijumu.\n\n PREDNOSTI\n\n 1. Direktna podrška (chat, e-pošta, GitHub) iz tima YetiForce u pogledu naprednih problema vezanih za rad sistema, API i konfiguraciju. Podrška se može pružiti na poljskom ili engleskom jeziku. Podrška se takođe može pružiti kupčevim partnerima u slučajevima kada Partner neće biti u mogućnosti da pomogne svojim kupcima.\n 2. Mogućnost angažiranja YetiForceovih zaposlenika za velike implementacije (usluga dostupna uz doplatu, pruža se na daljinu, komunikacija na poljskom i engleskom jeziku).\n 3. Mogućnost saradnje na natječajima (zajedničke ocjene kupaca, zajednička lista stručnjaka, podrška u procjeni cijena).\n 4. Mogućnost korištenja logotipa „YetiForce Integrator“ na Internetu.\n 5. Promocija u katalogu partnerstva na službenoj web stranici i u sistemu YetiForce.\n 6. 10% popusta na sve proizvode koje nudi YetiForce proizvođač i ostali partneri (takođe za partnerove klijente). Mogućnost rezervacije projekta - popust može biti 20%, ali dodijelit će se partneru koji projekt rezervira kao prvi.\n 7. Uticaj na smjer razvoja sistema i nove funkcionalnosti.\n\n TROŠKOVI\n\n 1. Mjesečna naknada za učešće u YetiForce Integrator partnerstvu iznosi 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Napredna podrška i razvoj sistema [chat, e-pošta, telefon]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Napredna podrška sistema omogućava sveobuhvatnu podršku ne samo administratorima, već uključuje i prilagodbu i dodavanje novih funkcionalnosti sistemu. Sve poslove koordiniraju iskusni programeri koji doprinose sistemu. Podrška se pruža na engleskom i poljskom jeziku. YetiForce razvojni paket uključuje:\n- Podrška putem e-pošte za korisnike (besplatna)\n- E-mail podrška za administratore (besplatno)\n- Rješavanje tehničkih i sistemskih grešaka (oduzeto od sati paketa)\n- Dodavanje novih funkcionalnosti u sistem (oduzeto od sati paketa)\n- Ažuriranja sistema (oduzeto od sati paketa)\n- Trening (oduzeto od sati paketa)\n\nYetiForce Development cijena varira ovisno o veličini organizacije:\n- Micro (1 do 20 korisnika) - 200 EUR / M\n- Mali (21 do 50 korisnika) - 380 EUR / M\n- Srednja (51 do 250 korisnika) - 700 EUR / M\n- Veliki (251 do 1000 korisnika) - 1.200 EUR / M\n- Korporacija (1000+ korisnika) - 6.000 EUR / M\n\nBroj sati podrške u YetiForce Development paketu ovisi o veličini organizacije:\n- Micro [5h podrška / M]\n- Mala [10h podrška / M]\n- Srednja [20h podrška / M]\n- velika [40h podrška / M]\n- Korporacija [podrška 200h / M]\n\nAnalizira se svaki email s opisom i procjenjuje se broj sati. Ako je citat prihvaćen, zadatak je zakazan.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "Visoko učinkovit i siguran oblak", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "Instalirat ćemo sustav na najefikasniju infrastrukturu koja zadovoljava očekivanja najzahtjevnijih kupaca. Mi ćemo se pobrinuti za sigurnost, performanse i riješiti svaki infrastrukturni problem za vašu udobnost. Svaki će korisnik dobiti od nekoliko do nekoliko GB-a za korporativne podatke, a baza podataka bit će smještena na visokoučinkovitim pogonskim Intel Optane. Pored proizvodne verzije, konfigurirat ćemo testnu verziju sustava i dobit ćete potpuni pristup sigurnosnim kopijama aplikacija.\n Napomena: Radimo od ponedjeljka do petka od 8 do 16 sati (CEST) i potreban vam je jedan radni dan da bismo obradili vašu narudžbu.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Profesionalni hosting za tvoju kompaniju", diff --git a/install/languages/sk-SK/Settings/YetiForce.json b/install/languages/sk-SK/Settings/YetiForce.json index 30e5f965abab..d9935f708eb7 100644 --- a/install/languages/sk-SK/Settings/YetiForce.json +++ b/install/languages/sk-SK/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Help us create the best open system in the world and invest in your future!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce has been installed by 40,000+ companies in over 100 countries, it is completely free and our company develops it together with customers and thanks to paid add-ons. The system is equipped with over 150 free functionalities, which you can adjust and modify.\n\nWe want the system to develop dynamically, so support our project with any amount per month (even with 1 Euro). All collected funds will be used for support tickets on GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues) and to create new functionalities, which will be available for free in the system.\n\nThe YetiForce system has always been and will remain free of charge, but it depends on you how it will continue to develop and whether it will be able to compete with the largest systems in the world. What we have already produced results from our passion and desire to create a unique system that is accessible to everyone.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Basic support for system admins [email, video, documentation]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n- Free update (only for customers who have purchased YetiForce Cloud or YetiForce Hosting)\n\nYetiForce Help price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 25 EUR / M\n- Small (21 to 50 users) - 50 EUR / M\n- Medium (51 to 250 users) - 100 EUR / M\n- Large (251 to 1000 users) - 250 EUR / M\n- Corporation (1000+ users) - 1250 EUR / M\n\nYetiForce Help contains a support limit depending on the size of the organization:\n- Micro [5 emails per month + 2 system updates per year]\n- Small [10 emails per month + 2 system updates per year]\n- Medium [15 emails per month + 4 system updates per year]\n- Large [20 emails per month + 6 system updates per year]\n- Corporation [30 emails per month + 12 system updates per year]\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Replace YetiForce branding with your own", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Integrator", "LBL_SHOP_INTEGRATOR_INTRO": "Offer the YetiForce system to your clients and gain exclusive perks available only to YetiForce Integrator partners.", "LBL_SHOP_INTEGRATOR_DESC": "REQUIREMENTS \n\n 1. Correct registration of all YetiForce installations used by the Partner and the Partner’s clients. \n 2. Owning a GitHub account and active participation in the YetiForce repository. \n\n BENEFITS \n\n 1. Direct support (chat, e-mail, GitHub) from the YetiForce team in terms of advanced problems related to system operation, API and configuration. Support can be provided in Polish or English. Support may also be provided to the Partner’s customers in cases when the Partner will not be able to help its customers. \n 2. The possibility of hiring YetiForce’s employees for large implementations (service available for an additional charge, provided remotely, communication in Polish and English). \n 3. The opportunity to cooperate in tenders (shared customer testimonials, a common list of specialists, support in price estimates). \n 4. Ability to use the “YetiForce Integrator” logo on the Internet. \n 5. Promotion in the partnership catalog on the official website and in the YetiForce system. \n 6. 10% discount on all products offered in the marketplace by the YetiForce producer and other Partners (also for Partner’s own customers). The possibility of booking a project - the discount might be 20% but it will be granted to a Partner which books the project as first. \n 7. The impact on the direction of system development and new functionalities. \n\n COST \n\n 1. The monthly participation fee for the YetiForce Integrator partnership is 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Advanced system support and development [chat, email, phone]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nYetiForce Development price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 200 EUR / M\n- Small (21 to 50 users) - 380 EUR / M\n- Medium (51 to 250 users) - 700 EUR / M\n- Large (251 to 1000 users) - 1.200 EUR / M\n- Corporation (1000+ users) - 6.000 EUR / M\n\nThe number of support hours in YetiForce Development package depends on the size of the organization:\n- Micro [5h support / M]\n- Small [10h support / M]\n- Medium [20h support / M]\n- Large [40h support / M]\n- Corporation [200h support / M]\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "Vysoko výkonný a bezpečný cloud", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "We will install the system on the most efficient infrastructure that meets the expectations of the most demanding customers. We will take care of safety, performance and solve any infrastructure problem for your convenience. Each user will receive from a few to several GB for corporate data, and the database will be placed on high-performance Intel Optane drives. In addition to the production version, we will configure the testing version of the system and you will receive full access to the application backups. \n Note: We work from Monday to Friday 8am-4pm (CEST) and need one working day to process your order.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Profesionálny hosting pre vašu spoločnosť", diff --git a/install/languages/sl-SI/ConfReport.json b/install/languages/sl-SI/ConfReport.json index 431fff285f5d..5407846c9ecb 100644 --- a/install/languages/sl-SI/ConfReport.json +++ b/install/languages/sl-SI/ConfReport.json @@ -77,7 +77,7 @@ "LBL_LATEST_PHP_VERSIONS_ARE": "Najnovejše različice PHP %s", "BTN_CHECK_LATEST_VERSION": "Preverite najnovejšo različico PHP", "BTN_SERVER_SPEED_TEST": "Test hitrosti strežnika", - "BTN_DB_INFO": "Informacije o podatkovni bazi", + "BTN_DB_INFO": "Database information", "LBL_SERVER_SPEED_TEST": "Hitrosti strežnika", "LBL_READ_TEST": "Preberi", "LBL_WRITE_TEST": "Zapiši", diff --git a/install/languages/sl-SI/Settings/YetiForce.json b/install/languages/sl-SI/Settings/YetiForce.json index 54d79e38c842..6157df3ef9e7 100644 --- a/install/languages/sl-SI/Settings/YetiForce.json +++ b/install/languages/sl-SI/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Pomagajte nam ustvariti najboljši odprt sistem na svetu in vlagajte v svojo prihodnost!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce je namestilo že 40.000+ podjetij v več kot 100 državah, je popolnoma brezplačen in ga naše podjetje razvija skupaj s strankami in zahvaljujoč plačljivim dodatkom. Sistem je opremljen z več kot 150 brezplačnimi funkcijami, ki jih lahko prilagodite in spremenite.\n\nŽelimo, da se sistem dinamično razvija, zato podprite naš projekt s poljubnim zneskom na mesec (tudi z 1 evrom). Vsa zbrana sredstva bodo uporabljena za vstopnice za podporo na GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues) in za ustvarjanje novih funkcionalnosti, ki bodo v sistemu na voljo brezplačno.\n\nSistem YetiForce je bil vedno in bo ostal brezplačen, od vas pa je odvisno, kako se bo še naprej razvijal in ali bo lahko konkuriral največjim sistemom na svetu. To, kar smo že ustvarili, izhaja iz naše strasti in želje po ustvarjanju edinstvenega sistema, ki je dostopen vsem.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Osnovna podpora sistemskim skrbnikom [e-pošta, video, dokumentacija]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n- Free update (only for customers who have purchased YetiForce Cloud or YetiForce Hosting)\n\nYetiForce Help price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 25 EUR / M\n- Small (21 to 50 users) - 50 EUR / M\n- Medium (51 to 250 users) - 100 EUR / M\n- Large (251 to 1000 users) - 250 EUR / M\n- Corporation (1000+ users) - 1250 EUR / M\n\nYetiForce Help contains a support limit depending on the size of the organization:\n- Micro [5 emails per month + 2 system updates per year]\n- Small [10 emails per month + 2 system updates per year]\n- Medium [15 emails per month + 4 system updates per year]\n- Large [20 emails per month + 6 system updates per year]\n- Corporation [30 emails per month + 12 system updates per year]\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Zamenjajte blagovno znamko YetiForce s svojo", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Integrator", "LBL_SHOP_INTEGRATOR_INTRO": "Strankam ponudite sistem YetiForce in pridobite ekskluzivne ugodnosti, ki so na voljo samo partnerjem YetiForce Integrator.", "LBL_SHOP_INTEGRATOR_DESC": "REQUIREMENTS \n\n 1. Correct registration of all YetiForce installations used by the Partner and the Partner’s clients. \n 2. Owning a GitHub account and active participation in the YetiForce repository. \n\n BENEFITS \n\n 1. Direct support (chat, e-mail, GitHub) from the YetiForce team in terms of advanced problems related to system operation, API and configuration. Support can be provided in Polish or English. Support may also be provided to the Partner’s customers in cases when the Partner will not be able to help its customers. \n 2. The possibility of hiring YetiForce’s employees for large implementations (service available for an additional charge, provided remotely, communication in Polish and English). \n 3. The opportunity to cooperate in tenders (shared customer testimonials, a common list of specialists, support in price estimates). \n 4. Ability to use the “YetiForce Integrator” logo on the Internet. \n 5. Promotion in the partnership catalog on the official website and in the YetiForce system. \n 6. 10% discount on all products offered in the marketplace by the YetiForce producer and other Partners (also for Partner’s own customers). The possibility of booking a project - the discount might be 20% but it will be granted to a Partner which books the project as first. \n 7. The impact on the direction of system development and new functionalities. \n\n COST \n\n 1. The monthly participation fee for the YetiForce Integrator partnership is 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Advanced system support and development [chat, email, phone]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nYetiForce Development price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 200 EUR / M\n- Small (21 to 50 users) - 380 EUR / M\n- Medium (51 to 250 users) - 700 EUR / M\n- Large (251 to 1000 users) - 1.200 EUR / M\n- Corporation (1000+ users) - 6.000 EUR / M\n\nThe number of support hours in YetiForce Development package depends on the size of the organization:\n- Micro [5h support / M]\n- Small [10h support / M]\n- Medium [20h support / M]\n- Large [40h support / M]\n- Corporation [200h support / M]\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "Visoko zmogljivostni in varen oblak", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "We will install the system on the most efficient infrastructure that meets the expectations of the most demanding customers. We will take care of safety, performance and solve any infrastructure problem for your convenience. Each user will receive from a few to several GB for corporate data, and the database will be placed on high-performance Intel Optane drives. In addition to the production version, we will configure the testing version of the system and you will receive full access to the application backups. \n Note: We work from Monday to Friday 8am-4pm (CEST) and need one working day to process your order.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Professional hosting for your company", diff --git a/install/languages/sr-CS/ConfReport.json b/install/languages/sr-CS/ConfReport.json index 1b349688e8a7..6456d82e0af1 100644 --- a/install/languages/sr-CS/ConfReport.json +++ b/install/languages/sr-CS/ConfReport.json @@ -77,7 +77,7 @@ "LBL_LATEST_PHP_VERSIONS_ARE": "Najnovije PHP verzija: %s", "BTN_CHECK_LATEST_VERSION": "Provjeri najnoviju PHP verziju", "BTN_SERVER_SPEED_TEST": "Server test brzine", - "BTN_DB_INFO": "Informacije o bazi podataka", + "BTN_DB_INFO": "Database information", "LBL_SERVER_SPEED_TEST": "Brzina servera", "LBL_READ_TEST": "Čitaj", "LBL_WRITE_TEST": "Pisanje", diff --git a/install/languages/sr-CS/Settings/YetiForce.json b/install/languages/sr-CS/Settings/YetiForce.json index bf3578dc290a..a3a447ecd84d 100644 --- a/install/languages/sr-CS/Settings/YetiForce.json +++ b/install/languages/sr-CS/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Pomozite nam da stvorimo najbolji otvoreni sistem na svijetu i uložimo u vašu budućnost!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce je instaliralo 40.000+ kompanija u preko 100 zemalja, potpuno je besplatan i naša tvrtka to razvija zajedno sa kupcima i zahvaljujući plaćenim dodacima. Sistem je opremljen sa preko 150 besplatnih funkcija, koje možete podešavati i modificirati.\n\nŽelimo da se sistem razvija dinamično, tako da podržavamo naš projekt sa bilo kojim iznosom mjesečno (čak i sa 1 Euro). Sva prikupljena sredstva koristit će se za ulaznice za podršku na GitHub-u (https://github.com/YetiForceCompany/YetiForceCRM/isissue) i za stvaranje novih funkcionalnosti, koje će u sistemu biti besplatno dostupne.\n\nYetiForce sistem je oduvijek bio i ostat će besplatan, ali od vas zavisi kako će se dalje razvijati i hoće li moći konkurirati najvećim sistemima na svijetu. Ono što smo već proizveli rezultat je naše strasti i želje za stvaranjem jedinstvenog sistema koji je dostupan svima.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Osnovna podrška za administratore sistema [e-pošta, video, dokumentacija]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce je vrlo moćan sistem, pruža 80+ korisničkih modula, 80+ konfiguracijskih ploča, 30+ alata, a njihovo razumijevanje zahtijeva vrijeme i veliko iskustvo. Kupovinom osnovne podrške dobijate pristup znanju i iskustvu tima YetiForce koji razvija sistem. Podrška se pruža na engleskom i poljskom jeziku.\n- Podrška putem e-pošte za korisnike\n- Podrška putem e-pošte za administratore\n- Besplatno ažuriranje (samo za korisnike koji su kupili YetiForce Cloud ili YetiForce hosting)\n\nYetiForce cijena pomoći varira ovisno o veličini organizacije:\n- Micro (1 do 20 korisnika) - 25 EUR / M\n- Mali (21 do 50 korisnika) - 50 EUR / M\n- Srednja (51 do 250 korisnika) - 100 EUR / M\n- Veliki (251 do 1000 korisnika) - 250 EUR / M\n- Korporacija (1000+ korisnika) - 1250 EUR / M\n\nYetiForce Help sadrži ograničenje podrške ovisno o veličini organizacije:\n- Micro [5 e-poruka mjesečno + 2 ažuriranja sistema godišnje]\n- Mala [10 e-poruka mjesečno + 2 ažuriranja sistema godišnje]\n- Srednja [15 e-poruka mjesečno + 4 ažuriranja sistema godišnje]\n- Veliki [20 e-poruka mjesečno + 6 ažuriranja sistema godišnje]\n- Corporation [30 e-poruka mjesečno + 12 ažuriranja sistema godišnje]\n\nPodrška putem e-pošte odnosi se samo na osnovna pitanja. Ako vašoj kompaniji treba podršku u vezi s naprednim mogućnostima sistema, npr. kreiranje novih modula, automatizacija procesa - ili je sistem modificirao programer, preporučujemo kupnju YetiForce razvojnog paketa.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Zamijeniti YetiForce brendiranje sa svojim", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Integrator", "LBL_SHOP_INTEGRATOR_INTRO": "Ponudite svojim klijentima sistem YetiForce i steknite ekskluzivne pogodnosti dostupne samo partnerima kompanije YetiForce Integrator.", "LBL_SHOP_INTEGRATOR_DESC": "ZAHTJEVI\n\n 1. Ispravna registracija svih YetiForce instalacija koje koriste Partner i Partneri partneri.\n 2. Posjedovanje GitHub računa i aktivno sudjelovanje u YetiForce repozitorijumu.\n\n PREDNOSTI\n\n 1. Direktna podrška (chat, e-pošta, GitHub) iz tima YetiForce u pogledu naprednih problema vezanih za rad sistema, API i konfiguraciju. Podrška se može pružiti na poljskom ili engleskom jeziku. Podrška se takođe može pružiti kupčevim partnerima u slučajevima kada Partner neće biti u mogućnosti da pomogne svojim kupcima.\n 2. Mogućnost angažiranja YetiForceovih zaposlenika za velike implementacije (usluga dostupna uz doplatu, pruža se na daljinu, komunikacija na poljskom i engleskom jeziku).\n 3. Mogućnost saradnje na natječajima (zajedničke ocjene kupaca, zajednička lista stručnjaka, podrška u procjeni cijena).\n 4. Mogućnost korištenja logotipa „YetiForce Integrator“ na Internetu.\n 5. Promocija u katalogu partnerstva na službenoj web stranici i u sistemu YetiForce.\n 6. 10% popusta na sve proizvode koje nudi YetiForce proizvođač i ostali partneri (takođe za partnerove klijente). Mogućnost rezervacije projekta - popust može biti 20%, ali dodijelit će se partneru koji projekt rezervira kao prvi.\n 7. Uticaj na smjer razvoja sistema i nove funkcionalnosti.\n\n TROŠKOVI\n\n 1. Mjesečna naknada za učešće u YetiForce Integrator partnerstvu iznosi 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Napredna podrška i razvoj sistema [chat, e-pošta, telefon]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Napredna podrška sistema omogućava sveobuhvatnu podršku ne samo administratorima, već uključuje i prilagodbu i dodavanje novih funkcionalnosti sistemu. Sve poslove koordiniraju iskusni programeri koji doprinose sistemu. Podrška se pruža na engleskom i poljskom jeziku. YetiForce razvojni paket uključuje:\n- Podrška putem e-pošte za korisnike (besplatna)\n- E-mail podrška za administratore (besplatno)\n- Rješavanje tehničkih i sistemskih grešaka (oduzeto od sati paketa)\n- Dodavanje novih funkcionalnosti u sistem (oduzeto od sati paketa)\n- Ažuriranja sistema (oduzeto od sati paketa)\n- Trening (oduzeto od sati paketa)\n\nYetiForce Development cijena varira ovisno o veličini organizacije:\n- Micro (1 do 20 korisnika) - 200 EUR / M\n- Mali (21 do 50 korisnika) - 380 EUR / M\n- Srednja (51 do 250 korisnika) - 700 EUR / M\n- Veliki (251 do 1000 korisnika) - 1.200 EUR / M\n- Korporacija (1000+ korisnika) - 6.000 EUR / M\n\nBroj sati podrške u YetiForce Development paketu ovisi o veličini organizacije:\n- Micro [5h podrška / M]\n- Mala [10h podrška / M]\n- Srednja [20h podrška / M]\n- velika [40h podrška / M]\n- Korporacija [podrška 200h / M]\n\nAnalizira se svaki email s opisom i procjenjuje se broj sati. Ako je citat prihvaćen, zadatak je zakazan.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "Visoko učinkovit i siguran oblak", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "Instalirat ćemo sustav na najefikasniju infrastrukturu koja zadovoljava očekivanja najzahtjevnijih kupaca. Mi ćemo se pobrinuti za sigurnost, performanse i riješiti svaki infrastrukturni problem za vašu udobnost. Svaki će korisnik dobiti od nekoliko do nekoliko GB-a za korporativne podatke, a baza podataka bit će smještena na visokoučinkovitim pogonskim Intel Optane. Pored proizvodne verzije, konfigurirat ćemo testnu verziju sustava i dobit ćete potpuni pristup sigurnosnim kopijama aplikacija.\n Napomena: Radimo od ponedjeljka do petka od 8 do 16 sati (CEST) i potreban vam je jedan radni dan da bismo obradili vašu narudžbu.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Profesionalni hosting za tvoju kompaniju", diff --git a/install/languages/tr-TR/Settings/YetiForce.json b/install/languages/tr-TR/Settings/YetiForce.json index ed8bf64ab7fa..e67f2993b87e 100644 --- a/install/languages/tr-TR/Settings/YetiForce.json +++ b/install/languages/tr-TR/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Help us create the best open system in the world and invest in your future!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce has been installed by 40,000+ companies in over 100 countries, it is completely free and our company develops it together with customers and thanks to paid add-ons. The system is equipped with over 150 free functionalities, which you can adjust and modify.\n\nWe want the system to develop dynamically, so support our project with any amount per month (even with 1 Euro). All collected funds will be used for support tickets on GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues) and to create new functionalities, which will be available for free in the system.\n\nThe YetiForce system has always been and will remain free of charge, but it depends on you how it will continue to develop and whether it will be able to compete with the largest systems in the world. What we have already produced results from our passion and desire to create a unique system that is accessible to everyone.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Basic support for system admins [email, video, documentation]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n- Free update (only for customers who have purchased YetiForce Cloud or YetiForce Hosting)\n\nYetiForce Help price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 25 EUR / M\n- Small (21 to 50 users) - 50 EUR / M\n- Medium (51 to 250 users) - 100 EUR / M\n- Large (251 to 1000 users) - 250 EUR / M\n- Corporation (1000+ users) - 1250 EUR / M\n\nYetiForce Help contains a support limit depending on the size of the organization:\n- Micro [5 emails per month + 2 system updates per year]\n- Small [10 emails per month + 2 system updates per year]\n- Medium [15 emails per month + 4 system updates per year]\n- Large [20 emails per month + 6 system updates per year]\n- Corporation [30 emails per month + 12 system updates per year]\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Replace YetiForce branding with your own", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Integrator", "LBL_SHOP_INTEGRATOR_INTRO": "Offer the YetiForce system to your clients and gain exclusive perks available only to YetiForce Integrator partners.", "LBL_SHOP_INTEGRATOR_DESC": "REQUIREMENTS \n\n 1. Correct registration of all YetiForce installations used by the Partner and the Partner’s clients. \n 2. Owning a GitHub account and active participation in the YetiForce repository. \n\n BENEFITS \n\n 1. Direct support (chat, e-mail, GitHub) from the YetiForce team in terms of advanced problems related to system operation, API and configuration. Support can be provided in Polish or English. Support may also be provided to the Partner’s customers in cases when the Partner will not be able to help its customers. \n 2. The possibility of hiring YetiForce’s employees for large implementations (service available for an additional charge, provided remotely, communication in Polish and English). \n 3. The opportunity to cooperate in tenders (shared customer testimonials, a common list of specialists, support in price estimates). \n 4. Ability to use the “YetiForce Integrator” logo on the Internet. \n 5. Promotion in the partnership catalog on the official website and in the YetiForce system. \n 6. 10% discount on all products offered in the marketplace by the YetiForce producer and other Partners (also for Partner’s own customers). The possibility of booking a project - the discount might be 20% but it will be granted to a Partner which books the project as first. \n 7. The impact on the direction of system development and new functionalities. \n\n COST \n\n 1. The monthly participation fee for the YetiForce Integrator partnership is 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Advanced system support and development [chat, email, phone]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nYetiForce Development price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 200 EUR / M\n- Small (21 to 50 users) - 380 EUR / M\n- Medium (51 to 250 users) - 700 EUR / M\n- Large (251 to 1000 users) - 1.200 EUR / M\n- Corporation (1000+ users) - 6.000 EUR / M\n\nThe number of support hours in YetiForce Development package depends on the size of the organization:\n- Micro [5h support / M]\n- Small [10h support / M]\n- Medium [20h support / M]\n- Large [40h support / M]\n- Corporation [200h support / M]\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "High-performance and safe cloud", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "We will install the system on the most efficient infrastructure that meets the expectations of the most demanding customers. We will take care of safety, performance and solve any infrastructure problem for your convenience. Each user will receive from a few to several GB for corporate data, and the database will be placed on high-performance Intel Optane drives. In addition to the production version, we will configure the testing version of the system and you will receive full access to the application backups. \n Note: We work from Monday to Friday 8am-4pm (CEST) and need one working day to process your order.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Professional hosting for your company", diff --git a/install/languages/uk-UA/ConfReport.json b/install/languages/uk-UA/ConfReport.json index 5e71455103d7..854dc9bed874 100644 --- a/install/languages/uk-UA/ConfReport.json +++ b/install/languages/uk-UA/ConfReport.json @@ -77,7 +77,7 @@ "LBL_LATEST_PHP_VERSIONS_ARE": "Останні версія PHP: %s", "BTN_CHECK_LATEST_VERSION": "Перевірити останню версію PHP", "BTN_SERVER_SPEED_TEST": "Тест швидкості сервера", - "BTN_DB_INFO": "Інформація про базу даних", + "BTN_DB_INFO": "Database information", "LBL_SERVER_SPEED_TEST": "Швидкість сервера", "LBL_READ_TEST": "Читання", "LBL_WRITE_TEST": "Запис", diff --git a/install/languages/uk-UA/Install.json b/install/languages/uk-UA/Install.json index b2eae69b7e81..63f93ea15610 100644 --- a/install/languages/uk-UA/Install.json +++ b/install/languages/uk-UA/Install.json @@ -57,7 +57,7 @@ "LBL_USERNAME": "Ім'я користувача", "LBL_FIRST_NAME": "Ім'я", "LBL_LAST_NAME": "Прізвище", - "LBL_SETUP_WIZARD_DESCRIPTION_1": "YetiForce-це інноваційна та безпечна сучасна програма, яка підтримує різні бізнес-процеси, такі як Маркетинг, Продажі, Проекти, Підтримка, Бухгалтерський облік, Логістика, і Загальний регламент по захисту даних. \nСистема назвали \"найбільш доступне програмне забезпечення CRM\" в рейтингу Capterra, тим самим обійшовши понад 500 інших CRM-рішень. \nПовний доступ до вихідного коду, наші великі і активні спільноти GitHub, і ваша допомога, що дозволяє нам створити ще більш досконалі системи. \nСпасибі за ваш інтерес у YetiForce. Якщо ви виявите які-небудь проблеми, будь ласка, повідомте про них тут:", + "LBL_SETUP_WIZARD_DESCRIPTION_1": "YetiForce-це інноваційна та безпечна сучасна програма, яка підтримує різні бізнес-процеси, такі як Маркетинг, Продажі, Проекти, Підтримка, Бухгалтерський облік, Логістика, і Загальний регламент по захисту даних. \nСистему назвали \"найбільш доступне програмне забезпечення CRM\" в рейтингу Capterra, тим самим обійшовши понад 500 інших CRM-рішень. \nПовний доступ до вихідного коду, наші великі і активні спільноти GitHub, і ваша допомога, що дозволяє нам створити ще більш досконалі системи. \nСпасибі за ваш інтерес у YetiForce. Якщо ви виявите які-небудь проблеми, будь ласка, повідомте про них тут:", "LBL_SETUP_WIZARD_DESCRIPTION_2": "Якщо вам потрібна безпосередня підтримка, будь ласка, подумайте про покупку одного з наших пакетів підтримки. Ми також пропонуємо налаштовані і оптимізовані сервера (хостинг, VPS публічна хмара, Приватне хмара VPS), що гарантує найвищу якість і повну сумісність з системою YetiForce. Відвідайте наш магазин для отримання додаткової інформації.", "LBL_SETUP_WIZARD_BODY": "Ласкаво просимо до майстра установки YetiForce", "LBL_STEP2_DESCRIPTION_1": "Публічна ліцензія YetiForce заснована на ліцензії MIT, тому вона не створює зайвих обмежень для вашої компанії. Вся ліцензія також доступна на нашому офіційному веб-сайті.", diff --git a/install/languages/uk-UA/Settings/YetiForce.json b/install/languages/uk-UA/Settings/YetiForce.json index c996f096b6b1..592f812f6af2 100644 --- a/install/languages/uk-UA/Settings/YetiForce.json +++ b/install/languages/uk-UA/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Help us create the best open system in the world and invest in your future!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce has been installed by 40,000+ companies in over 100 countries, it is completely free and our company develops it together with customers and thanks to paid add-ons. The system is equipped with over 150 free functionalities, which you can adjust and modify.\n\nWe want the system to develop dynamically, so support our project with any amount per month (even with 1 Euro). All collected funds will be used for support tickets on GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues) and to create new functionalities, which will be available for free in the system.\n\nThe YetiForce system has always been and will remain free of charge, but it depends on you how it will continue to develop and whether it will be able to compete with the largest systems in the world. What we have already produced results from our passion and desire to create a unique system that is accessible to everyone.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Basic support for system admins [email, video, documentation]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n- Free update (only for customers who have purchased YetiForce Cloud or YetiForce Hosting)\n\nYetiForce Help price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 25 EUR / M\n- Small (21 to 50 users) - 50 EUR / M\n- Medium (51 to 250 users) - 100 EUR / M\n- Large (251 to 1000 users) - 250 EUR / M\n- Corporation (1000+ users) - 1250 EUR / M\n\nYetiForce Help contains a support limit depending on the size of the organization:\n- Micro [5 emails per month + 2 system updates per year]\n- Small [10 emails per month + 2 system updates per year]\n- Medium [15 emails per month + 4 system updates per year]\n- Large [20 emails per month + 6 system updates per year]\n- Corporation [30 emails per month + 12 system updates per year]\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Replace YetiForce branding with your own", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Інтегратор", "LBL_SHOP_INTEGRATOR_INTRO": "Offer the YetiForce system to your clients and gain exclusive perks available only to YetiForce Integrator partners.", "LBL_SHOP_INTEGRATOR_DESC": "REQUIREMENTS \n\n 1. Correct registration of all YetiForce installations used by the Partner and the Partner’s clients. \n 2. Owning a GitHub account and active participation in the YetiForce repository. \n\n BENEFITS \n\n 1. Direct support (chat, e-mail, GitHub) from the YetiForce team in terms of advanced problems related to system operation, API and configuration. Support can be provided in Polish or English. Support may also be provided to the Partner’s customers in cases when the Partner will not be able to help its customers. \n 2. The possibility of hiring YetiForce’s employees for large implementations (service available for an additional charge, provided remotely, communication in Polish and English). \n 3. The opportunity to cooperate in tenders (shared customer testimonials, a common list of specialists, support in price estimates). \n 4. Ability to use the “YetiForce Integrator” logo on the Internet. \n 5. Promotion in the partnership catalog on the official website and in the YetiForce system. \n 6. 10% discount on all products offered in the marketplace by the YetiForce producer and other Partners (also for Partner’s own customers). The possibility of booking a project - the discount might be 20% but it will be granted to a Partner which books the project as first. \n 7. The impact on the direction of system development and new functionalities. \n\n COST \n\n 1. The monthly participation fee for the YetiForce Integrator partnership is 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Advanced system support and development [chat, email, phone]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nYetiForce Development price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 200 EUR / M\n- Small (21 to 50 users) - 380 EUR / M\n- Medium (51 to 250 users) - 700 EUR / M\n- Large (251 to 1000 users) - 1.200 EUR / M\n- Corporation (1000+ users) - 6.000 EUR / M\n\nThe number of support hours in YetiForce Development package depends on the size of the organization:\n- Micro [5h support / M]\n- Small [10h support / M]\n- Medium [20h support / M]\n- Large [40h support / M]\n- Corporation [200h support / M]\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "Високопродуктивна і безпечна хмара", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "We will install the system on the most efficient infrastructure that meets the expectations of the most demanding customers. We will take care of safety, performance and solve any infrastructure problem for your convenience. Each user will receive from a few to several GB for corporate data, and the database will be placed on high-performance Intel Optane drives. In addition to the production version, we will configure the testing version of the system and you will receive full access to the application backups. \n Note: We work from Monday to Friday 8am-4pm (CEST) and need one working day to process your order.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Професійний хостинг для вашої компанії", diff --git a/install/languages/vi-VN/Settings/YetiForce.json b/install/languages/vi-VN/Settings/YetiForce.json index 35d549aeaa3c..7302a409f34c 100644 --- a/install/languages/vi-VN/Settings/YetiForce.json +++ b/install/languages/vi-VN/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Giúp chúng tôi tạo ra hệ thống tốt nhất trên thế giới và đầu tư cho tương lai của bạn!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce has been installed by 40,000+ companies in over 100 countries, it is completely free and our company develops it together with customers and thanks to paid add-ons. The system is equipped with over 150 free functionalities, which you can adjust and modify.\n\nWe want the system to develop dynamically, so support our project with any amount per month (even with 1 Euro). All collected funds will be used for support tickets on GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues) and to create new functionalities, which will be available for free in the system.\n\nThe YetiForce system has always been and will remain free of charge, but it depends on you how it will continue to develop and whether it will be able to compete with the largest systems in the world. What we have already produced results from our passion and desire to create a unique system that is accessible to everyone.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Hỗ trợ cơ bản cho quản trị hệ thống [email, video, tài liệu]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n- Free update (only for customers who have purchased YetiForce Cloud or YetiForce Hosting)\n\nYetiForce Help price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 25 EUR / M\n- Small (21 to 50 users) - 50 EUR / M\n- Medium (51 to 250 users) - 100 EUR / M\n- Large (251 to 1000 users) - 250 EUR / M\n- Corporation (1000+ users) - 1250 EUR / M\n\nYetiForce Help contains a support limit depending on the size of the organization:\n- Micro [5 emails per month + 2 system updates per year]\n- Small [10 emails per month + 2 system updates per year]\n- Medium [15 emails per month + 4 system updates per year]\n- Large [20 emails per month + 6 system updates per year]\n- Corporation [30 emails per month + 12 system updates per year]\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Thay thế thương hiệu YetiForce bằng thương hiệu của bạn", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Bộ tích hợp", "LBL_SHOP_INTEGRATOR_INTRO": "Offer the YetiForce system to your clients and gain exclusive perks available only to YetiForce Integrator partners.", "LBL_SHOP_INTEGRATOR_DESC": "REQUIREMENTS \n\n 1. Correct registration of all YetiForce installations used by the Partner and the Partner’s clients. \n 2. Owning a GitHub account and active participation in the YetiForce repository. \n\n BENEFITS \n\n 1. Direct support (chat, e-mail, GitHub) from the YetiForce team in terms of advanced problems related to system operation, API and configuration. Support can be provided in Polish or English. Support may also be provided to the Partner’s customers in cases when the Partner will not be able to help its customers. \n 2. The possibility of hiring YetiForce’s employees for large implementations (service available for an additional charge, provided remotely, communication in Polish and English). \n 3. The opportunity to cooperate in tenders (shared customer testimonials, a common list of specialists, support in price estimates). \n 4. Ability to use the “YetiForce Integrator” logo on the Internet. \n 5. Promotion in the partnership catalog on the official website and in the YetiForce system. \n 6. 10% discount on all products offered in the marketplace by the YetiForce producer and other Partners (also for Partner’s own customers). The possibility of booking a project - the discount might be 20% but it will be granted to a Partner which books the project as first. \n 7. The impact on the direction of system development and new functionalities. \n\n COST \n\n 1. The monthly participation fee for the YetiForce Integrator partnership is 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Hỗ trợ và lập trình cao cấp [chat, email, điện thoại]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nYetiForce Development price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 200 EUR / M\n- Small (21 to 50 users) - 380 EUR / M\n- Medium (51 to 250 users) - 700 EUR / M\n- Large (251 to 1000 users) - 1.200 EUR / M\n- Corporation (1000+ users) - 6.000 EUR / M\n\nThe number of support hours in YetiForce Development package depends on the size of the organization:\n- Micro [5h support / M]\n- Small [10h support / M]\n- Medium [20h support / M]\n- Large [40h support / M]\n- Corporation [200h support / M]\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "Điện toán đám may hiệu suất cao và an toàn", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "We will install the system on the most efficient infrastructure that meets the expectations of the most demanding customers. We will take care of safety, performance and solve any infrastructure problem for your convenience. Each user will receive from a few to several GB for corporate data, and the database will be placed on high-performance Intel Optane drives. In addition to the production version, we will configure the testing version of the system and you will receive full access to the application backups. \n Note: We work from Monday to Friday 8am-4pm (CEST) and need one working day to process your order.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Hosting chuyên nghiệp cho công ty của bạn", diff --git a/install/languages/zh-CN/ConfReport.json b/install/languages/zh-CN/ConfReport.json index e301a4656615..66811bf42ae7 100644 --- a/install/languages/zh-CN/ConfReport.json +++ b/install/languages/zh-CN/ConfReport.json @@ -77,7 +77,7 @@ "LBL_LATEST_PHP_VERSIONS_ARE": "最新 PHP 版本:%s", "BTN_CHECK_LATEST_VERSION": "检查最新的 PHP 版本", "BTN_SERVER_SPEED_TEST": "服务器速度测试", - "BTN_DB_INFO": "数据库信息", + "BTN_DB_INFO": "Database information", "LBL_SERVER_SPEED_TEST": "服务器速度", "LBL_READ_TEST": "只读", "LBL_WRITE_TEST": "可写", diff --git a/install/languages/zh-CN/Settings/YetiForce.json b/install/languages/zh-CN/Settings/YetiForce.json index 3fbbec81d53e..56408bbcc915 100644 --- a/install/languages/zh-CN/Settings/YetiForce.json +++ b/install/languages/zh-CN/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Help us create the best open system in the world and invest in your future!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce has been installed by 40,000+ companies in over 100 countries, it is completely free and our company develops it together with customers and thanks to paid add-ons. The system is equipped with over 150 free functionalities, which you can adjust and modify.\n\nWe want the system to develop dynamically, so support our project with any amount per month (even with 1 Euro). All collected funds will be used for support tickets on GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues) and to create new functionalities, which will be available for free in the system.\n\nThe YetiForce system has always been and will remain free of charge, but it depends on you how it will continue to develop and whether it will be able to compete with the largest systems in the world. What we have already produced results from our passion and desire to create a unique system that is accessible to everyone.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Basic support for system admins [email, video, documentation]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n- Free update (only for customers who have purchased YetiForce Cloud or YetiForce Hosting)\n\nYetiForce Help price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 25 EUR / M\n- Small (21 to 50 users) - 50 EUR / M\n- Medium (51 to 250 users) - 100 EUR / M\n- Large (251 to 1000 users) - 250 EUR / M\n- Corporation (1000+ users) - 1250 EUR / M\n\nYetiForce Help contains a support limit depending on the size of the organization:\n- Micro [5 emails per month + 2 system updates per year]\n- Small [10 emails per month + 2 system updates per year]\n- Medium [15 emails per month + 4 system updates per year]\n- Large [20 emails per month + 6 system updates per year]\n- Corporation [30 emails per month + 12 system updates per year]\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "将 YetiForce 品牌替换为您自己的品牌", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "积分", "LBL_SHOP_INTEGRATOR_INTRO": "向您的客户提供 YetiForce 系统,并获得仅对 YetiForce 集成商合作伙伴提供的独家优惠。", "LBL_SHOP_INTEGRATOR_DESC": "要求\n\n 1.正确注册合作伙伴和合作伙伴客户使用的所有YetiForce安装。\n 2.拥有GitHub帐户并积极参与YetiForce存储库。\n 优点\n\n 1.在与系统操作,API和配置相关的高级问题方面,直接支持YetiForce团队的支持(聊天,电子邮件,GitHub)。支持可以波兰语或英语提供。如果合作伙伴无法帮助其客户,也可能向合作伙伴的客户提供支持。\n 2.聘请YetiForce员工进行大规模实施的可能性(服务可额外收费,远程提供,波兰语和英语交流)。\n 3.在招标中合作的机会(共享客户推荐,共同的专家列表,价格估算支持)。\n 4.能够在Internet上使用“YetiForce Integrator”徽标。\n 5.在官方网站和YetiForce系统的合作目录中进行推广。\n 6. YetiForce生产商和其他合作伙伴(也是合作伙伴自己的客户)在市场上提供的所有产品的10%折扣。预订项目的可能性 - 折扣可能是20%,但它将被授予合作伙伴,该合作伙伴首先预订项目。\n 7.对系统开发方向和新功能的影响。\n 成本\n 1. YetiForce Integrator合作伙伴关系的月参与费为250欧元。", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Advanced system support and development [chat, email, phone]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nYetiForce Development price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 200 EUR / M\n- Small (21 to 50 users) - 380 EUR / M\n- Medium (51 to 250 users) - 700 EUR / M\n- Large (251 to 1000 users) - 1.200 EUR / M\n- Corporation (1000+ users) - 6.000 EUR / M\n\nThe number of support hours in YetiForce Development package depends on the size of the organization:\n- Micro [5h support / M]\n- Small [10h support / M]\n- Medium [20h support / M]\n- Large [40h support / M]\n- Corporation [200h support / M]\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "高性能又安全的云服务", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "我们将在最高效的基础架构上安装该系统,以满足最苛刻客户的期望。我们将关注安全、性能,并解决任何基础设施问题,以方便您。每个用户将收到几个到几 GB 的公司数据,数据库将放置在高性能英特尔 Optane 驱动器上。除了生产版本外,我们将配置系统的测试版本,您将获得对应用程序备份的完全访问权限。 \n 注意:我们从星期一到星期五上午8点至下午4点(CEST)工作,需要一个工作日来处理您的订单。", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "专业托管贵公司", diff --git a/install/languages/zh-TW/Settings/YetiForce.json b/install/languages/zh-TW/Settings/YetiForce.json index c871adea60ad..a2d28f9047ad 100644 --- a/install/languages/zh-TW/Settings/YetiForce.json +++ b/install/languages/zh-TW/Settings/YetiForce.json @@ -63,14 +63,14 @@ "LBL_SHOP_YETIFORCEDONATIONS_INTRO": "Help us create the best open system in the world and invest in your future!", "LBL_SHOP_YETIFORCEDONATIONS_DESC": "YetiForce has been installed by 40,000+ companies in over 100 countries, it is completely free and our company develops it together with customers and thanks to paid add-ons. The system is equipped with over 150 free functionalities, which you can adjust and modify.\n\nWe want the system to develop dynamically, so support our project with any amount per month (even with 1 Euro). All collected funds will be used for support tickets on GitHub (https://github.com/YetiForceCompany/YetiForceCRM/issues) and to create new functionalities, which will be available for free in the system.\n\nThe YetiForce system has always been and will remain free of charge, but it depends on you how it will continue to develop and whether it will be able to compete with the largest systems in the world. What we have already produced results from our passion and desire to create a unique system that is accessible to everyone.", "LBL_SHOP_YETIFORCEHELP_INTRO": "Basic support for system admins [email, video, documentation]", - "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n- Free update (only for customers who have purchased YetiForce Cloud or YetiForce Hosting)\n\nYetiForce Help price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 25 EUR / M\n- Small (21 to 50 users) - 50 EUR / M\n- Medium (51 to 250 users) - 100 EUR / M\n- Large (251 to 1000 users) - 250 EUR / M\n- Corporation (1000+ users) - 1250 EUR / M\n\nYetiForce Help contains a support limit depending on the size of the organization:\n- Micro [5 emails per month + 2 system updates per year]\n- Small [10 emails per month + 2 system updates per year]\n- Medium [15 emails per month + 4 system updates per year]\n- Large [20 emails per month + 6 system updates per year]\n- Corporation [30 emails per month + 12 system updates per year]\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", + "LBL_SHOP_YETIFORCEHELP_DESC": "YetiForce is a very powerful system, it provides 80+ user modules, 80+ configuration panels, 30+ tools, and understanding them all requires time and extensive experience. By purchasing basic support, you gain access to the knowledge and experience of the YetiForce team that develops the system. Support is provided in English and Polish.\n- Email support for users\n- Email support for admins\n\nSupport via email applies only to basic issues. If your company requires support regarding advanced system capabilities, e.g. creating new modules, process automation - or the system has been modified by a developer, we recommend purchasing the YetiForce Development package.", "LBL_SHOP_YETIFORCEDISABLEBRANDING_INTRO": "Replace YetiForce branding with your own", "LBL_SHOP_YETIFORCEDISABLEBRANDING_DESC": "Personalize YetiForce CRM branding by changing the data displayed in the system. Add essential information to the generated documents, enter your company's data in the footer, or set your own links to social media profiles.\n\nDisable YetiForce Branding allows you to remove links of YetiForce social media profiles from the footer of the system and replace them with links to your company's social media profiles. This will allow you to personalize the appearance of the YetiForce system so that application users don’t see redundant information in the footer. In addition, you will also disable the producer's footer in all e-mails sent by the system and PDF printouts generated by the system.\n\nNote: This addon doesn’t disable all YetiForce branding links that are found in the system. Go to Marketplace on our official website to find out more.", "LBL_SHOP_INTEGRATOR": "Integrator", "LBL_SHOP_INTEGRATOR_INTRO": "Offer the YetiForce system to your clients and gain exclusive perks available only to YetiForce Integrator partners.", "LBL_SHOP_INTEGRATOR_DESC": "REQUIREMENTS \n\n 1. Correct registration of all YetiForce installations used by the Partner and the Partner’s clients. \n 2. Owning a GitHub account and active participation in the YetiForce repository. \n\n BENEFITS \n\n 1. Direct support (chat, e-mail, GitHub) from the YetiForce team in terms of advanced problems related to system operation, API and configuration. Support can be provided in Polish or English. Support may also be provided to the Partner’s customers in cases when the Partner will not be able to help its customers. \n 2. The possibility of hiring YetiForce’s employees for large implementations (service available for an additional charge, provided remotely, communication in Polish and English). \n 3. The opportunity to cooperate in tenders (shared customer testimonials, a common list of specialists, support in price estimates). \n 4. Ability to use the “YetiForce Integrator” logo on the Internet. \n 5. Promotion in the partnership catalog on the official website and in the YetiForce system. \n 6. 10% discount on all products offered in the marketplace by the YetiForce producer and other Partners (also for Partner’s own customers). The possibility of booking a project - the discount might be 20% but it will be granted to a Partner which books the project as first. \n 7. The impact on the direction of system development and new functionalities. \n\n COST \n\n 1. The monthly participation fee for the YetiForce Integrator partnership is 250 €.", "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_INTRO": "Advanced system support and development [chat, email, phone]", - "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nYetiForce Development price varies depending on the size of the organization:\n- Micro (1 to 20 users) - 200 EUR / M\n- Small (21 to 50 users) - 380 EUR / M\n- Medium (51 to 250 users) - 700 EUR / M\n- Large (251 to 1000 users) - 1.200 EUR / M\n- Corporation (1000+ users) - 6.000 EUR / M\n\nThe number of support hours in YetiForce Development package depends on the size of the organization:\n- Micro [5h support / M]\n- Small [10h support / M]\n- Medium [20h support / M]\n- Large [40h support / M]\n- Corporation [200h support / M]\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", + "LBL_SHOP_YETIFORCEDEVELOPMENTSUPPORT_DESC": "Advanced system support allows comprehensive support not only for administrators but it also includes customization and adding new functionalities to the system. All work is coordinated by experienced developers who contribute to the system. Support is provided in English and Polish. YetiForce development package includes:\n- Email support for users (free)\n- Email support for admins (free)\n- Solving technical and system errors (subtracted from package hours)\n- Adding new functionalities to the system (subtracted from package hours)\n- System updates (subtracted from package hours)\n- Training (subtracted from package hours)\n\nEach email with description is analyzed and the number of hours is estimated. If the quote is accepted, the task is scheduled.", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_INTRO": "High-performance and safe cloud", "LBL_SHOP_YETIFORCEINSTALLINCLOUD_DESC": "We will install the system on the most efficient infrastructure that meets the expectations of the most demanding customers. We will take care of safety, performance and solve any infrastructure problem for your convenience. Each user will receive from a few to several GB for corporate data, and the database will be placed on high-performance Intel Optane drives. In addition to the production version, we will configure the testing version of the system and you will receive full access to the application backups. \n Note: We work from Monday to Friday 8am-4pm (CEST) and need one working day to process your order.", "LBL_SHOP_YETIFORCEINSTALLINHOSTING_INTRO": "Professional hosting for your company", diff --git a/languages/en-US/OSSMail.json b/languages/en-US/OSSMail.json index b86d936ae691..d7c5e709a683 100644 --- a/languages/en-US/OSSMail.json +++ b/languages/en-US/OSSMail.json @@ -88,6 +88,7 @@ "LBL_BLACK_LIST_DESC": "Add the addressee to blacklist, an e-mail will be marked as spam and moved to the spam folder.", "LBL_WHITE_LIST": "White list", "LBL_WHITE_LIST_DESC": "Add the addressee to whitelist, an e-mail will be marked as trusted.", + "LBL_ALERT_NEUTRAL_LIST": "Unknown e-mail sender, if the sender is trusted, add it the whitelist and if it is SPAM, add to the blacklist.", "LBL_BLACK_LIST_ALERT": "Dangerous sender address. The IP address has been blacklisted due to spam/spoofing/phishing.", "LBL_WHITE_LIST_ALERT": "Trusted sender server. The IP is on the server whitelist.", "LBL_ALERT_FAKE_MAIL": "Watch out for this message, it is not possible to verify if the message was in fact sent from the sender's address.\nDo not click any links, download attachments, or provide personal information in response.", diff --git a/languages/en-US/Settings/ConfReport.json b/languages/en-US/Settings/ConfReport.json index bcb64f79115b..6c97d1c43769 100644 --- a/languages/en-US/Settings/ConfReport.json +++ b/languages/en-US/Settings/ConfReport.json @@ -255,7 +255,8 @@ "LBL_FILE_SIZE": "Tables size", "LBL_FORMAT": "Row format", "LBL_ENGINE": "Engine", - "LBL_COLLATION": "Collation" + "LBL_COLLATION": "Collation", + "LBL_LAMP_CONFIG_FILES": "LAMP config files" }, "js": { "JS_SPEED_TEST_START": "Checking speed..." diff --git a/languages/en-US/Settings/Log.json b/languages/en-US/Settings/Log.json index 88a227d4cdd3..c7d5f5354557 100644 --- a/languages/en-US/Settings/Log.json +++ b/languages/en-US/Settings/Log.json @@ -21,6 +21,11 @@ "LBL_BASE_USER": "Base user", "LBL_DEST_USER": "Target user", "LBL_USER_AGENT": "User agent", + "LBL_MAILS_NOT_SENT": "E-mails not sent", + "LBL_BATCH_NAME": "Method name", + "LBL_PARAMS": "Params", + "LBL_PROFILING": "Profiling", + "LBL_DURATION": "Duration", "LBL_LOGS_VIEWER": "Logs viewer", "LBL_LOGS_VIEWER_DESCRIPTION": "" } diff --git a/languages/en-US/Settings/MailRbl.json b/languages/en-US/Settings/MailRbl.json index 66d8f09a1417..7292f970cd32 100644 --- a/languages/en-US/Settings/MailRbl.json +++ b/languages/en-US/Settings/MailRbl.json @@ -19,6 +19,7 @@ "LBL_OTHER_MESSAGE_CONTAINS_INAPPROPRIATE_WORDS": "[Other] The message contains inappropriate words", "LBL_OTHER_MESSAGE_CONTAINS_INAPPROPRIATE_MATERIALS": "[Other] The message contains inappropriate materials", "LBL_OTHER_MALICIOUS_MESSAGE": "[Other] Malicious message", + "LBL_TRUSTED_SENDER": "[Whitelist] Trusted sender", "LBL_REPORT_IP": "Ip", "LBL_REPORT_TYPE": "Type", "LBL_REPORT_DESC": "Report details", diff --git a/languages/en-US/Settings/Profiles.json b/languages/en-US/Settings/Profiles.json index 62f37962385d..59a7b5b67758 100644 --- a/languages/en-US/Settings/Profiles.json +++ b/languages/en-US/Settings/Profiles.json @@ -84,9 +84,9 @@ "Guest Profile": "Guest", "RemoveRelation": "Remove relation", "ReceivingMailNotifications": "Receiving mail notifications", - "ActivityCancel": "Cancel records", + "ActivityCancel": "Set activity status to canceled", "ActivityComplete": "Set activity status to completed", - "ActivityPostponed": "Postpone records", + "ActivityPostponed": "Set activity status to postponed", "Emails": "Send emails [SMTP]", "ModTracker": "Change history", "AssignToYourself": "Assign to me", diff --git a/languages/en-US/Settings/Widgets.json b/languages/en-US/Settings/Widgets.json index d61ba96b1439..273f138c913d 100644 --- a/languages/en-US/Settings/Widgets.json +++ b/languages/en-US/Settings/Widgets.json @@ -61,7 +61,9 @@ "CountRecords": "Number of records", "LBL_LIST_WITH_SUMMARY": "List with summary", "LBL_CURRENT_HISTORY_SWITCH": "Current/History", - "RelatedModuleChart": "Related module - chart" + "RelatedModuleChart": "Related module - chart", + "Documents": "Documents", + "LBL_SHOW_DOC_RELATIONS": "List of related relationships" }, "js": { "Loading data": "Loading...", diff --git a/languages/en-US/_Base.json b/languages/en-US/_Base.json index 4f9972d3d566..8fb87c475661 100644 --- a/languages/en-US/_Base.json +++ b/languages/en-US/_Base.json @@ -399,6 +399,7 @@ "LBL_PREDEFINED_WIDGETS": "Predefined widgets", "LBL_PREVIOUS_FQ": "Previous FQ", "LBL_PREVIOUS_FY": "Previous FY", + "LBL_DATE_CONDITION_MORE_THAN_DAYS_AGO": "More than days ago", "LBL_PRE_TAX_TOTAL": "Pre tax total", "LBL_PRICING_INFORMATION": "Pricing information", "LBL_PRIVACY_POLICY": "Privacy policy", @@ -1611,6 +1612,7 @@ "JS_YOU_CAN_SELECT_ONLY": "You can select only", "LBL_DELETE_CONFIRMATION": "Are you sure you want to delete?", "JS_CHANGE_VALUE_CONFIRMATION": "Do you want to set this value?", + "JS_CHANGE_CONFIRMATION": "Are you sure you want to make changes?", "JS_DELETE_CONFIRMATION": "Are you sure you want to delete the relation with this module? Only the relation will be removed, to remove the record you have to go to the record and press delete", "LBL_DELETE_USER_CONFIRMATION": "When a User is deleted, the user will be marked as \"Inactive\" and no new records can be assigned to the User, and the user will not be able to login. Billing will stop for this user. Are you sure you want to delete?", "LBL_MASS_DELETE_CONFIRMATION": "Are you sure you want to delete the selected records?", diff --git a/layouts/basic/components/MailMessageAnalysisModal.tpl b/layouts/basic/components/MailMessageAnalysisModal.tpl index 531df567a166..9d5614873c18 100644 --- a/layouts/basic/components/MailMessageAnalysisModal.tpl +++ b/layouts/basic/components/MailMessageAnalysisModal.tpl @@ -24,6 +24,9 @@ {/if} {/foreach} + {if $SENDER['key'] === $ROW['key']} +