Preview: una.sql
Size: 1.15 MB
/var/softaculous/una/una.sql
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `una1400`
--
-- --------------------------------------------------------
--
-- Table structure for table `bx_persons_cmts`
--
CREATE TABLE `bx_persons_cmts` (
`cmt_id` int(11) NOT NULL AUTO_INCREMENT,
`cmt_parent_id` int(11) NOT NULL DEFAULT '0',
`cmt_vparent_id` int(11) NOT NULL DEFAULT '0',
`cmt_object_id` int(11) NOT NULL DEFAULT '0',
`cmt_author_id` int(11) NOT NULL DEFAULT '0',
`cmt_level` int(11) NOT NULL DEFAULT '0',
`cmt_text` text COLLATE utf8mb4_unicode_ci NOT NULL,
`cmt_mood` tinyint(4) NOT NULL DEFAULT '0',
`cmt_rate` int(11) NOT NULL DEFAULT '0',
`cmt_rate_count` int(11) NOT NULL DEFAULT '0',
`cmt_time` int(11) unsigned NOT NULL DEFAULT '0',
`cmt_replies` int(11) NOT NULL DEFAULT '0',
`cmt_pinned` int(11) NOT NULL DEFAULT '0',
`cmt_cf` int(11) NOT NULL DEFAULT '1',
PRIMARY KEY (`cmt_id`),
KEY `cmt_object_id` (`cmt_object_id`,`cmt_parent_id`),
FULLTEXT KEY `search_fields` (`cmt_text`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `bx_persons_cmts_notes`
--
CREATE TABLE `bx_persons_cmts_notes` (
`cmt_id` int(11) NOT NULL AUTO_INCREMENT,
`cmt_parent_id` int(11) NOT NULL DEFAULT '0',
`cmt_vparent_id` int(11) NOT NULL DEFAULT '0',
`cmt_object_id` int(11) NOT NULL DEFAULT '0',
`cmt_author_id` int(11) NOT NULL DEFAULT '0',
`cmt_level` int(11) NOT NULL DEFAULT '0',
`cmt_text` text COLLATE utf8mb4_unicode_ci NOT NULL,
`cmt_mood` tinyint(4) NOT NULL DEFAULT '0',
`cmt_rate` int(11) NOT NULL DEFAULT '0',
`cmt_rate_count` int(11) NOT NULL DEFAULT '0',
`cmt_time` int(11) unsigned NOT NULL DEFAULT '0',
`cmt_replies` int(11) NOT NULL DEFAULT '0',
`cmt_pinned` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`cmt_id`),
KEY `cmt_object_id` (`cmt_object_id`,`cmt_parent_id`),
FULLTEXT KEY `search_fields` (`cmt_text`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `bx_persons_data`
--
CREATE TABLE `bx_persons_data` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`author` int(10) unsigned NOT NULL,
`added` int(11) NOT NULL,
`changed` int(11) NOT NULL,
`picture` int(11) NOT NULL,
`cover` int(11) NOT NULL,
`cover_data` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`fullname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`last_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`gender` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`birthday` date DEFAULT NULL,
`labels` text COLLATE utf8mb4_unicode_ci NOT NULL,
`location` text COLLATE utf8mb4_unicode_ci NOT NULL,
`views` int(11) NOT NULL DEFAULT '0',
`rate` float NOT NULL DEFAULT '0',
`votes` int(11) NOT NULL DEFAULT '0',
`score` int(11) NOT NULL DEFAULT '0',
`sc_up` int(11) NOT NULL DEFAULT '0',
`sc_down` int(11) NOT NULL DEFAULT '0',
`favorites` int(11) NOT NULL DEFAULT '0',
`comments` int(11) NOT NULL DEFAULT '0',
`reports` int(11) NOT NULL DEFAULT '0',
`featured` int(11) NOT NULL DEFAULT '0',
`allow_view_to` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '3',
`allow_post_to` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '5',
`allow_contact_to` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '3',
`settings` text COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
FULLTEXT KEY `search_fields` (`fullname`,`description`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `bx_persons_favorites_track`
--
CREATE TABLE `bx_persons_favorites_track` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object_id` int(11) NOT NULL DEFAULT '0',
`author_id` int(11) NOT NULL DEFAULT '0',
`date` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `id` (`object_id`,`author_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `bx_persons_meta_keywords`
--
CREATE TABLE `bx_persons_meta_keywords` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object_id` int(10) unsigned NOT NULL,
`keyword` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
KEY `object_id` (`object_id`),
KEY `keyword` (`keyword`(250))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `bx_persons_meta_locations`
--
CREATE TABLE `bx_persons_meta_locations` (
`object_id` int(10) unsigned NOT NULL,
`lat` double NOT NULL,
`lng` double NOT NULL,
`country` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL,
`state` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`city` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`zip` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`street` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`street_number` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`object_id`),
KEY `country_state_city` (`country`,`state`(8),`city`(8))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `bx_persons_meta_mentions`
--
CREATE TABLE `bx_persons_meta_mentions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object_id` int(10) unsigned NOT NULL,
`profile_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `object_id` (`object_id`),
KEY `profile_id` (`profile_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `bx_persons_pictures`
--
CREATE TABLE `bx_persons_pictures` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`profile_id` int(10) unsigned NOT NULL,
`remote_id` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`file_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`mime_type` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`ext` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`size` bigint(20) NOT NULL,
`dimensions` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL,
`added` int(11) NOT NULL,
`modified` int(11) NOT NULL,
`private` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `remote_id` (`remote_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `bx_persons_pictures_resized`
--
CREATE TABLE `bx_persons_pictures_resized` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`profile_id` int(10) unsigned NOT NULL,
`remote_id` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`file_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`mime_type` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`ext` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`size` bigint(20) NOT NULL,
`added` int(11) NOT NULL,
`modified` int(11) NOT NULL,
`private` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `remote_id` (`remote_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `bx_persons_reports`
--
CREATE TABLE `bx_persons_reports` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object_id` int(11) NOT NULL DEFAULT '0',
`count` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `object_id` (`object_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `bx_persons_reports_track`
--
CREATE TABLE `bx_persons_reports_track` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object_id` int(11) NOT NULL DEFAULT '0',
`author_id` int(11) NOT NULL DEFAULT '0',
`author_nip` int(11) unsigned NOT NULL DEFAULT '0',
`type` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`text` text COLLATE utf8mb4_unicode_ci NOT NULL,
`date` int(11) NOT NULL DEFAULT '0',
`checked_by` int(11) NOT NULL DEFAULT '0',
`status` tinyint(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `report` (`object_id`,`author_nip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `bx_persons_scores`
--
CREATE TABLE `bx_persons_scores` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object_id` int(11) NOT NULL DEFAULT '0',
`count_up` int(11) NOT NULL DEFAULT '0',
`count_down` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `object_id` (`object_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `bx_persons_scores_track`
--
CREATE TABLE `bx_persons_scores_track` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object_id` int(11) NOT NULL DEFAULT '0',
`author_id` int(11) NOT NULL DEFAULT '0',
`author_nip` int(11) unsigned NOT NULL DEFAULT '0',
`type` varchar(8) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`date` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `vote` (`object_id`,`author_nip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `bx_persons_skills`
--
CREATE TABLE `bx_persons_skills` (
`skill_id` int(11) NOT NULL AUTO_INCREMENT,
`skill_name` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content_id` int(11) NOT NULL,
PRIMARY KEY (`skill_id`),
KEY `content_id` (`content_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `bx_persons_views_track`
--
CREATE TABLE `bx_persons_views_track` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object_id` int(11) NOT NULL DEFAULT '0',
`viewer_id` int(11) NOT NULL DEFAULT '0',
`viewer_nip` int(11) unsigned NOT NULL DEFAULT '0',
`date` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `id` (`object_id`,`viewer_id`,`viewer_nip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `bx_persons_votes`
--
CREATE TABLE `bx_persons_votes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object_id` int(11) NOT NULL DEFAULT '0',
`count` int(11) NOT NULL DEFAULT '0',
`sum` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `object_id` (`object_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `bx_persons_votes_track`
--
CREATE TABLE `bx_persons_votes_track` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object_id` int(11) NOT NULL DEFAULT '0',
`author_id` int(11) NOT NULL DEFAULT '0',
`author_nip` int(11) unsigned NOT NULL DEFAULT '0',
`value` tinyint(4) NOT NULL DEFAULT '0',
`date` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `vote` (`object_id`,`author_nip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_accounts`
--
CREATE TABLE `sys_accounts` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`profile_id` int(10) unsigned NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email_confirmed` tinyint(4) NOT NULL DEFAULT '0',
`phone` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`phone_confirmed` tinyint(4) NOT NULL DEFAULT '0',
`receive_updates` tinyint(4) NOT NULL DEFAULT '1',
`receive_news` tinyint(4) NOT NULL DEFAULT '1',
`password` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
`password_changed` int(11) NOT NULL DEFAULT '0',
`salt` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
`role` tinyint(4) NOT NULL DEFAULT '1',
`lang_id` int(10) unsigned NOT NULL DEFAULT '0',
`added` int(11) NOT NULL DEFAULT '0',
`changed` int(11) NOT NULL DEFAULT '0',
`logged` int(11) NOT NULL DEFAULT '0',
`ip` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`referred` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`login_attempts` tinyint(4) NOT NULL DEFAULT '0',
`locked` tinyint(4) NOT NULL DEFAULT '0',
`active` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `email` (`email`(191)),
KEY `added` (`added`),
KEY `logged` (`logged`),
KEY `profile_id` (`profile_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=3 ;
--
-- Dumping data for table `sys_accounts`
--
INSERT INTO `sys_accounts` VALUES
(1, 1, '[[admin_username]]', '[[admin_email]]', 1, '', 0, 1, 1, '[[admin_pass]]', 0, '[[salt]]', 3, 1, [[timestamp]], 0, [[timestamp]], '[[clientip]]', '', 0, 0, 0),
(2, 0, 'Robot', '', 0, '', 0, 0, 0, '', 0, '', 3, 0, [[timestamp]], 0, 0, '', '', 0, 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `sys_accounts_password`
--
CREATE TABLE `sys_accounts_password` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`account_id` int(10) NOT NULL,
`password` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
`password_changed` int(11) NOT NULL DEFAULT '0',
`salt` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_acl_actions`
--
CREATE TABLE `sys_acl_actions` (
`ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
`Module` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`Name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`AdditionalParamName` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`Title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`Desc` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`Countable` tinyint(4) NOT NULL DEFAULT '0',
`DisabledForLevels` int(10) unsigned NOT NULL DEFAULT '3',
PRIMARY KEY (`ID`),
FULLTEXT KEY `ModuleAndName` (`Module`,`Name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=44 ;
--
-- Dumping data for table `sys_acl_actions`
--
INSERT INTO `sys_acl_actions` VALUES
(1, 'system', 'connect', NULL, '_sys_acl_action_connect', '', 1, 3),
(2, 'system', 'vote', NULL, '_sys_acl_action_vote', '', 1, 0),
(3, 'system', 'vote_view', NULL, '_sys_acl_action_vote_view', '', 1, 0),
(4, 'system', 'vote_view_voters', NULL, '_sys_acl_action_vote_view_voters', '', 1, 0),
(5, 'system', 'report', NULL, '_sys_acl_action_report', '', 1, 0),
(6, 'system', 'report_view', NULL, '_sys_acl_action_report_view', '', 0, 0),
(7, 'system', 'favorite', NULL, '_sys_acl_action_favorite', '', 1, 0),
(8, 'system', 'favorite_view', NULL, '_sys_acl_action_favorite_view', '', 0, 0),
(9, 'system', 'feature', NULL, '_sys_acl_action_feature', '', 0, 0),
(10, 'system', 'view_view', NULL, '_sys_acl_action_view_view', '', 0, 0),
(11, 'system', 'view_view_viewers_own', NULL, '_sys_acl_action_view_view_viewers_own', '', 0, 0),
(12, 'system', 'comments post', NULL, '_sys_acl_action_comments_post', '', 1, 0),
(13, 'system', 'comments edit own', NULL, '_sys_acl_action_comments_edit_own', '', 0, 3),
(14, 'system', 'comments remove own', NULL, '_sys_acl_action_comments_remove_own', '', 1, 3),
(15, 'system', 'comments edit all', NULL, '_sys_acl_action_comments_edit_all', '', 1, 3),
(16, 'system', 'comments remove all', NULL, '_sys_acl_action_comments_remove_all', '', 1, 3),
(17, 'system', 'comments remove in own content', NULL, '_sys_acl_action_comments_remove_in_own_content', '', 1, 3),
(18, 'system', 'comments remove in group context', NULL, '_sys_acl_action_comments_remove_in_group_context', '', 1, 3),
(19, 'system', 'comments pin', NULL, '_sys_acl_action_comments_pin', '', 1, 3),
(20, 'system', 'create account', NULL, '_sys_acl_action_create_account', '_sys_acl_action_create_account_desc', 0, 2147483646),
(21, 'system', 'delete account', NULL, '_sys_acl_action_delete_account', '_sys_acl_action_delete_account_desc', 0, 1),
(22, 'system', 'set acl level', NULL, '_sys_acl_action_set_acl_level', '_sys_acl_action_set_acl_level_desc', 0, 3),
(23, 'system', 'set badge', NULL, '_sys_acl_action_set_badge', '_sys_acl_action_set_badge_desc', 0, 3),
(24, 'system', 'set acl as privacy', NULL, '_sys_acl_action_set_acl_as_privacy', '_sys_acl_action_set_acl_as_privacy_desc', 0, 3),
(25, 'system', 'set form fields privacy', NULL, '_sys_acl_action_set_form_fields_privacy', '_sys_acl_action_set_form_fields_privacy_desc', 0, 3),
(26, 'system', 'chart view', NULL, '_sys_acl_action_chart_view', '_sys_acl_action_chart_view_desc', 0, 3),
(27, 'system', 'post links', NULL, '_sys_acl_action_post_links', '_sys_acl_action_post_links_desc', 0, 0),
(28, 'system', 'use macros', NULL, '_sys_acl_action_use_macros', '_sys_acl_action_use_macros_desc', 0, 0),
(29, 'system', 'switch to any profile', NULL, '_sys_acl_action_switch_to_any_profile', '_sys_acl_action_switch_to_any_profile_desc', 0, 0),
(30, 'system', 'show membership levels in privacy groups', NULL, '_sys_acl_action_show_membership_levels_in_privacy_groups', '_sys_acl_action_show_membership_levels_in_privacy_groups_desc', 0, 0),
(31, 'system', 'show membership private info', NULL, '_sys_acl_action_show_membership_private_info', '_sys_acl_action_show_membership_private_info_desc', 0, 0),
(32, 'system', 'wiki add block', NULL, '_sys_acl_action_add_block', '', 0, 1),
(33, 'system', 'wiki edit block', NULL, '_sys_acl_action_edit_block', '', 0, 0),
(34, 'system', 'wiki translate block', NULL, '_sys_acl_action_translate_block', '', 0, 0),
(35, 'system', 'wiki delete version', NULL, '_sys_acl_action_delete_version', '', 0, 1),
(36, 'system', 'wiki delete block', NULL, '_sys_acl_action_delete_block', '', 0, 1),
(37, 'system', 'wiki history', NULL, '_sys_acl_action_history', '', 0, 0),
(38, 'system', 'wiki unsafe', NULL, '_sys_acl_action_unsafe', '', 0, 0),
(39, 'bx_persons', 'create entry', NULL, '_bx_persons_acl_action_create_profile', '', 1, 1),
(40, 'bx_persons', 'delete entry', NULL, '_bx_persons_acl_action_delete_profile', '', 1, 1),
(41, 'bx_persons', 'view entry', NULL, '_bx_persons_acl_action_view_profile', '', 1, 0),
(42, 'bx_persons', 'edit any entry', NULL, '_bx_persons_acl_action_edit_any_profile', '', 1, 3),
(43, 'bx_persons', 'delete any entry', NULL, '_bx_persons_acl_action_delete_any_profile', '', 1, 3);
-- --------------------------------------------------------
--
-- Table structure for table `sys_acl_actions_track`
--
CREATE TABLE `sys_acl_actions_track` (
`IDAction` int(10) unsigned NOT NULL DEFAULT '0',
`IDMember` int(10) unsigned NOT NULL DEFAULT '0',
`ActionsLeft` int(10) unsigned NOT NULL DEFAULT '0',
`ValidSince` datetime DEFAULT NULL,
PRIMARY KEY (`IDAction`,`IDMember`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `sys_acl_levels`
--
CREATE TABLE `sys_acl_levels` (
`ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
`Name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Icon` text COLLATE utf8mb4_unicode_ci NOT NULL,
`Description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Active` enum('yes','no') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'no',
`Purchasable` enum('yes','no') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
`Removable` enum('yes','no') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
`QuotaSize` bigint(20) NOT NULL,
`QuotaNumber` int(11) NOT NULL,
`QuotaMaxFileSize` bigint(20) NOT NULL,
`Order` int(11) NOT NULL DEFAULT '0',
`PasswordExpired` int(11) NOT NULL DEFAULT '0',
`PasswordExpiredNotify` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
UNIQUE KEY `Name` (`Name`),
FULLTEXT KEY `Description` (`Description`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=10 ;
--
-- Dumping data for table `sys_acl_levels`
--
INSERT INTO `sys_acl_levels` VALUES
(1, '_adm_prm_txt_level_unauthenticated', 'user bx-def-font-color', '', 'yes', 'no', 'no', 0, 0, 0, 1, 0, 0),
(2, '_adm_prm_txt_level_account', 'user col-green1', '', 'yes', 'no', 'no', 0, 0, 0, 2, 0, 0),
(3, '_adm_prm_txt_level_standard', 'user col-red1', '', 'yes', 'no', 'no', 0, 0, 0, 3, 0, 0),
(4, '_adm_prm_txt_level_unconfirmed', 'user bx-def-font-color', '', 'yes', 'no', 'no', 0, 0, 0, 4, 0, 0),
(5, '_adm_prm_txt_level_pending', 'user bx-def-font-color', '', 'yes', 'no', 'no', 0, 0, 0, 5, 0, 0),
(6, '_adm_prm_txt_level_suspended', 'user bx-def-font-color', '', 'yes', 'no', 'no', 0, 0, 0, 6, 0, 0),
(7, '_adm_prm_txt_level_moderator', 'user-secret col-blue3', '', 'yes', 'no', 'no', 0, 0, 0, 7, 0, 0),
(8, '_adm_prm_txt_level_administrator', 'user-secret col-blue3', '', 'yes', 'no', 'no', 0, 0, 0, 8, 0, 0),
(9, '_adm_prm_txt_level_premium', 'user col-red3', '', 'yes', 'yes', 'no', 0, 0, 0, 9, 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `sys_acl_levels_members`
--
CREATE TABLE `sys_acl_levels_members` (
`IDMember` int(10) unsigned NOT NULL DEFAULT '0',
`IDLevel` int(10) unsigned NOT NULL DEFAULT '0',
`DateStarts` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`DateExpires` datetime DEFAULT NULL,
`State` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`TransactionID` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`IDMember`,`IDLevel`,`DateStarts`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `sys_acl_matrix`
--
CREATE TABLE `sys_acl_matrix` (
`IDLevel` int(10) unsigned NOT NULL DEFAULT '0',
`IDAction` int(10) unsigned NOT NULL DEFAULT '0',
`AllowedCount` int(10) unsigned DEFAULT NULL,
`AllowedPeriodLen` int(10) unsigned DEFAULT NULL,
`AllowedPeriodStart` datetime DEFAULT NULL,
`AllowedPeriodEnd` datetime DEFAULT NULL,
`AdditionalParamValue` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`IDLevel`,`IDAction`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `sys_acl_matrix`
--
INSERT INTO `sys_acl_matrix` VALUES
(3, 1, NULL, NULL, NULL, NULL, NULL),
(7, 1, NULL, NULL, NULL, NULL, NULL),
(8, 1, NULL, NULL, NULL, NULL, NULL),
(9, 1, NULL, NULL, NULL, NULL, NULL),
(3, 2, NULL, NULL, NULL, NULL, NULL),
(7, 2, NULL, NULL, NULL, NULL, NULL),
(8, 2, NULL, NULL, NULL, NULL, NULL),
(9, 2, NULL, NULL, NULL, NULL, NULL),
(1, 3, NULL, NULL, NULL, NULL, NULL),
(2, 3, NULL, NULL, NULL, NULL, NULL),
(3, 3, NULL, NULL, NULL, NULL, NULL),
(4, 3, NULL, NULL, NULL, NULL, NULL),
(5, 3, NULL, NULL, NULL, NULL, NULL),
(7, 3, NULL, NULL, NULL, NULL, NULL),
(8, 3, NULL, NULL, NULL, NULL, NULL),
(9, 3, NULL, NULL, NULL, NULL, NULL),
(3, 4, NULL, NULL, NULL, NULL, NULL),
(7, 4, NULL, NULL, NULL, NULL, NULL),
(8, 4, NULL, NULL, NULL, NULL, NULL),
(9, 4, NULL, NULL, NULL, NULL, NULL),
(3, 5, NULL, NULL, NULL, NULL, NULL),
(7, 5, NULL, NULL, NULL, NULL, NULL),
(8, 5, NULL, NULL, NULL, NULL, NULL),
(9, 5, NULL, NULL, NULL, NULL, NULL),
(7, 6, NULL, NULL, NULL, NULL, NULL),
(8, 6, NULL, NULL, NULL, NULL, NULL),
(3, 7, NULL, NULL, NULL, NULL, NULL),
(7, 7, NULL, NULL, NULL, NULL, NULL),
(8, 7, NULL, NULL, NULL, NULL, NULL),
(9, 7, NULL, NULL, NULL, NULL, NULL),
(1, 8, NULL, NULL, NULL, NULL, NULL),
(2, 8, NULL, NULL, NULL, NULL, NULL),
(3, 8, NULL, NULL, NULL, NULL, NULL),
(4, 8, NULL, NULL, NULL, NULL, NULL),
(5, 8, NULL, NULL, NULL, NULL, NULL),
(7, 8, NULL, NULL, NULL, NULL, NULL),
(8, 8, NULL, NULL, NULL, NULL, NULL),
(9, 8, NULL, NULL, NULL, NULL, NULL),
(7, 9, NULL, NULL, NULL, NULL, NULL),
(8, 9, NULL, NULL, NULL, NULL, NULL),
(1, 10, NULL, NULL, NULL, NULL, NULL),
(2, 10, NULL, NULL, NULL, NULL, NULL),
(3, 10, NULL, NULL, NULL, NULL, NULL),
(4, 10, NULL, NULL, NULL, NULL, NULL),
(5, 10, NULL, NULL, NULL, NULL, NULL),
(7, 10, NULL, NULL, NULL, NULL, NULL),
(8, 10, NULL, NULL, NULL, NULL, NULL),
(9, 10, NULL, NULL, NULL, NULL, NULL),
(7, 11, NULL, NULL, NULL, NULL, NULL),
(8, 11, NULL, NULL, NULL, NULL, NULL),
(3, 12, NULL, NULL, NULL, NULL, NULL),
(7, 12, NULL, NULL, NULL, NULL, NULL),
(8, 12, NULL, NULL, NULL, NULL, NULL),
(9, 12, NULL, NULL, NULL, NULL, NULL),
(3, 13, NULL, NULL, NULL, NULL, NULL),
(7, 13, NULL, NULL, NULL, NULL, NULL),
(8, 13, NULL, NULL, NULL, NULL, NULL),
(9, 13, NULL, NULL, NULL, NULL, NULL),
(3, 14, NULL, NULL, NULL, NULL, NULL),
(7, 14, NULL, NULL, NULL, NULL, NULL),
(8, 14, NULL, NULL, NULL, NULL, NULL),
(9, 14, NULL, NULL, NULL, NULL, NULL),
(7, 15, NULL, NULL, NULL, NULL, NULL),
(8, 15, NULL, NULL, NULL, NULL, NULL),
(7, 16, NULL, NULL, NULL, NULL, NULL),
(8, 16, NULL, NULL, NULL, NULL, NULL),
(7, 17, NULL, NULL, NULL, NULL, NULL),
(8, 17, NULL, NULL, NULL, NULL, NULL),
(7, 18, NULL, NULL, NULL, NULL, NULL),
(8, 18, NULL, NULL, NULL, NULL, NULL),
(7, 19, NULL, NULL, NULL, NULL, NULL),
(8, 19, NULL, NULL, NULL, NULL, NULL),
(1, 20, NULL, NULL, NULL, NULL, NULL),
(2, 21, NULL, NULL, NULL, NULL, NULL),
(3, 21, NULL, NULL, NULL, NULL, NULL),
(4, 21, NULL, NULL, NULL, NULL, NULL),
(5, 21, NULL, NULL, NULL, NULL, NULL),
(7, 21, NULL, NULL, NULL, NULL, NULL),
(8, 21, NULL, NULL, NULL, NULL, NULL),
(9, 21, NULL, NULL, NULL, NULL, NULL),
(8, 22, NULL, NULL, NULL, NULL, NULL),
(8, 23, NULL, NULL, NULL, NULL, NULL),
(8, 24, NULL, NULL, NULL, NULL, NULL),
(2, 25, NULL, NULL, NULL, NULL, NULL),
(3, 25, NULL, NULL, NULL, NULL, NULL),
(4, 25, NULL, NULL, NULL, NULL, NULL),
(5, 25, NULL, NULL, NULL, NULL, NULL),
(7, 25, NULL, NULL, NULL, NULL, NULL),
(8, 25, NULL, NULL, NULL, NULL, NULL),
(9, 25, NULL, NULL, NULL, NULL, NULL),
(8, 26, NULL, NULL, NULL, NULL, NULL),
(3, 27, NULL, NULL, NULL, NULL, NULL),
(7, 27, NULL, NULL, NULL, NULL, NULL),
(8, 27, NULL, NULL, NULL, NULL, NULL),
(9, 27, NULL, NULL, NULL, NULL, NULL),
(7, 28, NULL, NULL, NULL, NULL, NULL),
(8, 28, NULL, NULL, NULL, NULL, NULL),
(8, 29, NULL, NULL, NULL, NULL, NULL),
(8, 30, NULL, NULL, NULL, NULL, NULL),
(7, 31, NULL, NULL, NULL, NULL, NULL),
(8, 31, NULL, NULL, NULL, NULL, NULL),
(2, 39, NULL, NULL, NULL, NULL, NULL),
(3, 39, NULL, NULL, NULL, NULL, NULL),
(4, 39, NULL, NULL, NULL, NULL, NULL),
(5, 39, NULL, NULL, NULL, NULL, NULL),
(7, 39, NULL, NULL, NULL, NULL, NULL),
(8, 39, NULL, NULL, NULL, NULL, NULL),
(9, 39, NULL, NULL, NULL, NULL, NULL),
(2, 40, NULL, NULL, NULL, NULL, NULL),
(3, 40, NULL, NULL, NULL, NULL, NULL),
(4, 40, NULL, NULL, NULL, NULL, NULL),
(5, 40, NULL, NULL, NULL, NULL, NULL),
(7, 40, NULL, NULL, NULL, NULL, NULL),
(8, 40, NULL, NULL, NULL, NULL, NULL),
(9, 40, NULL, NULL, NULL, NULL, NULL),
(1, 41, NULL, NULL, NULL, NULL, NULL),
(2, 41, NULL, NULL, NULL, NULL, NULL),
(3, 41, NULL, NULL, NULL, NULL, NULL),
(4, 41, NULL, NULL, NULL, NULL, NULL),
(5, 41, NULL, NULL, NULL, NULL, NULL),
(7, 41, NULL, NULL, NULL, NULL, NULL),
(8, 41, NULL, NULL, NULL, NULL, NULL),
(9, 41, NULL, NULL, NULL, NULL, NULL),
(7, 42, NULL, NULL, NULL, NULL, NULL),
(8, 42, NULL, NULL, NULL, NULL, NULL),
(8, 43, NULL, NULL, NULL, NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `sys_agents_assistants`
--
CREATE TABLE `sys_agents_assistants` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`model_id` int(11) NOT NULL DEFAULT '0',
`profile_id` int(11) NOT NULL DEFAULT '0',
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`prompt` text COLLATE utf8mb4_unicode_ci NOT NULL,
`ai_vs_id` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`ai_asst_id` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`added` int(11) NOT NULL DEFAULT '0',
`active` tinyint(4) NOT NULL DEFAULT '0',
`hidden` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_agents_assistants_chats`
--
CREATE TABLE `sys_agents_assistants_chats` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`type` tinyint(4) NOT NULL DEFAULT '1',
`assistant_id` int(11) NOT NULL DEFAULT '0',
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`message_id` int(11) NOT NULL DEFAULT '0',
`messages` int(11) NOT NULL DEFAULT '0',
`added` int(11) NOT NULL DEFAULT '0',
`ai_thread_id` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`ai_file_id` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`stored` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_agents_assistants_chats_messages`
--
CREATE TABLE `sys_agents_assistants_chats_messages` (
`cmt_id` int(11) NOT NULL AUTO_INCREMENT,
`cmt_parent_id` int(11) NOT NULL DEFAULT '0',
`cmt_vparent_id` int(11) NOT NULL DEFAULT '0',
`cmt_object_id` int(11) NOT NULL DEFAULT '0',
`cmt_author_id` int(11) NOT NULL DEFAULT '0',
`cmt_level` int(11) NOT NULL DEFAULT '0',
`cmt_text` text COLLATE utf8mb4_unicode_ci NOT NULL,
`cmt_mood` tinyint(4) NOT NULL DEFAULT '0',
`cmt_rate` int(11) NOT NULL DEFAULT '0',
`cmt_rate_count` int(11) NOT NULL DEFAULT '0',
`cmt_time` int(11) unsigned NOT NULL DEFAULT '0',
`cmt_replies` int(11) NOT NULL DEFAULT '0',
`cmt_pinned` int(11) NOT NULL DEFAULT '0',
`cmt_cf` int(11) NOT NULL DEFAULT '1',
PRIMARY KEY (`cmt_id`),
KEY `cmt_object_id` (`cmt_object_id`,`cmt_parent_id`),
FULLTEXT KEY `search_fields` (`cmt_text`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_agents_assistants_files`
--
CREATE TABLE `sys_agents_assistants_files` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`assistant_id` int(11) NOT NULL DEFAULT '0',
`added` int(11) NOT NULL DEFAULT '0',
`ai_file_id` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`ai_file_size` int(11) NOT NULL DEFAULT '0',
`ai_file_status` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'in_progress',
`locked` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_agents_automators`
--
CREATE TABLE `sys_agents_automators` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`model_id` int(11) NOT NULL DEFAULT '0',
`profile_id` int(11) NOT NULL DEFAULT '0',
`type` enum('event','scheduler','webhook') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'event',
`params` text COLLATE utf8mb4_unicode_ci NOT NULL,
`alert_unit` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`alert_action` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`message_id` int(11) NOT NULL DEFAULT '0',
`code` text COLLATE utf8mb4_unicode_ci NOT NULL,
`added` int(11) unsigned NOT NULL DEFAULT '0',
`messages` int(11) NOT NULL DEFAULT '0',
`status` enum('auto','manual','ready') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'auto',
`active` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_agents_automators_assistants`
--
CREATE TABLE `sys_agents_automators_assistants` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`automator_id` int(11) NOT NULL DEFAULT '0',
`assistant_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_agents_automators_helpers`
--
CREATE TABLE `sys_agents_automators_helpers` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`automator_id` int(11) NOT NULL DEFAULT '0',
`helper_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_agents_automators_messages`
--
CREATE TABLE `sys_agents_automators_messages` (
`cmt_id` int(11) NOT NULL AUTO_INCREMENT,
`cmt_parent_id` int(11) NOT NULL DEFAULT '0',
`cmt_vparent_id` int(11) NOT NULL DEFAULT '0',
`cmt_object_id` int(11) NOT NULL DEFAULT '0',
`cmt_author_id` int(11) NOT NULL DEFAULT '0',
`cmt_level` int(11) NOT NULL DEFAULT '0',
`cmt_text` text COLLATE utf8mb4_unicode_ci NOT NULL,
`cmt_mood` tinyint(4) NOT NULL DEFAULT '0',
`cmt_rate` int(11) NOT NULL DEFAULT '0',
`cmt_rate_count` int(11) NOT NULL DEFAULT '0',
`cmt_time` int(11) unsigned NOT NULL DEFAULT '0',
`cmt_replies` int(11) NOT NULL DEFAULT '0',
`cmt_pinned` int(11) NOT NULL DEFAULT '0',
`cmt_cf` int(11) NOT NULL DEFAULT '1',
PRIMARY KEY (`cmt_id`),
KEY `cmt_object_id` (`cmt_object_id`,`cmt_parent_id`),
FULLTEXT KEY `search_fields` (`cmt_text`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_agents_automators_providers`
--
CREATE TABLE `sys_agents_automators_providers` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`automator_id` int(11) NOT NULL DEFAULT '0',
`provider_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_agents_helpers`
--
CREATE TABLE `sys_agents_helpers` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`model_id` int(11) NOT NULL DEFAULT '0',
`profile_id` int(11) NOT NULL DEFAULT '0',
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`prompt` text COLLATE utf8mb4_unicode_ci,
`added` int(11) NOT NULL DEFAULT '0',
`active` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_agents_models`
--
CREATE TABLE `sys_agents_models` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`title` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`key` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`params` text COLLATE utf8mb4_unicode_ci NOT NULL,
`for_asst` tinyint(4) NOT NULL DEFAULT '0',
`active` tinyint(4) NOT NULL DEFAULT '1',
`hidden` tinyint(4) NOT NULL DEFAULT '0',
`class_name` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`class_file` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=3 ;
--
-- Dumping data for table `sys_agents_models`
--
INSERT INTO `sys_agents_models` VALUES
(1, 'gpt-3.5-turbo', 'GPT-3.5-TURBO', '', '{"call":{"temperature":0.1}}', 0, 1, 0, 'BxDolAIModelGpt35', ''),
(2, 'gpt-4o', 'GPT-4.O', '', '{"call":{},"assistants":{"event_init":"asst_HcEyaghqWZefkAyoEML40joY","event":"asst_wqaXtKjcsBKceMtJ2NxID2LT","scheduler_init":"asst_kEbDH1hUy2Y45nOKk9jaSTB8","scheduler":"asst_M6zOv4osQwZmRItaiYptjjOS","webhook_init":"asst_sSkOblPyXmYovS5IiEiVW17n","webhook":"asst_w7F3RiylJfdDEb9Eaa4RvO1q"}}', 1, 1, 0, 'BxDolAIModelGpt40', '');
-- --------------------------------------------------------
--
-- Table structure for table `sys_agents_providers`
--
CREATE TABLE `sys_agents_providers` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`type_id` int(11) NOT NULL DEFAULT '0',
`profile_id` int(11) NOT NULL DEFAULT '0',
`added` int(11) NOT NULL DEFAULT '0',
`active` tinyint(4) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_agents_providers_values`
--
CREATE TABLE `sys_agents_providers_values` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`provider_id` int(11) NOT NULL DEFAULT '0',
`option_id` int(11) NOT NULL DEFAULT '0',
`value` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
UNIQUE KEY `value` (`provider_id`,`option_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_agents_provider_options`
--
CREATE TABLE `sys_agents_provider_options` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`provider_type_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`type` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'text',
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`extra` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`check_type` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`check_params` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`check_error` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`order` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=5 ;
--
-- Dumping data for table `sys_agents_provider_options`
--
INSERT INTO `sys_agents_provider_options` VALUES
(1, 1, 'shf_adm_shop_domain', 'text', '_sys_agents_pvd_opt_cpt_shop_domain', '_sys_agents_pvd_opt_dsc_shop_domain', '', '', '', '', 1),
(2, 1, 'shf_adm_access_token', 'text', '_sys_agents_pvd_opt_cpt_access_token', '_sys_agents_pvd_opt_dsc_access_token', '', '', '', '', 2),
(3, 1, 'shf_adm_secret_key', 'text', '_sys_agents_pvd_opt_cpt_secret_key', '_sys_agents_pvd_opt_dsc_secret_key', '', '', '', '', 3),
(4, 1, 'shf_adm_webhook_url', 'value', '_sys_agents_pvd_opt_cpt_webhook_url', '_sys_agents_pvd_opt_dsc_webhook_url', '', '', '', '', 4);
-- --------------------------------------------------------
--
-- Table structure for table `sys_agents_provider_types`
--
CREATE TABLE `sys_agents_provider_types` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`title` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`option_prefix` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`active` tinyint(4) NOT NULL DEFAULT '0',
`order` tinyint(4) NOT NULL DEFAULT '0',
`class_name` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`class_file` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=2 ;
--
-- Dumping data for table `sys_agents_provider_types`
--
INSERT INTO `sys_agents_provider_types` VALUES
(1, 'shopify_admin', '_sys_agents_pvd_cpt_shopify_admin', 'shf_adm_', 1, 1, 'BxDolAIProviderShopifyAdmin', '');
-- --------------------------------------------------------
--
-- Table structure for table `sys_alerts`
--
CREATE TABLE `sys_alerts` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`unit` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`action` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'none',
`handler_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `alert_handler` (`unit`,`action`,`handler_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=77 ;
--
-- Dumping data for table `sys_alerts`
--
INSERT INTO `sys_alerts` VALUES
(1, 'system', 'save_setting', 1),
(2, 'sys_images_custom', 'file_deleted', 2),
(3, 'system', 'save_setting', 3),
(4, 'system', 'save_setting', 4),
(5, 'system', 'installed', 5),
(6, 'sys_profiles_friends', 'connection_added', 6),
(7, 'sys_profiles_friends', 'connection_removed', 6),
(8, 'sys_cmts_images', 'file_deleted', 7),
(9, 'system', 'change_logo', 8),
(10, 'system', 'change_logo_dark', 8),
(11, 'system', 'change_mark', 8),
(12, 'system', 'change_mark_dark', 8),
(13, 'system', 'get_object', 8),
(14, 'system', 'get_layout_images', 8),
(15, 'system', 'save_setting', 8),
(16, 'profile', 'unit', 8),
(17, 'system', 'save_setting', 9),
(18, 'sys_profiles_friends', 'connection_added', 9),
(19, 'bx_timeline', 'post_common', 9),
(20, 'bx_persons_pictures', 'file_deleted', 9),
(21, 'bx_persons', 'timeline_view', 9),
(22, 'bx_persons', 'timeline_post', 9),
(23, 'bx_persons', 'timeline_delete', 9),
(24, 'bx_persons', 'timeline_comment', 9),
(25, 'bx_persons', 'timeline_vote', 9),
(26, 'bx_persons', 'timeline_score', 9),
(27, 'bx_persons', 'timeline_report', 9),
(28, 'bx_persons', 'timeline_repost', 9),
(29, 'bx_persons', 'timeline_pin', 9),
(30, 'bx_persons', 'timeline_promote', 9),
(31, 'bx_persons_pictures_resized', 'file_deleted', 10),
(32, 'bx_persons_pictures', 'file_deleted', 11),
(33, 'bx_persons_pictures_resized', 'file_deleted', 12),
(34, 'bx_persons_pictures', 'file_deleted', 13),
(35, 'bx_persons_pictures_resized', 'file_deleted', 14),
(36, 'bx_persons_pictures', 'file_deleted', 15),
(37, 'bx_persons_pictures_resized', 'file_deleted', 16),
(38, 'bx_persons_pictures', 'file_deleted', 17),
(39, 'bx_persons_pictures_resized', 'file_deleted', 18),
(40, 'bx_persons_pictures', 'file_deleted', 19),
(41, 'bx_persons_pictures_resized', 'file_deleted', 20),
(42, 'bx_persons_pictures', 'file_deleted', 21),
(43, 'bx_persons_pictures_resized', 'file_deleted', 22),
(44, 'bx_persons_pictures', 'file_deleted', 23),
(45, 'bx_persons_pictures_resized', 'file_deleted', 24),
(46, 'bx_persons_pictures', 'file_deleted', 25),
(47, 'sys_images_resized', 'file_deleted', 26),
(48, 'sys_images', 'file_deleted', 27),
(49, 'sys_images_resized', 'file_deleted', 28),
(50, 'sys_images', 'file_deleted', 29),
(51, 'sys_images_resized', 'file_deleted', 30),
(52, 'sys_images', 'file_deleted', 31),
(53, 'sys_images_resized', 'file_deleted', 32),
(54, 'sys_images', 'file_deleted', 33),
(55, 'sys_images_resized', 'file_deleted', 34),
(56, 'sys_images', 'file_deleted', 35),
(57, 'sys_images_resized', 'file_deleted', 36),
(58, 'sys_images', 'file_deleted', 37),
(59, 'sys_images_resized', 'file_deleted', 38),
(60, 'sys_images', 'file_deleted', 39),
(61, 'sys_images_resized', 'file_deleted', 40),
(62, 'sys_images', 'file_deleted', 41),
(63, 'sys_images_resized', 'file_deleted', 42),
(64, 'sys_images', 'file_deleted', 43),
(65, 'sys_images_resized', 'file_deleted', 44),
(66, 'sys_images', 'file_deleted', 45),
(67, 'sys_images_resized', 'file_deleted', 46),
(68, 'sys_images', 'file_deleted', 47),
(69, 'sys_cmts_images_preview', 'file_deleted', 48),
(70, 'sys_cmts_images', 'file_deleted', 49),
(71, 'sys_images_resized', 'file_deleted', 50),
(72, 'sys_images_custom', 'file_deleted', 51),
(73, 'sys_images_editor_resized', 'file_deleted', 52),
(74, 'sys_images_editor', 'file_deleted', 53),
(75, 'sys_wiki_images_resized', 'file_deleted', 54),
(76, 'sys_wiki_files', 'file_deleted', 55);
-- --------------------------------------------------------
--
-- Table structure for table `sys_alerts_cache_triggers`
--
CREATE TABLE `sys_alerts_cache_triggers` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`unit` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`action` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`cache_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=2 ;
--
-- Dumping data for table `sys_alerts_cache_triggers`
--
INSERT INTO `sys_alerts_cache_triggers` VALUES
(1, 'sys_profiles_subscriptions', 'connection_added', 'menu_sys_profile_stats_profile-stats-subscribed-me_{content}_{_hash}.php');
-- --------------------------------------------------------
--
-- Table structure for table `sys_alerts_handlers`
--
CREATE TABLE `sys_alerts_handlers` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`class` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`file` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`service_call` text COLLATE utf8mb4_unicode_ci NOT NULL,
`active` tinyint(4) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=56 ;
--
-- Dumping data for table `sys_alerts_handlers`
--
INSERT INTO `sys_alerts_handlers` VALUES
(1, 'sys_studio_settings_save_design', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:28:"alert_response_settings_save";s:6:"params";a:0:{}s:5:"class";s:25:"TemplStudioDesignServices";}', 1),
(2, 'sys_settings_sys_images_custom_file_deleted', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:45:"alert_response_sys_images_custom_file_deleted";s:6:"params";a:0:{}s:5:"class";s:27:"TemplStudioSettingsServices";}', 1),
(3, 'sys_settings_change_kands', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:27:"alert_response_change_kands";s:6:"params";a:0:{}s:5:"class";s:27:"TemplStudioSettingsServices";}', 1),
(4, 'sys_settings_storage_change', '', '', 'a:3:{s:6:"module";s:6:"system";s:6:"method";s:37:"alert_response_process_storage_change";s:5:"class";s:13:"TemplServices";}', 1),
(5, 'sys_installed', '', '', 'a:3:{s:6:"module";s:6:"system";s:6:"method";s:32:"alert_response_process_installed";s:5:"class";s:13:"TemplServices";}', 1),
(6, 'sys_connections', '', '', 'a:3:{s:6:"module";s:6:"system";s:6:"method";s:26:"alert_response_connections";s:5:"class";s:23:"TemplServiceConnections";}', 1),
(7, 'sys_cmts_sys_cmts_images_file_deleted', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:43:"alert_response_sys_cmts_images_file_deleted";s:6:"params";a:0:{}s:5:"class";s:17:"TemplCmtsServices";}', 1),
(8, 'bx_artificer', 'BxArtificerAlertsResponse', 'modules/boonex/artificer/classes/BxArtificerAlertsResponse.php', '', 1),
(9, 'bx_persons', 'BxPersonsAlertsResponse', 'modules/boonex/persons/classes/BxPersonsAlertsResponse.php', '', 1),
(10, 'sys_image_transcoder_local_file_delete_bx_persons_icon', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:32:"alert_response_file_delete_local";s:6:"params";a:1:{i:0;s:15:"bx_persons_icon";}s:5:"class";s:18:"TemplImageServices";}', 1),
(11, 'sys_image_transcoder_orig_file_delete_bx_persons_icon', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:31:"alert_response_file_delete_orig";s:6:"params";a:1:{i:0;s:15:"bx_persons_icon";}s:5:"class";s:18:"TemplImageServices";}', 1),
(12, 'sys_image_transcoder_local_file_delete_bx_persons_thumb', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:32:"alert_response_file_delete_local";s:6:"params";a:1:{i:0;s:16:"bx_persons_thumb";}s:5:"class";s:18:"TemplImageServices";}', 1),
(13, 'sys_image_transcoder_orig_file_delete_bx_persons_thumb', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:31:"alert_response_file_delete_orig";s:6:"params";a:1:{i:0;s:16:"bx_persons_thumb";}s:5:"class";s:18:"TemplImageServices";}', 1),
(14, 'sys_image_transcoder_local_file_delete_bx_persons_avatar', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:32:"alert_response_file_delete_local";s:6:"params";a:1:{i:0;s:17:"bx_persons_avatar";}s:5:"class";s:18:"TemplImageServices";}', 1),
(15, 'sys_image_transcoder_orig_file_delete_bx_persons_avatar', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:31:"alert_response_file_delete_orig";s:6:"params";a:1:{i:0;s:17:"bx_persons_avatar";}s:5:"class";s:18:"TemplImageServices";}', 1),
(16, 'sys_image_transcoder_local_file_delete_bx_persons_avatar_big', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:32:"alert_response_file_delete_local";s:6:"params";a:1:{i:0;s:21:"bx_persons_avatar_big";}s:5:"class";s:18:"TemplImageServices";}', 1),
(17, 'sys_image_transcoder_orig_file_delete_bx_persons_avatar_big', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:31:"alert_response_file_delete_orig";s:6:"params";a:1:{i:0;s:21:"bx_persons_avatar_big";}s:5:"class";s:18:"TemplImageServices";}', 1),
(18, 'sys_image_transcoder_local_file_delete_bx_persons_picture', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:32:"alert_response_file_delete_local";s:6:"params";a:1:{i:0;s:18:"bx_persons_picture";}s:5:"class";s:18:"TemplImageServices";}', 1),
(19, 'sys_image_transcoder_orig_file_delete_bx_persons_picture', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:31:"alert_response_file_delete_orig";s:6:"params";a:1:{i:0;s:18:"bx_persons_picture";}s:5:"class";s:18:"TemplImageServices";}', 1),
(20, 'sys_image_transcoder_local_file_delete_bx_persons_cover', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:32:"alert_response_file_delete_local";s:6:"params";a:1:{i:0;s:16:"bx_persons_cover";}s:5:"class";s:18:"TemplImageServices";}', 1),
(21, 'sys_image_transcoder_orig_file_delete_bx_persons_cover', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:31:"alert_response_file_delete_orig";s:6:"params";a:1:{i:0;s:16:"bx_persons_cover";}s:5:"class";s:18:"TemplImageServices";}', 1),
(22, 'sys_image_transcoder_local_file_delete_bx_persons_cover_thumb', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:32:"alert_response_file_delete_local";s:6:"params";a:1:{i:0;s:22:"bx_persons_cover_thumb";}s:5:"class";s:18:"TemplImageServices";}', 1),
(23, 'sys_image_transcoder_orig_file_delete_bx_persons_cover_thumb', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:31:"alert_response_file_delete_orig";s:6:"params";a:1:{i:0;s:22:"bx_persons_cover_thumb";}s:5:"class";s:18:"TemplImageServices";}', 1),
(24, 'sys_image_transcoder_local_file_delete_bx_persons_gallery', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:32:"alert_response_file_delete_local";s:6:"params";a:1:{i:0;s:18:"bx_persons_gallery";}s:5:"class";s:18:"TemplImageServices";}', 1),
(25, 'sys_image_transcoder_orig_file_delete_bx_persons_gallery', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:31:"alert_response_file_delete_orig";s:6:"params";a:1:{i:0;s:18:"bx_persons_gallery";}s:5:"class";s:18:"TemplImageServices";}', 1),
(26, 'sys_image_transcoder_local_file_delete_sys_image_resize', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:32:"alert_response_file_delete_local";s:6:"params";a:1:{i:0;s:16:"sys_image_resize";}s:5:"class";s:18:"TemplImageServices";}', 1),
(27, 'sys_image_transcoder_orig_file_delete_sys_image_resize', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:31:"alert_response_file_delete_orig";s:6:"params";a:1:{i:0;s:16:"sys_image_resize";}s:5:"class";s:18:"TemplImageServices";}', 1),
(28, 'sys_image_transcoder_local_file_delete_sys_icon_apple', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:32:"alert_response_file_delete_local";s:6:"params";a:1:{i:0;s:14:"sys_icon_apple";}s:5:"class";s:18:"TemplImageServices";}', 1),
(29, 'sys_image_transcoder_orig_file_delete_sys_icon_apple', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:31:"alert_response_file_delete_orig";s:6:"params";a:1:{i:0;s:14:"sys_icon_apple";}s:5:"class";s:18:"TemplImageServices";}', 1),
(30, 'sys_image_transcoder_local_file_delete_sys_icon_android', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:32:"alert_response_file_delete_local";s:6:"params";a:1:{i:0;s:16:"sys_icon_android";}s:5:"class";s:18:"TemplImageServices";}', 1),
(31, 'sys_image_transcoder_orig_file_delete_sys_icon_android', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:31:"alert_response_file_delete_orig";s:6:"params";a:1:{i:0;s:16:"sys_icon_android";}s:5:"class";s:18:"TemplImageServices";}', 1),
(32, 'sys_image_transcoder_local_file_delete_sys_icon_android_splash', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:32:"alert_response_file_delete_local";s:6:"params";a:1:{i:0;s:23:"sys_icon_android_splash";}s:5:"class";s:18:"TemplImageServices";}', 1),
(33, 'sys_image_transcoder_orig_file_delete_sys_icon_android_splash', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:31:"alert_response_file_delete_orig";s:6:"params";a:1:{i:0;s:23:"sys_icon_android_splash";}s:5:"class";s:18:"TemplImageServices";}', 1),
(34, 'sys_image_transcoder_local_file_delete_sys_icon_facebook', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:32:"alert_response_file_delete_local";s:6:"params";a:1:{i:0;s:17:"sys_icon_facebook";}s:5:"class";s:18:"TemplImageServices";}', 1),
(35, 'sys_image_transcoder_orig_file_delete_sys_icon_facebook', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:31:"alert_response_file_delete_orig";s:6:"params";a:1:{i:0;s:17:"sys_icon_facebook";}s:5:"class";s:18:"TemplImageServices";}', 1),
(36, 'sys_image_transcoder_local_file_delete_sys_icon_favicon', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:32:"alert_response_file_delete_local";s:6:"params";a:1:{i:0;s:16:"sys_icon_favicon";}s:5:"class";s:18:"TemplImageServices";}', 1),
(37, 'sys_image_transcoder_orig_file_delete_sys_icon_favicon', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:31:"alert_response_file_delete_orig";s:6:"params";a:1:{i:0;s:16:"sys_icon_favicon";}s:5:"class";s:18:"TemplImageServices";}', 1),
(38, 'sys_image_transcoder_local_file_delete_sys_cover', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:32:"alert_response_file_delete_local";s:6:"params";a:1:{i:0;s:9:"sys_cover";}s:5:"class";s:18:"TemplImageServices";}', 1),
(39, 'sys_image_transcoder_orig_file_delete_sys_cover', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:31:"alert_response_file_delete_orig";s:6:"params";a:1:{i:0;s:9:"sys_cover";}s:5:"class";s:18:"TemplImageServices";}', 1),
(40, 'sys_image_transcoder_local_file_delete_sys_cover_unit_profile', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:32:"alert_response_file_delete_local";s:6:"params";a:1:{i:0;s:22:"sys_cover_unit_profile";}s:5:"class";s:18:"TemplImageServices";}', 1),
(41, 'sys_image_transcoder_orig_file_delete_sys_cover_unit_profile', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:31:"alert_response_file_delete_orig";s:6:"params";a:1:{i:0;s:22:"sys_cover_unit_profile";}s:5:"class";s:18:"TemplImageServices";}', 1),
(42, 'sys_image_transcoder_local_file_delete_sys_cover_preview', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:32:"alert_response_file_delete_local";s:6:"params";a:1:{i:0;s:17:"sys_cover_preview";}s:5:"class";s:18:"TemplImageServices";}', 1),
(43, 'sys_image_transcoder_orig_file_delete_sys_cover_preview', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:31:"alert_response_file_delete_orig";s:6:"params";a:1:{i:0;s:17:"sys_cover_preview";}s:5:"class";s:18:"TemplImageServices";}', 1),
(44, 'sys_image_transcoder_local_file_delete_sys_builder_page_preview', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:32:"alert_response_file_delete_local";s:6:"params";a:1:{i:0;s:24:"sys_builder_page_preview";}s:5:"class";s:18:"TemplImageServices";}', 1),
(45, 'sys_image_transcoder_orig_file_delete_sys_builder_page_preview', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:31:"alert_response_file_delete_orig";s:6:"params";a:1:{i:0;s:24:"sys_builder_page_preview";}s:5:"class";s:18:"TemplImageServices";}', 1),
(46, 'sys_image_transcoder_local_file_delete_sys_builder_page_embed', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:32:"alert_response_file_delete_local";s:6:"params";a:1:{i:0;s:22:"sys_builder_page_embed";}s:5:"class";s:18:"TemplImageServices";}', 1),
(47, 'sys_image_transcoder_orig_file_delete_sys_builder_page_embed', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:31:"alert_response_file_delete_orig";s:6:"params";a:1:{i:0;s:22:"sys_builder_page_embed";}s:5:"class";s:18:"TemplImageServices";}', 1),
(48, 'sys_image_transcoder_local_file_delete_sys_cmts_images_preview', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:32:"alert_response_file_delete_local";s:6:"params";a:1:{i:0;s:23:"sys_cmts_images_preview";}s:5:"class";s:18:"TemplImageServices";}', 1),
(49, 'sys_image_transcoder_orig_file_delete_sys_cmts_images_preview', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:31:"alert_response_file_delete_orig";s:6:"params";a:1:{i:0;s:23:"sys_cmts_images_preview";}s:5:"class";s:18:"TemplImageServices";}', 1),
(50, 'sys_image_transcoder_local_file_delete_sys_custom_images', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:32:"alert_response_file_delete_local";s:6:"params";a:1:{i:0;s:17:"sys_custom_images";}s:5:"class";s:18:"TemplImageServices";}', 1),
(51, 'sys_image_transcoder_orig_file_delete_sys_custom_images', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:31:"alert_response_file_delete_orig";s:6:"params";a:1:{i:0;s:17:"sys_custom_images";}s:5:"class";s:18:"TemplImageServices";}', 1),
(52, 'sys_image_transcoder_local_file_delete_sys_images_editor', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:32:"alert_response_file_delete_local";s:6:"params";a:1:{i:0;s:17:"sys_images_editor";}s:5:"class";s:18:"TemplImageServices";}', 1),
(53, 'sys_image_transcoder_orig_file_delete_sys_images_editor', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:31:"alert_response_file_delete_orig";s:6:"params";a:1:{i:0;s:17:"sys_images_editor";}s:5:"class";s:18:"TemplImageServices";}', 1),
(54, 'sys_image_transcoder_local_file_delete_sys_wiki_images_preview', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:32:"alert_response_file_delete_local";s:6:"params";a:1:{i:0;s:23:"sys_wiki_images_preview";}s:5:"class";s:18:"TemplImageServices";}', 1),
(55, 'sys_image_transcoder_orig_file_delete_sys_wiki_images_preview', '', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:31:"alert_response_file_delete_orig";s:6:"params";a:1:{i:0;s:23:"sys_wiki_images_preview";}s:5:"class";s:18:"TemplImageServices";}', 1);
-- --------------------------------------------------------
--
-- Table structure for table `sys_api_keys`
--
CREATE TABLE `sys_api_keys` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`key` varchar(48) COLLATE utf8mb4_unicode_ci NOT NULL,
`order` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_api_origins`
--
CREATE TABLE `sys_api_origins` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`order` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_audit`
--
CREATE TABLE `sys_audit` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`added` int(11) NOT NULL,
`profile_id` int(10) NOT NULL,
`profile_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`content_id` int(10) NOT NULL,
`content_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`content_module` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`content_info_object` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`context_profile_id` int(10) NOT NULL,
`context_profile_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`action_lang_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`action_lang_key_params` text COLLATE utf8mb4_unicode_ci NOT NULL,
`extras` text COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_background_jobs`
--
CREATE TABLE `sys_background_jobs` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`added` int(11) unsigned NOT NULL DEFAULT '0',
`priority` tinyint(4) unsigned NOT NULL DEFAULT '0',
`service_call` text COLLATE utf8mb4_unicode_ci NOT NULL,
`status` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'awaiting',
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_badges`
--
CREATE TABLE `sys_badges` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`added` int(11) NOT NULL,
`module` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`text` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`icon` text COLLATE utf8mb4_unicode_ci NOT NULL,
`color` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`fontcolor` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`is_icon_only` tinyint(4) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_badges2objects`
--
CREATE TABLE `sys_badges2objects` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`badge_id` int(11) NOT NULL,
`object_id` int(11) NOT NULL,
`module` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`added` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `badge_object` (`object_id`,`badge_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_categories`
--
CREATE TABLE `sys_categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`author` int(11) NOT NULL,
`added` int(11) NOT NULL,
`module` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`value` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`status` enum('active','hidden') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'active',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_categories2objects`
--
CREATE TABLE `sys_categories2objects` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`module` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`object_id` int(11) NOT NULL,
`category_id` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_cmts_ids`
--
CREATE TABLE `sys_cmts_ids` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`system_id` int(11) NOT NULL DEFAULT '0',
`cmt_id` int(11) NOT NULL DEFAULT '0',
`author_id` int(11) NOT NULL DEFAULT '0',
`rate` float NOT NULL DEFAULT '0',
`votes` int(11) NOT NULL DEFAULT '0',
`rrate` float NOT NULL DEFAULT '0',
`rvotes` int(11) NOT NULL DEFAULT '0',
`score` int(11) NOT NULL DEFAULT '0',
`sc_up` int(11) NOT NULL DEFAULT '0',
`sc_down` int(11) NOT NULL DEFAULT '0',
`reports` int(11) NOT NULL DEFAULT '0',
`status_admin` enum('active','hidden','pending') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'active',
PRIMARY KEY (`id`),
UNIQUE KEY `system_cmt_id` (`system_id`,`cmt_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_cmts_images`
--
CREATE TABLE `sys_cmts_images` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`profile_id` int(10) unsigned NOT NULL,
`remote_id` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`file_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`mime_type` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`ext` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`size` bigint(20) NOT NULL,
`dimensions` varchar(24) COLLATE utf8mb4_unicode_ci NOT NULL,
`added` int(11) NOT NULL,
`modified` int(11) NOT NULL,
`private` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `remote_id` (`remote_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_cmts_images2entries`
--
CREATE TABLE `sys_cmts_images2entries` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`system_id` int(11) NOT NULL DEFAULT '0',
`cmt_id` int(11) NOT NULL DEFAULT '0',
`image_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `image` (`system_id`,`cmt_id`,`image_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_cmts_images_preview`
--
CREATE TABLE `sys_cmts_images_preview` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`profile_id` int(10) unsigned NOT NULL,
`remote_id` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`file_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`mime_type` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`ext` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`size` bigint(20) NOT NULL,
`added` int(11) NOT NULL,
`modified` int(11) NOT NULL,
`private` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `remote_id` (`remote_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_cmts_meta_keywords`
--
CREATE TABLE `sys_cmts_meta_keywords` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object_id` int(10) unsigned NOT NULL,
`keyword` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
KEY `object_id` (`object_id`),
KEY `keyword` (`keyword`(250))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_cmts_meta_mentions`
--
CREATE TABLE `sys_cmts_meta_mentions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object_id` int(10) unsigned NOT NULL,
`profile_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `object_id` (`object_id`),
KEY `profile_id` (`profile_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_cmts_reactions`
--
CREATE TABLE `sys_cmts_reactions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object_id` int(11) NOT NULL DEFAULT '0',
`reaction` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`count` int(11) NOT NULL DEFAULT '0',
`sum` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `reaction` (`object_id`,`reaction`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_cmts_reactions_track`
--
CREATE TABLE `sys_cmts_reactions_track` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object_id` int(11) NOT NULL DEFAULT '0',
`author_id` int(11) NOT NULL DEFAULT '0',
`author_nip` int(11) unsigned NOT NULL DEFAULT '0',
`reaction` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`value` tinyint(4) NOT NULL DEFAULT '0',
`date` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `vote` (`object_id`,`author_nip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_cmts_reports`
--
CREATE TABLE `sys_cmts_reports` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object_id` int(11) NOT NULL DEFAULT '0',
`count` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `object_id` (`object_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_cmts_reports_track`
--
CREATE TABLE `sys_cmts_reports_track` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object_id` int(11) NOT NULL DEFAULT '0',
`author_id` int(11) NOT NULL DEFAULT '0',
`author_nip` int(11) unsigned NOT NULL DEFAULT '0',
`type` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`text` text COLLATE utf8mb4_unicode_ci NOT NULL,
`date` int(11) NOT NULL DEFAULT '0',
`checked_by` int(11) NOT NULL DEFAULT '0',
`status` tinyint(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `report` (`object_id`,`author_nip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_cmts_scores`
--
CREATE TABLE `sys_cmts_scores` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object_id` int(11) NOT NULL DEFAULT '0',
`count_up` int(11) NOT NULL DEFAULT '0',
`count_down` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `object_id` (`object_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_cmts_scores_track`
--
CREATE TABLE `sys_cmts_scores_track` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object_id` int(11) NOT NULL DEFAULT '0',
`author_id` int(11) NOT NULL DEFAULT '0',
`author_nip` int(11) unsigned NOT NULL DEFAULT '0',
`type` varchar(8) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`date` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `vote` (`object_id`,`author_nip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_cmts_votes`
--
CREATE TABLE `sys_cmts_votes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object_id` int(11) NOT NULL DEFAULT '0',
`count` int(11) NOT NULL DEFAULT '0',
`sum` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `object_id` (`object_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_cmts_votes_track`
--
CREATE TABLE `sys_cmts_votes_track` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object_id` int(11) NOT NULL DEFAULT '0',
`author_id` int(11) NOT NULL DEFAULT '0',
`author_nip` int(11) unsigned NOT NULL DEFAULT '0',
`value` tinyint(4) NOT NULL DEFAULT '0',
`date` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `vote` (`object_id`,`author_nip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_content_info_grids`
--
CREATE TABLE `sys_content_info_grids` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
`grid_object` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
`grid_field_id` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
`condition` text COLLATE utf8mb4_unicode_ci NOT NULL,
`selection` varchar(256) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
UNIQUE KEY `grid_object` (`grid_object`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=3 ;
--
-- Dumping data for table `sys_content_info_grids`
--
INSERT INTO `sys_content_info_grids` VALUES
(1, 'bx_persons', 'bx_persons_administration', 'td`.`id', '', ''),
(2, 'bx_persons', 'bx_persons_common', 'td`.`id', '', '');
-- --------------------------------------------------------
--
-- Table structure for table `sys_cron_jobs`
--
CREATE TABLE `sys_cron_jobs` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`time` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '*',
`class` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`file` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`service_call` text COLLATE utf8mb4_unicode_ci NOT NULL,
`ts` int(11) NOT NULL,
`timing` float NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=13 ;
--
-- Dumping data for table `sys_cron_jobs`
--
INSERT INTO `sys_cron_jobs` VALUES
(1, 'pruning', '0 0 * * *', 'BxDolCronPruning', 'inc/classes/BxDolCronPruning.php', '', 0, 0),
(2, 'sys_acl', '0 0 * * *', 'BxDolCronAcl', 'inc/classes/BxDolCronAcl.php', '', 0, 0),
(3, 'sys_account', '0 0 * * *', 'BxDolCronAccount', 'inc/classes/BxDolCronAccount.php', '', 0, 0),
(4, 'sys_profile', '0 0 * * *', 'BxDolCronProfile', 'inc/classes/BxDolCronProfile.php', '', 0, 0),
(5, 'sys_upgrade', '0 3 * * *', 'BxDolCronUpgradeCheck', 'inc/classes/BxDolCronUpgradeCheck.php', '', 0, 0),
(6, 'sys_upgrade_modules', '30 2 * * *', 'BxDolCronUpgradeModulesCheck', 'inc/classes/BxDolCronUpgradeModulesCheck.php', '', 0, 0),
(7, 'sys_storage', '* * * * *', 'BxDolCronStorage', 'inc/classes/BxDolCronStorage.php', '', 0, 0),
(8, 'sys_transcoder', '* * * * *', 'BxDolCronTranscoder', 'inc/classes/BxDolCronTranscoder.php', '', 0, 0),
(9, 'sys_queue_email', '* * * * *', 'BxDolCronQueueEmail', 'inc/classes/BxDolCronQueueEmail.php', '', 0, 0),
(10, 'sys_queue_push', '* * * * *', 'BxDolCronQueuePush', 'inc/classes/BxDolCronQueuePush.php', '', 0, 0),
(11, 'sys_audit_clean', '* * * * *', 'BxDolCronAudit', 'inc/classes/BxDolCronAudit.php', '', 0, 0),
(12, 'sys_background_jobs', '* * * * *', 'BxDolCronBackgroundJobs', 'inc/classes/BxDolCronBackgroundJobs.php', '', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `sys_email_templates`
--
CREATE TABLE `sys_email_templates` (
`ID` int(11) unsigned NOT NULL AUTO_INCREMENT,
`Module` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`NameSystem` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`Name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`Subject` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`Body` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=25 ;
--
-- Dumping data for table `sys_email_templates`
--
INSERT INTO `sys_email_templates` VALUES
(1, 'system', '_sys_et_txt_name_system_admin_email', 't_AdminEmail', '_sys_et_txt_subject_admin_email', '_sys_et_txt_body_admin_email'),
(2, 'system', '_sys_et_txt_name_system_confirmation', 't_Confirmation', '_sys_et_txt_subject_confirmation', '_sys_et_txt_body_confirmation'),
(3, 'system', '_sys_et_txt_name_system_forgot', 't_Forgot', '_sys_et_txt_subject_forgot', '_sys_et_txt_body_forgot'),
(4, 'system', '_sys_et_txt_name_system_mem_expiration', 't_MemExpiration', '_sys_et_txt_subject_mem_expiration', '_sys_et_txt_body_mem_expiration'),
(5, 'system', '_sys_et_txt_name_system_mem_changed', 't_MemChanged', '_sys_et_txt_subject_mem_changed', '_sys_et_txt_body_mem_changed'),
(6, 'system', '_sys_et_txt_name_system_mem_prolonged', 't_MemProlonged', '_sys_et_txt_subject_mem_prolonged', '_sys_et_txt_body_mem_prolonged'),
(7, 'system', '_sys_et_txt_name_system_comment_replied', 't_CommentReplied', '_sys_et_txt_subject_comment_replied', '_sys_et_txt_body_comment_replied'),
(8, 'system', '_sys_et_txt_name_system_reported', 't_Reported', '_sys_et_txt_subject_system_reported', '_sys_et_txt_body_system_reported'),
(9, 'system', '_sys_et_txt_name_system_delayed_module_uninstall', 't_DelayedModuleUninstall', '_sys_et_txt_subject_delayed_module_uninstall', '_sys_et_txt_body_delayed_module_uninstall'),
(10, 'system', '_sys_et_txt_name_system_account', 't_Account', '_sys_et_txt_subject_account', '_sys_et_txt_body_account'),
(11, 'system', '_sys_et_txt_name_system_account_password_expired', 't_AccountPasswordExpired', '_sys_et_txt_subject_account_password_expired', '_sys_et_txt_body_account_password_expired'),
(12, 'system', '_sys_et_txt_name_system_pruning', 't_Pruning', '_sys_et_txt_subject_pruning', '_sys_et_txt_body_pruning'),
(13, 'system', '_sys_et_txt_name_profile_change_status_active', 't_ChangeStatusActive', '_sys_et_txt_subject_profile_change_status_active', '_sys_et_txt_body_profile_change_status_active'),
(14, 'system', '_sys_et_txt_name_profile_change_status_suspended', 't_ChangeStatusSuspended', '_sys_et_txt_subject_profile_change_status_suspended', '_sys_et_txt_body_profile_change_status_suspended'),
(15, 'system', '_sys_et_txt_name_profile_change_status_pending', 't_ChangeStatusPending', '_sys_et_txt_subject_profile_change_status_pending', '_sys_et_txt_body_profile_change_status_pending'),
(16, 'system', '_sys_et_txt_name_upgrade_failed', 't_UpgradeFailed', '_sys_et_txt_subject_upgrade_failed', '_sys_et_txt_body_upgrade_failed'),
(17, 'system', '_sys_et_txt_name_upgrade_modules_failed', 't_UpgradeModulesFailed', '_sys_et_txt_subject_upgrade_modules_failed', '_sys_et_txt_body_upgrade_modules_failed'),
(18, 'system', '_sys_et_txt_name_upgrade_success', 't_UpgradeSuccess', '_sys_et_txt_subject_upgrade_success', '_sys_et_txt_body_upgrade_success'),
(19, 'system', '_sys_et_txt_name_upgrade_modules_success', 't_UpgradeModulesSuccess', '_sys_et_txt_subject_upgrade_modules_success', '_sys_et_txt_body_upgrade_modules_success'),
(20, 'system', '_sys_et_txt_name_bg_operation_failed', 't_BgOperationFailed', '_sys_et_txt_subject_bg_operation_failed', '_sys_et_txt_body_bg_operation_failed'),
(21, 'system', '_sys_et_txt_name_account_change_status_activate', 't_ChangeStatusAccountActivate', '_sys_et_txt_subject_account_change_status_activate', '_sys_et_txt_body_account_change_status_activate'),
(22, 'system', '_sys_et_txt_name_account_change_status_suspended', 't_ChangeStatusAccountSuspend', '_sys_et_txt_subject_account_change_status_suspended', '_sys_et_txt_body_account_change_status_suspended'),
(23, 'system', '_sys_et_txt_name_manage_approve', 't_ManageApprove', '_sys_et_txt_subject_manage_approve', '_sys_et_txt_body_manage_approve'),
(24, 'bx_persons', '_bx_persons_email_friend_request', 'bx_persons_friend_request', '_bx_persons_email_friend_request_subject', '_bx_persons_email_friend_request_body');
-- --------------------------------------------------------
--
-- Table structure for table `sys_embeded_data`
--
CREATE TABLE `sys_embeded_data` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`data` text COLLATE utf8mb4_unicode_ci,
`added` int(11) DEFAULT NULL,
`theme` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_files`
--
CREATE TABLE `sys_files` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`profile_id` int(10) unsigned NOT NULL,
`remote_id` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`file_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`mime_type` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`ext` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`size` bigint(20) NOT NULL,
`added` int(11) NOT NULL,
`modified` int(11) NOT NULL,
`private` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `remote_id` (`remote_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_form_displays`
--
CREATE TABLE `sys_form_displays` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`display_name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
`module` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`object` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`view_mode` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `object_display_name` (`object`,`display_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=41 ;
--
-- Dumping data for table `sys_form_displays`
--
INSERT INTO `sys_form_displays` VALUES
(1, 'sys_login', 'system', 'sys_login', '_sys_form_display_login', 0),
(2, 'sys_login_step2', 'system', 'sys_login', '_sys_form_display_login_step2', 0),
(3, 'sys_login_step3', 'system', 'sys_login', '_sys_form_display_login_step3', 0),
(4, 'sys_account_create', 'system', 'sys_account', '_sys_form_display_account_create', 0),
(5, 'sys_account_settings_email', 'system', 'sys_account', '_sys_form_display_account_settings_email', 0),
(6, 'sys_account_settings_pwd', 'system', 'sys_account', '_sys_form_display_account_settings_password', 0),
(7, 'sys_account_settings_info', 'system', 'sys_account', '_sys_form_display_account_settings_info', 0),
(8, 'sys_account_settings_del_account', 'system', 'sys_account', '_sys_form_display_account_settings_delete', 0),
(9, 'sys_profile_cf_set', 'system', 'sys_profile', '_sys_form_display_profile_cf_set', 0),
(10, 'sys_profile_cf_manage', 'system', 'sys_profile', '_sys_form_display_profile_cf_manage', 0),
(11, 'sys_forgot_password', 'system', 'sys_forgot_password', '_sys_form_display_forgot_password', 0),
(12, 'sys_forgot_password_reset', 'system', 'sys_forgot_password', '_sys_form_display_forgot_password_reset', 0),
(13, 'sys_confirm_phone_set_phone', 'system', 'sys_confirm_phone', '_sys_form_display_confirm_phone_set_phone', 0),
(14, 'sys_confirm_phone_confirmation', 'system', 'sys_confirm_phone', '_sys_form_display_confirm_phone_confirmation', 0),
(15, 'sys_confirm_email', 'system', 'sys_confirm_email', '_sys_form_display_confirm_email', 0),
(16, 'sys_unsubscribe_updates', 'system', 'sys_unsubscribe', '_sys_form_display_unsubscribe_updates', 0),
(17, 'sys_unsubscribe_news', 'system', 'sys_unsubscribe', '_sys_form_display_unsubscribe_news', 0),
(18, 'sys_comment_post', 'system', 'sys_comment', '_sys_form_display_comment_post', 0),
(19, 'sys_comment_edit', 'system', 'sys_comment', '_sys_form_display_comment_edit', 0),
(20, 'sys_agents_comment_post', 'system', 'sys_agents_comment', '_sys_form_display_agents_comment_post', 0),
(21, 'sys_review_post', 'system', 'sys_review', '_sys_form_review_display_post', 0),
(22, 'sys_review_edit', 'system', 'sys_review', '_sys_form_review_display_edit', 0),
(23, 'sys_report_post', 'system', 'sys_report', '_sys_form_display_report_post', 0),
(24, 'sys_favorite_add', 'system', 'sys_favorite', '_sys_form_display_favorite_add', 0),
(25, 'sys_favorite_list_edit', 'system', 'sys_favorite', '_sys_form_display_favorite_list_edit', 0),
(26, 'sys_privacy_group_custom_members', 'system', 'sys_privacy_group_custom', '_sys_form_display_ps_gc_members', 0),
(27, 'sys_privacy_group_custom_memberships', 'system', 'sys_privacy_group_custom', '_sys_form_display_ps_gc_memberships', 0),
(28, 'sys_labels_select', 'system', 'sys_labels', '_sys_form_labels_display_select', 0),
(29, 'sys_wiki_edit', 'system', 'sys_wiki', '_sys_form_display_wiki_edit', 0),
(30, 'sys_wiki_translate', 'system', 'sys_wiki', '_sys_form_display_wiki_translate', 0),
(31, 'sys_manage_approve', 'system', 'sys_manage', '_sys_form_display_manage_approve', 0),
(32, 'sys_acl_set', 'system', 'sys_acl', '_sys_form_display_acl_set', 0),
(33, 'bx_person_add', 'bx_persons', 'bx_person', '_bx_persons_form_profile_display_add', 0),
(34, 'bx_person_delete', 'bx_persons', 'bx_person', '_bx_persons_form_profile_display_delete', 0),
(35, 'bx_person_edit', 'bx_persons', 'bx_person', '_bx_persons_form_profile_display_edit', 0),
(36, 'bx_person_edit_cover', 'bx_persons', 'bx_person', '_bx_persons_form_profile_display_edit_cover', 0),
(37, 'bx_person_view', 'bx_persons', 'bx_person', '_bx_persons_form_profile_display_view', 1),
(38, 'bx_person_view_full', 'bx_persons', 'bx_person', '_bx_persons_form_profile_display_view_full', 1),
(39, 'bx_person_skills', 'bx_persons', 'bx_person_skills', '_bx_persons_skills_form_profile_display_add', 0),
(40, 'bx_person_skills_view', 'bx_persons', 'bx_person_skills', '_bx_persons_skills_form_profile_display_view', 1);
-- --------------------------------------------------------
--
-- Table structure for table `sys_form_display_inputs`
--
CREATE TABLE `sys_form_display_inputs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`display_name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
`input_name` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`visible_for_levels` int(11) NOT NULL DEFAULT '2147483647',
`active` tinyint(4) NOT NULL DEFAULT '0',
`order` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `display_input` (`display_name`,`input_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=247 ;
--
-- Dumping data for table `sys_form_display_inputs`
--
INSERT INTO `sys_form_display_inputs` VALUES
(1, 'sys_login', 'role', 2147483647, 1, 1),
(2, 'sys_login', 'relocate', 2147483647, 1, 2),
(3, 'sys_login', 'ID', 2147483647, 1, 3),
(4, 'sys_login', 'Password', 2147483647, 1, 4),
(5, 'sys_login', 'rememberMe', 2147483647, 1, 5),
(6, 'sys_login', 'submit_text', 2147483647, 1, 6),
(7, 'sys_login', 'login', 2147483647, 1, 7),
(8, 'sys_login_step2', 'phone', 2147483647, 1, 1),
(9, 'sys_login_step2', 'do_sendsms', 2147483647, 1, 2),
(10, 'sys_login_step2', 'relocate', 2147483647, 1, 3),
(11, 'sys_login_step3', 'code', 2147483647, 1, 1),
(12, 'sys_login_step3', 'do_checkcode', 2147483647, 1, 2),
(13, 'sys_login_step3', 'back', 2147483647, 1, 3),
(14, 'sys_login_step3', 'relocate', 2147483647, 1, 4),
(15, 'sys_account_create', 'name', 2147483647, 1, 1),
(16, 'sys_account_create', 'email', 2147483647, 1, 2),
(17, 'sys_account_create', 'phone', 2147483647, 0, 3),
(18, 'sys_account_create', 'password', 2147483647, 1, 4),
(19, 'sys_account_create', 'receive_news', 2147483647, 1, 5),
(20, 'sys_account_create', 'do_publish', 2147483647, 1, 6),
(21, 'sys_account_create', 'agreement', 2147483647, 0, 7),
(22, 'sys_account_settings_email', 'email', 2147483647, 1, 1),
(23, 'sys_account_settings_email', 'password_current', 2147483647, 1, 2),
(24, 'sys_account_settings_email', 'receive_updates', 2147483647, 1, 3),
(25, 'sys_account_settings_email', 'receive_news', 2147483647, 1, 4),
(26, 'sys_account_settings_email', 'do_submit', 2147483647, 1, 5),
(27, 'sys_account_settings_pwd', 'password_current', 2147483647, 1, 1),
(28, 'sys_account_settings_pwd', 'password', 2147483647, 1, 2),
(29, 'sys_account_settings_pwd', 'password_confirm', 2147483647, 1, 3),
(30, 'sys_account_settings_pwd', 'do_submit', 2147483647, 1, 4),
(31, 'sys_account_settings_del_account', 'delete_content', 2147483647, 1, 0),
(32, 'sys_account_settings_del_account', 'delete_confirm', 2147483647, 1, 1),
(33, 'sys_account_settings_del_account', 'password_current', 2147483647, 1, 2),
(34, 'sys_account_settings_del_account', 'do_submit', 2147483647, 1, 3),
(35, 'sys_account_settings_info', 'name', 2147483647, 1, 1),
(36, 'sys_account_settings_info', 'do_submit', 2147483647, 1, 2),
(37, 'sys_profile_cf_set', 'cfw_value', 2147483647, 1, 1),
(38, 'sys_profile_cf_set', 'do_submit', 2147483647, 1, 2),
(39, 'sys_profile_cf_manage', 'cfu_items', 2147483647, 1, 1),
(40, 'sys_profile_cf_manage', 'cfu_locked', 2147483647, 1, 2),
(41, 'sys_profile_cf_manage', 'controls', 2147483647, 1, 3),
(42, 'sys_profile_cf_manage', 'do_submit', 2147483647, 1, 4),
(43, 'sys_profile_cf_manage', 'do_cancel', 2147483647, 1, 5),
(44, 'sys_forgot_password', 'email', 2147483647, 1, 1),
(45, 'sys_forgot_password', 'phone', 2147483647, 1, 2),
(46, 'sys_forgot_password', 'captcha', 2147483647, 1, 3),
(47, 'sys_forgot_password', 'do_submit', 2147483647, 1, 4),
(48, 'sys_forgot_password_reset', 'key', 2147483647, 1, 1),
(49, 'sys_forgot_password_reset', 'password', 2147483647, 1, 2),
(50, 'sys_forgot_password_reset', 'captcha', 2147483647, 1, 3),
(51, 'sys_forgot_password_reset', 'do_submit', 2147483647, 1, 4),
(52, 'sys_confirm_email', 'code', 2147483647, 1, 1),
(53, 'sys_confirm_email', 'do_submit', 2147483647, 1, 2),
(54, 'sys_confirm_phone_set_phone', 'phone', 2147483647, 1, 1),
(55, 'sys_confirm_phone_set_phone', 'do_sendsms', 2147483647, 1, 2),
(56, 'sys_confirm_phone_confirmation', 'code', 2147483647, 1, 1),
(57, 'sys_confirm_phone_confirmation', 'do_submit', 2147483647, 1, 2),
(58, 'sys_unsubscribe_updates', 'id', 2147483647, 1, 1),
(59, 'sys_unsubscribe_updates', 'code', 2147483647, 1, 2),
(60, 'sys_unsubscribe_updates', 'receive_updates', 2147483647, 1, 3),
(61, 'sys_unsubscribe_updates', 'do_submit', 2147483647, 1, 4),
(62, 'sys_unsubscribe_news', 'id', 2147483647, 1, 1),
(63, 'sys_unsubscribe_news', 'code', 2147483647, 1, 2),
(64, 'sys_unsubscribe_news', 'receive_news', 2147483647, 1, 3),
(65, 'sys_unsubscribe_news', 'do_submit', 2147483647, 1, 4),
(66, 'sys_comment_post', 'sys', 2147483647, 1, 1),
(67, 'sys_comment_post', 'id', 2147483647, 1, 2),
(68, 'sys_comment_post', 'action', 2147483647, 1, 3),
(69, 'sys_comment_post', 'cmt_id', 2147483647, 0, 4),
(70, 'sys_comment_post', 'cmt_parent_id', 2147483647, 1, 5),
(71, 'sys_comment_post', 'cmt_text', 2147483647, 1, 6),
(72, 'sys_comment_post', 'cmt_cf', 2147483647, 1, 7),
(73, 'sys_comment_post', 'cmt_submit', 2147483647, 1, 8),
(74, 'sys_comment_post', 'cmt_image', 2147483647, 1, 9),
(75, 'sys_comment_edit', 'sys', 2147483647, 1, 1),
(76, 'sys_comment_edit', 'id', 2147483647, 1, 2),
(77, 'sys_comment_edit', 'action', 2147483647, 1, 3),
(78, 'sys_comment_edit', 'cmt_id', 2147483647, 1, 4),
(79, 'sys_comment_edit', 'cmt_parent_id', 2147483647, 1, 5),
(80, 'sys_comment_edit', 'cmt_text', 2147483647, 1, 6),
(81, 'sys_comment_edit', 'cmt_cf', 2147483647, 1, 7),
(82, 'sys_comment_edit', 'cmt_controls', 2147483647, 1, 8),
(83, 'sys_comment_edit', 'cmt_submit', 2147483647, 1, 9),
(84, 'sys_comment_edit', 'cmt_cancel', 2147483647, 1, 10),
(85, 'sys_comment_edit', 'cmt_image', 2147483647, 1, 11),
(86, 'sys_agents_comment_post', 'sys', 2147483647, 1, 1),
(87, 'sys_agents_comment_post', 'id', 2147483647, 1, 2),
(88, 'sys_agents_comment_post', 'action', 2147483647, 1, 3),
(89, 'sys_agents_comment_post', 'cmt_parent_id', 2147483647, 1, 4),
(90, 'sys_agents_comment_post', 'cmt_text', 2147483647, 1, 5),
(91, 'sys_agents_comment_post', 'cmt_submit', 2147483647, 1, 6),
(92, 'sys_agents_comment_post', 'cmt_image', 2147483647, 1, 7),
(93, 'sys_review_post', 'sys', 2147483647, 1, 1),
(94, 'sys_review_post', 'id', 2147483647, 1, 2),
(95, 'sys_review_post', 'action', 2147483647, 1, 3),
(96, 'sys_review_post', 'cmt_id', 2147483647, 0, 4),
(97, 'sys_review_post', 'cmt_parent_id', 2147483647, 1, 5),
(98, 'sys_review_post', 'cmt_text', 2147483647, 1, 6),
(99, 'sys_review_post', 'cmt_mood', 2147483647, 1, 7),
(100, 'sys_review_post', 'cmt_cf', 2147483647, 1, 9),
(101, 'sys_review_post', 'cmt_submit', 2147483647, 1, 10),
(102, 'sys_review_post', 'cmt_image', 2147483647, 1, 11),
(103, 'sys_review_edit', 'sys', 2147483647, 1, 1),
(104, 'sys_review_edit', 'id', 2147483647, 1, 2),
(105, 'sys_review_edit', 'action', 2147483647, 1, 3),
(106, 'sys_review_edit', 'cmt_id', 2147483647, 1, 4),
(107, 'sys_review_edit', 'cmt_parent_id', 2147483647, 1, 5),
(108, 'sys_review_edit', 'cmt_text', 2147483647, 1, 6),
(109, 'sys_review_edit', 'cmt_mood', 2147483647, 1, 7),
(110, 'sys_review_edit', 'cmt_cf', 2147483647, 1, 9),
(111, 'sys_review_edit', 'cmt_submit', 2147483647, 1, 10),
(112, 'sys_review_edit', 'cmt_image', 2147483647, 1, 11),
(113, 'sys_report_post', 'sys', 2147483647, 1, 1),
(114, 'sys_report_post', 'object_id', 2147483647, 1, 2),
(115, 'sys_report_post', 'action', 2147483647, 1, 3),
(116, 'sys_report_post', 'id', 2147483647, 0, 4),
(117, 'sys_report_post', 'type', 2147483647, 1, 5),
(118, 'sys_report_post', 'text', 2147483647, 1, 6),
(119, 'sys_report_post', 'submit', 2147483647, 1, 7),
(120, 'sys_favorite_add', 'sys', 2147483647, 1, 1),
(121, 'sys_favorite_add', 'object_id', 2147483647, 1, 2),
(122, 'sys_favorite_add', 'action', 2147483647, 1, 3),
(123, 'sys_favorite_add', 'id', 2147483647, 0, 4),
(124, 'sys_favorite_add', 'list', 2147483647, 1, 5),
(125, 'sys_favorite_add', 'new_list', 2147483647, 1, 6),
(126, 'sys_favorite_add', 'title', 2147483647, 1, 7),
(127, 'sys_favorite_add', 'allow_view_favorite_list_to', 2147483647, 1, 8),
(128, 'sys_favorite_add', 'submit', 2147483647, 1, 9),
(129, 'sys_favorite_list_edit', 'sys', 2147483647, 1, 1),
(130, 'sys_favorite_list_edit', 'list_id', 2147483647, 1, 2),
(131, 'sys_favorite_list_edit', 'object_id', 2147483647, 1, 3),
(132, 'sys_favorite_list_edit', 'action', 2147483647, 1, 4),
(133, 'sys_favorite_list_edit', 'title', 2147483647, 1, 5),
(134, 'sys_favorite_list_edit', 'allow_view_favorite_list_to', 2147483647, 1, 6),
(135, 'sys_favorite_list_edit', 'submit', 2147483647, 1, 7),
(136, 'sys_privacy_group_custom_members', 'profile_id', 2147483647, 1, 1),
(137, 'sys_privacy_group_custom_members', 'content_id', 2147483647, 1, 2),
(138, 'sys_privacy_group_custom_members', 'object', 2147483647, 1, 3),
(139, 'sys_privacy_group_custom_members', 'action', 2147483647, 1, 4),
(140, 'sys_privacy_group_custom_members', 'group_id', 2147483647, 1, 5),
(141, 'sys_privacy_group_custom_members', 'search', 2147483647, 1, 6),
(142, 'sys_privacy_group_custom_members', 'list', 2147483647, 1, 7),
(143, 'sys_privacy_group_custom_members', 'controls', 2147483647, 1, 8),
(144, 'sys_privacy_group_custom_members', 'do_submit', 2147483647, 1, 9),
(145, 'sys_privacy_group_custom_members', 'do_cancel', 2147483647, 1, 10),
(146, 'sys_privacy_group_custom_memberships', 'profile_id', 2147483647, 1, 1),
(147, 'sys_privacy_group_custom_memberships', 'content_id', 2147483647, 1, 2),
(148, 'sys_privacy_group_custom_memberships', 'object', 2147483647, 1, 3),
(149, 'sys_privacy_group_custom_memberships', 'action', 2147483647, 1, 4),
(150, 'sys_privacy_group_custom_memberships', 'group_id', 2147483647, 1, 5),
(151, 'sys_privacy_group_custom_memberships', 'memberships', 2147483647, 1, 6),
(152, 'sys_privacy_group_custom_memberships', 'controls', 2147483647, 1, 7),
(153, 'sys_privacy_group_custom_memberships', 'do_submit', 2147483647, 1, 8),
(154, 'sys_privacy_group_custom_memberships', 'do_cancel', 2147483647, 1, 9),
(155, 'sys_labels_select', 'name', 2147483647, 1, 1),
(156, 'sys_labels_select', 'action', 2147483647, 1, 2),
(157, 'sys_labels_select', 'search', 2147483647, 1, 3),
(158, 'sys_labels_select', 'list', 2147483647, 1, 4),
(159, 'sys_labels_select', 'list_context', 2147483647, 1, 5),
(160, 'sys_labels_select', 'controls', 2147483647, 1, 6),
(161, 'sys_labels_select', 'do_submit', 2147483647, 1, 7),
(162, 'sys_labels_select', 'do_cancel', 2147483647, 1, 8),
(163, 'sys_wiki_edit', 'block_id', 2147483647, 1, 1),
(164, 'sys_wiki_edit', 'language', 2147483647, 1, 2),
(165, 'sys_wiki_edit', 'content', 2147483647, 1, 3),
(166, 'sys_wiki_edit', 'files', 2147483647, 1, 4),
(167, 'sys_wiki_edit', 'notes', 2147483647, 1, 5),
(168, 'sys_wiki_edit', 'do_submit', 2147483647, 1, 6),
(169, 'sys_wiki_edit', 'close', 2147483647, 1, 7),
(170, 'sys_wiki_edit', 'buttons', 2147483647, 1, 8),
(171, 'sys_wiki_translate', 'block_id', 2147483647, 1, 1),
(172, 'sys_wiki_translate', 'content_main', 2147483647, 1, 2),
(173, 'sys_wiki_translate', 'language', 2147483647, 1, 3),
(174, 'sys_wiki_translate', 'content', 2147483647, 1, 4),
(175, 'sys_wiki_translate', 'files', 2147483647, 1, 5),
(176, 'sys_wiki_translate', 'notes', 2147483647, 1, 6),
(177, 'sys_wiki_translate', 'do_submit', 2147483647, 1, 7),
(178, 'sys_wiki_translate', 'close', 2147483647, 1, 8),
(179, 'sys_wiki_translate', 'buttons', 2147483647, 1, 9),
(180, 'sys_manage_approve', 'content_id', 2147483647, 1, 1),
(181, 'sys_manage_approve', 'notes', 2147483647, 1, 2),
(182, 'sys_manage_approve', 'controls', 2147483647, 1, 3),
(183, 'sys_manage_approve', 'do_send', 2147483647, 1, 4),
(184, 'sys_manage_approve', 'do_submit', 2147483647, 1, 5),
(185, 'sys_manage_approve', 'do_cancel', 2147483647, 1, 6),
(186, 'sys_acl_set', 'profile_id', 2147483647, 1, 1),
(187, 'sys_acl_set', 'card', 2147483647, 1, 2),
(188, 'sys_acl_set', 'level_id', 2147483647, 1, 3),
(189, 'sys_acl_set', 'duration', 2147483647, 1, 4),
(190, 'sys_acl_set', 'controls', 2147483647, 1, 5),
(191, 'sys_acl_set', 'do_submit', 2147483647, 1, 6),
(192, 'sys_acl_set', 'do_cancel', 2147483647, 1, 7),
(193, 'bx_person_add', 'picture', 2147483647, 1, 1),
(194, 'bx_person_add', 'gender', 2147483647, 1, 2),
(195, 'bx_person_add', 'birthday', 2147483647, 1, 3),
(196, 'bx_person_add', 'fullname', 2147483647, 1, 4),
(197, 'bx_person_add', 'last_name', 2147483647, 0, 5),
(198, 'bx_person_add', 'description', 2147483647, 1, 6),
(199, 'bx_person_add', 'location', 2147483647, 1, 7),
(200, 'bx_person_add', 'allow_view_to', 2147483647, 1, 8),
(201, 'bx_person_add', 'allow_post_to', 2147483647, 1, 9),
(202, 'bx_person_add', 'allow_contact_to', 2147483647, 1, 10),
(203, 'bx_person_add', 'do_submit', 2147483647, 1, 11),
(204, 'bx_person_delete', 'cover', 2147483647, 0, 0),
(205, 'bx_person_delete', 'picture', 2147483647, 0, 0),
(206, 'bx_person_delete', 'delete_confirm', 2147483647, 1, 0),
(207, 'bx_person_delete', 'do_submit', 2147483647, 1, 1),
(208, 'bx_person_delete', 'fullname', 2147483647, 0, 2),
(209, 'bx_person_edit', 'picture', 2147483647, 1, 1),
(210, 'bx_person_edit', 'gender', 2147483647, 1, 2),
(211, 'bx_person_edit', 'birthday', 2147483647, 1, 3),
(212, 'bx_person_edit', 'fullname', 2147483647, 1, 4),
(213, 'bx_person_edit', 'last_name', 2147483647, 0, 5),
(214, 'bx_person_edit', 'description', 2147483647, 1, 6),
(215, 'bx_person_edit', 'location', 2147483647, 1, 7),
(216, 'bx_person_edit', 'allow_view_to', 2147483647, 1, 8),
(217, 'bx_person_edit', 'allow_post_to', 2147483647, 1, 9),
(218, 'bx_person_edit', 'allow_contact_to', 2147483647, 1, 10),
(219, 'bx_person_edit', 'do_submit', 2147483647, 1, 11),
(220, 'bx_person_edit_cover', 'delete_confirm', 2147483647, 0, 1),
(221, 'bx_person_edit_cover', 'fullname', 2147483647, 0, 2),
(222, 'bx_person_edit_cover', 'picture', 2147483647, 0, 3),
(223, 'bx_person_edit_cover', 'cover', 2147483647, 1, 7),
(224, 'bx_person_edit_cover', 'do_submit', 2147483647, 1, 8),
(225, 'bx_person_view', 'gender', 2147483647, 1, 1),
(226, 'bx_person_view', 'birthday', 2147483647, 1, 2),
(227, 'bx_person_view', 'fullname', 2147483647, 1, 3),
(228, 'bx_person_view', 'last_name', 2147483647, 0, 4),
(229, 'bx_person_view', 'profile_email', 192, 1, 5),
(230, 'bx_person_view', 'profile_status', 192, 1, 6),
(231, 'bx_person_view', 'profile_ip', 192, 1, 7),
(232, 'bx_person_view', 'profile_last_active', 192, 1, 8),
(233, 'bx_person_view', 'added', 192, 1, 9),
(234, 'bx_person_view', 'changed', 192, 1, 10),
(235, 'bx_person_view', 'friends_count', 2147483647, 1, 11),
(236, 'bx_person_view', 'followers_count', 2147483647, 1, 12),
(237, 'bx_person_view_full', 'gender', 2147483647, 1, 1),
(238, 'bx_person_view_full', 'birthday', 2147483647, 1, 2),
(239, 'bx_person_view_full', 'fullname', 2147483647, 1, 3),
(240, 'bx_person_view_full', 'last_name', 2147483647, 0, 4),
(241, 'bx_person_view_full', 'description', 2147483647, 0, 5),
(242, 'bx_person_view_full', 'profile_email', 192, 1, 6),
(243, 'bx_person_view_full', 'profile_status', 192, 1, 7),
(244, 'bx_person_view_full', 'profile_last_active', 192, 1, 8),
(245, 'bx_person_skills', 'skill_name', 2147483647, 1, 1),
(246, 'bx_person_skills_view', 'skill_name', 2147483647, 1, 1);
-- --------------------------------------------------------
--
-- Table structure for table `sys_form_fields_ids`
--
CREATE TABLE `sys_form_fields_ids` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object_form` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`module` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`field_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`content_id` int(11) NOT NULL DEFAULT '0',
`author_id` int(10) NOT NULL DEFAULT '0',
`nested_content_id` int(10) NOT NULL DEFAULT '0',
`rate` float NOT NULL DEFAULT '0',
`votes` int(11) NOT NULL DEFAULT '0',
`rrate` float NOT NULL DEFAULT '0',
`rvotes` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `system_form_fields_id` (`object_form`,`content_id`,`nested_content_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_form_fields_reaction`
--
CREATE TABLE `sys_form_fields_reaction` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object_id` int(11) NOT NULL DEFAULT '0',
`reaction` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`count` int(11) NOT NULL DEFAULT '0',
`sum` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `reaction` (`object_id`,`reaction`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_form_fields_reaction_track`
--
CREATE TABLE `sys_form_fields_reaction_track` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object_id` int(11) NOT NULL DEFAULT '0',
`author_id` int(11) NOT NULL DEFAULT '0',
`author_nip` int(11) unsigned NOT NULL DEFAULT '0',
`reaction` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`value` tinyint(4) NOT NULL DEFAULT '0',
`date` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `vote` (`object_id`,`author_nip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_form_fields_votes`
--
CREATE TABLE `sys_form_fields_votes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object_id` int(11) NOT NULL DEFAULT '0',
`count` int(11) NOT NULL DEFAULT '0',
`sum` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `object_id` (`object_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_form_fields_votes_track`
--
CREATE TABLE `sys_form_fields_votes_track` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object_id` int(11) NOT NULL DEFAULT '0',
`author_id` int(11) NOT NULL DEFAULT '0',
`author_nip` int(11) unsigned NOT NULL DEFAULT '0',
`value` tinyint(4) NOT NULL DEFAULT '0',
`date` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `vote` (`object_id`,`author_nip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_form_inputs`
--
CREATE TABLE `sys_form_inputs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
`module` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`value` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`values` text COLLATE utf8mb4_unicode_ci NOT NULL,
`checked` tinyint(4) NOT NULL DEFAULT '0',
`type` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`caption_system` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`caption` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`info` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`help` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`icon` text COLLATE utf8mb4_unicode_ci NOT NULL,
`required` tinyint(4) NOT NULL DEFAULT '0',
`unique` tinyint(4) NOT NULL DEFAULT '0',
`collapsed` tinyint(4) NOT NULL DEFAULT '0',
`html` tinyint(4) NOT NULL DEFAULT '0',
`privacy` tinyint(4) NOT NULL DEFAULT '0',
`rateable` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`attrs` text COLLATE utf8mb4_unicode_ci NOT NULL,
`attrs_tr` text COLLATE utf8mb4_unicode_ci NOT NULL,
`attrs_wrapper` text COLLATE utf8mb4_unicode_ci NOT NULL,
`checker_func` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`checker_params` text COLLATE utf8mb4_unicode_ci NOT NULL,
`checker_error` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`db_pass` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`db_params` text COLLATE utf8mb4_unicode_ci NOT NULL,
`editable` tinyint(4) NOT NULL DEFAULT '1',
`deletable` tinyint(4) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `display_name` (`object`,`name`(127))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=162 ;
--
-- Dumping data for table `sys_form_inputs`
--
INSERT INTO `sys_form_inputs` VALUES
(1, 'sys_login', 'system', 'role', '1', '', 0, 'hidden', '_sys_form_login_input_caption_system_role', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(2, 'sys_login', 'system', 'relocate', '', '', 0, 'hidden', '_sys_form_login_input_caption_system_relocate', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(3, 'sys_login', 'system', 'ID', '', '', 0, 'text', '_sys_form_login_input_caption_system_id', '_sys_form_login_input_email', '', '', '', 1, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(4, 'sys_login', 'system', 'Password', '', '', 0, 'password', '_sys_form_login_input_caption_system_password', '_sys_form_login_input_password', '', '', '', 1, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(5, 'sys_login', 'system', 'rememberMe', '1', '', 0, 'switcher', '_sys_form_login_input_caption_system_remember_me', '_sys_form_login_input_remember_me', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 1, 0),
(6, 'sys_login', 'system', 'login', '_sys_form_login_input_submit', '', 0, 'submit', '_sys_form_login_input_caption_system_submit', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(7, 'sys_login', 'system', 'submit_text', '', '', 0, 'custom', '_sys_form_login_input_caption_system_submit_text', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(8, 'sys_login', 'system', 'phone', '', '', 0, 'text', '_sys_form_login_input_caption_system_phone', '_sys_form_login_input_phone', '_sys_form_login_input_phone_info', '', '', 1, 0, 0, 0, 0, '', '', '', '', 'PhoneExist', '', '_sys_form_login_input_phone_error_format', 'Xss', '', 1, 0),
(9, 'sys_login', 'system', 'code', '', '', 0, 'text', '_sys_form_login_input_caption_system_code', '_sys_form_login_input_code', '', '', '', 1, 0, 0, 0, 0, '', '', '', '', 'CodeExist', '', '_sys_form_login_input_code_error_empty', 'Xss', '', 0, 0),
(10, 'sys_login', 'system', 'back', '', '', 0, 'value', '_sys_form_login_input_caption_system_back', '_sys_form_login_input_back', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Xss', '', 0, 0),
(11, 'sys_login', 'system', 'do_checkcode', '_sys_form_login_input_checkcode', '', 0, 'submit', '_sys_form_login_input_caption_system_checkcode', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(12, 'sys_login', 'system', 'do_sendsms', '_sys_form_login_input_sendsms', '', 0, 'submit', '_sys_form_login_input_caption_system_sendsms', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(13, 'sys_account', 'system', 'email', '', '', 0, 'text', '_sys_form_login_input_caption_system_email', '_sys_form_account_input_email', '', '', '', 1, 0, 0, 0, 0, '', '', '', '', 'EmailUniq', '', '_sys_form_account_input_email_error', 'Xss', '', 0, 0),
(14, 'sys_account', 'system', 'phone', '', '', 0, 'text', '_sys_form_login_input_caption_system_phone', '_sys_form_login_input_phone', '_sys_form_login_input_phone_info', '', '', 1, 0, 0, 0, 0, '', '', '', '', 'PhoneExist', '', '_sys_form_login_input_phone_error_format', 'Xss', '', 1, 0),
(15, 'sys_account', 'system', 'password', '', '', 0, 'password', '_sys_form_login_input_caption_system_password', '_sys_form_account_input_password', '', '', '', 1, 0, 0, 0, 0, '', '', '', '', 'Password', 'a:1:{s:4:"preg";s:38:"~^(?=.*[a-z])(?=.*[A-Z])(?=.*\\d).{8,}~";}', '_sys_form_account_input_password_error', '', '', 0, 0),
(16, 'sys_account', 'system', 'password_confirm', '', '', 0, 'password', '_sys_form_login_input_caption_system_password_confirm', '_sys_form_account_input_password_confirm', '', '', '', 1, 0, 0, 0, 0, '', '', '', '', 'PasswordConfirm', '', '_sys_form_account_input_password_confirm_error', '', '', 0, 0),
(17, 'sys_account', 'system', 'do_submit', '_sys_form_account_input_submit', '', 0, 'submit', '_sys_form_login_input_caption_system_do_submit', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(18, 'sys_account', 'system', 'do_publish', '_sys_form_account_input_publish', '', 0, 'submit', '_sys_form_login_input_caption_system_do_publish', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(19, 'sys_account', 'system', 'name', '', '', 0, 'text', '_sys_form_login_input_caption_system_name', '_sys_form_account_input_name', '', '', '', 1, 0, 0, 0, 0, '', '', '', '', 'ProfileName', '', '_sys_form_account_input_name_error', 'Xss', '', 1, 0),
(20, 'sys_account', 'system', 'captcha', '', '', 0, 'captcha', '_sys_form_login_input_caption_system_captcha', '_sys_form_account_input_captcha', '', '', '', 1, 0, 0, 0, 0, '', '', '', '', 'Captcha', '', '_sys_form_account_input_captcha_error', '', '', 1, 0),
(21, 'sys_account', 'system', 'password_current', '', '', 0, 'password', '_sys_form_login_input_caption_system_password_current', '_sys_form_account_input_password_current', '', '', '', 1, 0, 0, 0, 0, '', '', '', '', 'PasswordCurrent', '', '_sys_form_account_input_password_current_error', '', '', 0, 0),
(22, 'sys_account', 'system', 'delete_content', '1', '', 0, 'hidden', '_sys_form_login_input_caption_system_delete_content', '', '', '', '', 1, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(23, 'sys_account', 'system', 'delete_confirm', '1', '', 0, 'checkbox', '_sys_form_login_input_caption_system_delete_confirm', '_sys_form_account_input_delete_confirm', '_sys_form_account_input_delete_confirm_info', '', '', 1, 0, 0, 0, 0, '', '', '', '', 'Avail', '', '_sys_form_account_input_delete_confirm_error', '', '', 0, 0),
(24, 'sys_account', 'system', 'receive_updates', '1', '', 1, 'switcher', '_sys_form_login_input_caption_system_receive_updates', '_sys_form_account_input_receive_updates', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Int', '', 0, 0),
(25, 'sys_account', 'system', 'receive_news', '1', '', 1, 'switcher', '_sys_form_login_input_caption_system_receive_news', '_sys_form_account_input_receive_news', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Int', '', 1, 0),
(26, 'sys_account', 'system', 'agreement', '', '', 0, 'custom', '_sys_form_login_input_caption_system_agreement', '_sys_form_account_input_agreement', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 1, 0),
(27, 'sys_profile', 'system', 'cfw_value', '', '#!sys_content_filter', 0, 'checkbox_set', '_sys_form_profile_input_sys_cfw_value', '_sys_form_profile_input_cfw_value', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Set', '', 1, 0),
(28, 'sys_profile', 'system', 'cfu_items', '', '#!sys_content_filter', 0, 'checkbox_set', '_sys_form_profile_input_sys_cfu_items', '_sys_form_profile_input_cfu_items', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Set', '', 1, 0),
(29, 'sys_profile', 'system', 'cfu_locked', '1', '', 0, 'switcher', '_sys_form_profile_input_sys_cfu_locked', '_sys_form_profile_input_cfu_locked', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Int', '', 1, 0),
(30, 'sys_profile', 'system', 'controls', '', 'do_submit,do_cancel', 0, 'input_set', '', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(31, 'sys_profile', 'system', 'do_submit', '_sys_form_profile_input_do_submit', '', 0, 'submit', '_sys_form_profile_input_sys_do_submit', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(32, 'sys_profile', 'system', 'do_cancel', '_sys_form_profile_input_do_cancel', '', 0, 'button', '_sys_form_profile_input_sys_do_cancel', '', '', '', '', 0, 0, 0, 0, 0, '', 'a:2:{s:5:"class";s:22:"bx-def-margin-sec-left";s:7:"onclick";s:45:"$(''.bx-popup-applied:visible'').dolPopupHide()";}', '', '', '', '', '', '', '', 0, 0),
(33, 'sys_forgot_password', 'system', 'key', '', '', 0, 'hidden', '_sys_form_forgot_password_input_caption_system_key', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(34, 'sys_forgot_password', 'system', 'password', '', '', 0, 'password', '_sys_form_forgot_password_input_caption_system_password_reset', '_sys_form_forgot_password_input_caption_password_reset', '', '', '', 1, 0, 0, 0, 0, '', '', '', '', 'Preg', 'a:1:{s:4:"preg";s:38:"~^(?=.*[a-z])(?=.*[A-Z])(?=.*\\d).{8,}~";}', '_sys_form_account_input_password_error', 'Xss', '', 1, 0),
(35, 'sys_forgot_password', 'system', 'email', '', '', 0, 'text', '_sys_form_forgot_password_input_caption_system_email', '_sys_form_forgot_password_input_email', '', '', '', 1, 0, 0, 0, 0, '', '', '', '', 'EmailExistOrEmpty', '', '_sys_form_account_input_email_error', 'Xss', '', 0, 0),
(36, 'sys_forgot_password', 'system', 'phone', '', '', 0, 'text', '_sys_form_forgot_password_input_caption_system_phone', '_sys_form_forgot_password_input_phone', '', '', '', 1, 0, 0, 0, 0, '', '', '', '', 'PhoneExistOrEmpty', '', '_sys_form_account_input_phone_error', 'Xss', '', 0, 0),
(37, 'sys_forgot_password', 'system', 'captcha', '', '', 0, 'captcha', '_sys_form_login_input_caption_system_captcha', '_sys_form_account_input_captcha', '', '', '', 1, 0, 0, 0, 0, '', '', '', '', 'Captcha', '', '_sys_form_account_input_captcha_error', '', '', 1, 0),
(38, 'sys_forgot_password', 'system', 'do_submit', '_sys_form_forgot_password_input_submit', '', 0, 'submit', '_sys_form_forgot_password_input_caption_system_do_submit', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(39, 'sys_confirm_email', 'system', 'code', '', '', 0, 'text', '_sys_form_confirm_email_input_caption_system_code', '_sys_form_confirm_email_input_code', '', '', '', 1, 0, 0, 0, 0, '', '', '', '', 'CodeExist', '', '_sys_form_confirm_email_input_code_error', 'Xss', '', 0, 0),
(40, 'sys_confirm_email', 'system', 'do_submit', '_sys_form_confirm_email_input_submit', '', 0, 'submit', '_sys_form_confirm_email_input_caption_system_do_submit', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(41, 'sys_confirm_phone', 'system', 'phone', '', '', 0, 'text', '_sys_form_confirm_phone_input_caption_system_phone', '_sys_form_confirm_phone_input_phone', '_sys_form_confirm_phone_input_phone_info', '', '', 1, 0, 0, 0, 0, '', '', '', '', 'PhoneUniq', '', '_sys_form_confirm_phone_input_phone_error_format', 'Xss', '', 1, 0),
(42, 'sys_confirm_phone', 'system', 'code', '', '', 0, 'text', '_sys_form_confirm_phone_input_caption_system_code', '_sys_form_confirm_phone_confirmation_input_code', '', '', '', 1, 0, 0, 0, 0, '', '', '', '', 'CodeExist', '', '_sys_form_confirm_phone_input_code_error_empty', 'Xss', '', 0, 0),
(43, 'sys_confirm_phone', 'system', 'do_submit', '_sys_form_confirm_phone_input_submit', '', 0, 'submit', '_sys_form_confirm_phone_input_caption_system_do_submit', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(44, 'sys_confirm_phone', 'system', 'do_sendsms', '_sys_form_confirm_phone_input_sendsms', '', 0, 'submit', '_sys_form_confirm_phone_input_caption_system_do_sendsms', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(45, 'sys_unsubscribe', 'system', 'id', '', '', 0, 'hidden', '_sys_form_unsubscribe_input_caption_system_id', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(46, 'sys_unsubscribe', 'system', 'code', '', '', 0, 'hidden', '_sys_form_unsubscribe_input_caption_system_code', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(47, 'sys_unsubscribe', 'system', 'receive_updates', '1', '', 0, 'switcher', '_sys_form_unsubscribe_input_caption_system_receive_updates', '_sys_form_unsubscribe_input_receive_updates', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Int', '', 0, 0),
(48, 'sys_unsubscribe', 'system', 'receive_news', '1', '', 0, 'switcher', '_sys_form_unsubscribe_input_caption_system_receive_news', '_sys_form_unsubscribe_input_receive_news', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Int', '', 0, 0),
(49, 'sys_unsubscribe', 'system', 'do_submit', '_sys_form_unsubscribe_input_submit', '', 0, 'submit', '_sys_form_unsubscribe_input_caption_system_do_submit', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(50, 'sys_comment', 'system', 'sys', '', '', 0, 'hidden', '_sys_form_comment_input_caption_system_sys', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(51, 'sys_comment', 'system', 'id', '', '', 0, 'hidden', '_sys_form_comment_input_caption_system_id', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(52, 'sys_comment', 'system', 'action', '', '', 0, 'hidden', '_sys_form_comment_input_caption_system_action', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(53, 'sys_comment', 'system', 'cmt_id', '', '', 0, 'hidden', '_sys_form_comment_input_caption_system_cmt_id', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Int', '', 0, 0),
(54, 'sys_comment', 'system', 'cmt_parent_id', '', '', 0, 'hidden', '_sys_form_comment_input_caption_system_cmt_parent_id', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Int', '', 0, 0),
(55, 'sys_comment', 'system', 'cmt_text', '', '', 0, 'textarea', '_sys_form_comment_input_caption_system_cmt_text', '', '', '', '', 0, 0, 0, 3, 0, '', 'a:1:{s:12:"autocomplete";s:3:"off";}', '', '', '', '', '', 'XssHtml', '', 1, 0),
(56, 'sys_comment', 'system', 'cmt_anonymous', '', '', 0, 'switcher', '_sys_form_input_sys_anonymous', '_sys_form_input_anonymous', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 1, 0),
(57, 'sys_comment', 'system', 'cmt_image', 'a:1:{i:0;s:14:"sys_cmts_html5";}', 'a:1:{s:14:"sys_cmts_html5";s:25:"_sys_uploader_html5_title";}', 0, 'files', '_sys_form_comment_input_caption_system_cmt_image', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 1, 0),
(58, 'sys_comment', 'system', 'cmt_cf', '', '#!sys_content_filter', 0, 'select', '_sys_form_entry_input_sys_cf', '_sys_form_entry_input_cf', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 1, 0),
(59, 'sys_comment', 'system', 'cmt_controls', '', 'cmt_submit,cmt_cancel', 0, 'input_set', '', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(60, 'sys_comment', 'system', 'cmt_cancel', '_sys_form_comment_input_cancel', '', 0, 'button', '_sys_form_comment_input_caption_system_cmt_cancel', '', '', '', '', 0, 0, 0, 0, 0, '', 'a:1:{s:5:"class";s:22:"bx-def-margin-sec-left";}', '', '', '', '', '', '', '', 0, 0),
(61, 'sys_comment', 'system', 'cmt_submit', '_sys_form_comment_input_submit', '', 0, 'submit', '_sys_form_comment_input_caption_system_cmt_submit', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(62, 'sys_agents_comment', 'system', 'sys', '', '', 0, 'hidden', '_sys_form_agents_comment_input_caption_system_sys', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(63, 'sys_agents_comment', 'system', 'id', '', '', 0, 'hidden', '_sys_form_agents_comment_input_caption_system_id', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(64, 'sys_agents_comment', 'system', 'action', '', '', 0, 'hidden', '_sys_form_agents_comment_input_caption_system_action', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(65, 'sys_agents_comment', 'system', 'cmt_parent_id', '', '', 0, 'hidden', '_sys_form_agents_comment_input_caption_system_cmt_parent_id', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Int', '', 0, 0),
(66, 'sys_agents_comment', 'system', 'cmt_text', '', '', 0, 'textarea', '_sys_form_agents_comment_input_caption_system_cmt_text', '', '', '', '', 0, 0, 0, 3, 0, '', 'a:1:{s:12:"autocomplete";s:3:"off";}', '', '', '', '', '', 'XssHtml', '', 1, 0),
(67, 'sys_agents_comment', 'system', 'cmt_image', 'a:1:{i:0;s:14:"sys_cmts_html5";}', 'a:1:{s:14:"sys_cmts_html5";s:25:"_sys_uploader_html5_title";}', 0, 'files', '_sys_form_agents_comment_input_caption_system_cmt_image', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 1, 0),
(68, 'sys_agents_comment', 'system', 'cmt_submit', '_sys_form_agents_comment_input_caption_cmt_submit', '', 0, 'submit', '_sys_form_agents_comment_input_caption_system_cmt_submit', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(69, 'sys_review', 'system', 'sys', '', '', 0, 'hidden', '_sys_form_review_input_caption_system_sys', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(70, 'sys_review', 'system', 'id', '', '', 0, 'hidden', '_sys_form_review_input_caption_system_id', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(71, 'sys_review', 'system', 'action', '', '', 0, 'hidden', '_sys_form_review_input_caption_system_action', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(72, 'sys_review', 'system', 'cmt_id', '', '', 0, 'hidden', '_sys_form_review_input_caption_system_cmt_id', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Int', '', 0, 0),
(73, 'sys_review', 'system', 'cmt_parent_id', '', '', 0, 'hidden', '_sys_form_review_input_caption_system_cmt_parent_id', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Int', '', 0, 0),
(74, 'sys_review', 'system', 'cmt_text', '', '', 0, 'textarea', '_sys_form_review_input_caption_system_cmt_text', '', '', '', '', 0, 0, 0, 3, 0, '', 'a:1:{s:12:"autocomplete";s:3:"off";}', '', '', 'Length', 'a:2:{s:3:"min";i:1;s:3:"max";i:5000;}', '_Please enter n1-n2 characters', 'XssHtml', '', 1, 0),
(75, 'sys_review', 'system', 'cmt_mood', '', '', 0, 'custom', '_sys_form_review_input_caption_system_cmt_mood', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Int', '', 1, 0),
(76, 'sys_review', 'system', 'cmt_anonymous', '', '', 0, 'switcher', '_sys_form_input_sys_anonymous', '_sys_form_input_anonymous', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 1, 0),
(77, 'sys_review', 'system', 'cmt_image', 'a:1:{i:0;s:14:"sys_cmts_html5";}', 'a:1:{s:14:"sys_cmts_html5";s:25:"_sys_uploader_html5_title";}', 0, 'files', '_sys_form_review_input_caption_system_cmt_image', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 1, 0),
(78, 'sys_review', 'system', 'cmt_cf', '', '#!sys_content_filter', 0, 'select', '_sys_form_entry_input_sys_cf', '_sys_form_entry_input_cf', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 1, 0),
(79, 'sys_review', 'system', 'cmt_submit', '_sys_form_review_input_submit', '', 0, 'submit', '_sys_form_review_input_caption_system_cmt_submit', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(80, 'sys_report', 'system', 'sys', '', '', 0, 'hidden', '_sys_form_report_input_caption_system_sys', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(81, 'sys_report', 'system', 'object_id', '', '', 0, 'hidden', '_sys_form_report_input_caption_system_object_id', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Int', '', 0, 0),
(82, 'sys_report', 'system', 'action', '', '', 0, 'hidden', '_sys_form_report_input_caption_system_action', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(83, 'sys_report', 'system', 'id', '', '', 0, 'hidden', '_sys_form_report_input_caption_system_id', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Int', '', 0, 0),
(84, 'sys_report', 'system', 'type', '', '#!sys_report_types', 0, 'select', '_sys_form_report_input_caption_system_type', '_sys_form_report_input_caption_type', '', '', '', 1, 0, 0, 0, 0, '', '', '', '', 'Avail', '', '_Please select value', 'Xss', '', 1, 0),
(85, 'sys_report', 'system', 'text', '', '', 0, 'textarea', '_sys_form_report_input_caption_system_text', '_sys_form_report_input_caption_text', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Xss', '', 1, 0),
(86, 'sys_report', 'system', 'submit', '_sys_form_report_input_caption_submit', '', 0, 'submit', '_sys_form_report_input_caption_system_submit', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(87, 'sys_favorite', 'system', 'sys', '', '', 0, 'hidden', '_sys_form_favorite_input_caption_system_sys', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(88, 'sys_favorite', 'system', 'list_id', '', '', 0, 'hidden', '_sys_form_favorite_input_caption_system_list_id', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(89, 'sys_favorite', 'system', 'object_id', '', '', 0, 'hidden', '_sys_form_favorite_input_caption_system_object_id', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Int', '', 0, 0),
(90, 'sys_favorite', 'system', 'action', '', '', 0, 'hidden', '_sys_form_favorite_input_caption_system_action', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(91, 'sys_favorite', 'system', 'id', '', '', 0, 'hidden', '_sys_form_favorite_input_caption_system_id', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Int', '', 0, 0),
(92, 'sys_favorite', 'system', 'list', '', '#!sys_report_types', 0, 'checkbox_set', '_sys_form_favorite_input_caption_system_list', '_sys_form_favorite_input_caption_list', '', '', '', 1, 0, 0, 0, 0, '', '', '', '', 'Avail', '', '_Please select value', 'Xss', '', 1, 0),
(93, 'sys_favorite', 'system', 'new_list', '_sys_form_favorite_input_caption_button_new_list', '', 0, 'button', '', '', '', '', '', 0, 0, 0, 0, 0, '', 'a:1:{s:7:"onclick";s:29:"{js_object}.showNewList(this)";}', '', '', '', '', '', 'Xss', '', 1, 0),
(94, 'sys_favorite', 'system', 'title', '', '', 0, 'text', '_sys_form_favorite_input_caption_system_title', '_sys_form_favorite_input_caption_title', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 1, 0),
(95, 'sys_favorite', 'system', 'allow_view_favorite_list_to', '', '', 0, 'custom', '_sys_form_favorite_input_caption_system_allow_view_to', '_sys_form_favorite_input_caption_allow_view_to', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Xss', '', 1, 0),
(96, 'sys_favorite', 'system', 'submit', '_sys_form_favorite_input_caption_submit', '', 0, 'submit', '_sys_form_favorite_input_caption_system_submit', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(97, 'sys_privacy_group_custom', 'system', 'profile_id', '', '', 0, 'hidden', '_sys_form_ps_gc_input_caption_system_profile_id', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Int', '', 0, 0),
(98, 'sys_privacy_group_custom', 'system', 'content_id', '', '', 0, 'hidden', '_sys_form_ps_gc_input_caption_system_content_id', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Int', '', 0, 0),
(99, 'sys_privacy_group_custom', 'system', 'object', '', '', 0, 'hidden', '_sys_form_ps_gc_input_caption_system_object', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Xss', '', 0, 0),
(100, 'sys_privacy_group_custom', 'system', 'action', '', '', 0, 'hidden', '_sys_form_ps_gc_input_caption_system_action', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(101, 'sys_privacy_group_custom', 'system', 'group_id', '', '', 0, 'hidden', '_sys_form_ps_gc_input_caption_system_group_id', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Int', '', 0, 0),
(102, 'sys_privacy_group_custom', 'system', 'search', '', '', 0, 'custom', '_sys_form_ps_gc_input_caption_system_search', '_sys_form_ps_gc_input_caption_search', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(103, 'sys_privacy_group_custom', 'system', 'list', '', '', 0, 'custom', '_sys_form_ps_gc_input_caption_system_list', '_sys_form_ps_gc_input_caption_list', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(104, 'sys_privacy_group_custom', 'system', 'memberships', '', '', 0, 'checkbox_set', '_sys_form_ps_gc_input_caption_system_memberships', '_sys_form_ps_gc_input_caption_memberships', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(105, 'sys_privacy_group_custom', 'system', 'controls', '', 'do_submit,do_cancel', 0, 'input_set', '', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(106, 'sys_privacy_group_custom', 'system', 'do_submit', '_sys_form_ps_gc_input_caption_do_submit', '', 0, 'submit', '_sys_form_ps_gc_input_caption_system_do_submit', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(107, 'sys_privacy_group_custom', 'system', 'do_cancel', '_sys_form_ps_gc_input_caption_do_cancel', '', 0, 'button', '_sys_form_ps_gc_input_caption_system_do_cancel', '', '', '', '', 0, 0, 0, 0, 0, '', 'a:2:{s:7:"onclick";s:45:"$(''.bx-popup-applied:visible'').dolPopupHide()";s:5:"class";s:22:"bx-def-margin-sec-left";}', '', '', '', '', '', '', '', 0, 0),
(108, 'sys_labels', 'system', 'name', '', '', 0, 'hidden', '_sys_form_labels_input_caption_system_name', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(109, 'sys_labels', 'system', 'action', '', '', 0, 'hidden', '_sys_form_labels_input_caption_system_action', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(110, 'sys_labels', 'system', 'search', '', '', 0, 'custom', '_sys_form_labels_input_caption_system_search', '_sys_form_labels_input_caption_search', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(111, 'sys_labels', 'system', 'list', '', '', 0, 'custom', '_sys_form_labels_input_caption_system_list', '_sys_form_labels_input_caption_list', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(112, 'sys_labels', 'system', 'list_context', '', '', 0, 'custom', '_sys_form_labels_input_caption_system_list_context', '_sys_form_labels_input_caption_list_context', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(113, 'sys_labels', 'system', 'controls', '', 'do_submit,do_cancel', 0, 'input_set', '', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(114, 'sys_labels', 'system', 'do_submit', '_sys_form_labels_input_caption_do_submit', '', 0, 'submit', '_sys_form_labels_input_caption_system_do_submit', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(115, 'sys_labels', 'system', 'do_cancel', '_sys_form_labels_input_caption_do_cancel', '', 0, 'button', '_sys_form_labels_input_caption_system_do_cancel', '', '', '', '', 0, 0, 0, 0, 0, '', 'a:2:{s:7:"onclick";s:45:"$(''.bx-popup-applied:visible'').dolPopupHide()";s:5:"class";s:22:"bx-def-margin-sec-left";}', '', '', '', '', '', '', '', 0, 0),
(116, 'sys_wiki', 'system', 'block_id', '', '', 0, 'hidden', '', '_sys_form_wiki_input_caption_block_id', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Int', '', 0, 0),
(117, 'sys_wiki', 'system', 'language', '', '', 0, 'radio_set', '', '_sys_form_wiki_input_caption_lang', '_sys_form_wiki_input_caption_lang_info', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Xss', '', 1, 0),
(118, 'sys_wiki', 'system', 'content_main', '', '', 0, 'custom', '', '_sys_form_wiki_input_caption_content_main', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 1, 0),
(119, 'sys_wiki', 'system', 'content', '', '', 0, 'textarea', '', '_sys_form_wiki_input_caption_content', '_sys_form_wiki_input_caption_content_info', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Xss', '', 1, 0),
(120, 'sys_wiki', 'system', 'notes', '', '', 0, 'text', '', '_sys_form_wiki_input_caption_notes', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Xss', '', 1, 0),
(121, 'sys_wiki', 'system', 'files', 'a:1:{i:0;s:9:"sys_html5";}', 'a:1:{s:9:"sys_html5";s:25:"_sys_uploader_html5_title";}', 0, 'files', '', '_sys_form_wiki_input_caption_files', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 1, 0),
(122, 'sys_wiki', 'system', 'do_submit', '_sys_submit', '', 0, 'submit', '_sys_form_wiki_input_caption_submit', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(123, 'sys_wiki', 'system', 'close', '_sys_close', '', 0, 'reset', '_sys_form_wiki_input_caption_close', '', '', '', '', 0, 0, 0, 0, 0, '', 'a:2:{s:7:"onclick";s:46:"$(''.bx-popup-applied:visible'').dolPopupHide();";s:5:"class";s:22:"bx-def-margin-sec-left";}', '', '', '', '', '', '', '', 1, 0),
(124, 'sys_wiki', 'system', 'buttons', '', 'do_submit,close', 0, 'input_set', '_sys_form_wiki_buttons', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 1, 0),
(125, 'sys_manage', 'system', 'content_id', '', '', 0, 'hidden', '', '_sys_form_manage_input_sys_content_id', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Int', '', 0, 0),
(126, 'sys_manage', 'system', 'notes', '', '', 0, 'textarea', '_sys_form_manage_input_sys_notes', '_sys_form_manage_input_notes', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Xss', '', 1, 0),
(127, 'sys_manage', 'system', 'controls', '', 'do_send,do_submit,do_cancel', 0, 'input_set', '', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(128, 'sys_manage', 'system', 'do_send', '_sys_form_manage_input_do_send', '', 0, 'submit', '_sys_form_manage_input_sys_do_send', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(129, 'sys_manage', 'system', 'do_submit', '_sys_form_manage_input_do_submit', '', 0, 'submit', '_sys_form_manage_input_sys_do_submit', '', '', '', '', 0, 0, 0, 0, 0, '', 'a:1:{s:5:"class";s:22:"bx-def-margin-sec-left";}', '', '', '', '', '', '', '', 0, 0),
(130, 'sys_manage', 'system', 'do_cancel', '_sys_form_manage_input_do_cancel', '', 0, 'button', '_sys_form_manage_input_sys_do_cancel', '', '', '', '', 0, 0, 0, 0, 0, '', 'a:2:{s:5:"class";s:22:"bx-def-margin-sec-left";s:7:"onclick";s:45:"$(''.bx-popup-applied:visible'').dolPopupHide()";}', '', '', '', '', '', '', '', 0, 0),
(131, 'sys_acl', 'system', 'profile_id', '', '', 0, 'hidden', '_sys_form_acl_input_sys_profile_id', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Int', '', 0, 0),
(132, 'sys_acl', 'system', 'card', '', '', 0, 'hidden', '_sys_form_acl_input_sys_card', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Int', '', 0, 0),
(133, 'sys_acl', 'system', 'level_id', '', '', 0, 'radio_set', '_sys_form_acl_input_sys_level_id', '_sys_form_acl_input_level_id', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Int', '', 1, 0),
(134, 'sys_acl', 'system', 'duration', '', '', 0, 'text', '_sys_form_acl_input_sys_duration', '_sys_form_acl_input_duration', '_sys_form_acl_input_duration_inf', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Int', '', 1, 0),
(135, 'sys_acl', 'system', 'controls', '', 'do_submit,do_cancel', 0, 'input_set', '', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(136, 'sys_acl', 'system', 'do_submit', '_sys_form_acl_input_do_submit', '', 0, 'submit', '_sys_form_acl_input_sys_do_submit', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 0, 0),
(137, 'sys_acl', 'system', 'do_cancel', '_sys_form_acl_input_do_cancel', '', 0, 'button', '_sys_form_acl_input_sys_do_cancel', '', '', '', '', 0, 0, 0, 0, 0, '', 'a:2:{s:5:"class";s:22:"bx-def-margin-sec-left";s:7:"onclick";s:65:"$(this).parents(''.bx-popup-applied:visible:first'').dolPopupHide()";}', '', '', '', '', '', '', '', 0, 0),
(138, 'bx_person', 'bx_persons', 'allow_view_to', '3', '', 0, 'custom', '_bx_persons_form_profile_input_sys_allow_view_to', '_bx_persons_form_profile_input_allow_view_to', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 1, 0),
(139, 'bx_person', 'bx_persons', 'allow_post_to', '5', '', 0, 'custom', '_bx_persons_form_profile_input_sys_allow_post_to', '_bx_persons_form_profile_input_allow_post_to', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 1, 0),
(140, 'bx_person', 'bx_persons', 'allow_contact_to', '3', '', 0, 'custom', '_bx_persons_form_profile_input_sys_allow_contact_to', '_bx_persons_form_profile_input_allow_contact_to', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 1, 0),
(141, 'bx_person', 'bx_persons', 'delete_confirm', '1', '', 0, 'checkbox', '_bx_persons_form_profile_input_sys_delete_confirm', '_bx_persons_form_profile_input_delete_confirm', '_bx_persons_form_profile_input_delete_confirm_info', '', '', 1, 0, 0, 0, 0, '', '', '', '', 'Avail', '', '_bx_persons_form_profile_input_delete_confirm_error', '', '', 1, 0),
(142, 'bx_person', 'bx_persons', 'do_submit', '_bx_persons_form_profile_input_submit', '', 0, 'submit', '_bx_persons_form_profile_input_sys_do_submit', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 1, 0),
(143, 'bx_person', 'bx_persons', 'description', '', '', 0, 'textarea', '_bx_persons_form_profile_input_sys_desc', '_bx_persons_form_profile_input_desc', '', '', '', 0, 0, 0, 1, 0, '', '', '', '', '', '', '', 'XssHtml', '', 1, 1),
(144, 'bx_person', 'bx_persons', 'fullname', '', '', 0, 'text', '_bx_persons_form_profile_input_sys_fullname', '_bx_persons_form_profile_input_fullname', '', '', '', 1, 0, 0, 0, 0, '', '', '', '', 'ProfileName', '', '_bx_persons_form_profile_input_fullname_err', 'Xss', '', 1, 0),
(145, 'bx_person', 'bx_persons', 'last_name', '', '', 0, 'text', '_bx_persons_form_profile_input_sys_last_name', '_bx_persons_form_profile_input_last_name', '', '', '', 1, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Xss', '', 1, 0),
(146, 'bx_person', 'bx_persons', 'cover', 'a:1:{i:0;s:21:"bx_persons_cover_crop";}', 'a:1:{s:21:"bx_persons_cover_crop";s:24:"_sys_uploader_crop_title";}', 0, 'files', '_bx_persons_form_profile_input_sys_cover', '_bx_persons_form_profile_input_cover', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 1, 0),
(147, 'bx_person', 'bx_persons', 'picture', 'a:1:{i:0;s:23:"bx_persons_picture_crop";}', 'a:1:{s:23:"bx_persons_picture_crop";s:24:"_sys_uploader_crop_title";}', 0, 'files', '_bx_persons_form_profile_input_sys_picture', '_bx_persons_form_profile_input_picture', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '_bx_persons_form_profile_input_picture_err', '', '', 1, 0),
(148, 'bx_person', 'bx_persons', 'location', '', '', 0, 'location', '_sys_form_input_sys_location', '_sys_form_input_location', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 1, 0),
(149, 'bx_person', 'bx_persons', 'birthday', '0', '', 0, 'datepicker', '_bx_persons_form_profile_input_sys_birthday', '_bx_persons_form_profile_input_birthday', '', '', '', 1, 0, 0, 0, 0, '', '', '', '', 'date_range', 'a:3:{s:3:"min";i:18;s:3:"max";i:99;s:8:"required";b:0;}', '_bx_persons_form_profile_input_birthday_err', 'Date', '', 1, 0),
(150, 'bx_person', 'bx_persons', 'gender', '', '#!Sex', 0, 'select', '_bx_persons_form_profile_input_sys_gender', '_bx_persons_form_profile_input_gender', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Xss', '', 1, 0),
(151, 'bx_person', 'bx_persons', 'profile_email', '', '', 0, 'text', '_bx_persons_form_profile_input_sys_profile_email', '_bx_persons_form_profile_input_profile_email', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Xss', '', 0, 0),
(152, 'bx_person', 'bx_persons', 'profile_status', '', '', 0, 'text', '_bx_persons_form_profile_input_sys_profile_status', '_bx_persons_form_profile_input_profile_status', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Xss', '', 0, 0),
(153, 'bx_person', 'bx_persons', 'profile_ip', '', '', 0, 'text', '_bx_persons_form_profile_input_sys_profile_ip', '_bx_persons_form_profile_input_profile_ip', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Xss', '', 0, 0),
(154, 'bx_person', 'bx_persons', 'profile_last_active', '', '', 0, 'text', '_bx_persons_form_profile_input_sys_profile_last_active', '_bx_persons_form_profile_input_profile_last_active', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', 'Xss', '', 0, 0),
(155, 'bx_person', 'bx_persons', 'labels', '', '', 0, 'custom', '_sys_form_input_sys_labels', '_sys_form_input_labels', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 1, 0),
(156, 'bx_person', 'bx_persons', 'skills', 'bx_person_skills', '', 0, 'nested_form', '_bx_persons_form_profile_input_sys_skills', '_bx_persons_form_profile_input_skills', '', '', '', 0, 0, 0, 0, 0, 'sys_form_fields_votes', '', '', '', '', '', '', '', '', 1, 0),
(157, 'bx_person', 'bx_persons', 'added', '', '', 0, 'datetime', '_bx_persons_form_profile_input_sys_date_added', '_bx_persons_form_profile_input_date_added', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 1, 0),
(158, 'bx_person', 'bx_persons', 'changed', '', '', 0, 'datetime', '_bx_persons_form_profile_input_sys_date_changed', '_bx_persons_form_profile_input_date_changed', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 1, 0),
(159, 'bx_person', 'bx_persons', 'friends_count', '', '', 0, 'text', '_bx_persons_form_profile_input_sys_friends_count', '_bx_persons_form_profile_input_friends_count', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 1, 0),
(160, 'bx_person', 'bx_persons', 'followers_count', '', '', 0, 'text', '_bx_persons_form_profile_input_sys_followers_count', '_bx_persons_form_profile_input_followers_count', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 1, 0),
(161, 'bx_person_skills', 'bx_persons', 'skill_name', '', '', 0, 'text', '_bx_persons_skills_form_profile_input_sys_skill_name', '_bx_persons_skills_form_profile_input_skill_name', '', '', '', 1, 0, 0, 0, 0, '', '', '', '', 'Avail', '', '_bx_persons_skills_form_profile_input_skill_name_err', 'Xss', '', 1, 0);
-- --------------------------------------------------------
--
-- Table structure for table `sys_form_inputs_privacy`
--
CREATE TABLE `sys_form_inputs_privacy` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`input_id` int(11) unsigned NOT NULL DEFAULT '0',
`author_id` int(11) unsigned NOT NULL DEFAULT '0',
`allow_view_to` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '3',
PRIMARY KEY (`id`),
UNIQUE KEY `input` (`input_id`,`author_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_form_pre_lists`
--
CREATE TABLE `sys_form_pre_lists` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`module` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`use_for_sets` tinyint(4) unsigned NOT NULL DEFAULT '1',
`extendable` tinyint(4) unsigned NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `key` (`key`(191)),
FULLTEXT KEY `ModuleAndKey` (`module`,`key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=11 ;
--
-- Dumping data for table `sys_form_pre_lists`
--
INSERT INTO `sys_form_pre_lists` VALUES
(1, 'system', 'Country', '_adm_form_txt_pre_lists_country', 0, 1),
(2, 'system', 'Sex', '_adm_form_txt_pre_lists_sex', 1, 1),
(3, 'system', 'Language', '_adm_form_txt_pre_lists_language', 0, 1),
(4, 'system', 'Currency', '_adm_form_txt_pre_lists_currency', 0, 1),
(5, 'system', 'sys_report_types', '_sys_pre_lists_report_types', 0, 0),
(6, 'system', 'sys_vote_reactions', '_sys_pre_lists_vote_reactions', 0, 0),
(7, 'system', 'sys_relations', '_sys_pre_lists_relations', 0, 1),
(8, 'system', 'sys_content_filter', '_sys_pre_lists_content_filter', 1, 0),
(9, 'system', 'sys_studio_widget_types', '_sys_pre_lists_studio_widget_types', 0, 0),
(10, 'system', 'sys_colors', '_sys_pre_lists_colors', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `sys_form_pre_values`
--
CREATE TABLE `sys_form_pre_values` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`Key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Value` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Order` int(10) unsigned NOT NULL DEFAULT '0',
`LKey` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`LKey2` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Data` text COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
FULLTEXT KEY `KeyAndValue` (`Key`,`Value`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=364 ;
--
-- Dumping data for table `sys_form_pre_values`
--
INSERT INTO `sys_form_pre_values` VALUES
(1, 'Country', 'AF', 1, '__Afghanistan', '', ''),
(2, 'Country', 'AX', 2, '__Aland_Islands', '', ''),
(3, 'Country', 'AL', 3, '__Albania', '', ''),
(4, 'Country', 'DZ', 4, '__Algeria', '', ''),
(5, 'Country', 'AS', 5, '__American Samoa', '', ''),
(6, 'Country', 'AD', 6, '__Andorra', '', ''),
(7, 'Country', 'AO', 7, '__Angola', '', ''),
(8, 'Country', 'AI', 8, '__Anguilla', '', ''),
(9, 'Country', 'AQ', 9, '__Antarctica', '', ''),
(10, 'Country', 'AG', 10, '__Antigua and Barbuda', '', ''),
(11, 'Country', 'AR', 11, '__Argentina', '', ''),
(12, 'Country', 'AM', 12, '__Armenia', '', ''),
(13, 'Country', 'AW', 13, '__Aruba', '', ''),
(14, 'Country', 'AU', 14, '__Australia', '', ''),
(15, 'Country', 'AT', 15, '__Austria', '', ''),
(16, 'Country', 'AZ', 16, '__Azerbaijan', '', ''),
(17, 'Country', 'BH', 17, '__Bahrain', '', ''),
(18, 'Country', 'BD', 18, '__Bangladesh', '', ''),
(19, 'Country', 'BB', 19, '__Barbados', '', ''),
(20, 'Country', 'BY', 20, '__Belarus', '', ''),
(21, 'Country', 'BE', 21, '__Belgium', '', ''),
(22, 'Country', 'BZ', 22, '__Belize', '', ''),
(23, 'Country', 'BJ', 23, '__Benin', '', ''),
(24, 'Country', 'BM', 24, '__Bermuda', '', ''),
(25, 'Country', 'BT', 25, '__Bhutan', '', ''),
(26, 'Country', 'BO', 26, '__Bolivia', '', ''),
(27, 'Country', 'BA', 27, '__Bosnia and Herzegovina', '', ''),
(28, 'Country', 'BW', 28, '__Botswana', '', ''),
(29, 'Country', 'BV', 29, '__Bouvet Island', '', ''),
(30, 'Country', 'BR', 30, '__Brazil', '', ''),
(31, 'Country', 'IO', 31, '__British Indian Ocean Territory', '', ''),
(32, 'Country', 'VG', 32, '__British Virgin Islands', '', ''),
(33, 'Country', 'BN', 33, '__Brunei Darussalam', '', ''),
(34, 'Country', 'BG', 34, '__Bulgaria', '', ''),
(35, 'Country', 'BF', 35, '__Burkina Faso', '', ''),
(36, 'Country', 'MM', 36, '__Burma', '', ''),
(37, 'Country', 'BI', 37, '__Burundi', '', ''),
(38, 'Country', 'KH', 38, '__Cambodia', '', ''),
(39, 'Country', 'CM', 39, '__Cameroon', '', ''),
(40, 'Country', 'CA', 40, '__Canada', '', ''),
(41, 'Country', 'CV', 41, '__Cape Verde', '', ''),
(42, 'Country', 'KY', 42, '__Cayman Islands', '', ''),
(43, 'Country', 'CF', 43, '__Central African Republic', '', ''),
(44, 'Country', 'TD', 44, '__Chad', '', ''),
(45, 'Country', 'CL', 45, '__Chile', '', ''),
(46, 'Country', 'CN', 46, '__China', '', ''),
(47, 'Country', 'CX', 47, '__Christmas Island', '', ''),
(48, 'Country', 'CC', 48, '__Cocos (Keeling) Islands', '', ''),
(49, 'Country', 'CO', 49, '__Colombia', '', ''),
(50, 'Country', 'KM', 50, '__Comoros', '', ''),
(51, 'Country', 'CD', 51, '__Congo, Democratic Republic of the', '', ''),
(52, 'Country', 'CG', 52, '__Congo, Republic of the', '', ''),
(53, 'Country', 'CK', 53, '__Cook Islands', '', ''),
(54, 'Country', 'CR', 54, '__Costa Rica', '', ''),
(55, 'Country', 'CI', 55, '__Cote d''Ivoire', '', ''),
(56, 'Country', 'HR', 56, '__Croatia', '', ''),
(57, 'Country', 'CU', 57, '__Cuba', '', ''),
(58, 'Country', 'CY', 58, '__Cyprus', '', ''),
(59, 'Country', 'CZ', 59, '__Czech Republic', '', ''),
(60, 'Country', 'DK', 60, '__Denmark', '', ''),
(61, 'Country', 'DJ', 61, '__Djibouti', '', ''),
(62, 'Country', 'DM', 62, '__Dominica', '', ''),
(63, 'Country', 'DO', 63, '__Dominican Republic', '', ''),
(64, 'Country', 'TL', 64, '__East Timor', '', ''),
(65, 'Country', 'EC', 65, '__Ecuador', '', ''),
(66, 'Country', 'EG', 66, '__Egypt', '', ''),
(67, 'Country', 'SV', 67, '__El Salvador', '', ''),
(68, 'Country', 'GQ', 68, '__Equatorial Guinea', '', ''),
(69, 'Country', 'ER', 69, '__Eritrea', '', ''),
(70, 'Country', 'EE', 70, '__Estonia', '', ''),
(71, 'Country', 'ET', 71, '__Ethiopia', '', ''),
(72, 'Country', 'FK', 72, '__Falkland Islands (Islas Malvinas)', '', ''),
(73, 'Country', 'FO', 73, '__Faroe Islands', '', ''),
(74, 'Country', 'FJ', 74, '__Fiji', '', ''),
(75, 'Country', 'FI', 75, '__Finland', '', ''),
(76, 'Country', 'FR', 76, '__France', '', ''),
(77, 'Country', 'GF', 77, '__French Guiana', '', ''),
(78, 'Country', 'PF', 78, '__French Polynesia', '', ''),
(79, 'Country', 'TF', 79, '__French Southern and Antarctic Lands', '', ''),
(80, 'Country', 'GA', 80, '__Gabon', '', ''),
(81, 'Country', 'GE', 81, '__Georgia', '', ''),
(82, 'Country', 'DE', 82, '__Germany', '', ''),
(83, 'Country', 'GH', 83, '__Ghana', '', ''),
(84, 'Country', 'GI', 84, '__Gibraltar', '', ''),
(85, 'Country', 'GR', 85, '__Greece', '', ''),
(86, 'Country', 'GL', 86, '__Greenland', '', ''),
(87, 'Country', 'GD', 87, '__Grenada', '', ''),
(88, 'Country', 'GP', 88, '__Guadeloupe', '', ''),
(89, 'Country', 'GU', 89, '__Guam', '', ''),
(90, 'Country', 'GT', 90, '__Guatemala', '', ''),
(91, 'Country', 'GG', 91, '__Guernsey', '', ''),
(92, 'Country', 'GN', 92, '__Guinea', '', ''),
(93, 'Country', 'GW', 93, '__Guinea-Bissau', '', ''),
(94, 'Country', 'GY', 94, '__Guyana', '', ''),
(95, 'Country', 'HT', 95, '__Haiti', '', ''),
(96, 'Country', 'HM', 96, '__Heard Island and McDonald Islands', '', ''),
(97, 'Country', 'VA', 97, '__Holy See (Vatican City)', '', ''),
(98, 'Country', 'HN', 98, '__Honduras', '', ''),
(99, 'Country', 'HK', 99, '__Hong Kong (SAR)', '', ''),
(100, 'Country', 'HU', 100, '__Hungary', '', ''),
(101, 'Country', 'IS', 101, '__Iceland', '', ''),
(102, 'Country', 'IN', 102, '__India', '', ''),
(103, 'Country', 'ID', 103, '__Indonesia', '', ''),
(104, 'Country', 'IR', 104, '__Iran', '', ''),
(105, 'Country', 'IQ', 105, '__Iraq', '', ''),
(106, 'Country', 'IE', 106, '__Ireland', '', ''),
(107, 'Country', 'IM', 107, '__Isle_of_Man', '', ''),
(108, 'Country', 'IL', 108, '__Israel', '', ''),
(109, 'Country', 'IT', 109, '__Italy', '', ''),
(110, 'Country', 'JM', 110, '__Jamaica', '', ''),
(111, 'Country', 'JP', 111, '__Japan', '', ''),
(112, 'Country', 'JE', 112, '__Jersey', '', ''),
(113, 'Country', 'JO', 113, '__Jordan', '', ''),
(114, 'Country', 'KZ', 114, '__Kazakhstan', '', ''),
(115, 'Country', 'KE', 115, '__Kenya', '', ''),
(116, 'Country', 'KI', 116, '__Kiribati', '', ''),
(117, 'Country', 'KP', 117, '__Korea, North', '', ''),
(118, 'Country', 'KR', 118, '__Korea, South', '', ''),
(119, 'Country', 'KW', 119, '__Kuwait', '', ''),
(120, 'Country', 'KG', 120, '__Kyrgyzstan', '', ''),
(121, 'Country', 'LA', 121, '__Laos', '', ''),
(122, 'Country', 'LV', 122, '__Latvia', '', ''),
(123, 'Country', 'LB', 123, '__Lebanon', '', ''),
(124, 'Country', 'LS', 124, '__Lesotho', '', ''),
(125, 'Country', 'LR', 125, '__Liberia', '', ''),
(126, 'Country', 'LY', 126, '__Libya', '', ''),
(127, 'Country', 'LI', 127, '__Liechtenstein', '', ''),
(128, 'Country', 'LT', 128, '__Lithuania', '', ''),
(129, 'Country', 'LU', 129, '__Luxembourg', '', ''),
(130, 'Country', 'MO', 130, '__Macao', '', ''),
(131, 'Country', 'MK', 131, '__Macedonia, The Former Yugoslav Republic of', '', ''),
(132, 'Country', 'MG', 132, '__Madagascar', '', ''),
(133, 'Country', 'MW', 133, '__Malawi', '', ''),
(134, 'Country', 'MY', 134, '__Malaysia', '', ''),
(135, 'Country', 'MV', 135, '__Maldives', '', ''),
(136, 'Country', 'ML', 136, '__Mali', '', ''),
(137, 'Country', 'MT', 137, '__Malta', '', ''),
(138, 'Country', 'MH', 138, '__Marshall Islands', '', ''),
(139, 'Country', 'MQ', 139, '__Martinique', '', ''),
(140, 'Country', 'MR', 140, '__Mauritania', '', ''),
(141, 'Country', 'MU', 141, '__Mauritius', '', ''),
(142, 'Country', 'YT', 142, '__Mayotte', '', ''),
(143, 'Country', 'MX', 143, '__Mexico', '', ''),
(144, 'Country', 'FM', 144, '__Micronesia, Federated States of', '', ''),
(145, 'Country', 'MD', 145, '__Moldova', '', ''),
(146, 'Country', 'MC', 146, '__Monaco', '', ''),
(147, 'Country', 'MN', 147, '__Mongolia', '', ''),
(148, 'Country', 'ME', 148, '__Montenegro', '', ''),
(149, 'Country', 'MS', 149, '__Montserrat', '', ''),
(150, 'Country', 'MA', 150, '__Morocco', '', ''),
(151, 'Country', 'MZ', 151, '__Mozambique', '', ''),
(152, 'Country', 'NA', 152, '__Namibia', '', ''),
(153, 'Country', 'NR', 153, '__Nauru', '', ''),
(154, 'Country', 'NP', 154, '__Nepal', '', ''),
(155, 'Country', 'NL', 155, '__Netherlands', '', ''),
(156, 'Country', 'AN', 156, '__Netherlands Antilles', '', ''),
(157, 'Country', 'NC', 157, '__New Caledonia', '', ''),
(158, 'Country', 'NZ', 158, '__New Zealand', '', ''),
(159, 'Country', 'NI', 159, '__Nicaragua', '', ''),
(160, 'Country', 'NE', 160, '__Niger', '', ''),
(161, 'Country', 'NG', 161, '__Nigeria', '', ''),
(162, 'Country', 'NU', 162, '__Niue', '', ''),
(163, 'Country', 'NF', 163, '__Norfolk Island', '', ''),
(164, 'Country', 'MP', 164, '__Northern Mariana Islands', '', ''),
(165, 'Country', 'NO', 165, '__Norway', '', ''),
(166, 'Country', 'OM', 166, '__Oman', '', ''),
(167, 'Country', 'PK', 167, '__Pakistan', '', ''),
(168, 'Country', 'PW', 168, '__Palau', '', ''),
(169, 'Country', 'PS', 169, '__Palestinian Territory, Occupied', '', ''),
(170, 'Country', 'PA', 170, '__Panama', '', ''),
(171, 'Country', 'PG', 171, '__Papua New Guinea', '', ''),
(172, 'Country', 'PY', 172, '__Paraguay', '', ''),
(173, 'Country', 'PE', 173, '__Peru', '', ''),
(174, 'Country', 'PH', 174, '__Philippines', '', ''),
(175, 'Country', 'PN', 175, '__Pitcairn Islands', '', ''),
(176, 'Country', 'PL', 176, '__Poland', '', ''),
(177, 'Country', 'PT', 177, '__Portugal', '', ''),
(178, 'Country', 'PR', 178, '__Puerto Rico', '', ''),
(179, 'Country', 'QA', 179, '__Qatar', '', ''),
(180, 'Country', 'RE', 180, '__Reunion', '', ''),
(181, 'Country', 'RO', 181, '__Romania', '', ''),
(182, 'Country', 'RU', 182, '__Russia', '', ''),
(183, 'Country', 'RW', 183, '__Rwanda', '', ''),
(184, 'Country', 'SH', 184, '__Saint Helena', '', ''),
(185, 'Country', 'KN', 185, '__Saint Kitts and Nevis', '', ''),
(186, 'Country', 'LC', 186, '__Saint Lucia', '', ''),
(187, 'Country', 'PM', 187, '__Saint Pierre and Miquelon', '', ''),
(188, 'Country', 'VC', 188, '__Saint Vincent and the Grenadines', '', ''),
(189, 'Country', 'BL', 189, '__Saint_Barthelemy', '', ''),
(190, 'Country', 'MF', 190, '__Saint_Martin_French_part', '', ''),
(191, 'Country', 'WS', 191, '__Samoa', '', ''),
(192, 'Country', 'SM', 192, '__San Marino', '', ''),
(193, 'Country', 'ST', 193, '__Sao Tome and Principe', '', ''),
(194, 'Country', 'SA', 194, '__Saudi Arabia', '', ''),
(195, 'Country', 'SN', 195, '__Senegal', '', ''),
(196, 'Country', 'RS', 196, '__Serbia', '', ''),
(197, 'Country', 'SC', 197, '__Seychelles', '', ''),
(198, 'Country', 'SL', 198, '__Sierra Leone', '', ''),
(199, 'Country', 'SG', 199, '__Singapore', '', ''),
(200, 'Country', 'SK', 200, '__Slovakia', '', ''),
(201, 'Country', 'SI', 201, '__Slovenia', '', ''),
(202, 'Country', 'SB', 202, '__Solomon Islands', '', ''),
(203, 'Country', 'SO', 203, '__Somalia', '', ''),
(204, 'Country', 'ZA', 204, '__South Africa', '', ''),
(205, 'Country', 'GS', 205, '__South Georgia and the South Sandwich Islands', '', ''),
(206, 'Country', 'ES', 206, '__Spain', '', ''),
(207, 'Country', 'LK', 207, '__Sri Lanka', '', ''),
(208, 'Country', 'SD', 208, '__Sudan', '', ''),
(209, 'Country', 'SR', 209, '__Suriname', '', ''),
(210, 'Country', 'SJ', 210, '__Svalbard', '', ''),
(211, 'Country', 'SZ', 211, '__Swaziland', '', ''),
(212, 'Country', 'SE', 212, '__Sweden', '', ''),
(213, 'Country', 'CH', 213, '__Switzerland', '', ''),
(214, 'Country', 'SY', 214, '__Syria', '', ''),
(215, 'Country', 'TW', 215, '__Taiwan', '', ''),
(216, 'Country', 'TJ', 216, '__Tajikistan', '', ''),
(217, 'Country', 'TZ', 217, '__Tanzania', '', ''),
(218, 'Country', 'TH', 218, '__Thailand', '', ''),
(219, 'Country', 'BS', 219, '__The Bahamas', '', ''),
(220, 'Country', 'GM', 220, '__The Gambia', '', ''),
(221, 'Country', 'TG', 221, '__Togo', '', ''),
(222, 'Country', 'TK', 222, '__Tokelau', '', ''),
(223, 'Country', 'TO', 223, '__Tonga', '', ''),
(224, 'Country', 'TT', 224, '__Trinidad and Tobago', '', ''),
(225, 'Country', 'TN', 225, '__Tunisia', '', ''),
(226, 'Country', 'TR', 226, '__Turkey', '', ''),
(227, 'Country', 'TM', 227, '__Turkmenistan', '', ''),
(228, 'Country', 'TC', 228, '__Turks and Caicos Islands', '', ''),
(229, 'Country', 'TV', 229, '__Tuvalu', '', ''),
(230, 'Country', 'UG', 230, '__Uganda', '', ''),
(231, 'Country', 'UA', 231, '__Ukraine', '', ''),
(232, 'Country', 'AE', 232, '__United Arab Emirates', '', ''),
(233, 'Country', 'GB', 233, '__United Kingdom', '', ''),
(234, 'Country', 'US', 234, '__United States', '', ''),
(235, 'Country', 'UM', 235, '__United States Minor Outlying Islands', '', ''),
(236, 'Country', 'UY', 236, '__Uruguay', '', ''),
(237, 'Country', 'UZ', 237, '__Uzbekistan', '', ''),
(238, 'Country', 'VU', 238, '__Vanuatu', '', ''),
(239, 'Country', 'VE', 239, '__Venezuela', '', ''),
(240, 'Country', 'VN', 240, '__Vietnam', '', ''),
(241, 'Country', 'VI', 241, '__Virgin Islands', '', ''),
(242, 'Country', 'WF', 242, '__Wallis and Futuna', '', ''),
(243, 'Country', 'EH', 243, '__Western Sahara', '', ''),
(244, 'Country', 'YE', 244, '__Yemen', '', ''),
(245, 'Country', 'ZM', 245, '__Zambia', '', ''),
(246, 'Country', 'ZW', 246, '__Zimbabwe', '', ''),
(247, 'Sex', '', 1, '_sys_not_specified', '', ''),
(248, 'Sex', '1', 2, '_Male', '_LookinMale', ''),
(249, 'Sex', '2', 3, '_Female', '_LookinFemale', ''),
(250, 'Language', '1', 1, '__English', '', ''),
(251, 'Language', '2', 2, '__Afrikaans', '', ''),
(252, 'Language', '3', 3, '__Arabic', '', ''),
(253, 'Language', '4', 4, '__Bulgarian', '', ''),
(254, 'Language', '5', 5, '__Burmese', '', ''),
(255, 'Language', '6', 6, '__Cantonese', '', ''),
(256, 'Language', '7', 7, '__Croatian', '', ''),
(257, 'Language', '8', 8, '__Danish', '', ''),
(258, 'Language', '9', 9, '__Dutch', '', ''),
(259, 'Language', '10', 10, '__Esperanto', '', ''),
(260, 'Language', '11', 11, '__Estonian', '', ''),
(261, 'Language', '12', 12, '__Finnish', '', ''),
(262, 'Language', '13', 13, '__French', '', ''),
(263, 'Language', '14', 14, '__German', '', ''),
(264, 'Language', '15', 15, '__Greek', '', ''),
(265, 'Language', '16', 16, '__Gujrati', '', ''),
(266, 'Language', '17', 17, '__Hebrew', '', ''),
(267, 'Language', '18', 18, '__Hindi', '', ''),
(268, 'Language', '19', 19, '__Hungarian', '', ''),
(269, 'Language', '20', 20, '__Icelandic', '', ''),
(270, 'Language', '21', 21, '__Indian', '', ''),
(271, 'Language', '22', 22, '__Indonesian', '', ''),
(272, 'Language', '23', 23, '__Italian', '', ''),
(273, 'Language', '24', 24, '__Japanese', '', ''),
(274, 'Language', '25', 25, '__Korean', '', ''),
(275, 'Language', '26', 26, '__Latvian', '', ''),
(276, 'Language', '27', 27, '__Lithuanian', '', ''),
(277, 'Language', '28', 28, '__Malay', '', ''),
(278, 'Language', '29', 29, '__Mandarin', '', ''),
(279, 'Language', '30', 30, '__Marathi', '', ''),
(280, 'Language', '31', 31, '__Moldovian', '', ''),
(281, 'Language', '32', 32, '__Nepalese', '', ''),
(282, 'Language', '33', 33, '__Norwegian', '', ''),
(283, 'Language', '34', 34, '__Persian', '', ''),
(284, 'Language', '35', 35, '__Polish', '', ''),
(285, 'Language', '36', 36, '__Portuguese', '', ''),
(286, 'Language', '37', 37, '__Punjabi', '', ''),
(287, 'Language', '38', 38, '__Romanian', '', ''),
(288, 'Language', '39', 39, '__Russian', '', ''),
(289, 'Language', '40', 40, '__Serbian', '', ''),
(290, 'Language', '41', 41, '__Spanish', '', ''),
(291, 'Language', '42', 42, '__Swedish', '', ''),
(292, 'Language', '43', 43, '__Tagalog', '', ''),
(293, 'Language', '44', 44, '__Taiwanese', '', ''),
(294, 'Language', '45', 45, '__Tamil', '', ''),
(295, 'Language', '46', 46, '__Telugu', '', ''),
(296, 'Language', '47', 47, '__Thai', '', ''),
(297, 'Language', '48', 48, '__Tongan', '', ''),
(298, 'Language', '49', 49, '__Turkish', '', ''),
(299, 'Language', '50', 50, '__Ukrainian', '', ''),
(300, 'Language', '51', 51, '__Urdu', '', ''),
(301, 'Language', '52', 52, '__Vietnamese', '', ''),
(302, 'Language', '53', 53, '__Visayan', '', ''),
(303, 'Currency', 'AUD', 1, '__AUD', '', 'a:1:{s:4:"sign";s:6:"A$";}'),
(304, 'Currency', 'CAD', 2, '__CAD', '', 'a:1:{s:4:"sign";s:6:"C$";}'),
(305, 'Currency', 'EUR', 3, '__EUR', '', 'a:1:{s:4:"sign";s:7:"€";}'),
(306, 'Currency', 'GBP', 4, '__GBP', '', 'a:1:{s:4:"sign";s:6:"£";}'),
(307, 'Currency', 'USD', 5, '__USD', '', 'a:1:{s:4:"sign";s:5:"$";}'),
(308, 'Currency', 'YEN', 6, '__YEN', '', 'a:1:{s:4:"sign";s:6:"¥";}'),
(309, 'sys_report_types', 'spam', 1, '_sys_pre_lists_report_types_spam', '', ''),
(310, 'sys_report_types', 'scam', 2, '_sys_pre_lists_report_types_scam', '', ''),
(311, 'sys_report_types', 'fraud', 3, '_sys_pre_lists_report_types_fraud', '', ''),
(312, 'sys_report_types', 'nude', 4, '_sys_pre_lists_report_types_nude', '', ''),
(313, 'sys_report_types', 'other', 5, '_sys_pre_lists_report_types_other', '', ''),
(314, 'sys_vote_reactions', 'like', 1, '_sys_pre_lists_vote_reactions_like', '', 'a:7:{s:3:"use";s:5:"emoji";s:5:"emoji";s:4:"?";s:4:"icon";s:12:"fa-thumbs-up";s:5:"image";s:904:"<svg aria-hidden="true" fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M6.633 10.5c.806 0 1.533-.446 2.031-1.08a9.041 9.041 0 012.861-2.4c.723-.384 1.35-.956 1.653-1.715a4.498 4.498 0 00.322-1.672V3a.75.75 0 01.75-.75A2.25 2.25 0 0116.5 4.5c0 1.152-.26 2.243-.723 3.218-.266.558.107 1.282.725 1.282h3.126c1.026 0 1.945.694 2.054 1.715.045.422.068.85.068 1.285a11.95 11.95 0 01-2.649 7.521c-.388.482-.987.729-1.605.729H13.48c-.483 0-.964-.078-1.423-.23l-3.114-1.04a4.501 4.501 0 00-1.423-.23H5.904M14.25 9h2.25M5.904 18.75c.083.205.173.405.27.602.197.4-.078.898-.523.898h-.908c-.889 0-1.713-.518-1.972-1.368a12 12 0 01-.521-3.507c0-1.553.295-3.036.831-4.398C3.387 10.203 4.167 9.75 5 9.75h1.053c.472 0 .745.556.5.96a8.958 8.958 0 00-1.302 4.665c0 1.194.232 2.333.654 3.375z" stroke-linecap="round" stroke-linejoin="round"></path></svg>";s:5:"color";s:20:"sys-colored col-gray";s:6:"weight";s:1:"1";s:7:"default";a:2:{s:5:"title";s:37:"_sys_pre_lists_vote_reactions_default";s:4:"icon";s:8:"fa-smile";}}'),
(315, 'sys_vote_reactions', 'love', 2, '_sys_pre_lists_vote_reactions_love', '', 'a:6:{s:3:"use";s:5:"emoji";s:5:"emoji";s:4:"?";s:4:"icon";s:8:"fa-heart";s:5:"image";s:499:"<svg aria-hidden="true" fill="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M11.645 20.91l-.007-.003-.022-.012a15.247 15.247 0 01-.383-.218 25.18 25.18 0 01-4.244-3.17C4.688 15.36 2.25 12.174 2.25 8.25 2.25 5.322 4.714 3 7.688 3A5.5 5.5 0 0112 5.052 5.5 5.5 0 0116.313 3c2.973 0 5.437 2.322 5.437 5.25 0 3.925-2.438 7.111-4.739 9.256a25.175 25.175 0 01-4.244 3.17 15.247 15.247 0 01-.383.219l-.022.012-.007.004-.003.001a.752.752 0 01-.704 0l-.003-.001z"></path></svg>";s:5:"color";s:20:"sys-colored col-red1";s:6:"weight";s:1:"1";}'),
(316, 'sys_vote_reactions', 'joy', 3, '_sys_pre_lists_vote_reactions_joy', '', 'a:6:{s:3:"use";s:5:"emoji";s:5:"emoji";s:4:"?";s:4:"icon";s:15:"fa-laugh-squint";s:5:"image";s:789:"<svg aria-hidden="true" fill="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25zm-2.625 6c-.54 0-.828.419-.936.634a1.96 1.96 0 00-.189.866c0 .298.059.605.189.866.108.215.395.634.936.634.54 0 .828-.419.936-.634.13-.26.189-.568.189-.866 0-.298-.059-.605-.189-.866-.108-.215-.395-.634-.936-.634zm4.314.634c.108-.215.395-.634.936-.634.54 0 .828.419.936.634.13.26.189.568.189.866 0 .298-.059.605-.189.866-.108.215-.395.634-.936.634-.54 0-.828-.419-.936-.634a1.96 1.96 0 01-.189-.866c0-.298.059-.605.189-.866zm2.023 6.828a.75.75 0 10-1.06-1.06 3.75 3.75 0 01-5.304 0 .75.75 0 00-1.06 1.06 5.25 5.25 0 007.424 0z" fill-rule="evenodd"></path></svg>";s:5:"color";s:20:"sys-colored col-red3";s:6:"weight";s:1:"1";}'),
(317, 'sys_vote_reactions', 'surprise', 4, '_sys_pre_lists_vote_reactions_surprise', '', 'a:6:{s:3:"use";s:5:"emoji";s:5:"emoji";s:4:"?";s:4:"icon";s:11:"fa-surprise";s:5:"image";s:551:"<svg aria-hidden="true" fill="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M9.375 3a1.875 1.875 0 000 3.75h1.875v4.5H3.375A1.875 1.875 0 011.5 9.375v-.75c0-1.036.84-1.875 1.875-1.875h3.193A3.375 3.375 0 0112 2.753a3.375 3.375 0 015.432 3.997h3.943c1.035 0 1.875.84 1.875 1.875v.75c0 1.036-.84 1.875-1.875 1.875H12.75v-4.5h1.875a1.875 1.875 0 10-1.875-1.875V6.75h-1.5V4.875C11.25 3.839 10.41 3 9.375 3zM11.25 12.75H3v6.75a2.25 2.25 0 002.25 2.25h6v-9zM12.75 12.75v9h6.75a2.25 2.25 0 002.25-2.25v-6.75h-9z"></path></svg>";s:5:"color";s:20:"sys-colored col-red3";s:6:"weight";s:1:"1";}'),
(318, 'sys_vote_reactions', 'sadness', 5, '_sys_pre_lists_vote_reactions_sadness', '', 'a:6:{s:3:"use";s:5:"emoji";s:5:"emoji";s:4:"?";s:4:"icon";s:11:"fa-sad-tear";s:5:"image";s:736:"<svg aria-hidden="true" fill="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="M16.5 4.478v.227a48.816 48.816 0 013.878.512.75.75 0 11-.256 1.478l-.209-.035-1.005 13.07a3 3 0 01-2.991 2.77H8.084a3 3 0 01-2.991-2.77L4.087 6.66l-.209.035a.75.75 0 01-.256-1.478A48.567 48.567 0 017.5 4.705v-.227c0-1.564 1.213-2.9 2.816-2.951a52.662 52.662 0 013.369 0c1.603.051 2.815 1.387 2.815 2.951zm-6.136-1.452a51.196 51.196 0 013.273 0C14.39 3.05 15 3.684 15 4.478v.113a49.488 49.488 0 00-6 0v-.113c0-.794.609-1.428 1.364-1.452zm-.355 5.945a.75.75 0 10-1.5.058l.347 9a.75.75 0 101.499-.058l-.346-9zm5.48.058a.75.75 0 10-1.498-.058l-.347 9a.75.75 0 001.5.058l.345-9z" fill-rule="evenodd"></path></svg>";s:5:"color";s:20:"sys-colored col-red3";s:6:"weight";s:1:"1";}'),
(319, 'sys_vote_reactions', 'anger', 6, '_sys_pre_lists_vote_reactions_anger', '', 'a:6:{s:3:"use";s:5:"emoji";s:5:"emoji";s:4:"?";s:4:"icon";s:8:"fa-angry";s:5:"image";s:858:"<svg aria-hidden="true" fill="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25zm-2.625 6c-.54 0-.828.419-.936.634a1.96 1.96 0 00-.189.866c0 .298.059.605.189.866.108.215.395.634.936.634.54 0 .828-.419.936-.634.13-.26.189-.568.189-.866 0-.298-.059-.605-.189-.866-.108-.215-.395-.634-.936-.634zm4.314.634c.108-.215.395-.634.936-.634.54 0 .828.419.936.634.13.26.189.568.189.866 0 .298-.059.605-.189.866-.108.215-.395.634-.936.634-.54 0-.828-.419-.936-.634a1.96 1.96 0 01-.189-.866c0-.298.059-.605.189-.866zm-4.34 7.964a.75.75 0 01-1.061-1.06 5.236 5.236 0 013.73-1.538 5.236 5.236 0 013.695 1.538.75.75 0 11-1.061 1.06 3.736 3.736 0 00-2.639-1.098 3.736 3.736 0 00-2.664 1.098z" fill-rule="evenodd"></path></svg>";s:5:"color";s:20:"sys-colored col-red3";s:6:"weight";s:1:"1";}'),
(320, 'sys_relations', '1', 1, '_sys_pre_lists_relations_husband', '', 'a:1:{i:0;s:1:"2";}'),
(321, 'sys_relations', '2', 2, '_sys_pre_lists_relations_wife', '', 'a:1:{i:0;s:1:"1";}'),
(322, 'sys_relations', '3', 3, '_sys_pre_lists_relations_father', '', 'a:2:{i:0;s:1:"5";i:1;s:1:"6";}'),
(323, 'sys_relations', '4', 4, '_sys_pre_lists_relations_mother', '', 'a:2:{i:0;s:1:"5";i:1;s:1:"6";}'),
(324, 'sys_relations', '5', 5, '_sys_pre_lists_relations_son', '', 'a:2:{i:0;s:1:"3";i:1;s:1:"4";}'),
(325, 'sys_relations', '6', 6, '_sys_pre_lists_relations_daughter', '', 'a:2:{i:0;s:1:"3";i:1;s:1:"4";}'),
(326, 'sys_relations', '7', 7, '_sys_pre_lists_relations_brother', '', 'a:2:{i:0;s:1:"7";i:1;s:1:"8";}'),
(327, 'sys_relations', '8', 8, '_sys_pre_lists_relations_sister', '', 'a:2:{i:0;s:1:"7";i:1;s:1:"8";}'),
(328, 'sys_content_filter', '1', 1, '_sys_pre_lists_content_filter_g', '', ''),
(329, 'sys_content_filter', '2', 2, '_sys_pre_lists_content_filter_pg', '', ''),
(330, 'sys_content_filter', '3', 3, '_sys_pre_lists_content_filter_pg13', '', ''),
(331, 'sys_content_filter', '4', 4, '_sys_pre_lists_content_filter_r', '', ''),
(332, 'sys_content_filter', '5', 5, '_sys_pre_lists_content_filter_x', '', ''),
(333, 'sys_studio_widget_types', '', 1, '_sys_pre_lists_studio_widget_types_library', '', 'a:1:{s:4:"icon";s:15:"lmi-library.svg";}'),
(334, 'sys_studio_widget_types', 'appearance', 2, '_sys_pre_lists_studio_widget_types_appearance', '', 'a:1:{s:4:"icon";s:18:"lmi-appearance.svg";}'),
(335, 'sys_studio_widget_types', 'structure', 3, '_sys_pre_lists_studio_widget_types_structure', '', 'a:1:{s:4:"icon";s:17:"lmi-structure.svg";}'),
(336, 'sys_studio_widget_types', 'content', 4, '_sys_pre_lists_studio_widget_types_content', '', 'a:1:{s:4:"icon";s:15:"lmi-content.svg";}'),
(337, 'sys_studio_widget_types', 'users', 5, '_sys_pre_lists_studio_widget_types_users', '', 'a:1:{s:4:"icon";s:13:"lmi-users.svg";}'),
(338, 'sys_studio_widget_types', 'configuration', 6, '_sys_pre_lists_studio_widget_types_configuration', '', 'a:1:{s:4:"icon";s:21:"lmi-configuration.svg";}'),
(339, 'sys_studio_widget_types', 'extensions', 7, '_sys_pre_lists_studio_widget_types_extensions', '', 'a:1:{s:4:"icon";s:18:"lmi-extensions.svg";}'),
(340, 'sys_studio_widget_types', 'integrations', 8, '_sys_pre_lists_studio_widget_types_integrations', '', 'a:1:{s:4:"icon";s:20:"lmi-integrations.svg";}'),
(341, 'sys_studio_widget_types', 'favorites', 9, '_sys_pre_lists_studio_widget_types_favorites', '', 'a:1:{s:4:"icon";s:17:"lmi-favorites.svg";}'),
(342, 'sys_colors', 'slate-600', 2, '_sys_pre_lists_color_slate', '', ''),
(343, 'sys_colors', 'gray-600', 3, '_sys_pre_lists_color_gray', '', ''),
(344, 'sys_colors', 'zinc-600', 4, '_sys_pre_lists_color_zinc', '', ''),
(345, 'sys_colors', 'neutral-600', 5, '_sys_pre_lists_color_neutral', '', ''),
(346, 'sys_colors', 'stone-600', 6, '_sys_pre_lists_color_stone', '', ''),
(347, 'sys_colors', 'red-600', 7, '_sys_pre_lists_color_red', '', ''),
(348, 'sys_colors', 'orange-600', 8, '_sys_pre_lists_color_orange', '', ''),
(349, 'sys_colors', 'amber-600', 9, '_sys_pre_lists_color_amber', '', ''),
(350, 'sys_colors', 'yellow-600', 10, '_sys_pre_lists_color_yellow', '', ''),
(351, 'sys_colors', 'lime-600', 11, '_sys_pre_lists_color_lime', '', ''),
(352, 'sys_colors', 'green-600', 12, '_sys_pre_lists_color_green', '', ''),
(353, 'sys_colors', 'emerald-600', 13, '_sys_pre_lists_color_emerald', '', ''),
(354, 'sys_colors', 'teal-600', 14, '_sys_pre_lists_color_teal', '', ''),
(355, 'sys_colors', 'cyan-600', 15, '_sys_pre_lists_color_cyan', '', ''),
(356, 'sys_colors', 'sky-600', 16, '_sys_pre_lists_color_sky', '', ''),
(357, 'sys_colors', 'blue-600', 17, '_sys_pre_lists_color_blue', '', ''),
(358, 'sys_colors', 'indigo-600', 18, '_sys_pre_lists_color_indigo', '', ''),
(359, 'sys_colors', 'violet-600', 19, '_sys_pre_lists_color_violet', '', ''),
(360, 'sys_colors', 'purple-600', 20, '_sys_pre_lists_color_purple', '', ''),
(361, 'sys_colors', 'fuchsia-600', 21, '_sys_pre_lists_color_fuchsia', '', ''),
(362, 'sys_colors', 'pink-600', 22, '_sys_pre_lists_color_pink', '', ''),
(363, 'sys_colors', 'rose-600', 23, '_sys_pre_lists_color_rose', '', '');
-- --------------------------------------------------------
--
-- Table structure for table `sys_grid_actions`
--
CREATE TABLE `sys_grid_actions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
`type` enum('bulk','single','independent') COLLATE utf8mb4_unicode_ci NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`icon` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`icon_only` tinyint(4) NOT NULL DEFAULT '0',
`confirm` tinyint(4) NOT NULL DEFAULT '1',
`active` tinyint(4) NOT NULL DEFAULT '1',
`order` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `object_name_type` (`object`,`type`,`name`(123))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=132 ;
--
-- Dumping data for table `sys_grid_actions`
--
INSERT INTO `sys_grid_actions` VALUES
(1, 'sys_studio_lang_keys', 'bulk', 'delete', '_adm_pgt_btn_delete', '', 0, 1, 1, 1),
(2, 'sys_studio_lang_keys', 'single', 'edit', '', 'pencil-alt', 0, 0, 1, 1),
(3, 'sys_studio_lang_keys', 'single', 'delete', '', 'remove', 0, 1, 1, 2),
(4, 'sys_studio_lang_keys', 'independent', 'add', '_adm_pgt_btn_add_new_key', '', 0, 0, 1, 1),
(5, 'sys_studio_lang_etemplates', 'single', 'edit', '', 'pencil-alt', 0, 0, 1, 1),
(6, 'sys_studio_acl', 'independent', 'add', '_adm_prm_btn_add_level', '', 0, 0, 1, 1),
(7, 'sys_studio_acl', 'single', 'edit', '', 'pencil-alt', 0, 0, 1, 1),
(8, 'sys_studio_acl', 'single', 'delete', '', 'remove', 0, 1, 1, 2),
(9, 'sys_studio_acl_actions', 'single', 'options', '', 'cog', 0, 0, 1, 1),
(10, 'sys_studio_nav_menus', 'independent', 'add', '_adm_nav_btn_menus_create', '', 0, 0, 1, 1),
(11, 'sys_studio_nav_menus', 'single', 'edit', '', 'pencil-alt', 0, 0, 1, 1),
(12, 'sys_studio_nav_menus', 'single', 'delete', '', 'remove', 0, 1, 1, 2),
(13, 'sys_studio_nav_sets', 'independent', 'add', '_adm_nav_btn_sets_create', '', 0, 0, 1, 1),
(14, 'sys_studio_nav_sets', 'single', 'edit', '', 'pencil-alt', 0, 0, 1, 1),
(15, 'sys_studio_nav_sets', 'single', 'delete', '', 'remove', 0, 1, 1, 2),
(16, 'sys_studio_nav_items', 'independent', 'import', '_adm_nav_btn_items_gl_import', '', 0, 0, 1, 1),
(17, 'sys_studio_nav_items', 'independent', 'add', '_adm_nav_btn_items_gl_create', '', 0, 0, 1, 2),
(18, 'sys_studio_nav_items', 'single', 'edit', '', 'pencil-alt', 0, 0, 1, 1),
(19, 'sys_studio_nav_items', 'single', 'delete', '', 'remove', 0, 1, 1, 2),
(20, 'sys_studio_nav_items', 'single', 'show_to', '_adm_nav_btn_items_gl_visible', '', 0, 0, 1, 3),
(21, 'sys_studio_nav_import', 'single', 'import', '', 'plus', 0, 0, 1, 1),
(22, 'sys_studio_nav_import', 'bulk', 'done', '_adm_nav_btn_items_done', '', 0, 0, 1, 1),
(23, 'sys_studio_forms', 'single', 'edit', '', 'pencil-alt', 0, 0, 1, 1),
(24, 'sys_studio_forms_displays', 'single', 'edit', '', 'pencil-alt', 0, 0, 1, 1),
(25, 'sys_studio_forms_fields', 'single', 'edit', '', 'pencil-alt', 0, 0, 1, 1),
(26, 'sys_studio_forms_fields', 'single', 'delete', '', 'remove', 0, 1, 1, 2),
(27, 'sys_studio_forms_fields', 'single', 'show_to', '_adm_form_btn_fields_visible', '', 0, 0, 1, 3),
(28, 'sys_studio_forms_fields', 'independent', 'add', '_adm_form_btn_fields_create', '', 0, 0, 1, 1),
(29, 'sys_studio_forms_pre_lists', 'independent', 'add', '_adm_form_btn_pre_lists_create', '', 0, 0, 1, 1),
(30, 'sys_studio_forms_pre_lists', 'single', 'edit', '', 'pencil-alt', 0, 0, 1, 1),
(31, 'sys_studio_forms_pre_lists', 'single', 'delete', '', 'remove', 0, 1, 1, 2),
(32, 'sys_studio_forms_pre_values', 'independent', 'add', '_adm_form_btn_pre_values_create', '', 0, 0, 1, 1),
(33, 'sys_studio_forms_pre_values', 'single', 'edit', '', 'pencil-alt', 0, 0, 1, 1),
(34, 'sys_studio_forms_pre_values', 'single', 'delete', '', 'remove', 0, 1, 1, 2),
(35, 'sys_studio_forms_pre_values', 'bulk', 'delete', '_adm_form_btn_pre_values_delete', '', 0, 1, 1, 1),
(36, 'sys_studio_search_forms', 'single', 'edit', '', 'pencil-alt', 0, 0, 1, 1),
(37, 'sys_studio_search_forms_fields', 'single', 'edit', '', 'pencil-alt', 0, 0, 1, 1),
(38, 'sys_studio_search_forms_fields', 'independent', 'reset', '_adm_form_btn_search_forms_fields_reset', '', 0, 0, 1, 1),
(39, 'sys_studio_search_forms_sortable_fields', 'independent', 'reset', '_adm_form_btn_search_forms_sortable_fields_reset', '', 0, 0, 1, 1),
(40, 'sys_studio_labels', 'independent', 'back', '_adm_form_btn_labels_back', '', 0, 0, 1, 1),
(41, 'sys_studio_labels', 'independent', 'add', '_adm_form_btn_labels_add', '', 0, 0, 1, 2),
(42, 'sys_studio_labels', 'single', 'edit', '', 'pencil-alt', 0, 0, 1, 1),
(43, 'sys_studio_labels', 'single', 'delete', '', 'remove', 0, 1, 1, 2),
(44, 'sys_studio_categories', 'bulk', 'delete', '_adm_form_btn_categories_delete', '', 0, 1, 1, 1),
(45, 'sys_studio_categories', 'single', 'edit', '', 'pencil-alt', 0, 0, 1, 1),
(46, 'sys_studio_categories', 'single', 'delete', '', 'remove', 0, 1, 1, 2),
(47, 'sys_studio_categories', 'independent', 'add', '_adm_form_btn_categories_add', '', 0, 0, 1, 1),
(48, 'sys_studio_groups_roles', 'independent', 'add', '_adm_rl_btn_role_add', '', 0, 0, 1, 1),
(49, 'sys_studio_groups_roles', 'single', 'edit', '_adm_rl_btn_role_edit', 'pencil-alt', 0, 0, 1, 1),
(50, 'sys_studio_groups_roles', 'single', 'delete', '_adm_rl_btn_role_delete', 'remove', 0, 1, 1, 3),
(51, 'sys_badges_administration', 'bulk', 'delete', '_adm_form_btn_badges_delete', '', 0, 1, 1, 1),
(52, 'sys_badges_administration', 'single', 'edit', '', 'pencil-alt', 0, 0, 1, 1),
(53, 'sys_badges_administration', 'single', 'delete', '', 'remove', 0, 1, 1, 2),
(54, 'sys_badges_administration', 'single', 'delete_icon', '', '', 0, 1, 1, 3),
(55, 'sys_badges_administration', 'independent', 'add', '_adm_form_btn_badges_add', '', 0, 0, 1, 1),
(56, 'sys_reports_administration', 'single', 'check_in', '_adm_form_btn_reports_check_in', 'lock-open', 1, 0, 1, 1),
(57, 'sys_reports_administration', 'single', 'check_out', '_adm_form_btn_reports_check_out', 'lock', 1, 0, 1, 2),
(58, 'sys_reports_administration', 'single', 'audit', '_adm_form_btn_reports_audit', 'history', 1, 0, 1, 3),
(59, 'sys_studio_roles', 'independent', 'add', '_adm_rl_btn_role_add', '', 0, 0, 1, 1),
(60, 'sys_studio_roles', 'single', 'edit', '_adm_rl_btn_role_edit', 'pencil-alt', 1, 0, 1, 1),
(61, 'sys_studio_roles', 'single', 'delete', '_adm_rl_btn_role_delete', 'remove', 1, 1, 1, 2),
(62, 'sys_cmts_administration', 'bulk', 'delete', '_sys_cmts_administration_grid_action_title_adm_delete', '', 0, 1, 1, 1),
(63, 'sys_cmts_administration', 'single', 'delete', '_sys_cmts_administration_grid_action_title_adm_delete', 'remove', 1, 1, 1, 1),
(64, 'sys_studio_strg_files', 'bulk', 'delete', '_adm_strg_btn_delete', '', 0, 1, 1, 1),
(65, 'sys_studio_strg_files', 'single', 'download', '_adm_strg_btn_download', 'download', 1, 0, 1, 1),
(66, 'sys_studio_strg_files', 'single', 'delete', '_adm_strg_btn_delete', 'remove', 1, 1, 1, 2),
(67, 'sys_studio_strg_files', 'independent', 'add', '_adm_strg_btn_add', '', 0, 0, 1, 1),
(68, 'sys_studio_strg_images', 'bulk', 'delete', '_adm_strg_btn_delete', '', 0, 1, 1, 1),
(69, 'sys_studio_strg_images', 'single', 'download', '_adm_strg_btn_download', 'download', 1, 0, 1, 1),
(70, 'sys_studio_strg_images', 'single', 'resize', '_adm_strg_btn_resize', 'compress', 1, 0, 1, 2),
(71, 'sys_studio_strg_images', 'single', 'delete', '_adm_strg_btn_delete', 'remove', 1, 1, 1, 3),
(72, 'sys_studio_strg_images', 'independent', 'add', '_adm_strg_btn_add', '', 0, 0, 1, 1),
(73, 'sys_grid_connections', 'single', 'accept', '_sys_accept', '', 0, 0, 1, 1),
(74, 'sys_grid_connections', 'single', 'delete', '', 'remove', 0, 1, 1, 2),
(75, 'sys_grid_connections', 'single', 'add_friend', '_sys_add_friend', 'plus', 0, 0, 1, 3),
(76, 'sys_grid_connections_requests', 'single', 'accept', '_sys_accept', '', 0, 0, 1, 1),
(77, 'sys_grid_connections_requests', 'single', 'delete', '', 'remove', 0, 1, 1, 2),
(78, 'sys_grid_subscriptions', 'single', 'subscribe', '_sys_subscribe', 'check', 0, 0, 1, 1),
(79, 'sys_grid_subscriptions', 'single', 'delete', '', 'remove', 0, 1, 1, 2),
(80, 'sys_grid_subscribed_me', 'single', 'subscribe', '_sys_subscribe', 'check', 0, 0, 1, 1),
(81, 'sys_grid_relations', 'single', 'delete', '_Delete', 'remove', 1, 1, 1, 1),
(82, 'sys_grid_related_me', 'single', 'confirm', '_sys_confirm', 'check-circle', 1, 0, 1, 1),
(83, 'sys_grid_related_me', 'single', 'decline', '_sys_decline', 'times-circle', 1, 1, 1, 2),
(84, 'sys_grid_related_me', 'single', 'add', '_sys_add_relation', 'plus-circle', 1, 0, 1, 3),
(85, 'sys_grid_related_me', 'single', 'delete', '_Delete', 'remove', 1, 1, 1, 4),
(86, 'sys_queues', 'single', 'clear', '', 'eraser', 0, 1, 1, 1),
(87, 'sys_studio_api_origins', 'single', 'delete', '_Delete', 'remove', 1, 1, 1, 1),
(88, 'sys_studio_api_origins', 'independent', 'add', '_adm_form_btn_field_add', '', 0, 0, 1, 1),
(89, 'sys_studio_api_keys', 'single', 'delete', '_Delete', 'remove', 1, 1, 1, 1),
(90, 'sys_studio_api_keys', 'independent', 'add', '_adm_form_btn_field_add', '', 0, 0, 1, 1),
(91, 'sys_studio_agents_automators', 'bulk', 'delete', '_Delete', '', 0, 1, 1, 1),
(92, 'sys_studio_agents_automators', 'single', 'tune', '_sys_agents_automators_btn_tune', '', 0, 0, 1, 1),
(93, 'sys_studio_agents_automators', 'single', 'edit', '_Edit', 'pencil-alt', 1, 0, 1, 2),
(94, 'sys_studio_agents_automators', 'single', 'delete', '_Delete', 'remove', 1, 1, 1, 3),
(95, 'sys_studio_agents_automators', 'independent', 'add', '_sys_agents_automators_btn_add', '', 0, 0, 1, 1),
(96, 'sys_studio_agents_helpers', 'independent', 'add', '_sys_agents_helpers_btn_add', '', 0, 0, 1, 1),
(97, 'sys_studio_agents_helpers', 'single', 'tune', '_sys_agents_helpers_btn_tune', '', 0, 0, 1, 1),
(98, 'sys_studio_agents_helpers', 'single', 'edit', '_Edit', 'pencil-alt', 1, 0, 1, 2),
(99, 'sys_studio_agents_helpers', 'single', 'delete', '_Delete', 'remove', 1, 1, 1, 3),
(100, 'sys_studio_agents_helpers', 'bulk', 'delete', '_Delete', '', 0, 1, 1, 1),
(101, 'sys_studio_agents_assistants', 'independent', 'add', '_sys_agents_assistants_btn_add', '', 0, 0, 1, 1),
(102, 'sys_studio_agents_assistants', 'single', 'chats', '_sys_agents_assistants_btn_chats', 'comments', 1, 0, 1, 1),
(103, 'sys_studio_agents_assistants', 'single', 'files', '_sys_agents_assistants_btn_files', 'folder', 1, 0, 1, 2),
(104, 'sys_studio_agents_assistants', 'single', 'codes', '_sys_agents_assistants_btn_codes', 'code', 1, 0, 1, 3),
(105, 'sys_studio_agents_assistants', 'single', 'edit', '_Edit', 'pencil-alt', 1, 0, 1, 4),
(106, 'sys_studio_agents_assistants', 'single', 'delete', '_Delete', 'remove', 1, 1, 1, 5),
(107, 'sys_studio_agents_assistants', 'bulk', 'delete', '_Delete', '', 0, 1, 1, 1),
(108, 'sys_studio_agents_assistants_chats', 'independent', 'add', '_sys_agents_assistants_chats_btn_add', '', 0, 0, 1, 1),
(109, 'sys_studio_agents_assistants_chats', 'single', 'chat', '_sys_agents_assistants_chats_btn_chat', '', 0, 0, 1, 1),
(110, 'sys_studio_agents_assistants_chats', 'single', 'store', '_sys_agents_assistants_chats_btn_store', 'download', 1, 1, 1, 2),
(111, 'sys_studio_agents_assistants_chats', 'single', 'unstore', '_sys_agents_assistants_chats_btn_unstore', 'upload', 1, 1, 1, 3),
(112, 'sys_studio_agents_assistants_chats', 'single', 'edit', '_Edit', 'pencil-alt', 1, 0, 1, 4),
(113, 'sys_studio_agents_assistants_chats', 'single', 'delete', '_Delete', 'remove', 1, 1, 1, 5),
(114, 'sys_studio_agents_assistants_chats', 'bulk', 'delete', '_Delete', '', 0, 1, 1, 1),
(115, 'sys_studio_agents_assistants_files', 'independent', 'add', '_sys_agents_assistants_files_btn_add', '', 0, 0, 1, 1),
(116, 'sys_studio_agents_assistants_files', 'independent', 'sync', '_sys_agents_assistants_files_btn_sync', '', 0, 0, 1, 2),
(117, 'sys_studio_agents_assistants_files', 'single', 'delete', '_sys_agents_assistants_files_btn_delete', 'remove', 1, 1, 1, 1),
(118, 'sys_studio_agents_providers', 'independent', 'add', '_sys_agents_providers_btn_add', '', 0, 0, 1, 1),
(119, 'sys_studio_agents_providers', 'single', 'info', '_sys_agents_providers_btn_info', 'info', 1, 0, 1, 1),
(120, 'sys_studio_agents_providers', 'single', 'edit', '_sys_agents_providers_btn_edit', 'pencil-alt', 1, 0, 1, 2),
(121, 'sys_studio_agents_providers', 'single', 'delete', '_sys_agents_providers_btn_delete', 'remove', 1, 1, 1, 3),
(122, 'sys_studio_agents_providers', 'bulk', 'delete', '_sys_agents_providers_btn_delete', '', 0, 1, 1, 1),
(123, 'bx_persons_administration', 'bulk', 'set_acl_level', '_bx_persons_grid_action_title_adm_set_acl_level', '', 0, 0, 1, 1),
(124, 'bx_persons_administration', 'bulk', 'delete_with_content', '_bx_persons_grid_action_title_adm_delete_with_content', '', 0, 1, 1, 2),
(125, 'bx_persons_administration', 'bulk', 'clear_reports', '_bx_persons_grid_action_title_adm_clear_reports', '', 0, 1, 1, 3),
(126, 'bx_persons_administration', 'single', 'set_acl_level', '_bx_persons_grid_action_title_adm_set_acl_level', 'certificate', 1, 0, 1, 1),
(127, 'bx_persons_administration', 'single', 'settings', '_bx_persons_grid_action_title_adm_more_actions', 'cog', 1, 0, 1, 2),
(128, 'bx_persons_administration', 'single', 'audit_content', '_bx_persons_grid_action_title_adm_audit_content', 'search', 1, 0, 1, 3),
(129, 'bx_persons_administration', 'single', 'audit_profile', '_bx_persons_grid_action_title_adm_audit_profile', 'search-location', 1, 0, 1, 4),
(130, 'bx_persons_common', 'bulk', 'delete_with_content', '_bx_persons_grid_action_title_adm_delete_with_content', '', 0, 1, 1, 1),
(131, 'bx_persons_common', 'single', 'settings', '_bx_persons_grid_action_title_adm_more_actions', 'cog', 1, 0, 1, 1);
-- --------------------------------------------------------
--
-- Table structure for table `sys_grid_fields`
--
CREATE TABLE `sys_grid_fields` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`width` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL,
`translatable` tinyint(4) NOT NULL DEFAULT '0',
`chars_limit` int(11) NOT NULL DEFAULT '0',
`params` text COLLATE utf8mb4_unicode_ci NOT NULL,
`hidden_on` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`order` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `object_name` (`object`,`name`(127))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=243 ;
--
-- Dumping data for table `sys_grid_fields`
--
INSERT INTO `sys_grid_fields` VALUES
(1, 'sys_studio_lang_keys', 'checkbox', 'Select', '1%', 0, 0, '', '', 1),
(2, 'sys_studio_lang_keys', 'key', '_adm_pgt_txt_key', '24%', 0, 20, '', '', 2),
(3, 'sys_studio_lang_keys', 'module', '_adm_pgt_txt_module', '15%', 0, 12, '', '', 3),
(4, 'sys_studio_lang_keys', 'string', '_adm_pgt_txt_text', '30%', 0, 30, '', '', 4),
(5, 'sys_studio_lang_keys', 'languages', '_adm_pgt_txt_languages', '10%', 0, 0, '', '', 5),
(6, 'sys_studio_lang_keys', 'actions', '', '20%', 0, 0, '', '', 6),
(7, 'sys_studio_lang_etemplates', 'NameSystem', '_adm_pgt_txt_etemplates_gl_name_system', '60%', 1, 58, '', '', 1),
(8, 'sys_studio_lang_etemplates', 'Module', '_adm_pgt_txt_etemplates_gl_module', '20%', 0, 18, '', '', 2),
(9, 'sys_studio_lang_etemplates', 'actions', '', '20%', 0, 0, '', '', 3),
(10, 'sys_studio_roles', 'order', '', '1%', 0, 0, '', '', 1),
(11, 'sys_studio_roles', 'switcher', '', '5%', 0, 0, '', '', 2),
(12, 'sys_studio_roles', 'title', '_adm_rl_txt_title', '24%', 1, 0, '', '', 3),
(13, 'sys_studio_roles', 'description', '_adm_rl_txt_description', '35%', 1, 32, '', '', 4),
(14, 'sys_studio_roles', 'actions_list', '_adm_rl_txt_actions', '15%', 0, 0, '', '', 5),
(15, 'sys_studio_roles', 'actions', '', '20%', 0, 0, '', '', 6),
(16, 'sys_studio_roles_actions', 'switcher', '', '10%', 0, 0, '', '', 1),
(17, 'sys_studio_roles_actions', 'title', '_adm_rl_txt_title', '40%', 1, 32, '', '', 2),
(18, 'sys_studio_roles_actions', 'description', '_adm_rl_txt_description', '50%', 1, 48, '', '', 3),
(19, 'sys_studio_acl', 'Order', '', '1%', 0, 0, '', '', 1),
(20, 'sys_studio_acl', 'switcher', '_adm_prm_txt_enable', '5%', 0, 0, '', '', 2),
(21, 'sys_studio_acl', 'Icon', '_adm_prm_txt_icon', '5%', 0, 0, '', '', 3),
(22, 'sys_studio_acl', 'Name', '_adm_prm_txt_title', '29%', 1, 15, '', '', 4),
(23, 'sys_studio_acl', 'ActionsList', '_adm_prm_txt_actions', '10%', 0, 0, '', '', 5),
(24, 'sys_studio_acl', 'QuotaSize', '_adm_prm_txt_storage', '10%', 0, 0, '', '', 6),
(25, 'sys_studio_acl', 'QuotaMaxFileSize', '_adm_prm_txt_max_file_size', '10%', 0, 0, '', '', 7),
(26, 'sys_studio_acl', 'QuotaNumber', '_adm_prm_txt_max_files', '10%', 0, 0, '', '', 8),
(27, 'sys_studio_acl', 'actions', '', '20%', 0, 0, '', '', 9),
(28, 'sys_studio_acl_actions', 'switcher', '_adm_prm_txt_enable', '10%', 0, 0, '', '', 1),
(29, 'sys_studio_acl_actions', 'Title', '_adm_prm_txt_title', '25%', 1, 25, '', '', 2),
(30, 'sys_studio_acl_actions', 'Module', '_adm_prm_txt_module', '20%', 0, 18, '', '', 3),
(31, 'sys_studio_acl_actions', 'Desc', '_adm_prm_txt_description', '25%', 0, 25, '', '', 4),
(32, 'sys_studio_acl_actions', 'actions', '', '20%', 0, 0, '', '', 5),
(33, 'sys_studio_nav_menus', 'switcher', '', '10%', 0, 0, '', '', 1),
(34, 'sys_studio_nav_menus', 'title', '_adm_nav_txt_menus_gl_title', '17%', 0, 15, '', '', 2),
(35, 'sys_studio_nav_menus', 'set_title', '_adm_nav_txt_menus_gl_set_title', '17%', 1, 15, '', '', 3),
(36, 'sys_studio_nav_menus', 'items', '_adm_nav_txt_menus_gl_items', '10%', 0, 8, '', '', 4),
(37, 'sys_studio_nav_menus', 'template_title', '_adm_nav_txt_menus_gl_template_title', '17%', 1, 15, '', '', 5),
(38, 'sys_studio_nav_menus', 'module', '_adm_nav_txt_menus_gl_module', '12%', 0, 10, '', '', 6),
(39, 'sys_studio_nav_menus', 'actions', '', '17%', 0, 0, '', '', 7),
(40, 'sys_studio_nav_sets', 'title', '_adm_nav_txt_sets_gl_title', '50%', 1, 48, '', '', 1),
(41, 'sys_studio_nav_sets', 'module', '_adm_nav_txt_sets_gl_module', '15%', 0, 13, '', '', 2),
(42, 'sys_studio_nav_sets', 'items', '_adm_nav_txt_sets_gl_items', '15%', 0, 13, '', '', 3),
(43, 'sys_studio_nav_sets', 'actions', '', '20%', 0, 0, '', '', 4),
(44, 'sys_studio_nav_items', 'order', '', '1%', 0, 0, '', '', 1),
(45, 'sys_studio_nav_items', 'switcher', '', '9%', 0, 0, '', '', 2),
(46, 'sys_studio_nav_items', 'icon', '_adm_nav_txt_items_gl_icon', '5%', 0, 0, '', '', 3),
(47, 'sys_studio_nav_items', 'title_system', '_adm_nav_txt_items_gl_title_system', '23%', 1, 23, '', '', 4),
(48, 'sys_studio_nav_items', 'link', '_adm_nav_txt_items_gl_link', '23%', 0, 23, '', '', 5),
(49, 'sys_studio_nav_items', 'module', '_adm_nav_txt_items_gl_module', '12%', 0, 12, '', '', 6),
(50, 'sys_studio_nav_items', 'visible_for_levels', '_adm_nav_txt_items_gl_visible', '10%', 0, 10, '', '', 7),
(51, 'sys_studio_nav_items', 'actions', '', '17%', 0, 0, '', '', 8),
(52, 'sys_studio_nav_import', 'icon', '_adm_nav_txt_items_gl_icon', '10%', 0, 0, '', '', 1),
(53, 'sys_studio_nav_import', 'title_system', '_adm_nav_txt_items_gl_title_system', '30%', 1, 28, '', '', 2),
(54, 'sys_studio_nav_import', 'link', '_adm_nav_txt_items_gl_link', '25%', 0, 23, '', '', 3),
(55, 'sys_studio_nav_import', 'module', '_adm_nav_txt_items_gl_module', '15%', 0, 13, '', '', 4),
(56, 'sys_studio_nav_import', 'actions', '', '20%', 0, 0, '', '', 5),
(57, 'sys_studio_forms', 'switcher', '', '10%', 0, 0, '', '', 1),
(58, 'sys_studio_forms', 'title', '_adm_form_txt_forms_gl_title', '40%', 1, 38, '', '', 2),
(59, 'sys_studio_forms', 'module', '_adm_form_txt_forms_gl_module', '15%', 0, 13, '', '', 3),
(60, 'sys_studio_forms', 'displays', '_adm_form_txt_forms_gl_displays', '15%', 0, 13, '', '', 4),
(61, 'sys_studio_forms', 'actions', '', '20%', 0, 0, '', '', 5),
(62, 'sys_studio_forms_displays', 'display_title', '_adm_form_txt_displays_gl_title', '30%', 1, 48, '', '', 1),
(63, 'sys_studio_forms_displays', 'module', '_adm_form_txt_displays_gl_module', '13%', 0, 11, '', '', 2),
(64, 'sys_studio_forms_displays', 'form_title', '_adm_form_txt_displays_gl_form', '24%', 1, 22, '', '', 3),
(65, 'sys_studio_forms_displays', 'fields', '_adm_form_txt_displays_gl_fields', '13%', 0, 11, '', '', 4),
(66, 'sys_studio_forms_displays', 'actions', '', '20%', 0, 0, '', '', 5),
(67, 'sys_studio_forms_fields', 'order', '', '1%', 0, 0, '', '', 1),
(68, 'sys_studio_forms_fields', 'switcher', '', '9%', 0, 0, '', '', 2),
(69, 'sys_studio_forms_fields', 'type', '_adm_form_txt_fields_type', '5%', 0, 0, '', '', 3),
(70, 'sys_studio_forms_fields', 'caption_system', '_adm_form_txt_fields_caption_system', '40%', 1, 38, '', '', 4),
(71, 'sys_studio_forms_fields', 'module', '_adm_form_txt_fields_module', '15%', 0, 13, '', '', 5),
(72, 'sys_studio_forms_fields', 'visible_for_levels', '_adm_form_txt_fields_visible', '10%', 0, 10, '', '', 6),
(73, 'sys_studio_forms_fields', 'actions', '', '20%', 0, 0, '', '', 7),
(74, 'sys_studio_forms_pre_lists', 'title', '_adm_form_txt_pre_lists_gl_title', '45%', 1, 50, '', '', 1),
(75, 'sys_studio_forms_pre_lists', 'values', '_adm_form_txt_pre_lists_gl_values', '12%', 0, 10, '', '', 2),
(76, 'sys_studio_forms_pre_lists', 'module', '_adm_form_txt_pre_lists_gl_module', '13%', 0, 11, '', '', 3),
(77, 'sys_studio_forms_pre_lists', 'use_for_sets', '_adm_form_txt_pre_lists_gl_use_for_sets', '10%', 0, 8, '', '', 4),
(78, 'sys_studio_forms_pre_lists', 'actions', '', '20%', 0, 0, '', '', 5),
(79, 'sys_studio_forms_pre_values', 'checkbox', '', '1%', 0, 0, '', '', 1),
(80, 'sys_studio_forms_pre_values', 'order', '', '1%', 0, 0, '', '', 2),
(81, 'sys_studio_forms_pre_values', 'LKey', '_adm_form_txt_pre_values_gl_lkey', '78%', 1, 75, '', '', 3),
(82, 'sys_studio_forms_pre_values', 'actions', '', '20%', 0, 0, '', '', 4),
(83, 'sys_studio_search_forms', 'switcher', '', '10%', 0, 0, '', '', 1),
(84, 'sys_studio_search_forms', 'title', '_adm_form_txt_search_forms_title', '35%', 1, 38, '', '', 2),
(85, 'sys_studio_search_forms', 'module', '_adm_form_txt_search_forms_module', '15%', 0, 13, '', '', 3),
(86, 'sys_studio_search_forms', 'fields', '_adm_form_txt_search_forms_fields', '10%', 0, 13, '', '', 4),
(87, 'sys_studio_search_forms', 'sortable_fields', '_adm_form_txt_search_forms_sortable_fields', '10%', 0, 13, '', '', 5),
(88, 'sys_studio_search_forms', 'actions', '', '20%', 0, 0, '', '', 6),
(89, 'sys_studio_search_forms_fields', 'order', '', '1%', 0, 0, '', '', 1),
(90, 'sys_studio_search_forms_fields', 'switcher', '', '9%', 0, 0, '', '', 2),
(91, 'sys_studio_search_forms_fields', 'type', '_adm_form_txt_search_forms_fields_type', '15%', 0, 0, '', '', 3),
(92, 'sys_studio_search_forms_fields', 'caption', '_adm_form_txt_search_forms_fields_caption', '40%', 1, 38, '', '', 4),
(93, 'sys_studio_search_forms_fields', 'search_type', '_adm_form_txt_search_forms_fields_search_type', '15%', 0, 0, '', '', 5),
(94, 'sys_studio_search_forms_fields', 'actions', '', '20%', 0, 0, '', '', 6),
(95, 'sys_studio_search_forms_sortable_fields', 'order', '', '1%', 0, 0, '', '', 1),
(96, 'sys_studio_search_forms_sortable_fields', 'switcher', '', '9%', 0, 0, '', '', 2),
(97, 'sys_studio_search_forms_sortable_fields', 'caption', '_adm_form_txt_search_forms_sortable_fields_caption', '50%', 1, 38, '', '', 3),
(98, 'sys_studio_search_forms_sortable_fields', 'direction', '_adm_form_txt_search_forms_sortable_fields_direction', '40%', 0, 0, '', '', 4),
(99, 'sys_studio_labels', 'order', '', '1%', 0, 0, '', '', 1),
(100, 'sys_studio_labels', 'value', '_adm_form_txt_labels_value', '70%', 0, 38, '', '', 2),
(101, 'sys_studio_labels', 'items', '_adm_form_txt_labels_items', '10%', 0, 0, '', '', 3),
(102, 'sys_studio_labels', 'actions', '', '19%', 0, 0, '', '', 4),
(103, 'sys_studio_categories', 'checkbox', '_sys_select', '2%', 0, 0, '', '', 1),
(104, 'sys_studio_categories', 'switcher', '_adm_prm_txt_enable', '8%', 0, 0, '', '', 2),
(105, 'sys_studio_categories', 'value', '_adm_form_txt_categories_value', '25%', 0, 35, '', '', 3),
(106, 'sys_studio_categories', 'module', '_adm_form_txt_categories_module', '15%', 0, 35, '', '', 4),
(107, 'sys_studio_categories', 'author', '_adm_form_txt_categories_author', '15%', 0, 35, '', '', 5),
(108, 'sys_studio_categories', 'added', '_adm_form_txt_categories_added', '15%', 1, 25, '', '', 6),
(109, 'sys_studio_categories', 'actions', '', '20%', 0, 0, '', '', 7),
(110, 'sys_studio_groups_roles', 'order', '', '2%', 0, 0, '', '', 1),
(111, 'sys_studio_groups_roles', 'LKey', '_adm_rl_txt_title', '40%', 1, 0, '', '', 2),
(112, 'sys_studio_groups_roles', 'actions_list', '_adm_rl_txt_actions', '10%', 0, 35, '', '', 3),
(113, 'sys_studio_groups_roles', 'actions', '', '48%', 0, 0, '', '', 4),
(114, 'sys_audit_administration', 'added', '_adm_form_txt_audit_added', '15%', 1, 25, '', '', 1),
(115, 'sys_audit_administration', 'profile_id', '_adm_form_txt_audit_profile', '15%', 1, 25, '', '', 2),
(116, 'sys_audit_administration', 'content_id', '_adm_form_txt_audit_content', '20%', 1, 25, '', '', 3),
(117, 'sys_audit_administration', 'author_id', '_adm_form_txt_audit_author_content', '10%', 1, 25, '', '', 4),
(118, 'sys_audit_administration', 'content_module', '_adm_form_txt_audit_module', '10%', 1, 25, '', '', 5),
(119, 'sys_audit_administration', 'context_profile_id', '_adm_pgt_txt_audit_context', '15%', 1, 25, '', '', 6),
(120, 'sys_audit_administration', 'action_lang_key', '_adm_pgt_txt_audit_action', '15%', 1, 25, '', '', 7),
(121, 'sys_badges_administration', 'checkbox', '_sys_select', '2%', 0, 0, '', '', 1),
(122, 'sys_badges_administration', 'view', '_adm_form_txt_badges_view', '15%', 1, 0, '', '', 2),
(123, 'sys_badges_administration', 'module', '_adm_form_txt_badges_module', '15%', 1, 25, '', '', 3),
(124, 'sys_badges_administration', 'text', '_adm_pgt_txt_badges_text', '28%', 1, 35, '', '', 4),
(125, 'sys_badges_administration', 'icon', '_adm_pgt_txt_badges_icon', '20%', 1, 0, '', '', 5),
(126, 'sys_badges_administration', 'actions', '', '20%', 0, 0, '', '', 6),
(127, 'sys_reports_administration', 'object', '_adm_form_txt_reports_object', '10%', 1, 25, '', '', 1),
(128, 'sys_reports_administration', 'author', '_adm_form_txt_reports_author', '10%', 1, 25, '', '', 2),
(129, 'sys_reports_administration', 'type', '_adm_form_txt_reports_type', '10%', 1, 25, '', '', 3),
(130, 'sys_reports_administration', 'text', '_adm_form_txt_reports_text', '10%', 1, 25, '', '', 4),
(131, 'sys_reports_administration', 'date', '_adm_form_txt_reports_date', '10%', 1, 25, '', '', 5),
(132, 'sys_reports_administration', 'status', '_adm_form_txt_reports_status', '10%', 1, 25, '', '', 6),
(133, 'sys_reports_administration', 'checked_by', '_adm_form_txt_reports_checked_by', '10%', 1, 25, '', '', 7),
(134, 'sys_reports_administration', 'notes', '_adm_form_txt_reports_notes', '10%', 1, 25, '', '', 8),
(135, 'sys_reports_administration', 'comments', '_adm_form_txt_reports_comments', '10%', 1, 25, '', '', 8),
(136, 'sys_reports_administration', 'actions', '', '10%', 0, 0, '', '', 9),
(137, 'sys_cmts_administration', 'checkbox', '_sys_select', '2%', 0, 0, '', '', 1),
(138, 'sys_cmts_administration', 'switcher', '_sys_cmts_administration_grid_column_title_adm_active', '8%', 0, 0, '', '', 2),
(139, 'sys_cmts_administration', 'reports', '_sys_txt_reports_title', '5%', 0, 0, '', '', 3),
(140, 'sys_cmts_administration', 'cmt_module', '_sys_cmts_administration_grid_column_title_adm_cmt_module', '10%', 0, 25, '', '', 4),
(141, 'sys_cmts_administration', 'cmt_text', '_sys_cmts_administration_grid_column_title_adm_cmt_text', '30%', 0, 25, '', '', 5),
(142, 'sys_cmts_administration', 'cmt_time', '_sys_cmts_administration_grid_column_title_adm_cmt_time', '10%', 1, 25, '', '', 6),
(143, 'sys_cmts_administration', 'cmt_author_id', '_sys_cmts_administration_grid_column_title_adm_cmt_author_id', '15%', 0, 25, '', '', 7),
(144, 'sys_cmts_administration', 'actions', '', '20%', 0, 0, '', '', 8),
(145, 'sys_studio_strg_files', 'checkbox', '', '1%', 0, 0, '', '', 1),
(146, 'sys_studio_strg_files', 'file_name', '_adm_strg_txt_file_name', '24%', 0, 25, '', '', 2),
(147, 'sys_studio_strg_files', 'path', '_adm_strg_txt_path', '25%', 0, 0, '', '', 3),
(148, 'sys_studio_strg_files', 'mime_type', '_adm_strg_txt_mime_type', '15%', 0, 15, '', '', 4),
(149, 'sys_studio_strg_files', 'added', '_adm_strg_txt_added', '10%', 0, 10, '', '', 5),
(150, 'sys_studio_strg_files', 'actions', '', '25%', 0, 0, '', '', 6),
(151, 'sys_studio_strg_images', 'checkbox', '', '1%', 0, 0, '', '', 1),
(152, 'sys_studio_strg_images', 'file_name', '_adm_strg_txt_file_name', '24%', 0, 25, '', '', 2),
(153, 'sys_studio_strg_images', 'path', '_adm_strg_txt_path', '25%', 0, 0, '', '', 3),
(154, 'sys_studio_strg_images', 'mime_type', '_adm_strg_txt_mime_type', '15%', 0, 15, '', '', 4),
(155, 'sys_studio_strg_images', 'added', '_adm_strg_txt_added', '10%', 0, 10, '', '', 5),
(156, 'sys_studio_strg_images', 'actions', '', '25%', 0, 0, '', '', 6),
(157, 'sys_grid_connections', 'name', '_sys_name', '40%', 0, 0, '', '', 1),
(158, 'sys_grid_connections', 'info', '', '30%', 0, 0, '', '1', 2),
(159, 'sys_grid_connections', 'actions', '', '30%', 0, 0, '', '', 3),
(160, 'sys_grid_connections_requests', 'name', '_sys_name', '40%', 0, 0, '', '', 1),
(161, 'sys_grid_connections_requests', 'info', '', '30%', 0, 0, '', '1', 2),
(162, 'sys_grid_connections_requests', 'actions', '', '30%', 0, 0, '', '', 3),
(163, 'sys_grid_subscriptions', 'name', '_sys_name', '70%', 0, 0, '', '', 1),
(164, 'sys_grid_subscriptions', 'actions', '', '30%', 0, 0, '', '', 2),
(165, 'sys_grid_subscribed_me', 'name', '_sys_name', '70%', 0, 0, '', '', 1),
(166, 'sys_grid_subscribed_me', 'actions', '', '30%', 0, 0, '', '', 2),
(167, 'sys_grid_relations', 'name', '_sys_name', '40%', 0, 0, '', '', 1),
(168, 'sys_grid_relations', 'relation', '_sys_relation', '15%', 0, 0, '', '', 2),
(169, 'sys_grid_relations', 'mutual', '_sys_status', '15%', 0, 0, '', '', 3),
(170, 'sys_grid_relations', 'actions', '', '30%', 0, 0, '', '', 4),
(171, 'sys_grid_related_me', 'name', '_sys_name', '40%', 0, 0, '', '', 1),
(172, 'sys_grid_related_me', 'relation', '_sys_relation', '15%', 0, 0, '', '', 2),
(173, 'sys_grid_related_me', 'mutual', '_sys_status', '15%', 0, 0, '', '', 3),
(174, 'sys_grid_related_me', 'actions', '', '30%', 0, 0, '', '', 4),
(175, 'sys_queues', 'name', '_Name', '40%', 1, 0, '', '', 1),
(176, 'sys_queues', 'all', '_all', '20%', 0, 0, '', '', 2),
(177, 'sys_queues', 'failed', '_Failed', '20%', 0, 0, '', '', 3),
(178, 'sys_queues', 'actions', '', '20%', 0, 0, '', '', 4),
(179, 'sys_studio_api_origins', 'order', '', '1%', 0, 0, '', '', 1),
(180, 'sys_studio_api_origins', 'url', '_sys_txt_url', '80%', 0, 0, '', '', 2),
(181, 'sys_studio_api_origins', 'actions', '', '19%', 0, 0, '', '', 3),
(182, 'sys_studio_api_keys', 'order', '', '1%', 0, 0, '', '', 1),
(183, 'sys_studio_api_keys', 'title', '_Name', '40%', 0, 0, '', '', 2),
(184, 'sys_studio_api_keys', 'key', '_sys_txt_api_key', '40%', 0, 0, '', '', 3),
(185, 'sys_studio_api_keys', 'actions', '', '19%', 0, 0, '', '', 4),
(186, 'sys_studio_agents_automators', 'checkbox', '', '2%', 0, 0, '', '', 1),
(187, 'sys_studio_agents_automators', 'switcher', '_sys_agents_automators_txt_active', '8%', 0, 0, '', '', 2),
(188, 'sys_studio_agents_automators', 'name', '_sys_agents_automators_txt_name', '10%', 0, 0, '', '', 3),
(189, 'sys_studio_agents_automators', 'type', '_sys_agents_automators_txt_type', '8%', 0, 0, '', '', 4),
(190, 'sys_studio_agents_automators', 'model_id', '_sys_agents_automators_txt_model_id', '8%', 0, 0, '', '', 5),
(191, 'sys_studio_agents_automators', 'profile_id', '_sys_agents_automators_txt_profile_id', '10%', 0, 0, '', '', 6),
(192, 'sys_studio_agents_automators', 'message_id', '_sys_agents_automators_txt_message_id', '14%', 0, 32, '', '', 7),
(193, 'sys_studio_agents_automators', 'messages', '_sys_agents_automators_txt_messages', '10%', 0, 0, '', '', 8),
(194, 'sys_studio_agents_automators', 'added', '_sys_agents_automators_txt_added', '5%', 0, 0, '', '', 9),
(195, 'sys_studio_agents_automators', 'status', '_sys_agents_automators_txt_status', '5%', 0, 0, '', '', 10),
(196, 'sys_studio_agents_automators', 'actions', '', '20%', 0, 0, '', '', 11),
(197, 'sys_studio_agents_helpers', 'checkbox', '', '2%', 0, 0, '', '', 1),
(198, 'sys_studio_agents_helpers', 'switcher', '_sys_agents_helpers_txt_active', '8%', 0, 0, '', '', 2),
(199, 'sys_studio_agents_helpers', 'name', '_sys_agents_helpers_txt_name', '15%', 0, 0, '', '', 3),
(200, 'sys_studio_agents_helpers', 'model_id', '_sys_agents_helpers_txt_model_id', '10%', 0, 0, '', '', 5),
(201, 'sys_studio_agents_helpers', 'profile_id', '_sys_agents_helpers_txt_profile_id', '10%', 0, 0, '', '', 6),
(202, 'sys_studio_agents_helpers', 'prompt', '_sys_agents_helpers_txt_prompt', '25%', 0, 32, '', '', 7),
(203, 'sys_studio_agents_helpers', 'added', '_sys_agents_helpers_txt_added', '10%', 0, 0, '', '', 8),
(204, 'sys_studio_agents_helpers', 'actions', '', '20%', 0, 0, '', '', 9),
(205, 'sys_studio_agents_assistants', 'checkbox', '', '2%', 0, 0, '', '', 1),
(206, 'sys_studio_agents_assistants', 'switcher', '_sys_agents_assistants_txt_active', '8%', 0, 0, '', '', 2),
(207, 'sys_studio_agents_assistants', 'name', '_sys_agents_assistants_txt_name', '15%', 0, 0, '', '', 3),
(208, 'sys_studio_agents_assistants', 'model_id', '_sys_agents_assistants_txt_model_id', '10%', 0, 0, '', '', 5),
(209, 'sys_studio_agents_assistants', 'profile_id', '_sys_agents_assistants_txt_profile_id', '10%', 0, 0, '', '', 6),
(210, 'sys_studio_agents_assistants', 'prompt', '_sys_agents_assistants_txt_prompt', '25%', 0, 32, '', '', 7),
(211, 'sys_studio_agents_assistants', 'added', '_sys_agents_assistants_txt_added', '10%', 0, 0, '', '', 8),
(212, 'sys_studio_agents_assistants', 'actions', '', '20%', 0, 0, '', '', 9),
(213, 'sys_studio_agents_assistants_chats', 'checkbox', '', '2%', 0, 0, '', '', 1),
(214, 'sys_studio_agents_assistants_chats', 'name', '_sys_agents_assistants_chats_txt_name', '18%', 0, 0, '', '', 2),
(215, 'sys_studio_agents_assistants_chats', 'type', '_sys_agents_assistants_chats_txt_type', '5%', 0, 0, '', '', 3),
(216, 'sys_studio_agents_assistants_chats', 'description', '_sys_agents_assistants_chats_txt_description', '25%', 0, 16, '', '', 4),
(217, 'sys_studio_agents_assistants_chats', 'messages', '_sys_agents_assistants_chats_txt_messages', '10%', 0, 0, '', '', 5),
(218, 'sys_studio_agents_assistants_chats', 'added', '_sys_agents_assistants_chats_txt_added', '15%', 0, 0, '', '', 6),
(219, 'sys_studio_agents_assistants_chats', 'stored', '_sys_agents_assistants_chats_txt_stored', '15%', 0, 0, '', '', 7),
(220, 'sys_studio_agents_assistants_chats', 'actions', '', '20%', 0, 0, '', '', 8),
(221, 'sys_studio_agents_assistants_files', 'name', '_sys_agents_assistants_files_txt_name', '35%', 0, 32, '', '', 1),
(222, 'sys_studio_agents_assistants_files', 'size', '_sys_agents_assistants_files_txt_size', '15%', 0, 0, '', '', 2),
(223, 'sys_studio_agents_assistants_files', 'status', '_sys_agents_assistants_files_txt_status', '15%', 0, 0, '', '', 3),
(224, 'sys_studio_agents_assistants_files', 'added', '_sys_agents_assistants_files_txt_added', '15%', 0, 0, '', '', 4),
(225, 'sys_studio_agents_assistants_files', 'actions', '', '20%', 0, 0, '', '', 5),
(226, 'sys_studio_agents_providers', 'checkbox', '_sys_select', '2%', 0, 0, '', '', 1),
(227, 'sys_studio_agents_providers', 'switcher', '_sys_agents_providers_txt_active', '8%', 0, 0, '', '', 2),
(228, 'sys_studio_agents_providers', 'name', '_sys_agents_providers_txt_provider_name', '30%', 0, 32, '', '', 3),
(229, 'sys_studio_agents_providers', 'provider_type', '_sys_agents_providers_txt_provider_type', '20%', 1, 16, '', '', 4),
(230, 'sys_studio_agents_providers', 'added', '_sys_agents_providers_txt_added', '20%', 0, 0, '', '', 5),
(231, 'sys_studio_agents_providers', 'actions', '', '20%', 0, 0, '', '', 6),
(232, 'bx_persons_administration', 'checkbox', '_sys_select', '2%', 0, 0, '', '', 1),
(233, 'bx_persons_administration', 'switcher', '_bx_persons_grid_column_title_adm_active', '8%', 0, 0, '', '', 2),
(234, 'bx_persons_administration', 'reports', '_sys_txt_reports_title', '5%', 0, 0, '', '', 3),
(235, 'bx_persons_administration', 'fullname', '_bx_persons_grid_column_title_adm_fullname', '25%', 0, 0, '', '', 4),
(236, 'bx_persons_administration', 'last_online', '_bx_persons_grid_column_title_adm_last_online', '20%', 1, 25, '', '', 5),
(237, 'bx_persons_administration', 'account', '_bx_persons_grid_column_title_adm_account', '20%', 0, 25, '', '', 6),
(238, 'bx_persons_administration', 'actions', '', '20%', 0, 0, '', '', 7),
(239, 'bx_persons_common', 'checkbox', '_sys_select', '2%', 0, 0, '', '', 1),
(240, 'bx_persons_common', 'fullname', '_bx_persons_grid_column_title_adm_fullname', '48%', 0, 0, '', '', 2),
(241, 'bx_persons_common', 'last_online', '_bx_persons_grid_column_title_adm_last_online', '30%', 1, 25, '', '', 3),
(242, 'bx_persons_common', 'actions', '', '20%', 0, 0, '', '', 4);
-- --------------------------------------------------------
--
-- Table structure for table `sys_iframely_data`
--
CREATE TABLE `sys_iframely_data` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`data` text COLLATE utf8mb4_unicode_ci,
`added` int(11) DEFAULT NULL,
`theme` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_images`
--
CREATE TABLE `sys_images` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`profile_id` int(10) unsigned NOT NULL,
`remote_id` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`file_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`mime_type` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`ext` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`size` bigint(20) NOT NULL,
`added` int(11) NOT NULL,
`modified` int(11) NOT NULL,
`private` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `remote_id` (`remote_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_images_custom`
--
CREATE TABLE `sys_images_custom` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`profile_id` int(10) unsigned NOT NULL,
`remote_id` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`file_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`mime_type` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`ext` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`size` bigint(20) NOT NULL,
`added` int(11) NOT NULL,
`modified` int(11) NOT NULL,
`private` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `remote_id` (`remote_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_images_editor`
--
CREATE TABLE `sys_images_editor` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`profile_id` int(10) unsigned NOT NULL,
`remote_id` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`file_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`mime_type` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`ext` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`size` bigint(20) NOT NULL,
`added` int(11) NOT NULL,
`modified` int(11) NOT NULL,
`private` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `remote_id` (`remote_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_images_editor_resized`
--
CREATE TABLE `sys_images_editor_resized` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`profile_id` int(10) unsigned NOT NULL,
`remote_id` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`file_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`mime_type` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`ext` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`size` bigint(20) NOT NULL,
`added` int(11) NOT NULL,
`modified` int(11) NOT NULL,
`private` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `remote_id` (`remote_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_images_resized`
--
CREATE TABLE `sys_images_resized` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`profile_id` int(10) unsigned NOT NULL,
`remote_id` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`file_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`mime_type` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`ext` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`size` bigint(20) NOT NULL,
`added` int(11) NOT NULL,
`modified` int(11) NOT NULL,
`private` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `remote_id` (`remote_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_injections`
--
CREATE TABLE `sys_injections` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`page_index` int(11) NOT NULL DEFAULT '0',
`key` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`type` enum('text','service') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'text',
`data` text COLLATE utf8mb4_unicode_ci NOT NULL,
`replace` tinyint(4) NOT NULL DEFAULT '0',
`active` tinyint(4) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=7 ;
--
-- Dumping data for table `sys_injections`
--
INSERT INTO `sys_injections` VALUES
(1, 'update_cache', 150, 'injection_head', 'service', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:17:"get_cache_updater";s:6:"params";a:0:{}s:5:"class";s:19:"TemplStudioLauncher";}', 0, 1),
(2, 'sys_head', 0, 'injection_head', 'text', '', 0, 1),
(3, 'sys_body_class', 0, 'injection_body_class', 'service', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:13:"get_injection";s:6:"params";a:1:{i:0;s:10:"body_class";}s:5:"class";s:21:"TemplTemplateServices";}', 0, 1),
(4, 'sys_body', 0, 'injection_footer', 'text', '', 0, 1),
(5, 'bx_artificer_head', 0, 'injection_head', 'service', 'a:3:{s:6:"module";s:12:"bx_artificer";s:6:"method";s:14:"include_css_js";s:6:"params";a:1:{i:0;s:4:"head";}}', 0, 1),
(6, 'bx_artificer_footer', 0, 'injection_footer', 'service', 'a:3:{s:6:"module";s:12:"bx_artificer";s:6:"method";s:14:"include_css_js";s:6:"params";a:1:{i:0;s:6:"footer";}}', 0, 1);
-- --------------------------------------------------------
--
-- Table structure for table `sys_injections_admin`
--
CREATE TABLE `sys_injections_admin` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`page_index` int(11) NOT NULL DEFAULT '0',
`key` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`type` enum('text','service') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'text',
`data` text COLLATE utf8mb4_unicode_ci NOT NULL,
`replace` tinyint(4) NOT NULL DEFAULT '0',
`active` tinyint(4) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_keys`
--
CREATE TABLE `sys_keys` (
`key` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`data` text COLLATE utf8mb4_unicode_ci NOT NULL,
`expire` int(11) NOT NULL,
`salt` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `sys_labels`
--
CREATE TABLE `sys_labels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`module` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`parent` int(11) NOT NULL DEFAULT '0',
`level` int(11) NOT NULL DEFAULT '0',
`order` int(11) NOT NULL DEFAULT '0',
`value` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `value` (`value`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sys_localization_categories`
--
CREATE TABLE `sys_localization_categories` (
`ID` int(6) unsigned NOT NULL AUTO_INCREMENT,
`Name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
UNIQUE KEY `Name` (`Name`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=6 ;
--
-- Dumping data for table `sys_localization_categories`
--
INSERT INTO `sys_localization_categories` VALUES
(1, 'System'),
(2, 'Custom'),
(3, 'BoonEx English'),
(4, 'Boonex Artificer Template'),
(5, 'Persons');
-- --------------------------------------------------------
--
-- Table structure for table `sys_localization_keys`
--
CREATE TABLE `sys_localization_keys` (
`ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
`IDCategory` int(6) unsigned NOT NULL DEFAULT '0',
`Key` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
UNIQUE KEY `Key` (`Key`(191)),
FULLTEXT KEY `KeyFilter` (`Key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=4446 ;
--
-- Dumping data for table `sys_localization_keys`
--
INSERT INTO `sys_localization_keys` VALUES
(1, 1, '_ADM_PROFILE_SEND_MSG'),
(2, 1, '_ATT_ACTIVE_E'),
(3, 1, '_ATT_APPROVAL_E'),
(4, 1, '_ATT_REJECTED_E'),
(5, 1, '_ATT_SUSPENDED_E'),
(6, 1, '_ATT_UNCONFIRMED_E'),
(7, 1, '_Access denied'),
(8, 1, '_access_denied_page_title'),
(9, 1, '_access_denied_page_content'),
(10, 1, '_Action'),
(11, 1, '_all'),
(12, 1, '_Allowed Since'),
(13, 1, '_Allowed Until'),
(14, 1, '_Allowed actions'),
(15, 1, '_anonymous'),
(16, 1, '_anonymous_f'),
(17, 1, '_Apply'),
(18, 1, '_apps'),
(19, 1, '_Are_you_sure'),
(20, 1, '_Auth type'),
(21, 1, '_by_author'),
(22, 1, '_Basic'),
(23, 1, '_CONTACT_H'),
(24, 1, '_CONTACT_H1'),
(25, 1, '_Can not delete comments with replies'),
(26, 1, '_Cancel'),
(27, 1, '_Content'),
(28, 1, '_Contents'),
(29, 1, '_Count'),
(30, 1, '_DELETE_SUCCESS'),
(31, 1, '_DELETE_TEXT'),
(32, 1, '_Date'),
(33, 1, '_Delete'),
(34, 1, '_Delete account'),
(35, 1, '_Description'),
(36, 1, '_EXPLANATION_H'),
(37, 1, '_Edit'),
(38, 1, '_Email'),
(39, 1, '_Email sent failed'),
(40, 1, '_Empty'),
(41, 1, '_Enter_value_here'),
(42, 1, '_Error'),
(43, 1, '_Failed'),
(44, 1, '_favorite_counter'),
(45, 1, '_favorite_do_favorite'),
(46, 1, '_favorite_do_unfavorite'),
(47, 1, '_favorite_do_favorite_by'),
(48, 1, '_favorite_err_cannot_perform_action'),
(49, 1, '_favorite_err_duplicate_favorite'),
(50, 1, '_favorite_err_not_enabled'),
(51, 1, '_feature_do_feature'),
(52, 1, '_feature_do_unfeature'),
(53, 1, '_feature_err_cannot_perform_action'),
(54, 1, '_feature_err_duplicate_feature'),
(55, 1, '_feature_err_not_enabled'),
(56, 1, '_Female'),
(57, 1, '_free'),
(58, 1, '_From'),
(59, 1, '_Filters'),
(60, 1, '_Header'),
(61, 1, '_Incorrect Captcha'),
(62, 1, '_Incorrect Email'),
(63, 1, '_Info'),
(64, 1, '_Keyword'),
(65, 1, '_lifetime'),
(66, 1, '_LookinFemale'),
(67, 1, '_LookinMale'),
(68, 1, '_MEMBERSHIP_EXPIRES_IN_DAYS'),
(69, 1, '_MEMBERSHIP_EXPIRES_NEVER'),
(70, 1, '_MEMBERSHIP_EXPIRES_TODAY'),
(71, 1, '_MEMBERSHIP_STANDARD'),
(72, 1, '_MEMBERSHIP_UPGRADE_FROM_STANDARD'),
(73, 1, '_Male'),
(74, 1, '_Manage'),
(75, 1, '_Member'),
(76, 1, '_Member Login'),
(77, 1, '_Message text'),
(78, 1, '_N_point'),
(79, 1, '_N_points'),
(80, 1, '_Name'),
(81, 1, '_Name is required'),
(82, 1, '_never'),
(83, 1, '_No'),
(84, 1, '_None'),
(85, 1, '_No actions allowed for this membership'),
(86, 1, '_No such comment'),
(87, 1, '_Ok'),
(88, 1, '_order_asc'),
(89, 1, '_order_desc'),
(90, 1, '_Period'),
(91, 1, '_Please Wait'),
(92, 1, '_Please enter n1-n2 characters'),
(93, 1, '_Please enter characters'),
(94, 1, '_Please select value'),
(95, 1, '_polls_from'),
(96, 1, '_Preview'),
(97, 1, '_report_comment'),
(98, 1, '_report_comment_with_note'),
(99, 1, '_report_comment_check_in'),
(100, 1, '_report_comment_check_out'),
(101, 1, '_report_status_new'),
(102, 1, '_report_status_check_in'),
(103, 1, '_report_status_check_out'),
(104, 1, '_report_status_all'),
(105, 1, '_report_counter'),
(106, 1, '_report_n_reports'),
(107, 1, '_report_do_report'),
(108, 1, '_report_do_report_with_sample'),
(109, 1, '_report_do_unreport'),
(110, 1, '_report_do_unreport_confirm'),
(111, 1, '_report_do_report_by'),
(112, 1, '_report_err_cannot_perform_action'),
(113, 1, '_report_err_duplicate_report'),
(114, 1, '_report_err_not_enabled'),
(115, 1, '_report_err_wrong_type'),
(116, 1, '_report_reported_as'),
(117, 1, '_report_reported_by'),
(118, 1, '_report_comments_count'),
(119, 1, '_RSS_Feed_Title_Common'),
(120, 1, '_RSS_Feed_Title_Profile'),
(121, 1, '_Rate'),
(122, 1, '_Read'),
(123, 1, '_Read more'),
(124, 1, '_Reset'),
(125, 1, '_Search'),
(126, 1, '_search_in_all_section'),
(127, 1, '_Section'),
(128, 1, '_Select_one'),
(129, 1, '_Select_all'),
(130, 1, '_Show'),
(131, 1, '_Sorry, your IP been banned'),
(132, 1, '_Subject'),
(133, 1, '_Submit'),
(134, 1, '_Success'),
(135, 1, '_Times allowed'),
(136, 1, '_Title'),
(137, 1, '_To'),
(138, 1, '_unlimited'),
(139, 1, '_VIEW_MEMBERSHIP_ACTIONS'),
(140, 1, '_View'),
(141, 1, '_Yes'),
(142, 1, '_Your email'),
(143, 1, '_Your name'),
(144, 1, '__Afghanistan'),
(145, 1, '__Afrikaans'),
(146, 1, '__Aland_Islands'),
(147, 1, '__Albania'),
(148, 1, '__Algeria'),
(149, 1, '__American Samoa'),
(150, 1, '__Andorra'),
(151, 1, '__Angola'),
(152, 1, '__Anguilla'),
(153, 1, '__Antarctica'),
(154, 1, '__Antigua and Barbuda'),
(155, 1, '__Arabic'),
(156, 1, '__Argentina'),
(157, 1, '__Armenia'),
(158, 1, '__Aruba'),
(159, 1, '__Australia'),
(160, 1, '__Austria'),
(161, 1, '__Azerbaijan'),
(162, 1, '__Bahrain'),
(163, 1, '__Bangladesh'),
(164, 1, '__Barbados'),
(165, 1, '__Belarus'),
(166, 1, '__Belgium'),
(167, 1, '__Belize'),
(168, 1, '__Benin'),
(169, 1, '__Bermuda'),
(170, 1, '__Bhutan'),
(171, 1, '__Bolivia'),
(172, 1, '__Bosnia and Herzegovina'),
(173, 1, '__Botswana'),
(174, 1, '__Bouvet Island'),
(175, 1, '__Brazil'),
(176, 1, '__British Indian Ocean Territory'),
(177, 1, '__British Virgin Islands'),
(178, 1, '__Brunei Darussalam'),
(179, 1, '__Bulgaria'),
(180, 1, '__Bulgarian'),
(181, 1, '__Burkina Faso'),
(182, 1, '__Burma'),
(183, 1, '__Burmese'),
(184, 1, '__Burundi'),
(185, 1, '__Cambodia'),
(186, 1, '__Cameroon'),
(187, 1, '__Canada'),
(188, 1, '__Cantonese'),
(189, 1, '__Cape Verde'),
(190, 1, '__Cayman Islands'),
(191, 1, '__Central African Republic'),
(192, 1, '__Chad'),
(193, 1, '__Chile'),
(194, 1, '__China'),
(195, 1, '__Christmas Island'),
(196, 1, '__Cocos (Keeling) Islands'),
(197, 1, '__Colombia'),
(198, 1, '__Comoros'),
(199, 1, '__Congo, Democratic Republic of the'),
(200, 1, '__Congo, Republic of the'),
(201, 1, '__Cook Islands'),
(202, 1, '__Costa Rica'),
(203, 1, '__Cote d''Ivoire'),
(204, 1, '__Croatia'),
(205, 1, '__Croatian'),
(206, 1, '__Cuba'),
(207, 1, '__Cyprus'),
(208, 1, '__Czech Republic'),
(209, 1, '__Danish'),
(210, 1, '__Denmark'),
(211, 1, '__Djibouti'),
(212, 1, '__Dominica'),
(213, 1, '__Dominican Republic'),
(214, 1, '__Dutch'),
(215, 1, '__East Timor'),
(216, 1, '__Ecuador'),
(217, 1, '__Egypt'),
(218, 1, '__El Salvador'),
(219, 1, '__English'),
(220, 1, '__Equatorial Guinea'),
(221, 1, '__Eritrea'),
(222, 1, '__Esperanto'),
(223, 1, '__Estonia'),
(224, 1, '__Estonian'),
(225, 1, '__Ethiopia'),
(226, 1, '__Falkland Islands (Islas Malvinas)'),
(227, 1, '__Faroe Islands'),
(228, 1, '__Fiji'),
(229, 1, '__Finland'),
(230, 1, '__Finnish'),
(231, 1, '__France'),
(232, 1, '__French'),
(233, 1, '__French Guiana'),
(234, 1, '__French Polynesia'),
(235, 1, '__French Southern and Antarctic Lands'),
(236, 1, '__Gabon'),
(237, 1, '__Georgia'),
(238, 1, '__German'),
(239, 1, '__Germany'),
(240, 1, '__Ghana'),
(241, 1, '__Gibraltar'),
(242, 1, '__Greece'),
(243, 1, '__Greek'),
(244, 1, '__Greenland'),
(245, 1, '__Grenada'),
(246, 1, '__Guadeloupe'),
(247, 1, '__Guam'),
(248, 1, '__Guatemala'),
(249, 1, '__Guernsey'),
(250, 1, '__Guinea'),
(251, 1, '__Guinea-Bissau'),
(252, 1, '__Gujrati'),
(253, 1, '__Guyana'),
(254, 1, '__Haiti'),
(255, 1, '__Heard Island and McDonald Islands'),
(256, 1, '__Hebrew'),
(257, 1, '__Hindi'),
(258, 1, '__Holy See (Vatican City)'),
(259, 1, '__Honduras'),
(260, 1, '__Hong Kong (SAR)'),
(261, 1, '__Hungarian'),
(262, 1, '__Hungary'),
(263, 1, '__Iceland'),
(264, 1, '__Icelandic'),
(265, 1, '__India'),
(266, 1, '__Indonesia'),
(267, 1, '__Indonesian'),
(268, 1, '__Iran'),
(269, 1, '__Iraq'),
(270, 1, '__Ireland'),
(271, 1, '__Isle_of_Man'),
(272, 1, '__Israel'),
(273, 1, '__Italian'),
(274, 1, '__Italy'),
(275, 1, '__Jamaica'),
(276, 1, '__Japan'),
(277, 1, '__Japanese'),
(278, 1, '__Jersey'),
(279, 1, '__Jordan'),
(280, 1, '__Kazakhstan'),
(281, 1, '__Kenya'),
(282, 1, '__Kiribati'),
(283, 1, '__Korea, North'),
(284, 1, '__Korea, South'),
(285, 1, '__Korean'),
(286, 1, '__Kuwait'),
(287, 1, '__Kyrgyzstan'),
(288, 1, '__Laos'),
(289, 1, '__Latvia'),
(290, 1, '__Latvian'),
(291, 1, '__Lebanon'),
(292, 1, '__Lesotho'),
(293, 1, '__Liberia'),
(294, 1, '__Libya'),
(295, 1, '__Liechtenstein'),
(296, 1, '__Lithuania'),
(297, 1, '__Lithuanian'),
(298, 1, '__Luxembourg'),
(299, 1, '__Macao'),
(300, 1, '__Macedonia, The Former Yugoslav Republic of'),
(301, 1, '__Madagascar'),
(302, 1, '__Malawi'),
(303, 1, '__Malay'),
(304, 1, '__Malaysia'),
(305, 1, '__Maldives'),
(306, 1, '__Mali'),
(307, 1, '__Malta'),
(308, 1, '__Mandarin'),
(309, 1, '__Marathi'),
(310, 1, '__Marshall Islands'),
(311, 1, '__Martinique'),
(312, 1, '__Mauritania'),
(313, 1, '__Mauritius'),
(314, 1, '__Mayotte'),
(315, 1, '__Mexico'),
(316, 1, '__Micronesia, Federated States of'),
(317, 1, '__Moldova'),
(318, 1, '__Moldovian'),
(319, 1, '__Monaco'),
(320, 1, '__Mongolia'),
(321, 1, '__Montenegro'),
(322, 1, '__Montserrat'),
(323, 1, '__Morocco'),
(324, 1, '__Mozambique'),
(325, 1, '__Namibia'),
(326, 1, '__Nauru'),
(327, 1, '__Nepal'),
(328, 1, '__Nepalese'),
(329, 1, '__Netherlands'),
(330, 1, '__Netherlands Antilles'),
(331, 1, '__New Caledonia'),
(332, 1, '__New Zealand'),
(333, 1, '__Nicaragua'),
(334, 1, '__Niger'),
(335, 1, '__Nigeria'),
(336, 1, '__Niue'),
(337, 1, '__Norfolk Island'),
(338, 1, '__Northern Mariana Islands'),
(339, 1, '__Norway'),
(340, 1, '__Norwegian'),
(341, 1, '__Oman'),
(342, 1, '__Pakistan'),
(343, 1, '__Palau'),
(344, 1, '__Palestinian Territory, Occupied'),
(345, 1, '__Panama'),
(346, 1, '__Papua New Guinea'),
(347, 1, '__Paraguay'),
(348, 1, '__Persian'),
(349, 1, '__Peru'),
(350, 1, '__Philippines'),
(351, 1, '__Pitcairn Islands'),
(352, 1, '__Poland'),
(353, 1, '__Polish'),
(354, 1, '__Portugal'),
(355, 1, '__Portuguese'),
(356, 1, '__Puerto Rico'),
(357, 1, '__Punjabi'),
(358, 1, '__Qatar'),
(359, 1, '__Reunion'),
(360, 1, '__Romania'),
(361, 1, '__Romanian'),
(362, 1, '__Russia'),
(363, 1, '__Russian'),
(364, 1, '__Rwanda'),
(365, 1, '__Saint Helena'),
(366, 1, '__Saint Kitts and Nevis'),
(367, 1, '__Saint Lucia'),
(368, 1, '__Saint Pierre and Miquelon'),
(369, 1, '__Saint Vincent and the Grenadines'),
(370, 1, '__Saint_Barthelemy'),
(371, 1, '__Saint_Martin_French_part'),
(372, 1, '__Samoa'),
(373, 1, '__San Marino'),
(374, 1, '__Sao Tome and Principe'),
(375, 1, '__Saudi Arabia'),
(376, 1, '__Senegal'),
(377, 1, '__Serbia'),
(378, 1, '__Serbian'),
(379, 1, '__Seychelles'),
(380, 1, '__Sierra Leone'),
(381, 1, '__Singapore'),
(382, 1, '__Slovakia'),
(383, 1, '__Slovenia'),
(384, 1, '__Solomon Islands'),
(385, 1, '__Somalia'),
(386, 1, '__South Africa'),
(387, 1, '__South Georgia and the South Sandwich Islands'),
(388, 1, '__Spain'),
(389, 1, '__Spanish'),
(390, 1, '__Sri Lanka'),
(391, 1, '__Sudan'),
(392, 1, '__Suriname'),
(393, 1, '__Svalbard'),
(394, 1, '__Swaziland'),
(395, 1, '__Sweden'),
(396, 1, '__Swedish'),
(397, 1, '__Switzerland'),
(398, 1, '__Syria'),
(399, 1, '__Tagalog'),
(400, 1, '__Taiwan'),
(401, 1, '__Taiwanese'),
(402, 1, '__Tajikistan'),
(403, 1, '__Tamil'),
(404, 1, '__Tanzania'),
(405, 1, '__Telugu'),
(406, 1, '__Thai'),
(407, 1, '__Thailand'),
(408, 1, '__The Bahamas'),
(409, 1, '__The Gambia'),
(410, 1, '__Togo'),
(411, 1, '__Tokelau'),
(412, 1, '__Tonga'),
(413, 1, '__Tongan'),
(414, 1, '__Trinidad and Tobago'),
(415, 1, '__Tunisia'),
(416, 1, '__Turkey'),
(417, 1, '__Turkish'),
(418, 1, '__Turkmenistan'),
(419, 1, '__Turks and Caicos Islands'),
(420, 1, '__Tuvalu'),
(421, 1, '__Uganda'),
(422, 1, '__Ukraine'),
(423, 1, '__Ukrainian'),
(424, 1, '__United Arab Emirates'),
(425, 1, '__United Kingdom'),
(426, 1, '__United States'),
(427, 1, '__United States Minor Outlying Islands'),
(428, 1, '__Urdu'),
(429, 1, '__Uruguay'),
(430, 1, '__Uzbekistan'),
(431, 1, '__Vanuatu'),
(432, 1, '__Venezuela'),
(433, 1, '__Vietnam'),
(434, 1, '__Vietnamese'),
(435, 1, '__Virgin Islands'),
(436, 1, '__Visayan'),
(437, 1, '__Wallis and Futuna'),
(438, 1, '__Western Sahara'),
(439, 1, '__Yemen'),
(440, 1, '__Zambia'),
(441, 1, '__Zimbabwe'),
(442, 1, '__AUD'),
(443, 1, '__CAD'),
(444, 1, '__EUR'),
(445, 1, '__GBP'),
(446, 1, '__USD'),
(447, 1, '__YEN'),
(448, 1, '_adm_act_err_failed_page_loading'),
(449, 1, '_adm_action_cpt_checkout'),
(450, 1, '_adm_action_cpt_delete_all'),
(451, 1, '_adm_action_cpt_see_all'),
(452, 1, '_adm_admtools_Audit'),
(453, 1, '_adm_admtools_Current_level'),
(454, 1, '_adm_admtools_Desired_level'),
(455, 1, '_adm_admtools_Executable'),
(456, 1, '_adm_admtools_Non_Executable'),
(457, 1, '_adm_admtools_Non_Writable'),
(458, 1, '_adm_admtools_Not_Exists'),
(459, 1, '_adm_admtools_Path'),
(460, 1, '_adm_admtools_Permissions'),
(461, 1, '_adm_admtools_Writable'),
(462, 1, '_adm_admtools_title'),
(463, 1, '_adm_block_cpt_categories'),
(464, 1, '_adm_block_cpt_category'),
(465, 1, '_adm_block_cpt_checkout'),
(466, 1, '_adm_block_cpt_checkout_by_vendor_ccode'),
(467, 1, '_adm_block_cpt_checkout_by_vendor_csign'),
(468, 1, '_adm_block_cpt_downloaded_modules'),
(469, 1, '_adm_block_cpt_downloaded_updates'),
(470, 1, '_adm_block_cpt_featured'),
(471, 1, '_adm_block_cpt_goodies'),
(472, 1, '_adm_block_cpt_latest'),
(473, 1, '_adm_block_cpt_modules_upload'),
(474, 1, '_adm_block_cpt_popular'),
(475, 1, '_adm_block_cpt_purchases'),
(476, 1, '_adm_block_cpt_search'),
(477, 1, '_adm_block_cpt_space'),
(478, 1, '_adm_block_cpt_tag'),
(479, 1, '_adm_block_cpt_tags'),
(480, 1, '_adm_block_cpt_updates'),
(481, 1, '_adm_block_cpt_versions'),
(482, 1, '_adm_bp_btn_add_block'),
(483, 1, '_adm_bp_btn_block_add'),
(484, 1, '_adm_bp_btn_block_cancel'),
(485, 1, '_adm_bp_btn_block_delete'),
(486, 1, '_adm_bp_btn_block_save'),
(487, 1, '_adm_bp_btn_create_new'),
(488, 1, '_adm_bp_btn_delete'),
(489, 1, '_adm_bp_btn_page_apply'),
(490, 1, '_adm_bp_btn_page_cancel'),
(491, 1, '_adm_bp_btn_page_create'),
(492, 1, '_adm_bp_btn_settings'),
(493, 1, '_adm_bp_btn_view_page'),
(494, 1, '_adm_bp_cpt_type_custom'),
(495, 1, '_adm_bp_cpt_type_modules'),
(496, 1, '_adm_bp_cpt_type_system'),
(497, 1, '_adm_bp_dsc_block_content_image_file'),
(498, 1, '_adm_bp_dsc_block_content_lang'),
(499, 1, '_adm_bp_dsc_block_content_raw'),
(500, 1, '_adm_bp_dsc_block_content_rss_length'),
(501, 1, '_adm_bp_dsc_block_content_rss_url'),
(502, 1, '_adm_bp_dsc_block_content_empty'),
(503, 1, '_adm_bp_dsc_block_title'),
(504, 1, '_adm_bp_dsc_block_visible_for_levels'),
(505, 1, '_adm_bp_dsc_page_cache_lifetime'),
(506, 1, '_adm_bp_dsc_page_inj_footer'),
(507, 1, '_adm_bp_dsc_page_inj_head'),
(508, 1, '_adm_bp_dsc_page_meta_description'),
(509, 1, '_adm_bp_dsc_page_meta_keywords'),
(510, 1, '_adm_bp_dsc_page_meta_robots'),
(511, 1, '_adm_bp_dsc_page_title'),
(512, 1, '_adm_bp_dsc_page_title_system'),
(513, 1, '_adm_bp_dsc_page_uri'),
(514, 1, '_adm_bp_dsc_page_url'),
(515, 1, '_adm_bp_dsc_page_visible_for_levels'),
(516, 1, '_adm_bp_err_block_added'),
(517, 1, '_adm_bp_err_block_delete'),
(518, 1, '_adm_bp_err_block_designbox'),
(519, 1, '_adm_bp_err_block_edit'),
(520, 1, '_adm_bp_err_block_not_deletable'),
(521, 1, '_adm_bp_err_block_not_found'),
(522, 1, '_adm_bp_err_block_title'),
(523, 1, '_adm_bp_err_cannot_process_action'),
(524, 1, '_adm_bp_err_nothing_changed'),
(525, 1, '_adm_bp_err_page_create'),
(526, 1, '_adm_bp_err_page_delete'),
(527, 1, '_adm_bp_err_page_layout'),
(528, 1, '_adm_bp_err_page_title'),
(529, 1, '_adm_bp_err_page_title_system'),
(530, 1, '_adm_bp_err_page_uri'),
(531, 1, '_adm_bp_err_page_visible_for_levels'),
(532, 1, '_adm_bp_err_save'),
(533, 1, '_adm_bp_mi_page_cache'),
(534, 1, '_adm_bp_mi_page_cover'),
(535, 1, '_adm_bp_mi_page_injections'),
(536, 1, '_adm_bp_mi_page_layout'),
(537, 1, '_adm_bp_mi_page_options'),
(538, 1, '_adm_bp_mi_page_seo'),
(539, 1, '_adm_bp_mi_page_visibility'),
(540, 1, '_adm_bp_scs_save'),
(541, 1, '_adm_bp_txt_block_active'),
(542, 1, '_adm_bp_txt_block_active_api'),
(543, 1, '_adm_bp_txt_block_async'),
(544, 1, '_adm_bp_txt_block_cache_lifetime'),
(545, 1, '_adm_bp_txt_block_content_attachments_html'),
(546, 1, '_adm_bp_txt_block_content_image_align'),
(547, 1, '_adm_bp_txt_block_content_image_align_center'),
(548, 1, '_adm_bp_txt_block_content_image_align_empty'),
(549, 1, '_adm_bp_txt_block_content_image_align_left'),
(550, 1, '_adm_bp_txt_block_content_image_align_right'),
(551, 1, '_adm_bp_txt_block_content_image_file'),
(552, 1, '_adm_bp_txt_block_content_lang'),
(553, 1, '_adm_bp_txt_block_content_menu'),
(554, 1, '_adm_bp_txt_block_content_menu_empty'),
(555, 1, '_adm_bp_txt_block_content_raw'),
(556, 1, '_adm_bp_txt_block_content_rss_length'),
(557, 1, '_adm_bp_txt_block_content_rss_url'),
(558, 1, '_adm_bp_txt_block_content_service_method'),
(559, 1, '_adm_bp_txt_block_content_service_module'),
(560, 1, '_adm_bp_txt_block_content_empty'),
(561, 1, '_adm_bp_txt_block_designbox'),
(562, 1, '_adm_bp_txt_block_designbox_empty'),
(563, 1, '_adm_bp_txt_block_class'),
(564, 1, '_adm_bp_txt_block_help'),
(565, 1, '_adm_bp_txt_block_hidden_on'),
(566, 1, '_adm_bp_txt_block_hidden_on_phone'),
(567, 1, '_adm_bp_txt_block_hidden_on_tablet'),
(568, 1, '_adm_bp_txt_block_hidden_on_desktop'),
(569, 1, '_adm_bp_txt_block_hidden_on_mobile'),
(570, 1, '_adm_bp_txt_block_selected'),
(571, 1, '_adm_bp_txt_block_submenu'),
(572, 1, '_adm_bp_txt_block_tabs'),
(573, 1, '_adm_bp_txt_block_title'),
(574, 1, '_adm_bp_txt_block_visible_for'),
(575, 1, '_adm_bp_txt_block_visible_for_all'),
(576, 1, '_adm_bp_txt_block_visible_for_levels'),
(577, 1, '_adm_bp_txt_block_visible_for_selected'),
(578, 1, '_adm_bp_txt_create_popup'),
(579, 1, '_adm_bp_txt_edit_block_popup'),
(580, 1, '_adm_bp_txt_new_block_popup'),
(581, 1, '_adm_bp_txt_page_cache_lifetime'),
(582, 1, '_adm_bp_txt_page_cover'),
(583, 1, '_adm_bp_txt_page_cover_image'),
(584, 1, '_adm_bp_txt_page_cover_title'),
(585, 1, '_adm_bp_txt_page_cover_0'),
(586, 1, '_adm_bp_txt_page_cover_1'),
(587, 1, '_adm_bp_txt_page_cover_2'),
(588, 1, '_adm_bp_txt_page_cover_3'),
(589, 1, '_adm_bp_txt_page_inj_footer'),
(590, 1, '_adm_bp_txt_page_inj_head'),
(591, 1, '_adm_bp_txt_page_layout'),
(592, 1, '_adm_bp_txt_page_layout_empty'),
(593, 1, '_adm_bp_txt_page_meta_description'),
(594, 1, '_adm_bp_txt_page_meta_keywords'),
(595, 1, '_adm_bp_txt_page_meta_title'),
(596, 1, '_adm_bp_txt_page_meta_robots'),
(597, 1, '_adm_bp_txt_page_submenu'),
(598, 1, '_adm_bp_dsc_page_submenu'),
(599, 1, '_adm_bp_txt_page_title'),
(600, 1, '_adm_bp_txt_page_title_system'),
(601, 1, '_adm_bp_txt_page_type_id'),
(602, 1, '_adm_bp_dsc_page_type_id'),
(603, 1, '_adm_bp_txt_page_uri'),
(604, 1, '_adm_bp_txt_page_url'),
(605, 1, '_adm_bp_txt_page_visible_for_levels'),
(606, 1, '_adm_bp_txt_page_sticky_columns'),
(607, 1, '_adm_bp_txt_select_page'),
(608, 1, '_adm_bp_txt_settings_popup'),
(609, 1, '_adm_bp_txt_visible_for'),
(610, 1, '_adm_bp_wrn_page_delete'),
(611, 1, '_adm_bp_wrn_page_block_delete'),
(612, 1, '_adm_bp_txt_inactive_blocks'),
(613, 1, '_adm_btn_cancel_submit'),
(614, 1, '_adm_btn_checkout_submit'),
(615, 1, '_adm_btn_delete_submit'),
(616, 1, '_adm_btn_designer_submit'),
(617, 1, '_adm_btn_download_submit'),
(618, 1, '_adm_btn_install_submit'),
(619, 1, '_adm_btn_installed_submit'),
(620, 1, '_adm_btn_login_submit'),
(621, 1, '_adm_btn_queued_submit'),
(622, 1, '_adm_btn_settings_export'),
(623, 1, '_adm_btn_settings_import'),
(624, 1, '_adm_btn_settings_save'),
(625, 1, '_adm_btn_settings_mix_create'),
(626, 1, '_adm_btn_settings_mix_import'),
(627, 1, '_adm_btn_settings_mix_export'),
(628, 1, '_adm_btn_settings_mix_delete'),
(629, 1, '_adm_btn_settings_mix_hide'),
(630, 1, '_adm_btn_settings_mix_publish'),
(631, 1, '_adm_btn_store_search'),
(632, 1, '_adm_dbd_btn_update'),
(633, 1, '_adm_dbd_txt_available'),
(634, 1, '_adm_dbd_txt_installed'),
(635, 1, '_adm_dbd_txt_updated'),
(636, 1, '_adm_dbd_msg_upgrade_started'),
(637, 1, '_adm_dbd_txt_su_database'),
(638, 1, '_adm_dbd_txt_su_system'),
(639, 1, '_adm_dbd_txt_su_system_media'),
(640, 1, '_adm_dbd_txt_c_select'),
(641, 1, '_adm_dbd_txt_c_clear_all'),
(642, 1, '_adm_dbd_txt_c_db'),
(643, 1, '_adm_dbd_txt_c_clear_db'),
(644, 1, '_adm_dbd_txt_c_template'),
(645, 1, '_adm_dbd_txt_c_clear_template'),
(646, 1, '_adm_dbd_txt_c_css'),
(647, 1, '_adm_dbd_txt_c_clear_css'),
(648, 1, '_adm_dbd_txt_c_less'),
(649, 1, '_adm_dbd_txt_c_clear_less'),
(650, 1, '_adm_dbd_txt_c_clear_purifier'),
(651, 1, '_adm_dbd_txt_c_js'),
(652, 1, '_adm_dbd_txt_c_clear_js'),
(653, 1, '_adm_dbd_txt_c_clear_custom'),
(654, 1, '_adm_dbd_txt_c_opcache'),
(655, 1, '_adm_dbd_txt_c_clear_opcache'),
(656, 1, '_adm_dbd_err_c_clean_failed'),
(657, 1, '_adm_dbd_err_c_clean_unsupported'),
(658, 1, '_adm_dbd_msg_c_clean_success'),
(659, 1, '_adm_dbd_msg_c_all_disabled'),
(660, 1, '_adm_dsn_cnf_uninstall'),
(661, 1, '_adm_dsg_btn_delete'),
(662, 1, '_adm_dsg_btn_make_default'),
(663, 1, '_adm_dsg_dsc_alt_text'),
(664, 1, '_adm_dsg_dsc_splash_warning'),
(665, 1, '_adm_dsg_err_cannot_process_action'),
(666, 1, '_adm_dsg_err_deactivate_default'),
(667, 1, '_adm_dsg_err_last_active'),
(668, 1, '_adm_dsg_err_make_default'),
(669, 1, '_adm_dsg_err_remove_old_cover'),
(670, 1, '_adm_dsg_err_remove_old_icon'),
(671, 1, '_adm_dsg_err_save'),
(672, 1, '_adm_dsg_err_save_changes'),
(673, 1, '_adm_dsg_scs_save'),
(674, 1, '_adm_dsg_txt_logo_redefinition'),
(675, 1, '_adm_dsg_txt_alt_text'),
(676, 1, '_adm_dsg_txt_cover_common'),
(677, 1, '_adm_dsg_txt_cover_unit_profile'),
(678, 1, '_adm_dsg_txt_cover_disabled'),
(679, 1, '_adm_dsg_txt_splash_enabled'),
(680, 1, '_adm_dsg_txt_default'),
(681, 1, '_adm_dsg_txt_icon'),
(682, 1, '_adm_dsg_txt_icon_svg'),
(683, 1, '_adm_dsg_txt_icon_apple'),
(684, 1, '_adm_dsg_txt_icon_android'),
(685, 1, '_adm_dsg_txt_icon_android_splash'),
(686, 1, '_adm_dsg_txt_upload_cover_common'),
(687, 1, '_adm_dsg_txt_upload_cover_unit_profile'),
(688, 1, '_adm_dsg_txt_upload_icon'),
(689, 1, '_adm_dsg_txt_upload_icon_inf'),
(690, 1, '_adm_dsg_txt_upload_icon_svg'),
(691, 1, '_adm_dsg_txt_upload_icon_svg_inf'),
(692, 1, '_adm_dsg_txt_upload_icon_apple'),
(693, 1, '_adm_dsg_txt_upload_icon_apple_inf'),
(694, 1, '_adm_dsg_txt_upload_icon_android'),
(695, 1, '_adm_dsg_txt_upload_icon_android_inf'),
(696, 1, '_adm_dsg_txt_upload_icon_android_splash'),
(697, 1, '_adm_dsg_txt_upload_icon_android_splash_inf'),
(698, 1, '_adm_dsg_txt_upload_logo'),
(699, 1, '_adm_dsg_txt_upload_logo_dark'),
(700, 1, '_adm_dsg_txt_upload_logo_inline'),
(701, 1, '_adm_dsg_txt_upload_mark'),
(702, 1, '_adm_dsg_txt_upload_mark_dark'),
(703, 1, '_adm_dsg_txt_upload_mark_inline'),
(704, 1, '_adm_dsg_txt_inj_head'),
(705, 1, '_adm_dsg_txt_inj_head_inf'),
(706, 1, '_adm_dsg_txt_inj_body'),
(707, 1, '_adm_dsg_txt_inj_body_inf'),
(708, 1, '_adm_err_cannot_process_action'),
(709, 1, '_adm_err_modules_already_disabled'),
(710, 1, '_adm_err_modules_already_enabled'),
(711, 1, '_adm_err_modules_already_installed'),
(712, 1, '_adm_err_modules_already_uninstalled'),
(713, 1, '_adm_err_modules_cannot_add_to_cart'),
(714, 1, '_adm_err_modules_cannot_checkout_empty_vendor'),
(715, 1, '_adm_err_modules_cannot_delete_from_cart'),
(716, 1, '_adm_err_modules_cannot_remove_package'),
(717, 1, '_adm_err_modules_cannot_subscribe'),
(718, 1, '_adm_err_modules_module_not_found'),
(719, 1, '_adm_err_modules_module_not_match'),
(720, 1, '_adm_err_modules_module_not_installed'),
(721, 1, '_adm_err_modules_module_was_modified'),
(722, 1, '_adm_err_modules_pending_uninstall'),
(723, 1, '_adm_err_modules_pending_uninstall_already'),
(724, 1, '_adm_err_modules_process_action_failed'),
(725, 1, '_adm_err_modules_wrong_dependency_disable'),
(726, 1, '_adm_err_modules_wrong_dependency_install'),
(727, 1, '_adm_err_modules_wrong_dependency_uninstall'),
(728, 1, '_adm_err_modules_wrong_mysql_query'),
(729, 1, '_adm_err_modules_wrong_mysql_query_msg'),
(730, 1, '_adm_err_modules_wrong_permissions_change'),
(731, 1, '_adm_err_modules_wrong_permissions_check'),
(732, 1, '_adm_err_modules_wrong_permissions_msg'),
(733, 1, '_adm_err_modules_wrong_version'),
(734, 1, '_adm_err_modules_wrong_version_script'),
(735, 1, '_adm_err_modules_wrong_version_script_update'),
(736, 1, '_adm_err_oauth_cannot_get_token'),
(737, 1, '_adm_err_oauth_cannot_read_answer'),
(738, 1, '_adm_err_oauth_empty_key_secret'),
(739, 1, '_adm_err_operation_failed'),
(740, 1, '_adm_form_btn_displays_cancel'),
(741, 1, '_adm_form_btn_displays_edit'),
(742, 1, '_adm_form_btn_displays_save'),
(743, 1, '_adm_form_btn_field_add'),
(744, 1, '_adm_form_btn_field_cancel'),
(745, 1, '_adm_form_btn_field_delete'),
(746, 1, '_adm_form_btn_field_edit'),
(747, 1, '_adm_form_btn_field_save'),
(748, 1, '_adm_form_btn_fields_create'),
(749, 1, '_adm_form_btn_fields_visible'),
(750, 1, '_adm_form_btn_forms_cancel'),
(751, 1, '_adm_form_btn_forms_edit'),
(752, 1, '_adm_form_btn_forms_save'),
(753, 1, '_adm_form_btn_categories_cancel'),
(754, 1, '_adm_form_btn_categories_submit'),
(755, 1, '_adm_form_btn_labels_add'),
(756, 1, '_adm_form_btn_labels_back'),
(757, 1, '_adm_form_btn_labels_cancel'),
(758, 1, '_adm_form_btn_labels_submit'),
(759, 1, '_adm_form_btn_badges_add'),
(760, 1, '_adm_form_btn_badges_delete'),
(761, 1, '_adm_form_btn_categories_add'),
(762, 1, '_adm_form_btn_categories_delete'),
(763, 1, '_adm_form_btn_pre_lists_add'),
(764, 1, '_adm_form_btn_pre_lists_cancel'),
(765, 1, '_adm_form_btn_pre_lists_create'),
(766, 1, '_adm_form_btn_pre_lists_delete'),
(767, 1, '_adm_form_btn_pre_lists_edit'),
(768, 1, '_adm_form_btn_pre_lists_save'),
(769, 1, '_adm_form_btn_pre_values_add'),
(770, 1, '_adm_form_btn_pre_values_cancel'),
(771, 1, '_adm_form_btn_pre_values_delete'),
(772, 1, '_adm_form_btn_pre_values_create'),
(773, 1, '_adm_form_btn_pre_values_delete_item'),
(774, 1, '_adm_form_btn_pre_values_edit_item'),
(775, 1, '_adm_form_btn_reports_check_in'),
(776, 1, '_adm_form_btn_reports_check_out'),
(777, 1, '_adm_form_btn_reports_audit'),
(778, 1, '_adm_form_btn_reports_hide'),
(779, 1, '_adm_form_btn_reports_unhide'),
(780, 1, '_adm_form_btn_search_forms_edit'),
(781, 1, '_adm_form_btn_search_forms_fields_edit'),
(782, 1, '_adm_form_btn_search_forms_fields_reset'),
(783, 1, '_adm_form_btn_search_forms_sortable_fields_reset'),
(784, 1, '_adm_form_btn_search_forms_save'),
(785, 1, '_adm_form_btn_search_forms_cancel'),
(786, 1, '_adm_form_dsc_displays_title'),
(787, 1, '_adm_form_dsc_field_attrs_max'),
(788, 1, '_adm_form_dsc_field_attrs_min'),
(789, 1, '_adm_form_dsc_field_attrs_src'),
(790, 1, '_adm_form_dsc_field_attrs_step'),
(791, 1, '_adm_form_dsc_field_caption'),
(792, 1, '_adm_form_dsc_field_caption_block_header'),
(793, 1, '_adm_form_dsc_field_caption_system'),
(794, 1, '_adm_form_dsc_field_checker_error_captcha'),
(795, 1, '_adm_form_dsc_field_checker_params_preg'),
(796, 1, '_adm_form_dsc_field_collapsed'),
(797, 1, '_adm_form_dsc_field_html'),
(798, 1, '_adm_form_dsc_field_icon'),
(799, 1, '_adm_form_dsc_field_info'),
(800, 1, '_adm_form_dsc_field_help'),
(801, 1, '_adm_form_dsc_field_privacy'),
(802, 1, '_adm_form_dsc_field_rateable'),
(803, 1, '_adm_form_dsc_field_required'),
(804, 1, '_adm_form_dsc_field_unique'),
(805, 1, '_adm_form_dsc_field_value_button'),
(806, 1, '_adm_form_dsc_field_value_checkbox'),
(807, 1, '_adm_form_dsc_field_value_reset'),
(808, 1, '_adm_form_dsc_field_value_submit'),
(809, 1, '_adm_form_dsc_field_visible_for_levels'),
(810, 1, '_adm_form_dsc_field_db_pass'),
(811, 1, '_adm_form_dsc_forms_title'),
(812, 1, '_adm_form_dsc_pre_lists_title'),
(813, 1, '_adm_form_dsc_pre_values_empty'),
(814, 1, '_adm_form_dsc_pre_values_lkey'),
(815, 1, '_adm_form_dsc_search_forms_fields_search_type'),
(816, 1, '_adm_form_dsc_search_forms_title'),
(817, 1, '_adm_form_err_cannot_process_action'),
(818, 1, '_adm_form_err_displays_edit'),
(819, 1, '_adm_form_err_displays_title'),
(820, 1, '_adm_form_err_field_add'),
(821, 1, '_adm_form_err_field_add_already_exists'),
(822, 1, '_adm_form_err_field_add_not_allowed'),
(823, 1, '_adm_form_err_field_select_nested_form'),
(824, 1, '_adm_form_err_field_caption'),
(825, 1, '_adm_form_err_field_caption_system'),
(826, 1, '_adm_form_err_field_checker_error'),
(827, 1, '_adm_form_err_field_checker_func'),
(828, 1, '_adm_form_err_field_checker_params_length_max'),
(829, 1, '_adm_form_err_field_checker_params_length_min'),
(830, 1, '_adm_form_err_field_checker_params_preg'),
(831, 1, '_adm_form_err_field_edit'),
(832, 1, '_adm_form_err_field_show_to'),
(833, 1, '_adm_form_err_field_value_doublerange'),
(834, 1, '_adm_form_err_field_value_number'),
(835, 1, '_adm_form_err_field_values'),
(836, 1, '_adm_form_err_forms_edit'),
(837, 1, '_adm_form_err_forms_title'),
(838, 1, '_adm_form_err_labels_add'),
(839, 1, '_adm_form_err_labels_edit'),
(840, 1, '_adm_form_err_labels_value'),
(841, 1, '_adm_form_err_missing_params'),
(842, 1, '_adm_form_err_pre_lists_create'),
(843, 1, '_adm_form_err_pre_lists_edit'),
(844, 1, '_adm_form_err_pre_lists_title'),
(845, 1, '_adm_form_err_pre_values_create'),
(846, 1, '_adm_form_err_pre_values_create_forbidden'),
(847, 1, '_adm_form_err_pre_values_delete'),
(848, 1, '_adm_form_err_pre_values_edit'),
(849, 1, '_adm_form_err_pre_values_lkey'),
(850, 1, '_adm_form_err_search_forms_essential'),
(851, 1, '_adm_form_err_search_forms_fields_edit'),
(852, 1, '_adm_from_err_search_forms_fields_reset'),
(853, 1, '_adm_from_err_search_forms_sortable_fields_reset'),
(854, 1, '_adm_form_err_search_forms_edit'),
(855, 1, '_adm_form_err_search_forms_title'),
(856, 1, '_adm_form_txt_all_modules'),
(857, 1, '_adm_form_txt_confirm_delete'),
(858, 1, '_adm_form_txt_audit_added'),
(859, 1, '_adm_form_txt_audit_profile'),
(860, 1, '_adm_form_txt_audit_content'),
(861, 1, '_adm_form_txt_audit_module'),
(862, 1, '_adm_form_txt_audit_author_content'),
(863, 1, '_adm_pgt_txt_audit_context'),
(864, 1, '_adm_pgt_txt_audit_action'),
(865, 1, '_adm_form_txt_badges_text'),
(866, 1, '_adm_form_txt_badges_view'),
(867, 1, '_adm_form_txt_badges_fontcolor'),
(868, 1, '_adm_form_txt_badges_color'),
(869, 1, '_adm_form_dsc_badges_color'),
(870, 1, '_adm_form_txt_badges_is_icon_only'),
(871, 1, '_adm_form_txt_badges_btn_current_icon_image_delete'),
(872, 1, '_adm_form_txt_badges_icon'),
(873, 1, '_adm_form_txt_badges_icon_image'),
(874, 1, '_adm_form_txt_badges_icon_image_new'),
(875, 1, '_adm_form_txt_badges_icon_image_old'),
(876, 1, '_adm_form_dsc_badges_icon'),
(877, 1, '_adm_form_dsc_badges_items_icon_image_current'),
(878, 1, '_adm_form_dsc_badges_icon_image'),
(879, 1, '_adm_form_dsc_badges_icon_image_current'),
(880, 1, '_adm_form_err_badges_icon'),
(881, 1, '_adm_form_err_badges_icon_image'),
(882, 1, '_adm_form_err_badges_icon_image_remove'),
(883, 1, '_adm_form_btn_badges_submit'),
(884, 1, '_adm_form_btn_badges_cancel'),
(885, 1, '_adm_form_txt_badges_added'),
(886, 1, '_adm_form_txt_badges_module'),
(887, 1, '_adm_form_txt_badges_add_popup'),
(888, 1, '_adm_form_txt_badges_edit_popup'),
(889, 1, '_adm_pgt_txt_badges_text'),
(890, 1, '_adm_pgt_txt_badges_icon'),
(891, 1, '_adm_form_txt_reports_object'),
(892, 1, '_adm_form_txt_reports_author'),
(893, 1, '_adm_form_txt_reports_type'),
(894, 1, '_adm_form_txt_reports_text'),
(895, 1, '_adm_form_txt_reports_date'),
(896, 1, '_adm_form_txt_reports_status'),
(897, 1, '_adm_form_txt_reports_checked_by'),
(898, 1, '_adm_form_txt_reports_notes'),
(899, 1, '_adm_form_txt_reports_comments'),
(900, 1, '_adm_form_txt_reports_action'),
(901, 1, '_adm_form_txt_displays_edit_popup'),
(902, 1, '_adm_form_txt_displays_gl_fields'),
(903, 1, '_adm_form_txt_displays_gl_form'),
(904, 1, '_adm_form_txt_displays_gl_module'),
(905, 1, '_adm_form_txt_displays_gl_title'),
(906, 1, '_adm_form_txt_displays_manage_fields'),
(907, 1, '_adm_form_txt_displays_title'),
(908, 1, '_adm_form_txt_field_add_popup'),
(909, 1, '_adm_form_txt_field_attrs_max'),
(910, 1, '_adm_form_txt_field_attrs_min'),
(911, 1, '_adm_form_txt_field_attrs_src'),
(912, 1, '_adm_form_txt_field_attrs_step'),
(913, 1, '_adm_form_txt_field_caption'),
(914, 1, '_adm_form_txt_field_caption_system'),
(915, 1, '_adm_form_txt_field_checked'),
(916, 1, '_adm_form_txt_field_checked_switcher'),
(917, 1, '_adm_form_txt_field_checker_avail'),
(918, 1, '_adm_form_txt_field_checker_captcha'),
(919, 1, '_adm_form_txt_field_checker_custom'),
(920, 1, '_adm_form_txt_field_checker_date'),
(921, 1, '_adm_form_txt_field_checker_date_range'),
(922, 1, '_adm_form_txt_field_checker_date_time'),
(923, 1, '_adm_form_txt_field_checker_email'),
(924, 1, '_adm_form_txt_field_checker_empty'),
(925, 1, '_adm_form_txt_field_checker_error'),
(926, 1, '_adm_form_txt_field_checker_func'),
(927, 1, '_adm_form_txt_field_checker_func_info_custom'),
(928, 1, '_adm_form_txt_field_checker_length'),
(929, 1, '_adm_form_txt_field_checker_location'),
(930, 1, '_adm_form_txt_field_checker_no_spam'),
(931, 1, '_adm_form_txt_field_checker_params_length_max'),
(932, 1, '_adm_form_txt_field_checker_params_length_min'),
(933, 1, '_adm_form_txt_field_checker_params_required'),
(934, 1, '_adm_form_txt_field_checker_params_preg'),
(935, 1, '_adm_form_txt_field_checker_preg'),
(936, 1, '_adm_form_txt_field_collapsed'),
(937, 1, '_adm_form_txt_field_edit_popup'),
(938, 1, '_adm_form_txt_field_html'),
(939, 1, '_adm_form_txt_field_html_full'),
(940, 1, '_adm_form_txt_field_html_mini'),
(941, 1, '_adm_form_txt_field_html_none'),
(942, 1, '_adm_form_txt_field_html_standard'),
(943, 1, '_adm_form_txt_field_icon'),
(944, 1, '_adm_form_txt_field_icon_preview'),
(945, 1, '_adm_form_txt_field_info'),
(946, 1, '_adm_form_txt_field_help'),
(947, 1, '_adm_form_txt_field_module'),
(948, 1, '_adm_form_txt_field_name'),
(949, 1, '_adm_form_txt_field_object'),
(950, 1, '_adm_form_txt_field_privacy'),
(951, 1, '_adm_form_txt_field_rateable'),
(952, 1, '_adm_form_txt_field_rateable_value_non'),
(953, 1, '_adm_form_txt_field_rateable_value_votes'),
(954, 1, '_adm_form_txt_field_rateable_value_reactions'),
(955, 1, '_adm_form_txt_field_required'),
(956, 1, '_adm_form_txt_field_select_nested_form'),
(957, 1, '_adm_form_txt_field_show_to_popup'),
(958, 1, '_adm_form_txt_field_type_block_end'),
(959, 1, '_adm_form_txt_field_type_block_header'),
(960, 1, '_adm_form_txt_field_type_button'),
(961, 1, '_adm_form_txt_field_type_captcha'),
(962, 1, '_adm_form_txt_field_type_checkbox'),
(963, 1, '_adm_form_txt_field_type_checkbox_set'),
(964, 1, '_adm_form_txt_field_type_custom'),
(965, 1, '_adm_form_txt_field_type_datepicker'),
(966, 1, '_adm_form_txt_field_type_dateselect'),
(967, 1, '_adm_form_txt_field_type_datepicker_range'),
(968, 1, '_adm_form_txt_field_type_datepicker_range_age'),
(969, 1, '_adm_form_txt_field_type_datetime'),
(970, 1, '_adm_form_txt_field_type_datetime_range'),
(971, 1, '_adm_form_txt_field_type_datetime_range_age'),
(972, 1, '_adm_form_txt_field_type_display'),
(973, 1, '_adm_form_txt_field_type_doublerange'),
(974, 1, '_adm_form_txt_field_type_file'),
(975, 1, '_adm_form_txt_field_type_files'),
(976, 1, '_adm_form_txt_field_type_hidden'),
(977, 1, '_adm_form_txt_field_type_image'),
(978, 1, '_adm_form_txt_field_type_input_set'),
(979, 1, '_adm_form_txt_field_type_location'),
(980, 1, '_adm_form_txt_field_type_location_radius'),
(981, 1, '_adm_form_txt_field_type_number'),
(982, 1, '_adm_form_txt_field_type_price'),
(983, 1, '_adm_form_txt_field_type_password'),
(984, 1, '_adm_form_txt_field_type_radio_set'),
(985, 1, '_adm_form_txt_field_type_reset'),
(986, 1, '_adm_form_txt_field_type_select'),
(987, 1, '_adm_form_txt_field_type_select_multiple'),
(988, 1, '_adm_form_txt_field_type_slider'),
(989, 1, '_adm_form_txt_field_type_submit'),
(990, 1, '_adm_form_txt_field_type_switcher'),
(991, 1, '_adm_form_txt_field_type_text'),
(992, 1, '_adm_form_txt_field_type_text_range'),
(993, 1, '_adm_form_txt_field_type_text_auto'),
(994, 1, '_adm_form_txt_field_type_textarea'),
(995, 1, '_adm_form_txt_field_type_time'),
(996, 1, '_adm_form_txt_field_type_value'),
(997, 1, '_adm_form_txt_field_type_nested_form'),
(998, 1, '_adm_form_txt_field_unique'),
(999, 1, '_adm_form_txt_field_value_button'),
(1000, 1, '_adm_form_txt_field_value_checkbox'),
(1001, 1, '_adm_form_txt_field_value_custom_text'),
(1002, 1, '_adm_form_txt_field_value_default'),
(1003, 1, '_adm_form_txt_field_value_files'),
(1004, 1, '_adm_form_txt_field_value_select_value'),
(1005, 1, '_adm_form_txt_field_values'),
(1006, 1, '_adm_form_txt_field_values_manage'),
(1007, 1, '_adm_form_txt_field_values_select_list'),
(1008, 1, '_adm_form_txt_field_visible_for'),
(1009, 1, '_adm_form_txt_field_visible_for_all'),
(1010, 1, '_adm_form_txt_field_visible_for_levels'),
(1011, 1, '_adm_form_txt_field_visible_for_selected'),
(1012, 1, '_adm_form_txt_field_db_pass'),
(1013, 1, '_adm_form_txt_field_db_pass_date'),
(1014, 1, '_adm_form_txt_field_db_pass_date_ts'),
(1015, 1, '_adm_form_txt_field_db_pass_date_utc'),
(1016, 1, '_adm_form_txt_field_db_pass_date_time'),
(1017, 1, '_adm_form_txt_field_db_pass_date_time_ts'),
(1018, 1, '_adm_form_txt_field_db_pass_date_time_utc'),
(1019, 1, '_adm_form_txt_field_db_pass_select_value'),
(1020, 1, '_adm_form_txt_fields_caption_system'),
(1021, 1, '_adm_form_txt_fields_manage_visibility'),
(1022, 1, '_adm_form_txt_fields_module'),
(1023, 1, '_adm_form_txt_fields_type'),
(1024, 1, '_adm_form_txt_fields_visible'),
(1025, 1, '_adm_form_txt_forms_edit_popup'),
(1026, 1, '_adm_form_txt_forms_gl_displays'),
(1027, 1, '_adm_form_txt_forms_gl_module'),
(1028, 1, '_adm_form_txt_forms_gl_title'),
(1029, 1, '_adm_form_txt_forms_manage_displays'),
(1030, 1, '_adm_form_txt_forms_n_displays'),
(1031, 1, '_adm_form_txt_forms_n_fields'),
(1032, 1, '_adm_form_txt_forms_title'),
(1033, 1, '_adm_form_txt_labels_add_popup'),
(1034, 1, '_adm_form_txt_labels_edit_popup'),
(1035, 1, '_adm_form_txt_labels_items'),
(1036, 1, '_adm_form_txt_labels_manage_items'),
(1037, 1, '_adm_form_txt_labels_n_items'),
(1038, 1, '_adm_form_txt_labels_parent'),
(1039, 1, '_adm_form_txt_labels_parent_empty'),
(1040, 1, '_adm_form_txt_labels_grandparent_label'),
(1041, 1, '_adm_form_txt_labels_parent_label'),
(1042, 1, '_adm_form_txt_labels_sibling_labels'),
(1043, 1, '_adm_form_txt_labels_value'),
(1044, 1, '_adm_form_txt_categories_author'),
(1045, 1, '_adm_form_txt_categories_added'),
(1046, 1, '_adm_form_txt_categories_module'),
(1047, 1, '_adm_form_txt_categories_value'),
(1048, 1, '_adm_form_txt_categories_add_popup'),
(1049, 1, '_adm_form_txt_categories_edit_popup'),
(1050, 1, '_adm_form_err_categories_value'),
(1051, 1, '_adm_form_txt_pre_lists_country'),
(1052, 1, '_adm_form_txt_pre_lists_create_popup'),
(1053, 1, '_adm_form_txt_pre_lists_edit_popup'),
(1054, 1, '_adm_form_txt_pre_lists_gl_module'),
(1055, 1, '_adm_form_txt_pre_lists_gl_title'),
(1056, 1, '_adm_form_txt_pre_lists_gl_use_for_sets'),
(1057, 1, '_adm_form_txt_pre_lists_gl_values'),
(1058, 1, '_adm_form_txt_pre_lists_language'),
(1059, 1, '_adm_form_txt_pre_lists_currency'),
(1060, 1, '_adm_form_txt_pre_lists_manage_values'),
(1061, 1, '_adm_form_txt_pre_lists_n_values'),
(1062, 1, '_adm_form_txt_pre_lists_no'),
(1063, 1, '_adm_form_txt_pre_lists_sex'),
(1064, 1, '_adm_form_txt_pre_lists_title'),
(1065, 1, '_adm_form_txt_pre_lists_yes'),
(1066, 1, '_adm_form_txt_pre_values_create_popup'),
(1067, 1, '_adm_form_txt_pre_values_edit_popup'),
(1068, 1, '_adm_form_txt_pre_values_empty'),
(1069, 1, '_adm_form_txt_pre_values_gl_lkey'),
(1070, 1, '_adm_form_txt_pre_values_lkey'),
(1071, 1, '_adm_form_txt_search_forms_edit_popup'),
(1072, 1, '_adm_form_txt_search_forms_fields'),
(1073, 1, '_adm_form_txt_search_forms_sortable_fields'),
(1074, 1, '_adm_form_txt_search_forms_fields_type'),
(1075, 1, '_adm_form_txt_search_forms_fields_caption'),
(1076, 1, '_adm_form_txt_search_forms_fields_info'),
(1077, 1, '_adm_form_txt_search_forms_fields_search_type'),
(1078, 1, '_adm_form_txt_search_forms_fields_select_object'),
(1079, 1, '_adm_form_txt_search_forms_fields_edit_popup'),
(1080, 1, '_adm_form_txt_search_forms_sortable_fields_caption'),
(1081, 1, '_adm_form_txt_search_forms_sortable_fields_direction'),
(1082, 1, '_adm_form_txt_search_forms_manage_fields'),
(1083, 1, '_adm_form_txt_search_forms_module'),
(1084, 1, '_adm_form_txt_search_forms_n_fields'),
(1085, 1, '_adm_form_txt_search_forms_title'),
(1086, 1, '_adm_form_txt_select_display'),
(1087, 1, '_adm_form_txt_select_form'),
(1088, 1, '_adm_form_txt_select_list'),
(1089, 1, '_adm_from_err_field_delete'),
(1090, 1, '_adm_from_err_pre_lists_delete'),
(1091, 1, '_adm_ipbl_Date_of_finish'),
(1092, 1, '_adm_ipbl_IP_Role'),
(1093, 1, '_adm_ipbl_Stored_members_caption'),
(1094, 1, '_adm_ipbl_Type0_desc'),
(1095, 1, '_adm_ipbl_Type1_desc'),
(1096, 1, '_adm_ipbl_Type2_desc'),
(1097, 1, '_adm_ipbl_sample'),
(1098, 1, '_adm_lang_cnf_uninstall'),
(1099, 1, '_adm_lmi_cpt_actions'),
(1100, 1, '_adm_lmi_cpt_api_config'),
(1101, 1, '_adm_lmi_cpt_assistants'),
(1102, 1, '_adm_lmi_cpt_automators'),
(1103, 1, '_adm_lmi_cpt_helpers'),
(1104, 1, '_adm_lmi_cpt_badges'),
(1105, 1, '_adm_lmi_cpt_categories'),
(1106, 1, '_adm_lmi_cpt_checkout'),
(1107, 1, '_adm_lmi_cpt_cover'),
(1108, 1, '_adm_lmi_cpt_search'),
(1109, 1, '_adm_lmi_cpt_search_forms'),
(1110, 1, '_adm_lmi_cpt_search_fields'),
(1111, 1, '_adm_lmi_cpt_search_sortable_fields'),
(1112, 1, '_adm_lmi_cpt_splash'),
(1113, 1, '_adm_lmi_cpt_displays'),
(1114, 1, '_adm_lmi_cpt_downloaded'),
(1115, 1, '_adm_lmi_cpt_etemplates_text'),
(1116, 1, '_adm_lmi_cpt_etemplates_html'),
(1117, 1, '_adm_lmi_cpt_featured'),
(1118, 1, '_adm_lmi_cpt_fields'),
(1119, 1, '_adm_lmi_cpt_files'),
(1120, 1, '_adm_lmi_cpt_forms'),
(1121, 1, '_adm_lmi_cpt_general'),
(1122, 1, '_adm_lmi_cpt_goodies'),
(1123, 1, '_adm_lmi_cpt_icon'),
(1124, 1, '_adm_lmi_cpt_injections'),
(1125, 1, '_adm_lmi_cpt_images'),
(1126, 1, '_adm_lmi_cpt_items'),
(1127, 1, '_adm_lmi_cpt_keys'),
(1128, 1, '_adm_lmi_cpt_pgt_settings'),
(1129, 1, '_adm_lmi_cpt_pgt_keys'),
(1130, 1, '_adm_lmi_cpt_labels'),
(1131, 1, '_adm_lmi_cpt_latest'),
(1132, 1, '_adm_lmi_cpt_levels'),
(1133, 1, '_adm_lmi_cpt_logo'),
(1134, 1, '_adm_lmi_cpt_menus'),
(1135, 1, '_adm_lmi_cpt_origins'),
(1136, 1, '_adm_lmi_cpt_pre_lists'),
(1137, 1, '_adm_lmi_cpt_pre_values'),
(1138, 1, '_adm_lmi_cpt_providers'),
(1139, 1, '_adm_lmi_cpt_popular'),
(1140, 1, '_adm_lmi_cpt_purchases'),
(1141, 1, '_adm_lmi_cpt_pwa'),
(1142, 1, '_adm_lmi_cpt_ractions'),
(1143, 1, '_adm_lmi_cpt_reports'),
(1144, 1, '_adm_lmi_cpt_rlevels'),
(1145, 1, '_adm_lmi_cpt_sets'),
(1146, 1, '_adm_lmi_cpt_settings'),
(1147, 1, '_adm_lmi_cpt_updates'),
(1148, 1, '_adm_mobile_page_homepage'),
(1149, 1, '_adm_mobile_page_profile'),
(1150, 1, '_adm_mod_cnf_uninstall'),
(1151, 1, '_adm_mod_err_cannot_process_action'),
(1152, 1, '_adm_mod_err_only_admin_can_perform_operations_with_modules'),
(1153, 1, '_adm_mod_err_process_operation_failed'),
(1154, 1, '_adm_mod_msg_process_operation_scheduled'),
(1155, 1, '_adm_msg_modules_success_added_to_cart'),
(1156, 1, '_adm_msg_modules_success_checkouted'),
(1157, 1, '_adm_msg_modules_success_delete'),
(1158, 1, '_adm_msg_modules_success_disable'),
(1159, 1, '_adm_msg_modules_success_enable'),
(1160, 1, '_adm_msg_modules_success_install'),
(1161, 1, '_adm_msg_modules_success_uninstall'),
(1162, 1, '_adm_msg_oauth_need_authorize'),
(1163, 1, '_adm_msg_oauth_non_owner_logged'),
(1164, 1, '_adm_nav_btn_current_icon_image_delete'),
(1165, 1, '_adm_nav_btn_items_add'),
(1166, 1, '_adm_nav_btn_items_cancel'),
(1167, 1, '_adm_nav_btn_items_delete'),
(1168, 1, '_adm_nav_btn_items_done'),
(1169, 1, '_adm_nav_btn_items_edit'),
(1170, 1, '_adm_nav_btn_items_gl_create'),
(1171, 1, '_adm_nav_btn_items_gl_import'),
(1172, 1, '_adm_nav_btn_items_gl_visible'),
(1173, 1, '_adm_nav_btn_items_import'),
(1174, 1, '_adm_nav_btn_items_save'),
(1175, 1, '_adm_nav_btn_menus_add'),
(1176, 1, '_adm_nav_btn_menus_cancel'),
(1177, 1, '_adm_nav_btn_menus_create'),
(1178, 1, '_adm_nav_btn_menus_delete'),
(1179, 1, '_adm_nav_btn_menus_edit'),
(1180, 1, '_adm_nav_btn_menus_save'),
(1181, 1, '_adm_nav_btn_sets_add'),
(1182, 1, '_adm_nav_btn_sets_cancel'),
(1183, 1, '_adm_nav_btn_sets_create'),
(1184, 1, '_adm_nav_btn_sets_delete'),
(1185, 1, '_adm_nav_btn_sets_edit'),
(1186, 1, '_adm_nav_dsc_items_icon'),
(1187, 1, '_adm_nav_dsc_items_icon_image'),
(1188, 1, '_adm_nav_dsc_items_icon_image_current'),
(1189, 1, '_adm_nav_dsc_items_link'),
(1190, 1, '_adm_nav_dsc_items_onclick'),
(1191, 1, '_adm_nav_dsc_items_parent_id'),
(1192, 1, '_adm_nav_dsc_items_submenu'),
(1193, 1, '_adm_nav_dsc_items_target'),
(1194, 1, '_adm_nav_dsc_items_title'),
(1195, 1, '_adm_nav_dsc_items_title_system'),
(1196, 1, '_adm_nav_dsc_items_visible_for_levels'),
(1197, 1, '_adm_nav_dsc_menus_persistent'),
(1198, 1, '_adm_nav_dsc_menus_set_name'),
(1199, 1, '_adm_nav_dsc_menus_set_title'),
(1200, 1, '_adm_nav_dsc_menus_style'),
(1201, 1, '_adm_nav_dsc_menus_title'),
(1202, 1, '_adm_nav_dsc_sets_title'),
(1203, 1, '_adm_nav_err_cannot_process_action'),
(1204, 1, '_adm_nav_err_items_create'),
(1205, 1, '_adm_nav_err_items_delete'),
(1206, 1, '_adm_nav_err_items_edit'),
(1207, 1, '_adm_nav_err_items_icon'),
(1208, 1, '_adm_nav_err_items_icon_image'),
(1209, 1, '_adm_nav_err_items_icon_image_remove'),
(1210, 1, '_adm_nav_err_items_import'),
(1211, 1, '_adm_nav_err_items_link'),
(1212, 1, '_adm_nav_err_items_onclick'),
(1213, 1, '_adm_nav_err_items_show_to'),
(1214, 1, '_adm_nav_err_menus_create'),
(1215, 1, '_adm_nav_err_menus_delete'),
(1216, 1, '_adm_nav_err_menus_edit'),
(1217, 1, '_adm_nav_err_menus_set_name'),
(1218, 1, '_adm_nav_err_menus_set_title'),
(1219, 1, '_adm_nav_err_menus_style'),
(1220, 1, '_adm_nav_err_menus_title'),
(1221, 1, '_adm_nav_err_missing_params'),
(1222, 1, '_adm_nav_err_sets_create'),
(1223, 1, '_adm_nav_err_sets_delete'),
(1224, 1, '_adm_nav_err_sets_delete_used'),
(1225, 1, '_adm_nav_err_sets_edit'),
(1226, 1, '_adm_nav_err_sets_title'),
(1227, 1, '_adm_nav_txt_all_modules'),
(1228, 1, '_adm_nav_txt_items_collapsed'),
(1229, 1, '_adm_nav_txt_items_create_popup'),
(1230, 1, '_adm_nav_txt_items_edit_popup'),
(1231, 1, '_adm_nav_txt_items_gl_icon'),
(1232, 1, '_adm_nav_txt_items_gl_link'),
(1233, 1, '_adm_nav_txt_items_gl_link_custom'),
(1234, 1, '_adm_nav_txt_items_gl_link_menu'),
(1235, 1, '_adm_nav_txt_items_gl_link_subitems'),
(1236, 1, '_adm_nav_txt_items_gl_module'),
(1237, 1, '_adm_nav_txt_items_gl_title_system'),
(1238, 1, '_adm_nav_txt_items_gl_visible'),
(1239, 1, '_adm_nav_txt_items_icon'),
(1240, 1, '_adm_nav_txt_items_icon_image'),
(1241, 1, '_adm_nav_txt_items_icon_image_new'),
(1242, 1, '_adm_nav_txt_items_icon_image_old'),
(1243, 1, '_adm_nav_txt_items_import_popup'),
(1244, 1, '_adm_nav_txt_items_link'),
(1245, 1, '_adm_nav_txt_items_onclick'),
(1246, 1, '_adm_nav_txt_items_parent_id'),
(1247, 1, '_adm_nav_txt_items_parent_id_empty'),
(1248, 1, '_adm_nav_txt_items_primary'),
(1249, 1, '_adm_nav_txt_items_active_api'),
(1250, 1, '_adm_nav_txt_items_show_to_popup'),
(1251, 1, '_adm_nav_txt_items_submenu'),
(1252, 1, '_adm_nav_txt_items_submenu_empty'),
(1253, 1, '_adm_nav_txt_items_submenu_popup'),
(1254, 1, '_adm_nav_txt_items_target'),
(1255, 1, '_adm_nav_txt_items_target_blank'),
(1256, 1, '_adm_nav_txt_items_target_self'),
(1257, 1, '_adm_nav_txt_items_title'),
(1258, 1, '_adm_nav_txt_items_title_system'),
(1259, 1, '_adm_nav_txt_items_visible_for'),
(1260, 1, '_adm_nav_txt_items_visible_for_all'),
(1261, 1, '_adm_nav_txt_items_visible_for_levels'),
(1262, 1, '_adm_nav_txt_items_visible_for_selected'),
(1263, 1, '_adm_nav_txt_manage_items'),
(1264, 1, '_adm_nav_txt_manage_visibility'),
(1265, 1, '_adm_nav_txt_menus_create_popup'),
(1266, 1, '_adm_nav_txt_menus_edit_popup'),
(1267, 1, '_adm_nav_txt_menus_gl_items'),
(1268, 1, '_adm_nav_txt_menus_gl_module'),
(1269, 1, '_adm_nav_txt_menus_gl_set_title'),
(1270, 1, '_adm_nav_txt_menus_gl_template_title'),
(1271, 1, '_adm_nav_txt_menus_gl_title'),
(1272, 1, '_adm_nav_txt_menus_persistent'),
(1273, 1, '_adm_nav_txt_menus_set_name'),
(1274, 1, '_adm_nav_txt_menus_set_name_new'),
(1275, 1, '_adm_nav_txt_menus_set_name_select'),
(1276, 1, '_adm_nav_txt_menus_set_title'),
(1277, 1, '_adm_nav_txt_menus_style'),
(1278, 1, '_adm_nav_txt_menus_style_select'),
(1279, 1, '_adm_nav_txt_menus_title'),
(1280, 1, '_adm_nav_txt_n_items'),
(1281, 1, '_adm_nav_txt_select_set'),
(1282, 1, '_adm_nav_txt_sets_create_popup'),
(1283, 1, '_adm_nav_txt_sets_edit_popup'),
(1284, 1, '_adm_nav_txt_sets_gl_items'),
(1285, 1, '_adm_nav_txt_sets_gl_module'),
(1286, 1, '_adm_nav_txt_sets_gl_title'),
(1287, 1, '_adm_nav_txt_sets_title'),
(1288, 1, '_adm_nav_txt_block_hidden_on'),
(1289, 1, '_adm_nav_txt_block_hidden_on_phone'),
(1290, 1, '_adm_nav_txt_block_hidden_on_tablet'),
(1291, 1, '_adm_nav_txt_block_hidden_on_desktop'),
(1292, 1, '_adm_nav_txt_block_hidden_on_mobile'),
(1293, 1, '_adm_nav_txt_block_hidden_on_pt'),
(1294, 1, '_adm_nav_txt_block_hidden_on_col'),
(1295, 1, '_adm_nav_txt_block_hidden_on_col_thin'),
(1296, 1, '_adm_nav_txt_block_hidden_on_col_half'),
(1297, 1, '_adm_nav_txt_block_hidden_on_col_wide'),
(1298, 1, '_adm_nav_txt_block_hidden_on_col_full'),
(1299, 1, '_adm_page_cpt_api'),
(1300, 1, '_adm_page_cpt_agents'),
(1301, 1, '_adm_page_cpt_audit'),
(1302, 1, '_adm_page_cpt_badges'),
(1303, 1, '_adm_page_cpt_builder_forms'),
(1304, 1, '_adm_page_cpt_builder_menus'),
(1305, 1, '_adm_page_cpt_builder_mobile'),
(1306, 1, '_adm_page_cpt_builder_pages'),
(1307, 1, '_adm_page_cpt_builder_permissions'),
(1308, 1, '_adm_page_cpt_builder_roles'),
(1309, 1, '_adm_page_cpt_dashboard'),
(1310, 1, '_adm_page_cpt_designer'),
(1311, 1, '_adm_page_cpt_home'),
(1312, 1, '_adm_page_cpt_login'),
(1313, 1, '_adm_page_cpt_polyglot'),
(1314, 1, '_adm_page_cpt_settings'),
(1315, 1, '_adm_page_cpt_storages'),
(1316, 1, '_adm_page_cpt_store'),
(1317, 1, '_adm_pgt_btn_add_new_key'),
(1318, 1, '_adm_pgt_btn_delete'),
(1319, 1, '_adm_pgt_btn_delete_title'),
(1320, 1, '_adm_pgt_btn_edit_title'),
(1321, 1, '_adm_pgt_btn_etemplates_cancel'),
(1322, 1, '_adm_pgt_btn_etemplates_gl_edit_title'),
(1323, 1, '_adm_pgt_btn_etemplates_save'),
(1324, 1, '_adm_pgt_btn_nkp_close'),
(1325, 1, '_adm_pgt_btn_nkp_create'),
(1326, 1, '_adm_pgt_btn_nkp_save'),
(1327, 1, '_adm_pgt_dsc_etemplates_body'),
(1328, 1, '_adm_pgt_dsc_etemplates_name_system'),
(1329, 1, '_adm_pgt_dsc_etemplates_subject'),
(1330, 1, '_adm_pgt_err_cannot_process_action'),
(1331, 1, '_adm_pgt_err_cannot_recompile_lang'),
(1332, 1, '_adm_pgt_err_cannot_restore_lang'),
(1333, 1, '_adm_pgt_err_create_key'),
(1334, 1, '_adm_pgt_err_create_key_empty_fields'),
(1335, 1, '_adm_pgt_err_deactivate_default'),
(1336, 1, '_adm_pgt_err_etemplates_body'),
(1337, 1, '_adm_pgt_err_etemplates_edit'),
(1338, 1, '_adm_pgt_err_etemplates_name_system'),
(1339, 1, '_adm_pgt_err_etemplates_subject'),
(1340, 1, '_adm_pgt_err_last_active'),
(1341, 1, '_adm_pgt_err_save'),
(1342, 1, '_adm_pgt_scs_recompiled'),
(1343, 1, '_adm_pgt_scs_restored'),
(1344, 1, '_adm_pgt_txt_all_modules'),
(1345, 1, '_adm_pgt_txt_etemplates_body'),
(1346, 1, '_adm_pgt_txt_etemplates_edit_popup'),
(1347, 1, '_adm_pgt_txt_etemplates_gl_module'),
(1348, 1, '_adm_pgt_txt_etemplates_gl_name_system'),
(1349, 1, '_adm_pgt_txt_etemplates_name_system'),
(1350, 1, '_adm_pgt_txt_etemplates_subject'),
(1351, 1, '_adm_pgt_txt_key'),
(1352, 1, '_adm_pgt_txt_keyword'),
(1353, 1, '_adm_pgt_txt_languages'),
(1354, 1, '_adm_pgt_txt_module'),
(1355, 1, '_adm_pgt_txt_nkp_add_popup'),
(1356, 1, '_adm_pgt_txt_nkp_edit_popup'),
(1357, 1, '_adm_pgt_txt_nkp_key_name'),
(1358, 1, '_adm_pgt_txt_nkp_module'),
(1359, 1, '_adm_pgt_txt_text'),
(1360, 1, '_adm_pgt_txt_et_c_content'),
(1361, 1, '_adm_pgt_txt_et_hf_inf'),
(1362, 1, '_adm_pgt_btn_et_hf_submit'),
(1363, 1, '_adm_pgt_scs_et_hf_save'),
(1364, 1, '_adm_pgt_err_et_hf_save'),
(1365, 1, '_adm_pgt_err_et_hf_save_unsubscribe'),
(1366, 1, '_adm_prm_btn_actions_cancel'),
(1367, 1, '_adm_prm_btn_actions_options'),
(1368, 1, '_adm_prm_btn_actions_save'),
(1369, 1, '_adm_prm_btn_add_level'),
(1370, 1, '_adm_prm_btn_add_price'),
(1371, 1, '_adm_prm_btn_level_add'),
(1372, 1, '_adm_prm_btn_level_cancel'),
(1373, 1, '_adm_prm_btn_level_delete'),
(1374, 1, '_adm_prm_btn_level_edit'),
(1375, 1, '_adm_prm_btn_level_save'),
(1376, 1, '_adm_prm_btn_price_add'),
(1377, 1, '_adm_prm_btn_price_cancel'),
(1378, 1, '_adm_prm_btn_price_delete'),
(1379, 1, '_adm_prm_btn_price_edit'),
(1380, 1, '_adm_prm_btn_price_save'),
(1381, 1, '_adm_prm_dsc_actions_avail'),
(1382, 1, '_adm_prm_dsc_actions_number'),
(1383, 1, '_adm_prm_dsc_actions_reset'),
(1384, 1, '_adm_prm_dsc_level_description'),
(1385, 1, '_adm_prm_dsc_level_icon'),
(1386, 1, '_adm_prm_dsc_level_icon_image'),
(1387, 1, '_adm_prm_dsc_level_name'),
(1388, 1, '_adm_prm_dsc_level_quota_max_file_size'),
(1389, 1, '_adm_prm_dsc_level_quota_number'),
(1390, 1, '_adm_prm_dsc_level_password_expired'),
(1391, 1, '_adm_prm_dsc_level_password_expired_notify'),
(1392, 1, '_adm_prm_dsc_level_quota_size'),
(1393, 1, '_adm_prm_dsc_price_add_days'),
(1394, 1, '_adm_prm_err_action_edit'),
(1395, 1, '_adm_prm_err_level_create'),
(1396, 1, '_adm_prm_err_level_delete');
INSERT INTO `sys_localization_keys` VALUES
(1397, 1, '_adm_prm_err_level_edit'),
(1398, 1, '_adm_prm_err_level_icon'),
(1399, 1, '_adm_prm_err_level_icon_image'),
(1400, 1, '_adm_prm_err_level_icon_image_remove'),
(1401, 1, '_adm_prm_err_level_id'),
(1402, 1, '_adm_prm_err_level_name'),
(1403, 1, '_adm_prm_err_level_quota_max_file_size'),
(1404, 1, '_adm_prm_err_level_quota_number'),
(1405, 1, '_adm_prm_err_level_password_expired'),
(1406, 1, '_adm_prm_err_level_password_expired_notify'),
(1407, 1, '_adm_prm_err_level_quota_size'),
(1408, 1, '_adm_prm_err_price_create'),
(1409, 1, '_adm_prm_err_price_duplicate'),
(1410, 1, '_adm_prm_err_price_update'),
(1411, 1, '_adm_prm_txt_actions'),
(1412, 1, '_adm_prm_txt_actions_avail_end'),
(1413, 1, '_adm_prm_txt_actions_avail_start'),
(1414, 1, '_adm_prm_txt_actions_number'),
(1415, 1, '_adm_prm_txt_actions_options_popup'),
(1416, 1, '_adm_prm_txt_actions_reset'),
(1417, 1, '_adm_prm_txt_all_modules'),
(1418, 1, '_adm_prm_txt_description'),
(1419, 1, '_adm_prm_txt_enable'),
(1420, 1, '_adm_prm_txt_icon'),
(1421, 1, '_adm_prm_txt_level_account'),
(1422, 1, '_adm_prm_txt_level_actions_copy'),
(1423, 1, '_adm_prm_txt_level_administrator'),
(1424, 1, '_adm_prm_txt_level_create_popup'),
(1425, 1, '_adm_prm_txt_level_description'),
(1426, 1, '_adm_prm_txt_level_edit_popup'),
(1427, 1, '_adm_prm_txt_level_icon'),
(1428, 1, '_adm_prm_txt_level_icon_image'),
(1429, 1, '_adm_prm_txt_level_icon_image_new'),
(1430, 1, '_adm_prm_txt_level_icon_image_old'),
(1431, 1, '_adm_prm_txt_level_moderator'),
(1432, 1, '_adm_prm_txt_level_name'),
(1433, 1, '_adm_prm_txt_level_pending'),
(1434, 1, '_adm_prm_txt_level_premium'),
(1435, 1, '_adm_prm_txt_level_quota_max_file_size'),
(1436, 1, '_adm_prm_txt_level_quota_number'),
(1437, 1, '_adm_prm_txt_level_password_expired'),
(1438, 1, '_adm_prm_txt_level_password_expired_notify'),
(1439, 1, '_adm_prm_txt_level_quota_size'),
(1440, 1, '_adm_prm_txt_level_standard'),
(1441, 1, '_adm_prm_txt_level_suspended'),
(1442, 1, '_adm_prm_txt_level_unauthenticated'),
(1443, 1, '_adm_prm_txt_level_unconfirmed'),
(1444, 1, '_adm_prm_txt_manage_actions'),
(1445, 1, '_adm_prm_txt_max_file_size'),
(1446, 1, '_adm_prm_txt_max_files'),
(1447, 1, '_adm_prm_txt_module'),
(1448, 1, '_adm_prm_txt_n_actions'),
(1449, 1, '_adm_prm_txt_price'),
(1450, 1, '_adm_prm_txt_price_add_days'),
(1451, 1, '_adm_prm_txt_price_add_popup'),
(1452, 1, '_adm_prm_txt_price_add_price'),
(1453, 1, '_adm_prm_txt_price_edit_popup'),
(1454, 1, '_adm_prm_txt_select_level'),
(1455, 1, '_adm_prm_txt_storage'),
(1456, 1, '_adm_prm_txt_term'),
(1457, 1, '_adm_prm_txt_title'),
(1458, 1, '_adm_prm_txt_visibility_items_anyone'),
(1459, 1, '_adm_prm_txt_visibility_items_n_user_levels'),
(1460, 1, '_adm_prm_txt_visibility_items_nobody'),
(1461, 1, '_adm_rl_btn_role_add'),
(1462, 1, '_adm_rl_btn_role_edit'),
(1463, 1, '_adm_rl_btn_role_delete'),
(1464, 1, '_adm_rl_err_cannot_process_action'),
(1465, 1, '_adm_rl_err_role_create'),
(1466, 1, '_adm_rl_err_role_edit'),
(1467, 1, '_adm_rl_err_role_delete'),
(1468, 1, '_adm_rl_err_role_id'),
(1469, 1, '_adm_rl_txt_actions'),
(1470, 1, '_adm_rl_txt_description'),
(1471, 1, '_adm_rl_txt_manage_actions'),
(1472, 1, '_adm_rl_txt_n_actions'),
(1473, 1, '_adm_rl_txt_select_role'),
(1474, 1, '_adm_rl_txt_title'),
(1475, 1, '_adm_rl_txt_role_create_popup'),
(1476, 1, '_adm_rl_txt_role_edit_popup'),
(1477, 1, '_adm_rl_txt_role_master'),
(1478, 1, '_adm_rl_txt_role_master_dsc'),
(1479, 1, '_adm_rl_txt_role_operator'),
(1480, 1, '_adm_rl_txt_role_operator_dsc'),
(1481, 1, '_adm_rl_txt_action_manage_roles'),
(1482, 1, '_adm_rl_txt_action_manage_roles_dsc'),
(1483, 1, '_adm_rl_txt_action_manage_apps'),
(1484, 1, '_adm_rl_txt_action_manage_apps_dsc'),
(1485, 1, '_adm_rl_txt_action_use_appearance'),
(1486, 1, '_adm_rl_txt_action_use_appearance_dsc'),
(1487, 1, '_adm_rl_txt_action_use_structure'),
(1488, 1, '_adm_rl_txt_action_use_structure_dsc'),
(1489, 1, '_adm_rl_txt_action_use_content'),
(1490, 1, '_adm_rl_txt_action_use_content_dsc'),
(1491, 1, '_adm_rl_txt_action_use_users'),
(1492, 1, '_adm_rl_txt_action_use_users_dsc'),
(1493, 1, '_adm_rl_txt_action_use_configuration'),
(1494, 1, '_adm_rl_txt_action_use_configuration_dsc'),
(1495, 1, '_adm_rl_txt_action_use_extensions'),
(1496, 1, '_adm_rl_txt_action_use_extensions_dsc'),
(1497, 1, '_adm_rl_txt_action_use_integrations'),
(1498, 1, '_adm_rl_txt_action_use_integrations_dsc'),
(1499, 1, '_adm_rl_txt_role_title'),
(1500, 1, '_adm_rl_err_role_title'),
(1501, 1, '_adm_rl_txt_role_description'),
(1502, 1, '_adm_rl_txt_role_actions_copy'),
(1503, 1, '_adm_rl_btn_role_create'),
(1504, 1, '_adm_rl_btn_role_cancel'),
(1505, 1, '_adm_rl_btn_role_save'),
(1506, 1, '_adm_scs_operation_done'),
(1507, 1, '_adm_stg_cpt_category_account'),
(1508, 1, '_adm_stg_cpt_category_acl'),
(1509, 1, '_adm_stg_cpt_category_audit'),
(1510, 1, '_adm_stg_cpt_category_notifications'),
(1511, 1, '_adm_stg_cpt_category_notifications_push'),
(1512, 1, '_adm_stg_cpt_category_cache'),
(1513, 1, '_adm_stg_cpt_category_general'),
(1514, 1, '_adm_stg_cpt_category_hidden'),
(1515, 1, '_adm_stg_cpt_category_languages'),
(1516, 1, '_adm_stg_cpt_category_permalinks'),
(1517, 1, '_adm_stg_cpt_category_security'),
(1518, 1, '_adm_stg_cpt_category_site_settings'),
(1519, 1, '_adm_stg_cpt_category_storage'),
(1520, 1, '_adm_stg_cpt_category_system'),
(1521, 1, '_adm_stg_cpt_category_templates'),
(1522, 1, '_adm_stg_cpt_category_sms'),
(1523, 1, '_adm_stg_cpt_category_location'),
(1524, 1, '_adm_stg_cpt_category_social_settings'),
(1525, 1, '_adm_stg_cpt_category_api_general'),
(1526, 1, '_adm_stg_cpt_category_api_layout'),
(1527, 1, '_adm_stg_cpt_category_agents_general'),
(1528, 1, '_adm_stg_cpt_category_agents_usage'),
(1529, 1, '_adm_stg_cpt_option_client_image_resize_width'),
(1530, 1, '_adm_stg_cpt_option_client_image_resize_height'),
(1531, 1, '_adm_stg_cpt_option_currency_code'),
(1532, 1, '_adm_stg_err_option_currency_code'),
(1533, 1, '_adm_stg_cpt_option_currency_sign'),
(1534, 1, '_adm_stg_err_option_currency_sign'),
(1535, 1, '_adm_stg_cpt_option_enable_gd'),
(1536, 1, '_adm_stg_cpt_option_enable_notification_account'),
(1537, 1, '_adm_stg_cpt_option_enable_notification_pruning'),
(1538, 1, '_adm_stg_cpt_option_expire_notification_days'),
(1539, 1, '_adm_stg_cpt_option_expire_notify_once'),
(1540, 1, '_adm_stg_cpt_option_lang_default'),
(1541, 1, '_adm_stg_cpt_option_lang_subst_from_en'),
(1542, 1, '_adm_stg_cpt_option_permalinks_modules'),
(1543, 1, '_adm_stg_cpt_option_permalinks_pages'),
(1544, 1, '_adm_stg_cpt_option_permalinks_storage'),
(1545, 1, '_adm_stg_cpt_option_permalinks_seo_links'),
(1546, 1, '_adm_stg_cpt_option_permalinks_seo_links_redirects'),
(1547, 1, '_adm_stg_cpt_option_site_email'),
(1548, 1, '_adm_stg_inf_option_site_email'),
(1549, 1, '_adm_stg_cpt_option_site_email_notify'),
(1550, 1, '_adm_stg_inf_option_site_email_notify'),
(1551, 1, '_adm_stg_cpt_option_site_email_html_template_header'),
(1552, 1, '_adm_stg_cpt_option_site_email_html_template_footer'),
(1553, 1, '_adm_stg_cpt_option_site_login_social_compact'),
(1554, 1, '_adm_stg_cpt_option_site_title'),
(1555, 1, '_adm_stg_inf_option_site_title'),
(1556, 1, '_adm_stg_cpt_option_site_tour_home'),
(1557, 1, '_adm_stg_inf_option_site_tour_home'),
(1558, 1, '_adm_stg_cpt_option_site_tour_studio'),
(1559, 1, '_adm_stg_inf_option_site_tour_studio'),
(1560, 1, '_adm_stg_cpt_option_smart_app_banner'),
(1561, 1, '_adm_stg_inf_option_smart_app_banner'),
(1562, 1, '_adm_stg_cpt_option_smart_app_banner_ios_app_id'),
(1563, 1, '_adm_stg_inf_option_smart_app_banner_ios_app_id'),
(1564, 1, '_adm_stg_cpt_option_sys_account_activation_letter'),
(1565, 1, '_adm_stg_cpt_option_sys_account_confirmation_type'),
(1566, 1, '_adm_stg_cpt_option_sys_account_hide_unconfirmed_accounts'),
(1567, 1, '_adm_stg_cpt_option_sys_account_2fa_enable'),
(1568, 1, '_adm_stg_cpt_option_sys_account_2fa_lifetime'),
(1569, 1, '_adm_stg_cpt_option_sys_account_autoapproval'),
(1570, 1, '_adm_stg_cpt_option_sys_account_auto_profile_creation'),
(1571, 1, '_adm_stg_cpt_option_sys_account_online_time'),
(1572, 1, '_adm_stg_err_option_sys_account_online_time'),
(1573, 1, '_adm_stg_cpt_option_sys_account_default_profile_type'),
(1574, 1, '_adm_stg_cpt_option_sys_account_limit_profiles_number'),
(1575, 1, '_adm_stg_cpt_option_sys_account_limit_incorrect_login_attempts'),
(1576, 1, '_adm_stg_cpt_option_sys_account_reset_password_key_lifetime'),
(1577, 1, '_adm_stg_cpt_option_sys_account_reset_password_redirect'),
(1578, 1, '_adm_stg_cpt_option_sys_account_disable_login_form'),
(1579, 1, '_adm_stg_cpt_option_sys_account_disable_join_form'),
(1580, 1, '_adm_stg_cpt_option_sys_allow_plus_in_email'),
(1581, 1, '_adm_stg_cpt_option_sys_accounts_pruning'),
(1582, 1, '_adm_stg_cpt_option_sys_accounts_pruning_interval'),
(1583, 1, '_adm_stg_cpt_option_sys_accounts_password_log_count'),
(1584, 1, '_adm_stg_cpt_option_sys_accounts_force_password_change_after_expiration'),
(1585, 1, '_adm_stg_cpt_option_sys_lock_from_unauthenticated'),
(1586, 1, '_adm_stg_cpt_option_sys_lock_from_unauthenticated_exceptions'),
(1587, 1, '_adm_stg_cpt_option_value_sys_account_pruning_no_login_delete'),
(1588, 1, '_adm_stg_cpt_option_value_sys_account_pruning_no_login_suspend'),
(1589, 1, '_adm_stg_cpt_option_value_sys_account_pruning_no_confirm_delete'),
(1590, 1, '_adm_stg_cpt_option_value_sys_account_pruning_no_profile_delete'),
(1591, 1, '_adm_stg_cpt_option_value_sys_account_reset_password_redirect_home'),
(1592, 1, '_adm_stg_cpt_option_value_sys_account_reset_password_redirect_profile'),
(1593, 1, '_adm_stg_cpt_option_value_sys_account_reset_password_redirect_profile_edit'),
(1594, 1, '_adm_stg_cpt_option_value_sys_account_reset_password_redirect_custom'),
(1595, 1, '_adm_stg_cpt_option_sys_account_reset_password_redirect_custom'),
(1596, 1, '_adm_stg_cpt_option_sys_account_switch_to_profile_redirect'),
(1597, 1, '_adm_stg_cpt_option_sys_account_switch_to_profile_redirect_custom'),
(1598, 1, '_adm_stg_cpt_option_sys_account_remember_me'),
(1599, 1, '_adm_stg_cpt_option_value_sys_account_switch_to_profile_redirect_back'),
(1600, 1, '_adm_stg_cpt_option_value_sys_account_switch_to_profile_redirect_home'),
(1601, 1, '_adm_stg_cpt_option_value_sys_account_switch_to_profile_redirect_profile'),
(1602, 1, '_adm_stg_cpt_option_value_sys_account_switch_to_profile_redirect_custom'),
(1603, 1, '_adm_stg_cpt_option_sys_acl_expire_notification_days'),
(1604, 1, '_adm_stg_cpt_option_sys_acl_expire_notify_once'),
(1605, 1, '_adm_stg_cpt_option_sys_add_nofollow'),
(1606, 1, '_adm_stg_cpt_option_sys_audit_enable'),
(1607, 1, '_adm_stg_cpt_option_sys_audit_max_records'),
(1608, 1, '_adm_stg_cpt_option_sys_audit_days_before_expire'),
(1609, 1, '_adm_stg_cpt_option_sys_audit_acl_levels'),
(1610, 1, '_adm_stg_cpt_option_sys_autoupdate_force_modified_files'),
(1611, 1, '_adm_stg_inf_option_sys_autoupdate_force_modified_files'),
(1612, 1, '_adm_stg_cpt_option_sys_autoupdate'),
(1613, 1, '_adm_stg_inf_option_sys_autoupdate'),
(1614, 1, '_adm_stg_cpt_option_sys_cache_memcache_host'),
(1615, 1, '_adm_stg_cpt_option_sys_cache_memcache_port'),
(1616, 1, '_adm_stg_cpt_option_sys_captcha_default'),
(1617, 1, '_adm_stg_cpt_option_sys_cf_enable'),
(1618, 1, '_adm_stg_cpt_option_sys_cf_enable_comments'),
(1619, 1, '_adm_stg_cpt_option_sys_cf_prohibited'),
(1620, 1, '_adm_stg_cpt_option_sys_cf_unauthenticated'),
(1621, 1, '_adm_stg_cpt_option_sys_confirmation_before_redirect'),
(1622, 1, '_adm_stg_cpt_option_sys_email_attachable_email_templates'),
(1623, 1, '_adm_stg_cpt_option_sys_db_cache_enable'),
(1624, 1, '_adm_stg_cpt_option_sys_db_cache_engine'),
(1625, 1, '_adm_stg_cpt_option_sys_default_payment'),
(1626, 1, '_adm_stg_cpt_option_sys_editor_default'),
(1627, 1, '_adm_stg_cpt_option_sys_player_default'),
(1628, 1, '_adm_stg_cpt_option_sys_player_default_quality'),
(1629, 1, '_adm_stg_cpt_option_sys_pt_default_visitor'),
(1630, 1, '_adm_stg_cpt_option_sys_pt_default_member'),
(1631, 1, '_adm_stg_cpt_option_sys_form_lpc_enable'),
(1632, 1, '_adm_stg_cpt_option_sys_format_date'),
(1633, 1, '_adm_stg_cpt_option_sys_format_datetime'),
(1634, 1, '_adm_stg_cpt_option_sys_format_time'),
(1635, 1, '_adm_stg_cpt_option_sys_format_timeago'),
(1636, 1, '_adm_stg_cpt_option_sys_format_input_24h'),
(1637, 1, '_adm_stg_cpt_option_sys_ftp_dir'),
(1638, 1, '_adm_stg_cpt_option_sys_ftp_login'),
(1639, 1, '_adm_stg_cpt_option_sys_ftp_password'),
(1640, 1, '_adm_stg_cpt_option_sys_cron_time'),
(1641, 1, '_adm_stg_cpt_option_sys_update_time'),
(1642, 1, '_adm_stg_cpt_option_sys_upgrade_channel'),
(1643, 1, '_adm_stg_cpt_option_sys_live_updates_interval'),
(1644, 1, '_adm_stg_cpt_option_sys_location_field_default'),
(1645, 1, '_adm_stg_cpt_option_sys_location_map_default'),
(1646, 1, '_adm_stg_cpt_option_sys_location_map_zoom_default'),
(1647, 1, '_adm_stg_cpt_option_sys_location_leaflet_provider'),
(1648, 1, '_adm_stg_cpt_option_sys_location_normalize_names'),
(1649, 1, '_adm_stg_cpt_option_sys_maps_api_key'),
(1650, 1, '_adm_stg_cpt_option_sys_embed_default'),
(1651, 1, '_adm_stg_cpt_option_sys_embedly_api_key'),
(1652, 1, '_adm_stg_cpt_option_sys_embedly_api_pattern'),
(1653, 1, '_adm_stg_cpt_option_sys_iframely_api_key'),
(1654, 1, '_adm_stg_cpt_option_sys_eq_time'),
(1655, 1, '_adm_stg_cpt_option_sys_eq_send_per_start'),
(1656, 1, '_adm_stg_cpt_option_sys_eq_send_per_start_to_recipient'),
(1657, 1, '_adm_stg_cpt_option_sys_oauth_key'),
(1658, 1, '_adm_stg_cpt_option_sys_oauth_secret'),
(1659, 1, '_adm_stg_cpt_option_sys_page_cache_enable'),
(1660, 1, '_adm_stg_cpt_option_sys_page_cache_engine'),
(1661, 1, '_adm_stg_cpt_option_sys_pb_cache_enable'),
(1662, 1, '_adm_stg_cpt_option_sys_pb_cache_engine'),
(1663, 1, '_adm_stg_cpt_option_sys_per_page_search_keyword_single'),
(1664, 1, '_adm_stg_inf_option_sys_per_page_search_keyword_single'),
(1665, 1, '_adm_stg_cpt_option_sys_per_page_search_keyword_plural'),
(1666, 1, '_adm_stg_inf_option_sys_per_page_search_keyword_plural'),
(1667, 1, '_adm_stg_cpt_option_sys_push_default'),
(1668, 1, '_adm_stg_cpt_option_sys_push_onesignal_app_id'),
(1669, 1, '_adm_stg_cpt_option_sys_push_onesignal_rest_api'),
(1670, 1, '_adm_stg_cpt_option_sys_push_onesignal_short_name'),
(1671, 1, '_adm_stg_cpt_option_sys_push_onesignal_safari_id'),
(1672, 1, '_adm_stg_cpt_option_sys_push_queue_time'),
(1673, 1, '_adm_stg_cpt_option_sys_push_queue_send_per_start'),
(1674, 1, '_adm_stg_cpt_option_sys_push_queue_send_per_start_to_recipient'),
(1675, 1, '_adm_stg_cpt_option_sys_sms_default'),
(1676, 1, '_adm_stg_cpt_option_sys_sms_twilio_sid'),
(1677, 1, '_adm_stg_cpt_option_sys_sms_twilio_token'),
(1678, 1, '_adm_stg_cpt_option_sys_sms_twilio_from_number'),
(1679, 1, '_adm_stg_cpt_option_sys_nominatim_server'),
(1680, 1, '_adm_stg_cpt_option_sys_nominatim_email'),
(1681, 1, '_adm_stg_cpt_option_sys_recaptcha_key_private'),
(1682, 1, '_adm_stg_cpt_option_sys_recaptcha_key_public'),
(1683, 1, '_adm_stg_cpt_option_sys_redirect_after_account_added'),
(1684, 1, '_adm_stg_cpt_option_sys_redirect_after_email_confirmation'),
(1685, 1, '_adm_stg_cpt_option_sys_relations_enable'),
(1686, 1, '_adm_stg_cpt_option_sys_relations'),
(1687, 1, '_adm_stg_cpt_option_sys_revision'),
(1688, 1, '_adm_stg_cpt_option_sys_security_form_token_enable'),
(1689, 1, '_adm_stg_cpt_option_sys_security_form_token_lifetime'),
(1690, 1, '_adm_stg_cpt_option_sys_security_impact_threshold_block'),
(1691, 1, '_adm_stg_cpt_option_sys_security_impact_threshold_log'),
(1692, 1, '_adm_stg_cpt_option_sys_security_block_content_after_n_reports'),
(1693, 1, '_adm_stg_cpt_option_sys_site_logo_aspect_ratio'),
(1694, 1, '_adm_stg_cpt_option_sys_storage_default'),
(1695, 1, '_adm_stg_cpt_option_sys_storage_s3_access_key'),
(1696, 1, '_adm_stg_cpt_option_sys_storage_s3_bucket'),
(1697, 1, '_adm_stg_cpt_option_sys_storage_s3_domain'),
(1698, 1, '_adm_stg_cpt_option_sys_storage_s3_secret_key'),
(1699, 1, '_adm_stg_cpt_option_sys_storage_s3_endpoint'),
(1700, 1, '_adm_stg_cpt_option_sys_storage_s3_sig_ver'),
(1701, 1, '_adm_stg_cpt_option_sys_storage_s3_region'),
(1702, 1, '_adm_stg_cpt_option_sys_storage_s3_amz_iam_role'),
(1703, 1, '_adm_stg_cpt_option_sys_storage_s3_acl_enable'),
(1704, 1, '_adm_stg_cpt_option_sys_storage_s3_force_auth_urls'),
(1705, 1, '_adm_stg_cpt_option_sys_template_cache_image_enable'),
(1706, 1, '_adm_stg_cpt_option_sys_template_cache_image_max_size'),
(1707, 1, '_adm_stg_cpt_option_sys_template_cache_image_max_size_err'),
(1708, 1, '_adm_stg_cpt_option_sys_template_cache_compress_enable'),
(1709, 1, '_adm_stg_cpt_option_sys_template_cache_css_enable'),
(1710, 1, '_adm_stg_cpt_option_sys_template_cache_enable'),
(1711, 1, '_adm_stg_cpt_option_sys_template_cache_engine'),
(1712, 1, '_adm_stg_cpt_option_sys_template_cache_js_enable'),
(1713, 1, '_adm_stg_cpt_option_sys_template_cache_minify_css_enable'),
(1714, 1, '_adm_stg_cpt_option_sys_template_cache_minify_js_enable'),
(1715, 1, '_adm_stg_cpt_option_sys_transcoder_queue_storage'),
(1716, 1, '_adm_stg_cpt_option_sys_live_search_limit'),
(1717, 1, '_adm_stg_inf_option_sys_live_search_limit'),
(1718, 1, '_adm_stg_cpt_option_sys_profiles_search_limit'),
(1719, 1, '_adm_stg_inf_option_sys_profiles_search_limit'),
(1720, 1, '_adm_stg_cpt_option_sys_session_lifetime_in_min'),
(1721, 1, '_adm_stg_cpt_option_sys_session_auth'),
(1722, 1, '_adm_stg_cpt_option_sys_default_curl_timeout'),
(1723, 1, '_adm_stg_cpt_option_sys_default_socket_timeout'),
(1724, 1, '_adm_stg_cpt_option_sys_ssl_allow_untrusted'),
(1725, 1, '_adm_stg_cpt_option_sys_csp_frame_ancestors'),
(1726, 1, '_adm_stg_cpt_option_sys_x_frame_options'),
(1727, 1, '_adm_stg_cpt_option_sys_samesite_cookies'),
(1728, 1, '_adm_stg_cpt_option_sys_notify_to_approve_by_role'),
(1729, 1, '_adm_stg_cpt_option_sys_fixed_header'),
(1730, 1, '_adm_stg_cpt_option_sys_css_media_classes'),
(1731, 1, '_adm_stg_cpt_option_sys_css_tailwind_default'),
(1732, 1, '_adm_stg_cpt_option_sys_css_icons_default'),
(1733, 1, '_adm_stg_cpt_option_sys_files_ext_images'),
(1734, 1, '_adm_stg_cpt_option_sys_files_ext_video'),
(1735, 1, '_adm_stg_cpt_option_sys_files_ext_imagevideo'),
(1736, 1, '_adm_stg_cpt_option_sys_files_ext_dangerous'),
(1737, 1, '_adm_stg_cpt_option_sys_files_ext_audio'),
(1738, 1, '_adm_stg_cpt_option_template'),
(1739, 1, '_adm_stg_err_option_template'),
(1740, 1, '_adm_stg_cpt_option_use_like_operator'),
(1741, 1, '_adm_stg_cpt_option_sys_quill_insert_as_plain_text'),
(1742, 1, '_adm_stg_cpt_option_sys_quill_allow_empty_tags'),
(1743, 1, '_adm_stg_cpt_option_sys_quill_allowed_tags_mini'),
(1744, 1, '_adm_stg_cpt_option_sys_quill_allowed_tags_standard'),
(1745, 1, '_adm_stg_cpt_option_sys_quill_allowed_tags_full'),
(1746, 1, '_adm_stg_cpt_option_sys_quill_toolbar_mini'),
(1747, 1, '_adm_stg_cpt_option_sys_quill_toolbar_standard'),
(1748, 1, '_adm_stg_cpt_option_sys_quill_toolbar_full'),
(1749, 1, '_adm_stg_cpt_option_sys_metatags_hashtags_only'),
(1750, 1, '_adm_stg_cpt_option_sys_metatags_hashtags_max'),
(1751, 1, '_adm_stg_cpt_option_sys_metatags_mentions_max'),
(1752, 1, '_adm_stg_cpt_option_sys_attach_links_max'),
(1753, 1, '_adm_stg_cpt_option_sys_enable_post_to_context_for_privacy'),
(1754, 1, '_adm_stg_cpt_option_sys_hide_post_to_context_for_privacy'),
(1755, 1, '_adm_stg_cpt_option_sys_treat_cxt_in_cxt_as_cnt'),
(1756, 1, '_adm_stg_cpt_option_sys_check_fan_in_parent_context'),
(1757, 1, '_adm_stg_cpt_option_sys_search_keyword_min_len'),
(1758, 1, '_adm_stg_cpt_option_sys_profile_bot'),
(1759, 1, '_adm_stg_inf_option_sys_profile_bot'),
(1760, 1, '_adm_stg_cpt_option_sys_logs_storage_default'),
(1761, 1, '_adm_stg_cpt_option_sys_vote_reactions_quick_mode'),
(1762, 1, '_adm_stg_cpt_option_sys_cmts_enable_auto_approve'),
(1763, 1, '_adm_stg_cpt_option_sys_create_post_form_preloading_list'),
(1764, 1, '_adm_stg_inf_option_sys_create_post_form_preloading_list'),
(1765, 1, '_adm_stg_cpt_option_sys_a2a_enable'),
(1766, 1, '_adm_stg_cpt_option_sys_a2a_code'),
(1767, 1, '_adm_stg_cpt_option_sys_api_enable'),
(1768, 1, '_adm_stg_cpt_option_sys_api_access_by_origin'),
(1769, 1, '_adm_stg_cpt_option_sys_api_access_by_key'),
(1770, 1, '_adm_stg_cpt_option_sys_api_access_unsafe_services'),
(1771, 1, '_adm_stg_cpt_option_sys_api_config'),
(1772, 1, '_adm_stg_cpt_option_sys_api_cookie_path'),
(1773, 1, '_adm_stg_cpt_option_sys_api_cookie_secure'),
(1774, 1, '_adm_stg_cpt_option_sys_api_cookie_samesite'),
(1775, 1, '_adm_stg_cpt_option_sys_api_menu_top'),
(1776, 1, '_adm_stg_cpt_option_sys_api_comments_flat'),
(1777, 1, '_adm_stg_cpt_option_sys_api_search_sections'),
(1778, 1, '_adm_stg_cpt_option_sys_api_extended_units'),
(1779, 1, '_adm_stg_cpt_option_sys_api_conn_in_prof_units'),
(1780, 1, '_adm_stg_cpt_option_sys_api_url_root_email'),
(1781, 1, '_adm_stg_cpt_option_sys_api_url_root_push'),
(1782, 1, '_adm_stg_cpt_option_sys_agents_api_key'),
(1783, 1, '_adm_stg_cpt_option_sys_agents_model'),
(1784, 1, '_adm_stg_cpt_option_sys_agents_profile'),
(1785, 1, '_adm_stg_cpt_option_sys_agents_asst_chats_trans_del'),
(1786, 1, '_adm_stg_cpt_option_sys_agents_sa'),
(1787, 1, '_adm_stg_cpt_option_sys_agents_lsa'),
(1788, 1, '_adm_stg_cpt_option_sys_agents_aba'),
(1789, 1, '_adm_stg_cpt_option_sys_viewport_meta_tag'),
(1790, 1, '_adm_stg_cpt_category_pwa_manifest'),
(1791, 1, '_adm_stg_cpt_option_sys_pwa_manifest_name'),
(1792, 1, '_adm_stg_cpt_option_sys_pwa_manifest_short_name'),
(1793, 1, '_adm_stg_cpt_option_sys_pwa_manifest_description'),
(1794, 1, '_adm_stg_cpt_option_sys_pwa_manifest_background_color'),
(1795, 1, '_adm_stg_cpt_option_sys_pwa_manifest_theme_color'),
(1796, 1, '_adm_stg_cpt_category_pwa_sw'),
(1797, 1, '_adm_stg_cpt_option_sys_pwa_sw_enable'),
(1798, 1, '_adm_stg_cpt_option_sys_pwa_sw_cache'),
(1799, 1, '_adm_stg_cpt_option_sys_pwa_sw_offline'),
(1800, 1, '_adm_stg_cpt_category_sockets'),
(1801, 1, '_adm_stg_cpt_option_sys_sockets_type'),
(1802, 1, '_adm_stg_cpt_option_sys_sockets_url'),
(1803, 1, '_adm_stg_cpt_option_sys_sockets_app_id'),
(1804, 1, '_adm_stg_cpt_option_sys_sockets_key'),
(1805, 1, '_adm_stg_cpt_option_sys_sockets_secret'),
(1806, 1, '_adm_stg_cpt_option_sys_sockets_type_sys_sockets_disabled'),
(1807, 1, '_adm_stg_cpt_option_sys_sockets_type_sys_sockets_soketi'),
(1808, 1, '_adm_stg_cpt_option_sys_std_show_header_left'),
(1809, 1, '_adm_stg_cpt_option_sys_std_show_header_left_search'),
(1810, 1, '_adm_stg_cpt_option_sys_std_show_header_center'),
(1811, 1, '_adm_stg_cpt_option_sys_std_show_header_right'),
(1812, 1, '_adm_stg_cpt_option_sys_std_show_header_right_search'),
(1813, 1, '_adm_stg_cpt_option_sys_std_show_header_right_site'),
(1814, 1, '_adm_stg_cpt_option_sys_std_show_launcher_left'),
(1815, 1, '_adm_stg_cpt_option_sys_embed_microlink_key'),
(1816, 1, '_adm_stg_cpt_type_system'),
(1817, 1, '_adm_stg_scs_save'),
(1818, 1, '_adm_stg_err_save_error_message'),
(1819, 1, '_adm_stg_err_cannot_perform'),
(1820, 1, '_adm_stg_err_mix_already_exists'),
(1821, 1, '_adm_stg_txt_import_popup'),
(1822, 1, '_adm_stg_msg_imported'),
(1823, 1, '_adm_stg_err_import_wrong_format'),
(1824, 1, '_adm_stg_txt_create_mix_popup'),
(1825, 1, '_adm_stg_txt_import_mix_popup'),
(1826, 1, '_adm_stg_txt_mix_dark'),
(1827, 1, '_adm_stg_txt_mix_duplicate'),
(1828, 1, '_adm_stg_txt_mix_duplicate_inf'),
(1829, 1, '_adm_stg_txt_mix_title'),
(1830, 1, '_adm_stg_txt_mix_title_inf'),
(1831, 1, '_adm_stg_txt_mix_title_err'),
(1832, 1, '_adm_stg_txt_mix_system'),
(1833, 1, '_adm_stg_err_remove_old_image'),
(1834, 1, '_adm_str_cpt_files_file'),
(1835, 1, '_adm_str_cpt_files_version'),
(1836, 1, '_adm_str_err_cannot_connect_to_ftp'),
(1837, 1, '_adm_str_err_cannot_unzip_package'),
(1838, 1, '_adm_str_err_cannot_write'),
(1839, 1, '_adm_str_err_destination_not_valid'),
(1840, 1, '_adm_str_err_download_failed'),
(1841, 1, '_adm_str_err_files_copy_failed'),
(1842, 1, '_adm_str_err_no_ftp_info'),
(1843, 1, '_adm_str_err_no_product_info'),
(1844, 1, '_adm_str_err_wrong_package_format'),
(1845, 1, '_adm_str_err_zip_not_available'),
(1846, 1, '_adm_str_msg_download_scheduled'),
(1847, 1, '_adm_str_msg_download_and_install_scheduled'),
(1848, 1, '_adm_str_msg_download_successfully'),
(1849, 1, '_adm_str_msg_download_and_install_successfully'),
(1850, 1, '_adm_str_txt_discount_csign'),
(1851, 1, '_adm_str_txt_items_by'),
(1852, 1, '_adm_str_txt_or'),
(1853, 1, '_adm_str_txt_per_week'),
(1854, 1, '_adm_str_txt_per_week_short'),
(1855, 1, '_adm_str_txt_per_month'),
(1856, 1, '_adm_str_txt_per_month_short'),
(1857, 1, '_adm_str_txt_per_year'),
(1858, 1, '_adm_str_txt_per_year_short'),
(1859, 1, '_adm_str_txt_price_free'),
(1860, 1, '_adm_str_txt_price_recurring'),
(1861, 1, '_adm_str_txt_price_single'),
(1862, 1, '_adm_str_txt_pv_category'),
(1863, 1, '_adm_str_txt_pv_created'),
(1864, 1, '_adm_str_txt_pv_description'),
(1865, 1, '_adm_str_txt_pv_discount'),
(1866, 1, '_adm_str_txt_pv_discount_off_csign'),
(1867, 1, '_adm_str_txt_pv_price'),
(1868, 1, '_adm_str_txt_pv_rent'),
(1869, 1, '_adm_str_txt_pv_stats'),
(1870, 1, '_adm_str_txt_pv_stats_votes'),
(1871, 1, '_adm_str_txt_pv_stats_reviews'),
(1872, 1, '_adm_str_txt_pv_stats_views'),
(1873, 1, '_adm_str_txt_pv_tags'),
(1874, 1, '_adm_str_txt_pv_title'),
(1875, 1, '_adm_str_txt_pv_updated'),
(1876, 1, '_adm_str_txt_pv_vendor'),
(1877, 1, '_adm_str_txt_pv_version'),
(1878, 1, '_adm_str_txt_pv_version_mask'),
(1879, 1, '_adm_str_txt_update_from_to'),
(1880, 1, '_adm_strg_err_cannot_process_action'),
(1881, 1, '_adm_strg_err_files_delete'),
(1882, 1, '_adm_strg_msg_files_delete'),
(1883, 1, '_adm_strg_err_images_delete'),
(1884, 1, '_adm_strg_msg_images_delete'),
(1885, 1, '_adm_strg_err_images_resize'),
(1886, 1, '_adm_strg_txt_file_name'),
(1887, 1, '_adm_strg_txt_path'),
(1888, 1, '_adm_strg_txt_mime_type'),
(1889, 1, '_adm_strg_txt_added'),
(1890, 1, '_adm_strg_btn_delete'),
(1891, 1, '_adm_strg_btn_add'),
(1892, 1, '_adm_strg_btn_cancel'),
(1893, 1, '_adm_strg_btn_done'),
(1894, 1, '_adm_strg_btn_download'),
(1895, 1, '_adm_strg_btn_resize'),
(1896, 1, '_adm_strg_txt_files_add_popup'),
(1897, 1, '_adm_strg_txt_images_add_popup'),
(1898, 1, '_adm_strg_txt_images_resize_popup'),
(1899, 1, '_adm_strg_txt_size_mime_type'),
(1900, 1, '_adm_strg_txt_width'),
(1901, 1, '_adm_strg_err_width'),
(1902, 1, '_adm_strg_txt_height'),
(1903, 1, '_adm_strg_err_height'),
(1904, 1, '_adm_tmi_cpt_account'),
(1905, 1, '_adm_tmi_cpt_assistant'),
(1906, 1, '_adm_tmi_cpt_site'),
(1907, 1, '_adm_tmi_cpt_search'),
(1908, 1, '_adm_tmi_cpt_scheme'),
(1909, 1, '_adm_tmi_cpt_tour'),
(1910, 1, '_adm_tmi_cpt_launcher'),
(1911, 1, '_adm_txt_active_api'),
(1912, 1, '_adm_txt_assistant_popup_title'),
(1913, 1, '_adm_txt_confirm_cancel'),
(1914, 1, '_adm_txt_confirm_ok'),
(1915, 1, '_adm_txt_forgot_password'),
(1916, 1, '_adm_txt_form_view_missing'),
(1917, 1, '_adm_txt_login_password'),
(1918, 1, '_adm_txt_login_password_placeholder'),
(1919, 1, '_adm_txt_login_email'),
(1920, 1, '_adm_txt_login_email_placeholder'),
(1921, 1, '_adm_txt_login_title'),
(1922, 1, '_adm_txt_login_subtitle'),
(1923, 1, '_adm_txt_module_custom'),
(1924, 1, '_adm_txt_module_skeletons'),
(1925, 1, '_adm_txt_module_system'),
(1926, 1, '_adm_txt_modules_check_dependencies'),
(1927, 1, '_adm_txt_modules_check_module_exists'),
(1928, 1, '_adm_txt_modules_check_module_matches'),
(1929, 1, '_adm_txt_modules_check_module_hash'),
(1930, 1, '_adm_txt_modules_check_module_version'),
(1931, 1, '_adm_txt_modules_check_script_version'),
(1932, 1, '_adm_txt_modules_clear_db_cache'),
(1933, 1, '_adm_txt_modules_clear_template_cache'),
(1934, 1, '_adm_txt_modules_delete'),
(1935, 1, '_adm_txt_modules_disable'),
(1936, 1, '_adm_txt_modules_discontinued'),
(1937, 1, '_adm_txt_modules_enable'),
(1938, 1, '_adm_txt_modules_executable'),
(1939, 1, '_adm_txt_modules_execute_sql'),
(1940, 1, '_adm_txt_modules_ftp_access'),
(1941, 1, '_adm_txt_modules_install'),
(1942, 1, '_adm_txt_modules_install_language'),
(1943, 1, '_adm_txt_modules_login'),
(1944, 1, '_adm_txt_modules_market'),
(1945, 1, '_adm_txt_modules_move_sources'),
(1946, 1, '_adm_txt_modules_operation_update'),
(1947, 1, '_adm_txt_modules_package_module'),
(1948, 1, '_adm_txt_modules_package_to_upload'),
(1949, 1, '_adm_txt_modules_params_used'),
(1950, 1, '_adm_txt_modules_password'),
(1951, 1, '_adm_txt_modules_process_action_success'),
(1952, 1, '_adm_txt_modules_process_connections'),
(1953, 1, '_adm_txt_modules_process_deleted_profiles'),
(1954, 1, '_adm_txt_modules_process_menu_triggers'),
(1955, 1, '_adm_txt_modules_process_page_triggers'),
(1956, 1, '_adm_txt_modules_process_storages'),
(1957, 1, '_adm_txt_modules_process_failed'),
(1958, 1, '_adm_txt_modules_process_success'),
(1959, 1, '_adm_txt_modules_process_esearches'),
(1960, 1, '_adm_txt_modules_register_transcoders'),
(1961, 1, '_adm_txt_modules_unregister_transcoders'),
(1962, 1, '_adm_txt_modules_show_conclusion'),
(1963, 1, '_adm_txt_modules_show_introduction'),
(1964, 1, '_adm_txt_modules_update_files'),
(1965, 1, '_adm_txt_modules_update_relations'),
(1966, 1, '_adm_txt_modules_update_relations_for_all'),
(1967, 1, '_adm_txt_modules_update_languages'),
(1968, 1, '_adm_txt_modules_update_latest'),
(1969, 1, '_adm_txt_modules_update_text'),
(1970, 1, '_adm_txt_modules_updates'),
(1971, 1, '_adm_txt_modules_upload'),
(1972, 1, '_adm_txt_modules_writable'),
(1973, 1, '_adm_txt_pca_active'),
(1974, 1, '_adm_txt_pca_bookmark'),
(1975, 1, '_adm_txt_pca_featured'),
(1976, 1, '_adm_txt_pca_rearrange'),
(1977, 1, '_adm_txt_remember_me'),
(1978, 1, '_adm_txt_select_module'),
(1979, 1, '_adm_txt_settings'),
(1980, 1, '_adm_txt_show_actions'),
(1981, 1, '_adm_txt_show_help'),
(1982, 1, '_adm_txt_show_help_content_empty'),
(1983, 1, '_adm_txt_uninstall'),
(1984, 1, '_adm_wgt_cpt_api'),
(1985, 1, '_adm_wgt_cpt_agents'),
(1986, 1, '_adm_wgt_cpt_audit'),
(1987, 1, '_adm_wgt_cpt_badges'),
(1988, 1, '_adm_wgt_cpt_builder_forms'),
(1989, 1, '_adm_wgt_cpt_builder_menus'),
(1990, 1, '_adm_wgt_cpt_builder_pages'),
(1991, 1, '_adm_wgt_cpt_builder_permissions'),
(1992, 1, '_adm_wgt_cpt_builder_roles'),
(1993, 1, '_adm_wgt_cpt_dashboard'),
(1994, 1, '_adm_wgt_cpt_designer'),
(1995, 1, '_adm_wgt_cpt_polyglot'),
(1996, 1, '_adm_wgt_cpt_settings'),
(1997, 1, '_adm_wgt_cpt_storages'),
(1998, 1, '_adm_wgt_cpt_store'),
(1999, 1, '_cmt_err_not_enabled'),
(2000, 1, '_cmt_block_comments_title'),
(2001, 1, '_cmt_browse_all'),
(2002, 1, '_cmt_browse_friends'),
(2003, 1, '_cmt_browse_head'),
(2004, 1, '_cmt_browse_popular'),
(2005, 1, '_cmt_browse_subscriptions'),
(2006, 1, '_cmt_browse_tail'),
(2007, 1, '_cmt_display_flat'),
(2008, 1, '_cmt_display_threaded'),
(2009, 1, '_cmt_err_cannot_perform_action'),
(2010, 1, '_cmt_msg_login_required'),
(2011, 1, '_cmt_page_view_header'),
(2012, 1, '_cmt_page_view_title'),
(2013, 1, '_cmt_page_view_title_author'),
(2014, 1, '_cmt_page_view_title_content'),
(2015, 1, '_cmt_download_attached_file'),
(2016, 1, '_cmt_view_attached_image'),
(2017, 1, '_cmt_load_more_comments_head'),
(2018, 1, '_cmt_load_more_comments_tail'),
(2019, 1, '_cmt_load_more_comments_popular'),
(2020, 1, '_cmt_load_more_replies_head'),
(2021, 1, '_cmt_load_more_replies_tail'),
(2022, 1, '_cmt_load_more_replies_popular'),
(2023, 1, '_cmt_txt_new_content'),
(2024, 1, '_cmt_txt_link_show'),
(2025, 1, '_cmt_txt_link_reply'),
(2026, 1, '_cmt_txt_added_sample'),
(2027, 1, '_cmt_txt_or'),
(2028, 1, '_cmt_txt_pinned'),
(2029, 1, '_cmt_txt_sample_comment_single'),
(2030, 1, '_cmt_txt_sample_comment_single_with_article'),
(2031, 1, '_cmt_txt_sample_reaction_single'),
(2032, 1, '_cmt_txt_sample_reply_to'),
(2033, 1, '_cmt_txt_sample_score_up_single'),
(2034, 1, '_cmt_txt_sample_score_down_single'),
(2035, 1, '_cmt_txt_sample_vote_single'),
(2036, 1, '_cmt_txt_added_sample_custom'),
(2037, 1, '_cmt_txt_n_comments'),
(2038, 1, '_cmt_txt_do'),
(2039, 1, '_cmt_txt_counter'),
(2040, 1, '_cmt_txt_counter_empty'),
(2041, 1, '_cmt_txt_min_form_placeholder'),
(2042, 1, '_cmt_txt_note_approve_pending'),
(2043, 1, '_cmt_nts_popup_view_title'),
(2044, 1, '_cmt_nts_popup_view_title_rc'),
(2045, 1, '_cmt_rvw_block_rating_title'),
(2046, 1, '_cmt_rvw_block_reviews_title'),
(2047, 1, '_cmt_rvw_txt_min_form_placeholder'),
(2048, 1, '_cmt_rvw_txt_sample_comment_single'),
(2049, 1, '_cmt_rvw_txt_sample_reaction_single'),
(2050, 1, '_cmt_rvw_txt_sample_score_up_single'),
(2051, 1, '_cmt_rvw_txt_sample_score_down_single'),
(2052, 1, '_cmt_rvw_txt_sample_vote_single'),
(2053, 1, '_cmt_rvw_txt_empty'),
(2054, 1, '_cmt_rvw_txt_do'),
(2055, 1, '_copyright'),
(2056, 1, '_delete'),
(2057, 1, '_error occured'),
(2058, 1, '_from'),
(2059, 1, '_hidden_comment'),
(2060, 1, '_in_reply_to'),
(2061, 1, '_in_reply_to_x'),
(2062, 1, '_item'),
(2063, 1, '_items'),
(2064, 1, '_member_banned'),
(2065, 1, '_message_subject'),
(2066, 1, '_mma_comments_edit_own'),
(2067, 1, '_mma_comments_post'),
(2068, 1, '_mma_comments_remove_own'),
(2069, 1, '_mma_comments_vote'),
(2070, 1, '_mma_get_other_members_emails'),
(2071, 1, '_mma_send_greetings'),
(2072, 1, '_mma_send_messages'),
(2073, 1, '_mma_view_profiles'),
(2074, 1, '_mma_vote'),
(2075, 1, '_month_next'),
(2076, 1, '_month_prev'),
(2077, 1, '_no limit'),
(2078, 1, '_powered_by'),
(2079, 1, '_see_more'),
(2080, 1, '_show_replacement'),
(2081, 1, '_sys_accept'),
(2082, 1, '_sys_accounts'),
(2083, 1, '_sys_access_denied_to_private_content'),
(2084, 1, '_sys_actions'),
(2085, 1, '_sys_active'),
(2086, 1, '_sys_account_settings_email_successfully_submitted'),
(2087, 1, '_sys_account_settings_pwd_successfully_submitted'),
(2088, 1, '_sys_account_settings_info_successfully_submitted'),
(2089, 1, '_sys_acc_confirmation_type_none'),
(2090, 1, '_sys_acc_confirmation_type_email'),
(2091, 1, '_sys_acc_confirmation_type_phone'),
(2092, 1, '_sys_acc_confirmation_type_email_and_phone'),
(2093, 1, '_sys_acc_confirmation_type_email_or_phone'),
(2094, 1, '_sys_acl_action_account'),
(2095, 1, '_sys_acl_action_chart_view'),
(2096, 1, '_sys_acl_action_chart_view_desc'),
(2097, 1, '_sys_acl_action_comments_edit_all'),
(2098, 1, '_sys_acl_action_comments_edit_own'),
(2099, 1, '_sys_acl_action_comments_pin'),
(2100, 1, '_sys_acl_action_comments_post'),
(2101, 1, '_sys_acl_action_comments_remove_all'),
(2102, 1, '_sys_acl_action_comments_remove_in_own_content'),
(2103, 1, '_sys_acl_action_comments_remove_in_group_context'),
(2104, 1, '_sys_acl_action_comments_remove_own'),
(2105, 1, '_sys_acl_action_connect'),
(2106, 1, '_sys_acl_action_create_account'),
(2107, 1, '_sys_acl_action_create_account_desc'),
(2108, 1, '_sys_acl_action_delete_account'),
(2109, 1, '_sys_acl_action_delete_account_desc'),
(2110, 1, '_sys_acl_action_every_period'),
(2111, 1, '_sys_acl_action_favorite'),
(2112, 1, '_sys_acl_action_favorite_view'),
(2113, 1, '_sys_acl_action_feature'),
(2114, 1, '_sys_acl_action_view_view'),
(2115, 1, '_sys_acl_action_view_view_viewers_own'),
(2116, 1, '_sys_acl_action_limit_reached'),
(2117, 1, '_sys_acl_action_not_allowed'),
(2118, 1, '_sys_acl_action_not_allowed_after'),
(2119, 1, '_sys_acl_action_not_allowed_before'),
(2120, 1, '_sys_acl_action_pending'),
(2121, 1, '_sys_acl_action_post_links'),
(2122, 1, '_sys_acl_action_post_links_desc'),
(2123, 1, '_sys_acl_action_use_macros'),
(2124, 1, '_sys_acl_action_use_macros_desc'),
(2125, 1, '_sys_acl_action_set_acl_level'),
(2126, 1, '_sys_acl_action_set_acl_level_desc'),
(2127, 1, '_sys_acl_action_show_membership_levels_in_privacy_groups'),
(2128, 1, '_sys_acl_action_show_membership_levels_in_privacy_groups_desc'),
(2129, 1, '_sys_acl_action_show_membership_private_info'),
(2130, 1, '_sys_acl_action_show_membership_private_info_desc'),
(2131, 1, '_sys_acl_action_set_badge'),
(2132, 1, '_sys_acl_action_set_badge_desc'),
(2133, 1, '_sys_acl_action_switch_to_any_profile'),
(2134, 1, '_sys_acl_action_switch_to_any_profile_desc'),
(2135, 1, '_sys_acl_action_set_acl_as_privacy'),
(2136, 1, '_sys_acl_action_set_acl_as_privacy_desc'),
(2137, 1, '_sys_acl_action_set_form_fields_privacy'),
(2138, 1, '_sys_acl_action_set_form_fields_privacy_desc'),
(2139, 1, '_sys_acl_action_suspended'),
(2140, 1, '_sys_acl_action_unauthenticated'),
(2141, 1, '_sys_acl_action_unconfirmed'),
(2142, 1, '_sys_acl_action_vote'),
(2143, 1, '_sys_acl_action_vote_view'),
(2144, 1, '_sys_acl_action_vote_view_voters'),
(2145, 1, '_sys_acl_action_report'),
(2146, 1, '_sys_acl_action_report_view'),
(2147, 1, '_sys_acl_action_add_block'),
(2148, 1, '_sys_acl_action_edit_block'),
(2149, 1, '_sys_acl_action_translate_block'),
(2150, 1, '_sys_acl_action_delete_version'),
(2151, 1, '_sys_acl_action_delete_block'),
(2152, 1, '_sys_acl_action_history'),
(2153, 1, '_sys_acl_action_unsafe'),
(2154, 1, '_sys_acl_start'),
(2155, 1, '_sys_acl_expire'),
(2156, 1, '_sys_acl_expire_never'),
(2157, 1, '_sys_acl_state'),
(2158, 1, '_sys_acl_state_trial'),
(2159, 1, '_sys_agents_form_field_err_enter'),
(2160, 1, '_sys_agents_form_field_err_select'),
(2161, 1, '_sys_agents_automators_txt_active'),
(2162, 1, '_sys_agents_automators_txt_name'),
(2163, 1, '_sys_agents_automators_txt_type'),
(2164, 1, '_sys_agents_automators_txt_alert_unit'),
(2165, 1, '_sys_agents_automators_txt_alert_action'),
(2166, 1, '_sys_agents_automators_txt_scheduler_time'),
(2167, 1, '_sys_agents_automators_txt_model_id'),
(2168, 1, '_sys_agents_automators_txt_profile_id'),
(2169, 1, '_sys_agents_automators_txt_message_id'),
(2170, 1, '_sys_agents_automators_txt_messages'),
(2171, 1, '_sys_agents_automators_txt_code'),
(2172, 1, '_sys_agents_automators_txt_added'),
(2173, 1, '_sys_agents_automators_txt_status'),
(2174, 1, '_sys_agents_automators_btn_add'),
(2175, 1, '_sys_agents_automators_btn_tune'),
(2176, 1, '_sys_agents_automators_btn_approve'),
(2177, 1, '_sys_agents_automators_popup_add'),
(2178, 1, '_sys_agents_automators_popup_edit'),
(2179, 1, '_sys_agents_automators_field_name'),
(2180, 1, '_sys_agents_automators_field_model_id'),
(2181, 1, '_sys_agents_automators_field_profile_id'),
(2182, 1, '_sys_agents_automators_field_profile_id_inf'),
(2183, 1, '_sys_agents_automators_field_type'),
(2184, 1, '_sys_agents_automators_field_type_event'),
(2185, 1, '_sys_agents_automators_field_type_scheduler'),
(2186, 1, '_sys_agents_automators_field_type_webhook'),
(2187, 1, '_sys_agents_automators_field_alert_unit'),
(2188, 1, '_sys_agents_automators_field_alert_action'),
(2189, 1, '_sys_agents_automators_field_scheduler_time'),
(2190, 1, '_sys_agents_automators_field_providers'),
(2191, 1, '_sys_agents_automators_field_providers_add'),
(2192, 1, '_sys_agents_automators_field_helpers'),
(2193, 1, '_sys_agents_automators_field_helpers_add'),
(2194, 1, '_sys_agents_automators_field_assistants'),
(2195, 1, '_sys_agents_automators_field_assistants_add'),
(2196, 1, '_sys_agents_automators_field_message'),
(2197, 1, '_sys_agents_automators_field_message_err'),
(2198, 1, '_sys_agents_automators_field_status_auto'),
(2199, 1, '_sys_agents_automators_field_status_manual'),
(2200, 1, '_sys_agents_automators_field_status_ready'),
(2201, 1, '_sys_agents_automators_err_event_not_found'),
(2202, 1, '_sys_agents_automators_err_cannot_get_code'),
(2203, 1, '_sys_agents_automators_txt_eval_response'),
(2204, 1, '_sys_agents_providers_txt_active'),
(2205, 1, '_sys_agents_providers_txt_provider_name'),
(2206, 1, '_sys_agents_providers_txt_provider_type'),
(2207, 1, '_sys_agents_providers_txt_added'),
(2208, 1, '_sys_agents_providers_btn_add'),
(2209, 1, '_sys_agents_providers_btn_info'),
(2210, 1, '_sys_agents_providers_btn_edit'),
(2211, 1, '_sys_agents_providers_btn_delete'),
(2212, 1, '_sys_agents_providers_popup_add'),
(2213, 1, '_sys_agents_providers_popup_edit'),
(2214, 1, '_sys_agents_providers_popup_view'),
(2215, 1, '_sys_agents_providers_field_type_id'),
(2216, 1, '_sys_agents_providers_field_type_id_err'),
(2217, 1, '_sys_agents_providers_field_name'),
(2218, 1, '_sys_agents_pvd_cpt_shopify_admin'),
(2219, 1, '_sys_agents_pvd_opt_cpt_active'),
(2220, 1, '_sys_agents_pvd_opt_dsc_active'),
(2221, 1, '_sys_agents_pvd_opt_cpt_shop_domain'),
(2222, 1, '_sys_agents_pvd_opt_dsc_shop_domain'),
(2223, 1, '_sys_agents_pvd_opt_cpt_access_token'),
(2224, 1, '_sys_agents_pvd_opt_dsc_access_token'),
(2225, 1, '_sys_agents_pvd_opt_cpt_secret_key'),
(2226, 1, '_sys_agents_pvd_opt_dsc_secret_key'),
(2227, 1, '_sys_agents_pvd_opt_cpt_webhook_url'),
(2228, 1, '_sys_agents_pvd_opt_dsc_webhook_url'),
(2229, 1, '_sys_agents_helpers_txt_active'),
(2230, 1, '_sys_agents_helpers_txt_name'),
(2231, 1, '_sys_agents_helpers_txt_model_id'),
(2232, 1, '_sys_agents_helpers_txt_profile_id'),
(2233, 1, '_sys_agents_helpers_txt_prompt'),
(2234, 1, '_sys_agents_helpers_txt_added'),
(2235, 1, '_sys_agents_helpers_btn_add'),
(2236, 1, '_sys_agents_helpers_btn_tune'),
(2237, 1, '_sys_agents_helpers_field_name'),
(2238, 1, '_sys_agents_helpers_field_model_id'),
(2239, 1, '_sys_agents_helpers_field_profile_id'),
(2240, 1, '_sys_agents_helpers_field_profile_id_inf'),
(2241, 1, '_sys_agents_helpers_field_description'),
(2242, 1, '_sys_agents_helpers_field_prompt'),
(2243, 1, '_sys_agents_helpers_field_prompt_err'),
(2244, 1, '_sys_agents_helpers_field_message'),
(2245, 1, '_sys_agents_helpers_field_message_err'),
(2246, 1, '_sys_agents_helpers_field_result'),
(2247, 1, '_sys_agents_helpers_popup_add'),
(2248, 1, '_sys_agents_helpers_popup_edit'),
(2249, 1, '_sys_agents_assistants_txt_active'),
(2250, 1, '_sys_agents_assistants_txt_name'),
(2251, 1, '_sys_agents_assistants_txt_model_id'),
(2252, 1, '_sys_agents_assistants_txt_profile_id'),
(2253, 1, '_sys_agents_assistants_txt_prompt'),
(2254, 1, '_sys_agents_assistants_txt_added'),
(2255, 1, '_sys_agents_assistants_txt_assistant'),
(2256, 1, '_sys_agents_assistants_txt_codes_onclick'),
(2257, 1, '_sys_agents_assistants_txt_codes_button'),
(2258, 1, '_sys_agents_assistants_txt_add_knowledge'),
(2259, 1, '_sys_agents_assistants_txt_ask'),
(2260, 1, '_sys_agents_assistants_btn_add'),
(2261, 1, '_sys_agents_assistants_btn_chats'),
(2262, 1, '_sys_agents_assistants_btn_files'),
(2263, 1, '_sys_agents_assistants_btn_codes'),
(2264, 1, '_sys_agents_assistants_field_name'),
(2265, 1, '_sys_agents_assistants_field_model_id'),
(2266, 1, '_sys_agents_assistants_field_profile_id'),
(2267, 1, '_sys_agents_assistants_field_profile_id_inf'),
(2268, 1, '_sys_agents_assistants_field_description'),
(2269, 1, '_sys_agents_assistants_field_prompt'),
(2270, 1, '_sys_agents_assistants_field_prompt_err'),
(2271, 1, '_sys_agents_assistants_field_result'),
(2272, 1, '_sys_agents_assistants_popup_add'),
(2273, 1, '_sys_agents_assistants_popup_edit'),
(2274, 1, '_sys_agents_assistants_chats_txt_name'),
(2275, 1, '_sys_agents_assistants_chats_txt_type'),
(2276, 1, '_sys_agents_assistants_chats_txt_type_1'),
(2277, 1, '_sys_agents_assistants_chats_txt_type_10'),
(2278, 1, '_sys_agents_assistants_chats_txt_description'),
(2279, 1, '_sys_agents_assistants_chats_txt_messages'),
(2280, 1, '_sys_agents_assistants_chats_txt_added'),
(2281, 1, '_sys_agents_assistants_chats_txt_stored'),
(2282, 1, '_sys_agents_assistants_chats_txt_chat'),
(2283, 1, '_sys_agents_assistants_chats_btn_add'),
(2284, 1, '_sys_agents_assistants_chats_btn_chat'),
(2285, 1, '_sys_agents_assistants_chats_btn_store'),
(2286, 1, '_sys_agents_assistants_chats_btn_unstore'),
(2287, 1, '_sys_agents_assistants_chats_field_name'),
(2288, 1, '_sys_agents_assistants_chats_field_description'),
(2289, 1, '_sys_agents_assistants_chats_popup_add'),
(2290, 1, '_sys_agents_assistants_chats_popup_edit'),
(2291, 1, '_sys_agents_assistants_chats_msg_loading'),
(2292, 1, '_sys_agents_assistants_chats_err_no_response'),
(2293, 1, '_sys_agents_assistants_files_txt_name'),
(2294, 1, '_sys_agents_assistants_files_txt_size'),
(2295, 1, '_sys_agents_assistants_files_txt_status'),
(2296, 1, '_sys_agents_assistants_files_txt_status_in_progress'),
(2297, 1, '_sys_agents_assistants_files_txt_status_completed'),
(2298, 1, '_sys_agents_assistants_files_txt_status_failed'),
(2299, 1, '_sys_agents_assistants_files_txt_status_cancelled'),
(2300, 1, '_sys_agents_assistants_files_txt_added'),
(2301, 1, '_sys_agents_assistants_files_btn_add'),
(2302, 1, '_sys_agents_assistants_files_btn_sync'),
(2303, 1, '_sys_agents_assistants_files_btn_delete'),
(2304, 1, '_sys_agents_assistants_files_field_file'),
(2305, 1, '_sys_agents_assistants_files_popup_add'),
(2306, 1, '_sys_agents_assistants_field_kwg_type'),
(2307, 1, '_sys_agents_assistants_field_kwg_type_text'),
(2308, 1, '_sys_agents_assistants_field_kwg_type_faq'),
(2309, 1, '_sys_agents_assistants_field_kwg_text'),
(2310, 1, '_sys_agents_assistants_field_kwg_faq_q'),
(2311, 1, '_sys_agents_assistants_field_kwg_faq_a'),
(2312, 1, '_sys_agents_assistants_popup_add_knowledge'),
(2313, 1, '_sys_agents_assistants_popup_ask'),
(2314, 1, '_sys_agents_assistants_msg_knowledge_added'),
(2315, 1, '_sys_audit_content_info_popup_title'),
(2316, 1, '_sys_audit_action_edit_content'),
(2317, 1, '_sys_audit_action_add_content'),
(2318, 1, '_sys_audit_action_detete_content'),
(2319, 1, '_sys_audit_action_edit_comment'),
(2320, 1, '_sys_audit_action_add_comment'),
(2321, 1, '_sys_audit_action_delete_comment'),
(2322, 1, '_sys_audit_action_feature'),
(2323, 1, '_sys_audit_action_unfeature'),
(2324, 1, '_sys_audit_action_resolve'),
(2325, 1, '_sys_audit_action_group_to_admins'),
(2326, 1, '_sys_audit_action_group_from_admins'),
(2327, 1, '_sys_audit_action_group_role_changed'),
(2328, 1, '_sys_audit_action_group_join_request_accepted'),
(2329, 1, '_sys_audit_action_account_change_role_to_3'),
(2330, 1, '_sys_audit_action_account_change_role_to_1'),
(2331, 1, '_sys_audit_action_account_unlock'),
(2332, 1, '_sys_audit_action_account_login'),
(2333, 1, '_sys_audit_action_account_failed_login_attempt'),
(2334, 1, '_sys_audit_action_account_logout'),
(2335, 1, '_sys_audit_action_account_reset_password'),
(2336, 1, '_sys_audit_action_account_resend_confirmation_email'),
(2337, 1, '_sys_audit_action_account_deleted_with_content'),
(2338, 1, '_sys_audit_action_account_deleted'),
(2339, 1, '_sys_audit_action_account_email_changed'),
(2340, 1, '_sys_audit_action_account_activated'),
(2341, 1, '_sys_audit_action_account_suspended'),
(2342, 1, '_sys_audit_action_content_enabled'),
(2343, 1, '_sys_audit_action_content_disabled'),
(2344, 1, '_sys_audit_action_set_membership'),
(2345, 1, '_sys_audit_action_set_status_approve'),
(2346, 1, '_sys_audit_action_set_status_active'),
(2347, 1, '_sys_audit_action_set_status_disapprove'),
(2348, 1, '_sys_audit_action_set_status_suspended'),
(2349, 1, '_sys_audit_action_report'),
(2350, 1, '_sys_audit_action_report_comment'),
(2351, 1, '_sys_audit_action_lock'),
(2352, 1, '_sys_audit_action_unlock'),
(2353, 1, '_sys_audit_action_stick'),
(2354, 1, '_sys_audit_action_unstick'),
(2355, 1, '_sys_audit_action_promote'),
(2356, 1, '_sys_audit_action_unpromote'),
(2357, 1, '_sys_add_friend'),
(2358, 1, '_sys_add_relation'),
(2359, 1, '_sys_adm_installed'),
(2360, 1, '_sys_admin_apply'),
(2361, 1, '_sys_admin_filter'),
(2362, 1, '_sys_audit_filter_profile_select'),
(2363, 1, '_sys_audit_filter_action_select'),
(2364, 1, '_sys_audit_cron_jobs'),
(2365, 1, '_sys_audit_cron_jobs_exec_time'),
(2366, 1, '_sys_audit_header_manual_audit'),
(2367, 1, '_sys_audit_header_requirements'),
(2368, 1, '_sys_audit_header_site_optimization'),
(2369, 1, '_sys_audit_header_site_setup'),
(2370, 1, '_sys_audit_mail_sending'),
(2371, 1, '_sys_audit_msg_apache_module_fail'),
(2372, 1, '_sys_audit_msg_cron_jobs'),
(2373, 1, '_sys_audit_msg_optimization_fail'),
(2374, 1, '_sys_audit_msg_optimization_warn'),
(2375, 1, '_sys_audit_msg_x_based_cache_engine'),
(2376, 1, '_sys_audit_msg_ffmpeg'),
(2377, 1, '_sys_audit_msg_hardware_requirements'),
(2378, 1, '_sys_audit_msg_mail_send_failed'),
(2379, 1, '_sys_audit_msg_mail_sending'),
(2380, 1, '_sys_audit_msg_mail_sent'),
(2381, 1, '_sys_audit_msg_manual_audit'),
(2382, 1, '_sys_audit_msg_must_be'),
(2383, 1, '_sys_audit_msg_optimization_apache_module'),
(2384, 1, '_sys_audit_msg_permissions'),
(2385, 1, '_sys_audit_msg_php_accelerator_missing'),
(2386, 1, '_sys_audit_msg_php_setup_inefficient'),
(2387, 1, '_sys_audit_msg_serverside_compression'),
(2388, 1, '_sys_audit_msg_should_be'),
(2389, 1, '_sys_audit_msg_userside_caching'),
(2390, 1, '_sys_audit_msg_value_checking_failed'),
(2391, 1, '_sys_audit_msg_version_is_incompatible'),
(2392, 1, '_sys_audit_msg_version_is_outdated'),
(2393, 1, '_sys_audit_permissions'),
(2394, 1, '_sys_audit_php_accelerator'),
(2395, 1, '_sys_audit_php_setup'),
(2396, 1, '_sys_audit_section_hardware'),
(2397, 1, '_sys_audit_section_os'),
(2398, 1, '_sys_audit_section_webserver'),
(2399, 1, '_sys_audit_serverside_compression'),
(2400, 1, '_sys_audit_title_fail'),
(2401, 1, '_sys_audit_title_ok'),
(2402, 1, '_sys_audit_title_undef'),
(2403, 1, '_sys_audit_title_warn'),
(2404, 1, '_sys_audit_userside_caching'),
(2405, 1, '_sys_audit_version'),
(2406, 1, '_sys_audit_version_script'),
(2407, 1, '_sys_block_type_custom'),
(2408, 1, '_sys_block_type_html'),
(2409, 1, '_sys_block_type_image'),
(2410, 1, '_sys_block_type_lang'),
(2411, 1, '_sys_block_type_creative'),
(2412, 1, '_sys_block_type_bento_grid'),
(2413, 1, '_sys_block_type_menu'),
(2414, 1, '_sys_block_type_raw'),
(2415, 1, '_sys_block_type_rss'),
(2416, 1, '_sys_block_type_wiki'),
(2417, 1, '_sys_block_type_service'),
(2418, 1, '_sys_block_types_custom'),
(2419, 1, '_sys_block_types_skeletons'),
(2420, 1, '_sys_block_types_system'),
(2421, 1, '_sys_cmts'),
(2422, 1, '_sys_cmts_administration_grid_column_title_adm_active'),
(2423, 1, '_sys_cmts_administration_grid_column_title_adm_cmt_module'),
(2424, 1, '_sys_cmts_administration_grid_column_title_adm_cmt_text'),
(2425, 1, '_sys_cmts_administration_grid_column_title_adm_cmt_time'),
(2426, 1, '_sys_cmts_administration_grid_column_title_adm_cmt_author_id'),
(2427, 1, '_sys_cmts_administration_grid_action_title_adm_delete'),
(2428, 1, '_sys_chart_growth_object'),
(2429, 1, '_sys_chart_growth_date_from'),
(2430, 1, '_sys_chart_growth_date_to'),
(2431, 1, '_sys_chart_accounts_growth'),
(2432, 1, '_sys_chart_accounts_growth_speed'),
(2433, 1, '_sys_close'),
(2434, 1, '_sys_confirm'),
(2435, 1, '_sys_confirmed'),
(2436, 1, '_sys_conn_err_connection_already_exists'),
(2437, 1, '_sys_conn_err_connection_does_not_exists'),
(2438, 1, '_sys_conn_err_connection_is_awaiting_confirmation'),
(2439, 1, '_sys_conn_err_input_data_is_not_defined'),
(2440, 1, '_sys_conn_msg_success'),
(2441, 1, '_sys_connect_information'),
(2442, 1, '_sys_connect_error_join_unavailable'),
(2443, 1, '_sys_connect_profile_error_info'),
(2444, 1, '_sys_connect_state_invalid'),
(2445, 1, '_sys_connect_adm_stg_cpt_category_general'),
(2446, 1, '_sys_connect_option_redirect'),
(2447, 1, '_sys_connect_option_module'),
(2448, 1, '_sys_connect_option_confirm_email'),
(2449, 1, '_sys_connect_option_approve'),
(2450, 1, '_sys_connect_option_privacy'),
(2451, 1, '_sys_currency'),
(2452, 1, '_sys_decline'),
(2453, 1, '_sys_designbox_0'),
(2454, 1, '_sys_designbox_1'),
(2455, 1, '_sys_designbox_10'),
(2456, 1, '_sys_designbox_11'),
(2457, 1, '_sys_designbox_13'),
(2458, 1, '_sys_designbox_14'),
(2459, 1, '_sys_designbox_2'),
(2460, 1, '_sys_designbox_3'),
(2461, 1, '_sys_designbox_4'),
(2462, 1, '_sys_done'),
(2463, 1, '_sys_et_txt_about_us'),
(2464, 1, '_sys_et_txt_body_admin_email'),
(2465, 1, '_sys_et_txt_body_comment_replied'),
(2466, 1, '_sys_et_txt_body_system_reported'),
(2467, 1, '_sys_et_txt_body_confirmation'),
(2468, 1, '_sys_et_txt_body_delayed_module_uninstall'),
(2469, 1, '_sys_et_txt_body_forgot'),
(2470, 1, '_sys_et_txt_body_mem_changed'),
(2471, 1, '_sys_et_txt_body_mem_prolonged'),
(2472, 1, '_sys_et_txt_body_mem_expiration'),
(2473, 1, '_sys_et_txt_body_profile_change_status_active'),
(2474, 1, '_sys_et_txt_body_profile_change_status_pending'),
(2475, 1, '_sys_et_txt_body_profile_change_status_suspended'),
(2476, 1, '_sys_et_txt_body_account_change_status_activate'),
(2477, 1, '_sys_et_txt_body_account_change_status_suspended'),
(2478, 1, '_sys_et_txt_body_account');
INSERT INTO `sys_localization_keys` VALUES
(2479, 1, '_sys_et_txt_body_account_password_expired'),
(2480, 1, '_sys_et_txt_body_pruning'),
(2481, 1, '_sys_et_txt_body_upgrade_failed'),
(2482, 1, '_sys_et_txt_body_upgrade_modules_failed'),
(2483, 1, '_sys_et_txt_body_upgrade_success'),
(2484, 1, '_sys_et_txt_body_upgrade_modules_success'),
(2485, 1, '_sys_et_txt_body_bg_operation_failed'),
(2486, 1, '_sys_et_txt_body_manage_approve'),
(2487, 1, '_sys_et_txt_body_modules_upgrade_success'),
(2488, 1, '_sys_et_txt_body_modules_upgrade_failed'),
(2489, 1, '_sys_et_txt_name_system_admin_email'),
(2490, 1, '_sys_et_txt_name_system_comment_replied'),
(2491, 1, '_sys_et_txt_name_system_reported'),
(2492, 1, '_sys_et_txt_name_system_confirmation'),
(2493, 1, '_sys_et_txt_name_system_delayed_module_uninstall'),
(2494, 1, '_sys_et_txt_name_system_forgot'),
(2495, 1, '_sys_et_txt_name_system_mem_changed'),
(2496, 1, '_sys_et_txt_name_system_mem_prolonged'),
(2497, 1, '_sys_et_txt_name_system_mem_expiration'),
(2498, 1, '_sys_et_txt_name_profile_change_status_active'),
(2499, 1, '_sys_et_txt_name_profile_change_status_pending'),
(2500, 1, '_sys_et_txt_name_profile_change_status_suspended'),
(2501, 1, '_sys_et_txt_name_account_change_status_activate'),
(2502, 1, '_sys_et_txt_name_account_change_status_suspended'),
(2503, 1, '_sys_et_txt_name_manage_approve'),
(2504, 1, '_sys_et_txt_name_system_account'),
(2505, 1, '_sys_et_txt_name_system_account_password_expired'),
(2506, 1, '_sys_et_txt_name_system_pruning'),
(2507, 1, '_sys_et_txt_name_upgrade_failed'),
(2508, 1, '_sys_et_txt_name_upgrade_modules_failed'),
(2509, 1, '_sys_et_txt_name_upgrade_success'),
(2510, 1, '_sys_et_txt_name_upgrade_modules_success'),
(2511, 1, '_sys_et_txt_name_bg_operation_failed'),
(2512, 1, '_sys_et_txt_subject_admin_email'),
(2513, 1, '_sys_et_txt_subject_comment_replied'),
(2514, 1, '_sys_et_txt_subject_system_reported'),
(2515, 1, '_sys_et_txt_subject_confirmation'),
(2516, 1, '_sys_et_txt_subject_delayed_module_uninstall'),
(2517, 1, '_sys_et_txt_subject_forgot'),
(2518, 1, '_sys_et_txt_subject_mem_changed'),
(2519, 1, '_sys_et_txt_subject_mem_prolonged'),
(2520, 1, '_sys_et_txt_subject_mem_expiration'),
(2521, 1, '_sys_et_txt_subject_profile_change_status_active'),
(2522, 1, '_sys_et_txt_subject_profile_change_status_pending'),
(2523, 1, '_sys_et_txt_subject_profile_change_status_suspended'),
(2524, 1, '_sys_et_txt_subject_account_change_status_activate'),
(2525, 1, '_sys_et_txt_subject_account_change_status_suspended'),
(2526, 1, '_sys_et_txt_subject_manage_approve'),
(2527, 1, '_sys_et_txt_subject_account'),
(2528, 1, '_sys_et_txt_subject_account_password_expired'),
(2529, 1, '_sys_et_txt_subject_pruning'),
(2530, 1, '_sys_et_txt_subject_upgrade_failed'),
(2531, 1, '_sys_et_txt_subject_upgrade_modules_failed'),
(2532, 1, '_sys_et_txt_subject_upgrade_success'),
(2533, 1, '_sys_et_txt_subject_upgrade_modules_success'),
(2534, 1, '_sys_et_txt_subject_bg_operation_failed'),
(2535, 1, '_sys_et_txt_unsubscribe'),
(2536, 1, '_sys_file_handlers_ms_viewer'),
(2537, 1, '_sys_file_handlers_google_viewer'),
(2538, 1, '_sys_file_handlers_images_viewer'),
(2539, 1, '_sys_file_handlers_code_viewer'),
(2540, 1, '_sys_file_handlers_sounds_viewer'),
(2541, 1, '_sys_file_handlers_videos_viewer'),
(2542, 1, '_sys_form_account'),
(2543, 1, '_sys_form_account_input_agreement'),
(2544, 1, '_sys_form_account_input_agreement_value'),
(2545, 1, '_sys_form_account_input_captcha'),
(2546, 1, '_sys_form_account_input_captcha_error'),
(2547, 1, '_sys_form_account_input_captcha_label_text_image'),
(2548, 1, '_sys_form_account_input_captcha_label_text_audio'),
(2549, 1, '_sys_form_account_input_captcha_action_refresh'),
(2550, 1, '_sys_form_account_input_captcha_action_title_refresh'),
(2551, 1, '_sys_form_account_input_captcha_action_audio'),
(2552, 1, '_sys_form_account_input_captcha_action_title_audio'),
(2553, 1, '_sys_form_account_input_captcha_action_image'),
(2554, 1, '_sys_form_account_input_captcha_action_title_image'),
(2555, 1, '_sys_form_account_input_captcha_action_help'),
(2556, 1, '_sys_form_account_input_captcha_action_title_help'),
(2557, 1, '_sys_form_account_input_delete_confirm'),
(2558, 1, '_sys_form_account_input_delete_confirm_wo_content'),
(2559, 1, '_sys_form_account_input_delete_confirm_error'),
(2560, 1, '_sys_form_account_input_delete_confirm_info'),
(2561, 1, '_sys_form_account_input_email'),
(2562, 1, '_sys_form_account_input_email_error'),
(2563, 1, '_sys_form_account_input_email_uniq_error'),
(2564, 1, '_sys_form_account_input_email_uniq_error_loggedin'),
(2565, 1, '_sys_form_account_input_phone_uniq_error_loggedin'),
(2566, 1, '_sys_form_account_input_name'),
(2567, 1, '_sys_form_account_input_name_error'),
(2568, 1, '_sys_form_account_input_password'),
(2569, 1, '_sys_form_account_input_password_confirm'),
(2570, 1, '_sys_form_account_input_password_confirm_error'),
(2571, 1, '_sys_form_account_input_password_current'),
(2572, 1, '_sys_form_account_input_password_error_old_used'),
(2573, 1, '_sys_form_account_input_password_current_error'),
(2574, 1, '_sys_form_account_input_password_error'),
(2575, 1, '_sys_form_account_input_receive_news'),
(2576, 1, '_sys_form_account_input_receive_updates'),
(2577, 1, '_sys_form_account_input_submit'),
(2578, 1, '_sys_form_account_input_publish'),
(2579, 1, '_sys_form_agents_comment'),
(2580, 1, '_sys_form_display_agents_comment_post'),
(2581, 1, '_sys_form_agents_comment_input_caption_system_action'),
(2582, 1, '_sys_form_agents_comment_input_caption_system_cmt_image'),
(2583, 1, '_sys_form_agents_comment_input_caption_system_cmt_parent_id'),
(2584, 1, '_sys_form_agents_comment_input_caption_system_cmt_submit'),
(2585, 1, '_sys_form_agents_comment_input_caption_cmt_submit'),
(2586, 1, '_sys_form_agents_comment_input_caption_system_cmt_text'),
(2587, 1, '_sys_form_agents_comment_input_caption_system_id'),
(2588, 1, '_sys_form_agents_comment_input_caption_system_sys'),
(2589, 1, '_sys_form_checkbox_value_off'),
(2590, 1, '_sys_form_checkbox_value_on'),
(2591, 1, '_sys_form_input_caption_author'),
(2592, 1, '_sys_form_comment'),
(2593, 1, '_sys_form_comment_input_caption_cmt_author_id'),
(2594, 1, '_sys_form_comment_input_caption_cmt_text'),
(2595, 1, '_sys_form_comment_input_caption_system_action'),
(2596, 1, '_sys_form_comment_input_caption_system_cmt_author_id'),
(2597, 1, '_sys_form_comment_input_caption_system_cmt_cancel'),
(2598, 1, '_sys_form_comment_input_caption_system_cmt_id'),
(2599, 1, '_sys_form_comment_input_caption_system_cmt_image'),
(2600, 1, '_sys_form_comment_input_caption_system_cmt_parent_id'),
(2601, 1, '_sys_form_comment_input_caption_system_cmt_submit'),
(2602, 1, '_sys_form_comment_input_caption_system_cmt_text'),
(2603, 1, '_sys_form_comment_input_caption_system_id'),
(2604, 1, '_sys_form_comment_input_caption_system_sys'),
(2605, 1, '_sys_form_comment_input_cancel'),
(2606, 1, '_sys_form_comment_input_submit'),
(2607, 1, '_sys_form_confirm_email'),
(2608, 1, '_sys_form_confirm_email_input_caption_system_code'),
(2609, 1, '_sys_form_confirm_email_input_caption_system_do_submit'),
(2610, 1, '_sys_form_confirm_email_input_code'),
(2611, 1, '_sys_form_confirm_email_input_code_error'),
(2612, 1, '_sys_form_confirm_email_input_submit'),
(2613, 1, '_sys_form_confirm_phone'),
(2614, 1, '_sys_form_confirm_phone_input_caption_system_phone'),
(2615, 1, '_sys_form_confirm_phone_input_phone'),
(2616, 1, '_sys_form_confirm_phone_input_phone_info'),
(2617, 1, '_sys_form_confirm_phone_input_phone_error_format'),
(2618, 1, '_sys_form_confirm_phone_input_phone_error_not_unique'),
(2619, 1, '_sys_form_confirm_phone_input_caption_system_code'),
(2620, 1, '_sys_form_confirm_phone_confirmation_input_code'),
(2621, 1, '_sys_form_confirm_phone_input_submit'),
(2622, 1, '_sys_form_confirm_phone_input_caption_system_do_submit'),
(2623, 1, '_sys_form_confirm_phone_input_sendsms'),
(2624, 1, '_sys_form_confirm_phone_input_caption_system_do_sendsms'),
(2625, 1, '_sys_form_confirm_phone_input_code_error_empty'),
(2626, 1, '_sys_form_confirm_phone_input_code_error_invalid'),
(2627, 1, '_sys_form_account_input_phone_error'),
(2628, 1, '_sys_form_display_account_create'),
(2629, 1, '_sys_form_display_account_settings_delete'),
(2630, 1, '_sys_form_display_account_settings_email'),
(2631, 1, '_sys_form_display_account_settings_info'),
(2632, 1, '_sys_form_display_account_settings_password'),
(2633, 1, '_sys_form_display_comment_edit'),
(2634, 1, '_sys_form_display_comment_post'),
(2635, 1, '_sys_form_display_confirm_email'),
(2636, 1, '_sys_form_display_confirm_phone_set_phone'),
(2637, 1, '_sys_form_display_confirm_phone_confirmation'),
(2638, 1, '_sys_form_display_forgot_password'),
(2639, 1, '_sys_form_display_forgot_password_reset'),
(2640, 1, '_sys_form_display_login'),
(2641, 1, '_sys_form_display_login_step2'),
(2642, 1, '_sys_form_display_login_step3'),
(2643, 1, '_sys_form_display_report_post'),
(2644, 1, '_sys_form_display_unsubscribe_news'),
(2645, 1, '_sys_form_display_unsubscribe_updates'),
(2646, 1, '_sys_form_forgot_password'),
(2647, 1, '_sys_form_forgot_password_email_not_recognized'),
(2648, 1, '_sys_form_forgot_password_phone_not_recognized'),
(2649, 1, '_sys_form_forgot_password_phone_error_format'),
(2650, 1, '_sys_form_forgot_password_phone_and_email_empty_error'),
(2651, 1, '_sys_form_forgot_password_input_caption_system_do_submit'),
(2652, 1, '_sys_form_forgot_password_input_caption_system_email'),
(2653, 1, '_sys_form_forgot_password_input_caption_system_key'),
(2654, 1, '_sys_form_forgot_password_input_caption_system_password'),
(2655, 1, '_sys_form_forgot_password_input_caption_password'),
(2656, 1, '_sys_form_forgot_password_input_caption_system_password_reset'),
(2657, 1, '_sys_form_forgot_password_input_caption_password_reset'),
(2658, 1, '_sys_form_forgot_password_input_email'),
(2659, 1, '_sys_form_forgot_password_input_caption_system_phone'),
(2660, 1, '_sys_form_forgot_password_input_phone'),
(2661, 1, '_sys_form_forgot_password_input_submit'),
(2662, 1, '_sys_form_input_age'),
(2663, 1, '_sys_form_input_sys_location'),
(2664, 1, '_sys_form_input_location'),
(2665, 1, '_sys_form_input_location_radius_label'),
(2666, 1, '_sys_form_input_nested_form_button_add_new_item'),
(2667, 1, '_sys_form_input_nested_form_button_delete_item'),
(2668, 1, '_sys_form_input_sys_anonymous'),
(2669, 1, '_sys_form_input_anonymous'),
(2670, 1, '_sys_form_input_sys_labels'),
(2671, 1, '_sys_form_input_labels'),
(2672, 1, '_sys_form_input_labels_placeholder'),
(2673, 1, '_sys_form_input_password_show'),
(2674, 1, '_sys_form_input_password_hide'),
(2675, 1, '_sys_form_labels'),
(2676, 1, '_sys_form_labels_display_select'),
(2677, 1, '_sys_form_labels_input_caption_system_name'),
(2678, 1, '_sys_form_labels_input_caption_system_action'),
(2679, 1, '_sys_form_labels_input_caption_system_search'),
(2680, 1, '_sys_form_labels_input_caption_search'),
(2681, 1, '_sys_form_labels_input_caption_system_list'),
(2682, 1, '_sys_form_labels_input_caption_list'),
(2683, 1, '_sys_form_labels_input_caption_system_list_context'),
(2684, 1, '_sys_form_labels_input_caption_list_context'),
(2685, 1, '_sys_form_labels_input_caption_do_submit'),
(2686, 1, '_sys_form_labels_input_caption_system_do_submit'),
(2687, 1, '_sys_form_labels_input_caption_do_cancel'),
(2688, 1, '_sys_form_labels_input_caption_system_do_cancel'),
(2689, 1, '_sys_form_login'),
(2690, 1, '_sys_form_login_input_caption_system_agreement'),
(2691, 1, '_sys_form_login_input_caption_system_captcha'),
(2692, 1, '_sys_form_login_input_caption_system_checkcode'),
(2693, 1, '_sys_form_login_input_caption_system_code'),
(2694, 1, '_sys_form_login_input_caption_system_back'),
(2695, 1, '_sys_form_login_input_caption_system_delete_confirm'),
(2696, 1, '_sys_form_login_input_caption_system_delete_content'),
(2697, 1, '_sys_form_login_input_caption_system_do_submit'),
(2698, 1, '_sys_form_login_input_caption_system_do_publish'),
(2699, 1, '_sys_form_login_input_caption_system_email'),
(2700, 1, '_sys_form_login_input_caption_system_id'),
(2701, 1, '_sys_form_login_input_caption_system_name'),
(2702, 1, '_sys_form_login_input_caption_system_password'),
(2703, 1, '_sys_form_login_input_caption_system_password_confirm'),
(2704, 1, '_sys_form_login_input_caption_system_phone'),
(2705, 1, '_sys_form_login_input_caption_system_password_current'),
(2706, 1, '_sys_form_login_input_caption_system_receive_news'),
(2707, 1, '_sys_form_login_input_caption_system_receive_updates'),
(2708, 1, '_sys_form_login_input_caption_system_relocate'),
(2709, 1, '_sys_form_login_input_caption_system_remember_me'),
(2710, 1, '_sys_form_login_input_caption_system_role'),
(2711, 1, '_sys_form_login_input_caption_system_sendsms'),
(2712, 1, '_sys_form_login_input_caption_system_submit'),
(2713, 1, '_sys_form_login_input_caption_system_submit_text'),
(2714, 1, '_sys_form_login_input_agreement_value'),
(2715, 1, '_sys_form_login_input_code'),
(2716, 1, '_sys_form_login_input_back'),
(2717, 1, '_sys_form_login_input_checkcode'),
(2718, 1, '_sys_form_login_input_email'),
(2719, 1, '_sys_form_login_input_password'),
(2720, 1, '_sys_form_login_input_phone'),
(2721, 1, '_sys_form_login_input_phone_info'),
(2722, 1, '_sys_form_login_input_remember_me'),
(2723, 1, '_sys_form_login_input_sendsms'),
(2724, 1, '_sys_form_login_input_submit'),
(2725, 1, '_sys_form_login_input_code_error_empty'),
(2726, 1, '_sys_form_login_input_phone_error_format'),
(2727, 1, '_sys_form_login_input_phone_error_not_unique'),
(2728, 1, '_sys_form_login_input_code_error_invalid'),
(2729, 1, '_sys_form_manage'),
(2730, 1, '_sys_form_display_manage_approve'),
(2731, 1, '_sys_form_manage_input_sys_content_id'),
(2732, 1, '_sys_form_manage_input_sys_notes'),
(2733, 1, '_sys_form_manage_input_notes'),
(2734, 1, '_sys_form_manage_input_sys_do_send'),
(2735, 1, '_sys_form_manage_input_do_send'),
(2736, 1, '_sys_form_manage_input_sys_do_submit'),
(2737, 1, '_sys_form_manage_input_do_submit'),
(2738, 1, '_sys_form_manage_input_do_submit_approve'),
(2739, 1, '_sys_form_manage_input_sys_do_cancel'),
(2740, 1, '_sys_form_manage_input_do_cancel'),
(2741, 1, '_sys_form_acl'),
(2742, 1, '_sys_form_display_acl_set'),
(2743, 1, '_sys_form_popup_acl_set'),
(2744, 1, '_sys_form_acl_input_sys_level_id'),
(2745, 1, '_sys_form_acl_input_level_id'),
(2746, 1, '_sys_form_acl_input_sys_duration'),
(2747, 1, '_sys_form_acl_input_duration'),
(2748, 1, '_sys_form_acl_input_duration_inf'),
(2749, 1, '_sys_form_acl_input_sys_do_submit'),
(2750, 1, '_sys_form_acl_input_do_submit'),
(2751, 1, '_sys_form_acl_input_sys_do_cancel'),
(2752, 1, '_sys_form_acl_input_do_cancel'),
(2753, 1, '_sys_form_entry_input_sys_cf'),
(2754, 1, '_sys_form_entry_input_cf'),
(2755, 1, '_sys_form_paceholder_profiles_suggestions'),
(2756, 1, '_sys_form_profile'),
(2757, 1, '_sys_form_display_profile_cf_set'),
(2758, 1, '_sys_form_display_profile_cf_manage'),
(2759, 1, '_sys_form_profile_input_sys_cfw_value'),
(2760, 1, '_sys_form_profile_input_cfw_value'),
(2761, 1, '_sys_form_profile_input_sys_cfu_items'),
(2762, 1, '_sys_form_profile_input_cfu_items'),
(2763, 1, '_sys_form_profile_input_sys_cfu_locked'),
(2764, 1, '_sys_form_profile_input_cfu_locked'),
(2765, 1, '_sys_form_profile_input_sys_do_submit'),
(2766, 1, '_sys_form_profile_input_do_submit'),
(2767, 1, '_sys_form_profile_input_sys_do_cancel'),
(2768, 1, '_sys_form_profile_input_do_cancel'),
(2769, 1, '_sys_profile_cf_set_successfully_submitted'),
(2770, 1, '_sys_profile_cf_manage_successfully_submitted'),
(2771, 1, '_sys_profile_cf_manage_popup'),
(2772, 1, '_sys_form_ps_group_custom'),
(2773, 1, '_sys_form_display_ps_gc_members'),
(2774, 1, '_sys_form_display_ps_gc_memberships'),
(2775, 1, '_sys_form_ps_gc_input_caption_system_profile_id'),
(2776, 1, '_sys_form_ps_gc_input_caption_system_content_id'),
(2777, 1, '_sys_form_ps_gc_input_caption_system_object'),
(2778, 1, '_sys_form_ps_gc_input_caption_system_action'),
(2779, 1, '_sys_form_ps_gc_input_caption_system_group_id'),
(2780, 1, '_sys_form_ps_gc_input_caption_system_search'),
(2781, 1, '_sys_form_ps_gc_input_caption_search'),
(2782, 1, '_sys_form_ps_gc_input_caption_system_list'),
(2783, 1, '_sys_form_ps_gc_input_caption_list'),
(2784, 1, '_sys_form_ps_gc_input_caption_system_memberships'),
(2785, 1, '_sys_form_ps_gc_input_caption_memberships'),
(2786, 1, '_sys_form_ps_gc_input_caption_system_do_submit'),
(2787, 1, '_sys_form_ps_gc_input_caption_do_submit'),
(2788, 1, '_sys_form_ps_gc_input_caption_system_do_cancel'),
(2789, 1, '_sys_form_ps_gc_input_caption_do_cancel'),
(2790, 1, '_sys_form_favorite'),
(2791, 1, '_sys_form_display_favorite_add'),
(2792, 1, '_sys_form_display_favorite_list_edit'),
(2793, 1, '_sys_form_favorite_input_caption_system_sys'),
(2794, 1, '_sys_form_favorite_input_caption_system_list_id'),
(2795, 1, '_sys_form_favorite_input_caption_system_object_id'),
(2796, 1, '_sys_form_favorite_input_caption_system_action'),
(2797, 1, '_sys_form_favorite_input_caption_system_id'),
(2798, 1, '_sys_form_favorite_input_caption_system_list'),
(2799, 1, '_sys_form_favorite_input_caption_list'),
(2800, 1, '_sys_form_favorite_input_caption_system_title'),
(2801, 1, '_sys_form_favorite_input_caption_title'),
(2802, 1, '_sys_form_favorite_input_caption_system_allow_view_to'),
(2803, 1, '_sys_form_favorite_input_caption_allow_view_to'),
(2804, 1, '_sys_form_favorite_input_caption_submit'),
(2805, 1, '_sys_form_favorite_input_caption_system_submit'),
(2806, 1, '_sys_form_favorite_input_caption_button_new_list'),
(2807, 1, '_sys_form_favorite_list_title_count'),
(2808, 1, '_sys_form_favorite_list_title_created'),
(2809, 1, '_sys_form_favorite_list_title_updated'),
(2810, 1, '_sys_form_favorite_list_title_visibility'),
(2811, 1, '_sys_txt_default_favorite_list'),
(2812, 1, '_sys_form_report'),
(2813, 1, '_sys_form_report_input_caption_submit'),
(2814, 1, '_sys_form_report_input_caption_text'),
(2815, 1, '_sys_form_report_input_caption_type'),
(2816, 1, '_sys_form_report_input_caption_system_action'),
(2817, 1, '_sys_form_report_input_caption_system_object_id'),
(2818, 1, '_sys_form_report_input_caption_system_id'),
(2819, 1, '_sys_form_report_input_caption_system_submit'),
(2820, 1, '_sys_form_report_input_caption_system_text'),
(2821, 1, '_sys_form_report_input_caption_system_type'),
(2822, 1, '_sys_form_report_input_caption_system_sys'),
(2823, 1, '_sys_form_review'),
(2824, 1, '_sys_form_review_display_edit'),
(2825, 1, '_sys_form_review_display_post'),
(2826, 1, '_sys_form_review_input_caption_cmt_author_id'),
(2827, 1, '_sys_form_review_input_caption_cmt_text'),
(2828, 1, '_sys_form_review_input_caption_system_action'),
(2829, 1, '_sys_form_review_input_caption_system_cmt_author_id'),
(2830, 1, '_sys_form_review_input_caption_system_cmt_id'),
(2831, 1, '_sys_form_review_input_caption_system_cmt_image'),
(2832, 1, '_sys_form_review_input_caption_system_cmt_parent_id'),
(2833, 1, '_sys_form_review_input_caption_system_cmt_submit'),
(2834, 1, '_sys_form_review_input_caption_system_cmt_text'),
(2835, 1, '_sys_form_review_input_caption_system_cmt_mood'),
(2836, 1, '_sys_form_review_input_caption_system_id'),
(2837, 1, '_sys_form_review_input_caption_system_sys'),
(2838, 1, '_sys_form_review_input_submit'),
(2839, 1, '_sys_form_unsubscribe'),
(2840, 1, '_sys_form_unsubscribe_input_caption_system_code'),
(2841, 1, '_sys_form_unsubscribe_input_caption_system_do_submit'),
(2842, 1, '_sys_form_unsubscribe_input_caption_system_id'),
(2843, 1, '_sys_form_unsubscribe_input_caption_system_receive_news'),
(2844, 1, '_sys_form_unsubscribe_input_caption_system_receive_updates'),
(2845, 1, '_sys_form_unsubscribe_input_receive_news'),
(2846, 1, '_sys_form_unsubscribe_input_receive_updates'),
(2847, 1, '_sys_form_unsubscribe_input_submit'),
(2848, 1, '_sys_form_err_not_unique_value'),
(2849, 1, '_sys_form_txt_select_file'),
(2850, 1, '_sys_form_wiki'),
(2851, 1, '_sys_form_display_wiki_edit'),
(2852, 1, '_sys_form_display_wiki_translate'),
(2853, 1, '_sys_form_wiki_input_caption_block_id'),
(2854, 1, '_sys_form_wiki_input_caption_lang'),
(2855, 1, '_sys_form_wiki_input_caption_lang_info'),
(2856, 1, '_sys_form_wiki_input_caption_lang_err'),
(2857, 1, '_sys_form_wiki_input_caption_content'),
(2858, 1, '_sys_form_wiki_input_caption_content_info'),
(2859, 1, '_sys_form_wiki_input_caption_content_main'),
(2860, 1, '_sys_form_wiki_input_caption_notes'),
(2861, 1, '_sys_form_wiki_input_caption_submit'),
(2862, 1, '_sys_form_wiki_input_caption_close'),
(2863, 1, '_sys_form_wiki_input_caption_files'),
(2864, 1, '_sys_form_wiki_buttons'),
(2865, 1, '_sys_format_size_b'),
(2866, 1, '_sys_format_size_gb'),
(2867, 1, '_sys_format_size_kb'),
(2868, 1, '_sys_format_size_mb'),
(2869, 1, '_sys_format_size_tb'),
(2870, 1, '_sys_grid_confirmation'),
(2871, 1, '_sys_grid_delete_failed'),
(2872, 1, '_sys_grid_search'),
(2873, 1, '_sys_grid_total_count'),
(2874, 1, '_sys_grid_txt_account_manager'),
(2875, 1, '_sys_inst_conf_desc'),
(2876, 1, '_sys_inst_conf_desc_admin_email'),
(2877, 1, '_sys_inst_conf_desc_admin_pwd'),
(2878, 1, '_sys_inst_conf_desc_admin_username'),
(2879, 1, '_sys_inst_conf_desc_db_host'),
(2880, 1, '_sys_inst_conf_desc_db_name'),
(2881, 1, '_sys_inst_conf_desc_db_port'),
(2882, 1, '_sys_inst_conf_desc_db_pwd'),
(2883, 1, '_sys_inst_conf_desc_db_sock'),
(2884, 1, '_sys_inst_conf_desc_db_user'),
(2885, 1, '_sys_inst_conf_desc_db_engine'),
(2886, 1, '_sys_inst_conf_desc_language'),
(2887, 1, '_sys_inst_conf_desc_profiles'),
(2888, 1, '_sys_inst_conf_desc_oauth_key_secret'),
(2889, 1, '_sys_inst_conf_desc_path_to_binary'),
(2890, 1, '_sys_inst_conf_desc_root_dir'),
(2891, 1, '_sys_inst_conf_desc_site_email'),
(2892, 1, '_sys_inst_conf_desc_site_title'),
(2893, 1, '_sys_inst_conf_desc_site_url'),
(2894, 1, '_sys_inst_conf_desc_template'),
(2895, 1, '_sys_inst_conf_error'),
(2896, 1, '_sys_inst_conf_field_admin_email'),
(2897, 1, '_sys_inst_conf_field_admin_pwd'),
(2898, 1, '_sys_inst_conf_field_admin_username'),
(2899, 1, '_sys_inst_conf_field_db_host'),
(2900, 1, '_sys_inst_conf_field_db_name'),
(2901, 1, '_sys_inst_conf_field_db_port'),
(2902, 1, '_sys_inst_conf_field_db_pwd'),
(2903, 1, '_sys_inst_conf_field_db_sock'),
(2904, 1, '_sys_inst_conf_field_db_user'),
(2905, 1, '_sys_inst_conf_field_db_engine'),
(2906, 1, '_sys_inst_conf_field_language'),
(2907, 1, '_sys_inst_conf_field_profiles'),
(2908, 1, '_sys_inst_conf_field_oauth_key'),
(2909, 1, '_sys_inst_conf_field_oauth_secret'),
(2910, 1, '_sys_inst_conf_field_path_to_binary'),
(2911, 1, '_sys_inst_conf_field_root_dir'),
(2912, 1, '_sys_inst_conf_field_site_email'),
(2913, 1, '_sys_inst_conf_field_site_title'),
(2914, 1, '_sys_inst_conf_field_site_url'),
(2915, 1, '_sys_inst_conf_field_template'),
(2916, 1, '_sys_inst_conf_found'),
(2917, 1, '_sys_inst_conf_no_example'),
(2918, 1, '_sys_inst_conf_not_found'),
(2919, 1, '_sys_inst_conf_section_db_config'),
(2920, 1, '_sys_inst_conf_section_link_with_market'),
(2921, 1, '_sys_inst_conf_section_modules'),
(2922, 1, '_sys_inst_conf_section_paths'),
(2923, 1, '_sys_inst_conf_section_site_info'),
(2924, 1, '_sys_inst_continue'),
(2925, 1, '_sys_inst_finish'),
(2926, 1, '_sys_inst_help_finish'),
(2927, 1, '_sys_inst_help_permissions'),
(2928, 1, '_sys_inst_help_site_config'),
(2929, 1, '_sys_inst_hosting_fails'),
(2930, 1, '_sys_inst_hosting_warnings'),
(2931, 1, '_sys_inst_msg_admin_account_not_found'),
(2932, 1, '_sys_inst_msg_db_err_connect'),
(2933, 1, '_sys_inst_msg_db_err_select'),
(2934, 1, '_sys_inst_msg_file_read_failed'),
(2935, 1, '_sys_inst_msg_file_write_failed'),
(2936, 1, '_sys_inst_msg_finish'),
(2937, 1, '_sys_inst_msg_finish_cron_jobs'),
(2938, 1, '_sys_inst_msg_finish_delete_install_folder'),
(2939, 1, '_sys_inst_msg_finish_goto_studio'),
(2940, 1, '_sys_inst_msg_form_error'),
(2941, 1, '_sys_inst_msg_module_error'),
(2942, 1, '_sys_inst_msg_permissions_wrong'),
(2943, 1, '_sys_inst_msg_remove_install'),
(2944, 1, '_sys_inst_msg_script_isnt_installed'),
(2945, 1, '_sys_inst_refresh'),
(2946, 1, '_sys_inst_server_audit'),
(2947, 1, '_sys_inst_site_config'),
(2948, 1, '_sys_inst_start_installation'),
(2949, 1, '_sys_inst_title'),
(2950, 1, '_sys_layout_1_column'),
(2951, 1, '_sys_layout_1_column_thin'),
(2952, 1, '_sys_layout_1_column_half'),
(2953, 1, '_sys_layout_1_column_wiki'),
(2954, 1, '_sys_layout_2_columns'),
(2955, 1, '_sys_layout_3_columns'),
(2956, 1, '_sys_layout_bar_left'),
(2957, 1, '_sys_layout_bar_content_bar'),
(2958, 1, '_sys_layout_bar_right'),
(2959, 1, '_sys_layout_bottom_area_2_columns'),
(2960, 1, '_sys_layout_top_area_2_columns'),
(2961, 1, '_sys_layout_top_area_3_columns'),
(2962, 1, '_sys_layout_top_area_bar_left'),
(2963, 1, '_sys_layout_top_area_bar_content_bar'),
(2964, 1, '_sys_layout_top_area_bar_right'),
(2965, 1, '_sys_layout_topbottom_area_2_columns'),
(2966, 1, '_sys_layout_topbottom_area_bar_left'),
(2967, 1, '_sys_layout_topbottom_area_bar_right'),
(2968, 1, '_sys_layout_topbottom_area_col1_col3_col2'),
(2969, 1, '_sys_layout_topbottom_area_col1_col5'),
(2970, 1, '_sys_layout_topbottom_area_col2_col5_col3'),
(2971, 1, '_sys_loading'),
(2972, 1, '_sys_location_country'),
(2973, 1, '_sys_location_country_city'),
(2974, 1, '_sys_location_country_city_street'),
(2975, 1, '_sys_location_determining'),
(2976, 1, '_sys_location_geolocation_not_supported_by_browser'),
(2977, 1, '_sys_location_undefined'),
(2978, 1, '_sys_location_map_google_static'),
(2979, 1, '_sys_location_map_leaflet'),
(2980, 1, '_sys_location_field_google'),
(2981, 1, '_sys_location_field_plain'),
(2982, 1, '_sys_location_field_label'),
(2983, 1, '_sys_location_ph_number'),
(2984, 1, '_sys_location_ph_street'),
(2985, 1, '_sys_location_ph_city'),
(2986, 1, '_sys_location_ph_state'),
(2987, 1, '_sys_location_ph_zip'),
(2988, 1, '_sys_location_status_undef'),
(2989, 1, '_sys_location_status_ok'),
(2990, 1, '_sys_location_status_fail'),
(2991, 1, '_sys_log_debug'),
(2992, 1, '_sys_log_sms'),
(2993, 1, '_sys_log_push'),
(2994, 1, '_sys_log_payments'),
(2995, 1, '_sys_log_cron_jobs'),
(2996, 1, '_sys_log_transcoder'),
(2997, 1, '_sys_macros_malformed'),
(2998, 1, '_sys_macros_unsafe'),
(2999, 1, '_sys_macros_output_not_displayable'),
(3000, 1, '_sys_macros_method_or_class_not_found'),
(3001, 1, '_sys_macros_required_args_missing'),
(3002, 1, '_sys_macros_too_many_args'),
(3003, 1, '_sys_manage_popup_approve_title'),
(3004, 1, '_sys_manage_txt_approved'),
(3005, 1, '_sys_manage_txt_sent'),
(3006, 1, '_sys_manage_err_cannot_perform_action'),
(3007, 1, '_sys_menu_item_title_about'),
(3008, 1, '_sys_menu_item_title_copyright'),
(3009, 1, '_sys_menu_item_title_privacy'),
(3010, 1, '_sys_menu_item_title_search'),
(3011, 1, '_sys_menu_item_title_switch_language'),
(3012, 1, '_sys_menu_item_title_switch_language_mask'),
(3013, 1, '_sys_menu_item_title_switch_template'),
(3014, 1, '_sys_menu_item_title_switch_template_mask'),
(3015, 1, '_sys_menu_item_title_terms'),
(3016, 1, '_sys_menu_item_title_account_menu'),
(3017, 1, '_sys_menu_item_title_account_profile_context'),
(3018, 1, '_sys_menu_item_title_account_dashboard'),
(3019, 1, '_sys_menu_item_title_account_dashboard_administration'),
(3020, 1, '_sys_menu_item_title_account_settings'),
(3021, 1, '_sys_menu_item_title_account_settings_delete'),
(3022, 1, '_sys_menu_item_title_account_settings_email'),
(3023, 1, '_sys_menu_item_title_account_settings_info'),
(3024, 1, '_sys_menu_item_title_account_settings_pwd'),
(3025, 1, '_sys_menu_item_title_profile_settings_cfilter'),
(3026, 1, '_sys_menu_item_title_add_content'),
(3027, 1, '_sys_menu_item_title_cart'),
(3028, 1, '_sys_menu_item_title_cmts_administration'),
(3029, 1, '_sys_menu_item_title_audit_administration'),
(3030, 1, '_sys_menu_item_title_cmts_item_delete'),
(3031, 1, '_sys_menu_item_title_cmts_item_edit'),
(3032, 1, '_sys_menu_item_title_cmts_item_pin'),
(3033, 1, '_sys_menu_item_title_cmts_item_unpin'),
(3034, 1, '_sys_menu_item_title_cmts_item_quote'),
(3035, 1, '_sys_menu_item_title_cmts_item_reaction'),
(3036, 1, '_sys_menu_item_title_cmts_item_reply'),
(3037, 1, '_sys_menu_item_title_cmts_item_score'),
(3038, 1, '_sys_menu_item_title_cmts_item_vote'),
(3039, 1, '_sys_menu_item_title_cmts_item_more'),
(3040, 1, '_sys_menu_item_title_connections'),
(3041, 1, '_sys_menu_item_title_dashboard'),
(3042, 1, '_sys_menu_item_title_home'),
(3043, 1, '_sys_menu_item_title_invoices'),
(3044, 1, '_sys_menu_item_title_logout'),
(3045, 1, '_sys_menu_item_title_more'),
(3046, 1, '_sys_menu_item_title_more_auto'),
(3047, 1, '_sys_menu_item_title_orders'),
(3048, 1, '_sys_menu_item_title_profile'),
(3049, 1, '_sys_menu_item_title_set_acl_level'),
(3050, 1, '_sys_menu_item_title_set_badges'),
(3051, 1, '_sys_menu_item_title_studio'),
(3052, 1, '_sys_menu_item_title_subscriptions'),
(3053, 1, '_sys_menu_item_title_social_sharing_facebook'),
(3054, 1, '_sys_menu_item_title_social_sharing_twitter'),
(3055, 1, '_sys_menu_item_title_social_sharing_pinterest'),
(3056, 1, '_sys_menu_item_title_social_sharing_linked_in'),
(3057, 1, '_sys_menu_item_title_system_social_sharing_linked_in'),
(3058, 1, '_sys_menu_item_title_social_sharing_whatsapp'),
(3059, 1, '_sys_menu_item_title_system_social_sharing_whatsapp'),
(3060, 1, '_sys_menu_item_title_sm_in_reply_to'),
(3061, 1, '_sys_menu_item_title_sm_author'),
(3062, 1, '_sys_menu_item_title_sm_date'),
(3063, 1, '_sys_menu_item_title_sm_category'),
(3064, 1, '_sys_menu_item_title_sm_tags'),
(3065, 1, '_sys_menu_item_title_sm_views'),
(3066, 1, '_sys_menu_item_title_sm_votes'),
(3067, 1, '_sys_menu_item_title_sm_scores'),
(3068, 1, '_sys_menu_item_title_sm_rating'),
(3069, 1, '_sys_menu_item_title_sm_comments'),
(3070, 1, '_sys_menu_item_title_sm_actions'),
(3071, 1, '_sys_menu_item_title_sm_befriend'),
(3072, 1, '_sys_menu_item_title_sm_befriend_sent'),
(3073, 1, '_sys_menu_item_title_sm_befriend_confirm'),
(3074, 1, '_sys_menu_item_title_sm_unfriend'),
(3075, 1, '_sys_menu_item_title_sm_unfriend_cancel'),
(3076, 1, '_sys_menu_item_title_sm_unfriend_reject'),
(3077, 1, '_sys_menu_item_title_sm_join_paid'),
(3078, 1, '_sys_menu_item_title_sm_join'),
(3079, 1, '_sys_menu_item_title_sm_join_confirm'),
(3080, 1, '_sys_menu_item_title_sm_leave'),
(3081, 1, '_sys_menu_item_title_sm_leave_cancel'),
(3082, 1, '_sys_menu_item_title_sm_leave_reject'),
(3083, 1, '_sys_menu_item_title_sm_nl'),
(3084, 1, '_sys_menu_item_title_sm_subscribe'),
(3085, 1, '_sys_menu_item_title_sm_unsubscribe'),
(3086, 1, '_sys_menu_item_title_sm_friends'),
(3087, 1, '_sys_menu_item_title_sm_friends_mutual'),
(3088, 1, '_sys_menu_item_title_sm_members'),
(3089, 1, '_sys_menu_item_title_sm_membership'),
(3090, 1, '_sys_menu_item_title_sm_subscribers'),
(3091, 1, '_sys_menu_item_title_sm_relations'),
(3092, 1, '_sys_menu_item_title_sm_country'),
(3093, 1, '_sys_menu_item_title_sm_country_city'),
(3094, 1, '_sys_menu_item_title_sm_ignore'),
(3095, 1, '_sys_menu_item_title_vm_membership'),
(3096, 1, '_sys_menu_item_title_vm_badges'),
(3097, 1, '_sys_menu_item_title_system_about'),
(3098, 1, '_sys_menu_item_title_system_copyright'),
(3099, 1, '_sys_menu_item_title_system_privacy'),
(3100, 1, '_sys_menu_item_title_system_switch_language'),
(3101, 1, '_sys_menu_item_title_system_switch_template'),
(3102, 1, '_sys_menu_item_title_system_terms'),
(3103, 1, '_sys_menu_item_title_system_account_menu'),
(3104, 1, '_sys_menu_item_title_system_account_profile_context'),
(3105, 1, '_sys_menu_item_title_system_account_dashboard'),
(3106, 1, '_sys_menu_item_title_system_account_dashboard_administration'),
(3107, 1, '_sys_menu_item_title_system_account_dashboard_content'),
(3108, 1, '_sys_menu_item_title_account_dashboard_content'),
(3109, 1, '_sys_menu_item_title_system_account_dashboard_reports'),
(3110, 1, '_sys_menu_item_title_account_dashboard_reports'),
(3111, 1, '_sys_menu_item_title_system_account_dashboard_audit'),
(3112, 1, '_sys_menu_item_title_account_dashboard_audit'),
(3113, 1, '_sys_menu_item_title_system_ap_profile_active'),
(3114, 1, '_sys_menu_item_title_system_ap_profile_notifications'),
(3115, 1, '_sys_menu_item_title_system_ap_profile_switcher'),
(3116, 1, '_sys_menu_item_title_system_ap_profile_create'),
(3117, 1, '_sys_menu_item_title_system_account_settings'),
(3118, 1, '_sys_menu_item_title_system_account_settings_delete'),
(3119, 1, '_sys_menu_item_title_system_account_settings_email'),
(3120, 1, '_sys_menu_item_title_system_account_settings_info'),
(3121, 1, '_sys_menu_item_title_system_account_settings_pwd'),
(3122, 1, '_sys_menu_item_title_system_profile_settings_cfilter'),
(3123, 1, '_sys_menu_item_title_system_add_content'),
(3124, 1, '_sys_menu_item_title_system_apps'),
(3125, 1, '_sys_menu_item_title_system_cart'),
(3126, 1, '_sys_menu_item_title_system_cmts_administration'),
(3127, 1, '_sys_menu_item_title_system_audit_administration'),
(3128, 1, '_sys_menu_item_title_system_cmts_item_delete'),
(3129, 1, '_sys_menu_item_title_system_cmts_item_edit'),
(3130, 1, '_sys_menu_item_title_system_cmts_item_pin'),
(3131, 1, '_sys_menu_item_title_system_cmts_item_unpin'),
(3132, 1, '_sys_menu_item_title_system_cmts_item_quote'),
(3133, 1, '_sys_menu_item_title_system_cmts_item_reaction'),
(3134, 1, '_sys_menu_item_title_system_cmts_item_reply'),
(3135, 1, '_sys_menu_item_title_system_cmts_item_report'),
(3136, 1, '_sys_menu_item_title_system_cmts_item_score'),
(3137, 1, '_sys_menu_item_title_system_cmts_item_vote'),
(3138, 1, '_sys_menu_item_title_system_cmts_item_more'),
(3139, 1, '_sys_menu_item_title_system_connections'),
(3140, 1, '_sys_menu_item_title_system_dashboard'),
(3141, 1, '_sys_menu_item_title_system_home'),
(3142, 1, '_sys_menu_item_title_system_invoices'),
(3143, 1, '_sys_menu_item_title_system_login'),
(3144, 1, '_sys_menu_item_title_system_logout'),
(3145, 1, '_sys_menu_item_title_system_main_menu'),
(3146, 1, '_sys_menu_item_title_system_member_avatar'),
(3147, 1, '_sys_menu_item_title_system_member_followings'),
(3148, 1, '_sys_menu_item_title_system_member_menu'),
(3149, 1, '_sys_menu_item_title_system_more'),
(3150, 1, '_sys_menu_item_title_system_more_auto'),
(3151, 1, '_sys_menu_item_title_system_orders'),
(3152, 1, '_sys_menu_item_title_system_powered_by'),
(3153, 1, '_sys_menu_item_title_system_profile'),
(3154, 1, '_sys_menu_item_title_system_public_menu'),
(3155, 1, '_sys_menu_item_title_system_search'),
(3156, 1, '_sys_menu_item_title_system_set_acl_level'),
(3157, 1, '_sys_menu_item_title_system_set_badges'),
(3158, 1, '_sys_menu_item_title_system_studio'),
(3159, 1, '_sys_menu_item_title_system_subscriptions'),
(3160, 1, '_sys_menu_title_view_actions'),
(3161, 1, '_sys_menu_set_title_view_actions'),
(3162, 1, '_sys_menu_item_title_system_va_approve'),
(3163, 1, '_sys_menu_item_title_system_va_comment'),
(3164, 1, '_sys_menu_item_title_system_va_view'),
(3165, 1, '_sys_menu_item_title_system_va_vote'),
(3166, 1, '_sys_menu_item_title_system_va_score'),
(3167, 1, '_sys_menu_item_title_system_va_favorite'),
(3168, 1, '_sys_menu_item_title_system_va_feature'),
(3169, 1, '_sys_menu_item_title_system_va_reaction'),
(3170, 1, '_sys_menu_item_title_system_va_repost'),
(3171, 1, '_sys_menu_item_title_system_va_repost_with_text'),
(3172, 1, '_sys_menu_item_title_system_va_repost_to_context'),
(3173, 1, '_sys_menu_item_title_system_va_report'),
(3174, 1, '_sys_menu_item_title_system_va_notes'),
(3175, 1, '_sys_menu_item_title_system_va_audit'),
(3176, 1, '_sys_menu_item_title_system_va_more_auto'),
(3177, 1, '_sys_menu_item_title_va_approve'),
(3178, 1, '_sys_menu_item_title_va_notes'),
(3179, 1, '_sys_menu_item_title_va_audit'),
(3180, 1, '_sys_menu_item_title_va_more_auto'),
(3181, 1, '_sys_menu_item_title_va_more_auto_empty'),
(3182, 1, '_sys_menu_item_title_social_sharing'),
(3183, 1, '_sys_menu_item_title_system_social_sharing'),
(3184, 1, '_sys_menu_item_title_system_social_sharing_facebook'),
(3185, 1, '_sys_menu_item_title_system_social_sharing_twitter'),
(3186, 1, '_sys_menu_item_title_system_social_sharing_pinterest'),
(3187, 1, '_sys_menu_item_title_system_sm_in_reply_to'),
(3188, 1, '_sys_menu_item_title_system_sm_author'),
(3189, 1, '_sys_menu_item_title_system_sm_date'),
(3190, 1, '_sys_menu_item_title_system_sm_category'),
(3191, 1, '_sys_menu_item_title_system_sm_tags'),
(3192, 1, '_sys_menu_item_title_system_sm_views'),
(3193, 1, '_sys_menu_item_title_system_sm_votes'),
(3194, 1, '_sys_menu_item_title_system_sm_scores'),
(3195, 1, '_sys_menu_item_title_system_sm_rating'),
(3196, 1, '_sys_menu_item_title_system_sm_comments'),
(3197, 1, '_sys_menu_item_title_system_sm_actions'),
(3198, 1, '_sys_menu_item_title_system_sm_befriend'),
(3199, 1, '_sys_menu_item_title_system_sm_unfriend'),
(3200, 1, '_sys_menu_item_title_system_sm_join_paid'),
(3201, 1, '_sys_menu_item_title_system_sm_join'),
(3202, 1, '_sys_menu_item_title_system_sm_leave'),
(3203, 1, '_sys_menu_item_title_system_sm_nl'),
(3204, 1, '_sys_menu_item_title_system_sm_subscribe'),
(3205, 1, '_sys_menu_item_title_system_sm_unsubscribe'),
(3206, 1, '_sys_menu_item_title_system_sm_friends'),
(3207, 1, '_sys_menu_item_title_system_sm_friends_mutual'),
(3208, 1, '_sys_menu_item_title_system_sm_members'),
(3209, 1, '_sys_menu_item_title_system_sm_membership'),
(3210, 1, '_sys_menu_item_title_system_sm_subscribers'),
(3211, 1, '_sys_menu_item_title_system_sm_relations'),
(3212, 1, '_sys_menu_item_title_system_sm_country'),
(3213, 1, '_sys_menu_item_title_system_sm_country_city'),
(3214, 1, '_sys_menu_item_title_system_sm_ignore'),
(3215, 1, '_sys_menu_item_title_system_sm_ignore_befriend'),
(3216, 1, '_sys_menu_item_title_system_sm_ignore_subscribe'),
(3217, 1, '_sys_menu_item_title_system_vm_membership'),
(3218, 1, '_sys_menu_item_title_system_vm_badges'),
(3219, 1, '_sys_menu_set_title_account_dashboard'),
(3220, 1, '_sys_menu_set_title_account_dashboard_manage_tools'),
(3221, 1, '_sys_menu_set_title_account_settings'),
(3222, 1, '_sys_menu_set_title_account_popup'),
(3223, 1, '_sys_menu_set_title_account_notifications'),
(3224, 1, '_sys_menu_set_title_add_content'),
(3225, 1, '_sys_menu_set_title_dashboard_content_manage'),
(3226, 1, '_sys_menu_set_title_dashboard_reports_manage'),
(3227, 1, '_sys_menu_set_title_add_profile'),
(3228, 1, '_sys_menu_set_title_cmts_item_actions'),
(3229, 1, '_sys_menu_set_title_cmts_item_counters'),
(3230, 1, '_sys_menu_set_title_cmts_item_manage'),
(3231, 1, '_sys_menu_set_title_cmts_item_meta'),
(3232, 1, '_sys_menu_set_title_switch_language'),
(3233, 1, '_sys_menu_set_title_switch_template'),
(3234, 1, '_sys_menu_set_title_sys_social_sharing'),
(3235, 1, '_sys_menu_set_title_footer'),
(3236, 1, '_sys_menu_set_title_profile_create_links'),
(3237, 1, '_sys_menu_set_title_profile_followings'),
(3238, 1, '_sys_menu_set_title_profile_stats'),
(3239, 1, '_sys_menu_set_title_site'),
(3240, 1, '_sys_menu_set_title_application'),
(3241, 1, '_sys_menu_set_title_panel'),
(3242, 1, '_sys_menu_set_title_homepage'),
(3243, 1, '_sys_menu_set_title_toolbar_member'),
(3244, 1, '_sys_menu_set_title_toolbar_site'),
(3245, 1, '_sys_menu_set_title_snippet_meta'),
(3246, 1, '_sys_menu_template_title_add_content'),
(3247, 1, '_sys_menu_template_title_block_submenu_hor'),
(3248, 1, '_sys_menu_template_title_block_submenu_ver'),
(3249, 1, '_sys_menu_template_title_buttons_hor'),
(3250, 1, '_sys_menu_template_title_buttons_icon_hor'),
(3251, 1, '_sys_menu_template_title_buttons_ver'),
(3252, 1, '_sys_menu_template_title_floating_blocks'),
(3253, 1, '_sys_menu_template_title_floating_blocks_wide'),
(3254, 1, '_sys_menu_template_title_floating_blocks_big'),
(3255, 1, '_sys_menu_template_title_floating_blocks_dash'),
(3256, 1, '_sys_menu_template_title_footer'),
(3257, 1, '_sys_menu_template_title_hor'),
(3258, 1, '_sys_menu_template_title_inline'),
(3259, 1, '_sys_menu_template_title_inline_sbtn'),
(3260, 1, '_sys_menu_template_title_interactive'),
(3261, 1, '_sys_menu_template_title_interactive_vertical'),
(3262, 1, '_sys_menu_template_title_empty'),
(3263, 1, '_sys_menu_template_title_main'),
(3264, 1, '_sys_menu_template_title_main_submenu'),
(3265, 1, '_sys_menu_template_title_main_submenu_more_auto'),
(3266, 1, '_sys_menu_template_title_panel'),
(3267, 1, '_sys_menu_template_title_main_in_panel'),
(3268, 1, '_sys_menu_template_title_multilevel'),
(3269, 1, '_sys_menu_template_title_toolbar'),
(3270, 1, '_sys_menu_template_title_ver'),
(3271, 1, '_sys_menu_template_title_ver_lite'),
(3272, 1, '_sys_menu_template_title_account_notifications'),
(3273, 1, '_sys_menu_template_title_account_popup'),
(3274, 1, '_sys_menu_template_title_custom_hor'),
(3275, 1, '_sys_menu_template_title_custom_ver'),
(3276, 1, '_sys_menu_template_title_profile_followings'),
(3277, 1, '_sys_menu_template_title_vertical_more_less'),
(3278, 1, '_sys_menu_template_title_profile_stats'),
(3279, 1, '_sys_menu_title_account_dashboard'),
(3280, 1, '_sys_menu_title_account_dashboard_manage_tools'),
(3281, 1, '_sys_menu_title_account_notifications'),
(3282, 1, '_sys_menu_title_account_popup'),
(3283, 1, '_sys_menu_title_account_settings'),
(3284, 1, '_sys_menu_title_add_content'),
(3285, 1, '_sys_menu_title_add_profile'),
(3286, 1, '_sys_menu_title_add_profile_vertical'),
(3287, 1, '_sys_menu_title_cmts_item_actions'),
(3288, 1, '_sys_menu_title_cmts_item_counters'),
(3289, 1, '_sys_menu_title_cmts_item_manage'),
(3290, 1, '_sys_menu_title_cmts_item_meta'),
(3291, 1, '_sys_menu_title_footer'),
(3292, 1, '_sys_menu_title_main'),
(3293, 1, '_sys_menu_title_main_in_panel'),
(3294, 1, '_sys_menu_title_application'),
(3295, 1, '_sys_menu_title_homepage'),
(3296, 1, '_sys_menu_title_homepage_submenu'),
(3297, 1, '_sys_menu_set_title_homepage_submenu'),
(3298, 1, '_sys_menu_item_title_system_explore'),
(3299, 1, '_sys_menu_item_title_explore'),
(3300, 1, '_sys_menu_item_title_system_updates'),
(3301, 1, '_sys_menu_item_title_updates'),
(3302, 1, '_sys_menu_item_title_system_trends'),
(3303, 1, '_sys_menu_item_title_trends'),
(3304, 1, '_sys_menu_title_profiles_create'),
(3305, 1, '_sys_menu_title_profile_followings'),
(3306, 1, '_sys_menu_title_profile_stats'),
(3307, 1, '_sys_menu_title_tags_cloud'),
(3308, 1, '_sys_menu_title_rss'),
(3309, 1, '_sys_menu_title_set_acl_level'),
(3310, 1, '_sys_menu_title_set_badges'),
(3311, 1, '_sys_menu_title_social_sharing'),
(3312, 1, '_sys_menu_title_create_post'),
(3313, 1, '_sys_menu_title_dashboard_content_manage'),
(3314, 1, '_sys_menu_title_dashboard_reports_manage'),
(3315, 1, '_sys_menu_title_add_relation'),
(3316, 1, '_sys_menu_title_panel'),
(3317, 1, '_sys_menu_title_submenu'),
(3318, 1, '_sys_menu_title_toolbar_member'),
(3319, 1, '_sys_menu_title_toolbar_site'),
(3320, 1, '_sys_menu_title_switch_language_popup'),
(3321, 1, '_sys_menu_title_switch_language_inline'),
(3322, 1, '_sys_menu_title_switch_template'),
(3323, 1, '_sys_menu_title_snippet_meta'),
(3324, 1, '_sys_menu_title_vote_reactions_do'),
(3325, 1, '_sys_menu_title_wiki'),
(3326, 1, '_sys_menu_set_title_sys_wiki'),
(3327, 1, '_sys_menu_item_title_wiki_edit'),
(3328, 1, '_sys_menu_item_title_wiki_delete_version'),
(3329, 1, '_sys_menu_item_title_wiki_delete_block'),
(3330, 1, '_sys_menu_item_title_wiki_translate'),
(3331, 1, '_sys_menu_item_title_wiki_history'),
(3332, 1, '_sys_menu_title_favorite_list'),
(3333, 1, '_sys_menu_set_title_sys_favorite_list'),
(3334, 1, '_sys_menu_item_title_favorite_list_edit'),
(3335, 1, '_sys_menu_item_title_wiki_favorite_list_delete'),
(3336, 1, '_sys_menu_dashboard_manage_tools_addon_counter1_caption_default'),
(3337, 1, '_sys_menu_dashboard_manage_tools_addon_counter1_caption_profile_default'),
(3338, 1, '_sys_menu_dashboard_manage_tools_addon_counter2_caption_default'),
(3339, 1, '_sys_menu_title_studio_account_popup'),
(3340, 1, '_sys_menu_set_title_studio_account_popup'),
(3341, 1, '_sys_menu_item_title_system_sa_account'),
(3342, 1, '_sys_menu_item_title_sa_account'),
(3343, 1, '_sys_menu_item_title_system_sa_site'),
(3344, 1, '_sys_menu_item_title_sa_site'),
(3345, 1, '_sys_menu_item_title_system_sa_edit'),
(3346, 1, '_sys_menu_item_title_sa_edit'),
(3347, 1, '_sys_menu_item_title_system_sa_language'),
(3348, 1, '_sys_menu_item_title_sa_language'),
(3349, 1, '_sys_menu_item_title_sa_scheme_auto'),
(3350, 1, '_sys_menu_item_title_sa_scheme_light'),
(3351, 1, '_sys_menu_item_title_sa_scheme_dark'),
(3352, 1, '_sys_menu_item_title_system_sa_logout'),
(3353, 1, '_sys_menu_item_title_sa_logout'),
(3354, 1, '_sys_menu_item_title_inherited'),
(3355, 1, '_sys_menu_item_title_disabled'),
(3356, 1, '_sys_menu_title_con_submenu'),
(3357, 1, '_sys_menu_set_title_con_submenu'),
(3358, 1, '_sys_menu_item_title_con_friends'),
(3359, 1, '_sys_menu_item_title_con_friend_requests'),
(3360, 1, '_sys_menu_item_title_con_friend_requested'),
(3361, 1, '_sys_menu_item_title_con_following'),
(3362, 1, '_sys_menu_item_title_con_followers'),
(3363, 1, '_sys_menu_item_title_recom_friends'),
(3364, 1, '_sys_menu_item_title_recom_subscriptions'),
(3365, 1, '_sys_metatags_mention_added'),
(3366, 1, '_sys_mobile_friends'),
(3367, 1, '_sys_mobile_info'),
(3368, 1, '_sys_mobile_mail'),
(3369, 1, '_sys_mobile_profile_contact'),
(3370, 1, '_sys_mobile_profile_friends'),
(3371, 1, '_sys_mobile_profile_info'),
(3372, 1, '_sys_mobile_search'),
(3373, 1, '_sys_mobile_status'),
(3374, 1, '_sys_name'),
(3375, 1, '_sys_added'),
(3376, 1, '_sys_next'),
(3377, 1, '_sys_notification_account'),
(3378, 1, '_sys_no_menu'),
(3379, 1, '_sys_no_async'),
(3380, 1, '_sys_not_available'),
(3381, 1, '_sys_not_specified'),
(3382, 1, '_sys_on'),
(3383, 1, '_sys_off'),
(3384, 1, '_sys_pages'),
(3385, 1, '_sys_page_content_ph_loading_indicator'),
(3386, 1, '_sys_page_content_ph_text'),
(3387, 1, '_sys_page_content_ph_image'),
(3388, 1, '_sys_page_content_ph_create_post'),
(3389, 1, '_sys_page_content_ph_profile_units'),
(3390, 1, '_sys_page_content_ph_text_units_list'),
(3391, 1, '_sys_page_content_ph_text_units_gallery'),
(3392, 1, '_sys_page_block_title_about'),
(3393, 1, '_sys_page_block_title_account_profile_create'),
(3394, 1, '_sys_page_block_title_account_profile_switcher'),
(3395, 1, '_sys_page_block_title_account_settings_delete'),
(3396, 1, '_sys_page_block_title_account_settings_email'),
(3397, 1, '_sys_page_block_title_account_settings_info'),
(3398, 1, '_sys_page_block_title_account_settings_menu'),
(3399, 1, '_sys_page_block_title_account_settings_pwd'),
(3400, 1, '_sys_page_block_title_profile_settings_cfilter'),
(3401, 1, '_sys_page_block_title_add_content'),
(3402, 1, '_sys_page_block_title_chart_growth'),
(3403, 1, '_sys_page_block_title_chart_stats'),
(3404, 1, '_sys_page_block_title_cmts_administration'),
(3405, 1, '_sys_page_block_title_audit_administration'),
(3406, 1, '_sys_page_block_title_confirm_email'),
(3407, 1, '_sys_page_block_title_confirm_phone'),
(3408, 1, '_sys_page_block_title_create_account'),
(3409, 1, '_sys_page_block_title_sys_author'),
(3410, 1, '_sys_page_block_title_author'),
(3411, 1, '_sys_page_block_title_sys_ask_aqssistant'),
(3412, 1, '_sys_page_block_title_ask_aqssistant'),
(3413, 1, '_sys_page_block_title_sys_recom_friends'),
(3414, 1, '_sys_page_block_title_recom_friends'),
(3415, 1, '_sys_page_block_title_sys_recom_subscriptions'),
(3416, 1, '_sys_page_block_title_recom_subscriptions'),
(3417, 1, '_sys_page_block_title_sys_create_post'),
(3418, 1, '_sys_page_block_title_create_post'),
(3419, 1, '_sys_page_block_title_sys_create_post_context'),
(3420, 1, '_sys_page_block_title_create_post_context'),
(3421, 1, '_sys_page_block_title_sys_create_post_public'),
(3422, 1, '_sys_page_block_title_create_post_public'),
(3423, 1, '_sys_page_block_title_dashboard'),
(3424, 1, '_sys_page_block_title_homepage_menu'),
(3425, 1, '_sys_page_block_title_homepage_splash'),
(3426, 1, '_sys_page_block_title_forgot_password'),
(3427, 1, '_sys_page_block_title_search_keyword_form'),
(3428, 1, '_sys_page_block_title_search_keyword_result'),
(3429, 1, '_sys_page_block_title_membership_stats'),
(3430, 1, '_sys_page_block_system_title_login'),
(3431, 1, '_sys_page_block_system_title_login_step2'),
(3432, 1, '_sys_page_block_system_title_login_step3'),
(3433, 1, '_sys_page_block_system_title_login_only'),
(3434, 1, '_sys_page_block_title_dashboard_content'),
(3435, 1, '_sys_page_block_title_dashboard_audit'),
(3436, 1, '_sys_page_block_title_dashboard_reports'),
(3437, 1, '_sys_page_block_title_system_cmts_view'),
(3438, 1, '_sys_page_block_title_system_cmts_view_author'),
(3439, 1, '_sys_page_block_title_system_cmts_view_content'),
(3440, 1, '_sys_page_block_title_system_cmts_administration'),
(3441, 1, '_sys_page_block_title_system_audit_administration'),
(3442, 1, '_sys_page_block_title_logout'),
(3443, 1, '_sys_page_block_title_login'),
(3444, 1, '_sys_page_block_title_login_step2'),
(3445, 1, '_sys_page_block_title_login_step3'),
(3446, 1, '_sys_page_block_title_manage_tools'),
(3447, 1, '_sys_page_block_title_privacy'),
(3448, 1, '_sys_page_block_title_profile_stats'),
(3449, 1, '_sys_page_block_title_profile_avatar'),
(3450, 1, '_sys_page_block_title_profile_menu'),
(3451, 1, '_sys_page_block_title_profile_followings'),
(3452, 1, '_sys_page_block_title_profile_membership'),
(3453, 1, '_sys_page_block_title_unsubscribe_news'),
(3454, 1, '_sys_page_block_title_unsubscribe_notifications'),
(3455, 1, '_sys_page_block_title_std_dash_version'),
(3456, 1, '_sys_page_block_title_std_dash_space'),
(3457, 1, '_sys_page_block_title_std_dash_host_tools'),
(3458, 1, '_sys_page_block_title_std_dash_cache'),
(3459, 1, '_sys_page_block_title_std_dash_queues'),
(3460, 1, '_sys_page_block_title_terms'),
(3461, 1, '_sys_page_block_title_sys_std_site_submenu'),
(3462, 1, '_sys_page_block_title_std_site_submenu'),
(3463, 1, '_sys_page_block_title_wiki_pages_list'),
(3464, 1, '_sys_page_block_title_wiki_page_contents'),
(3465, 1, '_sys_page_lang_block_about'),
(3466, 1, '_sys_page_lang_block_terms'),
(3467, 1, '_sys_page_lang_block_privacy'),
(3468, 1, '_sys_page_title_about'),
(3469, 1, '_sys_page_title_account_profile_switcher'),
(3470, 1, '_sys_page_title_account_settings_delete'),
(3471, 1, '_sys_page_title_account_settings_email'),
(3472, 1, '_sys_page_title_account_settings_info'),
(3473, 1, '_sys_page_title_account_settings_pwd'),
(3474, 1, '_sys_page_title_profile_settings_cfilter'),
(3475, 1, '_sys_page_title_add_content'),
(3476, 1, '_sys_page_title_cmts_administration'),
(3477, 1, '_sys_page_title_audit_administration'),
(3478, 1, '_sys_page_title_confirm_email'),
(3479, 1, '_sys_page_title_confirm_phone'),
(3480, 1, '_sys_page_title_create_account'),
(3481, 1, '_sys_page_title_dashboard'),
(3482, 1, '_sys_page_title_forgot_password'),
(3483, 1, '_sys_page_title_forgot_password_reset'),
(3484, 1, '_sys_page_title_home'),
(3485, 1, '_sys_page_title_logout'),
(3486, 1, '_sys_page_title_login'),
(3487, 1, '_sys_page_title_login_step2'),
(3488, 1, '_sys_page_title_login_step3'),
(3489, 1, '_sys_page_title_privacy'),
(3490, 1, '_sys_page_title_explore'),
(3491, 1, '_sys_page_title_updates'),
(3492, 1, '_sys_page_title_trends'),
(3493, 1, '_sys_page_title_terms'),
(3494, 1, '_sys_page_title_system_about'),
(3495, 1, '_sys_page_title_system_account_profile_switcher'),
(3496, 1, '_sys_page_title_system_account_settings_delete'),
(3497, 1, '_sys_page_title_system_account_settings_email'),
(3498, 1, '_sys_page_title_system_account_settings_info'),
(3499, 1, '_sys_page_title_system_account_settings_pwd'),
(3500, 1, '_sys_page_title_system_profile_settings_cfilter'),
(3501, 1, '_sys_page_title_system_add_content'),
(3502, 1, '_sys_page_title_system_cmts_view'),
(3503, 1, '_sys_page_title_system_cmts_administration'),
(3504, 1, '_sys_page_title_system_audit_administration'),
(3505, 1, '_sys_page_title_system_confirm_email'),
(3506, 1, '_sys_page_title_system_confirm_phone'),
(3507, 1, '_sys_page_title_system_create_account'),
(3508, 1, '_sys_page_title_system_dashboard'),
(3509, 1, '_sys_page_title_system_dashboard_content');
INSERT INTO `sys_localization_keys` VALUES
(3510, 1, '_sys_page_title_dashboard_content'),
(3511, 1, '_sys_page_title_system_dashboard_reports'),
(3512, 1, '_sys_page_title_dashboard_reports'),
(3513, 1, '_sys_page_title_system_dashboard_audit'),
(3514, 1, '_sys_page_title_dashboard_audit'),
(3515, 1, '_sys_page_title_system_forgot_password'),
(3516, 1, '_sys_page_title_system_search_keyword'),
(3517, 1, '_sys_page_title_search_keyword'),
(3518, 1, '_sys_page_title_system_home'),
(3519, 1, '_sys_page_title_system_login'),
(3520, 1, '_sys_page_title_system_login_step2'),
(3521, 1, '_sys_page_title_system_login_step3'),
(3522, 1, '_sys_page_title_system_privacy'),
(3523, 1, '_sys_page_title_sys_explore'),
(3524, 1, '_sys_page_title_sys_updates'),
(3525, 1, '_sys_page_title_sys_trends'),
(3526, 1, '_sys_page_title_system_terms'),
(3527, 1, '_sys_page_title_system_unsubscribe_news'),
(3528, 1, '_sys_page_title_system_unsubscribe_notifications'),
(3529, 1, '_sys_page_title_system_studio_dashboard'),
(3530, 1, '_sys_page_title_unsubscribe_news'),
(3531, 1, '_sys_page_title_unsubscribe_notifications'),
(3532, 1, '_sys_page_title_studio_dashboard'),
(3533, 1, '_sys_page_title_wiki_pages_list'),
(3534, 1, '_sys_page_title_wiki_page_contents'),
(3535, 1, '_sys_page_title_system_con_friends'),
(3536, 1, '_sys_page_title_con_friends'),
(3537, 1, '_sys_page_block_title_con_friends'),
(3538, 1, '_sys_page_title_system_con_friend_requests'),
(3539, 1, '_sys_page_title_con_friend_requests'),
(3540, 1, '_sys_page_block_title_con_friend_requests'),
(3541, 1, '_sys_page_title_system_con_friend_requested'),
(3542, 1, '_sys_page_title_con_friend_requested'),
(3543, 1, '_sys_page_block_title_con_friend_requested'),
(3544, 1, '_sys_page_title_system_con_following'),
(3545, 1, '_sys_page_title_con_following'),
(3546, 1, '_sys_page_block_title_con_following'),
(3547, 1, '_sys_page_title_system_con_followers'),
(3548, 1, '_sys_page_title_con_followers'),
(3549, 1, '_sys_page_block_title_con_followers'),
(3550, 1, '_sys_page_title_system_recom_friends'),
(3551, 1, '_sys_page_title_recom_friends'),
(3552, 1, '_sys_page_title_system_recom_subscriptions'),
(3553, 1, '_sys_page_title_recom_subscriptions'),
(3554, 1, '_sys_page_type_application'),
(3555, 1, '_sys_page_type_default'),
(3556, 1, '_sys_page_type_standard'),
(3557, 1, '_sys_page_type_wo_hf'),
(3558, 1, '_sys_paginate_info'),
(3559, 1, '_sys_paginate_total'),
(3560, 1, '_sys_paginate_view_all'),
(3561, 1, '_sys_payments_err_no_payments'),
(3562, 1, '_sys_payments_err_not_accept_payments'),
(3563, 1, '_sys_please_select'),
(3564, 1, '_sys_pre_lists_colors'),
(3565, 1, '_sys_pre_lists_color_slate'),
(3566, 1, '_sys_pre_lists_color_gray'),
(3567, 1, '_sys_pre_lists_color_zinc'),
(3568, 1, '_sys_pre_lists_color_neutral'),
(3569, 1, '_sys_pre_lists_color_stone'),
(3570, 1, '_sys_pre_lists_color_red'),
(3571, 1, '_sys_pre_lists_color_orange'),
(3572, 1, '_sys_pre_lists_color_amber'),
(3573, 1, '_sys_pre_lists_color_yellow'),
(3574, 1, '_sys_pre_lists_color_lime'),
(3575, 1, '_sys_pre_lists_color_green'),
(3576, 1, '_sys_pre_lists_color_emerald'),
(3577, 1, '_sys_pre_lists_color_teal'),
(3578, 1, '_sys_pre_lists_color_cyan'),
(3579, 1, '_sys_pre_lists_color_sky'),
(3580, 1, '_sys_pre_lists_color_blue'),
(3581, 1, '_sys_pre_lists_color_indigo'),
(3582, 1, '_sys_pre_lists_color_violet'),
(3583, 1, '_sys_pre_lists_color_purple'),
(3584, 1, '_sys_pre_lists_color_fuchsia'),
(3585, 1, '_sys_pre_lists_color_pink'),
(3586, 1, '_sys_pre_lists_color_rose'),
(3587, 1, '_sys_pre_lists_content_filter'),
(3588, 1, '_sys_pre_lists_content_filter_g'),
(3589, 1, '_sys_pre_lists_content_filter_pg'),
(3590, 1, '_sys_pre_lists_content_filter_pg13'),
(3591, 1, '_sys_pre_lists_content_filter_r'),
(3592, 1, '_sys_pre_lists_content_filter_x'),
(3593, 1, '_sys_pre_lists_relations'),
(3594, 1, '_sys_pre_lists_relations_husband'),
(3595, 1, '_sys_pre_lists_relations_wife'),
(3596, 1, '_sys_pre_lists_relations_father'),
(3597, 1, '_sys_pre_lists_relations_mother'),
(3598, 1, '_sys_pre_lists_relations_son'),
(3599, 1, '_sys_pre_lists_relations_daughter'),
(3600, 1, '_sys_pre_lists_relations_brother'),
(3601, 1, '_sys_pre_lists_relations_sister'),
(3602, 1, '_sys_pre_lists_report_types'),
(3603, 1, '_sys_pre_lists_report_types_spam'),
(3604, 1, '_sys_pre_lists_report_types_scam'),
(3605, 1, '_sys_pre_lists_report_types_fraud'),
(3606, 1, '_sys_pre_lists_report_types_nude'),
(3607, 1, '_sys_pre_lists_report_types_other'),
(3608, 1, '_sys_pre_lists_vote_reactions'),
(3609, 1, '_sys_pre_lists_vote_reactions_default'),
(3610, 1, '_sys_pre_lists_vote_reactions_like'),
(3611, 1, '_sys_pre_lists_vote_reactions_love'),
(3612, 1, '_sys_pre_lists_vote_reactions_joy'),
(3613, 1, '_sys_pre_lists_vote_reactions_surprise'),
(3614, 1, '_sys_pre_lists_vote_reactions_sadness'),
(3615, 1, '_sys_pre_lists_vote_reactions_anger'),
(3616, 1, '_sys_pre_lists_studio_widget_types'),
(3617, 1, '_sys_pre_lists_studio_widget_types_library'),
(3618, 1, '_sys_pre_lists_studio_widget_types_appearance'),
(3619, 1, '_sys_pre_lists_studio_widget_types_structure'),
(3620, 1, '_sys_pre_lists_studio_widget_types_content'),
(3621, 1, '_sys_pre_lists_studio_widget_types_users'),
(3622, 1, '_sys_pre_lists_studio_widget_types_configuration'),
(3623, 1, '_sys_pre_lists_studio_widget_types_extensions'),
(3624, 1, '_sys_pre_lists_studio_widget_types_integrations'),
(3625, 1, '_sys_pre_lists_studio_widget_types_favorites'),
(3626, 1, '_sys_profile_sample_single'),
(3627, 1, '_sys_profile_with_type'),
(3628, 1, '_sys_profile_friend_request_added'),
(3629, 1, '_sys_profile_friendship_added'),
(3630, 1, '_sys_profile_subscription_added'),
(3631, 1, '_sys_profile_status_active'),
(3632, 1, '_sys_profile_status_pending'),
(3633, 1, '_sys_profile_status_suspended'),
(3634, 1, '_sys_profile_storage_quota_size'),
(3635, 1, '_sys_profile_storage_quota_number'),
(3636, 1, '_sys_private'),
(3637, 1, '_sys_privacy_forms_input_allow_view_to'),
(3638, 1, '_sys_privacy_groups_acl'),
(3639, 1, '_sys_pruning_db'),
(3640, 1, '_sys_pruning_files'),
(3641, 1, '_sys_ps_group_title_memberships_selected'),
(3642, 1, '_sys_ps_group_title_custom'),
(3643, 1, '_sys_ps_group_title_followers'),
(3644, 1, '_sys_ps_group_title_friends'),
(3645, 1, '_sys_ps_group_title_friends_selected'),
(3646, 1, '_sys_ps_group_title_relations'),
(3647, 1, '_sys_ps_group_title_relations_selected'),
(3648, 1, '_sys_ps_group_title_me_only'),
(3649, 1, '_sys_ps_group_title_members'),
(3650, 1, '_sys_ps_group_title_public'),
(3651, 1, '_sys_ps_group_title_participants'),
(3652, 1, '_sys_ps_group_title_closed'),
(3653, 1, '_sys_ps_group_title_secret'),
(3654, 1, '_sys_ps_group_title_unknown'),
(3655, 1, '_sys_ps_ferr_incorrect_gc_not_allowed'),
(3656, 1, '_sys_ps_ferr_incorrect_gc_owner'),
(3657, 1, '_sys_ps_ferr_incorrect_select'),
(3658, 1, '_sys_ps_space_title_friend'),
(3659, 1, '_sys_push_notification_request'),
(3660, 1, '_sys_push_notification_request_yes'),
(3661, 1, '_sys_push_notification_request_no'),
(3662, 1, '_sys_read_more'),
(3663, 1, '_sys_relation'),
(3664, 1, '_sys_request_module_not_found_cpt'),
(3665, 1, '_sys_request_module_not_found_cnt'),
(3666, 1, '_sys_request_page_not_found_cpt'),
(3667, 1, '_sys_request_page_not_found_cnt'),
(3668, 1, '_sys_request_method_not_found_cpt'),
(3669, 1, '_sys_request_method_not_found_cnt'),
(3670, 1, '_sys_score_counter'),
(3671, 1, '_sys_score_counter_empty'),
(3672, 1, '_sys_score_n_score'),
(3673, 1, '_sys_score_do_up'),
(3674, 1, '_sys_score_do_down'),
(3675, 1, '_sys_score_do_by'),
(3676, 1, '_sys_score_err_not_enabled'),
(3677, 1, '_sys_score_err_duplicate_vote'),
(3678, 1, '_sys_search_main_title'),
(3679, 1, '_sys_select'),
(3680, 1, '_sys_send'),
(3681, 1, '_sys_search_placeholder'),
(3682, 1, '_sys_search_or_ask_placeholder'),
(3683, 1, '_sys_show_less'),
(3684, 1, '_sys_show_more'),
(3685, 1, '_sys_spam_detected'),
(3686, 1, '_sys_spam_detected_contact'),
(3687, 1, '_sys_splash_btn_start'),
(3688, 1, '_sys_splash_err_domain_incorrect'),
(3689, 1, '_sys_splash_err_domain_is_used'),
(3690, 1, '_sys_splash_err_service_not_available'),
(3691, 1, '_sys_splash_inp_placeholder'),
(3692, 1, '_sys_splash_inp_postfix'),
(3693, 1, '_sys_splash_slogan'),
(3694, 1, '_sys_status'),
(3695, 1, '_sys_status_awaiting'),
(3696, 1, '_sys_status_failed'),
(3697, 1, '_sys_status_pending'),
(3698, 1, '_sys_status_suspended'),
(3699, 1, '_sys_storage_err_db'),
(3700, 1, '_sys_storage_err_engine_add'),
(3701, 1, '_sys_storage_err_engine_get'),
(3702, 1, '_sys_storage_err_file_not_found'),
(3703, 1, '_sys_storage_err_file_too_big'),
(3704, 1, '_sys_storage_err_filesystem_perm'),
(3705, 1, '_sys_storage_err_no_file'),
(3706, 1, '_sys_storage_err_no_input_method'),
(3707, 1, '_sys_storage_err_object_quota_exceeded'),
(3708, 1, '_sys_storage_err_permission_denied'),
(3709, 1, '_sys_storage_err_site_quota_exceeded'),
(3710, 1, '_sys_storage_err_unlink'),
(3711, 1, '_sys_storage_err_user_quota_exceeded'),
(3712, 1, '_sys_storage_err_wrong_ext'),
(3713, 1, '_sys_storage_files'),
(3714, 1, '_sys_storage_invalid_file'),
(3715, 1, '_sys_storage_restriction_ext_all_allowed'),
(3716, 1, '_sys_storage_restriction_ext_all_denied'),
(3717, 1, '_sys_storage_restriction_ext_allowed'),
(3718, 1, '_sys_storage_restriction_ext_denied'),
(3719, 1, '_sys_storage_restriction_size'),
(3720, 1, '_sys_switch_profile'),
(3721, 1, '_sys_submit'),
(3722, 1, '_sys_subscribe'),
(3723, 1, '_sys_template_mixed_mask'),
(3724, 1, '_sys_tour_launcher_welcome_title'),
(3725, 1, '_sys_tour_launcher_welcome_txt'),
(3726, 1, '_sys_tour_launcher_apps_title'),
(3727, 1, '_sys_tour_launcher_apps_txt'),
(3728, 1, '_sys_tour_launcher_designer_title'),
(3729, 1, '_sys_tour_launcher_designer_txt'),
(3730, 1, '_sys_tour_launcher_accounts_title'),
(3731, 1, '_sys_tour_launcher_accounts_txt'),
(3732, 1, '_sys_tour_launcher_dashboard_title'),
(3733, 1, '_sys_tour_launcher_dashboard_txt'),
(3734, 1, '_sys_tour_launcher_builder_page_title'),
(3735, 1, '_sys_tour_launcher_builder_page_txt'),
(3736, 1, '_sys_tour_launcher_builder_permissions_title'),
(3737, 1, '_sys_tour_launcher_builder_permissions_txt'),
(3738, 1, '_sys_tour_launcher_builder_forms_title'),
(3739, 1, '_sys_tour_launcher_builder_forms_txt'),
(3740, 1, '_sys_tour_launcher_builder_menus_title'),
(3741, 1, '_sys_tour_launcher_builder_menus_txt'),
(3742, 1, '_sys_tour_launcher_polyglot_title'),
(3743, 1, '_sys_tour_launcher_polyglot_txt'),
(3744, 1, '_sys_tour_launcher_reorganize_title'),
(3745, 1, '_sys_tour_launcher_reorganize_txt'),
(3746, 1, '_sys_tour_launcher_favourites_title'),
(3747, 1, '_sys_tour_launcher_favourites_txt'),
(3748, 1, '_sys_tour_launcher_add_apps_title'),
(3749, 1, '_sys_tour_launcher_add_apps_txt'),
(3750, 1, '_sys_tour_homepage_welcome_title'),
(3751, 1, '_sys_tour_homepage_welcome_txt'),
(3752, 1, '_sys_tour_homepage_account_menu_title'),
(3753, 1, '_sys_tour_homepage_account_menu_txt'),
(3754, 1, '_sys_txt_api_key'),
(3755, 1, '_sys_txt_access_denied'),
(3756, 1, '_sys_txt_account_pending'),
(3757, 1, '_sys_txt_account_profile_context_change_suggestion'),
(3758, 1, '_sys_txt_account_profile_context_change_to_another_suggestion'),
(3759, 1, '_sys_txt_account_profile_context_changed_success'),
(3760, 1, '_sys_txt_account_suspended'),
(3761, 1, '_sys_txt_account_unconfirmed_email'),
(3762, 1, '_sys_txt_account_unconfirmed_phone'),
(3763, 1, '_sys_txt_account_profile_system'),
(3764, 1, '_sys_txt_account_need_to_change_password'),
(3765, 1, '_sys_txt_account_cannot_delete'),
(3766, 1, '_sys_txt_account_deletion_scheduled'),
(3767, 1, '_sys_txt_captcha_not_available'),
(3768, 1, '_sys_txt_categories_button_caption_add'),
(3769, 1, '_sys_txt_categories_button_caption_addnew'),
(3770, 1, '_sys_txt_change_image'),
(3771, 1, '_sys_txt_cmt_loading'),
(3772, 1, '_sys_txt_confirm_email_already_confirmed'),
(3773, 1, '_sys_txt_confirm_email_desc'),
(3774, 1, '_sys_txt_confirm_email_error_occured'),
(3775, 1, '_sys_txt_confirm_email_sent'),
(3776, 1, '_sys_txt_confirm_email_sent_failed'),
(3777, 1, '_sys_txt_confirm_email_success'),
(3778, 1, '_sys_txt_confirm_phone_already_confirmed'),
(3779, 1, '_sys_txt_confirm_phone_set_phone_error_occured'),
(3780, 1, '_sys_txt_confirm_phone_send_sms_error_occured'),
(3781, 1, '_sys_txt_confirm_phone_sms_text'),
(3782, 1, '_sys_txt_confirm_phone_confirm_success'),
(3783, 1, '_sys_txt_confirm_phone_set_phone_desc_set_phone'),
(3784, 1, '_sys_txt_confirm_phone_set_phone_desc_phone_confirmation'),
(3785, 1, '_sys_txt_create_post_placeholder'),
(3786, 1, '_sys_txt_err_attach_links'),
(3787, 1, '_sys_txt_current_picture'),
(3788, 1, '_sys_txt_data_successfully_submitted'),
(3789, 1, '_sys_txt_delete'),
(3790, 1, '_sys_txt_discard'),
(3791, 1, '_sys_txt_empty'),
(3792, 1, '_sys_txt_error_account_creation'),
(3793, 1, '_sys_txt_error_account_delete'),
(3794, 1, '_sys_txt_error_account_is_not_defined'),
(3795, 1, '_sys_txt_error_account_update'),
(3796, 1, '_sys_txt_error_entry_creation'),
(3797, 1, '_sys_txt_error_entry_delete'),
(3798, 1, '_sys_txt_error_entry_is_not_defined'),
(3799, 1, '_sys_txt_error_entry_update'),
(3800, 1, '_sys_txt_error_occured'),
(3801, 1, '_sys_txt_error_profile_is_not_defined'),
(3802, 1, '_sys_txt_error_profile_update'),
(3803, 1, '_sys_txt_err_sound_not_transcoded_yet'),
(3804, 1, '_sys_txt_forms_unknown_field_err'),
(3805, 1, '_sys_txt_field_created'),
(3806, 1, '_sys_txt_field_updated'),
(3807, 1, '_sys_txt_forgot_pasword'),
(3808, 1, '_sys_txt_forgot_pasword_check_email'),
(3809, 1, '_sys_txt_forgot_pasword_check_phone'),
(3810, 1, '_sys_txt_forgot_pasword_desc'),
(3811, 1, '_sys_txt_forgot_pasword_by_both_desc'),
(3812, 1, '_sys_txt_forgot_pasword_by_phone_desc'),
(3813, 1, '_sys_txt_forgot_pasword_email_send_failed'),
(3814, 1, '_sys_txt_forgot_pasword_error_occured'),
(3815, 1, '_sys_txt_forgot_pasword_sms_text'),
(3816, 1, '_sys_txt_forgot_pasword_logged_in'),
(3817, 1, '_sys_txt_form_entry_input_picture_copy'),
(3818, 1, '_sys_txt_form_entry_input_picture_delete'),
(3819, 1, '_sys_txt_form_entry_input_picture_insert'),
(3820, 1, '_sys_txt_form_entry_input_picture_pic_url'),
(3821, 1, '_sys_txt_form_entry_input_picture_use_as_thumb'),
(3822, 1, '_sys_txt_form_submission_error'),
(3823, 1, '_sys_txt_form_submission_error_csrf_expired'),
(3824, 1, '_sys_txt_homepage_cover'),
(3825, 1, '_sys_txt_login_2fa_description'),
(3826, 1, '_sys_txt_login_2fa_sms_text'),
(3827, 1, '_sys_txt_login_2fa_sms_error_occured'),
(3828, 1, '_sys_txt_join_description_action'),
(3829, 1, '_sys_txt_login_description_action'),
(3830, 1, '_sys_txt_login_error'),
(3831, 1, '_sys_txt_login_locked'),
(3832, 1, '_sys_txt_following_counter'),
(3833, 1, '_sys_txt_followers_counter'),
(3834, 1, '_sys_txt_friends_counter'),
(3835, 1, '_sys_txt_login_invalid_role'),
(3836, 1, '_sys_txt_my_profiles'),
(3837, 1, '_sys_txt_switch_profiles'),
(3838, 1, '_sys_txt_new_picture'),
(3839, 1, '_sys_txt_not_found'),
(3840, 1, '_sys_txt_no_picture_uploaded'),
(3841, 1, '_sys_txt_no_title'),
(3842, 1, '_sys_txt_n_by'),
(3843, 1, '_sys_txt_n_friends'),
(3844, 1, '_sys_txt_n_mutual_friends'),
(3845, 1, '_sys_txt_one_mutual_friend'),
(3846, 1, '_sys_txt_powered_by'),
(3847, 1, '_sys_txt_report_status_0'),
(3848, 1, '_sys_txt_report_status_1'),
(3849, 1, '_sys_txt_report_status_2'),
(3850, 1, '_sys_txt_report_status_3'),
(3851, 1, '_sys_txt_reset_pasword_success'),
(3852, 1, '_sys_txt_reset_pasword_error_invalid_key'),
(3853, 1, '_sys_txt_reset_pasword_error_not_found'),
(3854, 1, '_sys_txt_reset_pasword_error_occured'),
(3855, 1, '_sys_txt_splash_btn_join'),
(3856, 1, '_sys_txt_splash_slide01_title'),
(3857, 1, '_sys_txt_splash_slide01_desc'),
(3858, 1, '_sys_txt_splash_slide02_txt'),
(3859, 1, '_sys_txt_splash_slide03_txt'),
(3860, 1, '_sys_txt_splash_slide04_txt'),
(3861, 1, '_sys_txt_splash_title'),
(3862, 1, '_sys_txt_splash_slogan'),
(3863, 1, '_sys_txt_splash_login'),
(3864, 1, '_sys_txt_splash_join'),
(3865, 1, '_sys_txt_splash_connect'),
(3866, 1, '_sys_txt_splash_connect_text'),
(3867, 1, '_sys_txt_splash_share'),
(3868, 1, '_sys_txt_splash_share_text'),
(3869, 1, '_sys_txt_splash_create'),
(3870, 1, '_sys_txt_splash_create_text'),
(3871, 1, '_sys_txt_switch_profile_context'),
(3872, 1, '_sys_txt_unsubscribe_email_settings_update_success'),
(3873, 1, '_sys_txt_unsubscribe_error_occured'),
(3874, 1, '_sys_txt_unsubscribe_info'),
(3875, 1, '_sys_txt_unsubscribe_wrong_link'),
(3876, 1, '_sys_txt_url'),
(3877, 1, '_sys_txt_user_n'),
(3878, 1, '_sys_txt_reports_title'),
(3879, 1, '_sys_txt_reports_grid_view_notes'),
(3880, 1, '_sys_txt_share_popup_header'),
(3881, 1, '_sys_txt_share_popup_url'),
(3882, 1, '_sys_txt_share_popup_copy_to_clipboard_text'),
(3883, 1, '_sys_txt_share_popup_embeded_code'),
(3884, 1, '_sys_txt_search_sort_by'),
(3885, 1, '_sys_txt_search_sort_by_default'),
(3886, 1, '_sys_unconfirmed'),
(3887, 1, '_sys_upgrade_conclusion'),
(3888, 1, '_sys_upgrade_db_and_files_versions_different'),
(3889, 1, '_sys_upgrade_files_checksum_failed'),
(3890, 1, '_sys_upgrade_files_checksum_failed_too_many'),
(3891, 1, '_sys_upgrade_files_checksum_failed_too_many_module'),
(3892, 1, '_sys_upgrade_get_version_info_failed'),
(3893, 1, '_sys_upgrade_modules_upgrade_first'),
(3894, 1, '_sys_upgrade_patch_checksum_failed'),
(3895, 1, '_sys_upgrade_patch_download_failed'),
(3896, 1, '_sys_upgrade_patch_invalid'),
(3897, 1, '_sys_upgrade_patch_unpack_failed'),
(3898, 1, '_sys_uploader_button_name_single'),
(3899, 1, '_sys_uploader_close'),
(3900, 1, '_sys_uploader_confirm_close_popup'),
(3901, 1, '_sys_uploader_confirm_leaving_page'),
(3902, 1, '_sys_uploader_crop_button_name'),
(3903, 1, '_sys_uploader_crop_rotate_left'),
(3904, 1, '_sys_uploader_crop_rotate_right'),
(3905, 1, '_sys_uploader_crop_submit_button'),
(3906, 1, '_sys_uploader_crop_title'),
(3907, 1, '_sys_uploader_crop_err_upload'),
(3908, 1, '_sys_uploader_crop_wrong_ext'),
(3909, 1, '_sys_uploader_err_msg'),
(3910, 1, '_sys_uploader_html5_button_name'),
(3911, 1, '_sys_uploader_html5_drop_area'),
(3912, 1, '_sys_uploader_html5_shoose_file'),
(3913, 1, '_sys_uploader_html5_title'),
(3914, 1, '_sys_uploader_html5_default_message'),
(3915, 1, '_sys_uploader_html5_file_is_too_big'),
(3916, 1, '_sys_uploader_html5_number_of_files_exceeded'),
(3917, 1, '_sys_uploader_html5_invalid_file_type'),
(3918, 1, '_sys_uploader_simple_attach_one_more_file'),
(3919, 1, '_sys_uploader_simple_button_name'),
(3920, 1, '_sys_uploader_simple_submit_button'),
(3921, 1, '_sys_uploader_record_video_button_name'),
(3922, 1, '_sys_uploader_record_video_submit_button'),
(3923, 1, '_sys_uploader_record_video_title'),
(3924, 1, '_sys_uploader_record_video_start_button'),
(3925, 1, '_sys_uploader_record_video_stop_button'),
(3926, 1, '_sys_uploader_record_video_mb'),
(3927, 1, '_sys_uploader_record_video_switch_camera'),
(3928, 1, '_sys_uploader_upload_canceled'),
(3929, 1, '_sys_uploader_camera_capture_failed'),
(3930, 1, '_sys_uploader_unsupported_browser'),
(3931, 1, '_sys_uploader_image_reposition'),
(3932, 1, '_sys_uploader_image_reposition_save'),
(3933, 1, '_sys_uploader_image_reposition_cancel'),
(3934, 1, '_sys_uploader_image_upload'),
(3935, 1, '_sys_uploader_image_reposition_info'),
(3936, 1, '_sys_edit_profile'),
(3937, 1, '_sys_exit'),
(3938, 1, '_sys_warn'),
(3939, 1, '_sys_x_days'),
(3940, 1, '_to'),
(3941, 1, '_top'),
(3942, 1, '_uknown'),
(3943, 1, '_undefined'),
(3944, 1, '_view_counter'),
(3945, 1, '_view_do_view'),
(3946, 1, '_view_do_view_by'),
(3947, 1, '_view_do_view_by_counter'),
(3948, 1, '_view_n_views'),
(3949, 1, '_vote_counter'),
(3950, 1, '_vote_do_like'),
(3951, 1, '_vote_do_unlike'),
(3952, 1, '_vote_do_by'),
(3953, 1, '_vote_do_by_reactions'),
(3954, 1, '_vote_do_by_x_reaction'),
(3955, 1, '_vote_do_by_summary'),
(3956, 1, '_vote_err_not_enabled'),
(3957, 1, '_vote_err_duplicate_vote'),
(3958, 1, '_vote_n_votes'),
(3959, 1, '_week_fri'),
(3960, 1, '_week_mon'),
(3961, 1, '_week_sat'),
(3962, 1, '_week_sun'),
(3963, 1, '_week_thu'),
(3964, 1, '_week_tue'),
(3965, 1, '_week_wed'),
(3966, 1, '_sys_option_labels'),
(3967, 1, '_sys_option_per_page_browse_showcase'),
(3968, 1, '_sys_option_per_page_browse_recommended'),
(3969, 1, '_sys_javascript_requred'),
(3970, 1, '_sys_wiki_system_title'),
(3971, 1, '_sys_wiki_error_page_exists'),
(3972, 1, '_sys_wiki_error_no_rev'),
(3973, 1, '_sys_wiki_error_no_revs'),
(3974, 1, '_sys_wiki_error_missing_wiki_object'),
(3975, 1, '_sys_wiki_error_action_not_allowed'),
(3976, 1, '_sys_wiki_error_incorrect_page_uri'),
(3977, 1, '_sys_wiki_error_no_such_lang'),
(3978, 1, '_sys_wiki_error_occured'),
(3979, 1, '_sys_wiki_view_rev'),
(3980, 1, '_sys_wiki_lang_mask'),
(3981, 1, '_sys_wiki_lang_mask_warn'),
(3982, 1, '_sys_wiki_lang_missing'),
(3983, 1, '_sys_wiki_revisions_deleted'),
(3984, 1, '_sys_wiki_confirm_block_deletion'),
(3985, 1, '_sys_wiki_block_deleted'),
(3986, 1, '_sys_wiki_add_block'),
(3987, 1, '_sys_wiki_add_page'),
(3988, 1, '_sys_wiki_add_page_text'),
(3989, 1, '_sys_wiki_no_missing_translations'),
(3990, 1, '_sys_wiki_all_translations_up_to_date'),
(3991, 1, '_sys_wiki_title_title'),
(3992, 1, '_sys_wiki_title_lang_missing'),
(3993, 1, '_sys_wiki_title_lang_outated'),
(3994, 1, '_sys_wiki_title_author'),
(3995, 1, '_sys_wiki_title_content'),
(3996, 1, '_sys_wiki_title_time'),
(3997, 1, '_sys_wiki_orig'),
(3998, 1, '_sys_wiki_copy'),
(3999, 1, '_sys_wiki_open_in_editor'),
(4000, 1, '_sys_wiki_external_editor_references_comment'),
(4001, 1, '_adm_lmi_cpt_groups_roles'),
(4002, 1, '_adm_form_txt_groups_roles_add_popup'),
(4003, 1, '_adm_form_txt_groups_role_value'),
(4004, 1, '_adm_form_txt_groups_role_value_err'),
(4005, 1, '_adm_form_txt_groups_roles_edit_popup'),
(4006, 1, '_adm_form_txt_groups_role_manage_fans'),
(4007, 1, '_adm_form_txt_groups_role_manage_roles'),
(4008, 1, '_adm_form_txt_groups_role_edit'),
(4009, 1, '_adm_form_txt_groups_role_invite'),
(4010, 1, '_adm_form_txt_groups_role_change_cover'),
(4011, 1, '_adm_form_txt_groups_role_post'),
(4012, 1, '_adm_form_txt_groups_role_edit_any'),
(4013, 1, '_adm_form_txt_groups_role_delete_any'),
(4014, 1, '_adm_form_txt_groups_role_pin'),
(4015, 1, '_sys_txt_quill_tooltip_bold'),
(4016, 1, '_sys_txt_quill_tooltip_italic'),
(4017, 1, '_sys_txt_quill_tooltip_underline'),
(4018, 1, '_sys_txt_quill_tooltip_clean'),
(4019, 1, '_sys_txt_quill_tooltip_list_ordered'),
(4020, 1, '_sys_txt_quill_tooltip_list_bullet'),
(4021, 1, '_sys_txt_quill_tooltip_indent_1'),
(4022, 1, '_sys_txt_quill_tooltip_indent_2'),
(4023, 1, '_sys_txt_quill_tooltip_blockquote'),
(4024, 1, '_sys_txt_quill_tooltip_direction'),
(4025, 1, '_sys_txt_quill_tooltip_script_sub'),
(4026, 1, '_sys_txt_quill_tooltip_script_super'),
(4027, 1, '_sys_txt_quill_tooltip_link'),
(4028, 1, '_sys_txt_quill_tooltip_image'),
(4029, 1, '_sys_txt_quill_tooltip_code_block'),
(4030, 1, '_sys_txt_quill_tooltip_color'),
(4031, 1, '_sys_txt_quill_tooltip_background'),
(4032, 1, '_sys_txt_quill_tooltip_align'),
(4033, 1, '_sys_txt_quill_tooltip_header'),
(4034, 1, '_sys_txt_quill_tooltip_embed'),
(4035, 1, '_sys_txt_quill_tooltip_embed_popup_header'),
(4036, 1, '_sys_txt_quill_tooltip_link_popup_header'),
(4037, 1, '_sys_queue_emails'),
(4038, 1, '_sys_queue_push'),
(4039, 1, '_sys_queue_transcoding'),
(4040, 1, '_sys_queue_storage'),
(4041, 1, '_sys_page_title_redirect'),
(4042, 1, '_sys_page_block_title_redirect'),
(4043, 1, '_sys_redirect_confirmation'),
(4044, 1, '_sys_redirect_confirmation_harmful'),
(4045, 1, '_sys_leave_page_confirmation'),
(4046, 3, '_bx_eng_wgt_cpt'),
(4047, 3, '_bx_eng_stg_cpt_type'),
(4048, 3, '_bx_eng_stg_cpt_category_system'),
(4049, 2, '_sys_module_en'),
(4050, 4, '_bx_artificer_wgt_cpt'),
(4051, 4, '_bx_artificer_stg_cpt_type'),
(4052, 4, '_bx_artificer_stg_cpt_category_system'),
(4053, 4, '_bx_artificer_stg_cpt_option_switcher_name'),
(4054, 4, '_bx_artificer_stg_cpt_option_page_width'),
(4055, 4, '_bx_artificer_stg_cpt_option_header_stretched'),
(4056, 4, '_bx_artificer_stg_cpt_option_header_search'),
(4057, 4, '_bx_artificer_stg_cpt_option_color_scheme'),
(4058, 4, '_bx_artificer_stg_cpt_option_color_scheme_auto'),
(4059, 4, '_bx_artificer_stg_cpt_option_color_scheme_light_only'),
(4060, 4, '_bx_artificer_stg_cpt_option_color_scheme_dark_only'),
(4061, 4, '_bx_artificer_stg_cpt_option_use_htmx'),
(4062, 4, '_bx_artificer_stg_cpt_category_styles_custom'),
(4063, 4, '_bx_artificer_stg_cpt_option_styles_custom'),
(4064, 4, '_bx_artificer_stg_cpt_option_images_custom'),
(4065, 4, '_bx_artificer_stg_cpt_option_images_custom_inf'),
(4066, 4, '_bx_artificer_page_block_title_splash'),
(4067, 4, '_bx_artificer_page_block_title_splash_lite'),
(4068, 4, '_bx_artificer_lmi_cpt_styles'),
(4069, 4, '_bx_artificer_menu_template_title_sidebar_site'),
(4070, 4, '_bx_artificer_menu_title_sidebar_site'),
(4071, 4, '_bx_artificer_txt_close_sidebar'),
(4072, 4, '_bx_artificer_txt_color_scheme_light'),
(4073, 4, '_bx_artificer_txt_color_scheme_dark'),
(4074, 4, '_bx_artificer_txt_color_scheme_system'),
(4075, 4, '_bx_artificer_txt_splash_welcome_l1'),
(4076, 4, '_bx_artificer_txt_splash_welcome_l2'),
(4077, 4, '_bx_artificer_txt_splash_welcome_l3'),
(4078, 4, '_bx_artificer_txt_splash_welcome_l4'),
(4079, 4, '_bx_artificer_txt_splash_welcome_a1'),
(4080, 4, '_bx_artificer_txt_splash_welcome_a2'),
(4081, 4, '_bx_artificer_txt_splash_stats_l1'),
(4082, 4, '_bx_artificer_txt_splash_stats_l2'),
(4083, 4, '_bx_artificer_txt_splash_stats_c1'),
(4084, 4, '_bx_artificer_txt_splash_stats_c2'),
(4085, 4, '_bx_artificer_txt_splash_stats_c3'),
(4086, 4, '_bx_artificer_txt_splash_login_title'),
(4087, 4, '_bx_artificer_txt_splash_login_join'),
(4088, 4, '_bx_artificer_txt_splash_login_agreement'),
(4089, 2, '_sys_module_artificer'),
(4090, 5, '_bx_persons'),
(4091, 5, '_bx_persons_cmts'),
(4092, 5, '_bx_persons_option_autoapproval'),
(4093, 5, '_bx_persons_option_default_acl_level'),
(4094, 5, '_bx_persons_option_enable_profile_activation_letter'),
(4095, 5, '_bx_persons_option_redirect_aadd'),
(4096, 5, '_bx_persons_option_redirect_aadd_profile'),
(4097, 5, '_bx_persons_option_redirect_aadd_last'),
(4098, 5, '_bx_persons_option_redirect_aadd_custom'),
(4099, 5, '_bx_persons_option_redirect_aadd_homepage'),
(4100, 5, '_bx_persons_option_redirect_aadd_custom_url'),
(4101, 5, '_bx_persons_option_activation_on'),
(4102, 5, '_bx_persons_option_activation_add'),
(4103, 5, '_bx_persons_option_activation_edit'),
(4104, 5, '_bx_persons_option_activation_off'),
(4105, 5, '_bx_persons_option_num_connections_quick'),
(4106, 5, '_bx_persons_option_per_page_browse'),
(4107, 5, '_bx_persons_option_num_rss'),
(4108, 5, '_bx_persons_option_searchable_fields'),
(4109, 5, '_bx_persons_option_public_subscriptions'),
(4110, 5, '_bx_persons_option_public_subscribed_me'),
(4111, 5, '_bx_persons_form_profile'),
(4112, 5, '_bx_persons_form_profile_display_add'),
(4113, 5, '_bx_persons_form_profile_display_edit'),
(4114, 5, '_bx_persons_form_profile_display_edit_cover'),
(4115, 5, '_bx_persons_form_profile_display_delete'),
(4116, 5, '_bx_persons_form_profile_display_view'),
(4117, 5, '_bx_persons_form_profile_display_view_full'),
(4118, 5, '_bx_persons_form_profile_input_sys_do_submit'),
(4119, 5, '_bx_persons_form_profile_input_submit'),
(4120, 5, '_bx_persons_form_profile_input_sys_allow_view_to'),
(4121, 5, '_bx_persons_form_profile_input_allow_view_to'),
(4122, 5, '_bx_persons_form_profile_input_sys_allow_post_to'),
(4123, 5, '_bx_persons_form_profile_input_allow_post_to'),
(4124, 5, '_bx_persons_form_profile_input_sys_allow_contact_to'),
(4125, 5, '_bx_persons_form_profile_input_allow_contact_to'),
(4126, 5, '_bx_persons_form_profile_input_sys_fullname'),
(4127, 5, '_bx_persons_form_profile_input_fullname'),
(4128, 5, '_bx_persons_form_profile_input_sys_last_name'),
(4129, 5, '_bx_persons_form_profile_input_last_name'),
(4130, 5, '_bx_persons_form_profile_input_fullname_err'),
(4131, 5, '_bx_persons_form_profile_input_sys_desc'),
(4132, 5, '_bx_persons_form_profile_input_desc'),
(4133, 5, '_bx_persons_form_profile_input_sys_picture'),
(4134, 5, '_bx_persons_form_profile_input_picture'),
(4135, 5, '_bx_persons_form_profile_input_picture_err'),
(4136, 5, '_bx_persons_form_profile_input_picture_search'),
(4137, 5, '_bx_persons_form_profile_input_online_search'),
(4138, 5, '_bx_persons_form_profile_input_sys_cover'),
(4139, 5, '_bx_persons_form_profile_input_cover'),
(4140, 5, '_bx_persons_form_profile_input_sys_delete_confirm'),
(4141, 5, '_bx_persons_form_profile_input_delete_confirm'),
(4142, 5, '_bx_persons_form_profile_input_delete_confirm_info'),
(4143, 5, '_bx_persons_form_profile_input_delete_confirm_error'),
(4144, 5, '_bx_persons_form_profile_input_sys_birthday'),
(4145, 5, '_bx_persons_form_profile_input_birthday_err'),
(4146, 5, '_bx_persons_form_profile_input_birthday'),
(4147, 5, '_bx_persons_form_profile_input_sys_gender'),
(4148, 5, '_bx_persons_form_profile_input_gender'),
(4149, 5, '_bx_persons_form_profile_input_sys_profile_email'),
(4150, 5, '_bx_persons_form_profile_input_profile_email'),
(4151, 5, '_bx_persons_form_profile_input_sys_profile_status'),
(4152, 5, '_bx_persons_form_profile_input_profile_status'),
(4153, 5, '_bx_persons_form_profile_input_sys_profile_ip'),
(4154, 5, '_bx_persons_form_profile_input_profile_ip'),
(4155, 5, '_bx_persons_form_profile_input_sys_profile_last_active'),
(4156, 5, '_bx_persons_form_profile_input_profile_last_active'),
(4157, 5, '_bx_persons_form_profile_input_sys_skills'),
(4158, 5, '_bx_persons_form_profile_input_skills'),
(4159, 5, '_bx_persons_form_profile_input_sys_date_added'),
(4160, 5, '_bx_persons_form_profile_input_date_added'),
(4161, 5, '_bx_persons_form_profile_input_sys_date_changed'),
(4162, 5, '_bx_persons_form_profile_input_date_changed'),
(4163, 5, '_bx_persons_form_profile_input_sys_friends_count'),
(4164, 5, '_bx_persons_form_profile_input_friends_count'),
(4165, 5, '_bx_persons_form_profile_input_sys_followers_count'),
(4166, 5, '_bx_persons_form_profile_input_followers_count'),
(4167, 5, '_bx_persons_skills_form_profile'),
(4168, 5, '_bx_persons_skills_form_profile_display_add'),
(4169, 5, '_bx_persons_skills_form_profile_display_view'),
(4170, 5, '_bx_persons_skills_form_profile_input_sys_skill_name'),
(4171, 5, '_bx_persons_skills_form_profile_input_skill_name'),
(4172, 5, '_bx_persons_skills_form_profile_input_skill_name_err'),
(4173, 5, '_bx_persons_acl_action_create_profile'),
(4174, 5, '_bx_persons_acl_action_delete_profile'),
(4175, 5, '_bx_persons_acl_action_view_profile'),
(4176, 5, '_bx_persons_acl_action_edit_any_profile'),
(4177, 5, '_bx_persons_acl_action_delete_any_profile'),
(4178, 5, '_bx_persons_page_title_sys_create_profile'),
(4179, 5, '_bx_persons_page_title_create_profile'),
(4180, 5, '_bx_persons_page_title_sys_edit_profile'),
(4181, 5, '_bx_persons_page_title_edit_profile'),
(4182, 5, '_bx_persons_page_title_sys_edit_profile_cover'),
(4183, 5, '_bx_persons_page_title_edit_profile_cover'),
(4184, 5, '_bx_persons_page_title_sys_delete_profile'),
(4185, 5, '_bx_persons_page_title_delete_profile'),
(4186, 5, '_bx_persons_page_title_sys_view_profile'),
(4187, 5, '_bx_persons_page_title_sys_view_profile_closed'),
(4188, 5, '_bx_persons_page_title_view_profile'),
(4189, 5, '_bx_persons_page_title_browse'),
(4190, 5, '_bx_persons_page_title_browse_featured'),
(4191, 5, '_bx_persons_page_title_browse_active'),
(4192, 5, '_bx_persons_page_title_browse_online'),
(4193, 5, '_bx_persons_page_title_browse_recent'),
(4194, 5, '_bx_persons_page_title_browse_connections'),
(4195, 5, '_bx_persons_page_title_browse_connections_mutual'),
(4196, 5, '_bx_persons_page_title_browse_familiar'),
(4197, 5, '_bx_persons_page_title_browse_favorites'),
(4198, 5, '_bx_persons_page_title_browse_by_acl'),
(4199, 5, '_bx_persons_page_title_browse_by_cmts'),
(4200, 5, '_bx_persons_page_title_sys_profile_favorites'),
(4201, 5, '_bx_persons_page_title_profile_favorites'),
(4202, 5, '_bx_persons_page_title_sys_profile_friends'),
(4203, 5, '_bx_persons_page_title_profile_friends'),
(4204, 5, '_bx_persons_page_title_sys_friend_requests'),
(4205, 5, '_bx_persons_page_title_friend_requests'),
(4206, 5, '_bx_persons_page_title_sys_profile_subscriptions'),
(4207, 5, '_bx_persons_page_title_profile_subscriptions'),
(4208, 5, '_bx_persons_page_title_sys_profile_relations'),
(4209, 5, '_bx_persons_page_title_profile_relations'),
(4210, 5, '_bx_persons_page_title_sys_profile_comments'),
(4211, 5, '_bx_persons_page_title_profile_comments'),
(4212, 5, '_bx_persons_page_title_sys_profile_info'),
(4213, 5, '_bx_persons_page_title_profile_info'),
(4214, 5, '_bx_persons_page_title_sys_recent'),
(4215, 5, '_bx_persons_page_title_recent'),
(4216, 5, '_bx_persons_page_title_sys_manage'),
(4217, 5, '_bx_persons_page_title_sys_manage_administration'),
(4218, 5, '_bx_persons_page_title_manage'),
(4219, 5, '_bx_persons_page_title_sys_active'),
(4220, 5, '_bx_persons_page_title_active'),
(4221, 5, '_bx_persons_page_title_sys_online'),
(4222, 5, '_bx_persons_page_title_online'),
(4223, 5, '_bx_persons_page_title_sys_entries_search'),
(4224, 5, '_bx_persons_page_title_entries_search'),
(4225, 5, '_bx_persons_page_block_title_profile_private'),
(4226, 5, '_bx_persons_page_block_title_choose_type'),
(4227, 5, '_bx_persons_page_block_title_create_profile'),
(4228, 5, '_bx_persons_page_block_title_edit_profile'),
(4229, 5, '_bx_persons_page_block_title_edit_profile_cover'),
(4230, 5, '_bx_persons_page_block_title_delete_profile'),
(4231, 5, '_bx_persons_page_block_title_profile_all_actions'),
(4232, 5, '_bx_persons_page_block_title_profile_info_link'),
(4233, 5, '_bx_persons_page_block_title_profile_info'),
(4234, 5, '_bx_persons_page_block_title_system_profile_info'),
(4235, 5, '_bx_persons_page_block_title_profile_membership'),
(4236, 5, '_bx_persons_page_block_title_system_profile_membership'),
(4237, 5, '_bx_persons_page_block_title_profile_description'),
(4238, 5, '_bx_persons_page_block_title_profile_favorites'),
(4239, 5, '_bx_persons_page_block_title_system_profile_favorites'),
(4240, 5, '_bx_persons_page_block_title_profile_friends_link'),
(4241, 5, '_bx_persons_page_block_title_profile_friends'),
(4242, 5, '_bx_persons_page_block_title_profile_friends_mutual'),
(4243, 5, '_bx_persons_page_block_title_system_profile_friends'),
(4244, 5, '_bx_persons_page_block_title_friend_requests_link'),
(4245, 5, '_bx_persons_page_block_title_system_friend_requests'),
(4246, 5, '_bx_persons_page_block_title_profile_location'),
(4247, 5, '_bx_persons_page_block_title_system_profile_subscriptions'),
(4248, 5, '_bx_persons_page_block_title_profile_subscriptions'),
(4249, 5, '_bx_persons_page_block_title_system_profile_subscribed_me'),
(4250, 5, '_bx_persons_page_block_title_profile_subscribed_me'),
(4251, 5, '_bx_persons_page_block_title_system_profile_relations'),
(4252, 5, '_bx_persons_page_block_title_profile_relations'),
(4253, 5, '_bx_persons_page_block_title_system_profile_related_me'),
(4254, 5, '_bx_persons_page_block_title_profile_related_me'),
(4255, 5, '_bx_persons_page_block_title_profile_comments'),
(4256, 5, '_bx_persons_page_block_title_entry_reports'),
(4257, 5, '_bx_persons_page_block_title_profile_comments_link'),
(4258, 5, '_bx_persons_page_block_title_featured_profiles'),
(4259, 5, '_bx_persons_page_block_title_profile_actions'),
(4260, 5, '_bx_persons_page_block_title_profile_calendar'),
(4261, 5, '_bx_persons_page_block_title_latest_profiles'),
(4262, 5, '_bx_persons_page_block_title_system_manage'),
(4263, 5, '_bx_persons_page_block_title_system_manage_administration'),
(4264, 5, '_bx_persons_page_block_title_manage'),
(4265, 5, '_bx_persons_page_block_title_sys_active_profiles'),
(4266, 5, '_bx_persons_page_block_title_active_profiles'),
(4267, 5, '_bx_persons_page_block_title_online_profiles'),
(4268, 5, '_bx_persons_page_block_title_sys_familiar_profiles'),
(4269, 5, '_bx_persons_page_block_title_familiar_profiles'),
(4270, 5, '_bx_persons_page_block_title_search_form'),
(4271, 5, '_bx_persons_page_block_title_search_results'),
(4272, 5, '_bx_persons_page_block_title_search_form_cmts'),
(4273, 5, '_bx_persons_page_block_title_search_results_cmts'),
(4274, 5, '_bx_persons_page_block_title_sys_featured_entries_view_showcase'),
(4275, 5, '_bx_persons_page_block_title_featured_entries_view_showcase'),
(4276, 5, '_bx_persons_page_block_title_sys_recommended_entries_view_showcase'),
(4277, 5, '_bx_persons_page_block_title_recommended_entries_view_showcase'),
(4278, 5, '_bx_persons_page_block_title_sys_active_entries_view_showcase'),
(4279, 5, '_bx_persons_page_block_title_active_entries_view_showcase'),
(4280, 5, '_bx_persons_page_block_title_sys_cover_block'),
(4281, 5, '_bx_persons_page_block_title_cover_block'),
(4282, 5, '_bx_persons_menu_title_submenu'),
(4283, 5, '_bx_persons_menu_set_title_submenu'),
(4284, 5, '_bx_persons_menu_set_title_view_profile_actions'),
(4285, 5, '_bx_persons_menu_title_view_profile_actions'),
(4286, 5, '_bx_persons_menu_set_title_view_profile_actions_more'),
(4287, 5, '_bx_persons_menu_title_view_profile_actions_more'),
(4288, 5, '_bx_persons_menu_title_view_profile_meta'),
(4289, 5, '_bx_persons_menu_set_title_view_profile_meta'),
(4290, 5, '_bx_persons_menu_set_title_view_profile_submenu'),
(4291, 5, '_bx_persons_menu_title_view_profile_submenu'),
(4292, 5, '_bx_persons_menu_set_title_manage_tools'),
(4293, 5, '_bx_persons_menu_title_manage_tools'),
(4294, 5, '_bx_persons_menu_item_title_system_delete_with_content'),
(4295, 5, '_bx_persons_menu_item_title_delete_with_content'),
(4296, 5, '_bx_persons_menu_item_title_system_clear_reports'),
(4297, 5, '_bx_persons_menu_item_title_clear_reports'),
(4298, 5, '_bx_persons_menu_item_title_system_manage_cf'),
(4299, 5, '_bx_persons_menu_item_title_manage_cf'),
(4300, 5, '_bx_persons_menu_item_title_system_edit_cover'),
(4301, 5, '_bx_persons_menu_item_title_edit_cover'),
(4302, 5, '_bx_persons_menu_item_title_system_edit_profile'),
(4303, 5, '_bx_persons_menu_item_title_edit_profile'),
(4304, 5, '_bx_persons_menu_item_title_system_delete_profile'),
(4305, 5, '_bx_persons_menu_item_title_delete_profile'),
(4306, 5, '_bx_persons_menu_item_title_system_delete_account'),
(4307, 5, '_bx_persons_menu_item_title_delete_account'),
(4308, 5, '_bx_persons_menu_item_title_system_delete_account_content'),
(4309, 5, '_bx_persons_menu_item_title_delete_account_content'),
(4310, 5, '_bx_persons_menu_item_title_system_profile_type'),
(4311, 5, '_bx_persons_menu_item_title_profile_type'),
(4312, 5, '_bx_persons_menu_item_title_system_create_profile'),
(4313, 5, '_bx_persons_menu_item_title_create_profile'),
(4314, 5, '_bx_persons_menu_item_title_system_view_profile_friends'),
(4315, 5, '_bx_persons_menu_item_title_view_profile_friends'),
(4316, 5, '_bx_persons_menu_item_title_system_view_profile_relations'),
(4317, 5, '_bx_persons_menu_item_title_view_profile_relations'),
(4318, 5, '_bx_persons_menu_item_title_system_view_profile_subscriptions'),
(4319, 5, '_bx_persons_menu_item_title_view_profile_subscriptions'),
(4320, 5, '_bx_persons_menu_item_title_system_view_profile_comments'),
(4321, 5, '_bx_persons_menu_item_title_view_profile_comments'),
(4322, 5, '_bx_persons_menu_item_title_system_view_profile_info'),
(4323, 5, '_bx_persons_menu_item_title_view_profile_info'),
(4324, 5, '_bx_persons_menu_item_title_system_view_profile_view'),
(4325, 5, '_bx_persons_menu_item_title_view_profile_view'),
(4326, 5, '_bx_persons_menu_item_title_system_view_profile_more_auto'),
(4327, 5, '_bx_persons_menu_item_title_view_profile_more_auto'),
(4328, 5, '_bx_persons_menu_item_title_system_befriend'),
(4329, 5, '_bx_persons_menu_item_title_befriend'),
(4330, 5, '_bx_persons_menu_item_title_befriend_sent'),
(4331, 5, '_bx_persons_menu_item_title_befriend_confirm'),
(4332, 5, '_bx_persons_menu_item_title_system_unfriend'),
(4333, 5, '_bx_persons_menu_item_title_unfriend'),
(4334, 5, '_bx_persons_menu_item_title_unfriend_cancel_request'),
(4335, 5, '_bx_persons_menu_item_title_unfriend_reject_request'),
(4336, 5, '_bx_persons_menu_item_title_system_subscribe'),
(4337, 5, '_bx_persons_menu_item_title_subscribe'),
(4338, 5, '_bx_persons_menu_item_title_system_unsubscribe'),
(4339, 5, '_bx_persons_menu_item_title_unsubscribe'),
(4340, 5, '_bx_persons_menu_item_title_system_relation_add'),
(4341, 5, '_bx_persons_menu_item_title_relation_add'),
(4342, 5, '_bx_persons_menu_item_title_system_relation_delete'),
(4343, 5, '_bx_persons_menu_item_title_relation_delete'),
(4344, 5, '_bx_persons_menu_item_title_system_more_actions'),
(4345, 5, '_bx_persons_menu_item_title_more_actions'),
(4346, 5, '_bx_persons_menu_item_title_system_friends'),
(4347, 5, '_bx_persons_menu_item_title_friends'),
(4348, 5, '_bx_persons_menu_item_title_system_relations'),
(4349, 5, '_bx_persons_menu_item_title_relations'),
(4350, 5, '_bx_persons_menu_item_title_system_friend_requests'),
(4351, 5, '_bx_persons_menu_item_title_friend_requests'),
(4352, 5, '_bx_persons_menu_item_title_system_manage_my_profiles'),
(4353, 5, '_bx_persons_menu_item_title_manage_my_profiles'),
(4354, 5, '_bx_persons_menu_item_title_system_favorites'),
(4355, 5, '_bx_persons_menu_item_title_favorites'),
(4356, 5, '_bx_persons_menu_item_title_system_subscriptions'),
(4357, 5, '_bx_persons_menu_item_title_subscriptions'),
(4358, 5, '_bx_persons_menu_item_title_system_subscribed_me'),
(4359, 5, '_bx_persons_menu_item_title_subscribed_me'),
(4360, 5, '_bx_persons_menu_item_title_system_related_me'),
(4361, 5, '_bx_persons_menu_item_title_related_me'),
(4362, 5, '_bx_persons_menu_item_title_system_followings'),
(4363, 5, '_bx_persons_menu_item_title_followings'),
(4364, 5, '_bx_persons_menu_item_title_system_entries_recent'),
(4365, 5, '_bx_persons_menu_item_title_entries_recent'),
(4366, 5, '_bx_persons_menu_item_title_system_entries_search'),
(4367, 5, '_bx_persons_menu_item_title_entries_search'),
(4368, 5, '_bx_persons_menu_item_title_system_entries_manage'),
(4369, 5, '_bx_persons_menu_item_title_entries_manage'),
(4370, 5, '_bx_persons_menu_item_title_system_entries_home'),
(4371, 5, '_bx_persons_menu_item_title_entries_home'),
(4372, 5, '_bx_persons_menu_item_title_system_admt_persons'),
(4373, 5, '_bx_persons_menu_item_title_admt_persons'),
(4374, 5, '_bx_persons_menu_item_title_manage_my'),
(4375, 5, '_bx_persons_menu_item_title_manage_all'),
(4376, 5, '_bx_persons_menu_item_title_system_entries_active'),
(4377, 5, '_bx_persons_menu_item_title_entries_active'),
(4378, 5, '_bx_persons_menu_item_title_system_entries_online'),
(4379, 5, '_bx_persons_menu_item_title_entries_online'),
(4380, 5, '_bx_persons_grid_filter_item_title_adm_select_one_filter1'),
(4381, 5, '_bx_persons_grid_filter_item_title_adm_select_one_filter2'),
(4382, 5, '_bx_persons_grid_filter_item_title_adm_active'),
(4383, 5, '_bx_persons_grid_filter_item_title_adm_pending'),
(4384, 5, '_bx_persons_grid_filter_item_title_adm_suspended'),
(4385, 5, '_bx_persons_grid_filter_item_title_adm_unconfirmed'),
(4386, 5, '_bx_persons_grid_column_title_adm_active'),
(4387, 5, '_bx_persons_grid_column_title_adm_fullname'),
(4388, 5, '_bx_persons_grid_column_title_adm_last_online'),
(4389, 5, '_bx_persons_grid_column_title_adm_account'),
(4390, 5, '_bx_persons_grid_action_title_adm_delete_with_content'),
(4391, 5, '_bx_persons_grid_action_title_adm_clear_reports'),
(4392, 5, '_bx_persons_grid_action_title_adm_set_acl_level'),
(4393, 5, '_bx_persons_grid_action_title_adm_more_actions'),
(4394, 5, '_bx_persons_grid_action_title_adm_audit_content'),
(4395, 5, '_bx_persons_grid_action_title_adm_audit_profile'),
(4396, 5, '_bx_persons_grid_action_title_adm_manage_cf'),
(4397, 5, '_bx_persons_grid_action_err_delete'),
(4398, 5, '_bx_persons_grid_txt_account_manager'),
(4399, 5, '_bx_persons_chart_growth'),
(4400, 5, '_bx_persons_chart_growth_speed'),
(4401, 5, '_bx_persons_search_extended'),
(4402, 5, '_bx_persons_search_extended_cmts'),
(4403, 5, '_bx_persons_alert_action_profile_cover_changed'),
(4404, 5, '_bx_persons_alert_action_profile_picture_changed'),
(4405, 5, '_bx_persons_txt_account_pending'),
(4406, 5, '_bx_persons_txt_account_pending_moderation'),
(4407, 5, '_bx_persons_txt_account_suspended'),
(4408, 5, '_bx_persons_txt_account_suspended_moderation'),
(4409, 5, '_bx_persons_txt_N_friends'),
(4410, 5, '_bx_persons_txt_ntfs_timeline_post_common'),
(4411, 5, '_bx_persons_txt_sample_single'),
(4412, 5, '_bx_persons_txt_sample_comment_single'),
(4413, 5, '_bx_persons_txt_sample_vote_single'),
(4414, 5, '_bx_persons_txt_sample_score_up_single'),
(4415, 5, '_bx_persons_txt_sample_score_down_single'),
(4416, 5, '_bx_persons_txt_sample_pp_single'),
(4417, 5, '_bx_persons_txt_sample_pp_single_with_article'),
(4418, 5, '_bx_persons_txt_sample_pc_single'),
(4419, 5, '_bx_persons_txt_sample_pc_single_with_article'),
(4420, 5, '_bx_persons_txt_sample_pi_action'),
(4421, 5, '_bx_persons_txt_sample_pi_action_user'),
(4422, 5, '_bx_persons_email_friend_request'),
(4423, 5, '_bx_persons_email_friend_request_subject'),
(4424, 5, '_bx_persons_email_friend_request_body'),
(4425, 2, '_sys_module_persons'),
(4426, 2, '_bx_persons_form_profile_input_gender_[[timestamp]]'),
(4427, 2, '_sys_form_input_gender_info_[[timestamp]]'),
(4428, 2, '_bx_persons_form_profile_input_birthday_[[timestamp]]'),
(4429, 2, '_sys_form_input_birthday_info_[[timestamp]]'),
(4430, 2, '_bx_persons_form_profile_input_fullname_[[timestamp]]'),
(4431, 2, '_sys_form_input_fullname_info_[[timestamp]]'),
(4432, 2, '_bx_persons_form_profile_input_desc_[[timestamp]]'),
(4433, 2, '_sys_form_input_description_info_[[timestamp]]'),
(4434, 2, '_sys_form_input_location_[[timestamp]]'),
(4435, 2, '_sys_form_input_location_info_[[timestamp]]'),
(4436, 2, '_bx_persons_form_profile_input_online_search_[[timestamp]]'),
(4437, 2, '_sys_form_input_online_info_[[timestamp]]'),
(4438, 2, '_bx_persons_form_profile_input_picture_search_[[timestamp]]'),
(4439, 2, '_sys_form_input_picture_info_[[timestamp]]'),
(4440, 2, '_sys_form_comment_input_caption_cmt_author_id_[[timestamp]]'),
(4441, 2, '_sys_form_input_cmt_author_id_info_[[timestamp]]'),
(4442, 2, '_sys_form_comment_input_caption_cmt_text_[[timestamp]]'),
(4443, 2, '_sys_form_input_cmt_text_info_[[timestamp]]'),
(4444, 2, '_sys_form_entry_input_cf_[[timestamp]]'),
(4445, 2, '_sys_form_input_cmt_cf_info_[[timestamp]]');
-- --------------------------------------------------------
--
-- Table structure for table `sys_localization_languages`
--
CREATE TABLE `sys_localization_languages` (
`ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
`Name` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Flag` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Direction` enum('LTR','RTL') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'LTR',
`LanguageCountry` varchar(8) COLLATE utf8mb4_unicode_ci NOT NULL,
`Enabled` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
UNIQUE KEY `Name` (`Name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=2 ;
--
-- Dumping data for table `sys_localization_languages`
--
INSERT INTO `sys_localization_languages` VALUES
(1, 'en', 'gb', 'English', 'LTR', '', 1);
-- --------------------------------------------------------
--
-- Table structure for table `sys_localization_strings`
--
CREATE TABLE `sys_localization_strings` (
`IDKey` int(10) unsigned NOT NULL DEFAULT '0',
`IDLanguage` int(10) unsigned NOT NULL DEFAULT '0',
`String` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`IDKey`,`IDLanguage`),
FULLTEXT KEY `String` (`String`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `sys_localization_strings`
--
INSERT INTO `sys_localization_strings` VALUES
(1, 1, 'Message was successfully sent.'),
(2, 1, 'You are a full-featured member of our community. You can, however, suspend your profile to become temporarily unavailable for others.'),
(3, 1, 'Your profile activation is in progress. Usually it takes up to 24 hours. Thank you for your patience.'),
(4, 1, 'Your profile was rejected by the system administrator because it contains illegal information or is missing some information. If you have any questions, please, <a target=_blank href="contact.php">contact us</a>, and don''t forget to specify your profile ID.'),
(5, 1, 'Your profile is temporarily out of {0} system services. You can activate it <a target=_blank href="change_status.php">here</a>. If you have any questions, please <a target=_blank href="contact.php">contact the administrators</a>.'),
(6, 1, 'You will need to follow the link supplied in the e-mail to get your account submitted for approval. <br />Send me <a target=_blank href="activation_email.php">confirmation e-mail</a>.'),
(7, 1, 'Access denied'),
(8, 1, 'Page Not Available'),
(9, 1, 'Sorry, this content is no longer available. It may have been removed or is not accessible due to violation of our terms of service.'),
(10, 1, 'Action'),
(11, 1, 'All'),
(12, 1, 'Allowed Since'),
(13, 1, 'Allowed Until'),
(14, 1, 'Allowed actions'),
(15, 1, 'anonymous'),
(16, 1, 'anonymous ({0})'),
(17, 1, 'Apply'),
(18, 1, 'Apps'),
(19, 1, 'Are you sure?'),
(20, 1, 'Auth type'),
(21, 1, 'by'),
(22, 1, 'Basic'),
(23, 1, 'Contact us'),
(24, 1, 'Contact'),
(25, 1, 'Cannot delete comments with replies'),
(26, 1, 'Cancel'),
(27, 1, 'Content'),
(28, 1, 'Contents'),
(29, 1, 'Count'),
(30, 1, 'You account was successfully deleted'),
(31, 1, 'All your content will be deleted. Are you sure you want to delete your account?'),
(32, 1, 'Date'),
(33, 1, 'Delete'),
(34, 1, 'Delete account'),
(35, 1, 'Description'),
(36, 1, 'Explanation'),
(37, 1, 'Edit'),
(38, 1, 'Email'),
(39, 1, 'Email send failed'),
(40, 1, 'Empty'),
(41, 1, 'Please, enter a value here'),
(42, 1, 'Error'),
(43, 1, 'Failed'),
(44, 1, '{0}'),
(45, 1, 'Favorite'),
(46, 1, 'Unfavorite'),
(47, 1, 'Favorited by'),
(48, 1, 'Cannot perform the action.'),
(49, 1, 'You already favorited this item.'),
(50, 1, 'The feature is not available right now. Please, try again later.'),
(51, 1, 'Feature'),
(52, 1, 'Unfeature'),
(53, 1, 'Cannot perform the action.'),
(54, 1, 'The item was already added in featured list.'),
(55, 1, 'The feature is not available right now. Please, try again later.'),
(56, 1, 'Woman'),
(57, 1, 'free'),
(58, 1, 'From'),
(59, 1, 'Filters'),
(60, 1, 'Header'),
(61, 1, 'Incorrect Captcha'),
(62, 1, 'Incorrect Email'),
(63, 1, 'Info'),
(64, 1, 'Keyword'),
(65, 1, 'lifetime'),
(66, 1, 'Woman'),
(67, 1, 'Man'),
(68, 1, 'expires: in {0} day(s)'),
(69, 1, 'expires: never'),
(70, 1, 'expires: today at {0}. (Server time: {1})'),
(71, 1, 'You are a standard member.'),
(72, 1, ''),
(73, 1, 'Man'),
(74, 1, 'Manage'),
(75, 1, 'Member'),
(76, 1, 'Login'),
(77, 1, 'Message text'),
(78, 1, '<span>{0}</span> plus'),
(79, 1, '<span>{0}</span> pluses'),
(80, 1, 'Name'),
(81, 1, 'Name is required'),
(82, 1, 'never'),
(83, 1, 'No'),
(84, 1, 'None'),
(85, 1, 'No actions allowed for this membership'),
(86, 1, 'No such comment'),
(87, 1, 'OK'),
(88, 1, 'asc'),
(89, 1, 'desc'),
(90, 1, 'Period'),
(91, 1, 'Please Wait'),
(92, 1, 'Please enter {0}-{1} characters'),
(93, 1, 'Please enter some number of characters'),
(94, 1, 'Please select a value from the list'),
(95, 1, 'Polls from: {0}'),
(96, 1, 'Preview'),
(97, 1, 'reported as ''{0}'''),
(98, 1, 'reported as ''{0}'' with a note: {1}'),
(99, 1, 'check-in'),
(100, 1, 'check-out'),
(101, 1, 'New'),
(102, 1, 'In process'),
(103, 1, 'Processed'),
(104, 1, 'All'),
(105, 1, '{0}'),
(106, 1, '{0} reports'),
(107, 1, 'Report'),
(108, 1, 'Report {0}'),
(109, 1, 'Cancel report'),
(110, 1, 'Are you sure, you want to cancel your report?'),
(111, 1, 'Reported by'),
(112, 1, 'Cannot perform action.'),
(113, 1, 'You already reported this item.'),
(114, 1, 'The feature is not available right now. Please, try again later.'),
(115, 1, 'Wrong report type.'),
(116, 1, 'Reported as '),
(117, 1, 'Reported by '),
(118, 1, 'Comments ({0})'),
(119, 1, '{0} RSS'),
(120, 1, '{0}''s Recent {1}'),
(121, 1, 'Rate'),
(122, 1, 'Read'),
(123, 1, 'Read more'),
(124, 1, 'Reset'),
(125, 1, 'Search'),
(126, 1, 'Search in all sections'),
(127, 1, 'Section'),
(128, 1, 'Select one...'),
(129, 1, 'Select all'),
(130, 1, 'Show'),
(131, 1, 'Sorry, your IP has been banned'),
(132, 1, 'Subject'),
(133, 1, 'Submit'),
(134, 1, 'Success'),
(135, 1, 'Times allowed'),
(136, 1, 'Title'),
(137, 1, 'to'),
(138, 1, 'unlimited'),
(139, 1, 'View Allowed Actions'),
(140, 1, 'View'),
(141, 1, 'Yes'),
(142, 1, 'Your email'),
(143, 1, 'Your name'),
(144, 1, 'Afghanistan'),
(145, 1, 'Afrikaans'),
(146, 1, 'Aland Islands'),
(147, 1, 'Albania'),
(148, 1, 'Algeria'),
(149, 1, 'American Samoa'),
(150, 1, 'Andorra'),
(151, 1, 'Angola'),
(152, 1, 'Anguilla'),
(153, 1, 'Antarctica'),
(154, 1, 'Antigua and Barbuda'),
(155, 1, 'Arabic'),
(156, 1, 'Argentina'),
(157, 1, 'Armenia'),
(158, 1, 'Aruba'),
(159, 1, 'Australia'),
(160, 1, 'Austria'),
(161, 1, 'Azerbaijan'),
(162, 1, 'Bahrain'),
(163, 1, 'Bangladesh'),
(164, 1, 'Barbados'),
(165, 1, 'Belarus'),
(166, 1, 'Belgium'),
(167, 1, 'Belize'),
(168, 1, 'Benin'),
(169, 1, 'Bermuda'),
(170, 1, 'Bhutan'),
(171, 1, 'Bolivia'),
(172, 1, 'Bosnia and Herzegovina'),
(173, 1, 'Botswana'),
(174, 1, 'Bouvet Island'),
(175, 1, 'Brazil'),
(176, 1, 'British Indian Ocean Territory'),
(177, 1, 'British Virgin Islands'),
(178, 1, 'Brunei'),
(179, 1, 'Bulgaria'),
(180, 1, 'Bulgarian'),
(181, 1, 'Burkina Faso'),
(182, 1, 'Burma'),
(183, 1, 'Burmese'),
(184, 1, 'Burundi'),
(185, 1, 'Cambodia'),
(186, 1, 'Cameroon'),
(187, 1, 'Canada'),
(188, 1, 'Cantonese'),
(189, 1, 'Cape Verde'),
(190, 1, 'Cayman Islands'),
(191, 1, 'Central African Republic'),
(192, 1, 'Chad'),
(193, 1, 'Chile'),
(194, 1, 'China'),
(195, 1, 'Christmas Island'),
(196, 1, 'Cocos (Keeling) Islands'),
(197, 1, 'Colombia'),
(198, 1, 'Comoros'),
(199, 1, 'Congo, Democratic Republic of the'),
(200, 1, 'Congo, Republic of the'),
(201, 1, 'Cook Islands'),
(202, 1, 'Costa Rica'),
(203, 1, 'Cote d''Ivoire'),
(204, 1, 'Croatia'),
(205, 1, 'Croatian'),
(206, 1, 'Cuba'),
(207, 1, 'Cyprus'),
(208, 1, 'Czech Republic'),
(209, 1, 'Danish'),
(210, 1, 'Denmark'),
(211, 1, 'Djibouti'),
(212, 1, 'Dominica'),
(213, 1, 'Dominican Republic'),
(214, 1, 'Dutch'),
(215, 1, 'East Timor'),
(216, 1, 'Ecuador'),
(217, 1, 'Egypt'),
(218, 1, 'El Salvador'),
(219, 1, 'English'),
(220, 1, 'Equatorial Guinea'),
(221, 1, 'Eritrea'),
(222, 1, 'Esperanto'),
(223, 1, 'Estonia'),
(224, 1, 'Estonian'),
(225, 1, 'Ethiopia'),
(226, 1, 'Falkland Islands (Islas Malvinas)'),
(227, 1, 'Faroe Islands'),
(228, 1, 'Fiji'),
(229, 1, 'Finland'),
(230, 1, 'Finnish'),
(231, 1, 'France'),
(232, 1, 'French'),
(233, 1, 'French Guiana'),
(234, 1, 'French Polynesia'),
(235, 1, 'French Southern and Antarctic Lands'),
(236, 1, 'Gabon'),
(237, 1, 'Georgia'),
(238, 1, 'German'),
(239, 1, 'Germany'),
(240, 1, 'Ghana'),
(241, 1, 'Gibraltar'),
(242, 1, 'Greece'),
(243, 1, 'Greek'),
(244, 1, 'Greenland'),
(245, 1, 'Grenada'),
(246, 1, 'Guadeloupe'),
(247, 1, 'Guam'),
(248, 1, 'Guatemala'),
(249, 1, 'Guernsey'),
(250, 1, 'Guinea'),
(251, 1, 'Guinea-Bissau'),
(252, 1, 'Gujrati'),
(253, 1, 'Guyana'),
(254, 1, 'Haiti'),
(255, 1, 'Heard Island and McDonald Islands'),
(256, 1, 'Hebrew'),
(257, 1, 'Hindi'),
(258, 1, 'Holy See (Vatican City)'),
(259, 1, 'Honduras'),
(260, 1, 'Hong Kong (SAR)'),
(261, 1, 'Hungarian'),
(262, 1, 'Hungary'),
(263, 1, 'Iceland'),
(264, 1, 'Icelandic'),
(265, 1, 'India'),
(266, 1, 'Indonesia'),
(267, 1, 'Indonesian'),
(268, 1, 'Iran'),
(269, 1, 'Iraq'),
(270, 1, 'Ireland'),
(271, 1, 'Isle of Man'),
(272, 1, 'Israel'),
(273, 1, 'Italian'),
(274, 1, 'Italy'),
(275, 1, 'Jamaica'),
(276, 1, 'Japan'),
(277, 1, 'Japanese'),
(278, 1, 'Jersey'),
(279, 1, 'Jordan'),
(280, 1, 'Kazakhstan'),
(281, 1, 'Kenya'),
(282, 1, 'Kiribati'),
(283, 1, 'Korea, North'),
(284, 1, 'Korea, South'),
(285, 1, 'Korean'),
(286, 1, 'Kuwait'),
(287, 1, 'Kyrgyzstan'),
(288, 1, 'Laos'),
(289, 1, 'Latvia'),
(290, 1, 'Latvian'),
(291, 1, 'Lebanon'),
(292, 1, 'Lesotho'),
(293, 1, 'Liberia'),
(294, 1, 'Libya'),
(295, 1, 'Liechtenstein'),
(296, 1, 'Lithuania'),
(297, 1, 'Lithuanian'),
(298, 1, 'Luxembourg'),
(299, 1, 'Macao'),
(300, 1, 'Macedonia, The Former Yugoslav Republic of'),
(301, 1, 'Madagascar'),
(302, 1, 'Malawi'),
(303, 1, 'Malay'),
(304, 1, 'Malaysia'),
(305, 1, 'Maldives'),
(306, 1, 'Mali'),
(307, 1, 'Malta'),
(308, 1, 'Mandarin'),
(309, 1, 'Marathi'),
(310, 1, 'Marshall Islands'),
(311, 1, 'Martinique'),
(312, 1, 'Mauritania'),
(313, 1, 'Mauritius'),
(314, 1, 'Mayotte'),
(315, 1, 'Mexico'),
(316, 1, 'Micronesia, Federated States of'),
(317, 1, 'Moldova'),
(318, 1, 'Moldovian'),
(319, 1, 'Monaco'),
(320, 1, 'Mongolia'),
(321, 1, 'Montenegro'),
(322, 1, 'Montserrat'),
(323, 1, 'Morocco'),
(324, 1, 'Mozambique'),
(325, 1, 'Namibia'),
(326, 1, 'Nauru'),
(327, 1, 'Nepal'),
(328, 1, 'Nepalese'),
(329, 1, 'Netherlands'),
(330, 1, 'Netherlands Antilles'),
(331, 1, 'New Caledonia'),
(332, 1, 'New Zealand'),
(333, 1, 'Nicaragua'),
(334, 1, 'Niger'),
(335, 1, 'Nigeria'),
(336, 1, 'Niue'),
(337, 1, 'Norfolk Island'),
(338, 1, 'Northern Mariana Islands'),
(339, 1, 'Norway'),
(340, 1, 'Norwegian'),
(341, 1, 'Oman'),
(342, 1, 'Pakistan'),
(343, 1, 'Palau'),
(344, 1, 'Palestinian Territory, Occupied'),
(345, 1, 'Panama'),
(346, 1, 'Papua New Guinea'),
(347, 1, 'Paraguay'),
(348, 1, 'Persian'),
(349, 1, 'Peru'),
(350, 1, 'Philippines'),
(351, 1, 'Pitcairn Islands'),
(352, 1, 'Poland'),
(353, 1, 'Polish'),
(354, 1, 'Portugal'),
(355, 1, 'Portuguese'),
(356, 1, 'Puerto Rico'),
(357, 1, 'Punjabi'),
(358, 1, 'Qatar'),
(359, 1, 'Reunion'),
(360, 1, 'Romania'),
(361, 1, 'Romanian'),
(362, 1, 'Russia'),
(363, 1, 'Russian'),
(364, 1, 'Rwanda'),
(365, 1, 'Saint Helena'),
(366, 1, 'Saint Kitts and Nevis'),
(367, 1, 'Saint Lucia'),
(368, 1, 'Saint Pierre and Miquelon'),
(369, 1, 'Saint Vincent and the Grenadines'),
(370, 1, 'Saint Barthelemy'),
(371, 1, 'Saint Martin (French part)'),
(372, 1, 'Samoa'),
(373, 1, 'San Marino'),
(374, 1, 'Sao Tome and Principe'),
(375, 1, 'Saudi Arabia'),
(376, 1, 'Senegal'),
(377, 1, 'Serbia'),
(378, 1, 'Serbian'),
(379, 1, 'Seychelles'),
(380, 1, 'Sierra Leone'),
(381, 1, 'Singapore'),
(382, 1, 'Slovakia'),
(383, 1, 'Slovenia'),
(384, 1, 'Solomon Islands'),
(385, 1, 'Somalia'),
(386, 1, 'South Africa'),
(387, 1, 'South Georgia and the South Sandwich Islands'),
(388, 1, 'Spain'),
(389, 1, 'Spanish'),
(390, 1, 'Sri Lanka'),
(391, 1, 'Sudan'),
(392, 1, 'Suriname'),
(393, 1, 'Svalbard'),
(394, 1, 'Swaziland'),
(395, 1, 'Sweden'),
(396, 1, 'Swedish'),
(397, 1, 'Switzerland'),
(398, 1, 'Syria'),
(399, 1, 'Tagalog'),
(400, 1, 'Taiwan'),
(401, 1, 'Taiwanese'),
(402, 1, 'Tajikistan'),
(403, 1, 'Tamil'),
(404, 1, 'Tanzania'),
(405, 1, 'Telugu'),
(406, 1, 'Thai'),
(407, 1, 'Thailand'),
(408, 1, 'The Bahamas'),
(409, 1, 'The Gambia'),
(410, 1, 'Togo'),
(411, 1, 'Tokelau'),
(412, 1, 'Tonga'),
(413, 1, 'Tongan'),
(414, 1, 'Trinidad and Tobago'),
(415, 1, 'Tunisia'),
(416, 1, 'Turkey'),
(417, 1, 'Turkish'),
(418, 1, 'Turkmenistan'),
(419, 1, 'Turks and Caicos Islands'),
(420, 1, 'Tuvalu'),
(421, 1, 'Uganda'),
(422, 1, 'Ukraine'),
(423, 1, 'Ukrainian'),
(424, 1, 'United Arab Emirates'),
(425, 1, 'United Kingdom'),
(426, 1, 'United States'),
(427, 1, 'United States Minor Outlying Islands'),
(428, 1, 'Urdu'),
(429, 1, 'Uruguay'),
(430, 1, 'Uzbekistan'),
(431, 1, 'Vanuatu'),
(432, 1, 'Venezuela'),
(433, 1, 'Vietnam'),
(434, 1, 'Vietnamese'),
(435, 1, 'Virgin Islands'),
(436, 1, 'Visayan'),
(437, 1, 'Wallis and Futuna'),
(438, 1, 'Western Sahara'),
(439, 1, 'Yemen'),
(440, 1, 'Zambia'),
(441, 1, 'Zimbabwe'),
(442, 1, 'AUD'),
(443, 1, 'CAD'),
(444, 1, 'EUR'),
(445, 1, 'GBP'),
(446, 1, 'USD'),
(447, 1, 'YEN'),
(448, 1, 'Cannot load the page'),
(449, 1, 'Checkout'),
(450, 1, 'Delete All'),
(451, 1, 'See All'),
(452, 1, 'Audit'),
(453, 1, 'Current status'),
(454, 1, 'Desired status'),
(455, 1, 'Executable'),
(456, 1, 'Not executable'),
(457, 1, 'Not writable'),
(458, 1, 'Not exists'),
(459, 1, 'Path'),
(460, 1, 'Permissions'),
(461, 1, 'Writable'),
(462, 1, 'Admin Tools'),
(463, 1, 'Categories'),
(464, 1, 'Category: {0}'),
(465, 1, 'Checkout'),
(466, 1, 'Products from {0} ({1} {2})'),
(467, 1, 'Products from {0} ({1}{2})'),
(468, 1, 'Modules'),
(469, 1, 'Updates'),
(470, 1, 'Featured'),
(471, 1, 'Storefront'),
(472, 1, 'Latest'),
(473, 1, 'Add New Module'),
(474, 1, 'Popular'),
(475, 1, 'Purchases'),
(476, 1, 'Search'),
(477, 1, 'Space Usage'),
(478, 1, 'Hashtag: {0}'),
(479, 1, 'Hashtags'),
(480, 1, 'Updates'),
(481, 1, 'Versions'),
(482, 1, 'Add Blocks'),
(483, 1, 'Add to Page'),
(484, 1, 'Cancel'),
(485, 1, 'Delete'),
(486, 1, 'Save'),
(487, 1, 'Add New Page'),
(488, 1, 'Delete'),
(489, 1, 'Apply'),
(490, 1, 'Cancel'),
(491, 1, 'Create'),
(492, 1, 'Settings'),
(493, 1, 'View Page'),
(494, 1, 'Custom Pages'),
(495, 1, 'Modules'),
(496, 1, 'System Pages'),
(497, 1, 'The image will be displayed in block'),
(498, 1, 'Enter the content in accordance with the selected language'),
(499, 1, 'Enter HTML content here'),
(500, 1, 'Enter a number of displayed items here'),
(501, 1, 'Enter URL to RSS resource here'),
(502, 1, 'Leave empty to use default one'),
(503, 1, 'Short name for the block, visible in block header.'),
(504, 1, 'Select user levels that can see this block'),
(505, 1, 'Store page in cache for this number of seconds'),
(506, 1, 'Just before BODY tag'),
(507, 1, 'In HEAD tag'),
(508, 1, 'Use 10-50 words to tell search engines what the page is about.'),
(509, 1, 'Use 5-10 keywords, separated by comma, associated with page content.'),
(510, 1, 'Standard commands for search engine robots. Example: noindex, nofollow.'),
(511, 1, 'Page title displayed in page header. Use at least 3 characters.'),
(512, 1, 'Page name, displayed in studio only.'),
(513, 1, 'Page address used after ''youdomain.com/page/''. It must be unique and it can not be changed later.'),
(514, 1, 'Page link to access the page.'),
(515, 1, 'Select user levels that can see this page'),
(516, 1, 'Cannot add block(s)'),
(517, 1, 'Cannot delete block'),
(518, 1, 'Select a layout box for the block'),
(519, 1, 'Cannot update block'),
(520, 1, 'The requested block cannot be deleted.'),
(521, 1, 'The requested block cannot be found.'),
(522, 1, 'Enter title, more than 3 characters'),
(523, 1, 'Cannot process action. It does not have an associated handler.'),
(524, 1, 'Nothing was changed or an error occurred.'),
(525, 1, 'Cannot create the page.'),
(526, 1, 'Cannot delete the page.'),
(527, 1, 'Please, select a page layout.'),
(528, 1, 'A title with at least 3 characters is required.'),
(529, 1, 'A name with at least 3 characters is required.'),
(530, 1, 'A unique URL with at least 3 characters is required.'),
(531, 1, 'Visibility setting are determined by custom code or not applicable here.'),
(532, 1, 'Cannot save or nothing was changed.'),
(533, 1, 'Cache'),
(534, 1, 'Cover'),
(535, 1, 'Injections'),
(536, 1, 'Layout'),
(537, 1, 'Options'),
(538, 1, 'SEO'),
(539, 1, 'Visibility'),
(540, 1, 'The changes were successfully saved'),
(541, 1, 'Active'),
(542, 1, 'Active (for App)'),
(543, 1, 'Asynchronous Mode'),
(544, 1, 'Block Cache Lifetime (in seconds)'),
(545, 1, 'Attachments'),
(546, 1, 'Alignment'),
(547, 1, 'center'),
(548, 1, 'Select alignment...'),
(549, 1, 'left'),
(550, 1, 'right'),
(551, 1, 'Image'),
(552, 1, 'Content'),
(553, 1, 'Menu'),
(554, 1, 'Select menu...'),
(555, 1, 'Content'),
(556, 1, 'Length'),
(557, 1, 'URL'),
(558, 1, 'Method'),
(559, 1, 'Module'),
(560, 1, 'Placeholder text for empty block'),
(561, 1, 'Block Layout'),
(562, 1, 'Select layout...'),
(563, 1, 'CSS Class'),
(564, 1, 'Help'),
(565, 1, 'Hidden on'),
(566, 1, 'phone'),
(567, 1, 'tablet'),
(568, 1, 'desktop'),
(569, 1, 'mobile app'),
(570, 1, 'blocks selected'),
(571, 1, 'Block submenu'),
(572, 1, 'Use ''tabs'' based block submenu'),
(573, 1, 'Title'),
(574, 1, 'Visible For'),
(575, 1, 'Anyone'),
(576, 1, 'Select Levels'),
(577, 1, 'Selected levels'),
(578, 1, 'Create New Page'),
(579, 1, 'Edit "{0}" Block'),
(580, 1, 'Add New Block'),
(581, 1, 'Cache'),
(582, 1, 'Cover'),
(583, 1, 'Custom Cover'),
(584, 1, 'Custom Title'),
(585, 1, 'Disabled'),
(586, 1, 'Enabled for all'),
(587, 1, 'Enabled for visitors only'),
(588, 1, 'Enabled for members only'),
(589, 1, 'In Footer'),
(590, 1, 'In Head'),
(591, 1, 'Layout'),
(592, 1, 'Select Layout...'),
(593, 1, 'Page (Meta) Description'),
(594, 1, 'Keywords'),
(595, 1, 'Page (Meta) Title'),
(596, 1, 'Meta Robots'),
(597, 1, 'Submenu'),
(598, 1, 'Page submenu can be selected here'),
(599, 1, 'Title'),
(600, 1, 'System Name'),
(601, 1, 'Type'),
(602, 1, 'Page display type. Default value can be changed in Studio -> Designer -> Settings.'),
(603, 1, 'URL'),
(604, 1, 'Link'),
(605, 1, 'Select Levels'),
(606, 1, 'Enable sticky blocks'),
(607, 1, 'Select Page...'),
(608, 1, 'Settings'),
(609, 1, 'Visible for {0}'),
(610, 1, 'Are you sure you want to delete the page?'),
(611, 1, 'Are you sure you want to delete the block?'),
(612, 1, 'Inactive Blocks'),
(613, 1, 'Cancel'),
(614, 1, 'Checkout'),
(615, 1, 'Delete'),
(616, 1, 'Submit'),
(617, 1, 'Download'),
(618, 1, 'Install'),
(619, 1, 'Installed'),
(620, 1, 'Sign in'),
(621, 1, 'Queued'),
(622, 1, 'Export'),
(623, 1, 'Import'),
(624, 1, 'Save'),
(625, 1, 'Add New Mix'),
(626, 1, 'Import'),
(627, 1, 'Export'),
(628, 1, 'Delete'),
(629, 1, 'Hide'),
(630, 1, 'Publish'),
(631, 1, 'Search'),
(632, 1, 'Update'),
(633, 1, 'Available:'),
(634, 1, 'Installed:'),
(635, 1, 'Updated:'),
(636, 1, 'Site will be upgraded within a minute.<br />Don''t forget to <a href="{0}store.php?page=updates">check for modules updates</a> after that.'),
(637, 1, 'Database'),
(638, 1, 'System'),
(639, 1, 'System Media'),
(640, 1, 'Select...'),
(641, 1, 'Clear all caches'),
(642, 1, 'DB'),
(643, 1, 'Clear DB cache'),
(644, 1, 'Template'),
(645, 1, 'Clear Template cache'),
(646, 1, 'CSS'),
(647, 1, 'Clear CSS cache'),
(648, 1, 'LESS'),
(649, 1, 'Clear LESS cache'),
(650, 1, 'Clear Purifier cache'),
(651, 1, 'JavaScript'),
(652, 1, 'Clear JavaScript cache'),
(653, 1, 'Clear Custom cache'),
(654, 1, 'Opcache'),
(655, 1, 'Clear Opcache'),
(656, 1, 'Failed to clear cache'),
(657, 1, 'Cache clearing is unsupported'),
(658, 1, 'Cache was successfully cleared'),
(659, 1, 'All caches are disabled'),
(660, 1, '<h3>Uninstall "{0}" template?</h3><p>Uninstalling "{0}" template will also delete all of its data. Do you want to continue?</p>'),
(661, 1, 'Delete'),
(662, 1, 'Make Default'),
(663, 1, 'Serves as "ALT" text for logo image. Used as a logo when no logo image is uploaded.'),
(664, 1, 'Note, that improper use of HTML may break the site layout.'),
(665, 1, 'Cannot process action. It does not have an associated handler.'),
(666, 1, 'You cannot deactivate template which was selected as Default'),
(667, 1, 'You need to have at least one active template.'),
(668, 1, 'Cannot make the template default.'),
(669, 1, 'Cannot remove current cover image.'),
(670, 1, 'Cannot remove current icon.'),
(671, 1, 'Cannot save: '),
(672, 1, 'Cannot save changes.'),
(673, 1, 'The changes were successfully saved'),
(674, 1, 'Note. All logo parameters can be overwritten in currently active Template app.'),
(675, 1, 'Logo Text'),
(676, 1, 'Default pages cover'),
(677, 1, 'Default profile unit cover'),
(678, 1, 'Disable pages covers'),
(679, 1, 'Enable splash page'),
(680, 1, 'default'),
(681, 1, 'Favicon (32x32)'),
(682, 1, 'SVG icon with light/dark styles'),
(683, 1, 'Apple devices icon (180x180)'),
(684, 1, 'Android devices icon (192×192)'),
(685, 1, 'Android devices splash (512×512)'),
(686, 1, 'Upload new common pages cover'),
(687, 1, 'Upload new profile unit cover'),
(688, 1, 'favicon.ico'),
(689, 1, 'single 32×32 ico image file is recommended'),
(690, 1, 'SVG icon'),
(691, 1, 'svg image with dark and light styles embedded is recommended'),
(692, 1, 'Apple devices icon'),
(693, 1, 'padding and background color is recommended for this image'),
(694, 1, 'Android devices icon'),
(695, 1, 'for Android home screen'),
(696, 1, 'Android devices splash'),
(697, 1, 'for Android splash screen'),
(698, 1, 'Logo Image'),
(699, 1, 'Logo Image (for Dark mode)'),
(700, 1, 'Logo Image (inline, low priority)'),
(701, 1, 'Mark Image'),
(702, 1, 'Mark Image (for Dark mode)'),
(703, 1, 'Mark Image (inline, low priority)'),
(704, 1, '<HEAD> injection'),
(705, 1, 'Code to insert before closing HEAD tag'),
(706, 1, '<BODY> injection'),
(707, 1, 'Code to insert before closing BODY tag'),
(708, 1, 'Cannot process action. It does not have an associated handler.'),
(709, 1, 'The module is already disabled.'),
(710, 1, 'The module is already enabled.'),
(711, 1, 'The module was already installed.'),
(712, 1, 'The module was already uninstalled.'),
(713, 1, 'Cannot add the product to shopping cart.'),
(714, 1, 'Cannot checkout. The vendor is unknown.'),
(715, 1, 'Cannot delete the product(s) from shopping cart.'),
(716, 1, 'Cannot remove package.'),
(717, 1, 'Cannot initialize the subscription.'),
(718, 1, 'Module not found'),
(719, 1, 'Update is not suitable for this module.'),
(720, 1, 'Module not installed'),
(721, 1, 'Module was modified'),
(722, 1, 'Module uninstall was postponed. Module will be uninstalled automatically after all its files are deleted.'),
(723, 1, 'Module is pending uninstall already.'),
(724, 1, 'An error occurred. Contact with module''s vendor'),
(725, 1, 'Failed to disable. The module has the following dependent modules. At least you need to disable them first.'),
(726, 1, 'The following modules should be installed and activated first:'),
(727, 1, 'Failed to uninstall. The module has the following dependent modules. You need to uninstall them first.'),
(728, 1, 'There are errors in the following MySQL queries:'),
(729, 1, 'Error: {0}'),
(730, 1, 'Unable to change permissions automatically. You need to manually change them for the following files and folders and try again:'),
(731, 1, 'You need to change permissions for the following files and folders:'),
(732, 1, '{0} - {1}'),
(733, 1, 'The module has incompatible version'),
(734, 1, 'The module is not compatible with your version of UNA'),
(735, 1, 'The new version of {0} module isn''t compatible with your version of UNA. Please upgrade UNA first (Studio > Dashboard > Version) and then try to upgrade the module.'),
(736, 1, 'Cannot connect to <b>UNA</b>. Please try again later.'),
(737, 1, 'Cannot get a valid answer from <b>UNA</b>. Please try again later.'),
(738, 1, 'You need to enter Key and Secret provided by <b>UNA</b> in Settings -> General.'),
(739, 1, 'Operation failed. Please report.'),
(740, 1, 'Cancel'),
(741, 1, 'Edit display'),
(742, 1, 'Save'),
(743, 1, 'Add'),
(744, 1, 'Cancel'),
(745, 1, 'Delete field'),
(746, 1, 'Edit field'),
(747, 1, 'Save'),
(748, 1, 'Add New Field'),
(749, 1, 'Visible For'),
(750, 1, 'Cancel'),
(751, 1, 'Edit form'),
(752, 1, 'Save'),
(753, 1, 'Cancel'),
(754, 1, 'Submit'),
(755, 1, 'Add'),
(756, 1, 'Back'),
(757, 1, 'Cancel'),
(758, 1, 'Submit'),
(759, 1, 'Add new badge'),
(760, 1, 'Delete'),
(761, 1, 'Add'),
(762, 1, 'Delete'),
(763, 1, 'Add'),
(764, 1, 'Cancel'),
(765, 1, 'Add New List'),
(766, 1, 'Delete List'),
(767, 1, 'Edit List'),
(768, 1, 'Save'),
(769, 1, 'Add'),
(770, 1, 'Cancel'),
(771, 1, 'Delete'),
(772, 1, 'Add New Item'),
(773, 1, 'Delete Item'),
(774, 1, 'Edit Item'),
(775, 1, 'Check in'),
(776, 1, 'Check out'),
(777, 1, 'Audit'),
(778, 1, 'Hide'),
(779, 1, 'Unhide'),
(780, 1, 'Edit search form'),
(781, 1, 'Edit search field'),
(782, 1, 'Reset'),
(783, 1, 'Reset'),
(784, 1, 'Save'),
(785, 1, 'Cancel'),
(786, 1, 'Name of the form display mode. Displayed in Studio only.'),
(787, 1, 'Enter numeric value'),
(788, 1, 'Enter numeric value'),
(789, 1, 'Enter correct image URL'),
(790, 1, 'Enter numeric value'),
(791, 1, 'Item name displayed on site'),
(792, 1, 'Title for the group of fields'),
(793, 1, 'Field title, displayed in Studio only.'),
(794, 1, 'Error message to display if text doesn''t match with text on the image'),
(795, 1, 'Use standard <a href="http://en.wikipedia.org/wiki/Regular_expression" target="_blank">regular expression</a>. Example: #^[A-Za-z0-9]{3,16}$#'),
(796, 1, 'Pack down the group of this field by default'),
(797, 1, 'Select type of HTML editor'),
(798, 1, 'You may use font icon, SVG or Emoji code here'),
(799, 1, 'Enter field description (optional)'),
(800, 1, 'Enter help information for the field (optional)'),
(801, 1, 'Check it if privacy settings can be changed for the field'),
(802, 1, 'Make this field rateable'),
(803, 1, 'Check it if the field should have value'),
(804, 1, 'Check it if the field should have unique value'),
(805, 1, 'Enter button title here'),
(806, 1, 'Send this data if checkbox is checked and form is submitted'),
(807, 1, 'Button title (this button type is used to reset the form to its default state)'),
(808, 1, 'Button title (this button type is used to send in the form data)'),
(809, 1, 'Select user levels that can see this menu item'),
(810, 1, 'Select how field''s data will be processed before saving in the database'),
(811, 1, 'Name of the form. Displayed in Studio only.'),
(812, 1, 'List Name for Studio use only'),
(813, 1, 'You can use it for items like "Please select..." which can''t be submitted.'),
(814, 1, 'Item name displayed on site'),
(815, 1, 'The type of control element in search form'),
(816, 1, 'Name of the search form. Displayed in Studio only.'),
(817, 1, 'Cannot process action. It does not have an associated handler.'),
(818, 1, 'Cannot update display'),
(819, 1, 'Enter title, more than 3 characters'),
(820, 1, 'Cannot add new field'),
(821, 1, 'Field with similar name already exists'),
(822, 1, 'Fields cannot be added in this form'),
(823, 1, 'Nested form must be selected.'),
(824, 1, 'A name with at least 3 characters is required.'),
(825, 1, 'A name with at least 3 characters is required.'),
(826, 1, 'You need to enter error message'),
(827, 1, 'Check Function should be selected'),
(828, 1, 'Enter Max Value, non-zero integer number'),
(829, 1, 'Enter Min Value, non-zero integer number'),
(830, 1, 'Enter valid regular expression'),
(831, 1, 'Cannot update field'),
(832, 1, 'Cannot update field'),
(833, 1, 'Default value should be empty or looks like 12-23'),
(834, 1, 'Use numeric characters only'),
(835, 1, 'You need to select a data set from the list.'),
(836, 1, 'Cannot update form'),
(837, 1, 'Enter name, more than 3 characters'),
(838, 1, 'Cannot add label'),
(839, 1, 'Cannot update label'),
(840, 1, 'Label should have unique non-empty value.'),
(841, 1, 'The required parameters are missing.'),
(842, 1, 'Cannot add list'),
(843, 1, 'Cannot update list'),
(844, 1, 'Enter title, more than 3 characters'),
(845, 1, 'Cannot add item'),
(846, 1, 'This list is already used. It''s impossible to add non-numeric, or less than 1, or more than {0} values in it.'),
(847, 1, 'Cannot delete item'),
(848, 1, 'Cannot update item'),
(849, 1, 'Enter title, more than one character'),
(850, 1, 'The field is essential. Please fill in.'),
(851, 1, 'Cannot update the search form field.'),
(852, 1, 'Cannot reset the search form.'),
(853, 1, 'Cannot reset the search form.'),
(854, 1, 'Cannot update the selected search form.'),
(855, 1, 'Enter name, more than 3 characters'),
(856, 1, 'All Modules'),
(857, 1, 'Are you sure you want to delete this field? It will be deleted from all Displays! You may just turn it off instead.'),
(858, 1, 'Added'),
(859, 1, 'Profile'),
(860, 1, 'Content'),
(861, 1, 'Module'),
(862, 1, 'Content''s author'),
(863, 1, 'Context'),
(864, 1, 'Action'),
(865, 1, 'Text'),
(866, 1, 'View'),
(867, 1, 'Foreground color'),
(868, 1, 'Color'),
(869, 1, 'Color'),
(870, 1, 'Show icon only'),
(871, 1, 'Delete'),
(872, 1, 'Icon'),
(873, 1, ''),
(874, 1, ''),
(875, 1, 'Current Icon'),
(876, 1, 'You may use: 1) font icon, 2) Inline SVG code, 3) Emoji'),
(877, 1, ''),
(878, 1, 'or upload a small image to be displayed near the link.'),
(879, 1, 'No icon uploaded. Text is used in menu item.'),
(880, 1, 'You need to enter font icon name here.'),
(881, 1, 'Cannot process image: '),
(882, 1, 'Cannot remove icon image: '),
(883, 1, 'Submit'),
(884, 1, 'Cancel'),
(885, 1, 'Added'),
(886, 1, 'Module'),
(887, 1, 'Add New Badge'),
(888, 1, 'Edit "{0}" badge'),
(889, 1, 'Text'),
(890, 1, 'Icon'),
(891, 1, 'Object'),
(892, 1, 'Author'),
(893, 1, 'Type'),
(894, 1, 'Text'),
(895, 1, 'Date'),
(896, 1, 'Status'),
(897, 1, 'Checked By'),
(898, 1, 'Notes'),
(899, 1, 'Comments'),
(900, 1, 'Actions'),
(901, 1, 'Edit "{0}" Display'),
(902, 1, 'Fields'),
(903, 1, 'Form'),
(904, 1, 'Module'),
(905, 1, 'System Name'),
(906, 1, 'Manage fields'),
(907, 1, 'System Name'),
(908, 1, 'Add New Field'),
(909, 1, 'Max Value'),
(910, 1, 'Min Value'),
(911, 1, 'Image Source'),
(912, 1, 'Step'),
(913, 1, 'Title'),
(914, 1, 'System Title'),
(915, 1, 'Checked by default'),
(916, 1, 'Enabled by default'),
(917, 1, 'Data Availability (something must be entered) '),
(918, 1, 'Captcha (check for correct security image text input)'),
(919, 1, 'Custom check'),
(920, 1, 'Date (check for correct date format)'),
(921, 1, 'Age''s range'),
(922, 1, 'Date and Time (check for correct date and time format)'),
(923, 1, 'E-mail (correct email address format)'),
(924, 1, 'Select...'),
(925, 1, 'Error message if check failed'),
(926, 1, 'Check for'),
(927, 1, 'Note. It''s not recommended to edit this field without absolute necessity.'),
(928, 1, 'Data Length (limit amount of characters)'),
(929, 1, 'Location Data (check for correct location data)'),
(930, 1, 'Spam-Free (check if input is SPAM-free)'),
(931, 1, 'Max Value'),
(932, 1, 'Min Value'),
(933, 1, 'Required'),
(934, 1, 'Expression'),
(935, 1, 'Regular Expression (something specific must be entered)'),
(936, 1, 'Collapsed'),
(937, 1, 'Edit "{0}" Field'),
(938, 1, 'HTML Editor'),
(939, 1, 'Full'),
(940, 1, 'Mini'),
(941, 1, 'No Editor'),
(942, 1, 'Standard'),
(943, 1, 'Icon'),
(944, 1, 'Current Icon'),
(945, 1, 'Description'),
(946, 1, 'Help'),
(947, 1, 'Module'),
(948, 1, 'Name'),
(949, 1, 'Form'),
(950, 1, 'Privacy'),
(951, 1, 'Rateable'),
(952, 1, 'Non-rateable'),
(953, 1, 'Use votes'),
(954, 1, 'Use reactions'),
(955, 1, 'Mandatory'),
(956, 1, 'Select nested form'),
(957, 1, 'Show "{0}" form field to: '),
(958, 1, 'block end'),
(959, 1, 'block header'),
(960, 1, 'button'),
(961, 1, 'captcha'),
(962, 1, 'checkbox'),
(963, 1, 'checkbox set'),
(964, 1, 'custom'),
(965, 1, 'date'),
(966, 1, 'date select'),
(967, 1, 'date range'),
(968, 1, 'age range'),
(969, 1, 'date time'),
(970, 1, 'date time range'),
(971, 1, 'age range'),
(972, 1, 'Type'),
(973, 1, 'double range slider'),
(974, 1, 'file'),
(975, 1, 'files'),
(976, 1, 'hidden'),
(977, 1, 'image'),
(978, 1, 'input set'),
(979, 1, 'location'),
(980, 1, 'location radius'),
(981, 1, 'number'),
(982, 1, 'price'),
(983, 1, 'password'),
(984, 1, 'radio set'),
(985, 1, 'reset'),
(986, 1, 'select'),
(987, 1, 'select (multiple)'),
(988, 1, 'slider'),
(989, 1, 'submit'),
(990, 1, 'switcher'),
(991, 1, 'text'),
(992, 1, 'text (range)'),
(993, 1, 'auto text'),
(994, 1, 'textarea'),
(995, 1, 'time'),
(996, 1, 'info'),
(997, 1, 'nested form'),
(998, 1, 'Unique'),
(999, 1, 'Title'),
(1000, 1, 'Value'),
(1001, 1, 'Custom text'),
(1002, 1, 'Default value'),
(1003, 1, 'Enabled uploaders'),
(1004, 1, 'Select value...'),
(1005, 1, 'Values'),
(1006, 1, 'Manage values'),
(1007, 1, 'Select list...'),
(1008, 1, 'Visible For'),
(1009, 1, 'Anyone'),
(1010, 1, 'Select Levels'),
(1011, 1, 'Selected levels'),
(1012, 1, 'Process data as'),
(1013, 1, 'Date'),
(1014, 1, 'Date as Unix Timestamp'),
(1015, 1, 'UTC Date as Unix Timestamp'),
(1016, 1, 'Date/time'),
(1017, 1, 'Date/time as Unix Timestamp'),
(1018, 1, 'UTC Date/time as Unix Timestamp'),
(1019, 1, 'Select value...'),
(1020, 1, 'System Name'),
(1021, 1, 'Manage visibility settings'),
(1022, 1, 'Module'),
(1023, 1, 'Type'),
(1024, 1, 'Visible For'),
(1025, 1, 'Edit "{0}" Form'),
(1026, 1, 'Displays'),
(1027, 1, 'Module'),
(1028, 1, 'System Name'),
(1029, 1, 'Manage displays'),
(1030, 1, '{0} displays'),
(1031, 1, '{0} fields'),
(1032, 1, 'System Name'),
(1033, 1, 'Add label'),
(1034, 1, 'Edit "{0}" label'),
(1035, 1, 'Items'),
(1036, 1, 'Manage child labels'),
(1037, 1, '{0} items'),
(1038, 1, 'Parent'),
(1039, 1, 'No Parent'),
(1040, 1, 'Grandparent Label'),
(1041, 1, 'Parent Label'),
(1042, 1, 'Sibling Labels'),
(1043, 1, 'Label'),
(1044, 1, 'Author'),
(1045, 1, 'Added'),
(1046, 1, 'Module'),
(1047, 1, 'Value'),
(1048, 1, 'Add category'),
(1049, 1, 'Edit "{0}" category'),
(1050, 1, 'Category should have unique non-empty value.'),
(1051, 1, 'Country'),
(1052, 1, 'Add New List'),
(1053, 1, 'Edit "{0}" List'),
(1054, 1, 'Module'),
(1055, 1, 'System Name'),
(1056, 1, 'Use For Sets'),
(1057, 1, 'Values'),
(1058, 1, 'Language'),
(1059, 1, 'Currency'),
(1060, 1, 'Manage values'),
(1061, 1, '{0} items'),
(1062, 1, 'No'),
(1063, 1, 'Sex'),
(1064, 1, 'System Name'),
(1065, 1, 'Yes'),
(1066, 1, 'Add New Item'),
(1067, 1, 'Edit "{0}" Item'),
(1068, 1, 'Use empty value for this item'),
(1069, 1, 'Title'),
(1070, 1, 'Title'),
(1071, 1, 'Edit "{0}" Search Form'),
(1072, 1, 'Fields'),
(1073, 1, 'Sortable Fields'),
(1074, 1, 'Type'),
(1075, 1, 'Caption'),
(1076, 1, 'Description'),
(1077, 1, 'Search Type'),
(1078, 1, 'Select Form...'),
(1079, 1, 'Edit "{0}" Search Field'),
(1080, 1, 'Caption'),
(1081, 1, 'Direction'),
(1082, 1, 'Manage fields'),
(1083, 1, 'Module'),
(1084, 1, '{0} fields'),
(1085, 1, 'System Name'),
(1086, 1, 'Select Display...'),
(1087, 1, 'Select Form...'),
(1088, 1, 'Select List...'),
(1089, 1, 'Cannot delete field'),
(1090, 1, 'Cannot delete list'),
(1091, 1, 'Expiration date'),
(1092, 1, 'IP Role'),
(1093, 1, 'Stored Logged Members IPs'),
(1094, 1, 'IP List Type is 0 : disabled'),
(1095, 1, 'IP List Type is 1 : All IPs allowed except listed'),
(1096, 1, 'IP List Type is 2 : All IPs blocked except listed'),
(1097, 1, 'sample'),
(1098, 1, '<h3>Uninstall "{0}" language?</h3><p>Uninstalling "{0}" language will also delete all of its data. Do you want to continue?</p>'),
(1099, 1, 'Actions'),
(1100, 1, 'Configuration'),
(1101, 1, 'Assistants'),
(1102, 1, 'Automators'),
(1103, 1, 'Helpers'),
(1104, 1, 'Badges'),
(1105, 1, 'Categories'),
(1106, 1, 'Checkout {checkout_counter}'),
(1107, 1, 'Covers'),
(1108, 1, 'Search'),
(1109, 1, 'Search Forms'),
(1110, 1, 'Search Fields'),
(1111, 1, 'Search Sortable Fields'),
(1112, 1, 'Welcome page'),
(1113, 1, 'Displays'),
(1114, 1, 'Downloaded'),
(1115, 1, 'Email Texts'),
(1116, 1, 'Email Template'),
(1117, 1, 'Featured'),
(1118, 1, 'Fields'),
(1119, 1, 'Files'),
(1120, 1, 'Forms'),
(1121, 1, 'General'),
(1122, 1, 'Storefront'),
(1123, 1, 'Site Icon'),
(1124, 1, 'Injections'),
(1125, 1, 'Images'),
(1126, 1, 'Items'),
(1127, 1, 'Keys'),
(1128, 1, 'i18n Settings'),
(1129, 1, 'Text Keys'),
(1130, 1, 'Labels'),
(1131, 1, 'Latest'),
(1132, 1, 'Levels'),
(1133, 1, 'Logo'),
(1134, 1, 'Menus'),
(1135, 1, 'Origins'),
(1136, 1, 'Data Lists'),
(1137, 1, 'Data Items'),
(1138, 1, 'Providers'),
(1139, 1, 'Popular'),
(1140, 1, 'Purchases'),
(1141, 1, 'Progressive Web App'),
(1142, 1, 'Actions'),
(1143, 1, 'Reports'),
(1144, 1, 'Levels'),
(1145, 1, 'Sets'),
(1146, 1, 'Settings'),
(1147, 1, 'Updates'),
(1148, 1, 'Homepage'),
(1149, 1, 'Profile'),
(1150, 1, '<h3>Uninstall "{0}" module?</h3><p>Uninstalling "{0}" module will also delete all of its data. Do you want to continue?</p>'),
(1151, 1, 'Cannot process action. It does not have an associated handler.'),
(1152, 1, 'Only admin can perform operations with modules'),
(1153, 1, 'Cannot {0} module from "{1}" directory'),
(1154, 1, 'Operation was scheduled and will be performed in a few minutes. Please wait.'),
(1155, 1, 'The product was successfully added to shopping cart.'),
(1156, 1, 'The payment was successfully accepted and should be processed automatically in a few minutes. Then the purchased product(s) will be available in Apps -> Purchases. If it doesn''t happen for some reason, please contact product''s vendor with your payment details.'),
(1157, 1, 'The package was deleted successfully'),
(1158, 1, 'The package was disabled successfully'),
(1159, 1, 'The package was enabled successfully'),
(1160, 1, 'The package was installed successfully'),
(1161, 1, 'The package was uninstalled successfully'),
(1162, 1, 'You need to to login into your <b>UNA</b> account to get data. Click <a href="{0}">here</a> to login.'),
(1163, 1, 'WARNING: You are logged in to an <a href="{0}">UNA.IO</a> account which is different from the account that generated UNA Key & Secret for your domain.'),
(1164, 1, 'Delete'),
(1165, 1, 'Add'),
(1166, 1, 'Cancel'),
(1167, 1, 'Delete item'),
(1168, 1, 'Done'),
(1169, 1, 'Edit item'),
(1170, 1, 'Add New Item'),
(1171, 1, 'Import Items'),
(1172, 1, 'Visible For'),
(1173, 1, 'Import item'),
(1174, 1, 'Save'),
(1175, 1, 'Add'),
(1176, 1, 'Cancel'),
(1177, 1, 'Add New Menu'),
(1178, 1, 'Delete Menu'),
(1179, 1, 'Edit Menu'),
(1180, 1, 'Save'),
(1181, 1, 'Add'),
(1182, 1, 'Cancel'),
(1183, 1, 'Add New Set'),
(1184, 1, 'Delete set'),
(1185, 1, 'Edit set'),
(1186, 1, 'You may use font icon, SVG or Emoji code here'),
(1187, 1, 'or upload a small image to be displayed near the link.'),
(1188, 1, 'No icon uploaded. Text is used in menu item.'),
(1189, 1, 'Enter the link URL'),
(1190, 1, 'Enter a correct JavaScript code for the link'),
(1191, 1, 'Use it to create multilevel menu inside one menu. Leave empty for one level menus.'),
(1192, 1, 'Select if you want the link to use another menu as submenu.'),
(1193, 1, 'Select if you want the link to open as a new page or within current page.'),
(1194, 1, 'Link name displayed in site menus. Use at least 3 characters.'),
(1195, 1, 'Item name, displayed in Studio only.'),
(1196, 1, 'Select user levels that can see this menu item'),
(1197, 1, 'Number of persistent menu items. Applicable for menus with ''Auto More'' mechanism only.'),
(1198, 1, 'Assign a Set of menu Items'),
(1199, 1, 'Descriptive name displayed in Studio only. Use at least 3 characters.'),
(1200, 1, 'Select presentation style - the way this menu will be displayed on site'),
(1201, 1, 'Descriptive name displayed in Studio only. Use at least 3 characters.'),
(1202, 1, 'Descriptive name displayed in Studio only. Use at least 3 characters.'),
(1203, 1, 'Cannot process action. It does not have an associated handler.'),
(1204, 1, 'Cannot create item'),
(1205, 1, 'Cannot delete item'),
(1206, 1, 'Cannot update item'),
(1207, 1, 'You need to enter font icon name here.'),
(1208, 1, 'Cannot process image: '),
(1209, 1, 'Cannot remove icon image: '),
(1210, 1, 'Cannot import item(s)'),
(1211, 1, 'You need to enter item URL'),
(1212, 1, 'You need to enter item OnClick'),
(1213, 1, 'Cannot update item'),
(1214, 1, 'Cannot create menu'),
(1215, 1, 'Cannot delete menu'),
(1216, 1, 'Cannot update menu'),
(1217, 1, 'Please, assign a Set.'),
(1218, 1, 'A unique title with at least 3 characters is required.'),
(1219, 1, 'Please, select a presentation style.'),
(1220, 1, 'A title with at least 3 characters is required.'),
(1221, 1, 'The required parameters are missing.'),
(1222, 1, 'Cannot create set'),
(1223, 1, 'Cannot delete set'),
(1224, 1, 'Set can''t be deleted because it is in use'),
(1225, 1, 'Cannot update set'),
(1226, 1, 'A title with at least 3 characters is required.'),
(1227, 1, 'All Modules'),
(1228, 1, 'Collapsed'),
(1229, 1, 'Add New Item'),
(1230, 1, 'Edit {0} Item'),
(1231, 1, 'Icon'),
(1232, 1, 'URL'),
(1233, 1, 'Custom Action'),
(1234, 1, 'Menu:'),
(1235, 1, 'Subitems:'),
(1236, 1, 'Module'),
(1237, 1, 'System Name'),
(1238, 1, 'Visible For'),
(1239, 1, 'Icon'),
(1240, 1, ''),
(1241, 1, ''),
(1242, 1, 'Current Icon'),
(1243, 1, 'Import Items'),
(1244, 1, 'URL'),
(1245, 1, 'OnClick'),
(1246, 1, 'Parent Item'),
(1247, 1, 'No Parent Item'),
(1248, 1, 'Primary'),
(1249, 1, 'Active (for App)'),
(1250, 1, 'Show "{0}" menu item to: '),
(1251, 1, 'Submenu'),
(1252, 1, 'No Submenu'),
(1253, 1, 'Show submenu in popup'),
(1254, 1, 'Target'),
(1255, 1, 'New Page'),
(1256, 1, 'Same Page'),
(1257, 1, 'Title'),
(1258, 1, 'System Name'),
(1259, 1, 'Visible For'),
(1260, 1, 'Anyone'),
(1261, 1, 'Select Levels'),
(1262, 1, 'Selected levels'),
(1263, 1, 'Manage items'),
(1264, 1, 'Manage visibility settings'),
(1265, 1, 'Add New Menu'),
(1266, 1, 'Edit "{0}" Menu'),
(1267, 1, 'Items'),
(1268, 1, 'Module'),
(1269, 1, 'Set'),
(1270, 1, 'Style'),
(1271, 1, 'System Name'),
(1272, 1, 'Persistent items'),
(1273, 1, 'Set'),
(1274, 1, 'Create New'),
(1275, 1, 'Select Set...'),
(1276, 1, 'Set Title'),
(1277, 1, 'Style'),
(1278, 1, 'Select Style...'),
(1279, 1, 'System Name'),
(1280, 1, '{0} items'),
(1281, 1, 'Select Set...'),
(1282, 1, 'Add New Set'),
(1283, 1, 'Edit "{0}" Set'),
(1284, 1, 'Items'),
(1285, 1, 'Module'),
(1286, 1, 'System Name'),
(1287, 1, 'System Name'),
(1288, 1, 'Hidden on'),
(1289, 1, 'phone'),
(1290, 1, 'tablet'),
(1291, 1, 'desktop'),
(1292, 1, 'mobile app'),
(1293, 1, 'Hidden for page type'),
(1294, 1, 'Hidden for column'),
(1295, 1, 'Thin'),
(1296, 1, 'Half'),
(1297, 1, 'Wide'),
(1298, 1, 'Full'),
(1299, 1, 'API'),
(1300, 1, 'Agents'),
(1301, 1, 'Audit'),
(1302, 1, 'Badges'),
(1303, 1, 'Forms'),
(1304, 1, 'Navigation'),
(1305, 1, 'Mobile Builder'),
(1306, 1, 'Pages'),
(1307, 1, 'Permissions'),
(1308, 1, 'Roles'),
(1309, 1, 'Dashboard'),
(1310, 1, 'Designer'),
(1311, 1, 'Studio'),
(1312, 1, 'Login'),
(1313, 1, 'Polyglot'),
(1314, 1, 'Settings'),
(1315, 1, 'Storage'),
(1316, 1, 'Apps'),
(1317, 1, 'Create New Key'),
(1318, 1, 'Delete'),
(1319, 1, 'Delete key'),
(1320, 1, 'Edit key'),
(1321, 1, 'Cancel'),
(1322, 1, 'Edit template'),
(1323, 1, 'Save'),
(1324, 1, 'Close'),
(1325, 1, 'Create'),
(1326, 1, 'Save'),
(1327, 1, 'Body of a message'),
(1328, 1, 'Name of the template. Displayed in Studio only.'),
(1329, 1, 'Subject of a message'),
(1330, 1, 'Cannot process action. It does not have an associated handler.'),
(1331, 1, 'Cannot recompile language(s).'),
(1332, 1, 'Cannot restore language(s).'),
(1333, 1, 'Cannot create key'),
(1334, 1, 'You need to fill in the form.'),
(1335, 1, 'You cannot deactivate language which was selected as Default'),
(1336, 1, 'Enter body'),
(1337, 1, 'Cannot update template'),
(1338, 1, 'Enter name, more than 3 characters'),
(1339, 1, 'Enter subject'),
(1340, 1, 'You need to have at least one active language.'),
(1341, 1, 'Cannot save changes'),
(1342, 1, 'Language(s) was successfully recompiled.'),
(1343, 1, 'Language(s) was successfully restored.'),
(1344, 1, 'All Modules'),
(1345, 1, 'Body'),
(1346, 1, 'Edit "{0}" Template'),
(1347, 1, 'Module'),
(1348, 1, 'System Title'),
(1349, 1, 'System Name'),
(1350, 1, 'Subject'),
(1351, 1, 'Key'),
(1352, 1, 'Keyword...'),
(1353, 1, 'Languages'),
(1354, 1, 'Module'),
(1355, 1, 'Create New Key'),
(1356, 1, 'Edit "{0}" Key'),
(1357, 1, 'Key Name'),
(1358, 1, 'Module'),
(1359, 1, 'Text'),
(1360, 1, 'Message itself will be here.'),
(1361, 1, 'Note, that improper use of HTML may break the email message''s layout. Also make sure that {unsubscribe} marker presents in at least one of the templates (header and/or footer).'),
(1362, 1, 'Submit'),
(1363, 1, 'The changes were successfully saved.'),
(1364, 1, 'Cannot save changes.'),
(1365, 1, 'Cannot save changes, because {unsubscribe} marker was removed from both templates, header and footer.'),
(1366, 1, 'Cancel'),
(1367, 1, 'Edit options'),
(1368, 1, 'Save'),
(1369, 1, 'Add New Level'),
(1370, 1, 'Add New Pricing Option'),
(1371, 1, 'Add Level'),
(1372, 1, 'Cancel'),
(1373, 1, 'Delete level'),
(1374, 1, 'Edit level'),
(1375, 1, 'Save'),
(1376, 1, 'Add'),
(1377, 1, 'Cancel'),
(1378, 1, 'Delete pricing option'),
(1379, 1, 'Edit pricing option'),
(1380, 1, 'Save'),
(1381, 1, 'Leave it blank if the action is always available'),
(1382, 1, 'Leave it blank for unlimited actions'),
(1383, 1, 'In hours. Leave it blank if you don''t want to reset counter'),
(1384, 1, 'Brief overview of terms and advantages of this level.'),
(1385, 1, 'You may use font icon here'),
(1386, 1, 'or upload an image.'),
(1387, 1, 'Short name for the membership level (i.e Premium, Gold, Newcomer, etc.)'),
(1388, 1, 'Limit max file size for user with this level across all modules (0 - unlimited, other system limits may apply).'),
(1389, 1, 'Limit amount of files a user with this level can upload (0 - unlimited).'),
(1390, 1, 'Period after which the password must be changed, in days (0 - unlimited).'),
(1391, 1, 'The period for which the notification of an expired password will be sent, in days (0 - unlimited).'),
(1392, 1, 'Limit how much space can be used by user with this level across all modules (0 - unlimited).'),
(1393, 1, 'Use 0 for life-time'),
(1394, 1, 'Cannot update membership action''s options'),
(1395, 1, 'Cannot create membership level'),
(1396, 1, 'Cannot delete membership level'),
(1397, 1, 'Cannot update membership level'),
(1398, 1, 'You need to enter font icon name here.'),
(1399, 1, 'Cannot upload icon: '),
(1400, 1, 'Cannot remove icon'),
(1401, 1, 'Membership levels limit is reached.'),
(1402, 1, 'You need to enter name(3, 100) for all languages'),
(1403, 1, 'You need to enter a numeric value, leave 0 for unlimited'),
(1404, 1, 'You need to enter a numeric value, leave 0 for unlimited'),
(1405, 1, 'You need to enter a numeric value, leave 0 for unlimited'),
(1406, 1, 'You need to enter a numeric value, leave 0 for unlimited'),
(1407, 1, 'You need to enter a numeric value, leave 0 for unlimited'),
(1408, 1, 'Cannot create pricing option'),
(1409, 1, 'The similar pricing option already exists for this level.'),
(1410, 1, 'Cannot update pricing option'),
(1411, 1, 'Actions'),
(1412, 1, 'This action is available until'),
(1413, 1, 'This action is available since'),
(1414, 1, 'Number of allowed actions'),
(1415, 1, 'Edit "{0}" Action'),
(1416, 1, 'Number of actions is reset every'),
(1417, 1, 'All Modules'),
(1418, 1, 'Description'),
(1419, 1, 'Enable'),
(1420, 1, 'Icon'),
(1421, 1, 'Account'),
(1422, 1, 'Copy actions from'),
(1423, 1, 'Administrator'),
(1424, 1, 'Add New Level'),
(1425, 1, 'Description'),
(1426, 1, 'Edit "{0}" Level'),
(1427, 1, 'Icon'),
(1428, 1, ''),
(1429, 1, ''),
(1430, 1, 'Current Icon'),
(1431, 1, 'Moderator'),
(1432, 1, 'Title'),
(1433, 1, 'Pending'),
(1434, 1, 'Premium'),
(1435, 1, 'Max File Size Limit(Mb)'),
(1436, 1, 'Max Files Limit'),
(1437, 1, 'Password Expired'),
(1438, 1, 'Password Expired Notify'),
(1439, 1, 'Storage Limit(Mb)'),
(1440, 1, 'Standard'),
(1441, 1, 'Suspended'),
(1442, 1, 'Unauthenticated'),
(1443, 1, 'Unconfirmed'),
(1444, 1, 'Manage actions'),
(1445, 1, 'Max File Size'),
(1446, 1, 'Max Files'),
(1447, 1, 'Module'),
(1448, 1, '{0} actions'),
(1449, 1, 'Price'),
(1450, 1, 'Number of days'),
(1451, 1, 'Add New Pricing Option'),
(1452, 1, 'Price'),
(1453, 1, 'Edit "{0} days" Pricing Option'),
(1454, 1, 'Select Level'),
(1455, 1, 'Storage'),
(1456, 1, 'Term'),
(1457, 1, 'Title'),
(1458, 1, 'Anyone'),
(1459, 1, '{0} User Levels'),
(1460, 1, 'Nobody'),
(1461, 1, 'Add New Role'),
(1462, 1, 'Edit this role'),
(1463, 1, 'Delete this role'),
(1464, 1, 'Cannot process action. It does not have an associated handler.'),
(1465, 1, 'Cannot create role'),
(1466, 1, 'Cannot update role'),
(1467, 1, 'Cannot delete role'),
(1468, 1, 'Roles limit is reached.'),
(1469, 1, 'Actions'),
(1470, 1, 'Description'),
(1471, 1, 'Manage actions'),
(1472, 1, '{0} actions'),
(1473, 1, 'Select Role'),
(1474, 1, 'Title'),
(1475, 1, 'Add New Role'),
(1476, 1, 'Edit "{0}" Role'),
(1477, 1, 'Master'),
(1478, 1, ''),
(1479, 1, 'Operator'),
(1480, 1, ''),
(1481, 1, 'Manage Roles'),
(1482, 1, ''),
(1483, 1, 'Manage Apps'),
(1484, 1, ''),
(1485, 1, 'Use ''Appearance'' apps'),
(1486, 1, ''),
(1487, 1, 'Use ''Structure'' apps'),
(1488, 1, ''),
(1489, 1, 'Use ''Content'' apps'),
(1490, 1, ''),
(1491, 1, 'Use ''Users'' apps'),
(1492, 1, ''),
(1493, 1, 'Use ''Configuration'' apps'),
(1494, 1, ''),
(1495, 1, 'Use ''Extensions'' apps'),
(1496, 1, ''),
(1497, 1, 'Use ''Integrations'' apps'),
(1498, 1, ''),
(1499, 1, 'Title'),
(1500, 1, 'You need to enter name(3, 100) for all languages'),
(1501, 1, 'Description'),
(1502, 1, 'Copy actions from'),
(1503, 1, 'Create'),
(1504, 1, 'Cancel'),
(1505, 1, 'Save'),
(1506, 1, ''),
(1507, 1, 'Account'),
(1508, 1, 'ACL'),
(1509, 1, 'Audit'),
(1510, 1, 'Notifications'),
(1511, 1, 'Push Notifications'),
(1512, 1, 'Cache'),
(1513, 1, 'System'),
(1514, 1, 'Hidden'),
(1515, 1, 'Languages'),
(1516, 1, 'Permalinks'),
(1517, 1, 'Security'),
(1518, 1, 'General'),
(1519, 1, 'Storage'),
(1520, 1, 'System'),
(1521, 1, 'Templates'),
(1522, 1, 'SMS Sending'),
(1523, 1, 'Location'),
(1524, 1, 'Social'),
(1525, 1, 'General'),
(1526, 1, 'Layout'),
(1527, 1, 'General'),
(1528, 1, 'Usage'),
(1529, 1, 'Image width to resize before upload (0 - disable)'),
(1530, 1, 'Image height to resize before upload (0 - disable)'),
(1531, 1, 'Currency code (for checkout system)'),
(1532, 1, 'Cannot be empty.'),
(1533, 1, 'Currency sign (for display purposes only)'),
(1534, 1, 'Cannot be empty.'),
(1535, 1, 'Use GD library for image processing'),
(1536, 1, 'Notify about new accounts'),
(1537, 1, 'Notify about pruning results'),
(1538, 1, 'Number of days before membership expiration to notify members ( -1 = after expiration )'),
(1539, 1, 'Notify members about membership expiration only once (every day otherwise)'),
(1540, 1, 'Default Language'),
(1541, 1, 'Substitute (during compilation) missing translations with english ones'),
(1542, 1, 'Enable friendly permalinks for Modules'),
(1543, 1, 'Enable friendly permalinks for Pages'),
(1544, 1, 'Enable friendly permalinks for local Storage'),
(1545, 1, 'Enable SEO links'),
(1546, 1, 'Enable redirect from regular to SEO links'),
(1547, 1, 'Operator email'),
(1548, 1, 'Email address to receive critical system notifications.'),
(1549, 1, '"From" email'),
(1550, 1, 'Email address used as "sender" in transactional emails.'),
(1551, 1, 'Email template header'),
(1552, 1, 'Email template footer'),
(1553, 1, 'Enable compact view for social login'),
(1554, 1, 'Community name'),
(1555, 1, 'The default name used to refer to your site in site texts, meta tags, emails and notifications.'),
(1556, 1, 'User Tour'),
(1557, 1, 'You can edit steps and content of the User Tour <a href="/studio/polyglot.php?page=keys">here</a>.'),
(1558, 1, 'Studio Tour'),
(1559, 1, 'You can edit steps and content of the Studio Tour <a href="/studio/polyglot.php?page=keys">here</a>.'),
(1560, 1, 'Smart App Banner'),
(1561, 1, ''),
(1562, 1, 'iOS app ID for Smart App Banner'),
(1563, 1, ''),
(1564, 1, 'Enable account activation letter'),
(1565, 1, 'Account is confirmed when'),
(1566, 1, 'Hide profiles which have unconfirmed account'),
(1567, 1, 'Enable 2 Factor Authentication'),
(1568, 1, '2FA code lifetime, in seconds (0 - send code upon each login)'),
(1569, 1, 'Automatic account activation after creation'),
(1570, 1, 'Automatic profile creation from account name'),
(1571, 1, 'Online status timeframe (minutes)'),
(1572, 1, 'You need to enter a value greater than zero.'),
(1573, 1, 'Default profile type'),
(1574, 1, 'Limit number of profiles (0 - no limit)'),
(1575, 1, 'Max number of logins attempts (0 - no limit)'),
(1576, 1, 'Reset password key lifetime (in seconds)'),
(1577, 1, 'Redirect after reset password to'),
(1578, 1, 'Disable login form'),
(1579, 1, 'Disable join form'),
(1580, 1, 'Allow to use plus sign ("+") in email address'),
(1581, 1, 'Accounts pruning'),
(1582, 1, 'Accounts pruning period (in days)'),
(1583, 1, 'Number of stored old passwords (0 = do not store)'),
(1584, 1, 'Force password change after password expiration'),
(1585, 1, 'Lock site from unauthenticated users'),
(1586, 1, 'Comma separated list of pages URIs, which are avalilable for unauthenticated users'),
(1587, 1, 'Delete accounts with no login within N days'),
(1588, 1, 'Suspend accounts with no login within N days'),
(1589, 1, 'Delete accounts which didn''t confirm email within N days'),
(1590, 1, 'Delete accounts which didn''t created any profiles within N days'),
(1591, 1, 'Home page'),
(1592, 1, 'View profile page'),
(1593, 1, 'Edit profile page'),
(1594, 1, 'Custom page'),
(1595, 1, 'URL for ''Custom Page'' redirect'),
(1596, 1, 'Redirect after profile switch to'),
(1597, 1, 'URL for ''Custom Page'' redirect'),
(1598, 1, 'Default value for ''Remember me'' feature'),
(1599, 1, 'Current page'),
(1600, 1, 'Home page'),
(1601, 1, 'View profile page'),
(1602, 1, 'Custom page'),
(1603, 1, 'Number of days before membership expiration to notify members (-1 = after expiration)'),
(1604, 1, 'Notify members about membership expiration only once (every day otherwise)'),
(1605, 1, 'Add "nofollow" attribute for external links'),
(1606, 1, 'Enable');
INSERT INTO `sys_localization_strings` VALUES
(1607, 1, 'Number of log records'),
(1608, 1, 'Delete logs older than (days)'),
(1609, 1, 'Enable for levels'),
(1610, 1, 'Force Automatic Updates'),
(1611, 1, 'Update core system and modules even if modified files are detected.'),
(1612, 1, 'Automatic System Updates'),
(1613, 1, 'Try to update core system and modules automatically.'),
(1614, 1, 'Memcached server host'),
(1615, 1, 'Memcached server port'),
(1616, 1, 'Default Сaptcha'),
(1617, 1, 'Enable content filters'),
(1618, 1, 'Enable content filters for comments'),
(1619, 1, 'Prohibited content'),
(1620, 1, 'Content visible to unauthenticated users'),
(1621, 1, 'Ask user confirmation before redirecting user to the external site'),
(1622, 1, 'Attachable email templates list'),
(1623, 1, 'Enable DB cache'),
(1624, 1, 'DB cache engine (other than File option may require custom server setup)'),
(1625, 1, 'Payment module'),
(1626, 1, 'Default HTML editor'),
(1627, 1, 'Default Player'),
(1628, 1, 'Default video quality'),
(1629, 1, 'Default page type for visitor'),
(1630, 1, 'Default page type for member'),
(1631, 1, 'Enable leave page confirmation for pages with forms'),
(1632, 1, '<a target="_blank" href="https://momentjs.com/docs/#/displaying/format/">Date Format</a>'),
(1633, 1, '<a target="_blank" href="https://momentjs.com/docs/#/displaying/format/">Date And Time Format</a>'),
(1634, 1, '<a target="_blank" href="https://momentjs.com/docs/#/displaying/format/">Time Format</a>'),
(1635, 1, 'Use ''time ago'' format for dates less than this number of seconds'),
(1636, 1, 'Use 24h Format For Calendar Input'),
(1637, 1, 'Path to the script on FTP server'),
(1638, 1, 'FTP server login'),
(1639, 1, 'FTP server password'),
(1640, 1, 'Last cron execution time'),
(1641, 1, 'Last update'),
(1642, 1, 'Update channel'),
(1643, 1, 'Live updates interval (in milliseconds)'),
(1644, 1, 'Location field provider'),
(1645, 1, 'Location map provider'),
(1646, 1, 'Location map zoom'),
(1647, 1, 'Leaflet tile layers provider'),
(1648, 1, 'Normalize geographic names'),
(1649, 1, 'Google Maps API key'),
(1650, 1, 'Embeds provider'),
(1651, 1, 'Embed.ly API key (fill in to use instead of Iframely)'),
(1652, 1, 'Embed.ly API pattern (fill in to use instead of Iframely)'),
(1653, 1, 'Iframely API key'),
(1654, 1, 'Email queue execution flag'),
(1655, 1, 'Number of messages to send from mail queue per run'),
(1656, 1, 'Number of messages to send from mail queue per run to the same recipient'),
(1657, 1, 'UNA account key'),
(1658, 1, 'UNA account secret'),
(1659, 1, 'Enable Page cache'),
(1660, 1, 'Page cache engine (other than File option may require custom server setup)'),
(1661, 1, 'Enable page blocks cache'),
(1662, 1, 'Page blocks cache engine (other than File option may require custom server setup)'),
(1663, 1, 'Keyword Search Results'),
(1664, 1, 'Set the maximum number of results displayed per page in Keyword Search'),
(1665, 1, 'Site Search Results'),
(1666, 1, 'Set the maximum number of results displayed per page in Site Search'),
(1667, 1, 'Provider'),
(1668, 1, 'OneSignal: App ID'),
(1669, 1, 'OneSignal: REST API Key'),
(1670, 1, 'OneSignal: Short name (required only for http sites. It must match the Subdomain you entered on the Web Push settings on the OneSignal dashboard)'),
(1671, 1, 'OneSignal: Apple Safari Web ID on the Web Push settings'),
(1672, 1, 'Push queue execution flag'),
(1673, 1, 'Number of messages to send from Push queue per run'),
(1674, 1, 'Number of messages to send from Push queue per run to some recipient'),
(1675, 1, 'Provider'),
(1676, 1, 'Twilio: Account SID'),
(1677, 1, 'Twilio: Auth token'),
(1678, 1, 'Twilio: Default ''From'' number for SMS'),
(1679, 1, 'Nominatim server URL'),
(1680, 1, 'Nominatim email to identify requests'),
(1681, 1, 'reCAPTCHA/hCaptcha private key'),
(1682, 1, 'reCAPTCHA/hCaptcha public key'),
(1683, 1, 'Redirect after account creation to'),
(1684, 1, 'Redirect after email confirmation to'),
(1685, 1, 'Enable relationships'),
(1686, 1, 'Allow relationships between'),
(1687, 1, 'Revision number'),
(1688, 1, 'Enable CSRF token in forms'),
(1689, 1, 'CSRF token lifetime in seconds(0 - do not track time)'),
(1690, 1, 'Total security impact threshold to send report and block aggressor'),
(1691, 1, 'Total security impact threshold to send report'),
(1692, 1, 'Block content after N reports (0 - do not block)'),
(1693, 1, 'Logo aspect ratio'),
(1694, 1, 'Default storage engine (other than Local may require custom/additional setup)'),
(1695, 1, 'AWS access key'),
(1696, 1, 'AWS bucket'),
(1697, 1, 'AWS custom domain (require custom DNS setup)'),
(1698, 1, 'AWS secret key'),
(1699, 1, 'Endpoint (specify if other than Amazon, such as storage.googleapis.com, s3.wasabisys.com)'),
(1700, 1, 'Signature version (only S3v4alt storage supports both v2 and v4)'),
(1701, 1, 'Region (for signature v4 only)'),
(1702, 1, 'Authenticate using Amazon IAM Role (S3v4alt storage only)'),
(1703, 1, 'Enable ACLs (S3v4alt storage only)'),
(1704, 1, 'Force authenticated URLs for specific storages'),
(1705, 1, 'Enable cache for images'),
(1706, 1, 'Cached image max size (in Kb)'),
(1707, 1, 'Use non-empty value less or equal to 10kb. Big values make no sense.'),
(1708, 1, 'Enable compression for JS/CSS files(cache should be enabled)'),
(1709, 1, 'Enable cache for CSS files'),
(1710, 1, 'Enable cache for HTML files'),
(1711, 1, 'Template cache engine (other than FileHtml option may require custom server setup)'),
(1712, 1, 'Enable cache for JS files'),
(1713, 1, 'Enable lessening for CSS files (cache should be enabled)'),
(1714, 1, 'Enable lessening for JS files (cache should be enabled)'),
(1715, 1, 'Remote video transcoding (requires special setup)'),
(1716, 1, 'Live Search Results'),
(1717, 1, 'Set the maximum number of results displayed in Live Search suggestion box.'),
(1718, 1, 'Profile Search Results'),
(1719, 1, 'Set the maximum number of results displayed per page in Profile Search.'),
(1720, 1, 'Session lifetime (min)'),
(1721, 1, 'Session authentication'),
(1722, 1, 'cURL - default timeout'),
(1723, 1, 'HTTP context read timeout (in seconds, -1 - unlimit)'),
(1724, 1, 'cURL - trust unsigned certificates or not verified hosts'),
(1725, 1, '''Content-Security-Policy: frame-ancestors'' header value'),
(1726, 1, '''X-Frame-Options'' header value (Off - don''t send this header)'),
(1727, 1, 'SameSite value for sensitive cookies'),
(1728, 1, 'Notify context member with necessary role to approve content in the context'),
(1729, 1, 'Fixed header'),
(1730, 1, 'CSS @media intervals'),
(1731, 1, 'Active Tailwind build'),
(1732, 1, 'Active Icons set'),
(1733, 1, 'Allowed extensions for image''s files'),
(1734, 1, 'Allowed extensions for video files'),
(1735, 1, 'Allowed extensions for image and video files'),
(1736, 1, 'Disallowed extensions for files'),
(1737, 1, 'Allowed extensions for audio files'),
(1738, 1, 'Default Template'),
(1739, 1, 'Template cannot be empty and must have a valid name.'),
(1740, 1, 'Use operator LIKE for search (recommended for small content)'),
(1741, 1, 'Quill - paste as plain text'),
(1742, 1, 'Quill - allow empty tags'),
(1743, 1, 'Quill - allowed formats for mini editor'),
(1744, 1, 'Quill - allowed formats for standard editor'),
(1745, 1, 'Quill - allowed formats for full editor'),
(1746, 1, 'Quill buttons for mini editor'),
(1747, 1, 'Quill buttons for standard editor'),
(1748, 1, 'Quill buttons for full editor'),
(1749, 1, 'Filter out labels from hashtag suggestion list'),
(1750, 1, 'Max number of hashtags per post'),
(1751, 1, 'Max number of mentions per post'),
(1752, 1, 'Max number of attached links per post (0 - no limit)'),
(1753, 1, 'Allow to post to context using Privacy field'),
(1754, 1, 'Hide post to context for modules in Privacy field'),
(1755, 1, 'Treat context posted in context as content'),
(1756, 1, 'Only parent group(space, event, etc) members can join'),
(1757, 1, 'Keyword min length in site search'),
(1758, 1, 'System Bot profile'),
(1759, 1, 'Choose profile which will be used as an author of system actions.'),
(1760, 1, 'Default logs storage'),
(1761, 1, 'Enable ''Quick Reactions'' mode - vote with default reaction when clicked'),
(1762, 1, 'Auto approve a comment after creation'),
(1763, 1, 'Asynchronous forms preload in "Create Post" block'),
(1764, 1, ''),
(1765, 1, 'Use Add2Any code instead of default sharing menu'),
(1766, 1, 'Add2Any code'),
(1767, 1, 'Enable API'),
(1768, 1, 'Allow access by origin'),
(1769, 1, 'Allow access with API key'),
(1770, 1, 'Access to unsafe services'),
(1771, 1, ''),
(1772, 1, 'Cookies path'),
(1773, 1, 'Secure cookies'),
(1774, 1, 'Cookies SameSite attribute'),
(1775, 1, 'Top Menu'),
(1776, 1, 'Flat comments'),
(1777, 1, 'Search sections'),
(1778, 1, 'Use extended units'),
(1779, 1, 'Use connections lists in profiles/groups units'),
(1780, 1, 'Site main URL in email notifications'),
(1781, 1, 'Site main URL in push notifications'),
(1782, 1, 'Default API key'),
(1783, 1, 'Default model'),
(1784, 1, 'Profile'),
(1785, 1, 'Auto delete transient chats everyday'),
(1786, 1, 'Assistant for Studio'),
(1787, 1, 'Assistant for Live search'),
(1788, 1, 'Assistant for ''Ask AI'' block'),
(1789, 1, 'Viewport meta tag'),
(1790, 1, 'Manifest'),
(1791, 1, 'Name'),
(1792, 1, 'Short name'),
(1793, 1, 'Description'),
(1794, 1, 'Background color'),
(1795, 1, 'Theme color'),
(1796, 1, 'Service Worker'),
(1797, 1, 'Enable'),
(1798, 1, 'URLs to cache on install (each in new line)'),
(1799, 1, 'Offline page'),
(1800, 1, 'Sockets server'),
(1801, 1, 'Type'),
(1802, 1, 'Url'),
(1803, 1, 'App id'),
(1804, 1, 'App key'),
(1805, 1, 'App secret'),
(1806, 1, 'Disabled'),
(1807, 1, 'Soketi'),
(1808, 1, 'Studio: Show header left area'),
(1809, 1, 'Studio: Show search in header left'),
(1810, 1, 'Studio: Show header center area'),
(1811, 1, 'Studio: Show header right area'),
(1812, 1, 'Studio: Show search in header right'),
(1813, 1, 'Studio: Show ''site'' link in header'),
(1814, 1, 'Studio: Show left area with menu in Launcher'),
(1815, 1, 'Studio: Microlink API key for embeds processing'),
(1816, 1, 'Global'),
(1817, 1, 'Settings were successfully saved'),
(1818, 1, 'Error in ''{0}'': {1}'),
(1819, 1, 'Cannot perform the action.'),
(1820, 1, 'Mix with the same name already exists.'),
(1821, 1, 'Import Settings'),
(1822, 1, 'Import finished. {0} items were processed.'),
(1823, 1, 'Wrong file format.'),
(1824, 1, 'Add New Mix'),
(1825, 1, 'Import Mix'),
(1826, 1, 'Dark mode'),
(1827, 1, 'Duplicate from'),
(1828, 1, 'Use ''None'' to duplicate System values'),
(1829, 1, 'Mix Title'),
(1830, 1, 'Create a <b>_sys_template_mixed_[template_name]_[mix_name]</b> language key in Polyglot to customise the publicly-displayed name. <b>[template_name]</b> and <b>[mix_name]</b> are in lowercase, underscore instead of space.'),
(1831, 1, 'Title is essential. Please, fill in this field.'),
(1832, 1, 'System'),
(1833, 1, 'Cannot remove current image.'),
(1834, 1, 'File'),
(1835, 1, 'Version'),
(1836, 1, 'Cannot connect to FTP server. Please check FTP access details in Settings -> General.'),
(1837, 1, 'Cannot unarchive ZIP package.'),
(1838, 1, 'Cannot save downloaded file.'),
(1839, 1, 'Destination FTP folder doesn''t look like a valid the script root folder.'),
(1840, 1, 'Download failed. Please report.'),
(1841, 1, 'File transfer failed, please check write permissions.'),
(1842, 1, 'FTP access info was not specified. You may enter it via Settings -> General.'),
(1843, 1, 'Cannot load product info. Try again later.'),
(1844, 1, 'Wrong package format.'),
(1845, 1, 'ZIP library is not available.'),
(1846, 1, 'Download was scheduled, in a few minutes downloaded package will be available to install via Apps > Downloaded'),
(1847, 1, 'Download and subsequent installation were scheduled, it may take a few minutes'),
(1848, 1, 'Download was successfully finished, you may install it via Apps > Downloaded'),
(1849, 1, 'Download and subsequent installation were successfully finished'),
(1850, 1, '({0}{1} for Premium)'),
(1851, 1, 'item(s) by'),
(1852, 1, 'or'),
(1853, 1, 'week'),
(1854, 1, 'wk'),
(1855, 1, 'month'),
(1856, 1, 'mo'),
(1857, 1, 'year'),
(1858, 1, 'yr'),
(1859, 1, 'Free'),
(1860, 1, '{0}{1}/{2}'),
(1861, 1, '{0}{1}'),
(1862, 1, 'Category'),
(1863, 1, 'Created'),
(1864, 1, 'Description'),
(1865, 1, 'Discount'),
(1866, 1, '{0}% ({1}{2}) off for Premium'),
(1867, 1, 'Price'),
(1868, 1, 'Rent'),
(1869, 1, 'Stats'),
(1870, 1, '{0} votes'),
(1871, 1, '{0} reviews'),
(1872, 1, '{0} views'),
(1873, 1, 'Tags'),
(1874, 1, 'Title'),
(1875, 1, 'Updated'),
(1876, 1, 'Vendor'),
(1877, 1, 'Version'),
(1878, 1, '{0} ({1} is available)'),
(1879, 1, '{0} - {1}'),
(1880, 1, 'Cannot process action. It does not have an associated handler.'),
(1881, 1, 'Cannot delete file(s).'),
(1882, 1, 'Files were queued for deletion. They will be deleted a little bit later.'),
(1883, 1, 'Cannot delete image(s).'),
(1884, 1, 'Images were queued for deletion. They will be deleted a little bit later.'),
(1885, 1, 'Cannot resize image.'),
(1886, 1, 'Name'),
(1887, 1, 'URL'),
(1888, 1, 'Type'),
(1889, 1, 'Date'),
(1890, 1, 'Delete'),
(1891, 1, 'Add'),
(1892, 1, 'Cancel'),
(1893, 1, 'Done'),
(1894, 1, 'Download'),
(1895, 1, 'Resize'),
(1896, 1, 'Add File'),
(1897, 1, 'Add Image'),
(1898, 1, 'Resize Image'),
(1899, 1, '{0}x{1}, {2}'),
(1900, 1, 'Width'),
(1901, 1, 'Width is essential. Please, fill in this field.'),
(1902, 1, 'Height'),
(1903, 1, 'Height is essential. Please, fill in this field.'),
(1904, 1, 'Menu'),
(1905, 1, 'Assistant'),
(1906, 1, 'Go To Site'),
(1907, 1, 'Search...'),
(1908, 1, 'Color Scheme'),
(1909, 1, 'Tour'),
(1910, 1, 'Launcher'),
(1911, 1, 'Available in App'),
(1912, 1, 'How can I help?'),
(1913, 1, 'Cancel'),
(1914, 1, 'OK'),
(1915, 1, 'Forgot password?'),
(1916, 1, 'missing'),
(1917, 1, 'Password'),
(1918, 1, 'your password'),
(1919, 1, 'Email address'),
(1920, 1, 'operator@example.com'),
(1921, 1, 'Login'),
(1922, 1, 'Enter your email and password to login to Studio.'),
(1923, 1, 'Custom'),
(1924, 1, 'Skeletons'),
(1925, 1, 'System'),
(1926, 1, 'Check module dependencies:'),
(1927, 1, 'Check module for existence:'),
(1928, 1, 'Check module to match:'),
(1929, 1, 'Check module hash:'),
(1930, 1, 'Check module version:'),
(1931, 1, 'Check the script version for compatibility:'),
(1932, 1, 'Clear database cache:'),
(1933, 1, 'Clear template cache:'),
(1934, 1, 'Delete'),
(1935, 1, 'Disable'),
(1936, 1, 'You have an unsupported UNA app installed. The "<a href=''{0}''>{1}</a>" app is no longer receiving updates and is not compatible with latest version of UNA CMS.'),
(1937, 1, 'Enable'),
(1938, 1, 'Executable'),
(1939, 1, 'Changing database:'),
(1940, 1, 'FTP access'),
(1941, 1, 'Install'),
(1942, 1, 'Install language:'),
(1943, 1, 'Login'),
(1944, 1, 'UNA Market'),
(1945, 1, 'Move source files:'),
(1946, 1, 'Installation of update <b>{0}</b> from {1} up to {2}'),
(1947, 1, 'Module'),
(1948, 1, 'Package to upload'),
(1949, 1, 'A module with similar unique parameters is already installed.'),
(1950, 1, 'Password'),
(1951, 1, 'Done'),
(1952, 1, 'Process connections:'),
(1953, 1, 'Process deleted profiles:'),
(1954, 1, 'Process menu triggers:'),
(1955, 1, 'Process page triggers:'),
(1956, 1, 'Process storages:'),
(1957, 1, 'Failed'),
(1958, 1, 'Done'),
(1959, 1, 'Process search forms:'),
(1960, 1, 'Register transcoders:'),
(1961, 1, 'Unregister transcoders:'),
(1962, 1, 'Conclusion from vendor:'),
(1963, 1, 'Introduction from vendor:'),
(1964, 1, 'Update files:'),
(1965, 1, 'Update relations:'),
(1966, 1, 'Update relations for all dependent modules:'),
(1967, 1, 'Update languages:'),
(1968, 1, 'You have the most current version.'),
(1969, 1, 'New version {0} is available.'),
(1970, 1, 'Available Updates'),
(1971, 1, 'Add New Module'),
(1972, 1, 'Writable'),
(1973, 1, 'Active'),
(1974, 1, 'Bookmark'),
(1975, 1, 'Featured'),
(1976, 1, 'Move to'),
(1977, 1, 'Remember me'),
(1978, 1, 'Select Module...'),
(1979, 1, 'Settings'),
(1980, 1, 'Actions'),
(1981, 1, 'Help'),
(1982, 1, 'Help is not available'),
(1983, 1, 'Uninstall'),
(1984, 1, 'API'),
(1985, 1, 'Agents'),
(1986, 1, 'Audit'),
(1987, 1, 'Badges'),
(1988, 1, 'Forms'),
(1989, 1, 'Navigation'),
(1990, 1, 'Pages'),
(1991, 1, 'Permissions'),
(1992, 1, 'Roles'),
(1993, 1, 'Dashboard'),
(1994, 1, 'Designer'),
(1995, 1, 'Polyglot'),
(1996, 1, 'Settings'),
(1997, 1, 'Storage'),
(1998, 1, 'App Store'),
(1999, 1, 'The feature is not available right now. Please, try again later.'),
(2000, 1, 'Comments ({0})'),
(2001, 1, 'All'),
(2002, 1, 'Friends'),
(2003, 1, 'Oldest'),
(2004, 1, 'Popular'),
(2005, 1, 'Subscriptions'),
(2006, 1, 'Newest'),
(2007, 1, 'Flat'),
(2008, 1, 'Threaded'),
(2009, 1, 'Cannot perform action. Please report.'),
(2010, 1, '<a href="{0}">Login</a> or <a href="{1}">Join</a> to comment.'),
(2011, 1, 'Comment to ''{object_title}'''),
(2012, 1, 'Comment to <a href="{object_url}">{object_title}</a>'),
(2013, 1, 'Comment author'),
(2014, 1, 'Comment content'),
(2015, 1, 'Download file'),
(2016, 1, 'View image'),
(2017, 1, 'See newer comments...'),
(2018, 1, 'See older comments...'),
(2019, 1, 'See more comments...'),
(2020, 1, 'See newer replies...'),
(2021, 1, 'See older replies...'),
(2022, 1, 'See more replies...'),
(2023, 1, 'New content'),
(2024, 1, 'Show'),
(2025, 1, 'Reply'),
(2026, 1, 'added a new comment'),
(2027, 1, 'or'),
(2028, 1, 'Pinned comment'),
(2029, 1, 'comment'),
(2030, 1, 'a comment'),
(2031, 1, '''{0}'' reaction to comment'),
(2032, 1, 'reply to comment'),
(2033, 1, 'score up vote to comment'),
(2034, 1, 'score down vote to comment'),
(2035, 1, 'vote to comment'),
(2036, 1, 'Added <a href="{sample_url}">{sample}</a> to <a href="{psample_url}">{psample}</a>'),
(2037, 1, '{0} comments'),
(2038, 1, 'Comment'),
(2039, 1, '{0}'),
(2040, 1, 'Comment'),
(2041, 1, '{0}, leave your comment here.'),
(2042, 1, 'Comment will be published as soon as it''s approved by moderator'),
(2043, 1, 'Notes'),
(2044, 1, 'Report''s Comments'),
(2045, 1, 'Reviews Rating'),
(2046, 1, 'Reviews ({0})'),
(2047, 1, '{0}, leave your review here.'),
(2048, 1, 'review'),
(2049, 1, '''{0}'' reaction to review'),
(2050, 1, 'score up vote to review'),
(2051, 1, 'score down vote to review'),
(2052, 1, 'vote to review'),
(2053, 1, 'No reviews yet'),
(2054, 1, 'Review'),
(2055, 1, '© {0} Company'),
(2056, 1, 'delete'),
(2057, 1, 'Error occurred'),
(2058, 1, 'from'),
(2059, 1, 'Comment by <b>{0}</b> is hidden.'),
(2060, 1, 'In reply to'),
(2061, 1, 'In reply to {0}'),
(2062, 1, 'item'),
(2063, 1, 'items'),
(2064, 1, 'Sorry, you''ve been banned'),
(2065, 1, 'Message subject'),
(2066, 1, 'comments edit own'),
(2067, 1, 'comments post'),
(2068, 1, 'comments remove own'),
(2069, 1, 'comments vote'),
(2070, 1, 'get other members emails'),
(2071, 1, 'send greetings'),
(2072, 1, 'send messages'),
(2073, 1, 'view profiles'),
(2074, 1, 'vote'),
(2075, 1, 'Next Month'),
(2076, 1, 'Previous Month'),
(2077, 1, 'no limit'),
(2078, 1, 'Powered by'),
(2079, 1, 'See more...'),
(2080, 1, 'Show'),
(2081, 1, 'Accept'),
(2082, 1, 'Accounts'),
(2083, 1, 'Access denied. This is private content.'),
(2084, 1, 'Actions'),
(2085, 1, 'Active'),
(2086, 1, 'Email settings were successfully saved'),
(2087, 1, 'Password was successfully changed'),
(2088, 1, 'Account settings were successfully saved'),
(2089, 1, 'No confirmation'),
(2090, 1, 'email is confirmed'),
(2091, 1, 'phone is confirmed'),
(2092, 1, 'email and phone are confirmed'),
(2093, 1, 'email or phone is confirmed'),
(2094, 1, 'You haven''t created any profiles, so you can''t ''{1}''.'),
(2095, 1, 'View charts'),
(2096, 1, 'View statistical charts'),
(2097, 1, 'Comments Edit All'),
(2098, 1, 'Comments Edit Own'),
(2099, 1, 'Comments Pin'),
(2100, 1, 'Comments Post'),
(2101, 1, 'Comments Remove All'),
(2102, 1, 'Comments Remove All In Own Content'),
(2103, 1, 'Comments Remove All In Context for Context''s admins'),
(2104, 1, 'Comments Remove Own'),
(2105, 1, 'Connect (befriend, follow, etc)'),
(2106, 1, 'Create Account'),
(2107, 1, 'It make sense for guests only, you can temporary disable it or set limit by time for example.'),
(2108, 1, 'Delete Account'),
(2109, 1, 'Delete account also deletes account''s content.'),
(2110, 1, ' every {4} hours, new period begins {8}'),
(2111, 1, 'Favorite'),
(2112, 1, 'View favorites'),
(2113, 1, 'Feature'),
(2114, 1, 'View views'),
(2115, 1, 'View viewers for own content'),
(2116, 1, 'You have reached your limit for now. Your current membership ({2}) allows you to {1} no more than {3} times'),
(2117, 1, 'Your current membership ({2}) doesn''t allow you to ''{1}''.'),
(2118, 1, 'Your current membership ({2}) stopped to allow you to ''{1}'' {5}.'),
(2119, 1, 'Your current membership ({2}) will allow you to ''{1}'' {6}.'),
(2120, 1, 'You are currently not an active member. Please, ask the site <a href="mailto:{7}">administrator</a> to make you an active member so you would be able to <b>{1}</b>.'),
(2121, 1, 'Post links'),
(2122, 1, 'Post links in text and textarea form fields'),
(2123, 1, 'Use Macros'),
(2124, 1, 'Use special constructions to insert dynamic content almost anywhere'),
(2125, 1, 'Set membership level'),
(2126, 1, 'Set membership level for profiles'),
(2127, 1, 'Use membership level(s) in privacy fields'),
(2128, 1, 'Allow to limit access by membership level(s) in privacy fields'),
(2129, 1, 'Show membership private info'),
(2130, 1, 'Show membership private info'),
(2131, 1, 'Set badge'),
(2132, 1, 'Set badge for content'),
(2133, 1, 'Switch to any profile'),
(2134, 1, 'Allow switch to any profile'),
(2135, 1, 'Choose membership level as privacy'),
(2136, 1, 'Choose membership level as privacy in add content forms'),
(2137, 1, 'Set form fields privacy'),
(2138, 1, 'Allow to set privacy for form fields'),
(2139, 1, 'You can''t ''{1}'' because your profile was suspended, if you don''t know why - try to send message to <a href="mailto:{7}">administrator</a>.'),
(2140, 1, 'Not logged in users can''t ''{1}''.'),
(2141, 1, 'You didn''t confirm your profile. Please check your email with profile activation link. Unconfirmed members can''t <b>{1}</b>.'),
(2142, 1, 'Vote'),
(2143, 1, 'View votes'),
(2144, 1, 'View voters'),
(2145, 1, 'Report'),
(2146, 1, 'View reports'),
(2147, 1, 'Wiki: Add Block'),
(2148, 1, 'Wiki: Edit Block'),
(2149, 1, 'Wiki: Translate Block'),
(2150, 1, 'Wiki: Delete Version'),
(2151, 1, 'Wiki: Delete Block'),
(2152, 1, 'Wiki: History'),
(2153, 1, 'Wiki: Unsafe HTML'),
(2154, 1, 'Started: '),
(2155, 1, 'Expires: '),
(2156, 1, 'never'),
(2157, 1, 'State: '),
(2158, 1, 'Trial'),
(2159, 1, 'This field is essential. Please enter something here.'),
(2160, 1, 'This field is essential. Please select something here.'),
(2161, 1, 'Active'),
(2162, 1, 'Name'),
(2163, 1, 'Type'),
(2164, 1, 'Unit'),
(2165, 1, 'Action'),
(2166, 1, 'Time'),
(2167, 1, 'Model'),
(2168, 1, 'Profile'),
(2169, 1, 'Prompt'),
(2170, 1, 'Messages'),
(2171, 1, 'Code'),
(2172, 1, 'Added'),
(2173, 1, 'Status'),
(2174, 1, 'Add'),
(2175, 1, 'Tune'),
(2176, 1, 'Approve'),
(2177, 1, 'Add automator'),
(2178, 1, 'Edit automator'),
(2179, 1, 'Name'),
(2180, 1, 'Model'),
(2181, 1, 'Profile'),
(2182, 1, 'Leave empty to use default.'),
(2183, 1, 'Type'),
(2184, 1, 'Event'),
(2185, 1, 'Scheduler'),
(2186, 1, 'Webhook'),
(2187, 1, 'Event Type'),
(2188, 1, 'Event Action'),
(2189, 1, 'Scheduler Time'),
(2190, 1, 'Providers'),
(2191, 1, 'Add'),
(2192, 1, 'Helpers'),
(2193, 1, 'Add'),
(2194, 1, 'Assistants'),
(2195, 1, 'Add'),
(2196, 1, 'Prompt'),
(2197, 1, 'Prompt is essential. Please type something here.'),
(2198, 1, 'Auto'),
(2199, 1, 'Manual'),
(2200, 1, 'Ready'),
(2201, 1, 'Event isn''t found, please rephrase your prompt.'),
(2202, 1, 'Can''t generate code, please rephrase your prompt.'),
(2203, 1, 'Response:<br />'),
(2204, 1, 'Active'),
(2205, 1, 'Name'),
(2206, 1, 'Type'),
(2207, 1, 'Added'),
(2208, 1, 'Add Provider'),
(2209, 1, 'Info'),
(2210, 1, 'Edit'),
(2211, 1, 'Delete'),
(2212, 1, 'Add provider'),
(2213, 1, 'Edit provider'),
(2214, 1, 'View provider'),
(2215, 1, 'Type'),
(2216, 1, 'Type is essential. Please select a value.'),
(2217, 1, 'Name'),
(2218, 1, 'Shopify (Admin API)'),
(2219, 1, 'Active'),
(2220, 1, 'Activate(Deactivate) source'),
(2221, 1, 'Shop domain'),
(2222, 1, ''),
(2223, 1, 'Access token'),
(2224, 1, ''),
(2225, 1, 'Secret key'),
(2226, 1, ''),
(2227, 1, 'Webhook URL'),
(2228, 1, ''),
(2229, 1, 'Active'),
(2230, 1, 'Name'),
(2231, 1, 'Model'),
(2232, 1, 'Profile'),
(2233, 1, 'Prompt'),
(2234, 1, 'Added'),
(2235, 1, 'Add Helper'),
(2236, 1, 'Tune'),
(2237, 1, 'Name'),
(2238, 1, 'Model'),
(2239, 1, 'Profile'),
(2240, 1, 'Leave empty to use default.'),
(2241, 1, 'Description'),
(2242, 1, 'Prompt'),
(2243, 1, 'Prompt is essential. Please type something here.'),
(2244, 1, 'Message'),
(2245, 1, 'Message is essential. Please type something here.'),
(2246, 1, 'Result'),
(2247, 1, 'Add helper'),
(2248, 1, 'Edit helper'),
(2249, 1, 'Active'),
(2250, 1, 'Name'),
(2251, 1, 'Model'),
(2252, 1, 'Profile'),
(2253, 1, 'Prompt'),
(2254, 1, 'Added'),
(2255, 1, 'Assistant'),
(2256, 1, 'onClick code for a link'),
(2257, 1, 'Button HTML code'),
(2258, 1, 'Add knowledge'),
(2259, 1, 'Ask'),
(2260, 1, 'Add Assistant'),
(2261, 1, 'Chats'),
(2262, 1, 'Files'),
(2263, 1, 'Get codes'),
(2264, 1, 'Name'),
(2265, 1, 'Model'),
(2266, 1, 'Profile'),
(2267, 1, 'Leave empty to use default.'),
(2268, 1, 'Description'),
(2269, 1, 'Prompt'),
(2270, 1, 'Prompt is essential. Please type something here.'),
(2271, 1, 'Result'),
(2272, 1, 'Add assistant'),
(2273, 1, 'Edit assistant'),
(2274, 1, 'Name'),
(2275, 1, 'Type'),
(2276, 1, 'Permanent'),
(2277, 1, 'Transient'),
(2278, 1, 'Description'),
(2279, 1, 'Messages'),
(2280, 1, 'Added'),
(2281, 1, 'Stored'),
(2282, 1, 'Chat'),
(2283, 1, 'Add Chat'),
(2284, 1, 'Chat'),
(2285, 1, 'Store for future usage'),
(2286, 1, 'Remove from store'),
(2287, 1, 'Name'),
(2288, 1, 'Description'),
(2289, 1, 'Add chat'),
(2290, 1, 'Edit chat'),
(2291, 1, 'I''m thinking. Please wait.'),
(2292, 1, 'Cannot get response'),
(2293, 1, 'Name'),
(2294, 1, 'Size'),
(2295, 1, 'Status'),
(2296, 1, 'In progress'),
(2297, 1, 'Completed'),
(2298, 1, 'Failed'),
(2299, 1, 'Cancelled'),
(2300, 1, 'Added'),
(2301, 1, 'Add File'),
(2302, 1, 'Sync'),
(2303, 1, 'Delete file'),
(2304, 1, 'File'),
(2305, 1, 'Add File'),
(2306, 1, 'Type'),
(2307, 1, 'Text'),
(2308, 1, 'Question with answer'),
(2309, 1, 'Text'),
(2310, 1, 'Question'),
(2311, 1, 'Answer'),
(2312, 1, 'Add Knowledge'),
(2313, 1, 'Ask Assistant'),
(2314, 1, 'Knowledge was added.'),
(2315, 1, 'Information'),
(2316, 1, 'Content edited'),
(2317, 1, 'Content added'),
(2318, 1, 'Content removed'),
(2319, 1, 'Comment edited'),
(2320, 1, 'Comment added'),
(2321, 1, 'Comment removed'),
(2322, 1, 'Featured'),
(2323, 1, 'Unfeatured'),
(2324, 1, 'Marked as resolved'),
(2325, 1, 'Added to group admins'),
(2326, 1, 'Removed from group admins'),
(2327, 1, 'Group role was changed'),
(2328, 1, 'Join request accepted'),
(2329, 1, 'Made operator'),
(2330, 1, 'Unmade operator'),
(2331, 1, 'Unlocked'),
(2332, 1, 'Login'),
(2333, 1, 'Failed login attempt'),
(2334, 1, 'Logout'),
(2335, 1, 'Password reseted'),
(2336, 1, 'Confirmation email re-sended'),
(2337, 1, 'Removed with content'),
(2338, 1, 'Removed'),
(2339, 1, 'Email changed'),
(2340, 1, 'Activated'),
(2341, 1, 'Suspended'),
(2342, 1, 'Enabled'),
(2343, 1, 'Disabled'),
(2344, 1, 'Membership set'),
(2345, 1, 'Approved'),
(2346, 1, 'Activated'),
(2347, 1, 'Disapproved'),
(2348, 1, 'Suspended'),
(2349, 1, 'Reported'),
(2350, 1, 'Comment Reported'),
(2351, 1, 'Locked'),
(2352, 1, 'Unlocked'),
(2353, 1, 'Sticked'),
(2354, 1, 'Unsticked'),
(2355, 1, 'Promoted'),
(2356, 1, 'Unpromoted'),
(2357, 1, 'Add friend'),
(2358, 1, 'Add relationship'),
(2359, 1, 'Installed'),
(2360, 1, 'Apply'),
(2361, 1, 'Filter:'),
(2362, 1, 'Select Profile'),
(2363, 1, 'Select Action'),
(2364, 1, 'Cron jobs'),
(2365, 1, 'Last cron jobs execution'),
(2366, 1, 'Manual Server Audit'),
(2367, 1, 'Requirements'),
(2368, 1, 'Site optimization'),
(2369, 1, 'Site setup'),
(2370, 1, 'Mail sending'),
(2371, 1, 'you will need to install {0} for Apache'),
(2372, 1, '<pre class="code">{0}</pre> if you are unsure if output is correct then <a href="#manual_audit">manual server audit</a> may be required'),
(2373, 1, 'please enable this cache in Studio > Settings > Cache'),
(2374, 1, 'installing PHP accelerator will speed-up file cache'),
(2375, 1, ' ({0} based cache engine)'),
(2376, 1, '<pre class="code">{0}</pre>if you don''t know if output is correct then <a href="#manual_audit">manual server audit</a> may be required.'),
(2377, 1, 'Hardware requirements can not be determined automatically - <a href="#manual_audit">manual server audit</a> may be required.'),
(2378, 1, 'mail send failed'),
(2379, 1, '<span id="bx-sys-adm-audit-test-email"><a href="javascript:void(0);" onclick="bx_sys_adm_audit_test_email()">click here</a> to send test email</span>'),
(2380, 1, 'test mail was send, please check {0} mailbox'),
(2381, 1, '<p>\nSome things can not be determined automatically, manual server audit is required to check it. \nIf you don''t know how to do it by yourself you can submit <a target="_blank" href="mailto:support@una.io?subject=Server Audit Request">Server Audit Request</a>.\n</p>'),
(2382, 1, 'must be {0} {1}'),
(2383, 1, 'To apply this optimization you need to have <b>{0}</b> - {1}'),
(2384, 1, 'please <a href="javascript:void(0);" onclick="oBxDolStudioDashboard.permissions()">click here</a> to find out if permissions are correct.'),
(2385, 1, 'The script can be much faster if you install some PHP accelerator'),
(2386, 1, 'your PHP setup maybe very inefficient, <a href="javascript:void(0)" onclick="bx_sys_adm_audit_phpinfo()">please check it for sure</a> and try to switch to mod_php, apache dso module or FastCGI'),
(2387, 1, '\ncan be checked <a href="#manual_audit">manually</a> or in "Page Speed" tool build-in into browser.<br />\nIf it is not enabled then please consider implement this optimization, since it improve perceived site speed and save the bandwidth.<br />{0}'),
(2388, 1, 'should be {0} {1}'),
(2389, 1, '\n<a href="{0}">click here to check it in Google Page Speed</a><br />\nIf it is not enabled then please consider implement this optimization, since it improve perceived site speed and save the bandwidth.<br />{1}'),
(2390, 1, 'value checking failed'),
(2391, 1, 'your version is incompatible with UNA, must be at least {0}'),
(2392, 1, 'your version is outdated, upgrade to the latest {0} maybe required'),
(2393, 1, 'Files and folders permissions'),
(2394, 1, 'PHP accelerator'),
(2395, 1, 'PHP setup'),
(2396, 1, 'Hardware'),
(2397, 1, 'OS'),
(2398, 1, 'Web-server'),
(2399, 1, 'Server-side content compression'),
(2400, 1, 'FAIL'),
(2401, 1, 'OK'),
(2402, 1, 'UNDEFINED'),
(2403, 1, 'WARNING'),
(2404, 1, 'User-side caching for static content'),
(2405, 1, 'version'),
(2406, 1, 'UNA version'),
(2407, 1, 'custom'),
(2408, 1, 'html'),
(2409, 1, 'image'),
(2410, 1, 'lang'),
(2411, 1, 'creative'),
(2412, 1, 'bento grid'),
(2413, 1, 'menu'),
(2414, 1, 'raw'),
(2415, 1, 'rss'),
(2416, 1, 'wiki'),
(2417, 1, 'service'),
(2418, 1, 'Custom'),
(2419, 1, 'Skeletons'),
(2420, 1, 'System'),
(2421, 1, 'Comments'),
(2422, 1, 'Active'),
(2423, 1, 'Module'),
(2424, 1, 'Text'),
(2425, 1, 'Added'),
(2426, 1, 'Author'),
(2427, 1, 'Delete'),
(2428, 1, 'Display'),
(2429, 1, 'From'),
(2430, 1, 'To'),
(2431, 1, 'Accounts: Growth'),
(2432, 1, 'Accounts: Growth Speed'),
(2433, 1, 'Close'),
(2434, 1, 'Confirm'),
(2435, 1, 'Confirmed'),
(2436, 1, 'Connection already exists'),
(2437, 1, 'Connection doesn''t exist'),
(2438, 1, 'Connection request is awaiting confirmation'),
(2439, 1, 'Input data isn''t defined'),
(2440, 1, 'Operation has beed successfully completed'),
(2441, 1, 'Configuration info'),
(2442, 1, 'Sorry but join is unavailable now. Please try again later.'),
(2443, 1, 'Can''t define your profile information'),
(2444, 1, 'State parameter isn''t matching'),
(2445, 1, 'General'),
(2446, 1, 'Redirect page after first sign in'),
(2447, 1, 'Module to create profile in'),
(2448, 1, 'Always confirm emails when joined using this module'),
(2449, 1, 'Always approve profiles when joined using this module'),
(2450, 1, 'Default privacy for created profiles'),
(2451, 1, '{0} {1}'),
(2452, 1, 'Decline'),
(2453, 1, 'Content'),
(2454, 1, 'Content + Title + Background'),
(2455, 1, 'Content + Padding'),
(2456, 1, 'Content + Title + Background + Padding'),
(2457, 1, 'Content + Background + Padding'),
(2458, 1, 'Content + Title + Padding'),
(2459, 1, 'Empty box'),
(2460, 1, 'Content + Background'),
(2461, 1, 'Content + Title'),
(2462, 1, 'Done'),
(2463, 1, 'About us'),
(2464, 1, '{email_header}\n<p>Message from <a href="{site_url}">{site_name}</a> admin:</p>\n<p> </p>\n<p>{MessageText}</p>\n<p> </p>\n{email_footer}'),
(2465, 1, '{email_header}\n<p>User {sender_display_name} posted reply to your comment: </p>\n<p> </p>\n<p>{reply_text}</p>\n<p> </p>\n<p>View and reply here: <a href="{page_url}">{page_title}</a>.</p>\n<p> </p>\n{email_footer}'),
(2466, 1, '{email_header}\n<p>New <b>{report_type}</b> report received:</p>\n<p> </p>\n<p>{report_text}</p>\n<p> </p>\n<p><a href="{report_url}">View report</a>.</p>\n<p> </p>\n{email_footer}'),
(2467, 1, '{email_header}\n<p>Hello {name} ({email}),</p>\n<p>Please confirm your email address by clicking the link below:</p>\n<p> </p>\n<p><a href="{conf_link}">{conf_link}</a></p>\n<p> </p>\n<p>or use the code:</p>\n<p><span class="h3">{conf_code}</span></p>\n<p> </p>\n{email_footer}'),
(2468, 1, '{email_header}\n<p>Module: <b>{Module}</b></p>\n<p>Uninstallation result: {Result}</p>\n<p> </p>\n<p>{Message}</p>\n<p> </p>\n{email_footer}'),
(2469, 1, '{email_header}\n<p>Hello {name} ({email})</p>,\n<p>Click the link below to reset your password, please:</p>\n<p> </p>\n<p><a href="{forgot_password_url}">Reset my password</a>.</p>\n<p> </p>\n{email_footer}'),
(2470, 1, '{email_header}\n<p><b>{profile_name}</b> profile membership level is now <b>{membership_level}</b>.</p>\n<p> </p>\n{email_footer}'),
(2471, 1, '{email_header}\n<p><b>{profile_name}</b> profile membership level (<b>{membership_level}</b>) was prolonged.</p>\n<p> </p>\n{email_footer}'),
(2472, 1, '{email_header}\n<p>Your {membership_name} membership will expire in {expire_days} days (-1 means already expired).</p>\n<p>Click the link below to renew your membership:</p>\n<p> </p>\n<p><a href="{page_url}">Renew my membership</a></p>\n<p> </p>\n{email_footer}'),
(2473, 1, '{email_header}\n<p>Your {site_name} account details:</p>\n<p> </p>\n<p>Name: {account_name}</p>\n<p>Email: {account_email}</p>\n<p>URL: <a href="{site_url}">{site_url}</a></p>\n<p></p>\n{email_footer}'),
(2474, 1, '{email_header}\n<p>Your profile is pending review. We will send you the review result shortly.</p>\n<p> </p>\n{email_footer}'),
(2475, 1, '{email_header}\n<p>Your profile is currently suspended.</p>\n<p> </p>\n{email_footer}'),
(2476, 1, '{email_header}\n<p>Your account and all your related profiles are currently activated.</p>\n<p></p>\n{email_footer}'),
(2477, 1, '{email_header}\n<p>Your account and all your related profiles are currently suspended.</p>\n<p> </p>\n{email_footer}'),
(2478, 1, '{email_header}\n<p>{account_output}</p>\n{email_footer}'),
(2479, 1, '{email_header}\n<p>Your password will expire {expired_date}</p>\n<p>Please, sign-in and change password</p>\n{email_footer}'),
(2480, 1, '{email_header}\n<p>{pruning_output}</p>\n{email_footer}'),
(2481, 1, '{email_header}\n<p>Upgrade failed due to the following error:</p>\n<p> </p>\n<p>{error_msg}</p>\n<p> </p>\n{email_footer}'),
(2482, 1, '{email_header}\n<p>The following errors appeared during modules upgrade:</p>\n<p> </p>\n<p>{conclusion}</p>\n<p> </p>\n{email_footer}'),
(2483, 1, '{email_header}\n<p>Site was successfully upgraded to {new_version}.</p>\n<p>Please go to <b>Studio > App Store > Updates</b> to check for modules updates.</p>\n<p> </p>\n{conclusion}\n<p> </p>\n{email_footer}'),
(2484, 1, '{email_header}\n<p>The following modules were successfully upgraded.</p>\n<p> </p>\n{conclusion}\n<p> </p>\n{email_footer}'),
(2485, 1, '{email_header}\n<p>Background operation failed with the following message.</p>\n<p> </p>\n{conclusion}\n<p> </p>\n{email_footer}'),
(2486, 1, '{email_header}\n<p>Moderation team has a question for you about ''{content_title}'':</p>\n<p> </p>\n<p>{notes}</p>\n<p> </p>\n{email_footer}'),
(2487, 1, '<b>{0}</b> module: up to {1} version.<br />'),
(2488, 1, '<b>{0}</b> module: {1}<br />'),
(2489, 1, 'Message sending from the Admin Panel'),
(2490, 1, 'The letter is sent to members whose comment was replied'),
(2491, 1, 'New report notification'),
(2492, 1, 'Profile e-mail confirmation message'),
(2493, 1, 'Delayed module uninstall notification'),
(2494, 1, 'Reset password message'),
(2495, 1, 'The letter is sent to members whose membership level was changed'),
(2496, 1, 'The letter is sent to members whose membership level was prolonged'),
(2497, 1, 'Membership expiration letter sent to members whose membership level expires'),
(2498, 1, 'Profile status changed to active'),
(2499, 1, 'Profile status changed to pending'),
(2500, 1, 'Profile status changed to suspended'),
(2501, 1, 'Account status changed to active'),
(2502, 1, 'Account status changed to suspended'),
(2503, 1, 'Approve: Contact content''s author'),
(2504, 1, 'New Accounts'),
(2505, 1, 'Password will expire'),
(2506, 1, 'Pruning result'),
(2507, 1, 'Upgrade failed'),
(2508, 1, 'Modules upgrade failed'),
(2509, 1, 'Site upgrade success'),
(2510, 1, 'Modules upgrade success'),
(2511, 1, 'Background operation failed'),
(2512, 1, 'Message from <SiteName> Admin: <MessageSubject>'),
(2513, 1, 'User {sender_display_name} replied to your comment.'),
(2514, 1, 'New report notification'),
(2515, 1, 'Confirm your email address'),
(2516, 1, 'Delayed {Module} module uninstall: {Result}'),
(2517, 1, 'Reset your password'),
(2518, 1, 'Your membership level was changed'),
(2519, 1, 'Your membership level was prolonged'),
(2520, 1, 'Your membership is about to expire'),
(2521, 1, 'Profile activated'),
(2522, 1, 'Profile pending review'),
(2523, 1, 'Profile suspended'),
(2524, 1, 'Account activated'),
(2525, 1, 'Account suspended'),
(2526, 1, 'Approvement. A question about ''{content_title}''.'),
(2527, 1, '{site_name} {account_count} accounts created yesterday'),
(2528, 1, 'Your password will expire soon'),
(2529, 1, '{site_name} pruning result'),
(2530, 1, '{site_name} upgrade failed'),
(2531, 1, 'Modules upgrade failed on {site_name}'),
(2532, 1, '{site_name} upgrade success'),
(2533, 1, 'Modules upgrade success on {site_name}'),
(2534, 1, 'Background operation failed'),
(2535, 1, 'Unsubscribe'),
(2536, 1, 'Microsoft Office Viewer'),
(2537, 1, 'Google Viewer'),
(2538, 1, 'Images Viewer'),
(2539, 1, 'Code Viewer'),
(2540, 1, 'Sounds Player'),
(2541, 1, 'Videos Player'),
(2542, 1, 'Account'),
(2543, 1, ''),
(2544, 1, 'By signing up, you agree to the <a href="{0}">Terms of Service</a> and <a href="{1}">Privacy Policy</a>.'),
(2545, 1, 'Security Image'),
(2546, 1, 'Security image input failed. Please, try again.'),
(2547, 1, 'Type the text:'),
(2548, 1, 'Type the text you hear:'),
(2549, 1, 'refresh'),
(2550, 1, 'Get another CAPTCHA'),
(2551, 1, 'audio'),
(2552, 1, 'Get an audio CAPTCHA'),
(2553, 1, 'image'),
(2554, 1, 'Get an image CAPTCHA'),
(2555, 1, 'help'),
(2556, 1, 'Get Help'),
(2557, 1, 'I''m sure that I want to delete the account and data.'),
(2558, 1, 'I''m sure that I want to delete the account.'),
(2559, 1, 'Please check this checkbox if you really want to delete account.'),
(2560, 1, 'This action can not be undone.'),
(2561, 1, 'Email'),
(2562, 1, 'Email is not valid'),
(2563, 1, 'This email address is already registered. Please, use <a href="{0}">Forgot password</a> to restore access to your account.'),
(2564, 1, 'This email is already used by someone.'),
(2565, 1, 'This phone number is already used by someone.'),
(2566, 1, 'Account name'),
(2567, 1, 'Account name is mandatory and and cannot start with @'),
(2568, 1, 'Create a password'),
(2569, 1, 'Confirm a password'),
(2570, 1, 'Password confirmation failed'),
(2571, 1, 'Current Password'),
(2572, 1, 'This password has already been used before, use a different one'),
(2573, 1, 'Current password isn''t correct, please enter password you are using to login to this site.'),
(2574, 1, 'The password must at least 8 characters long and contain at least 1 uppercase letter, 1 lowercase letter and 1 digit.'),
(2575, 1, 'Receive Newsletters'),
(2576, 1, 'Receive Site Updates'),
(2577, 1, 'Submit'),
(2578, 1, 'Create'),
(2579, 1, 'Agents: Message'),
(2580, 1, 'Agents: Message Send'),
(2581, 1, 'Action'),
(2582, 1, 'Image'),
(2583, 1, 'Parent ID'),
(2584, 1, 'Send'),
(2585, 1, 'Send'),
(2586, 1, 'Text'),
(2587, 1, 'Object ID'),
(2588, 1, 'Object Type'),
(2589, 1, 'No'),
(2590, 1, 'Yes'),
(2591, 1, 'Author'),
(2592, 1, 'Comment'),
(2593, 1, 'Author'),
(2594, 1, 'Text'),
(2595, 1, 'Action'),
(2596, 1, 'Author'),
(2597, 1, 'Cancel'),
(2598, 1, 'Comment ID'),
(2599, 1, 'Image'),
(2600, 1, 'Parent ID'),
(2601, 1, 'Post'),
(2602, 1, 'Text'),
(2603, 1, 'Object ID'),
(2604, 1, 'Object Type'),
(2605, 1, 'Cancel'),
(2606, 1, 'Post'),
(2607, 1, 'Email Confirmation'),
(2608, 1, 'Verification Code'),
(2609, 1, 'Submit'),
(2610, 1, 'Verification Code'),
(2611, 1, 'Verification code is invalid or expired, please login to your account and resend verification email.'),
(2612, 1, 'Submit'),
(2613, 1, 'Phone Confirmation'),
(2614, 1, 'Phone'),
(2615, 1, 'Phone'),
(2616, 1, 'Enter your phone with country code'),
(2617, 1, 'Wrong phone number, allowed digits only and start from ''+'''),
(2618, 1, 'This phone is already used by someone.'),
(2619, 1, 'Code'),
(2620, 1, 'Code'),
(2621, 1, 'Submit'),
(2622, 1, 'Submit'),
(2623, 1, 'Send SMS'),
(2624, 1, 'Send SMS'),
(2625, 1, 'Cannot be empty.'),
(2626, 1, 'Wrong verification code. Please, repeat code or <a href="{0}">change the phone number and repeat from the beginning</a>.'),
(2627, 1, 'Phone is not valid'),
(2628, 1, 'Create Account'),
(2629, 1, 'Delete Account'),
(2630, 1, 'Email Settings'),
(2631, 1, 'Edit Account'),
(2632, 1, 'Change Password'),
(2633, 1, 'Comment Edit Form'),
(2634, 1, 'Comment Post Form'),
(2635, 1, 'Email Confirmation'),
(2636, 1, 'Set phone'),
(2637, 1, 'Phone confirmation'),
(2638, 1, 'Forgot Password'),
(2639, 1, 'Reset Password'),
(2640, 1, 'Log in'),
(2641, 1, 'Log in - step 2'),
(2642, 1, 'Log in - step 3'),
(2643, 1, 'Report From Post'),
(2644, 1, 'Unsubscribe From Newsletters'),
(2645, 1, 'Unsubscribe From Updates'),
(2646, 1, 'Forgot Password'),
(2647, 1, 'This email doesn''t belong to any account. Please make sure that it is typed correctly.'),
(2648, 1, 'This phone doesn''t belong to any account. Please make sure that it is typed correctly.'),
(2649, 1, 'Wrong phone number, allowed digits only and start from ''+'''),
(2650, 1, 'Please, fill phone or email field'),
(2651, 1, 'Submit'),
(2652, 1, 'Email'),
(2653, 1, 'Key'),
(2654, 1, 'Password'),
(2655, 1, 'Password'),
(2656, 1, 'Password'),
(2657, 1, 'Type your new password'),
(2658, 1, 'Email'),
(2659, 1, 'Phone'),
(2660, 1, 'Phone'),
(2661, 1, 'Submit'),
(2662, 1, 'Age'),
(2663, 1, 'Location'),
(2664, 1, 'Location'),
(2665, 1, 'Radius (in km)'),
(2666, 1, 'Add new item'),
(2667, 1, 'Delete item'),
(2668, 1, 'Post as anonymous'),
(2669, 1, 'Post as anonymous'),
(2670, 1, 'Labels'),
(2671, 1, 'Labels'),
(2672, 1, 'Add Label'),
(2673, 1, 'Show password'),
(2674, 1, 'Hide password'),
(2675, 1, 'Labels'),
(2676, 1, 'Select labels display'),
(2677, 1, 'Name'),
(2678, 1, 'Action'),
(2679, 1, 'Search'),
(2680, 1, 'Search'),
(2681, 1, 'List'),
(2682, 1, 'or select from general labels'),
(2683, 1, 'List from contexts'),
(2684, 1, 'from contexts'' labels'),
(2685, 1, 'Submit'),
(2686, 1, 'Submit'),
(2687, 1, 'Cancel'),
(2688, 1, 'Cancel'),
(2689, 1, 'Log in'),
(2690, 1, 'Agreement'),
(2691, 1, 'Captcha'),
(2692, 1, 'Submit'),
(2693, 1, 'Code from SMS'),
(2694, 1, 'Resend SMS code'),
(2695, 1, 'Confirm Delete'),
(2696, 1, 'Delete with Content'),
(2697, 1, 'Submit'),
(2698, 1, 'Sign up'),
(2699, 1, 'Email'),
(2700, 1, 'ID'),
(2701, 1, 'Account name'),
(2702, 1, 'Password'),
(2703, 1, 'Confirm Password'),
(2704, 1, 'Phone'),
(2705, 1, 'Current Password'),
(2706, 1, 'Receive News'),
(2707, 1, 'Receive Updates'),
(2708, 1, 'Relocate'),
(2709, 1, 'Remember me'),
(2710, 1, 'Role'),
(2711, 1, 'Send SMS'),
(2712, 1, 'Submit'),
(2713, 1, 'Submit Text'),
(2714, 1, 'By logging in, you agree to the <a href="{0}">Terms of Service</a> and <a href="{1}">Privacy Policy</a>.'),
(2715, 1, 'Code from SMS'),
(2716, 1, 'You didn''t receive an SMS? <a href="{0}">Send SMS again</a>.'),
(2717, 1, 'Submit'),
(2718, 1, 'Email'),
(2719, 1, 'Password'),
(2720, 1, 'Phone'),
(2721, 1, 'Enter your phone with country code'),
(2722, 1, 'Remember me'),
(2723, 1, 'Send SMS'),
(2724, 1, 'Log in'),
(2725, 1, 'Cannot be empty.'),
(2726, 1, 'Wrong phone number, allowed digits only and start from ''+'''),
(2727, 1, 'This phone is already used by someone.'),
(2728, 1, 'Wrong verification code. Please, repeat code or <a href="{0}">change the phone number and repeat from the beginning</a>.'),
(2729, 1, 'Manage form'),
(2730, 1, 'Manage form: Approve'),
(2731, 1, 'Content ID'),
(2732, 1, 'Notes'),
(2733, 1, 'Notes'),
(2734, 1, 'Send'),
(2735, 1, 'Send'),
(2736, 1, 'Submit'),
(2737, 1, 'Submit'),
(2738, 1, 'Approve'),
(2739, 1, 'Cancel'),
(2740, 1, 'Cancel'),
(2741, 1, 'ACL form'),
(2742, 1, 'ACL form: Set'),
(2743, 1, 'Set Membership'),
(2744, 1, 'Level'),
(2745, 1, 'Level'),
(2746, 1, 'Duration'),
(2747, 1, 'Duration'),
(2748, 1, 'In days. Leave empty for lifetime'),
(
Showing 512.00 KB of 1.15 MB. Use Edit/Download for full content.
Directory Contents
Dirs: 6 × Files: 14