-- MySQL dump 10.13  Distrib 5.7.32, for osx10.12 (x86_64)
--
-- Host: localhost    Database: shopwise
-- ------------------------------------------------------
-- Server version	5.7.32

/*!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 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `activations`
--

DROP TABLE IF EXISTS `activations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `activations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `code` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `completed` tinyint(1) NOT NULL DEFAULT '0',
  `completed_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `activations_user_id_index` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `activations`
--

LOCK TABLES `activations` WRITE;
/*!40000 ALTER TABLE `activations` DISABLE KEYS */;
INSERT INTO `activations` VALUES (1,1,'7UcjD4feKXymKLr60lBj1wShh1EsyuiI',1,'2021-05-03 02:01:13','2021-05-03 02:01:13','2021-05-03 02:01:13'),(2,1,'QzJAXlvGpo4tx37tMxpoXY6fOamqFolp',1,'2021-07-02 20:17:18','2021-07-02 20:17:18','2021-07-02 20:17:18'),(3,1,'tenKNEKgNNpixls9zjhWiP7yEQh7y42z',1,'2021-07-02 20:21:11','2021-07-02 20:21:11','2021-07-02 20:21:11'),(4,1,'AEWRmiHmQC91TrsxcGlZCRMuCihlHbJd',1,'2021-07-02 20:47:01','2021-07-02 20:47:01','2021-07-02 20:47:01'),(5,1,'qmDtNslvquK6wmvIWg3MRUQLa3gWa0Pz',1,'2021-07-02 21:03:29','2021-07-02 21:03:29','2021-07-02 21:03:29');
/*!40000 ALTER TABLE `activations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `audit_histories`
--

DROP TABLE IF EXISTS `audit_histories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `audit_histories` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `module` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
  `request` text COLLATE utf8mb4_unicode_ci,
  `action` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_agent` text COLLATE utf8mb4_unicode_ci,
  `ip_address` varchar(39) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `reference_user` int(10) unsigned NOT NULL,
  `reference_id` int(10) unsigned NOT NULL,
  `reference_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `audit_histories_user_id_index` (`user_id`),
  KEY `audit_histories_module_index` (`module`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `audit_histories`
--

LOCK TABLES `audit_histories` WRITE;
/*!40000 ALTER TABLE `audit_histories` DISABLE KEYS */;
/*!40000 ALTER TABLE `audit_histories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `categories`
--

DROP TABLE IF EXISTS `categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `categories` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent_id` int(10) unsigned NOT NULL DEFAULT '0',
  `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `author_id` int(11) NOT NULL,
  `author_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  `icon` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order` tinyint(4) NOT NULL DEFAULT '0',
  `is_featured` tinyint(4) NOT NULL DEFAULT '0',
  `is_default` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `categories`
--

LOCK TABLES `categories` WRITE;
/*!40000 ALTER TABLE `categories` DISABLE KEYS */;
INSERT INTO `categories` VALUES (1,'Ecommerce',0,NULL,'published',1,'Botble\\ACL\\Models\\User',NULL,0,0,1,'2021-07-02 21:03:27','2021-07-02 21:03:27'),(2,'Fashion',0,NULL,'published',1,'Botble\\ACL\\Models\\User',NULL,0,0,0,'2021-07-02 21:03:27','2021-07-02 21:03:27'),(3,'Electronic',0,NULL,'published',1,'Botble\\ACL\\Models\\User',NULL,0,0,0,'2021-07-02 21:03:27','2021-07-02 21:03:27'),(4,'Commercial',0,NULL,'published',1,'Botble\\ACL\\Models\\User',NULL,0,0,0,'2021-07-02 21:03:27','2021-07-02 21:03:27');
/*!40000 ALTER TABLE `categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `contact_replies`
--

DROP TABLE IF EXISTS `contact_replies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `contact_replies` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `contact_id` int(11) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contact_replies`
--

LOCK TABLES `contact_replies` WRITE;
/*!40000 ALTER TABLE `contact_replies` DISABLE KEYS */;
/*!40000 ALTER TABLE `contact_replies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `contacts`
--

DROP TABLE IF EXISTS `contacts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `contacts` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
  `phone` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `subject` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unread',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contacts`
--

LOCK TABLES `contacts` WRITE;
/*!40000 ALTER TABLE `contacts` DISABLE KEYS */;
/*!40000 ALTER TABLE `contacts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dashboard_widget_settings`
--

DROP TABLE IF EXISTS `dashboard_widget_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dashboard_widget_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `settings` text COLLATE utf8mb4_unicode_ci,
  `user_id` int(10) unsigned NOT NULL,
  `widget_id` int(10) unsigned NOT NULL,
  `order` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `status` tinyint(3) unsigned NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `dashboard_widget_settings_user_id_index` (`user_id`),
  KEY `dashboard_widget_settings_widget_id_index` (`widget_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dashboard_widget_settings`
--

LOCK TABLES `dashboard_widget_settings` WRITE;
/*!40000 ALTER TABLE `dashboard_widget_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `dashboard_widget_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dashboard_widgets`
--

DROP TABLE IF EXISTS `dashboard_widgets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dashboard_widgets` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dashboard_widgets`
--

LOCK TABLES `dashboard_widgets` WRITE;
/*!40000 ALTER TABLE `dashboard_widgets` DISABLE KEYS */;
INSERT INTO `dashboard_widgets` VALUES (1,'widget_total_1','2021-06-26 20:36:21','2021-06-26 20:36:21'),(2,'widget_total_2','2021-06-26 20:36:22','2021-06-26 20:36:22'),(3,'widget_total_themes','2021-06-26 20:36:22','2021-06-26 20:36:22'),(4,'widget_total_3','2021-06-26 20:36:22','2021-06-26 20:36:22'),(5,'widget_total_4','2021-06-26 20:36:22','2021-06-26 20:36:22'),(6,'widget_total_users','2021-06-26 20:36:22','2021-06-26 20:36:22'),(7,'widget_total_pages','2021-06-26 20:36:22','2021-06-26 20:36:22'),(8,'widget_total_plugins','2021-06-26 20:36:22','2021-06-26 20:36:22'),(9,'widget_analytics_general','2021-06-26 20:36:22','2021-06-26 20:36:22'),(10,'widget_analytics_page','2021-06-26 20:36:22','2021-06-26 20:36:22'),(11,'widget_analytics_browser','2021-06-26 20:36:23','2021-06-26 20:36:23'),(12,'widget_posts_recent','2021-06-26 20:36:23','2021-06-26 20:36:23'),(13,'widget_analytics_referrer','2021-06-26 20:36:23','2021-06-26 20:36:23'),(14,'widget_audit_logs','2021-06-26 20:36:23','2021-06-26 20:36:23'),(15,'widget_ecommerce_report_general','2021-06-26 20:36:23','2021-06-26 20:36:23');
/*!40000 ALTER TABLE `dashboard_widgets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_brands`
--

DROP TABLE IF EXISTS `ec_brands`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_brands` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` mediumtext COLLATE utf8mb4_unicode_ci,
  `website` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `logo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `order` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `is_featured` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_brands`
--

LOCK TABLES `ec_brands` WRITE;
/*!40000 ALTER TABLE `ec_brands` DISABLE KEYS */;
INSERT INTO `ec_brands` VALUES (1,'Fashion live',NULL,NULL,'brands/1.png','published',0,1,'2021-07-02 21:02:30','2021-07-02 21:02:30'),(2,'Hand crafted',NULL,NULL,'brands/2.png','published',1,1,'2021-07-02 21:02:30','2021-07-02 21:02:30'),(3,'Mestonix',NULL,NULL,'brands/3.png','published',2,1,'2021-07-02 21:02:30','2021-07-02 21:02:30'),(4,'Sunshine',NULL,NULL,'brands/4.png','published',3,1,'2021-07-02 21:02:30','2021-07-02 21:02:30'),(5,'Pure',NULL,NULL,'brands/5.png','published',4,1,'2021-07-02 21:02:30','2021-07-02 21:02:30'),(6,'Anfold',NULL,NULL,'brands/6.png','published',5,1,'2021-07-02 21:02:30','2021-07-02 21:02:30'),(7,'Automotive',NULL,NULL,'brands/7.png','published',6,1,'2021-07-02 21:02:30','2021-07-02 21:02:30');
/*!40000 ALTER TABLE `ec_brands` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_cart`
--

DROP TABLE IF EXISTS `ec_cart`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_cart` (
  `identifier` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `instance` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`identifier`,`instance`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_cart`
--

LOCK TABLES `ec_cart` WRITE;
/*!40000 ALTER TABLE `ec_cart` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_cart` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_currencies`
--

DROP TABLE IF EXISTS `ec_currencies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_currencies` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `symbol` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_prefix_symbol` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `decimals` tinyint(3) unsigned DEFAULT '0',
  `order` int(10) unsigned DEFAULT '0',
  `is_default` tinyint(4) NOT NULL DEFAULT '0',
  `exchange_rate` double NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_currencies`
--

LOCK TABLES `ec_currencies` WRITE;
/*!40000 ALTER TABLE `ec_currencies` DISABLE KEYS */;
INSERT INTO `ec_currencies` VALUES (1,'USD','$',1,2,0,1,1,'2021-07-02 21:02:30','2021-07-02 21:02:30'),(2,'EUR','€',0,2,1,0,0.84,'2021-07-02 21:02:30','2021-07-02 21:02:30'),(3,'VND','₫',0,0,2,0,23203,'2021-07-02 21:02:30','2021-07-02 21:02:30');
/*!40000 ALTER TABLE `ec_currencies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_customer_addresses`
--

DROP TABLE IF EXISTS `ec_customer_addresses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_customer_addresses` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `country` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `state` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `city` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `customer_id` int(10) unsigned NOT NULL,
  `is_default` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `zip_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_customer_addresses`
--

LOCK TABLES `ec_customer_addresses` WRITE;
/*!40000 ALTER TABLE `ec_customer_addresses` DISABLE KEYS */;
INSERT INTO `ec_customer_addresses` VALUES (1,'John Smith','john.smith@botble.com','+19725795880','FI','New Mexico','Port Joanny','88894 Skiles Cliff Apt. 302',1,1,'2021-07-02 21:02:34','2021-07-02 21:02:34','86509'),(2,'John Smith','john.smith@botble.com','+19299586840','AO','West Virginia','Port Armando','8125 German Bridge',1,0,'2021-07-02 21:02:34','2021-07-02 21:02:34','04782'),(3,'Mrs. Eldridge Blick','cora83@example.com','+16785915500','NF','Massachusetts','North Chanel','454 Gerhold Falls',2,1,'2021-07-02 21:02:34','2021-07-02 21:02:34','79996-0341'),(4,'Ms. Nia Hauck','marlon94@example.net','+12235541362','BA','Iowa','East Kaseybury','650 Wolff Estates',3,1,'2021-07-02 21:02:34','2021-07-02 21:02:34','69355'),(5,'Kade Senger','otto.runte@example.com','+17541662003','SV','South Carolina','South Misty','956 Mayert Orchard Apt. 650',4,1,'2021-07-02 21:02:35','2021-07-02 21:02:35','70114-1144'),(6,'Rosendo Casper','magnus.quigley@example.net','+15341388658','NF','Georgia','East Malcolmfort','1676 Glennie Ridge',5,1,'2021-07-02 21:02:35','2021-07-02 21:02:35','65433'),(7,'Mr. Gerhard Sanford','rod.mertz@example.net','+19731127390','FM','Arkansas','Lake Murlmouth','21371 Addie Drive Apt. 587',6,1,'2021-07-02 21:02:35','2021-07-02 21:02:35','69384-7852'),(8,'Prof. Unique Lehner','tohara@example.org','+19128341528','RE','Georgia','Camillafurt','9086 Kutch Burg Suite 559',7,1,'2021-07-02 21:02:36','2021-07-02 21:02:36','90995-1999'),(9,'Mr. Everett Harvey PhD','bahringer.bernice@example.net','+18185966737','FK','Hawaii','Baumbachland','9713 Hartmann Cove',8,1,'2021-07-02 21:02:36','2021-07-02 21:02:36','17388-9390'),(10,'Mason Anderson','atillman@example.org','+14708554768','SH','Mississippi','Raleighport','894 Brayan Keys Suite 015',9,1,'2021-07-02 21:02:36','2021-07-02 21:02:36','08157-9871'),(11,'Hattie Crist','archibald.legros@example.org','+18572615328','CO','Utah','Ednaside','94831 Ericka Circle Suite 382',10,1,'2021-07-02 21:02:36','2021-07-02 21:02:36','06943'),(12,'Gino Feest','wschultz@example.org','+12233793135','SJ','Iowa','North Michaelaborough','442 Legros Fort Apt. 711',11,1,'2021-07-02 21:02:37','2021-07-02 21:02:37','70475-1907');
/*!40000 ALTER TABLE `ec_customer_addresses` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_customer_password_resets`
--

DROP TABLE IF EXISTS `ec_customer_password_resets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_customer_password_resets` (
  `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  KEY `ec_customer_password_resets_email_index` (`email`),
  KEY `ec_customer_password_resets_token_index` (`token`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_customer_password_resets`
--

LOCK TABLES `ec_customer_password_resets` WRITE;
/*!40000 ALTER TABLE `ec_customer_password_resets` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_customer_password_resets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_customers`
--

DROP TABLE IF EXISTS `ec_customers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_customers` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `avatar` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `dob` date DEFAULT NULL,
  `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `confirmed_at` datetime DEFAULT NULL,
  `email_verify_token` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `ec_customers_email_unique` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_customers`
--

LOCK TABLES `ec_customers` WRITE;
/*!40000 ALTER TABLE `ec_customers` DISABLE KEYS */;
INSERT INTO `ec_customers` VALUES (1,'John Smith','john.smith@botble.com','$2y$10$K/P2LPetfxnrO752qadhduS4xoVh6EYBVKS9HSIIC19P8OPYt11zi','customers/1.jpg',NULL,'+16780453521',NULL,'2021-07-02 21:02:34','2021-07-02 21:02:34','2021-07-03 04:02:34',NULL),(2,'Mrs. Eldridge Blick','cora83@example.com','$2y$10$62cK/8tFyKejy/MLQMdaNeqIiWP/4tKIyQRrgHvopqCWDyFHrFw92','customers/1.jpg',NULL,'+14709221225',NULL,'2021-07-02 21:02:34','2021-07-02 21:02:34','2021-07-03 04:02:34',NULL),(3,'Ms. Nia Hauck','marlon94@example.net','$2y$10$rpoMdFsmHrtKpcMbWQ.EGODCF3L2l1Ca0cnXTs3lflLVS5bCX7VRS','customers/2.jpg',NULL,'+12698949478',NULL,'2021-07-02 21:02:34','2021-07-02 21:02:34','2021-07-03 04:02:34',NULL),(4,'Kade Senger','otto.runte@example.com','$2y$10$XuVvL3bHM1j3eSRMuVnnt..2DHKNSBc5IN4nd1YsRwspITiyeMfRi','customers/3.jpg',NULL,'+17435929377',NULL,'2021-07-02 21:02:35','2021-07-02 21:02:35','2021-07-03 04:02:35',NULL),(5,'Rosendo Casper','magnus.quigley@example.net','$2y$10$EC.b/lDviW9YO5sdQ0BZJ.CkWaa5/n9JP.sJIYhUyx/EACi5iyDN.','customers/4.jpg',NULL,'+17579865193',NULL,'2021-07-02 21:02:35','2021-07-02 21:02:35','2021-07-03 04:02:35',NULL),(6,'Mr. Gerhard Sanford','rod.mertz@example.net','$2y$10$abKSQ5gFM3xY8s3kSvktje7ni4g4hAVejvnzpVoF2wYfJjfRWcpNS','customers/5.jpg',NULL,'+17195941730',NULL,'2021-07-02 21:02:35','2021-07-02 21:02:35','2021-07-03 04:02:35',NULL),(7,'Prof. Unique Lehner','tohara@example.org','$2y$10$RILXixlHH0SCuJdJUkj3a.ISV9EijHd9ZSnZ4RAjYVrCHHarixmia','customers/6.jpg',NULL,'+12529546538',NULL,'2021-07-02 21:02:36','2021-07-02 21:02:36','2021-07-03 04:02:36',NULL),(8,'Mr. Everett Harvey PhD','bahringer.bernice@example.net','$2y$10$TOjVoo40NoPBDWPqrZmfxePJYgx8Nf1LqsPwLceMs7Jwkx/hy356.','customers/7.jpg',NULL,'+19136302158',NULL,'2021-07-02 21:02:36','2021-07-02 21:02:36','2021-07-03 04:02:36',NULL),(9,'Mason Anderson','atillman@example.org','$2y$10$A2ITWnPKyuYqrym2L4sUCOdzbvBMg8Ase08w5RKVIIOKjTF9OxxSC','customers/8.jpg',NULL,'+16780340467',NULL,'2021-07-02 21:02:36','2021-07-02 21:02:36','2021-07-03 04:02:36',NULL),(10,'Hattie Crist','archibald.legros@example.org','$2y$10$mlRsWpg0EBm7egQHFBisvOHwgAiNOltf.u.5bKfVcGA6D5LF0ncO6','customers/9.jpg',NULL,'+16461378736',NULL,'2021-07-02 21:02:36','2021-07-02 21:02:36','2021-07-03 04:02:36',NULL),(11,'Gino Feest','wschultz@example.org','$2y$10$u6m3W6uTWYrmiOy.p6o1F.qpL9Gi8.SnQs2vfSOAshpssxphRpwv6','customers/10.jpg',NULL,'+15203771648',NULL,'2021-07-02 21:02:37','2021-07-02 21:02:37','2021-07-03 04:02:37',NULL);
/*!40000 ALTER TABLE `ec_customers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_discount_customers`
--

DROP TABLE IF EXISTS `ec_discount_customers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_discount_customers` (
  `discount_id` int(10) unsigned NOT NULL,
  `customer_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`discount_id`,`customer_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_discount_customers`
--

LOCK TABLES `ec_discount_customers` WRITE;
/*!40000 ALTER TABLE `ec_discount_customers` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_discount_customers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_discount_product_collections`
--

DROP TABLE IF EXISTS `ec_discount_product_collections`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_discount_product_collections` (
  `discount_id` int(10) unsigned NOT NULL,
  `product_collection_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`discount_id`,`product_collection_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_discount_product_collections`
--

LOCK TABLES `ec_discount_product_collections` WRITE;
/*!40000 ALTER TABLE `ec_discount_product_collections` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_discount_product_collections` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_discount_products`
--

DROP TABLE IF EXISTS `ec_discount_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_discount_products` (
  `discount_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`discount_id`,`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_discount_products`
--

LOCK TABLES `ec_discount_products` WRITE;
/*!40000 ALTER TABLE `ec_discount_products` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_discount_products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_discounts`
--

DROP TABLE IF EXISTS `ec_discounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_discounts` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `start_date` datetime DEFAULT NULL,
  `end_date` datetime DEFAULT NULL,
  `quantity` int(11) DEFAULT NULL,
  `total_used` int(10) unsigned NOT NULL DEFAULT '0',
  `value` double DEFAULT NULL,
  `type` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT 'coupon',
  `can_use_with_promotion` tinyint(1) NOT NULL DEFAULT '0',
  `discount_on` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `product_quantity` int(10) unsigned DEFAULT NULL,
  `type_option` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'amount',
  `target` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'all-orders',
  `min_order_price` decimal(15,2) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `ec_discounts_code_unique` (`code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_discounts`
--

LOCK TABLES `ec_discounts` WRITE;
/*!40000 ALTER TABLE `ec_discounts` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_discounts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_flash_sale_products`
--

DROP TABLE IF EXISTS `ec_flash_sale_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_flash_sale_products` (
  `flash_sale_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `price` double unsigned DEFAULT NULL,
  `quantity` int(10) unsigned DEFAULT NULL,
  `sold` int(10) unsigned NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_flash_sale_products`
--

LOCK TABLES `ec_flash_sale_products` WRITE;
/*!40000 ALTER TABLE `ec_flash_sale_products` DISABLE KEYS */;
INSERT INTO `ec_flash_sale_products` VALUES (1,105,28.62,15,1),(2,90,31.995,9,5),(3,52,85.8,9,2);
/*!40000 ALTER TABLE `ec_flash_sale_products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_flash_sales`
--

DROP TABLE IF EXISTS `ec_flash_sales`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_flash_sales` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `end_date` datetime NOT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_flash_sales`
--

LOCK TABLES `ec_flash_sales` WRITE;
/*!40000 ALTER TABLE `ec_flash_sales` DISABLE KEYS */;
INSERT INTO `ec_flash_sales` VALUES (1,'Winter Sale 1','2021-07-23 00:00:00','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(2,'Winter Sale 2','2021-08-19 00:00:00','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(3,'Winter Sale 3','2021-08-22 00:00:00','published','2021-07-02 21:03:24','2021-07-02 21:03:24');
/*!40000 ALTER TABLE `ec_flash_sales` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_grouped_products`
--

DROP TABLE IF EXISTS `ec_grouped_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_grouped_products` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `parent_product_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `fixed_qty` int(11) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_grouped_products`
--

LOCK TABLES `ec_grouped_products` WRITE;
/*!40000 ALTER TABLE `ec_grouped_products` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_grouped_products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_order_addresses`
--

DROP TABLE IF EXISTS `ec_order_addresses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_order_addresses` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `state` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `city` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order_id` int(10) unsigned NOT NULL,
  `zip_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_order_addresses`
--

LOCK TABLES `ec_order_addresses` WRITE;
/*!40000 ALTER TABLE `ec_order_addresses` DISABLE KEYS */;
INSERT INTO `ec_order_addresses` VALUES (1,'Mason Anderson','+14708554768','atillman@example.org','SH','Mississippi','Raleighport','894 Brayan Keys Suite 015',1,'08157-9871'),(2,'Hattie Crist','+18572615328','archibald.legros@example.org','CO','Utah','Ednaside','94831 Ericka Circle Suite 382',2,'06943'),(3,'Prof. Unique Lehner','+19128341528','tohara@example.org','RE','Georgia','Camillafurt','9086 Kutch Burg Suite 559',3,'90995-1999'),(4,'Mr. Gerhard Sanford','+19731127390','rod.mertz@example.net','FM','Arkansas','Lake Murlmouth','21371 Addie Drive Apt. 587',4,'69384-7852'),(5,'Prof. Unique Lehner','+19128341528','tohara@example.org','RE','Georgia','Camillafurt','9086 Kutch Burg Suite 559',5,'90995-1999'),(6,'Kade Senger','+17541662003','otto.runte@example.com','SV','South Carolina','South Misty','956 Mayert Orchard Apt. 650',6,'70114-1144'),(7,'Kade Senger','+17541662003','otto.runte@example.com','SV','South Carolina','South Misty','956 Mayert Orchard Apt. 650',7,'70114-1144'),(8,'Mrs. Eldridge Blick','+16785915500','cora83@example.com','NF','Massachusetts','North Chanel','454 Gerhold Falls',8,'79996-0341'),(9,'Ms. Nia Hauck','+12235541362','marlon94@example.net','BA','Iowa','East Kaseybury','650 Wolff Estates',9,'69355'),(10,'Rosendo Casper','+15341388658','magnus.quigley@example.net','NF','Georgia','East Malcolmfort','1676 Glennie Ridge',10,'65433'),(11,'Mr. Everett Harvey PhD','+18185966737','bahringer.bernice@example.net','FK','Hawaii','Baumbachland','9713 Hartmann Cove',11,'17388-9390'),(12,'Kade Senger','+17541662003','otto.runte@example.com','SV','South Carolina','South Misty','956 Mayert Orchard Apt. 650',12,'70114-1144'),(13,'Prof. Unique Lehner','+19128341528','tohara@example.org','RE','Georgia','Camillafurt','9086 Kutch Burg Suite 559',13,'90995-1999'),(14,'Ms. Nia Hauck','+12235541362','marlon94@example.net','BA','Iowa','East Kaseybury','650 Wolff Estates',14,'69355'),(15,'John Smith','+19725795880','john.smith@botble.com','FI','New Mexico','Port Joanny','88894 Skiles Cliff Apt. 302',15,'86509'),(16,'Prof. Unique Lehner','+19128341528','tohara@example.org','RE','Georgia','Camillafurt','9086 Kutch Burg Suite 559',16,'90995-1999'),(17,'John Smith','+19725795880','john.smith@botble.com','FI','New Mexico','Port Joanny','88894 Skiles Cliff Apt. 302',17,'86509'),(18,'Hattie Crist','+18572615328','archibald.legros@example.org','CO','Utah','Ednaside','94831 Ericka Circle Suite 382',18,'06943'),(19,'John Smith','+19725795880','john.smith@botble.com','FI','New Mexico','Port Joanny','88894 Skiles Cliff Apt. 302',19,'86509'),(20,'Mr. Gerhard Sanford','+19731127390','rod.mertz@example.net','FM','Arkansas','Lake Murlmouth','21371 Addie Drive Apt. 587',20,'69384-7852');
/*!40000 ALTER TABLE `ec_order_addresses` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_order_histories`
--

DROP TABLE IF EXISTS `ec_order_histories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_order_histories` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `order_id` int(10) unsigned NOT NULL,
  `extras` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=94 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_order_histories`
--

LOCK TABLES `ec_order_histories` WRITE;
/*!40000 ALTER TABLE `ec_order_histories` DISABLE KEYS */;
INSERT INTO `ec_order_histories` VALUES (1,'create_order_from_seeder','Order is created from the checkout page',NULL,1,NULL,'2021-06-29 13:03:25','2021-06-29 13:03:25'),(2,'confirm_order','Order was verified by %user_name%',0,1,NULL,'2021-06-29 13:03:25','2021-06-29 13:03:25'),(3,'confirm_payment','Payment was confirmed (amount $187.28) by %user_name%',0,1,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(4,'create_shipment','Created shipment for order',0,1,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(5,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,1,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(6,'create_order_from_seeder','Order is created from the checkout page',NULL,2,NULL,'2021-07-01 07:03:25','2021-07-01 07:03:25'),(7,'confirm_order','Order was verified by %user_name%',0,2,NULL,'2021-07-01 07:03:25','2021-07-01 07:03:25'),(8,'confirm_payment','Payment was confirmed (amount $597.20) by %user_name%',0,2,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(9,'create_shipment','Created shipment for order',0,2,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(10,'create_order_from_seeder','Order is created from the checkout page',NULL,3,NULL,'2021-06-25 09:03:25','2021-06-25 09:03:25'),(11,'confirm_order','Order was verified by %user_name%',0,3,NULL,'2021-06-25 09:03:25','2021-06-25 09:03:25'),(12,'confirm_payment','Payment was confirmed (amount $214.50) by %user_name%',0,3,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(13,'create_shipment','Created shipment for order',0,3,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(14,'create_order_from_seeder','Order is created from the checkout page',NULL,4,NULL,'2021-07-01 11:03:25','2021-07-01 11:03:25'),(15,'confirm_order','Order was verified by %user_name%',0,4,NULL,'2021-07-01 11:03:25','2021-07-01 11:03:25'),(16,'confirm_payment','Payment was confirmed (amount $330.40) by %user_name%',0,4,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(17,'create_shipment','Created shipment for order',0,4,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(18,'create_order_from_seeder','Order is created from the checkout page',NULL,5,NULL,'2021-07-01 13:03:25','2021-07-01 13:03:25'),(19,'confirm_order','Order was verified by %user_name%',0,5,NULL,'2021-07-01 13:03:25','2021-07-01 13:03:25'),(20,'create_shipment','Created shipment for order',0,5,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(21,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,5,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(22,'create_order_from_seeder','Order is created from the checkout page',NULL,6,NULL,'2021-06-27 21:03:25','2021-06-27 21:03:25'),(23,'confirm_order','Order was verified by %user_name%',0,6,NULL,'2021-06-27 21:03:25','2021-06-27 21:03:25'),(24,'create_shipment','Created shipment for order',0,6,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(25,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,6,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(26,'create_order_from_seeder','Order is created from the checkout page',NULL,7,NULL,'2021-06-28 05:03:25','2021-06-28 05:03:25'),(27,'confirm_order','Order was verified by %user_name%',0,7,NULL,'2021-06-28 05:03:25','2021-06-28 05:03:25'),(28,'confirm_payment','Payment was confirmed (amount $1,075.40) by %user_name%',0,7,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(29,'create_shipment','Created shipment for order',0,7,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(30,'create_order_from_seeder','Order is created from the checkout page',NULL,8,NULL,'2021-07-01 19:03:25','2021-07-01 19:03:25'),(31,'confirm_order','Order was verified by %user_name%',0,8,NULL,'2021-07-01 19:03:25','2021-07-01 19:03:25'),(32,'confirm_payment','Payment was confirmed (amount $430.50) by %user_name%',0,8,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(33,'create_shipment','Created shipment for order',0,8,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(34,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,8,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(35,'create_order_from_seeder','Order is created from the checkout page',NULL,9,NULL,'2021-06-27 21:03:25','2021-06-27 21:03:25'),(36,'confirm_order','Order was verified by %user_name%',0,9,NULL,'2021-06-27 21:03:25','2021-06-27 21:03:25'),(37,'confirm_payment','Payment was confirmed (amount $435.80) by %user_name%',0,9,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(38,'create_shipment','Created shipment for order',0,9,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(39,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,9,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(40,'create_order_from_seeder','Order is created from the checkout page',NULL,10,NULL,'2021-07-01 01:03:25','2021-07-01 01:03:25'),(41,'confirm_order','Order was verified by %user_name%',0,10,NULL,'2021-07-01 01:03:25','2021-07-01 01:03:25'),(42,'confirm_payment','Payment was confirmed (amount $658.90) by %user_name%',0,10,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(43,'create_shipment','Created shipment for order',0,10,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(44,'create_order_from_seeder','Order is created from the checkout page',NULL,11,NULL,'2021-06-25 09:03:25','2021-06-25 09:03:25'),(45,'confirm_order','Order was verified by %user_name%',0,11,NULL,'2021-06-25 09:03:25','2021-06-25 09:03:25'),(46,'confirm_payment','Payment was confirmed (amount $655.60) by %user_name%',0,11,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(47,'create_shipment','Created shipment for order',0,11,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(48,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,11,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(49,'create_order_from_seeder','Order is created from the checkout page',NULL,12,NULL,'2021-06-26 03:03:25','2021-06-26 03:03:25'),(50,'confirm_order','Order was verified by %user_name%',0,12,NULL,'2021-06-26 03:03:25','2021-06-26 03:03:25'),(51,'confirm_payment','Payment was confirmed (amount $1,009.30) by %user_name%',0,12,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(52,'create_shipment','Created shipment for order',0,12,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(53,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,12,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(54,'create_order_from_seeder','Order is created from the checkout page',NULL,13,NULL,'2021-06-28 05:03:25','2021-06-28 05:03:25'),(55,'confirm_order','Order was verified by %user_name%',0,13,NULL,'2021-06-28 05:03:25','2021-06-28 05:03:25'),(56,'confirm_payment','Payment was confirmed (amount $749.00) by %user_name%',0,13,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(57,'create_shipment','Created shipment for order',0,13,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(58,'create_order_from_seeder','Order is created from the checkout page',NULL,14,NULL,'2021-07-02 07:03:25','2021-07-02 07:03:25'),(59,'confirm_order','Order was verified by %user_name%',0,14,NULL,'2021-07-02 07:03:25','2021-07-02 07:03:25'),(60,'create_shipment','Created shipment for order',0,14,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(61,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,14,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(62,'create_order_from_seeder','Order is created from the checkout page',NULL,15,NULL,'2021-06-28 21:03:25','2021-06-28 21:03:25'),(63,'confirm_order','Order was verified by %user_name%',0,15,NULL,'2021-06-28 21:03:25','2021-06-28 21:03:25'),(64,'create_shipment','Created shipment for order',0,15,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(65,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,15,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(66,'create_order_from_seeder','Order is created from the checkout page',NULL,16,NULL,'2021-07-01 05:03:25','2021-07-01 05:03:25'),(67,'confirm_order','Order was verified by %user_name%',0,16,NULL,'2021-07-01 05:03:25','2021-07-01 05:03:25'),(68,'confirm_payment','Payment was confirmed (amount $1,027.10) by %user_name%',0,16,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(69,'create_shipment','Created shipment for order',0,16,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(70,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,16,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(71,'create_order_from_seeder','Order is created from the checkout page',NULL,17,NULL,'2021-07-01 05:03:25','2021-07-01 05:03:25'),(72,'confirm_order','Order was verified by %user_name%',0,17,NULL,'2021-07-01 05:03:25','2021-07-01 05:03:25'),(73,'confirm_payment','Payment was confirmed (amount $662.78) by %user_name%',0,17,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(74,'create_shipment','Created shipment for order',0,17,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(75,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,17,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(76,'create_order_from_seeder','Order is created from the checkout page',NULL,18,NULL,'2021-06-30 15:03:25','2021-06-30 15:03:25'),(77,'confirm_order','Order was verified by %user_name%',0,18,NULL,'2021-06-30 15:03:25','2021-06-30 15:03:25'),(78,'create_shipment','Created shipment for order',0,18,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(79,'create_order_from_seeder','Order is created from the checkout page',NULL,19,NULL,'2021-07-02 01:03:25','2021-07-02 01:03:25'),(80,'confirm_order','Order was verified by %user_name%',0,19,NULL,'2021-07-02 01:03:25','2021-07-02 01:03:25'),(81,'confirm_payment','Payment was confirmed (amount $228.25) by %user_name%',0,19,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(82,'create_shipment','Created shipment for order',0,19,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(83,'create_order_from_seeder','Order is created from the checkout page',NULL,20,NULL,'2021-07-02 19:03:25','2021-07-02 19:03:25'),(84,'confirm_order','Order was verified by %user_name%',0,20,NULL,'2021-07-02 19:03:25','2021-07-02 19:03:25'),(85,'create_shipment','Created shipment for order',0,20,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(86,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,20,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(87,'update_status','Order confirmed by %user_name%',0,1,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(88,'update_status','Order confirmed by %user_name%',0,8,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(89,'update_status','Order confirmed by %user_name%',0,9,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(90,'update_status','Order confirmed by %user_name%',0,11,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(91,'update_status','Order confirmed by %user_name%',0,12,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(92,'update_status','Order confirmed by %user_name%',0,16,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(93,'update_status','Order confirmed by %user_name%',0,17,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25');
/*!40000 ALTER TABLE `ec_order_histories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_order_product`
--

DROP TABLE IF EXISTS `ec_order_product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_order_product` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` int(10) unsigned NOT NULL,
  `qty` int(11) NOT NULL,
  `price` decimal(15,2) NOT NULL,
  `tax_amount` decimal(15,2) NOT NULL,
  `options` text COLLATE utf8mb4_unicode_ci,
  `product_id` int(10) unsigned DEFAULT NULL,
  `product_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `weight` double(8,2) DEFAULT '0.00',
  `restock_quantity` int(10) unsigned DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_order_product`
--

LOCK TABLES `ec_order_product` WRITE;
/*!40000 ALTER TABLE `ec_order_product` DISABLE KEYS */;
INSERT INTO `ec_order_product` VALUES (1,1,1,90.00,9.00,'[]',40,'Chikie - Bluetooth Speaker',861.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(2,1,1,80.25,8.03,'[]',88,'Dual Camera 20MP',741.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(3,2,3,90.00,9.00,'[]',39,'Chikie - Bluetooth Speaker',2583.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(4,2,2,122.00,12.20,'[]',84,'Phillips Mouse',1374.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(5,2,3,20.00,2.00,'[]',95,'Beat Headphone',2091.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(6,3,1,90.00,9.00,'[]',39,'Chikie - Bluetooth Speaker',861.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(7,3,2,55.00,5.50,'[]',46,'Camera Samsung SS-24',1398.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(8,4,1,110.00,11.00,'[]',52,'Macbook Pro 2015',761.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(9,4,2,20.00,2.00,'[]',95,'Beat Headphone',1394.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(10,4,3,54.00,5.40,'[]',104,'Samsung Smart TV',1815.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(11,5,3,374.00,37.40,'[]',36,'Boxed - Bluetooth Headphone',2484.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(12,5,3,123.00,12.30,'[]',63,'Apple Keyboard',2343.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(13,5,1,110.00,11.00,'[]',71,'Black Smart Watches',865.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(14,5,2,121.00,12.10,'[]',74,'Leather Watch Band Serial 3',1262.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(15,6,3,330.00,33.00,'[]',34,'Headphone Ultra Bass',1578.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(16,6,1,111.00,11.10,'[]',47,'Leather Watch Band',583.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(17,7,3,120.00,12.00,'[]',59,'Macbook Pro 13 inch',1695.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(18,7,3,122.00,12.20,'[]',70,'Cool Smart Watches',2535.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(19,7,2,125.00,12.50,'[]',76,'Macbook Pro 2015 13 inch',1462.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(20,7,1,57.00,5.70,'[]',98,'Red & Black Headphone',610.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(21,8,2,90.00,9.00,'[]',39,'Chikie - Bluetooth Speaker',1722.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(22,8,2,115.00,11.50,'[]',80,'Black Glasses',1388.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(23,9,2,121.00,12.10,'[]',74,'Leather Watch Band Serial 3',1262.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(24,9,3,20.00,2.00,'[]',94,'Beat Headphone',2091.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(25,9,2,57.00,5.70,'[]',96,'Red & Black Headphone',1220.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(26,10,1,431.00,43.10,'[]',33,'Smart Home Speaker',771.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(27,10,1,55.00,5.50,'[]',45,'Camera Samsung SS-24',699.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(28,10,1,113.00,11.30,'[]',51,'Apple iPhone 13 Plus',572.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(29,11,1,111.00,11.10,'[]',48,'Leather Watch Band',583.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(30,11,3,110.00,11.00,'[]',66,'Hand playstation',1530.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(31,11,1,121.00,12.10,'[]',74,'Leather Watch Band Serial 3',631.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(32,11,1,54.00,5.40,'[]',101,'Audio Equipment',801.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(33,12,3,125.00,12.50,'[]',76,'Macbook Pro 2015 13 inch',2193.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(34,12,3,122.00,12.20,'[]',82,'Phillips Mouse',2061.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(35,12,2,116.00,11.60,'[]',102,'Smart Televisions',1050.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(36,13,1,111.00,11.10,'[]',64,'MacSafe 80W',646.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(37,13,2,110.00,11.00,'[]',67,'Hand playstation',1020.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(38,13,1,127.00,12.70,'[]',69,'Apple Airpods Serial 3',724.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(39,13,2,122.00,12.20,'[]',82,'Phillips Mouse',1374.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(40,14,2,115.00,11.50,'[]',81,'Black Glasses',1388.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(41,14,2,40.50,4.05,'[]',91,'Smart Watches',1544.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(42,15,3,110.00,11.00,'[]',72,'Black Smart Watches',2595.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(43,15,3,119.00,11.90,'[]',77,'Historic Alarm Clock',2508.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(44,15,3,115.00,11.50,'[]',81,'Black Glasses',2082.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(45,15,1,116.00,11.60,'[]',102,'Smart Televisions',525.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(46,16,1,431.00,43.10,'[]',32,'Smart Home Speaker',771.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(47,16,3,90.00,9.00,'[]',39,'Chikie - Bluetooth Speaker',2583.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(48,16,2,120.00,12.00,'[]',59,'Macbook Pro 13 inch',1130.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(49,16,1,20.00,2.00,'[]',95,'Beat Headphone',697.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(50,17,2,110.00,11.00,'[]',68,'Hand playstation',1020.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(51,17,1,110.00,11.00,'[]',71,'Black Smart Watches',865.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(52,17,3,80.25,8.03,'[]',87,'Dual Camera 20MP',2223.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(53,17,3,20.00,2.00,'[]',93,'Beat Headphone',2091.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(54,18,3,90.00,9.00,'[]',39,'Chikie - Bluetooth Speaker',2583.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(55,18,3,110.00,11.00,'[]',71,'Black Smart Watches',2595.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(56,18,1,122.00,12.20,'[]',83,'Phillips Mouse',687.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(57,18,3,20.00,2.00,'[]',95,'Beat Headphone',2091.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(58,19,1,46.00,4.60,'[]',42,'Camera Hikvision HK-35VS8',896.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(59,19,1,121.00,12.10,'[]',75,'Leather Watch Band Serial 3',631.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(60,19,1,40.50,4.05,'[]',91,'Smart Watches',772.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(61,20,2,55.00,5.50,'[]',46,'Camera Samsung SS-24',1398.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(62,20,2,110.00,11.00,'[]',67,'Hand playstation',1020.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25');
/*!40000 ALTER TABLE `ec_order_product` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_orders`
--

DROP TABLE IF EXISTS `ec_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_orders` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `shipping_option` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `shipping_method` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default',
  `status` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `amount` decimal(15,2) NOT NULL,
  `currency_id` int(10) unsigned DEFAULT NULL,
  `tax_amount` decimal(15,2) DEFAULT NULL,
  `shipping_amount` decimal(15,2) DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_ci,
  `coupon_code` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `discount_amount` decimal(15,2) DEFAULT NULL,
  `sub_total` decimal(15,2) NOT NULL,
  `is_confirmed` tinyint(1) NOT NULL DEFAULT '0',
  `discount_description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_finished` tinyint(1) DEFAULT '1',
  `token` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payment_id` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_orders`
--

LOCK TABLES `ec_orders` WRITE;
/*!40000 ALTER TABLE `ec_orders` DISABLE KEYS */;
INSERT INTO `ec_orders` VALUES (1,9,'1','default','completed',187.28,1,17.03,0.00,NULL,NULL,0.00,170.25,1,NULL,1,'aeVZ4KoR9J0cniihPoHJMMFs5wR7I',1,'2021-06-29 13:03:25','2021-07-02 21:03:25'),(2,10,'1','default','pending',597.20,1,23.20,0.00,NULL,NULL,0.00,574.00,1,NULL,1,'7OQDzMy0uNm6DGX6s2m7Ri8ywK1nZ',2,'2021-07-01 07:03:25','2021-07-02 21:03:25'),(3,7,'1','default','pending',214.50,1,14.50,0.00,NULL,NULL,0.00,200.00,1,NULL,1,'4JISyPJzlCjBjhgMArc4dSX9e6qll',3,'2021-06-25 09:03:25','2021-07-02 21:03:25'),(4,6,'1','default','pending',330.40,1,18.40,0.00,NULL,NULL,0.00,312.00,1,NULL,1,'rDsaRbUSryroInW4dV0cvNtbhjVWL',4,'2021-07-01 11:03:25','2021-07-02 21:03:25'),(5,7,'1','default','pending',1915.80,1,72.80,0.00,NULL,NULL,0.00,1843.00,1,NULL,1,'41d5yhITLstkEJrIrtpoyR87gkpRh',5,'2021-07-01 13:03:25','2021-07-02 21:03:25'),(6,4,'1','default','pending',1145.10,1,44.10,0.00,NULL,NULL,0.00,1101.00,1,NULL,1,'2A7L52lilXzM2nJxFBIS9VmnXC3Vm',6,'2021-06-27 21:03:25','2021-07-02 21:03:25'),(7,4,'1','default','pending',1075.40,1,42.40,0.00,NULL,NULL,0.00,1033.00,1,NULL,1,'6DHPd0GCyuc8FrNPc4w7jT9fLRsLX',7,'2021-06-28 05:03:25','2021-07-02 21:03:25'),(8,2,'1','default','completed',430.50,1,20.50,0.00,NULL,NULL,0.00,410.00,1,NULL,1,'zQk4eRr0iKJsFSv9AZ7adPvKPAbvf',8,'2021-07-01 19:03:25','2021-07-02 21:03:25'),(9,3,'1','default','completed',435.80,1,19.80,0.00,NULL,NULL,0.00,416.00,1,NULL,1,'ZdODniK8VdeF7L9evzAHR1r4jy8G0',9,'2021-06-27 21:03:25','2021-07-02 21:03:25'),(10,5,'1','default','pending',658.90,1,59.90,0.00,NULL,NULL,0.00,599.00,1,NULL,1,'EM2sEvWo4UzFKiRx2EMskCoL8mZCM',10,'2021-07-01 01:03:25','2021-07-02 21:03:25'),(11,8,'1','default','completed',655.60,1,39.60,0.00,NULL,NULL,0.00,616.00,1,NULL,1,'tr9R4t49UO1A0AWwrWQwcfrclcEE0',11,'2021-06-25 09:03:25','2021-07-02 21:03:25'),(12,4,'1','default','completed',1009.30,1,36.30,0.00,NULL,NULL,0.00,973.00,1,NULL,1,'x18iq43Q5Zm6PRNdNxHTBltBxUrBq',12,'2021-06-26 03:03:25','2021-07-02 21:03:25'),(13,7,'1','default','pending',749.00,1,47.00,0.00,NULL,NULL,0.00,702.00,1,NULL,1,'NWMT54ptm4H448seeAyiRl0v6P6qv',13,'2021-06-28 05:03:25','2021-07-02 21:03:25'),(14,3,'1','default','pending',326.55,1,15.55,0.00,NULL,NULL,0.00,311.00,1,NULL,1,'8VuB5zKyGMWSWtrpSQe4srVumjyIa',14,'2021-07-02 07:03:25','2021-07-02 21:03:25'),(15,1,'1','default','pending',1194.00,1,46.00,0.00,NULL,NULL,0.00,1148.00,1,NULL,1,'49KnnNIb2SGDjCeFXfCrcU5SwhF58',15,'2021-06-28 21:03:25','2021-07-02 21:03:25'),(16,7,'1','default','completed',1027.10,1,66.10,0.00,NULL,NULL,0.00,961.00,1,NULL,1,'whOSklEYzz4XRNe5Duk3RcK98JNiM',16,'2021-07-01 05:03:25','2021-07-02 21:03:25'),(17,1,'1','default','completed',662.78,1,32.03,0.00,NULL,NULL,0.00,630.75,1,NULL,1,'dM8M8M400YSLqjQNclnknjG7S78Ml',17,'2021-07-01 05:03:25','2021-07-02 21:03:25'),(18,10,'1','default','pending',816.20,1,34.20,0.00,NULL,NULL,0.00,782.00,1,NULL,1,'oq6NxzCr8vJWwcdQck4QE1Zv94b8T',18,'2021-06-30 15:03:25','2021-07-02 21:03:25'),(19,1,'1','default','pending',228.25,1,20.75,0.00,NULL,NULL,0.00,207.50,1,NULL,1,'7hayinIUJjAfDc0fQh7TgcpLnGDi4',19,'2021-07-02 01:03:25','2021-07-02 21:03:25'),(20,6,'1','default','pending',346.50,1,16.50,0.00,NULL,NULL,0.00,330.00,1,NULL,1,'43l4nhboJmFf1MGGo2SpEtAH1n9l0',20,'2021-07-02 19:03:25','2021-07-02 21:03:25');
/*!40000 ALTER TABLE `ec_orders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_product_attribute_sets`
--

DROP TABLE IF EXISTS `ec_product_attribute_sets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_product_attribute_sets` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `display_layout` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'swatch_dropdown',
  `is_searchable` tinyint(3) unsigned NOT NULL DEFAULT '1',
  `is_comparable` tinyint(3) unsigned NOT NULL DEFAULT '1',
  `is_use_in_product_listing` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `order` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_product_attribute_sets`
--

LOCK TABLES `ec_product_attribute_sets` WRITE;
/*!40000 ALTER TABLE `ec_product_attribute_sets` DISABLE KEYS */;
INSERT INTO `ec_product_attribute_sets` VALUES (1,'Color','color','visual',1,1,1,'published',0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(2,'Size','size','text',1,1,1,'published',1,'2021-07-02 21:02:32','2021-07-02 21:02:32');
/*!40000 ALTER TABLE `ec_product_attribute_sets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_product_attributes`
--

DROP TABLE IF EXISTS `ec_product_attributes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_product_attributes` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_set_id` int(10) unsigned NOT NULL,
  `title` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `color` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_default` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `order` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_product_attributes`
--

LOCK TABLES `ec_product_attributes` WRITE;
/*!40000 ALTER TABLE `ec_product_attributes` DISABLE KEYS */;
INSERT INTO `ec_product_attributes` VALUES (1,1,'Green','green','#5FB7D4',NULL,1,1,'published','2021-07-02 21:02:32','2021-07-02 21:02:32'),(2,1,'Blue','blue','#333333',NULL,0,2,'published','2021-07-02 21:02:32','2021-07-02 21:02:32'),(3,1,'Red','red','#DA323F',NULL,0,3,'published','2021-07-02 21:02:32','2021-07-02 21:02:32'),(4,1,'Black','back','#2F366C',NULL,0,4,'published','2021-07-02 21:02:32','2021-07-02 21:02:32'),(5,1,'Brown','brown','#87554B',NULL,0,5,'published','2021-07-02 21:02:32','2021-07-02 21:02:32'),(6,2,'S','s',NULL,NULL,1,1,'published','2021-07-02 21:02:32','2021-07-02 21:02:32'),(7,2,'M','m',NULL,NULL,1,2,'published','2021-07-02 21:02:32','2021-07-02 21:02:32'),(8,2,'L','l',NULL,NULL,1,3,'published','2021-07-02 21:02:32','2021-07-02 21:02:32'),(9,2,'XL','xl',NULL,NULL,1,4,'published','2021-07-02 21:02:32','2021-07-02 21:02:32'),(10,2,'XXL','xxl',NULL,NULL,1,5,'published','2021-07-02 21:02:32','2021-07-02 21:02:32');
/*!40000 ALTER TABLE `ec_product_attributes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_product_categories`
--

DROP TABLE IF EXISTS `ec_product_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_product_categories` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent_id` int(10) unsigned DEFAULT '0',
  `description` mediumtext COLLATE utf8mb4_unicode_ci,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `order` int(10) unsigned NOT NULL DEFAULT '0',
  `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_featured` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_product_categories`
--

LOCK TABLES `ec_product_categories` WRITE;
/*!40000 ALTER TABLE `ec_product_categories` DISABLE KEYS */;
INSERT INTO `ec_product_categories` VALUES (1,'Television',0,NULL,'published',0,'product-categories/p-1.png',1,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(2,'Mobile',0,NULL,'published',1,'product-categories/p-2.png',1,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(3,'Headphone',0,NULL,'published',2,'product-categories/p-3.png',1,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(4,'Watches',0,NULL,'published',3,'product-categories/p-4.png',1,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(5,'Game',0,NULL,'published',4,'product-categories/p-5.png',1,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(6,'Camera',0,NULL,'published',5,'product-categories/p-6.png',1,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(7,'Audio',0,NULL,'published',6,'product-categories/p-7.png',1,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(8,'Mobile & Tablet',0,NULL,'published',7,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(9,'Accessories',0,NULL,'published',8,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(10,'Home Audio & Theater',0,NULL,'published',9,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(11,'Tv & Smart Box',0,NULL,'published',10,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(12,'Printer',0,NULL,'published',11,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(13,'Computer',0,NULL,'published',12,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(14,'Fax Machine',0,NULL,'published',13,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(15,'Mouse',0,NULL,'published',14,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(16,'Quas fuga dicta qui est.',1,NULL,'published',0,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(17,'Suscipit et maxime in.',1,NULL,'published',0,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(18,'Sed sit ipsa saepe quia.',1,NULL,'published',0,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(19,'Eos est aut cum qui.',1,NULL,'published',0,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(20,'Rem vel sit ut autem.',1,NULL,'published',0,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(21,'Libero et alias eius et.',2,NULL,'published',0,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(22,'Magnam iste a possimus.',2,NULL,'published',0,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(23,'Quo id esse quia et.',2,NULL,'published',0,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(24,'Et alias enim suscipit.',2,NULL,'published',0,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(25,'Rerum quae nam ut quo.',2,NULL,'published',0,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(26,'Quia id sint ad rem.',3,NULL,'published',0,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(27,'Amet eos ut sunt ea.',3,NULL,'published',0,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(28,'Dicta quia expedita ut.',3,NULL,'published',0,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(29,'Sint aut nihil ducimus.',3,NULL,'published',0,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(30,'Dolores dolore quod in.',3,NULL,'published',0,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(31,'Quis id veniam qui hic.',4,NULL,'published',0,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(32,'Cum velit vel aut.',4,NULL,'published',0,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(33,'Expedita sit eos qui.',4,NULL,'published',0,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(34,'Illum impedit et odio.',4,NULL,'published',0,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32'),(35,'Sed et qui sint.',4,NULL,'published',0,NULL,0,'2021-07-02 21:02:32','2021-07-02 21:02:32');
/*!40000 ALTER TABLE `ec_product_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_product_category_product`
--

DROP TABLE IF EXISTS `ec_product_category_product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_product_category_product` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `category_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `ec_product_category_product_category_id_index` (`category_id`),
  KEY `ec_product_category_product_product_id_index` (`product_id`)
) ENGINE=InnoDB AUTO_INCREMENT=90 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_product_category_product`
--

LOCK TABLES `ec_product_category_product` WRITE;
/*!40000 ALTER TABLE `ec_product_category_product` DISABLE KEYS */;
INSERT INTO `ec_product_category_product` VALUES (1,1,1),(2,13,1),(3,8,1),(4,3,2),(5,12,2),(6,2,2),(7,7,3),(8,5,3),(9,8,3),(10,1,4),(11,12,4),(12,5,4),(13,4,5),(14,5,5),(15,3,5),(16,11,6),(17,5,6),(18,8,6),(19,6,7),(20,13,7),(21,9,7),(22,7,8),(23,8,8),(24,1,8),(25,2,9),(26,4,9),(27,9,9),(28,7,10),(29,3,10),(30,1,10),(31,4,11),(32,7,11),(33,11,11),(34,2,12),(35,10,12),(36,4,12),(37,13,13),(38,10,13),(39,2,13),(40,9,14),(41,4,14),(42,10,14),(43,6,15),(44,13,15),(45,8,15),(46,2,16),(47,12,16),(48,9,16),(49,2,17),(50,12,17),(51,1,17),(52,3,18),(53,8,18),(54,2,19),(55,5,19),(56,13,19),(57,11,20),(58,12,20),(59,3,20),(60,4,21),(61,6,21),(62,5,22),(63,8,22),(64,3,22),(65,2,23),(66,11,23),(67,7,24),(68,9,24),(69,12,24),(70,6,25),(71,13,25),(72,1,25),(73,5,26),(74,4,26),(75,4,27),(76,2,27),(77,10,27),(78,4,28),(79,10,28),(80,8,28),(81,11,29),(82,14,29),(83,6,29),(84,3,30),(85,2,30),(86,12,30),(87,2,31),(88,5,31),(89,9,31);
/*!40000 ALTER TABLE `ec_product_category_product` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_product_collection_products`
--

DROP TABLE IF EXISTS `ec_product_collection_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_product_collection_products` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `product_collection_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `ec_product_collection_products_product_collection_id_index` (`product_collection_id`),
  KEY `ec_product_collection_products_product_id_index` (`product_id`)
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_product_collection_products`
--

LOCK TABLES `ec_product_collection_products` WRITE;
/*!40000 ALTER TABLE `ec_product_collection_products` DISABLE KEYS */;
INSERT INTO `ec_product_collection_products` VALUES (1,1,1),(2,1,2),(3,2,3),(4,3,4),(5,3,5),(6,1,6),(7,2,7),(8,3,8),(9,3,9),(10,3,10),(11,3,11),(12,1,12),(13,1,13),(14,2,14),(15,3,15),(16,3,16),(17,3,17),(18,1,18),(19,2,19),(20,2,20),(21,2,21),(22,2,22),(23,1,23),(24,1,24),(25,2,25),(26,3,26),(27,1,27),(28,2,28),(29,3,29),(30,3,30),(31,3,31);
/*!40000 ALTER TABLE `ec_product_collection_products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_product_collections`
--

DROP TABLE IF EXISTS `ec_product_collections`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_product_collections` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `is_featured` tinyint(3) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_product_collections`
--

LOCK TABLES `ec_product_collections` WRITE;
/*!40000 ALTER TABLE `ec_product_collections` DISABLE KEYS */;
INSERT INTO `ec_product_collections` VALUES (1,'New Arrival','new-arrival',NULL,NULL,'published','2021-07-02 21:02:32','2021-07-02 21:02:32',0),(2,'Best Sellers','best-sellers',NULL,NULL,'published','2021-07-02 21:02:32','2021-07-02 21:02:32',0),(3,'Special Offer','special-offer',NULL,NULL,'published','2021-07-02 21:02:32','2021-07-02 21:02:32',0);
/*!40000 ALTER TABLE `ec_product_collections` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_product_cross_sale_relations`
--

DROP TABLE IF EXISTS `ec_product_cross_sale_relations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_product_cross_sale_relations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `from_product_id` int(10) unsigned NOT NULL,
  `to_product_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `ec_product_cross_sale_relations_from_product_id_index` (`from_product_id`),
  KEY `ec_product_cross_sale_relations_to_product_id_index` (`to_product_id`)
) ENGINE=InnoDB AUTO_INCREMENT=587 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_product_cross_sale_relations`
--

LOCK TABLES `ec_product_cross_sale_relations` WRITE;
/*!40000 ALTER TABLE `ec_product_cross_sale_relations` DISABLE KEYS */;
INSERT INTO `ec_product_cross_sale_relations` VALUES (233,2,12),(365,19,2),(370,21,3),(383,1,10),(390,3,13),(393,4,1),(394,4,14),(396,4,2),(397,5,1),(406,7,30),(407,8,17),(418,12,4),(452,22,3),(454,22,21),(458,23,5),(464,25,28),(466,26,5),(473,28,1),(479,29,10),(481,30,23),(485,31,10),(488,1,19),(489,1,30),(490,1,20),(491,2,11),(492,2,30),(493,2,3),(494,3,26),(495,3,31),(496,3,28),(497,4,27),(498,5,2),(499,5,9),(500,5,4),(501,6,8),(502,6,12),(503,6,22),(504,6,11),(505,7,29),(506,7,15),(507,7,2),(508,8,21),(509,8,11),(510,8,25),(511,9,6),(512,9,26),(513,9,28),(514,9,17),(515,10,18),(516,10,26),(517,10,23),(518,11,25),(519,11,10),(520,11,1),(521,11,22),(522,12,18),(523,12,17),(524,13,28),(525,13,3),(526,13,11),(527,14,17),(528,14,2),(529,14,6),(530,14,5),(531,15,27),(532,15,28),(533,15,14),(534,15,5),(535,16,31),(536,16,8),(537,16,18),(538,16,2),(539,17,8),(540,17,28),(541,17,23),(542,17,9),(543,18,23),(544,18,5),(545,18,13),(546,18,15),(547,19,15),(548,19,24),(549,19,1),(550,20,8),(551,20,7),(552,20,13),(553,20,22),(554,21,5),(555,21,28),(556,21,19),(557,22,11),(558,22,9),(559,23,31),(560,23,10),(561,23,15),(562,24,20),(563,24,28),(564,24,3),(565,24,26),(566,25,23),(567,25,3),(568,26,14),(569,26,28),(570,26,17),(571,27,16),(572,27,26),(573,27,23),(574,27,1),(575,28,15),(576,28,18),(577,28,11),(578,29,11),(579,29,4),(580,29,3),(581,30,21),(582,30,25),(583,30,15),(584,31,5),(585,31,12),(586,31,22);
/*!40000 ALTER TABLE `ec_product_cross_sale_relations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_product_label_products`
--

DROP TABLE IF EXISTS `ec_product_label_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_product_label_products` (
  `product_label_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`product_label_id`,`product_id`),
  KEY `ec_product_label_products_product_label_id_index` (`product_label_id`),
  KEY `ec_product_label_products_product_id_index` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_product_label_products`
--

LOCK TABLES `ec_product_label_products` WRITE;
/*!40000 ALTER TABLE `ec_product_label_products` DISABLE KEYS */;
INSERT INTO `ec_product_label_products` VALUES (1,12),(1,18),(1,24),(2,9),(2,15),(2,21),(3,3),(3,6),(3,27),(3,30);
/*!40000 ALTER TABLE `ec_product_label_products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_product_labels`
--

DROP TABLE IF EXISTS `ec_product_labels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_product_labels` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `color` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_product_labels`
--

LOCK TABLES `ec_product_labels` WRITE;
/*!40000 ALTER TABLE `ec_product_labels` DISABLE KEYS */;
INSERT INTO `ec_product_labels` VALUES (1,'Hot','#ec2434','published','2021-07-02 21:02:32','2021-07-02 21:02:32'),(2,'New','#00c9a7','published','2021-07-02 21:02:32','2021-07-02 21:02:32'),(3,'Sale','#fe9931','published','2021-07-02 21:02:32','2021-07-02 21:02:32');
/*!40000 ALTER TABLE `ec_product_labels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_product_related_relations`
--

DROP TABLE IF EXISTS `ec_product_related_relations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_product_related_relations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `from_product_id` int(10) unsigned NOT NULL,
  `to_product_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `ec_product_related_relations_from_product_id_index` (`from_product_id`),
  KEY `ec_product_related_relations_to_product_id_index` (`to_product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_product_related_relations`
--

LOCK TABLES `ec_product_related_relations` WRITE;
/*!40000 ALTER TABLE `ec_product_related_relations` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_product_related_relations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_product_tag_product`
--

DROP TABLE IF EXISTS `ec_product_tag_product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_product_tag_product` (
  `product_id` int(10) unsigned NOT NULL,
  `tag_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`product_id`,`tag_id`),
  KEY `ec_product_tag_product_product_id_index` (`product_id`),
  KEY `ec_product_tag_product_tag_id_index` (`tag_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_product_tag_product`
--

LOCK TABLES `ec_product_tag_product` WRITE;
/*!40000 ALTER TABLE `ec_product_tag_product` DISABLE KEYS */;
INSERT INTO `ec_product_tag_product` VALUES (1,2),(1,4),(1,5),(2,2),(2,5),(3,2),(3,4),(3,5),(4,4),(4,5),(4,6),(5,4),(5,5),(6,1),(6,5),(7,3),(7,5),(8,1),(8,2),(8,6),(9,3),(9,5),(10,1),(10,4),(11,3),(11,5),(11,6),(12,1),(12,4),(12,5),(13,5),(13,6),(14,3),(14,4),(15,2),(15,4),(16,5),(16,6),(17,1),(17,2),(18,3),(18,4),(19,1),(19,3),(19,4),(20,1),(20,6),(21,5),(21,6),(22,2),(22,4),(22,5),(23,1),(23,2),(23,5),(24,3),(24,6),(25,2),(25,4),(26,2),(26,3),(26,4),(27,3),(27,6),(28,2),(28,3),(29,2),(29,5),(29,6),(30,3),(30,4),(31,3),(31,4),(31,5);
/*!40000 ALTER TABLE `ec_product_tag_product` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_product_tags`
--

DROP TABLE IF EXISTS `ec_product_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_product_tags` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_product_tags`
--

LOCK TABLES `ec_product_tags` WRITE;
/*!40000 ALTER TABLE `ec_product_tags` DISABLE KEYS */;
INSERT INTO `ec_product_tags` VALUES (1,'Electronic',NULL,'published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(2,'Mobile',NULL,'published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(3,'Iphone',NULL,'published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(4,'Printer',NULL,'published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(5,'Office',NULL,'published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(6,'IT',NULL,'published','2021-07-02 21:03:24','2021-07-02 21:03:24');
/*!40000 ALTER TABLE `ec_product_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_product_up_sale_relations`
--

DROP TABLE IF EXISTS `ec_product_up_sale_relations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_product_up_sale_relations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `from_product_id` int(10) unsigned NOT NULL,
  `to_product_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `ec_product_up_sale_relations_from_product_id_index` (`from_product_id`),
  KEY `ec_product_up_sale_relations_to_product_id_index` (`to_product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_product_up_sale_relations`
--

LOCK TABLES `ec_product_up_sale_relations` WRITE;
/*!40000 ALTER TABLE `ec_product_up_sale_relations` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_product_up_sale_relations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_product_variation_items`
--

DROP TABLE IF EXISTS `ec_product_variation_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_product_variation_items` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_id` int(10) unsigned NOT NULL,
  `variation_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=149 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_product_variation_items`
--

LOCK TABLES `ec_product_variation_items` WRITE;
/*!40000 ALTER TABLE `ec_product_variation_items` DISABLE KEYS */;
INSERT INTO `ec_product_variation_items` VALUES (1,4,1),(2,6,1),(3,3,2),(4,9,2),(5,5,3),(6,9,3),(7,2,4),(8,9,4),(9,4,5),(10,10,5),(11,4,6),(12,9,6),(13,1,7),(14,10,7),(15,3,8),(16,10,8),(17,3,9),(18,10,9),(19,2,10),(20,7,10),(21,5,11),(22,9,11),(23,5,12),(24,8,12),(25,3,13),(26,8,13),(27,3,14),(28,10,14),(29,3,15),(30,10,15),(31,5,16),(32,6,16),(33,3,17),(34,10,17),(35,5,18),(36,10,18),(37,4,19),(38,7,19),(39,2,20),(40,6,20),(41,2,21),(42,9,21),(43,1,22),(44,9,22),(45,2,23),(46,6,23),(47,2,24),(48,8,24),(49,4,25),(50,8,25),(51,2,26),(52,6,26),(53,2,27),(54,9,27),(55,2,28),(56,6,28),(57,2,29),(58,8,29),(59,2,30),(60,9,30),(61,2,31),(62,8,31),(63,5,32),(64,7,32),(65,4,33),(66,8,33),(67,4,34),(68,6,34),(69,4,35),(70,6,35),(71,5,36),(72,6,36),(73,4,37),(74,10,37),(75,3,38),(76,7,38),(77,2,39),(78,9,39),(79,3,40),(80,10,40),(81,1,41),(82,7,41),(83,4,42),(84,7,42),(85,1,43),(86,10,43),(87,3,44),(88,10,44),(89,2,45),(90,9,45),(91,1,46),(92,6,46),(93,5,47),(94,8,47),(95,4,48),(96,7,48),(97,4,49),(98,6,49),(99,4,50),(100,10,50),(101,5,51),(102,7,51),(103,4,52),(104,6,52),(105,3,53),(106,10,53),(107,1,54),(108,8,54),(109,4,55),(110,10,55),(111,1,56),(112,9,56),(113,2,57),(114,8,57),(115,3,58),(116,8,58),(117,5,59),(118,8,59),(119,3,60),(120,9,60),(121,3,61),(122,10,61),(123,3,62),(124,7,62),(125,5,63),(126,9,63),(127,5,64),(128,8,64),(129,1,65),(130,10,65),(131,1,66),(132,7,66),(133,2,67),(134,8,67),(135,3,68),(136,9,68),(137,3,69),(138,6,69),(139,1,70),(140,6,70),(141,3,71),(142,10,71),(143,3,72),(144,6,72),(145,4,73),(146,9,73),(147,4,74),(148,9,74);
/*!40000 ALTER TABLE `ec_product_variation_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_product_variations`
--

DROP TABLE IF EXISTS `ec_product_variations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_product_variations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `product_id` int(10) unsigned DEFAULT NULL,
  `configurable_product_id` int(10) unsigned NOT NULL,
  `is_default` tinyint(4) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=75 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_product_variations`
--

LOCK TABLES `ec_product_variations` WRITE;
/*!40000 ALTER TABLE `ec_product_variations` DISABLE KEYS */;
INSERT INTO `ec_product_variations` VALUES (1,32,1,1),(2,33,1,0),(3,34,2,1),(4,35,2,0),(5,36,3,1),(6,37,3,0),(7,38,3,0),(8,39,4,1),(9,40,4,0),(10,41,4,0),(11,42,5,1),(12,43,5,0),(13,44,6,1),(14,45,6,0),(15,46,6,0),(16,47,7,1),(17,48,7,0),(18,49,7,0),(19,50,8,1),(20,51,8,0),(21,52,9,1),(22,53,9,0),(23,54,9,0),(24,55,9,0),(25,56,10,1),(26,57,11,1),(27,58,11,0),(28,59,12,1),(29,60,12,0),(30,61,12,0),(31,62,12,0),(32,63,13,1),(33,64,14,1),(34,65,14,0),(35,66,15,1),(36,67,15,0),(37,68,15,0),(38,69,16,1),(39,70,17,1),(40,71,18,1),(41,72,18,0),(42,73,18,0),(43,74,19,1),(44,75,19,0),(45,76,20,1),(46,77,21,1),(47,78,21,0),(48,79,21,0),(49,80,22,1),(50,81,22,0),(51,82,23,1),(52,83,23,0),(53,84,23,0),(54,85,24,1),(55,86,24,0),(56,87,25,1),(57,88,25,0),(58,89,25,0),(59,90,26,1),(60,91,26,0),(61,92,26,0),(62,93,27,1),(63,94,27,0),(64,95,27,0),(65,96,28,1),(66,97,28,0),(67,98,28,0),(68,99,29,1),(69,100,29,0),(70,101,29,0),(71,102,30,1),(72,103,30,0),(73,104,31,1),(74,105,31,0);
/*!40000 ALTER TABLE `ec_product_variations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_product_with_attribute`
--

DROP TABLE IF EXISTS `ec_product_with_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_product_with_attribute` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_product_with_attribute`
--

LOCK TABLES `ec_product_with_attribute` WRITE;
/*!40000 ALTER TABLE `ec_product_with_attribute` DISABLE KEYS */;
INSERT INTO `ec_product_with_attribute` VALUES (1,2,1),(2,10,1),(3,1,2),(4,6,2),(5,3,3),(6,6,3),(7,2,4),(8,9,4),(9,1,5),(10,8,5),(11,1,6),(12,8,6),(13,4,7),(14,8,7),(15,4,8),(16,7,8),(17,5,9),(18,9,9),(19,5,10),(20,6,10),(21,1,11),(22,9,11),(23,4,12),(24,6,12),(25,4,13),(26,9,13),(27,1,14),(28,7,14),(29,2,15),(30,10,15),(31,1,16),(32,8,16),(33,3,17),(34,10,17),(35,4,18),(36,6,18),(37,4,19),(38,10,19),(39,2,20),(40,9,20),(41,2,21),(42,10,21),(43,3,22),(44,8,22),(45,4,23),(46,9,23),(47,4,24),(48,6,24),(49,4,25),(50,8,25),(51,3,26),(52,10,26),(53,2,27),(54,10,27),(55,4,28),(56,6,28),(57,1,29),(58,9,29),(59,3,30),(60,7,30),(61,3,31),(62,9,31);
/*!40000 ALTER TABLE `ec_product_with_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_product_with_attribute_set`
--

DROP TABLE IF EXISTS `ec_product_with_attribute_set`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_product_with_attribute_set` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_set_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `order` tinyint(3) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_product_with_attribute_set`
--

LOCK TABLES `ec_product_with_attribute_set` WRITE;
/*!40000 ALTER TABLE `ec_product_with_attribute_set` DISABLE KEYS */;
INSERT INTO `ec_product_with_attribute_set` VALUES (1,1,1,0),(2,2,1,0),(3,1,2,0),(4,2,2,0),(5,1,3,0),(6,2,3,0),(7,1,4,0),(8,2,4,0),(9,1,5,0),(10,2,5,0),(11,1,6,0),(12,2,6,0),(13,1,7,0),(14,2,7,0),(15,1,8,0),(16,2,8,0),(17,1,9,0),(18,2,9,0),(19,1,10,0),(20,2,10,0),(21,1,11,0),(22,2,11,0),(23,1,12,0),(24,2,12,0),(25,1,13,0),(26,2,13,0),(27,1,14,0),(28,2,14,0),(29,1,15,0),(30,2,15,0),(31,1,16,0),(32,2,16,0),(33,1,17,0),(34,2,17,0),(35,1,18,0),(36,2,18,0),(37,1,19,0),(38,2,19,0),(39,1,20,0),(40,2,20,0),(41,1,21,0),(42,2,21,0),(43,1,22,0),(44,2,22,0),(45,1,23,0),(46,2,23,0),(47,1,24,0),(48,2,24,0),(49,1,25,0),(50,2,25,0),(51,1,26,0),(52,2,26,0),(53,1,27,0),(54,2,27,0),(55,1,28,0),(56,2,28,0),(57,1,29,0),(58,2,29,0),(59,1,30,0),(60,2,30,0),(61,1,31,0),(62,2,31,0);
/*!40000 ALTER TABLE `ec_product_with_attribute_set` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_products`
--

DROP TABLE IF EXISTS `ec_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_products` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text COLLATE utf8mb4_unicode_ci,
  `content` longtext COLLATE utf8mb4_unicode_ci,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `images` text COLLATE utf8mb4_unicode_ci,
  `sku` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order` int(10) unsigned NOT NULL DEFAULT '0',
  `quantity` int(10) unsigned DEFAULT NULL,
  `allow_checkout_when_out_of_stock` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `with_storehouse_management` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `is_featured` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `options` text COLLATE utf8mb4_unicode_ci,
  `category_id` int(10) unsigned DEFAULT NULL,
  `brand_id` int(10) unsigned DEFAULT NULL,
  `is_variation` tinyint(4) NOT NULL DEFAULT '0',
  `is_searchable` tinyint(4) NOT NULL DEFAULT '0',
  `is_show_on_list` tinyint(4) NOT NULL DEFAULT '0',
  `sale_type` tinyint(4) NOT NULL DEFAULT '0',
  `price` double unsigned DEFAULT NULL,
  `sale_price` double unsigned DEFAULT NULL,
  `start_date` timestamp NULL DEFAULT NULL,
  `end_date` timestamp NULL DEFAULT NULL,
  `length` double(8,2) DEFAULT NULL,
  `wide` double(8,2) DEFAULT NULL,
  `height` double(8,2) DEFAULT NULL,
  `weight` double(8,2) DEFAULT NULL,
  `barcode` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `length_unit` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `wide_unit` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `height_unit` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `weight_unit` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `tax_id` int(10) unsigned DEFAULT NULL,
  `views` bigint(20) NOT NULL DEFAULT '0',
  `stock_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT 'in_stock',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=106 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_products`
--

LOCK TABLES `ec_products` WRITE;
/*!40000 ALTER TABLE `ec_products` DISABLE KEYS */;
INSERT INTO `ec_products` VALUES (1,'Smart Home Speaker','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/1.jpg\",\"products\\/1-1.jpg\",\"products\\/1-2.jpg\",\"products\\/1-3.jpg\"]','HS-185-A0',0,20,0,1,1,NULL,NULL,7,0,0,0,0,431,NULL,NULL,NULL,17.00,17.00,18.00,771.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,27035,'in_stock'),(2,'Headphone Ultra Bass','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/2.jpg\",\"products\\/2-1.jpg\",\"products\\/2-2.jpg\",\"products\\/2-3.jpg\"]','HS-109-A0',0,15,0,1,1,NULL,NULL,2,0,0,0,0,330,NULL,NULL,NULL,19.00,17.00,16.00,526.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,158163,'in_stock'),(3,'Boxed - Bluetooth Headphone','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/3.jpg\",\"products\\/3-1.jpg\",\"products\\/3-2.jpg\",\"products\\/3-3.jpg\"]','HS-191-A0',0,11,0,1,1,NULL,NULL,2,0,0,0,0,374,NULL,NULL,NULL,15.00,14.00,20.00,828.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,194826,'in_stock'),(4,'Chikie - Bluetooth Speaker','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/4.jpg\",\"products\\/4-1.jpg\",\"products\\/4-2.jpg\",\"products\\/4-3.jpg\"]','HS-147-A0',0,19,0,1,1,NULL,NULL,7,0,0,0,0,90,81,NULL,NULL,16.00,12.00,14.00,861.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,115540,'in_stock'),(5,'Camera Hikvision HK-35VS8','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/5.jpg\",\"products\\/5-1.jpg\",\"products\\/5-2.jpg\",\"products\\/5-3.jpg\"]','HS-151-A0',0,20,0,1,1,NULL,NULL,5,0,0,0,0,46,NULL,NULL,NULL,13.00,14.00,11.00,896.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,116333,'in_stock'),(6,'Camera Samsung SS-24','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/6.jpg\",\"products\\/6-1.jpg\"]','HS-189-A0',0,15,0,1,1,NULL,NULL,1,0,0,0,0,55,NULL,NULL,NULL,16.00,20.00,17.00,699.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,157014,'in_stock'),(7,'Leather Watch Band','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/7.jpg\",\"products\\/7-1.jpg\"]','HS-122-A0',0,18,0,1,1,NULL,NULL,4,0,0,0,0,111,NULL,NULL,NULL,17.00,12.00,10.00,583.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,30595,'in_stock'),(8,'Apple iPhone 13 Plus','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/8.jpg\",\"products\\/8-1.jpg\"]','HS-148-A0',0,17,0,1,1,NULL,NULL,5,0,0,0,0,113,96.05,NULL,NULL,14.00,17.00,13.00,572.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,160452,'in_stock'),(9,'Macbook Pro 2015','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/9.jpg\",\"products\\/9-1.jpg\"]','HS-197-A0',0,19,0,1,1,NULL,NULL,5,0,0,0,0,110,NULL,NULL,NULL,19.00,19.00,19.00,761.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,91049,'in_stock'),(10,'Macbook Air 12 inch','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/10.jpg\",\"products\\/10-1.jpg\"]','HS-132-A0',0,14,0,1,1,NULL,NULL,2,0,0,0,0,404,NULL,NULL,NULL,10.00,20.00,15.00,710.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,22481,'in_stock'),(11,'Apple Watch Serial 7','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/11.jpg\",\"products\\/11-1.jpg\"]','HS-195-A0',0,12,0,1,1,NULL,NULL,3,0,0,0,0,118,NULL,NULL,NULL,15.00,10.00,14.00,644.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,46934,'in_stock'),(12,'Macbook Pro 13 inch','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/12.jpg\",\"products\\/12-1.jpg\"]','HS-189-A0',0,12,0,1,1,NULL,NULL,7,0,0,0,0,120,100.8,NULL,NULL,18.00,10.00,15.00,565.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,162842,'in_stock'),(13,'Apple Keyboard','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/13.jpg\",\"products\\/13-1.jpg\"]','HS-153-A0',0,12,0,1,1,NULL,NULL,2,0,0,0,0,123,NULL,NULL,NULL,17.00,15.00,11.00,781.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,39408,'in_stock'),(14,'MacSafe 80W','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/14.jpg\",\"products\\/14-1.jpg\"]','HS-143-A0',0,16,0,1,1,NULL,NULL,6,0,0,0,0,111,NULL,NULL,NULL,16.00,16.00,12.00,646.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,117631,'in_stock'),(15,'Hand playstation','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/15.jpg\",\"products\\/15-1.jpg\"]','HS-137-A0',0,16,0,1,1,NULL,NULL,1,0,0,0,0,110,NULL,NULL,NULL,20.00,18.00,15.00,510.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,84921,'in_stock'),(16,'Apple Airpods Serial 3','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/16.jpg\"]','HS-148-A0',0,17,0,1,1,NULL,NULL,7,0,0,0,0,127,92.71,NULL,NULL,20.00,15.00,10.00,724.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,28484,'in_stock'),(17,'Cool Smart Watches','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/17.jpg\"]','HS-130-A0',0,15,0,1,1,NULL,NULL,3,0,0,0,0,122,NULL,NULL,NULL,14.00,18.00,17.00,845.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,49203,'in_stock'),(18,'Black Smart Watches','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/18.jpg\",\"products\\/18-1.jpg\",\"products\\/18-2.jpg\"]','HS-122-A0',0,20,0,1,1,NULL,NULL,7,0,0,0,0,110,NULL,NULL,NULL,12.00,17.00,11.00,865.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,180890,'in_stock'),(19,'Leather Watch Band Serial 3','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/19.jpg\",\"products\\/19-1.jpg\"]','HS-160-A0',0,12,0,1,1,NULL,NULL,3,0,0,0,0,121,NULL,NULL,NULL,11.00,10.00,16.00,631.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,97452,'in_stock'),(20,'Macbook Pro 2015 13 inch','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/20.jpg\",\"products\\/20-1.jpg\"]','HS-150-A0',0,12,0,1,1,NULL,NULL,1,0,0,0,0,125,110,NULL,NULL,19.00,16.00,10.00,731.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,73684,'in_stock'),(21,'Historic Alarm Clock','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/21.jpg\",\"products\\/21-1.jpg\"]','HS-186-A0',0,13,0,1,1,NULL,NULL,2,0,0,0,0,119,NULL,NULL,NULL,16.00,20.00,14.00,836.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,35702,'in_stock'),(22,'Black Glasses','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/22.jpg\",\"products\\/22-1.jpg\"]','HS-148-A0',0,20,0,1,1,NULL,NULL,5,0,0,0,0,115,NULL,NULL,NULL,19.00,18.00,13.00,694.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,100796,'in_stock'),(23,'Phillips Mouse','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/23.jpg\",\"products\\/23-1.jpg\"]','HS-173-A0',0,18,0,1,1,NULL,NULL,6,0,0,0,0,122,NULL,NULL,NULL,20.00,12.00,14.00,687.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,155981,'in_stock'),(24,'Gaming Keyboard','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/24.jpg\",\"products\\/24-1.jpg\"]','HS-143-A0',0,17,0,1,1,NULL,NULL,4,0,0,0,0,115,80.5,NULL,NULL,14.00,16.00,20.00,825.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,51017,'in_stock'),(25,'Dual Camera 20MP','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/25.jpg\",\"products\\/25-1.jpg\"]','HS-156-A0',0,13,0,1,0,NULL,NULL,7,0,0,0,0,80.25,NULL,NULL,NULL,11.00,16.00,11.00,741.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,12944,'in_stock'),(26,'Smart Watches','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/26.jpg\",\"products\\/26-1.jpg\",\"products\\/26-2.jpg\"]','HS-127-A0',0,15,0,1,0,NULL,NULL,4,0,0,0,0,40.5,NULL,NULL,NULL,17.00,15.00,17.00,772.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,2757,'in_stock'),(27,'Beat Headphone','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/27.jpg\",\"products\\/27-1.jpg\"]','HS-140-A0',0,14,0,1,0,NULL,NULL,7,0,0,0,0,20,NULL,NULL,NULL,17.00,12.00,11.00,697.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,54823,'in_stock'),(28,'Red & Black Headphone','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/28.jpg\",\"products\\/28-1.jpg\"]','HS-153-A0',0,17,0,1,0,NULL,NULL,4,0,0,0,0,57,43.32,NULL,NULL,14.00,18.00,16.00,610.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,31624,'in_stock'),(29,'Audio Equipment','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/29.jpg\",\"products\\/29-1.jpg\"]','HS-112-A0',0,12,0,1,0,NULL,NULL,7,0,0,0,0,54,NULL,NULL,NULL,11.00,14.00,16.00,801.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,6810,'in_stock'),(30,'Smart Televisions','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/30.jpg\",\"products\\/30-1.jpg\"]','HS-177-A0',0,20,0,1,0,NULL,NULL,1,0,0,0,0,116,NULL,NULL,NULL,16.00,19.00,15.00,525.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:23','2021-07-02 21:03:24',1,90468,'in_stock'),(31,'Samsung Smart TV','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains&rsquo; signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n                                <p>- Casual unisex fit</p>\n\n                                <p>- 64% polyester, 36% polyurethane</p>\n\n                                <p>- Water column pressure: 4000 mm</p>\n\n                                <p>- Model is 187cm tall and wearing a size S / M</p>\n\n                                <p>- Unisex fit</p>\n\n                                <p>- Drawstring hood with built-in cap</p>\n\n                                <p>- Front placket with snap buttons</p>\n\n                                <p>- Ventilation under armpit</p>\n\n                                <p>- Adjustable cuffs</p>\n\n                                <p>- Double welted front pockets</p>\n\n                                <p>- Adjustable elastic string at hempen</p>\n\n                                <p>- Ultrasonically welded seams</p>\n\n                                <p>This is a unisex item, please check our clothing &amp; footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/31.jpg\",\"products\\/31-1.jpg\"]','HS-100-A0',0,15,0,1,0,NULL,NULL,7,0,0,0,0,54,NULL,NULL,NULL,19.00,13.00,16.00,605.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',1,72105,'in_stock'),(32,'Smart Home Speaker',NULL,NULL,'published','[\"products\\/1.jpg\"]','HS-185-A0',0,20,0,1,0,NULL,NULL,7,1,0,0,0,431,NULL,NULL,NULL,17.00,17.00,18.00,771.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(33,'Smart Home Speaker',NULL,NULL,'published','[\"products\\/1-1.jpg\"]','HS-185-A0-A1',0,20,0,1,0,NULL,NULL,7,1,0,0,0,431,NULL,NULL,NULL,17.00,17.00,18.00,771.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(34,'Headphone Ultra Bass',NULL,NULL,'published','[\"products\\/2.jpg\"]','HS-109-A0',0,15,0,1,0,NULL,NULL,2,1,0,0,0,330,NULL,NULL,NULL,19.00,17.00,16.00,526.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(35,'Headphone Ultra Bass',NULL,NULL,'published','[\"products\\/2-1.jpg\"]','HS-109-A0-A1',0,15,0,1,0,NULL,NULL,2,1,0,0,0,330,NULL,NULL,NULL,19.00,17.00,16.00,526.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(36,'Boxed - Bluetooth Headphone',NULL,NULL,'published','[\"products\\/3.jpg\"]','HS-191-A0',0,11,0,1,0,NULL,NULL,2,1,0,0,0,374,NULL,NULL,NULL,15.00,14.00,20.00,828.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(37,'Boxed - Bluetooth Headphone',NULL,NULL,'published','[\"products\\/3-1.jpg\"]','HS-191-A0-A1',0,11,0,1,0,NULL,NULL,2,1,0,0,0,374,NULL,NULL,NULL,15.00,14.00,20.00,828.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(38,'Boxed - Bluetooth Headphone',NULL,NULL,'published','[\"products\\/3-2.jpg\"]','HS-191-A0-A2',0,11,0,1,0,NULL,NULL,2,1,0,0,0,374,NULL,NULL,NULL,15.00,14.00,20.00,828.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(39,'Chikie - Bluetooth Speaker',NULL,NULL,'published','[\"products\\/4.jpg\"]','HS-147-A0',0,19,0,1,0,NULL,NULL,7,1,0,0,0,90,81,NULL,NULL,16.00,12.00,14.00,861.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(40,'Chikie - Bluetooth Speaker',NULL,NULL,'published','[\"products\\/4-1.jpg\"]','HS-147-A0-A1',0,19,0,1,0,NULL,NULL,7,1,0,0,0,90,77.4,NULL,NULL,16.00,12.00,14.00,861.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(41,'Chikie - Bluetooth Speaker',NULL,NULL,'published','[\"products\\/4-2.jpg\"]','HS-147-A0-A2',0,19,0,1,0,NULL,NULL,7,1,0,0,0,90,71.1,NULL,NULL,16.00,12.00,14.00,861.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(42,'Camera Hikvision HK-35VS8',NULL,NULL,'published','[\"products\\/5.jpg\"]','HS-151-A0',0,20,0,1,0,NULL,NULL,5,1,0,0,0,46,NULL,NULL,NULL,13.00,14.00,11.00,896.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(43,'Camera Hikvision HK-35VS8',NULL,NULL,'published','[\"products\\/5-1.jpg\"]','HS-151-A0-A1',0,20,0,1,0,NULL,NULL,5,1,0,0,0,46,NULL,NULL,NULL,13.00,14.00,11.00,896.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(44,'Camera Samsung SS-24',NULL,NULL,'published','[\"products\\/6.jpg\"]','HS-189-A0',0,15,0,1,0,NULL,NULL,1,1,0,0,0,55,NULL,NULL,NULL,16.00,20.00,17.00,699.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(45,'Camera Samsung SS-24',NULL,NULL,'published','[\"products\\/6-1.jpg\"]','HS-189-A0-A1',0,15,0,1,0,NULL,NULL,1,1,0,0,0,55,NULL,NULL,NULL,16.00,20.00,17.00,699.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(46,'Camera Samsung SS-24',NULL,NULL,'published','[\"products\\/6.jpg\"]','HS-189-A0-A2',0,15,0,1,0,NULL,NULL,1,1,0,0,0,55,NULL,NULL,NULL,16.00,20.00,17.00,699.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(47,'Leather Watch Band',NULL,NULL,'published','[\"products\\/7.jpg\"]','HS-122-A0',0,18,0,1,0,NULL,NULL,4,1,0,0,0,111,NULL,NULL,NULL,17.00,12.00,10.00,583.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(48,'Leather Watch Band',NULL,NULL,'published','[\"products\\/7-1.jpg\"]','HS-122-A0-A1',0,18,0,1,0,NULL,NULL,4,1,0,0,0,111,NULL,NULL,NULL,17.00,12.00,10.00,583.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(49,'Leather Watch Band',NULL,NULL,'published','[\"products\\/7.jpg\"]','HS-122-A0-A2',0,18,0,1,0,NULL,NULL,4,1,0,0,0,111,NULL,NULL,NULL,17.00,12.00,10.00,583.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(50,'Apple iPhone 13 Plus',NULL,NULL,'published','[\"products\\/8.jpg\"]','HS-148-A0',0,17,0,1,0,NULL,NULL,5,1,0,0,0,113,96.05,NULL,NULL,14.00,17.00,13.00,572.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(51,'Apple iPhone 13 Plus',NULL,NULL,'published','[\"products\\/8-1.jpg\"]','HS-148-A0-A1',0,17,0,1,0,NULL,NULL,5,1,0,0,0,113,90.4,NULL,NULL,14.00,17.00,13.00,572.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(52,'Macbook Pro 2015',NULL,NULL,'published','[\"products\\/9.jpg\"]','HS-197-A0',0,19,0,1,0,NULL,NULL,5,1,0,0,0,110,NULL,NULL,NULL,19.00,19.00,19.00,761.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(53,'Macbook Pro 2015',NULL,NULL,'published','[\"products\\/9-1.jpg\"]','HS-197-A0-A1',0,19,0,1,0,NULL,NULL,5,1,0,0,0,110,NULL,NULL,NULL,19.00,19.00,19.00,761.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(54,'Macbook Pro 2015',NULL,NULL,'published','[\"products\\/9.jpg\"]','HS-197-A0-A2',0,19,0,1,0,NULL,NULL,5,1,0,0,0,110,NULL,NULL,NULL,19.00,19.00,19.00,761.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(55,'Macbook Pro 2015',NULL,NULL,'published','[\"products\\/9.jpg\"]','HS-197-A0-A3',0,19,0,1,0,NULL,NULL,5,1,0,0,0,110,NULL,NULL,NULL,19.00,19.00,19.00,761.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(56,'Macbook Air 12 inch',NULL,NULL,'published','[\"products\\/10.jpg\"]','HS-132-A0',0,14,0,1,0,NULL,NULL,2,1,0,0,0,404,NULL,NULL,NULL,10.00,20.00,15.00,710.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(57,'Apple Watch Serial 7',NULL,NULL,'published','[\"products\\/11.jpg\"]','HS-195-A0',0,12,0,1,0,NULL,NULL,3,1,0,0,0,118,NULL,NULL,NULL,15.00,10.00,14.00,644.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(58,'Apple Watch Serial 7',NULL,NULL,'published','[\"products\\/11-1.jpg\"]','HS-195-A0-A1',0,12,0,1,0,NULL,NULL,3,1,0,0,0,118,NULL,NULL,NULL,15.00,10.00,14.00,644.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(59,'Macbook Pro 13 inch',NULL,NULL,'published','[\"products\\/12.jpg\"]','HS-189-A0',0,12,0,1,0,NULL,NULL,7,1,0,0,0,120,100.8,NULL,NULL,18.00,10.00,15.00,565.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(60,'Macbook Pro 13 inch',NULL,NULL,'published','[\"products\\/12-1.jpg\"]','HS-189-A0-A1',0,12,0,1,0,NULL,NULL,7,1,0,0,0,120,87.6,NULL,NULL,18.00,10.00,15.00,565.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(61,'Macbook Pro 13 inch',NULL,NULL,'published','[\"products\\/12.jpg\"]','HS-189-A0-A2',0,12,0,1,0,NULL,NULL,7,1,0,0,0,120,94.8,NULL,NULL,18.00,10.00,15.00,565.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(62,'Macbook Pro 13 inch',NULL,NULL,'published','[\"products\\/12.jpg\"]','HS-189-A0-A3',0,12,0,1,0,NULL,NULL,7,1,0,0,0,120,103.2,NULL,NULL,18.00,10.00,15.00,565.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(63,'Apple Keyboard',NULL,NULL,'published','[\"products\\/13.jpg\"]','HS-153-A0',0,12,0,1,0,NULL,NULL,2,1,0,0,0,123,NULL,NULL,NULL,17.00,15.00,11.00,781.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(64,'MacSafe 80W',NULL,NULL,'published','[\"products\\/14.jpg\"]','HS-143-A0',0,16,0,1,0,NULL,NULL,6,1,0,0,0,111,NULL,NULL,NULL,16.00,16.00,12.00,646.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(65,'MacSafe 80W',NULL,NULL,'published','[\"products\\/14-1.jpg\"]','HS-143-A0-A1',0,16,0,1,0,NULL,NULL,6,1,0,0,0,111,NULL,NULL,NULL,16.00,16.00,12.00,646.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(66,'Hand playstation',NULL,NULL,'published','[\"products\\/15.jpg\"]','HS-137-A0',0,16,0,1,0,NULL,NULL,1,1,0,0,0,110,NULL,NULL,NULL,20.00,18.00,15.00,510.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(67,'Hand playstation',NULL,NULL,'published','[\"products\\/15-1.jpg\"]','HS-137-A0-A1',0,16,0,1,0,NULL,NULL,1,1,0,0,0,110,NULL,NULL,NULL,20.00,18.00,15.00,510.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(68,'Hand playstation',NULL,NULL,'published','[\"products\\/15.jpg\"]','HS-137-A0-A2',0,16,0,1,0,NULL,NULL,1,1,0,0,0,110,NULL,NULL,NULL,20.00,18.00,15.00,510.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(69,'Apple Airpods Serial 3',NULL,NULL,'published','[\"products\\/16.jpg\"]','HS-148-A0',0,17,0,1,0,NULL,NULL,7,1,0,0,0,127,92.71,NULL,NULL,20.00,15.00,10.00,724.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(70,'Cool Smart Watches',NULL,NULL,'published','[\"products\\/17.jpg\"]','HS-130-A0',0,15,0,1,0,NULL,NULL,3,1,0,0,0,122,NULL,NULL,NULL,14.00,18.00,17.00,845.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(71,'Black Smart Watches',NULL,NULL,'published','[\"products\\/18.jpg\"]','HS-122-A0',0,20,0,1,0,NULL,NULL,7,1,0,0,0,110,NULL,NULL,NULL,12.00,17.00,11.00,865.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(72,'Black Smart Watches',NULL,NULL,'published','[\"products\\/18-1.jpg\"]','HS-122-A0-A1',0,20,0,1,0,NULL,NULL,7,1,0,0,0,110,NULL,NULL,NULL,12.00,17.00,11.00,865.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(73,'Black Smart Watches',NULL,NULL,'published','[\"products\\/18-2.jpg\"]','HS-122-A0-A2',0,20,0,1,0,NULL,NULL,7,1,0,0,0,110,NULL,NULL,NULL,12.00,17.00,11.00,865.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(74,'Leather Watch Band Serial 3',NULL,NULL,'published','[\"products\\/19.jpg\"]','HS-160-A0',0,12,0,1,0,NULL,NULL,3,1,0,0,0,121,NULL,NULL,NULL,11.00,10.00,16.00,631.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(75,'Leather Watch Band Serial 3',NULL,NULL,'published','[\"products\\/19-1.jpg\"]','HS-160-A0-A1',0,12,0,1,0,NULL,NULL,3,1,0,0,0,121,NULL,NULL,NULL,11.00,10.00,16.00,631.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(76,'Macbook Pro 2015 13 inch',NULL,NULL,'published','[\"products\\/20.jpg\"]','HS-150-A0',0,12,0,1,0,NULL,NULL,1,1,0,0,0,125,110,NULL,NULL,19.00,16.00,10.00,731.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(77,'Historic Alarm Clock',NULL,NULL,'published','[\"products\\/21.jpg\"]','HS-186-A0',0,13,0,1,0,NULL,NULL,2,1,0,0,0,119,NULL,NULL,NULL,16.00,20.00,14.00,836.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(78,'Historic Alarm Clock',NULL,NULL,'published','[\"products\\/21-1.jpg\"]','HS-186-A0-A1',0,13,0,1,0,NULL,NULL,2,1,0,0,0,119,NULL,NULL,NULL,16.00,20.00,14.00,836.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(79,'Historic Alarm Clock',NULL,NULL,'published','[\"products\\/21.jpg\"]','HS-186-A0-A2',0,13,0,1,0,NULL,NULL,2,1,0,0,0,119,NULL,NULL,NULL,16.00,20.00,14.00,836.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(80,'Black Glasses',NULL,NULL,'published','[\"products\\/22.jpg\"]','HS-148-A0',0,20,0,1,0,NULL,NULL,5,1,0,0,0,115,NULL,NULL,NULL,19.00,18.00,13.00,694.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(81,'Black Glasses',NULL,NULL,'published','[\"products\\/22-1.jpg\"]','HS-148-A0-A1',0,20,0,1,0,NULL,NULL,5,1,0,0,0,115,NULL,NULL,NULL,19.00,18.00,13.00,694.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(82,'Phillips Mouse',NULL,NULL,'published','[\"products\\/23.jpg\"]','HS-173-A0',0,18,0,1,0,NULL,NULL,6,1,0,0,0,122,NULL,NULL,NULL,20.00,12.00,14.00,687.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(83,'Phillips Mouse',NULL,NULL,'published','[\"products\\/23-1.jpg\"]','HS-173-A0-A1',0,18,0,1,0,NULL,NULL,6,1,0,0,0,122,NULL,NULL,NULL,20.00,12.00,14.00,687.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(84,'Phillips Mouse',NULL,NULL,'published','[\"products\\/23.jpg\"]','HS-173-A0-A2',0,18,0,1,0,NULL,NULL,6,1,0,0,0,122,NULL,NULL,NULL,20.00,12.00,14.00,687.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(85,'Gaming Keyboard',NULL,NULL,'published','[\"products\\/24.jpg\"]','HS-143-A0',0,17,0,1,0,NULL,NULL,4,1,0,0,0,115,80.5,NULL,NULL,14.00,16.00,20.00,825.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(86,'Gaming Keyboard',NULL,NULL,'published','[\"products\\/24-1.jpg\"]','HS-143-A0-A1',0,17,0,1,0,NULL,NULL,4,1,0,0,0,115,97.75,NULL,NULL,14.00,16.00,20.00,825.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(87,'Dual Camera 20MP',NULL,NULL,'published','[\"products\\/25.jpg\"]','HS-156-A0',0,13,0,1,0,NULL,NULL,7,1,0,0,0,80.25,NULL,NULL,NULL,11.00,16.00,11.00,741.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(88,'Dual Camera 20MP',NULL,NULL,'published','[\"products\\/25-1.jpg\"]','HS-156-A0-A1',0,13,0,1,0,NULL,NULL,7,1,0,0,0,80.25,NULL,NULL,NULL,11.00,16.00,11.00,741.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(89,'Dual Camera 20MP',NULL,NULL,'published','[\"products\\/25.jpg\"]','HS-156-A0-A2',0,13,0,1,0,NULL,NULL,7,1,0,0,0,80.25,NULL,NULL,NULL,11.00,16.00,11.00,741.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(90,'Smart Watches',NULL,NULL,'published','[\"products\\/26.jpg\"]','HS-127-A0',0,15,0,1,0,NULL,NULL,4,1,0,0,0,40.5,NULL,NULL,NULL,17.00,15.00,17.00,772.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(91,'Smart Watches',NULL,NULL,'published','[\"products\\/26-1.jpg\"]','HS-127-A0-A1',0,15,0,1,0,NULL,NULL,4,1,0,0,0,40.5,NULL,NULL,NULL,17.00,15.00,17.00,772.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(92,'Smart Watches',NULL,NULL,'published','[\"products\\/26-2.jpg\"]','HS-127-A0-A2',0,15,0,1,0,NULL,NULL,4,1,0,0,0,40.5,NULL,NULL,NULL,17.00,15.00,17.00,772.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(93,'Beat Headphone',NULL,NULL,'published','[\"products\\/27.jpg\"]','HS-140-A0',0,14,0,1,0,NULL,NULL,7,1,0,0,0,20,NULL,NULL,NULL,17.00,12.00,11.00,697.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(94,'Beat Headphone',NULL,NULL,'published','[\"products\\/27-1.jpg\"]','HS-140-A0-A1',0,14,0,1,0,NULL,NULL,7,1,0,0,0,20,NULL,NULL,NULL,17.00,12.00,11.00,697.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(95,'Beat Headphone',NULL,NULL,'published','[\"products\\/27.jpg\"]','HS-140-A0-A2',0,14,0,1,0,NULL,NULL,7,1,0,0,0,20,NULL,NULL,NULL,17.00,12.00,11.00,697.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(96,'Red & Black Headphone',NULL,NULL,'published','[\"products\\/28.jpg\"]','HS-153-A0',0,17,0,1,0,NULL,NULL,4,1,0,0,0,57,43.32,NULL,NULL,14.00,18.00,16.00,610.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(97,'Red & Black Headphone',NULL,NULL,'published','[\"products\\/28-1.jpg\"]','HS-153-A0-A1',0,17,0,1,0,NULL,NULL,4,1,0,0,0,57,39.9,NULL,NULL,14.00,18.00,16.00,610.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(98,'Red & Black Headphone',NULL,NULL,'published','[\"products\\/28.jpg\"]','HS-153-A0-A2',0,17,0,1,0,NULL,NULL,4,1,0,0,0,57,41.61,NULL,NULL,14.00,18.00,16.00,610.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(99,'Audio Equipment',NULL,NULL,'published','[\"products\\/29.jpg\"]','HS-112-A0',0,12,0,1,0,NULL,NULL,7,1,0,0,0,54,NULL,NULL,NULL,11.00,14.00,16.00,801.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(100,'Audio Equipment',NULL,NULL,'published','[\"products\\/29-1.jpg\"]','HS-112-A0-A1',0,12,0,1,0,NULL,NULL,7,1,0,0,0,54,NULL,NULL,NULL,11.00,14.00,16.00,801.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(101,'Audio Equipment',NULL,NULL,'published','[\"products\\/29.jpg\"]','HS-112-A0-A2',0,12,0,1,0,NULL,NULL,7,1,0,0,0,54,NULL,NULL,NULL,11.00,14.00,16.00,801.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(102,'Smart Televisions',NULL,NULL,'published','[\"products\\/30.jpg\"]','HS-177-A0',0,20,0,1,0,NULL,NULL,1,1,0,0,0,116,NULL,NULL,NULL,16.00,19.00,15.00,525.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(103,'Smart Televisions',NULL,NULL,'published','[\"products\\/30-1.jpg\"]','HS-177-A0-A1',0,20,0,1,0,NULL,NULL,1,1,0,0,0,116,NULL,NULL,NULL,16.00,19.00,15.00,525.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(104,'Samsung Smart TV',NULL,NULL,'published','[\"products\\/31.jpg\"]','HS-100-A0',0,15,0,1,0,NULL,NULL,7,1,0,0,0,54,NULL,NULL,NULL,19.00,13.00,16.00,605.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock'),(105,'Samsung Smart TV',NULL,NULL,'published','[\"products\\/31-1.jpg\"]','HS-100-A0-A1',0,15,0,1,0,NULL,NULL,7,1,0,0,0,54,NULL,NULL,NULL,19.00,13.00,16.00,605.00,NULL,NULL,NULL,NULL,NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24',NULL,0,'in_stock');
/*!40000 ALTER TABLE `ec_products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_reviews`
--

DROP TABLE IF EXISTS `ec_reviews`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_reviews` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `star` double(8,2) NOT NULL,
  `comment` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_reviews`
--

LOCK TABLES `ec_reviews` WRITE;
/*!40000 ALTER TABLE `ec_reviews` DISABLE KEYS */;
INSERT INTO `ec_reviews` VALUES (1,11,45,5.00,'Incidunt mollitia officiis quaerat ut sint minima alias. Aut provident praesentium quod sint in recusandae eius.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(2,11,38,3.00,'Ut soluta debitis reprehenderit quia. Nobis fuga voluptatibus dolor qui. Nobis qui voluptates non vero iusto.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(3,7,20,1.00,'Eos pariatur quos aut veniam totam. Natus nam rem quo qui. Omnis et rerum sequi nostrum.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(4,8,92,5.00,'Sunt aut officia natus est. Et dolores velit quibusdam nobis non sunt. Eveniet nisi eius necessitatibus nam omnis quam sed.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(5,10,12,5.00,'Accusantium neque libero eum rem at. Mollitia est quia deserunt quasi hic. Nam molestias ut ullam ad quia.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(6,10,101,5.00,'In et reiciendis reprehenderit amet exercitationem voluptatum. Id architecto nulla expedita quo ut. Est reiciendis occaecati omnis dolor sit.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(7,9,37,3.00,'Repellat aliquam molestias enim ex. Recusandae quos ab neque animi id. Vel itaque adipisci et aut. Vero et inventore aliquid omnis perspiciatis esse.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(8,11,3,4.00,'Velit iusto et delectus nulla. Soluta delectus quis ut modi in exercitationem. Et sed et officiis minima totam.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(9,5,34,5.00,'Inventore consequuntur accusamus nulla laboriosam. Quam culpa commodi assumenda cumque. Officiis perferendis excepturi et et omnis excepturi quod.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(10,4,50,5.00,'Enim quo repellendus eaque est illo officiis. Culpa laborum pariatur autem et qui. Delectus perspiciatis nesciunt et quas magni.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(11,11,58,2.00,'Assumenda autem deleniti accusamus quis alias est rerum. Placeat ipsa facilis nemo reiciendis. Minima quod et aut rerum.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(12,8,49,4.00,'In omnis ipsa voluptatem porro quibusdam. Qui rerum laboriosam consequatur et.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(13,1,21,5.00,'Ipsam doloribus voluptatibus aliquid molestiae voluptas. Dignissimos aut quasi optio. Nam sunt atque ipsum deserunt quo.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(14,5,52,2.00,'Rerum at quos quae sapiente velit. Quis alias et dolorem voluptatem et ut. Qui ullam et ex quos.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(15,2,92,1.00,'Asperiores vel autem aperiam. Ipsum voluptate voluptatem sit eius. Quo inventore dolorem in soluta et et.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(16,9,88,1.00,'Magnam unde minima a non quis rerum. Aliquam et animi repudiandae numquam. Pariatur quaerat et dolorem laborum aut.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(17,10,75,5.00,'Sapiente eum ut eaque ab. Cumque dolorum repellat eos qui. Beatae quaerat nostrum vero sunt.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(18,9,105,3.00,'Quo voluptas molestiae ad. Alias illum et reprehenderit quos aliquid illum. Ipsa a nihil quaerat qui ut.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(19,11,92,1.00,'Adipisci illum in qui ex sed. Iusto est nam aliquam harum qui. Animi fugit autem dignissimos eveniet ipsam totam placeat.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(20,5,38,2.00,'Magni provident quibusdam harum. Iure velit facilis cum. Temporibus non laudantium distinctio nesciunt perferendis error consequatur.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(21,9,56,5.00,'Ea consectetur molestiae sint. Quo est non adipisci incidunt. Culpa natus aut earum minima ratione similique.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(22,1,43,1.00,'Sint enim et non ipsa consequuntur. Aut et et dolorem optio ipsam maxime veniam. Illum officia aut aperiam et perspiciatis quidem facere.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(23,11,99,4.00,'Eius modi voluptatem est. Dignissimos quod magnam velit ut illum cumque. Officiis omnis eum aut incidunt voluptatibus commodi.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(24,11,71,5.00,'Non nam ut veniam tempore fuga voluptatum qui. Accusamus dolores laboriosam autem est facilis eligendi.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(25,4,3,5.00,'Natus accusamus ut dicta rerum distinctio sit optio debitis. Autem debitis nemo omnis porro dolor.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(26,6,39,4.00,'Ratione officiis non eligendi harum dolorem alias eos. Sequi laboriosam natus vel facere veritatis quos omnis. Molestiae sint et a quod harum.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(27,6,1,4.00,'Ut doloribus iste corporis qui. Odit eius eum nihil quia sunt. Natus officia qui rerum labore. Qui rerum amet itaque qui iusto eveniet.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(28,1,47,5.00,'Sint omnis et in qui sed libero suscipit. Ut suscipit vitae vero iusto.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(29,9,10,5.00,'Qui provident ipsam exercitationem dolor fugiat cupiditate quidem. Optio eaque minus et debitis inventore fugiat. Ullam hic animi et impedit.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(30,7,39,3.00,'Officia sed tempore doloribus doloremque. Dolorem neque eius laboriosam autem esse ex.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(31,7,31,3.00,'Iusto odit ullam quae incidunt occaecati quia accusamus. Vero est minus veniam quis. Natus illum facilis explicabo quo cumque in autem.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(32,2,23,1.00,'Accusamus quo voluptas nihil totam alias. Error et et amet. Quia et dolorum voluptas aperiam. In omnis consequatur consequatur rem voluptatem.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(33,2,96,3.00,'Accusamus qui nemo et quia qui. Delectus est adipisci numquam dolor ut voluptatibus. Adipisci reprehenderit excepturi sapiente atque.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(34,2,84,1.00,'Sit ut est est deleniti. Veritatis beatae qui nulla molestiae. Quia vero omnis in esse.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(35,10,40,5.00,'Aut illo minus dolores velit ut. Repudiandae doloremque totam non. Et consequatur non atque quia. Animi mollitia pariatur earum ex ipsam officia.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(36,7,32,2.00,'Quod quo totam sit porro et placeat. Quod voluptatem corporis deserunt ut accusantium ex necessitatibus. Labore a quo sint.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(37,9,32,5.00,'Laudantium temporibus delectus reprehenderit sed aut. Et unde voluptates quia odit voluptatem totam eum. Alias eveniet laborum enim.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(38,4,98,5.00,'Voluptas vel est blanditiis. Enim quia iusto nihil nihil distinctio. Et consequatur unde placeat ipsam sequi.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(39,5,16,3.00,'Harum voluptatum molestias quibusdam amet voluptatibus reprehenderit. Vel deserunt atque ullam adipisci.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(40,5,80,2.00,'Aut quaerat dolores non laboriosam. Et sit nemo quos reiciendis doloremque molestiae sint quam. Blanditiis labore eum et facere a autem laborum enim.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(41,2,31,4.00,'Porro voluptate nisi adipisci rem. Laborum ratione et laudantium velit iste. Sit repudiandae occaecati aut quod.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(42,10,40,4.00,'Natus necessitatibus vero libero ducimus labore eum eligendi deleniti. Expedita neque non quasi possimus.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(43,8,26,1.00,'Et non animi accusamus voluptates officia sint non. Quos dolores dicta quae eius laborum. Architecto ratione id quis sed.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(44,9,94,2.00,'Dolore eos qui atque maxime ipsa commodi mollitia. Quam eligendi enim quia eum voluptas. Ducimus dolore id debitis ipsa dolorem esse deleniti.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(45,7,6,2.00,'Dolorum illum eum sint assumenda illo. Quas possimus et non officiis harum. Recusandae consectetur quia et aut.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(46,8,52,2.00,'Unde minus odio maxime repudiandae consectetur voluptatem molestiae. Quis quis possimus nam dolorum magni ratione.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(47,3,17,2.00,'Quibusdam tempore nobis id aspernatur quis qui. Illum sed quis ipsum et. Magni voluptatem unde accusantium earum.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(48,8,34,2.00,'Optio porro placeat corrupti qui placeat sed corporis. Beatae aut placeat odit. Rerum et sunt qui provident accusantium.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(49,9,72,5.00,'Sequi laudantium id beatae non eius omnis. Facere natus recusandae veniam incidunt. Autem sit at labore et aliquid non.','published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(50,9,68,4.00,'Enim numquam id ut voluptatem. Odit ut corporis numquam et quia. Nobis magnam hic iste quae repellendus.','published','2021-07-02 21:03:24','2021-07-02 21:03:24');
/*!40000 ALTER TABLE `ec_reviews` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_shipment_histories`
--

DROP TABLE IF EXISTS `ec_shipment_histories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_shipment_histories` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `shipment_id` int(10) unsigned NOT NULL,
  `order_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=55 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_shipment_histories`
--

LOCK TABLES `ec_shipment_histories` WRITE;
/*!40000 ALTER TABLE `ec_shipment_histories` DISABLE KEYS */;
INSERT INTO `ec_shipment_histories` VALUES (1,'create_from_order','Shipping was created from order %order_id%',0,1,1,'2021-06-29 13:03:25','2021-06-29 13:03:25'),(2,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,1,1,'2021-07-01 05:03:25','2021-07-02 21:03:25'),(3,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,1,1,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(4,'create_from_order','Shipping was created from order %order_id%',0,2,2,'2021-07-01 07:03:25','2021-07-01 07:03:25'),(5,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,2,2,'2021-07-01 07:03:25','2021-07-02 21:03:25'),(6,'create_from_order','Shipping was created from order %order_id%',0,3,3,'2021-06-25 09:03:25','2021-06-25 09:03:25'),(7,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,3,3,'2021-07-01 09:03:25','2021-07-02 21:03:25'),(8,'create_from_order','Shipping was created from order %order_id%',0,4,4,'2021-07-01 11:03:25','2021-07-01 11:03:25'),(9,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,4,4,'2021-07-01 11:03:25','2021-07-02 21:03:25'),(10,'create_from_order','Shipping was created from order %order_id%',0,5,5,'2021-07-01 13:03:25','2021-07-01 13:03:25'),(11,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,5,5,'2021-07-01 13:03:25','2021-07-02 21:03:25'),(12,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,5,5,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(13,'create_from_order','Shipping was created from order %order_id%',0,6,6,'2021-06-27 21:03:25','2021-06-27 21:03:25'),(14,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,6,6,'2021-07-01 15:03:25','2021-07-02 21:03:25'),(15,'update_cod_status','Updated COD status to Completed . Updated by: %user_name%',0,6,6,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(16,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,6,6,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(17,'create_from_order','Shipping was created from order %order_id%',0,7,7,'2021-06-28 05:03:25','2021-06-28 05:03:25'),(18,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,7,7,'2021-07-01 17:03:25','2021-07-02 21:03:25'),(19,'create_from_order','Shipping was created from order %order_id%',0,8,8,'2021-07-01 19:03:25','2021-07-01 19:03:25'),(20,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,8,8,'2021-07-01 19:03:25','2021-07-02 21:03:25'),(21,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,8,8,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(22,'create_from_order','Shipping was created from order %order_id%',0,9,9,'2021-06-27 21:03:25','2021-06-27 21:03:25'),(23,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,9,9,'2021-07-01 21:03:25','2021-07-02 21:03:25'),(24,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,9,9,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(25,'create_from_order','Shipping was created from order %order_id%',0,10,10,'2021-07-01 01:03:25','2021-07-01 01:03:25'),(26,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,10,10,'2021-07-01 23:03:25','2021-07-02 21:03:25'),(27,'create_from_order','Shipping was created from order %order_id%',0,11,11,'2021-06-25 09:03:25','2021-06-25 09:03:25'),(28,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,11,11,'2021-07-02 01:03:25','2021-07-02 21:03:25'),(29,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,11,11,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(30,'create_from_order','Shipping was created from order %order_id%',0,12,12,'2021-06-26 03:03:25','2021-06-26 03:03:25'),(31,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,12,12,'2021-07-02 03:03:25','2021-07-02 21:03:25'),(32,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,12,12,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(33,'create_from_order','Shipping was created from order %order_id%',0,13,13,'2021-06-28 05:03:25','2021-06-28 05:03:25'),(34,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,13,13,'2021-07-02 05:03:25','2021-07-02 21:03:25'),(35,'create_from_order','Shipping was created from order %order_id%',0,14,14,'2021-07-02 07:03:25','2021-07-02 07:03:25'),(36,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,14,14,'2021-07-02 07:03:25','2021-07-02 21:03:25'),(37,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,14,14,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(38,'create_from_order','Shipping was created from order %order_id%',0,15,15,'2021-06-28 21:03:25','2021-06-28 21:03:25'),(39,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,15,15,'2021-07-02 09:03:25','2021-07-02 21:03:25'),(40,'update_cod_status','Updated COD status to Completed . Updated by: %user_name%',0,15,15,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(41,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,15,15,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(42,'create_from_order','Shipping was created from order %order_id%',0,16,16,'2021-07-01 05:03:25','2021-07-01 05:03:25'),(43,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,16,16,'2021-07-02 11:03:25','2021-07-02 21:03:25'),(44,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,16,16,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(45,'create_from_order','Shipping was created from order %order_id%',0,17,17,'2021-07-01 05:03:25','2021-07-01 05:03:25'),(46,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,17,17,'2021-07-02 13:03:25','2021-07-02 21:03:25'),(47,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,17,17,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(48,'create_from_order','Shipping was created from order %order_id%',0,18,18,'2021-06-30 15:03:25','2021-06-30 15:03:25'),(49,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,18,18,'2021-07-02 15:03:25','2021-07-02 21:03:25'),(50,'create_from_order','Shipping was created from order %order_id%',0,19,19,'2021-07-02 01:03:25','2021-07-02 01:03:25'),(51,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,19,19,'2021-07-02 17:03:25','2021-07-02 21:03:25'),(52,'create_from_order','Shipping was created from order %order_id%',0,20,20,'2021-07-02 19:03:25','2021-07-02 19:03:25'),(53,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,20,20,'2021-07-02 19:03:25','2021-07-02 21:03:25'),(54,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,20,20,'2021-07-02 21:03:25','2021-07-02 21:03:25');
/*!40000 ALTER TABLE `ec_shipment_histories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_shipments`
--

DROP TABLE IF EXISTS `ec_shipments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_shipments` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `weight` double(8,2) DEFAULT '0.00',
  `shipment_id` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `note` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `cod_amount` decimal(15,2) DEFAULT '0.00',
  `cod_status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `cross_checking_status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `price` decimal(15,2) DEFAULT '0.00',
  `store_id` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_shipments`
--

LOCK TABLES `ec_shipments` WRITE;
/*!40000 ALTER TABLE `ec_shipments` DISABLE KEYS */;
INSERT INTO `ec_shipments` VALUES (1,1,NULL,1602.00,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(2,2,NULL,6048.00,NULL,'','approved',0.00,'completed','pending',0.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(3,3,NULL,2259.00,NULL,'','approved',0.00,'completed','pending',0.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(4,4,NULL,3970.00,NULL,'','approved',0.00,'completed','pending',0.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(5,5,NULL,6954.00,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(6,6,NULL,2161.00,NULL,'','delivered',1145.10,'completed','pending',0.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(7,7,NULL,6302.00,NULL,'','approved',0.00,'completed','pending',0.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(8,8,NULL,3110.00,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(9,9,NULL,4573.00,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(10,10,NULL,2042.00,NULL,'','approved',0.00,'completed','pending',0.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(11,11,NULL,3545.00,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(12,12,NULL,5304.00,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(13,13,NULL,3764.00,NULL,'','approved',0.00,'completed','pending',0.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(14,14,NULL,2932.00,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(15,15,NULL,7710.00,NULL,'','delivered',1194.00,'completed','pending',0.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(16,16,NULL,5181.00,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(17,17,NULL,6199.00,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(18,18,NULL,7956.00,NULL,'','approved',816.20,'pending','pending',0.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(19,19,NULL,2299.00,NULL,'','approved',0.00,'completed','pending',0.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25'),(20,20,NULL,2418.00,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2021-07-02 21:03:25','2021-07-02 21:03:25');
/*!40000 ALTER TABLE `ec_shipments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_shipping`
--

DROP TABLE IF EXISTS `ec_shipping`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_shipping` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_shipping`
--

LOCK TABLES `ec_shipping` WRITE;
/*!40000 ALTER TABLE `ec_shipping` DISABLE KEYS */;
INSERT INTO `ec_shipping` VALUES (1,'All',NULL,'2021-07-02 21:03:24','2021-07-02 21:03:24');
/*!40000 ALTER TABLE `ec_shipping` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_shipping_rule_items`
--

DROP TABLE IF EXISTS `ec_shipping_rule_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_shipping_rule_items` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `shipping_rule_id` int(10) unsigned NOT NULL,
  `country` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `state` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `city` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `adjustment_price` decimal(15,2) DEFAULT '0.00',
  `is_enabled` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_shipping_rule_items`
--

LOCK TABLES `ec_shipping_rule_items` WRITE;
/*!40000 ALTER TABLE `ec_shipping_rule_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_shipping_rule_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_shipping_rules`
--

DROP TABLE IF EXISTS `ec_shipping_rules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_shipping_rules` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `shipping_id` int(10) unsigned NOT NULL,
  `type` enum('base_on_price','base_on_weight') COLLATE utf8mb4_unicode_ci DEFAULT 'base_on_price',
  `currency_id` int(10) unsigned DEFAULT NULL,
  `from` decimal(15,2) DEFAULT '0.00',
  `to` decimal(15,2) DEFAULT '0.00',
  `price` decimal(15,2) DEFAULT '0.00',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_shipping_rules`
--

LOCK TABLES `ec_shipping_rules` WRITE;
/*!40000 ALTER TABLE `ec_shipping_rules` DISABLE KEYS */;
INSERT INTO `ec_shipping_rules` VALUES (1,'Delivery',1,'base_on_price',NULL,0.00,NULL,0.00,'2021-07-02 21:03:24','2021-07-02 21:03:24');
/*!40000 ALTER TABLE `ec_shipping_rules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_store_locators`
--

DROP TABLE IF EXISTS `ec_store_locators`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_store_locators` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `country` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `state` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `city` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_primary` tinyint(1) DEFAULT '0',
  `is_shipping_location` tinyint(1) DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_store_locators`
--

LOCK TABLES `ec_store_locators` WRITE;
/*!40000 ALTER TABLE `ec_store_locators` DISABLE KEYS */;
INSERT INTO `ec_store_locators` VALUES (1,'Shopwise','sales@botble.com','123-456-7890','123 Street, Old Trafford','US','New York','New York',1,1,'2021-07-02 21:03:29','2021-07-02 21:03:29');
/*!40000 ALTER TABLE `ec_store_locators` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_taxes`
--

DROP TABLE IF EXISTS `ec_taxes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_taxes` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `percentage` double(8,6) DEFAULT NULL,
  `priority` int(11) DEFAULT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_taxes`
--

LOCK TABLES `ec_taxes` WRITE;
/*!40000 ALTER TABLE `ec_taxes` DISABLE KEYS */;
INSERT INTO `ec_taxes` VALUES (1,'VAT',10.000000,1,'published','2021-07-02 21:03:24','2021-07-02 21:03:24'),(2,'None',0.000000,2,'published','2021-07-02 21:03:24','2021-07-02 21:03:24');
/*!40000 ALTER TABLE `ec_taxes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_wish_lists`
--

DROP TABLE IF EXISTS `ec_wish_lists`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ec_wish_lists` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_wish_lists`
--

LOCK TABLES `ec_wish_lists` WRITE;
/*!40000 ALTER TABLE `ec_wish_lists` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_wish_lists` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `failed_jobs`
--

DROP TABLE IF EXISTS `failed_jobs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `failed_jobs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `uuid` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `failed_jobs`
--

LOCK TABLES `failed_jobs` WRITE;
/*!40000 ALTER TABLE `failed_jobs` DISABLE KEYS */;
/*!40000 ALTER TABLE `failed_jobs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jobs`
--

DROP TABLE IF EXISTS `jobs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jobs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `attempts` tinyint(3) unsigned NOT NULL,
  `reserved_at` int(10) unsigned DEFAULT NULL,
  `available_at` int(10) unsigned NOT NULL,
  `created_at` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `jobs_queue_index` (`queue`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jobs`
--

LOCK TABLES `jobs` WRITE;
/*!40000 ALTER TABLE `jobs` DISABLE KEYS */;
/*!40000 ALTER TABLE `jobs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `media_files`
--

DROP TABLE IF EXISTS `media_files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `media_files` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `folder_id` int(10) unsigned NOT NULL DEFAULT '0',
  `mime_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `size` int(11) NOT NULL,
  `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `options` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `media_files_user_id_index` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=780 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `media_files`
--

LOCK TABLES `media_files` WRITE;
/*!40000 ALTER TABLE `media_files` DISABLE KEYS */;
INSERT INTO `media_files` VALUES (659,0,'1',39,'image/png',3509,'brands/1.png','[]','2021-07-02 21:02:29','2021-07-02 21:02:29',NULL),(660,0,'2',39,'image/png',3505,'brands/2.png','[]','2021-07-02 21:02:29','2021-07-02 21:02:29',NULL),(661,0,'3',39,'image/png',2585,'brands/3.png','[]','2021-07-02 21:02:29','2021-07-02 21:02:29',NULL),(662,0,'4',39,'image/png',6427,'brands/4.png','[]','2021-07-02 21:02:29','2021-07-02 21:02:29',NULL),(663,0,'5',39,'image/png',3246,'brands/5.png','[]','2021-07-02 21:02:30','2021-07-02 21:02:30',NULL),(664,0,'6',39,'image/png',3276,'brands/6.png','[]','2021-07-02 21:02:30','2021-07-02 21:02:30',NULL),(665,0,'7',39,'image/png',3120,'brands/7.png','[]','2021-07-02 21:02:30','2021-07-02 21:02:30',NULL),(666,0,'p-1',40,'image/png',9577,'product-categories/p-1.png','[]','2021-07-02 21:02:30','2021-07-02 21:02:30',NULL),(667,0,'p-2',40,'image/png',5510,'product-categories/p-2.png','[]','2021-07-02 21:02:30','2021-07-02 21:02:30',NULL),(668,0,'p-3',40,'image/png',16215,'product-categories/p-3.png','[]','2021-07-02 21:02:31','2021-07-02 21:02:31',NULL),(669,0,'p-4',40,'image/png',7394,'product-categories/p-4.png','[]','2021-07-02 21:02:31','2021-07-02 21:02:31',NULL),(670,0,'p-5',40,'image/png',6714,'product-categories/p-5.png','[]','2021-07-02 21:02:31','2021-07-02 21:02:31',NULL),(671,0,'p-6',40,'image/png',9541,'product-categories/p-6.png','[]','2021-07-02 21:02:31','2021-07-02 21:02:31',NULL),(672,0,'p-7',40,'image/png',13677,'product-categories/p-7.png','[]','2021-07-02 21:02:32','2021-07-02 21:02:32',NULL),(673,0,'1',41,'image/jpeg',11752,'customers/1.jpg','[]','2021-07-02 21:02:32','2021-07-02 21:02:32',NULL),(674,0,'10',41,'image/jpeg',27814,'customers/10.jpg','[]','2021-07-02 21:02:32','2021-07-02 21:02:32',NULL),(675,0,'2',41,'image/jpeg',19005,'customers/2.jpg','[]','2021-07-02 21:02:32','2021-07-02 21:02:32',NULL),(676,0,'3',41,'image/jpeg',20400,'customers/3.jpg','[]','2021-07-02 21:02:33','2021-07-02 21:02:33',NULL),(677,0,'4',41,'image/jpeg',26819,'customers/4.jpg','[]','2021-07-02 21:02:33','2021-07-02 21:02:33',NULL),(678,0,'5',41,'image/jpeg',14367,'customers/5.jpg','[]','2021-07-02 21:02:33','2021-07-02 21:02:33',NULL),(679,0,'6',41,'image/jpeg',12367,'customers/6.jpg','[]','2021-07-02 21:02:33','2021-07-02 21:02:33',NULL),(680,0,'7',41,'image/jpeg',20652,'customers/7.jpg','[]','2021-07-02 21:02:33','2021-07-02 21:02:33',NULL),(681,0,'8',41,'image/jpeg',21164,'customers/8.jpg','[]','2021-07-02 21:02:33','2021-07-02 21:02:33',NULL),(682,0,'9',41,'image/jpeg',6084,'customers/9.jpg','[]','2021-07-02 21:02:33','2021-07-02 21:02:33',NULL),(683,0,'1-1',42,'image/jpeg',88437,'products/1-1.jpg','[]','2021-07-02 21:02:37','2021-07-02 21:02:37',NULL),(684,0,'1-2',42,'image/jpeg',122690,'products/1-2.jpg','[]','2021-07-02 21:02:37','2021-07-02 21:02:37',NULL),(685,0,'1-3',42,'image/jpeg',117296,'products/1-3.jpg','[]','2021-07-02 21:02:38','2021-07-02 21:02:38',NULL),(686,0,'1',42,'image/jpeg',139025,'products/1.jpg','[]','2021-07-02 21:02:38','2021-07-02 21:02:38',NULL),(687,0,'10-1',42,'image/jpeg',183491,'products/10-1.jpg','[]','2021-07-02 21:02:39','2021-07-02 21:02:39',NULL),(688,0,'10',42,'image/jpeg',150956,'products/10.jpg','[]','2021-07-02 21:02:40','2021-07-02 21:02:40',NULL),(689,0,'11-1',42,'image/jpeg',246200,'products/11-1.jpg','[]','2021-07-02 21:02:40','2021-07-02 21:02:40',NULL),(690,0,'11',42,'image/jpeg',279390,'products/11.jpg','[]','2021-07-02 21:02:41','2021-07-02 21:02:41',NULL),(691,0,'12-1',42,'image/jpeg',249712,'products/12-1.jpg','[]','2021-07-02 21:02:41','2021-07-02 21:02:41',NULL),(692,0,'12',42,'image/jpeg',172221,'products/12.jpg','[]','2021-07-02 21:02:42','2021-07-02 21:02:42',NULL),(693,0,'13-1',42,'image/jpeg',257021,'products/13-1.jpg','[]','2021-07-02 21:02:43','2021-07-02 21:02:43',NULL),(694,0,'13',42,'image/jpeg',232917,'products/13.jpg','[]','2021-07-02 21:02:43','2021-07-02 21:02:43',NULL),(695,0,'14-1',42,'image/jpeg',201773,'products/14-1.jpg','[]','2021-07-02 21:02:44','2021-07-02 21:02:44',NULL),(696,0,'14',42,'image/jpeg',287194,'products/14.jpg','[]','2021-07-02 21:02:44','2021-07-02 21:02:44',NULL),(697,0,'15-1',42,'image/jpeg',273720,'products/15-1.jpg','[]','2021-07-02 21:02:45','2021-07-02 21:02:45',NULL),(698,0,'15',42,'image/jpeg',114265,'products/15.jpg','[]','2021-07-02 21:02:46','2021-07-02 21:02:46',NULL),(699,0,'16',42,'image/jpeg',97174,'products/16.jpg','[]','2021-07-02 21:02:46','2021-07-02 21:02:46',NULL),(700,0,'17',42,'image/jpeg',70179,'products/17.jpg','[]','2021-07-02 21:02:48','2021-07-02 21:02:48',NULL),(701,0,'18-1',42,'image/jpeg',287835,'products/18-1.jpg','[]','2021-07-02 21:02:49','2021-07-02 21:02:49',NULL),(702,0,'18-2',42,'image/jpeg',454869,'products/18-2.jpg','[]','2021-07-02 21:02:51','2021-07-02 21:02:51',NULL),(703,0,'18',42,'image/jpeg',257331,'products/18.jpg','[]','2021-07-02 21:02:53','2021-07-02 21:02:53',NULL),(704,0,'19-1',42,'image/jpeg',144008,'products/19-1.jpg','[]','2021-07-02 21:02:54','2021-07-02 21:02:54',NULL),(705,0,'19',42,'image/jpeg',188821,'products/19.jpg','[]','2021-07-02 21:02:55','2021-07-02 21:02:55',NULL),(706,0,'2-1',42,'image/jpeg',138167,'products/2-1.jpg','[]','2021-07-02 21:02:56','2021-07-02 21:02:56',NULL),(707,0,'2-2',42,'image/jpeg',230552,'products/2-2.jpg','[]','2021-07-02 21:02:56','2021-07-02 21:02:56',NULL),(708,0,'2-3',42,'image/jpeg',179301,'products/2-3.jpg','[]','2021-07-02 21:02:57','2021-07-02 21:02:57',NULL),(709,0,'2',42,'image/jpeg',130048,'products/2.jpg','[]','2021-07-02 21:02:57','2021-07-02 21:02:57',NULL),(710,0,'20-1',42,'image/jpeg',249712,'products/20-1.jpg','[]','2021-07-02 21:02:58','2021-07-02 21:02:58',NULL),(711,0,'20',42,'image/jpeg',172221,'products/20.jpg','[]','2021-07-02 21:02:58','2021-07-02 21:02:58',NULL),(712,0,'21-1',42,'image/jpeg',260746,'products/21-1.jpg','[]','2021-07-02 21:02:59','2021-07-02 21:02:59',NULL),(713,0,'21',42,'image/jpeg',124244,'products/21.jpg','[]','2021-07-02 21:03:00','2021-07-02 21:03:00',NULL),(714,0,'22-1',42,'image/jpeg',268620,'products/22-1.jpg','[]','2021-07-02 21:03:01','2021-07-02 21:03:01',NULL),(715,0,'22',42,'image/jpeg',128692,'products/22.jpg','[]','2021-07-02 21:03:03','2021-07-02 21:03:03',NULL),(716,0,'23-1',42,'image/jpeg',105560,'products/23-1.jpg','[]','2021-07-02 21:03:04','2021-07-02 21:03:04',NULL),(717,0,'23',42,'image/jpeg',177362,'products/23.jpg','[]','2021-07-02 21:03:05','2021-07-02 21:03:05',NULL),(718,0,'24-1',42,'image/jpeg',239311,'products/24-1.jpg','[]','2021-07-02 21:03:06','2021-07-02 21:03:06',NULL),(719,0,'24',42,'image/jpeg',363853,'products/24.jpg','[]','2021-07-02 21:03:07','2021-07-02 21:03:07',NULL),(720,0,'25-1',42,'image/jpeg',17089,'products/25-1.jpg','[]','2021-07-02 21:03:09','2021-07-02 21:03:09',NULL),(721,0,'25',42,'image/jpeg',18069,'products/25.jpg','[]','2021-07-02 21:03:09','2021-07-02 21:03:09',NULL),(722,0,'26-1',42,'image/jpeg',13085,'products/26-1.jpg','[]','2021-07-02 21:03:09','2021-07-02 21:03:09',NULL),(723,0,'26-2',42,'image/jpeg',22667,'products/26-2.jpg','[]','2021-07-02 21:03:09','2021-07-02 21:03:09',NULL),(724,0,'26',42,'image/jpeg',13611,'products/26.jpg','[]','2021-07-02 21:03:10','2021-07-02 21:03:10',NULL),(725,0,'27-1',42,'image/jpeg',10286,'products/27-1.jpg','[]','2021-07-02 21:03:10','2021-07-02 21:03:10',NULL),(726,0,'27',42,'image/jpeg',12569,'products/27.jpg','[]','2021-07-02 21:03:10','2021-07-02 21:03:10',NULL),(727,0,'28-1',42,'image/jpeg',15654,'products/28-1.jpg','[]','2021-07-02 21:03:10','2021-07-02 21:03:10',NULL),(728,0,'28',42,'image/jpeg',18243,'products/28.jpg','[]','2021-07-02 21:03:10','2021-07-02 21:03:10',NULL),(729,0,'29-1',42,'image/jpeg',27890,'products/29-1.jpg','[]','2021-07-02 21:03:10','2021-07-02 21:03:10',NULL),(730,0,'29',42,'image/jpeg',27961,'products/29.jpg','[]','2021-07-02 21:03:10','2021-07-02 21:03:10',NULL),(731,0,'3-1',42,'image/jpeg',135741,'products/3-1.jpg','[]','2021-07-02 21:03:11','2021-07-02 21:03:11',NULL),(732,0,'3-2',42,'image/jpeg',123069,'products/3-2.jpg','[]','2021-07-02 21:03:11','2021-07-02 21:03:11',NULL),(733,0,'3-3',42,'image/jpeg',98645,'products/3-3.jpg','[]','2021-07-02 21:03:12','2021-07-02 21:03:12',NULL),(734,0,'3',42,'image/jpeg',201722,'products/3.jpg','[]','2021-07-02 21:03:12','2021-07-02 21:03:12',NULL),(735,0,'30-1',42,'image/jpeg',26283,'products/30-1.jpg','[]','2021-07-02 21:03:13','2021-07-02 21:03:13',NULL),(736,0,'30',42,'image/jpeg',27107,'products/30.jpg','[]','2021-07-02 21:03:13','2021-07-02 21:03:13',NULL),(737,0,'31-1',42,'image/jpeg',25924,'products/31-1.jpg','[]','2021-07-02 21:03:13','2021-07-02 21:03:13',NULL),(738,0,'31',42,'image/jpeg',18634,'products/31.jpg','[]','2021-07-02 21:03:14','2021-07-02 21:03:14',NULL),(739,0,'4-1',42,'image/jpeg',205312,'products/4-1.jpg','[]','2021-07-02 21:03:14','2021-07-02 21:03:14',NULL),(740,0,'4-2',42,'image/jpeg',223903,'products/4-2.jpg','[]','2021-07-02 21:03:14','2021-07-02 21:03:14',NULL),(741,0,'4-3',42,'image/jpeg',106593,'products/4-3.jpg','[]','2021-07-02 21:03:15','2021-07-02 21:03:15',NULL),(742,0,'4',42,'image/jpeg',456134,'products/4.jpg','[]','2021-07-02 21:03:15','2021-07-02 21:03:15',NULL),(743,0,'5-1',42,'image/jpeg',110014,'products/5-1.jpg','[]','2021-07-02 21:03:16','2021-07-02 21:03:16',NULL),(744,0,'5-2',42,'image/jpeg',104934,'products/5-2.jpg','[]','2021-07-02 21:03:17','2021-07-02 21:03:17',NULL),(745,0,'5-3',42,'image/jpeg',131628,'products/5-3.jpg','[]','2021-07-02 21:03:17','2021-07-02 21:03:17',NULL),(746,0,'5',42,'image/jpeg',214767,'products/5.jpg','[]','2021-07-02 21:03:18','2021-07-02 21:03:18',NULL),(747,0,'6-1',42,'image/jpeg',128041,'products/6-1.jpg','[]','2021-07-02 21:03:18','2021-07-02 21:03:18',NULL),(748,0,'6',42,'image/jpeg',148485,'products/6.jpg','[]','2021-07-02 21:03:19','2021-07-02 21:03:19',NULL),(749,0,'7-1',42,'image/jpeg',144008,'products/7-1.jpg','[]','2021-07-02 21:03:20','2021-07-02 21:03:20',NULL),(750,0,'7',42,'image/jpeg',188821,'products/7.jpg','[]','2021-07-02 21:03:20','2021-07-02 21:03:20',NULL),(751,0,'8-1',42,'image/jpeg',274272,'products/8-1.jpg','[]','2021-07-02 21:03:21','2021-07-02 21:03:21',NULL),(752,0,'8',42,'image/jpeg',217862,'products/8.jpg','[]','2021-07-02 21:03:21','2021-07-02 21:03:21',NULL),(753,0,'9-1',42,'image/jpeg',65624,'products/9-1.jpg','[]','2021-07-02 21:03:22','2021-07-02 21:03:22',NULL),(754,0,'9',42,'image/jpeg',159636,'products/9.jpg','[]','2021-07-02 21:03:23','2021-07-02 21:03:23',NULL),(755,0,'1',43,'image/jpeg',82629,'news/1.jpg','[]','2021-07-02 21:03:25','2021-07-02 21:03:25',NULL),(756,0,'2',43,'image/jpeg',119904,'news/2.jpg','[]','2021-07-02 21:03:26','2021-07-02 21:03:26',NULL),(757,0,'3',43,'image/jpeg',89543,'news/3.jpg','[]','2021-07-02 21:03:26','2021-07-02 21:03:26',NULL),(758,0,'4',43,'image/jpeg',51573,'news/4.jpg','[]','2021-07-02 21:03:26','2021-07-02 21:03:26',NULL),(759,0,'5',43,'image/jpeg',41164,'news/5.jpg','[]','2021-07-02 21:03:26','2021-07-02 21:03:26',NULL),(760,0,'6',43,'image/jpeg',80696,'news/6.jpg','[]','2021-07-02 21:03:26','2021-07-02 21:03:26',NULL),(761,0,'1',44,'image/jpeg',2733,'testimonials/1.jpg','[]','2021-07-02 21:03:27','2021-07-02 21:03:27',NULL),(762,0,'2',44,'image/jpeg',2840,'testimonials/2.jpg','[]','2021-07-02 21:03:27','2021-07-02 21:03:27',NULL),(763,0,'3',44,'image/jpeg',3065,'testimonials/3.jpg','[]','2021-07-02 21:03:27','2021-07-02 21:03:27',NULL),(764,0,'4',44,'image/jpeg',2559,'testimonials/4.jpg','[]','2021-07-02 21:03:27','2021-07-02 21:03:27',NULL),(765,0,'1',45,'image/jpeg',98636,'sliders/1.jpg','[]','2021-07-02 21:03:28','2021-07-02 21:03:28',NULL),(766,0,'2',45,'image/jpeg',22560,'sliders/2.jpg','[]','2021-07-02 21:03:28','2021-07-02 21:03:28',NULL),(767,0,'3',45,'image/jpeg',21630,'sliders/3.jpg','[]','2021-07-02 21:03:28','2021-07-02 21:03:28',NULL),(768,0,'american-express',46,'image/png',3209,'general/american-express.png','[]','2021-07-02 21:03:29','2021-07-02 21:03:29',NULL),(769,0,'b-1',46,'image/jpeg',20539,'general/b-1.jpg','[]','2021-07-02 21:03:29','2021-07-02 21:03:29',NULL),(770,0,'b-2',46,'image/jpeg',18320,'general/b-2.jpg','[]','2021-07-02 21:03:29','2021-07-02 21:03:29',NULL),(771,0,'b-3',46,'image/jpeg',42872,'general/b-3.jpg','[]','2021-07-02 21:03:29','2021-07-02 21:03:29',NULL),(772,0,'discover',46,'image/png',2494,'general/discover.png','[]','2021-07-02 21:03:30','2021-07-02 21:03:30',NULL),(773,0,'favicon',46,'image/png',1803,'general/favicon.png','[]','2021-07-02 21:03:30','2021-07-02 21:03:30',NULL),(774,0,'logo-light',46,'image/png',3736,'general/logo-light.png','[]','2021-07-02 21:03:30','2021-07-02 21:03:30',NULL),(775,0,'logo',46,'image/png',3927,'general/logo.png','[]','2021-07-02 21:03:30','2021-07-02 21:03:30',NULL),(776,0,'master-card',46,'image/png',3407,'general/master-card.png','[]','2021-07-02 21:03:30','2021-07-02 21:03:30',NULL),(777,0,'newsletter',46,'image/jpeg',48929,'general/newsletter.jpg','[]','2021-07-02 21:03:30','2021-07-02 21:03:30',NULL),(778,0,'paypal',46,'image/png',2670,'general/paypal.png','[]','2021-07-02 21:03:31','2021-07-02 21:03:31',NULL),(779,0,'visa',46,'image/png',2841,'general/visa.png','[]','2021-07-02 21:03:31','2021-07-02 21:03:31',NULL);
/*!40000 ALTER TABLE `media_files` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `media_folders`
--

DROP TABLE IF EXISTS `media_folders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `media_folders` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `parent_id` int(11) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `media_folders_user_id_index` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `media_folders`
--

LOCK TABLES `media_folders` WRITE;
/*!40000 ALTER TABLE `media_folders` DISABLE KEYS */;
INSERT INTO `media_folders` VALUES (39,0,'brands','brands',0,'2021-07-02 21:02:29','2021-07-02 21:02:29',NULL),(40,0,'product-categories','product-categories',0,'2021-07-02 21:02:30','2021-07-02 21:02:30',NULL),(41,0,'customers','customers',0,'2021-07-02 21:02:32','2021-07-02 21:02:32',NULL),(42,0,'products','products',0,'2021-07-02 21:02:37','2021-07-02 21:02:37',NULL),(43,0,'news','news',0,'2021-07-02 21:03:25','2021-07-02 21:03:25',NULL),(44,0,'testimonials','testimonials',0,'2021-07-02 21:03:27','2021-07-02 21:03:27',NULL),(45,0,'sliders','sliders',0,'2021-07-02 21:03:28','2021-07-02 21:03:28',NULL),(46,0,'general','general',0,'2021-07-02 21:03:29','2021-07-02 21:03:29',NULL);
/*!40000 ALTER TABLE `media_folders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `media_settings`
--

DROP TABLE IF EXISTS `media_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `media_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` text COLLATE utf8mb4_unicode_ci,
  `media_id` int(11) DEFAULT NULL,
  `user_id` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `media_settings`
--

LOCK TABLES `media_settings` WRITE;
/*!40000 ALTER TABLE `media_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `media_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `menu_locations`
--

DROP TABLE IF EXISTS `menu_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `menu_locations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `menu_id` int(10) unsigned NOT NULL,
  `location` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `menu_locations`
--

LOCK TABLES `menu_locations` WRITE;
/*!40000 ALTER TABLE `menu_locations` DISABLE KEYS */;
INSERT INTO `menu_locations` VALUES (1,1,'main-menu','2021-07-02 21:03:29','2021-07-02 21:03:29');
/*!40000 ALTER TABLE `menu_locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `menu_nodes`
--

DROP TABLE IF EXISTS `menu_nodes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `menu_nodes` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `menu_id` int(10) unsigned NOT NULL,
  `parent_id` int(10) unsigned NOT NULL DEFAULT '0',
  `reference_id` int(10) unsigned DEFAULT NULL,
  `reference_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `url` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `icon_font` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `position` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `title` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `css_class` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `target` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '_self',
  `has_child` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `menu_nodes_menu_id_index` (`menu_id`),
  KEY `menu_nodes_parent_id_index` (`parent_id`)
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `menu_nodes`
--

LOCK TABLES `menu_nodes` WRITE;
/*!40000 ALTER TABLE `menu_nodes` DISABLE KEYS */;
INSERT INTO `menu_nodes` VALUES (1,1,0,NULL,NULL,'/',NULL,0,'Home',NULL,'_self',0,'2021-07-02 21:03:29','2021-07-02 21:03:29'),(2,1,0,NULL,NULL,'/products',NULL,0,'Products',NULL,'_self',0,'2021-07-02 21:03:29','2021-07-02 21:03:29'),(3,1,0,NULL,NULL,'#',NULL,0,'Shop',NULL,'_self',1,'2021-07-02 21:03:29','2021-07-02 21:03:29'),(4,1,3,1,'Botble\\Ecommerce\\Models\\ProductCategory','/product-categories/television',NULL,0,'Product Category',NULL,'_self',0,'2021-07-02 21:03:29','2021-07-02 21:03:29'),(5,1,3,1,'Botble\\Ecommerce\\Models\\Brand','/brands/fashion-live',NULL,0,'Brand',NULL,'_self',0,'2021-07-02 21:03:29','2021-07-02 21:03:29'),(6,1,3,1,'Botble\\Ecommerce\\Models\\ProductTag','/product-tags/electronic',NULL,0,'Product Tag',NULL,'_self',0,'2021-07-02 21:03:29','2021-07-02 21:03:29'),(7,1,3,NULL,NULL,'products/beat-headphone',NULL,0,'Product Single',NULL,'_self',0,'2021-07-02 21:03:29','2021-07-02 21:03:29'),(8,1,0,3,'Botble\\Page\\Models\\Page','/blog',NULL,0,'Blog',NULL,'_self',1,'2021-07-02 21:03:29','2021-07-02 21:03:29'),(9,1,8,3,'Botble\\Page\\Models\\Page','/blog',NULL,0,'Blog Left Sidebar',NULL,'_self',0,'2021-07-02 21:03:29','2021-07-02 21:03:29'),(10,1,8,1,'Botble\\Blog\\Models\\Category','/news/ecommerce',NULL,0,'Blog Category',NULL,'_self',0,'2021-07-02 21:03:29','2021-07-02 21:03:29'),(11,1,8,1,'Botble\\Blog\\Models\\Tag','/tags/general',NULL,0,'Blog Tag',NULL,'_self',0,'2021-07-02 21:03:29','2021-07-02 21:03:29'),(12,1,8,NULL,NULL,'news/4-expert-tips-on-how-to-choose-the-right-mens-wallet',NULL,0,'Blog Single',NULL,'_self',0,'2021-07-02 21:03:29','2021-07-02 21:03:29'),(13,1,0,2,'Botble\\Page\\Models\\Page','/contact-us',NULL,0,'Contact us',NULL,'_self',0,'2021-07-02 21:03:29','2021-07-02 21:03:29'),(14,2,0,4,'Botble\\Page\\Models\\Page','/about-us',NULL,0,'About Us',NULL,'_self',0,'2021-07-02 21:03:29','2021-07-02 21:03:29'),(15,2,0,5,'Botble\\Page\\Models\\Page','/faq',NULL,0,'FAQ',NULL,'_self',0,'2021-07-02 21:03:29','2021-07-02 21:03:29'),(16,2,0,6,'Botble\\Page\\Models\\Page','/location',NULL,0,'Location',NULL,'_self',0,'2021-07-02 21:03:29','2021-07-02 21:03:29'),(17,2,0,7,'Botble\\Page\\Models\\Page','/affiliates',NULL,0,'Affiliates',NULL,'_self',0,'2021-07-02 21:03:29','2021-07-02 21:03:29'),(18,2,0,2,'Botble\\Page\\Models\\Page','/contact-us',NULL,0,'Contact',NULL,'_self',0,'2021-07-02 21:03:29','2021-07-02 21:03:29'),(19,3,0,1,'Botble\\Ecommerce\\Models\\ProductCategory','/product-categories/television',NULL,0,'Television',NULL,'_self',0,'2021-07-02 21:03:29','2021-07-02 21:03:29'),(20,3,0,2,'Botble\\Ecommerce\\Models\\ProductCategory','/product-categories/mobile',NULL,0,'Mobile',NULL,'_self',0,'2021-07-02 21:03:29','2021-07-02 21:03:29'),(21,3,0,3,'Botble\\Ecommerce\\Models\\ProductCategory','/product-categories/headphone',NULL,0,'Headphone',NULL,'_self',0,'2021-07-02 21:03:29','2021-07-02 21:03:29'),(22,3,0,4,'Botble\\Ecommerce\\Models\\ProductCategory','/product-categories/watches',NULL,0,'Watches',NULL,'_self',0,'2021-07-02 21:03:29','2021-07-02 21:03:29'),(23,3,0,5,'Botble\\Ecommerce\\Models\\ProductCategory','/product-categories/game',NULL,0,'Game',NULL,'_self',0,'2021-07-02 21:03:29','2021-07-02 21:03:29'),(24,4,0,NULL,NULL,'/customer/overview',NULL,0,'My profile',NULL,'_self',0,'2021-07-02 21:03:29','2021-07-02 21:03:29'),(25,4,0,NULL,NULL,'/wishlist',NULL,0,'Wishlist',NULL,'_self',0,'2021-07-02 21:03:29','2021-07-02 21:03:29'),(26,4,0,NULL,NULL,'customer/orders',NULL,0,'Orders',NULL,'_self',0,'2021-07-02 21:03:29','2021-07-02 21:03:29'),(27,4,0,NULL,NULL,'/orders/tracking',NULL,0,'Order tracking',NULL,'_self',0,'2021-07-02 21:03:29','2021-07-02 21:03:29');
/*!40000 ALTER TABLE `menu_nodes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `menus`
--

DROP TABLE IF EXISTS `menus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `menus` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `menus_slug_unique` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `menus`
--

LOCK TABLES `menus` WRITE;
/*!40000 ALTER TABLE `menus` DISABLE KEYS */;
INSERT INTO `menus` VALUES (1,'Main menu','main-menu','published','2021-07-02 21:03:29','2021-07-02 21:03:29'),(2,'Useful Links','useful-links','published','2021-07-02 21:03:29','2021-07-02 21:03:29'),(3,'Categories','categories','published','2021-07-02 21:03:29','2021-07-02 21:03:29'),(4,'My Account','my-account','published','2021-07-02 21:03:29','2021-07-02 21:03:29');
/*!40000 ALTER TABLE `menus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `meta_boxes`
--

DROP TABLE IF EXISTS `meta_boxes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `meta_boxes` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `meta_value` text COLLATE utf8mb4_unicode_ci,
  `reference_id` int(10) unsigned NOT NULL,
  `reference_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `meta_boxes_reference_id_index` (`reference_id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `meta_boxes`
--

LOCK TABLES `meta_boxes` WRITE;
/*!40000 ALTER TABLE `meta_boxes` DISABLE KEYS */;
INSERT INTO `meta_boxes` VALUES (1,'icon','[\"flaticon-tv\"]',1,'Botble\\Ecommerce\\Models\\ProductCategory','2021-05-03 02:01:00','2021-05-03 02:01:00'),(2,'icon','[\"flaticon-responsive\"]',2,'Botble\\Ecommerce\\Models\\ProductCategory','2021-05-03 02:01:00','2021-05-03 02:01:00'),(3,'icon','[\"flaticon-headphones\"]',3,'Botble\\Ecommerce\\Models\\ProductCategory','2021-05-03 02:01:00','2021-05-03 02:01:00'),(4,'icon','[\"flaticon-watch\"]',4,'Botble\\Ecommerce\\Models\\ProductCategory','2021-05-03 02:01:00','2021-05-03 02:01:00'),(5,'icon','[\"flaticon-console\"]',5,'Botble\\Ecommerce\\Models\\ProductCategory','2021-05-03 02:01:00','2021-05-03 02:01:00'),(6,'icon','[\"flaticon-camera\"]',6,'Botble\\Ecommerce\\Models\\ProductCategory','2021-05-03 02:01:00','2021-05-03 02:01:00'),(7,'icon','[\"flaticon-music-system\"]',7,'Botble\\Ecommerce\\Models\\ProductCategory','2021-05-03 02:01:00','2021-05-03 02:01:00'),(8,'icon','[\"flaticon-responsive\"]',8,'Botble\\Ecommerce\\Models\\ProductCategory','2021-05-03 02:01:00','2021-05-03 02:01:00'),(9,'icon','[\"flaticon-plugins\"]',9,'Botble\\Ecommerce\\Models\\ProductCategory','2021-05-03 02:01:00','2021-05-03 02:01:00'),(10,'icon','[\"flaticon-music-system\"]',10,'Botble\\Ecommerce\\Models\\ProductCategory','2021-05-03 02:01:00','2021-05-03 02:01:00'),(11,'icon','[\"flaticon-monitor\"]',11,'Botble\\Ecommerce\\Models\\ProductCategory','2021-05-03 02:01:00','2021-05-03 02:01:00'),(12,'icon','[\"flaticon-printer\"]',12,'Botble\\Ecommerce\\Models\\ProductCategory','2021-05-03 02:01:00','2021-05-03 02:01:00'),(13,'icon','[\"flaticon-tv\"]',13,'Botble\\Ecommerce\\Models\\ProductCategory','2021-05-03 02:01:00','2021-05-03 02:01:00'),(14,'icon','[\"flaticon-fax\"]',14,'Botble\\Ecommerce\\Models\\ProductCategory','2021-05-03 02:01:00','2021-05-03 02:01:00'),(15,'icon','[\"flaticon-mouse\"]',15,'Botble\\Ecommerce\\Models\\ProductCategory','2021-05-03 02:01:00','2021-05-03 02:01:00'),(16,'button_text','[\"Shop now\"]',1,'Botble\\SimpleSlider\\Models\\SimpleSliderItem','2021-07-02 20:17:18','2021-07-02 20:17:18'),(17,'button_text','[\"Discover now\"]',2,'Botble\\SimpleSlider\\Models\\SimpleSliderItem','2021-07-02 20:17:18','2021-07-02 20:17:18'),(18,'button_text','[\"Shop now\"]',3,'Botble\\SimpleSlider\\Models\\SimpleSliderItem','2021-07-02 20:17:18','2021-07-02 20:17:18');
/*!40000 ALTER TABLE `meta_boxes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `migrations`
--

DROP TABLE IF EXISTS `migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `migrations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `batch` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `migrations`
--

LOCK TABLES `migrations` WRITE;
/*!40000 ALTER TABLE `migrations` DISABLE KEYS */;
INSERT INTO `migrations` VALUES (1,'2013_04_09_032329_create_base_tables',1),(2,'2013_04_09_062329_create_revisions_table',1),(3,'2014_10_12_000000_create_users_table',1),(4,'2014_10_12_100000_create_password_resets_table',1),(5,'2015_06_18_033822_create_blog_table',1),(6,'2015_06_29_025744_create_audit_history',1),(7,'2016_06_10_230148_create_acl_tables',1),(8,'2016_06_14_230857_create_menus_table',1),(9,'2016_06_17_091537_create_contacts_table',1),(10,'2016_06_28_221418_create_pages_table',1),(11,'2016_10_05_074239_create_setting_table',1),(12,'2016_10_07_193005_create_translations_table',1),(13,'2016_11_28_032840_create_dashboard_widget_tables',1),(14,'2016_12_16_084601_create_widgets_table',1),(15,'2017_05_09_070343_create_media_tables',1),(16,'2017_05_18_080441_create_payment_tables',1),(17,'2017_07_11_140018_create_simple_slider_table',1),(18,'2017_10_24_154832_create_newsletter_table',1),(19,'2017_11_03_070450_create_slug_table',1),(20,'2018_07_09_214610_create_testimonial_table',1),(21,'2019_01_05_053554_create_jobs_table',1),(22,'2019_08_19_000000_create_failed_jobs_table',1),(23,'2020_03_05_041139_create_ecommerce_tables',1),(24,'2020_09_22_135635_update_taxes_table',1),(25,'2020_09_29_101006_add_views_into_ec_products_table',1),(26,'2020_10_01_152311_make_column_image_in_product_attributes_table_nullable',1),(27,'2020_10_06_073439_improve_ecommerce_database',1),(28,'2020_11_01_040415_update_table_ec_order_addresses',1),(29,'2020_11_04_091510_make_column_phone_in_order_addresses_nullable',1),(30,'2020_11_30_015801_update_table_ec_product_categories',1),(31,'2021_01_01_044147_ecommerce_create_flash_sale_table',1),(32,'2021_01_17_082713_add_column_is_featured_to_product_collections_table',1),(33,'2021_01_18_024333_add_zip_code_into_table_customer_addresses',1),(34,'2021_02_16_092633_remove_default_value_for_author_type',1),(35,'2021_02_18_073505_update_table_ec_reviews',1),(36,'2021_03_10_024419_add_column_confirmed_at_to_table_ec_customers',1),(37,'2021_03_10_025153_change_column_tax_amount',1),(38,'2021_03_20_033103_add_column_availability_to_table_ec_products',1),(39,'2021_03_27_144913_add_customer_type_into_table_payments',1),(40,'2021_04_28_074008_ecommerce_create_product_label_table',1),(41,'2021_05_24_034720_make_column_currency_nullable',2),(42,'2021_06_28_153141_correct_slugs_data',3),(43,'2021_07_18_101839_fix_old_theme_options',4);
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `newsletters`
--

DROP TABLE IF EXISTS `newsletters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `newsletters` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `email` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'subscribed',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newsletters`
--

LOCK TABLES `newsletters` WRITE;
/*!40000 ALTER TABLE `newsletters` DISABLE KEYS */;
/*!40000 ALTER TABLE `newsletters` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `pages`
--

DROP TABLE IF EXISTS `pages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci,
  `user_id` int(11) NOT NULL,
  `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `template` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_featured` tinyint(4) NOT NULL DEFAULT '0',
  `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pages`
--

LOCK TABLES `pages` WRITE;
/*!40000 ALTER TABLE `pages` DISABLE KEYS */;
INSERT INTO `pages` VALUES (1,'Home','<div>[simple-slider key=\"home-slider\"][/simple-slider]</div><div>[featured-product-categories title=\"Top Categories\" description=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus blandit massa enim Nullam nunc varius.\"][/featured-product-categories]</div><div>[flash-sale title=\"Best deals for you\"][/flash-sale]</div><div>[product-collections title=\"Exclusive Products\"][/product-collections]</div><div>[banners image1=\"general/b-1.jpg\" url1=\"/product-categories/headphone\" image2=\"general/b-2.jpg\" url2=\"/product-categories/camera\" image3=\"general/b-3.jpg\" url3=\"/product-categories/watches\"][/banners]</div><div>[trending-products title=\"Trending Products\"][[/trending-products]</div><div>[product-blocks featured_product_title=\"Featured Products\" top_rated_product_title=\"Top Rated Products\" on_sale_product_title=\"On Sale Products\"][/product-blocks]</div><div>[featured-brands title=\"Our Brands\"][/featured-brands]</div><div>[featured-news title=\"Visit Our Blog\" description=\"Our Blog updated the newest trend of the world regularly\"][/featured-news]</div><div>[testimonials title=\"Our Client Say!\"][/testimonials]</div><div>[our-features icon1=\"flaticon-shipped\" title1=\"Free Delivery\" description1=\"Free shipping on all US order or order above $200\" icon2=\"flaticon-money-back\" title2=\"30 Day Returns Guarantee\" description2=\"Simply return it within 30 days for an exchange\" icon3=\"flaticon-support\" title3=\"27/4 Online Support\" description3=\"Contact us 24 hours a day, 7 days a week\"][/our-features]</div><div>[newsletter-form title=\"Join Our Newsletter Now\" description=\"Register now to get updates on promotions.\"][/newsletter-form]</div>',1,NULL,'homepage',0,NULL,'published','2021-07-02 21:03:29','2021-07-02 21:03:29'),(2,'Contact us','<p>[contact-form][/contact-form]</p>',1,NULL,'default',0,NULL,'published','2021-07-02 21:03:29','2021-07-02 21:03:29'),(3,'Blog','<p>---</p>',1,NULL,'blog-sidebar',0,NULL,'published','2021-07-02 21:03:29','2021-07-02 21:03:29'),(4,'About us','<p>His voice has a timid voice at her feet, for it to speak with. Alice waited a little, \'From the Queen. \'Never!\' said the King; \'and don\'t be nervous, or I\'ll kick you down stairs!\' \'That is not said right,\' said the King, and the choking of the goldfish kept running in her pocket) till she was losing her temper. \'Are you content now?\' said the Knave, \'I didn\'t know that you\'re mad?\' \'To begin with,\' said the Caterpillar. \'Well, perhaps not,\' said the Mock Turtle is.\' \'It\'s the oldest rule in.</p>',1,NULL,'default',0,NULL,'published','2021-07-02 21:03:29','2021-07-02 21:03:29'),(5,'FAQ','<p>CHORUS. \'Wow! wow! wow!\' While the Duchess and the words \'EAT ME\' were beautifully marked in currants. \'Well, I\'ll eat it,\' said the Dormouse, not choosing to notice this last remark. \'Of course you don\'t!\' the Hatter asked triumphantly. Alice did not venture to go near the King said gravely, \'and go on crying in this way! Stop this moment, I tell you!\' said Alice. \'It must be off, then!\' said the Mock Turtle repeated thoughtfully. \'I should like to show you! A little bright-eyed terrier, you.</p>',1,NULL,'default',0,NULL,'published','2021-07-02 21:03:29','2021-07-02 21:03:29'),(6,'Location','<p>Turtle--we used to it!\' pleaded poor Alice began to get to,\' said the Gryphon, the squeaking of the players to be said. At last the Mock Turtle drew a long way back, and barking hoarsely all the time she had tired herself out with his head!\' or \'Off with his tea spoon at the Gryphon at the righthand bit again, and that\'s very like a candle. I wonder who will put on one knee as he spoke. \'UNimportant, of course, I meant,\' the King and the moon, and memory, and muchness--you know you say things.</p>',1,NULL,'default',0,NULL,'published','2021-07-02 21:03:29','2021-07-02 21:03:29'),(7,'Affiliates','<p>It sounded an excellent opportunity for making her escape; so she took up the other, and making quite a new pair of boots every Christmas.\' And she began thinking over other children she knew, who might do something better with the distant sobs of the court. \'What do you know about it, and fortunately was just in time to be trampled under its feet, \'I move that the meeting adjourn, for the garden!\' and she thought at first was moderate. But the snail replied \"Too far, too far!\" and gave a.</p>',1,NULL,'default',0,NULL,'published','2021-07-02 21:03:29','2021-07-02 21:03:29'),(8,'Brands','<p>[all-brands][/all-brands]</p>',1,NULL,'default',0,NULL,'published','2021-07-02 21:03:29','2021-07-02 21:03:29'),(9,'Cookie Policy','<h3>EU Cookie Consent</h3><p>To use this Website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.</p><h4>Essential Data</h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.</p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.</p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \"token\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.</p>',1,NULL,'default',0,NULL,'published','2021-07-02 21:03:29','2021-07-02 21:03:29');
/*!40000 ALTER TABLE `pages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `password_resets`
--

DROP TABLE IF EXISTS `password_resets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `password_resets` (
  `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  KEY `password_resets_email_index` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `password_resets`
--

LOCK TABLES `password_resets` WRITE;
/*!40000 ALTER TABLE `password_resets` DISABLE KEYS */;
/*!40000 ALTER TABLE `password_resets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `payments`
--

DROP TABLE IF EXISTS `payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payments` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `currency` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_id` int(10) unsigned NOT NULL DEFAULT '0',
  `charge_id` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payment_channel` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `amount` decimal(15,2) unsigned NOT NULL,
  `order_id` int(10) unsigned DEFAULT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT 'pending',
  `payment_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT 'confirm',
  `customer_id` int(10) unsigned DEFAULT NULL,
  `refunded_amount` decimal(15,2) unsigned DEFAULT NULL,
  `refund_note` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `customer_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payments`
--

LOCK TABLES `payments` WRITE;
/*!40000 ALTER TABLE `payments` DISABLE KEYS */;
INSERT INTO `payments` VALUES (1,'USD',0,'XPX66PLWAX','paypal',NULL,187.28,1,'completed','confirm',NULL,NULL,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25',NULL),(2,'USD',0,'ENR1BZYMBS','paystack',NULL,597.20,2,'completed','confirm',NULL,NULL,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25',NULL),(3,'USD',0,'CYZ5QTMRS5','sslcommerz',NULL,214.50,3,'completed','confirm',NULL,NULL,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25',NULL),(4,'USD',0,'RFDQMXJNSW','paypal',NULL,330.40,4,'completed','confirm',NULL,NULL,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25',NULL),(5,'USD',0,'XLMMUU9JXO','bank_transfer',NULL,1915.80,5,'pending','confirm',NULL,NULL,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25',NULL),(6,'USD',0,'7PDKC51BT2','cod',NULL,1145.10,6,'pending','confirm',NULL,NULL,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25',NULL),(7,'USD',0,'ZV4GG1KBGY','stripe',NULL,1075.40,7,'completed','confirm',NULL,NULL,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25',NULL),(8,'USD',0,'YDN8A2KXJP','paystack',NULL,430.50,8,'completed','confirm',NULL,NULL,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25',NULL),(9,'USD',0,'QP237WDGZW','paypal',NULL,435.80,9,'completed','confirm',NULL,NULL,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25',NULL),(10,'USD',0,'GO5OZXPEPS','stripe',NULL,658.90,10,'completed','confirm',NULL,NULL,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25',NULL),(11,'USD',0,'57OPA5PVY1','paystack',NULL,655.60,11,'completed','confirm',NULL,NULL,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25',NULL),(12,'USD',0,'9KJDI5OLDG','mollie',NULL,1009.30,12,'completed','confirm',NULL,NULL,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25',NULL),(13,'USD',0,'HJ0Y1Y2CRT','paystack',NULL,749.00,13,'completed','confirm',NULL,NULL,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25',NULL),(14,'USD',0,'NDJUM3ZLBY','bank_transfer',NULL,326.55,14,'pending','confirm',NULL,NULL,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25',NULL),(15,'USD',0,'LZN9IR2O0R','cod',NULL,1194.00,15,'pending','confirm',NULL,NULL,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25',NULL),(16,'USD',0,'E0Q9JB1OKK','sslcommerz',NULL,1027.10,16,'completed','confirm',NULL,NULL,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25',NULL),(17,'USD',0,'6ODVIVCPLB','paystack',NULL,662.78,17,'completed','confirm',NULL,NULL,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25',NULL),(18,'USD',0,'6JW67TIENK','cod',NULL,816.20,18,'pending','confirm',NULL,NULL,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25',NULL),(19,'USD',0,'E9IAGDDCXT','stripe',NULL,228.25,19,'completed','confirm',NULL,NULL,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25',NULL),(20,'USD',0,'TWVM80OOO3','bank_transfer',NULL,346.50,20,'pending','confirm',NULL,NULL,NULL,'2021-07-02 21:03:25','2021-07-02 21:03:25',NULL);
/*!40000 ALTER TABLE `payments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `post_categories`
--

DROP TABLE IF EXISTS `post_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `post_categories` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `category_id` int(10) unsigned NOT NULL,
  `post_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `post_categories`
--

LOCK TABLES `post_categories` WRITE;
/*!40000 ALTER TABLE `post_categories` DISABLE KEYS */;
INSERT INTO `post_categories` VALUES (10,4,3),(19,1,1),(20,4,2),(21,3,4),(22,1,5),(23,2,6);
/*!40000 ALTER TABLE `post_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `post_tags`
--

DROP TABLE IF EXISTS `post_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `post_tags` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tag_id` int(10) unsigned NOT NULL,
  `post_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `post_tags`
--

LOCK TABLES `post_tags` WRITE;
/*!40000 ALTER TABLE `post_tags` DISABLE KEYS */;
INSERT INTO `post_tags` VALUES (1,1,1),(2,2,1),(3,3,1),(4,4,1),(5,5,1),(6,1,2),(7,2,2),(8,3,2),(9,4,2),(10,5,2),(11,1,3),(12,2,3),(13,3,3),(14,4,3),(15,5,3),(16,1,4),(17,2,4),(18,3,4),(19,4,4),(20,5,4),(21,1,5),(22,2,5),(23,3,5),(24,4,5),(25,5,5),(26,1,6),(27,2,6),(28,3,6),(29,4,6),(30,5,6);
/*!40000 ALTER TABLE `post_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `posts`
--

DROP TABLE IF EXISTS `posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `posts` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `author_id` int(11) NOT NULL,
  `author_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  `is_featured` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `views` int(10) unsigned NOT NULL DEFAULT '0',
  `format_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `posts`
--

LOCK TABLES `posts` WRITE;
/*!40000 ALTER TABLE `posts` DISABLE KEYS */;
INSERT INTO `posts` VALUES (1,'4 Expert Tips On How To Choose The Right Men’s Wallet','You should pay more attention when you choose your wallets. There are a lot of them on the market with the different designs and styles. When you choose carefully, you would be able to buy a wallet that is catered to your needs. Not to mention that it will help to enhance your style significantly.','<p>I have seen many people underestimating the power of their wallets. To them, they are just a functional item they use to carry. As a result, they often end up with the wallets which are not really suitable for them.</p>\n\n<p>You should pay more attention when you choose your wallets. There are a lot of them on the market with the different designs and styles. When you choose carefully, you would be able to buy a wallet that is catered to your needs. Not to mention that it will help to enhance your style significantly.</p>\n\n<p style=\"text-align:center\"><img alt=\"f4\" src=\"/storage/news/1.jpg\" /></p>\n\n<p><br />\n&nbsp;</p>\n\n<p><strong><em>For all of the reason above, here are 7 expert tips to help you pick up the right men&rsquo;s wallet for you:</em></strong></p>\n\n<h4><strong>Number 1: Choose A Neat Wallet</strong></h4>\n\n<p>The wallet is an essential accessory that you should go simple. Simplicity is the best in this case. A simple and neat wallet with the plain color and even&nbsp;<strong>minimalist style</strong>&nbsp;is versatile. It can be used for both formal and casual events. In addition, that wallet will go well with most of the clothes in your wardrobe.</p>\n\n<p>Keep in mind that a wallet will tell other people about your personality and your fashion sense as much as other clothes you put on. Hence, don&rsquo;t go cheesy on your wallet or else people will think that you have a funny and particular style.</p>\n\n<p style=\"text-align:center\"><img alt=\"f5\" src=\"/storage/news/2.jpg\" /></p>\n\n<p><br />\n&nbsp;</p>\n\n<hr />\n<h4><strong>Number 2: Choose The Right Size For Your Wallet</strong></h4>\n\n<p>You should avoid having an over-sized wallet. Don&rsquo;t think that you need to buy a big wallet because you have a lot to carry with you. In addition, a fat wallet is very ugly. It will make it harder for you to slide the wallet into your trousers&rsquo; pocket. In addition, it will create a bulge and ruin your look.</p>\n\n<p>Before you go on to buy a new wallet, clean out your wallet and place all of the items from your wallet on a table. Throw away things that you would never need any more such as the old bills or the expired gift cards. Remember to check your wallet on a frequent basis to get rid of all of the old stuff that you don&rsquo;t need anymore.</p>\n\n<p style=\"text-align:center\"><img alt=\"f1\" src=\"/storage/news/3.jpg\" /></p>\n\n<p><br />\n&nbsp;</p>\n\n<hr />\n<h4><strong>Number 3: Don&rsquo;t Limit Your Options Of Materials</strong></h4>\n\n<p>The types and designs of wallets are not the only things that you should consider when you go out searching for your best wallet. You have more than 1 option of material rather than leather to choose from as well.</p>\n\n<p>You can experiment with other available options such as cotton, polyester and canvas. They all have their own pros and cons. As a result, they will be suitable for different needs and requirements. You should think about them all in order to choose the material which you would like the most.</p>\n\n<p style=\"text-align:center\"><img alt=\"f6\" src=\"/storage/news/4.jpg\" /></p>\n\n<p><br />\n&nbsp;</p>\n\n<hr />\n<h4><strong>Number 4: Consider A Wallet As A Long Term Investment</strong></h4>\n\n<p>Your wallet is indeed an investment that you should consider spending a decent amount of time and effort on it. Another factor that you need to consider is how much you want to spend on your wallet. The price ranges of wallets on the market vary a great deal. You can find a wallet which is as cheap as about 5 to 7 dollars. On the other hand, you should expect to pay around 250 to 300 dollars for a high-quality wallet.</p>\n\n<p>In case you need a wallet to use for a long time, it is a good idea that you should invest a decent amount of money on a wallet. A high quality wallet from a reputational brand with the premium quality such as cowhide leather will last for a long time. In addition, it is an accessory to show off your fashion sense and your social status.</p>\n\n<p style=\"text-align:center\"><img alt=\"f2\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/1.jpg',1018,NULL,'2021-07-02 21:03:27','2021-07-02 21:03:27'),(2,'Sexy Clutches: How to Buy & Wear a Designer Clutch Bag','There isn’t much a girl can’t handle with the right accessories. That’s why the perfect women’s clutch bag is a wardrobe essential for first dates and spring weddings.','<p>I have seen many people underestimating the power of their wallets. To them, they are just a functional item they use to carry. As a result, they often end up with the wallets which are not really suitable for them.</p>\n\n<p>You should pay more attention when you choose your wallets. There are a lot of them on the market with the different designs and styles. When you choose carefully, you would be able to buy a wallet that is catered to your needs. Not to mention that it will help to enhance your style significantly.</p>\n\n<p style=\"text-align:center\"><img alt=\"f4\" src=\"/storage/news/1.jpg\" /></p>\n\n<p><br />\n&nbsp;</p>\n\n<p><strong><em>For all of the reason above, here are 7 expert tips to help you pick up the right men&rsquo;s wallet for you:</em></strong></p>\n\n<h4><strong>Number 1: Choose A Neat Wallet</strong></h4>\n\n<p>The wallet is an essential accessory that you should go simple. Simplicity is the best in this case. A simple and neat wallet with the plain color and even&nbsp;<strong>minimalist style</strong>&nbsp;is versatile. It can be used for both formal and casual events. In addition, that wallet will go well with most of the clothes in your wardrobe.</p>\n\n<p>Keep in mind that a wallet will tell other people about your personality and your fashion sense as much as other clothes you put on. Hence, don&rsquo;t go cheesy on your wallet or else people will think that you have a funny and particular style.</p>\n\n<p style=\"text-align:center\"><img alt=\"f5\" src=\"/storage/news/2.jpg\" /></p>\n\n<p><br />\n&nbsp;</p>\n\n<hr />\n<h4><strong>Number 2: Choose The Right Size For Your Wallet</strong></h4>\n\n<p>You should avoid having an over-sized wallet. Don&rsquo;t think that you need to buy a big wallet because you have a lot to carry with you. In addition, a fat wallet is very ugly. It will make it harder for you to slide the wallet into your trousers&rsquo; pocket. In addition, it will create a bulge and ruin your look.</p>\n\n<p>Before you go on to buy a new wallet, clean out your wallet and place all of the items from your wallet on a table. Throw away things that you would never need any more such as the old bills or the expired gift cards. Remember to check your wallet on a frequent basis to get rid of all of the old stuff that you don&rsquo;t need anymore.</p>\n\n<p style=\"text-align:center\"><img alt=\"f1\" src=\"/storage/news/3.jpg\" /></p>\n\n<p><br />\n&nbsp;</p>\n\n<hr />\n<h4><strong>Number 3: Don&rsquo;t Limit Your Options Of Materials</strong></h4>\n\n<p>The types and designs of wallets are not the only things that you should consider when you go out searching for your best wallet. You have more than 1 option of material rather than leather to choose from as well.</p>\n\n<p>You can experiment with other available options such as cotton, polyester and canvas. They all have their own pros and cons. As a result, they will be suitable for different needs and requirements. You should think about them all in order to choose the material which you would like the most.</p>\n\n<p style=\"text-align:center\"><img alt=\"f6\" src=\"/storage/news/4.jpg\" /></p>\n\n<p><br />\n&nbsp;</p>\n\n<hr />\n<h4><strong>Number 4: Consider A Wallet As A Long Term Investment</strong></h4>\n\n<p>Your wallet is indeed an investment that you should consider spending a decent amount of time and effort on it. Another factor that you need to consider is how much you want to spend on your wallet. The price ranges of wallets on the market vary a great deal. You can find a wallet which is as cheap as about 5 to 7 dollars. On the other hand, you should expect to pay around 250 to 300 dollars for a high-quality wallet.</p>\n\n<p>In case you need a wallet to use for a long time, it is a good idea that you should invest a decent amount of money on a wallet. A high quality wallet from a reputational brand with the premium quality such as cowhide leather will last for a long time. In addition, it is an accessory to show off your fashion sense and your social status.</p>\n\n<p style=\"text-align:center\"><img alt=\"f2\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/2.jpg',359,NULL,'2021-07-02 21:03:27','2021-07-02 21:03:27'),(3,'The Top 2020 Handbag Trends to Know','For the handbag obsessives, let\'s dive into the latter a little more. This year will bring a fresh array of bag designs, and already we\'ve gotten a sneak peek of what both spring and fall 2020 collections have to offer/','<p>I have seen many people underestimating the power of their wallets. To them, they are just a functional item they use to carry. As a result, they often end up with the wallets which are not really suitable for them.</p>\n\n<p>You should pay more attention when you choose your wallets. There are a lot of them on the market with the different designs and styles. When you choose carefully, you would be able to buy a wallet that is catered to your needs. Not to mention that it will help to enhance your style significantly.</p>\n\n<p style=\"text-align:center\"><img alt=\"f4\" src=\"/storage/news/1.jpg\" /></p>\n\n<p><br />\n&nbsp;</p>\n\n<p><strong><em>For all of the reason above, here are 7 expert tips to help you pick up the right men&rsquo;s wallet for you:</em></strong></p>\n\n<h4><strong>Number 1: Choose A Neat Wallet</strong></h4>\n\n<p>The wallet is an essential accessory that you should go simple. Simplicity is the best in this case. A simple and neat wallet with the plain color and even&nbsp;<strong>minimalist style</strong>&nbsp;is versatile. It can be used for both formal and casual events. In addition, that wallet will go well with most of the clothes in your wardrobe.</p>\n\n<p>Keep in mind that a wallet will tell other people about your personality and your fashion sense as much as other clothes you put on. Hence, don&rsquo;t go cheesy on your wallet or else people will think that you have a funny and particular style.</p>\n\n<p style=\"text-align:center\"><img alt=\"f5\" src=\"/storage/news/2.jpg\" /></p>\n\n<p><br />\n&nbsp;</p>\n\n<hr />\n<h4><strong>Number 2: Choose The Right Size For Your Wallet</strong></h4>\n\n<p>You should avoid having an over-sized wallet. Don&rsquo;t think that you need to buy a big wallet because you have a lot to carry with you. In addition, a fat wallet is very ugly. It will make it harder for you to slide the wallet into your trousers&rsquo; pocket. In addition, it will create a bulge and ruin your look.</p>\n\n<p>Before you go on to buy a new wallet, clean out your wallet and place all of the items from your wallet on a table. Throw away things that you would never need any more such as the old bills or the expired gift cards. Remember to check your wallet on a frequent basis to get rid of all of the old stuff that you don&rsquo;t need anymore.</p>\n\n<p style=\"text-align:center\"><img alt=\"f1\" src=\"/storage/news/3.jpg\" /></p>\n\n<p><br />\n&nbsp;</p>\n\n<hr />\n<h4><strong>Number 3: Don&rsquo;t Limit Your Options Of Materials</strong></h4>\n\n<p>The types and designs of wallets are not the only things that you should consider when you go out searching for your best wallet. You have more than 1 option of material rather than leather to choose from as well.</p>\n\n<p>You can experiment with other available options such as cotton, polyester and canvas. They all have their own pros and cons. As a result, they will be suitable for different needs and requirements. You should think about them all in order to choose the material which you would like the most.</p>\n\n<p style=\"text-align:center\"><img alt=\"f6\" src=\"/storage/news/4.jpg\" /></p>\n\n<p><br />\n&nbsp;</p>\n\n<hr />\n<h4><strong>Number 4: Consider A Wallet As A Long Term Investment</strong></h4>\n\n<p>Your wallet is indeed an investment that you should consider spending a decent amount of time and effort on it. Another factor that you need to consider is how much you want to spend on your wallet. The price ranges of wallets on the market vary a great deal. You can find a wallet which is as cheap as about 5 to 7 dollars. On the other hand, you should expect to pay around 250 to 300 dollars for a high-quality wallet.</p>\n\n<p>In case you need a wallet to use for a long time, it is a good idea that you should invest a decent amount of money on a wallet. A high quality wallet from a reputational brand with the premium quality such as cowhide leather will last for a long time. In addition, it is an accessory to show off your fashion sense and your social status.</p>\n\n<p style=\"text-align:center\"><img alt=\"f2\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/3.jpg',397,NULL,'2021-07-02 21:03:27','2021-07-02 21:03:27'),(4,'How to Match the Color of Your Handbag With an Outfit','To match your multi-colored purses with your favorite outfits, simply select a complementary handbag hue that will make your outfit pop for work or the weekend.','<p>I have seen many people underestimating the power of their wallets. To them, they are just a functional item they use to carry. As a result, they often end up with the wallets which are not really suitable for them.</p>\n\n<p>You should pay more attention when you choose your wallets. There are a lot of them on the market with the different designs and styles. When you choose carefully, you would be able to buy a wallet that is catered to your needs. Not to mention that it will help to enhance your style significantly.</p>\n\n<p style=\"text-align:center\"><img alt=\"f4\" src=\"/storage/news/1.jpg\" /></p>\n\n<p><br />\n&nbsp;</p>\n\n<p><strong><em>For all of the reason above, here are 7 expert tips to help you pick up the right men&rsquo;s wallet for you:</em></strong></p>\n\n<h4><strong>Number 1: Choose A Neat Wallet</strong></h4>\n\n<p>The wallet is an essential accessory that you should go simple. Simplicity is the best in this case. A simple and neat wallet with the plain color and even&nbsp;<strong>minimalist style</strong>&nbsp;is versatile. It can be used for both formal and casual events. In addition, that wallet will go well with most of the clothes in your wardrobe.</p>\n\n<p>Keep in mind that a wallet will tell other people about your personality and your fashion sense as much as other clothes you put on. Hence, don&rsquo;t go cheesy on your wallet or else people will think that you have a funny and particular style.</p>\n\n<p style=\"text-align:center\"><img alt=\"f5\" src=\"/storage/news/2.jpg\" /></p>\n\n<p><br />\n&nbsp;</p>\n\n<hr />\n<h4><strong>Number 2: Choose The Right Size For Your Wallet</strong></h4>\n\n<p>You should avoid having an over-sized wallet. Don&rsquo;t think that you need to buy a big wallet because you have a lot to carry with you. In addition, a fat wallet is very ugly. It will make it harder for you to slide the wallet into your trousers&rsquo; pocket. In addition, it will create a bulge and ruin your look.</p>\n\n<p>Before you go on to buy a new wallet, clean out your wallet and place all of the items from your wallet on a table. Throw away things that you would never need any more such as the old bills or the expired gift cards. Remember to check your wallet on a frequent basis to get rid of all of the old stuff that you don&rsquo;t need anymore.</p>\n\n<p style=\"text-align:center\"><img alt=\"f1\" src=\"/storage/news/3.jpg\" /></p>\n\n<p><br />\n&nbsp;</p>\n\n<hr />\n<h4><strong>Number 3: Don&rsquo;t Limit Your Options Of Materials</strong></h4>\n\n<p>The types and designs of wallets are not the only things that you should consider when you go out searching for your best wallet. You have more than 1 option of material rather than leather to choose from as well.</p>\n\n<p>You can experiment with other available options such as cotton, polyester and canvas. They all have their own pros and cons. As a result, they will be suitable for different needs and requirements. You should think about them all in order to choose the material which you would like the most.</p>\n\n<p style=\"text-align:center\"><img alt=\"f6\" src=\"/storage/news/4.jpg\" /></p>\n\n<p><br />\n&nbsp;</p>\n\n<hr />\n<h4><strong>Number 4: Consider A Wallet As A Long Term Investment</strong></h4>\n\n<p>Your wallet is indeed an investment that you should consider spending a decent amount of time and effort on it. Another factor that you need to consider is how much you want to spend on your wallet. The price ranges of wallets on the market vary a great deal. You can find a wallet which is as cheap as about 5 to 7 dollars. On the other hand, you should expect to pay around 250 to 300 dollars for a high-quality wallet.</p>\n\n<p>In case you need a wallet to use for a long time, it is a good idea that you should invest a decent amount of money on a wallet. A high quality wallet from a reputational brand with the premium quality such as cowhide leather will last for a long time. In addition, it is an accessory to show off your fashion sense and your social status.</p>\n\n<p style=\"text-align:center\"><img alt=\"f2\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/4.jpg',401,NULL,'2021-07-02 21:03:27','2021-07-02 21:03:27'),(5,'How to Care for Leather Bags','A leather bag is a special, near-universally beloved object, appreciated in equal measure by bon-vivants of both sexes, who cherish the supple hand, understated burnish and heady smell that can only emanate from premium quality skin.','<p>I have seen many people underestimating the power of their wallets. To them, they are just a functional item they use to carry. As a result, they often end up with the wallets which are not really suitable for them.</p>\n\n<p>You should pay more attention when you choose your wallets. There are a lot of them on the market with the different designs and styles. When you choose carefully, you would be able to buy a wallet that is catered to your needs. Not to mention that it will help to enhance your style significantly.</p>\n\n<p style=\"text-align:center\"><img alt=\"f4\" src=\"/storage/news/1.jpg\" /></p>\n\n<p><br />\n&nbsp;</p>\n\n<p><strong><em>For all of the reason above, here are 7 expert tips to help you pick up the right men&rsquo;s wallet for you:</em></strong></p>\n\n<h4><strong>Number 1: Choose A Neat Wallet</strong></h4>\n\n<p>The wallet is an essential accessory that you should go simple. Simplicity is the best in this case. A simple and neat wallet with the plain color and even&nbsp;<strong>minimalist style</strong>&nbsp;is versatile. It can be used for both formal and casual events. In addition, that wallet will go well with most of the clothes in your wardrobe.</p>\n\n<p>Keep in mind that a wallet will tell other people about your personality and your fashion sense as much as other clothes you put on. Hence, don&rsquo;t go cheesy on your wallet or else people will think that you have a funny and particular style.</p>\n\n<p style=\"text-align:center\"><img alt=\"f5\" src=\"/storage/news/2.jpg\" /></p>\n\n<p><br />\n&nbsp;</p>\n\n<hr />\n<h4><strong>Number 2: Choose The Right Size For Your Wallet</strong></h4>\n\n<p>You should avoid having an over-sized wallet. Don&rsquo;t think that you need to buy a big wallet because you have a lot to carry with you. In addition, a fat wallet is very ugly. It will make it harder for you to slide the wallet into your trousers&rsquo; pocket. In addition, it will create a bulge and ruin your look.</p>\n\n<p>Before you go on to buy a new wallet, clean out your wallet and place all of the items from your wallet on a table. Throw away things that you would never need any more such as the old bills or the expired gift cards. Remember to check your wallet on a frequent basis to get rid of all of the old stuff that you don&rsquo;t need anymore.</p>\n\n<p style=\"text-align:center\"><img alt=\"f1\" src=\"/storage/news/3.jpg\" /></p>\n\n<p><br />\n&nbsp;</p>\n\n<hr />\n<h4><strong>Number 3: Don&rsquo;t Limit Your Options Of Materials</strong></h4>\n\n<p>The types and designs of wallets are not the only things that you should consider when you go out searching for your best wallet. You have more than 1 option of material rather than leather to choose from as well.</p>\n\n<p>You can experiment with other available options such as cotton, polyester and canvas. They all have their own pros and cons. As a result, they will be suitable for different needs and requirements. You should think about them all in order to choose the material which you would like the most.</p>\n\n<p style=\"text-align:center\"><img alt=\"f6\" src=\"/storage/news/4.jpg\" /></p>\n\n<p><br />\n&nbsp;</p>\n\n<hr />\n<h4><strong>Number 4: Consider A Wallet As A Long Term Investment</strong></h4>\n\n<p>Your wallet is indeed an investment that you should consider spending a decent amount of time and effort on it. Another factor that you need to consider is how much you want to spend on your wallet. The price ranges of wallets on the market vary a great deal. You can find a wallet which is as cheap as about 5 to 7 dollars. On the other hand, you should expect to pay around 250 to 300 dollars for a high-quality wallet.</p>\n\n<p>In case you need a wallet to use for a long time, it is a good idea that you should invest a decent amount of money on a wallet. A high quality wallet from a reputational brand with the premium quality such as cowhide leather will last for a long time. In addition, it is an accessory to show off your fashion sense and your social status.</p>\n\n<p style=\"text-align:center\"><img alt=\"f2\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/5.jpg',1005,NULL,'2021-07-02 21:03:27','2021-07-02 21:03:27'),(6,'We\'re Crushing Hard on Summer\'s 10 Biggest Bag Trends','Summer is just around the corner, and there\'s no easier way to amp up your new-season look than with a chic, new handbag. Whether you\'re wearing basic sweat shorts and a tank top or a pretty floral maxi dress, a bag is an effortless way to add interest to all your summer ensembles.','<p>I have seen many people underestimating the power of their wallets. To them, they are just a functional item they use to carry. As a result, they often end up with the wallets which are not really suitable for them.</p>\n\n<p>You should pay more attention when you choose your wallets. There are a lot of them on the market with the different designs and styles. When you choose carefully, you would be able to buy a wallet that is catered to your needs. Not to mention that it will help to enhance your style significantly.</p>\n\n<p style=\"text-align:center\"><img alt=\"f4\" src=\"/storage/news/1.jpg\" /></p>\n\n<p><br />\n&nbsp;</p>\n\n<p><strong><em>For all of the reason above, here are 7 expert tips to help you pick up the right men&rsquo;s wallet for you:</em></strong></p>\n\n<h4><strong>Number 1: Choose A Neat Wallet</strong></h4>\n\n<p>The wallet is an essential accessory that you should go simple. Simplicity is the best in this case. A simple and neat wallet with the plain color and even&nbsp;<strong>minimalist style</strong>&nbsp;is versatile. It can be used for both formal and casual events. In addition, that wallet will go well with most of the clothes in your wardrobe.</p>\n\n<p>Keep in mind that a wallet will tell other people about your personality and your fashion sense as much as other clothes you put on. Hence, don&rsquo;t go cheesy on your wallet or else people will think that you have a funny and particular style.</p>\n\n<p style=\"text-align:center\"><img alt=\"f5\" src=\"/storage/news/2.jpg\" /></p>\n\n<p><br />\n&nbsp;</p>\n\n<hr />\n<h4><strong>Number 2: Choose The Right Size For Your Wallet</strong></h4>\n\n<p>You should avoid having an over-sized wallet. Don&rsquo;t think that you need to buy a big wallet because you have a lot to carry with you. In addition, a fat wallet is very ugly. It will make it harder for you to slide the wallet into your trousers&rsquo; pocket. In addition, it will create a bulge and ruin your look.</p>\n\n<p>Before you go on to buy a new wallet, clean out your wallet and place all of the items from your wallet on a table. Throw away things that you would never need any more such as the old bills or the expired gift cards. Remember to check your wallet on a frequent basis to get rid of all of the old stuff that you don&rsquo;t need anymore.</p>\n\n<p style=\"text-align:center\"><img alt=\"f1\" src=\"/storage/news/3.jpg\" /></p>\n\n<p><br />\n&nbsp;</p>\n\n<hr />\n<h4><strong>Number 3: Don&rsquo;t Limit Your Options Of Materials</strong></h4>\n\n<p>The types and designs of wallets are not the only things that you should consider when you go out searching for your best wallet. You have more than 1 option of material rather than leather to choose from as well.</p>\n\n<p>You can experiment with other available options such as cotton, polyester and canvas. They all have their own pros and cons. As a result, they will be suitable for different needs and requirements. You should think about them all in order to choose the material which you would like the most.</p>\n\n<p style=\"text-align:center\"><img alt=\"f6\" src=\"/storage/news/4.jpg\" /></p>\n\n<p><br />\n&nbsp;</p>\n\n<hr />\n<h4><strong>Number 4: Consider A Wallet As A Long Term Investment</strong></h4>\n\n<p>Your wallet is indeed an investment that you should consider spending a decent amount of time and effort on it. Another factor that you need to consider is how much you want to spend on your wallet. The price ranges of wallets on the market vary a great deal. You can find a wallet which is as cheap as about 5 to 7 dollars. On the other hand, you should expect to pay around 250 to 300 dollars for a high-quality wallet.</p>\n\n<p>In case you need a wallet to use for a long time, it is a good idea that you should invest a decent amount of money on a wallet. A high quality wallet from a reputational brand with the premium quality such as cowhide leather will last for a long time. In addition, it is an accessory to show off your fashion sense and your social status.</p>\n\n<p style=\"text-align:center\"><img alt=\"f2\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/6.jpg',106,NULL,'2021-07-02 21:03:27','2021-07-02 21:03:27');
/*!40000 ALTER TABLE `posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `revisions`
--

DROP TABLE IF EXISTS `revisions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `revisions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `revisionable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `revisionable_id` int(11) NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `old_value` text COLLATE utf8mb4_unicode_ci,
  `new_value` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `revisions_revisionable_id_revisionable_type_index` (`revisionable_id`,`revisionable_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `revisions`
--

LOCK TABLES `revisions` WRITE;
/*!40000 ALTER TABLE `revisions` DISABLE KEYS */;
/*!40000 ALTER TABLE `revisions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `role_users`
--

DROP TABLE IF EXISTS `role_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `role_users` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `role_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `role_users_user_id_index` (`user_id`),
  KEY `role_users_role_id_index` (`role_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `role_users`
--

LOCK TABLES `role_users` WRITE;
/*!40000 ALTER TABLE `role_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `role_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `roles`
--

DROP TABLE IF EXISTS `roles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `roles` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `permissions` text COLLATE utf8mb4_unicode_ci,
  `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_default` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `created_by` int(10) unsigned NOT NULL,
  `updated_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `roles_slug_unique` (`slug`),
  KEY `roles_created_by_index` (`created_by`),
  KEY `roles_updated_by_index` (`updated_by`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `roles`
--

LOCK TABLES `roles` WRITE;
/*!40000 ALTER TABLE `roles` DISABLE KEYS */;
/*!40000 ALTER TABLE `roles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `settings`
--

DROP TABLE IF EXISTS `settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `settings_key_unique` (`key`)
) ENGINE=InnoDB AUTO_INCREMENT=191 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `settings`
--

LOCK TABLES `settings` WRITE;
/*!40000 ALTER TABLE `settings` DISABLE KEYS */;
INSERT INTO `settings` VALUES (4,'activated_plugins','[\"analytics\",\"audit-log\",\"backup\",\"blog\",\"captcha\",\"contact\",\"cookie-consent\",\"ecommerce\",\"mollie\",\"newsletter\",\"payment\",\"paystack\",\"razorpay\",\"simple-slider\",\"social-login\",\"sslcommerz\",\"testimonial\",\"translation\"]',NULL,NULL),(5,'permalink-botble-blog-models-post','news',NULL,NULL),(6,'permalink-botble-blog-models-category','news',NULL,NULL),(7,'permalink-botble-blog-models-tag','tags',NULL,NULL),(8,'payment_cod_status','1',NULL,NULL),(9,'payment_cod_description','Please pay money directly to the postman, if you choose cash on delivery method (COD).',NULL,NULL),(10,'payment_bank_transfer_status','1',NULL,NULL),(11,'payment_bank_transfer_description','Please send money to our bank account: ACB - 1990 404 19.',NULL,NULL),(12,'plugins_ecommerce_customer_new_order_status','0',NULL,NULL),(13,'plugins_ecommerce_admin_new_order_status','0',NULL,NULL),(14,'ecommerce_store_name','Shopwise',NULL,NULL),(15,'ecommerce_store_phone','123-456-7890',NULL,NULL),(16,'ecommerce_store_address','123 Street, Old Trafford',NULL,NULL),(17,'New York','Singapore',NULL,NULL),(18,'ecommerce_store_country','US',NULL,NULL),(20,'theme','shopwise',NULL,NULL),(40,'social_login_enable','1',NULL,NULL),(41,'social_login_facebook_enable','1',NULL,NULL),(42,'social_login_facebook_app_id','1752152358341085',NULL,NULL),(43,'social_login_facebook_app_secret','39a9c04311e0da0956298c6dcee7d5e6',NULL,NULL),(44,'social_login_google_enable','1',NULL,NULL),(47,'social_login_github_enable','1',NULL,NULL),(50,'social_login_linkedin_enable','1',NULL,NULL),(171,'theme-shopwise-site_title','Shopwise - Laravel Ecommerce system',NULL,NULL),(172,'theme-shopwise-copyright','© 2021 Botble Technologies. All Rights Reserved.',NULL,NULL),(173,'theme-shopwise-favicon','general/favicon.png',NULL,NULL),(174,'theme-shopwise-logo','general/logo.png',NULL,NULL),(175,'theme-shopwise-logo_footer','general/logo-light.png',NULL,NULL),(176,'theme-shopwise-address','123 Street, Old Trafford, NewYork, USA',NULL,NULL),(177,'theme-shopwise-hotline','123-456-7890',NULL,NULL),(178,'theme-shopwise-email','info@sitename.com',NULL,NULL),(179,'theme-shopwise-facebook','https://facebook.com',NULL,NULL),(180,'theme-shopwise-twitter','https://twitter.com',NULL,NULL),(181,'theme-shopwise-youtube','https://youtube.com',NULL,NULL),(182,'theme-shopwise-instagram','https://instagram.com',NULL,NULL),(183,'theme-shopwise-payment_methods','[\"general\\/visa.png\",\"general\\/paypal.png\",\"general\\/master-card.png\",\"general\\/discover.png\",\"general\\/american-express.png\"]',NULL,NULL),(184,'theme-shopwise-newsletter_image','general/newsletter.jpg',NULL,NULL),(185,'theme-shopwise-homepage_id','1',NULL,NULL),(186,'theme-shopwise-blog_page_id','3',NULL,NULL),(187,'theme-shopwise-cookie_consent_message','Your experience on this site will be improved by allowing cookies ',NULL,NULL),(188,'theme-shopwise-cookie_consent_learn_more_url','http://shopwise.local/cookie-policy',NULL,NULL),(189,'theme-shopwise-cookie_consent_learn_more_text','Cookie Policy',NULL,NULL);
/*!40000 ALTER TABLE `settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `simple_slider_items`
--

DROP TABLE IF EXISTS `simple_slider_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `simple_slider_items` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `simple_slider_id` int(10) unsigned NOT NULL,
  `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `link` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_ci,
  `order` int(10) unsigned NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `simple_slider_items`
--

LOCK TABLES `simple_slider_items` WRITE;
/*!40000 ALTER TABLE `simple_slider_items` DISABLE KEYS */;
INSERT INTO `simple_slider_items` VALUES (1,1,'Woman Fashion','sliders/1.jpg','/products','Get up to 50% off Today Only!',1,'2021-07-02 21:03:28','2021-07-02 21:03:28'),(2,1,'Man Fashion','sliders/2.jpg','/products','50% off in all products',2,'2021-07-02 21:03:28','2021-07-02 21:03:28'),(3,1,'Summer Sale','sliders/3.jpg','/products','Taking your Viewing Experience to Next Level',3,'2021-07-02 21:03:28','2021-07-02 21:03:28');
/*!40000 ALTER TABLE `simple_slider_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `simple_sliders`
--

DROP TABLE IF EXISTS `simple_sliders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `simple_sliders` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `key` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `simple_sliders`
--

LOCK TABLES `simple_sliders` WRITE;
/*!40000 ALTER TABLE `simple_sliders` DISABLE KEYS */;
INSERT INTO `simple_sliders` VALUES (1,'Home slider','home-slider','The main slider on homepage','published','2021-07-02 21:03:28','2021-07-02 21:03:28');
/*!40000 ALTER TABLE `simple_sliders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `slugs`
--

DROP TABLE IF EXISTS `slugs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `slugs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `reference_id` int(10) unsigned NOT NULL,
  `reference_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `prefix` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT '',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=565 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `slugs`
--

LOCK TABLES `slugs` WRITE;
/*!40000 ALTER TABLE `slugs` DISABLE KEYS */;
INSERT INTO `slugs` VALUES (462,'fashion-live',1,'Botble\\Ecommerce\\Models\\Brand','brands','2021-07-02 21:02:30','2021-07-02 21:02:30'),(463,'hand-crafted',2,'Botble\\Ecommerce\\Models\\Brand','brands','2021-07-02 21:02:30','2021-07-02 21:02:30'),(464,'mestonix',3,'Botble\\Ecommerce\\Models\\Brand','brands','2021-07-02 21:02:30','2021-07-02 21:02:30'),(465,'sunshine',4,'Botble\\Ecommerce\\Models\\Brand','brands','2021-07-02 21:02:30','2021-07-02 21:02:30'),(466,'pure',5,'Botble\\Ecommerce\\Models\\Brand','brands','2021-07-02 21:02:30','2021-07-02 21:02:30'),(467,'anfold',6,'Botble\\Ecommerce\\Models\\Brand','brands','2021-07-02 21:02:30','2021-07-02 21:02:30'),(468,'automotive',7,'Botble\\Ecommerce\\Models\\Brand','brands','2021-07-02 21:02:30','2021-07-02 21:02:30'),(469,'television',1,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(470,'mobile',2,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(471,'headphone',3,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(472,'watches',4,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(473,'game',5,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(474,'camera',6,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(475,'audio',7,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(476,'mobile-tablet',8,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(477,'accessories',9,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(478,'home-audio-theater',10,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(479,'tv-smart-box',11,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(480,'printer',12,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(481,'computer',13,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(482,'fax-machine',14,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(483,'mouse',15,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(484,'quas-fuga-dicta-qui-est',16,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(485,'suscipit-et-maxime-in',17,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(486,'sed-sit-ipsa-saepe-quia',18,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(487,'eos-est-aut-cum-qui',19,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(488,'rem-vel-sit-ut-autem',20,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(489,'libero-et-alias-eius-et',21,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(490,'magnam-iste-a-possimus',22,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(491,'quo-id-esse-quia-et',23,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(492,'et-alias-enim-suscipit',24,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(493,'rerum-quae-nam-ut-quo',25,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(494,'quia-id-sint-ad-rem',26,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(495,'amet-eos-ut-sunt-ea',27,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(496,'dicta-quia-expedita-ut',28,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(497,'sint-aut-nihil-ducimus',29,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(498,'dolores-dolore-quod-in',30,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(499,'quis-id-veniam-qui-hic',31,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(500,'cum-velit-vel-aut',32,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(501,'expedita-sit-eos-qui',33,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(502,'illum-impedit-et-odio',34,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(503,'sed-et-qui-sint',35,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2021-07-02 21:02:32','2021-07-02 21:02:32'),(504,'smart-home-speaker',1,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(505,'headphone-ultra-bass',2,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(506,'boxed-bluetooth-headphone',3,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(507,'chikie-bluetooth-speaker',4,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(508,'camera-hikvision-hk-35vs8',5,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(509,'camera-samsung-ss-24',6,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(510,'leather-watch-band',7,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(511,'apple-iphone-13-plus',8,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(512,'macbook-pro-2015',9,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(513,'macbook-air-12-inch',10,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(514,'apple-watch-serial-7',11,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(515,'macbook-pro-13-inch',12,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(516,'apple-keyboard',13,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(517,'macsafe-80w',14,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(518,'hand-playstation',15,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(519,'apple-airpods-serial-3',16,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(520,'cool-smart-watches',17,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(521,'black-smart-watches',18,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(522,'leather-watch-band-serial-3',19,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(523,'macbook-pro-2015-13-inch',20,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(524,'historic-alarm-clock',21,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(525,'black-glasses',22,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(526,'phillips-mouse',23,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(527,'gaming-keyboard',24,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(528,'dual-camera-20mp',25,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(529,'smart-watches',26,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(530,'beat-headphone',27,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(531,'red-black-headphone',28,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(532,'audio-equipment',29,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:23','2021-07-02 21:03:23'),(533,'smart-televisions',30,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:24','2021-07-02 21:03:24'),(534,'samsung-smart-tv',31,'Botble\\Ecommerce\\Models\\Product','products','2021-07-02 21:03:24','2021-07-02 21:03:24'),(535,'electronic',1,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2021-07-02 21:03:24','2021-07-02 21:03:24'),(536,'mobile',2,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2021-07-02 21:03:24','2021-07-02 21:03:24'),(537,'iphone',3,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2021-07-02 21:03:24','2021-07-02 21:03:24'),(538,'printer',4,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2021-07-02 21:03:24','2021-07-02 21:03:24'),(539,'office',5,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2021-07-02 21:03:24','2021-07-02 21:03:24'),(540,'it',6,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2021-07-02 21:03:24','2021-07-02 21:03:24'),(541,'general',1,'Botble\\Blog\\Models\\Tag','tags','2021-07-02 21:03:27','2021-07-02 21:03:29'),(542,'design',2,'Botble\\Blog\\Models\\Tag','tags','2021-07-02 21:03:27','2021-07-02 21:03:29'),(543,'jquery',3,'Botble\\Blog\\Models\\Tag','tags','2021-07-02 21:03:27','2021-07-02 21:03:29'),(544,'branding',4,'Botble\\Blog\\Models\\Tag','tags','2021-07-02 21:03:27','2021-07-02 21:03:29'),(545,'modern',5,'Botble\\Blog\\Models\\Tag','tags','2021-07-02 21:03:27','2021-07-02 21:03:29'),(546,'ecommerce',1,'Botble\\Blog\\Models\\Category','news','2021-07-02 21:03:27','2021-07-02 21:03:29'),(547,'fashion',2,'Botble\\Blog\\Models\\Category','news','2021-07-02 21:03:27','2021-07-02 21:03:29'),(548,'electronic',3,'Botble\\Blog\\Models\\Category','news','2021-07-02 21:03:27','2021-07-02 21:03:29'),(549,'commercial',4,'Botble\\Blog\\Models\\Category','news','2021-07-02 21:03:27','2021-07-02 21:03:29'),(550,'4-expert-tips-on-how-to-choose-the-right-mens-wallet',1,'Botble\\Blog\\Models\\Post','news','2021-07-02 21:03:27','2021-07-02 21:03:29'),(551,'sexy-clutches-how-to-buy-wear-a-designer-clutch-bag',2,'Botble\\Blog\\Models\\Post','news','2021-07-02 21:03:27','2021-07-02 21:03:29'),(552,'the-top-2020-handbag-trends-to-know',3,'Botble\\Blog\\Models\\Post','news','2021-07-02 21:03:27','2021-07-02 21:03:29'),(553,'how-to-match-the-color-of-your-handbag-with-an-outfit',4,'Botble\\Blog\\Models\\Post','news','2021-07-02 21:03:27','2021-07-02 21:03:29'),(554,'how-to-care-for-leather-bags',5,'Botble\\Blog\\Models\\Post','news','2021-07-02 21:03:27','2021-07-02 21:03:29'),(555,'were-crushing-hard-on-summers-10-biggest-bag-trends',6,'Botble\\Blog\\Models\\Post','news','2021-07-02 21:03:27','2021-07-02 21:03:29'),(556,'home',1,'Botble\\Page\\Models\\Page','','2021-07-02 21:03:29','2021-07-02 21:03:29'),(557,'contact-us',2,'Botble\\Page\\Models\\Page','','2021-07-02 21:03:29','2021-07-02 21:03:29'),(558,'blog',3,'Botble\\Page\\Models\\Page','','2021-07-02 21:03:29','2021-07-02 21:03:29'),(559,'about-us',4,'Botble\\Page\\Models\\Page','','2021-07-02 21:03:29','2021-07-02 21:03:29'),(560,'faq',5,'Botble\\Page\\Models\\Page','','2021-07-02 21:03:29','2021-07-02 21:03:29'),(561,'location',6,'Botble\\Page\\Models\\Page','','2021-07-02 21:03:29','2021-07-02 21:03:29'),(562,'affiliates',7,'Botble\\Page\\Models\\Page','','2021-07-02 21:03:29','2021-07-02 21:03:29'),(563,'brands',8,'Botble\\Page\\Models\\Page','','2021-07-02 21:03:29','2021-07-02 21:03:29'),(564,'cookie-policy',9,'Botble\\Page\\Models\\Page','','2021-07-02 21:03:29','2021-07-02 21:03:29');
/*!40000 ALTER TABLE `slugs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tags`
--

DROP TABLE IF EXISTS `tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tags` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `author_id` int(11) NOT NULL,
  `author_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT '',
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tags`
--

LOCK TABLES `tags` WRITE;
/*!40000 ALTER TABLE `tags` DISABLE KEYS */;
INSERT INTO `tags` VALUES (1,'General',1,'Botble\\ACL\\Models\\User','','published','2021-07-02 21:03:27','2021-07-02 21:03:27'),(2,'Design',1,'Botble\\ACL\\Models\\User','','published','2021-07-02 21:03:27','2021-07-02 21:03:27'),(3,'Jquery',1,'Botble\\ACL\\Models\\User','','published','2021-07-02 21:03:27','2021-07-02 21:03:27'),(4,'Branding',1,'Botble\\ACL\\Models\\User','','published','2021-07-02 21:03:27','2021-07-02 21:03:27'),(5,'Modern',1,'Botble\\ACL\\Models\\User','','published','2021-07-02 21:03:27','2021-07-02 21:03:27');
/*!40000 ALTER TABLE `tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `testimonials`
--

DROP TABLE IF EXISTS `testimonials`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `testimonials` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `company` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `testimonials`
--

LOCK TABLES `testimonials` WRITE;
/*!40000 ALTER TABLE `testimonials` DISABLE KEYS */;
INSERT INTO `testimonials` VALUES (1,'Donald H. Hilixer','Gryphon replied rather crossly: \'of course you.','testimonials/1.jpg','Founder, Hilix','published','2021-07-02 21:03:28','2021-07-02 21:03:28'),(2,'Rosalina D. William','HE taught us Drawling, Stretching, and Fainting.','testimonials/2.jpg','Founder, qux co.','published','2021-07-02 21:03:28','2021-07-02 21:03:28'),(3,'John Becker','Gryphon. \'Turn a somersault in the house, quite.','testimonials/3.jpg','CEO, Highlands coffee','published','2021-07-02 21:03:28','2021-07-02 21:03:28'),(4,'Browfish Dumble','Tortoise, if he wasn\'t going to turn round on.','testimonials/4.jpg','Founder, Condo','published','2021-07-02 21:03:28','2021-07-02 21:03:28');
/*!40000 ALTER TABLE `testimonials` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `translations`
--

DROP TABLE IF EXISTS `translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `translations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `status` int(11) NOT NULL DEFAULT '0',
  `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `group` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3627 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `translations`
--

LOCK TABLES `translations` WRITE;
/*!40000 ALTER TABLE `translations` DISABLE KEYS */;
INSERT INTO `translations` VALUES (1,0,'en','auth','failed','These credentials do not match our records.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(2,0,'en','auth','password','The provided password is incorrect.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(3,0,'en','auth','throttle','Too many login attempts. Please try again in :seconds seconds.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(4,0,'en','pagination','previous','&laquo; Previous','2021-07-26 04:16:42','2021-07-26 04:17:14'),(5,0,'en','pagination','next','Next &raquo;','2021-07-26 04:16:42','2021-07-26 04:17:14'),(6,0,'en','passwords','reset','Your password has been reset!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(7,0,'en','passwords','sent','We have emailed your password reset link!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(8,0,'en','passwords','throttled','Please wait before retrying.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(9,0,'en','passwords','token','This password reset token is invalid.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(10,0,'en','passwords','user','We can\'t find a user with that email address.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(11,0,'en','validation','accepted','The :attribute must be accepted.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(12,0,'en','validation','active_url','The :attribute is not a valid URL.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(13,0,'en','validation','after','The :attribute must be a date after :date.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(14,0,'en','validation','after_or_equal','The :attribute must be a date after or equal to :date.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(15,0,'en','validation','alpha','The :attribute must only contain letters.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(16,0,'en','validation','alpha_dash','The :attribute must only contain letters, numbers, dashes and underscores.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(17,0,'en','validation','alpha_num','The :attribute must only contain letters and numbers.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(18,0,'en','validation','array','The :attribute must be an array.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(19,0,'en','validation','before','The :attribute must be a date before :date.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(20,0,'en','validation','before_or_equal','The :attribute must be a date before or equal to :date.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(21,0,'en','validation','between.numeric','The :attribute must be between :min and :max.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(22,0,'en','validation','between.file','The :attribute must be between :min and :max kilobytes.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(23,0,'en','validation','between.string','The :attribute must be between :min and :max characters.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(24,0,'en','validation','between.array','The :attribute must have between :min and :max items.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(25,0,'en','validation','boolean','The :attribute field must be true or false.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(26,0,'en','validation','confirmed','The :attribute confirmation does not match.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(27,0,'en','validation','current_password','The password is incorrect.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(28,0,'en','validation','date','The :attribute is not a valid date.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(29,0,'en','validation','date_equals','The :attribute must be a date equal to :date.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(30,0,'en','validation','date_format','The :attribute does not match the format :format.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(31,0,'en','validation','different','The :attribute and :other must be different.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(32,0,'en','validation','digits','The :attribute must be :digits digits.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(33,0,'en','validation','digits_between','The :attribute must be between :min and :max digits.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(34,0,'en','validation','dimensions','The :attribute has invalid image dimensions.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(35,0,'en','validation','distinct','The :attribute field has a duplicate value.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(36,0,'en','validation','email','The :attribute must be a valid email address.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(37,0,'en','validation','ends_with','The :attribute must end with one of the following: :values.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(38,0,'en','validation','exists','The selected :attribute is invalid.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(39,0,'en','validation','file','The :attribute must be a file.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(40,0,'en','validation','filled','The :attribute field must have a value.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(41,0,'en','validation','gt.numeric','The :attribute must be greater than :value.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(42,0,'en','validation','gt.file','The :attribute must be greater than :value kilobytes.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(43,0,'en','validation','gt.string','The :attribute must be greater than :value characters.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(44,0,'en','validation','gt.array','The :attribute must have more than :value items.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(45,0,'en','validation','gte.numeric','The :attribute must be greater than or equal :value.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(46,0,'en','validation','gte.file','The :attribute must be greater than or equal :value kilobytes.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(47,0,'en','validation','gte.string','The :attribute must be greater than or equal :value characters.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(48,0,'en','validation','gte.array','The :attribute must have :value items or more.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(49,0,'en','validation','image','The :attribute must be an image.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(50,0,'en','validation','in','The selected :attribute is invalid.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(51,0,'en','validation','in_array','The :attribute field does not exist in :other.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(52,0,'en','validation','integer','The :attribute must be an integer.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(53,0,'en','validation','ip','The :attribute must be a valid IP address.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(54,0,'en','validation','ipv4','The :attribute must be a valid IPv4 address.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(55,0,'en','validation','ipv6','The :attribute must be a valid IPv6 address.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(56,0,'en','validation','json','The :attribute must be a valid JSON string.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(57,0,'en','validation','lt.numeric','The :attribute must be less than :value.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(58,0,'en','validation','lt.file','The :attribute must be less than :value kilobytes.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(59,0,'en','validation','lt.string','The :attribute must be less than :value characters.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(60,0,'en','validation','lt.array','The :attribute must have less than :value items.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(61,0,'en','validation','lte.numeric','The :attribute must be less than or equal :value.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(62,0,'en','validation','lte.file','The :attribute must be less than or equal :value kilobytes.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(63,0,'en','validation','lte.string','The :attribute must be less than or equal :value characters.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(64,0,'en','validation','lte.array','The :attribute must not have more than :value items.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(65,0,'en','validation','max.numeric','The :attribute must not be greater than :max.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(66,0,'en','validation','max.file','The :attribute must not be greater than :max kilobytes.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(67,0,'en','validation','max.string','The :attribute must not be greater than :max characters.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(68,0,'en','validation','max.array','The :attribute must not have more than :max items.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(69,0,'en','validation','mimes','The :attribute must be a file of type: :values.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(70,0,'en','validation','mimetypes','The :attribute must be a file of type: :values.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(71,0,'en','validation','min.numeric','The :attribute must be at least :min.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(72,0,'en','validation','min.file','The :attribute must be at least :min kilobytes.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(73,0,'en','validation','min.string','The :attribute must be at least :min characters.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(74,0,'en','validation','min.array','The :attribute must have at least :min items.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(75,0,'en','validation','multiple_of','The :attribute must be a multiple of :value.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(76,0,'en','validation','not_in','The selected :attribute is invalid.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(77,0,'en','validation','not_regex','The :attribute format is invalid.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(78,0,'en','validation','numeric','The :attribute must be a number.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(79,0,'en','validation','password','The password is incorrect.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(80,0,'en','validation','present','The :attribute field must be present.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(81,0,'en','validation','regex','The :attribute format is invalid.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(82,0,'en','validation','required','The :attribute field is required.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(83,0,'en','validation','required_if','The :attribute field is required when :other is :value.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(84,0,'en','validation','required_unless','The :attribute field is required unless :other is in :values.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(85,0,'en','validation','required_with','The :attribute field is required when :values is present.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(86,0,'en','validation','required_with_all','The :attribute field is required when :values are present.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(87,0,'en','validation','required_without','The :attribute field is required when :values is not present.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(88,0,'en','validation','required_without_all','The :attribute field is required when none of :values are present.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(89,0,'en','validation','prohibited','The :attribute field is prohibited.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(90,0,'en','validation','prohibited_if','The :attribute field is prohibited when :other is :value.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(91,0,'en','validation','prohibited_unless','The :attribute field is prohibited unless :other is in :values.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(92,0,'en','validation','same','The :attribute and :other must match.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(93,0,'en','validation','size.numeric','The :attribute must be :size.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(94,0,'en','validation','size.file','The :attribute must be :size kilobytes.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(95,0,'en','validation','size.string','The :attribute must be :size characters.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(96,0,'en','validation','size.array','The :attribute must contain :size items.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(97,0,'en','validation','starts_with','The :attribute must start with one of the following: :values.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(98,0,'en','validation','string','The :attribute must be a string.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(99,0,'en','validation','timezone','The :attribute must be a valid timezone.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(100,0,'en','validation','unique','The :attribute has already been taken.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(101,0,'en','validation','uploaded','The :attribute failed to upload.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(102,0,'en','validation','url','The :attribute must be a valid URL.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(103,0,'en','validation','uuid','The :attribute must be a valid UUID.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(104,0,'en','validation','custom.attribute-name.rule-name','custom-message','2021-07-26 04:16:42','2021-07-26 04:17:14'),(105,0,'en','core/acl/api','api_clients','API Clients','2021-07-26 04:16:42','2021-07-26 04:17:14'),(106,0,'en','core/acl/api','create_new_client','Create new client','2021-07-26 04:16:42','2021-07-26 04:17:14'),(107,0,'en','core/acl/api','create_new_client_success','Create new client successfully!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(108,0,'en','core/acl/api','edit_client','Edit client \":name\"','2021-07-26 04:16:42','2021-07-26 04:17:14'),(109,0,'en','core/acl/api','edit_client_success','Updated client successfully!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(110,0,'en','core/acl/api','delete_success','Deleted client successfully!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(111,0,'en','core/acl/api','confirm_delete_title','Confirm delete client \":name\"','2021-07-26 04:16:42','2021-07-26 04:17:14'),(112,0,'en','core/acl/api','confirm_delete_description','Do you really want to delete client \":name\"?','2021-07-26 04:16:42','2021-07-26 04:17:14'),(113,0,'en','core/acl/api','cancel_delete','No','2021-07-26 04:16:42','2021-07-26 04:17:14'),(114,0,'en','core/acl/api','continue_delete','Yes, let\'s delete it!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(115,0,'en','core/acl/api','name','Name','2021-07-26 04:16:42','2021-07-26 04:17:14'),(116,0,'en','core/acl/api','cancel','Cancel','2021-07-26 04:16:42','2021-07-26 04:17:14'),(117,0,'en','core/acl/api','save','Save','2021-07-26 04:16:42','2021-07-26 04:17:14'),(118,0,'en','core/acl/api','edit','Edit','2021-07-26 04:16:42','2021-07-26 04:17:14'),(119,0,'en','core/acl/api','delete','Delete','2021-07-26 04:16:42','2021-07-26 04:17:14'),(120,0,'en','core/acl/api','client_id','Client ID','2021-07-26 04:16:42','2021-07-26 04:17:14'),(121,0,'en','core/acl/api','secret','Secret','2021-07-26 04:16:42','2021-07-26 04:17:14'),(122,0,'en','core/acl/auth','login.username','Email/Username','2021-07-26 04:16:42','2021-07-26 04:17:14'),(123,0,'en','core/acl/auth','login.email','Email','2021-07-26 04:16:42','2021-07-26 04:17:14'),(124,0,'en','core/acl/auth','login.password','Password','2021-07-26 04:16:42','2021-07-26 04:17:14'),(125,0,'en','core/acl/auth','login.title','User Login','2021-07-26 04:16:42','2021-07-26 04:17:14'),(126,0,'en','core/acl/auth','login.remember','Remember me?','2021-07-26 04:16:42','2021-07-26 04:17:14'),(127,0,'en','core/acl/auth','login.login','Sign in','2021-07-26 04:16:42','2021-07-26 04:17:14'),(128,0,'en','core/acl/auth','login.placeholder.username','Please enter your username','2021-07-26 04:16:42','2021-07-26 04:17:14'),(129,0,'en','core/acl/auth','login.placeholder.email','Please enter your email','2021-07-26 04:16:42','2021-07-26 04:17:14'),(130,0,'en','core/acl/auth','login.success','Login successfully!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(131,0,'en','core/acl/auth','login.fail','Wrong username or password.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(132,0,'en','core/acl/auth','login.not_active','Your account has not been activated yet!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(133,0,'en','core/acl/auth','login.banned','This account is banned.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(134,0,'en','core/acl/auth','login.logout_success','Logout successfully!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(135,0,'en','core/acl/auth','login.dont_have_account','You don\'t have account on this system, please contact administrator for more information!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(136,0,'en','core/acl/auth','forgot_password.title','Forgot Password','2021-07-26 04:16:42','2021-07-26 04:17:14'),(137,0,'en','core/acl/auth','forgot_password.message','<p>Have you forgotten your password?</p><p>Please enter your email account. System will send a email with active link to reset your password.</p>','2021-07-26 04:16:42','2021-07-26 04:17:14'),(138,0,'en','core/acl/auth','forgot_password.submit','Submit','2021-07-26 04:16:42','2021-07-26 04:17:14'),(139,0,'en','core/acl/auth','reset.new_password','New password','2021-07-26 04:16:42','2021-07-26 04:17:14'),(140,0,'en','core/acl/auth','reset.password_confirmation','Confirm new password','2021-07-26 04:16:42','2021-07-26 04:17:14'),(141,0,'en','core/acl/auth','reset.email','Email','2021-07-26 04:16:42','2021-07-26 04:17:14'),(142,0,'en','core/acl/auth','reset.title','Reset your password','2021-07-26 04:16:42','2021-07-26 04:17:14'),(143,0,'en','core/acl/auth','reset.update','Update','2021-07-26 04:16:42','2021-07-26 04:17:14'),(144,0,'en','core/acl/auth','reset.wrong_token','This link is invalid or expired. Please try using reset form again.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(145,0,'en','core/acl/auth','reset.user_not_found','This username is not exist.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(146,0,'en','core/acl/auth','reset.success','Reset password successfully!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(147,0,'en','core/acl/auth','reset.fail','Token is invalid, the reset password link has been expired!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(148,0,'en','core/acl/auth','reset.reset.title','Email reset password','2021-07-26 04:16:42','2021-07-26 04:17:14'),(149,0,'en','core/acl/auth','reset.send.success','A email was sent to your email account. Please check and complete this action.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(150,0,'en','core/acl/auth','reset.send.fail','Can not send email in this time. Please try again later.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(151,0,'en','core/acl/auth','reset.new-password','New password','2021-07-26 04:16:42','2021-07-26 04:17:14'),(152,0,'en','core/acl/auth','email.reminder.title','Email reset password','2021-07-26 04:16:42','2021-07-26 04:17:14'),(153,0,'en','core/acl/auth','password_confirmation','Password confirm','2021-07-26 04:16:42','2021-07-26 04:17:14'),(154,0,'en','core/acl/auth','failed','Failed','2021-07-26 04:16:42','2021-07-26 04:17:14'),(155,0,'en','core/acl/auth','throttle','Throttle','2021-07-26 04:16:42','2021-07-26 04:17:14'),(156,0,'en','core/acl/auth','not_member','Not a member yet?','2021-07-26 04:16:42','2021-07-26 04:17:14'),(157,0,'en','core/acl/auth','register_now','Register now','2021-07-26 04:16:42','2021-07-26 04:17:14'),(158,0,'en','core/acl/auth','lost_your_password','Lost your password?','2021-07-26 04:16:42','2021-07-26 04:17:14'),(159,0,'en','core/acl/auth','login_title','Admin','2021-07-26 04:16:42','2021-07-26 04:17:14'),(160,0,'en','core/acl/auth','login_via_social','Login with social networks','2021-07-26 04:16:42','2021-07-26 04:17:14'),(161,0,'en','core/acl/auth','back_to_login','Back to login page','2021-07-26 04:16:42','2021-07-26 04:17:14'),(162,0,'en','core/acl/auth','sign_in_below','Sign In Below','2021-07-26 04:16:42','2021-07-26 04:17:14'),(163,0,'en','core/acl/auth','languages','Languages','2021-07-26 04:16:42','2021-07-26 04:17:14'),(164,0,'en','core/acl/auth','reset_password','Reset Password','2021-07-26 04:16:42','2021-07-26 04:17:14'),(165,0,'en','core/acl/auth','settings.email.title','ACL','2021-07-26 04:16:42','2021-07-26 04:17:14'),(166,0,'en','core/acl/auth','settings.email.description','ACL email configuration','2021-07-26 04:16:42','2021-07-26 04:17:14'),(167,0,'en','core/acl/permissions','notices.role_in_use','Cannot delete this role, it is still in use!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(168,0,'en','core/acl/permissions','notices.role_delete_belong_user','You are not able to delete this role; it belongs to someone else!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(169,0,'en','core/acl/permissions','notices.role_edit_belong_user','You are not able to edit this role; it belongs to someone else!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(170,0,'en','core/acl/permissions','notices.delete_global_role','You are not allowed to delete global roles!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(171,0,'en','core/acl/permissions','notices.delete_success','The selected role was deleted successfully!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(172,0,'en','core/acl/permissions','notices.modified_success','The selected role was modified successfully!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(173,0,'en','core/acl/permissions','notices.create_success','The new role was successfully created','2021-07-26 04:16:42','2021-07-26 04:17:14'),(174,0,'en','core/acl/permissions','notices.duplicated_success','The selected role was duplicated successfully','2021-07-26 04:16:42','2021-07-26 04:17:14'),(175,0,'en','core/acl/permissions','notices.no_select','Please select at least one record to take this action!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(176,0,'en','core/acl/permissions','notices.not_found','Role not found','2021-07-26 04:16:42','2021-07-26 04:17:14'),(177,0,'en','core/acl/permissions','name','Name','2021-07-26 04:16:42','2021-07-26 04:17:14'),(178,0,'en','core/acl/permissions','current_role','Current Role','2021-07-26 04:16:42','2021-07-26 04:17:14'),(179,0,'en','core/acl/permissions','no_role_assigned','No role assigned','2021-07-26 04:16:42','2021-07-26 04:17:14'),(180,0,'en','core/acl/permissions','role_assigned','Assigned Role','2021-07-26 04:16:42','2021-07-26 04:17:14'),(181,0,'en','core/acl/permissions','create_role','Create New Role','2021-07-26 04:16:42','2021-07-26 04:17:14'),(182,0,'en','core/acl/permissions','role_name','Name','2021-07-26 04:16:42','2021-07-26 04:17:14'),(183,0,'en','core/acl/permissions','role_description','Description','2021-07-26 04:16:42','2021-07-26 04:17:14'),(184,0,'en','core/acl/permissions','permission_flags','Permission Flags','2021-07-26 04:16:42','2021-07-26 04:17:14'),(185,0,'en','core/acl/permissions','cancel','Cancel','2021-07-26 04:16:42','2021-07-26 04:17:14'),(186,0,'en','core/acl/permissions','reset','Reset','2021-07-26 04:16:42','2021-07-26 04:17:14'),(187,0,'en','core/acl/permissions','save','Save','2021-07-26 04:16:42','2021-07-26 04:17:14'),(188,0,'en','core/acl/permissions','global_role_msg','This is a global role and cannot be modified.  You can use the Duplicate button to make a copy of this role that you can then modify.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(189,0,'en','core/acl/permissions','details','Details','2021-07-26 04:16:42','2021-07-26 04:17:14'),(190,0,'en','core/acl/permissions','duplicate','Duplicate','2021-07-26 04:16:42','2021-07-26 04:17:14'),(191,0,'en','core/acl/permissions','all','All Permissions','2021-07-26 04:16:42','2021-07-26 04:17:14'),(192,0,'en','core/acl/permissions','list_role','List Roles','2021-07-26 04:16:42','2021-07-26 04:17:14'),(193,0,'en','core/acl/permissions','created_on','Created On','2021-07-26 04:16:42','2021-07-26 04:17:14'),(194,0,'en','core/acl/permissions','created_by','Created By','2021-07-26 04:16:42','2021-07-26 04:17:14'),(195,0,'en','core/acl/permissions','actions','Actions','2021-07-26 04:16:42','2021-07-26 04:17:14'),(196,0,'en','core/acl/permissions','role_in_use','Cannot delete this role, it is still in use!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(197,0,'en','core/acl/permissions','role_delete_belong_user','You are not able to delete this role; it belongs to someone else!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(198,0,'en','core/acl/permissions','delete_global_role','Can not delete global role','2021-07-26 04:16:42','2021-07-26 04:17:14'),(199,0,'en','core/acl/permissions','delete_success','Delete role successfully','2021-07-26 04:16:42','2021-07-26 04:17:14'),(200,0,'en','core/acl/permissions','no_select','Please select at least one role to take this action!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(201,0,'en','core/acl/permissions','not_found','No role found!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(202,0,'en','core/acl/permissions','role_edit_belong_user','You are not able to edit this role; it belongs to someone else!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(203,0,'en','core/acl/permissions','modified_success','Modified successfully','2021-07-26 04:16:42','2021-07-26 04:17:14'),(204,0,'en','core/acl/permissions','create_success','Create successfully','2021-07-26 04:16:42','2021-07-26 04:17:14'),(205,0,'en','core/acl/permissions','duplicated_success','Duplicated successfully','2021-07-26 04:16:42','2021-07-26 04:17:14'),(206,0,'en','core/acl/permissions','options','Options','2021-07-26 04:16:42','2021-07-26 04:17:14'),(207,0,'en','core/acl/permissions','access_denied_message','You are not allowed to do this action','2021-07-26 04:16:42','2021-07-26 04:17:14'),(208,0,'en','core/acl/permissions','roles','Roles','2021-07-26 04:16:42','2021-07-26 04:17:14'),(209,0,'en','core/acl/permissions','role_permission','Roles and Permissions','2021-07-26 04:16:42','2021-07-26 04:17:14'),(210,0,'en','core/acl/permissions','user_management','User Management','2021-07-26 04:16:42','2021-07-26 04:17:14'),(211,0,'en','core/acl/permissions','super_user_management','Super User Management','2021-07-26 04:16:42','2021-07-26 04:17:14'),(212,0,'en','core/acl/permissions','action_unauthorized','This action is unauthorized.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(213,0,'en','core/acl/reminders','password','Passwords must be at least six characters and match the confirmation.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(214,0,'en','core/acl/reminders','user','We can\'t find a user with that e-mail address.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(215,0,'en','core/acl/reminders','token','This password reset token is invalid.','2021-07-26 04:16:42','2021-07-26 04:17:14'),(216,0,'en','core/acl/reminders','sent','Password reminder sent!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(217,0,'en','core/acl/reminders','reset','Password has been reset!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(218,0,'en','core/acl/users','delete_user_logged_in','Can\'t delete this user. This user is logged on!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(219,0,'en','core/acl/users','no_select','Please select at least one record to take this action!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(220,0,'en','core/acl/users','lock_user_logged_in','Can\'t lock this user. This user is logged on!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(221,0,'en','core/acl/users','update_success','Update status successfully!','2021-07-26 04:16:42','2021-07-26 04:17:14'),(222,0,'en','core/acl/users','save_setting_failed','Something went wrong when save your setting','2021-07-26 04:16:42','2021-07-26 04:17:14'),(223,0,'en','core/acl/users','not_found','User not found','2021-07-26 04:16:42','2021-07-26 04:17:14'),(224,0,'en','core/acl/users','email_exist','That email address already belongs to an existing account','2021-07-26 04:16:42','2021-07-26 04:17:14'),(225,0,'en','core/acl/users','username_exist','That username address already belongs to an existing account','2021-07-26 04:16:42','2021-07-26 04:17:14'),(226,0,'en','core/acl/users','update_profile_success','Your profile changes were successfully saved','2021-07-26 04:16:42','2021-07-26 04:17:14'),(227,0,'en','core/acl/users','password_update_success','Password successfully changed','2021-07-26 04:16:42','2021-07-26 04:17:14'),(228,0,'en','core/acl/users','current_password_not_valid','Current password is not valid','2021-07-26 04:16:42','2021-07-26 04:17:14'),(229,0,'en','core/acl/users','user_exist_in','User is already a member','2021-07-26 04:16:42','2021-07-26 04:17:14'),(230,0,'en','core/acl/users','email','Email','2021-07-26 04:16:42','2021-07-26 04:17:14'),(231,0,'en','core/acl/users','role','Role','2021-07-26 04:16:42','2021-07-26 04:17:14'),(232,0,'en','core/acl/users','username','Username','2021-07-26 04:16:42','2021-07-26 04:17:14'),(233,0,'en','core/acl/users','last_name','Last Name','2021-07-26 04:16:42','2021-07-26 04:17:14'),(234,0,'en','core/acl/users','first_name','First Name','2021-07-26 04:16:42','2021-07-26 04:17:14'),(235,0,'en','core/acl/users','message','Message','2021-07-26 04:16:42','2021-07-26 04:17:14'),(236,0,'en','core/acl/users','cancel_btn','Cancel','2021-07-26 04:16:42','2021-07-26 04:17:14'),(237,0,'en','core/acl/users','change_password','Change password','2021-07-26 04:16:42','2021-07-26 04:17:14'),(238,0,'en','core/acl/users','current_password','Current password','2021-07-26 04:16:42','2021-07-26 04:17:14'),(239,0,'en','core/acl/users','new_password','New Password','2021-07-26 04:16:42','2021-07-26 04:17:14'),(240,0,'en','core/acl/users','confirm_new_password','Confirm New Password','2021-07-26 04:16:42','2021-07-26 04:17:14'),(241,0,'en','core/acl/users','password','Password','2021-07-26 04:16:42','2021-07-26 04:17:14'),(242,0,'en','core/acl/users','save','Save','2021-07-26 04:16:42','2021-07-26 04:17:14'),(243,0,'en','core/acl/users','cannot_delete','User could not be deleted','2021-07-26 04:16:42','2021-07-26 04:17:14'),(244,0,'en','core/acl/users','deleted','User deleted','2021-07-26 04:16:42','2021-07-26 04:17:14'),(245,0,'en','core/acl/users','last_login','Last Login','2021-07-26 04:16:42','2021-07-26 04:17:14'),(246,0,'en','core/acl/users','error_update_profile_image','Error when update profile image','2021-07-26 04:16:42','2021-07-26 04:17:14'),(247,0,'en','core/acl/users','email_reminder_template','<h3>Hello :name</h3><p>The system has received a request to restore the password for your account, to complete this task please click the link below.</p><p><a href=\":link\">Reset password now</a></p><p>If not you ask recover password, please ignore this email.</p><p>This email is valid for 60 minutes after receiving the email.</p>','2021-07-26 04:16:43','2021-07-26 04:17:14'),(248,0,'en','core/acl/users','change_profile_image','Change Profile Image','2021-07-26 04:16:43','2021-07-26 04:17:14'),(249,0,'en','core/acl/users','new_image','New Image','2021-07-26 04:16:43','2021-07-26 04:17:14'),(250,0,'en','core/acl/users','loading','Loading','2021-07-26 04:16:43','2021-07-26 04:17:14'),(251,0,'en','core/acl/users','close','Close','2021-07-26 04:16:43','2021-07-26 04:17:14'),(252,0,'en','core/acl/users','update','Update','2021-07-26 04:16:43','2021-07-26 04:17:14'),(253,0,'en','core/acl/users','read_image_failed','Failed to read the image file','2021-07-26 04:16:43','2021-07-26 04:17:14'),(254,0,'en','core/acl/users','users','Users','2021-07-26 04:16:43','2021-07-26 04:17:14'),(255,0,'en','core/acl/users','update_avatar_success','Update profile image successfully!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(256,0,'en','core/acl/users','info.title','User profile','2021-07-26 04:16:43','2021-07-26 04:17:14'),(257,0,'en','core/acl/users','info.first_name','First Name','2021-07-26 04:16:43','2021-07-26 04:17:14'),(258,0,'en','core/acl/users','info.last_name','Last Name','2021-07-26 04:16:43','2021-07-26 04:17:14'),(259,0,'en','core/acl/users','info.email','Email','2021-07-26 04:16:43','2021-07-26 04:17:14'),(260,0,'en','core/acl/users','info.second_email','Secondary Email','2021-07-26 04:16:43','2021-07-26 04:17:14'),(261,0,'en','core/acl/users','info.address','Address','2021-07-26 04:16:43','2021-07-26 04:17:14'),(262,0,'en','core/acl/users','info.second_address','Secondary Address','2021-07-26 04:16:43','2021-07-26 04:17:14'),(263,0,'en','core/acl/users','info.birth_day','Date of birth','2021-07-26 04:16:43','2021-07-26 04:17:14'),(264,0,'en','core/acl/users','info.job','Job Position','2021-07-26 04:16:43','2021-07-26 04:17:14'),(265,0,'en','core/acl/users','info.mobile_number','Mobile Number','2021-07-26 04:16:43','2021-07-26 04:17:14'),(266,0,'en','core/acl/users','info.second_mobile_number','Secondary Phone','2021-07-26 04:16:43','2021-07-26 04:17:14'),(267,0,'en','core/acl/users','info.interes','Interests','2021-07-26 04:16:43','2021-07-26 04:17:14'),(268,0,'en','core/acl/users','info.about','About','2021-07-26 04:16:43','2021-07-26 04:17:14'),(269,0,'en','core/acl/users','gender.title','Gender','2021-07-26 04:16:43','2021-07-26 04:17:14'),(270,0,'en','core/acl/users','gender.male','Male','2021-07-26 04:16:43','2021-07-26 04:17:14'),(271,0,'en','core/acl/users','gender.female','Female','2021-07-26 04:16:43','2021-07-26 04:17:14'),(272,0,'en','core/acl/users','total_users','Total users','2021-07-26 04:16:43','2021-07-26 04:17:14'),(273,0,'en','core/acl/users','statuses.activated','Activated','2021-07-26 04:16:43','2021-07-26 04:17:14'),(274,0,'en','core/acl/users','statuses.deactivated','Deactivated','2021-07-26 04:16:43','2021-07-26 04:17:14'),(275,0,'en','core/acl/users','make_super','Make super','2021-07-26 04:16:43','2021-07-26 04:17:14'),(276,0,'en','core/acl/users','remove_super','Remove super','2021-07-26 04:16:43','2021-07-26 04:17:14'),(277,0,'en','core/acl/users','is_super','Is super?','2021-07-26 04:16:43','2021-07-26 04:17:14'),(278,0,'en','core/acl/users','email_placeholder','Ex: example@gmail.com','2021-07-26 04:16:43','2021-07-26 04:17:14'),(279,0,'en','core/acl/users','password_confirmation','Re-type password','2021-07-26 04:16:43','2021-07-26 04:17:14'),(280,0,'en','core/acl/users','select_role','Select role','2021-07-26 04:16:43','2021-07-26 04:17:14'),(281,0,'en','core/acl/users','create_new_user','Create a new user','2021-07-26 04:16:43','2021-07-26 04:17:14'),(282,0,'en','core/acl/users','cannot_delete_super_user','Permission denied. Cannot delete a super user!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(283,0,'en','core/acl/users','assigned_role','Assigned Role','2021-07-26 04:16:43','2021-07-26 04:17:14'),(284,0,'en','core/acl/users','no_role_assigned','No role assigned','2021-07-26 04:16:43','2021-07-26 04:17:14'),(285,0,'en','core/acl/users','view_user_profile','View user\'s profile','2021-07-26 04:16:43','2021-07-26 04:17:14'),(286,0,'vi','core/acl/auth','login.username','Tên truy cập','2021-07-26 04:16:43','2021-07-26 04:17:14'),(287,0,'vi','core/acl/auth','login.password','Mật khẩu','2021-07-26 04:16:43','2021-07-26 04:17:14'),(288,0,'vi','core/acl/auth','login.title','Đăng nhập vào quản trị','2021-07-26 04:16:43','2021-07-26 04:17:14'),(289,0,'vi','core/acl/auth','login.remember','Nhớ mật khẩu?','2021-07-26 04:16:43','2021-07-26 04:17:14'),(290,0,'vi','core/acl/auth','login.login','Đăng nhập','2021-07-26 04:16:43','2021-07-26 04:17:14'),(291,0,'vi','core/acl/auth','login.placeholder.username','Vui lòng nhập tên truy cập','2021-07-26 04:16:43','2021-07-26 04:17:14'),(292,0,'vi','core/acl/auth','login.placeholder.email','Vui lòng nhập email','2021-07-26 04:16:43','2021-07-26 04:17:14'),(293,0,'vi','core/acl/auth','login.success','Đăng nhập thành công!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(294,0,'vi','core/acl/auth','login.fail','Sai tên truy cập hoặc mật khẩu.','2021-07-26 04:16:43','2021-07-26 04:17:14'),(295,0,'vi','core/acl/auth','login.not_active','Tài khoản của bạn chưa được kích hoạt!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(296,0,'vi','core/acl/auth','login.banned','Tài khoản này đã bị khóa.','2021-07-26 04:16:43','2021-07-26 04:17:14'),(297,0,'vi','core/acl/auth','login.logout_success','Đăng xuất thành công!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(298,0,'vi','core/acl/auth','login.dont_have_account','Bạn không có tài khoản trong hệ thống, vui lòng liên hệ quản trị viên!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(299,0,'vi','core/acl/auth','login.email','Email','2021-07-26 04:16:43','2021-07-26 04:17:14'),(300,0,'vi','core/acl/auth','forgot_password.title','Quên mật khẩu','2021-07-26 04:16:43','2021-07-26 04:17:14'),(301,0,'vi','core/acl/auth','forgot_password.message','<p>Quên mật khẩu?</p><p>Vui lòng nhập email đăng nhập tài khoản của bạn để hệ thống gửi liên kết khôi phục mật khẩu.</p>','2021-07-26 04:16:43','2021-07-26 04:17:14'),(302,0,'vi','core/acl/auth','forgot_password.submit','Hoàn tất','2021-07-26 04:16:43','2021-07-26 04:17:14'),(303,0,'vi','core/acl/auth','reset.new_password','Mật khẩu mới','2021-07-26 04:16:43','2021-07-26 04:17:14'),(304,0,'vi','core/acl/auth','reset.title','Khôi phục mật khẩu','2021-07-26 04:16:43','2021-07-26 04:17:14'),(305,0,'vi','core/acl/auth','reset.update','Cập nhật','2021-07-26 04:16:43','2021-07-26 04:17:14'),(306,0,'vi','core/acl/auth','reset.wrong_token','Liên kết này không chính xác hoặc đã hết hiệu lực, vui lòng yêu cầu khôi phục mật khẩu lại!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(307,0,'vi','core/acl/auth','reset.user_not_found','Tên đăng nhập không tồn tại.','2021-07-26 04:16:43','2021-07-26 04:17:14'),(308,0,'vi','core/acl/auth','reset.success','Khôi phục mật khẩu thành công!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(309,0,'vi','core/acl/auth','reset.fail','Token không hợp lệ hoặc liên kết khôi phục mật khẩu đã hết thời gian hiệu lực!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(310,0,'vi','core/acl/auth','reset.reset.title','Email khôi phục mật khẩu','2021-07-26 04:16:43','2021-07-26 04:17:14'),(311,0,'vi','core/acl/auth','reset.send.success','Một email khôi phục mật khẩu đã được gửi tới email của bạn, vui lòng kiểm tra và hoàn tất yêu cầu.','2021-07-26 04:16:43','2021-07-26 04:17:14'),(312,0,'vi','core/acl/auth','reset.send.fail','Không thể gửi email trong lúc này. Vui lòng thực hiện lại sau.','2021-07-26 04:16:43','2021-07-26 04:17:14'),(313,0,'vi','core/acl/auth','reset.new-password','Mật khẩu mới','2021-07-26 04:16:43','2021-07-26 04:17:14'),(314,0,'vi','core/acl/auth','reset.email','Email','2021-07-26 04:16:43','2021-07-26 04:17:14'),(315,0,'vi','core/acl/auth','email.reminder.title','Email khôi phục mật khẩu','2021-07-26 04:16:43','2021-07-26 04:17:14'),(316,0,'vi','core/acl/auth','failed','Không thành công','2021-07-26 04:16:43','2021-07-26 04:17:14'),(317,0,'vi','core/acl/auth','throttle','Throttle','2021-07-26 04:16:43','2021-07-26 04:17:14'),(318,0,'vi','core/acl/auth','back_to_login','Quay lại trang đăng nhập','2021-07-26 04:16:43','2021-07-26 04:17:14'),(319,0,'vi','core/acl/auth','login_title','Đăng nhập vào quản trị','2021-07-26 04:16:43','2021-07-26 04:17:14'),(320,0,'vi','core/acl/auth','login_via_social','Đăng nhập thông qua mạng xã hội','2021-07-26 04:16:43','2021-07-26 04:17:14'),(321,0,'vi','core/acl/auth','lost_your_password','Quên mật khẩu?','2021-07-26 04:16:43','2021-07-26 04:17:14'),(322,0,'vi','core/acl/auth','not_member','Chưa là thành viên?','2021-07-26 04:16:43','2021-07-26 04:17:14'),(323,0,'vi','core/acl/auth','register_now','Đăng ký ngay','2021-07-26 04:16:43','2021-07-26 04:17:14'),(324,0,'vi','core/acl/permissions','notices.role_in_use','Không thể xóa quyền người dùng này vì nó đang được sử dụng!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(325,0,'vi','core/acl/permissions','notices.role_delete_belong_user','Không thể xóa quyền hạn này vì nó thuộc về người khác!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(326,0,'vi','core/acl/permissions','notices.role_edit_belong_user','Bạn không được phép sửa quyền này vì nó thuộc về người khác','2021-07-26 04:16:43','2021-07-26 04:17:14'),(327,0,'vi','core/acl/permissions','notices.delete_global_role','Bạn không thể xóa quyền người dùng hệ thống!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(328,0,'vi','core/acl/permissions','notices.delete_success','Quyền người dùng đã được xóa!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(329,0,'vi','core/acl/permissions','notices.modified_success','Quyền người dùng đã được cập nhật thành công!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(330,0,'vi','core/acl/permissions','notices.create_success','Quyền người dùng mới đã được tạo thành công!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(331,0,'vi','core/acl/permissions','notices.duplicated_success','Quyền người dùng đã được sao chép thành công!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(332,0,'vi','core/acl/permissions','notices.no_select','Hãy chọn ít nhất một quyền người dùng để thực hiện hành động này!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(333,0,'vi','core/acl/permissions','notices.not_found','Không tìm thấy quyền người dùng này','2021-07-26 04:16:43','2021-07-26 04:17:14'),(334,0,'vi','core/acl/permissions','name','Tên','2021-07-26 04:16:43','2021-07-26 04:17:14'),(335,0,'vi','core/acl/permissions','current_role','Quyền hiện tại','2021-07-26 04:16:43','2021-07-26 04:17:14'),(336,0,'vi','core/acl/permissions','no_role_assigned','Không có quyền hạn nào','2021-07-26 04:16:43','2021-07-26 04:17:14'),(337,0,'vi','core/acl/permissions','role_assigned','Quyền đã được gán','2021-07-26 04:16:43','2021-07-26 04:17:14'),(338,0,'vi','core/acl/permissions','create_role','Tạo quyền mới','2021-07-26 04:16:43','2021-07-26 04:17:14'),(339,0,'vi','core/acl/permissions','role_name','Tên','2021-07-26 04:16:43','2021-07-26 04:17:14'),(340,0,'vi','core/acl/permissions','role_description','Mô tả','2021-07-26 04:16:43','2021-07-26 04:17:14'),(341,0,'vi','core/acl/permissions','permission_flags','Cờ đánh dấu quyền hạn','2021-07-26 04:16:43','2021-07-26 04:17:14'),(342,0,'vi','core/acl/permissions','cancel','Hủy bỏ','2021-07-26 04:16:43','2021-07-26 04:17:14'),(343,0,'vi','core/acl/permissions','reset','Làm lại','2021-07-26 04:16:43','2021-07-26 04:17:14'),(344,0,'vi','core/acl/permissions','save','Lưu','2021-07-26 04:16:43','2021-07-26 04:17:14'),(345,0,'vi','core/acl/permissions','global_role_msg','Đây là một phân quyền toàn cục và không thể thay đổi.  Bạn có thể sử dụng nút \"Nhân bản\" để tạo một bản sao chép cho phân quyền này và chỉnh sửa.','2021-07-26 04:16:43','2021-07-26 04:17:14'),(346,0,'vi','core/acl/permissions','details','Chi tiết','2021-07-26 04:16:43','2021-07-26 04:17:14'),(347,0,'vi','core/acl/permissions','duplicate','Nhân bản','2021-07-26 04:16:43','2021-07-26 04:17:14'),(348,0,'vi','core/acl/permissions','all','Tất cả phân quyền','2021-07-26 04:16:43','2021-07-26 04:17:14'),(349,0,'vi','core/acl/permissions','list_role','Danh sách quyền','2021-07-26 04:16:43','2021-07-26 04:17:14'),(350,0,'vi','core/acl/permissions','created_on','Ngày tạo','2021-07-26 04:16:43','2021-07-26 04:17:14'),(351,0,'vi','core/acl/permissions','created_by','Được tạo bởi','2021-07-26 04:16:43','2021-07-26 04:17:14'),(352,0,'vi','core/acl/permissions','actions','Tác vụ','2021-07-26 04:16:43','2021-07-26 04:17:14'),(353,0,'vi','core/acl/permissions','create_success','Tạo thành công!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(354,0,'vi','core/acl/permissions','delete_global_role','Không thể xóa quyền hệ thống','2021-07-26 04:16:43','2021-07-26 04:17:14'),(355,0,'vi','core/acl/permissions','delete_success','Xóa quyền thành công','2021-07-26 04:16:43','2021-07-26 04:17:14'),(356,0,'vi','core/acl/permissions','duplicated_success','Nhân bản thành công','2021-07-26 04:16:43','2021-07-26 04:17:14'),(357,0,'vi','core/acl/permissions','modified_success','Sửa thành công','2021-07-26 04:16:43','2021-07-26 04:17:14'),(358,0,'vi','core/acl/permissions','no_select','Hãy chọn ít nhất một quyền để thực hiện hành động này!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(359,0,'vi','core/acl/permissions','not_found','Không tìm thấy quyền thành viên nào!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(360,0,'vi','core/acl/permissions','options','Tùy chọn','2021-07-26 04:16:43','2021-07-26 04:17:14'),(361,0,'vi','core/acl/permissions','role_delete_belong_user','Không thể xóa quyền hạn này vì nó thuộc về người khác!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(362,0,'vi','core/acl/permissions','role_edit_belong_user','Bạn không được phép sửa quyền này vì nó thuộc về người khác','2021-07-26 04:16:43','2021-07-26 04:17:14'),(363,0,'vi','core/acl/permissions','role_in_use','Không thể xóa quyền người dùng này vì nó đang được sử dụng!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(364,0,'vi','core/acl/permissions','access_denied_message','Bạn không có quyền sử dụng chức năng này!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(365,0,'vi','core/acl/permissions','roles','Quyền','2021-07-26 04:16:43','2021-07-26 04:17:14'),(366,0,'vi','core/acl/permissions','role_permission','Nhóm và phân quyền','2021-07-26 04:16:43','2021-07-26 04:17:14'),(367,0,'vi','core/acl/permissions','user_management','Quản lý người dùng hệ thống','2021-07-26 04:16:43','2021-07-26 04:17:14'),(368,0,'vi','core/acl/permissions','super_user_management','Quản lý người dùng cấp cao','2021-07-26 04:16:43','2021-07-26 04:17:14'),(369,0,'vi','core/acl/reminders','password','Mật khẩu phải ít nhất 6 kí tự và trùng khớp với mật khẩu xác nhận.','2021-07-26 04:16:43','2021-07-26 04:17:14'),(370,0,'vi','core/acl/reminders','user','Hệ thống không thể tìm thấy tài khoản với email này.','2021-07-26 04:16:43','2021-07-26 04:17:14'),(371,0,'vi','core/acl/reminders','token','Mã khôi phục mật khẩu này không hợp lệ.','2021-07-26 04:16:43','2021-07-26 04:17:14'),(372,0,'vi','core/acl/reminders','sent','Liên kết khôi phục mật khẩu đã được gửi!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(373,0,'vi','core/acl/reminders','reset','Mật khẩu đã được thay đổi!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(374,0,'vi','core/acl/users','delete_user_logged_in','Không thể xóa người dùng đang đăng nhập hệ thống!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(375,0,'vi','core/acl/users','no_select','Hãy chọn ít nhất một trường để thực hiện hành động này!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(376,0,'vi','core/acl/users','lock_user_logged_in','Không thể khóa người dùng đang đăng nhập hệ thống!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(377,0,'vi','core/acl/users','update_success','Cập nhật trạng thái thành công!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(378,0,'vi','core/acl/users','save_setting_failed','Có lỗi xảy ra trong quá trình lưu cài đặt của người dùng','2021-07-26 04:16:43','2021-07-26 04:17:14'),(379,0,'vi','core/acl/users','not_found','Không tìm thấy người dùng','2021-07-26 04:16:43','2021-07-26 04:17:14'),(380,0,'vi','core/acl/users','email_exist','Email này đã được sử dụng bởi người dùng khác trong hệ thống','2021-07-26 04:16:43','2021-07-26 04:17:14'),(381,0,'vi','core/acl/users','username_exist','Tên đăng nhập này đã được sử dụng bởi người dùng khác trong hệ thống','2021-07-26 04:16:43','2021-07-26 04:17:14'),(382,0,'vi','core/acl/users','update_profile_success','Thông tin tài khoản của bạn đã được cập nhật thành công','2021-07-26 04:16:43','2021-07-26 04:17:14'),(383,0,'vi','core/acl/users','password_update_success','Cập nhật mật khẩu thành công','2021-07-26 04:16:43','2021-07-26 04:17:14'),(384,0,'vi','core/acl/users','current_password_not_valid','Mật khẩu hiện tại không chính xác','2021-07-26 04:16:43','2021-07-26 04:17:14'),(385,0,'vi','core/acl/users','user_exist_in','Người dùng đã là thành viên','2021-07-26 04:16:43','2021-07-26 04:17:14'),(386,0,'vi','core/acl/users','email','Email','2021-07-26 04:16:43','2021-07-26 04:17:14'),(387,0,'vi','core/acl/users','username','Tên đăng nhập','2021-07-26 04:16:43','2021-07-26 04:17:14'),(388,0,'vi','core/acl/users','role','Phân quyền','2021-07-26 04:16:43','2021-07-26 04:17:14'),(389,0,'vi','core/acl/users','first_name','Họ','2021-07-26 04:16:43','2021-07-26 04:17:14'),(390,0,'vi','core/acl/users','last_name','Tên','2021-07-26 04:16:43','2021-07-26 04:17:14'),(391,0,'vi','core/acl/users','message','Thông điệp','2021-07-26 04:16:43','2021-07-26 04:17:14'),(392,0,'vi','core/acl/users','cancel_btn','Hủy bỏ','2021-07-26 04:16:43','2021-07-26 04:17:14'),(393,0,'vi','core/acl/users','password','Mật khẩu','2021-07-26 04:16:43','2021-07-26 04:17:14'),(394,0,'vi','core/acl/users','new_password','Mật khẩu mới','2021-07-26 04:16:43','2021-07-26 04:17:14'),(395,0,'vi','core/acl/users','save','Lưu','2021-07-26 04:16:43','2021-07-26 04:17:14'),(396,0,'vi','core/acl/users','confirm_new_password','Xác nhận mật khẩu mới','2021-07-26 04:16:43','2021-07-26 04:17:14'),(397,0,'vi','core/acl/users','deleted','Xóa thành viên thành công','2021-07-26 04:16:43','2021-07-26 04:17:14'),(398,0,'vi','core/acl/users','cannot_delete','Không thể xóa thành viên','2021-07-26 04:16:43','2021-07-26 04:17:14'),(399,0,'vi','core/acl/users','last_login','Lần cuối đăng nhập','2021-07-26 04:16:43','2021-07-26 04:17:14'),(400,0,'vi','core/acl/users','error_update_profile_image','Có lỗi trong quá trình đổi ảnh đại diện','2021-07-26 04:16:43','2021-07-26 04:17:14'),(401,0,'vi','core/acl/users','email_reminder_template','<h3>Xin chào :name</h3><p>Hệ thống vừa nhận được yêu cầu khôi phục mật khẩu cho tài khoản của bạn, để hoàn tất tác vụ này vui lòng click vào đường link bên dưới.</p><p><a href=\":link\">Khôi phục mật khẩu</a></p><p>Nếu không phải bạn yêu cầu khôi phục mật khẩu, vui lòng bỏ qua email này.</p><p>Email này có giá trị trong vòng 60 phút kể từ lúc nhận được email.</p>','2021-07-26 04:16:43','2021-07-26 04:17:14'),(402,0,'vi','core/acl/users','change_profile_image','Thay đổi ảnh đại diện','2021-07-26 04:16:43','2021-07-26 04:17:14'),(403,0,'vi','core/acl/users','new_image','Ảnh mới','2021-07-26 04:16:43','2021-07-26 04:17:14'),(404,0,'vi','core/acl/users','loading','Đang tải','2021-07-26 04:16:43','2021-07-26 04:17:14'),(405,0,'vi','core/acl/users','close','Đóng','2021-07-26 04:16:43','2021-07-26 04:17:14'),(406,0,'vi','core/acl/users','update','Cập nhật','2021-07-26 04:16:43','2021-07-26 04:17:14'),(407,0,'vi','core/acl/users','read_image_failed','Không đọc được nội dung của hình ảnh','2021-07-26 04:16:43','2021-07-26 04:17:14'),(408,0,'vi','core/acl/users','update_avatar_success','Cập nhật ảnh đại diện thành công!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(409,0,'vi','core/acl/users','users','Quản trị viên','2021-07-26 04:16:43','2021-07-26 04:17:14'),(410,0,'vi','core/acl/users','info.title','Thông tin người dùng','2021-07-26 04:16:43','2021-07-26 04:17:14'),(411,0,'vi','core/acl/users','info.first_name','Họ','2021-07-26 04:16:43','2021-07-26 04:17:14'),(412,0,'vi','core/acl/users','info.last_name','Tên','2021-07-26 04:16:43','2021-07-26 04:17:14'),(413,0,'vi','core/acl/users','info.email','Email','2021-07-26 04:16:43','2021-07-26 04:17:14'),(414,0,'vi','core/acl/users','info.second_email','Email dự phòng','2021-07-26 04:16:43','2021-07-26 04:17:14'),(415,0,'vi','core/acl/users','info.address','Địa chỉ','2021-07-26 04:16:43','2021-07-26 04:17:14'),(416,0,'vi','core/acl/users','info.second_address','Địa chỉ dự phòng','2021-07-26 04:16:43','2021-07-26 04:17:14'),(417,0,'vi','core/acl/users','info.birth_day','Ngày sinh','2021-07-26 04:16:43','2021-07-26 04:17:14'),(418,0,'vi','core/acl/users','info.job','Nghề nghiệp','2021-07-26 04:16:43','2021-07-26 04:17:14'),(419,0,'vi','core/acl/users','info.mobile_number','Số điện thoại di động','2021-07-26 04:16:43','2021-07-26 04:17:14'),(420,0,'vi','core/acl/users','info.second_mobile_number','Số điện thoại dự phòng','2021-07-26 04:16:43','2021-07-26 04:17:14'),(421,0,'vi','core/acl/users','info.interes','Sở thích','2021-07-26 04:16:43','2021-07-26 04:17:14'),(422,0,'vi','core/acl/users','info.about','Giới thiệu','2021-07-26 04:16:43','2021-07-26 04:17:14'),(423,0,'vi','core/acl/users','gender.title','Giới tính','2021-07-26 04:16:43','2021-07-26 04:17:14'),(424,0,'vi','core/acl/users','gender.male','nam','2021-07-26 04:16:43','2021-07-26 04:17:14'),(425,0,'vi','core/acl/users','gender.female','nữ','2021-07-26 04:16:43','2021-07-26 04:17:14'),(426,0,'vi','core/acl/users','change_password','Thay đổi mật khẩu','2021-07-26 04:16:43','2021-07-26 04:17:14'),(427,0,'vi','core/acl/users','current_password','Mật khẩu hiện tại','2021-07-26 04:16:43','2021-07-26 04:17:14'),(428,0,'en','core/base/base','yes','Yes','2021-07-26 04:16:43','2021-07-26 04:17:14'),(429,0,'en','core/base/base','no','No','2021-07-26 04:16:43','2021-07-26 04:17:14'),(430,0,'en','core/base/base','is_default','Is default?','2021-07-26 04:16:43','2021-07-26 04:17:14'),(431,0,'en','core/base/base','proc_close_disabled_error','Function proc_close() is disabled. Please contact your hosting provider to enable\n    it. Or you can add to .env: CAN_EXECUTE_COMMAND=false to disable this feature.','2021-07-26 04:16:43','2021-07-26 04:17:14'),(432,0,'en','core/base/base','email_template.header','Email template header','2021-07-26 04:16:43','2021-07-26 04:17:14'),(433,0,'en','core/base/base','email_template.footer','Email template footer','2021-07-26 04:16:43','2021-07-26 04:17:14'),(434,0,'en','core/base/base','email_template.site_title','Site title','2021-07-26 04:16:43','2021-07-26 04:17:14'),(435,0,'en','core/base/base','email_template.site_url','Site URL','2021-07-26 04:16:43','2021-07-26 04:17:14'),(436,0,'en','core/base/base','email_template.site_logo','Site Logo','2021-07-26 04:16:43','2021-07-26 04:17:14'),(437,0,'en','core/base/base','email_template.date_time','Current date time','2021-07-26 04:16:43','2021-07-26 04:17:14'),(438,0,'en','core/base/base','email_template.date_year','Current year','2021-07-26 04:16:43','2021-07-26 04:17:14'),(439,0,'en','core/base/base','email_template.site_admin_email','Site admin email','2021-07-26 04:16:43','2021-07-26 04:17:14'),(440,0,'en','core/base/base','change_image','Change image','2021-07-26 04:16:43','2021-07-26 04:17:14'),(441,0,'en','core/base/base','delete_image','Delete image','2021-07-26 04:16:43','2021-07-26 04:17:14'),(442,0,'en','core/base/base','preview_image','Preview image','2021-07-26 04:16:43','2021-07-26 04:17:14'),(443,0,'en','core/base/base','image','Image','2021-07-26 04:16:43','2021-07-26 04:17:14'),(444,0,'en','core/base/base','using_button','Using button','2021-07-26 04:16:43','2021-07-26 04:17:14'),(445,0,'en','core/base/base','select_image','Select image','2021-07-26 04:16:43','2021-07-26 04:17:14'),(446,0,'en','core/base/base','to_add_more_image','to add more images','2021-07-26 04:16:43','2021-07-26 04:17:14'),(447,0,'en','core/base/base','add_image','Add image','2021-07-26 04:16:43','2021-07-26 04:17:14'),(448,0,'en','core/base/cache','cache_management','Cache management','2021-07-26 04:16:43','2021-07-26 04:17:14'),(449,0,'en','core/base/cache','cache_commands','Clear cache commands','2021-07-26 04:16:43','2021-07-26 04:17:14'),(450,0,'en','core/base/cache','commands.clear_cms_cache.title','Clear all CMS cache','2021-07-26 04:16:43','2021-07-26 04:17:14'),(451,0,'en','core/base/cache','commands.clear_cms_cache.description','Clear CMS caching: database caching, static blocks... Run this command when you don\'t see the changes after updating data.','2021-07-26 04:16:43','2021-07-26 04:17:14'),(452,0,'en','core/base/cache','commands.clear_cms_cache.success_msg','Cache cleaned','2021-07-26 04:16:43','2021-07-26 04:17:14'),(453,0,'en','core/base/cache','commands.refresh_compiled_views.title','Refresh compiled views','2021-07-26 04:16:43','2021-07-26 04:17:14'),(454,0,'en','core/base/cache','commands.refresh_compiled_views.description','Clear compiled views to make views up to date.','2021-07-26 04:16:43','2021-07-26 04:17:14'),(455,0,'en','core/base/cache','commands.refresh_compiled_views.success_msg','Cache view refreshed','2021-07-26 04:16:43','2021-07-26 04:17:14'),(456,0,'en','core/base/cache','commands.clear_config_cache.title','Clear config cache','2021-07-26 04:16:43','2021-07-26 04:17:14'),(457,0,'en','core/base/cache','commands.clear_config_cache.description','You might need to refresh the config caching when you change something on production environment.','2021-07-26 04:16:43','2021-07-26 04:17:14'),(458,0,'en','core/base/cache','commands.clear_config_cache.success_msg','Config cache cleaned','2021-07-26 04:16:43','2021-07-26 04:17:14'),(459,0,'en','core/base/cache','commands.clear_route_cache.title','Clear route cache','2021-07-26 04:16:43','2021-07-26 04:17:14'),(460,0,'en','core/base/cache','commands.clear_route_cache.description','Clear cache routing.','2021-07-26 04:16:43','2021-07-26 04:17:14'),(461,0,'en','core/base/cache','commands.clear_route_cache.success_msg','The route cache has been cleaned','2021-07-26 04:16:43','2021-07-26 04:17:14'),(462,0,'en','core/base/cache','commands.clear_log.title','Clear log','2021-07-26 04:16:43','2021-07-26 04:17:14'),(463,0,'en','core/base/cache','commands.clear_log.description','Clear system log files','2021-07-26 04:16:43','2021-07-26 04:17:14'),(464,0,'en','core/base/cache','commands.clear_log.success_msg','The system log has been cleaned','2021-07-26 04:16:43','2021-07-26 04:17:14'),(465,0,'en','core/base/enums','statuses.draft','Draft','2021-07-26 04:16:43','2021-07-26 04:17:14'),(466,0,'en','core/base/enums','statuses.pending','Pending','2021-07-26 04:16:43','2021-07-26 04:17:14'),(467,0,'en','core/base/enums','statuses.published','Published','2021-07-26 04:16:43','2021-07-26 04:17:14'),(468,0,'en','core/base/errors','401_title','Permission Denied','2021-07-26 04:16:43','2021-07-26 04:17:14'),(469,0,'en','core/base/errors','401_msg','<li>You have not been granted access to the section by the administrator.</li>\n	                <li>You may have the wrong account type.</li>\n	                <li>You are not authorized to view the requested resource.</li>\n	                <li>Your subscription may have expired.</li>','2021-07-26 04:16:43','2021-07-26 04:17:14'),(470,0,'en','core/base/errors','404_title','Page could not be found','2021-07-26 04:16:43','2021-07-26 04:17:14'),(471,0,'en','core/base/errors','404_msg','<li>The page you requested does not exist.</li>\n	                <li>The link you clicked is no longer.</li>\n	                <li>The page may have moved to a new location.</li>\n	                <li>An error may have occurred.</li>\n	                <li>You are not authorized to view the requested resource.</li>','2021-07-26 04:16:43','2021-07-26 04:17:14'),(472,0,'en','core/base/errors','500_title','Page could not be loaded','2021-07-26 04:16:43','2021-07-26 04:17:14'),(473,0,'en','core/base/errors','500_msg','<li>The page you requested does not exist.</li>\n	                <li>The link you clicked is no longer.</li>\n	                <li>The page may have moved to a new location.</li>\n	                <li>An error may have occurred.</li>\n	                <li>You are not authorized to view the requested resource.</li>','2021-07-26 04:16:43','2021-07-26 04:17:14'),(474,0,'en','core/base/errors','reasons','This may have occurred because of several reasons','2021-07-26 04:16:43','2021-07-26 04:17:14'),(475,0,'en','core/base/errors','try_again','Please try again in a few minutes, or alternatively return to the homepage by <a href=\"http://shopwise.local/admin\">clicking here</a>.','2021-07-26 04:16:43','2021-07-26 04:17:14'),(476,0,'en','core/base/errors','not_found','Not Found','2021-07-26 04:16:43','2021-07-26 04:17:14'),(477,0,'en','core/base/forms','choose_image','Choose image','2021-07-26 04:16:43','2021-07-26 04:17:14'),(478,0,'en','core/base/forms','actions','Actions','2021-07-26 04:16:43','2021-07-26 04:17:14'),(479,0,'en','core/base/forms','save','Save','2021-07-26 04:16:43','2021-07-26 04:17:14'),(480,0,'en','core/base/forms','save_and_continue','Save & Edit','2021-07-26 04:16:43','2021-07-26 04:17:14'),(481,0,'en','core/base/forms','image','Image','2021-07-26 04:16:43','2021-07-26 04:17:14'),(482,0,'en','core/base/forms','image_placeholder','Insert path of image or click upload button','2021-07-26 04:16:43','2021-07-26 04:17:14'),(483,0,'en','core/base/forms','create','Create','2021-07-26 04:16:43','2021-07-26 04:17:14'),(484,0,'en','core/base/forms','edit','Edit','2021-07-26 04:16:43','2021-07-26 04:17:14'),(485,0,'en','core/base/forms','permalink','Permalink','2021-07-26 04:16:43','2021-07-26 04:17:14'),(486,0,'en','core/base/forms','ok','OK','2021-07-26 04:16:43','2021-07-26 04:17:14'),(487,0,'en','core/base/forms','cancel','Cancel','2021-07-26 04:16:43','2021-07-26 04:17:14'),(488,0,'en','core/base/forms','character_remain','character(s) remain','2021-07-26 04:16:43','2021-07-26 04:17:14'),(489,0,'en','core/base/forms','template','Template','2021-07-26 04:16:43','2021-07-26 04:17:14'),(490,0,'en','core/base/forms','choose_file','Choose file','2021-07-26 04:16:43','2021-07-26 04:17:14'),(491,0,'en','core/base/forms','file','File','2021-07-26 04:16:43','2021-07-26 04:17:14'),(492,0,'en','core/base/forms','content','Content','2021-07-26 04:16:43','2021-07-26 04:17:14'),(493,0,'en','core/base/forms','description','Description','2021-07-26 04:16:43','2021-07-26 04:17:14'),(494,0,'en','core/base/forms','name','Name','2021-07-26 04:16:43','2021-07-26 04:17:14'),(495,0,'en','core/base/forms','slug','Slug','2021-07-26 04:16:43','2021-07-26 04:17:14'),(496,0,'en','core/base/forms','title','Title','2021-07-26 04:16:43','2021-07-26 04:17:14'),(497,0,'en','core/base/forms','value','Value','2021-07-26 04:16:43','2021-07-26 04:17:14'),(498,0,'en','core/base/forms','name_placeholder','Name','2021-07-26 04:16:43','2021-07-26 04:17:14'),(499,0,'en','core/base/forms','alias_placeholder','Alias','2021-07-26 04:16:43','2021-07-26 04:17:14'),(500,0,'en','core/base/forms','description_placeholder','Short description','2021-07-26 04:16:43','2021-07-26 04:17:14'),(501,0,'en','core/base/forms','parent','Parent','2021-07-26 04:16:43','2021-07-26 04:17:14'),(502,0,'en','core/base/forms','icon','Icon','2021-07-26 04:16:43','2021-07-26 04:17:14'),(503,0,'en','core/base/forms','icon_placeholder','Ex: fa fa-home','2021-07-26 04:16:43','2021-07-26 04:17:14'),(504,0,'en','core/base/forms','order_by','Order by','2021-07-26 04:16:43','2021-07-26 04:17:14'),(505,0,'en','core/base/forms','order_by_placeholder','Order by','2021-07-26 04:16:43','2021-07-26 04:17:14'),(506,0,'en','core/base/forms','is_featured','Is featured?','2021-07-26 04:16:43','2021-07-26 04:17:14'),(507,0,'en','core/base/forms','is_default','Is default?','2021-07-26 04:16:43','2021-07-26 04:17:14'),(508,0,'en','core/base/forms','update','Update','2021-07-26 04:16:43','2021-07-26 04:17:14'),(509,0,'en','core/base/forms','publish','Publish','2021-07-26 04:16:43','2021-07-26 04:17:14'),(510,0,'en','core/base/forms','remove_image','Remove image','2021-07-26 04:16:43','2021-07-26 04:17:14'),(511,0,'en','core/base/forms','remove_file','Remove file','2021-07-26 04:16:43','2021-07-26 04:17:14'),(512,0,'en','core/base/forms','order','Order','2021-07-26 04:16:43','2021-07-26 04:17:14'),(513,0,'en','core/base/forms','alias','Alias','2021-07-26 04:16:43','2021-07-26 04:17:14'),(514,0,'en','core/base/forms','basic_information','Basic information','2021-07-26 04:16:43','2021-07-26 04:17:14'),(515,0,'en','core/base/forms','short_code','Shortcode','2021-07-26 04:16:43','2021-07-26 04:17:14'),(516,0,'en','core/base/forms','add_short_code','Add a shortcode','2021-07-26 04:16:43','2021-07-26 04:17:14'),(517,0,'en','core/base/forms','add','Add','2021-07-26 04:16:43','2021-07-26 04:17:14'),(518,0,'en','core/base/forms','link','Link','2021-07-26 04:16:43','2021-07-26 04:17:14'),(519,0,'en','core/base/forms','show_hide_editor','Show/Hide Editor','2021-07-26 04:16:43','2021-07-26 04:17:14'),(520,0,'en','core/base/forms','basic_info_title','Basic information','2021-07-26 04:16:43','2021-07-26 04:17:14'),(521,0,'en','core/base/forms','expand_all','Expand all','2021-07-26 04:16:43','2021-07-26 04:17:14'),(522,0,'en','core/base/forms','collapse_all','Collapse all','2021-07-26 04:16:43','2021-07-26 04:17:14'),(523,0,'en','core/base/forms','view_new_tab','Open in new tab','2021-07-26 04:16:43','2021-07-26 04:17:14'),(524,0,'en','core/base/layouts','platform_admin','Platform Administration','2021-07-26 04:16:43','2021-07-26 04:17:14'),(525,0,'en','core/base/layouts','dashboard','Dashboard','2021-07-26 04:16:43','2021-07-26 04:17:14'),(526,0,'en','core/base/layouts','widgets','Widgets','2021-07-26 04:16:43','2021-07-26 04:17:14'),(527,0,'en','core/base/layouts','plugins','Plugins','2021-07-26 04:16:43','2021-07-26 04:17:14'),(528,0,'en','core/base/layouts','settings','Settings','2021-07-26 04:16:43','2021-07-26 04:17:14'),(529,0,'en','core/base/layouts','setting_general','General','2021-07-26 04:16:43','2021-07-26 04:17:14'),(530,0,'en','core/base/layouts','setting_email','Email','2021-07-26 04:16:43','2021-07-26 04:17:14'),(531,0,'en','core/base/layouts','system_information','System information','2021-07-26 04:16:43','2021-07-26 04:17:14'),(532,0,'en','core/base/layouts','theme','Theme','2021-07-26 04:16:43','2021-07-26 04:17:14'),(533,0,'en','core/base/layouts','copyright','Copyright :year &copy; :company. Version: <span>:version</span>','2021-07-26 04:16:43','2021-07-26 04:17:14'),(534,0,'en','core/base/layouts','profile','Profile','2021-07-26 04:16:43','2021-07-26 04:17:14'),(535,0,'en','core/base/layouts','logout','Logout','2021-07-26 04:16:43','2021-07-26 04:17:14'),(536,0,'en','core/base/layouts','no_search_result','No results found, please try with different keywords.','2021-07-26 04:16:43','2021-07-26 04:17:14'),(537,0,'en','core/base/layouts','home','Home','2021-07-26 04:16:43','2021-07-26 04:17:14'),(538,0,'en','core/base/layouts','search','Search','2021-07-26 04:16:43','2021-07-26 04:17:14'),(539,0,'en','core/base/layouts','add_new','Add new','2021-07-26 04:16:43','2021-07-26 04:17:14'),(540,0,'en','core/base/layouts','n_a','N/A','2021-07-26 04:16:43','2021-07-26 04:17:14'),(541,0,'en','core/base/layouts','page_loaded_time','Page loaded in','2021-07-26 04:16:43','2021-07-26 04:17:14'),(542,0,'en','core/base/layouts','view_website','View website','2021-07-26 04:16:43','2021-07-26 04:17:14'),(543,0,'en','core/base/mail','send-fail','Send email failed','2021-07-26 04:16:43','2021-07-26 04:17:14'),(544,0,'en','core/base/notices','create_success_message','Created successfully','2021-07-26 04:16:43','2021-07-26 04:17:14'),(545,0,'en','core/base/notices','update_success_message','Updated successfully','2021-07-26 04:16:43','2021-07-26 04:17:14'),(546,0,'en','core/base/notices','delete_success_message','Deleted successfully','2021-07-26 04:16:43','2021-07-26 04:17:14'),(547,0,'en','core/base/notices','success_header','Success!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(548,0,'en','core/base/notices','error_header','Error!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(549,0,'en','core/base/notices','no_select','Please select at least one record to perform this action!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(550,0,'en','core/base/notices','processing_request','We are processing your request.','2021-07-26 04:16:43','2021-07-26 04:17:14'),(551,0,'en','core/base/notices','error','Error!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(552,0,'en','core/base/notices','success','Success!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(553,0,'en','core/base/notices','info','Info!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(554,0,'en','core/base/notices','enum.validate_message','The :attribute value you have entered is invalid.','2021-07-26 04:16:43','2021-07-26 04:17:14'),(555,0,'en','core/base/system','no_select','Please select at least one record to take this action!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(556,0,'en','core/base/system','cannot_find_user','Unable to find specified user','2021-07-26 04:16:43','2021-07-26 04:17:14'),(557,0,'en','core/base/system','supper_revoked','Super user access revoked','2021-07-26 04:16:43','2021-07-26 04:17:14'),(558,0,'en','core/base/system','cannot_revoke_yourself','Can not revoke supper user access permission yourself!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(559,0,'en','core/base/system','cant_remove_supper','You don\'t has permission to remove this super user','2021-07-26 04:16:43','2021-07-26 04:17:14'),(560,0,'en','core/base/system','cant_find_user_with_email','Unable to find user with specified email address','2021-07-26 04:16:43','2021-07-26 04:17:14'),(561,0,'en','core/base/system','supper_granted','Super user access granted','2021-07-26 04:16:43','2021-07-26 04:17:14'),(562,0,'en','core/base/system','delete_log_success','Delete log file successfully!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(563,0,'en','core/base/system','get_member_success','Member list retrieved successfully','2021-07-26 04:16:43','2021-07-26 04:17:14'),(564,0,'en','core/base/system','error_occur','The following errors occurred','2021-07-26 04:16:43','2021-07-26 04:17:14'),(565,0,'en','core/base/system','user_management','User Management','2021-07-26 04:16:43','2021-07-26 04:17:14'),(566,0,'en','core/base/system','user_management_description','Manage users.','2021-07-26 04:16:43','2021-07-26 04:17:14'),(567,0,'en','core/base/system','role_and_permission','Roles and Permissions','2021-07-26 04:16:43','2021-07-26 04:17:14'),(568,0,'en','core/base/system','role_and_permission_description','Manage the available roles.','2021-07-26 04:16:43','2021-07-26 04:17:14'),(569,0,'en','core/base/system','user.list_super','List Super Users','2021-07-26 04:16:43','2021-07-26 04:17:14'),(570,0,'en','core/base/system','user.email','Email','2021-07-26 04:16:43','2021-07-26 04:17:14'),(571,0,'en','core/base/system','user.last_login','Last Login','2021-07-26 04:16:43','2021-07-26 04:17:14'),(572,0,'en','core/base/system','user.username','Username','2021-07-26 04:16:43','2021-07-26 04:17:14'),(573,0,'en','core/base/system','user.add_user','Add Super User','2021-07-26 04:16:43','2021-07-26 04:17:14'),(574,0,'en','core/base/system','user.cancel','Cancel','2021-07-26 04:16:43','2021-07-26 04:17:14'),(575,0,'en','core/base/system','user.create','Create','2021-07-26 04:16:43','2021-07-26 04:17:14'),(576,0,'en','core/base/system','options.features','Feature Access Control','2021-07-26 04:16:43','2021-07-26 04:17:14'),(577,0,'en','core/base/system','options.feature_description','Manage the available.','2021-07-26 04:16:43','2021-07-26 04:17:14'),(578,0,'en','core/base/system','options.manage_super','Super User Management','2021-07-26 04:16:43','2021-07-26 04:17:14'),(579,0,'en','core/base/system','options.manage_super_description','Add/remove super users.','2021-07-26 04:16:43','2021-07-26 04:17:14'),(580,0,'en','core/base/system','options.info','System information','2021-07-26 04:16:43','2021-07-26 04:17:14'),(581,0,'en','core/base/system','options.info_description','All information about current system configuration.','2021-07-26 04:16:43','2021-07-26 04:17:14'),(582,0,'en','core/base/system','info.title','System information','2021-07-26 04:16:43','2021-07-26 04:17:14'),(583,0,'en','core/base/system','info.cache','Cache','2021-07-26 04:16:43','2021-07-26 04:17:14'),(584,0,'en','core/base/system','info.locale','Active locale','2021-07-26 04:16:43','2021-07-26 04:17:14'),(585,0,'en','core/base/system','info.environment','Environment','2021-07-26 04:16:43','2021-07-26 04:17:14'),(586,0,'en','core/base/system','disabled_in_demo_mode','You cannot do it in demo mode!','2021-07-26 04:16:43','2021-07-26 04:17:14'),(587,0,'en','core/base/system','report_description','Please share this information for troubleshooting','2021-07-26 04:16:43','2021-07-26 04:17:14'),(588,0,'en','core/base/system','get_system_report','Get System Report','2021-07-26 04:16:43','2021-07-26 04:17:14'),(589,0,'en','core/base/system','system_environment','System Environment','2021-07-26 04:16:43','2021-07-26 04:17:14'),(590,0,'en','core/base/system','framework_version','Framework Version','2021-07-26 04:16:43','2021-07-26 04:17:14'),(591,0,'en','core/base/system','timezone','Timezone','2021-07-26 04:16:43','2021-07-26 04:17:14'),(592,0,'en','core/base/system','debug_mode','Debug Mode','2021-07-26 04:16:43','2021-07-26 04:17:14'),(593,0,'en','core/base/system','storage_dir_writable','Storage Dir Writable','2021-07-26 04:16:43','2021-07-26 04:17:14'),(594,0,'en','core/base/system','cache_dir_writable','Cache Dir Writable','2021-07-26 04:16:43','2021-07-26 04:17:14'),(595,0,'en','core/base/system','app_size','App Size','2021-07-26 04:16:43','2021-07-26 04:17:14'),(596,0,'en','core/base/system','server_environment','Server Environment','2021-07-26 04:16:43','2021-07-26 04:17:14'),(597,0,'en','core/base/system','php_version','PHP Version','2021-07-26 04:16:43','2021-07-26 04:17:14'),(598,0,'en','core/base/system','php_version_error','PHP must be >= :version','2021-07-26 04:16:43','2021-07-26 04:17:14'),(599,0,'en','core/base/system','server_software','Server Software','2021-07-26 04:16:43','2021-07-26 04:17:14'),(600,0,'en','core/base/system','server_os','Server OS','2021-07-26 04:16:43','2021-07-26 04:17:14'),(601,0,'en','core/base/system','database','Database','2021-07-26 04:16:43','2021-07-26 04:17:14'),(602,0,'en','core/base/system','ssl_installed','SSL Installed','2021-07-26 04:16:43','2021-07-26 04:17:14'),(603,0,'en','core/base/system','cache_driver','Cache Driver','2021-07-26 04:16:43','2021-07-26 04:17:14'),(604,0,'en','core/base/system','session_driver','Session Driver','2021-07-26 04:16:43','2021-07-26 04:17:14'),(605,0,'en','core/base/system','queue_connection','Queue Connection','2021-07-26 04:16:43','2021-07-26 04:17:14'),(606,0,'en','core/base/system','mbstring_ext','Mbstring Ext','2021-07-26 04:16:43','2021-07-26 04:17:14'),(607,0,'en','core/base/system','openssl_ext','OpenSSL Ext','2021-07-26 04:16:43','2021-07-26 04:17:14'),(608,0,'en','core/base/system','pdo_ext','PDO Ext','2021-07-26 04:16:43','2021-07-26 04:17:14'),(609,0,'en','core/base/system','curl_ext','CURL Ext','2021-07-26 04:16:43','2021-07-26 04:17:14'),(610,0,'en','core/base/system','exif_ext','Exif Ext','2021-07-26 04:16:43','2021-07-26 04:17:14'),(611,0,'en','core/base/system','file_info_ext','File info Ext','2021-07-26 04:16:43','2021-07-26 04:17:14'),(612,0,'en','core/base/system','tokenizer_ext','Tokenizer Ext','2021-07-26 04:16:43','2021-07-26 04:17:14'),(613,0,'en','core/base/system','extra_stats','Extra Stats','2021-07-26 04:16:43','2021-07-26 04:17:14'),(614,0,'en','core/base/system','installed_packages','Installed packages and their version numbers','2021-07-26 04:16:43','2021-07-26 04:17:14'),(615,0,'en','core/base/system','extra_information','Extra Information','2021-07-26 04:16:43','2021-07-26 04:17:14'),(616,0,'en','core/base/system','copy_report','Copy Report','2021-07-26 04:16:43','2021-07-26 04:17:14'),(617,0,'en','core/base/system','package_name','Package Name','2021-07-26 04:16:43','2021-07-26 04:17:14'),(618,0,'en','core/base/system','dependency_name','Dependency Name','2021-07-26 04:16:43','2021-07-26 04:17:14'),(619,0,'en','core/base/system','version','Version','2021-07-26 04:16:43','2021-07-26 04:17:14'),(620,0,'en','core/base/system','cms_version','CMS Version','2021-07-26 04:16:43','2021-07-26 04:17:14'),(621,0,'en','core/base/system','imagick_or_gd_ext','Imagick/GD Ext','2021-07-26 04:16:43','2021-07-26 04:17:14'),(622,0,'en','core/base/tables','id','ID','2021-07-26 04:16:43','2021-07-26 04:17:14'),(623,0,'en','core/base/tables','name','Name','2021-07-26 04:16:43','2021-07-26 04:17:14'),(624,0,'en','core/base/tables','slug','Slug','2021-07-26 04:16:43','2021-07-26 04:17:14'),(625,0,'en','core/base/tables','title','Title','2021-07-26 04:16:43','2021-07-26 04:17:14'),(626,0,'en','core/base/tables','order_by','Order By','2021-07-26 04:16:43','2021-07-26 04:17:14'),(627,0,'en','core/base/tables','order','Order','2021-07-26 04:16:43','2021-07-26 04:17:14'),(628,0,'en','core/base/tables','status','Status','2021-07-26 04:16:43','2021-07-26 04:17:14'),(629,0,'en','core/base/tables','created_at','Created At','2021-07-26 04:16:43','2021-07-26 04:17:14'),(630,0,'en','core/base/tables','updated_at','Updated At','2021-07-26 04:16:43','2021-07-26 04:17:14'),(631,0,'en','core/base/tables','description','Description','2021-07-26 04:16:43','2021-07-26 04:17:14'),(632,0,'en','core/base/tables','operations','Operations','2021-07-26 04:16:43','2021-07-26 04:17:14'),(633,0,'en','core/base/tables','url','URL','2021-07-26 04:16:43','2021-07-26 04:17:14'),(634,0,'en','core/base/tables','author','Author','2021-07-26 04:16:43','2021-07-26 04:17:14'),(635,0,'en','core/base/tables','notes','Notes','2021-07-26 04:16:43','2021-07-26 04:17:14'),(636,0,'en','core/base/tables','column','Column','2021-07-26 04:16:43','2021-07-26 04:17:14'),(637,0,'en','core/base/tables','origin','Origin','2021-07-26 04:16:43','2021-07-26 04:17:14'),(638,0,'en','core/base/tables','after_change','After changes','2021-07-26 04:16:43','2021-07-26 04:17:14'),(639,0,'en','core/base/tables','views','Views','2021-07-26 04:16:43','2021-07-26 04:17:14'),(640,0,'en','core/base/tables','browser','Browser','2021-07-26 04:16:43','2021-07-26 04:17:14'),(641,0,'en','core/base/tables','session','Session','2021-07-26 04:16:43','2021-07-26 04:17:14'),(642,0,'en','core/base/tables','activated','activated','2021-07-26 04:16:43','2021-07-26 04:17:14'),(643,0,'en','core/base/tables','deactivated','deactivated','2021-07-26 04:16:43','2021-07-26 04:17:14'),(644,0,'en','core/base/tables','is_featured','Is featured','2021-07-26 04:16:43','2021-07-26 04:17:14'),(645,0,'en','core/base/tables','edit','Edit','2021-07-26 04:16:43','2021-07-26 04:17:14'),(646,0,'en','core/base/tables','delete','Delete','2021-07-26 04:16:43','2021-07-26 04:17:14'),(647,0,'en','core/base/tables','restore','Restore','2021-07-26 04:16:43','2021-07-26 04:17:14'),(648,0,'en','core/base/tables','activate','Activate','2021-07-26 04:16:43','2021-07-26 04:17:14'),(649,0,'en','core/base/tables','deactivate','Deactivate','2021-07-26 04:16:43','2021-07-26 04:17:14'),(650,0,'en','core/base/tables','excel','Excel','2021-07-26 04:16:43','2021-07-26 04:17:14'),(651,0,'en','core/base/tables','export','Export','2021-07-26 04:16:43','2021-07-26 04:17:14'),(652,0,'en','core/base/tables','csv','CSV','2021-07-26 04:16:43','2021-07-26 04:17:14'),(653,0,'en','core/base/tables','pdf','PDF','2021-07-26 04:16:43','2021-07-26 04:17:14'),(654,0,'en','core/base/tables','print','Print','2021-07-26 04:16:43','2021-07-26 04:17:14'),(655,0,'en','core/base/tables','reset','Reset','2021-07-26 04:16:43','2021-07-26 04:17:14'),(656,0,'en','core/base/tables','reload','Reload','2021-07-26 04:16:43','2021-07-26 04:17:14'),(657,0,'en','core/base/tables','display','Display','2021-07-26 04:16:43','2021-07-26 04:17:14'),(658,0,'en','core/base/tables','all','All','2021-07-26 04:16:43','2021-07-26 04:17:14'),(659,0,'en','core/base/tables','add_new','Add New','2021-07-26 04:16:43','2021-07-26 04:17:14'),(660,0,'en','core/base/tables','action','Actions','2021-07-26 04:16:43','2021-07-26 04:17:14'),(661,0,'en','core/base/tables','delete_entry','Delete','2021-07-26 04:16:43','2021-07-26 04:17:14'),(662,0,'en','core/base/tables','view','View Detail','2021-07-26 04:16:43','2021-07-26 04:17:14'),(663,0,'en','core/base/tables','save','Save','2021-07-26 04:16:43','2021-07-26 04:17:14'),(664,0,'en','core/base/tables','show_from','Show from','2021-07-26 04:16:43','2021-07-26 04:17:14'),(665,0,'en','core/base/tables','to','to','2021-07-26 04:16:43','2021-07-26 04:17:14'),(666,0,'en','core/base/tables','in','in','2021-07-26 04:16:43','2021-07-26 04:17:14'),(667,0,'en','core/base/tables','records','records','2021-07-26 04:16:43','2021-07-26 04:17:14'),(668,0,'en','core/base/tables','no_data','No data to display','2021-07-26 04:16:43','2021-07-26 04:17:14'),(669,0,'en','core/base/tables','no_record','No record','2021-07-26 04:16:43','2021-07-26 04:17:14'),(670,0,'en','core/base/tables','confirm_delete','Confirm delete','2021-07-26 04:16:43','2021-07-26 04:17:14'),(671,0,'en','core/base/tables','confirm_delete_msg','Do you really want to delete this record?','2021-07-26 04:16:43','2021-07-26 04:17:14'),(672,0,'en','core/base/tables','confirm_delete_many_msg','Do you really want to delete selected record(s)?','2021-07-26 04:16:43','2021-07-26 04:17:14'),(673,0,'en','core/base/tables','cancel','Cancel','2021-07-26 04:16:43','2021-07-26 04:17:14'),(674,0,'en','core/base/tables','template','Template','2021-07-26 04:16:43','2021-07-26 04:17:14'),(675,0,'en','core/base/tables','email','Email','2021-07-26 04:16:44','2021-07-26 04:17:14'),(676,0,'en','core/base/tables','last_login','Last login','2021-07-26 04:16:44','2021-07-26 04:17:14'),(677,0,'en','core/base/tables','shortcode','Shortcode','2021-07-26 04:16:44','2021-07-26 04:17:14'),(678,0,'en','core/base/tables','image','Image','2021-07-26 04:16:44','2021-07-26 04:17:14'),(679,0,'en','core/base/tables','bulk_changes','Bulk changes','2021-07-26 04:16:44','2021-07-26 04:17:14'),(680,0,'en','core/base/tables','submit','Submit','2021-07-26 04:16:44','2021-07-26 04:17:14'),(681,0,'en','core/base/tables','please_select_record','Please select at least one record to perform this action!','2021-07-26 04:16:44','2021-07-26 04:17:14'),(682,0,'en','core/base/tabs','detail','Detail','2021-07-26 04:16:44','2021-07-26 04:17:14'),(683,0,'en','core/base/tabs','file','Files','2021-07-26 04:16:44','2021-07-26 04:17:14'),(684,0,'en','core/base/tabs','record_note','Record Note','2021-07-26 04:16:44','2021-07-26 04:17:14'),(685,0,'en','core/base/tabs','revision','Revision History','2021-07-26 04:16:44','2021-07-26 04:17:14'),(686,0,'vi','core/base/cache','cache_management','Quản lý bộ nhớ đệm','2021-07-26 04:16:44','2021-07-26 04:17:14'),(687,0,'vi','core/base/cache','cache_commands','Các lệnh xoá bộ nhớ đệm cơ bản','2021-07-26 04:16:44','2021-07-26 04:17:14'),(688,0,'vi','core/base/cache','commands.clear_cms_cache.title','Xóa tất cả bộ đệm hiện có của ứng dụng','2021-07-26 04:16:44','2021-07-26 04:17:14'),(689,0,'vi','core/base/cache','commands.clear_cms_cache.description','Xóa các bộ nhớ đệm của ứng dụng: cơ sở dữ liệu, nội dung tĩnh... Chạy lệnh này khi bạn thử cập nhật dữ liệu nhưng giao diện không thay đổi','2021-07-26 04:16:44','2021-07-26 04:17:14'),(690,0,'vi','core/base/cache','commands.clear_cms_cache.success_msg','Bộ đệm đã được xóa','2021-07-26 04:16:44','2021-07-26 04:17:14'),(691,0,'vi','core/base/cache','commands.refresh_compiled_views.title','Làm mới bộ đệm giao diện','2021-07-26 04:16:44','2021-07-26 04:17:14'),(692,0,'vi','core/base/cache','commands.refresh_compiled_views.description','Làm mới bộ đệm giao diện giúp phần giao diện luôn mới nhất','2021-07-26 04:16:44','2021-07-26 04:17:14'),(693,0,'vi','core/base/cache','commands.refresh_compiled_views.success_msg','Bộ đệm giao diện đã được làm mới','2021-07-26 04:16:44','2021-07-26 04:17:14'),(694,0,'vi','core/base/cache','commands.clear_config_cache.title','Xóa bộ nhớ đệm của phần cấu hình','2021-07-26 04:16:44','2021-07-26 04:17:14'),(695,0,'vi','core/base/cache','commands.clear_config_cache.description','Bạn cần làm mới bộ đệm cấu hình khi bạn tạo ra sự thay đổi nào đó ở môi trường thành phẩm.','2021-07-26 04:16:44','2021-07-26 04:17:14'),(696,0,'vi','core/base/cache','commands.clear_config_cache.success_msg','Bộ đệm cấu hình đã được xóa','2021-07-26 04:16:44','2021-07-26 04:17:14'),(697,0,'vi','core/base/cache','commands.clear_route_cache.title','Xoá cache đường dẫn','2021-07-26 04:16:44','2021-07-26 04:17:14'),(698,0,'vi','core/base/cache','commands.clear_route_cache.description','Cần thực hiện thao tác này khi thấy không xuất hiện đường dẫn mới.','2021-07-26 04:16:44','2021-07-26 04:17:14'),(699,0,'vi','core/base/cache','commands.clear_route_cache.success_msg','Bộ đệm điều hướng đã bị xóa','2021-07-26 04:16:44','2021-07-26 04:17:14'),(700,0,'vi','core/base/cache','commands.clear_log.description','Xoá lịch sử lỗi','2021-07-26 04:16:44','2021-07-26 04:17:14'),(701,0,'vi','core/base/cache','commands.clear_log.success_msg','Lịch sử lỗi đã được làm sạch','2021-07-26 04:16:44','2021-07-26 04:17:14'),(702,0,'vi','core/base/cache','commands.clear_log.title','Xoá lịch sử lỗi','2021-07-26 04:16:44','2021-07-26 04:17:14'),(703,0,'vi','core/base/enums','statuses.draft','Bản nháp','2021-07-26 04:16:44','2021-07-26 04:17:14'),(704,0,'vi','core/base/enums','statuses.pending','Đang chờ xử lý','2021-07-26 04:16:44','2021-07-26 04:17:14'),(705,0,'vi','core/base/errors','401_title','Bạn không có quyền truy cập trang này','2021-07-26 04:16:44','2021-07-26 04:17:14'),(706,0,'vi','core/base/errors','401_msg','<li>Bạn không được cấp quyền truy cập bởi quản trị viên.</li>\n	                <li>Bạn sử dụng sai loại tài khoản.</li>\n	                <li>Bạn không được cấp quyền để có thể truy cập trang này</li>','2021-07-26 04:16:44','2021-07-26 04:17:14'),(707,0,'vi','core/base/errors','404_title','Không tìm thấy trang yêu cầu','2021-07-26 04:16:44','2021-07-26 04:17:14'),(708,0,'vi','core/base/errors','404_msg','<li>Trang bạn yêu cầu không tồn tại.</li>\n	                <li>Liên kết bạn vừa nhấn không còn được sử dụng.</li>\n	                <li>Trang này có thể đã được chuyển sang vị trí khác.</li>\n	                <li>Có thể có lỗi xảy ra.</li>\n	                <li>Bạn không được cấp quyền để có thể truy cập trang này</li>','2021-07-26 04:16:44','2021-07-26 04:17:14'),(709,0,'vi','core/base/errors','500_title','Không thể tải trang','2021-07-26 04:16:44','2021-07-26 04:17:14'),(710,0,'vi','core/base/errors','500_msg','<li>Trang bạn yêu cầu không tồn tại.</li>\n	                <li>Liên kết bạn vừa nhấn không còn được sử dụng.</li>\n	                <li>Trang này có thể đã được chuyển sang vị trí khác.</li>\n	                <li>Có thể có lỗi xảy ra.</li>\n	                <li>Bạn không được cấp quyền để có thể truy cập trang này</li>','2021-07-26 04:16:44','2021-07-26 04:17:14'),(711,0,'vi','core/base/errors','reasons','Điều này có thể xảy ra vì nhiều lý do.','2021-07-26 04:16:44','2021-07-26 04:17:14'),(712,0,'vi','core/base/errors','try_again','Vui lòng thử lại trong vài phút, hoặc quay trở lại trang chủ bằng cách <a href=\"http://cms.local/admin\"> nhấn vào đây </a>.','2021-07-26 04:16:44','2021-07-26 04:17:14'),(713,0,'vi','core/base/forms','choose_image','Chọn ảnh','2021-07-26 04:16:44','2021-07-26 04:17:14'),(714,0,'vi','core/base/forms','actions','Tác vụ','2021-07-26 04:16:44','2021-07-26 04:17:14'),(715,0,'vi','core/base/forms','save','Lưu','2021-07-26 04:16:44','2021-07-26 04:17:14'),(716,0,'vi','core/base/forms','save_and_continue','Lưu & chỉnh sửa','2021-07-26 04:16:44','2021-07-26 04:17:14'),(717,0,'vi','core/base/forms','image','Hình ảnh','2021-07-26 04:16:44','2021-07-26 04:17:14'),(718,0,'vi','core/base/forms','image_placeholder','Chèn đường dẫn hình ảnh hoặc nhấn nút để chọn hình','2021-07-26 04:16:44','2021-07-26 04:17:14'),(719,0,'vi','core/base/forms','create','Tạo mới','2021-07-26 04:16:44','2021-07-26 04:17:14'),(720,0,'vi','core/base/forms','edit','Sửa','2021-07-26 04:16:44','2021-07-26 04:17:14'),(721,0,'vi','core/base/forms','permalink','Đường dẫn','2021-07-26 04:16:44','2021-07-26 04:17:14'),(722,0,'vi','core/base/forms','ok','OK','2021-07-26 04:16:44','2021-07-26 04:17:14'),(723,0,'vi','core/base/forms','cancel','Hủy bỏ','2021-07-26 04:16:44','2021-07-26 04:17:14'),(724,0,'vi','core/base/forms','character_remain','kí tự còn lại','2021-07-26 04:16:44','2021-07-26 04:17:14'),(725,0,'vi','core/base/forms','template','Template','2021-07-26 04:16:44','2021-07-26 04:17:14'),(726,0,'vi','core/base/forms','choose_file','Chọn tập tin','2021-07-26 04:16:44','2021-07-26 04:17:14'),(727,0,'vi','core/base/forms','file','Tập tin','2021-07-26 04:16:44','2021-07-26 04:17:14'),(728,0,'vi','core/base/forms','content','Nội dung','2021-07-26 04:16:44','2021-07-26 04:17:14'),(729,0,'vi','core/base/forms','description','Mô tả','2021-07-26 04:16:44','2021-07-26 04:17:14'),(730,0,'vi','core/base/forms','name','Tên','2021-07-26 04:16:44','2021-07-26 04:17:14'),(731,0,'vi','core/base/forms','name_placeholder','Nhập tên','2021-07-26 04:16:44','2021-07-26 04:17:14'),(732,0,'vi','core/base/forms','description_placeholder','Mô tả ngắn','2021-07-26 04:16:44','2021-07-26 04:17:14'),(733,0,'vi','core/base/forms','parent','Cha','2021-07-26 04:16:44','2021-07-26 04:17:14'),(734,0,'vi','core/base/forms','icon','Biểu tượng','2021-07-26 04:16:44','2021-07-26 04:17:14'),(735,0,'vi','core/base/forms','order_by','Sắp xếp','2021-07-26 04:16:44','2021-07-26 04:17:14'),(736,0,'vi','core/base/forms','order_by_placeholder','Sắp xếp','2021-07-26 04:16:44','2021-07-26 04:17:14'),(737,0,'vi','core/base/forms','slug','Slug','2021-07-26 04:16:44','2021-07-26 04:17:14'),(738,0,'vi','core/base/forms','is_featured','Nổi bật?','2021-07-26 04:16:44','2021-07-26 04:17:14'),(739,0,'vi','core/base/forms','is_default','Mặc định?','2021-07-26 04:16:44','2021-07-26 04:17:14'),(740,0,'vi','core/base/forms','icon_placeholder','Ví dụ: fa fa-home','2021-07-26 04:16:44','2021-07-26 04:17:14'),(741,0,'vi','core/base/forms','update','Cập nhật','2021-07-26 04:16:44','2021-07-26 04:17:14'),(742,0,'vi','core/base/forms','publish','Xuất bản','2021-07-26 04:16:44','2021-07-26 04:17:14'),(743,0,'vi','core/base/forms','remove_image','Xoá ảnh','2021-07-26 04:16:44','2021-07-26 04:17:14'),(744,0,'vi','core/base/forms','add','Thêm','2021-07-26 04:16:44','2021-07-26 04:17:14'),(745,0,'vi','core/base/forms','add_short_code','Thêm shortcode','2021-07-26 04:16:44','2021-07-26 04:17:14'),(746,0,'vi','core/base/forms','alias','Mã thay thế','2021-07-26 04:16:44','2021-07-26 04:17:14'),(747,0,'vi','core/base/forms','alias_placeholder','Mã thay thế','2021-07-26 04:16:44','2021-07-26 04:17:14'),(748,0,'vi','core/base/forms','basic_information','Thông tin cơ bản','2021-07-26 04:16:44','2021-07-26 04:17:14'),(749,0,'vi','core/base/forms','link','Liên kết','2021-07-26 04:16:44','2021-07-26 04:17:14'),(750,0,'vi','core/base/forms','order','Thứ tự','2021-07-26 04:16:44','2021-07-26 04:17:14'),(751,0,'vi','core/base/forms','short_code','Shortcode','2021-07-26 04:16:44','2021-07-26 04:17:14'),(752,0,'vi','core/base/forms','title','Tiêu đề','2021-07-26 04:16:44','2021-07-26 04:17:14'),(753,0,'vi','core/base/forms','value','Giá trị','2021-07-26 04:16:44','2021-07-26 04:17:14'),(754,0,'vi','core/base/forms','show_hide_editor','Ẩn/Hiện trình soạn thảo','2021-07-26 04:16:44','2021-07-26 04:17:14'),(755,0,'vi','core/base/forms','basic_info_title','Thông tin cơ bản','2021-07-26 04:16:44','2021-07-26 04:17:14'),(756,0,'vi','core/base/layouts','platform_admin','Quản trị hệ thống','2021-07-26 04:16:44','2021-07-26 04:17:14'),(757,0,'vi','core/base/layouts','dashboard','Bảng điều khiển','2021-07-26 04:16:44','2021-07-26 04:17:14'),(758,0,'vi','core/base/layouts','widgets','Tiện ích','2021-07-26 04:16:44','2021-07-26 04:17:14'),(759,0,'vi','core/base/layouts','plugins','Tiện ích mở rộng','2021-07-26 04:16:44','2021-07-26 04:17:14'),(760,0,'vi','core/base/layouts','settings','Cài đặt','2021-07-26 04:16:44','2021-07-26 04:17:14'),(761,0,'vi','core/base/layouts','setting_general','Cơ bản','2021-07-26 04:16:44','2021-07-26 04:17:14'),(762,0,'vi','core/base/layouts','system_information','Thông tin hệ thống','2021-07-26 04:16:44','2021-07-26 04:17:14'),(763,0,'vi','core/base/layouts','theme','Giao diện','2021-07-26 04:16:44','2021-07-26 04:17:14'),(764,0,'vi','core/base/layouts','copyright','Bản quyền :year &copy; :company. Phiên bản: <span>:version</span>','2021-07-26 04:16:44','2021-07-26 04:17:14'),(765,0,'vi','core/base/layouts','profile','Thông tin cá nhân','2021-07-26 04:16:44','2021-07-26 04:17:14'),(766,0,'vi','core/base/layouts','logout','Đăng xuất','2021-07-26 04:16:44','2021-07-26 04:17:14'),(767,0,'vi','core/base/layouts','no_search_result','Không có kết quả tìm kiếm, hãy thử lại với từ khóa khác.','2021-07-26 04:16:44','2021-07-26 04:17:14'),(768,0,'vi','core/base/layouts','home','Trang chủ','2021-07-26 04:16:44','2021-07-26 04:17:14'),(769,0,'vi','core/base/layouts','search','Tìm kiếm','2021-07-26 04:16:44','2021-07-26 04:17:14'),(770,0,'vi','core/base/layouts','add_new','Thêm mới','2021-07-26 04:16:44','2021-07-26 04:17:14'),(771,0,'vi','core/base/layouts','n_a','N/A','2021-07-26 04:16:44','2021-07-26 04:17:14'),(772,0,'vi','core/base/layouts','page_loaded_time','Trang tải xong trong','2021-07-26 04:16:44','2021-07-26 04:17:14'),(773,0,'vi','core/base/layouts','view_website','Xem trang ngoài','2021-07-26 04:16:44','2021-07-26 04:17:14'),(774,0,'vi','core/base/layouts','setting_email','Email','2021-07-26 04:16:44','2021-07-26 04:17:14'),(775,0,'vi','core/base/mail','send-fail','Gửi email không thành công','2021-07-26 04:16:44','2021-07-26 04:17:14'),(776,0,'vi','core/base/notices','create_success_message','Tạo thành công','2021-07-26 04:16:44','2021-07-26 04:17:14'),(777,0,'vi','core/base/notices','update_success_message','Cập nhật thành công','2021-07-26 04:16:44','2021-07-26 04:17:14'),(778,0,'vi','core/base/notices','delete_success_message','Xóa thành công','2021-07-26 04:16:44','2021-07-26 04:17:14'),(779,0,'vi','core/base/notices','success_header','Thành công!','2021-07-26 04:16:44','2021-07-26 04:17:14'),(780,0,'vi','core/base/notices','error_header','Lỗi!','2021-07-26 04:16:44','2021-07-26 04:17:14'),(781,0,'vi','core/base/notices','no_select','Chọn ít nhất 1 trường để thực hiện hành động này!','2021-07-26 04:16:44','2021-07-26 04:17:14'),(782,0,'vi','core/base/notices','processing_request','Hệ thống đang xử lý yêu cầu.','2021-07-26 04:16:44','2021-07-26 04:17:14'),(783,0,'vi','core/base/notices','error','Lỗi!','2021-07-26 04:16:44','2021-07-26 04:17:14'),(784,0,'vi','core/base/notices','success','Thành công!','2021-07-26 04:16:44','2021-07-26 04:17:14'),(785,0,'vi','core/base/notices','info','Thông tin!','2021-07-26 04:16:44','2021-07-26 04:17:14'),(786,0,'vi','core/base/system','no_select','Hãy chọn ít nhất 1 trường để thực hiện hành động này!','2021-07-26 04:16:44','2021-07-26 04:17:14'),(787,0,'vi','core/base/system','cannot_find_user','Không thể tải được thông tin người dùng','2021-07-26 04:16:44','2021-07-26 04:17:14'),(788,0,'vi','core/base/system','supper_revoked','Quyền quản trị viên cao nhất đã được gỡ bỏ','2021-07-26 04:16:44','2021-07-26 04:17:14'),(789,0,'vi','core/base/system','cannot_revoke_yourself','Không thể gỡ bỏ quyền quản trị cấp cao của chính bạn!','2021-07-26 04:16:44','2021-07-26 04:17:14'),(790,0,'vi','core/base/system','cant_remove_supper','Bạn không có quyền xóa quản trị viên cấp cao','2021-07-26 04:16:44','2021-07-26 04:17:14'),(791,0,'vi','core/base/system','cant_find_user_with_email','Không thể tìm thấy người dùng với email này','2021-07-26 04:16:44','2021-07-26 04:17:14'),(792,0,'vi','core/base/system','supper_granted','Quyền quản trị cao nhất đã được gán','2021-07-26 04:16:44','2021-07-26 04:17:14'),(793,0,'vi','core/base/system','delete_log_success','Xóa tập tin log thành công!','2021-07-26 04:16:44','2021-07-26 04:17:14'),(794,0,'vi','core/base/system','get_member_success','Hiển thị danh sách thành viên thành công','2021-07-26 04:16:44','2021-07-26 04:17:14'),(795,0,'vi','core/base/system','error_occur','Có lỗi dưới đây','2021-07-26 04:16:44','2021-07-26 04:17:14'),(796,0,'vi','core/base/system','role_and_permission','Phân quyền hệ thống','2021-07-26 04:16:44','2021-07-26 04:17:14'),(797,0,'vi','core/base/system','role_and_permission_description','Quản lý những phân quyền trong hệ thống','2021-07-26 04:16:44','2021-07-26 04:17:14'),(798,0,'vi','core/base/system','user.list_super','Danh sách quản trị viên cấp cao','2021-07-26 04:16:44','2021-07-26 04:17:14'),(799,0,'vi','core/base/system','user.username','Tên đăng nhập','2021-07-26 04:16:44','2021-07-26 04:17:14'),(800,0,'vi','core/base/system','user.email','Email','2021-07-26 04:16:44','2021-07-26 04:17:14'),(801,0,'vi','core/base/system','user.last_login','Đăng nhập lần cuối	','2021-07-26 04:16:44','2021-07-26 04:17:14'),(802,0,'vi','core/base/system','user.add_user','Thêm quản trị viên cấp cao','2021-07-26 04:16:44','2021-07-26 04:17:14'),(803,0,'vi','core/base/system','user.cancel','Hủy bỏ','2021-07-26 04:16:44','2021-07-26 04:17:14'),(804,0,'vi','core/base/system','user.create','Thêm','2021-07-26 04:16:44','2021-07-26 04:17:14'),(805,0,'vi','core/base/system','options.features','Kiểm soát truy cập các tính năng','2021-07-26 04:16:44','2021-07-26 04:17:14'),(806,0,'vi','core/base/system','options.feature_description','Bật/tắt các tính năng.','2021-07-26 04:16:44','2021-07-26 04:17:14'),(807,0,'vi','core/base/system','options.manage_super','Quản lý quản trị viên cấp cao','2021-07-26 04:16:44','2021-07-26 04:17:14'),(808,0,'vi','core/base/system','options.manage_super_description','Thêm/xóa quản trị viên cấp cao','2021-07-26 04:16:44','2021-07-26 04:17:14'),(809,0,'vi','core/base/system','options.info','Thông tin hệ thống','2021-07-26 04:16:44','2021-07-26 04:17:14'),(810,0,'vi','core/base/system','options.info_description','Những thông tin về cấu hình hiện tại của hệ thống.','2021-07-26 04:16:44','2021-07-26 04:17:14'),(811,0,'vi','core/base/system','info.title','Thông tin hệ thống','2021-07-26 04:16:44','2021-07-26 04:17:14'),(812,0,'vi','core/base/system','info.cache','Bộ nhớ đệm','2021-07-26 04:16:44','2021-07-26 04:17:14'),(813,0,'vi','core/base/system','info.environment','Môi trường','2021-07-26 04:16:44','2021-07-26 04:17:14'),(814,0,'vi','core/base/system','info.locale','Ngôn ngữ hệ thống','2021-07-26 04:16:44','2021-07-26 04:17:14'),(815,0,'vi','core/base/system','user_management','Quản lý thành viên','2021-07-26 04:16:44','2021-07-26 04:17:14'),(816,0,'vi','core/base/system','user_management_description','Quản lý người dùng trong hệ thống','2021-07-26 04:16:44','2021-07-26 04:17:14'),(817,0,'vi','core/base/system','app_size','Kích thước ứng dụng','2021-07-26 04:16:44','2021-07-26 04:17:14'),(818,0,'vi','core/base/system','cache_dir_writable','Có thể ghi bộ nhớ đệm','2021-07-26 04:16:44','2021-07-26 04:17:14'),(819,0,'vi','core/base/system','cache_driver','Loại lưu trữ bộ nhớ đệm','2021-07-26 04:16:44','2021-07-26 04:17:14'),(820,0,'vi','core/base/system','copy_report','Sao chép báo cáo','2021-07-26 04:16:44','2021-07-26 04:17:14'),(821,0,'vi','core/base/system','curl_ext','CURL Ext','2021-07-26 04:16:44','2021-07-26 04:17:14'),(822,0,'vi','core/base/system','database','Hệ thống dữ liệu','2021-07-26 04:16:44','2021-07-26 04:17:14'),(823,0,'vi','core/base/system','debug_mode','Chế độ sửa lỗi','2021-07-26 04:16:44','2021-07-26 04:17:14'),(824,0,'vi','core/base/system','dependency_name','Tên gói','2021-07-26 04:16:44','2021-07-26 04:17:14'),(825,0,'vi','core/base/system','exif_ext','Exif Ext','2021-07-26 04:16:44','2021-07-26 04:17:14'),(826,0,'vi','core/base/system','extra_information','Thông tin mở rộng','2021-07-26 04:16:44','2021-07-26 04:17:14'),(827,0,'vi','core/base/system','extra_stats','Thống kê thêm','2021-07-26 04:16:44','2021-07-26 04:17:14'),(828,0,'vi','core/base/system','file_info_ext','File info Ext','2021-07-26 04:16:44','2021-07-26 04:17:14'),(829,0,'vi','core/base/system','framework_version','Phiên bản framework','2021-07-26 04:16:44','2021-07-26 04:17:14'),(830,0,'vi','core/base/system','get_system_report','Lấy thông tin hệ thống','2021-07-26 04:16:44','2021-07-26 04:17:14'),(831,0,'vi','core/base/system','installed_packages','Các gói đã cài đặt và phiên bản','2021-07-26 04:16:44','2021-07-26 04:17:14'),(832,0,'vi','core/base/system','mbstring_ext','Mbstring Ext','2021-07-26 04:16:44','2021-07-26 04:17:14'),(833,0,'vi','core/base/system','openssl_ext','OpenSSL Ext','2021-07-26 04:16:44','2021-07-26 04:17:14'),(834,0,'vi','core/base/system','package_name','Tên gói','2021-07-26 04:16:44','2021-07-26 04:17:14'),(835,0,'vi','core/base/system','pdo_ext','PDO Ext','2021-07-26 04:16:44','2021-07-26 04:17:14'),(836,0,'vi','core/base/system','php_version','Phiên bản PHP','2021-07-26 04:16:44','2021-07-26 04:17:14'),(837,0,'vi','core/base/system','report_description','Vui lòng chia sẻ thông tin này nhằm mục đích điều tra nguyên nhân gây lỗi','2021-07-26 04:16:44','2021-07-26 04:17:14'),(838,0,'vi','core/base/system','server_environment','Môi trường máy chủ','2021-07-26 04:16:44','2021-07-26 04:17:14'),(839,0,'vi','core/base/system','server_os','Hệ điều hành của máy chủ','2021-07-26 04:16:44','2021-07-26 04:17:14'),(840,0,'vi','core/base/system','server_software','Phần mềm','2021-07-26 04:16:44','2021-07-26 04:17:14'),(841,0,'vi','core/base/system','session_driver','Loại lưu trữ phiên làm việc','2021-07-26 04:16:44','2021-07-26 04:17:14'),(842,0,'vi','core/base/system','ssl_installed','Đã cài đặt chứng chỉ SSL','2021-07-26 04:16:44','2021-07-26 04:17:14'),(843,0,'vi','core/base/system','storage_dir_writable','Có thể lưu trữ dữ liệu tạm','2021-07-26 04:16:44','2021-07-26 04:17:14'),(844,0,'vi','core/base/system','system_environment','Môi trường hệ thống','2021-07-26 04:16:44','2021-07-26 04:17:14'),(845,0,'vi','core/base/system','timezone','Múi giờ','2021-07-26 04:16:44','2021-07-26 04:17:14'),(846,0,'vi','core/base/system','tokenizer_ext','Tokenizer Ext','2021-07-26 04:16:44','2021-07-26 04:17:14'),(847,0,'vi','core/base/system','version','Phiên bản','2021-07-26 04:16:44','2021-07-26 04:17:14'),(848,0,'vi','core/base/system','cms_version','Phiên bản CMS','2021-07-26 04:16:44','2021-07-26 04:17:14'),(849,0,'vi','core/base/tables','id','ID','2021-07-26 04:16:44','2021-07-26 04:17:14'),(850,0,'vi','core/base/tables','name','Tên','2021-07-26 04:16:44','2021-07-26 04:17:14'),(851,0,'vi','core/base/tables','order_by','Thứ tự','2021-07-26 04:16:44','2021-07-26 04:17:14'),(852,0,'vi','core/base/tables','status','Trạng thái','2021-07-26 04:16:44','2021-07-26 04:17:14'),(853,0,'vi','core/base/tables','created_at','Ngày tạo','2021-07-26 04:16:44','2021-07-26 04:17:14'),(854,0,'vi','core/base/tables','updated_at','Ngày cập nhật','2021-07-26 04:16:44','2021-07-26 04:17:14'),(855,0,'vi','core/base/tables','operations','Tác vụ','2021-07-26 04:16:44','2021-07-26 04:17:14'),(856,0,'vi','core/base/tables','url','URL','2021-07-26 04:16:44','2021-07-26 04:17:14'),(857,0,'vi','core/base/tables','author','Người tạo','2021-07-26 04:16:44','2021-07-26 04:17:14'),(858,0,'vi','core/base/tables','column','Cột','2021-07-26 04:16:44','2021-07-26 04:17:14'),(859,0,'vi','core/base/tables','origin','Bản cũ','2021-07-26 04:16:44','2021-07-26 04:17:14'),(860,0,'vi','core/base/tables','after_change','Sau khi thay đổi','2021-07-26 04:16:44','2021-07-26 04:17:14'),(861,0,'vi','core/base/tables','notes','Ghi chú','2021-07-26 04:16:44','2021-07-26 04:17:14'),(862,0,'vi','core/base/tables','activated','kích hoạt','2021-07-26 04:16:44','2021-07-26 04:17:14'),(863,0,'vi','core/base/tables','browser','Trình duyệt','2021-07-26 04:16:44','2021-07-26 04:17:14'),(864,0,'vi','core/base/tables','deactivated','hủy kích hoạt','2021-07-26 04:16:44','2021-07-26 04:17:14'),(865,0,'vi','core/base/tables','description','Mô tả','2021-07-26 04:16:44','2021-07-26 04:17:14'),(866,0,'vi','core/base/tables','session','Phiên','2021-07-26 04:16:44','2021-07-26 04:17:14'),(867,0,'vi','core/base/tables','views','Lượt xem','2021-07-26 04:16:44','2021-07-26 04:17:14'),(868,0,'vi','core/base/tables','restore','Khôi phục','2021-07-26 04:16:44','2021-07-26 04:17:14'),(869,0,'vi','core/base/tables','edit','Sửa','2021-07-26 04:16:44','2021-07-26 04:17:14'),(870,0,'vi','core/base/tables','delete','Xóa','2021-07-26 04:16:44','2021-07-26 04:17:14'),(871,0,'vi','core/base/tables','action','Hành động','2021-07-26 04:16:44','2021-07-26 04:17:14'),(872,0,'vi','core/base/tables','activate','Kích hoạt','2021-07-26 04:16:44','2021-07-26 04:17:14'),(873,0,'vi','core/base/tables','add_new','Thêm mới','2021-07-26 04:16:44','2021-07-26 04:17:14'),(874,0,'vi','core/base/tables','all','Tất cả','2021-07-26 04:16:44','2021-07-26 04:17:14'),(875,0,'vi','core/base/tables','cancel','Hủy bỏ','2021-07-26 04:16:44','2021-07-26 04:17:14'),(876,0,'vi','core/base/tables','confirm_delete','Xác nhận xóa','2021-07-26 04:16:44','2021-07-26 04:17:14'),(877,0,'vi','core/base/tables','confirm_delete_msg','Bạn có chắc chắn muốn xóa bản ghi này?','2021-07-26 04:16:44','2021-07-26 04:17:14'),(878,0,'vi','core/base/tables','csv','CSV','2021-07-26 04:16:44','2021-07-26 04:17:14'),(879,0,'vi','core/base/tables','deactivate','Hủy kích hoạt','2021-07-26 04:16:44','2021-07-26 04:17:14'),(880,0,'vi','core/base/tables','delete_entry','Xóa bản ghi','2021-07-26 04:16:44','2021-07-26 04:17:14'),(881,0,'vi','core/base/tables','display','Hiển thị','2021-07-26 04:16:44','2021-07-26 04:17:14'),(882,0,'vi','core/base/tables','excel','Excel','2021-07-26 04:16:44','2021-07-26 04:17:14'),(883,0,'vi','core/base/tables','export','Xuất bản','2021-07-26 04:16:44','2021-07-26 04:17:14'),(884,0,'vi','core/base/tables','in','trong tổng số','2021-07-26 04:16:44','2021-07-26 04:17:14'),(885,0,'vi','core/base/tables','no_data','Không có dữ liệu để hiển thị','2021-07-26 04:16:44','2021-07-26 04:17:14'),(886,0,'vi','core/base/tables','no_record','Không có dữ liệu','2021-07-26 04:16:44','2021-07-26 04:17:14'),(887,0,'vi','core/base/tables','pdf','PDF','2021-07-26 04:16:44','2021-07-26 04:17:14'),(888,0,'vi','core/base/tables','print','In','2021-07-26 04:16:44','2021-07-26 04:17:14'),(889,0,'vi','core/base/tables','records','bản ghi','2021-07-26 04:16:44','2021-07-26 04:17:14'),(890,0,'vi','core/base/tables','reload','Tải lại','2021-07-26 04:16:44','2021-07-26 04:17:14'),(891,0,'vi','core/base/tables','reset','Làm mới','2021-07-26 04:16:44','2021-07-26 04:17:14'),(892,0,'vi','core/base/tables','save','Lưu','2021-07-26 04:16:44','2021-07-26 04:17:14'),(893,0,'vi','core/base/tables','show_from','Hiển thị từ','2021-07-26 04:16:44','2021-07-26 04:17:14'),(894,0,'vi','core/base/tables','template','Giao diện','2021-07-26 04:16:44','2021-07-26 04:17:14'),(895,0,'vi','core/base/tables','to','đến','2021-07-26 04:16:44','2021-07-26 04:17:14'),(896,0,'vi','core/base/tables','view','Xem chi tiết','2021-07-26 04:16:44','2021-07-26 04:17:14'),(897,0,'vi','core/base/tables','email','Email','2021-07-26 04:16:44','2021-07-26 04:17:14'),(898,0,'vi','core/base/tables','image','Hình ảnh','2021-07-26 04:16:44','2021-07-26 04:17:14'),(899,0,'vi','core/base/tables','is_featured','Nổi bật','2021-07-26 04:16:44','2021-07-26 04:17:14'),(900,0,'vi','core/base/tables','last_login','Lần cuối đăng nhập','2021-07-26 04:16:44','2021-07-26 04:17:14'),(901,0,'vi','core/base/tables','order','Thứ tự','2021-07-26 04:16:44','2021-07-26 04:17:14'),(902,0,'vi','core/base/tables','shortcode','Shortcode','2021-07-26 04:16:44','2021-07-26 04:17:14'),(903,0,'vi','core/base/tables','slug','Slug','2021-07-26 04:16:44','2021-07-26 04:17:14'),(904,0,'vi','core/base/tables','title','Tiêu đề','2021-07-26 04:16:44','2021-07-26 04:17:14'),(905,0,'vi','core/base/tabs','detail','Chi tiết','2021-07-26 04:16:44','2021-07-26 04:17:14'),(906,0,'vi','core/base/tabs','file','Tập tin','2021-07-26 04:16:44','2021-07-26 04:17:14'),(907,0,'vi','core/base/tabs','record_note','Ghi chú','2021-07-26 04:16:44','2021-07-26 04:17:14'),(908,0,'vi','core/base/tabs','revision','Lịch sử thay đổi','2021-07-26 04:16:44','2021-07-26 04:17:14'),(909,0,'en','core/dashboard/dashboard','update_position_success','Update widget position successfully!','2021-07-26 04:16:44','2021-07-26 04:17:14'),(910,0,'en','core/dashboard/dashboard','hide_success','Update widget successfully!','2021-07-26 04:16:44','2021-07-26 04:17:14'),(911,0,'en','core/dashboard/dashboard','confirm_hide','Are you sure?','2021-07-26 04:16:44','2021-07-26 04:17:14'),(912,0,'en','core/dashboard/dashboard','hide_message','Do you really want to hide this widget? It will be disappear on Dashboard!','2021-07-26 04:16:44','2021-07-26 04:17:14'),(913,0,'en','core/dashboard/dashboard','confirm_hide_btn','Yes, hide this widget','2021-07-26 04:16:44','2021-07-26 04:17:14'),(914,0,'en','core/dashboard/dashboard','cancel_hide_btn','Cancel','2021-07-26 04:16:44','2021-07-26 04:17:14'),(915,0,'en','core/dashboard/dashboard','collapse_expand','Collapse/Expand','2021-07-26 04:16:44','2021-07-26 04:17:14'),(916,0,'en','core/dashboard/dashboard','hide','Hide','2021-07-26 04:16:44','2021-07-26 04:17:14'),(917,0,'en','core/dashboard/dashboard','reload','Reload','2021-07-26 04:16:44','2021-07-26 04:17:14'),(918,0,'en','core/dashboard/dashboard','save_setting_success','Save widget settings successfully!','2021-07-26 04:16:44','2021-07-26 04:17:14'),(919,0,'en','core/dashboard/dashboard','widget_not_exists','Widget is not exits!','2021-07-26 04:16:44','2021-07-26 04:17:14'),(920,0,'en','core/dashboard/dashboard','manage_widgets','Manage Widgets','2021-07-26 04:16:44','2021-07-26 04:17:14'),(921,0,'en','core/dashboard/dashboard','fullscreen','Full screen','2021-07-26 04:16:44','2021-07-26 04:17:14'),(922,0,'en','core/dashboard/dashboard','title','Dashboard','2021-07-26 04:16:44','2021-07-26 04:17:14'),(923,0,'vi','core/dashboard/dashboard','cancel_hide_btn','Hủy bỏ','2021-07-26 04:16:44','2021-07-26 04:17:14'),(924,0,'vi','core/dashboard/dashboard','collapse_expand','Mở rộng','2021-07-26 04:16:44','2021-07-26 04:17:14'),(925,0,'vi','core/dashboard/dashboard','confirm_hide','Bạn có chắc?','2021-07-26 04:16:44','2021-07-26 04:17:14'),(926,0,'vi','core/dashboard/dashboard','confirm_hide_btn','Vâng, ẩn tiện ích này','2021-07-26 04:16:44','2021-07-26 04:17:14'),(927,0,'vi','core/dashboard/dashboard','hide','Ẩn','2021-07-26 04:16:44','2021-07-26 04:17:14'),(928,0,'vi','core/dashboard/dashboard','hide_message','Bạn có chắc chắn muốn ẩn tiện ích này? Nó sẽ không được hiển thị trên trang chủ nữa!','2021-07-26 04:16:44','2021-07-26 04:17:14'),(929,0,'vi','core/dashboard/dashboard','hide_success','Ẩn tiện ích thành công!','2021-07-26 04:16:44','2021-07-26 04:17:14'),(930,0,'vi','core/dashboard/dashboard','manage_widgets','Quản lý tiện ích','2021-07-26 04:16:44','2021-07-26 04:17:14'),(931,0,'vi','core/dashboard/dashboard','reload','Làm mới','2021-07-26 04:16:44','2021-07-26 04:17:14'),(932,0,'vi','core/dashboard/dashboard','save_setting_success','Lưu tiện ích thành công','2021-07-26 04:16:44','2021-07-26 04:17:14'),(933,0,'vi','core/dashboard/dashboard','update_position_success','Cập nhật vị trí tiện ích thành công!','2021-07-26 04:16:44','2021-07-26 04:17:14'),(934,0,'vi','core/dashboard/dashboard','widget_not_exists','Tiện ích này không tồn tại!','2021-07-26 04:16:44','2021-07-26 04:17:14'),(935,0,'vi','core/dashboard/dashboard','fullscreen','Toàn màn hình','2021-07-26 04:16:44','2021-07-26 04:17:14'),(936,0,'vi','core/dashboard/dashboard','title','Trang quản trị','2021-07-26 04:16:44','2021-07-26 04:17:14'),(937,0,'en','core/media/media','filter','Filter','2021-07-26 04:16:44','2021-07-26 04:17:14'),(938,0,'en','core/media/media','everything','Everything','2021-07-26 04:16:44','2021-07-26 04:17:14'),(939,0,'en','core/media/media','image','Image','2021-07-26 04:16:44','2021-07-26 04:17:14'),(940,0,'en','core/media/media','video','Video','2021-07-26 04:16:44','2021-07-26 04:17:14'),(941,0,'en','core/media/media','document','Document','2021-07-26 04:16:44','2021-07-26 04:17:14'),(942,0,'en','core/media/media','view_in','View in','2021-07-26 04:16:44','2021-07-26 04:17:14'),(943,0,'en','core/media/media','all_media','All media','2021-07-26 04:16:44','2021-07-26 04:17:14'),(944,0,'en','core/media/media','trash','Trash','2021-07-26 04:16:44','2021-07-26 04:17:14'),(945,0,'en','core/media/media','recent','Recent','2021-07-26 04:16:44','2021-07-26 04:17:14'),(946,0,'en','core/media/media','favorites','Favorites','2021-07-26 04:16:44','2021-07-26 04:17:14'),(947,0,'en','core/media/media','upload','Upload','2021-07-26 04:16:44','2021-07-26 04:17:14'),(948,0,'en','core/media/media','create_folder','Create folder','2021-07-26 04:16:45','2021-07-26 04:17:14'),(949,0,'en','core/media/media','refresh','Refresh','2021-07-26 04:16:45','2021-07-26 04:17:14'),(950,0,'en','core/media/media','empty_trash','Empty trash','2021-07-26 04:16:45','2021-07-26 04:17:14'),(951,0,'en','core/media/media','search_file_and_folder','Search file and folder','2021-07-26 04:16:45','2021-07-26 04:17:14'),(952,0,'en','core/media/media','sort','Sort','2021-07-26 04:16:45','2021-07-26 04:17:14'),(953,0,'en','core/media/media','file_name_asc','File name - ASC','2021-07-26 04:16:45','2021-07-26 04:17:14'),(954,0,'en','core/media/media','file_name_desc','File name - DESC','2021-07-26 04:16:45','2021-07-26 04:17:14'),(955,0,'en','core/media/media','uploaded_date_asc','Uploaded date - ASC','2021-07-26 04:16:45','2021-07-26 04:17:14'),(956,0,'en','core/media/media','uploaded_date_desc','Uploaded date - DESC','2021-07-26 04:16:45','2021-07-26 04:17:14'),(957,0,'en','core/media/media','size_asc','Size - ASC','2021-07-26 04:16:45','2021-07-26 04:17:14'),(958,0,'en','core/media/media','size_desc','Size - DESC','2021-07-26 04:16:45','2021-07-26 04:17:14'),(959,0,'en','core/media/media','actions','Actions','2021-07-26 04:16:45','2021-07-26 04:17:14'),(960,0,'en','core/media/media','nothing_is_selected','Nothing is selected','2021-07-26 04:16:45','2021-07-26 04:17:14'),(961,0,'en','core/media/media','insert','Insert','2021-07-26 04:16:45','2021-07-26 04:17:14'),(962,0,'en','core/media/media','folder_name','Folder name','2021-07-26 04:16:45','2021-07-26 04:17:14'),(963,0,'en','core/media/media','create','Create','2021-07-26 04:16:45','2021-07-26 04:17:14'),(964,0,'en','core/media/media','rename','Rename','2021-07-26 04:16:45','2021-07-26 04:17:14'),(965,0,'en','core/media/media','close','Close','2021-07-26 04:16:45','2021-07-26 04:17:14'),(966,0,'en','core/media/media','save_changes','Save changes','2021-07-26 04:16:45','2021-07-26 04:17:14'),(967,0,'en','core/media/media','move_to_trash','Move items to trash','2021-07-26 04:16:45','2021-07-26 04:17:14'),(968,0,'en','core/media/media','confirm_trash','Are you sure you want to move these items to trash?','2021-07-26 04:16:45','2021-07-26 04:17:14'),(969,0,'en','core/media/media','confirm','Confirm','2021-07-26 04:16:45','2021-07-26 04:17:14'),(970,0,'en','core/media/media','confirm_delete','Delete item(s)','2021-07-26 04:16:45','2021-07-26 04:17:14'),(971,0,'en','core/media/media','confirm_delete_description','Your request cannot rollback. Are you sure you wanna delete these items?','2021-07-26 04:16:45','2021-07-26 04:17:14'),(972,0,'en','core/media/media','empty_trash_title','Empty trash','2021-07-26 04:16:45','2021-07-26 04:17:14'),(973,0,'en','core/media/media','empty_trash_description','Your request cannot rollback. Are you sure you wanna remove all items in trash?','2021-07-26 04:16:45','2021-07-26 04:17:14'),(974,0,'en','core/media/media','up_level','Up one level','2021-07-26 04:16:45','2021-07-26 04:17:14'),(975,0,'en','core/media/media','upload_progress','Upload progress','2021-07-26 04:16:45','2021-07-26 04:17:14'),(976,0,'en','core/media/media','folder_created','Folder is created successfully!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(977,0,'en','core/media/media','gallery','Media gallery','2021-07-26 04:16:45','2021-07-26 04:17:14'),(978,0,'en','core/media/media','trash_error','Error when delete selected item(s)','2021-07-26 04:16:45','2021-07-26 04:17:14'),(979,0,'en','core/media/media','trash_success','Moved selected item(s) to trash successfully!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(980,0,'en','core/media/media','restore_error','Error when restore selected item(s)','2021-07-26 04:16:45','2021-07-26 04:17:14'),(981,0,'en','core/media/media','restore_success','Restore selected item(s) successfully!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(982,0,'en','core/media/media','copy_success','Copied selected item(s) successfully!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(983,0,'en','core/media/media','delete_success','Deleted selected item(s) successfully!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(984,0,'en','core/media/media','favorite_success','Favorite selected item(s) successfully!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(985,0,'en','core/media/media','remove_favorite_success','Remove selected item(s) from favorites successfully!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(986,0,'en','core/media/media','rename_error','Error when rename item(s)','2021-07-26 04:16:45','2021-07-26 04:17:14'),(987,0,'en','core/media/media','rename_success','Rename selected item(s) successfully!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(988,0,'en','core/media/media','empty_trash_success','Empty trash successfully!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(989,0,'en','core/media/media','invalid_action','Invalid action!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(990,0,'en','core/media/media','file_not_exists','File is not exists!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(991,0,'en','core/media/media','download_file_error','Error when downloading files!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(992,0,'en','core/media/media','missing_zip_archive_extension','Please enable ZipArchive extension to download file!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(993,0,'en','core/media/media','can_not_download_file','Can not download this file!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(994,0,'en','core/media/media','invalid_request','Invalid request!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(995,0,'en','core/media/media','add_success','Add item successfully!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(996,0,'en','core/media/media','file_too_big','File too big. Max file upload is :size bytes','2021-07-26 04:16:45','2021-07-26 04:17:14'),(997,0,'en','core/media/media','can_not_detect_file_type','File type is not allowed or can not detect file type!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(998,0,'en','core/media/media','upload_failed','The file is NOT uploaded completely. The server allows max upload file size is :size . Please check your file size OR try to upload again in case of having network errors','2021-07-26 04:16:45','2021-07-26 04:17:14'),(999,0,'en','core/media/media','menu_name','Media','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1000,0,'en','core/media/media','add','Add media','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1001,0,'en','core/media/media','javascript.name','Name','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1002,0,'en','core/media/media','javascript.url','URL','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1003,0,'en','core/media/media','javascript.full_url','Full URL','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1004,0,'en','core/media/media','javascript.size','Size','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1005,0,'en','core/media/media','javascript.mime_type','Type','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1006,0,'en','core/media/media','javascript.created_at','Uploaded at','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1007,0,'en','core/media/media','javascript.updated_at','Modified at','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1008,0,'en','core/media/media','javascript.nothing_selected','Nothing is selected','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1009,0,'en','core/media/media','javascript.visit_link','Open link','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1010,0,'en','core/media/media','javascript.no_item.all_media.icon','fas fa-cloud-upload-alt','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1011,0,'en','core/media/media','javascript.no_item.all_media.title','Drop files and folders here','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1012,0,'en','core/media/media','javascript.no_item.all_media.message','Or use the upload button above','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1013,0,'en','core/media/media','javascript.no_item.trash.icon','fas fa-trash-alt','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1014,0,'en','core/media/media','javascript.no_item.trash.title','There is nothing in your trash currently','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1015,0,'en','core/media/media','javascript.no_item.trash.message','Delete files to move them to trash automatically. Delete files from trash to remove them permanently','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1016,0,'en','core/media/media','javascript.no_item.favorites.icon','fas fa-star','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1017,0,'en','core/media/media','javascript.no_item.favorites.title','You have not added anything to your favorites yet','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1018,0,'en','core/media/media','javascript.no_item.favorites.message','Add files to favorites to easily find them later','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1019,0,'en','core/media/media','javascript.no_item.recent.icon','far fa-clock','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1020,0,'en','core/media/media','javascript.no_item.recent.title','You did not opened anything yet','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1021,0,'en','core/media/media','javascript.no_item.recent.message','All recent files that you opened will be appeared here','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1022,0,'en','core/media/media','javascript.no_item.default.icon','fas fa-sync','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1023,0,'en','core/media/media','javascript.no_item.default.title','No items','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1024,0,'en','core/media/media','javascript.no_item.default.message','This directory has no item','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1025,0,'en','core/media/media','javascript.clipboard.success','These file links has been copied to clipboard','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1026,0,'en','core/media/media','javascript.message.error_header','Error','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1027,0,'en','core/media/media','javascript.message.success_header','Success','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1028,0,'en','core/media/media','javascript.download.error','No files selected or cannot download these files','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1029,0,'en','core/media/media','javascript.actions_list.basic.preview','Preview','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1030,0,'en','core/media/media','javascript.actions_list.file.copy_link','Copy link','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1031,0,'en','core/media/media','javascript.actions_list.file.rename','Rename','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1032,0,'en','core/media/media','javascript.actions_list.file.make_copy','Make a copy','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1033,0,'en','core/media/media','javascript.actions_list.user.favorite','Add to favorite','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1034,0,'en','core/media/media','javascript.actions_list.user.remove_favorite','Remove favorite','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1035,0,'en','core/media/media','javascript.actions_list.other.download','Download','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1036,0,'en','core/media/media','javascript.actions_list.other.trash','Move to trash','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1037,0,'en','core/media/media','javascript.actions_list.other.delete','Delete permanently','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1038,0,'en','core/media/media','javascript.actions_list.other.restore','Restore','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1039,0,'en','core/media/media','name_invalid','The folder name has invalid character(s).','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1040,0,'en','core/media/media','url_invalid','Please provide a valid URL','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1041,0,'en','core/media/media','path_invalid','Please provide a valid path','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1042,0,'en','core/media/media','download_link','Download','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1043,0,'en','core/media/media','url','URL','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1044,0,'en','core/media/media','download_explain','Enter one URL per line.','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1045,0,'en','core/media/media','downloading','Downloading...','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1046,0,'vi','core/media/media','filter','Lọc','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1047,0,'vi','core/media/media','everything','Tất cả','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1048,0,'vi','core/media/media','image','Hình ảnh','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1049,0,'vi','core/media/media','video','Phim','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1050,0,'vi','core/media/media','document','Tài liệu','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1051,0,'vi','core/media/media','view_in','Chế độ xem','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1052,0,'vi','core/media/media','all_media','Tất cả tập tin','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1053,0,'vi','core/media/media','trash','Thùng rác','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1054,0,'vi','core/media/media','recent','Gần đây','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1055,0,'vi','core/media/media','favorites','Được gắn dấu sao','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1056,0,'vi','core/media/media','upload','Tải lên','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1057,0,'vi','core/media/media','create_folder','Tạo thư mục','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1058,0,'vi','core/media/media','refresh','Làm mới','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1059,0,'vi','core/media/media','empty_trash','Dọn thùng rác','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1060,0,'vi','core/media/media','search_file_and_folder','Tìm kiếm tập tin và thư mục','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1061,0,'vi','core/media/media','sort','Sắp xếp','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1062,0,'vi','core/media/media','file_name_asc','Tên tập tin - ASC','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1063,0,'vi','core/media/media','file_name_desc','Tên tập tin - DESC','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1064,0,'vi','core/media/media','uploaded_date_asc','Ngày tải lên - ASC','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1065,0,'vi','core/media/media','uploaded_date_desc','Ngày tải lên - DESC','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1066,0,'vi','core/media/media','size_asc','Kích thước - ASC','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1067,0,'vi','core/media/media','size_desc','Kích thước - DESC','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1068,0,'vi','core/media/media','actions','Hành động','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1069,0,'vi','core/media/media','nothing_is_selected','Không có tập tin nào được chọn','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1070,0,'vi','core/media/media','insert','Chèn','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1071,0,'vi','core/media/media','folder_name','Tên thư mục','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1072,0,'vi','core/media/media','create','Tạo','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1073,0,'vi','core/media/media','rename','Đổi tên','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1074,0,'vi','core/media/media','close','Đóng','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1075,0,'vi','core/media/media','save_changes','Lưu thay đổi','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1076,0,'vi','core/media/media','move_to_trash','Đưa vào thùng rác','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1077,0,'vi','core/media/media','confirm_trash','Bạn có chắc chắn muốn bỏ những tập tin này vào thùng rác?','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1078,0,'vi','core/media/media','confirm','Xác nhận','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1079,0,'vi','core/media/media','confirm_delete','Xóa tập tin','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1080,0,'vi','core/media/media','confirm_delete_description','Hành động này không thể khôi phục. Bạn có chắc chắn muốn xóa các tập tin này?','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1081,0,'vi','core/media/media','empty_trash_title','Dọn sạch thùng rác','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1082,0,'vi','core/media/media','empty_trash_description','Hành động này không thể khôi phục. Bạn có chắc chắn muốn dọn sạch thùng rác?','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1083,0,'vi','core/media/media','up_level','Quay lại một cấp','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1084,0,'vi','core/media/media','upload_progress','Tiến trình tải lên','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1085,0,'vi','core/media/media','folder_created','Tạo thư mục thành công!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1086,0,'vi','core/media/media','gallery','Thư viện tập tin','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1087,0,'vi','core/media/media','trash_error','Có lỗi khi xóa tập tin/thư mục','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1088,0,'vi','core/media/media','trash_success','Xóa tập tin/thư mục thành công!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1089,0,'vi','core/media/media','restore_error','Có lỗi trong quá trình khôi phục','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1090,0,'vi','core/media/media','restore_success','Khôi phục thành công!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1091,0,'vi','core/media/media','copy_success','Sao chép thành công!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1092,0,'vi','core/media/media','delete_success','Xóa thành công!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1093,0,'vi','core/media/media','favorite_success','Thêm dấu sao thành công!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1094,0,'vi','core/media/media','remove_favorite_success','Bỏ dấu sao thành công!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1095,0,'vi','core/media/media','rename_error','Có lỗi trong quá trình đổi tên','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1096,0,'vi','core/media/media','rename_success','Đổi tên thành công!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1097,0,'vi','core/media/media','invalid_action','Hành động không hợp lệ!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1098,0,'vi','core/media/media','file_not_exists','Tập tin không tồn tại!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1099,0,'vi','core/media/media','download_file_error','Có lỗi trong quá trình tải xuống tập tin!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1100,0,'vi','core/media/media','missing_zip_archive_extension','Hãy bật ZipArchive extension để tải tập tin!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1101,0,'vi','core/media/media','can_not_download_file','Không thể tải tập tin!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1102,0,'vi','core/media/media','invalid_request','Yêu cầu không hợp lệ!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1103,0,'vi','core/media/media','add_success','Thêm thành công!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1104,0,'vi','core/media/media','file_too_big','Tập tin quá lớn. Giới hạn tải lên là :size bytes','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1105,0,'vi','core/media/media','can_not_detect_file_type','Loại tập tin không hợp lệ hoặc không thể xác định loại tập tin!','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1106,0,'vi','core/media/media','upload_failed','The file is NOT uploaded completely. The server allows max upload file size is :size . Please check your file size OR try to upload again in case of having network errors','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1107,0,'vi','core/media/media','menu_name','Quản lý tập tin','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1108,0,'vi','core/media/media','add','Thêm tập tin','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1109,0,'vi','core/media/media','javascript.name','Tên','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1110,0,'vi','core/media/media','javascript.url','Đường dẫn','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1111,0,'vi','core/media/media','javascript.full_url','Đường dẫn tuyệt đối','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1112,0,'vi','core/media/media','javascript.size','Kích thước','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1113,0,'vi','core/media/media','javascript.mime_type','Loại','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1114,0,'vi','core/media/media','javascript.created_at','Được tải lên lúc','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1115,0,'vi','core/media/media','javascript.updated_at','Được chỉnh sửa lúc','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1116,0,'vi','core/media/media','javascript.nothing_selected','Bạn chưa chọn tập tin nào','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1117,0,'vi','core/media/media','javascript.visit_link','Mở liên kết','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1118,0,'vi','core/media/media','javascript.no_item.all_media.icon','fas fa-cloud-upload-alt','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1119,0,'vi','core/media/media','javascript.no_item.all_media.title','Bạn có thể kéo thả tập tin vào đây để tải lên','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1120,0,'vi','core/media/media','javascript.no_item.all_media.message','Hoặc có thể bấm nút Tải lên ở phía trên','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1121,0,'vi','core/media/media','javascript.no_item.trash.icon','fas fa-trash-alt','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1122,0,'vi','core/media/media','javascript.no_item.trash.title','Hiện tại không có tập tin nào trong thùng rác','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1123,0,'vi','core/media/media','javascript.no_item.trash.message','Xóa tập tin sẽ đem tập tin lưu vào thùng rác. Xóa tập tin trong thùng rác sẽ xóa vĩnh viễn.','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1124,0,'vi','core/media/media','javascript.no_item.favorites.icon','fas fa-star','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1125,0,'vi','core/media/media','javascript.no_item.favorites.title','Bạn chưa đặt tập tin nào vào mục yêu thích','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1126,0,'vi','core/media/media','javascript.no_item.favorites.message','Thêm tập tin vào mục yêu thích để tìm kiếm chúng dễ dàng sau này.','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1127,0,'vi','core/media/media','javascript.no_item.recent.icon','far fa-clock','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1128,0,'vi','core/media/media','javascript.no_item.recent.title','Bạn chưa mở tập tin nào.','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1129,0,'vi','core/media/media','javascript.no_item.recent.message','Mục này hiển thị các tập tin bạn đã xem gần đây.','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1130,0,'vi','core/media/media','javascript.no_item.default.icon','fas fa-sync','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1131,0,'vi','core/media/media','javascript.no_item.default.title','Thư mục trống','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1132,0,'vi','core/media/media','javascript.no_item.default.message','Thư mục này chưa có tập tin nào','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1133,0,'vi','core/media/media','javascript.clipboard.success','Đường dẫn của các tập tin đã được sao chép vào clipboard','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1134,0,'vi','core/media/media','javascript.message.error_header','Lỗi','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1135,0,'vi','core/media/media','javascript.message.success_header','Thành công','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1136,0,'vi','core/media/media','javascript.download.error','Bạn chưa chọn tập tin nào hoặc tập tin này không cho phép tải về','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1137,0,'vi','core/media/media','javascript.actions_list.basic.preview','Xem trước','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1138,0,'vi','core/media/media','javascript.actions_list.file.copy_link','Sao chép đường dẫn','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1139,0,'vi','core/media/media','javascript.actions_list.file.rename','Đổi tên','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1140,0,'vi','core/media/media','javascript.actions_list.file.make_copy','Nhân bản','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1141,0,'vi','core/media/media','javascript.actions_list.user.favorite','Yêu thích','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1142,0,'vi','core/media/media','javascript.actions_list.user.remove_favorite','Xóa khỏi mục yêu thích','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1143,0,'vi','core/media/media','javascript.actions_list.other.download','Tải xuống','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1144,0,'vi','core/media/media','javascript.actions_list.other.trash','Chuyển vào thùng rác','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1145,0,'vi','core/media/media','javascript.actions_list.other.delete','Xóa hoàn toàn','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1146,0,'vi','core/media/media','javascript.actions_list.other.restore','Khôi phục','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1147,0,'vi','core/media/media','empty_trash_success','Dọn sạch thùng rác thành công','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1148,0,'vi','core/media/media','name_invalid','Tên thư mục chứa ký tự không hợp lệ','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1149,0,'en','core/setting/setting','title','Settings','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1150,0,'en','core/setting/setting','email_setting_title','Email settings','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1151,0,'en','core/setting/setting','general.theme','Theme','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1152,0,'en','core/setting/setting','general.description','Setting site information','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1153,0,'en','core/setting/setting','general.title','General','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1154,0,'en','core/setting/setting','general.general_block','General Information','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1155,0,'en','core/setting/setting','general.rich_editor','Rich Editor','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1156,0,'en','core/setting/setting','general.site_title','Site title','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1157,0,'en','core/setting/setting','general.admin_email','Admin Email','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1158,0,'en','core/setting/setting','general.seo_block','SEO Configuration','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1159,0,'en','core/setting/setting','general.seo_title','SEO Title','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1160,0,'en','core/setting/setting','general.seo_description','SEO Description','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1161,0,'en','core/setting/setting','general.webmaster_tools_block','Google Webmaster Tools','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1162,0,'en','core/setting/setting','general.google_site_verification','Google site verification','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1163,0,'en','core/setting/setting','general.placeholder.site_title','Site Title (maximum 120 characters)','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1164,0,'en','core/setting/setting','general.placeholder.admin_email','Admin Email','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1165,0,'en','core/setting/setting','general.placeholder.seo_title','SEO Title (maximum 120 characters)','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1166,0,'en','core/setting/setting','general.placeholder.seo_description','SEO Description (maximum 120 characters)','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1167,0,'en','core/setting/setting','general.placeholder.google_analytics','Google Analytics','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1168,0,'en','core/setting/setting','general.placeholder.google_site_verification','Google Site Verification','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1169,0,'en','core/setting/setting','general.cache_admin_menu','Cache admin menu?','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1170,0,'en','core/setting/setting','general.enable_send_error_reporting_via_email','Enable to send error reporting via email?','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1171,0,'en','core/setting/setting','general.time_zone','Timezone','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1172,0,'en','core/setting/setting','general.default_admin_theme','Default admin theme','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1173,0,'en','core/setting/setting','general.enable_change_admin_theme','Enable change admin theme?','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1174,0,'en','core/setting/setting','general.enable','Enable','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1175,0,'en','core/setting/setting','general.disable','Disable','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1176,0,'en','core/setting/setting','general.enable_cache','Enable cache?','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1177,0,'en','core/setting/setting','general.cache_time','Cache time (minutes)','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1178,0,'en','core/setting/setting','general.cache_time_site_map','Cache Time Site map','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1179,0,'en','core/setting/setting','general.admin_logo','Admin logo','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1180,0,'en','core/setting/setting','general.admin_favicon','Admin favicon','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1181,0,'en','core/setting/setting','general.admin_title','Admin title','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1182,0,'en','core/setting/setting','general.admin_title_placeholder','Title show to tab of browser','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1183,0,'en','core/setting/setting','general.cache_block','Cache','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1184,0,'en','core/setting/setting','general.admin_appearance_title','Admin appearance','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1185,0,'en','core/setting/setting','general.admin_appearance_description','Setting admin appearance such as editor, language...','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1186,0,'en','core/setting/setting','general.seo_block_description','Setting site title, site meta description, site keyword for optimize SEO','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1187,0,'en','core/setting/setting','general.webmaster_tools_description','Google Webmaster Tools (GWT) is free software that helps you manage the technical side of your website','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1188,0,'en','core/setting/setting','general.cache_description','Config cache for system for optimize speed','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1189,0,'en','core/setting/setting','general.yes','Yes','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1190,0,'en','core/setting/setting','general.no','No','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1191,0,'en','core/setting/setting','general.show_on_front','Your homepage displays','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1192,0,'en','core/setting/setting','general.select','— Select —','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1193,0,'en','core/setting/setting','general.show_site_name','Show site name after page title, separate with \"-\"?','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1194,0,'en','core/setting/setting','general.locale','Site language','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1195,0,'en','core/setting/setting','general.locale_direction','Front site language direction','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1196,0,'en','core/setting/setting','general.admin_locale_direction','Admin language direction','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1197,0,'en','core/setting/setting','general.admin_login_screen_backgrounds','Login screen backgrounds (~1366x768)','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1198,0,'en','core/setting/setting','email.subject','Subject','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1199,0,'en','core/setting/setting','email.content','Content','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1200,0,'en','core/setting/setting','email.title','Setting for email template','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1201,0,'en','core/setting/setting','email.description','Email template using HTML & system variables.','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1202,0,'en','core/setting/setting','email.reset_to_default','Reset to default','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1203,0,'en','core/setting/setting','email.back','Back to settings','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1204,0,'en','core/setting/setting','email.reset_success','Reset back to default successfully','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1205,0,'en','core/setting/setting','email.confirm_reset','Confirm reset email template?','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1206,0,'en','core/setting/setting','email.confirm_message','Do you really want to reset this email template to default?','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1207,0,'en','core/setting/setting','email.continue','Continue','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1208,0,'en','core/setting/setting','email.sender_name','Sender name','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1209,0,'en','core/setting/setting','email.sender_name_placeholder','Name','2021-07-26 04:16:45','2021-07-26 04:17:14'),(1210,0,'en','core/setting/setting','email.sender_email','Sender email','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1211,0,'en','core/setting/setting','email.mailer','Mailer','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1212,0,'en','core/setting/setting','email.port','Port','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1213,0,'en','core/setting/setting','email.port_placeholder','Ex: 587','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1214,0,'en','core/setting/setting','email.host','Host','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1215,0,'en','core/setting/setting','email.host_placeholder','Ex: smtp.gmail.com','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1216,0,'en','core/setting/setting','email.username','Username','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1217,0,'en','core/setting/setting','email.username_placeholder','Username to login to mail server','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1218,0,'en','core/setting/setting','email.password','Password','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1219,0,'en','core/setting/setting','email.password_placeholder','Password to login to mail server','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1220,0,'en','core/setting/setting','email.encryption','Encryption','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1221,0,'en','core/setting/setting','email.mail_gun_domain','Domain','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1222,0,'en','core/setting/setting','email.mail_gun_domain_placeholder','Domain','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1223,0,'en','core/setting/setting','email.mail_gun_secret','Secret','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1224,0,'en','core/setting/setting','email.mail_gun_secret_placeholder','Secret','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1225,0,'en','core/setting/setting','email.mail_gun_endpoint','Endpoint','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1226,0,'en','core/setting/setting','email.mail_gun_endpoint_placeholder','Endpoint','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1227,0,'en','core/setting/setting','email.log_channel','Log channel','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1228,0,'en','core/setting/setting','email.sendmail_path','Sendmail Path','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1229,0,'en','core/setting/setting','email.encryption_placeholder','Encryption: ssl or tls','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1230,0,'en','core/setting/setting','email.ses_key','Key','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1231,0,'en','core/setting/setting','email.ses_key_placeholder','Key','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1232,0,'en','core/setting/setting','email.ses_secret','Secret','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1233,0,'en','core/setting/setting','email.ses_secret_placeholder','Secret','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1234,0,'en','core/setting/setting','email.ses_region','Region','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1235,0,'en','core/setting/setting','email.ses_region_placeholder','Region','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1236,0,'en','core/setting/setting','email.postmark_token','Token','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1237,0,'en','core/setting/setting','email.postmark_token_placeholder','Token','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1238,0,'en','core/setting/setting','email.template_title','Email templates','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1239,0,'en','core/setting/setting','email.template_description','Base templates for all emails','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1240,0,'en','core/setting/setting','email.template_header','Email template header','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1241,0,'en','core/setting/setting','email.template_header_description','Template for header of emails','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1242,0,'en','core/setting/setting','email.template_footer','Email template footer','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1243,0,'en','core/setting/setting','email.template_footer_description','Template for footer of emails','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1244,0,'en','core/setting/setting','email.default','Default','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1245,0,'en','core/setting/setting','email.using_queue_to_send_mail','Using queue job to send emails (Must to setup Queue first https://laravel.com/docs/queues#supervisor-configuration)','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1246,0,'en','core/setting/setting','media.title','Media','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1247,0,'en','core/setting/setting','media.driver','Driver','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1248,0,'en','core/setting/setting','media.description','Settings for media','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1249,0,'en','core/setting/setting','media.aws_access_key_id','AWS Access Key ID','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1250,0,'en','core/setting/setting','media.aws_secret_key','AWS Secret Key','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1251,0,'en','core/setting/setting','media.aws_default_region','AWS Default Region','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1252,0,'en','core/setting/setting','media.aws_bucket','AWS Bucket','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1253,0,'en','core/setting/setting','media.aws_url','AWS URL','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1254,0,'en','core/setting/setting','media.do_spaces_access_key_id','DO Spaces Access Key ID','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1255,0,'en','core/setting/setting','media.do_spaces_secret_key','DO Spaces Secret Key','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1256,0,'en','core/setting/setting','media.do_spaces_default_region','DO Spaces Default Region','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1257,0,'en','core/setting/setting','media.do_spaces_bucket','DO Spaces Bucket','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1258,0,'en','core/setting/setting','media.do_spaces_endpoint','DO Spaces Endpoint','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1259,0,'en','core/setting/setting','media.do_spaces_cdn_enabled','Is DO Spaces CDN enabled?','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1260,0,'en','core/setting/setting','media.media_do_spaces_cdn_custom_domain','Do Spaces CDN custom domain','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1261,0,'en','core/setting/setting','media.media_do_spaces_cdn_custom_domain_placeholder','https://your-custom-domain.com','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1262,0,'en','core/setting/setting','media.wasabi_access_key_id','Wasabi Access Key ID','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1263,0,'en','core/setting/setting','media.wasabi_secret_key','Wasabi Secret Key','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1264,0,'en','core/setting/setting','media.wasabi_default_region','Wasabi Default Region','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1265,0,'en','core/setting/setting','media.wasabi_bucket','Wasabi Bucket','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1266,0,'en','core/setting/setting','media.wasabi_root','Wasabi Root','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1267,0,'en','core/setting/setting','media.default_placeholder_image','Default placeholder image','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1268,0,'en','core/setting/setting','media.enable_chunk','Enable chunk size upload?','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1269,0,'en','core/setting/setting','media.chunk_size','Chunk size (Bytes)','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1270,0,'en','core/setting/setting','media.chunk_size_placeholder','Default: 1048576 ~ 1MB','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1271,0,'en','core/setting/setting','media.max_file_size','Chunk max file size (MB)','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1272,0,'en','core/setting/setting','media.max_file_size_placeholder','Default: 1048576 ~ 1GB','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1273,0,'en','core/setting/setting','media.enable_watermark','Enable watermark?','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1274,0,'en','core/setting/setting','media.watermark_source','Watermark image','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1275,0,'en','core/setting/setting','media.watermark_size','Size of watermark (%)','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1276,0,'en','core/setting/setting','media.watermark_size_placeholder','Default: 10 (%)','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1277,0,'en','core/setting/setting','media.watermark_opacity','Watermark Opacity (%)','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1278,0,'en','core/setting/setting','media.watermark_opacity_placeholder','Default: 70 (%)','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1279,0,'en','core/setting/setting','media.watermark_position','Watermark position','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1280,0,'en','core/setting/setting','media.watermark_position_x','Watermark position X','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1281,0,'en','core/setting/setting','media.watermark_position_y','Watermark position Y','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1282,0,'en','core/setting/setting','media.watermark_position_top_left','Top left','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1283,0,'en','core/setting/setting','media.watermark_position_top_right','Top right','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1284,0,'en','core/setting/setting','media.watermark_position_bottom_left','Bottom left','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1285,0,'en','core/setting/setting','media.watermark_position_bottom_right','Bottom right','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1286,0,'en','core/setting/setting','media.watermark_position_center','Center','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1287,0,'en','core/setting/setting','license.purchase_code','Purchase code','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1288,0,'en','core/setting/setting','license.buyer','Buyer','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1289,0,'en','core/setting/setting','field_type_not_exists','This field type does not exist','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1290,0,'en','core/setting/setting','save_settings','Save settings','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1291,0,'en','core/setting/setting','template','Template','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1292,0,'en','core/setting/setting','description','Description','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1293,0,'en','core/setting/setting','enable','Enable','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1294,0,'en','core/setting/setting','send','Send','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1295,0,'en','core/setting/setting','test_email_description','To send test email, please make sure you are updated configuration to send mail!','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1296,0,'en','core/setting/setting','test_email_input_placeholder','Enter the email which you want to send test email.','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1297,0,'en','core/setting/setting','test_email_modal_title','Send a test email','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1298,0,'en','core/setting/setting','test_send_mail','Send test mail','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1299,0,'en','core/setting/setting','test_email_send_success','Send email successfully!','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1300,0,'en','core/setting/setting','locale_direction_ltr','Left to Right','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1301,0,'en','core/setting/setting','locale_direction_rtl','Right to Left','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1302,0,'en','core/setting/setting','saving','Saving...','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1303,0,'en','core/setting/setting','emails_warning','You can add up to :count emails','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1304,0,'en','core/setting/setting','email_add_more','Add more','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1305,0,'vi','core/setting/setting','title','Cài đặt','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1306,0,'vi','core/setting/setting','general.theme','Giao diện','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1307,0,'vi','core/setting/setting','general.description','Cấu hình những thông tin cài đặt website.','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1308,0,'vi','core/setting/setting','general.title','Thông tin chung','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1309,0,'vi','core/setting/setting','general.general_block','Thông tin chung','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1310,0,'vi','core/setting/setting','general.site_title','Tên trang','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1311,0,'vi','core/setting/setting','general.admin_email','Email quản trị viên','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1312,0,'vi','core/setting/setting','general.seo_block','Cấu hình SEO','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1313,0,'vi','core/setting/setting','general.seo_title','Tiêu đề SEO','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1314,0,'vi','core/setting/setting','general.seo_description','Mô tả SEO','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1315,0,'vi','core/setting/setting','general.webmaster_tools_block','Google Webmaster Tools','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1316,0,'vi','core/setting/setting','general.google_site_verification','Google site verification','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1317,0,'vi','core/setting/setting','general.placeholder.site_title','Tên trang (tối đa 120 kí tự)','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1318,0,'vi','core/setting/setting','general.placeholder.admin_email','Admin Email','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1319,0,'vi','core/setting/setting','general.placeholder.google_analytics','Ví dụ: UA-42767940-2','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1320,0,'vi','core/setting/setting','general.placeholder.google_site_verification','Mã xác nhận trang web dùng cho Google Webmaster Tool','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1321,0,'vi','core/setting/setting','general.placeholder.seo_title','Tiêu đề SEO (tối đa 120 kí tự)','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1322,0,'vi','core/setting/setting','general.placeholder.seo_description','Mô tả SEO (tối đa 120 kí tự)','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1323,0,'vi','core/setting/setting','general.enable_change_admin_theme','Cho phép thay đổi giao diện quản trị?','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1324,0,'vi','core/setting/setting','general.enable','Bật','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1325,0,'vi','core/setting/setting','general.disable','Tắt','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1326,0,'vi','core/setting/setting','general.enable_cache','Bật bộ nhớ đệm?','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1327,0,'vi','core/setting/setting','general.cache_time','Thời gian lưu bộ nhớ đệm (phút)','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1328,0,'vi','core/setting/setting','general.cache_time_site_map','Thời gian lưu sơ đồ trang trong bộ nhớ đệm','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1329,0,'vi','core/setting/setting','general.admin_logo','Logo trang quản trị','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1330,0,'vi','core/setting/setting','general.admin_title','Tiêu đề trang quản trị','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1331,0,'vi','core/setting/setting','general.admin_title_placeholder','Tiêu đề hiển thị trên thẻ trình duyệt','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1332,0,'vi','core/setting/setting','general.rich_editor','Bộ soạn thảo văn bản','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1333,0,'vi','core/setting/setting','general.cache_block','Bộ nhớ đệm','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1334,0,'vi','core/setting/setting','general.yes','Bật','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1335,0,'vi','core/setting/setting','general.no','Tắt','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1336,0,'vi','core/setting/setting','email.subject','Tiêu đề','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1337,0,'vi','core/setting/setting','email.content','Nội dung','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1338,0,'vi','core/setting/setting','email.title','Cấu hình email template','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1339,0,'vi','core/setting/setting','email.description','Cấu trúc file template sử dụng HTML và các biến trong hệ thống.','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1340,0,'vi','core/setting/setting','email.reset_to_default','Khôi phục về mặc định','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1341,0,'vi','core/setting/setting','email.back','Trở lại trang cài đặt','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1342,0,'vi','core/setting/setting','email.reset_success','Khôi phục mặc định thành công','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1343,0,'vi','core/setting/setting','email.confirm_reset','Xác nhận khôi phục mặc định?','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1344,0,'vi','core/setting/setting','email.confirm_message','Bạn có chắc chắn muốn khôi phục về bản mặc định?','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1345,0,'vi','core/setting/setting','email.continue','Tiếp tục','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1346,0,'vi','core/setting/setting','email.sender_name','Tên người gửi','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1347,0,'vi','core/setting/setting','email.sender_name_placeholder','Tên','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1348,0,'vi','core/setting/setting','email.sender_email','Email của người gửi','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1349,0,'vi','core/setting/setting','email.port','Cổng','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1350,0,'vi','core/setting/setting','email.port_placeholder','Ví dụ: 587','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1351,0,'vi','core/setting/setting','email.host','Máy chủ','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1352,0,'vi','core/setting/setting','email.host_placeholder','Ví dụ: smtp.gmail.com','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1353,0,'vi','core/setting/setting','email.username','Tên đăng nhập','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1354,0,'vi','core/setting/setting','email.username_placeholder','Tên đăng nhập vào máy chủ mail','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1355,0,'vi','core/setting/setting','email.password','Mật khẩu','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1356,0,'vi','core/setting/setting','email.password_placeholder','Mật khẩu đăng nhập vào máy chủ mail','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1357,0,'vi','core/setting/setting','email.encryption','Mã hoá','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1358,0,'vi','core/setting/setting','email.mail_gun_domain','Tên miền','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1359,0,'vi','core/setting/setting','email.mail_gun_domain_placeholder','Tên miền','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1360,0,'vi','core/setting/setting','email.mail_gun_secret','Chuỗi bí mật','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1361,0,'vi','core/setting/setting','email.mail_gun_secret_placeholder','Chuỗi bí mật','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1362,0,'vi','core/setting/setting','email.template_title','Mẫu giao diện email','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1363,0,'vi','core/setting/setting','email.template_description','Giao diện mặc định cho tất cả email','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1364,0,'vi','core/setting/setting','email.template_header','Mẫu cho phần trên của email','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1365,0,'vi','core/setting/setting','email.template_header_description','Phần trên của tất cả email','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1366,0,'vi','core/setting/setting','email.template_footer','Mẫu cho phần dưới của email','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1367,0,'vi','core/setting/setting','email.template_footer_description','Phần dưới của tất cả email','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1368,0,'vi','core/setting/setting','save_settings','Lưu cài đặt','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1369,0,'vi','core/setting/setting','template','Mẫu','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1370,0,'vi','core/setting/setting','description','Mô tả','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1371,0,'vi','core/setting/setting','enable','Bật','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1372,0,'vi','core/setting/setting','test_send_mail','Gửi thử nghiệm','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1373,0,'en','core/table/general','operations','Operations','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1374,0,'en','core/table/general','loading_data','Loading data from server','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1375,0,'en','core/table/general','display','Display','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1376,0,'en','core/table/general','all','All','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1377,0,'en','core/table/general','edit_entry','Edit','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1378,0,'en','core/table/general','delete_entry','Delete','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1379,0,'en','core/table/general','show_from','Showing from','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1380,0,'en','core/table/general','to','to','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1381,0,'en','core/table/general','in','in','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1382,0,'en','core/table/general','records','records','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1383,0,'en','core/table/general','no_data','No data to display','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1384,0,'en','core/table/general','no_record','No record','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1385,0,'en','core/table/general','loading','Loading data from server','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1386,0,'en','core/table/general','confirm_delete','Confirm delete','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1387,0,'en','core/table/general','confirm_delete_msg','Do you really want to delete this record?','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1388,0,'en','core/table/general','cancel','Cancel','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1389,0,'en','core/table/general','delete','Delete','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1390,0,'en','core/table/general','close','Close','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1391,0,'en','core/table/general','contains','Contains','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1392,0,'en','core/table/general','is_equal_to','Is equal to','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1393,0,'en','core/table/general','greater_than','Greater than','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1394,0,'en','core/table/general','less_than','Less than','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1395,0,'en','core/table/general','value','Value','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1396,0,'en','core/table/general','select_field','Select field','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1397,0,'en','core/table/general','reset','Reset','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1398,0,'en','core/table/general','add_additional_filter','Add additional filter','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1399,0,'en','core/table/general','apply','Apply','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1400,0,'en','core/table/general','filters','Filters','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1401,0,'en','core/table/general','bulk_change','Bulk changes','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1402,0,'en','core/table/general','select_option','Select option','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1403,0,'en','core/table/general','bulk_actions','Bulk Actions','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1404,0,'en','core/table/general','save_bulk_change_success','Update data for selected record(s) successfully!','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1405,0,'en','core/table/general','please_select_record','Please select at least one record to perform this action!','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1406,0,'en','core/table/general','filtered','(filtered from _MAX_ total records)','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1407,0,'en','core/table/general','search','Search...','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1408,0,'en','core/table/table','operations','Operations','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1409,0,'en','core/table/table','loading_data','Loading data from server','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1410,0,'en','core/table/table','display','Display','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1411,0,'en','core/table/table','all','All','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1412,0,'en','core/table/table','edit_entry','Edit','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1413,0,'en','core/table/table','delete_entry','Delete','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1414,0,'en','core/table/table','show_from','Showing from','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1415,0,'en','core/table/table','to','to','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1416,0,'en','core/table/table','in','in','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1417,0,'en','core/table/table','records','records','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1418,0,'en','core/table/table','no_data','No data to display','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1419,0,'en','core/table/table','no_record','No record','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1420,0,'en','core/table/table','loading','Loading data from server','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1421,0,'en','core/table/table','confirm_delete','Confirm delete','2021-07-26 04:16:46','2021-07-26 04:17:14'),(1422,0,'en','core/table/table','confirm_delete_msg','Do you really want to delete this record?','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1423,0,'en','core/table/table','cancel','Cancel','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1424,0,'en','core/table/table','delete','Delete','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1425,0,'en','core/table/table','close','Close','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1426,0,'en','core/table/table','contains','Contains','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1427,0,'en','core/table/table','is_equal_to','Is equal to','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1428,0,'en','core/table/table','greater_than','Greater than','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1429,0,'en','core/table/table','less_than','Less than','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1430,0,'en','core/table/table','value','Value','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1431,0,'en','core/table/table','select_field','Select field','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1432,0,'en','core/table/table','reset','Reset','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1433,0,'en','core/table/table','add_additional_filter','Add additional filter','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1434,0,'en','core/table/table','apply','Apply','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1435,0,'en','core/table/table','filters','Filters','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1436,0,'en','core/table/table','bulk_change','Bulk changes','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1437,0,'en','core/table/table','select_option','Select option','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1438,0,'en','core/table/table','bulk_actions','Bulk Actions','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1439,0,'en','core/table/table','save_bulk_change_success','Update data for selected record(s) successfully!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1440,0,'en','core/table/table','please_select_record','Please select at least one record to perform this action!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1441,0,'en','core/table/table','filtered','(filtered from _MAX_ total records)','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1442,0,'en','core/table/table','search','Search...','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1443,0,'vi','core/table/general','operations','Hành động','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1444,0,'vi','core/table/general','loading_data','Đang tải dữ liệu từ hệ thống','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1445,0,'vi','core/table/general','display','Hiển thị','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1446,0,'vi','core/table/general','all','Tất cả','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1447,0,'vi','core/table/general','edit_entry','Sửa','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1448,0,'vi','core/table/general','delete_entry','Xoá','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1449,0,'vi','core/table/general','show_from','Hiển thị từ','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1450,0,'vi','core/table/general','to','đến','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1451,0,'vi','core/table/general','in','trong tổng số','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1452,0,'vi','core/table/general','records','bản ghi','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1453,0,'vi','core/table/general','no_data','Không có dữ liệu để hiển thị','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1454,0,'vi','core/table/general','no_record','không có bản ghi nào','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1455,0,'vi','core/table/general','loading','Đang tải dữ liệu từ hệ thống','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1456,0,'vi','core/table/general','confirm_delete','Xác nhận xoá','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1457,0,'vi','core/table/general','confirm_delete_msg','Bạn có chắc chắn muốn xoá bản ghi này?','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1458,0,'vi','core/table/general','cancel','Huỷ bỏ','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1459,0,'vi','core/table/general','delete','Xoá','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1460,0,'vi','core/table/general','close','Đóng','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1461,0,'vi','core/table/general','is_equal_to','Bằng với','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1462,0,'vi','core/table/general','greater_than','Lớn hơn','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1463,0,'vi','core/table/general','less_than','Nhỏ hơn','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1464,0,'vi','core/table/general','value','Giá trị','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1465,0,'vi','core/table/general','select_field','Chọn trường','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1466,0,'vi','core/table/general','reset','Làm mới','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1467,0,'vi','core/table/general','add_additional_filter','Thêm bộ lọc','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1468,0,'vi','core/table/general','apply','Áp dụng','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1469,0,'vi','core/table/general','select_option','Lựa chọn','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1470,0,'vi','core/table/general','filters','Lọc dữ liệu','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1471,0,'vi','core/table/general','bulk_change','Thay đổi hàng loạt','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1472,0,'vi','core/table/general','bulk_actions','Hành động','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1473,0,'vi','core/table/general','contains','Bao gồm','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1474,0,'vi','core/table/general','filtered','(đã được lọc từ _MAX_ bản ghi)','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1475,0,'en','packages/menu/menu','name','Menus','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1476,0,'en','packages/menu/menu','key_name','Menu name (key: :key)','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1477,0,'en','packages/menu/menu','basic_info','Basic information','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1478,0,'en','packages/menu/menu','add_to_menu','Add to menu','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1479,0,'en','packages/menu/menu','custom_link','Custom link','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1480,0,'en','packages/menu/menu','add_link','Add link','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1481,0,'en','packages/menu/menu','structure','Menu structure','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1482,0,'en','packages/menu/menu','remove','Remove','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1483,0,'en','packages/menu/menu','cancel','Cancel','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1484,0,'en','packages/menu/menu','title','Title','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1485,0,'en','packages/menu/menu','icon','Icon','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1486,0,'en','packages/menu/menu','url','URL','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1487,0,'en','packages/menu/menu','target','Target','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1488,0,'en','packages/menu/menu','css_class','CSS class','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1489,0,'en','packages/menu/menu','self_open_link','Open link directly','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1490,0,'en','packages/menu/menu','blank_open_link','Open link in new tab','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1491,0,'en','packages/menu/menu','create','Create menu','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1492,0,'en','packages/menu/menu','edit','Edit menu','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1493,0,'en','packages/menu/menu','menu_settings','Menu settings','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1494,0,'en','packages/menu/menu','display_location','Display location','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1495,0,'vi','packages/menu/menu','name','Menu','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1496,0,'vi','packages/menu/menu','cancel','Hủy bỏ','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1497,0,'vi','packages/menu/menu','add_link','Thêm liên kết','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1498,0,'vi','packages/menu/menu','add_to_menu','Thêm vào trình đơn','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1499,0,'vi','packages/menu/menu','basic_info','Thông tin cơ bản','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1500,0,'vi','packages/menu/menu','blank_open_link','Mở liên kết trong tab mới','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1501,0,'vi','packages/menu/menu','css_class','CSS class','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1502,0,'vi','packages/menu/menu','custom_link','Liên kết tùy chọn','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1503,0,'vi','packages/menu/menu','icon','Biểu tượng','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1504,0,'vi','packages/menu/menu','key_name','Tên menu (key::key)','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1505,0,'vi','packages/menu/menu','remove','Xóa','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1506,0,'vi','packages/menu/menu','self_open_link','Mở liên kết trong tab hiện tại','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1507,0,'vi','packages/menu/menu','structure','Cấu trúc trình đơn','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1508,0,'vi','packages/menu/menu','target','Target','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1509,0,'vi','packages/menu/menu','title','Tiêu đề','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1510,0,'vi','packages/menu/menu','url','URL','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1511,0,'vi','packages/menu/menu','create','Tạo trình đơn','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1512,0,'vi','packages/menu/menu','edit','Sửa trình đơn','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1513,0,'en','packages/optimize/optimize','settings.title','Optimize page speed','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1514,0,'en','packages/optimize/optimize','settings.description','Minify HTML output, inline CSS, remove comments...','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1515,0,'en','packages/optimize/optimize','settings.enable','Enable optimize page speed?','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1516,0,'en','packages/page/pages','create','Create new page','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1517,0,'en','packages/page/pages','edit','Edit page','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1518,0,'en','packages/page/pages','form.name','Name','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1519,0,'en','packages/page/pages','form.name_placeholder','Page\'s name (Maximum 120 characters)','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1520,0,'en','packages/page/pages','form.content','Content','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1521,0,'en','packages/page/pages','form.note','Note content','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1522,0,'en','packages/page/pages','notices.no_select','Please select at least one record to take this action!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1523,0,'en','packages/page/pages','notices.update_success_message','Update successfully','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1524,0,'en','packages/page/pages','cannot_delete','Page could not be deleted','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1525,0,'en','packages/page/pages','deleted','Page deleted','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1526,0,'en','packages/page/pages','pages','Pages','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1527,0,'en','packages/page/pages','menu','Pages','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1528,0,'en','packages/page/pages','menu_name','Pages','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1529,0,'en','packages/page/pages','edit_this_page','Edit this page','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1530,0,'en','packages/page/pages','total_pages','Total pages','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1531,0,'en','packages/page/pages','settings.show_on_front','Your homepage displays','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1532,0,'en','packages/page/pages','settings.select','— Select —','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1533,0,'en','packages/page/pages','front_page','Front Page','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1534,0,'vi','packages/page/pages','create','Thêm trang','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1535,0,'vi','packages/page/pages','edit','Sửa trang','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1536,0,'vi','packages/page/pages','form.name','Tiêu đề trang','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1537,0,'vi','packages/page/pages','form.note','Nội dung ghi chú','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1538,0,'vi','packages/page/pages','form.name_placeholder','Tên trang (tối đa 120 kí tự)','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1539,0,'vi','packages/page/pages','form.content','Nội dung','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1540,0,'vi','packages/page/pages','notices.no_select','Chọn ít nhất 1 trang để thực hiện hành động này!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1541,0,'vi','packages/page/pages','notices.update_success_message','Cập nhật thành công','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1542,0,'vi','packages/page/pages','deleted','Xóa trang thành công','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1543,0,'vi','packages/page/pages','cannot_delete','Không thể xóa trang','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1544,0,'vi','packages/page/pages','menu','Trang','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1545,0,'vi','packages/page/pages','menu_name','Trang','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1546,0,'vi','packages/page/pages','edit_this_page','Sửa trang này','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1547,0,'vi','packages/page/pages','pages','Trang','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1548,0,'en','packages/plugin-management/plugin','enabled','Enabled','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1549,0,'en','packages/plugin-management/plugin','deactivated','Deactivated','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1550,0,'en','packages/plugin-management/plugin','activated','Activated','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1551,0,'en','packages/plugin-management/plugin','activate','Activate','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1552,0,'en','packages/plugin-management/plugin','deactivate','Deactivate','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1553,0,'en','packages/plugin-management/plugin','author','By','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1554,0,'en','packages/plugin-management/plugin','update_plugin_status_success','Update plugin successfully','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1555,0,'en','packages/plugin-management/plugin','plugins','Plugins','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1556,0,'en','packages/plugin-management/plugin','missing_required_plugins','Please activate plugin(s): :plugins before activate this plugin!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1557,0,'en','packages/plugin-management/plugin','remove','Remove','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1558,0,'en','packages/plugin-management/plugin','remove_plugin_success','Remove plugin successfully!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1559,0,'en','packages/plugin-management/plugin','remove_plugin','Remove plugin','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1560,0,'en','packages/plugin-management/plugin','remove_plugin_confirm_message','Do you really want to remove this plugin?','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1561,0,'en','packages/plugin-management/plugin','remove_plugin_confirm_yes','Yes, remove it!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1562,0,'en','packages/plugin-management/plugin','total_plugins','Total plugins','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1563,0,'en','packages/plugin-management/plugin','invalid_plugin','This plugin is not a valid plugin, please check it again!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1564,0,'en','packages/plugin-management/plugin','version','Version','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1565,0,'en','packages/plugin-management/plugin','invalid_json','Invalid plugin.json!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1566,0,'en','packages/plugin-management/plugin','activate_success','Activate plugin successfully!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1567,0,'en','packages/plugin-management/plugin','activated_already','This plugin is activated already!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1568,0,'en','packages/plugin-management/plugin','plugin_not_exist','This plugin is not exists.','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1569,0,'en','packages/plugin-management/plugin','missing_json_file','Missing file plugin.json!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1570,0,'en','packages/plugin-management/plugin','plugin_invalid','Plugin is valid!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1571,0,'en','packages/plugin-management/plugin','published_assets_success','Publish assets for plugin :name successfully!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1572,0,'en','packages/plugin-management/plugin','plugin_removed','Plugin has been removed!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1573,0,'en','packages/plugin-management/plugin','deactivated_success','Deactivate plugin successfully!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1574,0,'en','packages/plugin-management/plugin','deactivated_already','This plugin is deactivated already!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1575,0,'en','packages/plugin-management/plugin','folder_is_not_writeable','Cannot write files! Folder :name is not writable. Please chmod to make it writable!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1576,0,'en','packages/plugin-management/plugin','plugin_is_not_ready','Plugin :name is not ready to use','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1577,0,'vi','packages/plugin-management/plugin','activate','Kích hoạt','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1578,0,'vi','packages/plugin-management/plugin','author','Tác giả','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1579,0,'vi','packages/plugin-management/plugin','version','Phiên bản','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1580,0,'vi','packages/plugin-management/plugin','activated','Đã kích hoạt','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1581,0,'vi','packages/plugin-management/plugin','deactivate','Hủy kích hoạt','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1582,0,'vi','packages/plugin-management/plugin','deactivated','Đã vô hiệu','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1583,0,'vi','packages/plugin-management/plugin','enabled','Kích hoạt','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1584,0,'vi','packages/plugin-management/plugin','invalid_plugin','Gói mở rộng không hợp lệ','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1585,0,'vi','packages/plugin-management/plugin','update_plugin_status_success','Cập nhật trạng thái gói mở rộng thành công','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1586,0,'vi','packages/plugin-management/plugin','missing_required_plugins','Vui lòng kích hoạt các tiện ích mở rộng :plugins trước khi kích hoạt tiện ích này','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1587,0,'vi','packages/plugin-management/plugin','plugins','Tiện ích mở rộng','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1588,0,'en','packages/seo-helper/seo-helper','meta_box_header','Search Engine Optimize','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1589,0,'en','packages/seo-helper/seo-helper','edit_seo_meta','Edit SEO meta','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1590,0,'en','packages/seo-helper/seo-helper','default_description','Setup meta title & description to make your site easy to discovered on search engines such as Google','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1591,0,'en','packages/seo-helper/seo-helper','seo_title','SEO Title','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1592,0,'en','packages/seo-helper/seo-helper','seo_description','SEO description','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1593,0,'vi','packages/seo-helper/seo-helper','meta_box_header','Tối ưu hoá bộ máy tìm kiếm (SEO)','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1594,0,'vi','packages/seo-helper/seo-helper','edit_seo_meta','Chỉnh sửa SEO','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1595,0,'vi','packages/seo-helper/seo-helper','default_description','Thiết lập các thẻ mô tả giúp người dùng dễ dàng tìm thấy trên công cụ tìm kiếm như Google.','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1596,0,'vi','packages/seo-helper/seo-helper','seo_title','Tiêu đề trang','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1597,0,'vi','packages/seo-helper/seo-helper','seo_description','Mô tả trang','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1598,0,'en','packages/slug/slug','permalink_settings','Permalink','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1599,0,'en','packages/slug/slug','settings.title','Permalink settings','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1600,0,'en','packages/slug/slug','settings.description','Manage permalink for all modules.','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1601,0,'en','packages/slug/slug','settings.preview','Preview','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1602,0,'en','packages/slug/slug','settings.turn_off_automatic_url_translation_into_latin','Turn off automatic URL translation into Latin?','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1603,0,'en','packages/slug/slug','preview','Preview','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1604,0,'en','packages/theme/theme','name','Themes','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1605,0,'en','packages/theme/theme','theme','Theme','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1606,0,'en','packages/theme/theme','author','Author','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1607,0,'en','packages/theme/theme','version','Version','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1608,0,'en','packages/theme/theme','description','Description','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1609,0,'en','packages/theme/theme','active_success','Activate theme :name successfully!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1610,0,'en','packages/theme/theme','active','Active','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1611,0,'en','packages/theme/theme','activated','Activated','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1612,0,'en','packages/theme/theme','appearance','Appearance','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1613,0,'en','packages/theme/theme','theme_options','Theme options','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1614,0,'en','packages/theme/theme','save_changes','Save Changes','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1615,0,'en','packages/theme/theme','developer_mode','Developer Mode Enabled','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1616,0,'en','packages/theme/theme','custom_css','Custom CSS','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1617,0,'en','packages/theme/theme','custom_js','Custom JS','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1618,0,'en','packages/theme/theme','custom_header_js','Header JS','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1619,0,'en','packages/theme/theme','custom_header_js_placeholder','JS in header of page, wrap it inside &#x3C;script&#x3E;&#x3C;/script&#x3E;','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1620,0,'en','packages/theme/theme','custom_body_js','Body JS','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1621,0,'en','packages/theme/theme','custom_body_js_placeholder','JS in body of page, wrap it inside &#x3C;script&#x3E;&#x3C;/script&#x3E;','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1622,0,'en','packages/theme/theme','custom_footer_js','Footer JS','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1623,0,'en','packages/theme/theme','custom_footer_js_placeholder','JS in footer of page, wrap it inside &#x3C;script&#x3E;&#x3C;/script&#x3E;','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1624,0,'en','packages/theme/theme','remove_theme_success','Remove theme successfully!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1625,0,'en','packages/theme/theme','theme_is_not_existed','This theme is not existed!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1626,0,'en','packages/theme/theme','remove','Remove','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1627,0,'en','packages/theme/theme','remove_theme','Remove theme','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1628,0,'en','packages/theme/theme','remove_theme_confirm_message','Do you really want to remove this theme?','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1629,0,'en','packages/theme/theme','remove_theme_confirm_yes','Yes, remove it!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1630,0,'en','packages/theme/theme','total_themes','Total themes','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1631,0,'en','packages/theme/theme','show_admin_bar','Show admin bar (When admin logged in, still show admin bar in website)?','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1632,0,'en','packages/theme/theme','settings.title','Theme','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1633,0,'en','packages/theme/theme','settings.description','Setting for theme','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1634,0,'en','packages/theme/theme','add_new','Add new','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1635,0,'en','packages/theme/theme','theme_activated_already','Theme \":name\" is activated already!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1636,0,'en','packages/theme/theme','missing_json_file','Missing file theme.json!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1637,0,'en','packages/theme/theme','theme_invalid','Theme is valid!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1638,0,'en','packages/theme/theme','published_assets_success','Publish assets for :themes successfully!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1639,0,'en','packages/theme/theme','cannot_remove_theme','Cannot remove activated theme, please activate another theme before removing \":name\"!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1640,0,'en','packages/theme/theme','theme_deleted','Theme \":name\" has been destroyed.','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1641,0,'en','packages/theme/theme','removed_assets','Remove assets of a theme :name successfully!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1642,0,'en','packages/theme/theme','update_custom_css_success','Update custom CSS successfully!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1643,0,'en','packages/theme/theme','update_custom_js_success','Update custom JS successfully!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1644,0,'en','packages/theme/theme','go_to_dashboard','Go to dashboard','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1645,0,'en','packages/theme/theme','custom_css_placeholder','Using Ctrl + Space to autocomplete.','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1646,0,'en','packages/theme/theme','theme_option_general','General','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1647,0,'en','packages/theme/theme','theme_option_general_description','General settings','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1648,0,'en','packages/theme/theme','theme_option_seo_open_graph_image','SEO default Open Graph image','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1649,0,'en','packages/theme/theme','theme_option_logo','Logo','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1650,0,'en','packages/theme/theme','theme_option_favicon','Favicon','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1651,0,'en','packages/theme/theme','folder_is_not_writeable','Cannot write files! Folder :name is not writable. Please chmod to make it writable!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1652,0,'vi','packages/theme/theme','activated','Đã kích hoạt','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1653,0,'vi','packages/theme/theme','active','Kích hoạt','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1654,0,'vi','packages/theme/theme','active_success','Kích hoạt giao diện thành công!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1655,0,'vi','packages/theme/theme','author','Tác giả','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1656,0,'vi','packages/theme/theme','description','Mô tả','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1657,0,'vi','packages/theme/theme','theme','Giao diện','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1658,0,'vi','packages/theme/theme','theme_options','Tuỳ chọn giao diện','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1659,0,'vi','packages/theme/theme','version','Phiên bản','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1660,0,'vi','packages/theme/theme','save_changes','Lưu thay đổi','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1661,0,'vi','packages/theme/theme','developer_mode','Đang kích hoạt chế độ thử nghiệm','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1662,0,'vi','packages/theme/theme','custom_css','Tuỳ chỉnh CSS','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1663,0,'en','packages/widget/global','name','Widgets','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1664,0,'en','packages/widget/global','create','New widget','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1665,0,'en','packages/widget/global','edit','Edit widget','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1666,0,'en','packages/widget/global','delete','Delete','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1667,0,'en','packages/widget/global','available','Available Widgets','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1668,0,'en','packages/widget/global','instruction','To activate a widget drag it to a sidebar or click on it. To deactivate a widget and delete its settings, drag it back.','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1669,0,'en','packages/widget/global','number_tag_display','Number tags will be display','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1670,0,'en','packages/widget/global','number_post_display','Number posts will be display','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1671,0,'en','packages/widget/global','select_menu','Select Menu','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1672,0,'en','packages/widget/global','widget_text','Text','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1673,0,'en','packages/widget/global','widget_text_description','Arbitrary text or HTML.','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1674,0,'en','packages/widget/global','widget_recent_post','Recent Posts','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1675,0,'en','packages/widget/global','widget_recent_post_description','Recent posts widget.','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1676,0,'en','packages/widget/global','widget_custom_menu','Custom Menu','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1677,0,'en','packages/widget/global','widget_custom_menu_description','Add a custom menu to your widget area.','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1678,0,'en','packages/widget/global','widget_tag','Tags','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1679,0,'en','packages/widget/global','widget_tag_description','Popular tags','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1680,0,'en','packages/widget/global','save_success','Save widget successfully!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1681,0,'en','packages/widget/global','delete_success','Delete widget successfully!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1682,0,'en','packages/widget/widget','name','Widgets','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1683,0,'en','packages/widget/widget','create','New widget','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1684,0,'en','packages/widget/widget','edit','Edit widget','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1685,0,'en','packages/widget/widget','delete','Delete','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1686,0,'en','packages/widget/widget','available','Available Widgets','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1687,0,'en','packages/widget/widget','instruction','To activate a widget drag it to a sidebar or click on it. To deactivate a widget and delete its settings, drag it back.','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1688,0,'en','packages/widget/widget','number_tag_display','Number tags will be display','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1689,0,'en','packages/widget/widget','number_post_display','Number posts will be display','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1690,0,'en','packages/widget/widget','select_menu','Select Menu','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1691,0,'en','packages/widget/widget','widget_text','Text','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1692,0,'en','packages/widget/widget','widget_text_description','Arbitrary text or HTML.','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1693,0,'en','packages/widget/widget','widget_recent_post','Recent Posts','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1694,0,'en','packages/widget/widget','widget_recent_post_description','Recent posts widget.','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1695,0,'en','packages/widget/widget','widget_custom_menu','Custom Menu','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1696,0,'en','packages/widget/widget','widget_custom_menu_description','Add a custom menu to your widget area.','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1697,0,'en','packages/widget/widget','widget_tag','Tags','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1698,0,'en','packages/widget/widget','widget_tag_description','Popular tags','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1699,0,'en','packages/widget/widget','save_success','Save widget successfully!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1700,0,'en','packages/widget/widget','delete_success','Delete widget successfully!','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1701,0,'en','packages/widget/widget','primary_sidebar_name','Primary sidebar','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1702,0,'en','packages/widget/widget','primary_sidebar_description','Primary sidebar section','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1703,0,'vi','packages/widget/global','name','Widgets','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1704,0,'vi','packages/widget/global','create','New widget','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1705,0,'vi','packages/widget/global','edit','Edit widget','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1706,0,'vi','packages/widget/global','available','Tiện ích có sẵn','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1707,0,'vi','packages/widget/global','delete','Xóa','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1708,0,'vi','packages/widget/global','instruction','Để kích hoạt tiện ích, hãy kéo nó vào sidebar hoặc nhấn vào nó. Để hủy kích hoạt tiện ích và xóa các thiết lập của tiện ích, kéo nó quay trở lại.','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1709,0,'vi','packages/widget/global','number_post_display','Số bài viết sẽ hiển thị','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1710,0,'vi','packages/widget/global','number_tag_display','Số thẻ sẽ hiển thị','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1711,0,'vi','packages/widget/global','select_menu','Lựa chọn trình đơn','2021-07-26 04:16:47','2021-07-26 04:17:14'),(1712,0,'vi','packages/widget/global','widget_custom_menu','Menu tùy chỉnh','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1713,0,'vi','packages/widget/global','widget_custom_menu_description','Thêm menu tùy chỉnh vào khu vực tiện ích của bạn','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1714,0,'vi','packages/widget/global','widget_recent_post','Bài viết gần đây','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1715,0,'vi','packages/widget/global','widget_recent_post_description','Tiện ích bài viết gần đây','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1716,0,'vi','packages/widget/global','widget_tag','Thẻ','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1717,0,'vi','packages/widget/global','widget_tag_description','Thẻ phổ biến, sử dụng nhiều','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1718,0,'vi','packages/widget/global','widget_text','Văn bản','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1719,0,'vi','packages/widget/global','widget_text_description','Văn bản tùy ý hoặc HTML.','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1720,0,'vi','packages/widget/global','delete_success','Xoá tiện ích thành công','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1721,0,'vi','packages/widget/global','save_success','Lưu tiện ích thành công!','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1722,0,'en','plugins/analytics/analytics','sessions','Sessions','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1723,0,'en','plugins/analytics/analytics','visitors','Visitors','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1724,0,'en','plugins/analytics/analytics','pageviews','Pageviews','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1725,0,'en','plugins/analytics/analytics','bounce_rate','Bounce Rate','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1726,0,'en','plugins/analytics/analytics','page_session','Pages/Session','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1727,0,'en','plugins/analytics/analytics','avg_duration','Avg. Duration','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1728,0,'en','plugins/analytics/analytics','percent_new_session','Percent new session','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1729,0,'en','plugins/analytics/analytics','new_users','New visitors','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1730,0,'en','plugins/analytics/analytics','visits','visits','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1731,0,'en','plugins/analytics/analytics','views','views','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1732,0,'en','plugins/analytics/analytics','view_id_not_specified','You must provide a valid view id. The document here: <a href=\"https://docs.botble.com/cms/:version/plugin-analytics\" target=\"_blank\">https://docs.botble.com/cms/:version/plugin-analytics</a>','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1733,0,'en','plugins/analytics/analytics','credential_is_not_valid','Analytics credentials is not valid. The document here: <a href=\"https://docs.botble.com/cms/:version/plugin-analytics\" target=\"_blank\">https://docs.botble.com/cms/:version/plugin-analytics</a>','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1734,0,'en','plugins/analytics/analytics','start_date_can_not_before_end_date','Start date :start_date cannot be after end date :end_date','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1735,0,'en','plugins/analytics/analytics','wrong_configuration','To view analytics you\'ll need to get a google analytics client id and add it to your settings. <br /> You also need JSON credential data. <br /> The document here: <a href=\"https://docs.botble.com/cms/:version/plugin-analytics\" target=\"_blank\">https://docs.botble.com/cms/:version/plugin-analytics</a>','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1736,0,'en','plugins/analytics/analytics','settings.title','Google Analytics','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1737,0,'en','plugins/analytics/analytics','settings.description','Config Credentials for Google Analytics','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1738,0,'en','plugins/analytics/analytics','settings.tracking_code','Tracking ID','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1739,0,'en','plugins/analytics/analytics','settings.tracking_code_placeholder','Example: GA-12586526-8','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1740,0,'en','plugins/analytics/analytics','settings.view_id','View ID','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1741,0,'en','plugins/analytics/analytics','settings.view_id_description','Google Analytics View ID','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1742,0,'en','plugins/analytics/analytics','settings.json_credential','Service Account Credentials','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1743,0,'en','plugins/analytics/analytics','settings.json_credential_description','Service Account Credentials','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1744,0,'en','plugins/analytics/analytics','widget_analytics_page','Top Most Visit Pages','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1745,0,'en','plugins/analytics/analytics','widget_analytics_browser','Top Browsers','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1746,0,'en','plugins/analytics/analytics','widget_analytics_referrer','Top Referrers','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1747,0,'en','plugins/analytics/analytics','widget_analytics_general','Site Analytics','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1748,0,'vi','plugins/analytics/analytics','avg_duration','Trung bình','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1749,0,'vi','plugins/analytics/analytics','bounce_rate','Tỉ lệ thoát','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1750,0,'vi','plugins/analytics/analytics','page_session','Trang/Phiên','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1751,0,'vi','plugins/analytics/analytics','pageviews','Lượt xem','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1752,0,'vi','plugins/analytics/analytics','sessions','Phiên','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1753,0,'vi','plugins/analytics/analytics','views','lượt xem','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1754,0,'vi','plugins/analytics/analytics','visitors','Người truy cập','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1755,0,'vi','plugins/analytics/analytics','visits','lượt ghé thăm','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1756,0,'vi','plugins/analytics/analytics','credential_is_not_valid','Thông tin cài đặt không hợp lệ. Tài liệu hướng dẫn tại đây: <a href=\"http://docs.botble.com/cms/:version/analytics\" target=\"_blank\">http://docs.botble.com/cms/:version/analytics</a>','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1757,0,'vi','plugins/analytics/analytics','new_users','Lượt khách mới','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1758,0,'vi','plugins/analytics/analytics','percent_new_session','Tỉ lệ khách mới','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1759,0,'vi','plugins/analytics/analytics','start_date_can_not_before_end_date','Ngày bắt đầu :start_date không thể sau ngày kết thúc :end_date','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1760,0,'vi','plugins/analytics/analytics','view_id_not_specified','Bạn phải cung cấp View ID hợp lê. Tài liệu hướng dẫn tại đây: <a href=\"http://docs.botble.com/cms/:version/analytics\" target=\"_blank\">http://docs.botble.com/cms/:version/analytics</a>','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1761,0,'vi','plugins/analytics/analytics','wrong_configuration','Để xem dữ liệu thống kê Google Analytics, bạn cần lấy thông tin Client ID và thêm nó vào trong phần cài đặt. Bạn cũng cần thông tin xác thực dạng JSON. Tài liệu hướng dẫn tại đây: <a href=\"http://docs.botble.com/cms/:version/analytics\" target=\"_blank\">http://docs.botble.com/cms/:version/analytics</a>','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1762,0,'vi','plugins/analytics/analytics','settings.title','Google Analytics','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1763,0,'vi','plugins/analytics/analytics','settings.description','Config Credentials for Google Analytics','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1764,0,'vi','plugins/analytics/analytics','settings.tracking_code','Tracking Code','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1765,0,'vi','plugins/analytics/analytics','settings.tracking_code_placeholder','Example: GA-12586526-8','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1766,0,'vi','plugins/analytics/analytics','settings.view_id','View ID','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1767,0,'vi','plugins/analytics/analytics','settings.view_id_description','Google Analytics View ID','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1768,0,'vi','plugins/analytics/analytics','settings.json_credential','Service Account Credentials','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1769,0,'vi','plugins/analytics/analytics','settings.json_credential_description','Service Account Credentials','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1770,0,'vi','plugins/analytics/analytics','widget_analytics_browser','Trình duyệt truy cập nhiều','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1771,0,'vi','plugins/analytics/analytics','widget_analytics_general','Thống kê truy cập','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1772,0,'vi','plugins/analytics/analytics','widget_analytics_page','Trang được xem nhiều nhất','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1773,0,'vi','plugins/analytics/analytics','widget_analytics_referrer','Trang giới thiệu nhiều','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1774,0,'en','plugins/audit-log/history','name','Activities Logs','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1775,0,'en','plugins/audit-log/history','created','created','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1776,0,'en','plugins/audit-log/history','updated','updated','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1777,0,'en','plugins/audit-log/history','deleted','deleted','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1778,0,'en','plugins/audit-log/history','logged in','logged in','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1779,0,'en','plugins/audit-log/history','logged out','logged out','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1780,0,'en','plugins/audit-log/history','changed password','changed password','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1781,0,'en','plugins/audit-log/history','updated profile','updated profile','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1782,0,'en','plugins/audit-log/history','attached','attached','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1783,0,'en','plugins/audit-log/history','shared','shared','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1784,0,'en','plugins/audit-log/history','to the system','to the system','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1785,0,'en','plugins/audit-log/history','of the system','of the system','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1786,0,'en','plugins/audit-log/history','menu','menu','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1787,0,'en','plugins/audit-log/history','post','post','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1788,0,'en','plugins/audit-log/history','page','page','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1789,0,'en','plugins/audit-log/history','category','category','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1790,0,'en','plugins/audit-log/history','tag','tag','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1791,0,'en','plugins/audit-log/history','user','user','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1792,0,'en','plugins/audit-log/history','contact','contact','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1793,0,'en','plugins/audit-log/history','backup','backup','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1794,0,'en','plugins/audit-log/history','custom-field','custom field','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1795,0,'en','plugins/audit-log/history','widget_audit_logs','Activities Logs','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1796,0,'en','plugins/audit-log/history','action','Action','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1797,0,'en','plugins/audit-log/history','user_agent','User Agent','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1798,0,'en','plugins/audit-log/history','system','System','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1799,0,'en','plugins/audit-log/history','delete_all','Delete all records','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1800,0,'vi','plugins/audit-log/history','name','Lịch sử hoạt động','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1801,0,'vi','plugins/audit-log/history','created',' đã tạo','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1802,0,'vi','plugins/audit-log/history','updated',' đã cập nhật','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1803,0,'vi','plugins/audit-log/history','deleted',' đã xóa','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1804,0,'vi','plugins/audit-log/history','attached','đính kèm','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1805,0,'vi','plugins/audit-log/history','backup','sao lưu','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1806,0,'vi','plugins/audit-log/history','category','danh mục','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1807,0,'vi','plugins/audit-log/history','changed password','thay đổi mật khẩu','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1808,0,'vi','plugins/audit-log/history','contact','liên hệ','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1809,0,'vi','plugins/audit-log/history','custom-field','khung mở rộng','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1810,0,'vi','plugins/audit-log/history','logged in','đăng nhập','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1811,0,'vi','plugins/audit-log/history','logged out','đăng xuất','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1812,0,'vi','plugins/audit-log/history','menu','trình đơn','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1813,0,'vi','plugins/audit-log/history','of the system','khỏi hệ thống','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1814,0,'vi','plugins/audit-log/history','page','trang','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1815,0,'vi','plugins/audit-log/history','post','bài viết','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1816,0,'vi','plugins/audit-log/history','shared','đã chia sẻ','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1817,0,'vi','plugins/audit-log/history','tag','thẻ','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1818,0,'vi','plugins/audit-log/history','to the system','vào hệ thống','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1819,0,'vi','plugins/audit-log/history','updated profile','cập nhật tài khoản','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1820,0,'vi','plugins/audit-log/history','user','thành viên','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1821,0,'vi','plugins/audit-log/history','widget_audit_logs','Lịch sử hoạt động','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1822,0,'en','plugins/backup/backup','name','Backup','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1823,0,'en','plugins/backup/backup','backup_description','Backup database and uploads folder.','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1824,0,'en','plugins/backup/backup','create_backup_success','Created backup successfully!','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1825,0,'en','plugins/backup/backup','delete_backup_success','Delete backup successfully!','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1826,0,'en','plugins/backup/backup','restore_backup_success','Restore backup successfully!','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1827,0,'en','plugins/backup/backup','generate_btn','Generate backup','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1828,0,'en','plugins/backup/backup','create','Create a backup','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1829,0,'en','plugins/backup/backup','restore','Restore a backup','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1830,0,'en','plugins/backup/backup','create_btn','Create','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1831,0,'en','plugins/backup/backup','restore_btn','Restore','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1832,0,'en','plugins/backup/backup','restore_confirm_msg','Do you really want to restore this revision?','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1833,0,'en','plugins/backup/backup','download_uploads_folder','Download backup of uploads folder','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1834,0,'en','plugins/backup/backup','download_database','Download backup of database','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1835,0,'en','plugins/backup/backup','restore_tooltip','Restore this backup','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1836,0,'en','plugins/backup/backup','demo_alert','Hi guest, if you see demo site is destroyed, please help me <a href=\":link\">go here</a> and restore demo site to the latest revision! Thank you so much!','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1837,0,'en','plugins/backup/backup','menu_name','Backups','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1838,0,'en','plugins/backup/backup','size','Size','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1839,0,'en','plugins/backup/backup','no_backups','There is no backup now!','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1840,0,'en','plugins/backup/backup','proc_open_disabled_error','Function <strong>proc_open()</strong> has been disabled so the system cannot backup the database. Please contact your hosting provider to enable it.','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1841,0,'en','plugins/backup/backup','database_backup_not_existed','Backup database is not existed!','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1842,0,'en','plugins/backup/backup','uploads_folder_backup_not_existed','Backup uploads folder is not existed!','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1843,0,'en','plugins/backup/backup','important_message1','This is a simple backup feature, it is a solution for you if your site has < 1GB data and can be used for quickly backup your site.','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1844,0,'en','plugins/backup/backup','important_message2','If you have more than 1GB images/files in local storage, you should use backup feature of your hosting or VPS.','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1845,0,'en','plugins/backup/backup','important_message3','To backup your database, function <strong>proc_open()</strong> or <strong>system()</strong> must be enabled. Contact your hosting provider to enable it if it is disabled.','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1846,0,'vi','plugins/backup/backup','backup_description','Sao lưu cơ sở dữ liệu và thư mục /uploads','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1847,0,'vi','plugins/backup/backup','create','Tạo bản sao lưu','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1848,0,'vi','plugins/backup/backup','create_backup_success','Tạo bản sao lưu thành công!','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1849,0,'vi','plugins/backup/backup','create_btn','Tạo','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1850,0,'vi','plugins/backup/backup','delete_backup_success','Xóa bản sao lưu thành công!','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1851,0,'vi','plugins/backup/backup','generate_btn','Tạo sao lưu','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1852,0,'vi','plugins/backup/backup','name','Sao lưu','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1853,0,'vi','plugins/backup/backup','restore','Khôi phục bản sao lưu','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1854,0,'vi','plugins/backup/backup','restore_backup_success','Khôi phục bản sao lưu thành công','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1855,0,'vi','plugins/backup/backup','restore_btn','Khôi phục','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1856,0,'vi','plugins/backup/backup','restore_confirm_msg','Bạn có chắc chắn muốn khôi phục hệ thống về thời điểm tạo bản sao lưu này?','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1857,0,'vi','plugins/backup/backup','restore_tooltip','Khôi phục bản sao lưu này','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1858,0,'vi','plugins/backup/backup','download_database','Tải về bản sao lưu CSDL','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1859,0,'vi','plugins/backup/backup','download_uploads_folder','Tải về bản sao lưu thư mục uploads','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1860,0,'vi','plugins/backup/backup','menu_name','Sao lưu','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1861,0,'vi','plugins/backup/backup','demo_alert','Chào khách, nếu bạn thấy trang demo bị phá hoại, hãy tới <a href=\":link\">trang sao lưu</a> và khôi phục bản sao lưu cuối cùng. Cảm ơn bạn nhiều!','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1862,0,'en','plugins/blog/base','menu_name','Blog','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1863,0,'en','plugins/blog/base','blog_page','Blog Page','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1864,0,'en','plugins/blog/base','select','-- Select --','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1865,0,'en','plugins/blog/base','blog_page_id','Blog page','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1866,0,'en','plugins/blog/base','number_posts_per_page','Number posts per page','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1867,0,'en','plugins/blog/base','write_some_tags','Write some tags','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1868,0,'en','plugins/blog/base','short_code_name','Blog posts','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1869,0,'en','plugins/blog/base','short_code_description','Add blog posts','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1870,0,'en','plugins/blog/base','number_posts_per_page_in_category','Number of posts per page in a category','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1871,0,'en','plugins/blog/base','number_posts_per_page_in_tag','Number of posts per page in a tag','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1872,0,'en','plugins/blog/categories','create','Create new category','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1873,0,'en','plugins/blog/categories','edit','Edit category','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1874,0,'en','plugins/blog/categories','menu','Categories','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1875,0,'en','plugins/blog/categories','edit_this_category','Edit this category','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1876,0,'en','plugins/blog/categories','menu_name','Categories','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1877,0,'en','plugins/blog/categories','none','None','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1878,0,'en','plugins/blog/categories','total_posts','Total posts: :total','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1879,0,'en','plugins/blog/member','dob','Born :date','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1880,0,'en','plugins/blog/member','draft_posts','Draft Posts','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1881,0,'en','plugins/blog/member','pending_posts','Pending Posts','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1882,0,'en','plugins/blog/member','published_posts','Published Posts','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1883,0,'en','plugins/blog/member','posts','Posts','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1884,0,'en','plugins/blog/member','write_post','Write a post','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1885,0,'en','plugins/blog/posts','create','Create new post','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1886,0,'en','plugins/blog/posts','edit','Edit post','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1887,0,'en','plugins/blog/posts','form.name','Name','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1888,0,'en','plugins/blog/posts','form.name_placeholder','Post\'s name (Maximum :c characters)','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1889,0,'en','plugins/blog/posts','form.description','Description','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1890,0,'en','plugins/blog/posts','form.description_placeholder','Short description for post (Maximum :c characters)','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1891,0,'en','plugins/blog/posts','form.categories','Categories','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1892,0,'en','plugins/blog/posts','form.tags','Tags','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1893,0,'en','plugins/blog/posts','form.tags_placeholder','Tags','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1894,0,'en','plugins/blog/posts','form.content','Content','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1895,0,'en','plugins/blog/posts','form.is_featured','Is featured?','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1896,0,'en','plugins/blog/posts','form.note','Note content','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1897,0,'en','plugins/blog/posts','form.format_type','Format','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1898,0,'en','plugins/blog/posts','cannot_delete','Post could not be deleted','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1899,0,'en','plugins/blog/posts','post_deleted','Post deleted','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1900,0,'en','plugins/blog/posts','posts','Posts','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1901,0,'en','plugins/blog/posts','post','Post','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1902,0,'en','plugins/blog/posts','edit_this_post','Edit this post','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1903,0,'en','plugins/blog/posts','no_new_post_now','There is no new post now!','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1904,0,'en','plugins/blog/posts','menu_name','Posts','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1905,0,'en','plugins/blog/posts','widget_posts_recent','Recent Posts','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1906,0,'en','plugins/blog/posts','categories','Categories','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1907,0,'en','plugins/blog/posts','category','Category','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1908,0,'en','plugins/blog/posts','author','Author','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1909,0,'en','plugins/blog/settings','select','-- Select --','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1910,0,'en','plugins/blog/settings','blog_page_id','Blog page','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1911,0,'en','plugins/blog/tags','form.name','Name','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1912,0,'en','plugins/blog/tags','form.name_placeholder','Tag\'s name (Maximum 120 characters)','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1913,0,'en','plugins/blog/tags','form.description','Description','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1914,0,'en','plugins/blog/tags','form.description_placeholder','Short description for tag (Maximum 400 characters)','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1915,0,'en','plugins/blog/tags','form.categories','Categories','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1916,0,'en','plugins/blog/tags','notices.no_select','Please select at least one tag to take this action!','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1917,0,'en','plugins/blog/tags','create','Create new tag','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1918,0,'en','plugins/blog/tags','edit','Edit tag','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1919,0,'en','plugins/blog/tags','cannot_delete','Tag could not be deleted','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1920,0,'en','plugins/blog/tags','deleted','Tag deleted','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1921,0,'en','plugins/blog/tags','menu','Tags','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1922,0,'en','plugins/blog/tags','edit_this_tag','Edit this tag','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1923,0,'en','plugins/blog/tags','menu_name','Tags','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1924,0,'vi','plugins/blog/base','menu_name','Blog','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1925,0,'vi','plugins/blog/categories','create','Thêm danh mục mới','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1926,0,'vi','plugins/blog/categories','edit','Sửa danh mục','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1927,0,'vi','plugins/blog/categories','menu_name','Danh mục','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1928,0,'vi','plugins/blog/categories','edit_this_category','Sửa danh mục này','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1929,0,'vi','plugins/blog/categories','menu','Danh mục','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1930,0,'vi','plugins/blog/posts','create','Thêm bài viết','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1931,0,'vi','plugins/blog/posts','edit','Sửa bài viết','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1932,0,'vi','plugins/blog/posts','form.name','Tên','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1933,0,'vi','plugins/blog/posts','form.name_placeholder','Tên bài viết (Tối đa 120 kí tự)','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1934,0,'vi','plugins/blog/posts','form.description','Mô tả','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1935,0,'vi','plugins/blog/posts','form.description_placeholder','Mô tả ngắn cho bài viết (Tối đa 400 kí tự)','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1936,0,'vi','plugins/blog/posts','form.categories','Chuyên mục','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1937,0,'vi','plugins/blog/posts','form.tags','Từ khóa','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1938,0,'vi','plugins/blog/posts','form.tags_placeholder','Thêm từ khóa','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1939,0,'vi','plugins/blog/posts','form.content','Nội dung','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1940,0,'vi','plugins/blog/posts','form.note','Nội dung ghi chú','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1941,0,'vi','plugins/blog/posts','form.format_type','Định dạng','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1942,0,'vi','plugins/blog/posts','post_deleted','Xóa bài viết thành công','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1943,0,'vi','plugins/blog/posts','cannot_delete','Không thể xóa bài viết','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1944,0,'vi','plugins/blog/posts','menu_name','Bài viết','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1945,0,'vi','plugins/blog/posts','edit_this_post','Sửa bài viết này','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1946,0,'vi','plugins/blog/posts','no_new_post_now','Hiện tại không có bài viết mới!','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1947,0,'vi','plugins/blog/posts','posts','Bài viết','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1948,0,'vi','plugins/blog/posts','widget_posts_recent','Bài viết gần đây','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1949,0,'vi','plugins/blog/posts','author','Tác giả','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1950,0,'vi','plugins/blog/tags','create','Thêm thẻ mới','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1951,0,'vi','plugins/blog/tags','edit','Sửa thẻ','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1952,0,'vi','plugins/blog/tags','form.name','Tên','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1953,0,'vi','plugins/blog/tags','form.name_placeholder','Tên thẻ (Tối đa 120 kí tự)','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1954,0,'vi','plugins/blog/tags','form.description','Mô tả','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1955,0,'vi','plugins/blog/tags','form.description_placeholder','Mô tả ngắn cho tag (Tối đa 400 kí tự)','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1956,0,'vi','plugins/blog/tags','form.categories','Chuyên mục','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1957,0,'vi','plugins/blog/tags','notices.no_select','Chọn ít nhất 1 bài viết để thực hiện hành động này!','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1958,0,'vi','plugins/blog/tags','cannot_delete','Không thể xóa thẻ','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1959,0,'vi','plugins/blog/tags','deleted','Xóa thẻ thành công','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1960,0,'vi','plugins/blog/tags','menu_name','Thẻ','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1961,0,'vi','plugins/blog/tags','edit_this_tag','Sửa thẻ này','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1962,0,'vi','plugins/blog/tags','menu','Thẻ','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1963,0,'en','plugins/captcha/captcha','settings.title','Captcha','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1964,0,'en','plugins/captcha/captcha','settings.description','Settings for Google Captcha','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1965,0,'en','plugins/captcha/captcha','settings.captcha_site_key','Captcha Site Key','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1966,0,'en','plugins/captcha/captcha','settings.captcha_secret','Captcha Secret','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1967,0,'en','plugins/captcha/captcha','settings.enable_captcha','Enable Captcha?','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1968,0,'en','plugins/captcha/captcha','settings.helper','Go here to get credentials https://www.google.com/recaptcha/admin#list.','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1969,0,'en','plugins/captcha/captcha','settings.hide_badge','Hide recaptcha badge (for v3)','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1970,0,'en','plugins/captcha/captcha','settings.type','Type','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1971,0,'en','plugins/captcha/captcha','settings.v2_description','V2 (Verify requests with a challenge)','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1972,0,'en','plugins/captcha/captcha','settings.v3_description','V3 (Verify requests with a score)','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1973,0,'en','plugins/captcha/captcha','failed_validate','Failed to validate the captcha.','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1974,0,'en','plugins/contact/contact','menu','Contact','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1975,0,'en','plugins/contact/contact','edit','View contact','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1976,0,'en','plugins/contact/contact','tables.phone','Phone','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1977,0,'en','plugins/contact/contact','tables.email','Email','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1978,0,'en','plugins/contact/contact','tables.full_name','Full Name','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1979,0,'en','plugins/contact/contact','tables.time','Time','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1980,0,'en','plugins/contact/contact','tables.address','Address','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1981,0,'en','plugins/contact/contact','tables.subject','Subject','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1982,0,'en','plugins/contact/contact','tables.content','Content','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1983,0,'en','plugins/contact/contact','contact_information','Contact information','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1984,0,'en','plugins/contact/contact','replies','Replies','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1985,0,'en','plugins/contact/contact','email.header','Email','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1986,0,'en','plugins/contact/contact','email.title','New contact from your site','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1987,0,'en','plugins/contact/contact','form.name.required','Name is required','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1988,0,'en','plugins/contact/contact','form.email.required','Email is required','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1989,0,'en','plugins/contact/contact','form.email.email','The email address is not valid','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1990,0,'en','plugins/contact/contact','form.content.required','Content is required','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1991,0,'en','plugins/contact/contact','contact_sent_from','This contact information sent from','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1992,0,'en','plugins/contact/contact','sender','Sender','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1993,0,'en','plugins/contact/contact','sender_email','Email','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1994,0,'en','plugins/contact/contact','sender_address','Address','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1995,0,'en','plugins/contact/contact','sender_phone','Phone','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1996,0,'en','plugins/contact/contact','message_content','Message content','2021-07-26 04:16:48','2021-07-26 04:17:14'),(1997,0,'en','plugins/contact/contact','sent_from','Email sent from','2021-07-26 04:16:49','2021-07-26 04:17:14'),(1998,0,'en','plugins/contact/contact','form_name','Name','2021-07-26 04:16:49','2021-07-26 04:17:14'),(1999,0,'en','plugins/contact/contact','form_email','Email','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2000,0,'en','plugins/contact/contact','form_address','Address','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2001,0,'en','plugins/contact/contact','form_subject','Subject','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2002,0,'en','plugins/contact/contact','form_phone','Phone','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2003,0,'en','plugins/contact/contact','form_message','Message','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2004,0,'en','plugins/contact/contact','required_field','The field with (<span style=\"color: red\">*</span>) is required.','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2005,0,'en','plugins/contact/contact','send_btn','Send message','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2006,0,'en','plugins/contact/contact','new_msg_notice','You have <span class=\"bold\">:count</span> New Messages','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2007,0,'en','plugins/contact/contact','view_all','View all','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2008,0,'en','plugins/contact/contact','statuses.read','Read','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2009,0,'en','plugins/contact/contact','statuses.unread','Unread','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2010,0,'en','plugins/contact/contact','phone','Phone','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2011,0,'en','plugins/contact/contact','address','Address','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2012,0,'en','plugins/contact/contact','message','Message','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2013,0,'en','plugins/contact/contact','settings.email.title','Contact','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2014,0,'en','plugins/contact/contact','settings.email.description','Contact email configuration','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2015,0,'en','plugins/contact/contact','settings.email.templates.notice_title','Send notice to administrator','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2016,0,'en','plugins/contact/contact','settings.email.templates.notice_description','Email template to send notice to administrator when system get new contact','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2017,0,'en','plugins/contact/contact','no_reply','No reply yet!','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2018,0,'en','plugins/contact/contact','reply','Reply','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2019,0,'en','plugins/contact/contact','send','Send','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2020,0,'en','plugins/contact/contact','shortcode_name','Contact form','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2021,0,'en','plugins/contact/contact','shortcode_description','Add a contact form','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2022,0,'en','plugins/contact/contact','shortcode_content_description','Add shortcode [contact-form][/contact-form] to editor?','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2023,0,'en','plugins/contact/contact','message_sent_success','Message sent successfully!','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2024,0,'vi','plugins/contact/contact','menu','Liên hệ','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2025,0,'vi','plugins/contact/contact','edit','Xem liên hệ','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2026,0,'vi','plugins/contact/contact','tables.phone','Điện thoại','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2027,0,'vi','plugins/contact/contact','tables.email','Email','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2028,0,'vi','plugins/contact/contact','tables.full_name','Họ tên','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2029,0,'vi','plugins/contact/contact','tables.time','Thời gian','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2030,0,'vi','plugins/contact/contact','tables.address','Địa địa chỉ','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2031,0,'vi','plugins/contact/contact','tables.subject','Tiêu đề','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2032,0,'vi','plugins/contact/contact','tables.content','Nội dung','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2033,0,'vi','plugins/contact/contact','contact_information','Thông tin liên hệ','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2034,0,'vi','plugins/contact/contact','email.title','Thông tin liên hệ mới','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2035,0,'vi','plugins/contact/contact','email.header','Email','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2036,0,'vi','plugins/contact/contact','contact_sent_from','Liên hệ này được gửi từ','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2037,0,'vi','plugins/contact/contact','form_address','Địa chỉ','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2038,0,'vi','plugins/contact/contact','form_email','Thư điện tử','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2039,0,'vi','plugins/contact/contact','form_message','Thông điệp','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2040,0,'vi','plugins/contact/contact','form_name','Họ tên','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2041,0,'vi','plugins/contact/contact','form_phone','Số điện thoại','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2042,0,'vi','plugins/contact/contact','message_content','Nội dung thông điệp','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2043,0,'vi','plugins/contact/contact','required_field','Những trường có dấu (<span style=\"color: red\">*</span>) là bắt buộc.','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2044,0,'vi','plugins/contact/contact','send_btn','Gửi tin nhắn','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2045,0,'vi','plugins/contact/contact','sender','Người gửi','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2046,0,'vi','plugins/contact/contact','sender_address','Địa chỉ','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2047,0,'vi','plugins/contact/contact','sender_email','Thư điện tử','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2048,0,'vi','plugins/contact/contact','sender_phone','Số điện thoại','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2049,0,'vi','plugins/contact/contact','sent_from','Thư được gửi từ','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2050,0,'vi','plugins/contact/contact','address','Địa chỉ','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2051,0,'vi','plugins/contact/contact','message','Liên hệ','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2052,0,'vi','plugins/contact/contact','new_msg_notice','Bạn có <span class=\"bold\">:count</span> tin nhắn mới','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2053,0,'vi','plugins/contact/contact','phone','Điện thoại','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2054,0,'vi','plugins/contact/contact','statuses.read','Đã đọc','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2055,0,'vi','plugins/contact/contact','statuses.unread','Chưa đọc','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2056,0,'vi','plugins/contact/contact','view_all','Xem tất cả','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2057,0,'vi','plugins/contact/contact','settings.email.title','Liên hệ','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2058,0,'vi','plugins/contact/contact','settings.email.description','Cấu hình thông tin cho mục liên hệ','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2059,0,'vi','plugins/contact/contact','settings.email.templates.notice_title','Thông báo tới admin','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2060,0,'vi','plugins/contact/contact','settings.email.templates.notice_description','Mẫu nội dung email gửi tới admin khi có liên hệ mới','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2061,0,'en','plugins/cookie-consent/cookie-consent','theme_options.name','Cookie Consent','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2062,0,'en','plugins/cookie-consent/cookie-consent','theme_options.description','Cookie consent settings','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2063,0,'en','plugins/cookie-consent/cookie-consent','theme_options.enable','Enable cookie consent?','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2064,0,'en','plugins/cookie-consent/cookie-consent','theme_options.message','Message','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2065,0,'en','plugins/cookie-consent/cookie-consent','theme_options.button_text','Button text','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2066,0,'en','plugins/cookie-consent/cookie-consent','theme_options.max_width','Max width (px)','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2067,0,'en','plugins/cookie-consent/cookie-consent','theme_options.background_color','Background color','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2068,0,'en','plugins/cookie-consent/cookie-consent','theme_options.text_color','Text color','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2069,0,'en','plugins/cookie-consent/cookie-consent','theme_options.learn_more_url','Learn more URL','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2070,0,'en','plugins/cookie-consent/cookie-consent','theme_options.learn_more_text','Learn more text','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2071,0,'en','plugins/cookie-consent/cookie-consent','message','Your experience on this site will be improved by allowing cookies.','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2072,0,'en','plugins/cookie-consent/cookie-consent','button_text','Allow cookies','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2073,0,'en','plugins/ecommerce/brands','name','Brands','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2074,0,'en','plugins/ecommerce/brands','create','New brand','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2075,0,'en','plugins/ecommerce/brands','edit','Edit brand','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2076,0,'en','plugins/ecommerce/brands','form.name','Name','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2077,0,'en','plugins/ecommerce/brands','form.name_placeholder','Brand\'s name (Maximum 255 characters)','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2078,0,'en','plugins/ecommerce/brands','form.description','Description','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2079,0,'en','plugins/ecommerce/brands','form.description_placeholder','Short description for brand (Maximum 400 characters)','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2080,0,'en','plugins/ecommerce/brands','form.website','Website','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2081,0,'en','plugins/ecommerce/brands','form.logo','Logo','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2082,0,'en','plugins/ecommerce/brands','form.is_featured','Is featured','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2083,0,'en','plugins/ecommerce/brands','logo','Logo','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2084,0,'en','plugins/ecommerce/brands','website','Website','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2085,0,'en','plugins/ecommerce/brands','notices.no_select','Please select at least one record to take this action!','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2086,0,'en','plugins/ecommerce/brands','notices.update_success_message','Update successfully','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2087,0,'en','plugins/ecommerce/brands','cannot_delete','Brand could not be deleted','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2088,0,'en','plugins/ecommerce/brands','brand_deleted','Brand deleted','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2089,0,'en','plugins/ecommerce/brands','menu','Brands','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2090,0,'en','plugins/ecommerce/brands','no_brand','No brand','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2091,0,'en','plugins/ecommerce/brands','intro.title','Manage brands','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2092,0,'en','plugins/ecommerce/brands','intro.description','Manage product brands such as Nike, Adidas, Bitis ...','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2093,0,'en','plugins/ecommerce/brands','intro.button_text','Create brand','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2094,0,'en','plugins/ecommerce/currency','currencies','Currencies','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2095,0,'en','plugins/ecommerce/currency','setting_description','List of currencies using on website','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2096,0,'en','plugins/ecommerce/currency','name','Name','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2097,0,'en','plugins/ecommerce/currency','symbol','Symbol','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2098,0,'en','plugins/ecommerce/currency','number_of_decimals','Number of decimals','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2099,0,'en','plugins/ecommerce/currency','exchange_rate','Exchange rate','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2100,0,'en','plugins/ecommerce/currency','is_prefix_symbol','Position of symbol','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2101,0,'en','plugins/ecommerce/currency','is_default','Is default?','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2102,0,'en','plugins/ecommerce/currency','remove','Remove','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2103,0,'en','plugins/ecommerce/currency','new_currency','Add a new currency','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2104,0,'en','plugins/ecommerce/currency','save_settings','Save settings','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2105,0,'en','plugins/ecommerce/currency','before_number','Before number','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2106,0,'en','plugins/ecommerce/currency','after_number','After number','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2107,0,'en','plugins/ecommerce/currency','require_at_least_one_currency','The system requires at least one currency!','2021-07-26 04:16:49','2021-07-26 04:17:14'),(2108,0,'en','plugins/ecommerce/customer','name','Customers','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2109,0,'en','plugins/ecommerce/customer','create','Create a customer','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2110,0,'en','plugins/ecommerce/customer','edit','Edit customer \":name\"','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2111,0,'en','plugins/ecommerce/customer','email','Email','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2112,0,'en','plugins/ecommerce/customer','email_placeholder','Ex: example@gmail.com','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2113,0,'en','plugins/ecommerce/customer','password','Password','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2114,0,'en','plugins/ecommerce/customer','change_password','Change password?','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2115,0,'en','plugins/ecommerce/customer','password_confirmation','Password confirmation','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2116,0,'en','plugins/ecommerce/customer','intro.title','Manage customers','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2117,0,'en','plugins/ecommerce/customer','intro.description','When a customer buy your product(s), you will know their order histories.','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2118,0,'en','plugins/ecommerce/customer','intro.button_text','Create customer','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2119,0,'en','plugins/ecommerce/discount','name','Discounts','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2120,0,'en','plugins/ecommerce/discount','create','Create discount','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2121,0,'en','plugins/ecommerce/discount','invalid_coupon','This coupon is invalid or expired!','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2122,0,'en','plugins/ecommerce/discount','cannot_use_same_time_with_other_discount_program','Cannot use this coupon in the same time with other discount program!','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2123,0,'en','plugins/ecommerce/discount','not_used','This coupon is not used yet!','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2124,0,'en','plugins/ecommerce/discount','detail','Detail','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2125,0,'en','plugins/ecommerce/discount','used','Used','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2126,0,'en','plugins/ecommerce/discount','start_date','Start date','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2127,0,'en','plugins/ecommerce/discount','end_date','End date','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2128,0,'en','plugins/ecommerce/discount','intro.title','Manage discount/coupon code','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2129,0,'en','plugins/ecommerce/discount','intro.description','Create coupon code or promotion for your products.','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2130,0,'en','plugins/ecommerce/discount','intro.button_text','Create discount','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2131,0,'en','plugins/ecommerce/discount','discount','Discount','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2132,0,'en','plugins/ecommerce/discount','expired','Expired','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2133,0,'en','plugins/ecommerce/discount','coupon_code','Coupon code','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2134,0,'en','plugins/ecommerce/discount','discount_promotion','Discount promotion','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2135,0,'en','plugins/ecommerce/discount','can','can','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2136,0,'en','plugins/ecommerce/discount','cannot','cannot','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2137,0,'en','plugins/ecommerce/discount','use_with_promotion','be used with promotion','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2138,0,'en','plugins/ecommerce/discount','create_discount_validate_title_required_if','Please enter the name of the promotion','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2139,0,'en','plugins/ecommerce/discount','create_discount_validate_code_required_if','Please enter the promotion code','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2140,0,'en','plugins/ecommerce/discount','create_discount_validate_value_required','Amount must be greater than 0','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2141,0,'en','plugins/ecommerce/discount','create_discount_validate_target_required','No object selected for promotion','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2142,0,'en','plugins/ecommerce/discount','enums.type-options.amount','Amount - Fixed','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2143,0,'en','plugins/ecommerce/discount','enums.type-options.percentage','Discount %','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2144,0,'en','plugins/ecommerce/discount','enums.type-options.shipping','Free shipping','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2145,0,'en','plugins/ecommerce/discount','enums.type-options.same-price','Same price','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2146,0,'en','plugins/ecommerce/ecommerce','settings','Settings','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2147,0,'en','plugins/ecommerce/ecommerce','name','Ecommerce','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2148,0,'en','plugins/ecommerce/ecommerce','setting.email.title','E-commerce','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2149,0,'en','plugins/ecommerce/ecommerce','setting.email.description','Ecommerce email config','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2150,0,'en','plugins/ecommerce/ecommerce','setting.email.order_confirm_subject','Subject of order confirmation email','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2151,0,'en','plugins/ecommerce/ecommerce','setting.email.order_confirm_subject_placeholder','The subject of email confirmation send to the customer','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2152,0,'en','plugins/ecommerce/ecommerce','setting.email.order_confirm_content','Content of order confirmation email','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2153,0,'en','plugins/ecommerce/ecommerce','setting.email.order_status_change_subject','Subject of email when changing order\'s status','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2154,0,'en','plugins/ecommerce/ecommerce','setting.email.order_status_change_subject_placeholder','Subject of email when changing order\'s status send to customer','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2155,0,'en','plugins/ecommerce/ecommerce','setting.email.order_status_change_content','Content of email when changing order\'s status','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2156,0,'en','plugins/ecommerce/ecommerce','setting.email.from_email','Email from','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2157,0,'en','plugins/ecommerce/ecommerce','setting.email.from_email_placeholder','Email from address to display in mail. Ex: example@gmail.com','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2158,0,'en','plugins/ecommerce/ecommerce','setting.title','Basic information','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2159,0,'en','plugins/ecommerce/ecommerce','setting.state','State','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2160,0,'en','plugins/ecommerce/ecommerce','setting.city','City','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2161,0,'en','plugins/ecommerce/ecommerce','setting.country','Country','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2162,0,'en','plugins/ecommerce/ecommerce','setting.select country','Select a country...','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2163,0,'en','plugins/ecommerce/ecommerce','setting.weight_unit_gram','Gram (g)','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2164,0,'en','plugins/ecommerce/ecommerce','setting.weight_unit_kilogram','Kilogram (kg)','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2165,0,'en','plugins/ecommerce/ecommerce','setting.weight_unit_lb','Pound (lb)','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2166,0,'en','plugins/ecommerce/ecommerce','setting.weight_unit_oz','Ounce (oz)','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2167,0,'en','plugins/ecommerce/ecommerce','setting.height_unit_cm','Centimeter (cm)','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2168,0,'en','plugins/ecommerce/ecommerce','setting.height_unit_m','Meter (m)','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2169,0,'en','plugins/ecommerce/ecommerce','setting.height_unit_inch','Inch','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2170,0,'en','plugins/ecommerce/ecommerce','setting.store_locator_title','Store locators','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2171,0,'en','plugins/ecommerce/ecommerce','setting.store_locator_description','All the lists of your chains, main stores, branches, etc. The locations can be used to track sales and to help us configure tax rates to charge when selling products.','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2172,0,'en','plugins/ecommerce/ecommerce','setting.phone','Phone','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2173,0,'en','plugins/ecommerce/ecommerce','setting.address','Address','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2174,0,'en','plugins/ecommerce/ecommerce','setting.is_primary','Primary?','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2175,0,'en','plugins/ecommerce/ecommerce','setting.add_new','Add new','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2176,0,'en','plugins/ecommerce/ecommerce','setting.or','Or','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2177,0,'en','plugins/ecommerce/ecommerce','setting.change_primary_store','change default store locator','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2178,0,'en','plugins/ecommerce/ecommerce','setting.other_settings','Other settings','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2179,0,'en','plugins/ecommerce/ecommerce','setting.other_settings_description','Settings for cart, review...','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2180,0,'en','plugins/ecommerce/ecommerce','setting.enable_cart','Enable shopping cart?','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2181,0,'en','plugins/ecommerce/ecommerce','setting.enable_tax','Enable tax?','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2182,0,'en','plugins/ecommerce/ecommerce','setting.display_product_price_including_taxes','Display product price including taxes?','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2183,0,'en','plugins/ecommerce/ecommerce','setting.enable_review','Enable review?','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2184,0,'en','plugins/ecommerce/ecommerce','setting.enable_quick_buy_button','Enable quick buy button?','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2185,0,'en','plugins/ecommerce/ecommerce','setting.quick_buy_target','Quick buy target page?','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2186,0,'en','plugins/ecommerce/ecommerce','setting.checkout_page','Checkout page','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2187,0,'en','plugins/ecommerce/ecommerce','setting.cart_page','Cart page','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2188,0,'en','plugins/ecommerce/ecommerce','setting.add_location','Add location','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2189,0,'en','plugins/ecommerce/ecommerce','setting.edit_location','Edit location','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2190,0,'en','plugins/ecommerce/ecommerce','setting.delete_location','Delete location','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2191,0,'en','plugins/ecommerce/ecommerce','setting.change_primary_location','Change primary location','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2192,0,'en','plugins/ecommerce/ecommerce','setting.delete_location_confirmation','Are you sure you want to delete this location? This action cannot be undo.','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2193,0,'en','plugins/ecommerce/ecommerce','setting.save_location','Save location','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2194,0,'en','plugins/ecommerce/ecommerce','setting.accept','Accept','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2195,0,'en','plugins/ecommerce/ecommerce','setting.select_country','Select country','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2196,0,'en','plugins/ecommerce/ecommerce','setting.zip_code_enabled','Enable Zip Code?','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2197,0,'en','plugins/ecommerce/ecommerce','setting.thousands_separator','Thousands separator','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2198,0,'en','plugins/ecommerce/ecommerce','setting.decimal_separator','Decimal separator','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2199,0,'en','plugins/ecommerce/ecommerce','setting.separator_period','Period (.)','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2200,0,'en','plugins/ecommerce/ecommerce','setting.separator_comma','Comma (,)','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2201,0,'en','plugins/ecommerce/ecommerce','setting.separator_space','Space ( )','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2202,0,'en','plugins/ecommerce/ecommerce','setting.available_countries','Available countries','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2203,0,'en','plugins/ecommerce/ecommerce','setting.all','All','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2204,0,'en','plugins/ecommerce/ecommerce','setting.verify_customer_email','Verify customer\'s email?','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2205,0,'en','plugins/ecommerce/ecommerce','setting.minimum_order_amount','Minimum order amount to place an order (:currency).','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2206,0,'en','plugins/ecommerce/ecommerce','setting.enable_guest_checkout','Enable guest checkout?','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2207,0,'en','plugins/ecommerce/ecommerce','store_address','Store address','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2208,0,'en','plugins/ecommerce/ecommerce','store_phone','Store phone','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2209,0,'en','plugins/ecommerce/ecommerce','order_id','Order ID','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2210,0,'en','plugins/ecommerce/ecommerce','order_token','Order token','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2211,0,'en','plugins/ecommerce/ecommerce','customer_name','Customer name','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2212,0,'en','plugins/ecommerce/ecommerce','customer_email','Customer email','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2213,0,'en','plugins/ecommerce/ecommerce','customer_phone','Customer phone','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2214,0,'en','plugins/ecommerce/ecommerce','customer_address','Customer address','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2215,0,'en','plugins/ecommerce/ecommerce','product_list','List products in order','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2216,0,'en','plugins/ecommerce/ecommerce','payment_detail','Payment detail','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2217,0,'en','plugins/ecommerce/ecommerce','shipping_method','Shipping method','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2218,0,'en','plugins/ecommerce/ecommerce','payment_method','Payment method','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2219,0,'en','plugins/ecommerce/ecommerce','standard_and_format','Standard & Format','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2220,0,'en','plugins/ecommerce/ecommerce','standard_and_format_description','Standards and formats are used to calculate things like product prices, shipping weights, and order times.','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2221,0,'en','plugins/ecommerce/ecommerce','change_order_format','Edit order code format (optional)','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2222,0,'en','plugins/ecommerce/ecommerce','change_order_format_description','The default order code starts at: number. You can change the start or end string to create the order code you want, for example \"DH-: number\" or \": number-A\"','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2223,0,'en','plugins/ecommerce/ecommerce','start_with','Start with','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2224,0,'en','plugins/ecommerce/ecommerce','end_with','End with','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2225,0,'en','plugins/ecommerce/ecommerce','order_will_be_shown','Your order code will be shown','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2226,0,'en','plugins/ecommerce/ecommerce','weight_unit','Unit of weight','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2227,0,'en','plugins/ecommerce/ecommerce','height_unit','Unit length / height','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2228,0,'en','plugins/ecommerce/ecommerce','theme_options.name','Ecommerce','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2229,0,'en','plugins/ecommerce/ecommerce','theme_options.description','Theme options for Ecommerce','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2230,0,'en','plugins/ecommerce/ecommerce','theme_options.number_products_per_page','Number of products per page','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2231,0,'en','plugins/ecommerce/ecommerce','theme_options.number_of_cross_sale_product','Number of cross sale products in product detail page','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2232,0,'en','plugins/ecommerce/ecommerce','theme_options.max_price_filter','Maximum price to filter','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2233,0,'en','plugins/ecommerce/ecommerce','theme_options.logo_in_the_checkout_page','Logo in the checkout page (Default is the main logo)','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2234,0,'en','plugins/ecommerce/ecommerce','theme_options.logo_in_invoices','Logo in invoices (Default is the main logo)','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2235,0,'en','plugins/ecommerce/email','customer_new_order_title','Order confirmation','2021-07-26 04:16:49','2021-07-26 04:17:15'),(2236,0,'en','plugins/ecommerce/email','customer_new_order_description','Send email confirmation to customer when an order placed','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2237,0,'en','plugins/ecommerce/email','order_cancellation_title','Order cancellation','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2238,0,'en','plugins/ecommerce/email','order_cancellation_description','Send to custom when they cancelled order','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2239,0,'en','plugins/ecommerce/email','delivery_confirmation_title','Delivering confirmation','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2240,0,'en','plugins/ecommerce/email','delivery_confirmation_description','Send to customer when order is delivering','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2241,0,'en','plugins/ecommerce/email','admin_new_order_title','Notice about new order','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2242,0,'en','plugins/ecommerce/email','admin_new_order_description','Send to administrators when an order placed','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2243,0,'en','plugins/ecommerce/email','order_confirmation_title','Order confirmation','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2244,0,'en','plugins/ecommerce/email','order_confirmation_description','Send to customer when they order was confirmed by admins','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2245,0,'en','plugins/ecommerce/email','payment_confirmation_title','Payment confirmation','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2246,0,'en','plugins/ecommerce/email','payment_confirmation_description','Send to customer when their payment was confirmed','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2247,0,'en','plugins/ecommerce/email','order_recover_title','Incomplete order','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2248,0,'en','plugins/ecommerce/email','order_recover_description','Send to custom to remind them about incomplete orders','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2249,0,'en','plugins/ecommerce/email','view_order','View order','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2250,0,'en','plugins/ecommerce/email','link_go_to_our_shop','or <a href=\":link\">Go to our shop</a>','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2251,0,'en','plugins/ecommerce/email','order_number','Order number: <strong>:order_id</strong>','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2252,0,'en','plugins/ecommerce/email','order_information','Order information:','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2253,0,'en','plugins/ecommerce/flash-sale','name','Flash sales','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2254,0,'en','plugins/ecommerce/flash-sale','create','New flash sale','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2255,0,'en','plugins/ecommerce/flash-sale','edit','Edit flash sale','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2256,0,'en','plugins/ecommerce/flash-sale','products','Products','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2257,0,'en','plugins/ecommerce/messages','cart.add_product_success','Add product :product to cart successfully!','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2258,0,'en','plugins/ecommerce/messages','cart.update_cart_success','Update cart successfully!','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2259,0,'en','plugins/ecommerce/messages','cart.remove_cart_success','Remove item from cart successfully!','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2260,0,'en','plugins/ecommerce/messages','cart.empty_cart_success','Empty cart successfully!','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2261,0,'en','plugins/ecommerce/messages','cart.product_not_found','This product is out of stock or not exists!','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2262,0,'en','plugins/ecommerce/messages','cart.product_is_out_of_stock','Product :product is out of stock!','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2263,0,'en','plugins/ecommerce/messages','order.customer_cancel_error','The order is delivering or completed','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2264,0,'en','plugins/ecommerce/messages','order.customer_cancel_success','You do cancel the order successful','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2265,0,'en','plugins/ecommerce/order','statuses.pending','Pending','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2266,0,'en','plugins/ecommerce/order','statuses.processing','Processing','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2267,0,'en','plugins/ecommerce/order','statuses.delivering','Delivering','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2268,0,'en','plugins/ecommerce/order','statuses.delivered','Delivered','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2269,0,'en','plugins/ecommerce/order','statuses.completed','Completed','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2270,0,'en','plugins/ecommerce/order','statuses.canceled','Canceled','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2271,0,'en','plugins/ecommerce/order','name','Orders','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2272,0,'en','plugins/ecommerce/order','create','Create an order','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2273,0,'en','plugins/ecommerce/order','customer.messages.cancel_error','The order is delivering or completed','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2274,0,'en','plugins/ecommerce/order','customer.messages.cancel_success','You do cancel the order successful','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2275,0,'en','plugins/ecommerce/order','incomplete_order','Incomplete orders','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2276,0,'en','plugins/ecommerce/order','order_id','Order ID','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2277,0,'en','plugins/ecommerce/order','product_id','Product ID','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2278,0,'en','plugins/ecommerce/order','customer_label','Customer','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2279,0,'en','plugins/ecommerce/order','amount','Amount','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2280,0,'en','plugins/ecommerce/order','tax_amount','Tax Amount','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2281,0,'en','plugins/ecommerce/order','shipping_amount','Shipping amount','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2282,0,'en','plugins/ecommerce/order','payment_method','Payment method','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2283,0,'en','plugins/ecommerce/order','payment_status_label','Payment status','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2284,0,'en','plugins/ecommerce/order','manage_orders','Manage orders','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2285,0,'en','plugins/ecommerce/order','order_intro_description','Once your store has orders, this is where you will process and track those orders.','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2286,0,'en','plugins/ecommerce/order','create_new_order','Create a new order','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2287,0,'en','plugins/ecommerce/order','manage_incomplete_orders','Manage incomplete orders','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2288,0,'en','plugins/ecommerce/order','incomplete_orders_intro_description','Incomplete order is an order created when a customer adds a product to the cart, proceeds to fill out the purchase information but does not complete the checkout process.','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2289,0,'en','plugins/ecommerce/order','invoice_for_order','Invoice for order','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2290,0,'en','plugins/ecommerce/order','created','Created','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2291,0,'en','plugins/ecommerce/order','invoice','Invoice','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2292,0,'en','plugins/ecommerce/order','return','Return','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2293,0,'en','plugins/ecommerce/order','total_refund_amount','Total refund amount','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2294,0,'en','plugins/ecommerce/order','total_amount_can_be_refunded','Total amount can be refunded','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2295,0,'en','plugins/ecommerce/order','refund_reason','Refund reason (optional)','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2296,0,'en','plugins/ecommerce/order','products','product(s)','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2297,0,'en','plugins/ecommerce/order','see_on_maps','See on maps','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2298,0,'en','plugins/ecommerce/order','order','Order','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2299,0,'en','plugins/ecommerce/order','order_information','Order information','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2300,0,'en','plugins/ecommerce/order','create_new_product','Create a new product','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2301,0,'en','plugins/ecommerce/order','out_of_stock','Out of stock','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2302,0,'en','plugins/ecommerce/order','products_available','product(s) available','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2303,0,'en','plugins/ecommerce/order','no_products_found','No products found!','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2304,0,'en','plugins/ecommerce/order','default','Default','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2305,0,'en','plugins/ecommerce/order','system','System','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2306,0,'en','plugins/ecommerce/order','new_order_from','New order :order_id from :customer','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2307,0,'en','plugins/ecommerce/order','confirmation_email_was_sent_to_customer','The email confirmation was sent to customer','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2308,0,'en','plugins/ecommerce/order','address_name_required','The name field is required.','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2309,0,'en','plugins/ecommerce/order','address_phone_required','The phone field is required.','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2310,0,'en','plugins/ecommerce/order','address_email_required','The email field is required.','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2311,0,'en','plugins/ecommerce/order','address_email_unique','The customer with that email is existed, please choose other email or login with this email!','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2312,0,'en','plugins/ecommerce/order','address_state_required','The state field is required.','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2313,0,'en','plugins/ecommerce/order','address_city_required','The city field is required.','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2314,0,'en','plugins/ecommerce/order','address_address_required','The address field is required.','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2315,0,'en','plugins/ecommerce/order','create_order_from_payment_page','Order was created from checkout page','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2316,0,'en','plugins/ecommerce/order','order_was_verified_by','Order was verified by %user_name%','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2317,0,'en','plugins/ecommerce/order','new_order','New order :order_id','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2318,0,'en','plugins/ecommerce/order','payment_was_confirmed_by','Payment was confirmed (amount :money) by %user_name%','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2319,0,'en','plugins/ecommerce/order','edit_order','Edit order :code','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2320,0,'en','plugins/ecommerce/order','confirm_order_success','Confirm order successfully!','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2321,0,'en','plugins/ecommerce/order','error_when_sending_email','There is an error when sending email','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2322,0,'en','plugins/ecommerce/order','sent_confirmation_email_success','Sent confirmation email successfully!','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2323,0,'en','plugins/ecommerce/order','order_was_sent_to_shipping_team','Order was sent to shipping team','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2324,0,'en','plugins/ecommerce/order','by_username','by %user_name%','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2325,0,'en','plugins/ecommerce/order','shipping_was_created_from','Shipping was created from order %order_id%','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2326,0,'en','plugins/ecommerce/order','shipping_was_canceled_success','Shipping was cancelled successfully!','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2327,0,'en','plugins/ecommerce/order','shipping_was_canceled_by','Shipping was cancelled by %user_name%','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2328,0,'en','plugins/ecommerce/order','update_shipping_address_success','Update shipping address successfully!','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2329,0,'en','plugins/ecommerce/order','order_was_canceled_by','Order was cancelled by %user_name%','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2330,0,'en','plugins/ecommerce/order','confirm_payment_success','Confirm payment successfully!','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2331,0,'en','plugins/ecommerce/order','refund_amount_invalid','Refund amount must be lower or equal :price','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2332,0,'en','plugins/ecommerce/order','number_of_products_invalid','Number of products refund is not valid!','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2333,0,'en','plugins/ecommerce/order','cannot_found_payment_for_this_order','Cannot found payment for this order!','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2334,0,'en','plugins/ecommerce/order','refund_success_with_price','Refund success :price','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2335,0,'en','plugins/ecommerce/order','refund_success','Refund successfully!','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2336,0,'en','plugins/ecommerce/order','order_is_not_existed','Order is not existed!','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2337,0,'en','plugins/ecommerce/order','reorder','Reorder','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2338,0,'en','plugins/ecommerce/order','sent_email_incomplete_order_success','Sent email to remind about incomplete order successfully!','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2339,0,'en','plugins/ecommerce/order','applied_coupon_success','Applied coupon \":code\" successfully!','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2340,0,'en','plugins/ecommerce/order','new_order_notice','You have <span class=\"bold\">:count</span> New Order(s)','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2341,0,'en','plugins/ecommerce/order','view_all','View all','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2342,0,'en','plugins/ecommerce/order','cancel_order','Cancel order','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2343,0,'en','plugins/ecommerce/order','order_canceled','Order canceled','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2344,0,'en','plugins/ecommerce/order','order_was_canceled_at','Order was canceled at','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2345,0,'en','plugins/ecommerce/order','completed','Completed','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2346,0,'en','plugins/ecommerce/order','uncompleted','Uncompleted','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2347,0,'en','plugins/ecommerce/order','sku','SKU','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2348,0,'en','plugins/ecommerce/order','shipping','Shipping','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2349,0,'en','plugins/ecommerce/order','warehouse','Warehouse','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2350,0,'en','plugins/ecommerce/order','sub_amount','Sub amount','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2351,0,'en','plugins/ecommerce/order','discount','Discount','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2352,0,'en','plugins/ecommerce/order','coupon_code','Coupon code: \":code\"','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2353,0,'en','plugins/ecommerce/order','shipping_fee','Shipping fee','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2354,0,'en','plugins/ecommerce/order','tax','Tax','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2355,0,'en','plugins/ecommerce/order','total_amount','Total amount','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2356,0,'en','plugins/ecommerce/order','paid_amount','Paid amount','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2357,0,'en','plugins/ecommerce/order','refunded_amount','Refunded amount','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2358,0,'en','plugins/ecommerce/order','amount_received','The amount actually received','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2359,0,'en','plugins/ecommerce/order','download_invoice','Download invoice','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2360,0,'en','plugins/ecommerce/order','note','Note','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2361,0,'en','plugins/ecommerce/order','add_note','Add note...','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2362,0,'en','plugins/ecommerce/order','save','Save','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2363,0,'en','plugins/ecommerce/order','order_was_confirmed','Order was confirmed','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2364,0,'en','plugins/ecommerce/order','confirm_order','Confirm order','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2365,0,'en','plugins/ecommerce/order','confirm','Confirm','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2366,0,'en','plugins/ecommerce/order','order_was_canceled','Order was canceled','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2367,0,'en','plugins/ecommerce/order','pending_payment','Pending payment','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2368,0,'en','plugins/ecommerce/order','payment_was_accepted','Payment :money was accepted','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2369,0,'en','plugins/ecommerce/order','payment_was_refunded','Payment was refunded','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2370,0,'en','plugins/ecommerce/order','confirm_payment','Confirm payment','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2371,0,'en','plugins/ecommerce/order','refund','Refund','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2372,0,'en','plugins/ecommerce/order','all_products_are_not_delivered','All products are not delivered','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2373,0,'en','plugins/ecommerce/order','delivery','Delivery','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2374,0,'en','plugins/ecommerce/order','history','History','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2375,0,'en','plugins/ecommerce/order','order_number','Order number','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2376,0,'en','plugins/ecommerce/order','description','Description','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2377,0,'en','plugins/ecommerce/order','from','from','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2378,0,'en','plugins/ecommerce/order','status','Status','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2379,0,'en','plugins/ecommerce/order','successfully','Successfully','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2380,0,'en','plugins/ecommerce/order','transaction_type','Transaction\'s type','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2381,0,'en','plugins/ecommerce/order','staff','Staff','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2382,0,'en','plugins/ecommerce/order','refund_date','Refund date','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2383,0,'en','plugins/ecommerce/order','n_a','N\\A','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2384,0,'en','plugins/ecommerce/order','payment_date','Payment date','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2385,0,'en','plugins/ecommerce/order','payment_gateway','Payment gateway','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2386,0,'en','plugins/ecommerce/order','transaction_amount','Transaction amount','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2387,0,'en','plugins/ecommerce/order','resend','Resend','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2388,0,'en','plugins/ecommerce/order','orders','Orders','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2389,0,'en','plugins/ecommerce/order','shipping_address','Shipping address','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2390,0,'en','plugins/ecommerce/order','default_store','Default store','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2391,0,'en','plugins/ecommerce/order','update_address','Update address','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2392,0,'en','plugins/ecommerce/order','cancel','Cancel','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2393,0,'en','plugins/ecommerce/order','have_an_account_already','Have an account already','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2394,0,'en','plugins/ecommerce/order','dont_have_an_account_yet','Don\'t have an account yet','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2395,0,'en','plugins/ecommerce/order','mark_payment_as_confirmed','Mark <span>:method</span> as confirmed','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2396,0,'en','plugins/ecommerce/order','resend_order_confirmation','Resend order confirmation','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2397,0,'en','plugins/ecommerce/order','resend_order_confirmation_description','Confirmation email will be sent to <strong>:email</strong>?','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2398,0,'en','plugins/ecommerce/order','send','Send','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2399,0,'en','plugins/ecommerce/order','update','Update','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2400,0,'en','plugins/ecommerce/order','cancel_shipping_confirmation','Cancel shipping confirmation?','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2401,0,'en','plugins/ecommerce/order','cancel_shipping_confirmation_description','Cancel shipping confirmation?','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2402,0,'en','plugins/ecommerce/order','cancel_order_confirmation','Cancel order confirmation?','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2403,0,'en','plugins/ecommerce/order','cancel_order_confirmation_description','Are you sure you want to cancel this order? This action cannot rollback','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2404,0,'en','plugins/ecommerce/order','confirm_payment_confirmation_description','Processed by <strong>:method</strong>. Did you receive payment outside the system? This payment won\'t be saved into system and cannot be refunded','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2405,0,'en','plugins/ecommerce/order','save_note','Save note','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2406,0,'en','plugins/ecommerce/order','order_note','Order note','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2407,0,'en','plugins/ecommerce/order','order_note_placeholder','Note about order, ex: time or shipping instruction.','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2408,0,'en','plugins/ecommerce/order','order_amount','Order amount','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2409,0,'en','plugins/ecommerce/order','additional_information','Additional information','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2410,0,'en','plugins/ecommerce/order','notice_about_incomplete_order','Notice about incomplete order','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2411,0,'en','plugins/ecommerce/order','notice_about_incomplete_order_description','Remind email about uncompleted order will be send to <strong>:email</strong>?','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2412,0,'en','plugins/ecommerce/order','incomplete_order_description_1','An incomplete order is when a potential customer places items in their shopping cart, and goes all the way through to the payment page, but then doesn\'t complete the transaction.','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2413,0,'en','plugins/ecommerce/order','incomplete_order_description_2','If you have contacted customers and they want to continue buying, you can help them complete their order by following the link:','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2414,0,'en','plugins/ecommerce/order','send_an_email_to_recover_this_order','Send an email to customer to recover this order','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2415,0,'en','plugins/ecommerce/order','see_maps','See maps','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2416,0,'en','plugins/ecommerce/order','one_or_more_products_dont_have_enough_quantity','One or more products don\'t have enough quantity!','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2417,0,'en','plugins/ecommerce/order','cannot_send_order_recover_to_mail','The email could not be found so it can\'t send a recovery email to the customer.','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2418,0,'en','plugins/ecommerce/order','payment_info','Payment Info','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2419,0,'en','plugins/ecommerce/order','payment_method_refund_automatic','Your customer will be refunded using :method automatically.','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2420,0,'en','plugins/ecommerce/payment','name','Payments','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2421,0,'en','plugins/ecommerce/payment','payment_method','Payment methods','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2422,0,'en','plugins/ecommerce/payment','view_payment','View payment #','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2423,0,'en','plugins/ecommerce/payment','charge_id','Charge ID','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2424,0,'en','plugins/ecommerce/payment','amount','Amount','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2425,0,'en','plugins/ecommerce/payment','currency','Currency','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2426,0,'en','plugins/ecommerce/payment','user','User','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2427,0,'en','plugins/ecommerce/payment','paypal_name_required','PayPal\'s name is required!','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2428,0,'en','plugins/ecommerce/payment','paypal_name_max','PayPal\'s name is too long!','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2429,0,'en','plugins/ecommerce/payment','stripe_name_required','Stripe\'s name is required!','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2430,0,'en','plugins/ecommerce/payment','stripe_name_max','Stripe\'s name is too long!','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2431,0,'en','plugins/ecommerce/payment','status','Status','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2432,0,'en','plugins/ecommerce/payment','enabled','Enabled','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2433,0,'en','plugins/ecommerce/payment','disabled','Disabled','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2434,0,'en','plugins/ecommerce/payment','client_id','Client ID','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2435,0,'en','plugins/ecommerce/payment','client_secret','Client Secret','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2436,0,'en','plugins/ecommerce/payment','mode','Mode','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2437,0,'en','plugins/ecommerce/payment','sandbox','Sandbox','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2438,0,'en','plugins/ecommerce/payment','live','Live','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2439,0,'en','plugins/ecommerce/payment','enable_payment_log','Enable Payment Log','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2440,0,'en','plugins/ecommerce/payment','yes','Yes','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2441,0,'en','plugins/ecommerce/payment','no','No','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2442,0,'en','plugins/ecommerce/payment','client_key','Client Key','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2443,0,'en','plugins/ecommerce/payment','stripe','Stripe','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2444,0,'en','plugins/ecommerce/payment','paypal','PayPal','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2445,0,'en','plugins/ecommerce/payment','action','Action','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2446,0,'en','plugins/ecommerce/payment','go_back','Go back','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2447,0,'en','plugins/ecommerce/payment','view','View','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2448,0,'en','plugins/ecommerce/payment','cash_on_delivery','Cash on delivery (COD)','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2449,0,'en','plugins/ecommerce/payment','via_bank_transfer','Via bank transfer','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2450,0,'en','plugins/ecommerce/payment','payment_via_cart','Payment via card','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2451,0,'en','plugins/ecommerce/payment','card_number','Card number','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2452,0,'en','plugins/ecommerce/payment','full_name','Full name','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2453,0,'en','plugins/ecommerce/payment','payment_via_paypal','Payment via PayPal','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2454,0,'en','plugins/ecommerce/payment','mm_yy','MM/YY','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2455,0,'en','plugins/ecommerce/payment','cvc','CVC','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2456,0,'en','plugins/ecommerce/payment','details','Details','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2457,0,'en','plugins/ecommerce/payment','payer_name','Payer Name','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2458,0,'en','plugins/ecommerce/payment','email','Email','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2459,0,'en','plugins/ecommerce/payment','phone','Phone','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2460,0,'en','plugins/ecommerce/payment','country','Country','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2461,0,'en','plugins/ecommerce/payment','shipping_address','Shipping Address','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2462,0,'en','plugins/ecommerce/payment','payment_details','Payment Details','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2463,0,'en','plugins/ecommerce/payment','card','Card','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2464,0,'en','plugins/ecommerce/payment','address','Address','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2465,0,'en','plugins/ecommerce/payment','could_not_get_stripe_token','Could not get Stripe token to make a charge.','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2466,0,'en','plugins/ecommerce/payment','new_payment','Payment for order :id','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2467,0,'en','plugins/ecommerce/payment','payment_id','Payment ID','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2468,0,'en','plugins/ecommerce/prices','name','Price','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2469,0,'en','plugins/ecommerce/prices','create','New price','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2470,0,'en','plugins/ecommerce/prices','edit','Edit price','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2471,0,'en','plugins/ecommerce/prices','list','List price','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2472,0,'en','plugins/ecommerce/product-attribute-sets','name','Product attribute sets','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2473,0,'en','plugins/ecommerce/product-attribute-sets','create','New product attribute set','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2474,0,'en','plugins/ecommerce/product-attribute-sets','edit','Edit product attribute set','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2475,0,'en','plugins/ecommerce/product-attribute-sets','visible_in_categories','Visible in categories','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2476,0,'en','plugins/ecommerce/product-attribute-sets','product_with_more_version','Product with more version','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2477,0,'en','plugins/ecommerce/product-attribute-sets','create_a_version','Create a version','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2478,0,'en','plugins/ecommerce/product-attribute-sets','enabled','Enabled','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2479,0,'en','plugins/ecommerce/product-attribute-sets','attributes','Attributes','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2480,0,'en','plugins/ecommerce/product-attribute-sets','price','Price','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2481,0,'en','plugins/ecommerce/product-attribute-sets','edit_btn','Edit','2021-07-26 04:16:50','2021-07-26 04:17:15'),(2482,0,'en','plugins/ecommerce/product-attribute-sets','remove_btn','Remove','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2483,0,'en','plugins/ecommerce/product-attribute-sets','product','Product','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2484,0,'en','plugins/ecommerce/product-attribute-sets','back_to_product','Back to product','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2485,0,'en','plugins/ecommerce/product-attribute-sets','save','Save','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2486,0,'en','plugins/ecommerce/product-attribute-sets','other_existing_versions','Other existing versions','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2487,0,'en','plugins/ecommerce/product-attribute-sets','version_information','Version information','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2488,0,'en','plugins/ecommerce/product-attribute-sets','add_rule','Add rule','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2489,0,'en','plugins/ecommerce/product-attribute-sets','rules','Rules','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2490,0,'en','plugins/ecommerce/product-attribute-sets','pricing','Pricing','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2491,0,'en','plugins/ecommerce/product-attribute-sets','sale_price','Sale price','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2492,0,'en','plugins/ecommerce/product-attribute-sets','sale_type','Sale type','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2493,0,'en','plugins/ecommerce/product-attribute-sets','no_sale_price','No sale price','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2494,0,'en','plugins/ecommerce/product-attribute-sets','always_on_sale','Always on sale','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2495,0,'en','plugins/ecommerce/product-attribute-sets','limited_time','Limited time','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2496,0,'en','plugins/ecommerce/product-attribute-sets','from','From','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2497,0,'en','plugins/ecommerce/product-attribute-sets','to','To','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2498,0,'en','plugins/ecommerce/product-attribute-sets','storehouse','Storehouse','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2499,0,'en','plugins/ecommerce/product-attribute-sets','no_storehouse_management','No storehouse management','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2500,0,'en','plugins/ecommerce/product-attribute-sets','with_storehouse_management','With storehouse management','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2501,0,'en','plugins/ecommerce/product-attribute-sets','quantity','Quantity','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2502,0,'en','plugins/ecommerce/product-attribute-sets','allow_customer_checkout_out_of_stock','Allow customer checkout when this product out of stock','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2503,0,'en','plugins/ecommerce/product-attribute-sets','shipping','Shipping','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2504,0,'en','plugins/ecommerce/product-attribute-sets','length','Length','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2505,0,'en','plugins/ecommerce/product-attribute-sets','wide','Wide','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2506,0,'en','plugins/ecommerce/product-attribute-sets','height','Height','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2507,0,'en','plugins/ecommerce/product-attribute-sets','weight','Weight','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2508,0,'en','plugins/ecommerce/product-attribute-sets','version_images','Version images','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2509,0,'en','plugins/ecommerce/product-attribute-sets','add_new_image','Add new image','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2510,0,'en','plugins/ecommerce/product-attribute-sets','attribute_set','Attribute set','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2511,0,'en','plugins/ecommerce/product-attribute-sets','value','Value','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2512,0,'en','plugins/ecommerce/product-attribute-sets','dropdown_swatch','Dropdown Swatch','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2513,0,'en','plugins/ecommerce/product-attribute-sets','visual_swatch','Visual Swatch','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2514,0,'en','plugins/ecommerce/product-attribute-sets','text_swatch','Text Swatch','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2515,0,'en','plugins/ecommerce/product-attribute-sets','display_layout','Display Layout','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2516,0,'en','plugins/ecommerce/product-attribute-sets','searchable','Searchable','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2517,0,'en','plugins/ecommerce/product-attribute-sets','comparable','Comparable','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2518,0,'en','plugins/ecommerce/product-attribute-sets','use_in_product_listing','Used in product listing','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2519,0,'en','plugins/ecommerce/product-attribute-sets','attributes_list','Attributes list','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2520,0,'en','plugins/ecommerce/product-attribute-sets','is_default','Is default?','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2521,0,'en','plugins/ecommerce/product-attribute-sets','title','Title','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2522,0,'en','plugins/ecommerce/product-attribute-sets','slug','Slug','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2523,0,'en','plugins/ecommerce/product-attribute-sets','color','Color','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2524,0,'en','plugins/ecommerce/product-attribute-sets','image','Image','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2525,0,'en','plugins/ecommerce/product-attribute-sets','remove','Remove','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2526,0,'en','plugins/ecommerce/product-attribute-sets','add_new_attribute','Add new attribute','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2527,0,'en','plugins/ecommerce/product-attributes','name','Product attributes','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2528,0,'en','plugins/ecommerce/product-attributes','create','New product attribute','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2529,0,'en','plugins/ecommerce/product-attributes','edit','Edit product attribute','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2530,0,'en','plugins/ecommerce/product-attributes','intro.title','Manage product attributes','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2531,0,'en','plugins/ecommerce/product-attributes','intro.description','Product attribute such as color, width, height ...','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2532,0,'en','plugins/ecommerce/product-attributes','intro.button_text','Create product attribute','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2533,0,'en','plugins/ecommerce/product-categories','name','Product categories','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2534,0,'en','plugins/ecommerce/product-categories','create','Create new product category','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2535,0,'en','plugins/ecommerce/product-categories','edit','Edit product category','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2536,0,'en','plugins/ecommerce/product-categories','list','List product categories','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2537,0,'en','plugins/ecommerce/product-categories','none','None','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2538,0,'en','plugins/ecommerce/product-categories','menu','Product categories','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2539,0,'en','plugins/ecommerce/product-categories','intro.title','Manage product categories','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2540,0,'en','plugins/ecommerce/product-categories','intro.description','Such as clothes, shoes, bags, jewelry ...','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2541,0,'en','plugins/ecommerce/product-categories','intro.button_text','Create product category','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2542,0,'en','plugins/ecommerce/product-categories','total_products','Total products: :total','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2543,0,'en','plugins/ecommerce/product-collections','name','Product collections','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2544,0,'en','plugins/ecommerce/product-collections','create','New product collection','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2545,0,'en','plugins/ecommerce/product-collections','edit','Edit product collection','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2546,0,'en','plugins/ecommerce/product-collections','slug_help_block','Label key: <code>:slug</code>. We will use this key for filter.','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2547,0,'en','plugins/ecommerce/product-collections','intro.title','Manage product collections','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2548,0,'en','plugins/ecommerce/product-collections','intro.description','Group your products into collections to make it easier for customers to find them by category.','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2549,0,'en','plugins/ecommerce/product-collections','intro.button_text','Create product collection','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2550,0,'en','plugins/ecommerce/product-label','name','Product labels','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2551,0,'en','plugins/ecommerce/product-label','create','New product label','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2552,0,'en','plugins/ecommerce/product-label','edit','Edit product label','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2553,0,'en','plugins/ecommerce/product-label','color','Color','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2554,0,'en','plugins/ecommerce/product-label','color_placeholder','Example: #f0f0f0','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2555,0,'en','plugins/ecommerce/product-tag','name','Product tags','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2556,0,'en','plugins/ecommerce/product-tag','create','New product tag','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2557,0,'en','plugins/ecommerce/product-tag','edit','Edit product tag','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2558,0,'en','plugins/ecommerce/products','name','Products','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2559,0,'en','plugins/ecommerce/products','create','New product','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2560,0,'en','plugins/ecommerce/products','edit','Edit product - :name','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2561,0,'en','plugins/ecommerce/products','form.name','Name','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2562,0,'en','plugins/ecommerce/products','form.name_placeholder','Product\'s name (Maximum 120 characters)','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2563,0,'en','plugins/ecommerce/products','form.description','Description','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2564,0,'en','plugins/ecommerce/products','form.description_placeholder','Short description for product (Maximum 400 characters)','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2565,0,'en','plugins/ecommerce/products','form.categories','Categories','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2566,0,'en','plugins/ecommerce/products','form.content','Content','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2567,0,'en','plugins/ecommerce/products','form.price','Price','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2568,0,'en','plugins/ecommerce/products','form.quantity','Quantity','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2569,0,'en','plugins/ecommerce/products','form.brand','Brand','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2570,0,'en','plugins/ecommerce/products','form.width','Width','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2571,0,'en','plugins/ecommerce/products','form.height','Height','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2572,0,'en','plugins/ecommerce/products','form.weight','Weight','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2573,0,'en','plugins/ecommerce/products','form.date.end','From date','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2574,0,'en','plugins/ecommerce/products','form.date.start','To date','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2575,0,'en','plugins/ecommerce/products','form.image','Images','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2576,0,'en','plugins/ecommerce/products','form.collections','Product collections','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2577,0,'en','plugins/ecommerce/products','form.labels','Labels','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2578,0,'en','plugins/ecommerce/products','form.price_sale','Price sale','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2579,0,'en','plugins/ecommerce/products','form.product_type.title','Product type','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2580,0,'en','plugins/ecommerce/products','form.product','Product','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2581,0,'en','plugins/ecommerce/products','form.total','Total','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2582,0,'en','plugins/ecommerce/products','form.sub_total','Subtotal','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2583,0,'en','plugins/ecommerce/products','form.shipping_fee','Shipping fee','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2584,0,'en','plugins/ecommerce/products','form.discount','Discount','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2585,0,'en','plugins/ecommerce/products','form.options','Options','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2586,0,'en','plugins/ecommerce/products','form.shipping.height','Height','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2587,0,'en','plugins/ecommerce/products','form.shipping.length','Length','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2588,0,'en','plugins/ecommerce/products','form.shipping.title','Shipping','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2589,0,'en','plugins/ecommerce/products','form.shipping.weight','Weight','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2590,0,'en','plugins/ecommerce/products','form.shipping.wide','Wide','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2591,0,'en','plugins/ecommerce/products','form.stock.allow_order_when_out','Allow customer checkout when this product out of stock','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2592,0,'en','plugins/ecommerce/products','form.stock.in_stock','In stock','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2593,0,'en','plugins/ecommerce/products','form.stock.out_stock','Out stock','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2594,0,'en','plugins/ecommerce/products','form.stock.title','Stock status','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2595,0,'en','plugins/ecommerce/products','form.storehouse.no_storehouse','No storehouse management','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2596,0,'en','plugins/ecommerce/products','form.storehouse.storehouse','With storehouse management','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2597,0,'en','plugins/ecommerce/products','form.storehouse.title','Storehouse','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2598,0,'en','plugins/ecommerce/products','form.storehouse.quantity','Quantity','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2599,0,'en','plugins/ecommerce/products','form.tax','Tax','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2600,0,'en','plugins/ecommerce/products','form.is_default','Is default','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2601,0,'en','plugins/ecommerce/products','form.action','Action','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2602,0,'en','plugins/ecommerce/products','form.restock_quantity','Restock quantity','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2603,0,'en','plugins/ecommerce/products','form.remain','Remain','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2604,0,'en','plugins/ecommerce/products','form.choose_discount_period','Choose Discount Period','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2605,0,'en','plugins/ecommerce/products','form.cancel','Cancel','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2606,0,'en','plugins/ecommerce/products','form.no_results','No results!','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2607,0,'en','plugins/ecommerce/products','form.value','Value','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2608,0,'en','plugins/ecommerce/products','form.attribute_name','Attribute name','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2609,0,'en','plugins/ecommerce/products','form.add_more_attribute','Add more attribute','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2610,0,'en','plugins/ecommerce/products','form.continue','Continue','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2611,0,'en','plugins/ecommerce/products','form.add_new_attributes','Add new attributes','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2612,0,'en','plugins/ecommerce/products','form.add_new_attributes_description','Adding new attributes helps the product to have many options, such as size or color.','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2613,0,'en','plugins/ecommerce/products','form.create_product_variations',':link to create product variations!','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2614,0,'en','plugins/ecommerce/products','form.tags','Tags','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2615,0,'en','plugins/ecommerce/products','form.write_some_tags','Write some tags','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2616,0,'en','plugins/ecommerce/products','form.variation_existed','This variation is existed.','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2617,0,'en','plugins/ecommerce/products','form.no_attributes_selected','No attributes selected!','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2618,0,'en','plugins/ecommerce/products','form.added_variation_success','Added variation successfully!','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2619,0,'en','plugins/ecommerce/products','form.updated_variation_success','Updated variation successfully!','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2620,0,'en','plugins/ecommerce/products','form.created_all_variation_success','Created all variations successfully!','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2621,0,'en','plugins/ecommerce/products','form.updated_product_attributes_success','Updated product attributes successfully!','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2622,0,'en','plugins/ecommerce/products','form.stock_status','Stock status','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2623,0,'en','plugins/ecommerce/products','form.auto_generate_sku','Auto generate SKU?','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2624,0,'en','plugins/ecommerce/products','price','Price','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2625,0,'en','plugins/ecommerce/products','quantity','Quantity','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2626,0,'en','plugins/ecommerce/products','type','Type','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2627,0,'en','plugins/ecommerce/products','image','Thumbnail','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2628,0,'en','plugins/ecommerce/products','sku','SKU','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2629,0,'en','plugins/ecommerce/products','brand','Brand','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2630,0,'en','plugins/ecommerce/products','cannot_delete','Product could not be deleted','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2631,0,'en','plugins/ecommerce/products','product_deleted','Product deleted','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2632,0,'en','plugins/ecommerce/products','product_collections','Product collections','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2633,0,'en','plugins/ecommerce/products','products','Products','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2634,0,'en','plugins/ecommerce/products','menu','Products','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2635,0,'en','plugins/ecommerce/products','control.button_add_image','Add image','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2636,0,'en','plugins/ecommerce/products','price_sale','Sale price','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2637,0,'en','plugins/ecommerce/products','price_group_title','Manager product price','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2638,0,'en','plugins/ecommerce/products','store_house_group_title','Manager store house','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2639,0,'en','plugins/ecommerce/products','shipping_group_title','Manager shipping','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2640,0,'en','plugins/ecommerce/products','overview','Overview','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2641,0,'en','plugins/ecommerce/products','attributes','Attributes','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2642,0,'en','plugins/ecommerce/products','product_has_variations','Product has variations','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2643,0,'en','plugins/ecommerce/products','manage_products','Manage products','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2644,0,'en','plugins/ecommerce/products','add_new_product','Add a new product','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2645,0,'en','plugins/ecommerce/products','start_by_adding_new_product','Start by adding new products.','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2646,0,'en','plugins/ecommerce/products','edit_this_product','Edit this product','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2647,0,'en','plugins/ecommerce/products','delete','Delete','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2648,0,'en','plugins/ecommerce/products','related_products','Related products','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2649,0,'en','plugins/ecommerce/products','cross_selling_products','Cross-selling products','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2650,0,'en','plugins/ecommerce/products','up_selling_products','Up-selling products','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2651,0,'en','plugins/ecommerce/products','grouped_products','Grouped products','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2652,0,'en','plugins/ecommerce/products','search_products','Search products','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2653,0,'en','plugins/ecommerce/products','selected_products','Selected products','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2654,0,'en','plugins/ecommerce/products','edit_variation_item','Edit','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2655,0,'en','plugins/ecommerce/products','variations_box_description','Click on \"Edit attribute\" to add/remove attributes of variation or click on \"Add new variation\" to add variation.','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2656,0,'en','plugins/ecommerce/products','save_changes','Save changes','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2657,0,'en','plugins/ecommerce/products','continue','Continue','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2658,0,'en','plugins/ecommerce/products','edit_attribute','Edit attribute','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2659,0,'en','plugins/ecommerce/products','select_attribute','Select attribute','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2660,0,'en','plugins/ecommerce/products','add_new_variation','Add new variation','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2661,0,'en','plugins/ecommerce/products','edit_variation','Edit variation','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2662,0,'en','plugins/ecommerce/products','generate_all_variations','Generate all variations','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2663,0,'en','plugins/ecommerce/products','generate_all_variations_confirmation','Are you sure you want to generate all variations for this product?','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2664,0,'en','plugins/ecommerce/products','delete_variation','Delete variation?','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2665,0,'en','plugins/ecommerce/products','delete_variation_confirmation','Are you sure you want to delete this variation? This action cannot be undo.','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2666,0,'en','plugins/ecommerce/products','delete_variations_confirmation','Are you sure you want to delete those variations? This action cannot be undo.','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2667,0,'en','plugins/ecommerce/products','product_create_validate_name_required','Please enter product\'s name','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2668,0,'en','plugins/ecommerce/products','product_create_validate_sale_price_max','The discount must be less than the original price','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2669,0,'en','plugins/ecommerce/products','product_create_validate_sale_price_required_if','Must enter a discount when you want to schedule a promotion','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2670,0,'en','plugins/ecommerce/products','product_create_validate_end_date_after','End date must be after start date','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2671,0,'en','plugins/ecommerce/products','product_create_validate_start_date_required_if','Discount start date cannot be left blank when scheduling is selected','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2672,0,'en','plugins/ecommerce/products','product_create_validate_sale_price','Discounts cannot be left blank when scheduling is selected','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2673,0,'en','plugins/ecommerce/products','stock_statuses.in_stock','In stock','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2674,0,'en','plugins/ecommerce/products','stock_statuses.out_of_stock','Out of stock','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2675,0,'en','plugins/ecommerce/products','stock_statuses.on_backorder','On backorder','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2676,0,'en','plugins/ecommerce/products','stock_status','Stock status','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2677,0,'en','plugins/ecommerce/products','processing','Processing...','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2678,0,'en','plugins/ecommerce/products','delete_selected_variations','Delete selected variations','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2679,0,'en','plugins/ecommerce/products','delete_variations','Delete variations','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2680,0,'en','plugins/ecommerce/reports','name','Report','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2681,0,'en','plugins/ecommerce/reports','widget.order.title','Orders','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2682,0,'en','plugins/ecommerce/reports','count.revenue','Today revenue','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2683,0,'en','plugins/ecommerce/reports','count.orders','Today orders','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2684,0,'en','plugins/ecommerce/reports','count.products','Total products','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2685,0,'en','plugins/ecommerce/reports','count.customers','Total customers','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2686,0,'en','plugins/ecommerce/reports','product_name','Product name','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2687,0,'en','plugins/ecommerce/reports','quantity','Quantity','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2688,0,'en','plugins/ecommerce/reports','revenue_statistics','Revenue statistics','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2689,0,'en','plugins/ecommerce/reports','top_selling_products','Top selling products in this month','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2690,0,'en','plugins/ecommerce/reports','today','Today','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2691,0,'en','plugins/ecommerce/reports','this_week','This week','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2692,0,'en','plugins/ecommerce/reports','this_month','This month','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2693,0,'en','plugins/ecommerce/reports','this_year','This year','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2694,0,'en','plugins/ecommerce/reports','revenue_this_month','Revenue this month','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2695,0,'en','plugins/ecommerce/reports','order_processing_this_month','order(s) processing in this month','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2696,0,'en','plugins/ecommerce/reports','order_completed_this_month','order(s) completed in this month','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2697,0,'en','plugins/ecommerce/reports','product_will_be_out_of_stock','product(s) will be out of stock soon','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2698,0,'en','plugins/ecommerce/reports','product_out_of_stock','product(s) out of stock','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2699,0,'en','plugins/ecommerce/review','name','Reviews','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2700,0,'en','plugins/ecommerce/review','add_review','Add review','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2701,0,'en','plugins/ecommerce/review','delete_review','Delete review','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2702,0,'en','plugins/ecommerce/review','create_review','Create Review','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2703,0,'en','plugins/ecommerce/review','please_select_rating','Please select rating','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2704,0,'en','plugins/ecommerce/review','comment','Comment','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2705,0,'en','plugins/ecommerce/review','approve','Approve','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2706,0,'en','plugins/ecommerce/review','approved','Approved','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2707,0,'en','plugins/ecommerce/review','disapprove','Disapprove','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2708,0,'en','plugins/ecommerce/review','disapproved','Disapproved','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2709,0,'en','plugins/ecommerce/review','product','Product','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2710,0,'en','plugins/ecommerce/review','user','User','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2711,0,'en','plugins/ecommerce/review','star','Star','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2712,0,'en','plugins/ecommerce/review','status','Status','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2713,0,'en','plugins/ecommerce/review','list_review','Customer reviews','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2714,0,'en','plugins/ecommerce/review','intro.title','Manage customer reviews','2021-07-26 04:16:51','2021-07-26 04:17:15'),(2715,0,'en','plugins/ecommerce/review','intro.description','Customer reviews will be shown here and you can manage it to show/hide in product detail page.','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2716,0,'en','plugins/ecommerce/shipping','name','Shipping Rules','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2717,0,'en','plugins/ecommerce/shipping','shipping','Shipping','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2718,0,'en','plugins/ecommerce/shipping','title','Title','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2719,0,'en','plugins/ecommerce/shipping','amount','Amount','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2720,0,'en','plugins/ecommerce/shipping','currency','Currency','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2721,0,'en','plugins/ecommerce/shipping','enable','Enable','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2722,0,'en','plugins/ecommerce/shipping','enabled','Enabled','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2723,0,'en','plugins/ecommerce/shipping','disable','Disable','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2724,0,'en','plugins/ecommerce/shipping','disabled','Disabled','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2725,0,'en','plugins/ecommerce/shipping','create_shipping','Create a shipping','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2726,0,'en','plugins/ecommerce/shipping','edit_shipping','Edit shipping :code','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2727,0,'en','plugins/ecommerce/shipping','status','Status','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2728,0,'en','plugins/ecommerce/shipping','shipping_methods','Shipping methods','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2729,0,'en','plugins/ecommerce/shipping','create_shipping_method','Create shipping method','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2730,0,'en','plugins/ecommerce/shipping','edit_shipping_method','Edit shipping method','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2731,0,'en','plugins/ecommerce/shipping','add_shipping_region','Add shipping region','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2732,0,'en','plugins/ecommerce/shipping','country','Country','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2733,0,'en','plugins/ecommerce/shipping','state','State','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2734,0,'en','plugins/ecommerce/shipping','city','City','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2735,0,'en','plugins/ecommerce/shipping','address','Address','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2736,0,'en','plugins/ecommerce/shipping','phone','Phone','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2737,0,'en','plugins/ecommerce/shipping','email','Email','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2738,0,'en','plugins/ecommerce/shipping','zip_code','Zip code','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2739,0,'en','plugins/ecommerce/shipping','methods.default','Default','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2740,0,'en','plugins/ecommerce/shipping','statuses.not_approved','Not approved','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2741,0,'en','plugins/ecommerce/shipping','statuses.approved','Approved','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2742,0,'en','plugins/ecommerce/shipping','statuses.picking','Picking','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2743,0,'en','plugins/ecommerce/shipping','statuses.delay_picking','Delay picking','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2744,0,'en','plugins/ecommerce/shipping','statuses.picked','Picked','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2745,0,'en','plugins/ecommerce/shipping','statuses.not_picked','Not picked','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2746,0,'en','plugins/ecommerce/shipping','statuses.delivering','Delivering','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2747,0,'en','plugins/ecommerce/shipping','statuses.delivered','Delivered','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2748,0,'en','plugins/ecommerce/shipping','statuses.not_delivered','Not delivered','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2749,0,'en','plugins/ecommerce/shipping','statuses.audited','Audited','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2750,0,'en','plugins/ecommerce/shipping','statuses.canceled','Canceled','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2751,0,'en','plugins/ecommerce/shipping','cod_statuses.pending','Pending','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2752,0,'en','plugins/ecommerce/shipping','cod_statuses.completed','Completed','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2753,0,'en','plugins/ecommerce/shipping','delete','Delete','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2754,0,'en','plugins/ecommerce/shipping','shipping_rules','Shipping Rules','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2755,0,'en','plugins/ecommerce/shipping','shipping_rules_description','Rules to calculate shipping fee.','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2756,0,'en','plugins/ecommerce/shipping','select_country','Select country','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2757,0,'en','plugins/ecommerce/shipping','add_shipping_rule','Add shipping rule','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2758,0,'en','plugins/ecommerce/shipping','delete_shipping_rate','Delete shipping rate for area','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2759,0,'en','plugins/ecommerce/shipping','delete_shipping_rate_confirmation','Are you sure you want to delete <strong class=\"region-price-item-label\"></strong> from this shipping area?','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2760,0,'en','plugins/ecommerce/shipping','delete_shipping_area','Delete shipping area','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2761,0,'en','plugins/ecommerce/shipping','delete_shipping_area_confirmation','Are you sure you want to delete shipping area <strong class=\"region-item-label\"></strong>?','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2762,0,'en','plugins/ecommerce/shipping','add_shipping_fee_for_area','Add shipping fee for area','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2763,0,'en','plugins/ecommerce/shipping','confirm','Confirm','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2764,0,'en','plugins/ecommerce/shipping','save','Save','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2765,0,'en','plugins/ecommerce/shipping','greater_than','Greater than','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2766,0,'en','plugins/ecommerce/shipping','type','Type','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2767,0,'en','plugins/ecommerce/shipping','shipping_rule_name','Name of shipping rule','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2768,0,'en','plugins/ecommerce/shipping','shipping_fee','Shipping fee','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2769,0,'en','plugins/ecommerce/shipping','cancel','Cancel','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2770,0,'en','plugins/ecommerce/shipping','base_on_weight','Based on product\'s weight (:unit)','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2771,0,'en','plugins/ecommerce/shipping','base_on_price','Based on product\'s price','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2772,0,'en','plugins/ecommerce/shipping','shipment_canceled','Shipment was canceled','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2773,0,'en','plugins/ecommerce/shipping','at','At','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2774,0,'en','plugins/ecommerce/shipping','cash_on_delivery','Cash on delivery (COD)','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2775,0,'en','plugins/ecommerce/shipping','update_shipping_status','Update shipping status','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2776,0,'en','plugins/ecommerce/shipping','update_cod_status','Update COD status','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2777,0,'en','plugins/ecommerce/shipping','history','History','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2778,0,'en','plugins/ecommerce/shipping','shipment_information','Shipment information','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2779,0,'en','plugins/ecommerce/shipping','order_number','Order number','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2780,0,'en','plugins/ecommerce/shipping','shipping_method','Shipping method','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2781,0,'en','plugins/ecommerce/shipping','select_shipping_method','Select shipping method','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2782,0,'en','plugins/ecommerce/shipping','cod_status','COD status','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2783,0,'en','plugins/ecommerce/shipping','shipping_status','Shipping status','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2784,0,'en','plugins/ecommerce/shipping','customer_information','Customer information','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2785,0,'en','plugins/ecommerce/shipping','sku','SKU','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2786,0,'en','plugins/ecommerce/shipping','change_status_confirm_title','Confirm <span class=\"shipment-status-label\"></span> ?','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2787,0,'en','plugins/ecommerce/shipping','change_status_confirm_description','Are you sure you want to confirm <span class=\"shipment-status-label\"></span> for this shipment?','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2788,0,'en','plugins/ecommerce/shipping','accept','Accept','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2789,0,'en','plugins/ecommerce/shipping','weight_unit','Weight (:unit)','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2790,0,'en','plugins/ecommerce/shipping','updated_at','Last Update','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2791,0,'en','plugins/ecommerce/shipping','cod_amount','Cash on delivery amount (COD)','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2792,0,'en','plugins/ecommerce/shipping','cancel_shipping','Cancel shipping','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2793,0,'en','plugins/ecommerce/shipping','shipping_address','Shipping address','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2794,0,'en','plugins/ecommerce/shipping','packages','Packages','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2795,0,'en','plugins/ecommerce/shipping','edit','Edit','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2796,0,'en','plugins/ecommerce/shipping','fee','Fee','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2797,0,'en','plugins/ecommerce/shipping','note','Note','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2798,0,'en','plugins/ecommerce/shipping','finish','Finish','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2799,0,'en','plugins/ecommerce/shipping','shipping_fee_cod','Shipping fee/COD','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2800,0,'en','plugins/ecommerce/shipping','send_confirmation_email_to_customer','Send confirmation email to customer','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2801,0,'en','plugins/ecommerce/shipping','form_name','Name','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2802,0,'en','plugins/ecommerce/shipping','changed_shipping_status','Changed status of shipping to : :status . Updated by: %user_name%','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2803,0,'en','plugins/ecommerce/shipping','order_confirmed_by','Order confirmed by %user_name%','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2804,0,'en','plugins/ecommerce/shipping','shipping_canceled_by','Shipping is cancelled by %user_name%','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2805,0,'en','plugins/ecommerce/shipping','update_shipping_status_success','Update shipping status successfully!','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2806,0,'en','plugins/ecommerce/shipping','update_cod_status_success','Updated COD status of shipping successfully!','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2807,0,'en','plugins/ecommerce/shipping','updated_cod_status_by','Updated COD status to :status . Updated by: %user_name%','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2808,0,'en','plugins/ecommerce/shipping','all','All','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2809,0,'en','plugins/ecommerce/shipping','error_when_adding_new_region','There is an error when adding new region!','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2810,0,'en','plugins/ecommerce/shipping','delivery','Delivery','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2811,0,'en','plugins/ecommerce/shipping','adjustment_price_of','Adjustment price of :key','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2812,0,'en','plugins/ecommerce/store-locator','name','Store locators','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2813,0,'en','plugins/ecommerce/store-locator','description','This address will appear on your invoice and will be used to calculate your shipping price.','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2814,0,'en','plugins/ecommerce/store-locator','shop_name','Shop name','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2815,0,'en','plugins/ecommerce/store-locator','phone','Phone','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2816,0,'en','plugins/ecommerce/store-locator','email','Email','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2817,0,'en','plugins/ecommerce/store-locator','state','State','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2818,0,'en','plugins/ecommerce/store-locator','city','City','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2819,0,'en','plugins/ecommerce/store-locator','country','Country','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2820,0,'en','plugins/ecommerce/store-locator','address','Address','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2821,0,'en','plugins/ecommerce/store-locator','primary_store_is','Primary store is','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2822,0,'en','plugins/ecommerce/store-locator','store_name','Store name','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2823,0,'en','plugins/ecommerce/store-locator','select_country','Select country...','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2824,0,'en','plugins/ecommerce/store-locator','default_shipping_location','Default shipping location','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2825,0,'en','plugins/ecommerce/store-locator','default_store','Default store','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2826,0,'en','plugins/ecommerce/tax','name','Taxes','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2827,0,'en','plugins/ecommerce/tax','create','Create a tax','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2828,0,'en','plugins/ecommerce/tax','edit','Edit tax :title','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2829,0,'en','plugins/ecommerce/tax','title','Title','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2830,0,'en','plugins/ecommerce/tax','percentage','Percentage %','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2831,0,'en','plugins/ecommerce/tax','priority','Priority','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2832,0,'en','plugins/ecommerce/tax','select_tax','-- select --','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2833,0,'vi','plugins/ecommerce/brands','name','Thương hiệu','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2834,0,'vi','plugins/ecommerce/brands','create','Thêm thương hiệu mới','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2835,0,'vi','plugins/ecommerce/brands','edit','Sửa thương hiệu','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2836,0,'vi','plugins/ecommerce/brands','form.name','Tên','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2837,0,'vi','plugins/ecommerce/brands','form.name_placeholder','Tên thương hiệu (tối đa 255 kí tự)','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2838,0,'vi','plugins/ecommerce/brands','form.description','Mô tả','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2839,0,'vi','plugins/ecommerce/brands','form.description_placeholder','Mô tả ngắn cho thương hiệu này (tối đa 400 kí tự)','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2840,0,'vi','plugins/ecommerce/brands','form.website','Website','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2841,0,'vi','plugins/ecommerce/brands','form.logo','Logo','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2842,0,'vi','plugins/ecommerce/brands','form.is_featured','Nổi bật?','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2843,0,'vi','plugins/ecommerce/brands','logo','Logo','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2844,0,'vi','plugins/ecommerce/brands','website','Website','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2845,0,'vi','plugins/ecommerce/brands','notices.no_select','Không có bản ghi nào được chọn!','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2846,0,'vi','plugins/ecommerce/brands','notices.update_success_message','Cập nhật thành công','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2847,0,'vi','plugins/ecommerce/brands','cannot_delete','Xoá không thành công','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2848,0,'vi','plugins/ecommerce/brands','brand_deleted','Xoá thương hiệu thành công','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2849,0,'vi','plugins/ecommerce/brands','menu','Thương hiệu','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2850,0,'vi','plugins/ecommerce/brands','intro.title','Quản lý danh sách thương hiệu','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2851,0,'vi','plugins/ecommerce/brands','intro.description','Các thương hiệu của sản phẩm như Nike, Adidas, Bitis ...','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2852,0,'vi','plugins/ecommerce/brands','intro.button_text','Tạo thương hiệu','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2874,0,'vi','plugins/ecommerce/currency','currencies','Tiền tệ','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2875,0,'vi','plugins/ecommerce/currency','setting_description','Các loại tiền tệ được sử dụng trên website.','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2876,0,'vi','plugins/ecommerce/currency','name','Tên','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2877,0,'vi','plugins/ecommerce/currency','symbol','Ký hiệu','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2878,0,'vi','plugins/ecommerce/currency','number_of_decimals','Số thập phân','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2879,0,'vi','plugins/ecommerce/currency','exchange_rate','Tỷ giá','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2880,0,'vi','plugins/ecommerce/currency','is_prefix_symbol','Vị trí ký hiệu','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2881,0,'vi','plugins/ecommerce/currency','is_default','Mặc định?','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2882,0,'vi','plugins/ecommerce/currency','remove','Xoá','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2883,0,'vi','plugins/ecommerce/currency','new_currency','Thêm tiền tệ mới','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2884,0,'vi','plugins/ecommerce/currency','save_settings','Lưu cài đặt','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2885,0,'vi','plugins/ecommerce/currency','before_number','Trước số','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2886,0,'vi','plugins/ecommerce/currency','after_number','Sau số','2021-07-26 04:16:52','2021-07-26 04:17:14'),(2887,0,'vi','plugins/ecommerce/customer','name','Khách hàng','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2888,0,'vi','plugins/ecommerce/customer','create','Create a customer','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2889,0,'vi','plugins/ecommerce/customer','edit','Edit customer \":name\"','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2890,0,'vi','plugins/ecommerce/customer','email','Email','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2891,0,'vi','plugins/ecommerce/customer','email_placeholder','Ex: example@gmail.com','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2892,0,'vi','plugins/ecommerce/customer','password','Password','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2893,0,'vi','plugins/ecommerce/customer','change_password','Change password?','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2894,0,'vi','plugins/ecommerce/customer','password_confirmation','Password confirmation','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2895,0,'vi','plugins/ecommerce/customer','intro.title','Quản lý danh sách khách hàng','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2896,0,'vi','plugins/ecommerce/customer','intro.description','Khi khách hàng đặt hàng, bạn sẽ biết được thông tin và lịch sử mua hàng của khách hàng.','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2897,0,'vi','plugins/ecommerce/customer','intro.button_text','Tạo khách hàng','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2898,0,'vi','plugins/ecommerce/discount','name','Khuyến mãi','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2899,0,'vi','plugins/ecommerce/discount','invalid_coupon','Mã khuyến mãi không hợp lệ hoặc đã hết hạn!','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2900,0,'vi','plugins/ecommerce/discount','cannot_use_same_time_with_other_discount_program','Mã khuyến mãi này không thể sử dụng chung với chương trình khuyến mãi!','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2901,0,'vi','plugins/ecommerce/discount','not_used','Chưa sử dụng mã giảm giá này','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2902,0,'vi','plugins/ecommerce/discount','detail','Detail','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2903,0,'vi','plugins/ecommerce/discount','used','Used','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2904,0,'vi','plugins/ecommerce/discount','start_date','Start date','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2905,0,'vi','plugins/ecommerce/discount','end_date','End date','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2906,0,'vi','plugins/ecommerce/discount','intro.title','Chương trình khuyến mãi','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2907,0,'vi','plugins/ecommerce/discount','intro.description','Tạo ra các mã coupon, cài đặt một sản phẩm, hoặc một nhóm sản phẩm khuyến mãi dành cho các khách hàng thân thiết của bạn.','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2908,0,'vi','plugins/ecommerce/discount','intro.button_text','Tạo khuyến mãi','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2909,0,'vi','plugins/ecommerce/ecommerce','settings','Cài đặt','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2910,0,'vi','plugins/ecommerce/ecommerce','name','Thương mại điện tử','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2911,0,'vi','plugins/ecommerce/ecommerce','setting.email.title','E-commerce','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2912,0,'vi','plugins/ecommerce/ecommerce','setting.email.description','Ecommerce email config','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2913,0,'vi','plugins/ecommerce/ecommerce','setting.email.order_confirm_subject','Subject of order confirmation email','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2914,0,'vi','plugins/ecommerce/ecommerce','setting.email.order_confirm_subject_placeholder','The subject of email confirmation send to the customer','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2915,0,'vi','plugins/ecommerce/ecommerce','setting.email.order_confirm_content','Content of order confirmation email','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2916,0,'vi','plugins/ecommerce/ecommerce','setting.email.order_status_change_subject','Subject of email when changing order\'s status','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2917,0,'vi','plugins/ecommerce/ecommerce','setting.email.order_status_change_subject_placeholder','Subject of email when changing order\'s status send to customer','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2918,0,'vi','plugins/ecommerce/ecommerce','setting.email.order_status_change_content','Content of email when changing order\'s status','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2919,0,'vi','plugins/ecommerce/ecommerce','setting.email.from_email','Email from','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2920,0,'vi','plugins/ecommerce/ecommerce','setting.email.from_email_placeholder','Email from address to display in mail. Ex: example@gmail.com','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2921,0,'vi','plugins/ecommerce/ecommerce','store_address','Địa chỉ cửa hàng','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2922,0,'vi','plugins/ecommerce/ecommerce','store_phone','Số điện thoại cửa hàng','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2923,0,'vi','plugins/ecommerce/ecommerce','order_id','Mã đơn hàng','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2924,0,'vi','plugins/ecommerce/ecommerce','order_token','Chuỗi mã hoá đơn hàng','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2925,0,'vi','plugins/ecommerce/ecommerce','customer_name','Tên khách hàng','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2926,0,'vi','plugins/ecommerce/ecommerce','customer_email','Email khách hàng','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2927,0,'vi','plugins/ecommerce/ecommerce','customer_phone','Số điện thoại khách hàng','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2928,0,'vi','plugins/ecommerce/ecommerce','customer_address','Địa chỉ khách hàng','2021-07-26 04:16:52','2021-07-26 04:17:15'),(2929,0,'vi','plugins/ecommerce/ecommerce','product_list','Danh sách sản phẩm trong đơn hàng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2930,0,'vi','plugins/ecommerce/ecommerce','payment_detail','Chi tiết thanh toán','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2931,0,'vi','plugins/ecommerce/ecommerce','shipping_method','Phương thức vận chuyển','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2932,0,'vi','plugins/ecommerce/ecommerce','payment_method','Phương thức thanh toán','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2933,0,'vi','plugins/ecommerce/ecommerce','standard_and_format','Tiêu chuẩn & Định dạng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2934,0,'vi','plugins/ecommerce/ecommerce','standard_and_format_description','Các tiêu chuẩn và các định dạng được sử dụng để tính toán những thứ như giá cả sản phẩm, trọng lượng vận chuyển và thời gian đơn hàng được đặt.','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2935,0,'vi','plugins/ecommerce/ecommerce','change_order_format','Chỉnh sửa định dạng mã đơn hàng (tùy chọn)','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2936,0,'vi','plugins/ecommerce/ecommerce','change_order_format_description','Mã đơn hàng mặc định bắt đầu từ :number. Bạn có thể thay đổi chuỗi bắt đầu hoặc kết thúc để tạo mã đơn hàng theo ý bạn, ví dụ \"DH-:number\" hoặc \":number-A\"','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2937,0,'vi','plugins/ecommerce/ecommerce','start_with','Bắt đầu bằng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2938,0,'vi','plugins/ecommerce/ecommerce','end_with','Kết thúc bằng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2939,0,'vi','plugins/ecommerce/ecommerce','order_will_be_shown','Mã đơn hàng của bạn sẽ hiển thị theo mẫu','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2940,0,'vi','plugins/ecommerce/ecommerce','weight_unit','Đơn vị cân nặng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2941,0,'vi','plugins/ecommerce/ecommerce','height_unit','Đơn vị chiều dài/chiều cao','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2942,0,'vi','plugins/ecommerce/email','customer_new_order_title','Xác nhận đơn hàng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2943,0,'vi','plugins/ecommerce/email','customer_new_order_description','Được gửi khi khách hàng tạo đơn hàng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2944,0,'vi','plugins/ecommerce/email','order_cancellation_title','Hủy đơn hàng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2945,0,'vi','plugins/ecommerce/email','order_cancellation_description','Được gửi khi khách hàng hủy đơn hàng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2946,0,'vi','plugins/ecommerce/email','delivery_confirmation_title','Xác nhận giao hàng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2947,0,'vi','plugins/ecommerce/email','delivery_confirmation_description','Được gửi đến khách hàng khi bắt đầu giao hàng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2948,0,'vi','plugins/ecommerce/email','admin_new_order_title','Thông báo có đơn hàng mới','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2949,0,'vi','plugins/ecommerce/email','admin_new_order_description','Được gửi cho quản trị viên khi có khách mua hàng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2950,0,'vi','plugins/ecommerce/email','order_confirmation_title','Xác nhận đơn hàng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2951,0,'vi','plugins/ecommerce/email','order_confirmation_description','Email được gửi đến khách hàng khi đơn hàng xác nhận','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2952,0,'vi','plugins/ecommerce/email','payment_confirmation_title','Xác nhận thanh toán','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2953,0,'vi','plugins/ecommerce/email','payment_confirmation_description','Email được gửi đến khách hàng khi đơn hàng xác nhận thanh toán','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2954,0,'vi','plugins/ecommerce/email','order_recover_title','Đơn hàng đang chờ hoàn tất','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2955,0,'vi','plugins/ecommerce/email','order_recover_description','Email nhắc nhở khách hàng hoàn tất đơn hàng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2956,0,'vi','plugins/ecommerce/email','link_go_to_our_shop','hoặc <a href=\":link\">Truy cập website</a>','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2957,0,'vi','plugins/ecommerce/email','order_information','Thông tin đơn hàng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2958,0,'vi','plugins/ecommerce/email','order_number','Mã đơn hàng: <strong>:order_id</strong>','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2959,0,'vi','plugins/ecommerce/email','view_order','Xem đơn hàng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2960,0,'vi','plugins/ecommerce/order','statuses.pending','Chưa xử lý','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2961,0,'vi','plugins/ecommerce/order','statuses.processing','Đang xử lý','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2962,0,'vi','plugins/ecommerce/order','statuses.delivering','Đang giao hàng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2963,0,'vi','plugins/ecommerce/order','statuses.delivered','Đã giao hàng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2964,0,'vi','plugins/ecommerce/order','statuses.completed','Hoàn thành','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2965,0,'vi','plugins/ecommerce/order','statuses.canceled','Bị huỷ','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2966,0,'vi','plugins/ecommerce/order','name','Đơn hàng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2967,0,'vi','plugins/ecommerce/order','customer.messages.cancel_error','Đơn hàng đang được giao hoặc đã hoàn thành','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2968,0,'vi','plugins/ecommerce/order','customer.messages.cancel_success','Huỷ đơn hàng thành công','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2969,0,'vi','plugins/ecommerce/order','incomplete_order','Đơn hàng chưa hoàn tất','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2970,0,'vi','plugins/ecommerce/order','order_id','Mã đơn hàng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2971,0,'vi','plugins/ecommerce/order','customer_label','Khách hàng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2972,0,'vi','plugins/ecommerce/order','amount','Tổng cộng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2973,0,'vi','plugins/ecommerce/order','shipping_amount','Phí vận chuyển','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2974,0,'vi','plugins/ecommerce/order','payment_method','Phương thức thanh toán','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2975,0,'vi','plugins/ecommerce/order','payment_status_label','Trạng thái thanh toán','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2976,0,'vi','plugins/ecommerce/order','manage_orders','Quản lý đơn hàng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2977,0,'vi','plugins/ecommerce/order','order_intro_description','Một khi cửa hàng của bạn có đơn đặt hàng, đây sẽ là nơi bạn xử lý và theo dõi những đơn đặt hàng đó.','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2978,0,'vi','plugins/ecommerce/order','create_new_order','Tạo đơn hàng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2979,0,'vi','plugins/ecommerce/order','manage_incomplete_orders','Quản lý đơn hàng chưa hoàn tất','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2980,0,'vi','plugins/ecommerce/order','incomplete_orders_intro_description','Đơn hàng chưa hoàn tất là đơn hàng được tạo khi khách hàng thêm sản phẩm vào giỏ hàng, tiến hành điền thông tin mua hàng nhưng không hoàn tất quá trình thanh toán.','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2981,0,'vi','plugins/ecommerce/order','cannot_send_order_recover_to_mail','Không tìm thấy email nên không thể gửi email khôi phục cho khách hàng.','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2982,0,'vi','plugins/ecommerce/payment','name','Thanh toán','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2983,0,'vi','plugins/ecommerce/payment','payment_method','Phương thức thanh toán','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2984,0,'vi','plugins/ecommerce/payment','view_payment','Xem thanh toán #','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2985,0,'vi','plugins/ecommerce/payment','charge_id','Mã giao dịch','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2986,0,'vi','plugins/ecommerce/payment','amount','Số tiền','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2987,0,'vi','plugins/ecommerce/payment','currency','Đơn vị tiền tệ','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2988,0,'vi','plugins/ecommerce/payment','user','Người dùng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2989,0,'vi','plugins/ecommerce/payment','paypal_name_required','Tên của phương thức PayPal là bắt buộc!','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2990,0,'vi','plugins/ecommerce/payment','paypal_name_max','Tên của phương thức PayPal quá dài!','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2991,0,'vi','plugins/ecommerce/payment','stripe_name_required','Tên của phương thức Stripe là bắt buộc!','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2992,0,'vi','plugins/ecommerce/payment','stripe_name_max','Tên của phương thức Stripe quá dài!','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2993,0,'vi','plugins/ecommerce/payment','status','Trạng thái','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2994,0,'vi','plugins/ecommerce/payment','enabled','Bật','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2995,0,'vi','plugins/ecommerce/payment','disabled','Tắt','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2996,0,'vi','plugins/ecommerce/payment','client_id','Client ID','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2997,0,'vi','plugins/ecommerce/payment','client_secret','Client Secret','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2998,0,'vi','plugins/ecommerce/payment','mode','Chế độ','2021-07-26 04:16:53','2021-07-26 04:17:15'),(2999,0,'vi','plugins/ecommerce/payment','sandbox','Sandbox','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3000,0,'vi','plugins/ecommerce/payment','live','Live','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3001,0,'vi','plugins/ecommerce/payment','enable_payment_log','Bật lưu nhật ký thanh toán','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3002,0,'vi','plugins/ecommerce/payment','yes','Có','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3003,0,'vi','plugins/ecommerce/payment','no','Không','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3004,0,'vi','plugins/ecommerce/payment','client_key','Client Key','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3005,0,'vi','plugins/ecommerce/payment','stripe','Stripe','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3006,0,'vi','plugins/ecommerce/payment','paypal','PayPal','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3007,0,'vi','plugins/ecommerce/payment','action','Hành động','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3008,0,'vi','plugins/ecommerce/payment','go_back','Quay lại','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3009,0,'vi','plugins/ecommerce/payment','view','Xem','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3010,0,'vi','plugins/ecommerce/payment','cash_on_delivery','Thanh toán khi nhận hàng (COD)','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3011,0,'vi','plugins/ecommerce/payment','via_bank_transfer','Thông qua chuyển khoản ngân hàng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3012,0,'vi','plugins/ecommerce/payment','payment_via_cart','Thanh toán bằng thẻ','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3013,0,'vi','plugins/ecommerce/payment','card_number','Số thẻ','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3014,0,'vi','plugins/ecommerce/payment','full_name','Tên trên thẻ','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3015,0,'vi','plugins/ecommerce/payment','payment_via_paypal','Thanh toán thông qua PayPal','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3016,0,'vi','plugins/ecommerce/payment','mm_yy','MM/YY','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3017,0,'vi','plugins/ecommerce/payment','cvc','CVC','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3018,0,'vi','plugins/ecommerce/payment','details','Chi tiết','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3019,0,'vi','plugins/ecommerce/payment','payer_name','Người thanh toán','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3020,0,'vi','plugins/ecommerce/payment','email','Địa chỉ email','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3021,0,'vi','plugins/ecommerce/payment','phone','Điện thoại','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3022,0,'vi','plugins/ecommerce/payment','country','Quốc gia','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3023,0,'vi','plugins/ecommerce/payment','shipping_address','Địa chỉ giao hàng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3024,0,'vi','plugins/ecommerce/payment','payment_details','Chi tiết giao dịch','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3025,0,'vi','plugins/ecommerce/payment','card','Thẻ','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3026,0,'vi','plugins/ecommerce/payment','address','Địa chỉ','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3027,0,'vi','plugins/ecommerce/payment','could_not_get_stripe_token','Không thể lấy mã Stripe để thanh toán','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3028,0,'vi','plugins/ecommerce/payment','new_payment','Thanh toán cho đơn hàng :id','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3029,0,'vi','plugins/ecommerce/payment','payment_id','Mã thanh toán','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3030,0,'vi','plugins/ecommerce/prices','name','Price','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3031,0,'vi','plugins/ecommerce/prices','create','New price','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3032,0,'vi','plugins/ecommerce/prices','edit','Edit price','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3033,0,'vi','plugins/ecommerce/prices','list','List price','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3034,0,'vi','plugins/ecommerce/product-attribute-sets','name','Product attribute sets','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3035,0,'vi','plugins/ecommerce/product-attribute-sets','create','New product attribute set','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3036,0,'vi','plugins/ecommerce/product-attribute-sets','edit','Edit product attribute set','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3037,0,'vi','plugins/ecommerce/product-attribute-sets','visible_in_categories','Visible in categories','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3038,0,'vi','plugins/ecommerce/product-attribute-sets','product_with_more_version','Product with more version','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3039,0,'vi','plugins/ecommerce/product-attribute-sets','create_a_version','Create a version','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3040,0,'vi','plugins/ecommerce/product-attribute-sets','enabled','Enabled','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3041,0,'vi','plugins/ecommerce/product-attribute-sets','attributes','Attributes','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3042,0,'vi','plugins/ecommerce/product-attribute-sets','price','Price','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3043,0,'vi','plugins/ecommerce/product-attribute-sets','edit_btn','Edit','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3044,0,'vi','plugins/ecommerce/product-attribute-sets','remove_btn','Remove','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3045,0,'vi','plugins/ecommerce/product-attribute-sets','product','Product','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3046,0,'vi','plugins/ecommerce/product-attribute-sets','back_to_product','Back to product','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3047,0,'vi','plugins/ecommerce/product-attribute-sets','save','Save','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3048,0,'vi','plugins/ecommerce/product-attribute-sets','other_existing_versions','Other existing versions','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3049,0,'vi','plugins/ecommerce/product-attribute-sets','version_information','Version information','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3050,0,'vi','plugins/ecommerce/product-attribute-sets','add_rule','Add rule','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3051,0,'vi','plugins/ecommerce/product-attribute-sets','rules','Rules','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3052,0,'vi','plugins/ecommerce/product-attribute-sets','pricing','Pricing','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3053,0,'vi','plugins/ecommerce/product-attribute-sets','sale_price','Sale price','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3054,0,'vi','plugins/ecommerce/product-attribute-sets','sale_type','Sale type','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3055,0,'vi','plugins/ecommerce/product-attribute-sets','no_sale_price','No sale price','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3056,0,'vi','plugins/ecommerce/product-attribute-sets','always_on_sale','Always on sale','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3057,0,'vi','plugins/ecommerce/product-attribute-sets','limited_time','Limited time','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3058,0,'vi','plugins/ecommerce/product-attribute-sets','from','From','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3059,0,'vi','plugins/ecommerce/product-attribute-sets','to','To','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3060,0,'vi','plugins/ecommerce/product-attribute-sets','storehouse','Storehouse','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3061,0,'vi','plugins/ecommerce/product-attribute-sets','no_storehouse_management','No storehouse management','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3062,0,'vi','plugins/ecommerce/product-attribute-sets','with_storehouse_management','With storehouse management','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3063,0,'vi','plugins/ecommerce/product-attribute-sets','quantity','Quantity','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3064,0,'vi','plugins/ecommerce/product-attribute-sets','allow_customer_checkout_out_of_stock','Allow customer checkout when this product out of stock','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3065,0,'vi','plugins/ecommerce/product-attribute-sets','shipping','Shipping','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3066,0,'vi','plugins/ecommerce/product-attribute-sets','length','Length','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3067,0,'vi','plugins/ecommerce/product-attribute-sets','wide','Wide','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3068,0,'vi','plugins/ecommerce/product-attribute-sets','height','Height','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3069,0,'vi','plugins/ecommerce/product-attribute-sets','weight','Weight','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3070,0,'vi','plugins/ecommerce/product-attribute-sets','version_images','Version images','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3071,0,'vi','plugins/ecommerce/product-attribute-sets','add_new_image','Add new image','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3072,0,'vi','plugins/ecommerce/product-attribute-sets','attribute_set','Attribute set','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3073,0,'vi','plugins/ecommerce/product-attribute-sets','value','Value','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3074,0,'vi','plugins/ecommerce/product-attribute-sets','dropdown_swatch','Dropdown Swatch','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3075,0,'vi','plugins/ecommerce/product-attribute-sets','visual_swatch','Visual Swatch','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3076,0,'vi','plugins/ecommerce/product-attribute-sets','text_swatch','Text Swatch','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3077,0,'vi','plugins/ecommerce/product-attributes','name','Thuộc tính sản phẩm','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3078,0,'vi','plugins/ecommerce/product-attributes','create','Tạo','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3079,0,'vi','plugins/ecommerce/product-attributes','edit','Sửa','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3080,0,'vi','plugins/ecommerce/product-attributes','intro.title','Quản lý danh sách thuộc tính sản phẩm','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3081,0,'vi','plugins/ecommerce/product-attributes','intro.description','Các thuộc tính của sản phẩm như màu sắc, kích thước ...','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3082,0,'vi','plugins/ecommerce/product-attributes','intro.button_text','Tạo thuộc tính sản phẩm','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3083,0,'vi','plugins/ecommerce/product-categories','create','Create new product category','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3084,0,'vi','plugins/ecommerce/product-categories','edit','Edit product category','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3085,0,'vi','plugins/ecommerce/product-categories','name','Danh mục sản phẩm','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3086,0,'vi','plugins/ecommerce/product-categories','none','Không có','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3087,0,'vi','plugins/ecommerce/product-categories','menu','Danh mục sản phẩm','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3088,0,'vi','plugins/ecommerce/product-categories','intro.title','Quản lý danh sách danh mục sản phẩm','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3089,0,'vi','plugins/ecommerce/product-categories','intro.description','Danh mục sản phẩm như quần áo, giày dép, linh kiện điện tử ...','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3090,0,'vi','plugins/ecommerce/product-categories','intro.button_text','Tạo danh mục sản phẩm','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3091,0,'vi','plugins/ecommerce/product-categories','total_products','Tổng sản phẩm: :total','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3092,0,'vi','plugins/ecommerce/product-collections','name','Nhóm sản phẩm','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3093,0,'vi','plugins/ecommerce/product-collections','create','Thêm nhóm sản phẩm','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3094,0,'vi','plugins/ecommerce/product-collections','edit','Sửa nhóm sản phẩm','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3095,0,'vi','plugins/ecommerce/product-collections','slug_help_block','Label key: <code>:slug</code>. We will use this key for filter.','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3096,0,'vi','plugins/ecommerce/product-collections','intro.title','Quản lý nhóm sản phẩm','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3097,0,'vi','plugins/ecommerce/product-collections','intro.description','Nhóm sản phẩm giúp quản lý sản phẩm và khách hàng tìm kiếm sản phẩm một cách dễ dàng.','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3098,0,'vi','plugins/ecommerce/product-collections','intro.button_text','Tạo nhóm sản phẩm','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3099,0,'vi','plugins/ecommerce/products','name','Sản phẩm','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3100,0,'vi','plugins/ecommerce/products','create','Thêm sản phẩm mới','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3101,0,'vi','plugins/ecommerce/products','edit','Sửa sản phẩm - :name','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3102,0,'vi','plugins/ecommerce/products','form.name','Tên sản phẩm','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3103,0,'vi','plugins/ecommerce/products','form.name_placeholder','Tên sản phẩm (Tối đa 120 chữ cái)','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3104,0,'vi','plugins/ecommerce/products','form.description','Mô tả ngắn','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3105,0,'vi','plugins/ecommerce/products','form.description_placeholder','Mô tả ngắn gọn cho sản phẩm (Tối đa 400 chữ cái)','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3106,0,'vi','plugins/ecommerce/products','form.categories','Danh mục','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3107,0,'vi','plugins/ecommerce/products','form.content','Chi tiết sản phẩm','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3108,0,'vi','plugins/ecommerce/products','form.price','Giá cơ bản','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3109,0,'vi','plugins/ecommerce/products','form.price_sale','Giá giảm','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3110,0,'vi','plugins/ecommerce/products','form.quantity','Số lượng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3111,0,'vi','plugins/ecommerce/products','form.brand','Thương hiệu','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3112,0,'vi','plugins/ecommerce/products','form.width','Rộng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3113,0,'vi','plugins/ecommerce/products','form.height','Cao','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3114,0,'vi','plugins/ecommerce/products','form.weight','Cân nặng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3115,0,'vi','plugins/ecommerce/products','form.image','Hình ảnh','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3116,0,'vi','plugins/ecommerce/products','form.product_type.title','Loại sản phẩm','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3117,0,'vi','plugins/ecommerce/products','form.stock.title','Tình trạng kho','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3118,0,'vi','plugins/ecommerce/products','form.stock.in_stock','Còn hàng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3119,0,'vi','plugins/ecommerce/products','form.stock.out_stock','Hết hàng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3120,0,'vi','plugins/ecommerce/products','form.stock.allow_order_when_out','Cho phép đặt hàng khi hết','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3121,0,'vi','plugins/ecommerce/products','form.storehouse.title','Quản lý kho','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3122,0,'vi','plugins/ecommerce/products','form.storehouse.no_storehouse','Không quản lý kho','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3123,0,'vi','plugins/ecommerce/products','form.storehouse.storehouse','Quản lý kho','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3124,0,'vi','plugins/ecommerce/products','form.storehouse.quantity','Số lượng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3125,0,'vi','plugins/ecommerce/products','form.shipping.title','Giao hàng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3126,0,'vi','plugins/ecommerce/products','form.shipping.length','Chiều dài','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3127,0,'vi','plugins/ecommerce/products','form.shipping.wide','Chiều rộng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3128,0,'vi','plugins/ecommerce/products','form.shipping.height','Chiều cao','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3129,0,'vi','plugins/ecommerce/products','form.shipping.weight','Cân nặng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3130,0,'vi','plugins/ecommerce/products','form.date.start','Ngày bắt đầu','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3131,0,'vi','plugins/ecommerce/products','form.date.end','Ngày kết thúc','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3132,0,'vi','plugins/ecommerce/products','form.tags','Nhãn','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3133,0,'vi','plugins/ecommerce/products','form.tax','Thuế','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3134,0,'vi','plugins/ecommerce/products','price','Giá cơ bản','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3135,0,'vi','plugins/ecommerce/products','price_sale','Giá giảm','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3136,0,'vi','plugins/ecommerce/products','quantity','Số lượng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3137,0,'vi','plugins/ecommerce/products','type','Loại sản phẩm','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3138,0,'vi','plugins/ecommerce/products','image','Ảnh','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3139,0,'vi','plugins/ecommerce/products','sku','Mã sản phẩm','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3140,0,'vi','plugins/ecommerce/products','brand','Thương hiệu','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3141,0,'vi','plugins/ecommerce/products','cannot_delete','Product could not be deleted','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3142,0,'vi','plugins/ecommerce/products','product_deleted','Product deleted','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3143,0,'vi','plugins/ecommerce/products','products','Sản phẩm','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3144,0,'vi','plugins/ecommerce/products','menu','Sản phẩm','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3145,0,'vi','plugins/ecommerce/products','control.button_add_image','Thêm hình ảnh','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3146,0,'vi','plugins/ecommerce/products','overview','Tổng quan','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3147,0,'vi','plugins/ecommerce/products','attributes','Thuộc tính','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3148,0,'vi','plugins/ecommerce/products','product_has_variations','Sản phẩm có nhiều phiên bản','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3149,0,'vi','plugins/ecommerce/products','manage_products','Quản lý danh sách sản phẩm','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3150,0,'vi','plugins/ecommerce/products','add_new_product','Tạo sản phẩm','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3151,0,'vi','plugins/ecommerce/products','start_by_adding_new_product','Bắt đầu bán hàng bằng việc thêm sản phẩm.','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3152,0,'vi','plugins/ecommerce/reports','name','Báo cáo','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3153,0,'vi','plugins/ecommerce/reports','widget.order.title','Đơn hàng','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3154,0,'vi','plugins/ecommerce/reports','count.revenue','Doanh thu hôm nay','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3155,0,'vi','plugins/ecommerce/reports','count.orders','Đơn hàng hôm nay','2021-07-26 04:16:53','2021-07-26 04:17:15'),(3156,0,'vi','plugins/ecommerce/reports','count.products','Sản phẩm','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3157,0,'vi','plugins/ecommerce/reports','count.customers','Khách hàng','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3158,0,'vi','plugins/ecommerce/reports','product_name','Tên sản phẩm','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3159,0,'vi','plugins/ecommerce/reports','quantity','Số lượng','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3160,0,'vi','plugins/ecommerce/reports','revenue_statistics','Thống kê doanh thu','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3161,0,'vi','plugins/ecommerce/reports','top_selling_products','Sản phẩm bán chạy trong tháng','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3162,0,'vi','plugins/ecommerce/review','name','Đánh giá','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3163,0,'vi','plugins/ecommerce/review','list_review','Khách hàng đánh giá','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3164,0,'vi','plugins/ecommerce/review','add_review','Thêm đánh giá','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3165,0,'vi','plugins/ecommerce/review','delete_review','Xóa đánh giá','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3166,0,'vi','plugins/ecommerce/review','create_review','Tạo đánh giá','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3167,0,'vi','plugins/ecommerce/review','please_select_rating','Chọn đánh giá','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3168,0,'vi','plugins/ecommerce/review','comment','Bình luận','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3169,0,'vi','plugins/ecommerce/review','approve','Chấp thuận','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3170,0,'vi','plugins/ecommerce/review','approved','Đã chấp thuận','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3171,0,'vi','plugins/ecommerce/review','disapprove','Không chấp thuận','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3172,0,'vi','plugins/ecommerce/review','disapproved','Đã không chấp thuận','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3173,0,'vi','plugins/ecommerce/review','product','Sản phẩm','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3174,0,'vi','plugins/ecommerce/review','user','Người dùng','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3175,0,'vi','plugins/ecommerce/review','star','Sao','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3176,0,'vi','plugins/ecommerce/review','status','Trạng thái','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3177,0,'vi','plugins/ecommerce/review','intro.title','Quản lý danh sách nhận xét của khách hàng','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3178,0,'vi','plugins/ecommerce/review','intro.description','Lưu trữ các nhận xét, đánh giá của khách hàng','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3179,0,'vi','plugins/ecommerce/shipping','name','Phí vận chuyển','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3180,0,'vi','plugins/ecommerce/shipping','shipping','Vận chuyển','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3181,0,'vi','plugins/ecommerce/shipping','title','Title','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3182,0,'vi','plugins/ecommerce/shipping','country','Quốc gia','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3183,0,'vi','plugins/ecommerce/shipping','state','State','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3184,0,'vi','plugins/ecommerce/shipping','city','City','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3185,0,'vi','plugins/ecommerce/shipping','amount','Amount','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3186,0,'vi','plugins/ecommerce/shipping','currency','Currency','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3187,0,'vi','plugins/ecommerce/shipping','enable','Enable','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3188,0,'vi','plugins/ecommerce/shipping','enabled','Enabled','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3189,0,'vi','plugins/ecommerce/shipping','disable','Disable','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3190,0,'vi','plugins/ecommerce/shipping','disabled','Disabled','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3191,0,'vi','plugins/ecommerce/shipping','create_shipping','Create a shipping','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3192,0,'vi','plugins/ecommerce/shipping','edit_shipping','Edit shipping #','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3193,0,'vi','plugins/ecommerce/shipping','status','Status','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3194,0,'vi','plugins/ecommerce/shipping','shipping_methods','Phương thức vận chuyển','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3195,0,'vi','plugins/ecommerce/shipping','create_shipping_method','Tạo phương thức vận chuyển','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3196,0,'vi','plugins/ecommerce/shipping','edit_shipping_method','Sửa phương thức vận chuyển','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3197,0,'vi','plugins/ecommerce/shipping','add_shipping_region','Thêm khu vực vận chuyển','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3198,0,'vi','plugins/ecommerce/shipping','methods.default','Default','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3199,0,'vi','plugins/ecommerce/shipping','statuses.not_approved','Not approved','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3200,0,'vi','plugins/ecommerce/shipping','statuses.approved','Approved','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3201,0,'vi','plugins/ecommerce/shipping','statuses.picking','Picking','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3202,0,'vi','plugins/ecommerce/shipping','statuses.delay_picking','Delay picking','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3203,0,'vi','plugins/ecommerce/shipping','statuses.picked','Picked','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3204,0,'vi','plugins/ecommerce/shipping','statuses.not_picked','Not picked','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3205,0,'vi','plugins/ecommerce/shipping','statuses.delivering','Delivering','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3206,0,'vi','plugins/ecommerce/shipping','statuses.delivered','Delivered','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3207,0,'vi','plugins/ecommerce/shipping','statuses.not_delivered','Not delivered','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3208,0,'vi','plugins/ecommerce/shipping','statuses.audited','Audited','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3209,0,'vi','plugins/ecommerce/shipping','statuses.canceled','Canceled','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3210,0,'vi','plugins/ecommerce/shipping','cod_statuses.pending','Pending','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3211,0,'vi','plugins/ecommerce/shipping','cod_statuses.completed','Completed','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3212,0,'vi','plugins/ecommerce/store-locator','name','Địa chỉ cửa hàng','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3213,0,'vi','plugins/ecommerce/store-locator','description','Địa chỉ này sẽ xuất hiện trên hoá đơn của bạn và sẽ được sử dụng để tính toán mức giá vận chuyển của bạn.','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3214,0,'vi','plugins/ecommerce/store-locator','shop_name','Tên cửa hàng','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3215,0,'vi','plugins/ecommerce/store-locator','phone','Điện thoại','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3216,0,'vi','plugins/ecommerce/store-locator','address','Địa chỉ','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3217,0,'vi','plugins/ecommerce/tax','name','Thuế','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3218,0,'vi','plugins/ecommerce/tax','create','Create a tax','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3219,0,'vi','plugins/ecommerce/tax','edit','Edit tax :title','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3220,0,'vi','plugins/ecommerce/tax','title','Title','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3221,0,'vi','plugins/ecommerce/tax','percentage','Percentage %','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3222,0,'vi','plugins/ecommerce/tax','priority','Priority','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3223,0,'vi','plugins/ecommerce/tax','select_tax','-- select --','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3224,0,'en','plugins/newsletter/newsletter','name','Newsletters','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3225,0,'en','plugins/newsletter/newsletter','settings.email.templates.title','Newsletter','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3226,0,'en','plugins/newsletter/newsletter','settings.email.templates.description','Config newsletter email templates','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3227,0,'en','plugins/newsletter/newsletter','settings.email.templates.to_admin.title','Email send to admin','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3228,0,'en','plugins/newsletter/newsletter','settings.email.templates.to_admin.description','Template for sending email to admin','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3229,0,'en','plugins/newsletter/newsletter','settings.email.templates.to_user.title','Email send to user','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3230,0,'en','plugins/newsletter/newsletter','settings.email.templates.to_user.description','Template for sending email to subscriber','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3231,0,'en','plugins/newsletter/newsletter','settings.title','Newsletter','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3232,0,'en','plugins/newsletter/newsletter','settings.description','Settings for newsletter','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3233,0,'en','plugins/newsletter/newsletter','settings.mailchimp_api_key','Mailchimp API Key','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3234,0,'en','plugins/newsletter/newsletter','settings.mailchimp_list_id','Mailchimp List ID','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3235,0,'en','plugins/newsletter/newsletter','settings.sendgrid_api_key','Sendgrid API Key','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3236,0,'en','plugins/newsletter/newsletter','settings.sendgrid_list_id','Sendgrid List ID','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3237,0,'en','plugins/newsletter/newsletter','statuses.subscribed','Subscribed','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3238,0,'en','plugins/newsletter/newsletter','statuses.unsubscribed','Unsubscribed','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3239,0,'en','plugins/payment/payment','payments','Payments','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3240,0,'en','plugins/payment/payment','checkout_success','Checkout successfully!','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3241,0,'en','plugins/payment/payment','view_payment','View payment #','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3242,0,'en','plugins/payment/payment','charge_id','Charge ID','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3243,0,'en','plugins/payment/payment','amount','Amount','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3244,0,'en','plugins/payment/payment','currency','Currency','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3245,0,'en','plugins/payment/payment','user','User','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3246,0,'en','plugins/payment/payment','stripe','Stripe','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3247,0,'en','plugins/payment/payment','paypal','PayPal','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3248,0,'en','plugins/payment/payment','action','Action','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3249,0,'en','plugins/payment/payment','payment_via_card','Payment via card','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3250,0,'en','plugins/payment/payment','card_number','Card number','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3251,0,'en','plugins/payment/payment','full_name','Full name','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3252,0,'en','plugins/payment/payment','payment_via_paypal','Payment via PayPal','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3253,0,'en','plugins/payment/payment','mm_yy','MM/YY','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3254,0,'en','plugins/payment/payment','cvc','CVC','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3255,0,'en','plugins/payment/payment','details','Details','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3256,0,'en','plugins/payment/payment','payer_name','Payer Name','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3257,0,'en','plugins/payment/payment','email','Email','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3258,0,'en','plugins/payment/payment','phone','Phone','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3259,0,'en','plugins/payment/payment','country','Country','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3260,0,'en','plugins/payment/payment','shipping_address','Shipping Address','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3261,0,'en','plugins/payment/payment','payment_details','Payment Details','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3262,0,'en','plugins/payment/payment','card','Card','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3263,0,'en','plugins/payment/payment','address','Address','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3264,0,'en','plugins/payment/payment','could_not_get_stripe_token','Could not get Stripe token to make a charge.','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3265,0,'en','plugins/payment/payment','payment_id','Payment ID','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3266,0,'en','plugins/payment/payment','payment_methods','Payment methods','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3267,0,'en','plugins/payment/payment','transactions','Transactions','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3268,0,'en','plugins/payment/payment','payment_methods_description','Setup payment methods for website','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3269,0,'en','plugins/payment/payment','paypal_description','Customer can buy product and pay directly via PayPal','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3270,0,'en','plugins/payment/payment','use','Use','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3271,0,'en','plugins/payment/payment','stripe_description','Customer can buy product and pay directly using Visa, Credit card via Stripe','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3272,0,'en','plugins/payment/payment','edit','Edit','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3273,0,'en','plugins/payment/payment','settings','Settings','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3274,0,'en','plugins/payment/payment','activate','Activate','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3275,0,'en','plugins/payment/payment','deactivate','Deactivate','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3276,0,'en','plugins/payment/payment','update','Update','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3277,0,'en','plugins/payment/payment','configuration_instruction','Configuration instruction for :name','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3278,0,'en','plugins/payment/payment','configuration_requirement','To use :name, you need','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3279,0,'en','plugins/payment/payment','service_registration','Register with :name','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3280,0,'en','plugins/payment/payment','after_service_registration_msg','After registration at :name, you will have Client ID, Client Secret','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3281,0,'en','plugins/payment/payment','enter_client_id_and_secret','Enter Client ID, Secret into the box in right hand','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3282,0,'en','plugins/payment/payment','method_name','Method name','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3283,0,'en','plugins/payment/payment','please_provide_information','Please provide information','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3284,0,'en','plugins/payment/payment','client_id','Client ID','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3285,0,'en','plugins/payment/payment','client_secret','Client Secret','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3286,0,'en','plugins/payment/payment','secret','Secret','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3287,0,'en','plugins/payment/payment','stripe_key','Stripe Public Key','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3288,0,'en','plugins/payment/payment','stripe_secret','Stripe Private Key','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3289,0,'en','plugins/payment/payment','stripe_after_service_registration_msg','After registration at :name, you will have Public, Secret keys','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3290,0,'en','plugins/payment/payment','stripe_enter_client_id_and_secret','Enter Public, Secret keys into the box in right hand','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3291,0,'en','plugins/payment/payment','pay_online_via','Pay online via :name','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3292,0,'en','plugins/payment/payment','sandbox_mode','Sandbox mode','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3293,0,'en','plugins/payment/payment','deactivate_payment_method','Deactivate payment method','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3294,0,'en','plugins/payment/payment','deactivate_payment_method_description','Do you really want to deactivate this payment method?','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3295,0,'en','plugins/payment/payment','agree','Agree','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3296,0,'en','plugins/payment/payment','name','Payments','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3297,0,'en','plugins/payment/payment','create','New payment','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3298,0,'en','plugins/payment/payment','go_back','Go back','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3299,0,'en','plugins/payment/payment','information','Information','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3300,0,'en','plugins/payment/payment','methods.paypal','PayPal','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3301,0,'en','plugins/payment/payment','methods.stripe','Stripe','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3302,0,'en','plugins/payment/payment','methods.cod','Cash on delivery (COD)','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3303,0,'en','plugins/payment/payment','methods.bank_transfer','Bank transfer','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3304,0,'en','plugins/payment/payment','statuses.pending','Pending','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3305,0,'en','plugins/payment/payment','statuses.completed','Completed','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3306,0,'en','plugins/payment/payment','statuses.refunding','Refunding','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3307,0,'en','plugins/payment/payment','statuses.refunded','Refunded','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3308,0,'en','plugins/payment/payment','statuses.fraud','Fraud','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3309,0,'en','plugins/payment/payment','statuses.failed','Failed','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3310,0,'en','plugins/payment/payment','payment_methods_instruction','Guide customers to pay directly. You can choose to pay by delivery or bank transfer','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3311,0,'en','plugins/payment/payment','payment_method_description','Payment guide - (Displayed on the notice of successful purchase and payment page)','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3312,0,'en','plugins/payment/payment','payment_via_cod','Cash on delivery (COD)','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3313,0,'en','plugins/payment/payment','payment_via_bank_transfer','Bank transfer','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3314,0,'en','plugins/payment/payment','payment_pending','Checkout successfully. Your payment is pending and will be checked by our staff.','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3315,0,'en','plugins/payment/payment','created_at','Created At','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3316,0,'en','plugins/payment/payment','payment_channel','Payment Channel','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3317,0,'en','plugins/payment/payment','total','Total','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3318,0,'en','plugins/payment/payment','status','Status','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3319,0,'en','plugins/payment/payment','default_payment_method','Default payment method','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3320,0,'en','plugins/payment/payment','turn_off_success','Turn off payment method successfully!','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3321,0,'en','plugins/payment/payment','saved_payment_method_success','Saved payment method successfully!','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3322,0,'en','plugins/payment/payment','saved_payment_settings_success','Saved payment settings successfully!','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3323,0,'en','plugins/payment/payment','payment_name','Name','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3324,0,'en','plugins/payment/payment','callback_url','Callback URL','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3325,0,'en','plugins/payment/payment','return_url','Return URL','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3326,0,'en','plugins/payment/payment','payment_not_found','Payment not found!','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3327,0,'en','plugins/payment/payment','refunds.title','Refunds','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3328,0,'en','plugins/payment/payment','refunds.id','ID','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3329,0,'en','plugins/payment/payment','refunds.breakdowns','Breakdowns','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3330,0,'en','plugins/payment/payment','refunds.gross_amount','Gross amount','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3331,0,'en','plugins/payment/payment','refunds.paypal_fee','PayPal fee','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3332,0,'en','plugins/payment/payment','refunds.net_amount','Net amount','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3333,0,'en','plugins/payment/payment','refunds.total_refunded_amount','Total refunded amount','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3334,0,'en','plugins/payment/payment','refunds.create_time','Create time','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3335,0,'en','plugins/payment/payment','refunds.update_time','Update time','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3336,0,'en','plugins/payment/payment','refunds.status','Status','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3337,0,'en','plugins/payment/payment','view_response_source','View response source','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3338,0,'en','plugins/payment/payment','status_is_not_completed','Status is not COMPLETED','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3339,0,'en','plugins/payment/payment','cannot_found_capture_id','Can not found capture id with payment detail','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3340,0,'vi','plugins/payment/payment','payments','Thanh toán','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3341,0,'vi','plugins/payment/payment','checkout_success','Thanh toán thành công!','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3342,0,'vi','plugins/payment/payment','view_payment','Xem thanh toán #','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3343,0,'vi','plugins/payment/payment','charge_id','Mã thanh toán','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3344,0,'vi','plugins/payment/payment','amount','Số tiền','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3345,0,'vi','plugins/payment/payment','currency','Loại tiền tệ','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3346,0,'vi','plugins/payment/payment','user','Người dùng','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3347,0,'vi','plugins/payment/payment','stripe','Stripe','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3348,0,'vi','plugins/payment/payment','paypal','PayPal','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3349,0,'vi','plugins/payment/payment','action','Hành động','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3350,0,'vi','plugins/payment/payment','payment_via_card','Thanh toán qua thẻ','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3351,0,'vi','plugins/payment/payment','card_number','Số thẻ','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3352,0,'vi','plugins/payment/payment','full_name','Họ tên','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3353,0,'vi','plugins/payment/payment','payment_via_paypal','Thanh toán qua PayPal','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3354,0,'vi','plugins/payment/payment','mm_yy','MM/YY','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3355,0,'vi','plugins/payment/payment','cvc','CVC','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3356,0,'vi','plugins/payment/payment','details','Chi tiết','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3357,0,'vi','plugins/payment/payment','payer_name','Tên người mua','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3358,0,'vi','plugins/payment/payment','email','Email','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3359,0,'vi','plugins/payment/payment','phone','Điện thoại','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3360,0,'vi','plugins/payment/payment','country','Quốc gia','2021-07-26 04:16:54','2021-07-26 04:17:15'),(3361,0,'vi','plugins/payment/payment','shipping_address','Địa chỉ giao hàng','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3362,0,'vi','plugins/payment/payment','payment_details','Chi tiết thanh toán','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3363,0,'vi','plugins/payment/payment','card','Thẻ','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3364,0,'vi','plugins/payment/payment','address','Địa chỉ','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3365,0,'vi','plugins/payment/payment','could_not_get_stripe_token','Không thể lấy mã Stripe để thanh toán.','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3366,0,'vi','plugins/payment/payment','payment_id','Mã thanh toán','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3367,0,'vi','plugins/payment/payment','payment_methods','Phương thức thanh toán','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3368,0,'vi','plugins/payment/payment','transactions','Lịch sử giao dịch','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3369,0,'vi','plugins/payment/payment','payment_methods_description','Cài đặt các phương thức thanh toán cho website','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3370,0,'vi','plugins/payment/payment','paypal_description','Khách hàng có thể mua hàng và thanh toán trực tiếp thông qua cổng thanh toán PayPal','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3371,0,'vi','plugins/payment/payment','use','Dùng','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3372,0,'vi','plugins/payment/payment','stripe_description','Khách hàng có thể mua hàng và thanh toán bằng Visa, Credit card thông qua cổng thanh toán Stripe','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3373,0,'vi','plugins/payment/payment','edit','Chỉnh sửa','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3374,0,'vi','plugins/payment/payment','settings','Cài đặt','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3375,0,'vi','plugins/payment/payment','activate','Kích hoạt','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3376,0,'vi','plugins/payment/payment','deactivate','Huỷ kích hoạt','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3377,0,'vi','plugins/payment/payment','update','Cập nhật','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3378,0,'vi','plugins/payment/payment','configuration_instruction','Hướng dẫn cấu hình :name','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3379,0,'vi','plugins/payment/payment','configuration_requirement','Để sử dụng :name bạn cần','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3380,0,'vi','plugins/payment/payment','service_registration','Đăng ký dịch vụ với :name','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3381,0,'vi','plugins/payment/payment','after_service_registration_msg','Sau khi hoàn tất các bước đăng ký tại :name, bạn sẽ có các thông số Client ID, Client Secret','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3382,0,'vi','plugins/payment/payment','enter_client_id_and_secret','Nhập các thông số Client ID, Secret vào ô bên phải','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3383,0,'vi','plugins/payment/payment','method_name','Tên phương thức','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3384,0,'vi','plugins/payment/payment','please_provide_information','Xin vui lòng cung cấp thông tin','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3385,0,'vi','plugins/payment/payment','client_id','Client ID','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3386,0,'vi','plugins/payment/payment','client_secret','Client Secret','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3387,0,'vi','plugins/payment/payment','stripe_key','Stripe Key','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3388,0,'vi','plugins/payment/payment','stripe_secret','Stripe Secret','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3389,0,'vi','plugins/payment/payment','stripe_after_service_registration_msg','After registration at :name, you will have Public, Secret keys','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3390,0,'vi','plugins/payment/payment','stripe_enter_client_id_and_secret','Enter Public, Secret keys into the box in right hand','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3391,0,'vi','plugins/payment/payment','secret','Secret','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3392,0,'vi','plugins/payment/payment','pay_online_via','Thanh toán online qua :name','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3393,0,'vi','plugins/payment/payment','sandbox_mode','Chế độ thử nghiệm','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3394,0,'vi','plugins/payment/payment','deactivate_payment_method','Huỷ kích hoạt phương thức','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3395,0,'vi','plugins/payment/payment','deactivate_payment_method_description','Bạn có chắc chắn muốn huỷ phương thức thành toán này?','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3396,0,'vi','plugins/payment/payment','agree','Đồng ý','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3397,0,'vi','plugins/payment/payment','name','Thanh toán','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3398,0,'vi','plugins/payment/payment','create','Thêm thanh toán mới','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3399,0,'vi','plugins/payment/payment','go_back','Trở lại','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3400,0,'vi','plugins/payment/payment','information','Thông tin','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3401,0,'vi','plugins/payment/payment','methods.paypal','PayPal','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3402,0,'vi','plugins/payment/payment','methods.stripe','Stripe','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3403,0,'vi','plugins/payment/payment','methods.cod','Thanh toán khi giao hàng (COD)','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3404,0,'vi','plugins/payment/payment','methods.bank_transfer','Chuyển khoản qua ngân hàng','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3405,0,'vi','plugins/payment/payment','statuses.pending','Chưa hoàn tất','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3406,0,'vi','plugins/payment/payment','statuses.completed','Đã hoàn thành','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3407,0,'vi','plugins/payment/payment','statuses.refunding','Đang hoàn tiền','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3408,0,'vi','plugins/payment/payment','statuses.refunded','Đã hoàn tiền','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3409,0,'vi','plugins/payment/payment','statuses.fraud','Gian lận','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3410,0,'vi','plugins/payment/payment','statuses.failed','Thất bại','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3411,0,'vi','plugins/payment/payment','payment_methods_instruction','Hướng dẫn khách hàng thanh toán trực tiếp. Có thể chọn thanh toán khi giao hàng hoặc chuyển khoản','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3412,0,'vi','plugins/payment/payment','payment_method_description','Hướng dẫn thanh toán – (Hiển thị ở trang thông báo mua hàng thành công và trang thanh toán)','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3413,0,'vi','plugins/payment/payment','payment_via_cod','Thanh toán khi nhận hàng (COD)','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3414,0,'vi','plugins/payment/payment','payment_via_bank_transfer','Chuyển khoản qua ngân hàng','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3415,0,'vi','plugins/payment/payment','payment_pending','Thực hiện thành công. Thanh toán của bạn đang được xử lý và sẽ được xác nhận bởi nhân viên.','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3416,0,'vi','plugins/payment/payment','created_at','Ngày tạo','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3417,0,'vi','plugins/payment/payment','payment_channel','Phương thức thanh toán','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3418,0,'vi','plugins/payment/payment','total','Tổng cộng','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3419,0,'vi','plugins/payment/payment','status','Trạng thái','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3420,0,'vi','plugins/payment/payment','default_payment_method','Phương thức thanh toán mặc định','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3421,0,'en','plugins/simple-slider/simple-slider','create','New slider','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3422,0,'en','plugins/simple-slider/simple-slider','edit','Edit slider','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3423,0,'en','plugins/simple-slider/simple-slider','menu','Simple sliders','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3424,0,'en','plugins/simple-slider/simple-slider','settings.title','Simple sliders','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3425,0,'en','plugins/simple-slider/simple-slider','settings.description','Settings for Simple sliders','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3426,0,'en','plugins/simple-slider/simple-slider','settings.using_assets','Using default assets?','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3427,0,'en','plugins/simple-slider/simple-slider','settings.using_assets_description','If using assets option is enabled then below scripts will be auto added to front site.','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3428,0,'en','plugins/simple-slider/simple-slider','add_new','Add new','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3429,0,'en','plugins/simple-slider/simple-slider','save_sorting','Save sorting','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3430,0,'en','plugins/simple-slider/simple-slider','key','Key','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3431,0,'en','plugins/simple-slider/simple-slider','slide_items','Slide Items','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3432,0,'en','plugins/simple-slider/simple-slider','update_slide_position_success','Updated slide position successfully!','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3433,0,'en','plugins/simple-slider/simple-slider','create_new_slide','Create a new slide','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3434,0,'en','plugins/simple-slider/simple-slider','edit_slide','Edit slide #:id','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3435,0,'en','plugins/simple-slider/simple-slider','simple_slider_shortcode_name','Simple Slider','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3436,0,'en','plugins/simple-slider/simple-slider','simple_slider_shortcode_description','Add a simple slider','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3437,0,'en','plugins/simple-slider/simple-slider','select_slider','Select a slider','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3438,0,'en','plugins/social-login/social-login','settings.title','Social Login settings','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3439,0,'en','plugins/social-login/social-login','settings.description','Configure social login options','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3440,0,'en','plugins/social-login/social-login','settings.facebook.title','Facebook login settings','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3441,0,'en','plugins/social-login/social-login','settings.facebook.description','Enable/disable & configure app credentials for Facebook login','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3442,0,'en','plugins/social-login/social-login','settings.facebook.app_id','App ID','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3443,0,'en','plugins/social-login/social-login','settings.facebook.app_secret','App Secret','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3444,0,'en','plugins/social-login/social-login','settings.facebook.helper','Please go to https://developers.facebook.com to create new app update App ID, App Secret. Callback URL is :callback','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3445,0,'en','plugins/social-login/social-login','settings.google.title','Google login settings','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3446,0,'en','plugins/social-login/social-login','settings.google.description','Enable/disable & configure app credentials for Google login','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3447,0,'en','plugins/social-login/social-login','settings.google.app_id','App ID','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3448,0,'en','plugins/social-login/social-login','settings.google.app_secret','App Secret','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3449,0,'en','plugins/social-login/social-login','settings.google.helper','Please go to https://console.developers.google.com/apis/dashboard to create new app update App ID, App Secret. Callback URL is :callback','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3450,0,'en','plugins/social-login/social-login','settings.github.title','Github login settings','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3451,0,'en','plugins/social-login/social-login','settings.github.description','Enable/disable & configure app credentials for Github login','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3452,0,'en','plugins/social-login/social-login','settings.github.app_id','App ID','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3453,0,'en','plugins/social-login/social-login','settings.github.app_secret','App Secret','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3454,0,'en','plugins/social-login/social-login','settings.github.helper','Please go to https://github.com/settings/developers to create new app update App ID, App Secret. Callback URL is :callback','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3455,0,'en','plugins/social-login/social-login','settings.linkedin.title','Linkedin login settings','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3456,0,'en','plugins/social-login/social-login','settings.linkedin.description','Enable/disable & configure app credentials for Linkedin login','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3457,0,'en','plugins/social-login/social-login','settings.linkedin.app_id','App ID','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3458,0,'en','plugins/social-login/social-login','settings.linkedin.app_secret','App Secret','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3459,0,'en','plugins/social-login/social-login','settings.linkedin.helper','Please go to https://www.linkedin.com/developers/apps/new to create new app update App ID, App Secret. Callback URL is :callback','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3460,0,'en','plugins/social-login/social-login','settings.enable','Enable?','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3461,0,'en','plugins/social-login/social-login','menu','Social Login','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3462,0,'en','plugins/testimonial/testimonial','name','Testimonials','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3463,0,'en','plugins/testimonial/testimonial','create','New testimonial','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3464,0,'en','plugins/testimonial/testimonial','edit','Edit testimonial','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3465,0,'en','plugins/testimonial/testimonial','company','Position/Company','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3466,0,'vi','plugins/testimonial/testimonial','name','Nhận xét của khách hàng','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3467,0,'vi','plugins/testimonial/testimonial','create','Thêm nhận xét mới','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3468,0,'vi','plugins/testimonial/testimonial','edit','Sửa nhận xét','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3469,0,'vi','plugins/testimonial/testimonial','company','Chức vụ/Công ty','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3470,0,'en','plugins/testimonials/forms','name','Customer name','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3471,0,'en','plugins/testimonials/forms','company','Company/Working place','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3472,0,'en','plugins/testimonials/forms','avatar','Avatar','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3473,0,'en','plugins/testimonials/forms','title','Title','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3474,0,'en','plugins/testimonials/forms','content','Content','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3475,0,'en','plugins/testimonials/forms','publish','Publish','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3476,0,'en','plugins/testimonials/forms','unpublish','Unpublish','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3477,0,'en','plugins/testimonials/testimonials','name','Testimonials','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3478,0,'en','plugins/testimonials/testimonials','create','New testimonials','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3479,0,'en','plugins/testimonials/testimonials','edit','Edit testimonials','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3480,0,'vi','plugins/testimonials/forms','name','Tên khách hàng','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3481,0,'vi','plugins/testimonials/forms','company','Công ty/Nơi làm việc','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3482,0,'vi','plugins/testimonials/forms','avatar','Avatar','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3483,0,'vi','plugins/testimonials/forms','title','Tiêu đề','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3484,0,'vi','plugins/testimonials/forms','content','Nội dung','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3485,0,'vi','plugins/testimonials/forms','publish','Xuất bản','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3486,0,'vi','plugins/testimonials/forms','unpublish','Không xuất bản','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3487,0,'vi','plugins/testimonials/testimonials','name','Nhận xét khách hàng','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3488,0,'vi','plugins/testimonials/testimonials','create','Tạo mới','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3489,0,'vi','plugins/testimonials/testimonials','edit','Sửa nhận xét','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3490,0,'en','plugins/translation/translation','translations','Translations','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3491,0,'en','plugins/translation/translation','translations_description','Translate all words in system.','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3492,0,'en','plugins/translation/translation','export_warning','Warning, translations are not visible until they are exported back to the resources/lang file, using \'php artisan cms:translations:export\' command or publish button.','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3493,0,'en','plugins/translation/translation','import_done','Done importing, processed :counter items! Reload this page to refresh the groups!','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3494,0,'en','plugins/translation/translation','translation_manager','Translations Manager','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3495,0,'en','plugins/translation/translation','done_publishing','Done publishing the translations for group','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3496,0,'en','plugins/translation/translation','append_translation','Append new translations','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3497,0,'en','plugins/translation/translation','replace_translation','Replace existing translations','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3498,0,'en','plugins/translation/translation','import_group','Import group','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3499,0,'en','plugins/translation/translation','confirm_publish_group','Are you sure you want to publish the translations group \":group\"? This will overwrite existing language files.','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3500,0,'en','plugins/translation/translation','publish_translations','Publish translations','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3501,0,'en','plugins/translation/translation','back','Back','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3502,0,'en','plugins/translation/translation','edit_title','Enter translation','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3503,0,'en','plugins/translation/translation','choose_group_msg','Choose a group to display the group translations. If no groups are visible, make sure you have imported the translations.','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3504,0,'en','plugins/translation/translation','choose_a_group','Choose a group','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3505,0,'en','plugins/translation/translation','locales','Locales','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3506,0,'en','plugins/translation/translation','theme-translations','Theme translations','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3507,0,'en','plugins/translation/translation','admin-translations','Other translations','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3508,0,'en','plugins/translation/translation','translate_from','Translate from','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3509,0,'en','plugins/translation/translation','to','to','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3510,0,'en','plugins/translation/translation','no_other_languages','No other language to translate!','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3511,0,'en','plugins/translation/translation','edit','Edit','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3512,0,'en','plugins/translation/translation','locale','Locale','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3513,0,'en','plugins/translation/translation','locale_placeholder','Ex: en','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3514,0,'en','plugins/translation/translation','name','Name','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3515,0,'en','plugins/translation/translation','default_locale','Default locale?','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3516,0,'en','plugins/translation/translation','actions','Actions','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3517,0,'en','plugins/translation/translation','choose_language','Choose language','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3518,0,'en','plugins/translation/translation','add_new_language','Add new language','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3519,0,'en','plugins/translation/translation','select_language','Select language','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3520,0,'en','plugins/translation/translation','flag','Flag','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3521,0,'en','plugins/translation/translation','folder_is_not_writeable','Cannot write files! Folder /resources/lang is not writable. Please chmod to make it writable!','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3522,0,'en','plugins/translation/translation','delete','Delete','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3523,0,'en','plugins/translation/translation','confirm_delete_message','Do you really want to delete this locale? It will delete all files/folders for this local in /resources/lang!','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3524,0,'en','plugins/translation/translation','download','Download','2021-07-26 04:16:55','2021-07-26 04:17:15'),(3525,0,'vi','auth','failed','Không tìm thấy thông tin đăng nhập hợp lệ.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3526,0,'vi','auth','throttle','Đăng nhập không đúng quá nhiều lần. Vui lòng thử lại sau :seconds giây.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3527,0,'vi','auth','password','Mật khẩu không chính xác','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3528,0,'vi','pagination','previous','&laquo; Trước','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3529,0,'vi','pagination','next','Sau &raquo;','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3530,0,'vi','passwords','reset','Mật khẩu đã được cập nhật!','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3531,0,'vi','passwords','sent','Chúng tôi đã gửi cho bạn đường dẫn thay đổi mật khẩu!','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3532,0,'vi','passwords','token','Mã xác nhận mật khẩu không hợp lệ.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3533,0,'vi','passwords','user','Không tìm thấy thành viên với địa chỉ email này.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3534,0,'vi','validation','accepted','Trường :attribute phải được chấp nhận.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3535,0,'vi','validation','active_url','Trường :attribute không phải là một URL hợp lệ.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3536,0,'vi','validation','after','Trường :attribute phải là một ngày sau ngày :date.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3537,0,'vi','validation','after_or_equal','Trường :attribute phải là thời gian bắt đầu sau hoặc đúng bằng :date.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3538,0,'vi','validation','alpha','Trường :attribute chỉ có thể chứa các chữ cái.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3539,0,'vi','validation','alpha_dash','Trường :attribute chỉ có thể chứa chữ cái, số và dấu gạch ngang.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3540,0,'vi','validation','alpha_num','Trường :attribute chỉ có thể chứa chữ cái và số.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3541,0,'vi','validation','array','Trường :attribute phải là dạng mảng.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3542,0,'vi','validation','before','Trường :attribute phải là một ngày trước ngày :date.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3543,0,'vi','validation','before_or_equal','Trường :attribute phải là thời gian bắt đầu trước hoặc đúng bằng :date.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3544,0,'vi','validation','between.array','Trường :attribute phải có từ :min - :max phần tử.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3545,0,'vi','validation','between.file','Dung lượng tập tin trong trường :attribute phải từ :min - :max kB.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3546,0,'vi','validation','between.numeric','Trường :attribute phải nằm trong khoảng :min - :max.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3547,0,'vi','validation','between.string','Trường :attribute phải từ :min - :max kí tự.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3548,0,'vi','validation','boolean','Trường :attribute phải là true hoặc false.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3549,0,'vi','validation','confirmed','Giá trị xác nhận trong trường :attribute không khớp.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3550,0,'vi','validation','date','Trường :attribute không phải là định dạng của ngày-tháng.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3551,0,'vi','validation','date_equals','Trường :attribute phải là một ngày bằng với :date.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3552,0,'vi','validation','date_format','Trường :attribute không giống với định dạng :format.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3553,0,'vi','validation','different','Trường :attribute và :other phải khác nhau.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3554,0,'vi','validation','digits','Độ dài của trường :attribute phải gồm :digits chữ số.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3555,0,'vi','validation','digits_between','Độ dài của trường :attribute phải nằm trong khoảng :min and :max chữ số.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3556,0,'vi','validation','dimensions','Trường :attribute có kích thước không hợp lệ.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3557,0,'vi','validation','distinct','Trường :attribute có giá trị trùng lặp.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3558,0,'vi','validation','email','Trường :attribute phải là một địa chỉ email hợp lệ.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3559,0,'vi','validation','ends_with','Trường :attribute phải kết thúc bằng một trong những giá trị sau: :values','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3560,0,'vi','validation','exists','Giá trị đã chọn trong trường :attribute không hợp lệ.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3561,0,'vi','validation','file','Trường :attribute phải là một tệp tin.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3562,0,'vi','validation','filled','Trường :attribute không được bỏ trống.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3563,0,'vi','validation','gt.array','Mảng :attribute phải có nhiều hơn :value phần tử.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3564,0,'vi','validation','gt.file','Dung lượng trường :attribute phải lớn hơn :value kilobytes.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3565,0,'vi','validation','gt.numeric','Giá trị trường :attribute phải lớn hơn :value.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3566,0,'vi','validation','gt.string','Độ dài trường :attribute phải nhiều hơn :value kí tự.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3567,0,'vi','validation','gte.array','Mảng :attribute phải có ít nhất :value phần tử.','2021-07-26 04:16:55','2021-07-26 04:17:14'),(3568,0,'vi','validation','gte.file','Dung lượng trường :attribute phải lớn hơn hoặc bằng :value kilobytes.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3569,0,'vi','validation','gte.numeric','Giá trị trường :attribute phải lớn hơn hoặc bằng :value.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3570,0,'vi','validation','gte.string','Độ dài trường :attribute phải lớn hơn hoặc bằng :value kí tự.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3571,0,'vi','validation','image','Trường :attribute phải là định dạng hình ảnh.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3572,0,'vi','validation','in','Giá trị đã chọn trong trường :attribute không hợp lệ.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3573,0,'vi','validation','in_array','Trường :attribute phải thuộc tập cho phép: :other.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3574,0,'vi','validation','integer','Trường :attribute phải là một số nguyên.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3575,0,'vi','validation','ip','Trường :attribute phải là một địa chỉ IP.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3576,0,'vi','validation','ipv4','Trường :attribute phải là một địa chỉ IPv4.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3577,0,'vi','validation','ipv6','Trường :attribute phải là một địa chỉ IPv6.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3578,0,'vi','validation','json','Trường :attribute phải là một chuỗi JSON.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3579,0,'vi','validation','lt.array','Mảng :attribute phải có ít hơn :value phần tử.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3580,0,'vi','validation','lt.file','Dung lượng trường :attribute phải nhỏ hơn :value kilobytes.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3581,0,'vi','validation','lt.numeric','Giá trị trường :attribute phải nhỏ hơn :value.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3582,0,'vi','validation','lt.string','Độ dài trường :attribute phải nhỏ hơn :value kí tự.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3583,0,'vi','validation','lte.array','Mảng :attribute không được có nhiều hơn :value phần tử.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3584,0,'vi','validation','lte.file','Dung lượng trường :attribute phải nhỏ hơn hoặc bằng :value kilobytes.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3585,0,'vi','validation','lte.numeric','Giá trị trường :attribute phải nhỏ hơn hoặc bằng :value.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3586,0,'vi','validation','lte.string','Độ dài trường :attribute phải nhỏ hơn hoặc bằng :value kí tự.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3587,0,'vi','validation','max.array','Trường :attribute không được lớn hơn :max phần tử.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3588,0,'vi','validation','max.file','Dung lượng tập tin trong trường :attribute không được lớn hơn :max kB.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3589,0,'vi','validation','max.numeric','Trường :attribute không được lớn hơn :max.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3590,0,'vi','validation','max.string','Trường :attribute không được lớn hơn :max kí tự.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3591,0,'vi','validation','mimes','Trường :attribute phải là một tập tin có định dạng: :values.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3592,0,'vi','validation','mimetypes','Trường :attribute phải là một tập tin có định dạng: :values.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3593,0,'vi','validation','min.array','Trường :attribute phải có tối thiểu :min phần tử.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3594,0,'vi','validation','min.file','Dung lượng tập tin trong trường :attribute phải tối thiểu :min kB.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3595,0,'vi','validation','min.numeric','Trường :attribute phải tối thiểu là :min.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3596,0,'vi','validation','min.string','Trường :attribute phải có tối thiểu :min kí tự.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3597,0,'vi','validation','multiple_of','Trường :attribute phải là bội số của :value','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3598,0,'vi','validation','not_in','Giá trị đã chọn trong trường :attribute không hợp lệ.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3599,0,'vi','validation','not_regex','Trường :attribute có định dạng không hợp lệ.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3600,0,'vi','validation','numeric','Trường :attribute phải là một số.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3601,0,'vi','validation','password','Mật khẩu không đúng.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3602,0,'vi','validation','present','Trường :attribute phải được cung cấp.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3603,0,'vi','validation','prohibited','Trường :attribute bị cấm.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3604,0,'vi','validation','prohibited_if','Trường :attribute bị cấm khi :other là :value.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3605,0,'vi','validation','prohibited_unless','Trường :attribute bị cấm trừ khi :other là một trong :values.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3606,0,'vi','validation','regex','Trường :attribute có định dạng không hợp lệ.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3607,0,'vi','validation','required','Trường :attribute không được bỏ trống.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3608,0,'vi','validation','required_if','Trường :attribute không được bỏ trống khi trường :other là :value.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3609,0,'vi','validation','required_unless','Trường :attribute không được bỏ trống trừ khi :other là :values.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3610,0,'vi','validation','required_with','Trường :attribute không được bỏ trống khi một trong :values có giá trị.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3611,0,'vi','validation','required_with_all','Trường :attribute không được bỏ trống khi tất cả :values có giá trị.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3612,0,'vi','validation','required_without','Trường :attribute không được bỏ trống khi một trong :values không có giá trị.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3613,0,'vi','validation','required_without_all','Trường :attribute không được bỏ trống khi tất cả :values không có giá trị.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3614,0,'vi','validation','same','Trường :attribute và :other phải giống nhau.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3615,0,'vi','validation','size.array','Trường :attribute phải chứa :size phần tử.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3616,0,'vi','validation','size.file','Dung lượng tập tin trong trường :attribute phải bằng :size kB.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3617,0,'vi','validation','size.numeric','Trường :attribute phải bằng :size.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3618,0,'vi','validation','size.string','Trường :attribute phải chứa :size kí tự.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3619,0,'vi','validation','starts_with','Trường :attribute phải được bắt đầu bằng một trong những giá trị sau: :values','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3620,0,'vi','validation','string','Trường :attribute phải là một chuỗi kí tự.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3621,0,'vi','validation','timezone','Trường :attribute phải là một múi giờ hợp lệ.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3622,0,'vi','validation','unique','Trường :attribute đã có trong cơ sở dữ liệu.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3623,0,'vi','validation','uploaded','Trường :attribute tải lên thất bại.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3624,0,'vi','validation','url','Trường :attribute không giống với định dạng một URL.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3625,0,'vi','validation','uuid','Trường :attribute phải là một chuỗi UUID hợp lệ.','2021-07-26 04:16:56','2021-07-26 04:17:14'),(3626,0,'vi','validation','custom.attribute-name.rule-name','custom-message','2021-07-26 04:16:56','2021-07-26 04:17:14');
/*!40000 ALTER TABLE `translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_meta`
--

DROP TABLE IF EXISTS `user_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_meta` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `value` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_meta_user_id_index` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_meta`
--

LOCK TABLES `user_meta` WRITE;
/*!40000 ALTER TABLE `user_meta` DISABLE KEYS */;
/*!40000 ALTER TABLE `user_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `users`
--

DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `users` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email_verified_at` timestamp NULL DEFAULT NULL,
  `password` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `first_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `last_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `username` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `avatar_id` int(10) unsigned DEFAULT NULL,
  `super_user` tinyint(1) NOT NULL DEFAULT '0',
  `manage_supers` tinyint(1) NOT NULL DEFAULT '0',
  `permissions` text COLLATE utf8mb4_unicode_ci,
  `last_login` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `users_email_unique` (`email`),
  UNIQUE KEY `users_username_unique` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `users`
--

LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (1,'admin@botble.com',NULL,'$2y$10$RVGBHAwqJgELH4UAz281S.MWnCyoJ3eVARla8I41rdFlPCK8umWR6',NULL,'2021-07-02 21:03:29','2021-07-02 21:03:29','System','Admin','botble',NULL,1,1,NULL,NULL);
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `widgets`
--

DROP TABLE IF EXISTS `widgets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `widgets` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `widget_id` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `sidebar_id` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `theme` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `position` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `data` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `widgets`
--

LOCK TABLES `widgets` WRITE;
/*!40000 ALTER TABLE `widgets` DISABLE KEYS */;
INSERT INTO `widgets` VALUES (1,'CustomMenuWidget','footer_sidebar','shopwise',1,'{\"id\":\"CustomMenuWidget\",\"name\":\"Useful Links\",\"menu_id\":\"useful-links\"}','2021-07-02 21:03:29','2021-07-02 21:03:29'),(2,'CustomMenuWidget','footer_sidebar','shopwise',2,'{\"id\":\"CustomMenuWidget\",\"name\":\"Categories\",\"menu_id\":\"categories\"}','2021-07-02 21:03:29','2021-07-02 21:03:29'),(3,'CustomMenuWidget','footer_sidebar','shopwise',3,'{\"id\":\"CustomMenuWidget\",\"name\":\"My Account\",\"menu_id\":\"my-account\"}','2021-07-02 21:03:29','2021-07-02 21:03:29');
/*!40000 ALTER TABLE `widgets` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2021-07-26 18:17:16
