diff --git a/languages/en_us/Vtiger.php b/languages/en_us/Vtiger.php index 42acf45725dcccb740be575b203f21ff9a9172a0..596c3caa76d0578e5d40cd59e26526b4564c1694 100644 --- a/languages/en_us/Vtiger.php +++ b/languages/en_us/Vtiger.php @@ -1164,6 +1164,7 @@ $languageStrings = array( 'LBL_MARKETING' => 'MARKETING', 'LBL_SALES' => 'SALES', 'LBL_PROJECT' => 'PROJECTS', + 'LBL_TOOLS' => 'TOOLS', 'LBL_TAGS' => 'Tags', 'LBL_SHARE_TAGS' => 'Public Tags', 'LBL_SHARE_TAG' => 'Shared Tag(s)', diff --git a/layouts/v7/modules/Mobile/simple/Vtiger/js/Edit.js b/layouts/v7/modules/Mobile/simple/Vtiger/js/Edit.js index eef413183dddf69eb55b8f4b4a52e63ab33bd61b..c0012c497dd92bec970e70d5db522bf3f0fceb70 100644 --- a/layouts/v7/modules/Mobile/simple/Vtiger/js/Edit.js +++ b/layouts/v7/modules/Mobile/simple/Vtiger/js/Edit.js @@ -19,9 +19,6 @@ mobileapp.controller('VtigerEditController', function ($scope, $api, $mdToast, $ if(newrecord){ if (typeof field.default != 'undefined') field.raw = field.default; else if (typeof field.type.defaultValue != 'undefined') field.raw = field.type.defaultValue; - - // Special case - if (field.type.name == 'owner' && field.mandatory && !field.raw) { field.raw = "19x" + $scope.userinfo.id; } } if(!newrecord && value){ field.raw = value; diff --git a/modules/Migration/schema/660_to_700.php b/modules/Migration/schema/660_to_700.php index 63903d3e7ede16e6a6bb63d4e7cffffe145d2e86..2e0fb8a3ea145aa7856f4f3a1da061c3f507c572 100644 --- a/modules/Migration/schema/660_to_700.php +++ b/modules/Migration/schema/660_to_700.php @@ -1220,9 +1220,6 @@ if(defined('VTIGER_UPGRADE')) { transition_data VARCHAR(1000) NOT NULL)', true); } - //Adding user specific field to Calendar table instead of events table - $db->pquery('UPDATE vtiger_field SET tablename=? WHERE tablename=?', array('vtiger_calendar_user_field', 'vtiger_events_user_field')); - //Invite users table mod to support status tracking $columns = $db->getColumnNames('vtiger_invitees'); if (!in_array('status', $columns)) { diff --git a/modules/Migration/schema/701_to_710.php b/modules/Migration/schema/701_to_710.php index 6e62b7b19c9acf03af2311be4c5cb0861eaf0262..f1c1edb3cd945644f42ebb485e64ed24eb1e0a0f 100644 --- a/modules/Migration/schema/701_to_710.php +++ b/modules/Migration/schema/701_to_710.php @@ -182,9 +182,20 @@ if (defined('VTIGER_UPGRADE')) { Vtiger_Utils::CreateTable($generalUserFieldTable, '(`recordid` INT(19) NOT NULL, `userid` INT(19) NOT NULL, - `starred` VARCHAR(100) DEFAULT NULL, - Index `record_user_idx` (`recordid`, `userid`), - FOREIGN KEY (recordid) REFERENCES vtiger_crmentity(crmid) ON DELETE CASCADE)', true); + `starred` VARCHAR(100) DEFAULT NULL', true); + } + + if (Vtiger_Utils::CheckTable($generalUserFieldTable)) { + $indexRes = $db->pquery("SHOW INDEX FROM $generalUserFieldTable WHERE NON_UNIQUE=? AND KEY_NAME=?", array('1', 'record_user_idx')); + if ($db->num_rows($indexRes) < 2) { + $db->pquery('ALTER TABLE vtiger_crmentity_user_field ADD CONSTRAINT record_user_idx UNIQUE KEY(recordid, userid)', array()); + } + + $checkUserFieldConstraintExists = $db->pquery('SELECT DISTINCT 1 FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE table_name=? AND CONSTRAINT_SCHEMA=?', array($generalUserFieldTable, $db->dbName)); + if ($db->num_rows($checkUserFieldConstraintExists) < 1) { + $db->pquery('ALTER TABLE vtiger_crmentity_user_field ADD CONSTRAINT `fk_vtiger_crmentity_user_field_recordid` FOREIGN KEY (`recordid`) REFERENCES `vtiger_crmentity`(`crmid`) ON DELETE CASCADE', array()); + } + } $migratedTables = array(); @@ -216,7 +227,7 @@ if (defined('VTIGER_UPGRADE')) { //END::Centralize user field table for easy query with context of user across module //START::Adding new parent TOOLS in menu - $appsList = array('TOOLS' => array('Rss', 'Portal')); + $appsList = array('TOOLS' => array('Rss', 'Portal', 'Contacts', 'Accounts')); foreach ($appsList as $app => $appModules) { foreach ($appModules as $moduleName) { $moduleModel = Vtiger_Module_Model::getInstance($moduleName); diff --git a/packages/vtiger/mandatory/Mobile.zip b/packages/vtiger/mandatory/Mobile.zip index a9f0af45a4a79024b1a3510a74d56f79a2081116..eb756d8ec80ed7e97b49283196a203b492b22b5b 100644 Binary files a/packages/vtiger/mandatory/Mobile.zip and b/packages/vtiger/mandatory/Mobile.zip differ diff --git a/packages/vtiger/optional/Arabic_ar_ae.zip b/packages/vtiger/optional/Arabic_ar_ae.zip index 587e241cf23006cd575ac304a56d2d5ced60a86e..7b4ac9db2115e4e7ffa789a78e39638e99d6ea55 100644 Binary files a/packages/vtiger/optional/Arabic_ar_ae.zip and b/packages/vtiger/optional/Arabic_ar_ae.zip differ diff --git a/packages/vtiger/optional/BrazilianLanguagePack_bz_bz.zip b/packages/vtiger/optional/BrazilianLanguagePack_bz_bz.zip index adad7c9d83947ee6089153d3525b790ca9b999f7..d8b9eb4bfda22aec03f2179520e3544dafbd3155 100644 Binary files a/packages/vtiger/optional/BrazilianLanguagePack_bz_bz.zip and b/packages/vtiger/optional/BrazilianLanguagePack_bz_bz.zip differ diff --git a/packages/vtiger/optional/BritishLanguagePack_br_br.zip b/packages/vtiger/optional/BritishLanguagePack_br_br.zip index 9045cafb9507a2fc318524a9503f642c56f3c220..2597fca56c7d5c80045ff6346b0bcc020546212f 100644 Binary files a/packages/vtiger/optional/BritishLanguagePack_br_br.zip and b/packages/vtiger/optional/BritishLanguagePack_br_br.zip differ diff --git a/packages/vtiger/optional/Deutsch.zip b/packages/vtiger/optional/Deutsch.zip index 19d8604980da73edaeb07ebf83b8e4c13da327e7..d8c8baa8bdfbd9b7db239c88182e88c531eba6a3 100644 Binary files a/packages/vtiger/optional/Deutsch.zip and b/packages/vtiger/optional/Deutsch.zip differ diff --git a/packages/vtiger/optional/Dutch.zip b/packages/vtiger/optional/Dutch.zip index df28fd867b3f5d71f86facca05c8f356595a5b67..621070c2914d29f45aa810e4f9ce629bf82022b1 100644 Binary files a/packages/vtiger/optional/Dutch.zip and b/packages/vtiger/optional/Dutch.zip differ diff --git a/packages/vtiger/optional/French.zip b/packages/vtiger/optional/French.zip index e5edabd61e2d913dba801d65a697249d3248a1b7..a8d3d1dad8b7b06069619d0064308f2fb73e038f 100644 Binary files a/packages/vtiger/optional/French.zip and b/packages/vtiger/optional/French.zip differ diff --git a/packages/vtiger/optional/Hungarian.zip b/packages/vtiger/optional/Hungarian.zip index 842405c8973fc744859be2abf69ca92f0f151715..e96f83a889e864ef1711711e4e4d292dbf5f5164 100644 Binary files a/packages/vtiger/optional/Hungarian.zip and b/packages/vtiger/optional/Hungarian.zip differ diff --git a/packages/vtiger/optional/ItalianLanguagePack_it_it.zip b/packages/vtiger/optional/ItalianLanguagePack_it_it.zip index 2a6d5f73715d33369086dac8772c674c5d9b86cb..58929062c52a9aeb6acb78a3cd89f02ebd43d4bc 100644 Binary files a/packages/vtiger/optional/ItalianLanguagePack_it_it.zip and b/packages/vtiger/optional/ItalianLanguagePack_it_it.zip differ diff --git a/packages/vtiger/optional/MexicanSpanishLanguagePack_es_mx.zip b/packages/vtiger/optional/MexicanSpanishLanguagePack_es_mx.zip index 88df38253ef14161bef62bd14ddf0595dd72ac00..e53fb489cf476ecc3affda19fb70530a74a4be0f 100644 Binary files a/packages/vtiger/optional/MexicanSpanishLanguagePack_es_mx.zip and b/packages/vtiger/optional/MexicanSpanishLanguagePack_es_mx.zip differ diff --git a/packages/vtiger/optional/PolishLanguagePack_pl_pl.zip b/packages/vtiger/optional/PolishLanguagePack_pl_pl.zip index 1c4502bbdfce827d89a9272cb144a265bde38401..51371bcf3308760252a8f412cc5d0e475ad0fb8c 100644 Binary files a/packages/vtiger/optional/PolishLanguagePack_pl_pl.zip and b/packages/vtiger/optional/PolishLanguagePack_pl_pl.zip differ diff --git a/packages/vtiger/optional/RomanianLanguagePack_rm_rm.zip b/packages/vtiger/optional/RomanianLanguagePack_rm_rm.zip index 09159238d0ca8686290d23a169e79d2651f84698..7817d99305866b5211c2e5710eabfcffa7fb764a 100644 Binary files a/packages/vtiger/optional/RomanianLanguagePack_rm_rm.zip and b/packages/vtiger/optional/RomanianLanguagePack_rm_rm.zip differ diff --git a/packages/vtiger/optional/Russian.zip b/packages/vtiger/optional/Russian.zip index 8590178c1919534d83f37b3243060e78b9652267..2ae0df3a86810bb3874ad122c742e0f38a500517 100644 Binary files a/packages/vtiger/optional/Russian.zip and b/packages/vtiger/optional/Russian.zip differ diff --git a/packages/vtiger/optional/Spanish.zip b/packages/vtiger/optional/Spanish.zip index 5b0c8e9f80180323dbbaefb65ea9691c911a37d0..74a15d1b946851147ec424c1e69713a8fad59206 100644 Binary files a/packages/vtiger/optional/Spanish.zip and b/packages/vtiger/optional/Spanish.zip differ diff --git a/packages/vtiger/optional/Sweden_sv_se.zip b/packages/vtiger/optional/Sweden_sv_se.zip index af9cee8997f4c688cd1ba635866f20d951238dea..0b944397cdca72ca1762541eb62e1f877a6f0107 100644 Binary files a/packages/vtiger/optional/Sweden_sv_se.zip and b/packages/vtiger/optional/Sweden_sv_se.zip differ diff --git a/packages/vtiger/optional/TurkishLanguagePack_tr_tr.zip b/packages/vtiger/optional/TurkishLanguagePack_tr_tr.zip index 5def5083ee1814af41a417abba98b6253e6a2fdc..b448f67f72af27ab2a07147a8381d77fbfe7da09 100644 Binary files a/packages/vtiger/optional/TurkishLanguagePack_tr_tr.zip and b/packages/vtiger/optional/TurkishLanguagePack_tr_tr.zip differ diff --git a/pkg/vtiger/modules/Mobile/modules/Mobile/api/ws/Describe.php b/pkg/vtiger/modules/Mobile/modules/Mobile/api/ws/Describe.php index 00d04b56ab2e8c34bfa76893f262dcffbf8ecd6f..5fee0d5dc9f9e6b1835dcc842cef02f9100fbe65 100644 --- a/pkg/vtiger/modules/Mobile/modules/Mobile/api/ws/Describe.php +++ b/pkg/vtiger/modules/Mobile/modules/Mobile/api/ws/Describe.php @@ -42,7 +42,12 @@ class Mobile_WS_Describe extends Mobile_WS_Controller { $groups[$groupsWSId.'x'.$id] = $name; } $field['type']['picklistValues']['users'] = $users; - $field['type']['picklistValues']['groups'] = $groups; + $field['type']['picklistValues']['groups'] = $groups; + + //Special treatment to set default mandatory owner field + if (!$field['default']) { + $field['default'] = $usersWSId.'x'.$current_user->id; + } } if($fieldModel && $fieldModel->get('name') == 'salutationtype') { $values = $fieldModel->getPicklistValues(); diff --git a/pkg/vtiger/translations/Arabic_ar_ae/modules/Vtiger.php b/pkg/vtiger/translations/Arabic_ar_ae/modules/Vtiger.php index c3eb45d0e10435ba76f7e6355032f49833e4e57c..d10ef6f1a800b8b9971241686ac1d8455aa22b8b 100644 --- a/pkg/vtiger/translations/Arabic_ar_ae/modules/Vtiger.php +++ b/pkg/vtiger/translations/Arabic_ar_ae/modules/Vtiger.php @@ -1140,6 +1140,7 @@ Vtiger الاتصالات جوجل اتصالات(مجموعة مختارة Ù…Ø 'LBL_MARKETING' => 'التسويق', 'LBL_SALES' => 'المبيعات', 'LBL_PROJECT' => 'المشاريع', + 'LBL_TOOLS' => 'أدوات', 'LBL_TAGS' => 'Tags', 'LBL_SHARE_TAGS' => 'الجمهور العلامات', 'LBL_SHARE_TAG' => 'Øصة العلامة', diff --git a/pkg/vtiger/translations/BrazilianLanguagePack_bz_bz/modules/Vtiger.php b/pkg/vtiger/translations/BrazilianLanguagePack_bz_bz/modules/Vtiger.php index 86c0db0bbe36085478668e7e990821066115ca4e..c07800290df246355a833f7eeeb78d0733236de1 100644 --- a/pkg/vtiger/translations/BrazilianLanguagePack_bz_bz/modules/Vtiger.php +++ b/pkg/vtiger/translations/BrazilianLanguagePack_bz_bz/modules/Vtiger.php @@ -1164,6 +1164,7 @@ $languageStrings = array( 'LBL_MARKETING' => 'MARKETING', 'LBL_SALES' => 'VENDAS', 'LBL_PROJECT' => 'PROJETOS', + 'LBL_TOOLS' => 'FERRAMENTAS', 'LBL_TAGS' => 'Tags', 'LBL_SHARE_TAGS' => 'Tags Pública', 'LBL_SHARE_TAG' => 'Tag(s) Campartilhada(s)', @@ -1385,8 +1386,8 @@ $languageStrings = array( 'LBL_RECENT_UPDATES' => 'Atualizações recentes', 'LBL_VIEW_UPDATES_IN_DETAIL' => 'Ler Mais...', 'LBL_DEFAULT_DASHBOARD_TOOLTIP' => 'Tornar este Painel como padrão, reordenando-o como primeira aba!', -); +); $jsLanguageStrings = array( 'JS_EMAIL_SERVER_CONFIGURATION' => 'Por favor, ajuste as configurações do Servidor Envio Mensagens a partir do menu Configurações', 'JS_SMS_SERVER_CONFIGURATION' => 'Por favor, configure seu Notificador SMS na página de configuração do Notificar SMS', @@ -1921,4 +1922,4 @@ $jsLanguageStrings = array( 'JS_SET_DEFAULT_TAB' => 'é definido como o painel de controle padrão', 'JS_PASSWORD_MISMATCH_ERROR' => 'Por favor, redigite as senhas. Os valores da "nova senha" e "confirmação da senha" não combinam.', 'LBL_LIST_DELETE_CONFIRMATION' => 'Você em certeza que deseja apagar?', -); +); \ No newline at end of file diff --git a/pkg/vtiger/translations/BritishLanguagePack_br_br/modules/Vtiger.php b/pkg/vtiger/translations/BritishLanguagePack_br_br/modules/Vtiger.php index 28b830dfc33ee765c3b1ec6aacd9a53fb8f3f3de..1d8ee191141c82ae1304e37bd92909f48ac529e7 100644 --- a/pkg/vtiger/translations/BritishLanguagePack_br_br/modules/Vtiger.php +++ b/pkg/vtiger/translations/BritishLanguagePack_br_br/modules/Vtiger.php @@ -996,6 +996,7 @@ $languageStrings = array( 'LBL_MARKETING' => 'MARKETING', 'LBL_SALES' => 'SALES', 'LBL_PROJECT' => 'PROJECTS', + 'LBL_TOOLS' => 'TOOLS', 'LBL_TAGS' => 'Tags', 'LBL_SHARE_TAGS' => 'Public Tags', 'LBL_SHARE_TAG' => 'Share Tag', diff --git a/pkg/vtiger/translations/Deutsch/modules/Vtiger.php b/pkg/vtiger/translations/Deutsch/modules/Vtiger.php index fd7f0c6c2b657c07183d0544888abe6423baf756..68f4f6836aa708209b56d74fcf925a16cbc02d09 100644 --- a/pkg/vtiger/translations/Deutsch/modules/Vtiger.php +++ b/pkg/vtiger/translations/Deutsch/modules/Vtiger.php @@ -996,6 +996,7 @@ außerhalb Vtiger.', 'LBL_MARKETING' => 'MARKETING', 'LBL_SALES' => 'UMSATZ', 'LBL_PROJECT' => 'PROJEKTE', + 'LBL_TOOLS' => 'WERKZEUGE', 'LBL_TAGS' => 'Tags', 'LBL_SHARE_TAGS' => 'Öffentliche Tags', 'LBL_SHARE_TAG' => 'Teilen Tag', diff --git a/pkg/vtiger/translations/Dutch/modules/Vtiger.php b/pkg/vtiger/translations/Dutch/modules/Vtiger.php index 02d705248109189e97c6b30e03f841d8e4f682b3..864aa6860a25180df23e976ade6e719c30b4c28a 100644 --- a/pkg/vtiger/translations/Dutch/modules/Vtiger.php +++ b/pkg/vtiger/translations/Dutch/modules/Vtiger.php @@ -1003,6 +1003,7 @@ buiten Vtiger.', 'LBL_MARKETING' => 'MARKETING', 'LBL_SALES' => 'VERKOOP', 'LBL_PROJECT' => 'PROJECTEN', + 'LBL_TOOLS' => 'GEREEDSCHAP', 'LBL_TAGS' => 'Tags', 'LBL_SHARE_TAGS' => 'Openbare Tags', 'LBL_SHARE_TAG' => 'Delen-Tag', diff --git a/pkg/vtiger/translations/French/modules/Vtiger.php b/pkg/vtiger/translations/French/modules/Vtiger.php index f67e9ba7ac24b3100d1232ba4ce3439aaf3e852d..f59e3ad7bc3bca69470cb3571833f0b0e7156c5c 100644 --- a/pkg/vtiger/translations/French/modules/Vtiger.php +++ b/pkg/vtiger/translations/French/modules/Vtiger.php @@ -1004,6 +1004,7 @@ en dehors de Vtiger.', 'LBL_MARKETING' => 'MARKETING', 'LBL_SALES' => 'VENTE', 'LBL_PROJECT' => 'PROJETS', + 'LBL_TOOLS' => 'OUTILS', 'LBL_TAGS' => 'Tags', 'LBL_SHARE_TAGS' => 'Public Les Tags', 'LBL_SHARE_TAG' => 'Partager La Balise', diff --git a/pkg/vtiger/translations/Hungarian/modules/Vtiger.php b/pkg/vtiger/translations/Hungarian/modules/Vtiger.php index bdc7e07eb4c331106490d803d7042712739f2871..ad5ad61c920ccb7108c8a77ea8be0dc5a422b5eb 100644 --- a/pkg/vtiger/translations/Hungarian/modules/Vtiger.php +++ b/pkg/vtiger/translations/Hungarian/modules/Vtiger.php @@ -1010,6 +1010,7 @@ kÃvül Vtiger.', 'LBL_MARKETING' => 'MARKETING', 'LBL_SALES' => 'ÉRTÉKESÃTÉS', 'LBL_PROJECT' => 'PROJEKTEK', + 'LBL_TOOLS' => 'ESZKÖZÖK', 'LBL_TAGS' => 'CÃmkék', 'LBL_SHARE_TAGS' => 'Nyilvános CÃmkék', 'LBL_SHARE_TAG' => 'Megosztás Tag', diff --git a/pkg/vtiger/translations/ItalianLanguagePack_it_it/modules/Vtiger.php b/pkg/vtiger/translations/ItalianLanguagePack_it_it/modules/Vtiger.php index d230bd313645ce69fc14fe3bf0ab3aceca723ce4..a63deff7621b7b598a3a067d47f8b9eab376d0f5 100644 --- a/pkg/vtiger/translations/ItalianLanguagePack_it_it/modules/Vtiger.php +++ b/pkg/vtiger/translations/ItalianLanguagePack_it_it/modules/Vtiger.php @@ -1005,6 +1005,7 @@ al di fuori di Vtiger.', 'LBL_MARKETING' => 'MARKETING', 'LBL_SALES' => 'VENDITA', 'LBL_PROJECT' => 'PROGETTI', + 'LBL_TOOLS' => 'UTENSILI', 'LBL_TAGS' => 'Tag', 'LBL_SHARE_TAGS' => 'Tag Pubblici', 'LBL_SHARE_TAG' => 'Share Tag', diff --git a/pkg/vtiger/translations/MexicanSpanishLanguagePack_es_mx/modules/Vtiger.php b/pkg/vtiger/translations/MexicanSpanishLanguagePack_es_mx/modules/Vtiger.php index b35d86d80c79f27b65e55afd62ed9becb6fe1135..4112717084bc3d2a2cf2359dadb631df3bc7b8b1 100644 --- a/pkg/vtiger/translations/MexicanSpanishLanguagePack_es_mx/modules/Vtiger.php +++ b/pkg/vtiger/translations/MexicanSpanishLanguagePack_es_mx/modules/Vtiger.php @@ -1002,6 +1002,7 @@ fuera de Vtiger.', 'LBL_MARKETING' => 'MARKETING', 'LBL_SALES' => 'VENTAS', 'LBL_PROJECT' => 'PROYECTOS', + 'LBL_TOOLS' => 'HERRAMIENTAS', 'LBL_TAGS' => 'Etiquetas', 'LBL_SHARE_TAGS' => 'Etiquetas Públicas', 'LBL_SHARE_TAG' => 'Compartir Etiqueta', diff --git a/pkg/vtiger/translations/PolishLanguagePack_pl_pl/modules/Vtiger.php b/pkg/vtiger/translations/PolishLanguagePack_pl_pl/modules/Vtiger.php index 14a8a6d0cd01a910ad9b8c727980640ea9dc05ee..77e8f37bd04f598269f74750579ae81704902194 100644 --- a/pkg/vtiger/translations/PolishLanguagePack_pl_pl/modules/Vtiger.php +++ b/pkg/vtiger/translations/PolishLanguagePack_pl_pl/modules/Vtiger.php @@ -1134,6 +1134,7 @@ na zewnÄ…trz free rosyjska.', 'LBL_MARKETING' => 'Marketing', 'LBL_SALES' => 'Sprzedaży', 'LBL_PROJECT' => 'Projekty', + 'LBL_TOOLS' => 'PRZYBORY', 'LBL_TAGS' => 'Tagi', 'LBL_SHARE_TAGS' => 'Tagi Publicznego', 'LBL_SHARE_TAG' => 'Podziel SiÄ™ Tag', diff --git a/pkg/vtiger/translations/RomanianLanguagePack_rm_rm/modules/Vtiger.php b/pkg/vtiger/translations/RomanianLanguagePack_rm_rm/modules/Vtiger.php index bb1a8eaba272c9e2a4abc42998d0242a18e7063d..a2f5c0f8de1c7dd3b93d2d204863c6ab84d2ba28 100644 --- a/pkg/vtiger/translations/RomanianLanguagePack_rm_rm/modules/Vtiger.php +++ b/pkg/vtiger/translations/RomanianLanguagePack_rm_rm/modules/Vtiger.php @@ -1006,6 +1006,7 @@ FaceÈ›i clic pe autorizaÈ›i È™i de a obÈ›ine Contacte din Google.', 'LBL_MARKETING' => 'Marketing', 'LBL_SALES' => 'Vanzari', 'LBL_PROJECT' => 'Proiecte', + 'LBL_TOOLS' => 'INSTRUMENTE', 'LBL_TAGS' => 'Tag-uri', 'LBL_SHARE_TAGS' => 'Tag-Uri Publice', 'LBL_SHARE_TAG' => 'ÃŽmpărtăși Tag-Ul', diff --git a/pkg/vtiger/translations/Russian/modules/Vtiger.php b/pkg/vtiger/translations/Russian/modules/Vtiger.php index 67f0cfeec79c7b40331ce5ec7633c54bfccef05e..d6d499f4920634e4a806448f937abbc3e04d59c3 100644 --- a/pkg/vtiger/translations/Russian/modules/Vtiger.php +++ b/pkg/vtiger/translations/Russian/modules/Vtiger.php @@ -1005,6 +1005,7 @@ $languageStrings = array( 'LBL_MARKETING' => 'Маркетинг', 'LBL_SALES' => 'Продаж', 'LBL_PROJECT' => 'Проекты', + 'LBL_TOOLS' => 'ИÐСТРУМЕÐТЫ', 'LBL_TAGS' => 'Теги', 'LBL_SHARE_TAGS' => 'Теги ОбщеÑтвенного', 'LBL_SHARE_TAG' => 'ПоделитьÑÑ Ð¢ÐµÐ³', diff --git a/pkg/vtiger/translations/Spanish/modules/Vtiger.php b/pkg/vtiger/translations/Spanish/modules/Vtiger.php index 94f93268893f582e2402474533d5d1982ea1281b..fab042636ca6f892ef785a9464f8ea4f8707d383 100644 --- a/pkg/vtiger/translations/Spanish/modules/Vtiger.php +++ b/pkg/vtiger/translations/Spanish/modules/Vtiger.php @@ -1016,6 +1016,7 @@ fuera de Vtiger.', 'LBL_MARKETING' => 'MARKETING', 'LBL_SALES' => 'VENTAS', 'LBL_PROJECT' => 'PROYECTOS', + 'LBL_TOOLS' => 'HERRAMIENTAS', 'LBL_TAGS' => 'Etiquetas', 'LBL_SHARE_TAGS' => 'Etiquetas Públicas', 'LBL_SHARE_TAG' => 'Compartir Etiqueta', diff --git a/pkg/vtiger/translations/Sweden_sv_se/modules/Vtiger.php b/pkg/vtiger/translations/Sweden_sv_se/modules/Vtiger.php index 29a34a4ef8d80562cd54f87c44b06beecb1b34b6..8f0a7d747480ce17af8dd8678fead64dea14644f 100755 --- a/pkg/vtiger/translations/Sweden_sv_se/modules/Vtiger.php +++ b/pkg/vtiger/translations/Sweden_sv_se/modules/Vtiger.php @@ -1141,6 +1141,7 @@ utanför Vtiger.', 'LBL_MARKETING' => 'MARKNADSFÖRING', 'LBL_SALES' => 'FÖRSÄLJNING', 'LBL_PROJECT' => 'PROJEKT', + 'LBL_TOOLS' => 'VERKTYG', 'LBL_TAGS' => 'Taggar', 'LBL_SHARE_TAGS' => 'Offentliga Taggar', 'LBL_SHARE_TAG' => 'Dela Tag', diff --git a/pkg/vtiger/translations/TurkishLanguagePack_tr_tr/modules/Vtiger.php b/pkg/vtiger/translations/TurkishLanguagePack_tr_tr/modules/Vtiger.php index 624188be0693c98d3697aa1b20d31d1f115b3fef..3810c4e3ef67f77252b307a6ed8f5a85df1ca28a 100644 --- a/pkg/vtiger/translations/TurkishLanguagePack_tr_tr/modules/Vtiger.php +++ b/pkg/vtiger/translations/TurkishLanguagePack_tr_tr/modules/Vtiger.php @@ -1004,6 +1004,7 @@ Vtiger dışında.', 'LBL_MARKETING' => 'PAZARLAMA', 'LBL_SALES' => 'SATIÅž', 'LBL_PROJECT' => 'PROJELER', + 'LBL_TOOLS' => 'ARAÇLAR', 'LBL_TAGS' => 'Etiketler', 'LBL_SHARE_TAGS' => 'Kamu Etiketleri', 'LBL_SHARE_TAG' => 'Hisse Etiketi',