-- MySQL dump 10.13  Distrib 8.0.28, for macos10.15 (x86_64)
--
-- Host: localhost    Database: hasa
-- ------------------------------------------------------
-- Server version	8.0.28

/*!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 */;
/*!50503 SET NAMES utf8mb4 */;
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `activations` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int unsigned NOT NULL,
  `code` varchar(120) CHARACTER SET utf8mb4 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=2 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,'L0wOdl7VJPAKB4HLnytvztTo6WlO7bId',1,'2022-01-03 21:19:40','2022-01-03 21:19:40','2022-01-03 21:19:40');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `audit_histories` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int unsigned NOT NULL,
  `module` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `request` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `action` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_agent` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `ip_address` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `reference_user` int unsigned NOT NULL,
  `reference_id` int unsigned NOT NULL,
  `reference_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(20) CHARACTER SET utf8mb4 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `categories` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent_id` int unsigned NOT NULL DEFAULT '0',
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `author_id` int NOT NULL,
  `author_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  `icon` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order` tinyint NOT NULL DEFAULT '0',
  `is_featured` tinyint NOT NULL DEFAULT '0',
  `is_default` tinyint unsigned NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `categories_parent_id_status_created_at_index` (`parent_id`,`status`,`created_at`)
) 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,'Consequatur illo exercitationem ducimus ratione est in modi. Dolores quibusdam dolorem aperiam quae. Quae ullam officia ullam ut natus.','published',1,'Botble\\ACL\\Models\\User',NULL,0,0,1,'2022-01-03 21:19:40','2022-01-03 21:19:40'),(2,'Fashion',0,'Omnis maiores asperiores sit dolorem molestias suscipit optio. Aut excepturi possimus eos dolorem quasi porro.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2022-01-03 21:19:40','2022-01-03 21:19:40'),(3,'Electronic',0,'Voluptatem sunt repellendus unde quis. Est aut iste magnam saepe aut dolores. Rerum blanditiis ipsum non numquam dolorum veniam. Atque accusantium sit quia aut est repudiandae earum.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2022-01-03 21:19:40','2022-01-03 21:19:40'),(4,'Commercial',0,'Sunt doloremque totam tenetur fugiat quasi vel libero. Voluptatibus dolorum eveniet architecto. Sapiente illo fugiat asperiores nostrum eos. Tenetur doloribus reiciendis sit ipsam temporibus.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2022-01-03 21:19:40','2022-01-03 21:19:40');
/*!40000 ALTER TABLE `categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `categories_translations`
--

DROP TABLE IF EXISTS `categories_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `categories_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `categories_id` int NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`categories_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `categories_translations`
--

LOCK TABLES `categories_translations` WRITE;
/*!40000 ALTER TABLE `categories_translations` DISABLE KEYS */;
INSERT INTO `categories_translations` VALUES ('vi',1,'Thương mại điện tử',NULL),('vi',2,'Thời trang',NULL),('vi',3,'Điện tử',NULL),('vi',4,'Thương mại',NULL);
/*!40000 ALTER TABLE `categories_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cities`
--

DROP TABLE IF EXISTS `cities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cities` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `state_id` int unsigned NOT NULL,
  `country_id` int unsigned DEFAULT NULL,
  `record_id` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order` tinyint NOT NULL DEFAULT '0',
  `is_default` tinyint unsigned NOT NULL DEFAULT '0',
  `status` varchar(60) CHARACTER SET utf8mb4 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 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cities`
--

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

--
-- Table structure for table `cities_backup`
--

DROP TABLE IF EXISTS `cities_backup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cities_backup` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `state_id` int unsigned NOT NULL,
  `country_id` int unsigned DEFAULT NULL,
  `record_id` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order` tinyint NOT NULL DEFAULT '0',
  `is_default` tinyint unsigned NOT NULL DEFAULT '0',
  `status` varchar(60) CHARACTER SET utf8mb4 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 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cities_backup`
--

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

--
-- Table structure for table `cities_translations`
--

DROP TABLE IF EXISTS `cities_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cities_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `cities_id` int NOT NULL,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`cities_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cities_translations`
--

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

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

DROP TABLE IF EXISTS `contact_replies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_replies` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `message` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `contact_id` int 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contacts` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `phone` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `subject` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 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 `countries`
--

DROP TABLE IF EXISTS `countries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `countries` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `nationality` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order` tinyint NOT NULL DEFAULT '0',
  `is_default` tinyint unsigned NOT NULL DEFAULT '0',
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `code` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci 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 `countries`
--

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

--
-- Table structure for table `countries_backup`
--

DROP TABLE IF EXISTS `countries_backup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `countries_backup` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `nationality` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `order` tinyint NOT NULL DEFAULT '0',
  `is_default` tinyint unsigned NOT NULL DEFAULT '0',
  `status` varchar(60) CHARACTER SET utf8mb4 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 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `countries_backup`
--

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

--
-- Table structure for table `countries_translations`
--

DROP TABLE IF EXISTS `countries_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `countries_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `countries_id` int NOT NULL,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `nationality` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`countries_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `countries_translations`
--

LOCK TABLES `countries_translations` WRITE;
/*!40000 ALTER TABLE `countries_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `countries_translations` 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `dashboard_widget_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `settings` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `user_id` int unsigned NOT NULL,
  `widget_id` int unsigned NOT NULL,
  `order` tinyint unsigned NOT NULL DEFAULT '0',
  `status` tinyint 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `dashboard_widgets` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci 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 `dashboard_widgets`
--

LOCK TABLES `dashboard_widgets` WRITE;
/*!40000 ALTER TABLE `dashboard_widgets` DISABLE KEYS */;
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_brands` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `website` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `logo` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `order` tinyint unsigned NOT NULL DEFAULT '0',
  `is_featured` tinyint 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,'2022-01-03 21:19:20','2022-01-03 21:19:20'),(2,'Hand crafted',NULL,NULL,'brands/2.png','published',1,1,'2022-01-03 21:19:20','2022-01-03 21:19:20'),(3,'Mestonix',NULL,NULL,'brands/3.png','published',2,1,'2022-01-03 21:19:20','2022-01-03 21:19:20'),(4,'Sunshine',NULL,NULL,'brands/4.png','published',3,1,'2022-01-03 21:19:20','2022-01-03 21:19:20'),(5,'Pure',NULL,NULL,'brands/5.png','published',4,1,'2022-01-03 21:19:20','2022-01-03 21:19:20'),(6,'Anfold',NULL,NULL,'brands/6.png','published',5,1,'2022-01-03 21:19:20','2022-01-03 21:19:20'),(7,'Automotive',NULL,NULL,'brands/7.png','published',6,1,'2022-01-03 21:19:20','2022-01-03 21:19:20');
/*!40000 ALTER TABLE `ec_brands` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_brands_translations`
--

DROP TABLE IF EXISTS `ec_brands_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_brands_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `ec_brands_id` int NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`ec_brands_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_brands_translations`
--

LOCK TABLES `ec_brands_translations` WRITE;
/*!40000 ALTER TABLE `ec_brands_translations` DISABLE KEYS */;
INSERT INTO `ec_brands_translations` VALUES ('vi',1,'Fashion live',NULL),('vi',2,'Hand crafted',NULL),('vi',3,'Mestonix',NULL),('vi',4,'Sunshine',NULL),('vi',5,'Pure',NULL),('vi',6,'Anfold',NULL),('vi',7,'Automotive',NULL);
/*!40000 ALTER TABLE `ec_brands_translations` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `ec_cart`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_cart` (
  `identifier` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `instance` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` longtext CHARACTER SET utf8mb4 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_currencies` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `symbol` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_prefix_symbol` tinyint unsigned NOT NULL DEFAULT '0',
  `decimals` tinyint unsigned DEFAULT '0',
  `order` int unsigned DEFAULT '0',
  `is_default` tinyint 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,'2022-01-03 21:19:20','2022-01-03 21:19:20'),(2,'EUR','€',0,2,1,0,0.84,'2022-01-03 21:19:20','2022-01-03 21:19:20'),(3,'VND','₫',0,0,2,0,23203,'2022-01-03 21:19:20','2022-01-03 21:19:20');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_customer_addresses` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `state` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `city` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `customer_id` int unsigned NOT NULL,
  `is_default` tinyint unsigned NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `zip_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci 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_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','+12515443682','PM','Maine','Khalilchester','87250 Jesse Union Apt. 349',1,1,'2022-01-03 21:19:34','2022-01-03 21:19:34','30754'),(2,'John Smith','john.smith@botble.com','+18646669678','PK','District of Columbia','New Electa','58491 Amara Lights',1,0,'2022-01-03 21:19:34','2022-01-03 21:19:34','82537'),(3,'Jakayla Johnson MD','uschumm@example.org','+13477493445','PS','Michigan','Elmoborough','96395 Mertz Mission',2,1,'2022-01-03 21:19:34','2022-01-03 21:19:34','49075'),(4,'Elinore Douglas','ywest@example.org','+17312448493','FO','Indiana','North Hilariobury','2817 Nathen Run Apt. 269',3,1,'2022-01-03 21:19:34','2022-01-03 21:19:34','27457-2847'),(5,'Tess Wisoky','rodriguez.caleigh@example.org','+19479373197','CF','Hawaii','Alyciamouth','561 Medhurst Court Suite 288',4,1,'2022-01-03 21:19:34','2022-01-03 21:19:34','11858-9377'),(6,'Kaela Gutkowski','lila.harvey@example.org','+19384022769','SB','Arkansas','Port Robyn','491 Terrence Drive Apt. 718',5,1,'2022-01-03 21:19:34','2022-01-03 21:19:34','36152-2922'),(7,'Melyssa Wilderman','reilly.angus@example.net','+14589074352','BO','Ohio','Jacklynfurt','51092 Walker Crescent',6,1,'2022-01-03 21:19:34','2022-01-03 21:19:34','61805'),(8,'Alisa Effertz','kip.abernathy@example.net','+13092910490','DK','Hawaii','Port Dexterhaven','93372 Heidenreich Mall Suite 893',7,1,'2022-01-03 21:19:34','2022-01-03 21:19:34','42230'),(9,'Vallie Schmidt','uadams@example.net','+15512147029','BH','Texas','New June','3539 Kayley Hollow Apt. 737',8,1,'2022-01-03 21:19:34','2022-01-03 21:19:34','51255'),(10,'Antoinette Hartmann','autumn.eichmann@example.net','+17755681909','DJ','North Carolina','Robertsshire','80301 Lucas Underpass',9,1,'2022-01-03 21:19:34','2022-01-03 21:19:34','89637-1374');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_customer_password_resets` (
  `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` varchar(191) CHARACTER SET utf8mb4 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_customers` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `password` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `avatar` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `dob` date DEFAULT NULL,
  `phone` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `remember_token` varchar(100) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'activated',
  PRIMARY KEY (`id`),
  UNIQUE KEY `ec_customers_email_unique` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=10 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$LCzWknMqa6UkfqpcGfTw8uo9swfhusGZmW5e8IBKvT7BN8P8eyTG.','customers/1.jpg',NULL,'+15126995231',NULL,'2022-01-03 21:19:34','2022-01-03 21:19:34','2022-01-04 04:19:34',NULL,'activated'),(2,'Jakayla Johnson MD','uschumm@example.org','$2y$10$HqyiEcQ7zW4nAIIp5xsZ6.her0SoKWEoT/lOZakSxYpfhEqxQlroO','customers/1.jpg',NULL,'+16404678470',NULL,'2022-01-03 21:19:34','2022-01-03 21:19:34','2022-01-04 04:19:34',NULL,'activated'),(3,'Elinore Douglas','ywest@example.org','$2y$10$Ypq.b2pL6grdRGsVB4KGj.t3Wy7Ji3TuXPUL2P716bi0XvAiYtxr6','customers/2.jpg',NULL,'+19784294247',NULL,'2022-01-03 21:19:34','2022-01-03 21:19:34','2022-01-04 04:19:34',NULL,'activated'),(4,'Tess Wisoky','rodriguez.caleigh@example.org','$2y$10$PQc6U8roNSHXLuuctUift.8GwlOTzjdHkNY4r8H71oIlriKCxTgZG','customers/3.jpg',NULL,'+13219610368',NULL,'2022-01-03 21:19:34','2022-01-03 21:19:34','2022-01-04 04:19:34',NULL,'activated'),(5,'Kaela Gutkowski','lila.harvey@example.org','$2y$10$94yF7XxfDfioGNbjaNOxyetq.YZhr7jI723GyMFXxiHSFj4Vfc292','customers/4.jpg',NULL,'+19366084173',NULL,'2022-01-03 21:19:34','2022-01-03 21:19:34','2022-01-04 04:19:34',NULL,'activated'),(6,'Melyssa Wilderman','reilly.angus@example.net','$2y$10$Rg9.H.XlQQlLq8v/OrPAQOGw0FqL0iLUPvVVwR3cDaPER.UHBiAd.','customers/5.jpg',NULL,'+19386460631',NULL,'2022-01-03 21:19:34','2022-01-03 21:19:34','2022-01-04 04:19:34',NULL,'activated'),(7,'Alisa Effertz','kip.abernathy@example.net','$2y$10$mD0RdbtXSUsz5JN6XF5cjO602SKqktAaii8L6X8iYnqtMXeGLo9j.','customers/6.jpg',NULL,'+16804104888',NULL,'2022-01-03 21:19:34','2022-01-03 21:19:34','2022-01-04 04:19:34',NULL,'activated'),(8,'Vallie Schmidt','uadams@example.net','$2y$10$hu.Zq5AxG8hAbooWi95CLuaMhzjYMiLcNWhZ7Ss0Wz5t1icwQioPa','customers/7.jpg',NULL,'+16182939083',NULL,'2022-01-03 21:19:34','2022-01-03 21:19:34','2022-01-04 04:19:34',NULL,'activated'),(9,'Antoinette Hartmann','autumn.eichmann@example.net','$2y$10$3M3G5IOWmwopD.85ZCEd9.zh.68j/GZzeQGPkt/jErlDhQUPERVUm','customers/8.jpg',NULL,'+14402213384',NULL,'2022-01-03 21:19:34','2022-01-03 21:19:34','2022-01-04 04:19:34',NULL,'activated');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_discount_customers` (
  `discount_id` int unsigned NOT NULL,
  `customer_id` int 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_discount_product_collections` (
  `discount_id` int unsigned NOT NULL,
  `product_collection_id` int 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_discount_products` (
  `discount_id` int unsigned NOT NULL,
  `product_id` int 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_discounts` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `start_date` datetime DEFAULT NULL,
  `end_date` datetime DEFAULT NULL,
  `quantity` int DEFAULT NULL,
  `total_used` int unsigned NOT NULL DEFAULT '0',
  `value` double DEFAULT NULL,
  `type` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'coupon',
  `can_use_with_promotion` tinyint(1) NOT NULL DEFAULT '0',
  `discount_on` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `product_quantity` int unsigned DEFAULT NULL,
  `type_option` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'amount',
  `target` varchar(100) CHARACTER SET utf8mb4 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_flash_sale_products` (
  `flash_sale_id` int unsigned NOT NULL,
  `product_id` int unsigned NOT NULL,
  `price` double unsigned DEFAULT NULL,
  `quantity` int unsigned DEFAULT NULL,
  `sold` int 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,1,248.3,17,1),(2,6,39,15,4);
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_flash_sales` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `end_date` datetime NOT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 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_flash_sales`
--

LOCK TABLES `ec_flash_sales` WRITE;
/*!40000 ALTER TABLE `ec_flash_sales` DISABLE KEYS */;
INSERT INTO `ec_flash_sales` VALUES (1,'Deal of the Day.','2022-05-31 00:00:00','published','2022-04-20 19:55:17','2022-04-20 19:55:17'),(2,'Gadgets & Accessories','2022-05-26 00:00:00','published','2022-04-20 19:55:17','2022-04-20 19:55:17');
/*!40000 ALTER TABLE `ec_flash_sales` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_flash_sales_translations`
--

DROP TABLE IF EXISTS `ec_flash_sales_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_flash_sales_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `ec_flash_sales_id` int NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`ec_flash_sales_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_flash_sales_translations`
--

LOCK TABLES `ec_flash_sales_translations` WRITE;
/*!40000 ALTER TABLE `ec_flash_sales_translations` DISABLE KEYS */;
INSERT INTO `ec_flash_sales_translations` VALUES ('vi',1,'Khuyến mãi trong ngày.'),('vi',2,'Tiện ích & Phụ kiện');
/*!40000 ALTER TABLE `ec_flash_sales_translations` 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_grouped_products` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `parent_product_id` int unsigned NOT NULL,
  `product_id` int unsigned NOT NULL,
  `fixed_qty` int 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_order_addresses` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `phone` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `state` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `city` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order_id` int unsigned NOT NULL,
  `zip_code` varchar(20) CHARACTER SET utf8mb4 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,'Melyssa Wilderman','+14589074352','reilly.angus@example.net','BO','Ohio','Jacklynfurt','51092 Walker Crescent',1,'61805'),(2,'Antoinette Hartmann','+17755681909','autumn.eichmann@example.net','DJ','North Carolina','Robertsshire','80301 Lucas Underpass',2,'89637-1374'),(3,'Vallie Schmidt','+15512147029','uadams@example.net','BH','Texas','New June','3539 Kayley Hollow Apt. 737',3,'51255'),(4,'Kaela Gutkowski','+19384022769','lila.harvey@example.org','SB','Arkansas','Port Robyn','491 Terrence Drive Apt. 718',4,'36152-2922'),(5,'Alisa Effertz','+13092910490','kip.abernathy@example.net','DK','Hawaii','Port Dexterhaven','93372 Heidenreich Mall Suite 893',5,'42230'),(6,'Tess Wisoky','+19479373197','rodriguez.caleigh@example.org','CF','Hawaii','Alyciamouth','561 Medhurst Court Suite 288',6,'11858-9377'),(7,'Melyssa Wilderman','+14589074352','reilly.angus@example.net','BO','Ohio','Jacklynfurt','51092 Walker Crescent',7,'61805'),(8,'Kaela Gutkowski','+19384022769','lila.harvey@example.org','SB','Arkansas','Port Robyn','491 Terrence Drive Apt. 718',8,'36152-2922'),(9,'Melyssa Wilderman','+14589074352','reilly.angus@example.net','BO','Ohio','Jacklynfurt','51092 Walker Crescent',9,'61805'),(10,'Antoinette Hartmann','+17755681909','autumn.eichmann@example.net','DJ','North Carolina','Robertsshire','80301 Lucas Underpass',10,'89637-1374'),(11,'Tess Wisoky','+19479373197','rodriguez.caleigh@example.org','CF','Hawaii','Alyciamouth','561 Medhurst Court Suite 288',11,'11858-9377'),(12,'Tess Wisoky','+19479373197','rodriguez.caleigh@example.org','CF','Hawaii','Alyciamouth','561 Medhurst Court Suite 288',12,'11858-9377'),(13,'Alisa Effertz','+13092910490','kip.abernathy@example.net','DK','Hawaii','Port Dexterhaven','93372 Heidenreich Mall Suite 893',13,'42230'),(14,'Tess Wisoky','+19479373197','rodriguez.caleigh@example.org','CF','Hawaii','Alyciamouth','561 Medhurst Court Suite 288',14,'11858-9377'),(15,'Tess Wisoky','+19479373197','rodriguez.caleigh@example.org','CF','Hawaii','Alyciamouth','561 Medhurst Court Suite 288',15,'11858-9377'),(16,'Antoinette Hartmann','+17755681909','autumn.eichmann@example.net','DJ','North Carolina','Robertsshire','80301 Lucas Underpass',16,'89637-1374'),(17,'Alisa Effertz','+13092910490','kip.abernathy@example.net','DK','Hawaii','Port Dexterhaven','93372 Heidenreich Mall Suite 893',17,'42230'),(18,'Vallie Schmidt','+15512147029','uadams@example.net','BH','Texas','New June','3539 Kayley Hollow Apt. 737',18,'51255'),(19,'Melyssa Wilderman','+14589074352','reilly.angus@example.net','BO','Ohio','Jacklynfurt','51092 Walker Crescent',19,'61805'),(20,'John Smith','+12515443682','john.smith@botble.com','PM','Maine','Khalilchester','87250 Jesse Union Apt. 349',20,'30754');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_order_histories` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `action` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` int unsigned DEFAULT NULL,
  `order_id` int unsigned NOT NULL,
  `extras` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=87 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,'2022-04-07 11:55:18','2022-04-07 11:55:18'),(2,'confirm_order','Order was verified by %user_name%',0,1,NULL,'2022-04-07 11:55:18','2022-04-07 11:55:18'),(3,'confirm_payment','Payment was confirmed (amount $477.00) by %user_name%',0,1,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(4,'create_shipment','Created shipment for order',0,1,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(5,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,1,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(6,'create_order_from_seeder','Order is created from the checkout page',NULL,2,NULL,'2022-04-11 07:55:18','2022-04-11 07:55:18'),(7,'confirm_order','Order was verified by %user_name%',0,2,NULL,'2022-04-11 07:55:18','2022-04-11 07:55:18'),(8,'confirm_payment','Payment was confirmed (amount $1,656.90) by %user_name%',0,2,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(9,'create_shipment','Created shipment for order',0,2,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(10,'create_order_from_seeder','Order is created from the checkout page',NULL,3,NULL,'2022-04-16 07:55:18','2022-04-16 07:55:18'),(11,'confirm_order','Order was verified by %user_name%',0,3,NULL,'2022-04-16 07:55:18','2022-04-16 07:55:18'),(12,'confirm_payment','Payment was confirmed (amount $1,511.10) by %user_name%',0,3,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(13,'create_shipment','Created shipment for order',0,3,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(14,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,3,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(15,'create_order_from_seeder','Order is created from the checkout page',NULL,4,NULL,'2022-04-17 23:55:18','2022-04-17 23:55:18'),(16,'confirm_order','Order was verified by %user_name%',0,4,NULL,'2022-04-17 23:55:18','2022-04-17 23:55:18'),(17,'confirm_payment','Payment was confirmed (amount $1,713.90) by %user_name%',0,4,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(18,'create_shipment','Created shipment for order',0,4,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(19,'create_order_from_seeder','Order is created from the checkout page',NULL,5,NULL,'2022-04-07 11:55:18','2022-04-07 11:55:18'),(20,'confirm_order','Order was verified by %user_name%',0,5,NULL,'2022-04-07 11:55:18','2022-04-07 11:55:18'),(21,'create_shipment','Created shipment for order',0,5,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(22,'create_order_from_seeder','Order is created from the checkout page',NULL,6,NULL,'2022-04-18 07:55:18','2022-04-18 07:55:18'),(23,'confirm_order','Order was verified by %user_name%',0,6,NULL,'2022-04-18 07:55:18','2022-04-18 07:55:18'),(24,'confirm_payment','Payment was confirmed (amount $1,556.20) by %user_name%',0,6,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(25,'create_shipment','Created shipment for order',0,6,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(26,'create_order_from_seeder','Order is created from the checkout page',NULL,7,NULL,'2022-04-09 03:55:18','2022-04-09 03:55:18'),(27,'confirm_order','Order was verified by %user_name%',0,7,NULL,'2022-04-09 03:55:18','2022-04-09 03:55:18'),(28,'create_shipment','Created shipment for order',0,7,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(29,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,7,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(30,'create_order_from_seeder','Order is created from the checkout page',NULL,8,NULL,'2022-04-12 03:55:18','2022-04-12 03:55:18'),(31,'confirm_order','Order was verified by %user_name%',0,8,NULL,'2022-04-12 03:55:18','2022-04-12 03:55:18'),(32,'confirm_payment','Payment was confirmed (amount $548.10) by %user_name%',0,8,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(33,'create_shipment','Created shipment for order',0,8,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(34,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,8,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(35,'create_order_from_seeder','Order is created from the checkout page',NULL,9,NULL,'2022-04-18 19:55:18','2022-04-18 19:55:18'),(36,'confirm_order','Order was verified by %user_name%',0,9,NULL,'2022-04-18 19:55:18','2022-04-18 19:55:18'),(37,'confirm_payment','Payment was confirmed (amount $998.60) by %user_name%',0,9,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(38,'create_shipment','Created shipment for order',0,9,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(39,'create_order_from_seeder','Order is created from the checkout page',NULL,10,NULL,'2022-04-17 03:55:18','2022-04-17 03:55:18'),(40,'confirm_order','Order was verified by %user_name%',0,10,NULL,'2022-04-17 03:55:18','2022-04-17 03:55:18'),(41,'confirm_payment','Payment was confirmed (amount $1,864.60) by %user_name%',0,10,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(42,'create_shipment','Created shipment for order',0,10,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(43,'create_order_from_seeder','Order is created from the checkout page',NULL,11,NULL,'2022-04-17 11:55:18','2022-04-17 11:55:18'),(44,'confirm_order','Order was verified by %user_name%',0,11,NULL,'2022-04-17 11:55:18','2022-04-17 11:55:18'),(45,'confirm_payment','Payment was confirmed (amount $2,994.60) by %user_name%',0,11,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(46,'create_shipment','Created shipment for order',0,11,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(47,'create_order_from_seeder','Order is created from the checkout page',NULL,12,NULL,'2022-04-18 13:55:18','2022-04-18 13:55:18'),(48,'confirm_order','Order was verified by %user_name%',0,12,NULL,'2022-04-18 13:55:18','2022-04-18 13:55:18'),(49,'confirm_payment','Payment was confirmed (amount $255.90) by %user_name%',0,12,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(50,'create_shipment','Created shipment for order',0,12,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(51,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,12,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(52,'create_order_from_seeder','Order is created from the checkout page',NULL,13,NULL,'2022-04-16 19:55:18','2022-04-16 19:55:18'),(53,'confirm_order','Order was verified by %user_name%',0,13,NULL,'2022-04-16 19:55:18','2022-04-16 19:55:18'),(54,'confirm_payment','Payment was confirmed (amount $958.80) by %user_name%',0,13,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(55,'create_shipment','Created shipment for order',0,13,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(56,'create_order_from_seeder','Order is created from the checkout page',NULL,14,NULL,'2022-04-19 15:55:18','2022-04-19 15:55:18'),(57,'confirm_order','Order was verified by %user_name%',0,14,NULL,'2022-04-19 15:55:18','2022-04-19 15:55:18'),(58,'confirm_payment','Payment was confirmed (amount $1,264.30) by %user_name%',0,14,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(59,'create_shipment','Created shipment for order',0,14,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(60,'create_order_from_seeder','Order is created from the checkout page',NULL,15,NULL,'2022-04-17 19:55:18','2022-04-17 19:55:18'),(61,'confirm_order','Order was verified by %user_name%',0,15,NULL,'2022-04-17 19:55:18','2022-04-17 19:55:18'),(62,'confirm_payment','Payment was confirmed (amount $497.20) by %user_name%',0,15,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(63,'create_shipment','Created shipment for order',0,15,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(64,'create_order_from_seeder','Order is created from the checkout page',NULL,16,NULL,'2022-04-19 23:55:18','2022-04-19 23:55:18'),(65,'confirm_order','Order was verified by %user_name%',0,16,NULL,'2022-04-19 23:55:18','2022-04-19 23:55:18'),(66,'create_shipment','Created shipment for order',0,16,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(67,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,16,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(68,'create_order_from_seeder','Order is created from the checkout page',NULL,17,NULL,'2022-04-18 11:55:18','2022-04-18 11:55:18'),(69,'confirm_order','Order was verified by %user_name%',0,17,NULL,'2022-04-18 11:55:18','2022-04-18 11:55:18'),(70,'confirm_payment','Payment was confirmed (amount $421.20) by %user_name%',0,17,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(71,'create_shipment','Created shipment for order',0,17,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(72,'create_order_from_seeder','Order is created from the checkout page',NULL,18,NULL,'2022-04-19 07:55:18','2022-04-19 07:55:18'),(73,'confirm_order','Order was verified by %user_name%',0,18,NULL,'2022-04-19 07:55:18','2022-04-19 07:55:18'),(74,'confirm_payment','Payment was confirmed (amount $1,191.10) by %user_name%',0,18,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(75,'create_shipment','Created shipment for order',0,18,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(76,'create_order_from_seeder','Order is created from the checkout page',NULL,19,NULL,'2022-04-19 11:55:18','2022-04-19 11:55:18'),(77,'confirm_order','Order was verified by %user_name%',0,19,NULL,'2022-04-19 11:55:18','2022-04-19 11:55:18'),(78,'create_shipment','Created shipment for order',0,19,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(79,'create_order_from_seeder','Order is created from the checkout page',NULL,20,NULL,'2022-04-20 11:55:18','2022-04-20 11:55:18'),(80,'confirm_order','Order was verified by %user_name%',0,20,NULL,'2022-04-20 11:55:18','2022-04-20 11:55:18'),(81,'confirm_payment','Payment was confirmed (amount $1,184.20) by %user_name%',0,20,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(82,'create_shipment','Created shipment for order',0,20,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(83,'update_status','Order confirmed by %user_name%',0,1,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(84,'update_status','Order confirmed by %user_name%',0,3,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(85,'update_status','Order confirmed by %user_name%',0,8,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(86,'update_status','Order confirmed by %user_name%',0,12,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_order_product` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `order_id` int unsigned NOT NULL,
  `qty` int NOT NULL,
  `price` decimal(15,2) NOT NULL,
  `tax_amount` decimal(15,2) NOT NULL,
  `options` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `product_id` int unsigned DEFAULT NULL,
  `product_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `weight` double(8,2) DEFAULT '0.00',
  `restock_quantity` int unsigned DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=59 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,2,50.00,5.00,'[]',22,'Cyan Boheme',1376.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(2,1,3,120.00,12.00,'[]',28,'Round Crossbody Bag',1569.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(3,2,2,274.00,27.40,'[]',13,'Clutch handmade',1532.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(4,2,3,228.00,22.80,'[]',17,'Snapshot Standard',2610.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(5,2,1,228.00,22.80,'[]',18,'Snapshot Standard',870.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(6,2,2,59.00,5.90,'[]',26,'The Marc Jacobs',1298.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(7,3,3,274.00,27.40,'[]',14,'Clutch handmade',2298.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(8,3,2,228.00,22.80,'[]',18,'Snapshot Standard',1740.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(9,3,3,59.00,5.90,'[]',26,'The Marc Jacobs',1947.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(10,4,3,382.00,38.20,'[]',10,'Wallet handmade',2019.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(11,4,1,228.00,22.80,'[]',18,'Snapshot Standard',870.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(12,4,3,50.00,5.00,'[]',22,'Cyan Boheme',2064.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(13,4,2,59.00,5.90,'[]',27,'The Marc Jacobs',1298.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(14,5,3,59.00,5.90,'[]',26,'The Marc Jacobs',1947.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(15,5,1,120.00,12.00,'[]',30,'Round Crossbody Bag',523.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(16,6,3,382.00,38.20,'[]',9,'Wallet handmade',2019.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(17,6,3,120.00,12.00,'[]',29,'Round Crossbody Bag',1569.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(18,7,2,228.00,22.80,'[]',17,'Snapshot Standard',1740.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(19,7,1,81.00,8.10,'[]',19,'Joan Mini Camera Bag',516.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(20,7,2,50.00,5.00,'[]',23,'Cyan Boheme',1376.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(21,7,1,59.00,5.90,'[]',27,'The Marc Jacobs',649.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(22,8,1,332.00,33.20,'[]',15,'Gucci Zip Around Wallet',572.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(23,8,3,59.00,5.90,'[]',27,'The Marc Jacobs',1947.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(24,9,1,274.00,27.40,'[]',13,'Clutch handmade',766.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(25,9,2,332.00,33.20,'[]',16,'Gucci Zip Around Wallet',1144.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(26,10,3,382.00,38.20,'[]',11,'Wallet handmade',2019.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(27,10,2,274.00,27.40,'[]',13,'Clutch handmade',1532.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(28,10,2,50.00,5.00,'[]',23,'Cyan Boheme',1376.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(29,11,2,382.00,38.20,'[]',9,'Wallet handmade',1346.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(30,11,3,382.00,38.20,'[]',11,'Wallet handmade',2019.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(31,11,1,274.00,27.40,'[]',14,'Clutch handmade',766.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(32,11,3,228.00,22.80,'[]',17,'Snapshot Standard',2610.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(33,12,2,59.00,5.90,'[]',24,'The Marc Jacobs',1298.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(34,12,1,120.00,12.00,'[]',30,'Round Crossbody Bag',523.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(35,13,3,228.00,22.80,'[]',18,'Snapshot Standard',2610.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(36,13,2,120.00,12.00,'[]',29,'Round Crossbody Bag',1046.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(37,14,2,274.00,27.40,'[]',14,'Clutch handmade',1532.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(38,14,1,59.00,5.90,'[]',24,'The Marc Jacobs',649.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(39,14,2,120.00,12.00,'[]',28,'Round Crossbody Bag',1046.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(40,14,3,120.00,12.00,'[]',30,'Round Crossbody Bag',1569.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(41,15,1,332.00,33.20,'[]',16,'Gucci Zip Around Wallet',572.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(42,15,1,120.00,12.00,'[]',30,'Round Crossbody Bag',523.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(43,16,3,382.00,38.20,'[]',11,'Wallet handmade',2019.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(44,16,3,81.00,8.10,'[]',20,'Joan Mini Camera Bag',1548.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(45,16,1,59.00,5.90,'[]',27,'The Marc Jacobs',649.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(46,16,2,120.00,12.00,'[]',29,'Round Crossbody Bag',1046.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(47,17,2,81.00,8.10,'[]',19,'Joan Mini Camera Bag',1032.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(48,17,3,81.00,8.10,'[]',21,'Joan Mini Camera Bag',1548.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(49,18,1,274.00,27.40,'[]',12,'Clutch handmade',766.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(50,18,3,228.00,22.80,'[]',17,'Snapshot Standard',2610.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(51,18,3,59.00,5.90,'[]',26,'The Marc Jacobs',1947.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(52,19,3,274.00,27.40,'[]',12,'Clutch handmade',2298.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(53,19,2,81.00,8.10,'[]',20,'Joan Mini Camera Bag',1032.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(54,19,2,59.00,5.90,'[]',27,'The Marc Jacobs',1298.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(55,20,1,332.00,33.20,'[]',15,'Gucci Zip Around Wallet',572.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(56,20,2,228.00,22.80,'[]',17,'Snapshot Standard',1740.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(57,20,2,81.00,8.10,'[]',19,'Joan Mini Camera Bag',1032.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(58,20,2,81.00,8.10,'[]',20,'Joan Mini Camera Bag',1032.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_orders` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int unsigned NOT NULL,
  `shipping_option` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `shipping_method` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default',
  `status` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `amount` decimal(15,2) NOT NULL,
  `tax_amount` decimal(15,2) DEFAULT NULL,
  `shipping_amount` decimal(15,2) DEFAULT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `coupon_code` varchar(120) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_finished` tinyint(1) DEFAULT '1',
  `token` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payment_id` int unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `ec_orders_user_id_status_created_at_index` (`user_id`,`status`,`created_at`)
) 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,6,'1','default','completed',477.00,17.00,0.00,NULL,NULL,0.00,460.00,1,NULL,1,'rV1aHj6CToAU2KUP9pcsp5bOdpV3J',1,'2022-04-07 11:55:18','2022-04-20 19:55:18'),(2,9,'1','default','pending',1656.90,78.90,0.00,NULL,NULL,0.00,1578.00,1,NULL,1,'xfxXC4k66TkRWA7wPuMckWHVlNvDV',2,'2022-04-11 07:55:18','2022-04-20 19:55:18'),(3,8,'1','default','completed',1511.10,56.10,0.00,NULL,NULL,0.00,1455.00,1,NULL,1,'sVVW0fcuYUdgKxcye1jWhfAWvbAYP',3,'2022-04-16 07:55:18','2022-04-20 19:55:18'),(4,5,'1','default','pending',1713.90,71.90,0.00,NULL,NULL,0.00,1642.00,1,NULL,1,'lzlVaXFFfdcSjOTbQSqVWX0laCaGR',4,'2022-04-17 23:55:18','2022-04-20 19:55:18'),(5,7,'1','default','pending',314.90,17.90,0.00,NULL,NULL,0.00,297.00,1,NULL,1,'2m9apZ3S398naDAMG3xG0Fa0rWinB',5,'2022-04-07 11:55:18','2022-04-20 19:55:18'),(6,4,'1','default','pending',1556.20,50.20,0.00,NULL,NULL,0.00,1506.00,1,NULL,1,'lzTHfIoqOOcPyLA2E7rGGue6Ov5Nj',6,'2022-04-18 07:55:18','2022-04-20 19:55:18'),(7,6,'1','default','completed',737.80,41.80,0.00,NULL,NULL,0.00,696.00,1,NULL,1,'l2CIAs7ixkpj5QvuZELJtPBjRW1UG',7,'2022-04-09 03:55:18','2022-04-20 19:55:18'),(8,5,'1','default','completed',548.10,39.10,0.00,NULL,NULL,0.00,509.00,1,NULL,1,'S253s4ivytfmPMwmjKPFb8fIedkSR',8,'2022-04-12 03:55:18','2022-04-20 19:55:18'),(9,6,'1','default','pending',998.60,60.60,0.00,NULL,NULL,0.00,938.00,1,NULL,1,'hqoNVfX8I6bCbIdLPsdj7IZLnREJc',9,'2022-04-18 19:55:18','2022-04-20 19:55:18'),(10,9,'1','default','pending',1864.60,70.60,0.00,NULL,NULL,0.00,1794.00,1,NULL,1,'4oOet5Y2y3n20fYDBHPnfljEGLea2',10,'2022-04-17 03:55:18','2022-04-20 19:55:18'),(11,4,'1','default','pending',2994.60,126.60,0.00,NULL,NULL,0.00,2868.00,1,NULL,1,'AdlZbIN13CzWYdBtupXfvAy6TiNey',11,'2022-04-17 11:55:18','2022-04-20 19:55:18'),(12,4,'1','default','completed',255.90,17.90,0.00,NULL,NULL,0.00,238.00,1,NULL,1,'KDTKaRbyLyFQCEVHnMd1uktdj0sA0',12,'2022-04-18 13:55:18','2022-04-20 19:55:18'),(13,7,'1','default','pending',958.80,34.80,0.00,NULL,NULL,0.00,924.00,1,NULL,1,'OfXsgpyo2MqgeVTlz5xqqrVZPtVnn',13,'2022-04-16 19:55:18','2022-04-20 19:55:18'),(14,4,'1','default','pending',1264.30,57.30,0.00,NULL,NULL,0.00,1207.00,1,NULL,1,'rc9rSYGGBjfXue1X28p2gyZnbRDyi',14,'2022-04-19 15:55:18','2022-04-20 19:55:18'),(15,4,'1','default','pending',497.20,45.20,0.00,NULL,NULL,0.00,452.00,1,NULL,1,'cSaAB90o1EPmeTSjw93wpzbAB4cej',15,'2022-04-17 19:55:18','2022-04-20 19:55:18'),(16,9,'1','default','completed',1752.20,64.20,0.00,NULL,NULL,0.00,1688.00,1,NULL,1,'2Po9CTMClb1poQJbKkYs6GGgIvHXq',16,'2022-04-19 23:55:18','2022-04-20 19:55:18'),(17,7,'1','default','pending',421.20,16.20,0.00,NULL,NULL,0.00,405.00,1,NULL,1,'4M9dPawTsSHH7gJWv0quoNqBAJXig',17,'2022-04-18 11:55:18','2022-04-20 19:55:18'),(18,8,'1','default','pending',1191.10,56.10,0.00,NULL,NULL,0.00,1135.00,1,NULL,1,'dhXat1WjiYCBiML6eEoLpRHtp3Xog',18,'2022-04-19 07:55:18','2022-04-20 19:55:18'),(19,6,'1','default','pending',1143.40,41.40,0.00,NULL,NULL,0.00,1102.00,1,NULL,1,'vM71DR21H5WfFg4nTp3jNKeTbcoDc',19,'2022-04-19 11:55:18','2022-04-20 19:55:18'),(20,1,'1','default','pending',1184.20,72.20,0.00,NULL,NULL,0.00,1112.00,1,NULL,1,'UNjyilP3DY6nSu2qQIraAPR5fJ7wp',20,'2022-04-20 11:55:18','2022-04-20 19:55:18');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_attribute_sets` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `display_layout` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'swatch_dropdown',
  `is_searchable` tinyint unsigned NOT NULL DEFAULT '1',
  `is_comparable` tinyint unsigned NOT NULL DEFAULT '1',
  `is_use_in_product_listing` tinyint unsigned NOT NULL DEFAULT '0',
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `order` tinyint unsigned NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `use_image_from_product_variation` tinyint unsigned NOT NULL DEFAULT '0',
  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,'2022-04-20 19:55:17','2022-04-20 19:55:17',1),(2,'Size','size','text',1,1,1,'published',1,'2022-04-20 19:55:17','2022-04-20 19:55:17',0);
/*!40000 ALTER TABLE `ec_product_attribute_sets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_product_attribute_sets_translations`
--

DROP TABLE IF EXISTS `ec_product_attribute_sets_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_attribute_sets_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `ec_product_attribute_sets_id` int NOT NULL,
  `title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`ec_product_attribute_sets_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_product_attribute_sets_translations`
--

LOCK TABLES `ec_product_attribute_sets_translations` WRITE;
/*!40000 ALTER TABLE `ec_product_attribute_sets_translations` DISABLE KEYS */;
INSERT INTO `ec_product_attribute_sets_translations` VALUES ('vi',1,'Màu sắc'),('vi',2,'Kích thước');
/*!40000 ALTER TABLE `ec_product_attribute_sets_translations` 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_attributes` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `attribute_set_id` int unsigned NOT NULL,
  `title` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `color` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `image` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_default` tinyint unsigned NOT NULL DEFAULT '0',
  `order` tinyint unsigned NOT NULL DEFAULT '0',
  `status` varchar(60) CHARACTER SET utf8mb4 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','2022-04-20 19:55:17','2022-04-20 19:55:17'),(2,1,'Blue','blue','#333333',NULL,0,2,'published','2022-04-20 19:55:17','2022-04-20 19:55:17'),(3,1,'Red','red','#DA323F',NULL,0,3,'published','2022-04-20 19:55:17','2022-04-20 19:55:17'),(4,1,'Black','back','#2F366C',NULL,0,4,'published','2022-04-20 19:55:17','2022-04-20 19:55:17'),(5,1,'Brown','brown','#87554B',NULL,0,5,'published','2022-04-20 19:55:17','2022-04-20 19:55:17'),(6,2,'S','s',NULL,NULL,1,1,'published','2022-04-20 19:55:17','2022-04-20 19:55:17'),(7,2,'M','m',NULL,NULL,0,2,'published','2022-04-20 19:55:17','2022-04-20 19:55:17'),(8,2,'L','l',NULL,NULL,0,3,'published','2022-04-20 19:55:17','2022-04-20 19:55:17'),(9,2,'XL','xl',NULL,NULL,0,4,'published','2022-04-20 19:55:17','2022-04-20 19:55:17'),(10,2,'XXL','xxl',NULL,NULL,0,5,'published','2022-04-20 19:55:17','2022-04-20 19:55:17');
/*!40000 ALTER TABLE `ec_product_attributes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_product_attributes_translations`
--

DROP TABLE IF EXISTS `ec_product_attributes_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_attributes_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `ec_product_attributes_id` int NOT NULL,
  `title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`ec_product_attributes_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_product_attributes_translations`
--

LOCK TABLES `ec_product_attributes_translations` WRITE;
/*!40000 ALTER TABLE `ec_product_attributes_translations` DISABLE KEYS */;
INSERT INTO `ec_product_attributes_translations` VALUES ('vi',1,'Xanh lá cây'),('vi',2,'Xanh da trời'),('vi',3,'Đỏ'),('vi',4,'Đen'),('vi',5,'Nâu'),('vi',6,'S'),('vi',7,'M'),('vi',8,'L'),('vi',9,'XL'),('vi',10,'XXL');
/*!40000 ALTER TABLE `ec_product_attributes_translations` 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_categories` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent_id` int unsigned DEFAULT '0',
  `description` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `order` int unsigned NOT NULL DEFAULT '0',
  `image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_featured` tinyint unsigned NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `ec_product_categories_parent_id_status_created_at_index` (`parent_id`,`status`,`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=14 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,'Office bags',0,NULL,'published',1,'product-categories/1.png',1,'2022-01-03 21:19:21','2022-01-03 21:19:21'),(2,'Hand bag',0,NULL,'published',2,'product-categories/2.png',1,'2022-01-03 21:19:21','2022-01-03 21:19:21'),(3,'Woman',0,NULL,'published',3,'product-categories/3.png',1,'2022-01-03 21:19:21','2022-01-03 21:19:21'),(4,'Woman wallet',3,NULL,'published',1,NULL,0,'2022-01-03 21:19:21','2022-01-03 21:19:21'),(5,'Denim',3,NULL,'published',2,NULL,0,'2022-01-03 21:19:21','2022-01-03 21:19:21'),(6,'Dress',3,NULL,'published',3,NULL,0,'2022-01-03 21:19:21','2022-01-03 21:19:21'),(7,'Backpack',0,NULL,'published',4,'product-categories/4.png',1,'2022-01-03 21:19:21','2022-01-03 21:19:21'),(8,'Bags',0,NULL,'published',5,'product-categories/5.png',1,'2022-01-03 21:19:21','2022-01-03 21:19:21'),(9,'Wallet',0,NULL,'published',6,'product-categories/6.png',1,'2022-01-03 21:19:21','2022-01-03 21:19:21'),(10,'Men',0,NULL,'published',7,'product-categories/7.png',1,'2022-01-03 21:19:21','2022-01-03 21:19:21'),(11,'Accessories',10,NULL,'published',1,NULL,0,'2022-01-03 21:19:21','2022-01-03 21:19:21'),(12,'Men wallet',10,NULL,'published',2,NULL,0,'2022-01-03 21:19:21','2022-01-03 21:19:21'),(13,'Shoes',10,NULL,'published',3,NULL,0,'2022-01-03 21:19:21','2022-01-03 21:19:21');
/*!40000 ALTER TABLE `ec_product_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_product_categories_translations`
--

DROP TABLE IF EXISTS `ec_product_categories_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_categories_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `ec_product_categories_id` int NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`lang_code`,`ec_product_categories_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_product_categories_translations`
--

LOCK TABLES `ec_product_categories_translations` WRITE;
/*!40000 ALTER TABLE `ec_product_categories_translations` DISABLE KEYS */;
INSERT INTO `ec_product_categories_translations` VALUES ('vi',1,'Túi xách văn phòng',NULL),('vi',2,'Túi cầm tay',NULL),('vi',3,'Dành cho nữ',NULL),('vi',4,'Ví nữ',NULL),('vi',5,'Denim',NULL),('vi',6,'Quần áo',NULL),('vi',7,'Balo',NULL),('vi',8,'Túi xách',NULL),('vi',9,'Ví',NULL),('vi',10,'Dành cho nam',NULL),('vi',11,'Phụ kiện',NULL),('vi',12,'Ví nam',NULL),('vi',13,'Giày dép',NULL);
/*!40000 ALTER TABLE `ec_product_categories_translations` 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_category_product` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `category_id` int unsigned NOT NULL,
  `product_id` int 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=9 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,7,1),(2,4,2),(3,9,3),(4,12,4),(5,13,5),(6,4,6),(7,12,7),(8,5,8);
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_collection_products` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `product_collection_id` int unsigned NOT NULL,
  `product_id` int 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=9 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,2,4),(5,1,5),(6,2,6),(7,1,7),(8,1,8);
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_collections` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `is_featured` tinyint unsigned NOT NULL DEFAULT '0',
  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 `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,'product-collections/1.jpg','published','2022-01-03 21:19:22','2022-01-03 21:19:22',1),(2,'Best Sellers','best-sellers',NULL,'product-collections/2.jpg','published','2022-01-03 21:19:22','2022-01-03 21:19:22',1),(3,'Special Offer','special-offer',NULL,'product-collections/3.jpg','published','2022-01-03 21:19:22','2022-01-03 21:19:22',1),(4,'Trending Fashion','trending-fashion',NULL,'product-collections/4.jpg','published','2022-01-03 21:19:22','2022-01-03 21:19:22',1);
/*!40000 ALTER TABLE `ec_product_collections` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_product_collections_translations`
--

DROP TABLE IF EXISTS `ec_product_collections_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_collections_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `ec_product_collections_id` int NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`ec_product_collections_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_product_collections_translations`
--

LOCK TABLES `ec_product_collections_translations` WRITE;
/*!40000 ALTER TABLE `ec_product_collections_translations` DISABLE KEYS */;
INSERT INTO `ec_product_collections_translations` VALUES ('vi',1,'Hàng mới về',NULL),('vi',2,'Bán chạy nhất',NULL),('vi',3,'Khuyến mãi đặc biệt',NULL),('vi',4,'Thời trang nổi bật',NULL);
/*!40000 ALTER TABLE `ec_product_collections_translations` 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_cross_sale_relations` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `from_product_id` int unsigned NOT NULL,
  `to_product_id` int 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=30 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 (1,1,4),(2,1,3),(3,1,8),(4,2,7),(5,2,6),(6,2,4),(7,2,8),(8,3,2),(9,3,7),(10,3,1),(11,3,8),(12,4,3),(13,4,8),(14,4,7),(15,4,6),(16,5,7),(17,5,2),(18,5,8),(19,6,2),(20,6,7),(21,6,4),(22,6,8),(23,7,4),(24,7,2),(25,7,3),(26,8,7),(27,8,1),(28,8,6),(29,8,3);
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_label_products` (
  `product_label_id` int unsigned NOT NULL,
  `product_id` int 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 (2,7);
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_labels` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `color` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 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','2022-01-03 21:19:22','2022-01-03 21:19:22'),(2,'New','#00c9a7','published','2022-01-03 21:19:22','2022-01-03 21:19:22'),(3,'Sale','#fe9931','published','2022-01-03 21:19:22','2022-01-03 21:19:22');
/*!40000 ALTER TABLE `ec_product_labels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_product_labels_translations`
--

DROP TABLE IF EXISTS `ec_product_labels_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_labels_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `ec_product_labels_id` int NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`ec_product_labels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_product_labels_translations`
--

LOCK TABLES `ec_product_labels_translations` WRITE;
/*!40000 ALTER TABLE `ec_product_labels_translations` DISABLE KEYS */;
INSERT INTO `ec_product_labels_translations` VALUES ('vi',1,'Nổi bật',NULL),('vi',2,'Mới',NULL),('vi',3,'Giảm giá',NULL);
/*!40000 ALTER TABLE `ec_product_labels_translations` 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_related_relations` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `from_product_id` int unsigned NOT NULL,
  `to_product_id` int 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_tag_product` (
  `product_id` int unsigned NOT NULL,
  `tag_id` int 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,1),(1,3),(2,1),(2,3),(2,6),(3,1),(3,4),(3,5),(4,1),(4,5),(5,2),(5,3),(5,5),(6,4),(6,5),(6,6),(7,1),(7,5),(8,1),(8,2),(8,3);
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_tags` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 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 `ec_product_tags`
--

LOCK TABLES `ec_product_tags` WRITE;
/*!40000 ALTER TABLE `ec_product_tags` DISABLE KEYS */;
INSERT INTO `ec_product_tags` VALUES (1,'Wallet',NULL,'published','2022-01-03 21:19:22','2022-01-03 21:19:22'),(2,'Bags',NULL,'published','2022-01-03 21:19:22','2022-01-03 21:19:22'),(3,'Shoes',NULL,'published','2022-01-03 21:19:22','2022-01-03 21:19:22'),(4,'Clothes',NULL,'published','2022-01-03 21:19:22','2022-01-03 21:19:22'),(5,'Hand bag',NULL,'published','2022-01-03 21:19:22','2022-01-03 21:19:22');
/*!40000 ALTER TABLE `ec_product_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_product_tags_translations`
--

DROP TABLE IF EXISTS `ec_product_tags_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_tags_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `ec_product_tags_id` int NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`ec_product_tags_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_product_tags_translations`
--

LOCK TABLES `ec_product_tags_translations` WRITE;
/*!40000 ALTER TABLE `ec_product_tags_translations` DISABLE KEYS */;
INSERT INTO `ec_product_tags_translations` VALUES ('vi',1,'Ví'),('vi',2,'Ba lô'),('vi',3,'Giày'),('vi',4,'Quần áo'),('vi',5,'Túi xách');
/*!40000 ALTER TABLE `ec_product_tags_translations` 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_up_sale_relations` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `from_product_id` int unsigned NOT NULL,
  `to_product_id` int 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_variation_items` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `attribute_id` int unsigned NOT NULL,
  `variation_id` int unsigned NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=45 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,1,1),(2,8,1),(3,3,2),(4,8,2),(5,1,3),(6,7,3),(7,1,4),(8,7,4),(9,2,5),(10,9,5),(11,5,6),(12,10,6),(13,1,7),(14,8,7),(15,4,8),(16,10,8),(17,2,9),(18,8,9),(19,2,10),(20,6,10),(21,5,11),(22,7,11),(23,1,12),(24,9,12),(25,3,13),(26,8,13),(27,3,14),(28,7,14),(29,3,15),(30,9,15),(31,1,16),(32,10,16),(33,3,17),(34,9,17),(35,2,18),(36,7,18),(37,3,19),(38,10,19),(39,4,20),(40,7,20),(41,5,21),(42,10,21),(43,5,22),(44,6,22);
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_variations` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `product_id` int unsigned DEFAULT NULL,
  `configurable_product_id` int unsigned NOT NULL,
  `is_default` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=23 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,9,1,1),(2,10,1,0),(3,11,1,0),(4,12,2,1),(5,13,2,0),(6,14,2,0),(7,15,3,1),(8,16,3,0),(9,17,4,1),(10,18,4,0),(11,19,5,1),(12,20,5,0),(13,21,5,0),(14,22,6,1),(15,23,6,0),(16,24,7,1),(17,25,7,0),(18,26,7,0),(19,27,7,0),(20,28,8,1),(21,29,8,0),(22,30,8,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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_with_attribute` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `attribute_id` int unsigned NOT NULL,
  `product_id` int unsigned NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 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,5,1),(2,6,1),(3,1,2),(4,6,2),(5,4,3),(6,9,3),(7,5,4),(8,9,4),(9,1,5),(10,8,5),(11,3,6),(12,9,6),(13,1,7),(14,9,7),(15,3,8),(16,10,8);
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_with_attribute_set` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `attribute_set_id` int unsigned NOT NULL,
  `product_id` int unsigned NOT NULL,
  `order` tinyint unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 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);
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_products` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `images` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `sku` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order` int unsigned NOT NULL DEFAULT '0',
  `quantity` int unsigned DEFAULT NULL,
  `allow_checkout_when_out_of_stock` tinyint unsigned NOT NULL DEFAULT '0',
  `with_storehouse_management` tinyint unsigned NOT NULL DEFAULT '0',
  `is_featured` tinyint unsigned NOT NULL DEFAULT '0',
  `brand_id` int unsigned DEFAULT NULL,
  `is_variation` tinyint NOT NULL DEFAULT '0',
  `sale_type` tinyint 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,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `tax_id` int unsigned DEFAULT NULL,
  `views` bigint NOT NULL DEFAULT '0',
  `stock_status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'in_stock',
  `created_by_id` int DEFAULT '0',
  `created_by_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  `image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `ec_products_brand_id_status_is_variation_created_at_index` (`brand_id`,`status`,`is_variation`,`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=31 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,'Wallet handmade','<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\"]','HS-180-A0',0,14,0,1,1,1,0,0,382,NULL,NULL,NULL,17.00,20.00,19.00,673.00,'2022-01-03 21:19:31','2022-01-03 21:19:32',1,37310,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(2,'Clutch handmade','<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-196-A0',0,19,0,1,1,1,0,0,274,NULL,NULL,NULL,19.00,13.00,16.00,766.00,'2022-01-03 21:19:32','2022-01-03 21:19:32',1,103668,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(3,'Gucci Zip Around Wallet','<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-145-A0',0,10,0,1,1,6,0,0,332,NULL,NULL,NULL,12.00,20.00,14.00,572.00,'2022-01-03 21:19:32','2022-01-03 21:19:32',1,84982,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(4,'Snapshot Standard','<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\"]','HS-195-A0',0,17,0,1,1,1,0,0,228,184.68,NULL,NULL,20.00,20.00,14.00,870.00,'2022-01-03 21:19:32','2022-01-03 21:19:32',1,100629,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(5,'Joan Mini Camera Bag','<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\"]','HS-142-A0',0,17,0,1,1,6,0,0,81,NULL,NULL,NULL,19.00,15.00,17.00,516.00,'2022-01-03 21:19:32','2022-01-03 21:19:32',1,59863,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(6,'Cyan Boheme','<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-105-A0',0,18,0,1,1,1,0,0,50,NULL,NULL,NULL,20.00,13.00,17.00,688.00,'2022-01-03 21:19:32','2022-01-03 21:19:32',1,155348,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(7,'The Marc Jacobs','<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\",\"products\\/7-2.jpg\"]','HS-199-A0',0,16,0,1,1,2,0,0,59,NULL,NULL,NULL,10.00,11.00,16.00,649.00,'2022-01-03 21:19:32','2022-01-03 21:19:32',1,60097,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(8,'Round Crossbody Bag','<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\"]','HS-101-A0',0,11,0,1,1,2,0,0,120,108,NULL,NULL,13.00,17.00,16.00,523.00,'2022-01-03 21:19:32','2022-01-03 21:19:32',1,16459,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(9,'Wallet handmade',NULL,NULL,'published','[\"products\\/1.jpg\"]','HS-180-A0',0,14,0,1,0,1,1,0,382,NULL,NULL,NULL,17.00,20.00,19.00,673.00,'2022-01-03 21:19:32','2022-03-22 19:21:34',NULL,0,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(10,'Wallet handmade',NULL,NULL,'published','[\"products\\/1-1.jpg\"]','HS-180-A0-A1',0,14,0,1,0,1,1,0,382,NULL,NULL,NULL,17.00,20.00,19.00,673.00,'2022-01-03 21:19:32','2022-03-22 19:21:34',NULL,0,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(11,'Wallet handmade',NULL,NULL,'published','[\"products\\/1.jpg\"]','HS-180-A0-A2',0,14,0,1,0,1,1,0,382,NULL,NULL,NULL,17.00,20.00,19.00,673.00,'2022-01-03 21:19:32','2022-03-22 19:21:34',NULL,0,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(12,'Clutch handmade',NULL,NULL,'published','[\"products\\/2.jpg\"]','HS-196-A0',0,19,0,1,0,1,1,0,274,NULL,NULL,NULL,19.00,13.00,16.00,766.00,'2022-01-03 21:19:32','2022-03-22 19:21:34',NULL,0,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(13,'Clutch handmade',NULL,NULL,'published','[\"products\\/2-1.jpg\"]','HS-196-A0-A1',0,19,0,1,0,1,1,0,274,NULL,NULL,NULL,19.00,13.00,16.00,766.00,'2022-01-03 21:19:32','2022-03-22 19:21:34',NULL,0,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(14,'Clutch handmade',NULL,NULL,'published','[\"products\\/2-2.jpg\"]','HS-196-A0-A2',0,19,0,1,0,1,1,0,274,NULL,NULL,NULL,19.00,13.00,16.00,766.00,'2022-01-03 21:19:32','2022-03-22 19:21:34',NULL,0,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(15,'Gucci Zip Around Wallet',NULL,NULL,'published','[\"products\\/3.jpg\"]','HS-145-A0',0,10,0,1,0,6,1,0,332,NULL,NULL,NULL,12.00,20.00,14.00,572.00,'2022-01-03 21:19:32','2022-03-22 19:21:34',NULL,0,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(16,'Gucci Zip Around Wallet',NULL,NULL,'published','[\"products\\/3-1.jpg\"]','HS-145-A0-A1',0,10,0,1,0,6,1,0,332,NULL,NULL,NULL,12.00,20.00,14.00,572.00,'2022-01-03 21:19:32','2022-03-22 19:21:34',NULL,0,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(17,'Snapshot Standard',NULL,NULL,'published','[\"products\\/4.jpg\"]','HS-195-A0',0,17,0,1,0,1,1,0,228,184.68,NULL,NULL,20.00,20.00,14.00,870.00,'2022-01-03 21:19:32','2022-03-22 19:21:34',NULL,0,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(18,'Snapshot Standard',NULL,NULL,'published','[\"products\\/4-1.jpg\"]','HS-195-A0-A1',0,17,0,1,0,1,1,0,228,191.52,NULL,NULL,20.00,20.00,14.00,870.00,'2022-01-03 21:19:32','2022-03-22 19:21:34',NULL,0,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(19,'Joan Mini Camera Bag',NULL,NULL,'published','[\"products\\/5.jpg\"]','HS-142-A0',0,17,0,1,0,6,1,0,81,NULL,NULL,NULL,19.00,15.00,17.00,516.00,'2022-01-03 21:19:32','2022-03-22 19:21:34',NULL,0,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(20,'Joan Mini Camera Bag',NULL,NULL,'published','[\"products\\/5-1.jpg\"]','HS-142-A0-A1',0,17,0,1,0,6,1,0,81,NULL,NULL,NULL,19.00,15.00,17.00,516.00,'2022-01-03 21:19:32','2022-03-22 19:21:34',NULL,0,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(21,'Joan Mini Camera Bag',NULL,NULL,'published','[\"products\\/5-2.jpg\"]','HS-142-A0-A2',0,17,0,1,0,6,1,0,81,NULL,NULL,NULL,19.00,15.00,17.00,516.00,'2022-01-03 21:19:32','2022-03-22 19:21:34',NULL,0,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(22,'Cyan Boheme',NULL,NULL,'published','[\"products\\/6.jpg\"]','HS-105-A0',0,18,0,1,0,1,1,0,50,NULL,NULL,NULL,20.00,13.00,17.00,688.00,'2022-01-03 21:19:32','2022-03-22 19:21:34',NULL,0,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(23,'Cyan Boheme',NULL,NULL,'published','[\"products\\/6-1.jpg\"]','HS-105-A0-A1',0,18,0,1,0,1,1,0,50,NULL,NULL,NULL,20.00,13.00,17.00,688.00,'2022-01-03 21:19:32','2022-03-22 19:21:34',NULL,0,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(24,'The Marc Jacobs',NULL,NULL,'published','[\"products\\/7.jpg\"]','HS-199-A0',0,16,0,1,0,2,1,0,59,NULL,NULL,NULL,10.00,11.00,16.00,649.00,'2022-01-03 21:19:32','2022-03-22 19:21:34',NULL,0,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(25,'The Marc Jacobs',NULL,NULL,'published','[\"products\\/7-1.jpg\"]','HS-199-A0-A1',0,16,0,1,0,2,1,0,59,NULL,NULL,NULL,10.00,11.00,16.00,649.00,'2022-01-03 21:19:32','2022-03-22 19:21:34',NULL,0,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(26,'The Marc Jacobs',NULL,NULL,'published','[\"products\\/7-2.jpg\"]','HS-199-A0-A2',0,16,0,1,0,2,1,0,59,NULL,NULL,NULL,10.00,11.00,16.00,649.00,'2022-01-03 21:19:32','2022-03-22 19:21:34',NULL,0,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(27,'The Marc Jacobs',NULL,NULL,'published','[\"products\\/7.jpg\"]','HS-199-A0-A3',0,16,0,1,0,2,1,0,59,NULL,NULL,NULL,10.00,11.00,16.00,649.00,'2022-01-03 21:19:32','2022-03-22 19:21:34',NULL,0,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(28,'Round Crossbody Bag',NULL,NULL,'published','[\"products\\/8.jpg\"]','HS-101-A0',0,11,0,1,0,2,1,0,120,108,NULL,NULL,13.00,17.00,16.00,523.00,'2022-01-03 21:19:32','2022-03-22 19:21:34',NULL,0,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(29,'Round Crossbody Bag',NULL,NULL,'published','[\"products\\/8.jpg\"]','HS-101-A0-A1',0,11,0,1,0,2,1,0,120,92.4,NULL,NULL,13.00,17.00,16.00,523.00,'2022-01-03 21:19:32','2022-03-22 19:21:34',NULL,0,'in_stock',0,'Botble\\ACL\\Models\\User',NULL),(30,'Round Crossbody Bag',NULL,NULL,'published','[\"products\\/8.jpg\"]','HS-101-A0-A2',0,11,0,1,0,2,1,0,120,106.8,NULL,NULL,13.00,17.00,16.00,523.00,'2022-01-03 21:19:32','2022-03-22 19:21:34',NULL,0,'in_stock',0,'Botble\\ACL\\Models\\User',NULL);
/*!40000 ALTER TABLE `ec_products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ec_products_translations`
--

DROP TABLE IF EXISTS `ec_products_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_products_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `ec_products_id` int NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`lang_code`,`ec_products_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ec_products_translations`
--

LOCK TABLES `ec_products_translations` WRITE;
/*!40000 ALTER TABLE `ec_products_translations` DISABLE KEYS */;
INSERT INTO `ec_products_translations` VALUES ('vi',1,'Ví handmade',NULL,NULL),('vi',2,'Clutch handmade',NULL,NULL),('vi',3,'Ví Gucci Zip',NULL,NULL),('vi',4,'Snapshot bản tiêu chuẩn',NULL,NULL),('vi',5,'Túi máy ảnh mini Joan',NULL,NULL),('vi',6,'Cyan Boheme',NULL,NULL),('vi',7,'The Marc Jacobs',NULL,NULL),('vi',8,'Túi đeo chéo',NULL,NULL),('vi',9,'Ví handmade',NULL,NULL),('vi',10,'Ví handmade',NULL,NULL),('vi',11,'Ví handmade',NULL,NULL),('vi',12,'Clutch handmade',NULL,NULL),('vi',13,'Clutch handmade',NULL,NULL),('vi',14,'Clutch handmade',NULL,NULL),('vi',15,'Ví Gucci Zip',NULL,NULL),('vi',16,'Ví Gucci Zip',NULL,NULL),('vi',17,'Snapshot bản tiêu chuẩn',NULL,NULL),('vi',18,'Snapshot bản tiêu chuẩn',NULL,NULL),('vi',19,'Túi máy ảnh mini Joan',NULL,NULL),('vi',20,'Túi máy ảnh mini Joan',NULL,NULL),('vi',21,'Túi máy ảnh mini Joan',NULL,NULL),('vi',22,'Cyan Boheme',NULL,NULL),('vi',23,'Cyan Boheme',NULL,NULL),('vi',24,'The Marc Jacobs',NULL,NULL),('vi',25,'The Marc Jacobs',NULL,NULL),('vi',26,'The Marc Jacobs',NULL,NULL),('vi',27,'The Marc Jacobs',NULL,NULL),('vi',28,'Túi đeo chéo',NULL,NULL),('vi',29,'Túi đeo chéo',NULL,NULL),('vi',30,'Túi đeo chéo',NULL,NULL);
/*!40000 ALTER TABLE `ec_products_translations` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `ec_reviews`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_reviews` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` int unsigned NOT NULL,
  `product_id` int unsigned NOT NULL,
  `star` double(8,2) NOT NULL,
  `comment` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `images` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `ec_reviews_product_id_customer_id_status_created_at_index` (`product_id`,`customer_id`,`status`,`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=101 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,3,8,5.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/3.jpg\",\"products\\/7.jpg\",\"products\\/8.jpg\"]'),(2,9,3,4.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/3.jpg\"]'),(3,4,8,1.00,'Good app, good backup service and support. Good documentation.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\",\"products\\/5.jpg\"]'),(4,8,3,2.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','{\"0\":\"products\\/3.jpg\",\"2\":\"products\\/8.jpg\"}'),(5,3,5,1.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/3.jpg\",\"products\\/5.jpg\",\"products\\/8.jpg\"]'),(6,9,2,2.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/3.jpg\"]'),(7,1,3,2.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/3.jpg\"]'),(8,8,4,1.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\",\"products\\/7.jpg\"]'),(9,5,7,4.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/3.jpg\",\"products\\/6.jpg\"]'),(10,8,7,1.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/2.jpg\",\"products\\/6.jpg\"]'),(11,6,3,5.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/3.jpg\",\"products\\/5.jpg\",\"products\\/8.jpg\"]'),(12,8,6,3.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/2.jpg\",\"products\\/5.jpg\",\"products\\/8.jpg\"]'),(13,4,8,5.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/2.jpg\",\"products\\/6.jpg\"]'),(14,3,5,5.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','{\"0\":\"products\\/4.jpg\",\"2\":\"products\\/8.jpg\"}'),(15,9,3,1.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\",\"products\\/6.jpg\"]'),(16,2,5,1.00,'Clean & perfect source code','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/2.jpg\",\"products\\/7.jpg\"]'),(17,7,8,3.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/2.jpg\"]'),(18,5,5,1.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\",\"products\\/5.jpg\",\"products\\/8.jpg\"]'),(19,2,5,2.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\",\"products\\/7.jpg\"]'),(20,3,4,4.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/1.jpg\",\"products\\/6.jpg\"]'),(21,6,2,2.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/3.jpg\",\"products\\/5.jpg\",\"products\\/8.jpg\"]'),(22,6,1,2.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\",\"products\\/5.jpg\"]'),(23,7,7,5.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/2.jpg\",\"products\\/5.jpg\"]'),(24,2,6,4.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\",\"products\\/7.jpg\"]'),(25,1,5,1.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\"]'),(26,6,7,3.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\",\"products\\/7.jpg\"]'),(27,9,6,4.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/3.jpg\",\"products\\/7.jpg\"]'),(28,6,8,4.00,'Best ecommerce CMS online store!','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/3.jpg\"]'),(29,8,2,1.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/1.jpg\"]'),(30,8,1,1.00,'Clean & perfect source code','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/2.jpg\",\"products\\/6.jpg\"]'),(31,9,5,1.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\",\"products\\/7.jpg\"]'),(32,9,3,4.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/3.jpg\",\"products\\/7.jpg\"]'),(33,2,8,5.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/2.jpg\",\"products\\/6.jpg\",\"products\\/8.jpg\"]'),(34,5,2,3.00,'Clean & perfect source code','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/3.jpg\",\"products\\/7.jpg\"]'),(35,2,2,3.00,'Clean & perfect source code','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/2.jpg\",\"products\\/5.jpg\"]'),(36,2,6,5.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/3.jpg\",\"products\\/7.jpg\"]'),(37,5,3,1.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/3.jpg\",\"products\\/7.jpg\"]'),(38,8,5,1.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\"]'),(39,3,6,5.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\"]'),(40,6,6,1.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/2.jpg\",\"products\\/5.jpg\",\"products\\/8.jpg\"]'),(41,6,1,2.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\",\"products\\/7.jpg\"]'),(42,4,3,4.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\",\"products\\/7.jpg\"]'),(43,2,7,3.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\",\"products\\/6.jpg\"]'),(44,4,8,3.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/3.jpg\"]'),(45,4,8,1.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/2.jpg\"]'),(46,3,4,4.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/2.jpg\",\"products\\/6.jpg\"]'),(47,1,4,5.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/2.jpg\",\"products\\/5.jpg\"]'),(48,4,5,3.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','{\"0\":\"products\\/4.jpg\",\"2\":\"products\\/8.jpg\"}'),(49,1,4,1.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/2.jpg\",\"products\\/5.jpg\",\"products\\/8.jpg\"]'),(50,1,5,5.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\",\"products\\/6.jpg\"]'),(51,3,4,5.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\",\"products\\/7.jpg\",\"products\\/8.jpg\"]'),(52,7,2,4.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/3.jpg\",\"products\\/7.jpg\"]'),(53,2,1,3.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/2.jpg\",\"products\\/7.jpg\",\"products\\/8.jpg\"]'),(54,6,2,1.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/1.jpg\"]'),(55,7,1,3.00,'Good app, good backup service and support. Good documentation.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/3.jpg\"]'),(56,4,8,2.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/1.jpg\"]'),(57,9,8,4.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/2.jpg\",\"products\\/7.jpg\",\"products\\/8.jpg\"]'),(58,5,1,2.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\",\"products\\/6.jpg\",\"products\\/8.jpg\"]'),(59,9,7,1.00,'Clean & perfect source code','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\"]'),(60,6,7,1.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','{\"0\":\"products\\/3.jpg\",\"2\":\"products\\/8.jpg\"}'),(61,9,5,4.00,'Good app, good backup service and support. Good documentation.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\",\"products\\/7.jpg\",\"products\\/8.jpg\"]'),(62,3,6,4.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2022-01-03 21:19:34','2022-01-03 21:19:34','{\"0\":\"products\\/2.jpg\",\"2\":\"products\\/8.jpg\"}'),(63,4,3,2.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/3.jpg\",\"products\\/6.jpg\"]'),(64,7,3,4.00,'Best ecommerce CMS online store!','published','2022-01-03 21:19:34','2022-01-03 21:19:34','{\"0\":\"products\\/2.jpg\",\"2\":\"products\\/8.jpg\"}'),(65,8,1,2.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\",\"products\\/6.jpg\"]'),(66,1,2,5.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\"]'),(67,9,5,4.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/3.jpg\"]'),(68,2,4,3.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/2.jpg\",\"products\\/7.jpg\"]'),(69,7,4,4.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2022-01-03 21:19:34','2022-01-03 21:19:34','{\"0\":\"products\\/4.jpg\",\"2\":\"products\\/8.jpg\"}'),(70,9,7,3.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/2.jpg\",\"products\\/6.jpg\"]'),(71,8,8,1.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/3.jpg\"]'),(72,5,6,1.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/3.jpg\",\"products\\/7.jpg\"]'),(73,5,7,3.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\",\"products\\/5.jpg\"]'),(74,6,7,2.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/2.jpg\",\"products\\/7.jpg\"]'),(75,4,6,3.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/2.jpg\",\"products\\/5.jpg\",\"products\\/8.jpg\"]'),(76,3,2,5.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/3.jpg\",\"products\\/5.jpg\"]'),(77,1,4,1.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\"]'),(78,4,4,2.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/2.jpg\",\"products\\/5.jpg\",\"products\\/8.jpg\"]'),(79,8,8,3.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/1.jpg\",\"products\\/5.jpg\"]'),(80,9,6,2.00,'Good app, good backup service and support. Good documentation.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/1.jpg\",\"products\\/7.jpg\"]'),(81,7,8,2.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/2.jpg\"]'),(82,1,4,4.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/2.jpg\",\"products\\/7.jpg\"]'),(83,6,5,4.00,'Good app, good backup service and support. Good documentation.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\",\"products\\/6.jpg\"]'),(84,2,2,5.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/1.jpg\",\"products\\/6.jpg\"]'),(85,1,1,5.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2022-01-03 21:19:34','2022-01-03 21:19:34','{\"0\":\"products\\/4.jpg\",\"2\":\"products\\/8.jpg\"}'),(86,7,2,3.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\",\"products\\/6.jpg\"]'),(87,6,5,5.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/3.jpg\",\"products\\/6.jpg\"]'),(88,5,5,5.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2022-01-03 21:19:34','2022-01-03 21:19:34','{\"0\":\"products\\/2.jpg\",\"2\":\"products\\/8.jpg\"}'),(89,8,4,4.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\"]'),(90,5,5,5.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/1.jpg\",\"products\\/5.jpg\",\"products\\/8.jpg\"]'),(91,1,3,1.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/1.jpg\",\"products\\/5.jpg\"]'),(92,6,2,3.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\",\"products\\/5.jpg\"]'),(93,4,8,5.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/3.jpg\",\"products\\/7.jpg\",\"products\\/8.jpg\"]'),(94,6,5,1.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/2.jpg\",\"products\\/7.jpg\",\"products\\/8.jpg\"]'),(95,2,2,5.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\"]'),(96,6,8,5.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/2.jpg\",\"products\\/6.jpg\"]'),(97,6,6,3.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\",\"products\\/6.jpg\",\"products\\/8.jpg\"]'),(98,3,5,1.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/3.jpg\",\"products\\/6.jpg\"]'),(99,4,3,3.00,'Best ecommerce CMS online store!','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/1.jpg\",\"products\\/7.jpg\"]'),(100,5,7,1.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2022-01-03 21:19:34','2022-01-03 21:19:34','[\"products\\/4.jpg\"]');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_shipment_histories` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `action` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` int unsigned DEFAULT NULL,
  `shipment_id` int unsigned NOT NULL,
  `order_id` int unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`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 `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,'2022-04-07 11:55:18','2022-04-07 11:55:18'),(2,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,1,1,'2022-04-19 03:55:18','2022-04-20 19:55:18'),(3,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,1,1,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(4,'create_from_order','Shipping was created from order %order_id%',0,2,2,'2022-04-11 07:55:18','2022-04-11 07:55:18'),(5,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,2,2,'2022-04-19 05:55:18','2022-04-20 19:55:18'),(6,'create_from_order','Shipping was created from order %order_id%',0,3,3,'2022-04-16 07:55:18','2022-04-16 07:55:18'),(7,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,3,3,'2022-04-19 07:55:18','2022-04-20 19:55:18'),(8,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,3,3,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(9,'create_from_order','Shipping was created from order %order_id%',0,4,4,'2022-04-17 23:55:18','2022-04-17 23:55:18'),(10,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,4,4,'2022-04-19 09:55:18','2022-04-20 19:55:18'),(11,'create_from_order','Shipping was created from order %order_id%',0,5,5,'2022-04-07 11:55:18','2022-04-07 11:55:18'),(12,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,5,5,'2022-04-19 11:55:18','2022-04-20 19:55:18'),(13,'create_from_order','Shipping was created from order %order_id%',0,6,6,'2022-04-18 07:55:18','2022-04-18 07:55:18'),(14,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,6,6,'2022-04-19 13:55:18','2022-04-20 19:55:18'),(15,'create_from_order','Shipping was created from order %order_id%',0,7,7,'2022-04-09 03:55:18','2022-04-09 03:55:18'),(16,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,7,7,'2022-04-19 15:55:18','2022-04-20 19:55:18'),(17,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,7,7,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(18,'create_from_order','Shipping was created from order %order_id%',0,8,8,'2022-04-12 03:55:18','2022-04-12 03:55:18'),(19,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,8,8,'2022-04-19 17:55:18','2022-04-20 19:55:18'),(20,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,8,8,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(21,'create_from_order','Shipping was created from order %order_id%',0,9,9,'2022-04-18 19:55:18','2022-04-18 19:55:18'),(22,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,9,9,'2022-04-19 19:55:18','2022-04-20 19:55:18'),(23,'create_from_order','Shipping was created from order %order_id%',0,10,10,'2022-04-17 03:55:18','2022-04-17 03:55:18'),(24,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,10,10,'2022-04-19 21:55:18','2022-04-20 19:55:18'),(25,'create_from_order','Shipping was created from order %order_id%',0,11,11,'2022-04-17 11:55:18','2022-04-17 11:55:18'),(26,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,11,11,'2022-04-19 23:55:18','2022-04-20 19:55:18'),(27,'create_from_order','Shipping was created from order %order_id%',0,12,12,'2022-04-18 13:55:18','2022-04-18 13:55:18'),(28,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,12,12,'2022-04-20 01:55:18','2022-04-20 19:55:18'),(29,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,12,12,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(30,'create_from_order','Shipping was created from order %order_id%',0,13,13,'2022-04-16 19:55:18','2022-04-16 19:55:18'),(31,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,13,13,'2022-04-20 03:55:18','2022-04-20 19:55:18'),(32,'create_from_order','Shipping was created from order %order_id%',0,14,14,'2022-04-19 15:55:18','2022-04-19 15:55:18'),(33,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,14,14,'2022-04-20 05:55:18','2022-04-20 19:55:18'),(34,'create_from_order','Shipping was created from order %order_id%',0,15,15,'2022-04-17 19:55:18','2022-04-17 19:55:18'),(35,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,15,15,'2022-04-20 07:55:18','2022-04-20 19:55:18'),(36,'create_from_order','Shipping was created from order %order_id%',0,16,16,'2022-04-19 23:55:18','2022-04-19 23:55:18'),(37,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,16,16,'2022-04-20 09:55:18','2022-04-20 19:55:18'),(38,'update_status','Changed status of shipping to : Delivered . Updated by: %user_name%',0,16,16,'2022-04-20 19:55:18','2022-04-20 19:55:18'),(39,'create_from_order','Shipping was created from order %order_id%',0,17,17,'2022-04-18 11:55:18','2022-04-18 11:55:18'),(40,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,17,17,'2022-04-20 11:55:18','2022-04-20 19:55:18'),(41,'create_from_order','Shipping was created from order %order_id%',0,18,18,'2022-04-19 07:55:18','2022-04-19 07:55:18'),(42,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,18,18,'2022-04-20 13:55:18','2022-04-20 19:55:18'),(43,'create_from_order','Shipping was created from order %order_id%',0,19,19,'2022-04-19 11:55:18','2022-04-19 11:55:18'),(44,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,19,19,'2022-04-20 15:55:18','2022-04-20 19:55:18'),(45,'create_from_order','Shipping was created from order %order_id%',0,20,20,'2022-04-20 11:55:18','2022-04-20 11:55:18'),(46,'update_status','Changed status of shipping to : Approved . Updated by: %user_name%',0,20,20,'2022-04-20 17:55:18','2022-04-20 19:55:18');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_shipments` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `order_id` int unsigned NOT NULL,
  `user_id` int unsigned DEFAULT NULL,
  `weight` double(8,2) DEFAULT '0.00',
  `shipment_id` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `note` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `cod_amount` decimal(15,2) DEFAULT '0.00',
  `cod_status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `cross_checking_status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `price` decimal(15,2) DEFAULT '0.00',
  `store_id` int unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `tracking_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `shipping_company_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `tracking_link` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `estimate_date_shipped` datetime DEFAULT NULL,
  `date_shipped` datetime 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,2945.00,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18','JJD007924406','GHN','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2022-04-26 02:55:18','2022-04-21 02:55:18'),(2,2,NULL,6310.00,NULL,'','approved',0.00,'completed','pending',0.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18','JJD0039699717','GHN','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2022-04-24 02:55:18',NULL),(3,3,NULL,5985.00,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18','JJD0013384091','AliExpress','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2022-05-01 02:55:18','2022-04-21 02:55:18'),(4,4,NULL,6251.00,NULL,'','approved',0.00,'completed','pending',0.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18','JJD0082450268','FastShipping','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2022-04-30 02:55:18',NULL),(5,5,NULL,2470.00,NULL,'','approved',314.90,'pending','pending',0.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18','JJD0063867597','FastShipping','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2022-04-27 02:55:18',NULL),(6,6,NULL,3588.00,NULL,'','approved',0.00,'completed','pending',0.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18','JJD0099703443','FastShipping','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2022-04-26 02:55:18',NULL),(7,7,NULL,4281.00,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18','JJD0014600614','FastShipping','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2022-05-01 02:55:18','2022-04-21 02:55:18'),(8,8,NULL,2519.00,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18','JJD0018449942','FastShipping','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2022-04-28 02:55:18','2022-04-21 02:55:18'),(9,9,NULL,1910.00,NULL,'','approved',0.00,'completed','pending',0.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18','JJD0050726584','DHL','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2022-04-29 02:55:18',NULL),(10,10,NULL,4927.00,NULL,'','approved',0.00,'completed','pending',0.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18','JJD0066960892','FastShipping','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2022-04-30 02:55:18',NULL),(11,11,NULL,6741.00,NULL,'','approved',0.00,'completed','pending',0.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18','JJD0046670400','FastShipping','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2022-04-28 02:55:18',NULL),(12,12,NULL,1821.00,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18','JJD0088343758','GHN','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2022-04-29 02:55:18','2022-04-21 02:55:18'),(13,13,NULL,3656.00,NULL,'','approved',0.00,'completed','pending',0.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18','JJD0039609350','AliExpress','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2022-04-22 02:55:18',NULL),(14,14,NULL,4796.00,NULL,'','approved',0.00,'completed','pending',0.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18','JJD0078375046','GHN','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2022-04-22 02:55:18',NULL),(15,15,NULL,1095.00,NULL,'','approved',0.00,'completed','pending',0.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18','JJD0010756136','FastShipping','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2022-04-27 02:55:18',NULL),(16,16,NULL,5262.00,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18','JJD0081036377','DHL','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2022-04-27 02:55:18','2022-04-21 02:55:18'),(17,17,NULL,2580.00,NULL,'','approved',0.00,'completed','pending',0.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18','JJD0066312839','AliExpress','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2022-04-30 02:55:18',NULL),(18,18,NULL,5323.00,NULL,'','approved',0.00,'completed','pending',0.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18','JJD0061773384','GHN','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2022-04-30 02:55:18',NULL),(19,19,NULL,4628.00,NULL,'','approved',0.00,'completed','pending',0.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18','JJD0046270911','DHL','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2022-05-01 02:55:18',NULL),(20,20,NULL,4376.00,NULL,'','approved',0.00,'completed','pending',0.00,0,'2022-04-20 19:55:18','2022-04-20 19:55:18','JJD0097046616','DHL','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2022-05-01 02:55:18',NULL);
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_shipping` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country` varchar(120) CHARACTER SET utf8mb4 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,'2022-01-03 21:19:35','2022-01-03 21:19:35');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_shipping_rule_items` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `shipping_rule_id` int unsigned NOT NULL,
  `country` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `state` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `city` varchar(120) CHARACTER SET utf8mb4 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_shipping_rules` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `shipping_id` int unsigned NOT NULL,
  `type` enum('base_on_price','base_on_weight') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'base_on_price',
  `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=4 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,'Free shipping',1,'base_on_price',0.00,NULL,0.00,'2022-01-03 21:19:35','2022-01-03 21:19:35'),(2,'Local Pickup',1,'base_on_price',0.00,NULL,20.00,'2022-01-03 21:19:35','2022-01-03 21:19:35'),(3,'Flat Rate',1,'base_on_price',0.00,NULL,25.00,'2022-01-03 21:19:35','2022-01-03 21:19:35');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_store_locators` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `country` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `state` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `city` varchar(120) CHARACTER SET utf8mb4 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,'HASA SG','sales@botble.com','18006268','North Link Building, 10 Admiralty Street','SG','Singapore','Singapore',1,1,'2022-01-03 21:19:40','2022-01-03 21:19:40');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_taxes` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `percentage` double(8,6) DEFAULT NULL,
  `priority` int DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 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','2022-01-03 21:19:32','2022-01-03 21:19:32'),(2,'None',0.000000,2,'published','2022-01-03 21:19:32','2022-01-03 21:19:32');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_wish_lists` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` int unsigned NOT NULL,
  `product_id` int 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `failed_jobs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `uuid` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `connection` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `queue` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `exception` longtext CHARACTER SET utf8mb4 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 `faq_categories`
--

DROP TABLE IF EXISTS `faq_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `faq_categories` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `order` tinyint NOT NULL DEFAULT '0',
  `status` varchar(60) CHARACTER SET utf8mb4 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 `faq_categories`
--

LOCK TABLES `faq_categories` WRITE;
/*!40000 ALTER TABLE `faq_categories` DISABLE KEYS */;
INSERT INTO `faq_categories` VALUES (1,'Shipping',0,'published','2022-01-03 21:19:42','2022-01-03 21:19:42'),(2,'Payment',1,'published','2022-01-03 21:19:42','2022-01-03 21:19:42'),(3,'Order & Returns',2,'published','2022-01-03 21:19:42','2022-01-03 21:19:42');
/*!40000 ALTER TABLE `faq_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `faq_categories_translations`
--

DROP TABLE IF EXISTS `faq_categories_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `faq_categories_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `faq_categories_id` int NOT NULL,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`faq_categories_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `faq_categories_translations`
--

LOCK TABLES `faq_categories_translations` WRITE;
/*!40000 ALTER TABLE `faq_categories_translations` DISABLE KEYS */;
INSERT INTO `faq_categories_translations` VALUES ('vi',1,'VẬN CHUYỂN'),('vi',2,'THANH TOÁN'),('vi',3,'ĐƠN HÀNG & HOÀN TRẢ');
/*!40000 ALTER TABLE `faq_categories_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `faqs`
--

DROP TABLE IF EXISTS `faqs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `faqs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `question` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `answer` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `category_id` int unsigned NOT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 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 `faqs`
--

LOCK TABLES `faqs` WRITE;
/*!40000 ALTER TABLE `faqs` DISABLE KEYS */;
INSERT INTO `faqs` VALUES (1,'What Shipping Methods Are Available?','Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.',1,'published','2022-01-03 21:19:42','2022-01-03 21:19:42'),(2,'Do You Ship Internationally?','Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.',1,'published','2022-01-03 21:19:42','2022-01-03 21:19:42'),(3,'How Long Will It Take To Get My Package?','Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.',1,'published','2022-01-03 21:19:42','2022-01-03 21:19:42'),(4,'What Payment Methods Are Accepted?','Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.',2,'published','2022-01-03 21:19:42','2022-01-03 21:19:42'),(5,'Is Buying On-Line Safe?','Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.',2,'published','2022-01-03 21:19:42','2022-01-03 21:19:42'),(6,'How do I place an Order?','Keytar cray slow-carb, Godard banh mi salvia pour-over. Slow-carb Odd Future seitan normcore. Master cleanse American Apparel gentrify flexitarian beard slow-carb next level. Raw denim polaroid paleo farm-to-table, put a bird on it lo-fi tattooed Wes Anderson Pinterest letterpress. Fingerstache McSweeney’s pour-over, letterpress Schlitz photo booth master cleanse bespoke hashtag chillwave gentrify.',3,'published','2022-01-03 21:19:42','2022-01-03 21:19:42'),(7,'How Can I Cancel Or Change My Order?','Plaid letterpress leggings craft beer meh ethical Pinterest. Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth.',3,'published','2022-01-03 21:19:42','2022-01-03 21:19:42'),(8,'Do I need an account to place an order?','Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY. Cray ugh 3 wolf moon fap, fashion axe irony butcher cornhole typewriter chambray VHS banjo street art.',3,'published','2022-01-03 21:19:42','2022-01-03 21:19:42'),(9,'How Do I Track My Order?','Keytar cray slow-carb, Godard banh mi salvia pour-over. Slow-carb @Odd Future seitan normcore. Master cleanse American Apparel gentrify flexitarian beard slow-carb next level.',3,'published','2022-01-03 21:19:42','2022-01-03 21:19:42'),(10,'How Can I Return a Product?','Kale chips Truffaut Williamsburg, hashtag fixie Pinterest raw denim c hambray drinking vinegar Carles street art Bushwick gastropub. Wolf Tumblr paleo church-key. Plaid food truck Echo Park YOLO bitters hella, direct trade Thundercats leggings quinoa before they sold out. You probably haven’t heard of them wayfarers authentic umami drinking vinegar Pinterest Cosby sweater, fingerstache fap High Life.',3,'published','2022-01-03 21:19:42','2022-01-03 21:19:42');
/*!40000 ALTER TABLE `faqs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `faqs_translations`
--

DROP TABLE IF EXISTS `faqs_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `faqs_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `faqs_id` int NOT NULL,
  `question` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `answer` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`lang_code`,`faqs_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `faqs_translations`
--

LOCK TABLES `faqs_translations` WRITE;
/*!40000 ALTER TABLE `faqs_translations` DISABLE KEYS */;
INSERT INTO `faqs_translations` VALUES ('vi',1,'Có những phương thức vận chuyển nào?','Ex Portland Pitchfork irure ria mép. Eutra fap trước khi họ bán hết theo đúng nghĩa đen. Aliquip ugh quyền xe đạp thực sự mlkshk, rượu bia thủ công mực seitan. '),('vi',2,'Bạn có giao hàng quốc tế không?','Áo hoodie túi tote Tofu mixtape. Quần đùi jean đánh chữ Wolf quinoa, túi messenger hữu cơ freegan cray. '),('vi',3,'Mất bao lâu để nhận được gói hàng của tôi?','Bữa nửa buổi ăn sáng bằng bụng heo quay từ máy đánh chữ VHS, cà phê có nguồn gốc đơn Paleo, Wes Anderson. Khoan Pitchfork linh hoạt, theo nghĩa đen là đổ qua fap theo nghĩa đen. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray bền vững slow-carb raw denim Church-key fap chillwave Etsy. +1 bộ dụng cụ đánh máy, đậu phụ Banksy Vice của American Apparel. '),('vi',4,'Phương thức thanh toán nào được chấp nhận?','Fashion Axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Quầy ảnh Voluptate fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur ria mép. Twee chia gian hàng chụp ảnh xe bán đồ ăn sẵn, bữa tiệc trên mái áo hoodie swag keytar PBR DIY. '),('vi',5,'Mua trực tuyến có an toàn không?','Bữa tiệc nghệ thuật đích thực freegan semiotics jean shorts chia credit. Tiệc trên mái nhà Neutra Austin Brooklyn, Thundercats swag synth gian hàng ảnh 8-bit. Xà cạp letterpress kẻ sọc thủ công bia meh đạo đức Pinterest. '),('vi',6,'Làm cách nào để đặt hàng?','Keytar cray slow-carb, Godard banh mi salvia pour-over. Slow-carb Odd Định mức seitan trong tương lai. Master làm sạch American Apparel nhẹ nhàng làm sạch râu linh hoạt chậm carb cấp độ tiếp theo. Vải thô denim polaroid nhạt từ trang trại đến bàn, đặt một con chim trên đó hình xăm lo-fi Wes Anderson Pinterest letterpress. Bậc thầy gian hàng ảnh Schlitz của Fingerstache McSweeney đang làm sạch thẻ bắt đầu bằng hashtag theo yêu cầu riêng, chillwave gentrify. '),('vi',7,'Làm cách nào để tôi có thể hủy hoặc thay đổi đơn hàng của mình?','Xà cạp letterpress kẻ sọc thủ công bia meh đạo đức Pinterest. Bữa tiệc nghệ thuật đích thực freegan semiotics jean shorts chia tín. Tiệc trên mái nhà Neutra Austin ở Brooklyn, synth Thundercats có gian hàng ảnh 8-bit. '),('vi',8,'Tôi có cần tài khoản để đặt hàng không?','Thundercats làm lung lay gian hàng ảnh 8-bit. Xà cạp letterpress kẻ sọc thủ công bia meh đạo đức Pinterest. Twee chia ảnh gian hàng xe bán thức ăn làm sẵn, bữa tiệc trên mái áo hoodie swag keytar PBR DIY. Cray ugh 3 wolf moon fap, rìu thời trang mỉa mai người bán thịt máy đánh chữ chambray VHS banjo nghệ thuật đường phố. '),('vi',9,'Làm cách nào để theo dõi đơn hàng của tôi?','Keytar cray slow-carb, Godard banh mi salvia pour-over. Slow-carb @Odd Định mức seitan trong tương lai. Bậc thầy làm sạch American Apparel nhẹ nhàng làm sạch râu linh hoạt theo kiểu chậm carb cấp độ tiếp theo. '),('vi',10,'Làm cách nào để trả lại sản phẩm?','Kale chips Truffaut Williamsburg, fixie hashtag Pinterest raw denim c hambray uống giấm Carles street art Bushwick gastropub. Chìa khóa nhà thờ Wolf Tumblr. Xe tải thực phẩm kẻ sọc Echo Park YOLO cắn hella, giao dịch trực tiếp Thundercats legging quinoa trước khi bán hết. Có thể bạn chưa từng nghe nói về họ những người truyền bá vị umami đích thực uống giấm Pinterest Áo len Cosby, fingerstache fap High Life. ');
/*!40000 ALTER TABLE `faqs_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `galleries`
--

DROP TABLE IF EXISTS `galleries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `galleries` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_featured` tinyint unsigned NOT NULL DEFAULT '0',
  `order` tinyint unsigned NOT NULL DEFAULT '0',
  `image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_id` int unsigned NOT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `galleries_user_id_index` (`user_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 `galleries`
--

LOCK TABLES `galleries` WRITE;
/*!40000 ALTER TABLE `galleries` DISABLE KEYS */;
INSERT INTO `galleries` VALUES (1,'Men','Aut ut quaerat culpa aut nesciunt facilis porro. Ut qui libero saepe consequatur. Non eaque ipsam incidunt quaerat.',1,0,'galleries/1.jpg',1,'published','2022-01-03 21:19:41','2022-01-03 21:19:41'),(2,'Women','Minima dolorum iste dolorum eveniet in debitis. Et nihil autem delectus quia voluptatem maiores.',1,0,'galleries/2.jpg',1,'published','2022-01-03 21:19:41','2022-01-03 21:19:41'),(3,'Accessories','Quia temporibus enim modi esse. Tempore est nihil quae laborum reprehenderit qui error. Dolorum sunt sint eum velit itaque blanditiis est.',1,0,'galleries/3.jpg',1,'published','2022-01-03 21:19:41','2022-01-03 21:19:41'),(4,'Shoes','Cumque qui modi adipisci et delectus. Labore deleniti harum sint architecto eos excepturi. Nostrum occaecati distinctio suscipit tempora.',1,0,'galleries/4.jpg',1,'published','2022-01-03 21:19:41','2022-01-03 21:19:41'),(5,'Denim','Sint qui perspiciatis ex vero fuga. Odio repellat consequatur sunt distinctio dolorem odit. Qui ipsam unde exercitationem omnis quas similique.',1,0,'galleries/5.jpg',1,'published','2022-01-03 21:19:41','2022-01-03 21:19:41'),(6,'Dress','Nihil adipisci quia sed dolorem. Qui sed nulla nam enim deserunt laboriosam aspernatur. Illum sequi id ea.',1,0,'galleries/6.jpg',1,'published','2022-01-03 21:19:41','2022-01-03 21:19:41');
/*!40000 ALTER TABLE `galleries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `galleries_translations`
--

DROP TABLE IF EXISTS `galleries_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `galleries_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `galleries_id` int NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`lang_code`,`galleries_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `galleries_translations`
--

LOCK TABLES `galleries_translations` WRITE;
/*!40000 ALTER TABLE `galleries_translations` DISABLE KEYS */;
INSERT INTO `galleries_translations` VALUES ('vi',1,'Thời trang nam',NULL),('vi',2,'Thời trang nữ',NULL),('vi',3,'Phụ kiện',NULL),('vi',4,'Giày dép',NULL),('vi',5,'Denim',NULL),('vi',6,'Quần áo',NULL);
/*!40000 ALTER TABLE `galleries_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `gallery_meta`
--

DROP TABLE IF EXISTS `gallery_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `gallery_meta` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `images` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `reference_id` int unsigned NOT NULL,
  `reference_type` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `gallery_meta_reference_id_index` (`reference_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 `gallery_meta`
--

LOCK TABLES `gallery_meta` WRITE;
/*!40000 ALTER TABLE `gallery_meta` DISABLE KEYS */;
INSERT INTO `gallery_meta` VALUES (1,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Et consequatur odio totam in. Inventore magni sint tenetur possimus. Magni sed corporis rerum et. Sunt molestiae nobis eum quam dolor voluptatem.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Ut quia quaerat non. Beatae et voluptatem soluta dignissimos.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Quis culpa omnis ut voluptas. Laboriosam eos aut iusto sit. Vel quaerat consequuntur nihil eos illo.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Dolor dolores dolorem sit. Commodi magnam aspernatur nulla sed. Architecto dolor ut quibusdam. Enim enim libero aliquid aliquam voluptas esse.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Sit maiores et earum saepe. Quo omnis pariatur architecto voluptatibus ad iusto atque quisquam.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Reiciendis enim quisquam aspernatur a consequatur et porro hic. Rem aliquam distinctio et dignissimos qui blanditiis.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Eligendi tempore aut nulla quod dicta. Harum perspiciatis alias aut ex nesciunt minus.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Magnam sint exercitationem doloribus. Et optio rerum tempore. Dolorem cumque perspiciatis qui aut.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Animi nulla laudantium hic distinctio ab explicabo maiores. Rerum quia eos quaerat veniam aut tenetur eos. Id in iste quas ea voluptate fugit.\"},{\"img\":\"galleries\\/10.jpg\",\"description\":\"Vel rerum sed autem et omnis repudiandae. Eius enim in ex. Laudantium delectus pariatur nostrum autem est quam harum.\"}]',1,'Botble\\Gallery\\Models\\Gallery','2022-01-03 21:19:41','2022-01-03 21:19:41'),(2,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Et consequatur odio totam in. Inventore magni sint tenetur possimus. Magni sed corporis rerum et. Sunt molestiae nobis eum quam dolor voluptatem.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Ut quia quaerat non. Beatae et voluptatem soluta dignissimos.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Quis culpa omnis ut voluptas. Laboriosam eos aut iusto sit. Vel quaerat consequuntur nihil eos illo.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Dolor dolores dolorem sit. Commodi magnam aspernatur nulla sed. Architecto dolor ut quibusdam. Enim enim libero aliquid aliquam voluptas esse.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Sit maiores et earum saepe. Quo omnis pariatur architecto voluptatibus ad iusto atque quisquam.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Reiciendis enim quisquam aspernatur a consequatur et porro hic. Rem aliquam distinctio et dignissimos qui blanditiis.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Eligendi tempore aut nulla quod dicta. Harum perspiciatis alias aut ex nesciunt minus.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Magnam sint exercitationem doloribus. Et optio rerum tempore. Dolorem cumque perspiciatis qui aut.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Animi nulla laudantium hic distinctio ab explicabo maiores. Rerum quia eos quaerat veniam aut tenetur eos. Id in iste quas ea voluptate fugit.\"},{\"img\":\"galleries\\/10.jpg\",\"description\":\"Vel rerum sed autem et omnis repudiandae. Eius enim in ex. Laudantium delectus pariatur nostrum autem est quam harum.\"}]',2,'Botble\\Gallery\\Models\\Gallery','2022-01-03 21:19:41','2022-01-03 21:19:41'),(3,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Et consequatur odio totam in. Inventore magni sint tenetur possimus. Magni sed corporis rerum et. Sunt molestiae nobis eum quam dolor voluptatem.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Ut quia quaerat non. Beatae et voluptatem soluta dignissimos.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Quis culpa omnis ut voluptas. Laboriosam eos aut iusto sit. Vel quaerat consequuntur nihil eos illo.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Dolor dolores dolorem sit. Commodi magnam aspernatur nulla sed. Architecto dolor ut quibusdam. Enim enim libero aliquid aliquam voluptas esse.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Sit maiores et earum saepe. Quo omnis pariatur architecto voluptatibus ad iusto atque quisquam.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Reiciendis enim quisquam aspernatur a consequatur et porro hic. Rem aliquam distinctio et dignissimos qui blanditiis.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Eligendi tempore aut nulla quod dicta. Harum perspiciatis alias aut ex nesciunt minus.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Magnam sint exercitationem doloribus. Et optio rerum tempore. Dolorem cumque perspiciatis qui aut.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Animi nulla laudantium hic distinctio ab explicabo maiores. Rerum quia eos quaerat veniam aut tenetur eos. Id in iste quas ea voluptate fugit.\"},{\"img\":\"galleries\\/10.jpg\",\"description\":\"Vel rerum sed autem et omnis repudiandae. Eius enim in ex. Laudantium delectus pariatur nostrum autem est quam harum.\"}]',3,'Botble\\Gallery\\Models\\Gallery','2022-01-03 21:19:41','2022-01-03 21:19:41'),(4,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Et consequatur odio totam in. Inventore magni sint tenetur possimus. Magni sed corporis rerum et. Sunt molestiae nobis eum quam dolor voluptatem.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Ut quia quaerat non. Beatae et voluptatem soluta dignissimos.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Quis culpa omnis ut voluptas. Laboriosam eos aut iusto sit. Vel quaerat consequuntur nihil eos illo.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Dolor dolores dolorem sit. Commodi magnam aspernatur nulla sed. Architecto dolor ut quibusdam. Enim enim libero aliquid aliquam voluptas esse.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Sit maiores et earum saepe. Quo omnis pariatur architecto voluptatibus ad iusto atque quisquam.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Reiciendis enim quisquam aspernatur a consequatur et porro hic. Rem aliquam distinctio et dignissimos qui blanditiis.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Eligendi tempore aut nulla quod dicta. Harum perspiciatis alias aut ex nesciunt minus.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Magnam sint exercitationem doloribus. Et optio rerum tempore. Dolorem cumque perspiciatis qui aut.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Animi nulla laudantium hic distinctio ab explicabo maiores. Rerum quia eos quaerat veniam aut tenetur eos. Id in iste quas ea voluptate fugit.\"},{\"img\":\"galleries\\/10.jpg\",\"description\":\"Vel rerum sed autem et omnis repudiandae. Eius enim in ex. Laudantium delectus pariatur nostrum autem est quam harum.\"}]',4,'Botble\\Gallery\\Models\\Gallery','2022-01-03 21:19:41','2022-01-03 21:19:41'),(5,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Et consequatur odio totam in. Inventore magni sint tenetur possimus. Magni sed corporis rerum et. Sunt molestiae nobis eum quam dolor voluptatem.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Ut quia quaerat non. Beatae et voluptatem soluta dignissimos.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Quis culpa omnis ut voluptas. Laboriosam eos aut iusto sit. Vel quaerat consequuntur nihil eos illo.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Dolor dolores dolorem sit. Commodi magnam aspernatur nulla sed. Architecto dolor ut quibusdam. Enim enim libero aliquid aliquam voluptas esse.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Sit maiores et earum saepe. Quo omnis pariatur architecto voluptatibus ad iusto atque quisquam.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Reiciendis enim quisquam aspernatur a consequatur et porro hic. Rem aliquam distinctio et dignissimos qui blanditiis.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Eligendi tempore aut nulla quod dicta. Harum perspiciatis alias aut ex nesciunt minus.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Magnam sint exercitationem doloribus. Et optio rerum tempore. Dolorem cumque perspiciatis qui aut.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Animi nulla laudantium hic distinctio ab explicabo maiores. Rerum quia eos quaerat veniam aut tenetur eos. Id in iste quas ea voluptate fugit.\"},{\"img\":\"galleries\\/10.jpg\",\"description\":\"Vel rerum sed autem et omnis repudiandae. Eius enim in ex. Laudantium delectus pariatur nostrum autem est quam harum.\"}]',5,'Botble\\Gallery\\Models\\Gallery','2022-01-03 21:19:41','2022-01-03 21:19:41'),(6,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Et consequatur odio totam in. Inventore magni sint tenetur possimus. Magni sed corporis rerum et. Sunt molestiae nobis eum quam dolor voluptatem.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Ut quia quaerat non. Beatae et voluptatem soluta dignissimos.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Quis culpa omnis ut voluptas. Laboriosam eos aut iusto sit. Vel quaerat consequuntur nihil eos illo.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Dolor dolores dolorem sit. Commodi magnam aspernatur nulla sed. Architecto dolor ut quibusdam. Enim enim libero aliquid aliquam voluptas esse.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Sit maiores et earum saepe. Quo omnis pariatur architecto voluptatibus ad iusto atque quisquam.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Reiciendis enim quisquam aspernatur a consequatur et porro hic. Rem aliquam distinctio et dignissimos qui blanditiis.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Eligendi tempore aut nulla quod dicta. Harum perspiciatis alias aut ex nesciunt minus.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Magnam sint exercitationem doloribus. Et optio rerum tempore. Dolorem cumque perspiciatis qui aut.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Animi nulla laudantium hic distinctio ab explicabo maiores. Rerum quia eos quaerat veniam aut tenetur eos. Id in iste quas ea voluptate fugit.\"},{\"img\":\"galleries\\/10.jpg\",\"description\":\"Vel rerum sed autem et omnis repudiandae. Eius enim in ex. Laudantium delectus pariatur nostrum autem est quam harum.\"}]',6,'Botble\\Gallery\\Models\\Gallery','2022-01-03 21:19:41','2022-01-03 21:19:41');
/*!40000 ALTER TABLE `gallery_meta` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `jobs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jobs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `queue` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `attempts` tinyint unsigned NOT NULL,
  `reserved_at` int unsigned DEFAULT NULL,
  `available_at` int unsigned NOT NULL,
  `created_at` int 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 `language_meta`
--

DROP TABLE IF EXISTS `language_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `language_meta` (
  `lang_meta_id` int unsigned NOT NULL AUTO_INCREMENT,
  `lang_meta_code` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `lang_meta_origin` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `reference_id` int unsigned NOT NULL,
  `reference_type` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`lang_meta_id`),
  KEY `language_meta_reference_id_index` (`reference_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `language_meta`
--

LOCK TABLES `language_meta` WRITE;
/*!40000 ALTER TABLE `language_meta` DISABLE KEYS */;
INSERT INTO `language_meta` VALUES (1,'en_US','af7ebb6beecc1d667b9f4789bec694d7',1,'Botble\\SimpleSlider\\Models\\SimpleSlider'),(2,'vi','af7ebb6beecc1d667b9f4789bec694d7',2,'Botble\\SimpleSlider\\Models\\SimpleSlider'),(3,'en_US','ea22a01ef6a0c23deb9535a8afb2409c',1,'Botble\\Menu\\Models\\MenuLocation'),(4,'en_US','2a3f17eb2de3758d4748b276a30f75ae',1,'Botble\\Menu\\Models\\Menu'),(5,'en_US','1b3c262be90f7d69ac0ec336a9e411f8',2,'Botble\\Menu\\Models\\Menu'),(6,'vi','7c285a8d2356ca461452dc5b5e25adb9',2,'Botble\\Menu\\Models\\MenuLocation'),(7,'vi','2a3f17eb2de3758d4748b276a30f75ae',3,'Botble\\Menu\\Models\\Menu'),(8,'vi','1b3c262be90f7d69ac0ec336a9e411f8',4,'Botble\\Menu\\Models\\Menu');
/*!40000 ALTER TABLE `language_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `language_meta_backup`
--

DROP TABLE IF EXISTS `language_meta_backup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `language_meta_backup` (
  `lang_meta_id` int unsigned NOT NULL AUTO_INCREMENT,
  `lang_meta_code` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `lang_meta_origin` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `reference_id` int unsigned NOT NULL,
  `reference_type` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`lang_meta_id`),
  KEY `language_meta_reference_id_index` (`reference_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `language_meta_backup`
--

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

--
-- Table structure for table `languages`
--

DROP TABLE IF EXISTS `languages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `languages` (
  `lang_id` int unsigned NOT NULL AUTO_INCREMENT,
  `lang_name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `lang_locale` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `lang_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `lang_flag` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `lang_is_default` tinyint unsigned NOT NULL DEFAULT '0',
  `lang_order` int NOT NULL DEFAULT '0',
  `lang_is_rtl` tinyint unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`lang_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 `languages`
--

LOCK TABLES `languages` WRITE;
/*!40000 ALTER TABLE `languages` DISABLE KEYS */;
INSERT INTO `languages` VALUES (1,'English','en','en_US','us',1,0,0),(2,'Tiếng Việt','vi','vi','vn',0,0,0);
/*!40000 ALTER TABLE `languages` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `media_files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `media_files` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int unsigned NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `folder_id` int unsigned NOT NULL DEFAULT '0',
  `mime_type` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `size` int NOT NULL,
  `url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `options` text CHARACTER SET utf8mb4 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`),
  KEY `media_files_folder_id_user_id_created_at_index` (`folder_id`,`user_id`,`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=101 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 (1,0,'1',1,'image/png',3509,'brands/1.png','[]','2022-01-03 21:19:19','2022-01-03 21:19:19',NULL),(2,0,'2',1,'image/png',3505,'brands/2.png','[]','2022-01-03 21:19:19','2022-01-03 21:19:19',NULL),(3,0,'3',1,'image/png',2585,'brands/3.png','[]','2022-01-03 21:19:19','2022-01-03 21:19:19',NULL),(4,0,'4',1,'image/png',6427,'brands/4.png','[]','2022-01-03 21:19:20','2022-01-03 21:19:20',NULL),(5,0,'5',1,'image/png',3246,'brands/5.png','[]','2022-01-03 21:19:20','2022-01-03 21:19:20',NULL),(6,0,'6',1,'image/png',3276,'brands/6.png','[]','2022-01-03 21:19:20','2022-01-03 21:19:20',NULL),(7,0,'7',1,'image/png',3120,'brands/7.png','[]','2022-01-03 21:19:20','2022-01-03 21:19:20',NULL),(8,0,'1',2,'image/png',21674,'product-categories/1.png','[]','2022-01-03 21:19:20','2022-01-03 21:19:20',NULL),(9,0,'2',2,'image/png',22406,'product-categories/2.png','[]','2022-01-03 21:19:20','2022-01-03 21:19:20',NULL),(10,0,'3',2,'image/png',23795,'product-categories/3.png','[]','2022-01-03 21:19:20','2022-01-03 21:19:20',NULL),(11,0,'4',2,'image/png',29386,'product-categories/4.png','[]','2022-01-03 21:19:21','2022-01-03 21:19:21',NULL),(12,0,'5',2,'image/png',28764,'product-categories/5.png','[]','2022-01-03 21:19:21','2022-01-03 21:19:21',NULL),(13,0,'6',2,'image/png',24529,'product-categories/6.png','[]','2022-01-03 21:19:21','2022-01-03 21:19:21',NULL),(14,0,'7',2,'image/png',26121,'product-categories/7.png','[]','2022-01-03 21:19:21','2022-01-03 21:19:21',NULL),(15,0,'1',3,'image/jpeg',134711,'product-collections/1.jpg','[]','2022-01-03 21:19:21','2022-01-03 21:19:21',NULL),(16,0,'2',3,'image/jpeg',9190,'product-collections/2.jpg','[]','2022-01-03 21:19:22','2022-01-03 21:19:22',NULL),(17,0,'3',3,'image/jpeg',67348,'product-collections/3.jpg','[]','2022-01-03 21:19:22','2022-01-03 21:19:22',NULL),(18,0,'4',3,'image/jpeg',21888,'product-collections/4.jpg','[]','2022-01-03 21:19:22','2022-01-03 21:19:22',NULL),(19,0,'1-1',4,'image/jpeg',35414,'products/1-1.jpg','[]','2022-01-03 21:19:22','2022-01-03 21:19:22',NULL),(20,0,'1',4,'image/jpeg',40289,'products/1.jpg','[]','2022-01-03 21:19:23','2022-01-03 21:19:23',NULL),(21,0,'10-1',4,'image/jpeg',125726,'products/10-1.jpg','[]','2022-01-03 21:19:23','2022-01-03 21:19:23',NULL),(22,0,'10-2',4,'image/jpeg',217925,'products/10-2.jpg','[]','2022-01-03 21:19:23','2022-01-03 21:19:23',NULL),(23,0,'10',4,'image/jpeg',115491,'products/10.jpg','[]','2022-01-03 21:19:23','2022-01-03 21:19:23',NULL),(24,0,'11',4,'image/jpeg',98441,'products/11.jpg','[]','2022-01-03 21:19:23','2022-01-03 21:19:23',NULL),(25,0,'2-1',4,'image/jpeg',68052,'products/2-1.jpg','[]','2022-01-03 21:19:24','2022-01-03 21:19:24',NULL),(26,0,'2-2',4,'image/jpeg',61214,'products/2-2.jpg','[]','2022-01-03 21:19:24','2022-01-03 21:19:24',NULL),(27,0,'2-3',4,'image/jpeg',69617,'products/2-3.jpg','[]','2022-01-03 21:19:24','2022-01-03 21:19:24',NULL),(28,0,'2',4,'image/jpeg',58637,'products/2.jpg','[]','2022-01-03 21:19:25','2022-01-03 21:19:25',NULL),(29,0,'3-1',4,'image/jpeg',56238,'products/3-1.jpg','[]','2022-01-03 21:19:25','2022-01-03 21:19:25',NULL),(30,0,'3-2',4,'image/jpeg',72882,'products/3-2.jpg','[]','2022-01-03 21:19:26','2022-01-03 21:19:26',NULL),(31,0,'3-3',4,'image/jpeg',62320,'products/3-3.jpg','[]','2022-01-03 21:19:26','2022-01-03 21:19:26',NULL),(32,0,'3',4,'image/jpeg',76513,'products/3.jpg','[]','2022-01-03 21:19:27','2022-01-03 21:19:27',NULL),(33,0,'4-1',4,'image/jpeg',74366,'products/4-1.jpg','[]','2022-01-03 21:19:27','2022-01-03 21:19:27',NULL),(34,0,'4-2',4,'image/jpeg',98336,'products/4-2.jpg','[]','2022-01-03 21:19:27','2022-01-03 21:19:27',NULL),(35,0,'4',4,'image/jpeg',109441,'products/4.jpg','[]','2022-01-03 21:19:28','2022-01-03 21:19:28',NULL),(36,0,'5-1',4,'image/jpeg',136199,'products/5-1.jpg','[]','2022-01-03 21:19:28','2022-01-03 21:19:28',NULL),(37,0,'5-2',4,'image/jpeg',47358,'products/5-2.jpg','[]','2022-01-03 21:19:29','2022-01-03 21:19:29',NULL),(38,0,'5',4,'image/jpeg',114530,'products/5.jpg','[]','2022-01-03 21:19:29','2022-01-03 21:19:29',NULL),(39,0,'6-1',4,'image/jpeg',31704,'products/6-1.jpg','[]','2022-01-03 21:19:30','2022-01-03 21:19:30',NULL),(40,0,'6',4,'image/jpeg',31263,'products/6.jpg','[]','2022-01-03 21:19:30','2022-01-03 21:19:30',NULL),(41,0,'7-1',4,'image/jpeg',161029,'products/7-1.jpg','[]','2022-01-03 21:19:30','2022-01-03 21:19:30',NULL),(42,0,'7-2',4,'image/jpeg',121927,'products/7-2.jpg','[]','2022-01-03 21:19:30','2022-01-03 21:19:30',NULL),(43,0,'7',4,'image/jpeg',161543,'products/7.jpg','[]','2022-01-03 21:19:30','2022-01-03 21:19:30',NULL),(44,0,'8',4,'image/jpeg',191505,'products/8.jpg','[]','2022-01-03 21:19:31','2022-01-03 21:19:31',NULL),(45,0,'9',4,'image/jpeg',104416,'products/9.jpg','[]','2022-01-03 21:19:31','2022-01-03 21:19:31',NULL),(46,0,'1',5,'image/jpeg',11752,'customers/1.jpg','[]','2022-01-03 21:19:32','2022-01-03 21:19:32',NULL),(47,0,'10',5,'image/jpeg',27814,'customers/10.jpg','[]','2022-01-03 21:19:32','2022-01-03 21:19:32',NULL),(48,0,'2',5,'image/jpeg',19005,'customers/2.jpg','[]','2022-01-03 21:19:32','2022-01-03 21:19:32',NULL),(49,0,'3',5,'image/jpeg',20400,'customers/3.jpg','[]','2022-01-03 21:19:33','2022-01-03 21:19:33',NULL),(50,0,'4',5,'image/jpeg',26819,'customers/4.jpg','[]','2022-01-03 21:19:33','2022-01-03 21:19:33',NULL),(51,0,'5',5,'image/jpeg',14367,'customers/5.jpg','[]','2022-01-03 21:19:33','2022-01-03 21:19:33',NULL),(52,0,'6',5,'image/jpeg',12367,'customers/6.jpg','[]','2022-01-03 21:19:33','2022-01-03 21:19:33',NULL),(53,0,'7',5,'image/jpeg',20652,'customers/7.jpg','[]','2022-01-03 21:19:33','2022-01-03 21:19:33',NULL),(54,0,'8',5,'image/jpeg',21164,'customers/8.jpg','[]','2022-01-03 21:19:33','2022-01-03 21:19:33',NULL),(55,0,'9',5,'image/jpeg',6084,'customers/9.jpg','[]','2022-01-03 21:19:33','2022-01-03 21:19:33',NULL),(58,0,'1',7,'image/jpeg',709173,'sliders/1.jpg','[]','2022-01-03 21:19:35','2022-01-03 21:19:35',NULL),(59,0,'2',7,'image/jpeg',1019757,'sliders/2.jpg','[]','2022-01-03 21:19:36','2022-01-03 21:19:36',NULL),(60,0,'3',7,'image/jpeg',435599,'sliders/3.jpg','[]','2022-01-03 21:19:36','2022-01-03 21:19:36',NULL),(61,0,'1',8,'image/jpeg',82629,'news/1.jpg','[]','2022-01-03 21:19:37','2022-01-03 21:19:37',NULL),(62,0,'10',8,'image/jpeg',342651,'news/10.jpg','[]','2022-01-03 21:19:37','2022-01-03 21:19:37',NULL),(63,0,'11',8,'image/jpeg',296740,'news/11.jpg','[]','2022-01-03 21:19:37','2022-01-03 21:19:37',NULL),(64,0,'2',8,'image/jpeg',119904,'news/2.jpg','[]','2022-01-03 21:19:38','2022-01-03 21:19:38',NULL),(65,0,'3',8,'image/jpeg',89543,'news/3.jpg','[]','2022-01-03 21:19:38','2022-01-03 21:19:38',NULL),(66,0,'4',8,'image/jpeg',51573,'news/4.jpg','[]','2022-01-03 21:19:38','2022-01-03 21:19:38',NULL),(67,0,'5',8,'image/jpeg',41164,'news/5.jpg','[]','2022-01-03 21:19:38','2022-01-03 21:19:38',NULL),(68,0,'6',8,'image/jpeg',80696,'news/6.jpg','[]','2022-01-03 21:19:38','2022-01-03 21:19:38',NULL),(69,0,'7',8,'image/jpeg',904027,'news/7.jpg','[]','2022-01-03 21:19:38','2022-01-03 21:19:38',NULL),(70,0,'8',8,'image/jpeg',351088,'news/8.jpg','[]','2022-01-03 21:19:39','2022-01-03 21:19:39',NULL),(71,0,'9',8,'image/jpeg',353751,'news/9.jpg','[]','2022-01-03 21:19:39','2022-01-03 21:19:39',NULL),(72,0,'1',9,'image/jpeg',21423,'galleries/1.jpg','[]','2022-01-03 21:19:40','2022-01-03 21:19:40',NULL),(73,0,'2',9,'image/jpeg',19653,'galleries/2.jpg','[]','2022-01-03 21:19:40','2022-01-03 21:19:40',NULL),(74,0,'3',9,'image/jpeg',23552,'galleries/3.jpg','[]','2022-01-03 21:19:40','2022-01-03 21:19:40',NULL),(75,0,'4',9,'image/jpeg',23963,'galleries/4.jpg','[]','2022-01-03 21:19:41','2022-01-03 21:19:41',NULL),(76,0,'5',9,'image/jpeg',18512,'galleries/5.jpg','[]','2022-01-03 21:19:41','2022-01-03 21:19:41',NULL),(77,0,'6',9,'image/jpeg',24905,'galleries/6.jpg','[]','2022-01-03 21:19:41','2022-01-03 21:19:41',NULL),(78,0,'7',9,'image/jpeg',24935,'galleries/7.jpg','[]','2022-01-03 21:19:41','2022-01-03 21:19:41',NULL),(79,0,'8',9,'image/jpeg',21362,'galleries/8.jpg','[]','2022-01-03 21:19:41','2022-01-03 21:19:41',NULL),(80,0,'9',9,'image/jpeg',22307,'galleries/9.jpg','[]','2022-01-03 21:19:41','2022-01-03 21:19:41',NULL),(81,0,'favicon',10,'image/png',14500,'general/favicon.png','[]','2022-01-03 21:19:42','2022-01-03 21:19:42',NULL),(82,0,'logo-light',10,'image/png',35316,'general/logo-light.png','[]','2022-01-03 21:19:42','2022-01-03 21:19:42',NULL),(83,0,'logo',10,'image/png',41654,'general/logo.png','[]','2022-01-03 21:19:42','2022-01-03 21:19:42',NULL),(84,0,'open-graph-image',10,'image/png',580691,'general/open-graph-image.png','[]','2022-01-03 21:19:42','2022-01-03 21:19:42',NULL),(99,0,'1',18,'image/jpeg',62921,'flash-sales/1.jpg','[]','2022-04-20 19:55:17','2022-04-20 19:55:17',NULL),(100,0,'2',18,'image/jpeg',74131,'flash-sales/2.jpg','[]','2022-04-20 19:55:17','2022-04-20 19:55:17',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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `media_folders` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int unsigned NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `slug` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `parent_id` int 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`),
  KEY `media_folders_parent_id_user_id_created_at_index` (`parent_id`,`user_id`,`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=19 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 (1,0,'brands','brands',0,'2022-01-03 21:19:19','2022-01-03 21:19:19',NULL),(2,0,'product-categories','product-categories',0,'2022-01-03 21:19:20','2022-01-03 21:19:20',NULL),(3,0,'product-collections','product-collections',0,'2022-01-03 21:19:21','2022-01-03 21:19:21',NULL),(4,0,'products','products',0,'2022-01-03 21:19:22','2022-01-03 21:19:22',NULL),(5,0,'customers','customers',0,'2022-01-03 21:19:32','2022-01-03 21:19:32',NULL),(7,0,'sliders','sliders',0,'2022-01-03 21:19:35','2022-01-03 21:19:35',NULL),(8,0,'news','news',0,'2022-01-03 21:19:37','2022-01-03 21:19:37',NULL),(9,0,'galleries','galleries',0,'2022-01-03 21:19:40','2022-01-03 21:19:40',NULL),(10,0,'general','general',0,'2022-01-03 21:19:42','2022-01-03 21:19:42',NULL),(18,0,'flash-sales','flash-sales',0,'2022-04-20 19:55:17','2022-04-20 19:55:17',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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `media_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `media_id` int DEFAULT NULL,
  `user_id` int 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `menu_locations` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `menu_id` int unsigned NOT NULL,
  `location` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `menu_locations_menu_id_created_at_index` (`menu_id`,`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=3 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','2022-01-03 21:19:42','2022-01-03 21:19:42'),(2,3,'main-menu','2022-01-03 21:19:42','2022-01-03 21:19:42');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `menu_nodes` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `menu_id` int unsigned NOT NULL,
  `parent_id` int unsigned NOT NULL DEFAULT '0',
  `reference_id` int unsigned DEFAULT NULL,
  `reference_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `url` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `icon_font` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `position` tinyint unsigned NOT NULL DEFAULT '0',
  `title` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `css_class` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `target` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '_self',
  `has_child` tinyint 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`),
  KEY `menu_nodes_index` (`parent_id`,`reference_id`,`reference_type`,`has_child`,`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=26 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,'2022-01-03 21:19:42','2022-01-03 21:19:42'),(2,1,0,NULL,NULL,'/products',NULL,0,'Products',NULL,'_self',1,'2022-01-03 21:19:42','2022-01-03 21:19:42'),(3,1,2,1,'Botble\\Ecommerce\\Models\\ProductCategory','/product-categories/office-bags',NULL,0,'Woman wallet',NULL,'_self',0,'2022-01-03 21:19:42','2022-01-03 21:19:42'),(4,1,2,2,'Botble\\Ecommerce\\Models\\ProductCategory','/product-categories/hand-bag',NULL,0,'Office bags',NULL,'_self',0,'2022-01-03 21:19:42','2022-01-03 21:19:42'),(5,1,2,3,'Botble\\Ecommerce\\Models\\ProductCategory','/product-categories/woman',NULL,0,'Hand bag',NULL,'_self',0,'2022-01-03 21:19:42','2022-01-03 21:19:42'),(6,1,2,4,'Botble\\Ecommerce\\Models\\ProductCategory','/product-categories/woman-wallet',NULL,0,'Backpack',NULL,'_self',0,'2022-01-03 21:19:42','2022-01-03 21:19:42'),(7,1,0,2,'Botble\\Page\\Models\\Page','/blog',NULL,0,'Blog',NULL,'_self',0,'2022-01-03 21:19:42','2022-01-03 21:19:42'),(8,1,0,5,'Botble\\Page\\Models\\Page','/faqs',NULL,0,'FAQ',NULL,'_self',0,'2022-01-03 21:19:42','2022-01-03 21:19:42'),(9,1,0,3,'Botble\\Page\\Models\\Page','/contact',NULL,0,'Contact',NULL,'_self',0,'2022-01-03 21:19:42','2022-01-03 21:19:42'),(10,2,0,NULL,NULL,'/login',NULL,0,'Login',NULL,'_self',0,'2022-01-03 21:19:42','2022-01-03 21:19:42'),(11,2,0,NULL,NULL,'/register',NULL,0,'Register',NULL,'_self',0,'2022-01-03 21:19:42','2022-01-03 21:19:42'),(12,2,0,2,'Botble\\Page\\Models\\Page','/blog',NULL,0,'Blog',NULL,'_self',0,'2022-01-03 21:19:42','2022-01-03 21:19:42'),(13,2,0,3,'Botble\\Page\\Models\\Page','/contact',NULL,0,'Contact',NULL,'_self',0,'2022-01-03 21:19:42','2022-01-03 21:19:42'),(14,3,0,NULL,NULL,'/',NULL,0,'Trang chủ',NULL,'_self',0,'2022-01-03 21:19:42','2022-01-03 21:19:42'),(15,3,0,NULL,NULL,'/products',NULL,0,'Sản phẩm',NULL,'_self',1,'2022-01-03 21:19:42','2022-01-03 21:19:42'),(16,3,15,1,'Botble\\Ecommerce\\Models\\ProductCategory','/product-categories/office-bags',NULL,0,'Túi xách nữ',NULL,'_self',0,'2022-01-03 21:19:42','2022-01-03 21:19:42'),(17,3,15,2,'Botble\\Ecommerce\\Models\\ProductCategory','/product-categories/hand-bag',NULL,0,'Túi công sở',NULL,'_self',0,'2022-01-03 21:19:42','2022-01-03 21:19:42'),(18,3,15,3,'Botble\\Ecommerce\\Models\\ProductCategory','/product-categories/woman',NULL,0,'Ví cầm tay',NULL,'_self',0,'2022-01-03 21:19:42','2022-01-03 21:19:42'),(19,3,15,4,'Botble\\Ecommerce\\Models\\ProductCategory','/product-categories/woman-wallet',NULL,0,'Ba lô',NULL,'_self',0,'2022-01-03 21:19:42','2022-01-03 21:19:42'),(20,3,0,2,'Botble\\Page\\Models\\Page','/blog',NULL,0,'Tin tức',NULL,'_self',0,'2022-01-03 21:19:42','2022-01-03 21:19:42'),(21,3,0,3,'Botble\\Page\\Models\\Page','/contact',NULL,0,'Liên hệ',NULL,'_self',0,'2022-01-03 21:19:42','2022-01-03 21:19:42'),(22,4,0,NULL,NULL,'/login',NULL,0,'Đăng nhập',NULL,'_self',0,'2022-01-03 21:19:42','2022-01-03 21:19:42'),(23,4,0,NULL,NULL,'/register',NULL,0,'Đăng ký',NULL,'_self',0,'2022-01-03 21:19:42','2022-01-03 21:19:42'),(24,4,0,2,'Botble\\Page\\Models\\Page','/blog',NULL,0,'Tin tức',NULL,'_self',0,'2022-01-03 21:19:42','2022-01-03 21:19:42'),(25,4,0,3,'Botble\\Page\\Models\\Page','/contact',NULL,0,'Liên hệ',NULL,'_self',0,'2022-01-03 21:19:42','2022-01-03 21:19:42');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `menus` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 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','2022-01-03 21:19:42','2022-01-03 21:19:42'),(2,'Customer services','customer-services','published','2022-01-03 21:19:42','2022-01-03 21:19:42'),(3,'Menu chính','menu-chinh','published','2022-01-03 21:19:42','2022-01-03 21:19:42'),(4,'Dịch vụ khách hàng','dich-vu-khach-hang','published','2022-01-03 21:19:42','2022-01-03 21:19:42');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `meta_boxes` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `meta_value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `reference_id` int unsigned NOT NULL,
  `reference_type` varchar(120) CHARACTER SET utf8mb4 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=51 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,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',1,'Botble\\Ecommerce\\Models\\Product','2022-01-03 21:19:32','2022-01-03 21:19:32'),(2,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',2,'Botble\\Ecommerce\\Models\\Product','2022-01-03 21:19:32','2022-01-03 21:19:32'),(3,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',3,'Botble\\Ecommerce\\Models\\Product','2022-01-03 21:19:32','2022-01-03 21:19:32'),(4,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',4,'Botble\\Ecommerce\\Models\\Product','2022-01-03 21:19:32','2022-01-03 21:19:32'),(5,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',5,'Botble\\Ecommerce\\Models\\Product','2022-01-03 21:19:32','2022-01-03 21:19:32'),(6,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',6,'Botble\\Ecommerce\\Models\\Product','2022-01-03 21:19:32','2022-01-03 21:19:32'),(7,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',7,'Botble\\Ecommerce\\Models\\Product','2022-01-03 21:19:32','2022-01-03 21:19:32'),(8,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',8,'Botble\\Ecommerce\\Models\\Product','2022-01-03 21:19:32','2022-01-03 21:19:32'),(13,'button_text','[\"Shop now\"]',1,'Botble\\SimpleSlider\\Models\\SimpleSliderItem','2022-01-03 21:19:37','2022-01-03 21:19:37'),(14,'button_text','[\"Discover now\"]',2,'Botble\\SimpleSlider\\Models\\SimpleSliderItem','2022-01-03 21:19:37','2022-01-03 21:19:37'),(15,'button_text','[\"Shop now\"]',3,'Botble\\SimpleSlider\\Models\\SimpleSliderItem','2022-01-03 21:19:37','2022-01-03 21:19:37'),(16,'button_text','[\"Mua ngay\"]',4,'Botble\\SimpleSlider\\Models\\SimpleSliderItem','2022-01-03 21:19:37','2022-01-03 21:19:37'),(17,'button_text','[\"Kh\\u00e1m ph\\u00e1 ngay\"]',5,'Botble\\SimpleSlider\\Models\\SimpleSliderItem','2022-01-03 21:19:37','2022-01-03 21:19:37'),(18,'button_text','[\"Mua ngay\"]',6,'Botble\\SimpleSlider\\Models\\SimpleSliderItem','2022-01-03 21:19:37','2022-01-03 21:19:37'),(47,'image','[\"flash-sales\\/1.jpg\"]',1,'Botble\\Ecommerce\\Models\\FlashSale','2022-04-20 19:55:17','2022-04-20 19:55:17'),(48,'image','[\"flash-sales\\/2.jpg\"]',2,'Botble\\Ecommerce\\Models\\FlashSale','2022-04-20 19:55:17','2022-04-20 19:55:17'),(49,'vi_image','[\"flash-sales\\/1.jpg\"]',1,'Botble\\Ecommerce\\Models\\FlashSale','2022-04-20 19:55:17','2022-04-20 19:55:17'),(50,'vi_image','[\"flash-sales\\/2.jpg\"]',2,'Botble\\Ecommerce\\Models\\FlashSale','2022-04-20 19:55:17','2022-04-20 19:55:17');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `migrations` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `migration` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `batch` int NOT NULL,
  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 `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_03_032336_create_languages_table',1),(12,'2016_10_05_074239_create_setting_table',1),(13,'2016_10_07_193005_create_translations_table',1),(14,'2016_10_13_150201_create_galleries_table',1),(15,'2016_11_28_032840_create_dashboard_widget_tables',1),(16,'2016_12_16_084601_create_widgets_table',1),(17,'2017_05_09_070343_create_media_tables',1),(18,'2017_05_18_080441_create_payment_tables',1),(19,'2017_07_11_140018_create_simple_slider_table',1),(20,'2017_10_24_154832_create_newsletter_table',1),(21,'2017_11_03_070450_create_slug_table',1),(22,'2018_07_09_221238_create_faq_table',1),(23,'2019_01_05_053554_create_jobs_table',1),(24,'2019_08_19_000000_create_failed_jobs_table',1),(25,'2020_03_05_041139_create_ecommerce_tables',1),(26,'2020_09_22_135635_update_taxes_table',1),(27,'2020_09_29_101006_add_views_into_ec_products_table',1),(28,'2020_10_01_152311_make_column_image_in_product_attributes_table_nullable',1),(29,'2020_10_06_073439_improve_ecommerce_database',1),(30,'2020_11_01_040415_update_table_ec_order_addresses',1),(31,'2020_11_04_091510_make_column_phone_in_order_addresses_nullable',1),(32,'2020_11_30_015801_update_table_ec_product_categories',1),(33,'2021_01_01_044147_ecommerce_create_flash_sale_table',1),(34,'2021_01_17_082713_add_column_is_featured_to_product_collections_table',1),(35,'2021_01_18_024333_add_zip_code_into_table_customer_addresses',1),(36,'2021_02_16_092633_remove_default_value_for_author_type',1),(37,'2021_02_18_073505_update_table_ec_reviews',1),(38,'2021_03_10_024419_add_column_confirmed_at_to_table_ec_customers',1),(39,'2021_03_10_025153_change_column_tax_amount',1),(40,'2021_03_20_033103_add_column_availability_to_table_ec_products',1),(41,'2021_03_27_144913_add_customer_type_into_table_payments',1),(42,'2021_04_28_074008_ecommerce_create_product_label_table',1),(43,'2021_05_24_034720_make_column_currency_nullable',1),(44,'2021_05_31_173037_ecommerce_create_ec_products_translations',1),(45,'2021_06_28_153141_correct_slugs_data',1),(46,'2021_08_09_161302_add_metadata_column_to_payments_table',1),(47,'2021_08_17_105016_remove_column_currency_id_in_some_tables',1),(48,'2021_08_30_142128_add_images_column_to_ec_reviews_table',1),(49,'2021_09_01_115151_remove_unused_fields_in_ec_products',1),(50,'2021_10_04_030050_add_column_created_by_to_table_ec_products',1),(51,'2021_10_05_122616_add_status_column_to_ec_customers_table',1),(52,'2021_10_19_020859_update_metadata_field',1),(53,'2021_10_25_021023_fix-priority-load-for-language-advanced',1),(54,'2021_11_03_025806_nullable_phone_number_in_ec_customer_addresses',1),(55,'2021_11_23_071403_correct_languages_for_product_variations',1),(56,'2021_11_28_031808_add_product_tags_translations',1),(57,'2021_12_01_031123_add_featured_image_to_ec_products',1),(58,'2021_12_03_030600_create_blog_translations',1),(59,'2021_12_03_075608_create_page_translations',1),(60,'2021_12_03_082134_create_faq_translations',1),(61,'2021_12_03_082953_create_gallery_translations',1),(62,'2021_12_26_024330_update_theme_options_social_links',1),(63,'2022_01_01_033107_update_table_ec_shipments',1),(64,'2019_11_18_061011_create_country_table',2),(65,'2021_12_03_084118_create_location_translations',2),(66,'2021_12_03_094518_migrate_old_location_data',2),(67,'2021_12_10_034440_switch_plugin_location_to_use_language_advanced',2),(68,'2022_01_16_085908_improve_plugin_location',2),(69,'2022_02_16_042457_improve_product_attribute_sets',3),(70,'2022_03_22_075758_correct_product_name',4),(71,'2022_04_19_113334_add_index_to_ec_products',5),(72,'2022_04_19_113923_add_index_to_table_posts',5),(73,'2022_04_20_100851_add_index_to_media_table',5),(74,'2022_04_20_101046_add_index_to_menu_table',5);
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `newsletters` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `email` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `pages` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `user_id` int NOT NULL,
  `image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `template` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_featured` tinyint NOT NULL DEFAULT '0',
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 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 `pages`
--

LOCK TABLES `pages` WRITE;
/*!40000 ALTER TABLE `pages` DISABLE KEYS */;
INSERT INTO `pages` VALUES (1,'Homepage','<div>[simple-slider key=\"home-slider\"][/simple-slider]</div><div>[featured-product-categories title=\"Top Categories\" subtitle=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus blandit massa enim Nullam nunc varius.\"][/featured-product-categories]</div><div>[product-collections title=\"A change of Season\" subtitle=\"Update your wardrobe with new seasonal trend\"][/product-collections]</div><div>[flash-sale title=\"Deal of the day\" subtitle=\"Best Deals For You\" show_popup=\"yes\"][/flash-sale]</div><div>[featured-products title=\"Our Picks For You\" subtitle=\"Always find the best ways for you\" limit=\"8\"][/featured-products]</div><div>[trending-products title=\"Trending Products\" subtitle=\"Products on trending\" limit=\"4\"][/trending-products]</div><div>[featured-brands title=\"Our Brands\"][/featured-brands]</div><div>[news title=\"Visit Our Blog\" subtitle=\"Our Blog updated the newest trend of the world regularly\"][/news]</div><div>[theme-galleries title=\"@ OUR GALLERIES\" subtitle=\"Our latest fashion galleries images\" limit=\"8\"][/theme-galleries]</div><div>[site-features icon1=\"icon-truck\" title1=\"FREE SHIPPING\" subtitle1=\"Free shipping on all US order or order above $200\" icon2=\"icon-life-buoy\" title2=\"SUPPORT 24/7\" subtitle2=\"Contact us 24 hours a day, 7 days a week\" icon3=\"icon-refresh-ccw\" title3=\"30 DAYS RETURN\" subtitle3=\"Simply return it within 30 days for an exchange\" icon4=\"icon-shield\" title4=\"100% PAYMENT SECURE\" subtitle4=\"We ensure secure payment with PEV\"][/site-features]</div>',1,NULL,'homepage',0,NULL,'published','2022-01-03 21:19:40','2022-01-03 21:19:40'),(2,'Blog','<p style=\"text-align: center\">We always share fashion tips with the hope you guys will find the best style for yourself.<br />Besides, we update the fashion trend as soon as we can.<br />Enjoy your journey!</p>',1,NULL,'default',0,NULL,'published','2022-01-03 21:19:40','2022-01-03 21:19:40'),(3,'Contact','<p>[contact-form][/contact-form]</p>',1,NULL,'default',0,NULL,'published','2022-01-03 21:19:40','2022-01-03 21:19:40'),(4,'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','2022-01-03 21:19:40','2022-01-03 21:19:40'),(5,'FAQs','<div>[faqs][/faqs]</div>',1,NULL,'default',0,NULL,'published','2022-01-03 21:19:40','2022-01-03 21:19:40');
/*!40000 ALTER TABLE `pages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `pages_translations`
--

DROP TABLE IF EXISTS `pages_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `pages_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `pages_id` int NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`lang_code`,`pages_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pages_translations`
--

LOCK TABLES `pages_translations` WRITE;
/*!40000 ALTER TABLE `pages_translations` DISABLE KEYS */;
INSERT INTO `pages_translations` VALUES ('vi',1,'Trang chủ',NULL,'<div>[simple-slider key=\"slider-trang-chu\"][/simple-slider]</div><div>[featured-product-categories title=\"Danh mục nổi bật\" subtitle=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus blandit massa enim Nullam nunc varius.\"][/featured-product-categories]</div><div>[product-collections title=\"Bộ sưu tập theo mùa\" subtitle=\"Cập nhật tủ quần áo của bạn với xu hướng theo mùa mới\"][/product-collections]</div><div>[flash-sale title=\"Khuyến mãi hôm nay\" subtitle=\"Khuyến mãi tốt nhất dành cho bạn\" show_popup=\"yes\"][/flash-sale]</div><div>[featured-products title=\"Lựa chọn của chúng tôi dành cho bạn\" subtitle=\"Luôn tìm ra những cách tốt nhất cho bạn\" limit=\"8\"][/featured-products]</div><div>[trending-products title=\"Sản phẩm nổi bật\" subtitle=\"Các sản phẩm xu hướng\" limit=\"4\"][/trending-products]</div><div>[featured-brands title=\"Thương hiệu\"][/featured-brands]</div><div>[news title=\"Bài viết mới nhất\" subtitle=\"Blog của chúng tôi cập nhật các xu hướng mới nhất của thế giới thường xuyên\"][/news]</div><div>[theme-galleries title=\"@ Thư viện ảnh\" subtitle=\"Hình ảnh phòng trưng bày thời trang mới nhất của chúng tôi\" limit=\"8\"][/theme-galleries]</div><div>[site-features icon1=\"icon-truck\" title1=\"MIỄN PHÍ VẬN CHUYỂN\" subtitle1=\"Giao hàng miễn phí cho tất cả các đơn đặt hàng tại Hoa Kỳ hoặc đơn hàng trên $200\" icon2=\"icon-life-buoy\" title2=\"HỖ TRỢ 24/7\" subtitle2=\"Liên hệ với chúng tôi 24 giờ một ngày, 7 ngày một tuần\" icon3=\"icon-refresh-ccw\" title3=\"30 HOÀN HÀNG\" subtitle3=\"Hỗ trợ trả hàng trong vòng 30 ngày\" icon4=\"icon-shield\" title4=\"100% THANH TOÁN BẢO MẬT\" subtitle4=\"Chúng tôi đảm bảo thanh toán an toàn với PEV\"][/site-features]</div>'),('vi',2,'Tin tức',NULL,'<p style=\"text-align: center\">We always share fashion tips with the hope you guys will find the best style for yourself.<br />Besides, we update the fashion trend as soon as we can.<br />Enjoy your journey!</p>'),('vi',3,'Liên hệ',NULL,'<p>[contact-form][/contact-form]</p>'),('vi',4,'Chính sách cookie',NULL,'<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>'),('vi',5,'Câu hỏi thường gặp',NULL,'<div>[fas][/fas]</div>');
/*!40000 ALTER TABLE `pages_translations` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `password_resets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `password_resets` (
  `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` varchar(191) CHARACTER SET utf8mb4 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `payments` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `currency` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_id` int unsigned NOT NULL DEFAULT '0',
  `charge_id` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payment_channel` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `amount` decimal(15,2) unsigned NOT NULL,
  `order_id` int unsigned DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'pending',
  `payment_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'confirm',
  `customer_id` int unsigned DEFAULT NULL,
  `refunded_amount` decimal(15,2) unsigned DEFAULT NULL,
  `refund_note` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `customer_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `metadata` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  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,'TFWEWNMLVM','sslcommerz',NULL,477.00,1,'completed','confirm',6,NULL,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18','Botble\\Ecommerce\\Models\\Customer',NULL),(2,'USD',0,'SVO4EWVTFR','stripe',NULL,1656.90,2,'completed','confirm',9,NULL,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18','Botble\\Ecommerce\\Models\\Customer',NULL),(3,'USD',0,'JYAN3G31CZ','razorpay',NULL,1511.10,3,'completed','confirm',8,NULL,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18','Botble\\Ecommerce\\Models\\Customer',NULL),(4,'USD',0,'2R8KQQ9ID5','razorpay',NULL,1713.90,4,'completed','confirm',5,NULL,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18','Botble\\Ecommerce\\Models\\Customer',NULL),(5,'USD',0,'TRWENRAP9J','cod',NULL,314.90,5,'pending','confirm',7,NULL,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18','Botble\\Ecommerce\\Models\\Customer',NULL),(6,'USD',0,'B7TIHMITET','razorpay',NULL,1556.20,6,'completed','confirm',4,NULL,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18','Botble\\Ecommerce\\Models\\Customer',NULL),(7,'USD',0,'PBHRDXRHC6','bank_transfer',NULL,737.80,7,'pending','confirm',6,NULL,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18','Botble\\Ecommerce\\Models\\Customer',NULL),(8,'USD',0,'4TJZIVCEZS','paypal',NULL,548.10,8,'completed','confirm',5,NULL,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18','Botble\\Ecommerce\\Models\\Customer',NULL),(9,'USD',0,'Z3AKYT4VXD','paystack',NULL,998.60,9,'completed','confirm',6,NULL,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18','Botble\\Ecommerce\\Models\\Customer',NULL),(10,'USD',0,'GOSDCCTW3I','razorpay',NULL,1864.60,10,'completed','confirm',9,NULL,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18','Botble\\Ecommerce\\Models\\Customer',NULL),(11,'USD',0,'VCPFAD0ZJT','sslcommerz',NULL,2994.60,11,'completed','confirm',4,NULL,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18','Botble\\Ecommerce\\Models\\Customer',NULL),(12,'USD',0,'IX8ZDLEUIP','sslcommerz',NULL,255.90,12,'completed','confirm',4,NULL,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18','Botble\\Ecommerce\\Models\\Customer',NULL),(13,'USD',0,'FAPAFNJHIR','stripe',NULL,958.80,13,'completed','confirm',7,NULL,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18','Botble\\Ecommerce\\Models\\Customer',NULL),(14,'USD',0,'5QVB1GJKOD','paypal',NULL,1264.30,14,'completed','confirm',4,NULL,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18','Botble\\Ecommerce\\Models\\Customer',NULL),(15,'USD',0,'5LRSQNQO6C','paypal',NULL,497.20,15,'completed','confirm',4,NULL,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18','Botble\\Ecommerce\\Models\\Customer',NULL),(16,'USD',0,'WR6IPGED1D','bank_transfer',NULL,1752.20,16,'pending','confirm',9,NULL,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18','Botble\\Ecommerce\\Models\\Customer',NULL),(17,'USD',0,'FJP2OXH2JV','paypal',NULL,421.20,17,'completed','confirm',7,NULL,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18','Botble\\Ecommerce\\Models\\Customer',NULL),(18,'USD',0,'LNGAJB0XI6','paystack',NULL,1191.10,18,'completed','confirm',8,NULL,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18','Botble\\Ecommerce\\Models\\Customer',NULL),(19,'USD',0,'MCI4L9QBSM','bank_transfer',NULL,1143.40,19,'pending','confirm',6,NULL,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18','Botble\\Ecommerce\\Models\\Customer',NULL),(20,'USD',0,'HUAGYNEJQK','razorpay',NULL,1184.20,20,'completed','confirm',1,NULL,NULL,'2022-04-20 19:55:18','2022-04-20 19:55:18','Botble\\Ecommerce\\Models\\Customer',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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `post_categories` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `category_id` int unsigned NOT NULL,
  `post_id` int unsigned NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=23 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 (1,1,1),(2,3,1),(3,1,2),(4,4,2),(5,2,3),(6,3,3),(7,2,4),(8,4,4),(9,2,5),(10,4,5),(11,1,6),(12,3,6),(13,1,7),(14,4,7),(15,1,8),(16,4,8),(17,1,9),(18,3,9),(19,1,10),(20,4,10),(21,1,11),(22,3,11);
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `post_tags` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `tag_id` int unsigned NOT NULL,
  `post_id` int unsigned NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=56 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),(31,1,7),(32,2,7),(33,3,7),(34,4,7),(35,5,7),(36,1,8),(37,2,8),(38,3,8),(39,4,8),(40,5,8),(41,1,9),(42,2,9),(43,3,9),(44,4,9),(45,5,9),(46,1,10),(47,2,10),(48,3,10),(49,4,10),(50,5,10),(51,1,11),(52,2,11),(53,3,11),(54,4,11),(55,5,11);
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `posts` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `author_id` int NOT NULL,
  `author_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  `is_featured` tinyint unsigned NOT NULL DEFAULT '0',
  `image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `views` int unsigned NOT NULL DEFAULT '0',
  `format_type` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `posts_status_author_id_author_type_created_at_index` (`status`,`author_id`,`author_type`,`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=12 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<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\" height=\"375\" 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\" height=\"400\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/1.jpg',2063,NULL,'2022-01-03 21:19:40','2022-01-03 21:19:40'),(2,'Sexy Clutches: How to Buy & Wear a Designer Clutch Bag','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<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\" height=\"375\" 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\" height=\"400\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/2.jpg',1077,NULL,'2022-01-03 21:19:40','2022-01-03 21:19:40'),(3,'The Top 2020 Handbag Trends to Know','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<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\" height=\"375\" 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\" height=\"400\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/3.jpg',401,NULL,'2022-01-03 21:19:40','2022-01-03 21:19:40'),(4,'How to Match the Color of Your Handbag With an Outfit','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<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\" height=\"375\" 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\" height=\"400\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/4.jpg',2152,NULL,'2022-01-03 21:19:40','2022-01-03 21:19:40'),(5,'How to Care for Leather Bags','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<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\" height=\"375\" 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\" height=\"400\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/5.jpg',1575,NULL,'2022-01-03 21:19:40','2022-01-03 21:19:40'),(6,'We\'re Crushing Hard on Summer\'s 10 Biggest Bag Trends','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<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\" height=\"375\" 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\" height=\"400\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/6.jpg',2065,NULL,'2022-01-03 21:19:40','2022-01-03 21:19:40'),(7,'Essential Qualities of Highly Successful Music','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<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\" height=\"375\" 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\" height=\"400\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/7.jpg',1296,NULL,'2022-01-03 21:19:40','2022-01-03 21:19:40'),(8,'9 Things I Love About Shaving My Head','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<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\" height=\"375\" 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\" height=\"400\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/8.jpg',190,NULL,'2022-01-03 21:19:40','2022-01-03 21:19:40'),(9,'Why Teamwork Really Makes The Dream Work','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<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\" height=\"375\" 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\" height=\"400\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/9.jpg',663,NULL,'2022-01-03 21:19:40','2022-01-03 21:19:40'),(10,'The World Caters to Average People','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<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\" height=\"375\" 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\" height=\"400\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/10.jpg',831,NULL,'2022-01-03 21:19:40','2022-01-03 21:19:40'),(11,'The litigants on the screen are not actors','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<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\" height=\"375\" 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\" height=\"400\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n','published',1,'Botble\\ACL\\Models\\User',0,'news/11.jpg',960,NULL,'2022-01-03 21:19:40','2022-01-03 21:19:40');
/*!40000 ALTER TABLE `posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `posts_translations`
--

DROP TABLE IF EXISTS `posts_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `posts_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `posts_id` int NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`lang_code`,`posts_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `posts_translations`
--

LOCK TABLES `posts_translations` WRITE;
/*!40000 ALTER TABLE `posts_translations` DISABLE KEYS */;
INSERT INTO `posts_translations` VALUES ('vi',1,'4 Lời khuyên của Chuyên gia về Cách Chọn Ví Nam Phù hợp','Bạn nên chú ý hơn khi chọn ví. Có rất nhiều trong số chúng trên thị trường với các mẫu mã và phong cách khác nhau. Khi bạn lựa chọn cẩn thận, bạn sẽ có thể mua một chiếc ví phù hợp với nhu cầu của bạn. Chưa kể nó sẽ giúp nâng tầm phong cách của bạn một cách đáng kể.','<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<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\" height=\"375\" 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\" height=\"400\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n'),('vi',2,'Sexy Clutches: Cách Mua & Đeo Túi Clutch Thiết kế','Bạn nên chú ý hơn khi chọn ví. Có rất nhiều trong số chúng trên thị trường với các mẫu mã và phong cách khác nhau. Khi bạn lựa chọn cẩn thận, bạn sẽ có thể mua một chiếc ví phù hợp với nhu cầu của bạn. Chưa kể nó sẽ giúp nâng tầm phong cách của bạn một cách đáng kể.','<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<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\" height=\"375\" 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\" height=\"400\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n'),('vi',3,'Xu hướng túi xách hàng đầu năm 2020 cần biết','Bạn nên chú ý hơn khi chọn ví. Có rất nhiều trong số chúng trên thị trường với các mẫu mã và phong cách khác nhau. Khi bạn lựa chọn cẩn thận, bạn sẽ có thể mua một chiếc ví phù hợp với nhu cầu của bạn. Chưa kể nó sẽ giúp nâng tầm phong cách của bạn một cách đáng kể.','<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<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\" height=\"375\" 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\" height=\"400\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n'),('vi',4,'Cách Phối Màu Túi Xách Của Bạn Với Trang Phục','Bạn nên chú ý hơn khi chọn ví. Có rất nhiều trong số chúng trên thị trường với các mẫu mã và phong cách khác nhau. Khi bạn lựa chọn cẩn thận, bạn sẽ có thể mua một chiếc ví phù hợp với nhu cầu của bạn. Chưa kể nó sẽ giúp nâng tầm phong cách của bạn một cách đáng kể.','<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<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\" height=\"375\" 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\" height=\"400\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n'),('vi',5,'Cách Chăm sóc Túi Da','Bạn nên chú ý hơn khi chọn ví. Có rất nhiều trong số chúng trên thị trường với các mẫu mã và phong cách khác nhau. Khi bạn lựa chọn cẩn thận, bạn sẽ có thể mua một chiếc ví phù hợp với nhu cầu của bạn. Chưa kể nó sẽ giúp nâng tầm phong cách của bạn một cách đáng kể.','<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<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\" height=\"375\" 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\" height=\"400\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n'),('vi',6,'Chúng tôi đang nghiền ngẫm 10 xu hướng túi lớn nhất của mùa hè','Bạn nên chú ý hơn khi chọn ví. Có rất nhiều trong số chúng trên thị trường với các mẫu mã và phong cách khác nhau. Khi bạn lựa chọn cẩn thận, bạn sẽ có thể mua một chiếc ví phù hợp với nhu cầu của bạn. Chưa kể nó sẽ giúp nâng tầm phong cách của bạn một cách đáng kể.','<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<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\" height=\"375\" 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\" height=\"400\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n'),('vi',7,'Những phẩm chất cần thiết của âm nhạc thành công cao','Bạn nên chú ý hơn khi chọn ví. Có rất nhiều trong số chúng trên thị trường với các mẫu mã và phong cách khác nhau. Khi bạn lựa chọn cẩn thận, bạn sẽ có thể mua một chiếc ví phù hợp với nhu cầu của bạn. Chưa kể nó sẽ giúp nâng tầm phong cách của bạn một cách đáng kể.','<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<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\" height=\"375\" 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\" height=\"400\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n'),('vi',8,'9 điều tôi thích khi cạo đầu','Bạn nên chú ý hơn khi chọn ví. Có rất nhiều trong số chúng trên thị trường với các mẫu mã và phong cách khác nhau. Khi bạn lựa chọn cẩn thận, bạn sẽ có thể mua một chiếc ví phù hợp với nhu cầu của bạn. Chưa kể nó sẽ giúp nâng tầm phong cách của bạn một cách đáng kể.','<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<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\" height=\"375\" 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\" height=\"400\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n'),('vi',9,'Tại sao làm việc theo nhóm thực sự biến giấc mơ thành công','Bạn nên chú ý hơn khi chọn ví. Có rất nhiều trong số chúng trên thị trường với các mẫu mã và phong cách khác nhau. Khi bạn lựa chọn cẩn thận, bạn sẽ có thể mua một chiếc ví phù hợp với nhu cầu của bạn. Chưa kể nó sẽ giúp nâng tầm phong cách của bạn một cách đáng kể.','<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<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\" height=\"375\" 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\" height=\"400\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n'),('vi',10,'Thế giới phục vụ cho những người trung bình','Bạn nên chú ý hơn khi chọn ví. Có rất nhiều trong số chúng trên thị trường với các mẫu mã và phong cách khác nhau. Khi bạn lựa chọn cẩn thận, bạn sẽ có thể mua một chiếc ví phù hợp với nhu cầu của bạn. Chưa kể nó sẽ giúp nâng tầm phong cách của bạn một cách đáng kể.','<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<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\" height=\"375\" 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\" height=\"400\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n'),('vi',11,'Các đương sự trên màn hình không phải là diễn viên','Bạn nên chú ý hơn khi chọn ví. Có rất nhiều trong số chúng trên thị trường với các mẫu mã và phong cách khác nhau. Khi bạn lựa chọn cẩn thận, bạn sẽ có thể mua một chiếc ví phù hợp với nhu cầu của bạn. Chưa kể nó sẽ giúp nâng tầm phong cách của bạn một cách đáng kể.','<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<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\" height=\"375\" 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\" height=\"400\" src=\"/storage/news/5.jpg\" /></p>\n\n<p>&nbsp;</p>\n');
/*!40000 ALTER TABLE `posts_translations` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `revisions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `revisions` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `revisionable_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `revisionable_id` int NOT NULL,
  `user_id` int DEFAULT NULL,
  `key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `old_value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `new_value` text CHARACTER SET utf8mb4 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `role_users` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int unsigned NOT NULL,
  `role_id` int 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `roles` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `permissions` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_default` tinyint unsigned NOT NULL DEFAULT '0',
  `created_by` int unsigned NOT NULL,
  `updated_by` int 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` text CHARACTER SET utf8mb4 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=119 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 (1,'activated_plugins','[\"language\",\"language-advanced\",\"analytics\",\"audit-log\",\"backup\",\"blog\",\"captcha\",\"contact\",\"cookie-consent\",\"ecommerce\",\"gallery\",\"mollie\",\"newsletter\",\"payment\",\"paystack\",\"razorpay\",\"simple-slider\",\"social-login\",\"sslcommerz\",\"translation\",\"faq\",\"location\"]',NULL,NULL),(2,'payment_cod_status','1',NULL,NULL),(3,'payment_bank_transfer_status','1',NULL,NULL),(4,'permalink-botble-blog-models-post','blog',NULL,NULL),(5,'permalink-botble-blog-models-category','blog',NULL,NULL),(6,'permalink-botble-blog-models-tag','tag',NULL,NULL),(7,'payment_cod_description','Please pay money directly to the postman, if you choose cash on delivery method (COD).',NULL,NULL),(8,'payment_bank_transfer_description','Please send money to our bank account: ACB - 1990 404 19.',NULL,NULL),(9,'plugins_ecommerce_customer_new_order_status','0',NULL,NULL),(10,'plugins_ecommerce_admin_new_order_status','0',NULL,NULL),(11,'theme','september',NULL,NULL),(12,'admin_favicon','general/favicon.png',NULL,NULL),(13,'admin_logo','general/logo-light.png',NULL,NULL),(56,'language_hide_default','1',NULL,NULL),(57,'language_switcher_display','dropdown',NULL,NULL),(58,'language_display','all',NULL,NULL),(59,'language_hide_languages','[]',NULL,NULL),(70,'ecommerce_store_name','HASA SG',NULL,NULL),(71,'ecommerce_store_phone','18006268',NULL,NULL),(72,'ecommerce_store_address','North Link Building, 10 Admiralty Street',NULL,NULL),(73,'ecommerce_store_state','Singapore',NULL,NULL),(74,'ecommerce_store_city','Singapore',NULL,NULL),(75,'ecommerce_store_country','SG',NULL,NULL),(76,'theme-september-site_title','HASA - Multipurpose Laravel Fashion Shop',NULL,NULL),(77,'theme-september-copyright','© 2022 Botble Technologies. All Rights Reserved.',NULL,NULL),(78,'theme-september-favicon','general/favicon.png',NULL,NULL),(79,'theme-september-logo','general/logo.png',NULL,NULL),(80,'theme-september-seo_og_image','general/open-graph-image.png',NULL,NULL),(81,'theme-september-address','North Link Building, 10 Admiralty Street, 757695 Singapore',NULL,NULL),(82,'theme-september-hotline','18006268',NULL,NULL),(83,'theme-september-email','sales@botble.com',NULL,NULL),(84,'theme-september-facebook','https://facebook.com',NULL,NULL),(85,'theme-september-twitter','https://twitter.com',NULL,NULL),(86,'theme-september-youtube','https://youtube.com',NULL,NULL),(87,'theme-september-linkedin','https://linkedin.com',NULL,NULL),(88,'theme-september-pinterest','https://pinterest.com',NULL,NULL),(89,'theme-september-instagram','https://instagram.com',NULL,NULL),(90,'theme-september-homepage_id','1',NULL,NULL),(91,'theme-september-blog_page_id','2',NULL,NULL),(92,'theme-september-cookie_consent_message','Your experience on this site will be improved by allowing cookies ',NULL,NULL),(93,'theme-september-cookie_consent_learn_more_url','http://hasa.test/cookie-policy',NULL,NULL),(94,'theme-september-cookie_consent_learn_more_text','Cookie Policy',NULL,NULL),(95,'theme-september-enabled_sticky_header','yes',NULL,NULL),(96,'theme-september-product_page_banner_title','Enjoy Shopping with us',NULL,NULL),(100,'theme-september-vi-primary_font','Roboto Condensed',NULL,NULL),(101,'theme-september-vi-copyright','© 2022 Botble Technologies. Tất cả quyền đã được bảo hộ.',NULL,NULL),(102,'theme-september-vi-cookie_consent_message','Trải nghiệm của bạn trên trang web này sẽ được cải thiện bằng cách cho phép cookie ',NULL,NULL),(103,'theme-september-vi-cookie_consent_learn_more_url','http://hasa.test/cookie-policy',NULL,NULL),(104,'theme-september-vi-cookie_consent_learn_more_text','Chính sách cookie',NULL,NULL),(105,'theme-september-vi-homepage_id','1',NULL,NULL),(106,'theme-september-vi-blog_page_id','2',NULL,NULL),(107,'theme-september-vi-product_page_banner_title','Thỏa sức mua sắm với chúng tôi',NULL,NULL),(108,'theme-september-social_links','[[{\"key\":\"social-name\",\"value\":\"Facebook\"},{\"key\":\"social-icon\",\"value\":\"fa fa-facebook\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/facebook.com.com\"}],[{\"key\":\"social-name\",\"value\":\"Twitter\"},{\"key\":\"social-icon\",\"value\":\"fa fa-twitter\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/twitter.com\"}],[{\"key\":\"social-name\",\"value\":\"Instagram\"},{\"key\":\"social-icon\",\"value\":\"fa fa-instagram\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/instagram.com\"}],[{\"key\":\"social-name\",\"value\":\"Pinterest\"},{\"key\":\"social-icon\",\"value\":\"fa fa-pinterest\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/pinterest.com\"}],[{\"key\":\"social-name\",\"value\":\"Linkedin\"},{\"key\":\"social-icon\",\"value\":\"fa fa-linkedin\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/linkedin.com\"}],[{\"key\":\"social-name\",\"value\":\"Youtube\"},{\"key\":\"social-icon\",\"value\":\"fa fa-youtube\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/youtube.com\"}]]',NULL,NULL),(109,'media_random_hash','642b41431081fe41ebcb1348329070e1',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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `simple_slider_items` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `simple_slider_id` int unsigned NOT NULL,
  `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `link` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `order` int unsigned NOT NULL DEFAULT '0',
  `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 `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,'New Collection','sliders/1.jpg','/products','Save more with coupons & up to 70% off',1,'2022-01-03 21:19:37','2022-01-03 21:19:37'),(2,1,'Big Deals','sliders/2.jpg','/products','Headphone, Gaming Laptop, PC and more...',2,'2022-01-03 21:19:37','2022-01-03 21:19:37'),(3,1,'Trending Collection','sliders/3.jpg','/products','Save more with coupons & up to 20% off',3,'2022-01-03 21:19:37','2022-01-03 21:19:37'),(4,2,'Bộ sưu tập mới','sliders/1.jpg','/products','Tiết kiệm hơn với phiếu giảm giá và giảm giá lên đến 70%',1,'2022-01-03 21:19:37','2022-01-03 21:19:37'),(5,2,'Khuyến mãi lớn','sliders/2.jpg','/products','Tai nghe, Máy tính xách tay chơi game, PC và hơn thế nữa ...',2,'2022-01-03 21:19:37','2022-01-03 21:19:37'),(6,2,'Trending Collection','sliders/3.jpg','/products','Tiết kiệm hơn với phiếu giảm giá và giảm giá lên đến 20%',3,'2022-01-03 21:19:37','2022-01-03 21:19:37');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `simple_sliders` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `key` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 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 `simple_sliders`
--

LOCK TABLES `simple_sliders` WRITE;
/*!40000 ALTER TABLE `simple_sliders` DISABLE KEYS */;
INSERT INTO `simple_sliders` VALUES (1,'Home slider','home-slider',NULL,'published','2022-01-03 21:19:37','2022-01-03 21:19:37'),(2,'Slider trang chủ','slider-trang-chu',NULL,'published','2022-01-03 21:19:37','2022-01-03 21:19:37');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `slugs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `reference_id` int unsigned NOT NULL,
  `reference_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `prefix` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=65 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 (1,'fashion-live',1,'Botble\\Ecommerce\\Models\\Brand','brands','2022-01-03 21:19:20','2022-01-03 21:19:20'),(2,'hand-crafted',2,'Botble\\Ecommerce\\Models\\Brand','brands','2022-01-03 21:19:20','2022-01-03 21:19:20'),(3,'mestonix',3,'Botble\\Ecommerce\\Models\\Brand','brands','2022-01-03 21:19:20','2022-01-03 21:19:20'),(4,'sunshine',4,'Botble\\Ecommerce\\Models\\Brand','brands','2022-01-03 21:19:20','2022-01-03 21:19:20'),(5,'pure',5,'Botble\\Ecommerce\\Models\\Brand','brands','2022-01-03 21:19:20','2022-01-03 21:19:20'),(6,'anfold',6,'Botble\\Ecommerce\\Models\\Brand','brands','2022-01-03 21:19:20','2022-01-03 21:19:20'),(7,'automotive',7,'Botble\\Ecommerce\\Models\\Brand','brands','2022-01-03 21:19:20','2022-01-03 21:19:20'),(8,'office-bags',1,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2022-01-03 21:19:21','2022-01-03 21:19:21'),(9,'hand-bag',2,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2022-01-03 21:19:21','2022-01-03 21:19:21'),(10,'woman',3,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2022-01-03 21:19:21','2022-01-03 21:19:21'),(11,'woman-wallet',4,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2022-01-03 21:19:21','2022-01-03 21:19:21'),(12,'denim',5,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2022-01-03 21:19:21','2022-01-03 21:19:21'),(13,'dress',6,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2022-01-03 21:19:21','2022-01-03 21:19:21'),(14,'backpack',7,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2022-01-03 21:19:21','2022-01-03 21:19:21'),(15,'bags',8,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2022-01-03 21:19:21','2022-01-03 21:19:21'),(16,'wallet',9,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2022-01-03 21:19:21','2022-01-03 21:19:21'),(17,'men',10,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2022-01-03 21:19:21','2022-01-03 21:19:21'),(18,'accessories',11,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2022-01-03 21:19:21','2022-01-03 21:19:21'),(19,'men-wallet',12,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2022-01-03 21:19:21','2022-01-03 21:19:21'),(20,'shoes',13,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2022-01-03 21:19:21','2022-01-03 21:19:21'),(21,'wallet',1,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2022-01-03 21:19:22','2022-01-03 21:19:22'),(22,'bags',2,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2022-01-03 21:19:22','2022-01-03 21:19:22'),(23,'shoes',3,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2022-01-03 21:19:22','2022-01-03 21:19:22'),(24,'clothes',4,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2022-01-03 21:19:22','2022-01-03 21:19:22'),(25,'hand-bag',5,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2022-01-03 21:19:22','2022-01-03 21:19:22'),(26,'wallet-handmade',1,'Botble\\Ecommerce\\Models\\Product','products','2022-01-03 21:19:32','2022-01-03 21:19:32'),(27,'clutch-handmade',2,'Botble\\Ecommerce\\Models\\Product','products','2022-01-03 21:19:32','2022-01-03 21:19:32'),(28,'gucci-zip-around-wallet',3,'Botble\\Ecommerce\\Models\\Product','products','2022-01-03 21:19:32','2022-01-03 21:19:32'),(29,'snapshot-standard',4,'Botble\\Ecommerce\\Models\\Product','products','2022-01-03 21:19:32','2022-01-03 21:19:32'),(30,'joan-mini-camera-bag',5,'Botble\\Ecommerce\\Models\\Product','products','2022-01-03 21:19:32','2022-01-03 21:19:32'),(31,'cyan-boheme',6,'Botble\\Ecommerce\\Models\\Product','products','2022-01-03 21:19:32','2022-01-03 21:19:32'),(32,'the-marc-jacobs',7,'Botble\\Ecommerce\\Models\\Product','products','2022-01-03 21:19:32','2022-01-03 21:19:32'),(33,'round-crossbody-bag',8,'Botble\\Ecommerce\\Models\\Product','products','2022-01-03 21:19:32','2022-01-03 21:19:32'),(34,'ecommerce',1,'Botble\\Blog\\Models\\Category','blog','2022-01-03 21:19:40','2022-03-22 19:26:10'),(35,'fashion',2,'Botble\\Blog\\Models\\Category','blog','2022-01-03 21:19:40','2022-03-22 19:26:10'),(36,'electronic',3,'Botble\\Blog\\Models\\Category','blog','2022-01-03 21:19:40','2022-03-22 19:26:10'),(37,'commercial',4,'Botble\\Blog\\Models\\Category','blog','2022-01-03 21:19:40','2022-03-22 19:26:10'),(38,'general',1,'Botble\\Blog\\Models\\Tag','tag','2022-01-03 21:19:40','2022-03-22 19:26:10'),(39,'design',2,'Botble\\Blog\\Models\\Tag','tag','2022-01-03 21:19:40','2022-03-22 19:26:10'),(40,'fashion',3,'Botble\\Blog\\Models\\Tag','tag','2022-01-03 21:19:40','2022-03-22 19:26:10'),(41,'branding',4,'Botble\\Blog\\Models\\Tag','tag','2022-01-03 21:19:40','2022-03-22 19:26:10'),(42,'modern',5,'Botble\\Blog\\Models\\Tag','tag','2022-01-03 21:19:40','2022-03-22 19:26:10'),(43,'4-expert-tips-on-how-to-choose-the-right-mens-wallet',1,'Botble\\Blog\\Models\\Post','blog','2022-01-03 21:19:40','2022-03-22 19:26:10'),(44,'sexy-clutches-how-to-buy-wear-a-designer-clutch-bag',2,'Botble\\Blog\\Models\\Post','blog','2022-01-03 21:19:40','2022-03-22 19:26:10'),(45,'the-top-2020-handbag-trends-to-know',3,'Botble\\Blog\\Models\\Post','blog','2022-01-03 21:19:40','2022-03-22 19:26:10'),(46,'how-to-match-the-color-of-your-handbag-with-an-outfit',4,'Botble\\Blog\\Models\\Post','blog','2022-01-03 21:19:40','2022-03-22 19:26:10'),(47,'how-to-care-for-leather-bags',5,'Botble\\Blog\\Models\\Post','blog','2022-01-03 21:19:40','2022-03-22 19:26:10'),(48,'were-crushing-hard-on-summers-10-biggest-bag-trends',6,'Botble\\Blog\\Models\\Post','blog','2022-01-03 21:19:40','2022-03-22 19:26:10'),(49,'essential-qualities-of-highly-successful-music',7,'Botble\\Blog\\Models\\Post','blog','2022-01-03 21:19:40','2022-03-22 19:26:10'),(50,'9-things-i-love-about-shaving-my-head',8,'Botble\\Blog\\Models\\Post','blog','2022-01-03 21:19:40','2022-03-22 19:26:10'),(51,'why-teamwork-really-makes-the-dream-work',9,'Botble\\Blog\\Models\\Post','blog','2022-01-03 21:19:40','2022-03-22 19:26:10'),(52,'the-world-caters-to-average-people',10,'Botble\\Blog\\Models\\Post','blog','2022-01-03 21:19:40','2022-03-22 19:26:10'),(53,'the-litigants-on-the-screen-are-not-actors',11,'Botble\\Blog\\Models\\Post','blog','2022-01-03 21:19:40','2022-03-22 19:26:10'),(54,'homepage',1,'Botble\\Page\\Models\\Page','','2022-01-03 21:19:40','2022-01-03 21:19:40'),(55,'blog',2,'Botble\\Page\\Models\\Page','','2022-01-03 21:19:40','2022-01-03 21:19:40'),(56,'contact',3,'Botble\\Page\\Models\\Page','','2022-01-03 21:19:40','2022-01-03 21:19:40'),(57,'cookie-policy',4,'Botble\\Page\\Models\\Page','','2022-01-03 21:19:40','2022-01-03 21:19:40'),(58,'faqs',5,'Botble\\Page\\Models\\Page','','2022-01-03 21:19:40','2022-01-03 21:19:40'),(59,'men',1,'Botble\\Gallery\\Models\\Gallery','galleries','2022-01-03 21:19:41','2022-01-03 21:19:41'),(60,'women',2,'Botble\\Gallery\\Models\\Gallery','galleries','2022-01-03 21:19:41','2022-01-03 21:19:41'),(61,'accessories',3,'Botble\\Gallery\\Models\\Gallery','galleries','2022-01-03 21:19:41','2022-01-03 21:19:41'),(62,'shoes',4,'Botble\\Gallery\\Models\\Gallery','galleries','2022-01-03 21:19:41','2022-01-03 21:19:41'),(63,'denim',5,'Botble\\Gallery\\Models\\Gallery','galleries','2022-01-03 21:19:41','2022-01-03 21:19:41'),(64,'dress',6,'Botble\\Gallery\\Models\\Gallery','galleries','2022-01-03 21:19:41','2022-01-03 21:19:41');
/*!40000 ALTER TABLE `slugs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `states`
--

DROP TABLE IF EXISTS `states`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `states` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `abbreviation` varchar(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country_id` int unsigned DEFAULT NULL,
  `order` tinyint NOT NULL DEFAULT '0',
  `is_default` tinyint unsigned NOT NULL DEFAULT '0',
  `status` varchar(60) CHARACTER SET utf8mb4 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 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `states`
--

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

--
-- Table structure for table `states_backup`
--

DROP TABLE IF EXISTS `states_backup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `states_backup` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `abbreviation` varchar(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country_id` int unsigned DEFAULT NULL,
  `order` tinyint NOT NULL DEFAULT '0',
  `is_default` tinyint unsigned NOT NULL DEFAULT '0',
  `status` varchar(60) CHARACTER SET utf8mb4 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 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `states_backup`
--

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

--
-- Table structure for table `states_translations`
--

DROP TABLE IF EXISTS `states_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `states_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `states_id` int NOT NULL,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `abbreviation` varchar(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `states_translations`
--

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

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

DROP TABLE IF EXISTS `tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tags` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `author_id` int NOT NULL,
  `author_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '',
  `status` varchar(60) CHARACTER SET utf8mb4 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','2022-01-03 21:19:40','2022-01-03 21:19:40'),(2,'Design',1,'Botble\\ACL\\Models\\User','','published','2022-01-03 21:19:40','2022-01-03 21:19:40'),(3,'Fashion',1,'Botble\\ACL\\Models\\User','','published','2022-01-03 21:19:40','2022-01-03 21:19:40'),(4,'Branding',1,'Botble\\ACL\\Models\\User','','published','2022-01-03 21:19:40','2022-01-03 21:19:40'),(5,'Modern',1,'Botble\\ACL\\Models\\User','','published','2022-01-03 21:19:40','2022-01-03 21:19:40');
/*!40000 ALTER TABLE `tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tags_translations`
--

DROP TABLE IF EXISTS `tags_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tags_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `tags_id` int NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`tags_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tags_translations`
--

LOCK TABLES `tags_translations` WRITE;
/*!40000 ALTER TABLE `tags_translations` DISABLE KEYS */;
INSERT INTO `tags_translations` VALUES ('vi',1,'Chung',NULL),('vi',2,'Thiết kế',NULL),('vi',3,'Thời trang',NULL),('vi',4,'Thương hiệu',NULL),('vi',5,'Hiện đại',NULL);
/*!40000 ALTER TABLE `tags_translations` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `translations` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `status` int NOT NULL DEFAULT '0',
  `locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `group` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4200 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.','2022-04-20 19:54:41','2022-04-20 19:55:12'),(2,0,'en','auth','password','The provided password is incorrect.','2022-04-20 19:54:41','2022-04-20 19:55:12'),(3,0,'en','auth','throttle','Too many login attempts. Please try again in :seconds seconds.','2022-04-20 19:54:41','2022-04-20 19:55:12'),(4,0,'en','pagination','previous','&laquo; Previous','2022-04-20 19:54:41','2022-04-20 19:55:12'),(5,0,'en','pagination','next','Next &raquo;','2022-04-20 19:54:41','2022-04-20 19:55:12'),(6,0,'en','passwords','reset','Your password has been reset!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(7,0,'en','passwords','sent','We have emailed your password reset link!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(8,0,'en','passwords','throttled','Please wait before retrying.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(9,0,'en','passwords','token','This password reset token is invalid.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(10,0,'en','passwords','user','We can\'t find a user with that email address.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(11,0,'en','validation','accepted','The :attribute must be accepted.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(12,0,'en','validation','accepted_if','The :attribute must be accepted when :other is :value.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(13,0,'en','validation','active_url','The :attribute is not a valid URL.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(14,0,'en','validation','after','The :attribute must be a date after :date.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(15,0,'en','validation','after_or_equal','The :attribute must be a date after or equal to :date.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(16,0,'en','validation','alpha','The :attribute must only contain letters.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(17,0,'en','validation','alpha_dash','The :attribute must only contain letters, numbers, dashes and underscores.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(18,0,'en','validation','alpha_num','The :attribute must only contain letters and numbers.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(19,0,'en','validation','array','The :attribute must be an array.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(20,0,'en','validation','before','The :attribute must be a date before :date.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(21,0,'en','validation','before_or_equal','The :attribute must be a date before or equal to :date.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(22,0,'en','validation','between.numeric','The :attribute must be between :min and :max.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(23,0,'en','validation','between.file','The :attribute must be between :min and :max kilobytes.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(24,0,'en','validation','between.string','The :attribute must be between :min and :max characters.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(25,0,'en','validation','between.array','The :attribute must have between :min and :max items.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(26,0,'en','validation','boolean','The :attribute field must be true or false.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(27,0,'en','validation','confirmed','The :attribute confirmation does not match.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(28,0,'en','validation','current_password','The password is incorrect.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(29,0,'en','validation','date','The :attribute is not a valid date.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(30,0,'en','validation','date_equals','The :attribute must be a date equal to :date.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(31,0,'en','validation','date_format','The :attribute does not match the format :format.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(32,0,'en','validation','declined','The :attribute must be declined.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(33,0,'en','validation','declined_if','The :attribute must be declined when :other is :value.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(34,0,'en','validation','different','The :attribute and :other must be different.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(35,0,'en','validation','digits','The :attribute must be :digits digits.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(36,0,'en','validation','digits_between','The :attribute must be between :min and :max digits.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(37,0,'en','validation','dimensions','The :attribute has invalid image dimensions.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(38,0,'en','validation','distinct','The :attribute field has a duplicate value.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(39,0,'en','validation','email','The :attribute must be a valid email address.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(40,0,'en','validation','ends_with','The :attribute must end with one of the following: :values.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(41,0,'en','validation','enum','The selected :attribute is invalid.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(42,0,'en','validation','exists','The selected :attribute is invalid.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(43,0,'en','validation','file','The :attribute must be a file.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(44,0,'en','validation','filled','The :attribute field must have a value.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(45,0,'en','validation','gt.numeric','The :attribute must be greater than :value.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(46,0,'en','validation','gt.file','The :attribute must be greater than :value kilobytes.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(47,0,'en','validation','gt.string','The :attribute must be greater than :value characters.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(48,0,'en','validation','gt.array','The :attribute must have more than :value items.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(49,0,'en','validation','gte.numeric','The :attribute must be greater than or equal to :value.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(50,0,'en','validation','gte.file','The :attribute must be greater than or equal to :value kilobytes.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(51,0,'en','validation','gte.string','The :attribute must be greater than or equal to :value characters.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(52,0,'en','validation','gte.array','The :attribute must have :value items or more.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(53,0,'en','validation','image','The :attribute must be an image.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(54,0,'en','validation','in','The selected :attribute is invalid.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(55,0,'en','validation','in_array','The :attribute field does not exist in :other.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(56,0,'en','validation','integer','The :attribute must be an integer.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(57,0,'en','validation','ip','The :attribute must be a valid IP address.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(58,0,'en','validation','ipv4','The :attribute must be a valid IPv4 address.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(59,0,'en','validation','ipv6','The :attribute must be a valid IPv6 address.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(60,0,'en','validation','json','The :attribute must be a valid JSON string.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(61,0,'en','validation','lt.numeric','The :attribute must be less than :value.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(62,0,'en','validation','lt.file','The :attribute must be less than :value kilobytes.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(63,0,'en','validation','lt.string','The :attribute must be less than :value characters.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(64,0,'en','validation','lt.array','The :attribute must have less than :value items.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(65,0,'en','validation','lte.numeric','The :attribute must be less than or equal to :value.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(66,0,'en','validation','lte.file','The :attribute must be less than or equal to :value kilobytes.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(67,0,'en','validation','lte.string','The :attribute must be less than or equal to :value characters.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(68,0,'en','validation','lte.array','The :attribute must not have more than :value items.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(69,0,'en','validation','mac_address','The :attribute must be a valid MAC address.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(70,0,'en','validation','max.numeric','The :attribute must not be greater than :max.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(71,0,'en','validation','max.file','The :attribute must not be greater than :max kilobytes.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(72,0,'en','validation','max.string','The :attribute must not be greater than :max characters.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(73,0,'en','validation','max.array','The :attribute must not have more than :max items.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(74,0,'en','validation','mimes','The :attribute must be a file of type: :values.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(75,0,'en','validation','mimetypes','The :attribute must be a file of type: :values.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(76,0,'en','validation','min.numeric','The :attribute must be at least :min.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(77,0,'en','validation','min.file','The :attribute must be at least :min kilobytes.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(78,0,'en','validation','min.string','The :attribute must be at least :min characters.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(79,0,'en','validation','min.array','The :attribute must have at least :min items.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(80,0,'en','validation','multiple_of','The :attribute must be a multiple of :value.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(81,0,'en','validation','not_in','The selected :attribute is invalid.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(82,0,'en','validation','not_regex','The :attribute format is invalid.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(83,0,'en','validation','numeric','The :attribute must be a number.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(84,0,'en','validation','password','The password is incorrect.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(85,0,'en','validation','present','The :attribute field must be present.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(86,0,'en','validation','prohibited','The :attribute field is prohibited.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(87,0,'en','validation','prohibited_if','The :attribute field is prohibited when :other is :value.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(88,0,'en','validation','prohibited_unless','The :attribute field is prohibited unless :other is in :values.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(89,0,'en','validation','prohibits','The :attribute field prohibits :other from being present.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(90,0,'en','validation','regex','The :attribute format is invalid.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(91,0,'en','validation','required','The :attribute field is required.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(92,0,'en','validation','required_array_keys','The :attribute field must contain entries for: :values.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(93,0,'en','validation','required_if','The :attribute field is required when :other is :value.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(94,0,'en','validation','required_unless','The :attribute field is required unless :other is in :values.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(95,0,'en','validation','required_with','The :attribute field is required when :values is present.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(96,0,'en','validation','required_with_all','The :attribute field is required when :values are present.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(97,0,'en','validation','required_without','The :attribute field is required when :values is not present.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(98,0,'en','validation','required_without_all','The :attribute field is required when none of :values are present.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(99,0,'en','validation','same','The :attribute and :other must match.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(100,0,'en','validation','size.numeric','The :attribute must be :size.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(101,0,'en','validation','size.file','The :attribute must be :size kilobytes.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(102,0,'en','validation','size.string','The :attribute must be :size characters.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(103,0,'en','validation','size.array','The :attribute must contain :size items.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(104,0,'en','validation','starts_with','The :attribute must start with one of the following: :values.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(105,0,'en','validation','string','The :attribute must be a string.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(106,0,'en','validation','timezone','The :attribute must be a valid timezone.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(107,0,'en','validation','unique','The :attribute has already been taken.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(108,0,'en','validation','uploaded','The :attribute failed to upload.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(109,0,'en','validation','url','The :attribute must be a valid URL.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(110,0,'en','validation','uuid','The :attribute must be a valid UUID.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(111,0,'en','validation','custom.attribute-name.rule-name','custom-message','2022-04-20 19:54:41','2022-04-20 19:55:13'),(112,0,'en','core/acl/api','api_clients','API Clients','2022-04-20 19:54:41','2022-04-20 19:55:13'),(113,0,'en','core/acl/api','create_new_client','Create new client','2022-04-20 19:54:41','2022-04-20 19:55:13'),(114,0,'en','core/acl/api','create_new_client_success','Create new client successfully!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(115,0,'en','core/acl/api','edit_client','Edit client \":name\"','2022-04-20 19:54:41','2022-04-20 19:55:13'),(116,0,'en','core/acl/api','edit_client_success','Updated client successfully!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(117,0,'en','core/acl/api','delete_success','Deleted client successfully!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(118,0,'en','core/acl/api','confirm_delete_title','Confirm delete client \":name\"','2022-04-20 19:54:41','2022-04-20 19:55:13'),(119,0,'en','core/acl/api','confirm_delete_description','Do you really want to delete client \":name\"?','2022-04-20 19:54:41','2022-04-20 19:55:13'),(120,0,'en','core/acl/api','cancel_delete','No','2022-04-20 19:54:41','2022-04-20 19:55:13'),(121,0,'en','core/acl/api','continue_delete','Yes, let\'s delete it!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(122,0,'en','core/acl/api','name','Name','2022-04-20 19:54:41','2022-04-20 19:55:13'),(123,0,'en','core/acl/api','cancel','Cancel','2022-04-20 19:54:41','2022-04-20 19:55:13'),(124,0,'en','core/acl/api','save','Save','2022-04-20 19:54:41','2022-04-20 19:55:13'),(125,0,'en','core/acl/api','edit','Edit','2022-04-20 19:54:41','2022-04-20 19:55:13'),(126,0,'en','core/acl/api','delete','Delete','2022-04-20 19:54:41','2022-04-20 19:55:13'),(127,0,'en','core/acl/api','client_id','Client ID','2022-04-20 19:54:41','2022-04-20 19:55:13'),(128,0,'en','core/acl/api','secret','Secret','2022-04-20 19:54:41','2022-04-20 19:55:13'),(129,0,'en','core/acl/auth','login.username','Email/Username','2022-04-20 19:54:41','2022-04-20 19:55:13'),(130,0,'en','core/acl/auth','login.email','Email','2022-04-20 19:54:41','2022-04-20 19:55:13'),(131,0,'en','core/acl/auth','login.password','Password','2022-04-20 19:54:41','2022-04-20 19:55:13'),(132,0,'en','core/acl/auth','login.title','User Login','2022-04-20 19:54:41','2022-04-20 19:55:13'),(133,0,'en','core/acl/auth','login.remember','Remember me?','2022-04-20 19:54:41','2022-04-20 19:55:13'),(134,0,'en','core/acl/auth','login.login','Sign in','2022-04-20 19:54:41','2022-04-20 19:55:13'),(135,0,'en','core/acl/auth','login.placeholder.username','Please enter your username','2022-04-20 19:54:41','2022-04-20 19:55:13'),(136,0,'en','core/acl/auth','login.placeholder.email','Please enter your email','2022-04-20 19:54:41','2022-04-20 19:55:13'),(137,0,'en','core/acl/auth','login.success','Login successfully!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(138,0,'en','core/acl/auth','login.fail','Wrong username or password.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(139,0,'en','core/acl/auth','login.not_active','Your account has not been activated yet!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(140,0,'en','core/acl/auth','login.banned','This account is banned.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(141,0,'en','core/acl/auth','login.logout_success','Logout successfully!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(142,0,'en','core/acl/auth','login.dont_have_account','You don\'t have account on this system, please contact administrator for more information!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(143,0,'en','core/acl/auth','forgot_password.title','Forgot Password','2022-04-20 19:54:41','2022-04-20 19:55:13'),(144,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>','2022-04-20 19:54:41','2022-04-20 19:55:13'),(145,0,'en','core/acl/auth','forgot_password.submit','Submit','2022-04-20 19:54:41','2022-04-20 19:55:13'),(146,0,'en','core/acl/auth','reset.new_password','New password','2022-04-20 19:54:41','2022-04-20 19:55:13'),(147,0,'en','core/acl/auth','reset.password_confirmation','Confirm new password','2022-04-20 19:54:41','2022-04-20 19:55:13'),(148,0,'en','core/acl/auth','reset.email','Email','2022-04-20 19:54:41','2022-04-20 19:55:13'),(149,0,'en','core/acl/auth','reset.title','Reset your password','2022-04-20 19:54:41','2022-04-20 19:55:13'),(150,0,'en','core/acl/auth','reset.update','Update','2022-04-20 19:54:41','2022-04-20 19:55:13'),(151,0,'en','core/acl/auth','reset.wrong_token','This link is invalid or expired. Please try using reset form again.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(152,0,'en','core/acl/auth','reset.user_not_found','This username is not exist.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(153,0,'en','core/acl/auth','reset.success','Reset password successfully!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(154,0,'en','core/acl/auth','reset.fail','Token is invalid, the reset password link has been expired!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(155,0,'en','core/acl/auth','reset.reset.title','Email reset password','2022-04-20 19:54:41','2022-04-20 19:55:13'),(156,0,'en','core/acl/auth','reset.send.success','A email was sent to your email account. Please check and complete this action.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(157,0,'en','core/acl/auth','reset.send.fail','Can not send email in this time. Please try again later.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(158,0,'en','core/acl/auth','reset.new-password','New password','2022-04-20 19:54:41','2022-04-20 19:55:13'),(159,0,'en','core/acl/auth','email.reminder.title','Email reset password','2022-04-20 19:54:41','2022-04-20 19:55:13'),(160,0,'en','core/acl/auth','password_confirmation','Password confirm','2022-04-20 19:54:41','2022-04-20 19:55:13'),(161,0,'en','core/acl/auth','failed','Failed','2022-04-20 19:54:41','2022-04-20 19:55:13'),(162,0,'en','core/acl/auth','throttle','Throttle','2022-04-20 19:54:41','2022-04-20 19:55:13'),(163,0,'en','core/acl/auth','not_member','Not a member yet?','2022-04-20 19:54:41','2022-04-20 19:55:13'),(164,0,'en','core/acl/auth','register_now','Register now','2022-04-20 19:54:41','2022-04-20 19:55:13'),(165,0,'en','core/acl/auth','lost_your_password','Lost your password?','2022-04-20 19:54:41','2022-04-20 19:55:13'),(166,0,'en','core/acl/auth','login_title','Admin','2022-04-20 19:54:41','2022-04-20 19:55:13'),(167,0,'en','core/acl/auth','login_via_social','Login with social networks','2022-04-20 19:54:41','2022-04-20 19:55:13'),(168,0,'en','core/acl/auth','back_to_login','Back to login page','2022-04-20 19:54:41','2022-04-20 19:55:13'),(169,0,'en','core/acl/auth','sign_in_below','Sign In Below','2022-04-20 19:54:41','2022-04-20 19:55:13'),(170,0,'en','core/acl/auth','languages','Languages','2022-04-20 19:54:41','2022-04-20 19:55:13'),(171,0,'en','core/acl/auth','reset_password','Reset Password','2022-04-20 19:54:41','2022-04-20 19:55:13'),(172,0,'en','core/acl/auth','settings.email.title','ACL','2022-04-20 19:54:41','2022-04-20 19:55:13'),(173,0,'en','core/acl/auth','settings.email.description','ACL email configuration','2022-04-20 19:54:41','2022-04-20 19:55:13'),(174,0,'en','core/acl/permissions','notices.role_in_use','Cannot delete this role, it is still in use!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(175,0,'en','core/acl/permissions','notices.role_delete_belong_user','You are not able to delete this role; it belongs to someone else!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(176,0,'en','core/acl/permissions','notices.role_edit_belong_user','You are not able to edit this role; it belongs to someone else!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(177,0,'en','core/acl/permissions','notices.delete_global_role','You are not allowed to delete global roles!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(178,0,'en','core/acl/permissions','notices.delete_success','The selected role was deleted successfully!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(179,0,'en','core/acl/permissions','notices.modified_success','The selected role was modified successfully!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(180,0,'en','core/acl/permissions','notices.create_success','The new role was successfully created','2022-04-20 19:54:41','2022-04-20 19:55:13'),(181,0,'en','core/acl/permissions','notices.duplicated_success','The selected role was duplicated successfully','2022-04-20 19:54:41','2022-04-20 19:55:13'),(182,0,'en','core/acl/permissions','notices.no_select','Please select at least one record to take this action!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(183,0,'en','core/acl/permissions','notices.not_found','Role not found','2022-04-20 19:54:41','2022-04-20 19:55:13'),(184,0,'en','core/acl/permissions','name','Name','2022-04-20 19:54:41','2022-04-20 19:55:13'),(185,0,'en','core/acl/permissions','current_role','Current Role','2022-04-20 19:54:41','2022-04-20 19:55:13'),(186,0,'en','core/acl/permissions','no_role_assigned','No role assigned','2022-04-20 19:54:41','2022-04-20 19:55:13'),(187,0,'en','core/acl/permissions','role_assigned','Assigned Role','2022-04-20 19:54:41','2022-04-20 19:55:13'),(188,0,'en','core/acl/permissions','create_role','Create New Role','2022-04-20 19:54:41','2022-04-20 19:55:13'),(189,0,'en','core/acl/permissions','role_name','Name','2022-04-20 19:54:41','2022-04-20 19:55:13'),(190,0,'en','core/acl/permissions','role_description','Description','2022-04-20 19:54:41','2022-04-20 19:55:13'),(191,0,'en','core/acl/permissions','permission_flags','Permission Flags','2022-04-20 19:54:41','2022-04-20 19:55:13'),(192,0,'en','core/acl/permissions','cancel','Cancel','2022-04-20 19:54:41','2022-04-20 19:55:13'),(193,0,'en','core/acl/permissions','reset','Reset','2022-04-20 19:54:41','2022-04-20 19:55:13'),(194,0,'en','core/acl/permissions','save','Save','2022-04-20 19:54:41','2022-04-20 19:55:13'),(195,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.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(196,0,'en','core/acl/permissions','details','Details','2022-04-20 19:54:41','2022-04-20 19:55:13'),(197,0,'en','core/acl/permissions','duplicate','Duplicate','2022-04-20 19:54:41','2022-04-20 19:55:13'),(198,0,'en','core/acl/permissions','all','All Permissions','2022-04-20 19:54:41','2022-04-20 19:55:13'),(199,0,'en','core/acl/permissions','list_role','List Roles','2022-04-20 19:54:41','2022-04-20 19:55:13'),(200,0,'en','core/acl/permissions','created_on','Created On','2022-04-20 19:54:41','2022-04-20 19:55:13'),(201,0,'en','core/acl/permissions','created_by','Created By','2022-04-20 19:54:41','2022-04-20 19:55:13'),(202,0,'en','core/acl/permissions','actions','Actions','2022-04-20 19:54:41','2022-04-20 19:55:13'),(203,0,'en','core/acl/permissions','role_in_use','Cannot delete this role, it is still in use!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(204,0,'en','core/acl/permissions','role_delete_belong_user','You are not able to delete this role; it belongs to someone else!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(205,0,'en','core/acl/permissions','delete_global_role','Can not delete global role','2022-04-20 19:54:41','2022-04-20 19:55:13'),(206,0,'en','core/acl/permissions','delete_success','Delete role successfully','2022-04-20 19:54:41','2022-04-20 19:55:13'),(207,0,'en','core/acl/permissions','no_select','Please select at least one role to take this action!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(208,0,'en','core/acl/permissions','not_found','No role found!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(209,0,'en','core/acl/permissions','role_edit_belong_user','You are not able to edit this role; it belongs to someone else!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(210,0,'en','core/acl/permissions','modified_success','Modified successfully','2022-04-20 19:54:41','2022-04-20 19:55:13'),(211,0,'en','core/acl/permissions','create_success','Create successfully','2022-04-20 19:54:41','2022-04-20 19:55:13'),(212,0,'en','core/acl/permissions','duplicated_success','Duplicated successfully','2022-04-20 19:54:41','2022-04-20 19:55:13'),(213,0,'en','core/acl/permissions','options','Options','2022-04-20 19:54:41','2022-04-20 19:55:13'),(214,0,'en','core/acl/permissions','access_denied_message','You are not allowed to do this action','2022-04-20 19:54:41','2022-04-20 19:55:13'),(215,0,'en','core/acl/permissions','roles','Roles','2022-04-20 19:54:41','2022-04-20 19:55:13'),(216,0,'en','core/acl/permissions','role_permission','Roles and Permissions','2022-04-20 19:54:41','2022-04-20 19:55:13'),(217,0,'en','core/acl/permissions','user_management','User Management','2022-04-20 19:54:41','2022-04-20 19:55:13'),(218,0,'en','core/acl/permissions','super_user_management','Super User Management','2022-04-20 19:54:41','2022-04-20 19:55:13'),(219,0,'en','core/acl/permissions','action_unauthorized','This action is unauthorized.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(220,0,'en','core/acl/reminders','password','Passwords must be at least six characters and match the confirmation.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(221,0,'en','core/acl/reminders','user','We can\'t find a user with that e-mail address.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(222,0,'en','core/acl/reminders','token','This password reset token is invalid.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(223,0,'en','core/acl/reminders','sent','Password reminder sent!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(224,0,'en','core/acl/reminders','reset','Password has been reset!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(225,0,'en','core/acl/users','delete_user_logged_in','Can\'t delete this user. This user is logged on!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(226,0,'en','core/acl/users','no_select','Please select at least one record to take this action!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(227,0,'en','core/acl/users','lock_user_logged_in','Can\'t lock this user. This user is logged on!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(228,0,'en','core/acl/users','update_success','Update status successfully!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(229,0,'en','core/acl/users','save_setting_failed','Something went wrong when save your setting','2022-04-20 19:54:41','2022-04-20 19:55:13'),(230,0,'en','core/acl/users','not_found','User not found','2022-04-20 19:54:41','2022-04-20 19:55:13'),(231,0,'en','core/acl/users','email_exist','That email address already belongs to an existing account','2022-04-20 19:54:41','2022-04-20 19:55:13'),(232,0,'en','core/acl/users','username_exist','That username address already belongs to an existing account','2022-04-20 19:54:41','2022-04-20 19:55:13'),(233,0,'en','core/acl/users','update_profile_success','Your profile changes were successfully saved','2022-04-20 19:54:41','2022-04-20 19:55:13'),(234,0,'en','core/acl/users','password_update_success','Password successfully changed','2022-04-20 19:54:41','2022-04-20 19:55:13'),(235,0,'en','core/acl/users','current_password_not_valid','Current password is not valid','2022-04-20 19:54:41','2022-04-20 19:55:13'),(236,0,'en','core/acl/users','user_exist_in','User is already a member','2022-04-20 19:54:41','2022-04-20 19:55:13'),(237,0,'en','core/acl/users','email','Email','2022-04-20 19:54:41','2022-04-20 19:55:13'),(238,0,'en','core/acl/users','role','Role','2022-04-20 19:54:41','2022-04-20 19:55:13'),(239,0,'en','core/acl/users','username','Username','2022-04-20 19:54:41','2022-04-20 19:55:13'),(240,0,'en','core/acl/users','last_name','Last Name','2022-04-20 19:54:41','2022-04-20 19:55:13'),(241,0,'en','core/acl/users','first_name','First Name','2022-04-20 19:54:41','2022-04-20 19:55:13'),(242,0,'en','core/acl/users','message','Message','2022-04-20 19:54:41','2022-04-20 19:55:13'),(243,0,'en','core/acl/users','cancel_btn','Cancel','2022-04-20 19:54:41','2022-04-20 19:55:13'),(244,0,'en','core/acl/users','change_password','Change password','2022-04-20 19:54:41','2022-04-20 19:55:13'),(245,0,'en','core/acl/users','current_password','Current password','2022-04-20 19:54:41','2022-04-20 19:55:13'),(246,0,'en','core/acl/users','new_password','New Password','2022-04-20 19:54:41','2022-04-20 19:55:13'),(247,0,'en','core/acl/users','confirm_new_password','Confirm New Password','2022-04-20 19:54:41','2022-04-20 19:55:13'),(248,0,'en','core/acl/users','password','Password','2022-04-20 19:54:41','2022-04-20 19:55:13'),(249,0,'en','core/acl/users','save','Save','2022-04-20 19:54:41','2022-04-20 19:55:13'),(250,0,'en','core/acl/users','cannot_delete','User could not be deleted','2022-04-20 19:54:41','2022-04-20 19:55:13'),(251,0,'en','core/acl/users','deleted','User deleted','2022-04-20 19:54:41','2022-04-20 19:55:13'),(252,0,'en','core/acl/users','last_login','Last Login','2022-04-20 19:54:41','2022-04-20 19:55:13'),(253,0,'en','core/acl/users','error_update_profile_image','Error when update profile image','2022-04-20 19:54:41','2022-04-20 19:55:13'),(254,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>','2022-04-20 19:54:41','2022-04-20 19:55:13'),(255,0,'en','core/acl/users','change_profile_image','Change Profile Image','2022-04-20 19:54:41','2022-04-20 19:55:13'),(256,0,'en','core/acl/users','new_image','New Image','2022-04-20 19:54:41','2022-04-20 19:55:13'),(257,0,'en','core/acl/users','loading','Loading','2022-04-20 19:54:41','2022-04-20 19:55:13'),(258,0,'en','core/acl/users','close','Close','2022-04-20 19:54:41','2022-04-20 19:55:13'),(259,0,'en','core/acl/users','update','Update','2022-04-20 19:54:41','2022-04-20 19:55:13'),(260,0,'en','core/acl/users','read_image_failed','Failed to read the image file','2022-04-20 19:54:41','2022-04-20 19:55:13'),(261,0,'en','core/acl/users','users','Users','2022-04-20 19:54:41','2022-04-20 19:55:13'),(262,0,'en','core/acl/users','update_avatar_success','Update profile image successfully!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(263,0,'en','core/acl/users','info.title','User profile','2022-04-20 19:54:41','2022-04-20 19:55:13'),(264,0,'en','core/acl/users','info.first_name','First Name','2022-04-20 19:54:41','2022-04-20 19:55:13'),(265,0,'en','core/acl/users','info.last_name','Last Name','2022-04-20 19:54:41','2022-04-20 19:55:13'),(266,0,'en','core/acl/users','info.email','Email','2022-04-20 19:54:41','2022-04-20 19:55:13'),(267,0,'en','core/acl/users','info.second_email','Secondary Email','2022-04-20 19:54:41','2022-04-20 19:55:13'),(268,0,'en','core/acl/users','info.address','Address','2022-04-20 19:54:41','2022-04-20 19:55:13'),(269,0,'en','core/acl/users','info.second_address','Secondary Address','2022-04-20 19:54:41','2022-04-20 19:55:13'),(270,0,'en','core/acl/users','info.birth_day','Date of birth','2022-04-20 19:54:41','2022-04-20 19:55:13'),(271,0,'en','core/acl/users','info.job','Job Position','2022-04-20 19:54:41','2022-04-20 19:55:13'),(272,0,'en','core/acl/users','info.mobile_number','Mobile Number','2022-04-20 19:54:41','2022-04-20 19:55:13'),(273,0,'en','core/acl/users','info.second_mobile_number','Secondary Phone','2022-04-20 19:54:41','2022-04-20 19:55:13'),(274,0,'en','core/acl/users','info.interes','Interests','2022-04-20 19:54:41','2022-04-20 19:55:13'),(275,0,'en','core/acl/users','info.about','About','2022-04-20 19:54:41','2022-04-20 19:55:13'),(276,0,'en','core/acl/users','gender.title','Gender','2022-04-20 19:54:41','2022-04-20 19:55:13'),(277,0,'en','core/acl/users','gender.male','Male','2022-04-20 19:54:41','2022-04-20 19:55:13'),(278,0,'en','core/acl/users','gender.female','Female','2022-04-20 19:54:41','2022-04-20 19:55:13'),(279,0,'en','core/acl/users','total_users','Total users','2022-04-20 19:54:41','2022-04-20 19:55:13'),(280,0,'en','core/acl/users','statuses.activated','Activated','2022-04-20 19:54:41','2022-04-20 19:55:13'),(281,0,'en','core/acl/users','statuses.deactivated','Deactivated','2022-04-20 19:54:41','2022-04-20 19:55:13'),(282,0,'en','core/acl/users','make_super','Make super','2022-04-20 19:54:41','2022-04-20 19:55:13'),(283,0,'en','core/acl/users','remove_super','Remove super','2022-04-20 19:54:41','2022-04-20 19:55:13'),(284,0,'en','core/acl/users','is_super','Is super?','2022-04-20 19:54:41','2022-04-20 19:55:13'),(285,0,'en','core/acl/users','email_placeholder','Ex: example@gmail.com','2022-04-20 19:54:41','2022-04-20 19:55:13'),(286,0,'en','core/acl/users','password_confirmation','Re-type password','2022-04-20 19:54:41','2022-04-20 19:55:13'),(287,0,'en','core/acl/users','select_role','Select role','2022-04-20 19:54:41','2022-04-20 19:55:13'),(288,0,'en','core/acl/users','create_new_user','Create a new user','2022-04-20 19:54:41','2022-04-20 19:55:13'),(289,0,'en','core/acl/users','cannot_delete_super_user','Permission denied. Cannot delete a super user!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(290,0,'en','core/acl/users','assigned_role','Assigned Role','2022-04-20 19:54:41','2022-04-20 19:55:13'),(291,0,'en','core/acl/users','no_role_assigned','No role assigned','2022-04-20 19:54:41','2022-04-20 19:55:13'),(292,0,'en','core/acl/users','view_user_profile','View user\'s profile','2022-04-20 19:54:41','2022-04-20 19:55:13'),(293,0,'vi','core/acl/auth','login.username','Tên truy cập','2022-04-20 19:54:41','2022-04-20 19:55:13'),(294,0,'vi','core/acl/auth','login.password','Mật khẩu','2022-04-20 19:54:41','2022-04-20 19:55:13'),(295,0,'vi','core/acl/auth','login.title','Đăng nhập vào quản trị','2022-04-20 19:54:41','2022-04-20 19:55:13'),(296,0,'vi','core/acl/auth','login.remember','Nhớ mật khẩu?','2022-04-20 19:54:41','2022-04-20 19:55:13'),(297,0,'vi','core/acl/auth','login.login','Đăng nhập','2022-04-20 19:54:41','2022-04-20 19:55:13'),(298,0,'vi','core/acl/auth','login.placeholder.username','Vui lòng nhập tên truy cập','2022-04-20 19:54:41','2022-04-20 19:55:13'),(299,0,'vi','core/acl/auth','login.placeholder.email','Vui lòng nhập email','2022-04-20 19:54:41','2022-04-20 19:55:13'),(300,0,'vi','core/acl/auth','login.success','Đăng nhập thành công!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(301,0,'vi','core/acl/auth','login.fail','Sai tên truy cập hoặc mật khẩu.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(302,0,'vi','core/acl/auth','login.not_active','Tài khoản của bạn chưa được kích hoạt!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(303,0,'vi','core/acl/auth','login.banned','Tài khoản này đã bị khóa.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(304,0,'vi','core/acl/auth','login.logout_success','Đăng xuất thành công!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(305,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!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(306,0,'vi','core/acl/auth','login.email','Email','2022-04-20 19:54:41','2022-04-20 19:55:13'),(307,0,'vi','core/acl/auth','forgot_password.title','Quên mật khẩu','2022-04-20 19:54:41','2022-04-20 19:55:13'),(308,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>','2022-04-20 19:54:41','2022-04-20 19:55:13'),(309,0,'vi','core/acl/auth','forgot_password.submit','Hoàn tất','2022-04-20 19:54:41','2022-04-20 19:55:13'),(310,0,'vi','core/acl/auth','reset.new_password','Mật khẩu mới','2022-04-20 19:54:41','2022-04-20 19:55:13'),(311,0,'vi','core/acl/auth','reset.title','Khôi phục mật khẩu','2022-04-20 19:54:41','2022-04-20 19:55:13'),(312,0,'vi','core/acl/auth','reset.update','Cập nhật','2022-04-20 19:54:41','2022-04-20 19:55:13'),(313,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!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(314,0,'vi','core/acl/auth','reset.user_not_found','Tên đăng nhập không tồn tại.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(315,0,'vi','core/acl/auth','reset.success','Khôi phục mật khẩu thành công!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(316,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!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(317,0,'vi','core/acl/auth','reset.reset.title','Email khôi phục mật khẩu','2022-04-20 19:54:41','2022-04-20 19:55:13'),(318,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.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(319,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.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(320,0,'vi','core/acl/auth','reset.new-password','Mật khẩu mới','2022-04-20 19:54:41','2022-04-20 19:55:13'),(321,0,'vi','core/acl/auth','reset.email','Email','2022-04-20 19:54:41','2022-04-20 19:55:13'),(322,0,'vi','core/acl/auth','email.reminder.title','Email khôi phục mật khẩu','2022-04-20 19:54:41','2022-04-20 19:55:13'),(323,0,'vi','core/acl/auth','failed','Không thành công','2022-04-20 19:54:41','2022-04-20 19:55:13'),(324,0,'vi','core/acl/auth','throttle','Throttle','2022-04-20 19:54:41','2022-04-20 19:55:13'),(325,0,'vi','core/acl/auth','back_to_login','Quay lại trang đăng nhập','2022-04-20 19:54:41','2022-04-20 19:55:13'),(326,0,'vi','core/acl/auth','login_title','Đăng nhập vào quản trị','2022-04-20 19:54:41','2022-04-20 19:55:13'),(327,0,'vi','core/acl/auth','login_via_social','Đăng nhập thông qua mạng xã hội','2022-04-20 19:54:41','2022-04-20 19:55:13'),(328,0,'vi','core/acl/auth','lost_your_password','Quên mật khẩu?','2022-04-20 19:54:41','2022-04-20 19:55:13'),(329,0,'vi','core/acl/auth','not_member','Chưa là thành viên?','2022-04-20 19:54:41','2022-04-20 19:55:13'),(330,0,'vi','core/acl/auth','register_now','Đăng ký ngay','2022-04-20 19:54:41','2022-04-20 19:55:13'),(331,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!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(332,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!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(333,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','2022-04-20 19:54:41','2022-04-20 19:55:13'),(334,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!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(335,0,'vi','core/acl/permissions','notices.delete_success','Quyền người dùng đã được xóa!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(336,0,'vi','core/acl/permissions','notices.modified_success','Quyền người dùng đã được cập nhật thành công!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(337,0,'vi','core/acl/permissions','notices.create_success','Quyền người dùng mới đã được tạo thành công!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(338,0,'vi','core/acl/permissions','notices.duplicated_success','Quyền người dùng đã được sao chép thành công!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(339,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!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(340,0,'vi','core/acl/permissions','notices.not_found','Không tìm thấy quyền người dùng này','2022-04-20 19:54:41','2022-04-20 19:55:13'),(341,0,'vi','core/acl/permissions','name','Tên','2022-04-20 19:54:41','2022-04-20 19:55:13'),(342,0,'vi','core/acl/permissions','current_role','Quyền hiện tại','2022-04-20 19:54:41','2022-04-20 19:55:13'),(343,0,'vi','core/acl/permissions','no_role_assigned','Không có quyền hạn nào','2022-04-20 19:54:41','2022-04-20 19:55:13'),(344,0,'vi','core/acl/permissions','role_assigned','Quyền đã được gán','2022-04-20 19:54:41','2022-04-20 19:55:13'),(345,0,'vi','core/acl/permissions','create_role','Tạo quyền mới','2022-04-20 19:54:41','2022-04-20 19:55:13'),(346,0,'vi','core/acl/permissions','role_name','Tên','2022-04-20 19:54:41','2022-04-20 19:55:13'),(347,0,'vi','core/acl/permissions','role_description','Mô tả','2022-04-20 19:54:41','2022-04-20 19:55:13'),(348,0,'vi','core/acl/permissions','permission_flags','Cờ đánh dấu quyền hạn','2022-04-20 19:54:41','2022-04-20 19:55:13'),(349,0,'vi','core/acl/permissions','cancel','Hủy bỏ','2022-04-20 19:54:41','2022-04-20 19:55:13'),(350,0,'vi','core/acl/permissions','reset','Làm lại','2022-04-20 19:54:41','2022-04-20 19:55:13'),(351,0,'vi','core/acl/permissions','save','Lưu','2022-04-20 19:54:41','2022-04-20 19:55:13'),(352,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.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(353,0,'vi','core/acl/permissions','details','Chi tiết','2022-04-20 19:54:41','2022-04-20 19:55:13'),(354,0,'vi','core/acl/permissions','duplicate','Nhân bản','2022-04-20 19:54:41','2022-04-20 19:55:13'),(355,0,'vi','core/acl/permissions','all','Tất cả phân quyền','2022-04-20 19:54:41','2022-04-20 19:55:13'),(356,0,'vi','core/acl/permissions','list_role','Danh sách quyền','2022-04-20 19:54:41','2022-04-20 19:55:13'),(357,0,'vi','core/acl/permissions','created_on','Ngày tạo','2022-04-20 19:54:41','2022-04-20 19:55:13'),(358,0,'vi','core/acl/permissions','created_by','Được tạo bởi','2022-04-20 19:54:41','2022-04-20 19:55:13'),(359,0,'vi','core/acl/permissions','actions','Tác vụ','2022-04-20 19:54:41','2022-04-20 19:55:13'),(360,0,'vi','core/acl/permissions','create_success','Tạo thành công!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(361,0,'vi','core/acl/permissions','delete_global_role','Không thể xóa quyền hệ thống','2022-04-20 19:54:41','2022-04-20 19:55:13'),(362,0,'vi','core/acl/permissions','delete_success','Xóa quyền thành công','2022-04-20 19:54:41','2022-04-20 19:55:13'),(363,0,'vi','core/acl/permissions','duplicated_success','Nhân bản thành công','2022-04-20 19:54:41','2022-04-20 19:55:13'),(364,0,'vi','core/acl/permissions','modified_success','Sửa thành công','2022-04-20 19:54:41','2022-04-20 19:55:13'),(365,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!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(366,0,'vi','core/acl/permissions','not_found','Không tìm thấy quyền thành viên nào!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(367,0,'vi','core/acl/permissions','options','Tùy chọn','2022-04-20 19:54:41','2022-04-20 19:55:13'),(368,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!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(369,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','2022-04-20 19:54:41','2022-04-20 19:55:13'),(370,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!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(371,0,'vi','core/acl/permissions','access_denied_message','Bạn không có quyền sử dụng chức năng này!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(372,0,'vi','core/acl/permissions','roles','Quyền','2022-04-20 19:54:41','2022-04-20 19:55:13'),(373,0,'vi','core/acl/permissions','role_permission','Nhóm và phân quyền','2022-04-20 19:54:41','2022-04-20 19:55:13'),(374,0,'vi','core/acl/permissions','user_management','Quản lý người dùng hệ thống','2022-04-20 19:54:41','2022-04-20 19:55:13'),(375,0,'vi','core/acl/permissions','super_user_management','Quản lý người dùng cấp cao','2022-04-20 19:54:41','2022-04-20 19:55:13'),(376,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.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(377,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.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(378,0,'vi','core/acl/reminders','token','Mã khôi phục mật khẩu này không hợp lệ.','2022-04-20 19:54:41','2022-04-20 19:55:13'),(379,0,'vi','core/acl/reminders','sent','Liên kết khôi phục mật khẩu đã được gửi!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(380,0,'vi','core/acl/reminders','reset','Mật khẩu đã được thay đổi!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(381,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!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(382,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!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(383,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!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(384,0,'vi','core/acl/users','update_success','Cập nhật trạng thái thành công!','2022-04-20 19:54:41','2022-04-20 19:55:13'),(385,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','2022-04-20 19:54:41','2022-04-20 19:55:13'),(386,0,'vi','core/acl/users','not_found','Không tìm thấy người dùng','2022-04-20 19:54:41','2022-04-20 19:55:13'),(387,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','2022-04-20 19:54:41','2022-04-20 19:55:13'),(388,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','2022-04-20 19:54:41','2022-04-20 19:55:13'),(389,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','2022-04-20 19:54:41','2022-04-20 19:55:13'),(390,0,'vi','core/acl/users','password_update_success','Cập nhật mật khẩu thành công','2022-04-20 19:54:41','2022-04-20 19:55:13'),(391,0,'vi','core/acl/users','current_password_not_valid','Mật khẩu hiện tại không chính xác','2022-04-20 19:54:41','2022-04-20 19:55:13'),(392,0,'vi','core/acl/users','user_exist_in','Người dùng đã là thành viên','2022-04-20 19:54:42','2022-04-20 19:55:13'),(393,0,'vi','core/acl/users','email','Email','2022-04-20 19:54:42','2022-04-20 19:55:13'),(394,0,'vi','core/acl/users','username','Tên đăng nhập','2022-04-20 19:54:42','2022-04-20 19:55:13'),(395,0,'vi','core/acl/users','role','Phân quyền','2022-04-20 19:54:42','2022-04-20 19:55:13'),(396,0,'vi','core/acl/users','first_name','Họ','2022-04-20 19:54:42','2022-04-20 19:55:13'),(397,0,'vi','core/acl/users','last_name','Tên','2022-04-20 19:54:42','2022-04-20 19:55:13'),(398,0,'vi','core/acl/users','message','Thông điệp','2022-04-20 19:54:42','2022-04-20 19:55:13'),(399,0,'vi','core/acl/users','cancel_btn','Hủy bỏ','2022-04-20 19:54:42','2022-04-20 19:55:13'),(400,0,'vi','core/acl/users','password','Mật khẩu','2022-04-20 19:54:42','2022-04-20 19:55:13'),(401,0,'vi','core/acl/users','new_password','Mật khẩu mới','2022-04-20 19:54:42','2022-04-20 19:55:13'),(402,0,'vi','core/acl/users','save','Lưu','2022-04-20 19:54:42','2022-04-20 19:55:13'),(403,0,'vi','core/acl/users','confirm_new_password','Xác nhận mật khẩu mới','2022-04-20 19:54:42','2022-04-20 19:55:13'),(404,0,'vi','core/acl/users','deleted','Xóa thành viên thành công','2022-04-20 19:54:42','2022-04-20 19:55:13'),(405,0,'vi','core/acl/users','cannot_delete','Không thể xóa thành viên','2022-04-20 19:54:42','2022-04-20 19:55:13'),(406,0,'vi','core/acl/users','last_login','Lần cuối đăng nhập','2022-04-20 19:54:42','2022-04-20 19:55:13'),(407,0,'vi','core/acl/users','error_update_profile_image','Có lỗi trong quá trình đổi ảnh đại diện','2022-04-20 19:54:42','2022-04-20 19:55:13'),(408,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>','2022-04-20 19:54:42','2022-04-20 19:55:13'),(409,0,'vi','core/acl/users','change_profile_image','Thay đổi ảnh đại diện','2022-04-20 19:54:42','2022-04-20 19:55:13'),(410,0,'vi','core/acl/users','new_image','Ảnh mới','2022-04-20 19:54:42','2022-04-20 19:55:13'),(411,0,'vi','core/acl/users','loading','Đang tải','2022-04-20 19:54:42','2022-04-20 19:55:13'),(412,0,'vi','core/acl/users','close','Đóng','2022-04-20 19:54:42','2022-04-20 19:55:13'),(413,0,'vi','core/acl/users','update','Cập nhật','2022-04-20 19:54:42','2022-04-20 19:55:13'),(414,0,'vi','core/acl/users','read_image_failed','Không đọc được nội dung của hình ảnh','2022-04-20 19:54:42','2022-04-20 19:55:13'),(415,0,'vi','core/acl/users','update_avatar_success','Cập nhật ảnh đại diện thành công!','2022-04-20 19:54:42','2022-04-20 19:55:13'),(416,0,'vi','core/acl/users','users','Quản trị viên','2022-04-20 19:54:42','2022-04-20 19:55:13'),(417,0,'vi','core/acl/users','info.title','Thông tin người dùng','2022-04-20 19:54:42','2022-04-20 19:55:13'),(418,0,'vi','core/acl/users','info.first_name','Họ','2022-04-20 19:54:42','2022-04-20 19:55:13'),(419,0,'vi','core/acl/users','info.last_name','Tên','2022-04-20 19:54:42','2022-04-20 19:55:13'),(420,0,'vi','core/acl/users','info.email','Email','2022-04-20 19:54:42','2022-04-20 19:55:13'),(421,0,'vi','core/acl/users','info.second_email','Email dự phòng','2022-04-20 19:54:42','2022-04-20 19:55:13'),(422,0,'vi','core/acl/users','info.address','Địa chỉ','2022-04-20 19:54:42','2022-04-20 19:55:13'),(423,0,'vi','core/acl/users','info.second_address','Địa chỉ dự phòng','2022-04-20 19:54:42','2022-04-20 19:55:13'),(424,0,'vi','core/acl/users','info.birth_day','Ngày sinh','2022-04-20 19:54:42','2022-04-20 19:55:13'),(425,0,'vi','core/acl/users','info.job','Nghề nghiệp','2022-04-20 19:54:42','2022-04-20 19:55:13'),(426,0,'vi','core/acl/users','info.mobile_number','Số điện thoại di động','2022-04-20 19:54:42','2022-04-20 19:55:13'),(427,0,'vi','core/acl/users','info.second_mobile_number','Số điện thoại dự phòng','2022-04-20 19:54:42','2022-04-20 19:55:13'),(428,0,'vi','core/acl/users','info.interes','Sở thích','2022-04-20 19:54:42','2022-04-20 19:55:13'),(429,0,'vi','core/acl/users','info.about','Giới thiệu','2022-04-20 19:54:42','2022-04-20 19:55:13'),(430,0,'vi','core/acl/users','gender.title','Giới tính','2022-04-20 19:54:42','2022-04-20 19:55:13'),(431,0,'vi','core/acl/users','gender.male','nam','2022-04-20 19:54:42','2022-04-20 19:55:13'),(432,0,'vi','core/acl/users','gender.female','nữ','2022-04-20 19:54:42','2022-04-20 19:55:13'),(433,0,'vi','core/acl/users','change_password','Thay đổi mật khẩu','2022-04-20 19:54:42','2022-04-20 19:55:13'),(434,0,'vi','core/acl/users','current_password','Mật khẩu hiện tại','2022-04-20 19:54:42','2022-04-20 19:55:13'),(435,0,'en','core/base/base','yes','Yes','2022-04-20 19:54:42','2022-04-20 19:55:13'),(436,0,'en','core/base/base','no','No','2022-04-20 19:54:42','2022-04-20 19:55:13'),(437,0,'en','core/base/base','is_default','Is default?','2022-04-20 19:54:42','2022-04-20 19:55:13'),(438,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.','2022-04-20 19:54:42','2022-04-20 19:55:13'),(439,0,'en','core/base/base','email_template.header','Email template header','2022-04-20 19:54:42','2022-04-20 19:55:13'),(440,0,'en','core/base/base','email_template.footer','Email template footer','2022-04-20 19:54:42','2022-04-20 19:55:13'),(441,0,'en','core/base/base','email_template.site_title','Site title','2022-04-20 19:54:42','2022-04-20 19:55:13'),(442,0,'en','core/base/base','email_template.site_url','Site URL','2022-04-20 19:54:42','2022-04-20 19:55:13'),(443,0,'en','core/base/base','email_template.site_logo','Site Logo','2022-04-20 19:54:42','2022-04-20 19:55:13'),(444,0,'en','core/base/base','email_template.date_time','Current date time','2022-04-20 19:54:42','2022-04-20 19:55:13'),(445,0,'en','core/base/base','email_template.date_year','Current year','2022-04-20 19:54:42','2022-04-20 19:55:13'),(446,0,'en','core/base/base','email_template.site_admin_email','Site admin email','2022-04-20 19:54:42','2022-04-20 19:55:13'),(447,0,'en','core/base/base','change_image','Change image','2022-04-20 19:54:42','2022-04-20 19:55:13'),(448,0,'en','core/base/base','delete_image','Delete image','2022-04-20 19:54:42','2022-04-20 19:55:13'),(449,0,'en','core/base/base','preview_image','Preview image','2022-04-20 19:54:42','2022-04-20 19:55:13'),(450,0,'en','core/base/base','image','Image','2022-04-20 19:54:42','2022-04-20 19:55:13'),(451,0,'en','core/base/base','using_button','Using button','2022-04-20 19:54:42','2022-04-20 19:55:13'),(452,0,'en','core/base/base','select_image','Select image','2022-04-20 19:54:42','2022-04-20 19:55:13'),(453,0,'en','core/base/base','to_add_more_image','to add more images','2022-04-20 19:54:42','2022-04-20 19:55:13'),(454,0,'en','core/base/base','add_image','Add image','2022-04-20 19:54:42','2022-04-20 19:55:13'),(455,0,'en','core/base/base','tools','Tools','2022-04-20 19:54:42','2022-04-20 19:55:13'),(456,0,'en','core/base/cache','cache_management','Cache management','2022-04-20 19:54:42','2022-04-20 19:55:13'),(457,0,'en','core/base/cache','cache_commands','Clear cache commands','2022-04-20 19:54:42','2022-04-20 19:55:13'),(458,0,'en','core/base/cache','commands.clear_cms_cache.title','Clear all CMS cache','2022-04-20 19:54:42','2022-04-20 19:55:13'),(459,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.','2022-04-20 19:54:42','2022-04-20 19:55:13'),(460,0,'en','core/base/cache','commands.clear_cms_cache.success_msg','Cache cleaned','2022-04-20 19:54:42','2022-04-20 19:55:13'),(461,0,'en','core/base/cache','commands.refresh_compiled_views.title','Refresh compiled views','2022-04-20 19:54:42','2022-04-20 19:55:13'),(462,0,'en','core/base/cache','commands.refresh_compiled_views.description','Clear compiled views to make views up to date.','2022-04-20 19:54:42','2022-04-20 19:55:13'),(463,0,'en','core/base/cache','commands.refresh_compiled_views.success_msg','Cache view refreshed','2022-04-20 19:54:42','2022-04-20 19:55:13'),(464,0,'en','core/base/cache','commands.clear_config_cache.title','Clear config cache','2022-04-20 19:54:42','2022-04-20 19:55:13'),(465,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.','2022-04-20 19:54:42','2022-04-20 19:55:13'),(466,0,'en','core/base/cache','commands.clear_config_cache.success_msg','Config cache cleaned','2022-04-20 19:54:42','2022-04-20 19:55:13'),(467,0,'en','core/base/cache','commands.clear_route_cache.title','Clear route cache','2022-04-20 19:54:42','2022-04-20 19:55:13'),(468,0,'en','core/base/cache','commands.clear_route_cache.description','Clear cache routing.','2022-04-20 19:54:42','2022-04-20 19:55:13'),(469,0,'en','core/base/cache','commands.clear_route_cache.success_msg','The route cache has been cleaned','2022-04-20 19:54:42','2022-04-20 19:55:13'),(470,0,'en','core/base/cache','commands.clear_log.title','Clear log','2022-04-20 19:54:42','2022-04-20 19:55:13'),(471,0,'en','core/base/cache','commands.clear_log.description','Clear system log files','2022-04-20 19:54:42','2022-04-20 19:55:13'),(472,0,'en','core/base/cache','commands.clear_log.success_msg','The system log has been cleaned','2022-04-20 19:54:42','2022-04-20 19:55:13'),(473,0,'en','core/base/enums','statuses.draft','Draft','2022-04-20 19:54:42','2022-04-20 19:55:13'),(474,0,'en','core/base/enums','statuses.pending','Pending','2022-04-20 19:54:42','2022-04-20 19:55:13'),(475,0,'en','core/base/enums','statuses.published','Published','2022-04-20 19:54:42','2022-04-20 19:55:13'),(476,0,'en','core/base/errors','401_title','Permission Denied','2022-04-20 19:54:42','2022-04-20 19:55:13'),(477,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>','2022-04-20 19:54:42','2022-04-20 19:55:13'),(478,0,'en','core/base/errors','404_title','Page could not be found','2022-04-20 19:54:42','2022-04-20 19:55:13'),(479,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>','2022-04-20 19:54:42','2022-04-20 19:55:13'),(480,0,'en','core/base/errors','500_title','Page could not be loaded','2022-04-20 19:54:42','2022-04-20 19:55:13'),(481,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>','2022-04-20 19:54:42','2022-04-20 19:55:13'),(482,0,'en','core/base/errors','reasons','This may have occurred because of several reasons','2022-04-20 19:54:42','2022-04-20 19:55:13'),(483,0,'en','core/base/errors','try_again','Please try again in a few minutes, or alternatively return to the homepage by <a href=\"http://hasa.test/admin\">clicking here</a>.','2022-04-20 19:54:42','2022-04-20 19:55:13'),(484,0,'en','core/base/errors','not_found','Not Found','2022-04-20 19:54:42','2022-04-20 19:55:13'),(485,0,'en','core/base/forms','choose_image','Choose image','2022-04-20 19:54:42','2022-04-20 19:55:13'),(486,0,'en','core/base/forms','actions','Actions','2022-04-20 19:54:42','2022-04-20 19:55:13'),(487,0,'en','core/base/forms','save','Save','2022-04-20 19:54:42','2022-04-20 19:55:13'),(488,0,'en','core/base/forms','save_and_continue','Save & Edit','2022-04-20 19:54:42','2022-04-20 19:55:13'),(489,0,'en','core/base/forms','image','Image','2022-04-20 19:54:42','2022-04-20 19:55:13'),(490,0,'en','core/base/forms','image_placeholder','Insert path of image or click upload button','2022-04-20 19:54:42','2022-04-20 19:55:13'),(491,0,'en','core/base/forms','create','Create','2022-04-20 19:54:42','2022-04-20 19:55:13'),(492,0,'en','core/base/forms','edit','Edit','2022-04-20 19:54:42','2022-04-20 19:55:13'),(493,0,'en','core/base/forms','permalink','Permalink','2022-04-20 19:54:42','2022-04-20 19:55:13'),(494,0,'en','core/base/forms','ok','OK','2022-04-20 19:54:42','2022-04-20 19:55:13'),(495,0,'en','core/base/forms','cancel','Cancel','2022-04-20 19:54:42','2022-04-20 19:55:13'),(496,0,'en','core/base/forms','character_remain','character(s) remain','2022-04-20 19:54:42','2022-04-20 19:55:13'),(497,0,'en','core/base/forms','template','Template','2022-04-20 19:54:42','2022-04-20 19:55:13'),(498,0,'en','core/base/forms','choose_file','Choose file','2022-04-20 19:54:42','2022-04-20 19:55:13'),(499,0,'en','core/base/forms','file','File','2022-04-20 19:54:42','2022-04-20 19:55:13'),(500,0,'en','core/base/forms','content','Content','2022-04-20 19:54:42','2022-04-20 19:55:13'),(501,0,'en','core/base/forms','description','Description','2022-04-20 19:54:42','2022-04-20 19:55:13'),(502,0,'en','core/base/forms','name','Name','2022-04-20 19:54:42','2022-04-20 19:55:13'),(503,0,'en','core/base/forms','slug','Slug','2022-04-20 19:54:42','2022-04-20 19:55:13'),(504,0,'en','core/base/forms','title','Title','2022-04-20 19:54:42','2022-04-20 19:55:13'),(505,0,'en','core/base/forms','value','Value','2022-04-20 19:54:42','2022-04-20 19:55:13'),(506,0,'en','core/base/forms','name_placeholder','Name','2022-04-20 19:54:42','2022-04-20 19:55:13'),(507,0,'en','core/base/forms','alias_placeholder','Alias','2022-04-20 19:54:42','2022-04-20 19:55:13'),(508,0,'en','core/base/forms','description_placeholder','Short description','2022-04-20 19:54:42','2022-04-20 19:55:13'),(509,0,'en','core/base/forms','parent','Parent','2022-04-20 19:54:42','2022-04-20 19:55:13'),(510,0,'en','core/base/forms','icon','Icon','2022-04-20 19:54:42','2022-04-20 19:55:13'),(511,0,'en','core/base/forms','icon_placeholder','Ex: fa fa-home','2022-04-20 19:54:42','2022-04-20 19:55:13'),(512,0,'en','core/base/forms','order_by','Order by','2022-04-20 19:54:42','2022-04-20 19:55:13'),(513,0,'en','core/base/forms','order_by_placeholder','Order by','2022-04-20 19:54:42','2022-04-20 19:55:13'),(514,0,'en','core/base/forms','is_featured','Is featured?','2022-04-20 19:54:42','2022-04-20 19:55:13'),(515,0,'en','core/base/forms','is_default','Is default?','2022-04-20 19:54:42','2022-04-20 19:55:13'),(516,0,'en','core/base/forms','update','Update','2022-04-20 19:54:42','2022-04-20 19:55:13'),(517,0,'en','core/base/forms','publish','Publish','2022-04-20 19:54:42','2022-04-20 19:55:13'),(518,0,'en','core/base/forms','remove_image','Remove image','2022-04-20 19:54:42','2022-04-20 19:55:13'),(519,0,'en','core/base/forms','remove_file','Remove file','2022-04-20 19:54:42','2022-04-20 19:55:13'),(520,0,'en','core/base/forms','order','Order','2022-04-20 19:54:42','2022-04-20 19:55:13'),(521,0,'en','core/base/forms','alias','Alias','2022-04-20 19:54:42','2022-04-20 19:55:13'),(522,0,'en','core/base/forms','basic_information','Basic information','2022-04-20 19:54:42','2022-04-20 19:55:13'),(523,0,'en','core/base/forms','short_code','Shortcode','2022-04-20 19:54:42','2022-04-20 19:55:13'),(524,0,'en','core/base/forms','add_short_code','Add a shortcode','2022-04-20 19:54:42','2022-04-20 19:55:13'),(525,0,'en','core/base/forms','add','Add','2022-04-20 19:54:42','2022-04-20 19:55:13'),(526,0,'en','core/base/forms','link','Link','2022-04-20 19:54:42','2022-04-20 19:55:13'),(527,0,'en','core/base/forms','show_hide_editor','Show/Hide Editor','2022-04-20 19:54:42','2022-04-20 19:55:13'),(528,0,'en','core/base/forms','basic_info_title','Basic information','2022-04-20 19:54:42','2022-04-20 19:55:13'),(529,0,'en','core/base/forms','expand_all','Expand all','2022-04-20 19:54:42','2022-04-20 19:55:13'),(530,0,'en','core/base/forms','collapse_all','Collapse all','2022-04-20 19:54:42','2022-04-20 19:55:13'),(531,0,'en','core/base/forms','view_new_tab','Open in new tab','2022-04-20 19:54:42','2022-04-20 19:55:13'),(532,0,'en','core/base/layouts','platform_admin','Platform Administration','2022-04-20 19:54:42','2022-04-20 19:55:13'),(533,0,'en','core/base/layouts','dashboard','Dashboard','2022-04-20 19:54:42','2022-04-20 19:55:13'),(534,0,'en','core/base/layouts','widgets','Widgets','2022-04-20 19:54:42','2022-04-20 19:55:13'),(535,0,'en','core/base/layouts','plugins','Plugins','2022-04-20 19:54:42','2022-04-20 19:55:13'),(536,0,'en','core/base/layouts','settings','Settings','2022-04-20 19:54:42','2022-04-20 19:55:13'),(537,0,'en','core/base/layouts','setting_general','General','2022-04-20 19:54:42','2022-04-20 19:55:13'),(538,0,'en','core/base/layouts','setting_email','Email','2022-04-20 19:54:42','2022-04-20 19:55:13'),(539,0,'en','core/base/layouts','system_information','System information','2022-04-20 19:54:42','2022-04-20 19:55:13'),(540,0,'en','core/base/layouts','theme','Theme','2022-04-20 19:54:42','2022-04-20 19:55:13'),(541,0,'en','core/base/layouts','copyright','Copyright :year &copy; :company. Version: <span>:version</span>','2022-04-20 19:54:42','2022-04-20 19:55:13'),(542,0,'en','core/base/layouts','profile','Profile','2022-04-20 19:54:42','2022-04-20 19:55:13'),(543,0,'en','core/base/layouts','logout','Logout','2022-04-20 19:54:42','2022-04-20 19:55:13'),(544,0,'en','core/base/layouts','no_search_result','No results found, please try with different keywords.','2022-04-20 19:54:42','2022-04-20 19:55:13'),(545,0,'en','core/base/layouts','home','Home','2022-04-20 19:54:42','2022-04-20 19:55:13'),(546,0,'en','core/base/layouts','search','Search','2022-04-20 19:54:42','2022-04-20 19:55:13'),(547,0,'en','core/base/layouts','add_new','Add new','2022-04-20 19:54:42','2022-04-20 19:55:13'),(548,0,'en','core/base/layouts','n_a','N/A','2022-04-20 19:54:42','2022-04-20 19:55:13'),(549,0,'en','core/base/layouts','page_loaded_time','Page loaded in','2022-04-20 19:54:42','2022-04-20 19:55:13'),(550,0,'en','core/base/layouts','view_website','View website','2022-04-20 19:54:42','2022-04-20 19:55:13'),(551,0,'en','core/base/mail','send-fail','Send email failed','2022-04-20 19:54:42','2022-04-20 19:55:13'),(552,0,'en','core/base/notices','create_success_message','Created successfully','2022-04-20 19:54:42','2022-04-20 19:55:13'),(553,0,'en','core/base/notices','update_success_message','Updated successfully','2022-04-20 19:54:42','2022-04-20 19:55:13'),(554,0,'en','core/base/notices','delete_success_message','Deleted successfully','2022-04-20 19:54:42','2022-04-20 19:55:13'),(555,0,'en','core/base/notices','success_header','Success!','2022-04-20 19:54:42','2022-04-20 19:55:13'),(556,0,'en','core/base/notices','error_header','Error!','2022-04-20 19:54:42','2022-04-20 19:55:13'),(557,0,'en','core/base/notices','no_select','Please select at least one record to perform this action!','2022-04-20 19:54:42','2022-04-20 19:55:13'),(558,0,'en','core/base/notices','processing_request','We are processing your request.','2022-04-20 19:54:42','2022-04-20 19:55:13'),(559,0,'en','core/base/notices','error','Error!','2022-04-20 19:54:42','2022-04-20 19:55:13'),(560,0,'en','core/base/notices','success','Success!','2022-04-20 19:54:42','2022-04-20 19:55:13'),(561,0,'en','core/base/notices','info','Info!','2022-04-20 19:54:42','2022-04-20 19:55:13'),(562,0,'en','core/base/notices','enum.validate_message','The :attribute value you have entered is invalid.','2022-04-20 19:54:42','2022-04-20 19:55:13'),(563,0,'en','core/base/system','no_select','Please select at least one record to take this action!','2022-04-20 19:54:42','2022-04-20 19:55:13'),(564,0,'en','core/base/system','cannot_find_user','Unable to find specified user','2022-04-20 19:54:42','2022-04-20 19:55:13'),(565,0,'en','core/base/system','supper_revoked','Super user access revoked','2022-04-20 19:54:42','2022-04-20 19:55:13'),(566,0,'en','core/base/system','cannot_revoke_yourself','Can not revoke supper user access permission yourself!','2022-04-20 19:54:42','2022-04-20 19:55:13'),(567,0,'en','core/base/system','cant_remove_supper','You don\'t has permission to remove this super user','2022-04-20 19:54:42','2022-04-20 19:55:13'),(568,0,'en','core/base/system','cant_find_user_with_email','Unable to find user with specified email address','2022-04-20 19:54:42','2022-04-20 19:55:13'),(569,0,'en','core/base/system','supper_granted','Super user access granted','2022-04-20 19:54:42','2022-04-20 19:55:13'),(570,0,'en','core/base/system','delete_log_success','Delete log file successfully!','2022-04-20 19:54:42','2022-04-20 19:55:13'),(571,0,'en','core/base/system','get_member_success','Member list retrieved successfully','2022-04-20 19:54:42','2022-04-20 19:55:13'),(572,0,'en','core/base/system','error_occur','The following errors occurred','2022-04-20 19:54:42','2022-04-20 19:55:13'),(573,0,'en','core/base/system','user_management','User Management','2022-04-20 19:54:42','2022-04-20 19:55:13'),(574,0,'en','core/base/system','user_management_description','Manage users.','2022-04-20 19:54:42','2022-04-20 19:55:13'),(575,0,'en','core/base/system','role_and_permission','Roles and Permissions','2022-04-20 19:54:42','2022-04-20 19:55:13'),(576,0,'en','core/base/system','role_and_permission_description','Manage the available roles.','2022-04-20 19:54:42','2022-04-20 19:55:13'),(577,0,'en','core/base/system','user.list_super','List Super Users','2022-04-20 19:54:42','2022-04-20 19:55:13'),(578,0,'en','core/base/system','user.email','Email','2022-04-20 19:54:42','2022-04-20 19:55:13'),(579,0,'en','core/base/system','user.last_login','Last Login','2022-04-20 19:54:42','2022-04-20 19:55:13'),(580,0,'en','core/base/system','user.username','Username','2022-04-20 19:54:42','2022-04-20 19:55:13'),(581,0,'en','core/base/system','user.add_user','Add Super User','2022-04-20 19:54:42','2022-04-20 19:55:13'),(582,0,'en','core/base/system','user.cancel','Cancel','2022-04-20 19:54:42','2022-04-20 19:55:13'),(583,0,'en','core/base/system','user.create','Create','2022-04-20 19:54:42','2022-04-20 19:55:13'),(584,0,'en','core/base/system','options.features','Feature Access Control','2022-04-20 19:54:42','2022-04-20 19:55:13'),(585,0,'en','core/base/system','options.feature_description','Manage the available.','2022-04-20 19:54:42','2022-04-20 19:55:13'),(586,0,'en','core/base/system','options.manage_super','Super User Management','2022-04-20 19:54:42','2022-04-20 19:55:13'),(587,0,'en','core/base/system','options.manage_super_description','Add/remove super users.','2022-04-20 19:54:42','2022-04-20 19:55:13'),(588,0,'en','core/base/system','options.info','System information','2022-04-20 19:54:42','2022-04-20 19:55:13'),(589,0,'en','core/base/system','options.info_description','All information about current system configuration.','2022-04-20 19:54:42','2022-04-20 19:55:13'),(590,0,'en','core/base/system','info.title','System information','2022-04-20 19:54:42','2022-04-20 19:55:13'),(591,0,'en','core/base/system','info.cache','Cache','2022-04-20 19:54:42','2022-04-20 19:55:13'),(592,0,'en','core/base/system','info.locale','Active locale','2022-04-20 19:54:42','2022-04-20 19:55:13'),(593,0,'en','core/base/system','info.environment','Environment','2022-04-20 19:54:42','2022-04-20 19:55:13'),(594,0,'en','core/base/system','disabled_in_demo_mode','You cannot do it in demo mode!','2022-04-20 19:54:42','2022-04-20 19:55:13'),(595,0,'en','core/base/system','report_description','Please share this information for troubleshooting','2022-04-20 19:54:42','2022-04-20 19:55:13'),(596,0,'en','core/base/system','get_system_report','Get System Report','2022-04-20 19:54:42','2022-04-20 19:55:13'),(597,0,'en','core/base/system','system_environment','System Environment','2022-04-20 19:54:42','2022-04-20 19:55:13'),(598,0,'en','core/base/system','framework_version','Framework Version','2022-04-20 19:54:42','2022-04-20 19:55:13'),(599,0,'en','core/base/system','timezone','Timezone','2022-04-20 19:54:42','2022-04-20 19:55:13'),(600,0,'en','core/base/system','debug_mode','Debug Mode','2022-04-20 19:54:42','2022-04-20 19:55:13'),(601,0,'en','core/base/system','storage_dir_writable','Storage Dir Writable','2022-04-20 19:54:42','2022-04-20 19:55:13'),(602,0,'en','core/base/system','cache_dir_writable','Cache Dir Writable','2022-04-20 19:54:42','2022-04-20 19:55:13'),(603,0,'en','core/base/system','app_size','App Size','2022-04-20 19:54:42','2022-04-20 19:55:13'),(604,0,'en','core/base/system','server_environment','Server Environment','2022-04-20 19:54:42','2022-04-20 19:55:13'),(605,0,'en','core/base/system','php_version','PHP Version','2022-04-20 19:54:42','2022-04-20 19:55:13'),(606,0,'en','core/base/system','php_version_error','PHP must be >= :version','2022-04-20 19:54:42','2022-04-20 19:55:13'),(607,0,'en','core/base/system','server_software','Server Software','2022-04-20 19:54:42','2022-04-20 19:55:13'),(608,0,'en','core/base/system','server_os','Server OS','2022-04-20 19:54:42','2022-04-20 19:55:13'),(609,0,'en','core/base/system','database','Database','2022-04-20 19:54:42','2022-04-20 19:55:13'),(610,0,'en','core/base/system','ssl_installed','SSL Installed','2022-04-20 19:54:42','2022-04-20 19:55:13'),(611,0,'en','core/base/system','cache_driver','Cache Driver','2022-04-20 19:54:42','2022-04-20 19:55:13'),(612,0,'en','core/base/system','session_driver','Session Driver','2022-04-20 19:54:42','2022-04-20 19:55:13'),(613,0,'en','core/base/system','queue_connection','Queue Connection','2022-04-20 19:54:42','2022-04-20 19:55:13'),(614,0,'en','core/base/system','mbstring_ext','Mbstring Ext','2022-04-20 19:54:42','2022-04-20 19:55:13'),(615,0,'en','core/base/system','openssl_ext','OpenSSL Ext','2022-04-20 19:54:42','2022-04-20 19:55:13'),(616,0,'en','core/base/system','pdo_ext','PDO Ext','2022-04-20 19:54:42','2022-04-20 19:55:13'),(617,0,'en','core/base/system','curl_ext','CURL Ext','2022-04-20 19:54:42','2022-04-20 19:55:13'),(618,0,'en','core/base/system','exif_ext','Exif Ext','2022-04-20 19:54:42','2022-04-20 19:55:13'),(619,0,'en','core/base/system','file_info_ext','File info Ext','2022-04-20 19:54:42','2022-04-20 19:55:13'),(620,0,'en','core/base/system','tokenizer_ext','Tokenizer Ext','2022-04-20 19:54:42','2022-04-20 19:55:13'),(621,0,'en','core/base/system','extra_stats','Extra Stats','2022-04-20 19:54:42','2022-04-20 19:55:13'),(622,0,'en','core/base/system','installed_packages','Installed packages and their version numbers','2022-04-20 19:54:42','2022-04-20 19:55:13'),(623,0,'en','core/base/system','extra_information','Extra Information','2022-04-20 19:54:42','2022-04-20 19:55:13'),(624,0,'en','core/base/system','copy_report','Copy Report','2022-04-20 19:54:42','2022-04-20 19:55:13'),(625,0,'en','core/base/system','package_name','Package Name','2022-04-20 19:54:42','2022-04-20 19:55:13'),(626,0,'en','core/base/system','dependency_name','Dependency Name','2022-04-20 19:54:42','2022-04-20 19:55:13'),(627,0,'en','core/base/system','version','Version','2022-04-20 19:54:42','2022-04-20 19:55:13'),(628,0,'en','core/base/system','cms_version','CMS Version','2022-04-20 19:54:42','2022-04-20 19:55:13'),(629,0,'en','core/base/system','imagick_or_gd_ext','Imagick/GD Ext','2022-04-20 19:54:42','2022-04-20 19:55:13'),(630,0,'en','core/base/system','updater','System Updater','2022-04-20 19:54:42','2022-04-20 19:55:13'),(631,0,'en','core/base/system','zip','Zip Ext','2022-04-20 19:54:42','2022-04-20 19:55:13'),(632,0,'en','core/base/system','memory_limit','Memory limit','2022-04-20 19:54:42','2022-04-20 19:55:13'),(633,0,'en','core/base/system','max_execution_time','Max execution time (s)','2022-04-20 19:54:42','2022-04-20 19:55:13'),(634,0,'en','core/base/tables','id','ID','2022-04-20 19:54:42','2022-04-20 19:55:13'),(635,0,'en','core/base/tables','name','Name','2022-04-20 19:54:42','2022-04-20 19:55:13'),(636,0,'en','core/base/tables','slug','Slug','2022-04-20 19:54:42','2022-04-20 19:55:13'),(637,0,'en','core/base/tables','title','Title','2022-04-20 19:54:42','2022-04-20 19:55:13'),(638,0,'en','core/base/tables','order_by','Order By','2022-04-20 19:54:42','2022-04-20 19:55:13'),(639,0,'en','core/base/tables','order','Order','2022-04-20 19:54:42','2022-04-20 19:55:13'),(640,0,'en','core/base/tables','status','Status','2022-04-20 19:54:42','2022-04-20 19:55:13'),(641,0,'en','core/base/tables','created_at','Created At','2022-04-20 19:54:42','2022-04-20 19:55:13'),(642,0,'en','core/base/tables','updated_at','Updated At','2022-04-20 19:54:42','2022-04-20 19:55:13'),(643,0,'en','core/base/tables','description','Description','2022-04-20 19:54:42','2022-04-20 19:55:13'),(644,0,'en','core/base/tables','operations','Operations','2022-04-20 19:54:42','2022-04-20 19:55:13'),(645,0,'en','core/base/tables','url','URL','2022-04-20 19:54:42','2022-04-20 19:55:13'),(646,0,'en','core/base/tables','author','Author','2022-04-20 19:54:42','2022-04-20 19:55:13'),(647,0,'en','core/base/tables','notes','Notes','2022-04-20 19:54:42','2022-04-20 19:55:13'),(648,0,'en','core/base/tables','column','Column','2022-04-20 19:54:42','2022-04-20 19:55:13'),(649,0,'en','core/base/tables','origin','Origin','2022-04-20 19:54:42','2022-04-20 19:55:13'),(650,0,'en','core/base/tables','after_change','After changes','2022-04-20 19:54:42','2022-04-20 19:55:13'),(651,0,'en','core/base/tables','views','Views','2022-04-20 19:54:42','2022-04-20 19:55:13'),(652,0,'en','core/base/tables','browser','Browser','2022-04-20 19:54:42','2022-04-20 19:55:13'),(653,0,'en','core/base/tables','session','Session','2022-04-20 19:54:42','2022-04-20 19:55:13'),(654,0,'en','core/base/tables','activated','activated','2022-04-20 19:54:42','2022-04-20 19:55:13'),(655,0,'en','core/base/tables','deactivated','deactivated','2022-04-20 19:54:42','2022-04-20 19:55:13'),(656,0,'en','core/base/tables','is_featured','Is featured','2022-04-20 19:54:42','2022-04-20 19:55:13'),(657,0,'en','core/base/tables','edit','Edit','2022-04-20 19:54:42','2022-04-20 19:55:13'),(658,0,'en','core/base/tables','delete','Delete','2022-04-20 19:54:42','2022-04-20 19:55:13'),(659,0,'en','core/base/tables','restore','Restore','2022-04-20 19:54:42','2022-04-20 19:55:13'),(660,0,'en','core/base/tables','activate','Activate','2022-04-20 19:54:42','2022-04-20 19:55:13'),(661,0,'en','core/base/tables','deactivate','Deactivate','2022-04-20 19:54:42','2022-04-20 19:55:13'),(662,0,'en','core/base/tables','excel','Excel','2022-04-20 19:54:42','2022-04-20 19:55:13'),(663,0,'en','core/base/tables','export','Export','2022-04-20 19:54:42','2022-04-20 19:55:13'),(664,0,'en','core/base/tables','csv','CSV','2022-04-20 19:54:42','2022-04-20 19:55:13'),(665,0,'en','core/base/tables','pdf','PDF','2022-04-20 19:54:42','2022-04-20 19:55:13'),(666,0,'en','core/base/tables','print','Print','2022-04-20 19:54:42','2022-04-20 19:55:13'),(667,0,'en','core/base/tables','reset','Reset','2022-04-20 19:54:42','2022-04-20 19:55:13'),(668,0,'en','core/base/tables','reload','Reload','2022-04-20 19:54:42','2022-04-20 19:55:13'),(669,0,'en','core/base/tables','display','Display','2022-04-20 19:54:42','2022-04-20 19:55:13'),(670,0,'en','core/base/tables','all','All','2022-04-20 19:54:42','2022-04-20 19:55:13'),(671,0,'en','core/base/tables','add_new','Add New','2022-04-20 19:54:42','2022-04-20 19:55:13'),(672,0,'en','core/base/tables','action','Actions','2022-04-20 19:54:42','2022-04-20 19:55:13'),(673,0,'en','core/base/tables','delete_entry','Delete','2022-04-20 19:54:42','2022-04-20 19:55:13'),(674,0,'en','core/base/tables','view','View Detail','2022-04-20 19:54:42','2022-04-20 19:55:13'),(675,0,'en','core/base/tables','save','Save','2022-04-20 19:54:42','2022-04-20 19:55:13'),(676,0,'en','core/base/tables','show_from','Show from','2022-04-20 19:54:42','2022-04-20 19:55:13'),(677,0,'en','core/base/tables','to','to','2022-04-20 19:54:42','2022-04-20 19:55:13'),(678,0,'en','core/base/tables','in','in','2022-04-20 19:54:42','2022-04-20 19:55:13'),(679,0,'en','core/base/tables','records','records','2022-04-20 19:54:42','2022-04-20 19:55:13'),(680,0,'en','core/base/tables','no_data','No data to display','2022-04-20 19:54:42','2022-04-20 19:55:13'),(681,0,'en','core/base/tables','no_record','No record','2022-04-20 19:54:42','2022-04-20 19:55:13'),(682,0,'en','core/base/tables','confirm_delete','Confirm delete','2022-04-20 19:54:42','2022-04-20 19:55:13'),(683,0,'en','core/base/tables','confirm_delete_msg','Do you really want to delete this record?','2022-04-20 19:54:42','2022-04-20 19:55:13'),(684,0,'en','core/base/tables','confirm_delete_many_msg','Do you really want to delete selected record(s)?','2022-04-20 19:54:42','2022-04-20 19:55:13'),(685,0,'en','core/base/tables','cancel','Cancel','2022-04-20 19:54:42','2022-04-20 19:55:13'),(686,0,'en','core/base/tables','template','Template','2022-04-20 19:54:42','2022-04-20 19:55:13'),(687,0,'en','core/base/tables','email','Email','2022-04-20 19:54:42','2022-04-20 19:55:13'),(688,0,'en','core/base/tables','last_login','Last login','2022-04-20 19:54:42','2022-04-20 19:55:13'),(689,0,'en','core/base/tables','shortcode','Shortcode','2022-04-20 19:54:42','2022-04-20 19:55:13'),(690,0,'en','core/base/tables','image','Image','2022-04-20 19:54:42','2022-04-20 19:55:13'),(691,0,'en','core/base/tables','bulk_changes','Bulk changes','2022-04-20 19:54:42','2022-04-20 19:55:13'),(692,0,'en','core/base/tables','submit','Submit','2022-04-20 19:54:42','2022-04-20 19:55:13'),(693,0,'en','core/base/tables','please_select_record','Please select at least one record to perform this action!','2022-04-20 19:54:42','2022-04-20 19:55:13'),(694,0,'en','core/base/tabs','detail','Detail','2022-04-20 19:54:42','2022-04-20 19:55:13'),(695,0,'en','core/base/tabs','file','Files','2022-04-20 19:54:42','2022-04-20 19:55:13'),(696,0,'en','core/base/tabs','record_note','Record Note','2022-04-20 19:54:42','2022-04-20 19:55:13'),(697,0,'en','core/base/tabs','revision','Revision History','2022-04-20 19:54:42','2022-04-20 19:55:13'),(698,0,'vi','core/base/cache','cache_management','Quản lý bộ nhớ đệm','2022-04-20 19:54:42','2022-04-20 19:55:13'),(699,0,'vi','core/base/cache','cache_commands','Các lệnh xoá bộ nhớ đệm cơ bản','2022-04-20 19:54:42','2022-04-20 19:55:13'),(700,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','2022-04-20 19:54:42','2022-04-20 19:55:13'),(701,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','2022-04-20 19:54:42','2022-04-20 19:55:13'),(702,0,'vi','core/base/cache','commands.clear_cms_cache.success_msg','Bộ đệm đã được xóa','2022-04-20 19:54:42','2022-04-20 19:55:13'),(703,0,'vi','core/base/cache','commands.refresh_compiled_views.title','Làm mới bộ đệm giao diện','2022-04-20 19:54:42','2022-04-20 19:55:13'),(704,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','2022-04-20 19:54:42','2022-04-20 19:55:13'),(705,0,'vi','core/base/cache','commands.refresh_compiled_views.success_msg','Bộ đệm giao diện đã được làm mới','2022-04-20 19:54:42','2022-04-20 19:55:13'),(706,0,'vi','core/base/cache','commands.clear_config_cache.title','Xóa bộ nhớ đệm của phần cấu hình','2022-04-20 19:54:42','2022-04-20 19:55:13'),(707,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.','2022-04-20 19:54:42','2022-04-20 19:55:13'),(708,0,'vi','core/base/cache','commands.clear_config_cache.success_msg','Bộ đệm cấu hình đã được xóa','2022-04-20 19:54:42','2022-04-20 19:55:13'),(709,0,'vi','core/base/cache','commands.clear_route_cache.title','Xoá cache đường dẫn','2022-04-20 19:54:42','2022-04-20 19:55:13'),(710,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.','2022-04-20 19:54:42','2022-04-20 19:55:13'),(711,0,'vi','core/base/cache','commands.clear_route_cache.success_msg','Bộ đệm điều hướng đã bị xóa','2022-04-20 19:54:42','2022-04-20 19:55:13'),(712,0,'vi','core/base/cache','commands.clear_log.description','Xoá lịch sử lỗi','2022-04-20 19:54:42','2022-04-20 19:55:13'),(713,0,'vi','core/base/cache','commands.clear_log.success_msg','Lịch sử lỗi đã được làm sạch','2022-04-20 19:54:42','2022-04-20 19:55:13'),(714,0,'vi','core/base/cache','commands.clear_log.title','Xoá lịch sử lỗi','2022-04-20 19:54:42','2022-04-20 19:55:13'),(715,0,'vi','core/base/enums','statuses.draft','Bản nháp','2022-04-20 19:54:42','2022-04-20 19:55:13'),(716,0,'vi','core/base/enums','statuses.pending','Đang chờ xử lý','2022-04-20 19:54:42','2022-04-20 19:55:13'),(717,0,'vi','core/base/errors','401_title','Bạn không có quyền truy cập trang này','2022-04-20 19:54:42','2022-04-20 19:55:13'),(718,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>','2022-04-20 19:54:42','2022-04-20 19:55:13'),(719,0,'vi','core/base/errors','404_title','Không tìm thấy trang yêu cầu','2022-04-20 19:54:42','2022-04-20 19:55:13'),(720,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>','2022-04-20 19:54:42','2022-04-20 19:55:13'),(721,0,'vi','core/base/errors','500_title','Không thể tải trang','2022-04-20 19:54:42','2022-04-20 19:55:13'),(722,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>','2022-04-20 19:54:42','2022-04-20 19:55:13'),(723,0,'vi','core/base/errors','reasons','Điều này có thể xảy ra vì nhiều lý do.','2022-04-20 19:54:42','2022-04-20 19:55:13'),(724,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>.','2022-04-20 19:54:42','2022-04-20 19:55:13'),(725,0,'vi','core/base/forms','choose_image','Chọn ảnh','2022-04-20 19:54:42','2022-04-20 19:55:13'),(726,0,'vi','core/base/forms','actions','Tác vụ','2022-04-20 19:54:42','2022-04-20 19:55:13'),(727,0,'vi','core/base/forms','save','Lưu','2022-04-20 19:54:42','2022-04-20 19:55:13'),(728,0,'vi','core/base/forms','save_and_continue','Lưu & chỉnh sửa','2022-04-20 19:54:42','2022-04-20 19:55:13'),(729,0,'vi','core/base/forms','image','Hình ảnh','2022-04-20 19:54:42','2022-04-20 19:55:13'),(730,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','2022-04-20 19:54:42','2022-04-20 19:55:13'),(731,0,'vi','core/base/forms','create','Tạo mới','2022-04-20 19:54:42','2022-04-20 19:55:13'),(732,0,'vi','core/base/forms','edit','Sửa','2022-04-20 19:54:42','2022-04-20 19:55:13'),(733,0,'vi','core/base/forms','permalink','Đường dẫn','2022-04-20 19:54:42','2022-04-20 19:55:13'),(734,0,'vi','core/base/forms','ok','OK','2022-04-20 19:54:42','2022-04-20 19:55:13'),(735,0,'vi','core/base/forms','cancel','Hủy bỏ','2022-04-20 19:54:42','2022-04-20 19:55:13'),(736,0,'vi','core/base/forms','character_remain','kí tự còn lại','2022-04-20 19:54:42','2022-04-20 19:55:13'),(737,0,'vi','core/base/forms','template','Template','2022-04-20 19:54:42','2022-04-20 19:55:13'),(738,0,'vi','core/base/forms','choose_file','Chọn tập tin','2022-04-20 19:54:42','2022-04-20 19:55:13'),(739,0,'vi','core/base/forms','file','Tập tin','2022-04-20 19:54:42','2022-04-20 19:55:13'),(740,0,'vi','core/base/forms','content','Nội dung','2022-04-20 19:54:42','2022-04-20 19:55:13'),(741,0,'vi','core/base/forms','description','Mô tả','2022-04-20 19:54:42','2022-04-20 19:55:13'),(742,0,'vi','core/base/forms','name','Tên','2022-04-20 19:54:42','2022-04-20 19:55:13'),(743,0,'vi','core/base/forms','name_placeholder','Nhập tên','2022-04-20 19:54:42','2022-04-20 19:55:13'),(744,0,'vi','core/base/forms','description_placeholder','Mô tả ngắn','2022-04-20 19:54:42','2022-04-20 19:55:13'),(745,0,'vi','core/base/forms','parent','Cha','2022-04-20 19:54:42','2022-04-20 19:55:13'),(746,0,'vi','core/base/forms','icon','Biểu tượng','2022-04-20 19:54:42','2022-04-20 19:55:13'),(747,0,'vi','core/base/forms','order_by','Sắp xếp','2022-04-20 19:54:42','2022-04-20 19:55:13'),(748,0,'vi','core/base/forms','order_by_placeholder','Sắp xếp','2022-04-20 19:54:42','2022-04-20 19:55:13'),(749,0,'vi','core/base/forms','slug','Slug','2022-04-20 19:54:42','2022-04-20 19:55:13'),(750,0,'vi','core/base/forms','is_featured','Nổi bật?','2022-04-20 19:54:42','2022-04-20 19:55:13'),(751,0,'vi','core/base/forms','is_default','Mặc định?','2022-04-20 19:54:42','2022-04-20 19:55:13'),(752,0,'vi','core/base/forms','icon_placeholder','Ví dụ: fa fa-home','2022-04-20 19:54:42','2022-04-20 19:55:13'),(753,0,'vi','core/base/forms','update','Cập nhật','2022-04-20 19:54:42','2022-04-20 19:55:13'),(754,0,'vi','core/base/forms','publish','Xuất bản','2022-04-20 19:54:42','2022-04-20 19:55:13'),(755,0,'vi','core/base/forms','remove_image','Xoá ảnh','2022-04-20 19:54:42','2022-04-20 19:55:13'),(756,0,'vi','core/base/forms','add','Thêm','2022-04-20 19:54:42','2022-04-20 19:55:13'),(757,0,'vi','core/base/forms','add_short_code','Thêm shortcode','2022-04-20 19:54:42','2022-04-20 19:55:13'),(758,0,'vi','core/base/forms','alias','Mã thay thế','2022-04-20 19:54:42','2022-04-20 19:55:13'),(759,0,'vi','core/base/forms','alias_placeholder','Mã thay thế','2022-04-20 19:54:42','2022-04-20 19:55:13'),(760,0,'vi','core/base/forms','basic_information','Thông tin cơ bản','2022-04-20 19:54:42','2022-04-20 19:55:13'),(761,0,'vi','core/base/forms','link','Liên kết','2022-04-20 19:54:42','2022-04-20 19:55:13'),(762,0,'vi','core/base/forms','order','Thứ tự','2022-04-20 19:54:42','2022-04-20 19:55:13'),(763,0,'vi','core/base/forms','short_code','Shortcode','2022-04-20 19:54:42','2022-04-20 19:55:13'),(764,0,'vi','core/base/forms','title','Tiêu đề','2022-04-20 19:54:42','2022-04-20 19:55:13'),(765,0,'vi','core/base/forms','value','Giá trị','2022-04-20 19:54:42','2022-04-20 19:55:13'),(766,0,'vi','core/base/forms','show_hide_editor','Ẩn/Hiện trình soạn thảo','2022-04-20 19:54:42','2022-04-20 19:55:13'),(767,0,'vi','core/base/forms','basic_info_title','Thông tin cơ bản','2022-04-20 19:54:42','2022-04-20 19:55:13'),(768,0,'vi','core/base/layouts','platform_admin','Quản trị hệ thống','2022-04-20 19:54:42','2022-04-20 19:55:13'),(769,0,'vi','core/base/layouts','dashboard','Bảng điều khiển','2022-04-20 19:54:42','2022-04-20 19:55:13'),(770,0,'vi','core/base/layouts','widgets','Tiện ích','2022-04-20 19:54:42','2022-04-20 19:55:13'),(771,0,'vi','core/base/layouts','plugins','Tiện ích mở rộng','2022-04-20 19:54:42','2022-04-20 19:55:13'),(772,0,'vi','core/base/layouts','settings','Cài đặt','2022-04-20 19:54:42','2022-04-20 19:55:13'),(773,0,'vi','core/base/layouts','setting_general','Cơ bản','2022-04-20 19:54:42','2022-04-20 19:55:13'),(774,0,'vi','core/base/layouts','system_information','Thông tin hệ thống','2022-04-20 19:54:42','2022-04-20 19:55:13'),(775,0,'vi','core/base/layouts','theme','Giao diện','2022-04-20 19:54:42','2022-04-20 19:55:13'),(776,0,'vi','core/base/layouts','copyright','Bản quyền :year &copy; :company. Phiên bản: <span>:version</span>','2022-04-20 19:54:42','2022-04-20 19:55:13'),(777,0,'vi','core/base/layouts','profile','Thông tin cá nhân','2022-04-20 19:54:42','2022-04-20 19:55:13'),(778,0,'vi','core/base/layouts','logout','Đăng xuất','2022-04-20 19:54:42','2022-04-20 19:55:13'),(779,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.','2022-04-20 19:54:42','2022-04-20 19:55:13'),(780,0,'vi','core/base/layouts','home','Trang chủ','2022-04-20 19:54:42','2022-04-20 19:55:13'),(781,0,'vi','core/base/layouts','search','Tìm kiếm','2022-04-20 19:54:42','2022-04-20 19:55:13'),(782,0,'vi','core/base/layouts','add_new','Thêm mới','2022-04-20 19:54:42','2022-04-20 19:55:13'),(783,0,'vi','core/base/layouts','n_a','N/A','2022-04-20 19:54:42','2022-04-20 19:55:13'),(784,0,'vi','core/base/layouts','page_loaded_time','Trang tải xong trong','2022-04-20 19:54:42','2022-04-20 19:55:13'),(785,0,'vi','core/base/layouts','view_website','Xem trang ngoài','2022-04-20 19:54:42','2022-04-20 19:55:13'),(786,0,'vi','core/base/layouts','setting_email','Email','2022-04-20 19:54:42','2022-04-20 19:55:13'),(787,0,'vi','core/base/mail','send-fail','Gửi email không thành công','2022-04-20 19:54:42','2022-04-20 19:55:13'),(788,0,'vi','core/base/notices','create_success_message','Tạo thành công','2022-04-20 19:54:43','2022-04-20 19:55:13'),(789,0,'vi','core/base/notices','update_success_message','Cập nhật thành công','2022-04-20 19:54:43','2022-04-20 19:55:13'),(790,0,'vi','core/base/notices','delete_success_message','Xóa thành công','2022-04-20 19:54:43','2022-04-20 19:55:13'),(791,0,'vi','core/base/notices','success_header','Thành công!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(792,0,'vi','core/base/notices','error_header','Lỗi!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(793,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!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(794,0,'vi','core/base/notices','processing_request','Hệ thống đang xử lý yêu cầu.','2022-04-20 19:54:43','2022-04-20 19:55:13'),(795,0,'vi','core/base/notices','error','Lỗi!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(796,0,'vi','core/base/notices','success','Thành công!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(797,0,'vi','core/base/notices','info','Thông tin!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(798,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!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(799,0,'vi','core/base/system','cannot_find_user','Không thể tải được thông tin người dùng','2022-04-20 19:54:43','2022-04-20 19:55:13'),(800,0,'vi','core/base/system','supper_revoked','Quyền quản trị viên cao nhất đã được gỡ bỏ','2022-04-20 19:54:43','2022-04-20 19:55:13'),(801,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!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(802,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','2022-04-20 19:54:43','2022-04-20 19:55:13'),(803,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','2022-04-20 19:54:43','2022-04-20 19:55:13'),(804,0,'vi','core/base/system','supper_granted','Quyền quản trị cao nhất đã được gán','2022-04-20 19:54:43','2022-04-20 19:55:13'),(805,0,'vi','core/base/system','delete_log_success','Xóa tập tin log thành công!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(806,0,'vi','core/base/system','get_member_success','Hiển thị danh sách thành viên thành công','2022-04-20 19:54:43','2022-04-20 19:55:13'),(807,0,'vi','core/base/system','error_occur','Có lỗi dưới đây','2022-04-20 19:54:43','2022-04-20 19:55:13'),(808,0,'vi','core/base/system','role_and_permission','Phân quyền hệ thống','2022-04-20 19:54:43','2022-04-20 19:55:13'),(809,0,'vi','core/base/system','role_and_permission_description','Quản lý những phân quyền trong hệ thống','2022-04-20 19:54:43','2022-04-20 19:55:13'),(810,0,'vi','core/base/system','user.list_super','Danh sách quản trị viên cấp cao','2022-04-20 19:54:43','2022-04-20 19:55:13'),(811,0,'vi','core/base/system','user.username','Tên đăng nhập','2022-04-20 19:54:43','2022-04-20 19:55:13'),(812,0,'vi','core/base/system','user.email','Email','2022-04-20 19:54:43','2022-04-20 19:55:13'),(813,0,'vi','core/base/system','user.last_login','Đăng nhập lần cuối	','2022-04-20 19:54:43','2022-04-20 19:55:13'),(814,0,'vi','core/base/system','user.add_user','Thêm quản trị viên cấp cao','2022-04-20 19:54:43','2022-04-20 19:55:13'),(815,0,'vi','core/base/system','user.cancel','Hủy bỏ','2022-04-20 19:54:43','2022-04-20 19:55:13'),(816,0,'vi','core/base/system','user.create','Thêm','2022-04-20 19:54:43','2022-04-20 19:55:13'),(817,0,'vi','core/base/system','options.features','Kiểm soát truy cập các tính năng','2022-04-20 19:54:43','2022-04-20 19:55:13'),(818,0,'vi','core/base/system','options.feature_description','Bật/tắt các tính năng.','2022-04-20 19:54:43','2022-04-20 19:55:13'),(819,0,'vi','core/base/system','options.manage_super','Quản lý quản trị viên cấp cao','2022-04-20 19:54:43','2022-04-20 19:55:13'),(820,0,'vi','core/base/system','options.manage_super_description','Thêm/xóa quản trị viên cấp cao','2022-04-20 19:54:43','2022-04-20 19:55:13'),(821,0,'vi','core/base/system','options.info','Thông tin hệ thống','2022-04-20 19:54:43','2022-04-20 19:55:13'),(822,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.','2022-04-20 19:54:43','2022-04-20 19:55:13'),(823,0,'vi','core/base/system','info.title','Thông tin hệ thống','2022-04-20 19:54:43','2022-04-20 19:55:13'),(824,0,'vi','core/base/system','info.cache','Bộ nhớ đệm','2022-04-20 19:54:43','2022-04-20 19:55:13'),(825,0,'vi','core/base/system','info.environment','Môi trường','2022-04-20 19:54:43','2022-04-20 19:55:13'),(826,0,'vi','core/base/system','info.locale','Ngôn ngữ hệ thống','2022-04-20 19:54:43','2022-04-20 19:55:13'),(827,0,'vi','core/base/system','user_management','Quản lý thành viên','2022-04-20 19:54:43','2022-04-20 19:55:13'),(828,0,'vi','core/base/system','user_management_description','Quản lý người dùng trong hệ thống','2022-04-20 19:54:43','2022-04-20 19:55:13'),(829,0,'vi','core/base/system','app_size','Kích thước ứng dụng','2022-04-20 19:54:43','2022-04-20 19:55:13'),(830,0,'vi','core/base/system','cache_dir_writable','Có thể ghi bộ nhớ đệm','2022-04-20 19:54:43','2022-04-20 19:55:13'),(831,0,'vi','core/base/system','cache_driver','Loại lưu trữ bộ nhớ đệm','2022-04-20 19:54:43','2022-04-20 19:55:13'),(832,0,'vi','core/base/system','copy_report','Sao chép báo cáo','2022-04-20 19:54:43','2022-04-20 19:55:13'),(833,0,'vi','core/base/system','curl_ext','CURL Ext','2022-04-20 19:54:43','2022-04-20 19:55:13'),(834,0,'vi','core/base/system','database','Hệ thống dữ liệu','2022-04-20 19:54:43','2022-04-20 19:55:13'),(835,0,'vi','core/base/system','debug_mode','Chế độ sửa lỗi','2022-04-20 19:54:43','2022-04-20 19:55:13'),(836,0,'vi','core/base/system','dependency_name','Tên gói','2022-04-20 19:54:43','2022-04-20 19:55:13'),(837,0,'vi','core/base/system','exif_ext','Exif Ext','2022-04-20 19:54:43','2022-04-20 19:55:13'),(838,0,'vi','core/base/system','extra_information','Thông tin mở rộng','2022-04-20 19:54:43','2022-04-20 19:55:13'),(839,0,'vi','core/base/system','extra_stats','Thống kê thêm','2022-04-20 19:54:43','2022-04-20 19:55:13'),(840,0,'vi','core/base/system','file_info_ext','File info Ext','2022-04-20 19:54:43','2022-04-20 19:55:13'),(841,0,'vi','core/base/system','framework_version','Phiên bản framework','2022-04-20 19:54:43','2022-04-20 19:55:13'),(842,0,'vi','core/base/system','get_system_report','Lấy thông tin hệ thống','2022-04-20 19:54:43','2022-04-20 19:55:13'),(843,0,'vi','core/base/system','installed_packages','Các gói đã cài đặt và phiên bản','2022-04-20 19:54:43','2022-04-20 19:55:13'),(844,0,'vi','core/base/system','mbstring_ext','Mbstring Ext','2022-04-20 19:54:43','2022-04-20 19:55:13'),(845,0,'vi','core/base/system','openssl_ext','OpenSSL Ext','2022-04-20 19:54:43','2022-04-20 19:55:13'),(846,0,'vi','core/base/system','package_name','Tên gói','2022-04-20 19:54:43','2022-04-20 19:55:13'),(847,0,'vi','core/base/system','pdo_ext','PDO Ext','2022-04-20 19:54:43','2022-04-20 19:55:13'),(848,0,'vi','core/base/system','php_version','Phiên bản PHP','2022-04-20 19:54:43','2022-04-20 19:55:13'),(849,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','2022-04-20 19:54:43','2022-04-20 19:55:13'),(850,0,'vi','core/base/system','server_environment','Môi trường máy chủ','2022-04-20 19:54:43','2022-04-20 19:55:13'),(851,0,'vi','core/base/system','server_os','Hệ điều hành của máy chủ','2022-04-20 19:54:43','2022-04-20 19:55:13'),(852,0,'vi','core/base/system','server_software','Phần mềm','2022-04-20 19:54:43','2022-04-20 19:55:13'),(853,0,'vi','core/base/system','session_driver','Loại lưu trữ phiên làm việc','2022-04-20 19:54:43','2022-04-20 19:55:13'),(854,0,'vi','core/base/system','ssl_installed','Đã cài đặt chứng chỉ SSL','2022-04-20 19:54:43','2022-04-20 19:55:13'),(855,0,'vi','core/base/system','storage_dir_writable','Có thể lưu trữ dữ liệu tạm','2022-04-20 19:54:43','2022-04-20 19:55:13'),(856,0,'vi','core/base/system','system_environment','Môi trường hệ thống','2022-04-20 19:54:43','2022-04-20 19:55:13'),(857,0,'vi','core/base/system','timezone','Múi giờ','2022-04-20 19:54:43','2022-04-20 19:55:13'),(858,0,'vi','core/base/system','tokenizer_ext','Tokenizer Ext','2022-04-20 19:54:43','2022-04-20 19:55:13'),(859,0,'vi','core/base/system','version','Phiên bản','2022-04-20 19:54:43','2022-04-20 19:55:13'),(860,0,'vi','core/base/system','cms_version','Phiên bản CMS','2022-04-20 19:54:43','2022-04-20 19:55:13'),(861,0,'vi','core/base/tables','id','ID','2022-04-20 19:54:43','2022-04-20 19:55:13'),(862,0,'vi','core/base/tables','name','Tên','2022-04-20 19:54:43','2022-04-20 19:55:13'),(863,0,'vi','core/base/tables','order_by','Thứ tự','2022-04-20 19:54:43','2022-04-20 19:55:13'),(864,0,'vi','core/base/tables','status','Trạng thái','2022-04-20 19:54:43','2022-04-20 19:55:13'),(865,0,'vi','core/base/tables','created_at','Ngày tạo','2022-04-20 19:54:43','2022-04-20 19:55:13'),(866,0,'vi','core/base/tables','updated_at','Ngày cập nhật','2022-04-20 19:54:43','2022-04-20 19:55:13'),(867,0,'vi','core/base/tables','operations','Tác vụ','2022-04-20 19:54:43','2022-04-20 19:55:13'),(868,0,'vi','core/base/tables','url','URL','2022-04-20 19:54:43','2022-04-20 19:55:13'),(869,0,'vi','core/base/tables','author','Người tạo','2022-04-20 19:54:43','2022-04-20 19:55:13'),(870,0,'vi','core/base/tables','column','Cột','2022-04-20 19:54:43','2022-04-20 19:55:13'),(871,0,'vi','core/base/tables','origin','Bản cũ','2022-04-20 19:54:43','2022-04-20 19:55:13'),(872,0,'vi','core/base/tables','after_change','Sau khi thay đổi','2022-04-20 19:54:43','2022-04-20 19:55:13'),(873,0,'vi','core/base/tables','notes','Ghi chú','2022-04-20 19:54:43','2022-04-20 19:55:13'),(874,0,'vi','core/base/tables','activated','kích hoạt','2022-04-20 19:54:43','2022-04-20 19:55:13'),(875,0,'vi','core/base/tables','browser','Trình duyệt','2022-04-20 19:54:43','2022-04-20 19:55:13'),(876,0,'vi','core/base/tables','deactivated','hủy kích hoạt','2022-04-20 19:54:43','2022-04-20 19:55:13'),(877,0,'vi','core/base/tables','description','Mô tả','2022-04-20 19:54:43','2022-04-20 19:55:13'),(878,0,'vi','core/base/tables','session','Phiên','2022-04-20 19:54:43','2022-04-20 19:55:13'),(879,0,'vi','core/base/tables','views','Lượt xem','2022-04-20 19:54:43','2022-04-20 19:55:13'),(880,0,'vi','core/base/tables','restore','Khôi phục','2022-04-20 19:54:43','2022-04-20 19:55:13'),(881,0,'vi','core/base/tables','edit','Sửa','2022-04-20 19:54:43','2022-04-20 19:55:13'),(882,0,'vi','core/base/tables','delete','Xóa','2022-04-20 19:54:43','2022-04-20 19:55:13'),(883,0,'vi','core/base/tables','action','Hành động','2022-04-20 19:54:43','2022-04-20 19:55:13'),(884,0,'vi','core/base/tables','activate','Kích hoạt','2022-04-20 19:54:43','2022-04-20 19:55:13'),(885,0,'vi','core/base/tables','add_new','Thêm mới','2022-04-20 19:54:43','2022-04-20 19:55:13'),(886,0,'vi','core/base/tables','all','Tất cả','2022-04-20 19:54:43','2022-04-20 19:55:13'),(887,0,'vi','core/base/tables','cancel','Hủy bỏ','2022-04-20 19:54:43','2022-04-20 19:55:13'),(888,0,'vi','core/base/tables','confirm_delete','Xác nhận xóa','2022-04-20 19:54:43','2022-04-20 19:55:13'),(889,0,'vi','core/base/tables','confirm_delete_msg','Bạn có chắc chắn muốn xóa bản ghi này?','2022-04-20 19:54:43','2022-04-20 19:55:13'),(890,0,'vi','core/base/tables','csv','CSV','2022-04-20 19:54:43','2022-04-20 19:55:13'),(891,0,'vi','core/base/tables','deactivate','Hủy kích hoạt','2022-04-20 19:54:43','2022-04-20 19:55:13'),(892,0,'vi','core/base/tables','delete_entry','Xóa bản ghi','2022-04-20 19:54:43','2022-04-20 19:55:13'),(893,0,'vi','core/base/tables','display','Hiển thị','2022-04-20 19:54:43','2022-04-20 19:55:13'),(894,0,'vi','core/base/tables','excel','Excel','2022-04-20 19:54:43','2022-04-20 19:55:13'),(895,0,'vi','core/base/tables','export','Xuất bản','2022-04-20 19:54:43','2022-04-20 19:55:13'),(896,0,'vi','core/base/tables','in','trong tổng số','2022-04-20 19:54:43','2022-04-20 19:55:13'),(897,0,'vi','core/base/tables','no_data','Không có dữ liệu để hiển thị','2022-04-20 19:54:43','2022-04-20 19:55:13'),(898,0,'vi','core/base/tables','no_record','Không có dữ liệu','2022-04-20 19:54:43','2022-04-20 19:55:13'),(899,0,'vi','core/base/tables','pdf','PDF','2022-04-20 19:54:43','2022-04-20 19:55:13'),(900,0,'vi','core/base/tables','print','In','2022-04-20 19:54:43','2022-04-20 19:55:13'),(901,0,'vi','core/base/tables','records','bản ghi','2022-04-20 19:54:43','2022-04-20 19:55:13'),(902,0,'vi','core/base/tables','reload','Tải lại','2022-04-20 19:54:43','2022-04-20 19:55:13'),(903,0,'vi','core/base/tables','reset','Làm mới','2022-04-20 19:54:43','2022-04-20 19:55:13'),(904,0,'vi','core/base/tables','save','Lưu','2022-04-20 19:54:43','2022-04-20 19:55:13'),(905,0,'vi','core/base/tables','show_from','Hiển thị từ','2022-04-20 19:54:43','2022-04-20 19:55:13'),(906,0,'vi','core/base/tables','template','Giao diện','2022-04-20 19:54:43','2022-04-20 19:55:13'),(907,0,'vi','core/base/tables','to','đến','2022-04-20 19:54:43','2022-04-20 19:55:13'),(908,0,'vi','core/base/tables','view','Xem chi tiết','2022-04-20 19:54:43','2022-04-20 19:55:13'),(909,0,'vi','core/base/tables','email','Email','2022-04-20 19:54:43','2022-04-20 19:55:13'),(910,0,'vi','core/base/tables','image','Hình ảnh','2022-04-20 19:54:43','2022-04-20 19:55:13'),(911,0,'vi','core/base/tables','is_featured','Nổi bật','2022-04-20 19:54:43','2022-04-20 19:55:13'),(912,0,'vi','core/base/tables','last_login','Lần cuối đăng nhập','2022-04-20 19:54:43','2022-04-20 19:55:13'),(913,0,'vi','core/base/tables','order','Thứ tự','2022-04-20 19:54:43','2022-04-20 19:55:13'),(914,0,'vi','core/base/tables','shortcode','Shortcode','2022-04-20 19:54:43','2022-04-20 19:55:13'),(915,0,'vi','core/base/tables','slug','Slug','2022-04-20 19:54:43','2022-04-20 19:55:13'),(916,0,'vi','core/base/tables','title','Tiêu đề','2022-04-20 19:54:43','2022-04-20 19:55:13'),(917,0,'vi','core/base/tabs','detail','Chi tiết','2022-04-20 19:54:43','2022-04-20 19:55:13'),(918,0,'vi','core/base/tabs','file','Tập tin','2022-04-20 19:54:43','2022-04-20 19:55:13'),(919,0,'vi','core/base/tabs','record_note','Ghi chú','2022-04-20 19:54:43','2022-04-20 19:55:13'),(920,0,'vi','core/base/tabs','revision','Lịch sử thay đổi','2022-04-20 19:54:43','2022-04-20 19:55:13'),(921,0,'en','core/dashboard/dashboard','update_position_success','Update widget position successfully!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(922,0,'en','core/dashboard/dashboard','hide_success','Update widget successfully!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(923,0,'en','core/dashboard/dashboard','confirm_hide','Are you sure?','2022-04-20 19:54:43','2022-04-20 19:55:13'),(924,0,'en','core/dashboard/dashboard','hide_message','Do you really want to hide this widget? It will be disappear on Dashboard!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(925,0,'en','core/dashboard/dashboard','confirm_hide_btn','Yes, hide this widget','2022-04-20 19:54:43','2022-04-20 19:55:13'),(926,0,'en','core/dashboard/dashboard','cancel_hide_btn','Cancel','2022-04-20 19:54:43','2022-04-20 19:55:13'),(927,0,'en','core/dashboard/dashboard','collapse_expand','Collapse/Expand','2022-04-20 19:54:43','2022-04-20 19:55:13'),(928,0,'en','core/dashboard/dashboard','hide','Hide','2022-04-20 19:54:43','2022-04-20 19:55:13'),(929,0,'en','core/dashboard/dashboard','reload','Reload','2022-04-20 19:54:43','2022-04-20 19:55:13'),(930,0,'en','core/dashboard/dashboard','save_setting_success','Save widget settings successfully!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(931,0,'en','core/dashboard/dashboard','widget_not_exists','Widget is not exits!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(932,0,'en','core/dashboard/dashboard','manage_widgets','Manage Widgets','2022-04-20 19:54:43','2022-04-20 19:55:13'),(933,0,'en','core/dashboard/dashboard','fullscreen','Full screen','2022-04-20 19:54:43','2022-04-20 19:55:13'),(934,0,'en','core/dashboard/dashboard','title','Dashboard','2022-04-20 19:54:43','2022-04-20 19:55:13'),(935,0,'en','core/dashboard/dashboard','predefined_ranges.today','Today','2022-04-20 19:54:43','2022-04-20 19:55:13'),(936,0,'en','core/dashboard/dashboard','predefined_ranges.yesterday','Yesterday','2022-04-20 19:54:43','2022-04-20 19:55:13'),(937,0,'en','core/dashboard/dashboard','predefined_ranges.this_week','This Week','2022-04-20 19:54:43','2022-04-20 19:55:13'),(938,0,'en','core/dashboard/dashboard','predefined_ranges.last_7_days','Last 7 Days','2022-04-20 19:54:43','2022-04-20 19:55:13'),(939,0,'en','core/dashboard/dashboard','predefined_ranges.this_month','This Month','2022-04-20 19:54:43','2022-04-20 19:55:13'),(940,0,'en','core/dashboard/dashboard','predefined_ranges.last_30_days','Last 30 Days','2022-04-20 19:54:43','2022-04-20 19:55:13'),(941,0,'en','core/dashboard/dashboard','predefined_ranges.this_year','This Year','2022-04-20 19:54:43','2022-04-20 19:55:13'),(942,0,'vi','core/dashboard/dashboard','cancel_hide_btn','Hủy bỏ','2022-04-20 19:54:43','2022-04-20 19:55:13'),(943,0,'vi','core/dashboard/dashboard','collapse_expand','Mở rộng','2022-04-20 19:54:43','2022-04-20 19:55:13'),(944,0,'vi','core/dashboard/dashboard','confirm_hide','Bạn có chắc?','2022-04-20 19:54:43','2022-04-20 19:55:13'),(945,0,'vi','core/dashboard/dashboard','confirm_hide_btn','Vâng, ẩn tiện ích này','2022-04-20 19:54:43','2022-04-20 19:55:13'),(946,0,'vi','core/dashboard/dashboard','hide','Ẩn','2022-04-20 19:54:43','2022-04-20 19:55:13'),(947,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!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(948,0,'vi','core/dashboard/dashboard','hide_success','Ẩn tiện ích thành công!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(949,0,'vi','core/dashboard/dashboard','manage_widgets','Quản lý tiện ích','2022-04-20 19:54:43','2022-04-20 19:55:13'),(950,0,'vi','core/dashboard/dashboard','reload','Làm mới','2022-04-20 19:54:43','2022-04-20 19:55:13'),(951,0,'vi','core/dashboard/dashboard','save_setting_success','Lưu tiện ích thành công','2022-04-20 19:54:43','2022-04-20 19:55:13'),(952,0,'vi','core/dashboard/dashboard','update_position_success','Cập nhật vị trí tiện ích thành công!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(953,0,'vi','core/dashboard/dashboard','widget_not_exists','Tiện ích này không tồn tại!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(954,0,'vi','core/dashboard/dashboard','fullscreen','Toàn màn hình','2022-04-20 19:54:43','2022-04-20 19:55:13'),(955,0,'vi','core/dashboard/dashboard','title','Trang quản trị','2022-04-20 19:54:43','2022-04-20 19:55:13'),(956,0,'en','core/media/media','filter','Filter','2022-04-20 19:54:43','2022-04-20 19:55:13'),(957,0,'en','core/media/media','everything','Everything','2022-04-20 19:54:43','2022-04-20 19:55:13'),(958,0,'en','core/media/media','image','Image','2022-04-20 19:54:43','2022-04-20 19:55:13'),(959,0,'en','core/media/media','video','Video','2022-04-20 19:54:43','2022-04-20 19:55:13'),(960,0,'en','core/media/media','document','Document','2022-04-20 19:54:43','2022-04-20 19:55:13'),(961,0,'en','core/media/media','view_in','View in','2022-04-20 19:54:43','2022-04-20 19:55:13'),(962,0,'en','core/media/media','all_media','All media','2022-04-20 19:54:43','2022-04-20 19:55:13'),(963,0,'en','core/media/media','trash','Trash','2022-04-20 19:54:43','2022-04-20 19:55:13'),(964,0,'en','core/media/media','recent','Recent','2022-04-20 19:54:43','2022-04-20 19:55:13'),(965,0,'en','core/media/media','favorites','Favorites','2022-04-20 19:54:43','2022-04-20 19:55:13'),(966,0,'en','core/media/media','upload','Upload','2022-04-20 19:54:43','2022-04-20 19:55:13'),(967,0,'en','core/media/media','create_folder','Create folder','2022-04-20 19:54:43','2022-04-20 19:55:13'),(968,0,'en','core/media/media','refresh','Refresh','2022-04-20 19:54:43','2022-04-20 19:55:13'),(969,0,'en','core/media/media','empty_trash','Empty trash','2022-04-20 19:54:43','2022-04-20 19:55:13'),(970,0,'en','core/media/media','search_file_and_folder','Search in current folder','2022-04-20 19:54:43','2022-04-20 19:55:13'),(971,0,'en','core/media/media','sort','Sort','2022-04-20 19:54:43','2022-04-20 19:55:13'),(972,0,'en','core/media/media','file_name_asc','File name - ASC','2022-04-20 19:54:43','2022-04-20 19:55:13'),(973,0,'en','core/media/media','file_name_desc','File name - DESC','2022-04-20 19:54:43','2022-04-20 19:55:13'),(974,0,'en','core/media/media','uploaded_date_asc','Uploaded date - ASC','2022-04-20 19:54:43','2022-04-20 19:55:13'),(975,0,'en','core/media/media','uploaded_date_desc','Uploaded date - DESC','2022-04-20 19:54:43','2022-04-20 19:55:13'),(976,0,'en','core/media/media','size_asc','Size - ASC','2022-04-20 19:54:43','2022-04-20 19:55:13'),(977,0,'en','core/media/media','size_desc','Size - DESC','2022-04-20 19:54:43','2022-04-20 19:55:13'),(978,0,'en','core/media/media','actions','Actions','2022-04-20 19:54:43','2022-04-20 19:55:13'),(979,0,'en','core/media/media','nothing_is_selected','Nothing is selected','2022-04-20 19:54:43','2022-04-20 19:55:13'),(980,0,'en','core/media/media','insert','Insert','2022-04-20 19:54:43','2022-04-20 19:55:13'),(981,0,'en','core/media/media','folder_name','Folder name','2022-04-20 19:54:43','2022-04-20 19:55:13'),(982,0,'en','core/media/media','create','Create','2022-04-20 19:54:43','2022-04-20 19:55:13'),(983,0,'en','core/media/media','rename','Rename','2022-04-20 19:54:43','2022-04-20 19:55:13'),(984,0,'en','core/media/media','close','Close','2022-04-20 19:54:43','2022-04-20 19:55:13'),(985,0,'en','core/media/media','save_changes','Save changes','2022-04-20 19:54:43','2022-04-20 19:55:13'),(986,0,'en','core/media/media','move_to_trash','Move items to trash','2022-04-20 19:54:43','2022-04-20 19:55:13'),(987,0,'en','core/media/media','confirm_trash','Are you sure you want to move these items to trash?','2022-04-20 19:54:43','2022-04-20 19:55:13'),(988,0,'en','core/media/media','confirm','Confirm','2022-04-20 19:54:43','2022-04-20 19:55:13'),(989,0,'en','core/media/media','confirm_delete','Delete item(s)','2022-04-20 19:54:43','2022-04-20 19:55:13'),(990,0,'en','core/media/media','confirm_delete_description','Your request cannot rollback. Are you sure you wanna delete these items?','2022-04-20 19:54:43','2022-04-20 19:55:13'),(991,0,'en','core/media/media','empty_trash_title','Empty trash','2022-04-20 19:54:43','2022-04-20 19:55:13'),(992,0,'en','core/media/media','empty_trash_description','Your request cannot rollback. Are you sure you wanna remove all items in trash?','2022-04-20 19:54:43','2022-04-20 19:55:13'),(993,0,'en','core/media/media','up_level','Up one level','2022-04-20 19:54:43','2022-04-20 19:55:13'),(994,0,'en','core/media/media','upload_progress','Upload progress','2022-04-20 19:54:43','2022-04-20 19:55:13'),(995,0,'en','core/media/media','folder_created','Folder is created successfully!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(996,0,'en','core/media/media','gallery','Media gallery','2022-04-20 19:54:43','2022-04-20 19:55:13'),(997,0,'en','core/media/media','trash_error','Error when delete selected item(s)','2022-04-20 19:54:43','2022-04-20 19:55:13'),(998,0,'en','core/media/media','trash_success','Moved selected item(s) to trash successfully!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(999,0,'en','core/media/media','restore_error','Error when restore selected item(s)','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1000,0,'en','core/media/media','restore_success','Restore selected item(s) successfully!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1001,0,'en','core/media/media','copy_success','Copied selected item(s) successfully!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1002,0,'en','core/media/media','delete_success','Deleted selected item(s) successfully!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1003,0,'en','core/media/media','favorite_success','Favorite selected item(s) successfully!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1004,0,'en','core/media/media','remove_favorite_success','Remove selected item(s) from favorites successfully!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1005,0,'en','core/media/media','rename_error','Error when rename item(s)','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1006,0,'en','core/media/media','rename_success','Rename selected item(s) successfully!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1007,0,'en','core/media/media','empty_trash_success','Empty trash successfully!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1008,0,'en','core/media/media','invalid_action','Invalid action!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1009,0,'en','core/media/media','file_not_exists','File is not exists!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1010,0,'en','core/media/media','download_file_error','Error when downloading files!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1011,0,'en','core/media/media','missing_zip_archive_extension','Please enable ZipArchive extension to download file!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1012,0,'en','core/media/media','can_not_download_file','Can not download this file!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1013,0,'en','core/media/media','invalid_request','Invalid request!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1014,0,'en','core/media/media','add_success','Add item successfully!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1015,0,'en','core/media/media','file_too_big','File too big. Max file upload is :size bytes','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1016,0,'en','core/media/media','can_not_detect_file_type','File type is not allowed or can not detect file type!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1017,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','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1018,0,'en','core/media/media','menu_name','Media','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1019,0,'en','core/media/media','add','Add media','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1020,0,'en','core/media/media','javascript.name','Name','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1021,0,'en','core/media/media','javascript.url','URL','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1022,0,'en','core/media/media','javascript.full_url','Full URL','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1023,0,'en','core/media/media','javascript.size','Size','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1024,0,'en','core/media/media','javascript.mime_type','Type','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1025,0,'en','core/media/media','javascript.created_at','Uploaded at','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1026,0,'en','core/media/media','javascript.updated_at','Modified at','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1027,0,'en','core/media/media','javascript.nothing_selected','Nothing is selected','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1028,0,'en','core/media/media','javascript.visit_link','Open link','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1029,0,'en','core/media/media','javascript.no_item.all_media.icon','fas fa-cloud-upload-alt','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1030,0,'en','core/media/media','javascript.no_item.all_media.title','Drop files and folders here','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1031,0,'en','core/media/media','javascript.no_item.all_media.message','Or use the upload button above','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1032,0,'en','core/media/media','javascript.no_item.trash.icon','fas fa-trash-alt','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1033,0,'en','core/media/media','javascript.no_item.trash.title','There is nothing in your trash currently','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1034,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','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1035,0,'en','core/media/media','javascript.no_item.favorites.icon','fas fa-star','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1036,0,'en','core/media/media','javascript.no_item.favorites.title','You have not added anything to your favorites yet','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1037,0,'en','core/media/media','javascript.no_item.favorites.message','Add files to favorites to easily find them later','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1038,0,'en','core/media/media','javascript.no_item.recent.icon','far fa-clock','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1039,0,'en','core/media/media','javascript.no_item.recent.title','You did not opened anything yet','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1040,0,'en','core/media/media','javascript.no_item.recent.message','All recent files that you opened will be appeared here','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1041,0,'en','core/media/media','javascript.no_item.default.icon','fas fa-sync','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1042,0,'en','core/media/media','javascript.no_item.default.title','No items','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1043,0,'en','core/media/media','javascript.no_item.default.message','This directory has no item','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1044,0,'en','core/media/media','javascript.clipboard.success','These file links has been copied to clipboard','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1045,0,'en','core/media/media','javascript.message.error_header','Error','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1046,0,'en','core/media/media','javascript.message.success_header','Success','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1047,0,'en','core/media/media','javascript.download.error','No files selected or cannot download these files','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1048,0,'en','core/media/media','javascript.actions_list.basic.preview','Preview','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1049,0,'en','core/media/media','javascript.actions_list.file.copy_link','Copy link','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1050,0,'en','core/media/media','javascript.actions_list.file.rename','Rename','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1051,0,'en','core/media/media','javascript.actions_list.file.make_copy','Make a copy','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1052,0,'en','core/media/media','javascript.actions_list.user.favorite','Add to favorite','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1053,0,'en','core/media/media','javascript.actions_list.user.remove_favorite','Remove favorite','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1054,0,'en','core/media/media','javascript.actions_list.other.download','Download','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1055,0,'en','core/media/media','javascript.actions_list.other.trash','Move to trash','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1056,0,'en','core/media/media','javascript.actions_list.other.delete','Delete permanently','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1057,0,'en','core/media/media','javascript.actions_list.other.restore','Restore','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1058,0,'en','core/media/media','name_invalid','The folder name has invalid character(s).','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1059,0,'en','core/media/media','url_invalid','Please provide a valid URL','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1060,0,'en','core/media/media','path_invalid','Please provide a valid path','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1061,0,'en','core/media/media','download_link','Download','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1062,0,'en','core/media/media','url','URL','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1063,0,'en','core/media/media','download_explain','Enter one URL per line.','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1064,0,'en','core/media/media','downloading','Downloading...','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1065,0,'vi','core/media/media','filter','Lọc','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1066,0,'vi','core/media/media','everything','Tất cả','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1067,0,'vi','core/media/media','image','Hình ảnh','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1068,0,'vi','core/media/media','video','Phim','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1069,0,'vi','core/media/media','document','Tài liệu','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1070,0,'vi','core/media/media','view_in','Chế độ xem','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1071,0,'vi','core/media/media','all_media','Tất cả tập tin','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1072,0,'vi','core/media/media','trash','Thùng rác','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1073,0,'vi','core/media/media','recent','Gần đây','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1074,0,'vi','core/media/media','favorites','Được gắn dấu sao','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1075,0,'vi','core/media/media','upload','Tải lên','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1076,0,'vi','core/media/media','create_folder','Tạo thư mục','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1077,0,'vi','core/media/media','refresh','Làm mới','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1078,0,'vi','core/media/media','empty_trash','Dọn thùng rác','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1079,0,'vi','core/media/media','search_file_and_folder','Tìm kiếm tập tin và thư mục','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1080,0,'vi','core/media/media','sort','Sắp xếp','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1081,0,'vi','core/media/media','file_name_asc','Tên tập tin - ASC','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1082,0,'vi','core/media/media','file_name_desc','Tên tập tin - DESC','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1083,0,'vi','core/media/media','uploaded_date_asc','Ngày tải lên - ASC','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1084,0,'vi','core/media/media','uploaded_date_desc','Ngày tải lên - DESC','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1085,0,'vi','core/media/media','size_asc','Kích thước - ASC','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1086,0,'vi','core/media/media','size_desc','Kích thước - DESC','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1087,0,'vi','core/media/media','actions','Hành động','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1088,0,'vi','core/media/media','nothing_is_selected','Không có tập tin nào được chọn','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1089,0,'vi','core/media/media','insert','Chèn','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1090,0,'vi','core/media/media','folder_name','Tên thư mục','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1091,0,'vi','core/media/media','create','Tạo','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1092,0,'vi','core/media/media','rename','Đổi tên','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1093,0,'vi','core/media/media','close','Đóng','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1094,0,'vi','core/media/media','save_changes','Lưu thay đổi','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1095,0,'vi','core/media/media','move_to_trash','Đưa vào thùng rác','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1096,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?','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1097,0,'vi','core/media/media','confirm','Xác nhận','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1098,0,'vi','core/media/media','confirm_delete','Xóa tập tin','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1099,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?','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1100,0,'vi','core/media/media','empty_trash_title','Dọn sạch thùng rác','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1101,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?','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1102,0,'vi','core/media/media','up_level','Quay lại một cấp','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1103,0,'vi','core/media/media','upload_progress','Tiến trình tải lên','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1104,0,'vi','core/media/media','folder_created','Tạo thư mục thành công!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1105,0,'vi','core/media/media','gallery','Thư viện tập tin','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1106,0,'vi','core/media/media','trash_error','Có lỗi khi xóa tập tin/thư mục','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1107,0,'vi','core/media/media','trash_success','Xóa tập tin/thư mục thành công!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1108,0,'vi','core/media/media','restore_error','Có lỗi trong quá trình khôi phục','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1109,0,'vi','core/media/media','restore_success','Khôi phục thành công!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1110,0,'vi','core/media/media','copy_success','Sao chép thành công!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1111,0,'vi','core/media/media','delete_success','Xóa thành công!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1112,0,'vi','core/media/media','favorite_success','Thêm dấu sao thành công!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1113,0,'vi','core/media/media','remove_favorite_success','Bỏ dấu sao thành công!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1114,0,'vi','core/media/media','rename_error','Có lỗi trong quá trình đổi tên','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1115,0,'vi','core/media/media','rename_success','Đổi tên thành công!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1116,0,'vi','core/media/media','invalid_action','Hành động không hợp lệ!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1117,0,'vi','core/media/media','file_not_exists','Tập tin không tồn tại!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1118,0,'vi','core/media/media','download_file_error','Có lỗi trong quá trình tải xuống tập tin!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1119,0,'vi','core/media/media','missing_zip_archive_extension','Hãy bật ZipArchive extension để tải tập tin!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1120,0,'vi','core/media/media','can_not_download_file','Không thể tải tập tin!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1121,0,'vi','core/media/media','invalid_request','Yêu cầu không hợp lệ!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1122,0,'vi','core/media/media','add_success','Thêm thành công!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1123,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','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1124,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!','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1125,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','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1126,0,'vi','core/media/media','menu_name','Quản lý tập tin','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1127,0,'vi','core/media/media','add','Thêm tập tin','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1128,0,'vi','core/media/media','javascript.name','Tên','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1129,0,'vi','core/media/media','javascript.url','Đường dẫn','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1130,0,'vi','core/media/media','javascript.full_url','Đường dẫn tuyệt đối','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1131,0,'vi','core/media/media','javascript.size','Kích thước','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1132,0,'vi','core/media/media','javascript.mime_type','Loại','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1133,0,'vi','core/media/media','javascript.created_at','Được tải lên lúc','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1134,0,'vi','core/media/media','javascript.updated_at','Được chỉnh sửa lúc','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1135,0,'vi','core/media/media','javascript.nothing_selected','Bạn chưa chọn tập tin nào','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1136,0,'vi','core/media/media','javascript.visit_link','Mở liên kết','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1137,0,'vi','core/media/media','javascript.no_item.all_media.icon','fas fa-cloud-upload-alt','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1138,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','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1139,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','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1140,0,'vi','core/media/media','javascript.no_item.trash.icon','fas fa-trash-alt','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1141,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','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1142,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.','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1143,0,'vi','core/media/media','javascript.no_item.favorites.icon','fas fa-star','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1144,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','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1145,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.','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1146,0,'vi','core/media/media','javascript.no_item.recent.icon','far fa-clock','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1147,0,'vi','core/media/media','javascript.no_item.recent.title','Bạn chưa mở tập tin nào.','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1148,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.','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1149,0,'vi','core/media/media','javascript.no_item.default.icon','fas fa-sync','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1150,0,'vi','core/media/media','javascript.no_item.default.title','Thư mục trống','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1151,0,'vi','core/media/media','javascript.no_item.default.message','Thư mục này chưa có tập tin nào','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1152,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','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1153,0,'vi','core/media/media','javascript.message.error_header','Lỗi','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1154,0,'vi','core/media/media','javascript.message.success_header','Thành công','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1155,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ề','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1156,0,'vi','core/media/media','javascript.actions_list.basic.preview','Xem trước','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1157,0,'vi','core/media/media','javascript.actions_list.file.copy_link','Sao chép đường dẫn','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1158,0,'vi','core/media/media','javascript.actions_list.file.rename','Đổi tên','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1159,0,'vi','core/media/media','javascript.actions_list.file.make_copy','Nhân bản','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1160,0,'vi','core/media/media','javascript.actions_list.user.favorite','Yêu thích','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1161,0,'vi','core/media/media','javascript.actions_list.user.remove_favorite','Xóa khỏi mục yêu thích','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1162,0,'vi','core/media/media','javascript.actions_list.other.download','Tải xuống','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1163,0,'vi','core/media/media','javascript.actions_list.other.trash','Chuyển vào thùng rác','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1164,0,'vi','core/media/media','javascript.actions_list.other.delete','Xóa hoàn toàn','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1165,0,'vi','core/media/media','javascript.actions_list.other.restore','Khôi phục','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1166,0,'vi','core/media/media','empty_trash_success','Dọn sạch thùng rác thành công','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1167,0,'vi','core/media/media','name_invalid','Tên thư mục chứa ký tự không hợp lệ','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1168,0,'en','core/setting/setting','title','Settings','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1169,0,'en','core/setting/setting','email_setting_title','Email settings','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1170,0,'en','core/setting/setting','general.theme','Theme','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1171,0,'en','core/setting/setting','general.description','Setting site information','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1172,0,'en','core/setting/setting','general.title','General','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1173,0,'en','core/setting/setting','general.general_block','General Information','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1174,0,'en','core/setting/setting','general.rich_editor','Rich Editor','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1175,0,'en','core/setting/setting','general.site_title','Site title','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1176,0,'en','core/setting/setting','general.admin_email','Admin Email','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1177,0,'en','core/setting/setting','general.seo_block','SEO Configuration','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1178,0,'en','core/setting/setting','general.seo_title','SEO Title','2022-04-20 19:54:43','2022-04-20 19:55:13'),(1179,0,'en','core/setting/setting','general.seo_description','SEO Description','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1180,0,'en','core/setting/setting','general.webmaster_tools_block','Google Webmaster Tools','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1181,0,'en','core/setting/setting','general.google_site_verification','Google site verification','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1182,0,'en','core/setting/setting','general.placeholder.site_title','Site Title (maximum 120 characters)','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1183,0,'en','core/setting/setting','general.placeholder.admin_email','Admin Email','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1184,0,'en','core/setting/setting','general.placeholder.seo_title','SEO Title (maximum 120 characters)','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1185,0,'en','core/setting/setting','general.placeholder.seo_description','SEO Description (maximum 120 characters)','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1186,0,'en','core/setting/setting','general.placeholder.google_analytics','Google Analytics','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1187,0,'en','core/setting/setting','general.placeholder.google_site_verification','Google Site Verification','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1188,0,'en','core/setting/setting','general.cache_admin_menu','Cache admin menu?','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1189,0,'en','core/setting/setting','general.enable_send_error_reporting_via_email','Enable to send error reporting via email?','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1190,0,'en','core/setting/setting','general.time_zone','Timezone','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1191,0,'en','core/setting/setting','general.default_admin_theme','Default admin theme','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1192,0,'en','core/setting/setting','general.enable_change_admin_theme','Enable change admin theme?','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1193,0,'en','core/setting/setting','general.enable','Enable','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1194,0,'en','core/setting/setting','general.disable','Disable','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1195,0,'en','core/setting/setting','general.enable_cache','Enable cache?','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1196,0,'en','core/setting/setting','general.cache_time','Cache time (minutes)','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1197,0,'en','core/setting/setting','general.cache_time_site_map','Cache Time Site map','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1198,0,'en','core/setting/setting','general.admin_logo','Admin logo','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1199,0,'en','core/setting/setting','general.admin_favicon','Admin favicon','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1200,0,'en','core/setting/setting','general.admin_title','Admin title','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1201,0,'en','core/setting/setting','general.admin_title_placeholder','Title show to tab of browser','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1202,0,'en','core/setting/setting','general.cache_block','Cache','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1203,0,'en','core/setting/setting','general.admin_appearance_title','Admin appearance','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1204,0,'en','core/setting/setting','general.admin_appearance_description','Setting admin appearance such as editor, language...','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1205,0,'en','core/setting/setting','general.seo_block_description','Setting site title, site meta description, site keyword for optimize SEO','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1206,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','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1207,0,'en','core/setting/setting','general.cache_description','Config cache for system for optimize speed','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1208,0,'en','core/setting/setting','general.yes','Yes','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1209,0,'en','core/setting/setting','general.no','No','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1210,0,'en','core/setting/setting','general.show_on_front','Your homepage displays','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1211,0,'en','core/setting/setting','general.select','— Select —','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1212,0,'en','core/setting/setting','general.show_site_name','Show site name after page title, separate with \"-\"?','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1213,0,'en','core/setting/setting','general.locale','Site language','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1214,0,'en','core/setting/setting','general.locale_direction','Front site language direction','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1215,0,'en','core/setting/setting','general.admin_locale_direction','Admin language direction','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1216,0,'en','core/setting/setting','general.admin_login_screen_backgrounds','Login screen backgrounds (~1366x768)','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1217,0,'en','core/setting/setting','email.subject','Subject','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1218,0,'en','core/setting/setting','email.content','Content','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1219,0,'en','core/setting/setting','email.title','Setting for email template','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1220,0,'en','core/setting/setting','email.description','Email template using HTML & system variables.','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1221,0,'en','core/setting/setting','email.reset_to_default','Reset to default','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1222,0,'en','core/setting/setting','email.back','Back to settings','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1223,0,'en','core/setting/setting','email.reset_success','Reset back to default successfully','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1224,0,'en','core/setting/setting','email.confirm_reset','Confirm reset email template?','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1225,0,'en','core/setting/setting','email.confirm_message','Do you really want to reset this email template to default?','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1226,0,'en','core/setting/setting','email.continue','Continue','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1227,0,'en','core/setting/setting','email.sender_name','Sender name','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1228,0,'en','core/setting/setting','email.sender_name_placeholder','Name','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1229,0,'en','core/setting/setting','email.sender_email','Sender email','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1230,0,'en','core/setting/setting','email.mailer','Mailer','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1231,0,'en','core/setting/setting','email.port','Port','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1232,0,'en','core/setting/setting','email.port_placeholder','Ex: 587','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1233,0,'en','core/setting/setting','email.host','Host','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1234,0,'en','core/setting/setting','email.host_placeholder','Ex: smtp.gmail.com','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1235,0,'en','core/setting/setting','email.username','Username','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1236,0,'en','core/setting/setting','email.username_placeholder','Username to login to mail server','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1237,0,'en','core/setting/setting','email.password','Password','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1238,0,'en','core/setting/setting','email.password_placeholder','Password to login to mail server','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1239,0,'en','core/setting/setting','email.encryption','Encryption','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1240,0,'en','core/setting/setting','email.mail_gun_domain','Domain','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1241,0,'en','core/setting/setting','email.mail_gun_domain_placeholder','Domain','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1242,0,'en','core/setting/setting','email.mail_gun_secret','Secret','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1243,0,'en','core/setting/setting','email.mail_gun_secret_placeholder','Secret','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1244,0,'en','core/setting/setting','email.mail_gun_endpoint','Endpoint','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1245,0,'en','core/setting/setting','email.mail_gun_endpoint_placeholder','Endpoint','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1246,0,'en','core/setting/setting','email.log_channel','Log channel','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1247,0,'en','core/setting/setting','email.sendmail_path','Sendmail Path','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1248,0,'en','core/setting/setting','email.encryption_placeholder','Encryption: ssl or tls','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1249,0,'en','core/setting/setting','email.ses_key','Key','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1250,0,'en','core/setting/setting','email.ses_key_placeholder','Key','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1251,0,'en','core/setting/setting','email.ses_secret','Secret','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1252,0,'en','core/setting/setting','email.ses_secret_placeholder','Secret','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1253,0,'en','core/setting/setting','email.ses_region','Region','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1254,0,'en','core/setting/setting','email.ses_region_placeholder','Region','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1255,0,'en','core/setting/setting','email.postmark_token','Token','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1256,0,'en','core/setting/setting','email.postmark_token_placeholder','Token','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1257,0,'en','core/setting/setting','email.template_title','Email templates','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1258,0,'en','core/setting/setting','email.template_description','Base templates for all emails','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1259,0,'en','core/setting/setting','email.template_header','Email template header','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1260,0,'en','core/setting/setting','email.template_header_description','Template for header of emails','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1261,0,'en','core/setting/setting','email.template_footer','Email template footer','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1262,0,'en','core/setting/setting','email.template_footer_description','Template for footer of emails','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1263,0,'en','core/setting/setting','email.default','Default','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1264,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)','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1265,0,'en','core/setting/setting','media.title','Media','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1266,0,'en','core/setting/setting','media.driver','Driver','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1267,0,'en','core/setting/setting','media.description','Settings for media','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1268,0,'en','core/setting/setting','media.aws_access_key_id','AWS Access Key ID','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1269,0,'en','core/setting/setting','media.aws_secret_key','AWS Secret Key','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1270,0,'en','core/setting/setting','media.aws_default_region','AWS Default Region','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1271,0,'en','core/setting/setting','media.aws_bucket','AWS Bucket','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1272,0,'en','core/setting/setting','media.aws_url','AWS URL','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1273,0,'en','core/setting/setting','media.aws_endpoint','AWS Endpoint (Optional)','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1274,0,'en','core/setting/setting','media.do_spaces_access_key_id','DO Spaces Access Key ID','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1275,0,'en','core/setting/setting','media.do_spaces_secret_key','DO Spaces Secret Key','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1276,0,'en','core/setting/setting','media.do_spaces_default_region','DO Spaces Default Region','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1277,0,'en','core/setting/setting','media.do_spaces_bucket','DO Spaces Bucket','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1278,0,'en','core/setting/setting','media.do_spaces_endpoint','DO Spaces Endpoint','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1279,0,'en','core/setting/setting','media.do_spaces_cdn_enabled','Is DO Spaces CDN enabled?','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1280,0,'en','core/setting/setting','media.media_do_spaces_cdn_custom_domain','Do Spaces CDN custom domain','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1281,0,'en','core/setting/setting','media.media_do_spaces_cdn_custom_domain_placeholder','https://your-custom-domain.com','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1282,0,'en','core/setting/setting','media.wasabi_access_key_id','Wasabi Access Key ID','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1283,0,'en','core/setting/setting','media.wasabi_secret_key','Wasabi Secret Key','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1284,0,'en','core/setting/setting','media.wasabi_default_region','Wasabi Default Region','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1285,0,'en','core/setting/setting','media.wasabi_bucket','Wasabi Bucket','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1286,0,'en','core/setting/setting','media.wasabi_root','Wasabi Root','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1287,0,'en','core/setting/setting','media.default_placeholder_image','Default placeholder image','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1288,0,'en','core/setting/setting','media.enable_chunk','Enable chunk size upload?','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1289,0,'en','core/setting/setting','media.chunk_size','Chunk size (Bytes)','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1290,0,'en','core/setting/setting','media.chunk_size_placeholder','Default: 1048576 ~ 1MB','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1291,0,'en','core/setting/setting','media.max_file_size','Chunk max file size (MB)','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1292,0,'en','core/setting/setting','media.max_file_size_placeholder','Default: 1048576 ~ 1GB','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1293,0,'en','core/setting/setting','media.enable_watermark','Enable watermark?','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1294,0,'en','core/setting/setting','media.watermark_source','Watermark image','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1295,0,'en','core/setting/setting','media.watermark_size','Size of watermark (%)','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1296,0,'en','core/setting/setting','media.watermark_size_placeholder','Default: 10 (%)','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1297,0,'en','core/setting/setting','media.watermark_opacity','Watermark Opacity (%)','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1298,0,'en','core/setting/setting','media.watermark_opacity_placeholder','Default: 70 (%)','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1299,0,'en','core/setting/setting','media.watermark_position','Watermark position','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1300,0,'en','core/setting/setting','media.watermark_position_x','Watermark position X','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1301,0,'en','core/setting/setting','media.watermark_position_y','Watermark position Y','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1302,0,'en','core/setting/setting','media.watermark_position_top_left','Top left','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1303,0,'en','core/setting/setting','media.watermark_position_top_right','Top right','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1304,0,'en','core/setting/setting','media.watermark_position_bottom_left','Bottom left','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1305,0,'en','core/setting/setting','media.watermark_position_bottom_right','Bottom right','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1306,0,'en','core/setting/setting','media.watermark_position_center','Center','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1307,0,'en','core/setting/setting','media.turn_off_automatic_url_translation_into_latin','Turn off automatic URL translation into Latin?','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1308,0,'en','core/setting/setting','media.bunnycdn_hostname','Hostname','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1309,0,'en','core/setting/setting','media.bunnycdn_zone','Zone Name (The name of your storage zone)','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1310,0,'en','core/setting/setting','media.bunnycdn_key','FTP & API Access Password (The storage zone API Access Password)','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1311,0,'en','core/setting/setting','media.bunnycdn_region','Region (The storage zone region)','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1312,0,'en','core/setting/setting','media.optional','Optional','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1313,0,'en','core/setting/setting','license.purchase_code','Purchase code','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1314,0,'en','core/setting/setting','license.buyer','Buyer','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1315,0,'en','core/setting/setting','field_type_not_exists','This field type does not exist','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1316,0,'en','core/setting/setting','save_settings','Save settings','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1317,0,'en','core/setting/setting','template','Template','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1318,0,'en','core/setting/setting','description','Description','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1319,0,'en','core/setting/setting','enable','Enable','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1320,0,'en','core/setting/setting','send','Send','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1321,0,'en','core/setting/setting','test_email_description','To send test email, please make sure you are updated configuration to send mail!','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1322,0,'en','core/setting/setting','test_email_input_placeholder','Enter the email which you want to send test email.','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1323,0,'en','core/setting/setting','test_email_modal_title','Send a test email','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1324,0,'en','core/setting/setting','test_send_mail','Send test mail','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1325,0,'en','core/setting/setting','test_email_send_success','Send email successfully!','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1326,0,'en','core/setting/setting','locale_direction_ltr','Left to Right','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1327,0,'en','core/setting/setting','locale_direction_rtl','Right to Left','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1328,0,'en','core/setting/setting','saving','Saving...','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1329,0,'en','core/setting/setting','emails_warning','You can add up to :count emails','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1330,0,'en','core/setting/setting','email_add_more','Add more','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1331,0,'vi','core/setting/setting','title','Cài đặt','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1332,0,'vi','core/setting/setting','general.theme','Giao diện','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1333,0,'vi','core/setting/setting','general.description','Cấu hình những thông tin cài đặt website.','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1334,0,'vi','core/setting/setting','general.title','Thông tin chung','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1335,0,'vi','core/setting/setting','general.general_block','Thông tin chung','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1336,0,'vi','core/setting/setting','general.site_title','Tên trang','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1337,0,'vi','core/setting/setting','general.admin_email','Email quản trị viên','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1338,0,'vi','core/setting/setting','general.seo_block','Cấu hình SEO','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1339,0,'vi','core/setting/setting','general.seo_title','Tiêu đề SEO','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1340,0,'vi','core/setting/setting','general.seo_description','Mô tả SEO','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1341,0,'vi','core/setting/setting','general.webmaster_tools_block','Google Webmaster Tools','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1342,0,'vi','core/setting/setting','general.google_site_verification','Google site verification','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1343,0,'vi','core/setting/setting','general.placeholder.site_title','Tên trang (tối đa 120 kí tự)','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1344,0,'vi','core/setting/setting','general.placeholder.admin_email','Admin Email','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1345,0,'vi','core/setting/setting','general.placeholder.google_analytics','Ví dụ: UA-42767940-2','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1346,0,'vi','core/setting/setting','general.placeholder.google_site_verification','Mã xác nhận trang web dùng cho Google Webmaster Tool','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1347,0,'vi','core/setting/setting','general.placeholder.seo_title','Tiêu đề SEO (tối đa 120 kí tự)','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1348,0,'vi','core/setting/setting','general.placeholder.seo_description','Mô tả SEO (tối đa 120 kí tự)','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1349,0,'vi','core/setting/setting','general.enable_change_admin_theme','Cho phép thay đổi giao diện quản trị?','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1350,0,'vi','core/setting/setting','general.enable','Bật','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1351,0,'vi','core/setting/setting','general.disable','Tắt','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1352,0,'vi','core/setting/setting','general.enable_cache','Bật bộ nhớ đệm?','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1353,0,'vi','core/setting/setting','general.cache_time','Thời gian lưu bộ nhớ đệm (phút)','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1354,0,'vi','core/setting/setting','general.cache_time_site_map','Thời gian lưu sơ đồ trang trong bộ nhớ đệm','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1355,0,'vi','core/setting/setting','general.admin_logo','Logo trang quản trị','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1356,0,'vi','core/setting/setting','general.admin_title','Tiêu đề trang quản trị','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1357,0,'vi','core/setting/setting','general.admin_title_placeholder','Tiêu đề hiển thị trên thẻ trình duyệt','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1358,0,'vi','core/setting/setting','general.rich_editor','Bộ soạn thảo văn bản','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1359,0,'vi','core/setting/setting','general.cache_block','Bộ nhớ đệm','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1360,0,'vi','core/setting/setting','general.yes','Bật','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1361,0,'vi','core/setting/setting','general.no','Tắt','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1362,0,'vi','core/setting/setting','email.subject','Tiêu đề','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1363,0,'vi','core/setting/setting','email.content','Nội dung','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1364,0,'vi','core/setting/setting','email.title','Cấu hình email template','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1365,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.','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1366,0,'vi','core/setting/setting','email.reset_to_default','Khôi phục về mặc định','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1367,0,'vi','core/setting/setting','email.back','Trở lại trang cài đặt','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1368,0,'vi','core/setting/setting','email.reset_success','Khôi phục mặc định thành công','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1369,0,'vi','core/setting/setting','email.confirm_reset','Xác nhận khôi phục mặc định?','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1370,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?','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1371,0,'vi','core/setting/setting','email.continue','Tiếp tục','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1372,0,'vi','core/setting/setting','email.sender_name','Tên người gửi','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1373,0,'vi','core/setting/setting','email.sender_name_placeholder','Tên','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1374,0,'vi','core/setting/setting','email.sender_email','Email của người gửi','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1375,0,'vi','core/setting/setting','email.port','Cổng','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1376,0,'vi','core/setting/setting','email.port_placeholder','Ví dụ: 587','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1377,0,'vi','core/setting/setting','email.host','Máy chủ','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1378,0,'vi','core/setting/setting','email.host_placeholder','Ví dụ: smtp.gmail.com','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1379,0,'vi','core/setting/setting','email.username','Tên đăng nhập','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1380,0,'vi','core/setting/setting','email.username_placeholder','Tên đăng nhập vào máy chủ mail','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1381,0,'vi','core/setting/setting','email.password','Mật khẩu','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1382,0,'vi','core/setting/setting','email.password_placeholder','Mật khẩu đăng nhập vào máy chủ mail','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1383,0,'vi','core/setting/setting','email.encryption','Mã hoá','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1384,0,'vi','core/setting/setting','email.mail_gun_domain','Tên miền','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1385,0,'vi','core/setting/setting','email.mail_gun_domain_placeholder','Tên miền','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1386,0,'vi','core/setting/setting','email.mail_gun_secret','Chuỗi bí mật','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1387,0,'vi','core/setting/setting','email.mail_gun_secret_placeholder','Chuỗi bí mật','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1388,0,'vi','core/setting/setting','email.template_title','Mẫu giao diện email','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1389,0,'vi','core/setting/setting','email.template_description','Giao diện mặc định cho tất cả email','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1390,0,'vi','core/setting/setting','email.template_header','Mẫu cho phần trên của email','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1391,0,'vi','core/setting/setting','email.template_header_description','Phần trên của tất cả email','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1392,0,'vi','core/setting/setting','email.template_footer','Mẫu cho phần dưới của email','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1393,0,'vi','core/setting/setting','email.template_footer_description','Phần dưới của tất cả email','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1394,0,'vi','core/setting/setting','save_settings','Lưu cài đặt','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1395,0,'vi','core/setting/setting','template','Mẫu','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1396,0,'vi','core/setting/setting','description','Mô tả','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1397,0,'vi','core/setting/setting','enable','Bật','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1398,0,'vi','core/setting/setting','test_send_mail','Gửi thử nghiệm','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1399,0,'en','core/table/general','operations','Operations','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1400,0,'en','core/table/general','loading_data','Loading data from server','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1401,0,'en','core/table/general','display','Display','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1402,0,'en','core/table/general','all','All','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1403,0,'en','core/table/general','edit_entry','Edit','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1404,0,'en','core/table/general','delete_entry','Delete','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1405,0,'en','core/table/general','show_from','Showing from','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1406,0,'en','core/table/general','to','to','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1407,0,'en','core/table/general','in','in','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1408,0,'en','core/table/general','records','records','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1409,0,'en','core/table/general','no_data','No data to display','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1410,0,'en','core/table/general','no_record','No record','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1411,0,'en','core/table/general','loading','Loading data from server','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1412,0,'en','core/table/general','confirm_delete','Confirm delete','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1413,0,'en','core/table/general','confirm_delete_msg','Do you really want to delete this record?','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1414,0,'en','core/table/general','cancel','Cancel','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1415,0,'en','core/table/general','delete','Delete','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1416,0,'en','core/table/general','close','Close','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1417,0,'en','core/table/general','contains','Contains','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1418,0,'en','core/table/general','is_equal_to','Is equal to','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1419,0,'en','core/table/general','greater_than','Greater than','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1420,0,'en','core/table/general','less_than','Less than','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1421,0,'en','core/table/general','value','Value','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1422,0,'en','core/table/general','select_field','Select field','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1423,0,'en','core/table/general','reset','Reset','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1424,0,'en','core/table/general','add_additional_filter','Add additional filter','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1425,0,'en','core/table/general','apply','Apply','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1426,0,'en','core/table/general','filters','Filters','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1427,0,'en','core/table/general','bulk_change','Bulk changes','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1428,0,'en','core/table/general','select_option','Select option','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1429,0,'en','core/table/general','bulk_actions','Bulk Actions','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1430,0,'en','core/table/general','save_bulk_change_success','Update data for selected record(s) successfully!','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1431,0,'en','core/table/general','please_select_record','Please select at least one record to perform this action!','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1432,0,'en','core/table/general','filtered','(filtered from _MAX_ total records)','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1433,0,'en','core/table/general','search','Search...','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1434,0,'en','core/table/table','operations','Operations','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1435,0,'en','core/table/table','loading_data','Loading data from server','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1436,0,'en','core/table/table','display','Display','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1437,0,'en','core/table/table','all','All','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1438,0,'en','core/table/table','edit_entry','Edit','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1439,0,'en','core/table/table','delete_entry','Delete','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1440,0,'en','core/table/table','show_from','Showing from','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1441,0,'en','core/table/table','to','to','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1442,0,'en','core/table/table','in','in','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1443,0,'en','core/table/table','records','records','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1444,0,'en','core/table/table','no_data','No data to display','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1445,0,'en','core/table/table','no_record','No record','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1446,0,'en','core/table/table','loading','Loading data from server','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1447,0,'en','core/table/table','confirm_delete','Confirm delete','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1448,0,'en','core/table/table','confirm_delete_msg','Do you really want to delete this record?','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1449,0,'en','core/table/table','cancel','Cancel','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1450,0,'en','core/table/table','delete','Delete','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1451,0,'en','core/table/table','close','Close','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1452,0,'en','core/table/table','contains','Contains','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1453,0,'en','core/table/table','is_equal_to','Is equal to','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1454,0,'en','core/table/table','greater_than','Greater than','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1455,0,'en','core/table/table','less_than','Less than','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1456,0,'en','core/table/table','value','Value','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1457,0,'en','core/table/table','select_field','Select field','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1458,0,'en','core/table/table','reset','Reset','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1459,0,'en','core/table/table','add_additional_filter','Add additional filter','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1460,0,'en','core/table/table','apply','Apply','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1461,0,'en','core/table/table','filters','Filters','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1462,0,'en','core/table/table','bulk_change','Bulk changes','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1463,0,'en','core/table/table','select_option','Select option','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1464,0,'en','core/table/table','bulk_actions','Bulk Actions','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1465,0,'en','core/table/table','save_bulk_change_success','Update data for selected record(s) successfully!','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1466,0,'en','core/table/table','please_select_record','Please select at least one record to perform this action!','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1467,0,'en','core/table/table','filtered','(filtered from _MAX_ total records)','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1468,0,'en','core/table/table','search','Search...','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1469,0,'vi','core/table/general','operations','Hành động','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1470,0,'vi','core/table/general','loading_data','Đang tải dữ liệu từ hệ thống','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1471,0,'vi','core/table/general','display','Hiển thị','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1472,0,'vi','core/table/general','all','Tất cả','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1473,0,'vi','core/table/general','edit_entry','Sửa','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1474,0,'vi','core/table/general','delete_entry','Xoá','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1475,0,'vi','core/table/general','show_from','Hiển thị từ','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1476,0,'vi','core/table/general','to','đến','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1477,0,'vi','core/table/general','in','trong tổng số','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1478,0,'vi','core/table/general','records','bản ghi','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1479,0,'vi','core/table/general','no_data','Không có dữ liệu để hiển thị','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1480,0,'vi','core/table/general','no_record','không có bản ghi nào','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1481,0,'vi','core/table/general','loading','Đang tải dữ liệu từ hệ thống','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1482,0,'vi','core/table/general','confirm_delete','Xác nhận xoá','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1483,0,'vi','core/table/general','confirm_delete_msg','Bạn có chắc chắn muốn xoá bản ghi này?','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1484,0,'vi','core/table/general','cancel','Huỷ bỏ','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1485,0,'vi','core/table/general','delete','Xoá','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1486,0,'vi','core/table/general','close','Đóng','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1487,0,'vi','core/table/general','is_equal_to','Bằng với','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1488,0,'vi','core/table/general','greater_than','Lớn hơn','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1489,0,'vi','core/table/general','less_than','Nhỏ hơn','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1490,0,'vi','core/table/general','value','Giá trị','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1491,0,'vi','core/table/general','select_field','Chọn trường','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1492,0,'vi','core/table/general','reset','Làm mới','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1493,0,'vi','core/table/general','add_additional_filter','Thêm bộ lọc','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1494,0,'vi','core/table/general','apply','Áp dụng','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1495,0,'vi','core/table/general','select_option','Lựa chọn','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1496,0,'vi','core/table/general','filters','Lọc dữ liệu','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1497,0,'vi','core/table/general','bulk_change','Thay đổi hàng loạt','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1498,0,'vi','core/table/general','bulk_actions','Hành động','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1499,0,'vi','core/table/general','contains','Bao gồm','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1500,0,'vi','core/table/general','filtered','(đã được lọc từ _MAX_ bản ghi)','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1501,0,'en','packages/menu/menu','name','Menus','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1502,0,'en','packages/menu/menu','key_name','Menu name (key: :key)','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1503,0,'en','packages/menu/menu','basic_info','Basic information','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1504,0,'en','packages/menu/menu','add_to_menu','Add to menu','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1505,0,'en','packages/menu/menu','custom_link','Custom link','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1506,0,'en','packages/menu/menu','add_link','Add link','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1507,0,'en','packages/menu/menu','structure','Menu structure','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1508,0,'en','packages/menu/menu','remove','Remove','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1509,0,'en','packages/menu/menu','cancel','Cancel','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1510,0,'en','packages/menu/menu','title','Title','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1511,0,'en','packages/menu/menu','icon','Icon','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1512,0,'en','packages/menu/menu','url','URL','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1513,0,'en','packages/menu/menu','target','Target','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1514,0,'en','packages/menu/menu','css_class','CSS class','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1515,0,'en','packages/menu/menu','self_open_link','Open link directly','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1516,0,'en','packages/menu/menu','blank_open_link','Open link in new tab','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1517,0,'en','packages/menu/menu','create','Create menu','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1518,0,'en','packages/menu/menu','edit','Edit menu','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1519,0,'en','packages/menu/menu','menu_settings','Menu settings','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1520,0,'en','packages/menu/menu','display_location','Display location','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1521,0,'vi','packages/menu/menu','name','Menu','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1522,0,'vi','packages/menu/menu','cancel','Hủy bỏ','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1523,0,'vi','packages/menu/menu','add_link','Thêm liên kết','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1524,0,'vi','packages/menu/menu','add_to_menu','Thêm vào trình đơn','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1525,0,'vi','packages/menu/menu','basic_info','Thông tin cơ bản','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1526,0,'vi','packages/menu/menu','blank_open_link','Mở liên kết trong tab mới','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1527,0,'vi','packages/menu/menu','css_class','CSS class','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1528,0,'vi','packages/menu/menu','custom_link','Liên kết tùy chọn','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1529,0,'vi','packages/menu/menu','icon','Biểu tượng','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1530,0,'vi','packages/menu/menu','key_name','Tên menu (key::key)','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1531,0,'vi','packages/menu/menu','remove','Xóa','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1532,0,'vi','packages/menu/menu','self_open_link','Mở liên kết trong tab hiện tại','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1533,0,'vi','packages/menu/menu','structure','Cấu trúc trình đơn','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1534,0,'vi','packages/menu/menu','target','Target','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1535,0,'vi','packages/menu/menu','title','Tiêu đề','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1536,0,'vi','packages/menu/menu','url','URL','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1537,0,'vi','packages/menu/menu','create','Tạo trình đơn','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1538,0,'vi','packages/menu/menu','edit','Sửa trình đơn','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1539,0,'en','packages/page/pages','create','Create new page','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1540,0,'en','packages/page/pages','edit','Edit page','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1541,0,'en','packages/page/pages','form.name','Name','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1542,0,'en','packages/page/pages','form.name_placeholder','Page\'s name (Maximum 120 characters)','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1543,0,'en','packages/page/pages','form.content','Content','2022-04-20 19:54:44','2022-04-20 19:55:13'),(1544,0,'en','packages/page/pages','form.note','Note content','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1545,0,'en','packages/page/pages','notices.no_select','Please select at least one record to take this action!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1546,0,'en','packages/page/pages','notices.update_success_message','Update successfully','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1547,0,'en','packages/page/pages','cannot_delete','Page could not be deleted','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1548,0,'en','packages/page/pages','deleted','Page deleted','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1549,0,'en','packages/page/pages','pages','Pages','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1550,0,'en','packages/page/pages','menu','Pages','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1551,0,'en','packages/page/pages','menu_name','Pages','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1552,0,'en','packages/page/pages','edit_this_page','Edit this page','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1553,0,'en','packages/page/pages','total_pages','Total pages','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1554,0,'en','packages/page/pages','settings.show_on_front','Your homepage displays','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1555,0,'en','packages/page/pages','settings.select','— Select —','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1556,0,'en','packages/page/pages','front_page','Front Page','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1557,0,'vi','packages/page/pages','create','Thêm trang','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1558,0,'vi','packages/page/pages','edit','Sửa trang','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1559,0,'vi','packages/page/pages','form.name','Tiêu đề trang','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1560,0,'vi','packages/page/pages','form.note','Nội dung ghi chú','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1561,0,'vi','packages/page/pages','form.name_placeholder','Tên trang (tối đa 120 kí tự)','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1562,0,'vi','packages/page/pages','form.content','Nội dung','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1563,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!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1564,0,'vi','packages/page/pages','notices.update_success_message','Cập nhật thành công','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1565,0,'vi','packages/page/pages','deleted','Xóa trang thành công','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1566,0,'vi','packages/page/pages','cannot_delete','Không thể xóa trang','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1567,0,'vi','packages/page/pages','menu','Trang','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1568,0,'vi','packages/page/pages','menu_name','Trang','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1569,0,'vi','packages/page/pages','edit_this_page','Sửa trang này','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1570,0,'vi','packages/page/pages','pages','Trang','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1571,0,'en','packages/plugin-management/plugin','enabled','Enabled','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1572,0,'en','packages/plugin-management/plugin','deactivated','Deactivated','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1573,0,'en','packages/plugin-management/plugin','activated','Activated','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1574,0,'en','packages/plugin-management/plugin','activate','Activate','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1575,0,'en','packages/plugin-management/plugin','deactivate','Deactivate','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1576,0,'en','packages/plugin-management/plugin','author','By','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1577,0,'en','packages/plugin-management/plugin','update_plugin_status_success','Update plugin successfully','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1578,0,'en','packages/plugin-management/plugin','plugins','Plugins','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1579,0,'en','packages/plugin-management/plugin','missing_required_plugins','Please activate plugin(s): :plugins before activate this plugin!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1580,0,'en','packages/plugin-management/plugin','remove','Remove','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1581,0,'en','packages/plugin-management/plugin','remove_plugin_success','Remove plugin successfully!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1582,0,'en','packages/plugin-management/plugin','remove_plugin','Remove plugin','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1583,0,'en','packages/plugin-management/plugin','remove_plugin_confirm_message','Do you really want to remove this plugin?','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1584,0,'en','packages/plugin-management/plugin','remove_plugin_confirm_yes','Yes, remove it!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1585,0,'en','packages/plugin-management/plugin','total_plugins','Total plugins','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1586,0,'en','packages/plugin-management/plugin','invalid_plugin','This plugin is not a valid plugin, please check it again!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1587,0,'en','packages/plugin-management/plugin','version','Version','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1588,0,'en','packages/plugin-management/plugin','invalid_json','Invalid plugin.json!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1589,0,'en','packages/plugin-management/plugin','activate_success','Activate plugin successfully!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1590,0,'en','packages/plugin-management/plugin','activated_already','This plugin is activated already!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1591,0,'en','packages/plugin-management/plugin','plugin_not_exist','This plugin is not exists.','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1592,0,'en','packages/plugin-management/plugin','missing_json_file','Missing file plugin.json!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1593,0,'en','packages/plugin-management/plugin','plugin_invalid','Plugin is valid!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1594,0,'en','packages/plugin-management/plugin','published_assets_success','Publish assets for plugin :name successfully!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1595,0,'en','packages/plugin-management/plugin','plugin_removed','Plugin has been removed!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1596,0,'en','packages/plugin-management/plugin','deactivated_success','Deactivate plugin successfully!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1597,0,'en','packages/plugin-management/plugin','deactivated_already','This plugin is deactivated already!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1598,0,'en','packages/plugin-management/plugin','folder_is_not_writeable','Cannot write files! Folder :name is not writable. Please chmod to make it writable!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1599,0,'en','packages/plugin-management/plugin','plugin_is_not_ready','Plugin :name is not ready to use','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1600,0,'vi','packages/plugin-management/plugin','activate','Kích hoạt','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1601,0,'vi','packages/plugin-management/plugin','author','Tác giả','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1602,0,'vi','packages/plugin-management/plugin','version','Phiên bản','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1603,0,'vi','packages/plugin-management/plugin','activated','Đã kích hoạt','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1604,0,'vi','packages/plugin-management/plugin','deactivate','Hủy kích hoạt','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1605,0,'vi','packages/plugin-management/plugin','deactivated','Đã vô hiệu','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1606,0,'vi','packages/plugin-management/plugin','enabled','Kích hoạt','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1607,0,'vi','packages/plugin-management/plugin','invalid_plugin','Gói mở rộng không hợp lệ','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1608,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','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1609,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','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1610,0,'vi','packages/plugin-management/plugin','plugins','Tiện ích mở rộng','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1611,0,'en','packages/seo-helper/seo-helper','meta_box_header','Search Engine Optimize','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1612,0,'en','packages/seo-helper/seo-helper','edit_seo_meta','Edit SEO meta','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1613,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','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1614,0,'en','packages/seo-helper/seo-helper','seo_title','SEO Title','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1615,0,'en','packages/seo-helper/seo-helper','seo_description','SEO description','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1616,0,'vi','packages/seo-helper/seo-helper','meta_box_header','Tối ưu hoá bộ máy tìm kiếm (SEO)','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1617,0,'vi','packages/seo-helper/seo-helper','edit_seo_meta','Chỉnh sửa SEO','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1618,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.','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1619,0,'vi','packages/seo-helper/seo-helper','seo_title','Tiêu đề trang','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1620,0,'vi','packages/seo-helper/seo-helper','seo_description','Mô tả trang','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1621,0,'en','packages/slug/slug','permalink_settings','Permalink','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1622,0,'en','packages/slug/slug','settings.title','Permalink settings','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1623,0,'en','packages/slug/slug','settings.description','Manage permalink for all modules.','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1624,0,'en','packages/slug/slug','settings.preview','Preview','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1625,0,'en','packages/slug/slug','settings.turn_off_automatic_url_translation_into_latin','Turn off automatic URL translation into Latin?','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1626,0,'en','packages/slug/slug','preview','Preview','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1627,0,'en','packages/slug/slug','prefix_for','Prefix for :name','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1628,0,'en','packages/theme/theme','name','Themes','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1629,0,'en','packages/theme/theme','theme','Theme','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1630,0,'en','packages/theme/theme','author','Author','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1631,0,'en','packages/theme/theme','version','Version','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1632,0,'en','packages/theme/theme','description','Description','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1633,0,'en','packages/theme/theme','active_success','Activate theme :name successfully!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1634,0,'en','packages/theme/theme','active','Active','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1635,0,'en','packages/theme/theme','activated','Activated','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1636,0,'en','packages/theme/theme','appearance','Appearance','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1637,0,'en','packages/theme/theme','theme_options','Theme options','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1638,0,'en','packages/theme/theme','save_changes','Save Changes','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1639,0,'en','packages/theme/theme','developer_mode','Developer Mode Enabled','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1640,0,'en','packages/theme/theme','custom_css','Custom CSS','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1641,0,'en','packages/theme/theme','custom_js','Custom JS','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1642,0,'en','packages/theme/theme','custom_header_js','Header JS','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1643,0,'en','packages/theme/theme','custom_header_js_placeholder','JS in header of page, wrap it inside &#x3C;script&#x3E;&#x3C;/script&#x3E;','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1644,0,'en','packages/theme/theme','custom_body_js','Body JS','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1645,0,'en','packages/theme/theme','custom_body_js_placeholder','JS in body of page, wrap it inside &#x3C;script&#x3E;&#x3C;/script&#x3E;','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1646,0,'en','packages/theme/theme','custom_footer_js','Footer JS','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1647,0,'en','packages/theme/theme','custom_footer_js_placeholder','JS in footer of page, wrap it inside &#x3C;script&#x3E;&#x3C;/script&#x3E;','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1648,0,'en','packages/theme/theme','remove_theme_success','Remove theme successfully!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1649,0,'en','packages/theme/theme','theme_is_not_existed','This theme is not existed!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1650,0,'en','packages/theme/theme','remove','Remove','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1651,0,'en','packages/theme/theme','remove_theme','Remove theme','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1652,0,'en','packages/theme/theme','remove_theme_confirm_message','Do you really want to remove this theme?','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1653,0,'en','packages/theme/theme','remove_theme_confirm_yes','Yes, remove it!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1654,0,'en','packages/theme/theme','total_themes','Total themes','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1655,0,'en','packages/theme/theme','show_admin_bar','Show admin bar (When admin logged in, still show admin bar in website)?','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1656,0,'en','packages/theme/theme','settings.title','Theme','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1657,0,'en','packages/theme/theme','settings.description','Setting for theme','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1658,0,'en','packages/theme/theme','settings.redirect_404_to_homepage','Redirect all not found requests to homepage?','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1659,0,'en','packages/theme/theme','add_new','Add new','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1660,0,'en','packages/theme/theme','theme_activated_already','Theme \":name\" is activated already!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1661,0,'en','packages/theme/theme','missing_json_file','Missing file theme.json!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1662,0,'en','packages/theme/theme','theme_invalid','Theme is valid!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1663,0,'en','packages/theme/theme','published_assets_success','Publish assets for :themes successfully!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1664,0,'en','packages/theme/theme','cannot_remove_theme','Cannot remove activated theme, please activate another theme before removing \":name\"!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1665,0,'en','packages/theme/theme','theme_deleted','Theme \":name\" has been destroyed.','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1666,0,'en','packages/theme/theme','removed_assets','Remove assets of a theme :name successfully!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1667,0,'en','packages/theme/theme','update_custom_css_success','Update custom CSS successfully!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1668,0,'en','packages/theme/theme','update_custom_js_success','Update custom JS successfully!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1669,0,'en','packages/theme/theme','go_to_dashboard','Go to dashboard','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1670,0,'en','packages/theme/theme','custom_css_placeholder','Using Ctrl + Space to autocomplete.','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1671,0,'en','packages/theme/theme','theme_option_general','General','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1672,0,'en','packages/theme/theme','theme_option_general_description','General settings','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1673,0,'en','packages/theme/theme','theme_option_seo_open_graph_image','SEO default Open Graph image','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1674,0,'en','packages/theme/theme','theme_option_logo','Logo','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1675,0,'en','packages/theme/theme','theme_option_favicon','Favicon','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1676,0,'en','packages/theme/theme','folder_is_not_writeable','Cannot write files! Folder :name is not writable. Please chmod to make it writable!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1677,0,'vi','packages/theme/theme','activated','Đã kích hoạt','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1678,0,'vi','packages/theme/theme','active','Kích hoạt','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1679,0,'vi','packages/theme/theme','active_success','Kích hoạt giao diện thành công!','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1680,0,'vi','packages/theme/theme','author','Tác giả','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1681,0,'vi','packages/theme/theme','description','Mô tả','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1682,0,'vi','packages/theme/theme','theme','Giao diện','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1683,0,'vi','packages/theme/theme','theme_options','Tuỳ chọn giao diện','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1684,0,'vi','packages/theme/theme','version','Phiên bản','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1685,0,'vi','packages/theme/theme','save_changes','Lưu thay đổi','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1686,0,'vi','packages/theme/theme','developer_mode','Đang kích hoạt chế độ thử nghiệm','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1687,0,'vi','packages/theme/theme','custom_css','Tuỳ chỉnh CSS','2022-04-20 19:54:45','2022-04-20 19:55:13'),(1688,0,'en','packages/widget/global','name','Widgets','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1689,0,'en','packages/widget/global','create','New widget','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1690,0,'en','packages/widget/global','edit','Edit widget','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1691,0,'en','packages/widget/global','delete','Delete','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1692,0,'en','packages/widget/global','available','Available Widgets','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1693,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.','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1694,0,'en','packages/widget/global','number_tag_display','Number tags will be display','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1695,0,'en','packages/widget/global','number_post_display','Number posts will be display','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1696,0,'en','packages/widget/global','select_menu','Select Menu','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1697,0,'en','packages/widget/global','widget_text','Text','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1698,0,'en','packages/widget/global','widget_text_description','Arbitrary text or HTML.','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1699,0,'en','packages/widget/global','widget_recent_post','Recent Posts','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1700,0,'en','packages/widget/global','widget_recent_post_description','Recent posts widget.','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1701,0,'en','packages/widget/global','widget_custom_menu','Custom Menu','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1702,0,'en','packages/widget/global','widget_custom_menu_description','Add a custom menu to your widget area.','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1703,0,'en','packages/widget/global','widget_tag','Tags','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1704,0,'en','packages/widget/global','widget_tag_description','Popular tags','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1705,0,'en','packages/widget/global','save_success','Save widget successfully!','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1706,0,'en','packages/widget/global','delete_success','Delete widget successfully!','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1707,0,'en','packages/widget/widget','name','Widgets','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1708,0,'en','packages/widget/widget','create','New widget','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1709,0,'en','packages/widget/widget','edit','Edit widget','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1710,0,'en','packages/widget/widget','delete','Delete','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1711,0,'en','packages/widget/widget','available','Available Widgets','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1712,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.','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1713,0,'en','packages/widget/widget','number_tag_display','Number tags will be display','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1714,0,'en','packages/widget/widget','number_post_display','Number posts will be display','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1715,0,'en','packages/widget/widget','select_menu','Select Menu','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1716,0,'en','packages/widget/widget','widget_text','Text','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1717,0,'en','packages/widget/widget','widget_text_description','Arbitrary text or HTML.','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1718,0,'en','packages/widget/widget','widget_recent_post','Recent Posts','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1719,0,'en','packages/widget/widget','widget_recent_post_description','Recent posts widget.','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1720,0,'en','packages/widget/widget','widget_custom_menu','Custom Menu','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1721,0,'en','packages/widget/widget','widget_custom_menu_description','Add a custom menu to your widget area.','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1722,0,'en','packages/widget/widget','widget_tag','Tags','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1723,0,'en','packages/widget/widget','widget_tag_description','Popular tags','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1724,0,'en','packages/widget/widget','save_success','Save widget successfully!','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1725,0,'en','packages/widget/widget','delete_success','Delete widget successfully!','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1726,0,'en','packages/widget/widget','primary_sidebar_name','Primary sidebar','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1727,0,'en','packages/widget/widget','primary_sidebar_description','Primary sidebar section','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1728,0,'vi','packages/widget/global','name','Widgets','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1729,0,'vi','packages/widget/global','create','New widget','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1730,0,'vi','packages/widget/global','edit','Edit widget','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1731,0,'vi','packages/widget/global','available','Tiện ích có sẵn','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1732,0,'vi','packages/widget/global','delete','Xóa','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1733,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.','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1734,0,'vi','packages/widget/global','number_post_display','Số bài viết sẽ hiển thị','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1735,0,'vi','packages/widget/global','number_tag_display','Số thẻ sẽ hiển thị','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1736,0,'vi','packages/widget/global','select_menu','Lựa chọn trình đơn','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1737,0,'vi','packages/widget/global','widget_custom_menu','Menu tùy chỉnh','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1738,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','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1739,0,'vi','packages/widget/global','widget_recent_post','Bài viết gần đây','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1740,0,'vi','packages/widget/global','widget_recent_post_description','Tiện ích bài viết gần đây','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1741,0,'vi','packages/widget/global','widget_tag','Thẻ','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1742,0,'vi','packages/widget/global','widget_tag_description','Thẻ phổ biến, sử dụng nhiều','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1743,0,'vi','packages/widget/global','widget_text','Văn bản','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1744,0,'vi','packages/widget/global','widget_text_description','Văn bản tùy ý hoặc HTML.','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1745,0,'vi','packages/widget/global','delete_success','Xoá tiện ích thành công','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1746,0,'vi','packages/widget/global','save_success','Lưu tiện ích thành công!','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1747,0,'en','plugins/analytics/analytics','sessions','Sessions','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1748,0,'en','plugins/analytics/analytics','visitors','Visitors','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1749,0,'en','plugins/analytics/analytics','pageviews','Pageviews','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1750,0,'en','plugins/analytics/analytics','bounce_rate','Bounce Rate','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1751,0,'en','plugins/analytics/analytics','page_session','Pages/Session','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1752,0,'en','plugins/analytics/analytics','avg_duration','Avg. Duration','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1753,0,'en','plugins/analytics/analytics','percent_new_session','Percent new session','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1754,0,'en','plugins/analytics/analytics','new_users','New visitors','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1755,0,'en','plugins/analytics/analytics','visits','visits','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1756,0,'en','plugins/analytics/analytics','views','views','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1757,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/master/plugin-analytics\" target=\"_blank\">https://docs.botble.com/cms/master/plugin-analytics</a>','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1758,0,'en','plugins/analytics/analytics','credential_is_not_valid','Analytics credentials is not valid. The document here: <a href=\"https://docs.botble.com/cms/master/plugin-analytics\" target=\"_blank\">https://docs.botble.com/cms/master/plugin-analytics</a>','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1759,0,'en','plugins/analytics/analytics','start_date_can_not_before_end_date','Start date :start_date cannot be after end date :end_date','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1760,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/master/plugin-analytics\" target=\"_blank\">https://docs.botble.com/cms/master/plugin-analytics</a>','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1761,0,'en','plugins/analytics/analytics','settings.title','Google Analytics','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1762,0,'en','plugins/analytics/analytics','settings.description','Config Credentials for Google Analytics','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1763,0,'en','plugins/analytics/analytics','settings.tracking_code','Tracking ID','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1764,0,'en','plugins/analytics/analytics','settings.tracking_code_placeholder','Example: GA-12586526-8','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1765,0,'en','plugins/analytics/analytics','settings.view_id','View ID','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1766,0,'en','plugins/analytics/analytics','settings.view_id_description','Google Analytics View ID','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1767,0,'en','plugins/analytics/analytics','settings.json_credential','Service Account Credentials','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1768,0,'en','plugins/analytics/analytics','settings.json_credential_description','Service Account Credentials','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1769,0,'en','plugins/analytics/analytics','widget_analytics_page','Top Most Visit Pages','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1770,0,'en','plugins/analytics/analytics','widget_analytics_browser','Top Browsers','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1771,0,'en','plugins/analytics/analytics','widget_analytics_referrer','Top Referrers','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1772,0,'en','plugins/analytics/analytics','widget_analytics_general','Site Analytics','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1773,0,'vi','plugins/analytics/analytics','avg_duration','Trung bình','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1774,0,'vi','plugins/analytics/analytics','bounce_rate','Tỉ lệ thoát','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1775,0,'vi','plugins/analytics/analytics','page_session','Trang/Phiên','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1776,0,'vi','plugins/analytics/analytics','pageviews','Lượt xem','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1777,0,'vi','plugins/analytics/analytics','sessions','Phiên','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1778,0,'vi','plugins/analytics/analytics','views','lượt xem','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1779,0,'vi','plugins/analytics/analytics','visitors','Người truy cập','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1780,0,'vi','plugins/analytics/analytics','visits','lượt ghé thăm','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1781,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>','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1782,0,'vi','plugins/analytics/analytics','new_users','Lượt khách mới','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1783,0,'vi','plugins/analytics/analytics','percent_new_session','Tỉ lệ khách mới','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1784,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','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1785,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>','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1786,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>','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1787,0,'vi','plugins/analytics/analytics','settings.title','Google Analytics','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1788,0,'vi','plugins/analytics/analytics','settings.description','Config Credentials for Google Analytics','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1789,0,'vi','plugins/analytics/analytics','settings.tracking_code','Tracking Code','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1790,0,'vi','plugins/analytics/analytics','settings.tracking_code_placeholder','Example: GA-12586526-8','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1791,0,'vi','plugins/analytics/analytics','settings.view_id','View ID','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1792,0,'vi','plugins/analytics/analytics','settings.view_id_description','Google Analytics View ID','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1793,0,'vi','plugins/analytics/analytics','settings.json_credential','Service Account Credentials','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1794,0,'vi','plugins/analytics/analytics','settings.json_credential_description','Service Account Credentials','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1795,0,'vi','plugins/analytics/analytics','widget_analytics_browser','Trình duyệt truy cập nhiều','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1796,0,'vi','plugins/analytics/analytics','widget_analytics_general','Thống kê truy cập','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1797,0,'vi','plugins/analytics/analytics','widget_analytics_page','Trang được xem nhiều nhất','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1798,0,'vi','plugins/analytics/analytics','widget_analytics_referrer','Trang giới thiệu nhiều','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1799,0,'en','plugins/audit-log/history','name','Activities Logs','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1800,0,'en','plugins/audit-log/history','created','created','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1801,0,'en','plugins/audit-log/history','updated','updated','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1802,0,'en','plugins/audit-log/history','deleted','deleted','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1803,0,'en','plugins/audit-log/history','logged in','logged in','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1804,0,'en','plugins/audit-log/history','logged out','logged out','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1805,0,'en','plugins/audit-log/history','changed password','changed password','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1806,0,'en','plugins/audit-log/history','updated profile','updated profile','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1807,0,'en','plugins/audit-log/history','attached','attached','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1808,0,'en','plugins/audit-log/history','shared','shared','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1809,0,'en','plugins/audit-log/history','to the system','to the system','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1810,0,'en','plugins/audit-log/history','of the system','of the system','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1811,0,'en','plugins/audit-log/history','menu','menu','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1812,0,'en','plugins/audit-log/history','post','post','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1813,0,'en','plugins/audit-log/history','page','page','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1814,0,'en','plugins/audit-log/history','category','category','2022-04-20 19:54:45','2022-04-20 19:55:14'),(1815,0,'en','plugins/audit-log/history','tag','tag','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1816,0,'en','plugins/audit-log/history','user','user','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1817,0,'en','plugins/audit-log/history','contact','contact','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1818,0,'en','plugins/audit-log/history','backup','backup','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1819,0,'en','plugins/audit-log/history','custom-field','custom field','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1820,0,'en','plugins/audit-log/history','widget_audit_logs','Activities Logs','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1821,0,'en','plugins/audit-log/history','action','Action','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1822,0,'en','plugins/audit-log/history','user_agent','User Agent','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1823,0,'en','plugins/audit-log/history','system','System','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1824,0,'en','plugins/audit-log/history','delete_all','Delete all records','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1825,0,'vi','plugins/audit-log/history','name','Lịch sử hoạt động','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1826,0,'vi','plugins/audit-log/history','created',' đã tạo','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1827,0,'vi','plugins/audit-log/history','updated',' đã cập nhật','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1828,0,'vi','plugins/audit-log/history','deleted',' đã xóa','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1829,0,'vi','plugins/audit-log/history','attached','đính kèm','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1830,0,'vi','plugins/audit-log/history','backup','sao lưu','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1831,0,'vi','plugins/audit-log/history','category','danh mục','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1832,0,'vi','plugins/audit-log/history','changed password','thay đổi mật khẩu','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1833,0,'vi','plugins/audit-log/history','contact','liên hệ','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1834,0,'vi','plugins/audit-log/history','custom-field','khung mở rộng','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1835,0,'vi','plugins/audit-log/history','logged in','đăng nhập','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1836,0,'vi','plugins/audit-log/history','logged out','đăng xuất','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1837,0,'vi','plugins/audit-log/history','menu','trình đơn','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1838,0,'vi','plugins/audit-log/history','of the system','khỏi hệ thống','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1839,0,'vi','plugins/audit-log/history','page','trang','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1840,0,'vi','plugins/audit-log/history','post','bài viết','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1841,0,'vi','plugins/audit-log/history','shared','đã chia sẻ','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1842,0,'vi','plugins/audit-log/history','tag','thẻ','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1843,0,'vi','plugins/audit-log/history','to the system','vào hệ thống','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1844,0,'vi','plugins/audit-log/history','updated profile','cập nhật tài khoản','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1845,0,'vi','plugins/audit-log/history','user','thành viên','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1846,0,'vi','plugins/audit-log/history','widget_audit_logs','Lịch sử hoạt động','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1847,0,'en','plugins/backup/backup','name','Backup','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1848,0,'en','plugins/backup/backup','backup_description','Backup database and uploads folder.','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1849,0,'en','plugins/backup/backup','create_backup_success','Created backup successfully!','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1850,0,'en','plugins/backup/backup','delete_backup_success','Delete backup successfully!','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1851,0,'en','plugins/backup/backup','restore_backup_success','Restore backup successfully!','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1852,0,'en','plugins/backup/backup','generate_btn','Generate backup','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1853,0,'en','plugins/backup/backup','create','Create a backup','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1854,0,'en','plugins/backup/backup','restore','Restore a backup','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1855,0,'en','plugins/backup/backup','create_btn','Create','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1856,0,'en','plugins/backup/backup','restore_btn','Restore','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1857,0,'en','plugins/backup/backup','restore_confirm_msg','Do you really want to restore this revision?','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1858,0,'en','plugins/backup/backup','download_uploads_folder','Download backup of uploads folder','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1859,0,'en','plugins/backup/backup','download_database','Download backup of database','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1860,0,'en','plugins/backup/backup','restore_tooltip','Restore this backup','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1861,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!','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1862,0,'en','plugins/backup/backup','menu_name','Backups','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1863,0,'en','plugins/backup/backup','size','Size','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1864,0,'en','plugins/backup/backup','no_backups','There is no backup now!','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1865,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.','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1866,0,'en','plugins/backup/backup','database_backup_not_existed','Backup database is not existed!','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1867,0,'en','plugins/backup/backup','uploads_folder_backup_not_existed','Backup uploads folder is not existed!','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1868,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.','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1869,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.','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1870,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.','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1871,0,'en','plugins/backup/backup','important_message4','It is not a full backup, it is just back up uploaded files and your database.','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1872,0,'en','plugins/backup/backup','cannot_restore_database','Cannot restore database. The database backup is missing!','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1873,0,'vi','plugins/backup/backup','backup_description','Sao lưu cơ sở dữ liệu và thư mục /uploads','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1874,0,'vi','plugins/backup/backup','create','Tạo bản sao lưu','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1875,0,'vi','plugins/backup/backup','create_backup_success','Tạo bản sao lưu thành công!','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1876,0,'vi','plugins/backup/backup','create_btn','Tạo','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1877,0,'vi','plugins/backup/backup','delete_backup_success','Xóa bản sao lưu thành công!','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1878,0,'vi','plugins/backup/backup','generate_btn','Tạo sao lưu','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1879,0,'vi','plugins/backup/backup','name','Sao lưu','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1880,0,'vi','plugins/backup/backup','restore','Khôi phục bản sao lưu','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1881,0,'vi','plugins/backup/backup','restore_backup_success','Khôi phục bản sao lưu thành công','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1882,0,'vi','plugins/backup/backup','restore_btn','Khôi phục','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1883,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?','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1884,0,'vi','plugins/backup/backup','restore_tooltip','Khôi phục bản sao lưu này','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1885,0,'vi','plugins/backup/backup','download_database','Tải về bản sao lưu CSDL','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1886,0,'vi','plugins/backup/backup','download_uploads_folder','Tải về bản sao lưu thư mục uploads','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1887,0,'vi','plugins/backup/backup','menu_name','Sao lưu','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1888,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!','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1889,0,'en','plugins/blog/base','menu_name','Blog','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1890,0,'en','plugins/blog/base','blog_page','Blog Page','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1891,0,'en','plugins/blog/base','select','-- Select --','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1892,0,'en','plugins/blog/base','blog_page_id','Blog page','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1893,0,'en','plugins/blog/base','number_posts_per_page','Number posts per page','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1894,0,'en','plugins/blog/base','write_some_tags','Write some tags','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1895,0,'en','plugins/blog/base','short_code_name','Blog posts','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1896,0,'en','plugins/blog/base','short_code_description','Add blog posts','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1897,0,'en','plugins/blog/base','number_posts_per_page_in_category','Number of posts per page in a category','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1898,0,'en','plugins/blog/base','number_posts_per_page_in_tag','Number of posts per page in a tag','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1899,0,'en','plugins/blog/categories','create','Create new category','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1900,0,'en','plugins/blog/categories','edit','Edit category','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1901,0,'en','plugins/blog/categories','menu','Categories','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1902,0,'en','plugins/blog/categories','edit_this_category','Edit this category','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1903,0,'en','plugins/blog/categories','menu_name','Categories','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1904,0,'en','plugins/blog/categories','none','None','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1905,0,'en','plugins/blog/categories','total_posts','Total posts: :total','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1906,0,'en','plugins/blog/member','dob','Born :date','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1907,0,'en','plugins/blog/member','draft_posts','Draft Posts','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1908,0,'en','plugins/blog/member','pending_posts','Pending Posts','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1909,0,'en','plugins/blog/member','published_posts','Published Posts','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1910,0,'en','plugins/blog/member','posts','Posts','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1911,0,'en','plugins/blog/member','write_post','Write a post','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1912,0,'en','plugins/blog/posts','create','Create new post','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1913,0,'en','plugins/blog/posts','edit','Edit post','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1914,0,'en','plugins/blog/posts','form.name','Name','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1915,0,'en','plugins/blog/posts','form.name_placeholder','Post\'s name (Maximum :c characters)','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1916,0,'en','plugins/blog/posts','form.description','Description','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1917,0,'en','plugins/blog/posts','form.description_placeholder','Short description for post (Maximum :c characters)','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1918,0,'en','plugins/blog/posts','form.categories','Categories','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1919,0,'en','plugins/blog/posts','form.tags','Tags','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1920,0,'en','plugins/blog/posts','form.tags_placeholder','Tags','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1921,0,'en','plugins/blog/posts','form.content','Content','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1922,0,'en','plugins/blog/posts','form.is_featured','Is featured?','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1923,0,'en','plugins/blog/posts','form.note','Note content','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1924,0,'en','plugins/blog/posts','form.format_type','Format','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1925,0,'en','plugins/blog/posts','cannot_delete','Post could not be deleted','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1926,0,'en','plugins/blog/posts','post_deleted','Post deleted','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1927,0,'en','plugins/blog/posts','posts','Posts','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1928,0,'en','plugins/blog/posts','post','Post','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1929,0,'en','plugins/blog/posts','edit_this_post','Edit this post','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1930,0,'en','plugins/blog/posts','no_new_post_now','There is no new post now!','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1931,0,'en','plugins/blog/posts','menu_name','Posts','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1932,0,'en','plugins/blog/posts','widget_posts_recent','Recent Posts','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1933,0,'en','plugins/blog/posts','categories','Categories','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1934,0,'en','plugins/blog/posts','category','Category','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1935,0,'en','plugins/blog/posts','author','Author','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1936,0,'en','plugins/blog/settings','select','-- Select --','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1937,0,'en','plugins/blog/settings','blog_page_id','Blog page','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1938,0,'en','plugins/blog/tags','form.name','Name','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1939,0,'en','plugins/blog/tags','form.name_placeholder','Tag\'s name (Maximum 120 characters)','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1940,0,'en','plugins/blog/tags','form.description','Description','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1941,0,'en','plugins/blog/tags','form.description_placeholder','Short description for tag (Maximum 400 characters)','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1942,0,'en','plugins/blog/tags','form.categories','Categories','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1943,0,'en','plugins/blog/tags','notices.no_select','Please select at least one tag to take this action!','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1944,0,'en','plugins/blog/tags','create','Create new tag','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1945,0,'en','plugins/blog/tags','edit','Edit tag','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1946,0,'en','plugins/blog/tags','cannot_delete','Tag could not be deleted','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1947,0,'en','plugins/blog/tags','deleted','Tag deleted','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1948,0,'en','plugins/blog/tags','menu','Tags','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1949,0,'en','plugins/blog/tags','edit_this_tag','Edit this tag','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1950,0,'en','plugins/blog/tags','menu_name','Tags','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1951,0,'vi','plugins/blog/base','menu_name','Blog','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1952,0,'vi','plugins/blog/categories','create','Thêm danh mục mới','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1953,0,'vi','plugins/blog/categories','edit','Sửa danh mục','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1954,0,'vi','plugins/blog/categories','menu_name','Danh mục','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1955,0,'vi','plugins/blog/categories','edit_this_category','Sửa danh mục này','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1956,0,'vi','plugins/blog/categories','menu','Danh mục','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1957,0,'vi','plugins/blog/posts','create','Thêm bài viết','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1958,0,'vi','plugins/blog/posts','edit','Sửa bài viết','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1959,0,'vi','plugins/blog/posts','form.name','Tên','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1960,0,'vi','plugins/blog/posts','form.name_placeholder','Tên bài viết (Tối đa 120 kí tự)','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1961,0,'vi','plugins/blog/posts','form.description','Mô tả','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1962,0,'vi','plugins/blog/posts','form.description_placeholder','Mô tả ngắn cho bài viết (Tối đa 400 kí tự)','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1963,0,'vi','plugins/blog/posts','form.categories','Chuyên mục','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1964,0,'vi','plugins/blog/posts','form.tags','Từ khóa','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1965,0,'vi','plugins/blog/posts','form.tags_placeholder','Thêm từ khóa','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1966,0,'vi','plugins/blog/posts','form.content','Nội dung','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1967,0,'vi','plugins/blog/posts','form.note','Nội dung ghi chú','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1968,0,'vi','plugins/blog/posts','form.format_type','Định dạng','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1969,0,'vi','plugins/blog/posts','post_deleted','Xóa bài viết thành công','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1970,0,'vi','plugins/blog/posts','cannot_delete','Không thể xóa bài viết','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1971,0,'vi','plugins/blog/posts','menu_name','Bài viết','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1972,0,'vi','plugins/blog/posts','edit_this_post','Sửa bài viết này','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1973,0,'vi','plugins/blog/posts','no_new_post_now','Hiện tại không có bài viết mới!','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1974,0,'vi','plugins/blog/posts','posts','Bài viết','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1975,0,'vi','plugins/blog/posts','widget_posts_recent','Bài viết gần đây','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1976,0,'vi','plugins/blog/posts','author','Tác giả','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1977,0,'vi','plugins/blog/tags','create','Thêm thẻ mới','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1978,0,'vi','plugins/blog/tags','edit','Sửa thẻ','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1979,0,'vi','plugins/blog/tags','form.name','Tên','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1980,0,'vi','plugins/blog/tags','form.name_placeholder','Tên thẻ (Tối đa 120 kí tự)','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1981,0,'vi','plugins/blog/tags','form.description','Mô tả','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1982,0,'vi','plugins/blog/tags','form.description_placeholder','Mô tả ngắn cho tag (Tối đa 400 kí tự)','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1983,0,'vi','plugins/blog/tags','form.categories','Chuyên mục','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1984,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!','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1985,0,'vi','plugins/blog/tags','cannot_delete','Không thể xóa thẻ','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1986,0,'vi','plugins/blog/tags','deleted','Xóa thẻ thành công','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1987,0,'vi','plugins/blog/tags','menu_name','Thẻ','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1988,0,'vi','plugins/blog/tags','edit_this_tag','Sửa thẻ này','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1989,0,'vi','plugins/blog/tags','menu','Thẻ','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1990,0,'en','plugins/captcha/captcha','settings.title','Captcha','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1991,0,'en','plugins/captcha/captcha','settings.description','Settings for Google Captcha','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1992,0,'en','plugins/captcha/captcha','settings.captcha_site_key','Captcha Site Key','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1993,0,'en','plugins/captcha/captcha','settings.captcha_secret','Captcha Secret','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1994,0,'en','plugins/captcha/captcha','settings.enable_captcha','Enable Captcha?','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1995,0,'en','plugins/captcha/captcha','settings.helper','Go here to get credentials https://www.google.com/recaptcha/admin#list.','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1996,0,'en','plugins/captcha/captcha','settings.hide_badge','Hide recaptcha badge (for v3)','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1997,0,'en','plugins/captcha/captcha','settings.type','Type','2022-04-20 19:54:46','2022-04-20 19:55:14'),(1998,0,'en','plugins/captcha/captcha','settings.v2_description','V2 (Verify requests with a challenge)','2022-04-20 19:54:47','2022-04-20 19:55:14'),(1999,0,'en','plugins/captcha/captcha','settings.v3_description','V3 (Verify requests with a score)','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2000,0,'en','plugins/captcha/captcha','failed_validate','Failed to validate the captcha.','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2001,0,'en','plugins/contact/contact','menu','Contact','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2002,0,'en','plugins/contact/contact','edit','View contact','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2003,0,'en','plugins/contact/contact','tables.phone','Phone','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2004,0,'en','plugins/contact/contact','tables.email','Email','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2005,0,'en','plugins/contact/contact','tables.full_name','Full Name','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2006,0,'en','plugins/contact/contact','tables.time','Time','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2007,0,'en','plugins/contact/contact','tables.address','Address','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2008,0,'en','plugins/contact/contact','tables.subject','Subject','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2009,0,'en','plugins/contact/contact','tables.content','Content','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2010,0,'en','plugins/contact/contact','contact_information','Contact information','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2011,0,'en','plugins/contact/contact','replies','Replies','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2012,0,'en','plugins/contact/contact','email.header','Email','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2013,0,'en','plugins/contact/contact','email.title','New contact from your site','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2014,0,'en','plugins/contact/contact','form.name.required','Name is required','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2015,0,'en','plugins/contact/contact','form.email.required','Email is required','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2016,0,'en','plugins/contact/contact','form.email.email','The email address is not valid','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2017,0,'en','plugins/contact/contact','form.content.required','Content is required','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2018,0,'en','plugins/contact/contact','contact_sent_from','This contact information sent from','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2019,0,'en','plugins/contact/contact','sender','Sender','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2020,0,'en','plugins/contact/contact','sender_email','Email','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2021,0,'en','plugins/contact/contact','sender_address','Address','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2022,0,'en','plugins/contact/contact','sender_phone','Phone','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2023,0,'en','plugins/contact/contact','message_content','Message content','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2024,0,'en','plugins/contact/contact','sent_from','Email sent from','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2025,0,'en','plugins/contact/contact','form_name','Name','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2026,0,'en','plugins/contact/contact','form_email','Email','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2027,0,'en','plugins/contact/contact','form_address','Address','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2028,0,'en','plugins/contact/contact','form_subject','Subject','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2029,0,'en','plugins/contact/contact','form_phone','Phone','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2030,0,'en','plugins/contact/contact','form_message','Message','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2031,0,'en','plugins/contact/contact','required_field','The field with (<span style=\"color: red\">*</span>) is required.','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2032,0,'en','plugins/contact/contact','send_btn','Send message','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2033,0,'en','plugins/contact/contact','new_msg_notice','You have <span class=\"bold\">:count</span> New Messages','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2034,0,'en','plugins/contact/contact','view_all','View all','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2035,0,'en','plugins/contact/contact','statuses.read','Read','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2036,0,'en','plugins/contact/contact','statuses.unread','Unread','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2037,0,'en','plugins/contact/contact','phone','Phone','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2038,0,'en','plugins/contact/contact','address','Address','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2039,0,'en','plugins/contact/contact','message','Message','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2040,0,'en','plugins/contact/contact','settings.email.title','Contact','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2041,0,'en','plugins/contact/contact','settings.email.description','Contact email configuration','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2042,0,'en','plugins/contact/contact','settings.email.templates.notice_title','Send notice to administrator','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2043,0,'en','plugins/contact/contact','settings.email.templates.notice_description','Email template to send notice to administrator when system get new contact','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2044,0,'en','plugins/contact/contact','no_reply','No reply yet!','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2045,0,'en','plugins/contact/contact','reply','Reply','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2046,0,'en','plugins/contact/contact','send','Send','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2047,0,'en','plugins/contact/contact','shortcode_name','Contact form','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2048,0,'en','plugins/contact/contact','shortcode_description','Add a contact form','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2049,0,'en','plugins/contact/contact','shortcode_content_description','Add shortcode [contact-form][/contact-form] to editor?','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2050,0,'en','plugins/contact/contact','message_sent_success','Message sent successfully!','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2051,0,'vi','plugins/contact/contact','menu','Liên hệ','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2052,0,'vi','plugins/contact/contact','edit','Xem liên hệ','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2053,0,'vi','plugins/contact/contact','tables.phone','Điện thoại','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2054,0,'vi','plugins/contact/contact','tables.email','Email','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2055,0,'vi','plugins/contact/contact','tables.full_name','Họ tên','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2056,0,'vi','plugins/contact/contact','tables.time','Thời gian','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2057,0,'vi','plugins/contact/contact','tables.address','Địa địa chỉ','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2058,0,'vi','plugins/contact/contact','tables.subject','Tiêu đề','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2059,0,'vi','plugins/contact/contact','tables.content','Nội dung','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2060,0,'vi','plugins/contact/contact','contact_information','Thông tin liên hệ','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2061,0,'vi','plugins/contact/contact','email.title','Thông tin liên hệ mới','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2062,0,'vi','plugins/contact/contact','email.header','Email','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2063,0,'vi','plugins/contact/contact','contact_sent_from','Liên hệ này được gửi từ','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2064,0,'vi','plugins/contact/contact','form_address','Địa chỉ','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2065,0,'vi','plugins/contact/contact','form_email','Thư điện tử','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2066,0,'vi','plugins/contact/contact','form_message','Thông điệp','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2067,0,'vi','plugins/contact/contact','form_name','Họ tên','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2068,0,'vi','plugins/contact/contact','form_phone','Số điện thoại','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2069,0,'vi','plugins/contact/contact','message_content','Nội dung thông điệp','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2070,0,'vi','plugins/contact/contact','required_field','Những trường có dấu (<span style=\"color: red\">*</span>) là bắt buộc.','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2071,0,'vi','plugins/contact/contact','send_btn','Gửi tin nhắn','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2072,0,'vi','plugins/contact/contact','sender','Người gửi','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2073,0,'vi','plugins/contact/contact','sender_address','Địa chỉ','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2074,0,'vi','plugins/contact/contact','sender_email','Thư điện tử','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2075,0,'vi','plugins/contact/contact','sender_phone','Số điện thoại','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2076,0,'vi','plugins/contact/contact','sent_from','Thư được gửi từ','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2077,0,'vi','plugins/contact/contact','address','Địa chỉ','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2078,0,'vi','plugins/contact/contact','message','Liên hệ','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2079,0,'vi','plugins/contact/contact','new_msg_notice','Bạn có <span class=\"bold\">:count</span> tin nhắn mới','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2080,0,'vi','plugins/contact/contact','phone','Điện thoại','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2081,0,'vi','plugins/contact/contact','statuses.read','Đã đọc','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2082,0,'vi','plugins/contact/contact','statuses.unread','Chưa đọc','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2083,0,'vi','plugins/contact/contact','view_all','Xem tất cả','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2084,0,'vi','plugins/contact/contact','settings.email.title','Liên hệ','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2085,0,'vi','plugins/contact/contact','settings.email.description','Cấu hình thông tin cho mục liên hệ','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2086,0,'vi','plugins/contact/contact','settings.email.templates.notice_title','Thông báo tới admin','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2087,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','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2088,0,'en','plugins/cookie-consent/cookie-consent','theme_options.name','Cookie Consent','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2089,0,'en','plugins/cookie-consent/cookie-consent','theme_options.description','Cookie consent settings','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2090,0,'en','plugins/cookie-consent/cookie-consent','theme_options.enable','Enable cookie consent?','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2091,0,'en','plugins/cookie-consent/cookie-consent','theme_options.message','Message','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2092,0,'en','plugins/cookie-consent/cookie-consent','theme_options.button_text','Button text','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2093,0,'en','plugins/cookie-consent/cookie-consent','theme_options.max_width','Max width (px)','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2094,0,'en','plugins/cookie-consent/cookie-consent','theme_options.background_color','Background color','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2095,0,'en','plugins/cookie-consent/cookie-consent','theme_options.text_color','Text color','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2096,0,'en','plugins/cookie-consent/cookie-consent','theme_options.learn_more_url','Learn more URL','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2097,0,'en','plugins/cookie-consent/cookie-consent','theme_options.learn_more_text','Learn more text','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2098,0,'en','plugins/cookie-consent/cookie-consent','theme_options.style','Style','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2099,0,'en','plugins/cookie-consent/cookie-consent','theme_options.full_width','Full width','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2100,0,'en','plugins/cookie-consent/cookie-consent','theme_options.minimal','Minimal','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2101,0,'en','plugins/cookie-consent/cookie-consent','message','Your experience on this site will be improved by allowing cookies.','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2102,0,'en','plugins/cookie-consent/cookie-consent','button_text','Allow cookies','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2103,0,'en','plugins/ecommerce/brands','name','Brands','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2104,0,'en','plugins/ecommerce/brands','create','New brand','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2105,0,'en','plugins/ecommerce/brands','edit','Edit brand','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2106,0,'en','plugins/ecommerce/brands','form.name','Name','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2107,0,'en','plugins/ecommerce/brands','form.name_placeholder','Brand\'s name (Maximum 255 characters)','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2108,0,'en','plugins/ecommerce/brands','form.description','Description','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2109,0,'en','plugins/ecommerce/brands','form.description_placeholder','Short description for brand (Maximum 400 characters)','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2110,0,'en','plugins/ecommerce/brands','form.website','Website','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2111,0,'en','plugins/ecommerce/brands','form.logo','Logo','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2112,0,'en','plugins/ecommerce/brands','form.is_featured','Is featured','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2113,0,'en','plugins/ecommerce/brands','logo','Logo','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2114,0,'en','plugins/ecommerce/brands','website','Website','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2115,0,'en','plugins/ecommerce/brands','notices.no_select','Please select at least one record to take this action!','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2116,0,'en','plugins/ecommerce/brands','notices.update_success_message','Update successfully','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2117,0,'en','plugins/ecommerce/brands','cannot_delete','Brand could not be deleted','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2118,0,'en','plugins/ecommerce/brands','brand_deleted','Brand deleted','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2119,0,'en','plugins/ecommerce/brands','menu','Brands','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2120,0,'en','plugins/ecommerce/brands','no_brand','No brand','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2121,0,'en','plugins/ecommerce/brands','intro.title','Manage brands','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2122,0,'en','plugins/ecommerce/brands','intro.description','Manage product brands such as Nike, Adidas, Bitis ...','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2123,0,'en','plugins/ecommerce/brands','intro.button_text','Create brand','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2124,0,'en','plugins/ecommerce/bulk-import','name','Bulk Import','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2125,0,'en','plugins/ecommerce/bulk-import','loading_text','Importing','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2126,0,'en','plugins/ecommerce/bulk-import','imported_successfully','Imported successfully.','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2127,0,'en','plugins/ecommerce/bulk-import','please_choose_the_file_mime','Please choose the file mime :types','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2128,0,'en','plugins/ecommerce/bulk-import','please_choose_the_file','Please choose the file','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2129,0,'en','plugins/ecommerce/bulk-import','start_import','Start Import','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2130,0,'en','plugins/ecommerce/bulk-import','note','Note!','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2131,0,'en','plugins/ecommerce/bulk-import','warning_before_importing','If this is your first time using this feature, please read the documentation or contact the Administrator for access to the correct functionality!','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2132,0,'en','plugins/ecommerce/bulk-import','results','Result: :success successes, :failed failures','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2133,0,'en','plugins/ecommerce/bulk-import','failures','Failures','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2134,0,'en','plugins/ecommerce/bulk-import','tables.import','Import','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2135,0,'en','plugins/ecommerce/bulk-import','template','Template','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2136,0,'en','plugins/ecommerce/bulk-import','rules','Rules','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2137,0,'en','plugins/ecommerce/bulk-import','choose_file_with_mime','Choose file with mime: (:types)','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2138,0,'en','plugins/ecommerce/bulk-import','choose_file','Choose file','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2139,0,'en','plugins/ecommerce/bulk-import','menu','Import products','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2140,0,'en','plugins/ecommerce/bulk-import','download-csv-file','Download CSV template','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2141,0,'en','plugins/ecommerce/bulk-import','download-excel-file','Download Excel template','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2142,0,'en','plugins/ecommerce/bulk-import','downloading','Downloading...','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2143,0,'en','plugins/ecommerce/bulk-import','export.template.input_error','Input error','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2144,0,'en','plugins/ecommerce/bulk-import','export.template.number_not_allowed','Number is not allowed!','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2145,0,'en','plugins/ecommerce/bulk-import','export.template.allowed_input','Allowed input','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2146,0,'en','plugins/ecommerce/bulk-import','export.template.prompt_decimal','Only numbers or decimals are accepted and greater than or equal to :min.','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2147,0,'en','plugins/ecommerce/bulk-import','export.template.prompt_whole_number','Only numbers are accepted and greater than or equal to :min.','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2148,0,'en','plugins/ecommerce/bulk-import','export.template.prompt_list','Please pick a value from the drop-down list.','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2149,0,'en','plugins/ecommerce/bulk-import','export.template.pick_from_list','Pick from list','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2150,0,'en','plugins/ecommerce/bulk-import','export.template.value_not_in_list','Value is not in list.','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2151,0,'en','plugins/ecommerce/bulk-import','import_failed_description','Import failed, please check the errors below!','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2152,0,'en','plugins/ecommerce/currency','currencies','Currencies','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2153,0,'en','plugins/ecommerce/currency','setting_description','List of currencies using on website','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2154,0,'en','plugins/ecommerce/currency','name','Name','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2155,0,'en','plugins/ecommerce/currency','symbol','Symbol','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2156,0,'en','plugins/ecommerce/currency','number_of_decimals','Number of decimals','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2157,0,'en','plugins/ecommerce/currency','exchange_rate','Exchange rate','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2158,0,'en','plugins/ecommerce/currency','is_prefix_symbol','Position of symbol','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2159,0,'en','plugins/ecommerce/currency','is_default','Is default?','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2160,0,'en','plugins/ecommerce/currency','remove','Remove','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2161,0,'en','plugins/ecommerce/currency','new_currency','Add a new currency','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2162,0,'en','plugins/ecommerce/currency','save_settings','Save settings','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2163,0,'en','plugins/ecommerce/currency','before_number','Before number','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2164,0,'en','plugins/ecommerce/currency','after_number','After number','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2165,0,'en','plugins/ecommerce/currency','require_at_least_one_currency','The system requires at least one currency!','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2166,0,'en','plugins/ecommerce/currency','enable_auto_detect_visitor_currency','Enable auto-detect visitor currency?','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2167,0,'en','plugins/ecommerce/customer','name','Customers','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2168,0,'en','plugins/ecommerce/customer','create','Create a customer','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2169,0,'en','plugins/ecommerce/customer','edit','Edit customer \":name\"','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2170,0,'en','plugins/ecommerce/customer','email','Email','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2171,0,'en','plugins/ecommerce/customer','email_placeholder','Ex: example@gmail.com','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2172,0,'en','plugins/ecommerce/customer','password','Password','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2173,0,'en','plugins/ecommerce/customer','change_password','Change password?','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2174,0,'en','plugins/ecommerce/customer','password_confirmation','Password confirmation','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2175,0,'en','plugins/ecommerce/customer','intro.title','Manage customers','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2176,0,'en','plugins/ecommerce/customer','intro.description','When a customer buy your product(s), you will know their order histories.','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2177,0,'en','plugins/ecommerce/customer','intro.button_text','Create customer','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2178,0,'en','plugins/ecommerce/customer','phone','Phone','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2179,0,'en','plugins/ecommerce/customer','phone_placeholder','Phone','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2180,0,'en','plugins/ecommerce/customer','avatar','Avatar','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2181,0,'en','plugins/ecommerce/customer','dob','Date of birth','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2182,0,'en','plugins/ecommerce/customer','statuses.activated','Activated','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2183,0,'en','plugins/ecommerce/customer','statuses.locked','Locked','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2184,0,'en','plugins/ecommerce/customer','email_verified','Email verified?','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2185,0,'en','plugins/ecommerce/discount','name','Discounts','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2186,0,'en','plugins/ecommerce/discount','create','Create discount','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2187,0,'en','plugins/ecommerce/discount','invalid_coupon','This coupon is invalid or expired!','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2188,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!','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2189,0,'en','plugins/ecommerce/discount','not_used','This coupon is not used yet!','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2190,0,'en','plugins/ecommerce/discount','detail','Detail','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2191,0,'en','plugins/ecommerce/discount','used','Used','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2192,0,'en','plugins/ecommerce/discount','intro.title','Manage discount/coupon code','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2193,0,'en','plugins/ecommerce/discount','intro.description','Create coupon code or promotion for your products.','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2194,0,'en','plugins/ecommerce/discount','intro.button_text','Create discount','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2195,0,'en','plugins/ecommerce/discount','expired','Expired','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2196,0,'en','plugins/ecommerce/discount','discount_promotion','Discount promotion','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2197,0,'en','plugins/ecommerce/discount','can','can','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2198,0,'en','plugins/ecommerce/discount','cannot','cannot','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2199,0,'en','plugins/ecommerce/discount','use_with_promotion','be used with promotion','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2200,0,'en','plugins/ecommerce/discount','create_discount_validate_title_required_if','Please enter the name of the promotion','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2201,0,'en','plugins/ecommerce/discount','create_discount_validate_code_required_if','Please enter the promotion code','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2202,0,'en','plugins/ecommerce/discount','create_discount_validate_value_required','Amount must be greater than 0','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2203,0,'en','plugins/ecommerce/discount','create_discount_validate_target_required','No object selected for promotion','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2204,0,'en','plugins/ecommerce/discount','enums.type-options.amount','Amount - Fixed','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2205,0,'en','plugins/ecommerce/discount','enums.type-options.percentage','Discount %','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2206,0,'en','plugins/ecommerce/discount','enums.type-options.shipping','Free shipping','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2207,0,'en','plugins/ecommerce/discount','enums.type-options.same-price','Same price','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2208,0,'en','plugins/ecommerce/discount','discount','Discount','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2209,0,'en','plugins/ecommerce/discount','create_coupon_code','Create coupon code','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2210,0,'en','plugins/ecommerce/discount','create_discount_promotion','Create discount promotion','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2211,0,'en','plugins/ecommerce/discount','generate_coupon_code','Generate coupon code','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2212,0,'en','plugins/ecommerce/discount','customers_will_enter_this_coupon_code_when_they_checkout','Customers will enter this coupon code when they checkout','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2213,0,'en','plugins/ecommerce/discount','select_type_of_discount','Select type of discount','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2214,0,'en','plugins/ecommerce/discount','coupon_code','Coupon code','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2215,0,'en','plugins/ecommerce/discount','promotion','Promotion','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2216,0,'en','plugins/ecommerce/discount','can_be_used_with_promotion','Can be used with promotion','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2217,0,'en','plugins/ecommerce/discount','unlimited_coupon','Unlimited coupon','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2218,0,'en','plugins/ecommerce/discount','enter_number','Enter number','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2219,0,'en','plugins/ecommerce/discount','coupon_type','Coupon type','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2220,0,'en','plugins/ecommerce/discount','percentage_discount','Percentage discount (%)','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2221,0,'en','plugins/ecommerce/discount','free_shipping','Free shipping','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2222,0,'en','plugins/ecommerce/discount','same_price','Same price','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2223,0,'en','plugins/ecommerce/discount','apply_for','apply for','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2224,0,'en','plugins/ecommerce/discount','all_orders','All orders','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2225,0,'en','plugins/ecommerce/discount','order_amount_from','Order amount from','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2226,0,'en','plugins/ecommerce/discount','product_collection','Product collection','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2227,0,'en','plugins/ecommerce/discount','product','Product','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2228,0,'en','plugins/ecommerce/discount','customer','Customer','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2229,0,'en','plugins/ecommerce/discount','variant','Variant','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2230,0,'en','plugins/ecommerce/discount','search_product','Search product','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2231,0,'en','plugins/ecommerce/discount','no_products_found','No products found!','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2232,0,'en','plugins/ecommerce/discount','search_customer','Search customer','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2233,0,'en','plugins/ecommerce/discount','no_customer_found','No customer found!','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2234,0,'en','plugins/ecommerce/discount','one_time_per_order','One time per order','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2235,0,'en','plugins/ecommerce/discount','one_time_per_product_in_cart','One time per product in cart','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2236,0,'en','plugins/ecommerce/discount','number_of_products','Number of products required to apply','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2237,0,'en','plugins/ecommerce/discount','selected_products','Selected products','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2238,0,'en','plugins/ecommerce/discount','selected_customers','Selected customers','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2239,0,'en','plugins/ecommerce/discount','time','Time','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2240,0,'en','plugins/ecommerce/discount','start_date','Start date','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2241,0,'en','plugins/ecommerce/discount','end_date','End date','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2242,0,'en','plugins/ecommerce/discount','never_expired','Never expired','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2243,0,'en','plugins/ecommerce/discount','save','Save','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2244,0,'en','plugins/ecommerce/discount','enter_promotion_name','Enter promotion name','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2245,0,'en','plugins/ecommerce/discount','enter_coupon_name','Enter coupon name','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2246,0,'en','plugins/ecommerce/discount','cancel','Cancel','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2247,0,'en','plugins/ecommerce/discount','is','Is','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2248,0,'en','plugins/ecommerce/discount','when_shipping_fee_less_than','when shipping fee less than','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2249,0,'en','plugins/ecommerce/ecommerce','settings','Settings','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2250,0,'en','plugins/ecommerce/ecommerce','name','Ecommerce','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2251,0,'en','plugins/ecommerce/ecommerce','setting.email.title','E-commerce','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2252,0,'en','plugins/ecommerce/ecommerce','setting.email.description','Ecommerce email config','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2253,0,'en','plugins/ecommerce/ecommerce','setting.email.order_confirm_subject','Subject of order confirmation email','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2254,0,'en','plugins/ecommerce/ecommerce','setting.email.order_confirm_subject_placeholder','The subject of email confirmation send to the customer','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2255,0,'en','plugins/ecommerce/ecommerce','setting.email.order_confirm_content','Content of order confirmation email','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2256,0,'en','plugins/ecommerce/ecommerce','setting.email.order_status_change_subject','Subject of email when changing order\'s status','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2257,0,'en','plugins/ecommerce/ecommerce','setting.email.order_status_change_subject_placeholder','Subject of email when changing order\'s status send to customer','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2258,0,'en','plugins/ecommerce/ecommerce','setting.email.order_status_change_content','Content of email when changing order\'s status','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2259,0,'en','plugins/ecommerce/ecommerce','setting.email.from_email','Email from','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2260,0,'en','plugins/ecommerce/ecommerce','setting.email.from_email_placeholder','Email from address to display in mail. Ex: example@gmail.com','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2261,0,'en','plugins/ecommerce/ecommerce','setting.title','Basic information','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2262,0,'en','plugins/ecommerce/ecommerce','setting.state','State','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2263,0,'en','plugins/ecommerce/ecommerce','setting.city','City','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2264,0,'en','plugins/ecommerce/ecommerce','setting.country','Country','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2265,0,'en','plugins/ecommerce/ecommerce','setting.weight_unit_gram','Gram (g)','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2266,0,'en','plugins/ecommerce/ecommerce','setting.weight_unit_kilogram','Kilogram (kg)','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2267,0,'en','plugins/ecommerce/ecommerce','setting.weight_unit_lb','Pound (lb)','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2268,0,'en','plugins/ecommerce/ecommerce','setting.weight_unit_oz','Ounce (oz)','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2269,0,'en','plugins/ecommerce/ecommerce','setting.height_unit_cm','Centimeter (cm)','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2270,0,'en','plugins/ecommerce/ecommerce','setting.height_unit_m','Meter (m)','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2271,0,'en','plugins/ecommerce/ecommerce','setting.height_unit_inch','Inch','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2272,0,'en','plugins/ecommerce/ecommerce','setting.store_locator_title','Store locators','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2273,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.','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2274,0,'en','plugins/ecommerce/ecommerce','setting.phone','Phone','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2275,0,'en','plugins/ecommerce/ecommerce','setting.address','Address','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2276,0,'en','plugins/ecommerce/ecommerce','setting.is_primary','Primary?','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2277,0,'en','plugins/ecommerce/ecommerce','setting.add_new','Add new','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2278,0,'en','plugins/ecommerce/ecommerce','setting.or','Or','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2279,0,'en','plugins/ecommerce/ecommerce','setting.change_primary_store','change default store locator','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2280,0,'en','plugins/ecommerce/ecommerce','setting.other_settings','Other settings','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2281,0,'en','plugins/ecommerce/ecommerce','setting.other_settings_description','Settings for cart, review...','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2282,0,'en','plugins/ecommerce/ecommerce','setting.enable_cart','Enable shopping cart?','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2283,0,'en','plugins/ecommerce/ecommerce','setting.enable_tax','Enable tax?','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2284,0,'en','plugins/ecommerce/ecommerce','setting.display_product_price_including_taxes','Display product price including taxes?','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2285,0,'en','plugins/ecommerce/ecommerce','setting.enable_review','Enable review?','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2286,0,'en','plugins/ecommerce/ecommerce','setting.enable_quick_buy_button','Enable quick buy button?','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2287,0,'en','plugins/ecommerce/ecommerce','setting.quick_buy_target','Quick buy target page?','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2288,0,'en','plugins/ecommerce/ecommerce','setting.checkout_page','Checkout page','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2289,0,'en','plugins/ecommerce/ecommerce','setting.cart_page','Cart page','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2290,0,'en','plugins/ecommerce/ecommerce','setting.add_location','Add location','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2291,0,'en','plugins/ecommerce/ecommerce','setting.edit_location','Edit location','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2292,0,'en','plugins/ecommerce/ecommerce','setting.delete_location','Delete location','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2293,0,'en','plugins/ecommerce/ecommerce','setting.change_primary_location','Change primary location','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2294,0,'en','plugins/ecommerce/ecommerce','setting.delete_location_confirmation','Are you sure you want to delete this location? This action cannot be undo.','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2295,0,'en','plugins/ecommerce/ecommerce','setting.save_location','Save location','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2296,0,'en','plugins/ecommerce/ecommerce','setting.accept','Accept','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2297,0,'en','plugins/ecommerce/ecommerce','setting.select_country','Select country...','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2298,0,'en','plugins/ecommerce/ecommerce','setting.zip_code_enabled','Enable Zip Code?','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2299,0,'en','plugins/ecommerce/ecommerce','setting.thousands_separator','Thousands separator','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2300,0,'en','plugins/ecommerce/ecommerce','setting.decimal_separator','Decimal separator','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2301,0,'en','plugins/ecommerce/ecommerce','setting.separator_period','Period (.)','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2302,0,'en','plugins/ecommerce/ecommerce','setting.separator_comma','Comma (,)','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2303,0,'en','plugins/ecommerce/ecommerce','setting.separator_space','Space ( )','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2304,0,'en','plugins/ecommerce/ecommerce','setting.available_countries','Available countries','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2305,0,'en','plugins/ecommerce/ecommerce','setting.all','All','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2306,0,'en','plugins/ecommerce/ecommerce','setting.verify_customer_email','Verify customer\'s email?','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2307,0,'en','plugins/ecommerce/ecommerce','setting.minimum_order_amount','Minimum order amount to place an order (:currency).','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2308,0,'en','plugins/ecommerce/ecommerce','setting.enable_guest_checkout','Enable guest checkout?','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2309,0,'en','plugins/ecommerce/ecommerce','setting.show_number_of_products','Show number of products in the product single','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2310,0,'en','plugins/ecommerce/ecommerce','setting.payment_method_cod_minimum_amount','Minimum order amount - :currency (Optional)','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2311,0,'en','plugins/ecommerce/ecommerce','setting.review.max_file_size','Review max file size (MB)','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2312,0,'en','plugins/ecommerce/ecommerce','setting.review.max_file_number','Review max file number','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2313,0,'en','plugins/ecommerce/ecommerce','setting.using_custom_font_for_invoice','Using custom font for invoice?','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2314,0,'en','plugins/ecommerce/ecommerce','setting.invoice_font_family','Invoice font family (Only work for Latin language)','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2315,0,'en','plugins/ecommerce/ecommerce','setting.enable_invoice_stamp','Enable invoice stamp?','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2316,0,'en','plugins/ecommerce/ecommerce','setting.make_phone_field_at_the_checkout_optional','Make phone field at the checkout optional?','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2317,0,'en','plugins/ecommerce/ecommerce','setting.disable_order_invoice_until_order_confirmed','Disable order invoice until order confirmed?','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2318,0,'en','plugins/ecommerce/ecommerce','setting.vat_number','VAT number','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2319,0,'en','plugins/ecommerce/ecommerce','setting.enable_recaptcha_in_register_page','Enable Recaptcha in the registration page?','2022-04-20 19:54:47','2022-04-20 19:55:14'),(2320,0,'en','plugins/ecommerce/ecommerce','setting.enable_recaptcha_in_register_page_description','Need to setup Captcha in Admin -> Settings -> General first.','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2321,0,'en','plugins/ecommerce/ecommerce','setting.show_out_of_stock_products','Show out of stock products?','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2322,0,'en','plugins/ecommerce/ecommerce','setting.default_tax_rate','Default tax rate','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2323,0,'en','plugins/ecommerce/ecommerce','setting.default_tax_rate_description','Important: it will be applied if no tax selected in product.','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2324,0,'en','plugins/ecommerce/ecommerce','setting.how_to_display_product_variation_images','How to display product variation images?','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2325,0,'en','plugins/ecommerce/ecommerce','setting.only_variation_images','Only variation images','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2326,0,'en','plugins/ecommerce/ecommerce','setting.variation_images_and_main_product_images','Variation images + main product images','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2327,0,'en','plugins/ecommerce/ecommerce','setting.load_countries_states_cities_from_location_plugin','Load countries, states, cities from plugin location?','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2328,0,'en','plugins/ecommerce/ecommerce','setting.enable_wishlist','Enable wishlist?','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2329,0,'en','plugins/ecommerce/ecommerce','setting.enable_compare','Enable compare?','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2330,0,'en','plugins/ecommerce/ecommerce','setting.enable_order_tracking','Enable order tracking?','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2331,0,'en','plugins/ecommerce/ecommerce','store_address','Store address','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2332,0,'en','plugins/ecommerce/ecommerce','store_phone','Store phone','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2333,0,'en','plugins/ecommerce/ecommerce','order_id','Order ID','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2334,0,'en','plugins/ecommerce/ecommerce','order_token','Order token','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2335,0,'en','plugins/ecommerce/ecommerce','customer_name','Customer name','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2336,0,'en','plugins/ecommerce/ecommerce','customer_email','Customer email','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2337,0,'en','plugins/ecommerce/ecommerce','customer_phone','Customer phone','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2338,0,'en','plugins/ecommerce/ecommerce','customer_address','Customer address','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2339,0,'en','plugins/ecommerce/ecommerce','product_list','List products in order','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2340,0,'en','plugins/ecommerce/ecommerce','payment_detail','Payment detail','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2341,0,'en','plugins/ecommerce/ecommerce','shipping_method','Shipping method','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2342,0,'en','plugins/ecommerce/ecommerce','payment_method','Payment method','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2343,0,'en','plugins/ecommerce/ecommerce','standard_and_format','Standard & Format','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2344,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.','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2345,0,'en','plugins/ecommerce/ecommerce','change_order_format','Edit order code format (optional)','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2346,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\"','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2347,0,'en','plugins/ecommerce/ecommerce','start_with','Start with','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2348,0,'en','plugins/ecommerce/ecommerce','end_with','End with','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2349,0,'en','plugins/ecommerce/ecommerce','order_will_be_shown','Your order code will be shown','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2350,0,'en','plugins/ecommerce/ecommerce','weight_unit','Unit of weight','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2351,0,'en','plugins/ecommerce/ecommerce','height_unit','Unit length / height','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2352,0,'en','plugins/ecommerce/ecommerce','theme_options.name','Ecommerce','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2353,0,'en','plugins/ecommerce/ecommerce','theme_options.description','Theme options for Ecommerce','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2354,0,'en','plugins/ecommerce/ecommerce','theme_options.number_products_per_page','Number of products per page','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2355,0,'en','plugins/ecommerce/ecommerce','theme_options.number_of_cross_sale_product','Number of cross sale products in product detail page','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2356,0,'en','plugins/ecommerce/ecommerce','theme_options.max_price_filter','Maximum price to filter','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2357,0,'en','plugins/ecommerce/ecommerce','theme_options.logo_in_the_checkout_page','Logo in the checkout page (Default is the main logo)','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2358,0,'en','plugins/ecommerce/ecommerce','theme_options.logo_in_invoices','Logo in invoices (Default is the main logo)','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2359,0,'en','plugins/ecommerce/ecommerce','basic_settings','Basic settings','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2360,0,'en','plugins/ecommerce/ecommerce','advanced_settings','Advanced settings','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2361,0,'en','plugins/ecommerce/email','customer_new_order_title','Order confirmation','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2362,0,'en','plugins/ecommerce/email','customer_new_order_description','Send email confirmation to customer when an order placed','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2363,0,'en','plugins/ecommerce/email','order_cancellation_title','Order cancellation','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2364,0,'en','plugins/ecommerce/email','order_cancellation_description','Send to custom when they cancelled order','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2365,0,'en','plugins/ecommerce/email','delivery_confirmation_title','Delivering confirmation','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2366,0,'en','plugins/ecommerce/email','delivery_confirmation_description','Send to customer when order is delivering','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2367,0,'en','plugins/ecommerce/email','admin_new_order_title','Notice about new order','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2368,0,'en','plugins/ecommerce/email','admin_new_order_description','Send to administrators when an order placed','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2369,0,'en','plugins/ecommerce/email','order_confirmation_title','Order confirmation','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2370,0,'en','plugins/ecommerce/email','order_confirmation_description','Send to customer when they order was confirmed by admins','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2371,0,'en','plugins/ecommerce/email','payment_confirmation_title','Payment confirmation','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2372,0,'en','plugins/ecommerce/email','payment_confirmation_description','Send to customer when their payment was confirmed','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2373,0,'en','plugins/ecommerce/email','order_recover_title','Incomplete order','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2374,0,'en','plugins/ecommerce/email','order_recover_description','Send to custom to remind them about incomplete orders','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2375,0,'en','plugins/ecommerce/email','view_order','View order','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2376,0,'en','plugins/ecommerce/email','link_go_to_our_shop','or <a href=\":link\">Go to our shop</a>','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2377,0,'en','plugins/ecommerce/email','order_number','Order number: <strong>:order_id</strong>','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2378,0,'en','plugins/ecommerce/email','order_information','Order information:','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2379,0,'en','plugins/ecommerce/export','products.name','Export products','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2380,0,'en','plugins/ecommerce/export','products.title','Export Products (CSV)','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2381,0,'en','plugins/ecommerce/export','products.total_products','Total products','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2382,0,'en','plugins/ecommerce/export','products.total_variations','Total variations','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2383,0,'en','plugins/ecommerce/export','start_export','Start export','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2384,0,'en','plugins/ecommerce/export','exporting','Exporting...','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2385,0,'en','plugins/ecommerce/export','export','Export','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2386,0,'en','plugins/ecommerce/flash-sale','name','Flash sales','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2387,0,'en','plugins/ecommerce/flash-sale','create','New flash sale','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2388,0,'en','plugins/ecommerce/flash-sale','edit','Edit flash sale','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2389,0,'en','plugins/ecommerce/flash-sale','products','Products','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2390,0,'en','plugins/ecommerce/order','statuses.pending','Pending','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2391,0,'en','plugins/ecommerce/order','statuses.processing','Processing','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2392,0,'en','plugins/ecommerce/order','statuses.completed','Completed','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2393,0,'en','plugins/ecommerce/order','statuses.canceled','Canceled','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2394,0,'en','plugins/ecommerce/order','menu','Orders','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2395,0,'en','plugins/ecommerce/order','create','Create an order','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2396,0,'en','plugins/ecommerce/order','cancel_error','The order is delivering or completed','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2397,0,'en','plugins/ecommerce/order','cancel_success','You do cancel the order successful','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2398,0,'en','plugins/ecommerce/order','incomplete_order','Incomplete orders','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2399,0,'en','plugins/ecommerce/order','order_id','Order ID','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2400,0,'en','plugins/ecommerce/order','product_id','Product ID','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2401,0,'en','plugins/ecommerce/order','customer_label','Customer','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2402,0,'en','plugins/ecommerce/order','tax_amount','Tax Amount','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2403,0,'en','plugins/ecommerce/order','shipping_amount','Shipping amount','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2404,0,'en','plugins/ecommerce/order','payment_method','Payment method','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2405,0,'en','plugins/ecommerce/order','payment_status_label','Payment status','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2406,0,'en','plugins/ecommerce/order','manage_orders','Manage orders','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2407,0,'en','plugins/ecommerce/order','order_intro_description','Once your store has orders, this is where you will process and track those orders.','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2408,0,'en','plugins/ecommerce/order','create_new_order','Create a new order','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2409,0,'en','plugins/ecommerce/order','manage_incomplete_orders','Manage incomplete orders','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2410,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.','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2411,0,'en','plugins/ecommerce/order','invoice_for_order','Invoice for order','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2412,0,'en','plugins/ecommerce/order','created','Created','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2413,0,'en','plugins/ecommerce/order','invoice','Invoice','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2414,0,'en','plugins/ecommerce/order','return','Return','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2415,0,'en','plugins/ecommerce/order','total_refund_amount','Total refund amount','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2416,0,'en','plugins/ecommerce/order','total_amount_can_be_refunded','Total amount can be refunded','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2417,0,'en','plugins/ecommerce/order','refund_reason','Refund reason (optional)','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2418,0,'en','plugins/ecommerce/order','products','product(s)','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2419,0,'en','plugins/ecommerce/order','default','Default','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2420,0,'en','plugins/ecommerce/order','system','System','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2421,0,'en','plugins/ecommerce/order','new_order_from','New order :order_id from :customer','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2422,0,'en','plugins/ecommerce/order','confirmation_email_was_sent_to_customer','The email confirmation was sent to customer','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2423,0,'en','plugins/ecommerce/order','address_name_required','The name field is required.','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2424,0,'en','plugins/ecommerce/order','address_phone_required','The phone field is required.','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2425,0,'en','plugins/ecommerce/order','address_email_required','The email field is required.','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2426,0,'en','plugins/ecommerce/order','address_email_unique','The customer with that email is existed, please choose other email or login with this email!','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2427,0,'en','plugins/ecommerce/order','address_state_required','The state field is required.','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2428,0,'en','plugins/ecommerce/order','address_city_required','The city field is required.','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2429,0,'en','plugins/ecommerce/order','address_country_required','The country field is required.','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2430,0,'en','plugins/ecommerce/order','address_address_required','The address field is required.','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2431,0,'en','plugins/ecommerce/order','create_order_from_payment_page','Order was created from checkout page','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2432,0,'en','plugins/ecommerce/order','order_was_verified_by','Order was verified by %user_name%','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2433,0,'en','plugins/ecommerce/order','new_order','New order :order_id','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2434,0,'en','plugins/ecommerce/order','payment_was_confirmed_by','Payment was confirmed (amount :money) by %user_name%','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2435,0,'en','plugins/ecommerce/order','edit_order','Edit order :code','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2436,0,'en','plugins/ecommerce/order','confirm_order_success','Confirm order successfully!','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2437,0,'en','plugins/ecommerce/order','error_when_sending_email','There is an error when sending email','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2438,0,'en','plugins/ecommerce/order','sent_confirmation_email_success','Sent confirmation email successfully!','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2439,0,'en','plugins/ecommerce/order','order_was_sent_to_shipping_team','Order was sent to shipping team','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2440,0,'en','plugins/ecommerce/order','by_username','by %user_name%','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2441,0,'en','plugins/ecommerce/order','shipping_was_created_from','Shipping was created from order %order_id%','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2442,0,'en','plugins/ecommerce/order','shipping_was_canceled_success','Shipping was cancelled successfully!','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2443,0,'en','plugins/ecommerce/order','shipping_was_canceled_by','Shipping was cancelled by %user_name%','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2444,0,'en','plugins/ecommerce/order','update_shipping_address_success','Update shipping address successfully!','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2445,0,'en','plugins/ecommerce/order','order_was_canceled_by','Order was cancelled by %user_name%','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2446,0,'en','plugins/ecommerce/order','confirm_payment_success','Confirm payment successfully!','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2447,0,'en','plugins/ecommerce/order','refund_amount_invalid','Refund amount must be lower or equal :price','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2448,0,'en','plugins/ecommerce/order','number_of_products_invalid','Number of products refund is not valid!','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2449,0,'en','plugins/ecommerce/order','cannot_found_payment_for_this_order','Cannot found payment for this order!','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2450,0,'en','plugins/ecommerce/order','refund_success_with_price','Refund success :price','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2451,0,'en','plugins/ecommerce/order','refund_success','Refund successfully!','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2452,0,'en','plugins/ecommerce/order','order_is_not_existed','Order is not existed!','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2453,0,'en','plugins/ecommerce/order','reorder','Reorder','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2454,0,'en','plugins/ecommerce/order','sent_email_incomplete_order_success','Sent email to remind about incomplete order successfully!','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2455,0,'en','plugins/ecommerce/order','applied_coupon_success','Applied coupon \":code\" successfully!','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2456,0,'en','plugins/ecommerce/order','new_order_notice','You have <span class=\"bold\">:count</span> New Order(s)','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2457,0,'en','plugins/ecommerce/order','view_all','View all','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2458,0,'en','plugins/ecommerce/order','cancel_order','Cancel order','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2459,0,'en','plugins/ecommerce/order','order_canceled','Order canceled','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2460,0,'en','plugins/ecommerce/order','order_was_canceled_at','Order was canceled at','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2461,0,'en','plugins/ecommerce/order','completed','Completed','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2462,0,'en','plugins/ecommerce/order','uncompleted','Uncompleted','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2463,0,'en','plugins/ecommerce/order','sku','SKU','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2464,0,'en','plugins/ecommerce/order','warehouse','Warehouse','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2465,0,'en','plugins/ecommerce/order','sub_amount','Sub amount','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2466,0,'en','plugins/ecommerce/order','coupon_code','Coupon code: \":code\"','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2467,0,'en','plugins/ecommerce/order','shipping_fee','Shipping fee','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2468,0,'en','plugins/ecommerce/order','tax','Tax','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2469,0,'en','plugins/ecommerce/order','refunded_amount','Refunded amount','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2470,0,'en','plugins/ecommerce/order','amount_received','The amount actually received','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2471,0,'en','plugins/ecommerce/order','download_invoice','Download invoice','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2472,0,'en','plugins/ecommerce/order','print_invoice','Print invoice','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2473,0,'en','plugins/ecommerce/order','add_note','Add note...','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2474,0,'en','plugins/ecommerce/order','order_was_confirmed','Order was confirmed','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2475,0,'en','plugins/ecommerce/order','confirm_order','Confirm order','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2476,0,'en','plugins/ecommerce/order','confirm','Confirm','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2477,0,'en','plugins/ecommerce/order','order_was_canceled','Order was canceled','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2478,0,'en','plugins/ecommerce/order','pending_payment','Pending payment','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2479,0,'en','plugins/ecommerce/order','payment_was_accepted','Payment :money was accepted','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2480,0,'en','plugins/ecommerce/order','payment_was_refunded','Payment was refunded','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2481,0,'en','plugins/ecommerce/order','confirm_payment','Confirm payment','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2482,0,'en','plugins/ecommerce/order','refund','Refund','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2483,0,'en','plugins/ecommerce/order','all_products_are_not_delivered','All products are not delivered','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2484,0,'en','plugins/ecommerce/order','delivery','Delivery','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2485,0,'en','plugins/ecommerce/order','history','History','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2486,0,'en','plugins/ecommerce/order','order_number','Order number','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2487,0,'en','plugins/ecommerce/order','from','from','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2488,0,'en','plugins/ecommerce/order','status','Status','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2489,0,'en','plugins/ecommerce/order','successfully','Successfully','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2490,0,'en','plugins/ecommerce/order','transaction_type','Transaction\'s type','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2491,0,'en','plugins/ecommerce/order','staff','Staff','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2492,0,'en','plugins/ecommerce/order','refund_date','Refund date','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2493,0,'en','plugins/ecommerce/order','n_a','N\\A','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2494,0,'en','plugins/ecommerce/order','payment_date','Payment date','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2495,0,'en','plugins/ecommerce/order','payment_gateway','Payment gateway','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2496,0,'en','plugins/ecommerce/order','transaction_amount','Transaction amount','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2497,0,'en','plugins/ecommerce/order','resend','Resend','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2498,0,'en','plugins/ecommerce/order','default_store','Default store','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2499,0,'en','plugins/ecommerce/order','update_address','Update address','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2500,0,'en','plugins/ecommerce/order','have_an_account_already','Have an account already','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2501,0,'en','plugins/ecommerce/order','dont_have_an_account_yet','Don\'t have an account yet','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2502,0,'en','plugins/ecommerce/order','mark_payment_as_confirmed','Mark <span>:method</span> as confirmed','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2503,0,'en','plugins/ecommerce/order','resend_order_confirmation','Resend order confirmation','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2504,0,'en','plugins/ecommerce/order','resend_order_confirmation_description','Confirmation email will be sent to <strong>:email</strong>?','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2505,0,'en','plugins/ecommerce/order','send','Send','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2506,0,'en','plugins/ecommerce/order','update','Update','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2507,0,'en','plugins/ecommerce/order','cancel_shipping_confirmation','Cancel shipping confirmation?','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2508,0,'en','plugins/ecommerce/order','cancel_shipping_confirmation_description','Cancel shipping confirmation?','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2509,0,'en','plugins/ecommerce/order','cancel_order_confirmation','Cancel order confirmation?','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2510,0,'en','plugins/ecommerce/order','cancel_order_confirmation_description','Are you sure you want to cancel this order? This action cannot rollback','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2511,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','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2512,0,'en','plugins/ecommerce/order','save_note','Save note','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2513,0,'en','plugins/ecommerce/order','order_note','Order note','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2514,0,'en','plugins/ecommerce/order','order_note_placeholder','Note about order, ex: time or shipping instruction.','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2515,0,'en','plugins/ecommerce/order','order_amount','Order amount','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2516,0,'en','plugins/ecommerce/order','additional_information','Additional information','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2517,0,'en','plugins/ecommerce/order','notice_about_incomplete_order','Notice about incomplete order','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2518,0,'en','plugins/ecommerce/order','notice_about_incomplete_order_description','Remind email about uncompleted order will be send to <strong>:email</strong>?','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2519,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.','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2520,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:','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2521,0,'en','plugins/ecommerce/order','send_an_email_to_recover_this_order','Send an email to customer to recover this order','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2522,0,'en','plugins/ecommerce/order','see_maps','See maps','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2523,0,'en','plugins/ecommerce/order','one_or_more_products_dont_have_enough_quantity','One or more products don\'t have enough quantity!','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2524,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.','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2525,0,'en','plugins/ecommerce/order','payment_info','Payment Info','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2526,0,'en','plugins/ecommerce/order','payment_method_refund_automatic','Your customer will be refunded using :method automatically.','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2527,0,'en','plugins/ecommerce/order','order','Order','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2528,0,'en','plugins/ecommerce/order','order_information','Order information','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2529,0,'en','plugins/ecommerce/order','create_a_new_product','Create a new product','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2530,0,'en','plugins/ecommerce/order','out_of_stock','Out of stock','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2531,0,'en','plugins/ecommerce/order','products_available','product(s) available','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2532,0,'en','plugins/ecommerce/order','no_products_found','No products found!','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2533,0,'en','plugins/ecommerce/order','note','Note','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2534,0,'en','plugins/ecommerce/order','note_for_order','Note for order...','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2535,0,'en','plugins/ecommerce/order','amount','Amount','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2536,0,'en','plugins/ecommerce/order','add_discount','Add discount','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2537,0,'en','plugins/ecommerce/order','discount','Discount','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2538,0,'en','plugins/ecommerce/order','add_shipping_fee','Add shipping fee','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2539,0,'en','plugins/ecommerce/order','shipping','Shipping','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2540,0,'en','plugins/ecommerce/order','total_amount','Total amount','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2541,0,'en','plugins/ecommerce/order','confirm_payment_and_create_order','Confirm payment and create order','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2542,0,'en','plugins/ecommerce/order','paid','Paid','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2543,0,'en','plugins/ecommerce/order','pay_later','Pay later','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2544,0,'en','plugins/ecommerce/order','customer_information','Customer information','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2545,0,'en','plugins/ecommerce/order','create_new_customer','Create new customer','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2546,0,'en','plugins/ecommerce/order','no_customer_found','No customer found!','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2547,0,'en','plugins/ecommerce/order','customer','Customer','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2548,0,'en','plugins/ecommerce/order','orders','order(s)','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2549,0,'en','plugins/ecommerce/order','shipping_address','Shipping Address','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2550,0,'en','plugins/ecommerce/order','see_on_maps','See on maps','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2551,0,'en','plugins/ecommerce/order','name','Name','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2552,0,'en','plugins/ecommerce/order','price','Price','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2553,0,'en','plugins/ecommerce/order','sku_optional','SKU (optional)','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2554,0,'en','plugins/ecommerce/order','with_storehouse_management','With storehouse management?','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2555,0,'en','plugins/ecommerce/order','quantity','Quantity','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2556,0,'en','plugins/ecommerce/order','allow_customer_checkout_when_this_product_out_of_stock','Allow customer checkout when this product out of stock?','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2557,0,'en','plugins/ecommerce/order','address','Address','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2558,0,'en','plugins/ecommerce/order','phone','Phone','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2559,0,'en','plugins/ecommerce/order','country','Country','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2560,0,'en','plugins/ecommerce/order','state','State','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2561,0,'en','plugins/ecommerce/order','city','City','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2562,0,'en','plugins/ecommerce/order','zip_code','Zip code','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2563,0,'en','plugins/ecommerce/order','discount_based_on','Discount based on','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2564,0,'en','plugins/ecommerce/order','or_coupon_code','Or coupon code','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2565,0,'en','plugins/ecommerce/order','description','Description','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2566,0,'en','plugins/ecommerce/order','how_to_select_configured_shipping','How to select configured shipping?','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2567,0,'en','plugins/ecommerce/order','please_add_customer_information_with_the_complete_shipping_address_to_see_the_configured_shipping_rates','Please add customer information with the complete shipping address to see the configured shipping rates','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2568,0,'en','plugins/ecommerce/order','free_shipping','Free shipping','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2569,0,'en','plugins/ecommerce/order','custom','Custom','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2570,0,'en','plugins/ecommerce/order','email','Email','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2571,0,'en','plugins/ecommerce/order','create_order','Create order','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2572,0,'en','plugins/ecommerce/order','close','Close','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2573,0,'en','plugins/ecommerce/order','confirm_payment_is_paid_for_this_order','Confirm payment is paid for this order','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2574,0,'en','plugins/ecommerce/order','payment_status_of_the_order_is_paid_once_the_order_has_been_created_you_cannot_change_the_payment_method_or_status','Payment status of the order is Paid. Once the order has been created, you cannot change the payment method or status','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2575,0,'en','plugins/ecommerce/order','select_payment_method','Select payment method','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2576,0,'en','plugins/ecommerce/order','cash_on_delivery_cod','Cash on delivery (COD)','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2577,0,'en','plugins/ecommerce/order','bank_transfer','Bank transfer','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2578,0,'en','plugins/ecommerce/order','paid_amount','Paid amount','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2579,0,'en','plugins/ecommerce/order','confirm_that_payment_for_this_order_will_be_paid_later','Confirm that payment for this order will be paid later','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2580,0,'en','plugins/ecommerce/order','payment_status_of_the_order_is_pending_once_the_order_has_been_created_you_cannot_change_the_payment_method_or_status','Payment status of the order is Pending. Once the order has been created, you cannot change the payment method or status','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2581,0,'en','plugins/ecommerce/order','pending_amount','Pending amount','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2582,0,'en','plugins/ecommerce/order','update_email','Update email','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2583,0,'en','plugins/ecommerce/order','save','Save','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2584,0,'en','plugins/ecommerce/order','cancel','Cancel','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2585,0,'en','plugins/ecommerce/order','create_a_new_order','Create a new order','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2586,0,'en','plugins/ecommerce/order','search_or_create_new_product','Search or create a new product','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2587,0,'en','plugins/ecommerce/order','search_or_create_new_customer','Search or create a new customer','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2588,0,'en','plugins/ecommerce/order','discount_description','Discount description','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2589,0,'en','plugins/ecommerce/order','cant_select_out_of_stock_product','Cannot select out of stock product!','2022-04-20 19:54:48','2022-04-20 19:55:14'),(2590,0,'en','plugins/ecommerce/payment','name','Payments','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2591,0,'en','plugins/ecommerce/payment','payment_method','Payment methods','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2592,0,'en','plugins/ecommerce/payment','view_payment','View payment #','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2593,0,'en','plugins/ecommerce/payment','charge_id','Charge ID','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2594,0,'en','plugins/ecommerce/payment','amount','Amount','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2595,0,'en','plugins/ecommerce/payment','currency','Currency','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2596,0,'en','plugins/ecommerce/payment','user','User','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2597,0,'en','plugins/ecommerce/payment','paypal_name_required','PayPal\'s name is required!','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2598,0,'en','plugins/ecommerce/payment','paypal_name_max','PayPal\'s name is too long!','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2599,0,'en','plugins/ecommerce/payment','stripe_name_required','Stripe\'s name is required!','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2600,0,'en','plugins/ecommerce/payment','stripe_name_max','Stripe\'s name is too long!','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2601,0,'en','plugins/ecommerce/payment','status','Status','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2602,0,'en','plugins/ecommerce/payment','enabled','Enabled','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2603,0,'en','plugins/ecommerce/payment','disabled','Disabled','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2604,0,'en','plugins/ecommerce/payment','client_id','Client ID','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2605,0,'en','plugins/ecommerce/payment','client_secret','Client Secret','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2606,0,'en','plugins/ecommerce/payment','mode','Mode','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2607,0,'en','plugins/ecommerce/payment','sandbox','Sandbox','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2608,0,'en','plugins/ecommerce/payment','live','Live','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2609,0,'en','plugins/ecommerce/payment','enable_payment_log','Enable Payment Log','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2610,0,'en','plugins/ecommerce/payment','yes','Yes','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2611,0,'en','plugins/ecommerce/payment','no','No','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2612,0,'en','plugins/ecommerce/payment','client_key','Client Key','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2613,0,'en','plugins/ecommerce/payment','stripe','Stripe','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2614,0,'en','plugins/ecommerce/payment','paypal','PayPal','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2615,0,'en','plugins/ecommerce/payment','action','Action','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2616,0,'en','plugins/ecommerce/payment','go_back','Go back','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2617,0,'en','plugins/ecommerce/payment','view','View','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2618,0,'en','plugins/ecommerce/payment','cash_on_delivery','Cash on delivery (COD)','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2619,0,'en','plugins/ecommerce/payment','via_bank_transfer','Via bank transfer','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2620,0,'en','plugins/ecommerce/payment','payment_via_cart','Payment via card','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2621,0,'en','plugins/ecommerce/payment','card_number','Card number','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2622,0,'en','plugins/ecommerce/payment','full_name','Full name','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2623,0,'en','plugins/ecommerce/payment','payment_via_paypal','Payment via PayPal','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2624,0,'en','plugins/ecommerce/payment','mm_yy','MM/YY','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2625,0,'en','plugins/ecommerce/payment','cvc','CVC','2022-04-20 19:54:48','2022-04-20 19:55:15'),(2626,0,'en','plugins/ecommerce/payment','details','Details','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2627,0,'en','plugins/ecommerce/payment','payer_name','Payer Name','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2628,0,'en','plugins/ecommerce/payment','email','Email','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2629,0,'en','plugins/ecommerce/payment','phone','Phone','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2630,0,'en','plugins/ecommerce/payment','country','Country','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2631,0,'en','plugins/ecommerce/payment','shipping_address','Shipping Address','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2632,0,'en','plugins/ecommerce/payment','payment_details','Payment Details','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2633,0,'en','plugins/ecommerce/payment','card','Card','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2634,0,'en','plugins/ecommerce/payment','address','Address','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2635,0,'en','plugins/ecommerce/payment','could_not_get_stripe_token','Could not get Stripe token to make a charge.','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2636,0,'en','plugins/ecommerce/payment','new_payment','Payment for order :id','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2637,0,'en','plugins/ecommerce/payment','payment_id','Payment ID','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2638,0,'en','plugins/ecommerce/prices','name','Price','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2639,0,'en','plugins/ecommerce/prices','create','New price','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2640,0,'en','plugins/ecommerce/prices','edit','Edit price','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2641,0,'en','plugins/ecommerce/prices','list','List price','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2642,0,'en','plugins/ecommerce/product-attribute-sets','name','Product attribute sets','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2643,0,'en','plugins/ecommerce/product-attribute-sets','create','New product attribute set','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2644,0,'en','plugins/ecommerce/product-attribute-sets','edit','Edit product attribute set','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2645,0,'en','plugins/ecommerce/product-attribute-sets','visible_in_categories','Visible in categories','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2646,0,'en','plugins/ecommerce/product-attribute-sets','product_with_more_version','Product with more version','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2647,0,'en','plugins/ecommerce/product-attribute-sets','create_a_version','Create a version','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2648,0,'en','plugins/ecommerce/product-attribute-sets','enabled','Enabled','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2649,0,'en','plugins/ecommerce/product-attribute-sets','attributes','Attributes','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2650,0,'en','plugins/ecommerce/product-attribute-sets','price','Price','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2651,0,'en','plugins/ecommerce/product-attribute-sets','edit_btn','Edit','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2652,0,'en','plugins/ecommerce/product-attribute-sets','remove_btn','Remove','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2653,0,'en','plugins/ecommerce/product-attribute-sets','product','Product','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2654,0,'en','plugins/ecommerce/product-attribute-sets','back_to_product','Back to product','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2655,0,'en','plugins/ecommerce/product-attribute-sets','save','Save','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2656,0,'en','plugins/ecommerce/product-attribute-sets','other_existing_versions','Other existing versions','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2657,0,'en','plugins/ecommerce/product-attribute-sets','version_information','Version information','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2658,0,'en','plugins/ecommerce/product-attribute-sets','add_rule','Add rule','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2659,0,'en','plugins/ecommerce/product-attribute-sets','rules','Rules','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2660,0,'en','plugins/ecommerce/product-attribute-sets','pricing','Pricing','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2661,0,'en','plugins/ecommerce/product-attribute-sets','sale_price','Sale price','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2662,0,'en','plugins/ecommerce/product-attribute-sets','sale_type','Sale type','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2663,0,'en','plugins/ecommerce/product-attribute-sets','no_sale_price','No sale price','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2664,0,'en','plugins/ecommerce/product-attribute-sets','always_on_sale','Always on sale','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2665,0,'en','plugins/ecommerce/product-attribute-sets','limited_time','Limited time','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2666,0,'en','plugins/ecommerce/product-attribute-sets','from','From','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2667,0,'en','plugins/ecommerce/product-attribute-sets','to','To','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2668,0,'en','plugins/ecommerce/product-attribute-sets','storehouse','Storehouse','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2669,0,'en','plugins/ecommerce/product-attribute-sets','no_storehouse_management','No storehouse management','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2670,0,'en','plugins/ecommerce/product-attribute-sets','with_storehouse_management','With storehouse management','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2671,0,'en','plugins/ecommerce/product-attribute-sets','quantity','Quantity','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2672,0,'en','plugins/ecommerce/product-attribute-sets','allow_customer_checkout_out_of_stock','Allow customer checkout when this product out of stock','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2673,0,'en','plugins/ecommerce/product-attribute-sets','shipping','Shipping','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2674,0,'en','plugins/ecommerce/product-attribute-sets','length','Length','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2675,0,'en','plugins/ecommerce/product-attribute-sets','wide','Wide','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2676,0,'en','plugins/ecommerce/product-attribute-sets','height','Height','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2677,0,'en','plugins/ecommerce/product-attribute-sets','weight','Weight','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2678,0,'en','plugins/ecommerce/product-attribute-sets','version_images','Version images','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2679,0,'en','plugins/ecommerce/product-attribute-sets','add_new_image','Add new image','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2680,0,'en','plugins/ecommerce/product-attribute-sets','attribute_set','Attribute set','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2681,0,'en','plugins/ecommerce/product-attribute-sets','value','Value','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2682,0,'en','plugins/ecommerce/product-attribute-sets','dropdown_swatch','Dropdown Swatch','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2683,0,'en','plugins/ecommerce/product-attribute-sets','visual_swatch','Visual Swatch','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2684,0,'en','plugins/ecommerce/product-attribute-sets','text_swatch','Text Swatch','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2685,0,'en','plugins/ecommerce/product-attribute-sets','display_layout','Display Layout','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2686,0,'en','plugins/ecommerce/product-attribute-sets','searchable','Searchable','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2687,0,'en','plugins/ecommerce/product-attribute-sets','comparable','Comparable','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2688,0,'en','plugins/ecommerce/product-attribute-sets','use_in_product_listing','Used in product listing','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2689,0,'en','plugins/ecommerce/product-attribute-sets','attributes_list','Attributes list','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2690,0,'en','plugins/ecommerce/product-attribute-sets','is_default','Is default?','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2691,0,'en','plugins/ecommerce/product-attribute-sets','title','Title','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2692,0,'en','plugins/ecommerce/product-attribute-sets','slug','Slug','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2693,0,'en','plugins/ecommerce/product-attribute-sets','color','Color','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2694,0,'en','plugins/ecommerce/product-attribute-sets','image','Image','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2695,0,'en','plugins/ecommerce/product-attribute-sets','remove','Remove','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2696,0,'en','plugins/ecommerce/product-attribute-sets','add_new_attribute','Add new attribute','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2697,0,'en','plugins/ecommerce/product-attribute-sets','use_image_from_product_variation','Use image from product variation (for Visual Swatch only)','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2698,0,'en','plugins/ecommerce/product-attributes','name','Product attributes','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2699,0,'en','plugins/ecommerce/product-attributes','create','New product attribute','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2700,0,'en','plugins/ecommerce/product-attributes','edit','Edit product attribute','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2701,0,'en','plugins/ecommerce/product-attributes','intro.title','Manage product attributes','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2702,0,'en','plugins/ecommerce/product-attributes','intro.description','Product attribute such as color, width, height ...','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2703,0,'en','plugins/ecommerce/product-attributes','intro.button_text','Create product attribute','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2704,0,'en','plugins/ecommerce/product-categories','name','Product categories','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2705,0,'en','plugins/ecommerce/product-categories','create','Create new product category','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2706,0,'en','plugins/ecommerce/product-categories','edit','Edit product category','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2707,0,'en','plugins/ecommerce/product-categories','list','List product categories','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2708,0,'en','plugins/ecommerce/product-categories','none','None','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2709,0,'en','plugins/ecommerce/product-categories','menu','Product categories','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2710,0,'en','plugins/ecommerce/product-categories','intro.title','Manage product categories','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2711,0,'en','plugins/ecommerce/product-categories','intro.description','Such as clothes, shoes, bags, jewelry ...','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2712,0,'en','plugins/ecommerce/product-categories','intro.button_text','Create product category','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2713,0,'en','plugins/ecommerce/product-categories','total_products','Total products: :total','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2714,0,'en','plugins/ecommerce/product-collections','name','Product collections','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2715,0,'en','plugins/ecommerce/product-collections','create','New product collection','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2716,0,'en','plugins/ecommerce/product-collections','edit','Edit product collection','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2717,0,'en','plugins/ecommerce/product-collections','slug_help_block','Label key: <code>:slug</code>. We will use this key for filter.','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2718,0,'en','plugins/ecommerce/product-collections','intro.title','Manage product collections','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2719,0,'en','plugins/ecommerce/product-collections','intro.description','Group your products into collections to make it easier for customers to find them by category.','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2720,0,'en','plugins/ecommerce/product-collections','intro.button_text','Create product collection','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2721,0,'en','plugins/ecommerce/product-label','name','Product labels','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2722,0,'en','plugins/ecommerce/product-label','create','New product label','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2723,0,'en','plugins/ecommerce/product-label','edit','Edit product label','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2724,0,'en','plugins/ecommerce/product-label','color','Color','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2725,0,'en','plugins/ecommerce/product-label','color_placeholder','Example: #f0f0f0','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2726,0,'en','plugins/ecommerce/product-tag','name','Product tags','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2727,0,'en','plugins/ecommerce/product-tag','create','New product tag','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2728,0,'en','plugins/ecommerce/product-tag','edit','Edit product tag','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2729,0,'en','plugins/ecommerce/products','name','Products','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2730,0,'en','plugins/ecommerce/products','create','New product','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2731,0,'en','plugins/ecommerce/products','edit','Edit product - :name','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2732,0,'en','plugins/ecommerce/products','form.name','Name','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2733,0,'en','plugins/ecommerce/products','form.name_placeholder','Product\'s name (Maximum 120 characters)','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2734,0,'en','plugins/ecommerce/products','form.description','Description','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2735,0,'en','plugins/ecommerce/products','form.description_placeholder','Short description for product (Maximum 400 characters)','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2736,0,'en','plugins/ecommerce/products','form.categories','Categories','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2737,0,'en','plugins/ecommerce/products','form.content','Content','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2738,0,'en','plugins/ecommerce/products','form.price','Price','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2739,0,'en','plugins/ecommerce/products','form.quantity','Quantity','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2740,0,'en','plugins/ecommerce/products','form.brand','Brand','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2741,0,'en','plugins/ecommerce/products','form.width','Width','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2742,0,'en','plugins/ecommerce/products','form.height','Height','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2743,0,'en','plugins/ecommerce/products','form.weight','Weight','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2744,0,'en','plugins/ecommerce/products','form.date.end','From date','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2745,0,'en','plugins/ecommerce/products','form.date.start','To date','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2746,0,'en','plugins/ecommerce/products','form.image','Images','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2747,0,'en','plugins/ecommerce/products','form.collections','Product collections','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2748,0,'en','plugins/ecommerce/products','form.labels','Labels','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2749,0,'en','plugins/ecommerce/products','form.price_sale','Price sale','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2750,0,'en','plugins/ecommerce/products','form.product_type.title','Product type','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2751,0,'en','plugins/ecommerce/products','form.product','Product','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2752,0,'en','plugins/ecommerce/products','form.total','Total','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2753,0,'en','plugins/ecommerce/products','form.sub_total','Subtotal','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2754,0,'en','plugins/ecommerce/products','form.shipping_fee','Shipping fee','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2755,0,'en','plugins/ecommerce/products','form.discount','Discount','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2756,0,'en','plugins/ecommerce/products','form.options','Options','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2757,0,'en','plugins/ecommerce/products','form.shipping.height','Height','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2758,0,'en','plugins/ecommerce/products','form.shipping.length','Length','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2759,0,'en','plugins/ecommerce/products','form.shipping.title','Shipping','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2760,0,'en','plugins/ecommerce/products','form.shipping.weight','Weight','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2761,0,'en','plugins/ecommerce/products','form.shipping.wide','Wide','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2762,0,'en','plugins/ecommerce/products','form.stock.allow_order_when_out','Allow customer checkout when this product out of stock','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2763,0,'en','plugins/ecommerce/products','form.stock.in_stock','In stock','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2764,0,'en','plugins/ecommerce/products','form.stock.out_stock','Out stock','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2765,0,'en','plugins/ecommerce/products','form.stock.title','Stock status','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2766,0,'en','plugins/ecommerce/products','form.storehouse.no_storehouse','No storehouse management','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2767,0,'en','plugins/ecommerce/products','form.storehouse.storehouse','With storehouse management','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2768,0,'en','plugins/ecommerce/products','form.storehouse.title','Storehouse','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2769,0,'en','plugins/ecommerce/products','form.storehouse.quantity','Quantity','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2770,0,'en','plugins/ecommerce/products','form.tax','Tax','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2771,0,'en','plugins/ecommerce/products','form.is_default','Is default','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2772,0,'en','plugins/ecommerce/products','form.action','Action','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2773,0,'en','plugins/ecommerce/products','form.restock_quantity','Restock quantity','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2774,0,'en','plugins/ecommerce/products','form.remain','Remain','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2775,0,'en','plugins/ecommerce/products','form.choose_discount_period','Choose Discount Period','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2776,0,'en','plugins/ecommerce/products','form.cancel','Cancel','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2777,0,'en','plugins/ecommerce/products','form.no_results','No results!','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2778,0,'en','plugins/ecommerce/products','form.value','Value','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2779,0,'en','plugins/ecommerce/products','form.attribute_name','Attribute name','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2780,0,'en','plugins/ecommerce/products','form.add_more_attribute','Add more attribute','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2781,0,'en','plugins/ecommerce/products','form.continue','Continue','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2782,0,'en','plugins/ecommerce/products','form.add_new_attributes','Add new attributes','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2783,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.','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2784,0,'en','plugins/ecommerce/products','form.create_product_variations',':link to create product variations!','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2785,0,'en','plugins/ecommerce/products','form.tags','Tags','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2786,0,'en','plugins/ecommerce/products','form.write_some_tags','Write some tags','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2787,0,'en','plugins/ecommerce/products','form.variation_existed','This variation is existed.','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2788,0,'en','plugins/ecommerce/products','form.no_attributes_selected','No attributes selected!','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2789,0,'en','plugins/ecommerce/products','form.added_variation_success','Added variation successfully!','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2790,0,'en','plugins/ecommerce/products','form.updated_variation_success','Updated variation successfully!','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2791,0,'en','plugins/ecommerce/products','form.created_all_variation_success','Created all variations successfully!','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2792,0,'en','plugins/ecommerce/products','form.updated_product_attributes_success','Updated product attributes successfully!','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2793,0,'en','plugins/ecommerce/products','form.stock_status','Stock status','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2794,0,'en','plugins/ecommerce/products','form.auto_generate_sku','Auto generate SKU?','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2795,0,'en','plugins/ecommerce/products','form.featured_image','Featured image (optional)','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2796,0,'en','plugins/ecommerce/products','price','Price','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2797,0,'en','plugins/ecommerce/products','quantity','Quantity','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2798,0,'en','plugins/ecommerce/products','type','Type','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2799,0,'en','plugins/ecommerce/products','image','Thumbnail','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2800,0,'en','plugins/ecommerce/products','sku','SKU','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2801,0,'en','plugins/ecommerce/products','brand','Brand','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2802,0,'en','plugins/ecommerce/products','cannot_delete','Product could not be deleted','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2803,0,'en','plugins/ecommerce/products','product_deleted','Product deleted','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2804,0,'en','plugins/ecommerce/products','product_collections','Product collections','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2805,0,'en','plugins/ecommerce/products','products','Products','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2806,0,'en','plugins/ecommerce/products','menu','Products','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2807,0,'en','plugins/ecommerce/products','control.button_add_image','Add image','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2808,0,'en','plugins/ecommerce/products','price_sale','Sale price','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2809,0,'en','plugins/ecommerce/products','price_group_title','Manager product price','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2810,0,'en','plugins/ecommerce/products','store_house_group_title','Manager store house','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2811,0,'en','plugins/ecommerce/products','shipping_group_title','Manager shipping','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2812,0,'en','plugins/ecommerce/products','overview','Overview','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2813,0,'en','plugins/ecommerce/products','attributes','Attributes','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2814,0,'en','plugins/ecommerce/products','product_has_variations','Product has variations','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2815,0,'en','plugins/ecommerce/products','manage_products','Manage products','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2816,0,'en','plugins/ecommerce/products','add_new_product','Add a new product','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2817,0,'en','plugins/ecommerce/products','start_by_adding_new_product','Start by adding new products.','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2818,0,'en','plugins/ecommerce/products','edit_this_product','Edit this product','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2819,0,'en','plugins/ecommerce/products','delete','Delete','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2820,0,'en','plugins/ecommerce/products','related_products','Related products','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2821,0,'en','plugins/ecommerce/products','cross_selling_products','Cross-selling products','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2822,0,'en','plugins/ecommerce/products','up_selling_products','Up-selling products','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2823,0,'en','plugins/ecommerce/products','grouped_products','Grouped products','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2824,0,'en','plugins/ecommerce/products','search_products','Search products','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2825,0,'en','plugins/ecommerce/products','selected_products','Selected products','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2826,0,'en','plugins/ecommerce/products','edit_variation_item','Edit','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2827,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.','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2828,0,'en','plugins/ecommerce/products','save_changes','Save changes','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2829,0,'en','plugins/ecommerce/products','continue','Continue','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2830,0,'en','plugins/ecommerce/products','edit_attribute','Edit attribute','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2831,0,'en','plugins/ecommerce/products','select_attribute','Select attribute','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2832,0,'en','plugins/ecommerce/products','add_new_variation','Add new variation','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2833,0,'en','plugins/ecommerce/products','edit_variation','Edit variation','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2834,0,'en','plugins/ecommerce/products','generate_all_variations','Generate all variations','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2835,0,'en','plugins/ecommerce/products','generate_all_variations_confirmation','Are you sure you want to generate all variations for this product?','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2836,0,'en','plugins/ecommerce/products','delete_variation','Delete variation?','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2837,0,'en','plugins/ecommerce/products','delete_variation_confirmation','Are you sure you want to delete this variation? This action cannot be undo.','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2838,0,'en','plugins/ecommerce/products','delete_variations_confirmation','Are you sure you want to delete those variations? This action cannot be undo.','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2839,0,'en','plugins/ecommerce/products','product_create_validate_name_required','Please enter product\'s name','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2840,0,'en','plugins/ecommerce/products','product_create_validate_sale_price_max','The discount must be less than the original price','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2841,0,'en','plugins/ecommerce/products','product_create_validate_sale_price_required_if','Must enter a discount when you want to schedule a promotion','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2842,0,'en','plugins/ecommerce/products','product_create_validate_end_date_after','End date must be after start date','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2843,0,'en','plugins/ecommerce/products','product_create_validate_start_date_required_if','Discount start date cannot be left blank when scheduling is selected','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2844,0,'en','plugins/ecommerce/products','product_create_validate_sale_price','Discounts cannot be left blank when scheduling is selected','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2845,0,'en','plugins/ecommerce/products','stock_statuses.in_stock','In stock','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2846,0,'en','plugins/ecommerce/products','stock_statuses.out_of_stock','Out of stock','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2847,0,'en','plugins/ecommerce/products','stock_statuses.on_backorder','On backorder','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2848,0,'en','plugins/ecommerce/products','stock_status','Stock status','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2849,0,'en','plugins/ecommerce/products','processing','Processing...','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2850,0,'en','plugins/ecommerce/products','delete_selected_variations','Delete selected variations','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2851,0,'en','plugins/ecommerce/products','delete_variations','Delete variations','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2852,0,'en','plugins/ecommerce/products','category','Category','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2853,0,'en','plugins/ecommerce/products','product_price_flash_sale_warning','This product is in flash sale <strong>:name</strong> so its price is <strong>:price</strong>.','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2854,0,'en','plugins/ecommerce/products','product_price_discount_warning','This product is in discount <strong>:name</strong> so its price is <strong>:price</strong>.','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2855,0,'en','plugins/ecommerce/reports','name','Report','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2856,0,'en','plugins/ecommerce/reports','widget.order.title','Orders','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2857,0,'en','plugins/ecommerce/reports','count.revenue','Today revenue','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2858,0,'en','plugins/ecommerce/reports','count.orders','Today orders','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2859,0,'en','plugins/ecommerce/reports','count.products','Total products','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2860,0,'en','plugins/ecommerce/reports','count.customers','Total customers','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2861,0,'en','plugins/ecommerce/reports','product_name','Product name','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2862,0,'en','plugins/ecommerce/reports','quantity','Quantity','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2863,0,'en','plugins/ecommerce/reports','revenue_statistics','Revenue statistics','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2864,0,'en','plugins/ecommerce/reports','top_selling_products','Top Selling Products','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2865,0,'en','plugins/ecommerce/reports','ranges.today','Today','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2866,0,'en','plugins/ecommerce/reports','ranges.this_week','This week','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2867,0,'en','plugins/ecommerce/reports','ranges.last_7_days','Last 7 days','2022-04-20 19:54:49','2022-04-20 19:55:15'),(2868,0,'en','plugins/ecommerce/reports','ranges.last_30_days','Last 30 days','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2869,0,'en','plugins/ecommerce/reports','ranges.this_month','This month','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2870,0,'en','plugins/ecommerce/reports','ranges.this_year','This year','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2871,0,'en','plugins/ecommerce/reports','revenue_this_month','Revenue this month','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2872,0,'en','plugins/ecommerce/reports','order_processing_this_month','order(s) processing in this month','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2873,0,'en','plugins/ecommerce/reports','order_completed_this_month','order(s) completed in this month','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2874,0,'en','plugins/ecommerce/reports','product_will_be_out_of_stock','product(s) will be out of stock soon','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2875,0,'en','plugins/ecommerce/reports','product_out_of_stock','product(s) out of stock','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2876,0,'en','plugins/ecommerce/reports','sales_reports','Sales Reports','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2877,0,'en','plugins/ecommerce/reports','total_earnings','Total Earnings','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2878,0,'en','plugins/ecommerce/reports','recent_orders','Recent Orders','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2879,0,'en','plugins/ecommerce/reports','statistics','Statistics','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2880,0,'en','plugins/ecommerce/reports','items_earning_sales','Items Earning Sales: :value','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2881,0,'en','plugins/ecommerce/reports','revenue','Revenue','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2882,0,'en','plugins/ecommerce/reports','orders','Orders','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2883,0,'en','plugins/ecommerce/reports','products','Products','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2884,0,'en','plugins/ecommerce/reports','customers','Customers','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2885,0,'en','plugins/ecommerce/reports','earnings','Earnings','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2886,0,'en','plugins/ecommerce/reports','date_range_format_value','From :from to :to','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2887,0,'en','plugins/ecommerce/reports','select_range','Select Range','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2888,0,'en','plugins/ecommerce/review','name','Reviews','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2889,0,'en','plugins/ecommerce/review','add_review','Add review','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2890,0,'en','plugins/ecommerce/review','delete_review','Delete review','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2891,0,'en','plugins/ecommerce/review','create_review','Create Review','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2892,0,'en','plugins/ecommerce/review','please_select_rating','Please select rating','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2893,0,'en','plugins/ecommerce/review','comment','Comment','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2894,0,'en','plugins/ecommerce/review','approve','Approve','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2895,0,'en','plugins/ecommerce/review','approved','Approved','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2896,0,'en','plugins/ecommerce/review','disapprove','Disapprove','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2897,0,'en','plugins/ecommerce/review','disapproved','Disapproved','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2898,0,'en','plugins/ecommerce/review','product','Product','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2899,0,'en','plugins/ecommerce/review','user','User','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2900,0,'en','plugins/ecommerce/review','star','Star','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2901,0,'en','plugins/ecommerce/review','status','Status','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2902,0,'en','plugins/ecommerce/review','list_review','Customer reviews','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2903,0,'en','plugins/ecommerce/review','intro.title','Manage customer reviews','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2904,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.','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2905,0,'en','plugins/ecommerce/review','images','Images','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2906,0,'en','plugins/ecommerce/shipping','name','Shipping Rules','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2907,0,'en','plugins/ecommerce/shipping','shipping','Shipping','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2908,0,'en','plugins/ecommerce/shipping','title','Title','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2909,0,'en','plugins/ecommerce/shipping','amount','Amount','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2910,0,'en','plugins/ecommerce/shipping','enable','Enable','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2911,0,'en','plugins/ecommerce/shipping','enabled','Enabled','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2912,0,'en','plugins/ecommerce/shipping','disable','Disable','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2913,0,'en','plugins/ecommerce/shipping','disabled','Disabled','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2914,0,'en','plugins/ecommerce/shipping','create_shipping','Create a shipping','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2915,0,'en','plugins/ecommerce/shipping','edit_shipping','Edit shipping :code','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2916,0,'en','plugins/ecommerce/shipping','status','Status','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2917,0,'en','plugins/ecommerce/shipping','shipping_methods','Shipping methods','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2918,0,'en','plugins/ecommerce/shipping','create_shipping_method','Create shipping method','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2919,0,'en','plugins/ecommerce/shipping','edit_shipping_method','Edit shipping method','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2920,0,'en','plugins/ecommerce/shipping','add_shipping_region','Add shipping region','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2921,0,'en','plugins/ecommerce/shipping','country','Country','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2922,0,'en','plugins/ecommerce/shipping','state','State','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2923,0,'en','plugins/ecommerce/shipping','city','City','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2924,0,'en','plugins/ecommerce/shipping','address','Address','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2925,0,'en','plugins/ecommerce/shipping','phone','Phone','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2926,0,'en','plugins/ecommerce/shipping','email','Email','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2927,0,'en','plugins/ecommerce/shipping','zip_code','Zip code','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2928,0,'en','plugins/ecommerce/shipping','methods.default','Default','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2929,0,'en','plugins/ecommerce/shipping','statuses.not_approved','Not approved','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2930,0,'en','plugins/ecommerce/shipping','statuses.approved','Approved','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2931,0,'en','plugins/ecommerce/shipping','statuses.pending','Pending','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2932,0,'en','plugins/ecommerce/shipping','statuses.arrange_shipment','Arrange shipment','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2933,0,'en','plugins/ecommerce/shipping','statuses.ready_to_be_shipped_out','Ready to be shipped out','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2934,0,'en','plugins/ecommerce/shipping','statuses.picking','Picking','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2935,0,'en','plugins/ecommerce/shipping','statuses.delay_picking','Delay picking','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2936,0,'en','plugins/ecommerce/shipping','statuses.picked','Picked','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2937,0,'en','plugins/ecommerce/shipping','statuses.not_picked','Not picked','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2938,0,'en','plugins/ecommerce/shipping','statuses.delivering','Delivering','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2939,0,'en','plugins/ecommerce/shipping','statuses.delivered','Delivered','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2940,0,'en','plugins/ecommerce/shipping','statuses.not_delivered','Not delivered','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2941,0,'en','plugins/ecommerce/shipping','statuses.audited','Audited','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2942,0,'en','plugins/ecommerce/shipping','statuses.canceled','Canceled','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2943,0,'en','plugins/ecommerce/shipping','cod_statuses.pending','Pending','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2944,0,'en','plugins/ecommerce/shipping','cod_statuses.completed','Completed','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2945,0,'en','plugins/ecommerce/shipping','delete','Delete','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2946,0,'en','plugins/ecommerce/shipping','shipping_rules','Shipping Rules','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2947,0,'en','plugins/ecommerce/shipping','shipping_rules_description','Rules to calculate shipping fee.','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2948,0,'en','plugins/ecommerce/shipping','select_country','Select country','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2949,0,'en','plugins/ecommerce/shipping','add_shipping_rule','Add shipping rule','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2950,0,'en','plugins/ecommerce/shipping','delete_shipping_rate','Delete shipping rate for area','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2951,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?','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2952,0,'en','plugins/ecommerce/shipping','delete_shipping_area','Delete shipping area','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2953,0,'en','plugins/ecommerce/shipping','delete_shipping_area_confirmation','Are you sure you want to delete shipping area <strong class=\"region-item-label\"></strong>?','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2954,0,'en','plugins/ecommerce/shipping','add_shipping_fee_for_area','Add shipping fee for area','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2955,0,'en','plugins/ecommerce/shipping','confirm','Confirm','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2956,0,'en','plugins/ecommerce/shipping','save','Save','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2957,0,'en','plugins/ecommerce/shipping','greater_than','Greater than','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2958,0,'en','plugins/ecommerce/shipping','type','Type','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2959,0,'en','plugins/ecommerce/shipping','shipping_rule_name','Name of shipping rule','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2960,0,'en','plugins/ecommerce/shipping','shipping_fee','Shipping fee','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2961,0,'en','plugins/ecommerce/shipping','cancel','Cancel','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2962,0,'en','plugins/ecommerce/shipping','base_on_weight','Based on product\'s weight (:unit)','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2963,0,'en','plugins/ecommerce/shipping','base_on_price','Based on product\'s price','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2964,0,'en','plugins/ecommerce/shipping','shipment_canceled','Shipment was canceled','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2965,0,'en','plugins/ecommerce/shipping','at','At','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2966,0,'en','plugins/ecommerce/shipping','cash_on_delivery','Cash on delivery (COD)','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2967,0,'en','plugins/ecommerce/shipping','update_shipping_status','Update shipping status','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2968,0,'en','plugins/ecommerce/shipping','update_cod_status','Update COD status','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2969,0,'en','plugins/ecommerce/shipping','history','History','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2970,0,'en','plugins/ecommerce/shipping','shipment_information','Shipment information','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2971,0,'en','plugins/ecommerce/shipping','order_number','Order number','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2972,0,'en','plugins/ecommerce/shipping','shipping_method','Shipping method','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2973,0,'en','plugins/ecommerce/shipping','select_shipping_method','Select shipping method','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2974,0,'en','plugins/ecommerce/shipping','cod_status','COD status','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2975,0,'en','plugins/ecommerce/shipping','shipping_status','Shipping status','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2976,0,'en','plugins/ecommerce/shipping','customer_information','Customer information','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2977,0,'en','plugins/ecommerce/shipping','sku','SKU','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2978,0,'en','plugins/ecommerce/shipping','change_status_confirm_title','Confirm <span class=\"shipment-status-label\"></span> ?','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2979,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?','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2980,0,'en','plugins/ecommerce/shipping','accept','Accept','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2981,0,'en','plugins/ecommerce/shipping','weight_unit','Weight (:unit)','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2982,0,'en','plugins/ecommerce/shipping','updated_at','Last Update','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2983,0,'en','plugins/ecommerce/shipping','cod_amount','Cash on delivery amount (COD)','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2984,0,'en','plugins/ecommerce/shipping','cancel_shipping','Cancel shipping','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2985,0,'en','plugins/ecommerce/shipping','shipping_address','Shipping address','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2986,0,'en','plugins/ecommerce/shipping','packages','Packages','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2987,0,'en','plugins/ecommerce/shipping','edit','Edit','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2988,0,'en','plugins/ecommerce/shipping','fee','Fee','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2989,0,'en','plugins/ecommerce/shipping','note','Note','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2990,0,'en','plugins/ecommerce/shipping','finish','Finish','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2991,0,'en','plugins/ecommerce/shipping','shipping_fee_cod','Shipping fee/COD','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2992,0,'en','plugins/ecommerce/shipping','send_confirmation_email_to_customer','Send confirmation email to customer','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2993,0,'en','plugins/ecommerce/shipping','form_name','Name','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2994,0,'en','plugins/ecommerce/shipping','changed_shipping_status','Changed status of shipping to : :status . Updated by: %user_name%','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2995,0,'en','plugins/ecommerce/shipping','order_confirmed_by','Order confirmed by %user_name%','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2996,0,'en','plugins/ecommerce/shipping','shipping_canceled_by','Shipping is cancelled by %user_name%','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2997,0,'en','plugins/ecommerce/shipping','update_shipping_status_success','Update shipping status successfully!','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2998,0,'en','plugins/ecommerce/shipping','update_cod_status_success','Updated COD status of shipping successfully!','2022-04-20 19:54:50','2022-04-20 19:55:15'),(2999,0,'en','plugins/ecommerce/shipping','updated_cod_status_by','Updated COD status to :status . Updated by: %user_name%','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3000,0,'en','plugins/ecommerce/shipping','all','All','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3001,0,'en','plugins/ecommerce/shipping','error_when_adding_new_region','There is an error when adding new region!','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3002,0,'en','plugins/ecommerce/shipping','delivery','Delivery','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3003,0,'en','plugins/ecommerce/shipping','adjustment_price_of','Adjustment price of :key','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3004,0,'en','plugins/ecommerce/shipping','warehouse','Warehouse','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3005,0,'en','plugins/ecommerce/shipping','delivery_note','Delivery note','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3006,0,'en','plugins/ecommerce/shipping','shipments','Shipments','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3007,0,'en','plugins/ecommerce/shipping','order_id','Order ID','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3008,0,'en','plugins/ecommerce/shipping','not_available','Not available','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3009,0,'en','plugins/ecommerce/shipping','shipping_amount','Shipping Amount','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3010,0,'en','plugins/ecommerce/shipping','additional_shipment_information','Additional shipment information','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3011,0,'en','plugins/ecommerce/shipping','shipping_company_name','Shipping Company Name','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3012,0,'en','plugins/ecommerce/shipping','tracking_id','Tracking ID','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3013,0,'en','plugins/ecommerce/shipping','tracking_link','Tracking Link','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3014,0,'en','plugins/ecommerce/shipping','estimate_date_shipped','Estimate Date Shipped','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3015,0,'en','plugins/ecommerce/shipping','date_shipped','Date Shipped','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3016,0,'en','plugins/ecommerce/shipping','add_note','Add note...','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3017,0,'en','plugins/ecommerce/shipping','view_order','View Order :order_id','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3018,0,'en','plugins/ecommerce/store-locator','name','Store locators','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3019,0,'en','plugins/ecommerce/store-locator','description','This address will appear on your invoice and will be used to calculate your shipping price.','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3020,0,'en','plugins/ecommerce/store-locator','shop_name','Shop name','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3021,0,'en','plugins/ecommerce/store-locator','phone','Phone','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3022,0,'en','plugins/ecommerce/store-locator','email','Email','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3023,0,'en','plugins/ecommerce/store-locator','state','State','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3024,0,'en','plugins/ecommerce/store-locator','city','City','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3025,0,'en','plugins/ecommerce/store-locator','country','Country','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3026,0,'en','plugins/ecommerce/store-locator','address','Address','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3027,0,'en','plugins/ecommerce/store-locator','primary_store_is','Primary store is','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3028,0,'en','plugins/ecommerce/store-locator','store_name','Store name','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3029,0,'en','plugins/ecommerce/store-locator','select_country','Select country...','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3030,0,'en','plugins/ecommerce/store-locator','default_shipping_location','Default shipping location','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3031,0,'en','plugins/ecommerce/store-locator','default_store','Default store','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3032,0,'en','plugins/ecommerce/tax','name','Taxes','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3033,0,'en','plugins/ecommerce/tax','create','Create a tax','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3034,0,'en','plugins/ecommerce/tax','edit','Edit tax :title','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3035,0,'en','plugins/ecommerce/tax','title','Title','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3036,0,'en','plugins/ecommerce/tax','percentage','Percentage %','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3037,0,'en','plugins/ecommerce/tax','priority','Priority','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3038,0,'en','plugins/ecommerce/tax','select_tax','-- select --','2022-04-20 19:54:50','2022-04-20 19:55:15'),(3039,0,'vi','plugins/ecommerce/brands','name','Thương hiệu','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3040,0,'vi','plugins/ecommerce/brands','create','Thêm thương hiệu mới','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3041,0,'vi','plugins/ecommerce/brands','edit','Sửa thương hiệu','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3042,0,'vi','plugins/ecommerce/brands','form.name','Tên','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3043,0,'vi','plugins/ecommerce/brands','form.name_placeholder','Tên thương hiệu (tối đa 255 kí tự)','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3044,0,'vi','plugins/ecommerce/brands','form.description','Mô tả','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3045,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ự)','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3046,0,'vi','plugins/ecommerce/brands','form.website','Website','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3047,0,'vi','plugins/ecommerce/brands','form.logo','Logo','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3048,0,'vi','plugins/ecommerce/brands','form.is_featured','Nổi bật?','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3049,0,'vi','plugins/ecommerce/brands','logo','Logo','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3050,0,'vi','plugins/ecommerce/brands','website','Website','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3051,0,'vi','plugins/ecommerce/brands','notices.no_select','Không có bản ghi nào được chọn!','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3052,0,'vi','plugins/ecommerce/brands','notices.update_success_message','Cập nhật thành công','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3053,0,'vi','plugins/ecommerce/brands','cannot_delete','Xoá không thành công','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3054,0,'vi','plugins/ecommerce/brands','brand_deleted','Xoá thương hiệu thành công','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3055,0,'vi','plugins/ecommerce/brands','menu','Thương hiệu','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3056,0,'vi','plugins/ecommerce/brands','intro.title','Quản lý danh sách thương hiệu','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3057,0,'vi','plugins/ecommerce/brands','intro.description','Các thương hiệu của sản phẩm như Nike, Adidas, Bitis ...','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3058,0,'vi','plugins/ecommerce/brands','intro.button_text','Tạo thương hiệu','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3059,0,'vi','plugins/ecommerce/brands','no_brand','Không có thương hiệu','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3081,0,'vi','plugins/ecommerce/currency','currencies','Tiền tệ','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3082,0,'vi','plugins/ecommerce/currency','setting_description','Các loại tiền tệ được sử dụng trên website.','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3083,0,'vi','plugins/ecommerce/currency','name','Tên','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3084,0,'vi','plugins/ecommerce/currency','symbol','Ký hiệu','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3085,0,'vi','plugins/ecommerce/currency','number_of_decimals','Số thập phân','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3086,0,'vi','plugins/ecommerce/currency','exchange_rate','Tỷ giá','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3087,0,'vi','plugins/ecommerce/currency','is_prefix_symbol','Vị trí ký hiệu','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3088,0,'vi','plugins/ecommerce/currency','is_default','Mặc định?','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3089,0,'vi','plugins/ecommerce/currency','remove','Xoá','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3090,0,'vi','plugins/ecommerce/currency','new_currency','Thêm tiền tệ mới','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3091,0,'vi','plugins/ecommerce/currency','save_settings','Lưu cài đặt','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3092,0,'vi','plugins/ecommerce/currency','before_number','Trước số','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3093,0,'vi','plugins/ecommerce/currency','after_number','Sau số','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3094,0,'vi','plugins/ecommerce/customer','name','Khách hàng','2022-04-20 19:54:50','2022-04-20 19:55:14'),(3095,0,'vi','plugins/ecommerce/customer','create','Create a customer','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3096,0,'vi','plugins/ecommerce/customer','edit','Edit customer \":name\"','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3097,0,'vi','plugins/ecommerce/customer','email','Email','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3098,0,'vi','plugins/ecommerce/customer','email_placeholder','Ex: example@gmail.com','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3099,0,'vi','plugins/ecommerce/customer','password','Password','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3100,0,'vi','plugins/ecommerce/customer','change_password','Change password?','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3101,0,'vi','plugins/ecommerce/customer','password_confirmation','Password confirmation','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3102,0,'vi','plugins/ecommerce/customer','intro.title','Quản lý danh sách khách hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3103,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.','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3104,0,'vi','plugins/ecommerce/customer','intro.button_text','Tạo khách hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3105,0,'vi','plugins/ecommerce/discount','name','Khuyến mãi','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3106,0,'vi','plugins/ecommerce/discount','invalid_coupon','Mã khuyến mãi không hợp lệ hoặc đã hết hạn!','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3107,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!','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3108,0,'vi','plugins/ecommerce/discount','not_used','Chưa sử dụng mã giảm giá này','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3109,0,'vi','plugins/ecommerce/discount','detail','Detail','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3110,0,'vi','plugins/ecommerce/discount','used','Used','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3111,0,'vi','plugins/ecommerce/discount','start_date','Start date','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3112,0,'vi','plugins/ecommerce/discount','end_date','End date','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3113,0,'vi','plugins/ecommerce/discount','intro.title','Chương trình khuyến mãi','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3114,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.','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3115,0,'vi','plugins/ecommerce/discount','intro.button_text','Tạo khuyến mãi','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3116,0,'vi','plugins/ecommerce/discount','create','Create discount','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3117,0,'vi','plugins/ecommerce/discount','expired','Expired','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3118,0,'vi','plugins/ecommerce/discount','discount_promotion','Discount promotion','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3119,0,'vi','plugins/ecommerce/discount','can','can','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3120,0,'vi','plugins/ecommerce/discount','cannot','cannot','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3121,0,'vi','plugins/ecommerce/discount','use_with_promotion','be used with promotion','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3122,0,'vi','plugins/ecommerce/discount','create_discount_validate_title_required_if','Please enter the name of the promotion','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3123,0,'vi','plugins/ecommerce/discount','create_discount_validate_code_required_if','Please enter the promotion code','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3124,0,'vi','plugins/ecommerce/discount','create_discount_validate_value_required','Amount must be greater than 0','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3125,0,'vi','plugins/ecommerce/discount','create_discount_validate_target_required','No object selected for promotion','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3126,0,'vi','plugins/ecommerce/discount','enums.type-options.amount','Amount - Fixed','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3127,0,'vi','plugins/ecommerce/discount','enums.type-options.percentage','Discount %','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3128,0,'vi','plugins/ecommerce/discount','enums.type-options.shipping','Free shipping','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3129,0,'vi','plugins/ecommerce/discount','enums.type-options.same-price','Same price','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3130,0,'vi','plugins/ecommerce/discount','discount','Discount','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3131,0,'vi','plugins/ecommerce/discount','create_coupon_code','Tạo mã khuyến mãi','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3132,0,'vi','plugins/ecommerce/discount','create_discount_promotion','Create discount promotion','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3133,0,'vi','plugins/ecommerce/discount','generate_coupon_code','Generate coupon code','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3134,0,'vi','plugins/ecommerce/discount','customers_will_enter_this_coupon_code_when_they_checkout','Customers will enter this coupon code when they checkout','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3135,0,'vi','plugins/ecommerce/discount','select_type_of_discount','Select type of discount','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3136,0,'vi','plugins/ecommerce/discount','coupon_code','Coupon code','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3137,0,'vi','plugins/ecommerce/discount','promotion','Promotion','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3138,0,'vi','plugins/ecommerce/discount','can_be_used_with_promotion','Can be used with promotion','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3139,0,'vi','plugins/ecommerce/discount','unlimited_coupon','Unlimited coupon','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3140,0,'vi','plugins/ecommerce/discount','enter_number','Enter number','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3141,0,'vi','plugins/ecommerce/discount','coupon_type','Coupon type','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3142,0,'vi','plugins/ecommerce/discount','percentage_discount','Percentage discount (%)','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3143,0,'vi','plugins/ecommerce/discount','free_shipping','Free shipping','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3144,0,'vi','plugins/ecommerce/discount','same_price','Same price','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3145,0,'vi','plugins/ecommerce/discount','apply_for','apply for','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3146,0,'vi','plugins/ecommerce/discount','all_orders','All orders','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3147,0,'vi','plugins/ecommerce/discount','order_amount_from','Order amount from','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3148,0,'vi','plugins/ecommerce/discount','product_collection','Product collection','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3149,0,'vi','plugins/ecommerce/discount','product','Product','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3150,0,'vi','plugins/ecommerce/discount','customer','Customer','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3151,0,'vi','plugins/ecommerce/discount','variant','Variant','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3152,0,'vi','plugins/ecommerce/discount','search_product','Search product','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3153,0,'vi','plugins/ecommerce/discount','no_products_found','No products found!','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3154,0,'vi','plugins/ecommerce/discount','search_customer','Search customer','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3155,0,'vi','plugins/ecommerce/discount','no_customer_found','No customer found!','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3156,0,'vi','plugins/ecommerce/discount','one_time_per_order','One time per order','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3157,0,'vi','plugins/ecommerce/discount','one_time_per_product_in_cart','One time per product in cart','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3158,0,'vi','plugins/ecommerce/discount','number_of_products','Number of products required to apply','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3159,0,'vi','plugins/ecommerce/discount','selected_products','Selected products','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3160,0,'vi','plugins/ecommerce/discount','selected_customers','Selected customers','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3161,0,'vi','plugins/ecommerce/discount','time','Time','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3162,0,'vi','plugins/ecommerce/discount','never_expired','Never expired','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3163,0,'vi','plugins/ecommerce/discount','save','Save','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3164,0,'vi','plugins/ecommerce/discount','enter_promotion_name','Enter promotion name','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3165,0,'vi','plugins/ecommerce/discount','enter_coupon_name','Enter coupon name','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3166,0,'vi','plugins/ecommerce/discount','cancel','Cancel','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3167,0,'vi','plugins/ecommerce/discount','is','Is','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3168,0,'vi','plugins/ecommerce/discount','when_shipping_fee_less_than','when shipping fee less than','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3169,0,'vi','plugins/ecommerce/ecommerce','settings','Cài đặt','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3170,0,'vi','plugins/ecommerce/ecommerce','name','Thương mại điện tử','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3171,0,'vi','plugins/ecommerce/ecommerce','setting.email.title','E-commerce','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3172,0,'vi','plugins/ecommerce/ecommerce','setting.email.description','Ecommerce email config','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3173,0,'vi','plugins/ecommerce/ecommerce','setting.email.order_confirm_subject','Subject of order confirmation email','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3174,0,'vi','plugins/ecommerce/ecommerce','setting.email.order_confirm_subject_placeholder','The subject of email confirmation send to the customer','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3175,0,'vi','plugins/ecommerce/ecommerce','setting.email.order_confirm_content','Content of order confirmation email','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3176,0,'vi','plugins/ecommerce/ecommerce','setting.email.order_status_change_subject','Subject of email when changing order\'s status','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3177,0,'vi','plugins/ecommerce/ecommerce','setting.email.order_status_change_subject_placeholder','Subject of email when changing order\'s status send to customer','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3178,0,'vi','plugins/ecommerce/ecommerce','setting.email.order_status_change_content','Content of email when changing order\'s status','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3179,0,'vi','plugins/ecommerce/ecommerce','setting.email.from_email','Email from','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3180,0,'vi','plugins/ecommerce/ecommerce','setting.email.from_email_placeholder','Email from address to display in mail. Ex: example@gmail.com','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3181,0,'vi','plugins/ecommerce/ecommerce','store_address','Địa chỉ cửa hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3182,0,'vi','plugins/ecommerce/ecommerce','store_phone','Số điện thoại cửa hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3183,0,'vi','plugins/ecommerce/ecommerce','order_id','Mã đơn hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3184,0,'vi','plugins/ecommerce/ecommerce','order_token','Chuỗi mã hoá đơn hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3185,0,'vi','plugins/ecommerce/ecommerce','customer_name','Tên khách hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3186,0,'vi','plugins/ecommerce/ecommerce','customer_email','Email khách hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3187,0,'vi','plugins/ecommerce/ecommerce','customer_phone','Số điện thoại khách hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3188,0,'vi','plugins/ecommerce/ecommerce','customer_address','Địa chỉ khách hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3189,0,'vi','plugins/ecommerce/ecommerce','product_list','Danh sách sản phẩm trong đơn hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3190,0,'vi','plugins/ecommerce/ecommerce','payment_detail','Chi tiết thanh toán','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3191,0,'vi','plugins/ecommerce/ecommerce','shipping_method','Phương thức vận chuyển','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3192,0,'vi','plugins/ecommerce/ecommerce','payment_method','Phương thức thanh toán','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3193,0,'vi','plugins/ecommerce/ecommerce','standard_and_format','Tiêu chuẩn & Định dạng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3194,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.','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3195,0,'vi','plugins/ecommerce/ecommerce','change_order_format','Chỉnh sửa định dạng mã đơn hàng (tùy chọn)','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3196,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\"','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3197,0,'vi','plugins/ecommerce/ecommerce','start_with','Bắt đầu bằng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3198,0,'vi','plugins/ecommerce/ecommerce','end_with','Kết thúc bằng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3199,0,'vi','plugins/ecommerce/ecommerce','order_will_be_shown','Mã đơn hàng của bạn sẽ hiển thị theo mẫu','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3200,0,'vi','plugins/ecommerce/ecommerce','weight_unit','Đơn vị cân nặng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3201,0,'vi','plugins/ecommerce/ecommerce','height_unit','Đơn vị chiều dài/chiều cao','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3202,0,'vi','plugins/ecommerce/email','customer_new_order_title','Xác nhận đơn hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3203,0,'vi','plugins/ecommerce/email','customer_new_order_description','Được gửi khi khách hàng tạo đơn hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3204,0,'vi','plugins/ecommerce/email','order_cancellation_title','Hủy đơn hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3205,0,'vi','plugins/ecommerce/email','order_cancellation_description','Được gửi khi khách hàng hủy đơn hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3206,0,'vi','plugins/ecommerce/email','delivery_confirmation_title','Xác nhận giao hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3207,0,'vi','plugins/ecommerce/email','delivery_confirmation_description','Được gửi đến khách hàng khi bắt đầu giao hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3208,0,'vi','plugins/ecommerce/email','admin_new_order_title','Thông báo có đơn hàng mới','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3209,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','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3210,0,'vi','plugins/ecommerce/email','order_confirmation_title','Xác nhận đơn hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3211,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','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3212,0,'vi','plugins/ecommerce/email','payment_confirmation_title','Xác nhận thanh toán','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3213,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','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3214,0,'vi','plugins/ecommerce/email','order_recover_title','Đơn hàng đang chờ hoàn tất','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3215,0,'vi','plugins/ecommerce/email','order_recover_description','Email nhắc nhở khách hàng hoàn tất đơn hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3216,0,'vi','plugins/ecommerce/email','link_go_to_our_shop','hoặc <a href=\":link\">Truy cập website</a>','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3217,0,'vi','plugins/ecommerce/email','order_information','Thông tin đơn hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3218,0,'vi','plugins/ecommerce/email','order_number','Mã đơn hàng: <strong>:order_id</strong>','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3219,0,'vi','plugins/ecommerce/email','view_order','Xem đơn hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3220,0,'vi','plugins/ecommerce/order','statuses.pending','Chưa xử lý','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3221,0,'vi','plugins/ecommerce/order','statuses.processing','Đang xử lý','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3222,0,'vi','plugins/ecommerce/order','statuses.completed','Hoàn thành','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3223,0,'vi','plugins/ecommerce/order','statuses.canceled','Bị huỷ','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3224,0,'vi','plugins/ecommerce/order','name','Đơn hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3225,0,'vi','plugins/ecommerce/order','incomplete_order','Đơn hàng chưa hoàn tất','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3226,0,'vi','plugins/ecommerce/order','order_id','Mã đơn hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3227,0,'vi','plugins/ecommerce/order','customer_label','Khách hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3228,0,'vi','plugins/ecommerce/order','amount','Tổng cộng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3229,0,'vi','plugins/ecommerce/order','shipping_amount','Phí vận chuyển','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3230,0,'vi','plugins/ecommerce/order','payment_method','Phương thức thanh toán','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3231,0,'vi','plugins/ecommerce/order','payment_status_label','Trạng thái thanh toán','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3232,0,'vi','plugins/ecommerce/order','manage_orders','Quản lý đơn hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3233,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 đó.','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3234,0,'vi','plugins/ecommerce/order','create_new_order','Tạo đơn hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3235,0,'vi','plugins/ecommerce/order','manage_incomplete_orders','Quản lý đơn hàng chưa hoàn tất','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3236,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.','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3237,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.','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3238,0,'vi','plugins/ecommerce/order','menu','Đơn hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3239,0,'vi','plugins/ecommerce/order','order_information','Thông tin đơn hàng','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3240,0,'vi','plugins/ecommerce/order','create','Create an order','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3241,0,'vi','plugins/ecommerce/order','cancel_error','The order is delivering or completed','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3242,0,'vi','plugins/ecommerce/order','cancel_success','You do cancel the order successful','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3243,0,'vi','plugins/ecommerce/order','product_id','Product ID','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3244,0,'vi','plugins/ecommerce/order','tax_amount','Tax Amount','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3245,0,'vi','plugins/ecommerce/order','invoice_for_order','Invoice for order','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3246,0,'vi','plugins/ecommerce/order','created','Created','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3247,0,'vi','plugins/ecommerce/order','invoice','Invoice','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3248,0,'vi','plugins/ecommerce/order','return','Return','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3249,0,'vi','plugins/ecommerce/order','total_refund_amount','Total refund amount','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3250,0,'vi','plugins/ecommerce/order','total_amount_can_be_refunded','Total amount can be refunded','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3251,0,'vi','plugins/ecommerce/order','refund_reason','Refund reason (optional)','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3252,0,'vi','plugins/ecommerce/order','products','product(s)','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3253,0,'vi','plugins/ecommerce/order','default','Default','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3254,0,'vi','plugins/ecommerce/order','system','System','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3255,0,'vi','plugins/ecommerce/order','new_order_from','New order :order_id from :customer','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3256,0,'vi','plugins/ecommerce/order','confirmation_email_was_sent_to_customer','The email confirmation was sent to customer','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3257,0,'vi','plugins/ecommerce/order','address_name_required','The name field is required.','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3258,0,'vi','plugins/ecommerce/order','address_phone_required','The phone field is required.','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3259,0,'vi','plugins/ecommerce/order','address_email_required','The email field is required.','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3260,0,'vi','plugins/ecommerce/order','address_email_unique','The customer with that email is existed, please choose other email or login with this email!','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3261,0,'vi','plugins/ecommerce/order','address_state_required','The state field is required.','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3262,0,'vi','plugins/ecommerce/order','address_city_required','The city field is required.','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3263,0,'vi','plugins/ecommerce/order','address_country_required','The country field is required.','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3264,0,'vi','plugins/ecommerce/order','address_address_required','The address field is required.','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3265,0,'vi','plugins/ecommerce/order','create_order_from_payment_page','Order was created from checkout page','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3266,0,'vi','plugins/ecommerce/order','order_was_verified_by','Order was verified by %user_name%','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3267,0,'vi','plugins/ecommerce/order','new_order','New order :order_id','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3268,0,'vi','plugins/ecommerce/order','payment_was_confirmed_by','Payment was confirmed (amount :money) by %user_name%','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3269,0,'vi','plugins/ecommerce/order','edit_order','Edit order :code','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3270,0,'vi','plugins/ecommerce/order','confirm_order_success','Confirm order successfully!','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3271,0,'vi','plugins/ecommerce/order','error_when_sending_email','There is an error when sending email','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3272,0,'vi','plugins/ecommerce/order','sent_confirmation_email_success','Sent confirmation email successfully!','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3273,0,'vi','plugins/ecommerce/order','order_was_sent_to_shipping_team','Order was sent to shipping team','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3274,0,'vi','plugins/ecommerce/order','by_username','by %user_name%','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3275,0,'vi','plugins/ecommerce/order','shipping_was_created_from','Shipping was created from order %order_id%','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3276,0,'vi','plugins/ecommerce/order','shipping_was_canceled_success','Shipping was cancelled successfully!','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3277,0,'vi','plugins/ecommerce/order','shipping_was_canceled_by','Shipping was cancelled by %user_name%','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3278,0,'vi','plugins/ecommerce/order','update_shipping_address_success','Update shipping address successfully!','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3279,0,'vi','plugins/ecommerce/order','order_was_canceled_by','Order was cancelled by %user_name%','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3280,0,'vi','plugins/ecommerce/order','confirm_payment_success','Confirm payment successfully!','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3281,0,'vi','plugins/ecommerce/order','refund_amount_invalid','Refund amount must be lower or equal :price','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3282,0,'vi','plugins/ecommerce/order','number_of_products_invalid','Number of products refund is not valid!','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3283,0,'vi','plugins/ecommerce/order','cannot_found_payment_for_this_order','Cannot found payment for this order!','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3284,0,'vi','plugins/ecommerce/order','refund_success_with_price','Refund success :price','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3285,0,'vi','plugins/ecommerce/order','refund_success','Refund successfully!','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3286,0,'vi','plugins/ecommerce/order','order_is_not_existed','Order is not existed!','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3287,0,'vi','plugins/ecommerce/order','reorder','Reorder','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3288,0,'vi','plugins/ecommerce/order','sent_email_incomplete_order_success','Sent email to remind about incomplete order successfully!','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3289,0,'vi','plugins/ecommerce/order','applied_coupon_success','Applied coupon \":code\" successfully!','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3290,0,'vi','plugins/ecommerce/order','new_order_notice','You have <span class=\"bold\">:count</span> New Order(s)','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3291,0,'vi','plugins/ecommerce/order','view_all','View all','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3292,0,'vi','plugins/ecommerce/order','cancel_order','Cancel order','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3293,0,'vi','plugins/ecommerce/order','order_canceled','Order canceled','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3294,0,'vi','plugins/ecommerce/order','order_was_canceled_at','Order was canceled at','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3295,0,'vi','plugins/ecommerce/order','completed','Completed','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3296,0,'vi','plugins/ecommerce/order','uncompleted','Uncompleted','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3297,0,'vi','plugins/ecommerce/order','sku','SKU','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3298,0,'vi','plugins/ecommerce/order','warehouse','Warehouse','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3299,0,'vi','plugins/ecommerce/order','sub_amount','Sub amount','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3300,0,'vi','plugins/ecommerce/order','coupon_code','Coupon code: \":code\"','2022-04-20 19:54:51','2022-04-20 19:55:14'),(3301,0,'vi','plugins/ecommerce/order','shipping_fee','Shipping fee','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3302,0,'vi','plugins/ecommerce/order','tax','Tax','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3303,0,'vi','plugins/ecommerce/order','refunded_amount','Refunded amount','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3304,0,'vi','plugins/ecommerce/order','amount_received','The amount actually received','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3305,0,'vi','plugins/ecommerce/order','download_invoice','Download invoice','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3306,0,'vi','plugins/ecommerce/order','add_note','Add note...','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3307,0,'vi','plugins/ecommerce/order','order_was_confirmed','Order was confirmed','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3308,0,'vi','plugins/ecommerce/order','confirm_order','Confirm order','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3309,0,'vi','plugins/ecommerce/order','confirm','Confirm','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3310,0,'vi','plugins/ecommerce/order','order_was_canceled','Order was canceled','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3311,0,'vi','plugins/ecommerce/order','pending_payment','Pending payment','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3312,0,'vi','plugins/ecommerce/order','payment_was_accepted','Payment :money was accepted','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3313,0,'vi','plugins/ecommerce/order','payment_was_refunded','Payment was refunded','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3314,0,'vi','plugins/ecommerce/order','confirm_payment','Confirm payment','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3315,0,'vi','plugins/ecommerce/order','refund','Refund','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3316,0,'vi','plugins/ecommerce/order','all_products_are_not_delivered','All products are not delivered','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3317,0,'vi','plugins/ecommerce/order','delivery','Delivery','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3318,0,'vi','plugins/ecommerce/order','history','History','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3319,0,'vi','plugins/ecommerce/order','order_number','Order number','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3320,0,'vi','plugins/ecommerce/order','from','from','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3321,0,'vi','plugins/ecommerce/order','status','Status','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3322,0,'vi','plugins/ecommerce/order','successfully','Successfully','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3323,0,'vi','plugins/ecommerce/order','transaction_type','Transaction\'s type','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3324,0,'vi','plugins/ecommerce/order','staff','Staff','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3325,0,'vi','plugins/ecommerce/order','refund_date','Refund date','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3326,0,'vi','plugins/ecommerce/order','n_a','N\\A','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3327,0,'vi','plugins/ecommerce/order','payment_date','Payment date','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3328,0,'vi','plugins/ecommerce/order','payment_gateway','Payment gateway','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3329,0,'vi','plugins/ecommerce/order','transaction_amount','Transaction amount','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3330,0,'vi','plugins/ecommerce/order','resend','Resend','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3331,0,'vi','plugins/ecommerce/order','default_store','Default store','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3332,0,'vi','plugins/ecommerce/order','update_address','Update address','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3333,0,'vi','plugins/ecommerce/order','have_an_account_already','Have an account already','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3334,0,'vi','plugins/ecommerce/order','dont_have_an_account_yet','Don\'t have an account yet','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3335,0,'vi','plugins/ecommerce/order','mark_payment_as_confirmed','Mark <span>:method</span> as confirmed','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3336,0,'vi','plugins/ecommerce/order','resend_order_confirmation','Resend order confirmation','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3337,0,'vi','plugins/ecommerce/order','resend_order_confirmation_description','Confirmation email will be sent to <strong>:email</strong>?','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3338,0,'vi','plugins/ecommerce/order','send','Send','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3339,0,'vi','plugins/ecommerce/order','update','Update','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3340,0,'vi','plugins/ecommerce/order','cancel_shipping_confirmation','Cancel shipping confirmation?','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3341,0,'vi','plugins/ecommerce/order','cancel_shipping_confirmation_description','Cancel shipping confirmation?','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3342,0,'vi','plugins/ecommerce/order','cancel_order_confirmation','Cancel order confirmation?','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3343,0,'vi','plugins/ecommerce/order','cancel_order_confirmation_description','Are you sure you want to cancel this order? This action cannot rollback','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3344,0,'vi','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','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3345,0,'vi','plugins/ecommerce/order','save_note','Save note','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3346,0,'vi','plugins/ecommerce/order','order_note','Order note','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3347,0,'vi','plugins/ecommerce/order','order_note_placeholder','Note about order, ex: time or shipping instruction.','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3348,0,'vi','plugins/ecommerce/order','order_amount','Order amount','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3349,0,'vi','plugins/ecommerce/order','additional_information','Additional information','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3350,0,'vi','plugins/ecommerce/order','notice_about_incomplete_order','Notice about incomplete order','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3351,0,'vi','plugins/ecommerce/order','notice_about_incomplete_order_description','Remind email about uncompleted order will be send to <strong>:email</strong>?','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3352,0,'vi','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.','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3353,0,'vi','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:','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3354,0,'vi','plugins/ecommerce/order','send_an_email_to_recover_this_order','Send an email to customer to recover this order','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3355,0,'vi','plugins/ecommerce/order','see_maps','See maps','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3356,0,'vi','plugins/ecommerce/order','one_or_more_products_dont_have_enough_quantity','One or more products don\'t have enough quantity!','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3357,0,'vi','plugins/ecommerce/order','payment_info','Payment Info','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3358,0,'vi','plugins/ecommerce/order','payment_method_refund_automatic','Your customer will be refunded using :method automatically.','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3359,0,'vi','plugins/ecommerce/order','order','Order','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3360,0,'vi','plugins/ecommerce/order','create_a_new_product','Create a new product','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3361,0,'vi','plugins/ecommerce/order','out_of_stock','Out of stock','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3362,0,'vi','plugins/ecommerce/order','products_available','product(s) available','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3363,0,'vi','plugins/ecommerce/order','no_products_found','No products found!','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3364,0,'vi','plugins/ecommerce/order','note','Note','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3365,0,'vi','plugins/ecommerce/order','note_for_order','Note for order...','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3366,0,'vi','plugins/ecommerce/order','add_discount','Add discount','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3367,0,'vi','plugins/ecommerce/order','discount','Discount','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3368,0,'vi','plugins/ecommerce/order','add_shipping_fee','Add shipping fee','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3369,0,'vi','plugins/ecommerce/order','shipping','Shipping','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3370,0,'vi','plugins/ecommerce/order','total_amount','Total amount','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3371,0,'vi','plugins/ecommerce/order','confirm_payment_and_create_order','Confirm payment and create order','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3372,0,'vi','plugins/ecommerce/order','paid','Paid','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3373,0,'vi','plugins/ecommerce/order','pay_later','Pay later','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3374,0,'vi','plugins/ecommerce/order','customer_information','Customer information','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3375,0,'vi','plugins/ecommerce/order','create_new_customer','Create new customer','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3376,0,'vi','plugins/ecommerce/order','no_customer_found','No customer found!','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3377,0,'vi','plugins/ecommerce/order','customer','Customer','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3378,0,'vi','plugins/ecommerce/order','orders','order(s)','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3379,0,'vi','plugins/ecommerce/order','shipping_address','Shipping Address','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3380,0,'vi','plugins/ecommerce/order','see_on_maps','See on maps','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3381,0,'vi','plugins/ecommerce/order','price','Price','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3382,0,'vi','plugins/ecommerce/order','sku_optional','SKU (optional)','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3383,0,'vi','plugins/ecommerce/order','with_storehouse_management','With storehouse management?','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3384,0,'vi','plugins/ecommerce/order','quantity','Quantity','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3385,0,'vi','plugins/ecommerce/order','allow_customer_checkout_when_this_product_out_of_stock','Allow customer checkout when this product out of stock?','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3386,0,'vi','plugins/ecommerce/order','address','Address','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3387,0,'vi','plugins/ecommerce/order','phone','Phone','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3388,0,'vi','plugins/ecommerce/order','country','Country','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3389,0,'vi','plugins/ecommerce/order','state','State','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3390,0,'vi','plugins/ecommerce/order','city','City','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3391,0,'vi','plugins/ecommerce/order','zip_code','Zip code','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3392,0,'vi','plugins/ecommerce/order','discount_based_on','Discount based on','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3393,0,'vi','plugins/ecommerce/order','or_coupon_code','Or coupon code','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3394,0,'vi','plugins/ecommerce/order','description','Description','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3395,0,'vi','plugins/ecommerce/order','how_to_select_configured_shipping','How to select configured shipping?','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3396,0,'vi','plugins/ecommerce/order','please_add_customer_information_with_the_complete_shipping_address_to_see_the_configured_shipping_rates','Please add customer information with the complete shipping address to see the configured shipping rates','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3397,0,'vi','plugins/ecommerce/order','free_shipping','Free shipping','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3398,0,'vi','plugins/ecommerce/order','custom','Custom','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3399,0,'vi','plugins/ecommerce/order','email','Email','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3400,0,'vi','plugins/ecommerce/order','create_order','Create order','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3401,0,'vi','plugins/ecommerce/order','close','Close','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3402,0,'vi','plugins/ecommerce/order','confirm_payment_is_paid_for_this_order','Confirm payment is paid for this order','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3403,0,'vi','plugins/ecommerce/order','payment_status_of_the_order_is_paid_once_the_order_has_been_created_you_cannot_change_the_payment_method_or_status','Payment status of the order is Paid. Once the order has been created, you cannot change the payment method or status','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3404,0,'vi','plugins/ecommerce/order','select_payment_method','Select payment method','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3405,0,'vi','plugins/ecommerce/order','cash_on_delivery_cod','Cash on delivery (COD)','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3406,0,'vi','plugins/ecommerce/order','bank_transfer','Bank transfer','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3407,0,'vi','plugins/ecommerce/order','paid_amount','Paid amount','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3408,0,'vi','plugins/ecommerce/order','confirm_that_payment_for_this_order_will_be_paid_later','Confirm that payment for this order will be paid later','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3409,0,'vi','plugins/ecommerce/order','payment_status_of_the_order_is_pending_once_the_order_has_been_created_you_cannot_change_the_payment_method_or_status','Payment status of the order is Pending. Once the order has been created, you cannot change the payment method or status','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3410,0,'vi','plugins/ecommerce/order','pending_amount','Pending amount','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3411,0,'vi','plugins/ecommerce/order','update_email','Update email','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3412,0,'vi','plugins/ecommerce/order','save','Save','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3413,0,'vi','plugins/ecommerce/order','cancel','Cancel','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3414,0,'vi','plugins/ecommerce/order','create_a_new_order','Create a new order','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3415,0,'vi','plugins/ecommerce/order','search_or_create_new_product','Search or create a new product','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3416,0,'vi','plugins/ecommerce/order','search_or_create_new_customer','Search or create a new customer','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3417,0,'vi','plugins/ecommerce/order','discount_description','Discount description','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3418,0,'vi','plugins/ecommerce/order','cant_select_out_of_stock_product','Cannot select out of stock product!','2022-04-20 19:54:52','2022-04-20 19:55:14'),(3419,0,'vi','plugins/ecommerce/payment','name','Thanh toán','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3420,0,'vi','plugins/ecommerce/payment','payment_method','Phương thức thanh toán','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3421,0,'vi','plugins/ecommerce/payment','view_payment','Xem thanh toán #','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3422,0,'vi','plugins/ecommerce/payment','charge_id','Mã giao dịch','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3423,0,'vi','plugins/ecommerce/payment','amount','Số tiền','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3424,0,'vi','plugins/ecommerce/payment','currency','Đơn vị tiền tệ','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3425,0,'vi','plugins/ecommerce/payment','user','Người dùng','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3426,0,'vi','plugins/ecommerce/payment','paypal_name_required','Tên của phương thức PayPal là bắt buộc!','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3427,0,'vi','plugins/ecommerce/payment','paypal_name_max','Tên của phương thức PayPal quá dài!','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3428,0,'vi','plugins/ecommerce/payment','stripe_name_required','Tên của phương thức Stripe là bắt buộc!','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3429,0,'vi','plugins/ecommerce/payment','stripe_name_max','Tên của phương thức Stripe quá dài!','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3430,0,'vi','plugins/ecommerce/payment','status','Trạng thái','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3431,0,'vi','plugins/ecommerce/payment','enabled','Bật','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3432,0,'vi','plugins/ecommerce/payment','disabled','Tắt','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3433,0,'vi','plugins/ecommerce/payment','client_id','Client ID','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3434,0,'vi','plugins/ecommerce/payment','client_secret','Client Secret','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3435,0,'vi','plugins/ecommerce/payment','mode','Chế độ','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3436,0,'vi','plugins/ecommerce/payment','sandbox','Sandbox','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3437,0,'vi','plugins/ecommerce/payment','live','Live','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3438,0,'vi','plugins/ecommerce/payment','enable_payment_log','Bật lưu nhật ký thanh toán','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3439,0,'vi','plugins/ecommerce/payment','yes','Có','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3440,0,'vi','plugins/ecommerce/payment','no','Không','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3441,0,'vi','plugins/ecommerce/payment','client_key','Client Key','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3442,0,'vi','plugins/ecommerce/payment','stripe','Stripe','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3443,0,'vi','plugins/ecommerce/payment','paypal','PayPal','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3444,0,'vi','plugins/ecommerce/payment','action','Hành động','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3445,0,'vi','plugins/ecommerce/payment','go_back','Quay lại','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3446,0,'vi','plugins/ecommerce/payment','view','Xem','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3447,0,'vi','plugins/ecommerce/payment','cash_on_delivery','Thanh toán khi nhận hàng (COD)','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3448,0,'vi','plugins/ecommerce/payment','via_bank_transfer','Thông qua chuyển khoản ngân hàng','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3449,0,'vi','plugins/ecommerce/payment','payment_via_cart','Thanh toán bằng thẻ','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3450,0,'vi','plugins/ecommerce/payment','card_number','Số thẻ','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3451,0,'vi','plugins/ecommerce/payment','full_name','Tên trên thẻ','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3452,0,'vi','plugins/ecommerce/payment','payment_via_paypal','Thanh toán thông qua PayPal','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3453,0,'vi','plugins/ecommerce/payment','mm_yy','MM/YY','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3454,0,'vi','plugins/ecommerce/payment','cvc','CVC','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3455,0,'vi','plugins/ecommerce/payment','details','Chi tiết','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3456,0,'vi','plugins/ecommerce/payment','payer_name','Người thanh toán','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3457,0,'vi','plugins/ecommerce/payment','email','Địa chỉ email','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3458,0,'vi','plugins/ecommerce/payment','phone','Điện thoại','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3459,0,'vi','plugins/ecommerce/payment','country','Quốc gia','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3460,0,'vi','plugins/ecommerce/payment','shipping_address','Địa chỉ giao hàng','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3461,0,'vi','plugins/ecommerce/payment','payment_details','Chi tiết giao dịch','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3462,0,'vi','plugins/ecommerce/payment','card','Thẻ','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3463,0,'vi','plugins/ecommerce/payment','address','Địa chỉ','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3464,0,'vi','plugins/ecommerce/payment','could_not_get_stripe_token','Không thể lấy mã Stripe để thanh toán','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3465,0,'vi','plugins/ecommerce/payment','new_payment','Thanh toán cho đơn hàng :id','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3466,0,'vi','plugins/ecommerce/payment','payment_id','Mã thanh toán','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3467,0,'vi','plugins/ecommerce/prices','name','Price','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3468,0,'vi','plugins/ecommerce/prices','create','New price','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3469,0,'vi','plugins/ecommerce/prices','edit','Edit price','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3470,0,'vi','plugins/ecommerce/prices','list','List price','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3471,0,'vi','plugins/ecommerce/product-attribute-sets','name','Product attribute sets','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3472,0,'vi','plugins/ecommerce/product-attribute-sets','create','New product attribute set','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3473,0,'vi','plugins/ecommerce/product-attribute-sets','edit','Edit product attribute set','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3474,0,'vi','plugins/ecommerce/product-attribute-sets','visible_in_categories','Visible in categories','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3475,0,'vi','plugins/ecommerce/product-attribute-sets','product_with_more_version','Product with more version','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3476,0,'vi','plugins/ecommerce/product-attribute-sets','create_a_version','Create a version','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3477,0,'vi','plugins/ecommerce/product-attribute-sets','enabled','Enabled','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3478,0,'vi','plugins/ecommerce/product-attribute-sets','attributes','Attributes','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3479,0,'vi','plugins/ecommerce/product-attribute-sets','price','Price','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3480,0,'vi','plugins/ecommerce/product-attribute-sets','edit_btn','Edit','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3481,0,'vi','plugins/ecommerce/product-attribute-sets','remove_btn','Remove','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3482,0,'vi','plugins/ecommerce/product-attribute-sets','product','Product','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3483,0,'vi','plugins/ecommerce/product-attribute-sets','back_to_product','Back to product','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3484,0,'vi','plugins/ecommerce/product-attribute-sets','save','Save','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3485,0,'vi','plugins/ecommerce/product-attribute-sets','other_existing_versions','Other existing versions','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3486,0,'vi','plugins/ecommerce/product-attribute-sets','version_information','Version information','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3487,0,'vi','plugins/ecommerce/product-attribute-sets','add_rule','Add rule','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3488,0,'vi','plugins/ecommerce/product-attribute-sets','rules','Rules','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3489,0,'vi','plugins/ecommerce/product-attribute-sets','pricing','Pricing','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3490,0,'vi','plugins/ecommerce/product-attribute-sets','sale_price','Sale price','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3491,0,'vi','plugins/ecommerce/product-attribute-sets','sale_type','Sale type','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3492,0,'vi','plugins/ecommerce/product-attribute-sets','no_sale_price','No sale price','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3493,0,'vi','plugins/ecommerce/product-attribute-sets','always_on_sale','Always on sale','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3494,0,'vi','plugins/ecommerce/product-attribute-sets','limited_time','Limited time','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3495,0,'vi','plugins/ecommerce/product-attribute-sets','from','From','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3496,0,'vi','plugins/ecommerce/product-attribute-sets','to','To','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3497,0,'vi','plugins/ecommerce/product-attribute-sets','storehouse','Storehouse','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3498,0,'vi','plugins/ecommerce/product-attribute-sets','no_storehouse_management','No storehouse management','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3499,0,'vi','plugins/ecommerce/product-attribute-sets','with_storehouse_management','With storehouse management','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3500,0,'vi','plugins/ecommerce/product-attribute-sets','quantity','Quantity','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3501,0,'vi','plugins/ecommerce/product-attribute-sets','allow_customer_checkout_out_of_stock','Allow customer checkout when this product out of stock','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3502,0,'vi','plugins/ecommerce/product-attribute-sets','shipping','Shipping','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3503,0,'vi','plugins/ecommerce/product-attribute-sets','length','Length','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3504,0,'vi','plugins/ecommerce/product-attribute-sets','wide','Wide','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3505,0,'vi','plugins/ecommerce/product-attribute-sets','height','Height','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3506,0,'vi','plugins/ecommerce/product-attribute-sets','weight','Weight','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3507,0,'vi','plugins/ecommerce/product-attribute-sets','version_images','Version images','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3508,0,'vi','plugins/ecommerce/product-attribute-sets','add_new_image','Add new image','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3509,0,'vi','plugins/ecommerce/product-attribute-sets','attribute_set','Attribute set','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3510,0,'vi','plugins/ecommerce/product-attribute-sets','value','Value','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3511,0,'vi','plugins/ecommerce/product-attribute-sets','dropdown_swatch','Dropdown Swatch','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3512,0,'vi','plugins/ecommerce/product-attribute-sets','visual_swatch','Visual Swatch','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3513,0,'vi','plugins/ecommerce/product-attribute-sets','text_swatch','Text Swatch','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3514,0,'vi','plugins/ecommerce/product-attributes','name','Thuộc tính sản phẩm','2022-04-20 19:54:52','2022-04-20 19:55:15'),(3515,0,'vi','plugins/ecommerce/product-attributes','create','Tạo','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3516,0,'vi','plugins/ecommerce/product-attributes','edit','Sửa','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3517,0,'vi','plugins/ecommerce/product-attributes','intro.title','Quản lý danh sách thuộc tính sản phẩm','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3518,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 ...','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3519,0,'vi','plugins/ecommerce/product-attributes','intro.button_text','Tạo thuộc tính sản phẩm','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3520,0,'vi','plugins/ecommerce/product-categories','create','Create new product category','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3521,0,'vi','plugins/ecommerce/product-categories','edit','Edit product category','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3522,0,'vi','plugins/ecommerce/product-categories','name','Danh mục sản phẩm','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3523,0,'vi','plugins/ecommerce/product-categories','none','Không có','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3524,0,'vi','plugins/ecommerce/product-categories','menu','Danh mục sản phẩm','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3525,0,'vi','plugins/ecommerce/product-categories','intro.title','Quản lý danh sách danh mục sản phẩm','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3526,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ử ...','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3527,0,'vi','plugins/ecommerce/product-categories','intro.button_text','Tạo danh mục sản phẩm','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3528,0,'vi','plugins/ecommerce/product-categories','total_products','Tổng sản phẩm: :total','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3529,0,'vi','plugins/ecommerce/product-collections','name','Nhóm sản phẩm','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3530,0,'vi','plugins/ecommerce/product-collections','create','Thêm nhóm sản phẩm','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3531,0,'vi','plugins/ecommerce/product-collections','edit','Sửa nhóm sản phẩm','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3532,0,'vi','plugins/ecommerce/product-collections','slug_help_block','Label key: <code>:slug</code>. We will use this key for filter.','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3533,0,'vi','plugins/ecommerce/product-collections','intro.title','Quản lý nhóm sản phẩm','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3534,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.','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3535,0,'vi','plugins/ecommerce/product-collections','intro.button_text','Tạo nhóm sản phẩm','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3536,0,'vi','plugins/ecommerce/products','name','Sản phẩm','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3537,0,'vi','plugins/ecommerce/products','create','Thêm sản phẩm mới','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3538,0,'vi','plugins/ecommerce/products','edit','Sửa sản phẩm - :name','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3539,0,'vi','plugins/ecommerce/products','form.name','Tên sản phẩm','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3540,0,'vi','plugins/ecommerce/products','form.name_placeholder','Tên sản phẩm (Tối đa 120 chữ cái)','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3541,0,'vi','plugins/ecommerce/products','form.description','Mô tả ngắn','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3542,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)','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3543,0,'vi','plugins/ecommerce/products','form.categories','Danh mục','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3544,0,'vi','plugins/ecommerce/products','form.content','Chi tiết sản phẩm','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3545,0,'vi','plugins/ecommerce/products','form.price','Giá cơ bản','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3546,0,'vi','plugins/ecommerce/products','form.price_sale','Giá giảm','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3547,0,'vi','plugins/ecommerce/products','form.quantity','Số lượng','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3548,0,'vi','plugins/ecommerce/products','form.brand','Thương hiệu','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3549,0,'vi','plugins/ecommerce/products','form.width','Rộng','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3550,0,'vi','plugins/ecommerce/products','form.height','Cao','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3551,0,'vi','plugins/ecommerce/products','form.weight','Cân nặng','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3552,0,'vi','plugins/ecommerce/products','form.image','Hình ảnh','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3553,0,'vi','plugins/ecommerce/products','form.product_type.title','Loại sản phẩm','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3554,0,'vi','plugins/ecommerce/products','form.stock.title','Tình trạng kho','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3555,0,'vi','plugins/ecommerce/products','form.stock.in_stock','Còn hàng','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3556,0,'vi','plugins/ecommerce/products','form.stock.out_stock','Hết hàng','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3557,0,'vi','plugins/ecommerce/products','form.stock.allow_order_when_out','Cho phép đặt hàng khi hết','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3558,0,'vi','plugins/ecommerce/products','form.storehouse.title','Quản lý kho','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3559,0,'vi','plugins/ecommerce/products','form.storehouse.no_storehouse','Không quản lý kho','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3560,0,'vi','plugins/ecommerce/products','form.storehouse.storehouse','Quản lý kho','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3561,0,'vi','plugins/ecommerce/products','form.storehouse.quantity','Số lượng','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3562,0,'vi','plugins/ecommerce/products','form.shipping.title','Giao hàng','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3563,0,'vi','plugins/ecommerce/products','form.shipping.length','Chiều dài','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3564,0,'vi','plugins/ecommerce/products','form.shipping.wide','Chiều rộng','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3565,0,'vi','plugins/ecommerce/products','form.shipping.height','Chiều cao','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3566,0,'vi','plugins/ecommerce/products','form.shipping.weight','Cân nặng','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3567,0,'vi','plugins/ecommerce/products','form.date.start','Ngày bắt đầu','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3568,0,'vi','plugins/ecommerce/products','form.date.end','Ngày kết thúc','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3569,0,'vi','plugins/ecommerce/products','form.tags','Nhãn','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3570,0,'vi','plugins/ecommerce/products','form.tax','Thuế','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3571,0,'vi','plugins/ecommerce/products','price','Giá cơ bản','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3572,0,'vi','plugins/ecommerce/products','price_sale','Giá giảm','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3573,0,'vi','plugins/ecommerce/products','quantity','Số lượng','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3574,0,'vi','plugins/ecommerce/products','type','Loại sản phẩm','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3575,0,'vi','plugins/ecommerce/products','image','Ảnh','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3576,0,'vi','plugins/ecommerce/products','sku','Mã sản phẩm','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3577,0,'vi','plugins/ecommerce/products','brand','Thương hiệu','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3578,0,'vi','plugins/ecommerce/products','cannot_delete','Product could not be deleted','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3579,0,'vi','plugins/ecommerce/products','product_deleted','Product deleted','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3580,0,'vi','plugins/ecommerce/products','products','Sản phẩm','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3581,0,'vi','plugins/ecommerce/products','menu','Sản phẩm','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3582,0,'vi','plugins/ecommerce/products','control.button_add_image','Thêm hình ảnh','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3583,0,'vi','plugins/ecommerce/products','overview','Tổng quan','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3584,0,'vi','plugins/ecommerce/products','attributes','Thuộc tính','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3585,0,'vi','plugins/ecommerce/products','product_has_variations','Sản phẩm có nhiều phiên bản','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3586,0,'vi','plugins/ecommerce/products','manage_products','Quản lý danh sách sản phẩm','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3587,0,'vi','plugins/ecommerce/products','add_new_product','Tạo sản phẩm','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3588,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.','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3589,0,'vi','plugins/ecommerce/reports','name','Báo cáo','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3590,0,'vi','plugins/ecommerce/reports','widget.order.title','Đơn hàng','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3591,0,'vi','plugins/ecommerce/reports','count.revenue','Doanh thu hôm nay','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3592,0,'vi','plugins/ecommerce/reports','count.orders','Đơn hàng hôm nay','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3593,0,'vi','plugins/ecommerce/reports','count.products','Sản phẩm','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3594,0,'vi','plugins/ecommerce/reports','count.customers','Khách hàng','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3595,0,'vi','plugins/ecommerce/reports','product_name','Tên sản phẩm','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3596,0,'vi','plugins/ecommerce/reports','quantity','Số lượng','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3597,0,'vi','plugins/ecommerce/reports','revenue_statistics','Thống kê doanh thu','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3598,0,'vi','plugins/ecommerce/reports','top_selling_products','Sản phẩm bán chạy trong tháng','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3599,0,'vi','plugins/ecommerce/review','name','Đánh giá','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3600,0,'vi','plugins/ecommerce/review','list_review','Khách hàng đánh giá','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3601,0,'vi','plugins/ecommerce/review','add_review','Thêm đánh giá','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3602,0,'vi','plugins/ecommerce/review','delete_review','Xóa đánh giá','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3603,0,'vi','plugins/ecommerce/review','create_review','Tạo đánh giá','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3604,0,'vi','plugins/ecommerce/review','please_select_rating','Chọn đánh giá','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3605,0,'vi','plugins/ecommerce/review','comment','Bình luận','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3606,0,'vi','plugins/ecommerce/review','approve','Chấp thuận','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3607,0,'vi','plugins/ecommerce/review','approved','Đã chấp thuận','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3608,0,'vi','plugins/ecommerce/review','disapprove','Không chấp thuận','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3609,0,'vi','plugins/ecommerce/review','disapproved','Đã không chấp thuận','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3610,0,'vi','plugins/ecommerce/review','product','Sản phẩm','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3611,0,'vi','plugins/ecommerce/review','user','Người dùng','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3612,0,'vi','plugins/ecommerce/review','star','Sao','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3613,0,'vi','plugins/ecommerce/review','status','Trạng thái','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3614,0,'vi','plugins/ecommerce/review','intro.title','Quản lý danh sách nhận xét của khách hàng','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3615,0,'vi','plugins/ecommerce/review','intro.description','Lưu trữ các nhận xét, đánh giá của khách hàng','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3616,0,'vi','plugins/ecommerce/shipping','name','Phí vận chuyển','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3617,0,'vi','plugins/ecommerce/shipping','shipping','Vận chuyển','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3618,0,'vi','plugins/ecommerce/shipping','title','Title','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3619,0,'vi','plugins/ecommerce/shipping','country','Quốc gia','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3620,0,'vi','plugins/ecommerce/shipping','state','State','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3621,0,'vi','plugins/ecommerce/shipping','city','City','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3622,0,'vi','plugins/ecommerce/shipping','amount','Amount','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3623,0,'vi','plugins/ecommerce/shipping','enable','Enable','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3624,0,'vi','plugins/ecommerce/shipping','enabled','Enabled','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3625,0,'vi','plugins/ecommerce/shipping','disable','Disable','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3626,0,'vi','plugins/ecommerce/shipping','disabled','Disabled','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3627,0,'vi','plugins/ecommerce/shipping','create_shipping','Create a shipping','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3628,0,'vi','plugins/ecommerce/shipping','edit_shipping','Edit shipping #','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3629,0,'vi','plugins/ecommerce/shipping','status','Status','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3630,0,'vi','plugins/ecommerce/shipping','shipping_methods','Phương thức vận chuyển','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3631,0,'vi','plugins/ecommerce/shipping','create_shipping_method','Tạo phương thức vận chuyển','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3632,0,'vi','plugins/ecommerce/shipping','edit_shipping_method','Sửa phương thức vận chuyển','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3633,0,'vi','plugins/ecommerce/shipping','add_shipping_region','Thêm khu vực vận chuyển','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3634,0,'vi','plugins/ecommerce/shipping','methods.default','Default','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3635,0,'vi','plugins/ecommerce/shipping','statuses.not_approved','Not approved','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3636,0,'vi','plugins/ecommerce/shipping','statuses.approved','Approved','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3637,0,'vi','plugins/ecommerce/shipping','statuses.picking','Picking','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3638,0,'vi','plugins/ecommerce/shipping','statuses.delay_picking','Delay picking','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3639,0,'vi','plugins/ecommerce/shipping','statuses.picked','Picked','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3640,0,'vi','plugins/ecommerce/shipping','statuses.not_picked','Not picked','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3641,0,'vi','plugins/ecommerce/shipping','statuses.delivering','Delivering','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3642,0,'vi','plugins/ecommerce/shipping','statuses.delivered','Delivered','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3643,0,'vi','plugins/ecommerce/shipping','statuses.not_delivered','Not delivered','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3644,0,'vi','plugins/ecommerce/shipping','statuses.audited','Audited','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3645,0,'vi','plugins/ecommerce/shipping','statuses.canceled','Canceled','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3646,0,'vi','plugins/ecommerce/shipping','cod_statuses.pending','Pending','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3647,0,'vi','plugins/ecommerce/shipping','cod_statuses.completed','Completed','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3648,0,'vi','plugins/ecommerce/store-locator','name','Địa chỉ cửa hàng','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3649,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.','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3650,0,'vi','plugins/ecommerce/store-locator','shop_name','Tên cửa hàng','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3651,0,'vi','plugins/ecommerce/store-locator','phone','Điện thoại','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3652,0,'vi','plugins/ecommerce/store-locator','address','Địa chỉ','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3653,0,'vi','plugins/ecommerce/tax','name','Thuế','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3654,0,'vi','plugins/ecommerce/tax','create','Tạo thuế','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3655,0,'vi','plugins/ecommerce/tax','edit','Chỉnh sửa thuế :title','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3656,0,'vi','plugins/ecommerce/tax','title','Tiêu đề','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3657,0,'vi','plugins/ecommerce/tax','percentage','Tỉ lệ phần trăm %','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3658,0,'vi','plugins/ecommerce/tax','priority','Thứ tự ưu tiên','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3659,0,'vi','plugins/ecommerce/tax','select_tax','-- lựa chọn --','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3660,0,'en','plugins/faq/faq-category','name','Categories','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3661,0,'en','plugins/faq/faq-category','create','New category','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3662,0,'en','plugins/faq/faq-category','edit','Edit category','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3663,0,'en','plugins/faq/faq','name','FAQ','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3664,0,'en','plugins/faq/faq','create','New faq','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3665,0,'en','plugins/faq/faq','edit','Edit faq','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3666,0,'en','plugins/faq/faq','question','Question','2022-04-20 19:54:53','2022-04-20 19:55:15'),(3667,0,'en','plugins/faq/faq','answer','Answer','2022-04-20 19:54:54','2022-04-20 19:55:15'),(3668,0,'en','plugins/faq/faq','category','Category','2022-04-20 19:54:54','2022-04-20 19:55:15'),(3669,0,'en','plugins/faq/faq','all','All','2022-04-20 19:54:54','2022-04-20 19:55:15'),(3670,0,'en','plugins/faq/faq','faq_schema_config','FAQ schema configuration (:link)','2022-04-20 19:54:54','2022-04-20 19:55:15'),(3671,0,'en','plugins/faq/faq','learn_more','Learn more','2022-04-20 19:54:54','2022-04-20 19:55:15'),(3672,0,'en','plugins/faq/faq','settings.title','FAQ','2022-04-20 19:54:54','2022-04-20 19:55:15'),(3673,0,'en','plugins/faq/faq','settings.description','Settings for FAQ','2022-04-20 19:54:54','2022-04-20 19:55:15'),(3674,0,'en','plugins/faq/faq','settings.enable_faq_schema','Enable FAQ Schema?','2022-04-20 19:54:54','2022-04-20 19:55:15'),(3675,0,'en','plugins/faq/faq','settings.enable_faq_schema_description','Learn more: https://developers.google.com/search/docs/data-types/faqpage','2022-04-20 19:54:54','2022-04-20 19:55:15'),(3676,0,'en','plugins/faq/faq','select_category','Select a category','2022-04-20 19:54:54','2022-04-20 19:55:15'),(3677,0,'en','plugins/faq/faq','add_item','Add item','2022-04-20 19:54:54','2022-04-20 19:55:15'),(3678,0,'en','plugins/gallery/gallery','create','Create new gallery','2022-04-20 19:54:54','2022-04-20 19:55:15'),(3679,0,'en','plugins/gallery/gallery','edit','Edit gallery','2022-04-20 19:54:54','2022-04-20 19:55:15'),(3680,0,'en','plugins/gallery/gallery','galleries','Galleries','2022-04-20 19:54:54','2022-04-20 19:55:15'),(3681,0,'en','plugins/gallery/gallery','item','Gallery item','2022-04-20 19:54:54','2022-04-20 19:55:15'),(3682,0,'en','plugins/gallery/gallery','select_image','Select images','2022-04-20 19:54:54','2022-04-20 19:55:15'),(3683,0,'en','plugins/gallery/gallery','reset','Reset gallery','2022-04-20 19:54:54','2022-04-20 19:55:15'),(3684,0,'en','plugins/gallery/gallery','update_photo_description','Update photo\'s description','2022-04-20 19:54:54','2022-04-20 19:55:15'),(3685,0,'en','plugins/gallery/gallery','update_photo_description_placeholder','Photo\'s description...','2022-04-20 19:54:54','2022-04-20 19:55:15'),(3686,0,'en','plugins/gallery/gallery','delete_photo','Delete this photo','2022-04-20 19:54:54','2022-04-20 19:55:15'),(3687,0,'en','plugins/gallery/gallery','gallery_box','Gallery images','2022-04-20 19:54:54','2022-04-20 19:55:15'),(3688,0,'en','plugins/gallery/gallery','by','By','2022-04-20 19:54:54','2022-04-20 19:55:15'),(3689,0,'en','plugins/gallery/gallery','menu_name','Galleries','2022-04-20 19:54:54','2022-04-20 19:55:15'),(3690,0,'en','plugins/gallery/gallery','gallery_images','Gallery images','2022-04-20 19:54:54','2022-04-20 19:55:15'),(3691,0,'en','plugins/gallery/gallery','add_gallery_short_code','Add a gallery','2022-04-20 19:54:54','2022-04-20 19:55:15'),(3692,0,'en','plugins/gallery/gallery','shortcode_name','Gallery images','2022-04-20 19:54:54','2022-04-20 19:55:15'),(3693,0,'en','plugins/gallery/gallery','limit_display','Limit number display','2022-04-20 19:54:54','2022-04-20 19:55:15'),(3694,0,'en','plugins/language/language','name','Languages','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3695,0,'en','plugins/language/language','choose_language','Choose a language','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3696,0,'en','plugins/language/language','select_language','Select language','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3697,0,'en','plugins/language/language','choose_language_helper','You can choose a language in the list or directly edit it below.','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3698,0,'en','plugins/language/language','language_name','Language name','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3699,0,'en','plugins/language/language','language_name_helper','The name is how it is displayed on your site (for example: English).','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3700,0,'en','plugins/language/language','locale','Locale','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3701,0,'en','plugins/language/language','locale_helper','Laravel Locale for the language (for example: <code>en</code>).','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3702,0,'en','plugins/language/language','language_code','Language code','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3703,0,'en','plugins/language/language','language_code_helper','Language code - preferably 2-letters ISO 639-1 (for example: en)','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3704,0,'en','plugins/language/language','text_direction','Text direction','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3705,0,'en','plugins/language/language','text_direction_helper','Choose the text direction for the language','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3706,0,'en','plugins/language/language','left_to_right','Left to right','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3707,0,'en','plugins/language/language','right_to_left','Right to left','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3708,0,'en','plugins/language/language','flag','Flag','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3709,0,'en','plugins/language/language','flag_helper','Choose a flag for the language.','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3710,0,'en','plugins/language/language','order','Order','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3711,0,'en','plugins/language/language','order_helper','Position of the language in the language switcher','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3712,0,'en','plugins/language/language','add_new_language','Add new language','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3713,0,'en','plugins/language/language','code','Code','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3714,0,'en','plugins/language/language','default_language','Is default?','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3715,0,'en','plugins/language/language','actions','Actions','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3716,0,'en','plugins/language/language','translations','Translations','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3717,0,'en','plugins/language/language','edit','Edit','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3718,0,'en','plugins/language/language','edit_tooltip','Edit this language','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3719,0,'en','plugins/language/language','delete','Delete','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3720,0,'en','plugins/language/language','delete_tooltip','Delete this language and all its associated data','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3721,0,'en','plugins/language/language','choose_default_language','Choose :language as default language','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3722,0,'en','plugins/language/language','current_language','Current record\'s language','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3723,0,'en','plugins/language/language','edit_related','Edit related language for this record','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3724,0,'en','plugins/language/language','add_language_for_item','Add other language version for this record','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3725,0,'en','plugins/language/language','settings','Settings','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3726,0,'en','plugins/language/language','language_hide_default','Hide default language from URL?','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3727,0,'en','plugins/language/language','language_display_flag_only','Flag only','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3728,0,'en','plugins/language/language','language_display_name_only','Name only','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3729,0,'en','plugins/language/language','language_display_all','Display all flag and name','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3730,0,'en','plugins/language/language','language_display','Language display','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3731,0,'en','plugins/language/language','switcher_display','Switcher language display','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3732,0,'en','plugins/language/language','language_switcher_display_dropdown','Dropdown','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3733,0,'en','plugins/language/language','language_switcher_display_list','List','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3734,0,'en','plugins/language/language','current_language_edit_notification','You are editing \"<strong class=\"current_language_text\">:language</strong>\" version','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3735,0,'en','plugins/language/language','confirm-change-language','Confirm change language','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3736,0,'en','plugins/language/language','confirm-change-language-message','Do you really want to change language to \"<strong class=\"change_to_language_text\"></strong>\" ? This action will be override \"<strong class=\"change_to_language_text\"></strong>\" version if it\'s existed!','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3737,0,'en','plugins/language/language','confirm-change-language-btn','Confirm change','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3738,0,'en','plugins/language/language','hide_languages','Hide languages','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3739,0,'en','plugins/language/language','hide_languages_description','You can completely hide content in specific languages from visitors and search engines, but still view it yourself. This allows reviewing translations that are in progress.','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3740,0,'en','plugins/language/language','hide_languages_helper_display_hidden','{0} All languages are currently displayed.|{1} :language is currently hidden to visitors.|[2, Inf] :language are currently hidden to visitors.','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3741,0,'en','plugins/language/language','show_all','Show all','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3742,0,'en','plugins/language/language','change_language','Language','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3743,0,'en','plugins/language/language','language_show_default_item_if_current_version_not_existed','Show item in default language if it is not existed in current language','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3744,0,'en','plugins/language/language','select_flag','Select a flag...','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3745,0,'en','plugins/language/language','delete_confirmation_message','Do you really want to delete this language? It also deletes all items in this language and cannot rollback!','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3746,0,'en','plugins/language/language','added_already','This language was added already!','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3747,0,'en','plugins/language/language','language_auto_detect_user_language','Auto detect user language?','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3748,0,'en','plugins/location/bulk-import','name','Bulk Import','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3749,0,'en','plugins/location/bulk-import','loading_text','Importing','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3750,0,'en','plugins/location/bulk-import','imported_successfully','Imported successfully.','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3751,0,'en','plugins/location/bulk-import','please_choose_the_file_mime','Please choose the file mime :types','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3752,0,'en','plugins/location/bulk-import','please_choose_the_file','Please choose the file','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3753,0,'en','plugins/location/bulk-import','start_import','Start Import','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3754,0,'en','plugins/location/bulk-import','note','Note!','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3755,0,'en','plugins/location/bulk-import','warning_before_importing','If this is your first time using this feature, please read the documentation or contact the Administrator for access to the correct functionality!','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3756,0,'en','plugins/location/bulk-import','results','Result: :success successes, :failed failures','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3757,0,'en','plugins/location/bulk-import','failures','Failures','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3758,0,'en','plugins/location/bulk-import','tables.import','Import','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3759,0,'en','plugins/location/bulk-import','template','Template','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3760,0,'en','plugins/location/bulk-import','rules','Rules','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3761,0,'en','plugins/location/bulk-import','choose_file_with_mime','Choose file with mime: (:types)','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3762,0,'en','plugins/location/bulk-import','choose_file','Choose file','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3763,0,'en','plugins/location/bulk-import','menu','Import locations','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3764,0,'en','plugins/location/bulk-import','download-csv-file','Download CSV template','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3765,0,'en','plugins/location/bulk-import','download-excel-file','Download Excel template','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3766,0,'en','plugins/location/bulk-import','downloading','Downloading...','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3767,0,'en','plugins/location/bulk-import','export.template.input_error','Input error','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3768,0,'en','plugins/location/bulk-import','export.template.number_not_allowed','Number is not allowed!','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3769,0,'en','plugins/location/bulk-import','export.template.allowed_input','Allowed input','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3770,0,'en','plugins/location/bulk-import','export.template.prompt_decimal','Only numbers or decimals are accepted and greater than or equal to :min.','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3771,0,'en','plugins/location/bulk-import','export.template.prompt_whole_number','Only numbers are accepted and greater than or equal to :min.','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3772,0,'en','plugins/location/bulk-import','export.template.prompt_list','Please pick a value from the drop-down list.','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3773,0,'en','plugins/location/bulk-import','export.template.pick_from_list','Pick from list','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3774,0,'en','plugins/location/bulk-import','export.template.value_not_in_list','Value is not in list.','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3775,0,'en','plugins/location/bulk-import','export.template.max_text_length','Max text length','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3776,0,'en','plugins/location/bulk-import','export.template.prompt_max_text_length','Only accept text with length less than or equal to :max.','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3777,0,'en','plugins/location/bulk-import','import_failed_description','Import failed, please check the errors below!','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3778,0,'en','plugins/location/bulk-import','available_enable_multi_language','Only available when you enable \"Is Multi Language?\"','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3779,0,'en','plugins/location/bulk-import','import_type_required_if','The :attribute field is required when \"Import Type\" is :value.','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3780,0,'en','plugins/location/bulk-import','import_available_data','Import available data','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3781,0,'en','plugins/location/bulk-import','import','Import','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3782,0,'en','plugins/location/bulk-import','import_available_data_confirmation','Import available data confirmation','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3783,0,'en','plugins/location/bulk-import','import_available_data_confirmation_content','Do you really want to import states/cities for this country?','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3784,0,'en','plugins/location/city','name','Cities','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3785,0,'en','plugins/location/city','create','New city','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3786,0,'en','plugins/location/city','edit','Edit city','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3787,0,'en','plugins/location/city','state','State','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3788,0,'en','plugins/location/city','select_state','Select state...','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3789,0,'en','plugins/location/city','select_city','Select city...','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3790,0,'en','plugins/location/city','country','Country','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3791,0,'en','plugins/location/city','select_country','Select country...','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3792,0,'en','plugins/location/city','city','City','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3793,0,'en','plugins/location/country','name','Countries','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3794,0,'en','plugins/location/country','create','New country','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3795,0,'en','plugins/location/country','edit','Edit country','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3796,0,'en','plugins/location/country','nationality','Nationality','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3797,0,'en','plugins/location/country','code','Country ISO code','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3798,0,'en','plugins/location/country','code_placeholder','ISO country code, uppercase. Ex: US.','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3799,0,'en','plugins/location/country','code_helper','Find country ISO code from here: https://en.wikipedia.org/wiki/List_of_ISO_3166_country_codes','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3800,0,'en','plugins/location/location','name','Locations','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3801,0,'en','plugins/location/location','create','New location','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3802,0,'en','plugins/location/location','edit','Edit location','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3803,0,'en','plugins/location/location','all_states','All states','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3804,0,'en','plugins/location/location','abbreviation','Abbreviation','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3805,0,'en','plugins/location/location','abbreviation_placeholder','E.g: CA','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3806,0,'en','plugins/location/state','name','States','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3807,0,'en','plugins/location/state','create','New state','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3808,0,'en','plugins/location/state','edit','Edit state','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3809,0,'en','plugins/location/state','country','Country','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3810,0,'en','plugins/location/state','select_country','Select a country...','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3811,0,'en','plugins/location/state','state','State','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3812,0,'en','plugins/newsletter/newsletter','name','Newsletters','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3813,0,'en','plugins/newsletter/newsletter','settings.email.templates.title','Newsletter','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3814,0,'en','plugins/newsletter/newsletter','settings.email.templates.description','Config newsletter email templates','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3815,0,'en','plugins/newsletter/newsletter','settings.email.templates.to_admin.title','Email send to admin','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3816,0,'en','plugins/newsletter/newsletter','settings.email.templates.to_admin.description','Template for sending email to admin','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3817,0,'en','plugins/newsletter/newsletter','settings.email.templates.to_user.title','Email send to user','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3818,0,'en','plugins/newsletter/newsletter','settings.email.templates.to_user.description','Template for sending email to subscriber','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3819,0,'en','plugins/newsletter/newsletter','settings.title','Newsletter','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3820,0,'en','plugins/newsletter/newsletter','settings.description','Settings for newsletter','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3821,0,'en','plugins/newsletter/newsletter','settings.mailchimp_api_key','Mailchimp API Key','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3822,0,'en','plugins/newsletter/newsletter','settings.mailchimp_list_id','Mailchimp List ID','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3823,0,'en','plugins/newsletter/newsletter','settings.mailchimp_list','Mailchimp List','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3824,0,'en','plugins/newsletter/newsletter','settings.sendgrid_api_key','Sendgrid API Key','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3825,0,'en','plugins/newsletter/newsletter','settings.sendgrid_list_id','Sendgrid List ID','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3826,0,'en','plugins/newsletter/newsletter','settings.sendgrid_list','Sendgrid List','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3827,0,'en','plugins/newsletter/newsletter','statuses.subscribed','Subscribed','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3828,0,'en','plugins/newsletter/newsletter','statuses.unsubscribed','Unsubscribed','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3829,0,'en','plugins/payment/payment','payments','Payments','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3830,0,'en','plugins/payment/payment','checkout_success','Checkout successfully!','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3831,0,'en','plugins/payment/payment','view_payment','View payment #','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3832,0,'en','plugins/payment/payment','charge_id','Charge ID','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3833,0,'en','plugins/payment/payment','amount','Amount','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3834,0,'en','plugins/payment/payment','currency','Currency','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3835,0,'en','plugins/payment/payment','user','User','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3836,0,'en','plugins/payment/payment','stripe','Stripe','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3837,0,'en','plugins/payment/payment','paypal','PayPal','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3838,0,'en','plugins/payment/payment','action','Action','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3839,0,'en','plugins/payment/payment','payment_via_card','Payment via card','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3840,0,'en','plugins/payment/payment','card_number','Card number','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3841,0,'en','plugins/payment/payment','full_name','Full name','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3842,0,'en','plugins/payment/payment','payment_via_paypal','Fast and safe online payment via PayPal.','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3843,0,'en','plugins/payment/payment','mm_yy','MM/YY','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3844,0,'en','plugins/payment/payment','cvc','CVC','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3845,0,'en','plugins/payment/payment','details','Details','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3846,0,'en','plugins/payment/payment','payer_name','Payer Name','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3847,0,'en','plugins/payment/payment','email','Email','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3848,0,'en','plugins/payment/payment','phone','Phone','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3849,0,'en','plugins/payment/payment','country','Country','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3850,0,'en','plugins/payment/payment','shipping_address','Shipping Address','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3851,0,'en','plugins/payment/payment','payment_details','Payment Details','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3852,0,'en','plugins/payment/payment','card','Card','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3853,0,'en','plugins/payment/payment','address','Address','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3854,0,'en','plugins/payment/payment','could_not_get_stripe_token','Could not get Stripe token to make a charge.','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3855,0,'en','plugins/payment/payment','payment_id','Payment ID','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3856,0,'en','plugins/payment/payment','payment_methods','Payment methods','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3857,0,'en','plugins/payment/payment','transactions','Transactions','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3858,0,'en','plugins/payment/payment','payment_methods_description','Setup payment methods for website','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3859,0,'en','plugins/payment/payment','paypal_description','Customer can buy product and pay directly via PayPal','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3860,0,'en','plugins/payment/payment','use','Use','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3861,0,'en','plugins/payment/payment','stripe_description','Customer can buy product and pay directly using Visa, Credit card via Stripe','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3862,0,'en','plugins/payment/payment','edit','Edit','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3863,0,'en','plugins/payment/payment','settings','Settings','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3864,0,'en','plugins/payment/payment','activate','Activate','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3865,0,'en','plugins/payment/payment','deactivate','Deactivate','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3866,0,'en','plugins/payment/payment','update','Update','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3867,0,'en','plugins/payment/payment','configuration_instruction','Configuration instruction for :name','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3868,0,'en','plugins/payment/payment','configuration_requirement','To use :name, you need','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3869,0,'en','plugins/payment/payment','service_registration','Register with :name','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3870,0,'en','plugins/payment/payment','after_service_registration_msg','After registration at :name, you will have Client ID, Client Secret','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3871,0,'en','plugins/payment/payment','enter_client_id_and_secret','Enter Client ID, Secret into the box in right hand','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3872,0,'en','plugins/payment/payment','method_name','Method name','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3873,0,'en','plugins/payment/payment','please_provide_information','Please provide information','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3874,0,'en','plugins/payment/payment','client_id','Client ID','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3875,0,'en','plugins/payment/payment','client_secret','Client Secret','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3876,0,'en','plugins/payment/payment','secret','Secret','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3877,0,'en','plugins/payment/payment','stripe_key','Stripe Public Key','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3878,0,'en','plugins/payment/payment','stripe_secret','Stripe Private Key','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3879,0,'en','plugins/payment/payment','stripe_after_service_registration_msg','After registration at :name, you will have Public, Secret keys','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3880,0,'en','plugins/payment/payment','stripe_enter_client_id_and_secret','Enter Public, Secret keys into the box in right hand','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3881,0,'en','plugins/payment/payment','pay_online_via','Pay online via :name','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3882,0,'en','plugins/payment/payment','sandbox_mode','Sandbox mode','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3883,0,'en','plugins/payment/payment','deactivate_payment_method','Deactivate payment method','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3884,0,'en','plugins/payment/payment','deactivate_payment_method_description','Do you really want to deactivate this payment method?','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3885,0,'en','plugins/payment/payment','agree','Agree','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3886,0,'en','plugins/payment/payment','name','Payments','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3887,0,'en','plugins/payment/payment','create','New payment','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3888,0,'en','plugins/payment/payment','go_back','Go back','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3889,0,'en','plugins/payment/payment','information','Information','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3890,0,'en','plugins/payment/payment','methods.paypal','PayPal','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3891,0,'en','plugins/payment/payment','methods.stripe','Stripe','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3892,0,'en','plugins/payment/payment','methods.cod','Cash on delivery (COD)','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3893,0,'en','plugins/payment/payment','methods.bank_transfer','Bank transfer','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3894,0,'en','plugins/payment/payment','statuses.pending','Pending','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3895,0,'en','plugins/payment/payment','statuses.completed','Completed','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3896,0,'en','plugins/payment/payment','statuses.refunding','Refunding','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3897,0,'en','plugins/payment/payment','statuses.refunded','Refunded','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3898,0,'en','plugins/payment/payment','statuses.fraud','Fraud','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3899,0,'en','plugins/payment/payment','statuses.failed','Failed','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3900,0,'en','plugins/payment/payment','payment_methods_instruction','Guide customers to pay directly. You can choose to pay by delivery or bank transfer','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3901,0,'en','plugins/payment/payment','payment_method_description','Payment guide - (Displayed on the notice of successful purchase and payment page)','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3902,0,'en','plugins/payment/payment','payment_via_cod','Cash on delivery (COD)','2022-04-20 19:54:54','2022-04-20 19:55:16'),(3903,0,'en','plugins/payment/payment','payment_via_bank_transfer','Bank transfer','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3904,0,'en','plugins/payment/payment','payment_pending','Checkout successfully. Your payment is pending and will be checked by our staff.','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3905,0,'en','plugins/payment/payment','created_at','Created At','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3906,0,'en','plugins/payment/payment','payment_channel','Payment Channel','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3907,0,'en','plugins/payment/payment','total','Total','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3908,0,'en','plugins/payment/payment','status','Status','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3909,0,'en','plugins/payment/payment','default_payment_method','Default payment method','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3910,0,'en','plugins/payment/payment','turn_off_success','Turn off payment method successfully!','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3911,0,'en','plugins/payment/payment','saved_payment_method_success','Saved payment method successfully!','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3912,0,'en','plugins/payment/payment','saved_payment_settings_success','Saved payment settings successfully!','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3913,0,'en','plugins/payment/payment','payment_name','Name','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3914,0,'en','plugins/payment/payment','callback_url','Callback URL','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3915,0,'en','plugins/payment/payment','return_url','Return URL','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3916,0,'en','plugins/payment/payment','payment_not_found','Payment not found!','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3917,0,'en','plugins/payment/payment','refunds.title','Refunds','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3918,0,'en','plugins/payment/payment','refunds.id','ID','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3919,0,'en','plugins/payment/payment','refunds.breakdowns','Breakdowns','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3920,0,'en','plugins/payment/payment','refunds.gross_amount','Gross amount','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3921,0,'en','plugins/payment/payment','refunds.paypal_fee','PayPal fee','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3922,0,'en','plugins/payment/payment','refunds.net_amount','Net amount','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3923,0,'en','plugins/payment/payment','refunds.total_refunded_amount','Total refunded amount','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3924,0,'en','plugins/payment/payment','refunds.create_time','Create time','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3925,0,'en','plugins/payment/payment','refunds.update_time','Update time','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3926,0,'en','plugins/payment/payment','refunds.status','Status','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3927,0,'en','plugins/payment/payment','refunds.description','Description','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3928,0,'en','plugins/payment/payment','refunds.refunded_at','Refunded at','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3929,0,'en','plugins/payment/payment','refunds.error_message','Error message','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3930,0,'en','plugins/payment/payment','view_response_source','View response source','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3931,0,'en','plugins/payment/payment','status_is_not_completed','Status is not COMPLETED','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3932,0,'en','plugins/payment/payment','cannot_found_capture_id','Can not found capture id with payment detail','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3933,0,'en','plugins/payment/payment','amount_refunded','Amount refunded','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3934,0,'en','plugins/payment/payment','amount_remaining','Amount remaining','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3935,0,'en','plugins/payment/payment','paid_at','Paid At','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3936,0,'en','plugins/payment/payment','invalid_settings','Settings for :name are invalid!','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3937,0,'en','plugins/payment/payment','view_transaction','Transaction \":charge_id\"','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3938,0,'en','plugins/payment/payment','payment_description','Pay for your order #:order_id at :site_url','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3939,0,'vi','plugins/payment/payment','payments','Thanh toán','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3940,0,'vi','plugins/payment/payment','checkout_success','Thanh toán thành công!','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3941,0,'vi','plugins/payment/payment','view_payment','Xem thanh toán #','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3942,0,'vi','plugins/payment/payment','charge_id','Mã thanh toán','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3943,0,'vi','plugins/payment/payment','amount','Số tiền','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3944,0,'vi','plugins/payment/payment','currency','Loại tiền tệ','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3945,0,'vi','plugins/payment/payment','user','Người dùng','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3946,0,'vi','plugins/payment/payment','stripe','Stripe','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3947,0,'vi','plugins/payment/payment','paypal','PayPal','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3948,0,'vi','plugins/payment/payment','action','Hành động','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3949,0,'vi','plugins/payment/payment','payment_via_card','Thanh toán qua thẻ','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3950,0,'vi','plugins/payment/payment','card_number','Số thẻ','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3951,0,'vi','plugins/payment/payment','full_name','Họ tên','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3952,0,'vi','plugins/payment/payment','payment_via_paypal','Thanh toán qua PayPal','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3953,0,'vi','plugins/payment/payment','mm_yy','MM/YY','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3954,0,'vi','plugins/payment/payment','cvc','CVC','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3955,0,'vi','plugins/payment/payment','details','Chi tiết','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3956,0,'vi','plugins/payment/payment','payer_name','Tên người mua','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3957,0,'vi','plugins/payment/payment','email','Email','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3958,0,'vi','plugins/payment/payment','phone','Điện thoại','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3959,0,'vi','plugins/payment/payment','country','Quốc gia','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3960,0,'vi','plugins/payment/payment','shipping_address','Địa chỉ giao hàng','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3961,0,'vi','plugins/payment/payment','payment_details','Chi tiết thanh toán','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3962,0,'vi','plugins/payment/payment','card','Thẻ','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3963,0,'vi','plugins/payment/payment','address','Địa chỉ','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3964,0,'vi','plugins/payment/payment','could_not_get_stripe_token','Không thể lấy mã Stripe để thanh toán.','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3965,0,'vi','plugins/payment/payment','payment_id','Mã thanh toán','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3966,0,'vi','plugins/payment/payment','payment_methods','Phương thức thanh toán','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3967,0,'vi','plugins/payment/payment','transactions','Lịch sử giao dịch','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3968,0,'vi','plugins/payment/payment','payment_methods_description','Cài đặt các phương thức thanh toán cho website','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3969,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','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3970,0,'vi','plugins/payment/payment','use','Dùng','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3971,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','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3972,0,'vi','plugins/payment/payment','edit','Chỉnh sửa','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3973,0,'vi','plugins/payment/payment','settings','Cài đặt','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3974,0,'vi','plugins/payment/payment','activate','Kích hoạt','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3975,0,'vi','plugins/payment/payment','deactivate','Huỷ kích hoạt','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3976,0,'vi','plugins/payment/payment','update','Cập nhật','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3977,0,'vi','plugins/payment/payment','configuration_instruction','Hướng dẫn cấu hình :name','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3978,0,'vi','plugins/payment/payment','configuration_requirement','Để sử dụng :name bạn cần','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3979,0,'vi','plugins/payment/payment','service_registration','Đăng ký dịch vụ với :name','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3980,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','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3981,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','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3982,0,'vi','plugins/payment/payment','method_name','Tên phương thức','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3983,0,'vi','plugins/payment/payment','please_provide_information','Xin vui lòng cung cấp thông tin','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3984,0,'vi','plugins/payment/payment','client_id','Client ID','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3985,0,'vi','plugins/payment/payment','client_secret','Client Secret','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3986,0,'vi','plugins/payment/payment','stripe_key','Stripe Key','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3987,0,'vi','plugins/payment/payment','stripe_secret','Stripe Secret','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3988,0,'vi','plugins/payment/payment','stripe_after_service_registration_msg','After registration at :name, you will have Public, Secret keys','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3989,0,'vi','plugins/payment/payment','stripe_enter_client_id_and_secret','Enter Public, Secret keys into the box in right hand','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3990,0,'vi','plugins/payment/payment','secret','Secret','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3991,0,'vi','plugins/payment/payment','pay_online_via','Thanh toán online qua :name','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3992,0,'vi','plugins/payment/payment','sandbox_mode','Chế độ thử nghiệm','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3993,0,'vi','plugins/payment/payment','deactivate_payment_method','Huỷ kích hoạt phương thức','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3994,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?','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3995,0,'vi','plugins/payment/payment','agree','Đồng ý','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3996,0,'vi','plugins/payment/payment','name','Thanh toán','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3997,0,'vi','plugins/payment/payment','create','Thêm thanh toán mới','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3998,0,'vi','plugins/payment/payment','go_back','Trở lại','2022-04-20 19:54:55','2022-04-20 19:55:16'),(3999,0,'vi','plugins/payment/payment','information','Thông tin','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4000,0,'vi','plugins/payment/payment','methods.paypal','PayPal','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4001,0,'vi','plugins/payment/payment','methods.stripe','Stripe','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4002,0,'vi','plugins/payment/payment','methods.cod','Thanh toán khi giao hàng (COD)','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4003,0,'vi','plugins/payment/payment','methods.bank_transfer','Chuyển khoản qua ngân hàng','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4004,0,'vi','plugins/payment/payment','statuses.pending','Chưa hoàn tất','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4005,0,'vi','plugins/payment/payment','statuses.completed','Đã hoàn thành','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4006,0,'vi','plugins/payment/payment','statuses.refunding','Đang hoàn tiền','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4007,0,'vi','plugins/payment/payment','statuses.refunded','Đã hoàn tiền','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4008,0,'vi','plugins/payment/payment','statuses.fraud','Gian lận','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4009,0,'vi','plugins/payment/payment','statuses.failed','Thất bại','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4010,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','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4011,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)','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4012,0,'vi','plugins/payment/payment','payment_via_cod','Thanh toán khi nhận hàng (COD)','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4013,0,'vi','plugins/payment/payment','payment_via_bank_transfer','Chuyển khoản qua ngân hàng','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4014,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.','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4015,0,'vi','plugins/payment/payment','created_at','Ngày tạo','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4016,0,'vi','plugins/payment/payment','payment_channel','Phương thức thanh toán','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4017,0,'vi','plugins/payment/payment','total','Tổng cộng','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4018,0,'vi','plugins/payment/payment','status','Trạng thái','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4019,0,'vi','plugins/payment/payment','default_payment_method','Phương thức thanh toán mặc định','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4020,0,'en','plugins/simple-slider/simple-slider','create','New slider','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4021,0,'en','plugins/simple-slider/simple-slider','edit','Edit slider','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4022,0,'en','plugins/simple-slider/simple-slider','menu','Simple sliders','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4023,0,'en','plugins/simple-slider/simple-slider','settings.title','Simple sliders','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4024,0,'en','plugins/simple-slider/simple-slider','settings.description','Settings for Simple sliders','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4025,0,'en','plugins/simple-slider/simple-slider','settings.using_assets','Using default assets?','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4026,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.','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4027,0,'en','plugins/simple-slider/simple-slider','add_new','Add new','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4028,0,'en','plugins/simple-slider/simple-slider','save_sorting','Save sorting','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4029,0,'en','plugins/simple-slider/simple-slider','key','Key','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4030,0,'en','plugins/simple-slider/simple-slider','slide_items','Slide Items','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4031,0,'en','plugins/simple-slider/simple-slider','update_slide_position_success','Updated slide position successfully!','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4032,0,'en','plugins/simple-slider/simple-slider','create_new_slide','Create a new slide','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4033,0,'en','plugins/simple-slider/simple-slider','edit_slide','Edit slide #:id','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4034,0,'en','plugins/simple-slider/simple-slider','simple_slider_shortcode_name','Simple Slider','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4035,0,'en','plugins/simple-slider/simple-slider','simple_slider_shortcode_description','Add a simple slider','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4036,0,'en','plugins/simple-slider/simple-slider','select_slider','Select a slider','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4037,0,'en','plugins/social-login/social-login','settings.title','Social Login settings','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4038,0,'en','plugins/social-login/social-login','settings.description','Configure social login options','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4039,0,'en','plugins/social-login/social-login','settings.facebook.title','Facebook login settings','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4040,0,'en','plugins/social-login/social-login','settings.facebook.description','Enable/disable & configure app credentials for Facebook login','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4041,0,'en','plugins/social-login/social-login','settings.facebook.app_id','App ID','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4042,0,'en','plugins/social-login/social-login','settings.facebook.app_secret','App Secret','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4043,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','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4044,0,'en','plugins/social-login/social-login','settings.google.title','Google login settings','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4045,0,'en','plugins/social-login/social-login','settings.google.description','Enable/disable & configure app credentials for Google login','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4046,0,'en','plugins/social-login/social-login','settings.google.app_id','App ID','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4047,0,'en','plugins/social-login/social-login','settings.google.app_secret','App Secret','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4048,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','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4049,0,'en','plugins/social-login/social-login','settings.github.title','Github login settings','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4050,0,'en','plugins/social-login/social-login','settings.github.description','Enable/disable & configure app credentials for Github login','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4051,0,'en','plugins/social-login/social-login','settings.github.app_id','App ID','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4052,0,'en','plugins/social-login/social-login','settings.github.app_secret','App Secret','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4053,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','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4054,0,'en','plugins/social-login/social-login','settings.linkedin.title','Linkedin login settings','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4055,0,'en','plugins/social-login/social-login','settings.linkedin.description','Enable/disable & configure app credentials for Linkedin login','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4056,0,'en','plugins/social-login/social-login','settings.linkedin.app_id','App ID','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4057,0,'en','plugins/social-login/social-login','settings.linkedin.app_secret','App Secret','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4058,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','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4059,0,'en','plugins/social-login/social-login','settings.enable','Enable?','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4060,0,'en','plugins/social-login/social-login','menu','Social Login','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4061,0,'en','plugins/translation/translation','translations','Translations','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4062,0,'en','plugins/translation/translation','translations_description','Translate all words in system.','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4063,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.','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4064,0,'en','plugins/translation/translation','import_done','Done importing, processed :counter items! Reload this page to refresh the groups!','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4065,0,'en','plugins/translation/translation','translation_manager','Translations Manager','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4066,0,'en','plugins/translation/translation','done_publishing','Done publishing the translations for group','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4067,0,'en','plugins/translation/translation','append_translation','Append new translations','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4068,0,'en','plugins/translation/translation','replace_translation','Replace existing translations','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4069,0,'en','plugins/translation/translation','import_group','Import group','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4070,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.','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4071,0,'en','plugins/translation/translation','publish_translations','Publish translations','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4072,0,'en','plugins/translation/translation','back','Back','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4073,0,'en','plugins/translation/translation','edit_title','Enter translation','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4074,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.','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4075,0,'en','plugins/translation/translation','choose_a_group','Choose a group','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4076,0,'en','plugins/translation/translation','locales','Locales','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4077,0,'en','plugins/translation/translation','theme-translations','Theme translations','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4078,0,'en','plugins/translation/translation','admin-translations','Other translations','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4079,0,'en','plugins/translation/translation','translate_from','Translate from','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4080,0,'en','plugins/translation/translation','to','to','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4081,0,'en','plugins/translation/translation','no_other_languages','No other language to translate!','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4082,0,'en','plugins/translation/translation','edit','Edit','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4083,0,'en','plugins/translation/translation','locale','Locale','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4084,0,'en','plugins/translation/translation','locale_placeholder','Ex: en','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4085,0,'en','plugins/translation/translation','name','Name','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4086,0,'en','plugins/translation/translation','default_locale','Default locale?','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4087,0,'en','plugins/translation/translation','actions','Actions','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4088,0,'en','plugins/translation/translation','choose_language','Choose language','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4089,0,'en','plugins/translation/translation','add_new_language','Add new language','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4090,0,'en','plugins/translation/translation','select_language','Select language','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4091,0,'en','plugins/translation/translation','flag','Flag','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4092,0,'en','plugins/translation/translation','folder_is_not_writeable','Cannot write files! Folder /resources/lang is not writable. Please chmod to make it writable!','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4093,0,'en','plugins/translation/translation','delete','Delete','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4094,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!','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4095,0,'en','plugins/translation/translation','download','Download','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4096,0,'en','plugins/translation/translation','select_locale','Select locale','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4097,0,'en','plugins/translation/translation','theme_translations_instruction','Click on text to translate. Do NOT translate variables, Eg. :username, :query, :link...','2022-04-20 19:54:55','2022-04-20 19:55:16'),(4098,0,'vi','auth','failed','Không tìm thấy thông tin đăng nhập hợp lệ.','2022-04-20 19:54:55','2022-04-20 19:55:12'),(4099,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.','2022-04-20 19:54:55','2022-04-20 19:55:12'),(4100,0,'vi','auth','password','Mật khẩu không chính xác','2022-04-20 19:54:55','2022-04-20 19:55:12'),(4101,0,'vi','pagination','previous','&laquo; Trước','2022-04-20 19:54:55','2022-04-20 19:55:12'),(4102,0,'vi','pagination','next','Sau &raquo;','2022-04-20 19:54:56','2022-04-20 19:55:12'),(4103,0,'vi','passwords','reset','Mật khẩu đã được cập nhật!','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4104,0,'vi','passwords','sent','Chúng tôi đã gửi cho bạn đường dẫn thay đổi mật khẩu!','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4105,0,'vi','passwords','token','Mã xác nhận mật khẩu không hợp lệ.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4106,0,'vi','passwords','user','Không tìm thấy thành viên với địa chỉ email này.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4107,0,'vi','validation','accepted','Trường :attribute phải được chấp nhận.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4108,0,'vi','validation','active_url','Trường :attribute không phải là một URL hợp lệ.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4109,0,'vi','validation','after','Trường :attribute phải là một ngày sau ngày :date.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4110,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.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4111,0,'vi','validation','alpha','Trường :attribute chỉ có thể chứa các chữ cái.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4112,0,'vi','validation','alpha_dash','Trường :attribute chỉ có thể chứa chữ cái, số và dấu gạch ngang.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4113,0,'vi','validation','alpha_num','Trường :attribute chỉ có thể chứa chữ cái và số.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4114,0,'vi','validation','array','Trường :attribute phải là dạng mảng.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4115,0,'vi','validation','before','Trường :attribute phải là một ngày trước ngày :date.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4116,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.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4117,0,'vi','validation','between.array','Trường :attribute phải có từ :min - :max phần tử.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4118,0,'vi','validation','between.file','Dung lượng tập tin trong trường :attribute phải từ :min - :max kB.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4119,0,'vi','validation','between.numeric','Trường :attribute phải nằm trong khoảng :min - :max.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4120,0,'vi','validation','between.string','Trường :attribute phải từ :min - :max kí tự.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4121,0,'vi','validation','boolean','Trường :attribute phải là true hoặc false.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4122,0,'vi','validation','confirmed','Giá trị xác nhận trong trường :attribute không khớp.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4123,0,'vi','validation','date','Trường :attribute không phải là định dạng của ngày-tháng.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4124,0,'vi','validation','date_equals','Trường :attribute phải là một ngày bằng với :date.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4125,0,'vi','validation','date_format','Trường :attribute không giống với định dạng :format.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4126,0,'vi','validation','different','Trường :attribute và :other phải khác nhau.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4127,0,'vi','validation','digits','Độ dài của trường :attribute phải gồm :digits chữ số.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4128,0,'vi','validation','digits_between','Độ dài của trường :attribute phải nằm trong khoảng :min and :max chữ số.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4129,0,'vi','validation','dimensions','Trường :attribute có kích thước không hợp lệ.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4130,0,'vi','validation','distinct','Trường :attribute có giá trị trùng lặp.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4131,0,'vi','validation','email','Trường :attribute phải là một địa chỉ email hợp lệ.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4132,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','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4133,0,'vi','validation','exists','Giá trị đã chọn trong trường :attribute không hợp lệ.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4134,0,'vi','validation','file','Trường :attribute phải là một tệp tin.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4135,0,'vi','validation','filled','Trường :attribute không được bỏ trống.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4136,0,'vi','validation','gt.array','Mảng :attribute phải có nhiều hơn :value phần tử.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4137,0,'vi','validation','gt.file','Dung lượng trường :attribute phải lớn hơn :value kilobytes.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4138,0,'vi','validation','gt.numeric','Giá trị trường :attribute phải lớn hơn :value.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4139,0,'vi','validation','gt.string','Độ dài trường :attribute phải nhiều hơn :value kí tự.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4140,0,'vi','validation','gte.array','Mảng :attribute phải có ít nhất :value phần tử.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4141,0,'vi','validation','gte.file','Dung lượng trường :attribute phải lớn hơn hoặc bằng :value kilobytes.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4142,0,'vi','validation','gte.numeric','Giá trị trường :attribute phải lớn hơn hoặc bằng :value.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4143,0,'vi','validation','gte.string','Độ dài trường :attribute phải lớn hơn hoặc bằng :value kí tự.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4144,0,'vi','validation','image','Trường :attribute phải là định dạng hình ảnh.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4145,0,'vi','validation','in','Giá trị đã chọn trong trường :attribute không hợp lệ.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4146,0,'vi','validation','in_array','Trường :attribute phải thuộc tập cho phép: :other.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4147,0,'vi','validation','integer','Trường :attribute phải là một số nguyên.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4148,0,'vi','validation','ip','Trường :attribute phải là một địa chỉ IP.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4149,0,'vi','validation','ipv4','Trường :attribute phải là một địa chỉ IPv4.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4150,0,'vi','validation','ipv6','Trường :attribute phải là một địa chỉ IPv6.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4151,0,'vi','validation','json','Trường :attribute phải là một chuỗi JSON.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4152,0,'vi','validation','lt.array','Mảng :attribute phải có ít hơn :value phần tử.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4153,0,'vi','validation','lt.file','Dung lượng trường :attribute phải nhỏ hơn :value kilobytes.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4154,0,'vi','validation','lt.numeric','Giá trị trường :attribute phải nhỏ hơn :value.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4155,0,'vi','validation','lt.string','Độ dài trường :attribute phải nhỏ hơn :value kí tự.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4156,0,'vi','validation','lte.array','Mảng :attribute không được có nhiều hơn :value phần tử.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4157,0,'vi','validation','lte.file','Dung lượng trường :attribute phải nhỏ hơn hoặc bằng :value kilobytes.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4158,0,'vi','validation','lte.numeric','Giá trị trường :attribute phải nhỏ hơn hoặc bằng :value.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4159,0,'vi','validation','lte.string','Độ dài trường :attribute phải nhỏ hơn hoặc bằng :value kí tự.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4160,0,'vi','validation','max.array','Trường :attribute không được lớn hơn :max phần tử.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4161,0,'vi','validation','max.file','Dung lượng tập tin trong trường :attribute không được lớn hơn :max kB.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4162,0,'vi','validation','max.numeric','Trường :attribute không được lớn hơn :max.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4163,0,'vi','validation','max.string','Trường :attribute không được lớn hơn :max kí tự.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4164,0,'vi','validation','mimes','Trường :attribute phải là một tập tin có định dạng: :values.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4165,0,'vi','validation','mimetypes','Trường :attribute phải là một tập tin có định dạng: :values.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4166,0,'vi','validation','min.array','Trường :attribute phải có tối thiểu :min phần tử.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4167,0,'vi','validation','min.file','Dung lượng tập tin trong trường :attribute phải tối thiểu :min kB.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4168,0,'vi','validation','min.numeric','Trường :attribute phải tối thiểu là :min.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4169,0,'vi','validation','min.string','Trường :attribute phải có tối thiểu :min kí tự.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4170,0,'vi','validation','multiple_of','Trường :attribute phải là bội số của :value','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4171,0,'vi','validation','not_in','Giá trị đã chọn trong trường :attribute không hợp lệ.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4172,0,'vi','validation','not_regex','Trường :attribute có định dạng không hợp lệ.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4173,0,'vi','validation','numeric','Trường :attribute phải là một số.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4174,0,'vi','validation','password','Mật khẩu không đúng.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4175,0,'vi','validation','present','Trường :attribute phải được cung cấp.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4176,0,'vi','validation','prohibited','Trường :attribute bị cấm.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4177,0,'vi','validation','prohibited_if','Trường :attribute bị cấm khi :other là :value.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4178,0,'vi','validation','prohibited_unless','Trường :attribute bị cấm trừ khi :other là một trong :values.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4179,0,'vi','validation','regex','Trường :attribute có định dạng không hợp lệ.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4180,0,'vi','validation','required','Trường :attribute không được bỏ trống.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4181,0,'vi','validation','required_if','Trường :attribute không được bỏ trống khi trường :other là :value.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4182,0,'vi','validation','required_unless','Trường :attribute không được bỏ trống trừ khi :other là :values.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4183,0,'vi','validation','required_with','Trường :attribute không được bỏ trống khi một trong :values có giá trị.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4184,0,'vi','validation','required_with_all','Trường :attribute không được bỏ trống khi tất cả :values có giá trị.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4185,0,'vi','validation','required_without','Trường :attribute không được bỏ trống khi một trong :values không có giá trị.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4186,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ị.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4187,0,'vi','validation','same','Trường :attribute và :other phải giống nhau.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4188,0,'vi','validation','size.array','Trường :attribute phải chứa :size phần tử.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4189,0,'vi','validation','size.file','Dung lượng tập tin trong trường :attribute phải bằng :size kB.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4190,0,'vi','validation','size.numeric','Trường :attribute phải bằng :size.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4191,0,'vi','validation','size.string','Trường :attribute phải chứa :size kí tự.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4192,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','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4193,0,'vi','validation','string','Trường :attribute phải là một chuỗi kí tự.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4194,0,'vi','validation','timezone','Trường :attribute phải là một múi giờ hợp lệ.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4195,0,'vi','validation','unique','Trường :attribute đã có trong cơ sở dữ liệu.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4196,0,'vi','validation','uploaded','Trường :attribute tải lên thất bại.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4197,0,'vi','validation','url','Trường :attribute không giống với định dạng một URL.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4198,0,'vi','validation','uuid','Trường :attribute phải là một chuỗi UUID hợp lệ.','2022-04-20 19:54:56','2022-04-20 19:55:13'),(4199,0,'vi','validation','custom.attribute-name.rule-name','custom-message','2022-04-20 19:54:56','2022-04-20 19:55:13');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_meta` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `value` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_id` int 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `users` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `email_verified_at` timestamp NULL DEFAULT NULL,
  `password` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `remember_token` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `first_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `last_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `username` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `avatar_id` int unsigned DEFAULT NULL,
  `super_user` tinyint(1) NOT NULL DEFAULT '0',
  `manage_supers` tinyint(1) NOT NULL DEFAULT '0',
  `permissions` text CHARACTER SET utf8mb4 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$SO/BPZN9S7zF1guLCP4J.unqFchnuYxBRQ2p5QjMFDHVprJdI8rg6',NULL,'2022-01-03 21:19:40','2022-01-03 21:19:40','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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `widgets` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `widget_id` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `sidebar_id` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `theme` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `position` tinyint unsigned NOT NULL DEFAULT '0',
  `data` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `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 `widgets`
--

LOCK TABLES `widgets` WRITE;
/*!40000 ALTER TABLE `widgets` DISABLE KEYS */;
INSERT INTO `widgets` VALUES (1,'CustomMenuWidget','footer_sidebar','september',1,'{\"id\":\"CustomMenuWidget\",\"name\":\"Customer services\",\"menu_id\":\"customer-services\"}','2022-01-03 21:19:42','2022-01-03 21:19:42'),(2,'CustomMenuWidget','footer_sidebar','september-vi',1,'{\"id\":\"CustomMenuWidget\",\"name\":\"D\\u1ecbch v\\u1ee5 kh\\u00e1ch h\\u00e0ng\",\"menu_id\":\"dich-vu-khach-hang\"}','2022-01-03 21:19:42','2022-01-03 21:19:42');
/*!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 2022-04-21  9:55:19
