芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/acsolutionbd.com/main/database.sql
-- MySQL dump 10.13 Distrib 8.0.32, for macos13.0 (arm64) -- -- Host: localhost Database: shopwise -- ------------------------------------------------------ -- Server version 8.0.32 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!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` bigint unsigned NOT NULL, `code` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `completed` tinyint(1) NOT NULL DEFAULT '0', `completed_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `activations_user_id_index` (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 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,'izbceFG7jraZYT70NhfwvNLv6Mnsj04i',1,'2023-05-02 21:00:42','2023-05-02 21:00:42','2023-05-02 21:00:42'),(2,2,'WC5SEyh5N5zTBl8b76flzafb750EWL8O',1,'2023-05-02 21:00:42','2023-05-02 21:00:42','2023-05-02 21:00:42'); /*!40000 ALTER TABLE `activations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `admin_notifications` -- DROP TABLE IF EXISTS `admin_notifications`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `admin_notifications` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `action_label` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `action_url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci NOT NULL, `read_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `permission` varchar(191) 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 `admin_notifications` -- LOCK TABLES `admin_notifications` WRITE; /*!40000 ALTER TABLE `admin_notifications` DISABLE KEYS */; /*!40000 ALTER TABLE `admin_notifications` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ads` -- DROP TABLE IF EXISTS `ads`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ads` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `expired_at` datetime DEFAULT NULL, `location` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `key` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `clicked` bigint NOT NULL DEFAULT '0', `order` int DEFAULT '0', `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `open_in_new_tab` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`id`), UNIQUE KEY `ads_key_unique` (`key`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ads` -- LOCK TABLES `ads` WRITE; /*!40000 ALTER TABLE `ads` DISABLE KEYS */; INSERT INTO `ads` VALUES (1,'Homepage middle 1','2028-05-03 00:00:00','not_set','IZ6WU8KUALYD','promotion/1.jpg','/product-categories/headphone',0,1,'published','2023-05-02 21:00:43','2023-05-02 21:00:43',1),(2,'Homepage middle 2','2028-05-03 00:00:00','not_set','ILSFJVYFGCPZ','promotion/2.jpg','/product-categories/camera',0,2,'published','2023-05-02 21:00:43','2023-05-02 21:00:43',1),(3,'Homepage middle 3','2028-05-03 00:00:00','not_set','ZDOZUZZIU7FT','promotion/3.jpg','/product-categories/watches',0,3,'published','2023-05-02 21:00:43','2023-05-02 21:00:43',1); /*!40000 ALTER TABLE `ads` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ads_translations` -- DROP TABLE IF EXISTS `ads_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ads_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ads_id` bigint unsigned NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`ads_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ads_translations` -- LOCK TABLES `ads_translations` WRITE; /*!40000 ALTER TABLE `ads_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `ads_translations` 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` bigint unsigned NOT NULL, `module` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL, `request` text COLLATE utf8mb4_unicode_ci, `action` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `user_agent` text COLLATE utf8mb4_unicode_ci, `ip_address` varchar(39) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reference_user` bigint unsigned NOT NULL, `reference_id` bigint unsigned NOT NULL, `reference_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `audit_histories_user_id_index` (`user_id`), KEY `audit_histories_module_index` (`module`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `audit_histories` -- LOCK TABLES `audit_histories` WRITE; /*!40000 ALTER TABLE `audit_histories` DISABLE KEYS */; /*!40000 ALTER TABLE `audit_histories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `categories` -- DROP TABLE IF EXISTS `categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `categories` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `parent_id` bigint unsigned NOT NULL DEFAULT '0', `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `author_id` bigint unsigned NOT NULL, `author_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User', `icon` varchar(60) 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 `parent_id` (`parent_id`), KEY `status` (`status`), KEY `created_at` (`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,'Rerum et alias et dolores maxime. Nesciunt nesciunt id voluptatum neque. Delectus minus saepe maxime sunt voluptas qui. Omnis quaerat dolor nemo est quo ipsam non sit.','published',1,'Botble\\ACL\\Models\\User',NULL,0,0,1,'2023-05-02 21:00:41','2023-05-02 21:00:41'),(2,'Fashion',0,'Quidem neque dolores maiores sit odit. Quia sed cumque ea rerum quia pariatur.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2023-05-02 21:00:41','2023-05-02 21:00:41'),(3,'Electronic',0,'Asperiores quisquam est repudiandae molestias sit minus. Facere nesciunt et est iste ducimus. Est maxime dolor illum reiciendis. Quisquam officiis quis et sed enim aut. Vel sed vero quia consequatur.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2023-05-02 21:00:41','2023-05-02 21:00:41'),(4,'Commercial',0,'Soluta eligendi ut qui et. Reprehenderit mollitia soluta labore. Pariatur voluptatem iste est quam.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2023-05-02 21:00:41','2023-05-02 21:00:41'); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL, `categories_id` bigint unsigned NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(400) 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) COLLATE utf8mb4_unicode_ci NOT NULL, `state_id` bigint unsigned NOT NULL, `country_id` bigint unsigned DEFAULT NULL, `record_id` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order` tinyint NOT NULL DEFAULT '0', `is_default` tinyint unsigned NOT NULL DEFAULT '0', `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB 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_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) COLLATE utf8mb4_unicode_ci NOT NULL, `cities_id` bigint unsigned NOT NULL, `name` varchar(120) 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 COLLATE utf8mb4_unicode_ci NOT NULL, `contact_id` bigint 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 `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) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `subject` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unread', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `contacts` -- LOCK TABLES `contacts` WRITE; /*!40000 ALTER TABLE `contacts` DISABLE KEYS */; /*!40000 ALTER TABLE `contacts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `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) 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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `code` varchar(10) 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_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) COLLATE utf8mb4_unicode_ci NOT NULL, `countries_id` bigint unsigned NOT NULL, `name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `nationality` varchar(120) 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 COLLATE utf8mb4_unicode_ci, `user_id` bigint unsigned NOT NULL, `widget_id` bigint 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) 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) COLLATE utf8mb4_unicode_ci NOT NULL, `description` mediumtext COLLATE utf8mb4_unicode_ci, `website` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `logo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `order` tinyint 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,'2023-05-02 21:00:31','2023-05-02 21:00:31'),(2,'Hand crafted',NULL,NULL,'brands/2.png','published',1,1,'2023-05-02 21:00:31','2023-05-02 21:00:31'),(3,'Mestonix',NULL,NULL,'brands/3.png','published',2,1,'2023-05-02 21:00:31','2023-05-02 21:00:31'),(4,'Sunshine',NULL,NULL,'brands/4.png','published',3,1,'2023-05-02 21:00:31','2023-05-02 21:00:31'),(5,'Pure',NULL,NULL,'brands/5.png','published',4,1,'2023-05-02 21:00:31','2023-05-02 21:00:31'),(6,'Anfold',NULL,NULL,'brands/6.png','published',5,1,'2023-05-02 21:00:31','2023-05-02 21:00:31'),(7,'Automotive',NULL,NULL,'brands/7.png','published',6,1,'2023-05-02 21:00:31','2023-05-02 21:00:31'); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_brands_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) 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(60) COLLATE utf8mb4_unicode_ci NOT NULL, `instance` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL, `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`identifier`,`instance`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_cart` -- LOCK TABLES `ec_cart` WRITE; /*!40000 ALTER TABLE `ec_cart` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_cart` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_currencies` -- DROP TABLE IF EXISTS `ec_currencies`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_currencies` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `symbol` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL, `is_prefix_symbol` tinyint 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,'2023-05-02 21:00:31','2023-05-02 21:00:31'),(2,'EUR','€',0,2,1,0,0.84,'2023-05-02 21:00:31','2023-05-02 21:00:31'),(3,'VND','₫',0,0,2,0,23203,'2023-05-02 21:00:31','2023-05-02 21:00:31'); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `customer_id` bigint 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) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_customer_addresses` -- LOCK TABLES `ec_customer_addresses` WRITE; /*!40000 ALTER TABLE `ec_customer_addresses` DISABLE KEYS */; INSERT INTO `ec_customer_addresses` VALUES (1,'John Smith','john.smith@botble.com','+15514253019','MA','Texas','South Jadaland','221 Moen Expressway Apt. 734',1,1,'2023-05-02 21:00:32','2023-05-02 21:00:32','34066-4140'),(2,'John Smith','john.smith@botble.com','+13648348714','JM','Delaware','Burniceborough','2991 Kulas Hollow Apt. 018',1,0,'2023-05-02 21:00:32','2023-05-02 21:00:32','12338'),(3,'Everett VonRueden','crippin@example.net','+19348937231','GW','California','Runolfssonland','786 Janick Crest',2,1,'2023-05-02 21:00:33','2023-05-02 21:00:33','63411'),(4,'Chauncey Hayes','gebert@example.com','+18655481893','SS','Massachusetts','East Miloville','87011 Pierre Ranch Suite 846',3,1,'2023-05-02 21:00:33','2023-05-02 21:00:33','68195'),(5,'Gerry Yundt','nmuller@example.net','+15856545854','TV','Iowa','South Luther','880 Cartwright Run Suite 550',4,1,'2023-05-02 21:00:33','2023-05-02 21:00:33','80214-5101'),(6,'Ashley Schamberger','verona21@example.com','+14063773865','HU','Washington','New Pablo','581 Una Spur Apt. 610',5,1,'2023-05-02 21:00:33','2023-05-02 21:00:33','77671'),(7,'Dr. Dylan Lehner I','candice.morissette@example.net','+18434647325','PR','Colorado','South Markus','447 Brock Shoal Apt. 600',6,1,'2023-05-02 21:00:33','2023-05-02 21:00:33','50396'),(8,'Xzavier Nicolas','barton24@example.net','+18176539232','PF','Maryland','Nolanborough','459 Sylvester Stream Apt. 630',7,1,'2023-05-02 21:00:33','2023-05-02 21:00:33','68436'),(9,'Blaise Runolfsdottir','nolan.rosalyn@example.net','+19109791592','NL','Virginia','West Jaquanhaven','813 Schmidt Meadow Apt. 708',8,1,'2023-05-02 21:00:33','2023-05-02 21:00:33','17949-9933'),(10,'Miss Hortense Leannon Sr.','langosh.brandon@example.org','+18782592177','SZ','Mississippi','DuBuqueton','569 Harry Knolls',9,1,'2023-05-02 21:00:33','2023-05-02 21:00:33','37215'),(11,'Ceasar Wisoky','aniyah61@example.com','+16416680161','SS','New Hampshire','Gaylordhaven','331 Elnora Isle Suite 459',10,1,'2023-05-02 21:00:33','2023-05-02 21:00:33','94610-7049'),(12,'Mr. Presley Von MD','estamm@example.com','+15416665609','BN','Pennsylvania','Brodyhaven','27368 Nolan Plains',11,1,'2023-05-02 21:00:33','2023-05-02 21:00:33','30165'); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, KEY `ec_customer_password_resets_email_index` (`email`), KEY `ec_customer_password_resets_token_index` (`token`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_customer_password_resets` -- LOCK TABLES `ec_customer_password_resets` WRITE; /*!40000 ALTER TABLE `ec_customer_password_resets` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_customer_password_resets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_customer_recently_viewed_products` -- DROP TABLE IF EXISTS `ec_customer_recently_viewed_products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_customer_recently_viewed_products` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `customer_id` bigint unsigned NOT NULL, `product_id` bigint unsigned NOT 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_customer_recently_viewed_products` -- LOCK TABLES `ec_customer_recently_viewed_products` WRITE; /*!40000 ALTER TABLE `ec_customer_recently_viewed_products` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_customer_recently_viewed_products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_customer_used_coupons` -- DROP TABLE IF EXISTS `ec_customer_used_coupons`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_customer_used_coupons` ( `discount_id` bigint unsigned NOT NULL, `customer_id` bigint 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_customer_used_coupons` -- LOCK TABLES `ec_customer_used_coupons` WRITE; /*!40000 ALTER TABLE `ec_customer_used_coupons` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_customer_used_coupons` 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) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `avatar` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `dob` date DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `confirmed_at` datetime DEFAULT NULL, `email_verify_token` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'activated', PRIMARY KEY (`id`), UNIQUE KEY `ec_customers_email_unique` (`email`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_customers` -- LOCK TABLES `ec_customers` WRITE; /*!40000 ALTER TABLE `ec_customers` DISABLE KEYS */; INSERT INTO `ec_customers` VALUES (1,'John Smith','john.smith@botble.com','$2y$10$DtYZEBBmAcGy.71NvTRgCO3CL3nZ8uB64ExJSSWnsjuwAraYihf5u','customers/1.jpg','1996-04-10','+12694518170',NULL,'2023-05-02 21:00:32','2023-05-02 21:00:32','2023-05-03 04:00:32',NULL,'activated'),(2,'Everett VonRueden','crippin@example.net','$2y$10$UwIzrgqWH/jrQAvDwp1Hsek7V4V8XkBwL5EzFn9ubxnc/tpdydbe.','customers/1.jpg','1984-04-19','+14353943260',NULL,'2023-05-02 21:00:33','2023-05-02 21:00:33','2023-05-03 04:00:33',NULL,'activated'),(3,'Chauncey Hayes','gebert@example.com','$2y$10$9UoOMQ.BxyxWlXZHkwQaHeRnnJJRdtML2oqmBR7meDsxALe/iSy8m','customers/2.jpg','1973-04-03','+13313211566',NULL,'2023-05-02 21:00:33','2023-05-02 21:00:33','2023-05-03 04:00:33',NULL,'activated'),(4,'Gerry Yundt','nmuller@example.net','$2y$10$x5UKbrcZRRmz3hqvcTXQB.2sYhrCLAnSRs4g4INzIJxFb6fk0VJeO','customers/3.jpg','1998-04-26','+16282977645',NULL,'2023-05-02 21:00:33','2023-05-02 21:00:33','2023-05-03 04:00:33',NULL,'activated'),(5,'Ashley Schamberger','verona21@example.com','$2y$10$F5F6bR58A9HAKelUDnM/qeYrPwQ.TJQc24alAWO.m3eyd.2Lwzd1S','customers/4.jpg','1974-04-08','+13609707526',NULL,'2023-05-02 21:00:33','2023-05-02 21:00:33','2023-05-03 04:00:33',NULL,'activated'),(6,'Dr. Dylan Lehner I','candice.morissette@example.net','$2y$10$bu88GzH7/ndbgsrka6k6GeEugmR4hxdiqWlNR8ROxnlZeQ81DhYyy','customers/5.jpg','2002-04-12','+12143795730',NULL,'2023-05-02 21:00:33','2023-05-02 21:00:33','2023-05-03 04:00:33',NULL,'activated'),(7,'Xzavier Nicolas','barton24@example.net','$2y$10$gYjQ3POjM.de1/T9yTrVCOM1JQjIwL5xhY.Ew3lJ16HwRLH//8cKS','customers/6.jpg','1996-04-19','+18202742480',NULL,'2023-05-02 21:00:33','2023-05-02 21:00:33','2023-05-03 04:00:33',NULL,'activated'),(8,'Blaise Runolfsdottir','nolan.rosalyn@example.net','$2y$10$wnULePsVO5cEhTtsCXFTsOZNNuqtzBHKIhdYo1s0r5RAElPpddUhy','customers/7.jpg','1976-04-23','+19599403576',NULL,'2023-05-02 21:00:33','2023-05-02 21:00:33','2023-05-03 04:00:33',NULL,'activated'),(9,'Miss Hortense Leannon Sr.','langosh.brandon@example.org','$2y$10$/EOVUZahD6TMGjil9dDd3Ov8RayEVwT9oNRnhGCQSdKA7q4Xp6r9i','customers/8.jpg','2000-04-26','+18306335423',NULL,'2023-05-02 21:00:33','2023-05-02 21:00:33','2023-05-03 04:00:33',NULL,'activated'),(10,'Ceasar Wisoky','aniyah61@example.com','$2y$10$HmCvn8BL2oLd4lD1ANiyKOxSkGqq0o1VZZfrY3EcyYy5KITk1iuCO','customers/9.jpg','1977-04-09','+12018453539',NULL,'2023-05-02 21:00:33','2023-05-02 21:00:33','2023-05-03 04:00:33',NULL,'activated'),(11,'Mr. Presley Von MD','estamm@example.com','$2y$10$tvv/7Jc0NK05U6cNQQbrq.4nJ0j97dDKbzih9p9tPmcPX3rkJ5Cza','customers/10.jpg','1985-04-07','+19715935282',NULL,'2023-05-02 21:00:33','2023-05-02 21:00:33','2023-05-03 04:00:33',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` bigint unsigned NOT NULL, `customer_id` bigint 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` bigint unsigned NOT NULL, `product_collection_id` bigint 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` bigint unsigned NOT NULL, `product_id` bigint 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) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` datetime DEFAULT NULL, `end_date` datetime DEFAULT NULL, `quantity` int DEFAULT NULL, `total_used` int unsigned NOT NULL DEFAULT '0', `value` double DEFAULT NULL, `type` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT 'coupon', `can_use_with_promotion` tinyint(1) NOT NULL DEFAULT '0', `discount_on` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_quantity` int unsigned DEFAULT NULL, `type_option` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'amount', `target` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'all-orders', `min_order_price` decimal(15,2) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ec_discounts_code_unique` (`code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_discounts` -- LOCK TABLES `ec_discounts` WRITE; /*!40000 ALTER TABLE `ec_discounts` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_discounts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_flash_sale_products` -- DROP TABLE IF EXISTS `ec_flash_sale_products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_flash_sale_products` ( `flash_sale_id` bigint unsigned NOT NULL, `product_id` bigint 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,31,38.64,16,4),(2,6,50.15,10,1); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL, `end_date` datetime NOT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=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.','2023-05-22 00:00:00','published','2023-05-02 21:00:39','2023-05-02 21:00:39'),(2,'Gadgets & Accessories','2023-05-28 00:00:00','published','2023-05-02 21:00:39','2023-05-02 21:00:39'); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_flash_sales_id` bigint unsigned NOT NULL, `name` varchar(191) 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_global_option_value` -- DROP TABLE IF EXISTS `ec_global_option_value`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_global_option_value` ( `option_id` bigint unsigned NOT NULL COMMENT 'option id', `id` bigint unsigned NOT NULL AUTO_INCREMENT, `option_value` tinytext COLLATE utf8mb4_unicode_ci COMMENT 'option value', `affect_price` double DEFAULT NULL COMMENT 'value of price of this option affect', `order` int NOT NULL DEFAULT '9999', `affect_type` tinyint NOT NULL DEFAULT '0' COMMENT '0. fixed 1. percent', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_global_option_value` -- LOCK TABLES `ec_global_option_value` WRITE; /*!40000 ALTER TABLE `ec_global_option_value` DISABLE KEYS */; INSERT INTO `ec_global_option_value` VALUES (1,1,'1 Year',0,9999,0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(1,2,'2 Year',10,9999,0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(1,3,'3 Year',20,9999,0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(2,4,'4GB',0,9999,0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(2,5,'8GB',10,9999,0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(2,6,'16GB',20,9999,0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(3,7,'Core i5',0,9999,0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(3,8,'Core i7',10,9999,0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(3,9,'Core i9',20,9999,0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(4,10,'128GB',0,9999,0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(4,11,'256GB',10,9999,0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(4,12,'512GB',20,9999,0,'2023-05-02 21:00:42','2023-05-02 21:00:42'); /*!40000 ALTER TABLE `ec_global_option_value` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_global_option_value_translations` -- DROP TABLE IF EXISTS `ec_global_option_value_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_global_option_value_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_global_option_value_id` bigint unsigned NOT NULL, `option_value` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`ec_global_option_value_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_global_option_value_translations` -- LOCK TABLES `ec_global_option_value_translations` WRITE; /*!40000 ALTER TABLE `ec_global_option_value_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_global_option_value_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_global_options` -- DROP TABLE IF EXISTS `ec_global_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_global_options` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Name of options', `option_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'option type', `required` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Checked if this option is required', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_global_options` -- LOCK TABLES `ec_global_options` WRITE; /*!40000 ALTER TABLE `ec_global_options` DISABLE KEYS */; INSERT INTO `ec_global_options` VALUES (1,'Warranty','Botble\\Ecommerce\\Option\\OptionType\\RadioButton',1,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(2,'RAM','Botble\\Ecommerce\\Option\\OptionType\\RadioButton',1,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(3,'CPU','Botble\\Ecommerce\\Option\\OptionType\\RadioButton',1,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(4,'HDD','Botble\\Ecommerce\\Option\\OptionType\\Dropdown',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'); /*!40000 ALTER TABLE `ec_global_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_global_options_translations` -- DROP TABLE IF EXISTS `ec_global_options_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_global_options_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_global_options_id` bigint unsigned NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`ec_global_options_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_global_options_translations` -- LOCK TABLES `ec_global_options_translations` WRITE; /*!40000 ALTER TABLE `ec_global_options_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_global_options_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` bigint unsigned NOT NULL, `product_id` bigint 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_invoice_items` -- DROP TABLE IF EXISTS `ec_invoice_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_invoice_items` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `invoice_id` bigint unsigned NOT NULL, `reference_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `reference_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `qty` int unsigned NOT NULL, `price` decimal(15,2) NOT NULL DEFAULT '0.00', `sub_total` decimal(15,2) unsigned NOT NULL, `tax_amount` decimal(15,2) unsigned NOT NULL DEFAULT '0.00', `discount_amount` decimal(15,2) unsigned NOT NULL DEFAULT '0.00', `amount` decimal(15,2) unsigned NOT NULL, `options` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `ec_invoice_items_reference_type_reference_id_index` (`reference_type`,`reference_id`) ) ENGINE=InnoDB AUTO_INCREMENT=62 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_invoice_items` -- LOCK TABLES `ec_invoice_items` WRITE; /*!40000 ALTER TABLE `ec_invoice_items` DISABLE KEYS */; INSERT INTO `ec_invoice_items` VALUES (1,1,'Botble\\Ecommerce\\Models\\Product',70,'Cool Smart Watches (Digital)',NULL,'products/17.jpg',1,111.00,111.00,11.10,0.00,122.10,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(2,1,'Botble\\Ecommerce\\Models\\Product',95,'Smart Watches',NULL,'products/26.jpg',3,40.50,121.50,4.05,0.00,125.55,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(3,1,'Botble\\Ecommerce\\Models\\Product',106,'Samsung Smart TV',NULL,'products/31.jpg',2,56.00,112.00,5.60,0.00,117.60,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(4,2,'Botble\\Ecommerce\\Models\\Product',60,'Apple Watch Serial 7',NULL,'products/11-1.jpg',2,112.00,224.00,11.20,0.00,235.20,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(5,2,'Botble\\Ecommerce\\Models\\Product',90,'Dual Camera 20MP (Digital)',NULL,'products/25.jpg',2,80.25,160.50,8.03,0.00,168.53,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(6,3,'Botble\\Ecommerce\\Models\\Product',64,'MacSafe 80W',NULL,'products/14-1.jpg',2,130.00,260.00,13.00,0.00,273.00,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(7,3,'Botble\\Ecommerce\\Models\\Product',83,'Black Glasses',NULL,'products/22.jpg',3,127.00,381.00,12.70,0.00,393.70,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(8,3,'Botble\\Ecommerce\\Models\\Product',92,'Smart Watches',NULL,'products/26.jpg',3,40.50,121.50,4.05,0.00,125.55,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(9,4,'Botble\\Ecommerce\\Models\\Product',50,'Leather Watch Band',NULL,'products/7-1.jpg',3,118.00,354.00,11.80,0.00,365.80,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(10,4,'Botble\\Ecommerce\\Models\\Product',62,'Apple Keyboard (Digital)',NULL,'products/13.jpg',2,113.00,226.00,11.30,0.00,237.30,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(11,4,'Botble\\Ecommerce\\Models\\Product',92,'Smart Watches',NULL,'products/26.jpg',2,40.50,81.00,4.05,0.00,85.05,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(12,5,'Botble\\Ecommerce\\Models\\Product',32,'Smart Home Speaker (Digital)',NULL,'products/1.jpg',1,494.00,494.00,49.40,0.00,543.40,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(13,5,'Botble\\Ecommerce\\Models\\Product',83,'Black Glasses',NULL,'products/22.jpg',3,127.00,381.00,12.70,0.00,393.70,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(14,5,'Botble\\Ecommerce\\Models\\Product',108,'Samsung Smart TV',NULL,'products/31.jpg',2,56.00,112.00,5.60,0.00,117.60,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(15,6,'Botble\\Ecommerce\\Models\\Product',58,'Macbook Air 12 inch',NULL,'products/10-1.jpg',2,492.00,984.00,49.20,0.00,1033.20,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(16,6,'Botble\\Ecommerce\\Models\\Product',91,'Dual Camera 20MP (Digital)',NULL,'products/25-1.jpg',2,80.25,160.50,8.03,0.00,168.53,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(17,7,'Botble\\Ecommerce\\Models\\Product',60,'Apple Watch Serial 7',NULL,'products/11-1.jpg',1,112.00,112.00,11.20,0.00,123.20,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(18,7,'Botble\\Ecommerce\\Models\\Product',71,'Cool Smart Watches (Digital)',NULL,'products/17.jpg',3,111.00,333.00,11.10,0.00,344.10,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(19,8,'Botble\\Ecommerce\\Models\\Product',36,'Headphone Ultra Bass',NULL,'products/2-2.jpg',3,495.00,1485.00,49.50,0.00,1534.50,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(20,8,'Botble\\Ecommerce\\Models\\Product',51,'Leather Watch Band',NULL,'products/7.jpg',3,118.00,354.00,11.80,0.00,365.80,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(21,8,'Botble\\Ecommerce\\Models\\Product',71,'Cool Smart Watches (Digital)',NULL,'products/17.jpg',1,111.00,111.00,11.10,0.00,122.10,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(22,8,'Botble\\Ecommerce\\Models\\Product',72,'Cool Smart Watches (Digital)',NULL,'products/17.jpg',3,111.00,333.00,11.10,0.00,344.10,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(23,9,'Botble\\Ecommerce\\Models\\Product',35,'Headphone Ultra Bass',NULL,'products/2-1.jpg',1,495.00,495.00,49.50,0.00,544.50,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(24,9,'Botble\\Ecommerce\\Models\\Product',39,'Boxed - Bluetooth Headphone',NULL,'products/3.jpg',3,277.00,831.00,27.70,0.00,858.70,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(25,9,'Botble\\Ecommerce\\Models\\Product',49,'Leather Watch Band',NULL,'products/7.jpg',1,118.00,118.00,11.80,0.00,129.80,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(26,9,'Botble\\Ecommerce\\Models\\Product',103,'Audio Equipment (Digital)',NULL,'products/29.jpg',2,59.00,118.00,5.90,0.00,123.90,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(27,10,'Botble\\Ecommerce\\Models\\Product',44,'Camera Hikvision HK-35VS8 (Digital)',NULL,'products/5.jpg',3,47.00,141.00,4.70,0.00,145.70,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(28,10,'Botble\\Ecommerce\\Models\\Product',64,'MacSafe 80W',NULL,'products/14-1.jpg',3,130.00,390.00,13.00,0.00,403.00,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(29,10,'Botble\\Ecommerce\\Models\\Product',70,'Cool Smart Watches (Digital)',NULL,'products/17.jpg',2,111.00,222.00,11.10,0.00,233.10,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(30,10,'Botble\\Ecommerce\\Models\\Product',82,'Historic Alarm Clock (Digital)',NULL,'products/21.jpg',2,112.00,224.00,11.20,0.00,235.20,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(31,11,'Botble\\Ecommerce\\Models\\Product',39,'Boxed - Bluetooth Headphone',NULL,'products/3.jpg',3,277.00,831.00,27.70,0.00,858.70,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(32,11,'Botble\\Ecommerce\\Models\\Product',49,'Leather Watch Band',NULL,'products/7.jpg',2,118.00,236.00,11.80,0.00,247.80,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(33,11,'Botble\\Ecommerce\\Models\\Product',101,'Audio Equipment (Digital)',NULL,'products/29.jpg',1,59.00,59.00,5.90,0.00,64.90,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(34,11,'Botble\\Ecommerce\\Models\\Product',104,'Smart Televisions',NULL,'products/30.jpg',2,125.00,250.00,12.50,0.00,262.50,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(35,12,'Botble\\Ecommerce\\Models\\Product',54,'Macbook Pro 2015 (Digital)',NULL,'products/9.jpg',2,116.00,232.00,11.60,0.00,243.60,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(36,12,'Botble\\Ecommerce\\Models\\Product',60,'Apple Watch Serial 7',NULL,'products/11-1.jpg',3,112.00,336.00,11.20,0.00,347.20,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(37,12,'Botble\\Ecommerce\\Models\\Product',86,'Phillips Mouse',NULL,'products/23.jpg',2,121.00,242.00,12.10,0.00,254.10,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(38,13,'Botble\\Ecommerce\\Models\\Product',32,'Smart Home Speaker (Digital)',NULL,'products/1.jpg',3,494.00,1482.00,49.40,0.00,1531.40,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(39,13,'Botble\\Ecommerce\\Models\\Product',35,'Headphone Ultra Bass',NULL,'products/2-1.jpg',2,495.00,990.00,49.50,0.00,1039.50,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(40,14,'Botble\\Ecommerce\\Models\\Product',42,'Chikie - Bluetooth Speaker',NULL,'products/4-2.jpg',1,73.00,73.00,7.30,0.00,80.30,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(41,14,'Botble\\Ecommerce\\Models\\Product',74,'Leather Watch Band Serial 3',NULL,'products/19.jpg',3,116.00,348.00,11.60,0.00,359.60,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(42,15,'Botble\\Ecommerce\\Models\\Product',44,'Camera Hikvision HK-35VS8 (Digital)',NULL,'products/5.jpg',1,47.00,47.00,4.70,0.00,51.70,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(43,15,'Botble\\Ecommerce\\Models\\Product',82,'Historic Alarm Clock (Digital)',NULL,'products/21.jpg',1,112.00,112.00,11.20,0.00,123.20,'[]','2023-05-02 21:00:40','2023-05-02 21:00:40'),(44,16,'Botble\\Ecommerce\\Models\\Product',55,'Macbook Pro 2015 (Digital)',NULL,'products/9-1.jpg',2,116.00,232.00,11.60,0.00,243.60,'[]','2023-05-02 21:00:41','2023-05-02 21:00:41'),(45,16,'Botble\\Ecommerce\\Models\\Product',67,'Hand playstation',NULL,'products/15-1.jpg',2,124.00,248.00,12.40,0.00,260.40,'[]','2023-05-02 21:00:41','2023-05-02 21:00:41'),(46,16,'Botble\\Ecommerce\\Models\\Product',85,'Black Glasses',NULL,'products/22.jpg',3,127.00,381.00,12.70,0.00,393.70,'[]','2023-05-02 21:00:41','2023-05-02 21:00:41'),(47,16,'Botble\\Ecommerce\\Models\\Product',97,'Beat Headphone',NULL,'products/27-1.jpg',1,20.00,20.00,2.00,0.00,22.00,'[]','2023-05-02 21:00:41','2023-05-02 21:00:41'),(48,17,'Botble\\Ecommerce\\Models\\Product',40,'Chikie - Bluetooth Speaker',NULL,'products/4.jpg',3,73.00,219.00,7.30,0.00,226.30,'[]','2023-05-02 21:00:41','2023-05-02 21:00:41'),(49,17,'Botble\\Ecommerce\\Models\\Product',54,'Macbook Pro 2015 (Digital)',NULL,'products/9.jpg',3,116.00,348.00,11.60,0.00,359.60,'[]','2023-05-02 21:00:41','2023-05-02 21:00:41'),(50,17,'Botble\\Ecommerce\\Models\\Product',80,'Historic Alarm Clock (Digital)',NULL,'products/21.jpg',3,112.00,336.00,11.20,0.00,347.20,'[]','2023-05-02 21:00:41','2023-05-02 21:00:41'),(51,17,'Botble\\Ecommerce\\Models\\Product',82,'Historic Alarm Clock (Digital)',NULL,'products/21.jpg',3,112.00,336.00,11.20,0.00,347.20,'[]','2023-05-02 21:00:41','2023-05-02 21:00:41'),(52,18,'Botble\\Ecommerce\\Models\\Product',34,'Headphone Ultra Bass',NULL,'products/2.jpg',2,495.00,990.00,49.50,0.00,1039.50,'[]','2023-05-02 21:00:41','2023-05-02 21:00:41'),(53,18,'Botble\\Ecommerce\\Models\\Product',43,'Chikie - Bluetooth Speaker',NULL,'products/4-3.jpg',1,73.00,73.00,7.30,0.00,80.30,'[]','2023-05-02 21:00:41','2023-05-02 21:00:41'),(54,18,'Botble\\Ecommerce\\Models\\Product',85,'Black Glasses',NULL,'products/22.jpg',2,127.00,254.00,12.70,0.00,266.70,'[]','2023-05-02 21:00:41','2023-05-02 21:00:41'),(55,19,'Botble\\Ecommerce\\Models\\Product',65,'MacSafe 80W',NULL,'products/14.jpg',2,130.00,260.00,13.00,0.00,273.00,'[]','2023-05-02 21:00:41','2023-05-02 21:00:41'),(56,19,'Botble\\Ecommerce\\Models\\Product',94,'Smart Watches',NULL,'products/26-2.jpg',3,40.50,121.50,4.05,0.00,125.55,'[]','2023-05-02 21:00:41','2023-05-02 21:00:41'),(57,19,'Botble\\Ecommerce\\Models\\Product',96,'Beat Headphone',NULL,'products/27.jpg',3,20.00,60.00,2.00,0.00,62.00,'[]','2023-05-02 21:00:41','2023-05-02 21:00:41'),(58,19,'Botble\\Ecommerce\\Models\\Product',107,'Samsung Smart TV',NULL,'products/31-1.jpg',2,56.00,112.00,5.60,0.00,117.60,'[]','2023-05-02 21:00:41','2023-05-02 21:00:41'),(59,20,'Botble\\Ecommerce\\Models\\Product',61,'Macbook Pro 13 inch',NULL,'products/12.jpg',1,113.00,113.00,11.30,0.00,124.30,'[]','2023-05-02 21:00:41','2023-05-02 21:00:41'),(60,20,'Botble\\Ecommerce\\Models\\Product',64,'MacSafe 80W',NULL,'products/14-1.jpg',1,130.00,130.00,13.00,0.00,143.00,'[]','2023-05-02 21:00:41','2023-05-02 21:00:41'),(61,20,'Botble\\Ecommerce\\Models\\Product',94,'Smart Watches',NULL,'products/26-2.jpg',3,40.50,121.50,4.05,0.00,125.55,'[]','2023-05-02 21:00:41','2023-05-02 21:00:41'); /*!40000 ALTER TABLE `ec_invoice_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_invoices` -- DROP TABLE IF EXISTS `ec_invoices`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_invoices` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `reference_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `reference_id` bigint unsigned NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `customer_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `company_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `company_logo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_tax_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_total` decimal(15,2) unsigned NOT NULL, `tax_amount` decimal(15,2) unsigned NOT NULL DEFAULT '0.00', `shipping_amount` decimal(15,2) unsigned NOT NULL DEFAULT '0.00', `discount_amount` decimal(15,2) unsigned NOT NULL DEFAULT '0.00', `shipping_option` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default', `coupon_code` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` decimal(15,2) unsigned NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `payment_id` bigint unsigned DEFAULT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `paid_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ec_invoices_code_unique` (`code`), KEY `ec_invoices_reference_type_reference_id_index` (`reference_type`,`reference_id`), KEY `ec_invoices_payment_id_index` (`payment_id`), KEY `ec_invoices_status_index` (`status`) ) 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_invoices` -- LOCK TABLES `ec_invoices` WRITE; /*!40000 ALTER TABLE `ec_invoices` DISABLE KEYS */; INSERT INTO `ec_invoices` VALUES (1,'Botble\\Ecommerce\\Models\\Order',1,'INV-1','Dr. Dylan Lehner I','',NULL,'candice.morissette@example.net','+18434647325','447 Brock Shoal Apt. 600, South Markus, Colorado, PR',NULL,344.50,20.75,0.00,0.00,'1','default',NULL,NULL,365.25,NULL,1,'completed','2023-05-02 21:00:40','2023-04-19 13:00:40','2023-05-02 21:00:40'),(2,'Botble\\Ecommerce\\Models\\Order',2,'INV-2','Chauncey Hayes','',NULL,'gebert@example.com','+18655481893','87011 Pierre Ranch Suite 846, East Miloville, Massachusetts, SS',NULL,384.50,19.23,0.00,0.00,'1','default',NULL,NULL,403.73,NULL,2,'completed','2023-05-02 21:00:40','2023-04-20 05:00:40','2023-05-02 21:00:40'),(3,'Botble\\Ecommerce\\Models\\Order',3,'INV-3','Mr. Presley Von MD','',NULL,'estamm@example.com','+15416665609','27368 Nolan Plains, Brodyhaven, Pennsylvania, BN',NULL,762.50,29.75,0.00,0.00,'1','default',NULL,NULL,792.25,NULL,3,'completed','2023-05-02 21:00:40','2023-04-19 09:00:40','2023-05-02 21:00:40'),(4,'Botble\\Ecommerce\\Models\\Order',4,'INV-4','Everett VonRueden','',NULL,'crippin@example.net','+19348937231','786 Janick Crest, Runolfssonland, California, GW',NULL,661.00,27.15,0.00,0.00,'1','default',NULL,NULL,688.15,NULL,4,'completed','2023-05-02 21:00:40','2023-04-25 19:00:40','2023-05-02 21:00:40'),(5,'Botble\\Ecommerce\\Models\\Order',5,'INV-5','Ceasar Wisoky','',NULL,'aniyah61@example.com','+16416680161','331 Elnora Isle Suite 459, Gaylordhaven, New Hampshire, SS',NULL,987.00,67.70,0.00,0.00,'1','default',NULL,NULL,1054.70,NULL,5,'completed','2023-05-02 21:00:40','2023-04-19 13:00:40','2023-05-02 21:00:40'),(6,'Botble\\Ecommerce\\Models\\Order',6,'INV-6','Ceasar Wisoky','',NULL,'aniyah61@example.com','+16416680161','331 Elnora Isle Suite 459, Gaylordhaven, New Hampshire, SS',NULL,1144.50,57.23,0.00,0.00,'1','default',NULL,NULL,1201.73,NULL,6,'completed','2023-05-02 21:00:40','2023-04-25 09:00:40','2023-05-02 21:00:40'),(7,'Botble\\Ecommerce\\Models\\Order',7,'INV-7','Ashley Schamberger','',NULL,'verona21@example.com','+14063773865','581 Una Spur Apt. 610, New Pablo, Washington, HU',NULL,445.00,22.30,0.00,0.00,'1','default',NULL,NULL,467.30,NULL,7,'completed','2023-05-02 21:00:40','2023-04-30 13:00:40','2023-05-02 21:00:40'),(8,'Botble\\Ecommerce\\Models\\Order',8,'INV-8','Xzavier Nicolas','',NULL,'barton24@example.net','+18176539232','459 Sylvester Stream Apt. 630, Nolanborough, Maryland, PF',NULL,2283.00,83.50,0.00,0.00,'1','default',NULL,NULL,2366.50,NULL,8,'completed','2023-05-02 21:00:40','2023-04-27 11:00:40','2023-05-02 21:00:40'),(9,'Botble\\Ecommerce\\Models\\Order',9,'INV-9','Chauncey Hayes','',NULL,'gebert@example.com','+18655481893','87011 Pierre Ranch Suite 846, East Miloville, Massachusetts, SS',NULL,1562.00,94.90,0.00,0.00,'1','default',NULL,NULL,1656.90,NULL,9,'completed','2023-05-02 21:00:40','2023-05-01 21:00:40','2023-05-02 21:00:40'),(10,'Botble\\Ecommerce\\Models\\Order',10,'INV-10','Dr. Dylan Lehner I','',NULL,'candice.morissette@example.net','+18434647325','447 Brock Shoal Apt. 600, South Markus, Colorado, PR',NULL,977.00,40.00,0.00,0.00,'1','default',NULL,NULL,1017.00,NULL,10,'completed','2023-05-02 21:00:40','2023-04-26 11:00:40','2023-05-02 21:00:40'),(11,'Botble\\Ecommerce\\Models\\Order',11,'INV-11','Miss Hortense Leannon Sr.','',NULL,'langosh.brandon@example.org','+18782592177','569 Harry Knolls, DuBuqueton, Mississippi, SZ',NULL,1376.00,57.90,0.00,0.00,'1','default',NULL,NULL,1433.90,NULL,11,'pending',NULL,'2023-04-27 01:00:40','2023-05-02 21:00:40'),(12,'Botble\\Ecommerce\\Models\\Order',12,'INV-12','Mr. Presley Von MD','',NULL,'estamm@example.com','+15416665609','27368 Nolan Plains, Brodyhaven, Pennsylvania, BN',NULL,810.00,34.90,0.00,0.00,'1','default',NULL,NULL,844.90,NULL,12,'pending',NULL,'2023-04-26 21:00:40','2023-05-02 21:00:40'),(13,'Botble\\Ecommerce\\Models\\Order',13,'INV-13','John Smith','',NULL,'john.smith@botble.com','+15514253019','221 Moen Expressway Apt. 734, South Jadaland, Texas, MA',NULL,2472.00,98.90,0.00,0.00,'1','default',NULL,NULL,2570.90,NULL,13,'completed','2023-05-02 21:00:40','2023-04-26 21:00:40','2023-05-02 21:00:40'),(14,'Botble\\Ecommerce\\Models\\Order',14,'INV-14','Gerry Yundt','',NULL,'nmuller@example.net','+15856545854','880 Cartwright Run Suite 550, South Luther, Iowa, TV',NULL,421.00,18.90,0.00,0.00,'1','default',NULL,NULL,439.90,NULL,14,'completed','2023-05-02 21:00:40','2023-04-27 15:00:40','2023-05-02 21:00:40'),(15,'Botble\\Ecommerce\\Models\\Order',15,'INV-15','Dr. Dylan Lehner I','',NULL,'candice.morissette@example.net','+18434647325','447 Brock Shoal Apt. 600, South Markus, Colorado, PR',NULL,159.00,15.90,0.00,0.00,'1','default',NULL,NULL,174.90,NULL,15,'completed','2023-05-02 21:00:40','2023-04-30 21:00:40','2023-05-02 21:00:40'),(16,'Botble\\Ecommerce\\Models\\Order',16,'INV-16','Chauncey Hayes','',NULL,'gebert@example.com','+18655481893','87011 Pierre Ranch Suite 846, East Miloville, Massachusetts, SS',NULL,881.00,38.70,0.00,0.00,'1','default',NULL,NULL,919.70,NULL,16,'completed','2023-05-02 21:00:41','2023-04-29 13:00:40','2023-05-02 21:00:41'),(17,'Botble\\Ecommerce\\Models\\Order',17,'INV-17','Miss Hortense Leannon Sr.','',NULL,'langosh.brandon@example.org','+18782592177','569 Harry Knolls, DuBuqueton, Mississippi, SZ',NULL,1239.00,41.30,0.00,0.00,'1','default',NULL,NULL,1280.30,NULL,17,'pending',NULL,'2023-04-30 13:00:41','2023-05-02 21:00:41'),(18,'Botble\\Ecommerce\\Models\\Order',18,'INV-18','Ceasar Wisoky','',NULL,'aniyah61@example.com','+16416680161','331 Elnora Isle Suite 459, Gaylordhaven, New Hampshire, SS',NULL,1317.00,69.50,0.00,0.00,'1','default',NULL,NULL,1386.50,NULL,18,'pending',NULL,'2023-05-02 15:00:41','2023-05-02 21:00:41'),(19,'Botble\\Ecommerce\\Models\\Order',19,'INV-19','Gerry Yundt','',NULL,'nmuller@example.net','+15856545854','880 Cartwright Run Suite 550, South Luther, Iowa, TV',NULL,553.50,24.65,0.00,0.00,'1','default',NULL,NULL,578.15,NULL,19,'completed','2023-05-02 21:00:41','2023-05-02 05:00:41','2023-05-02 21:00:41'),(20,'Botble\\Ecommerce\\Models\\Order',20,'INV-20','Xzavier Nicolas','',NULL,'barton24@example.net','+18176539232','459 Sylvester Stream Apt. 630, Nolanborough, Maryland, PF',NULL,364.50,28.35,0.00,0.00,'1','default',NULL,NULL,392.85,NULL,20,'completed','2023-05-02 21:00:41','2023-05-02 13:00:41','2023-05-02 21:00:41'); /*!40000 ALTER TABLE `ec_invoices` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_option_value` -- DROP TABLE IF EXISTS `ec_option_value`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_option_value` ( `option_id` bigint unsigned NOT NULL COMMENT 'option id', `id` bigint unsigned NOT NULL AUTO_INCREMENT, `option_value` tinytext COLLATE utf8mb4_unicode_ci COMMENT 'option value', `affect_price` double DEFAULT NULL COMMENT 'value of price of this option affect', `order` int NOT NULL DEFAULT '9999', `affect_type` tinyint NOT NULL DEFAULT '0' COMMENT '0. fixed 1. percent', `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_option_value` -- LOCK TABLES `ec_option_value` WRITE; /*!40000 ALTER TABLE `ec_option_value` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_option_value` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_option_value_translations` -- DROP TABLE IF EXISTS `ec_option_value_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_option_value_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_option_value_id` bigint unsigned NOT NULL, `option_value` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`ec_option_value_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_option_value_translations` -- LOCK TABLES `ec_option_value_translations` WRITE; /*!40000 ALTER TABLE `ec_option_value_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_option_value_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_options` -- DROP TABLE IF EXISTS `ec_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_options` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Name of options', `option_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'option type', `product_id` bigint unsigned NOT NULL DEFAULT '0', `order` int NOT NULL DEFAULT '9999', `required` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Checked if this option is required', `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_options` -- LOCK TABLES `ec_options` WRITE; /*!40000 ALTER TABLE `ec_options` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_options_translations` -- DROP TABLE IF EXISTS `ec_options_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_options_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_options_id` bigint unsigned NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`ec_options_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_options_translations` -- LOCK TABLES `ec_options_translations` WRITE; /*!40000 ALTER TABLE `ec_options_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_options_translations` 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) COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_id` bigint unsigned NOT NULL, `zip_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'shipping_address', 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,'Dr. Dylan Lehner I','+18434647325','candice.morissette@example.net','PR','Colorado','South Markus','447 Brock Shoal Apt. 600',1,'50396','shipping_address'),(2,'Chauncey Hayes','+18655481893','gebert@example.com','SS','Massachusetts','East Miloville','87011 Pierre Ranch Suite 846',2,'68195','shipping_address'),(3,'Mr. Presley Von MD','+15416665609','estamm@example.com','BN','Pennsylvania','Brodyhaven','27368 Nolan Plains',3,'30165','shipping_address'),(4,'Everett VonRueden','+19348937231','crippin@example.net','GW','California','Runolfssonland','786 Janick Crest',4,'63411','shipping_address'),(5,'Ceasar Wisoky','+16416680161','aniyah61@example.com','SS','New Hampshire','Gaylordhaven','331 Elnora Isle Suite 459',5,'94610-7049','shipping_address'),(6,'Ceasar Wisoky','+16416680161','aniyah61@example.com','SS','New Hampshire','Gaylordhaven','331 Elnora Isle Suite 459',6,'94610-7049','shipping_address'),(7,'Ashley Schamberger','+14063773865','verona21@example.com','HU','Washington','New Pablo','581 Una Spur Apt. 610',7,'77671','shipping_address'),(8,'Xzavier Nicolas','+18176539232','barton24@example.net','PF','Maryland','Nolanborough','459 Sylvester Stream Apt. 630',8,'68436','shipping_address'),(9,'Chauncey Hayes','+18655481893','gebert@example.com','SS','Massachusetts','East Miloville','87011 Pierre Ranch Suite 846',9,'68195','shipping_address'),(10,'Dr. Dylan Lehner I','+18434647325','candice.morissette@example.net','PR','Colorado','South Markus','447 Brock Shoal Apt. 600',10,'50396','shipping_address'),(11,'Miss Hortense Leannon Sr.','+18782592177','langosh.brandon@example.org','SZ','Mississippi','DuBuqueton','569 Harry Knolls',11,'37215','shipping_address'),(12,'Mr. Presley Von MD','+15416665609','estamm@example.com','BN','Pennsylvania','Brodyhaven','27368 Nolan Plains',12,'30165','shipping_address'),(13,'John Smith','+15514253019','john.smith@botble.com','MA','Texas','South Jadaland','221 Moen Expressway Apt. 734',13,'34066-4140','shipping_address'),(14,'Gerry Yundt','+15856545854','nmuller@example.net','TV','Iowa','South Luther','880 Cartwright Run Suite 550',14,'80214-5101','shipping_address'),(15,'Dr. Dylan Lehner I','+18434647325','candice.morissette@example.net','PR','Colorado','South Markus','447 Brock Shoal Apt. 600',15,'50396','shipping_address'),(16,'Chauncey Hayes','+18655481893','gebert@example.com','SS','Massachusetts','East Miloville','87011 Pierre Ranch Suite 846',16,'68195','shipping_address'),(17,'Miss Hortense Leannon Sr.','+18782592177','langosh.brandon@example.org','SZ','Mississippi','DuBuqueton','569 Harry Knolls',17,'37215','shipping_address'),(18,'Ceasar Wisoky','+16416680161','aniyah61@example.com','SS','New Hampshire','Gaylordhaven','331 Elnora Isle Suite 459',18,'94610-7049','shipping_address'),(19,'Gerry Yundt','+15856545854','nmuller@example.net','TV','Iowa','South Luther','880 Cartwright Run Suite 550',19,'80214-5101','shipping_address'),(20,'Xzavier Nicolas','+18176539232','barton24@example.net','PF','Maryland','Nolanborough','459 Sylvester Stream Apt. 630',20,'68436','shipping_address'); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint unsigned DEFAULT NULL, `order_id` bigint unsigned NOT NULL, `extras` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=93 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,'2023-04-19 13:00:40','2023-04-19 13:00:40'),(2,'confirm_order','Order was verified by %user_name%',0,1,NULL,'2023-04-19 13:00:40','2023-04-19 13:00:40'),(3,'confirm_payment','Payment was confirmed (amount $365.25) by %user_name%',0,1,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(4,'create_shipment','Created shipment for order',0,1,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(5,'create_order_from_seeder','Order is created from the checkout page',NULL,2,NULL,'2023-04-20 05:00:40','2023-04-20 05:00:40'),(6,'confirm_order','Order was verified by %user_name%',0,2,NULL,'2023-04-20 05:00:40','2023-04-20 05:00:40'),(7,'confirm_payment','Payment was confirmed (amount $403.73) by %user_name%',0,2,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(8,'create_shipment','Created shipment for order',0,2,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(9,'create_order_from_seeder','Order is created from the checkout page',NULL,3,NULL,'2023-04-19 09:00:40','2023-04-19 09:00:40'),(10,'confirm_order','Order was verified by %user_name%',0,3,NULL,'2023-04-19 09:00:40','2023-04-19 09:00:40'),(11,'confirm_payment','Payment was confirmed (amount $792.25) by %user_name%',0,3,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(12,'create_shipment','Created shipment for order',0,3,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(13,'create_order_from_seeder','Order is created from the checkout page',NULL,4,NULL,'2023-04-25 19:00:40','2023-04-25 19:00:40'),(14,'confirm_order','Order was verified by %user_name%',0,4,NULL,'2023-04-25 19:00:40','2023-04-25 19:00:40'),(15,'confirm_payment','Payment was confirmed (amount $688.15) by %user_name%',0,4,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(16,'create_shipment','Created shipment for order',0,4,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(17,'create_order_from_seeder','Order is created from the checkout page',NULL,5,NULL,'2023-04-19 13:00:40','2023-04-19 13:00:40'),(18,'confirm_order','Order was verified by %user_name%',0,5,NULL,'2023-04-19 13:00:40','2023-04-19 13:00:40'),(19,'confirm_payment','Payment was confirmed (amount $1,054.70) by %user_name%',0,5,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(20,'create_shipment','Created shipment for order',0,5,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(21,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,5,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(22,'create_order_from_seeder','Order is created from the checkout page',NULL,6,NULL,'2023-04-25 09:00:40','2023-04-25 09:00:40'),(23,'confirm_order','Order was verified by %user_name%',0,6,NULL,'2023-04-25 09:00:40','2023-04-25 09:00:40'),(24,'confirm_payment','Payment was confirmed (amount $1,201.73) by %user_name%',0,6,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(25,'create_shipment','Created shipment for order',0,6,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(26,'create_order_from_seeder','Order is created from the checkout page',NULL,7,NULL,'2023-04-30 13:00:40','2023-04-30 13:00:40'),(27,'confirm_order','Order was verified by %user_name%',0,7,NULL,'2023-04-30 13:00:40','2023-04-30 13:00:40'),(28,'confirm_payment','Payment was confirmed (amount $467.30) by %user_name%',0,7,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(29,'create_shipment','Created shipment for order',0,7,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(30,'create_order_from_seeder','Order is created from the checkout page',NULL,8,NULL,'2023-04-27 11:00:40','2023-04-27 11:00:40'),(31,'confirm_order','Order was verified by %user_name%',0,8,NULL,'2023-04-27 11:00:40','2023-04-27 11:00:40'),(32,'confirm_payment','Payment was confirmed (amount $2,366.50) by %user_name%',0,8,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(33,'create_shipment','Created shipment for order',0,8,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(34,'create_order_from_seeder','Order is created from the checkout page',NULL,9,NULL,'2023-05-01 21:00:40','2023-05-01 21:00:40'),(35,'confirm_order','Order was verified by %user_name%',0,9,NULL,'2023-05-01 21:00:40','2023-05-01 21:00:40'),(36,'confirm_payment','Payment was confirmed (amount $1,656.90) by %user_name%',0,9,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(37,'create_shipment','Created shipment for order',0,9,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(38,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,9,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(39,'create_order_from_seeder','Order is created from the checkout page',NULL,10,NULL,'2023-04-26 11:00:40','2023-04-26 11:00:40'),(40,'confirm_order','Order was verified by %user_name%',0,10,NULL,'2023-04-26 11:00:40','2023-04-26 11:00:40'),(41,'confirm_payment','Payment was confirmed (amount $1,017.00) by %user_name%',0,10,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(42,'create_shipment','Created shipment for order',0,10,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(43,'create_order_from_seeder','Order is created from the checkout page',NULL,11,NULL,'2023-04-27 01:00:40','2023-04-27 01:00:40'),(44,'confirm_order','Order was verified by %user_name%',0,11,NULL,'2023-04-27 01:00:40','2023-04-27 01:00:40'),(45,'create_shipment','Created shipment for order',0,11,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(46,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,11,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(47,'create_order_from_seeder','Order is created from the checkout page',NULL,12,NULL,'2023-04-26 21:00:40','2023-04-26 21:00:40'),(48,'confirm_order','Order was verified by %user_name%',0,12,NULL,'2023-04-26 21:00:40','2023-04-26 21:00:40'),(49,'create_shipment','Created shipment for order',0,12,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(50,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,12,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(51,'create_order_from_seeder','Order is created from the checkout page',NULL,13,NULL,'2023-04-26 21:00:40','2023-04-26 21:00:40'),(52,'confirm_order','Order was verified by %user_name%',0,13,NULL,'2023-04-26 21:00:40','2023-04-26 21:00:40'),(53,'confirm_payment','Payment was confirmed (amount $2,570.90) by %user_name%',0,13,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(54,'create_shipment','Created shipment for order',0,13,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(55,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,13,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(56,'create_order_from_seeder','Order is created from the checkout page',NULL,14,NULL,'2023-04-27 15:00:40','2023-04-27 15:00:40'),(57,'confirm_order','Order was verified by %user_name%',0,14,NULL,'2023-04-27 15:00:40','2023-04-27 15:00:40'),(58,'confirm_payment','Payment was confirmed (amount $439.90) by %user_name%',0,14,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(59,'create_shipment','Created shipment for order',0,14,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(60,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,14,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(61,'create_order_from_seeder','Order is created from the checkout page',NULL,15,NULL,'2023-04-30 21:00:40','2023-04-30 21:00:40'),(62,'confirm_order','Order was verified by %user_name%',0,15,NULL,'2023-04-30 21:00:40','2023-04-30 21:00:40'),(63,'confirm_payment','Payment was confirmed (amount $174.90) by %user_name%',0,15,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(64,'create_shipment','Created shipment for order',0,15,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'),(65,'create_order_from_seeder','Order is created from the checkout page',NULL,16,NULL,'2023-04-29 13:00:40','2023-04-29 13:00:40'),(66,'confirm_order','Order was verified by %user_name%',0,16,NULL,'2023-04-29 13:00:40','2023-04-29 13:00:40'),(67,'confirm_payment','Payment was confirmed (amount $919.70) by %user_name%',0,16,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41'),(68,'create_shipment','Created shipment for order',0,16,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41'),(69,'create_order_from_seeder','Order is created from the checkout page',NULL,17,NULL,'2023-04-30 13:00:41','2023-04-30 13:00:41'),(70,'confirm_order','Order was verified by %user_name%',0,17,NULL,'2023-04-30 13:00:41','2023-04-30 13:00:41'),(71,'create_shipment','Created shipment for order',0,17,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41'),(72,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,17,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41'),(73,'create_order_from_seeder','Order is created from the checkout page',NULL,18,NULL,'2023-05-02 15:00:41','2023-05-02 15:00:41'),(74,'confirm_order','Order was verified by %user_name%',0,18,NULL,'2023-05-02 15:00:41','2023-05-02 15:00:41'),(75,'create_shipment','Created shipment for order',0,18,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41'),(76,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,18,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41'),(77,'create_order_from_seeder','Order is created from the checkout page',NULL,19,NULL,'2023-05-02 05:00:41','2023-05-02 05:00:41'),(78,'confirm_order','Order was verified by %user_name%',0,19,NULL,'2023-05-02 05:00:41','2023-05-02 05:00:41'),(79,'confirm_payment','Payment was confirmed (amount $578.15) by %user_name%',0,19,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41'),(80,'create_shipment','Created shipment for order',0,19,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41'),(81,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,19,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41'),(82,'create_order_from_seeder','Order is created from the checkout page',NULL,20,NULL,'2023-05-02 13:00:41','2023-05-02 13:00:41'),(83,'confirm_order','Order was verified by %user_name%',0,20,NULL,'2023-05-02 13:00:41','2023-05-02 13:00:41'),(84,'confirm_payment','Payment was confirmed (amount $392.85) by %user_name%',0,20,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41'),(85,'create_shipment','Created shipment for order',0,20,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41'),(86,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,20,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41'),(87,'update_status','Order confirmed by %user_name%',0,5,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41'),(88,'update_status','Order confirmed by %user_name%',0,9,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41'),(89,'update_status','Order confirmed by %user_name%',0,13,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41'),(90,'update_status','Order confirmed by %user_name%',0,14,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41'),(91,'update_status','Order confirmed by %user_name%',0,19,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41'),(92,'update_status','Order confirmed by %user_name%',0,20,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41'); /*!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` bigint unsigned NOT NULL, `qty` int NOT NULL, `price` decimal(15,2) NOT NULL, `tax_amount` decimal(15,2) NOT NULL, `options` text COLLATE utf8mb4_unicode_ci, `product_options` text COLLATE utf8mb4_unicode_ci COMMENT 'product option data', `product_id` bigint unsigned DEFAULT NULL, `product_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `product_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT 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, `product_type` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `times_downloaded` int NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=62 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_order_product` -- LOCK TABLES `ec_order_product` WRITE; /*!40000 ALTER TABLE `ec_order_product` DISABLE KEYS */; INSERT INTO `ec_order_product` VALUES (1,1,1,111.00,11.10,'[]',NULL,70,'Cool Smart Watches (Digital)','products/17.jpg',723.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','digital',3),(2,1,3,40.50,4.05,'[]',NULL,95,'Smart Watches','products/26.jpg',2085.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','physical',0),(3,1,2,56.00,5.60,'[]',NULL,106,'Samsung Smart TV','products/31.jpg',1182.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','physical',0),(4,2,2,112.00,11.20,'[]',NULL,60,'Apple Watch Serial 7','products/11-1.jpg',1072.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','physical',0),(5,2,2,80.25,8.03,'[]',NULL,90,'Dual Camera 20MP (Digital)','products/25.jpg',1360.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','digital',10),(6,3,2,130.00,13.00,'[]',NULL,64,'MacSafe 80W','products/14-1.jpg',1782.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','physical',0),(7,3,3,127.00,12.70,'[]',NULL,83,'Black Glasses','products/22.jpg',2679.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','physical',0),(8,3,3,40.50,4.05,'[]',NULL,92,'Smart Watches','products/26.jpg',2085.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','physical',0),(9,4,3,118.00,11.80,'[]',NULL,50,'Leather Watch Band','products/7-1.jpg',1953.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','physical',0),(10,4,2,113.00,11.30,'[]',NULL,62,'Apple Keyboard (Digital)','products/13.jpg',1294.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','digital',2),(11,4,2,40.50,4.05,'[]',NULL,92,'Smart Watches','products/26.jpg',1390.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','physical',0),(12,5,1,494.00,49.40,'[]',NULL,32,'Smart Home Speaker (Digital)','products/1.jpg',876.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','digital',8),(13,5,3,127.00,12.70,'[]',NULL,83,'Black Glasses','products/22.jpg',2679.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','physical',0),(14,5,2,56.00,5.60,'[]',NULL,108,'Samsung Smart TV','products/31.jpg',1182.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','physical',0),(15,6,2,492.00,49.20,'[]',NULL,58,'Macbook Air 12 inch','products/10-1.jpg',1788.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','physical',0),(16,6,2,80.25,8.03,'[]',NULL,91,'Dual Camera 20MP (Digital)','products/25-1.jpg',1360.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','digital',0),(17,7,1,112.00,11.20,'[]',NULL,60,'Apple Watch Serial 7','products/11-1.jpg',536.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','physical',0),(18,7,3,111.00,11.10,'[]',NULL,71,'Cool Smart Watches (Digital)','products/17.jpg',2169.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','digital',9),(19,8,3,495.00,49.50,'[]',NULL,36,'Headphone Ultra Bass','products/2-2.jpg',2364.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','physical',0),(20,8,3,118.00,11.80,'[]',NULL,51,'Leather Watch Band','products/7.jpg',1953.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','physical',0),(21,8,1,111.00,11.10,'[]',NULL,71,'Cool Smart Watches (Digital)','products/17.jpg',723.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','digital',7),(22,8,3,111.00,11.10,'[]',NULL,72,'Cool Smart Watches (Digital)','products/17.jpg',2169.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','digital',10),(23,9,1,495.00,49.50,'[]',NULL,35,'Headphone Ultra Bass','products/2-1.jpg',788.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','physical',0),(24,9,3,277.00,27.70,'[]',NULL,39,'Boxed - Bluetooth Headphone','products/3.jpg',1965.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','physical',0),(25,9,1,118.00,11.80,'[]',NULL,49,'Leather Watch Band','products/7.jpg',651.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','physical',0),(26,9,2,59.00,5.90,'[]',NULL,103,'Audio Equipment (Digital)','products/29.jpg',1150.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','digital',9),(27,10,3,47.00,4.70,'[]',NULL,44,'Camera Hikvision HK-35VS8 (Digital)','products/5.jpg',2361.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','digital',3),(28,10,3,130.00,13.00,'[]',NULL,64,'MacSafe 80W','products/14-1.jpg',2673.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','physical',0),(29,10,2,111.00,11.10,'[]',NULL,70,'Cool Smart Watches (Digital)','products/17.jpg',1446.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','digital',8),(30,10,2,112.00,11.20,'[]',NULL,82,'Historic Alarm Clock (Digital)','products/21.jpg',1440.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','digital',5),(31,11,3,277.00,27.70,'[]',NULL,39,'Boxed - Bluetooth Headphone','products/3.jpg',1965.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','physical',0),(32,11,2,118.00,11.80,'[]',NULL,49,'Leather Watch Band','products/7.jpg',1302.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','physical',0),(33,11,1,59.00,5.90,'[]',NULL,101,'Audio Equipment (Digital)','products/29.jpg',575.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','digital',9),(34,11,2,125.00,12.50,'[]',NULL,104,'Smart Televisions','products/30.jpg',1456.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','physical',0),(35,12,2,116.00,11.60,'[]',NULL,54,'Macbook Pro 2015 (Digital)','products/9.jpg',1186.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','digital',1),(36,12,3,112.00,11.20,'[]',NULL,60,'Apple Watch Serial 7','products/11-1.jpg',1608.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','physical',0),(37,12,2,121.00,12.10,'[]',NULL,86,'Phillips Mouse','products/23.jpg',1608.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','physical',0),(38,13,3,494.00,49.40,'[]',NULL,32,'Smart Home Speaker (Digital)','products/1.jpg',2628.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','digital',10),(39,13,2,495.00,49.50,'[]',NULL,35,'Headphone Ultra Bass','products/2-1.jpg',1576.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','physical',0),(40,14,1,73.00,7.30,'[]',NULL,42,'Chikie - Bluetooth Speaker','products/4-2.jpg',695.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','physical',0),(41,14,3,116.00,11.60,'[]',NULL,74,'Leather Watch Band Serial 3','products/19.jpg',1620.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','physical',0),(42,15,1,47.00,4.70,'[]',NULL,44,'Camera Hikvision HK-35VS8 (Digital)','products/5.jpg',787.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','digital',7),(43,15,1,112.00,11.20,'[]',NULL,82,'Historic Alarm Clock (Digital)','products/21.jpg',720.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','digital',2),(44,16,2,116.00,11.60,'[]',NULL,55,'Macbook Pro 2015 (Digital)','products/9-1.jpg',1186.00,0,'2023-05-02 21:00:41','2023-05-02 21:00:41','digital',0),(45,16,2,124.00,12.40,'[]',NULL,67,'Hand playstation','products/15-1.jpg',1796.00,0,'2023-05-02 21:00:41','2023-05-02 21:00:41','physical',0),(46,16,3,127.00,12.70,'[]',NULL,85,'Black Glasses','products/22.jpg',2679.00,0,'2023-05-02 21:00:41','2023-05-02 21:00:41','physical',0),(47,16,1,20.00,2.00,'[]',NULL,97,'Beat Headphone','products/27-1.jpg',861.00,0,'2023-05-02 21:00:41','2023-05-02 21:00:41','physical',0),(48,17,3,73.00,7.30,'[]',NULL,40,'Chikie - Bluetooth Speaker','products/4.jpg',2085.00,0,'2023-05-02 21:00:41','2023-05-02 21:00:41','physical',0),(49,17,3,116.00,11.60,'[]',NULL,54,'Macbook Pro 2015 (Digital)','products/9.jpg',1779.00,0,'2023-05-02 21:00:41','2023-05-02 21:00:41','digital',2),(50,17,3,112.00,11.20,'[]',NULL,80,'Historic Alarm Clock (Digital)','products/21.jpg',2160.00,0,'2023-05-02 21:00:41','2023-05-02 21:00:41','digital',4),(51,17,3,112.00,11.20,'[]',NULL,82,'Historic Alarm Clock (Digital)','products/21.jpg',2160.00,0,'2023-05-02 21:00:41','2023-05-02 21:00:41','digital',9),(52,18,2,495.00,49.50,'[]',NULL,34,'Headphone Ultra Bass','products/2.jpg',1576.00,0,'2023-05-02 21:00:41','2023-05-02 21:00:41','physical',0),(53,18,1,73.00,7.30,'[]',NULL,43,'Chikie - Bluetooth Speaker','products/4-3.jpg',695.00,0,'2023-05-02 21:00:41','2023-05-02 21:00:41','physical',0),(54,18,2,127.00,12.70,'[]',NULL,85,'Black Glasses','products/22.jpg',1786.00,0,'2023-05-02 21:00:41','2023-05-02 21:00:41','physical',0),(55,19,2,130.00,13.00,'[]',NULL,65,'MacSafe 80W','products/14.jpg',1782.00,0,'2023-05-02 21:00:41','2023-05-02 21:00:41','physical',0),(56,19,3,40.50,4.05,'[]',NULL,94,'Smart Watches','products/26-2.jpg',2085.00,0,'2023-05-02 21:00:41','2023-05-02 21:00:41','physical',0),(57,19,3,20.00,2.00,'[]',NULL,96,'Beat Headphone','products/27.jpg',2583.00,0,'2023-05-02 21:00:41','2023-05-02 21:00:41','physical',0),(58,19,2,56.00,5.60,'[]',NULL,107,'Samsung Smart TV','products/31-1.jpg',1182.00,0,'2023-05-02 21:00:41','2023-05-02 21:00:41','physical',0),(59,20,1,113.00,11.30,'[]',NULL,61,'Macbook Pro 13 inch','products/12.jpg',857.00,0,'2023-05-02 21:00:41','2023-05-02 21:00:41','physical',0),(60,20,1,130.00,13.00,'[]',NULL,64,'MacSafe 80W','products/14-1.jpg',891.00,0,'2023-05-02 21:00:41','2023-05-02 21:00:41','physical',0),(61,20,3,40.50,4.05,'[]',NULL,94,'Smart Watches','products/26-2.jpg',2085.00,0,'2023-05-02 21:00:41','2023-05-02 21:00:41','physical',0); /*!40000 ALTER TABLE `ec_order_product` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_order_referrals` -- DROP TABLE IF EXISTS `ec_order_referrals`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_order_referrals` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `ip` varchar(39) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `landing_domain` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `landing_page` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `landing_params` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `referral` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `gclid` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `fclid` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `utm_source` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `utm_campaign` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `utm_medium` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `utm_term` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `utm_content` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `referrer_url` text COLLATE utf8mb4_unicode_ci, `referrer_domain` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_id` bigint unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `ec_order_referrals_order_id_index` (`order_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_order_referrals` -- LOCK TABLES `ec_order_referrals` WRITE; /*!40000 ALTER TABLE `ec_order_referrals` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_order_referrals` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_order_return_items` -- DROP TABLE IF EXISTS `ec_order_return_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_order_return_items` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `order_return_id` bigint unsigned NOT NULL COMMENT 'Order return id', `order_product_id` bigint unsigned NOT NULL COMMENT 'Order product id', `product_id` bigint unsigned NOT NULL COMMENT 'Product id', `product_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `product_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `qty` int NOT NULL COMMENT 'Quantity return', `price` decimal(15,2) NOT NULL COMMENT 'Price Product', `reason` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `refund_amount` decimal(12,2) DEFAULT '0.00', 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_order_return_items` -- LOCK TABLES `ec_order_return_items` WRITE; /*!40000 ALTER TABLE `ec_order_return_items` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_order_return_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_order_returns` -- DROP TABLE IF EXISTS `ec_order_returns`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_order_returns` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_id` bigint unsigned NOT NULL COMMENT 'Order ID', `store_id` bigint unsigned DEFAULT NULL COMMENT 'Store ID', `user_id` bigint unsigned NOT NULL COMMENT 'Customer ID', `reason` text COLLATE utf8mb4_unicode_ci COMMENT 'Reason return order', `order_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Order current status', `return_status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Return status', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ec_order_returns_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_order_returns` -- LOCK TABLES `ec_order_returns` WRITE; /*!40000 ALTER TABLE `ec_order_returns` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_order_returns` 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, `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint unsigned NOT NULL, `shipping_option` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default', `status` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `amount` decimal(15,2) NOT NULL, `tax_amount` decimal(15,2) DEFAULT NULL, `shipping_amount` decimal(15,2) DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci, `coupon_code` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_amount` decimal(15,2) DEFAULT NULL, `sub_total` decimal(15,2) NOT NULL, `is_confirmed` tinyint(1) NOT NULL DEFAULT '0', `discount_description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_finished` tinyint(1) DEFAULT '0', `completed_at` timestamp NULL DEFAULT NULL, `token` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_id` bigint unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ec_orders_code_unique` (`code`), 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,'#10000001',6,'1','default','pending',365.25,20.75,0.00,NULL,NULL,0.00,344.50,1,NULL,1,NULL,'anoomk7ErjWMI2Is5ADYznOQBiUOj',1,'2023-04-19 13:00:40','2023-05-02 21:00:40'),(2,'#10000002',3,'1','default','pending',403.73,19.23,0.00,NULL,NULL,0.00,384.50,1,NULL,1,NULL,'DrljROGlqSa93TRj94oqLTgTbylVj',2,'2023-04-20 05:00:40','2023-05-02 21:00:40'),(3,'#10000003',11,'1','default','pending',792.25,29.75,0.00,NULL,NULL,0.00,762.50,1,NULL,1,NULL,'Q3BZMF5GunBSziya0UJDNyFYtPVDt',3,'2023-04-19 09:00:40','2023-05-02 21:00:40'),(4,'#10000004',2,'1','default','pending',688.15,27.15,0.00,NULL,NULL,0.00,661.00,1,NULL,1,NULL,'8IUJiMQuz2jOsAVziYGqYMHENpKmB',4,'2023-04-25 19:00:40','2023-05-02 21:00:40'),(5,'#10000005',10,'1','default','completed',1054.70,67.70,0.00,NULL,NULL,0.00,987.00,1,NULL,1,'2023-05-02 21:00:41','umsrnqsL0Moj8fa7ga1But1b8gjP3',5,'2023-04-19 13:00:40','2023-05-02 21:00:41'),(6,'#10000006',10,'1','default','pending',1201.73,57.23,0.00,NULL,NULL,0.00,1144.50,1,NULL,1,NULL,'bK8o9KHjVw0o4zHp9arYDnF1OrO6s',6,'2023-04-25 09:00:40','2023-05-02 21:00:40'),(7,'#10000007',5,'1','default','pending',467.30,22.30,0.00,NULL,NULL,0.00,445.00,1,NULL,1,NULL,'FHqrrW4YwmlHpOt3eQjvIqm14S8Z5',7,'2023-04-30 13:00:40','2023-05-02 21:00:40'),(8,'#10000008',7,'1','default','pending',2366.50,83.50,0.00,NULL,NULL,0.00,2283.00,1,NULL,1,NULL,'xfpRGn8tFrU3VUZrda27wjJBDJruo',8,'2023-04-27 11:00:40','2023-05-02 21:00:40'),(9,'#10000009',3,'1','default','completed',1656.90,94.90,0.00,NULL,NULL,0.00,1562.00,1,NULL,1,'2023-05-02 21:00:41','MsM6gmDhUjWhsJueo7ZErL4z97cBS',9,'2023-05-01 21:00:40','2023-05-02 21:00:41'),(10,'#10000010',6,'1','default','pending',1017.00,40.00,0.00,NULL,NULL,0.00,977.00,1,NULL,1,NULL,'snCvIqAPlpnE3KPIpsVNkpbHaLPRg',10,'2023-04-26 11:00:40','2023-05-02 21:00:40'),(11,'#10000011',9,'1','default','completed',1433.90,57.90,0.00,NULL,NULL,0.00,1376.00,1,NULL,1,'2023-05-02 21:00:40','DXPx91Tk05vEgeKwvSxKag7qMaHZq',11,'2023-04-27 01:00:40','2023-05-02 21:00:40'),(12,'#10000012',11,'1','default','completed',844.90,34.90,0.00,NULL,NULL,0.00,810.00,1,NULL,1,'2023-05-02 21:00:40','7bo6l0BMQ7NG8d7sZcMMETM5O23d2',12,'2023-04-26 21:00:40','2023-05-02 21:00:40'),(13,'#10000013',1,'1','default','completed',2570.90,98.90,0.00,NULL,NULL,0.00,2472.00,1,NULL,1,'2023-05-02 21:00:41','ocM6SuWIUaWO2trTItyZaL9a9xOLY',13,'2023-04-26 21:00:40','2023-05-02 21:00:41'),(14,'#10000014',4,'1','default','completed',439.90,18.90,0.00,NULL,NULL,0.00,421.00,1,NULL,1,'2023-05-02 21:00:41','nu2tCzLBWbqjEZIzdbdvXKv3pW1aj',14,'2023-04-27 15:00:40','2023-05-02 21:00:41'),(15,'#10000015',6,'1','default','pending',174.90,15.90,0.00,NULL,NULL,0.00,159.00,1,NULL,1,NULL,'wzWpMmXqlCaH8aFEgZflxJTMbr5Jy',15,'2023-04-30 21:00:40','2023-05-02 21:00:40'),(16,'#10000016',3,'1','default','pending',919.70,38.70,0.00,NULL,NULL,0.00,881.00,1,NULL,1,NULL,'W0RgTr6YFNDuybNgCwdfVMz340T7M',16,'2023-04-29 13:00:40','2023-05-02 21:00:41'),(17,'#10000017',9,'1','default','completed',1280.30,41.30,0.00,NULL,NULL,0.00,1239.00,1,NULL,1,'2023-05-02 21:00:41','yUbqiC1dkQ13WWfUI0QIf7UYxP4EK',17,'2023-04-30 13:00:41','2023-05-02 21:00:41'),(18,'#10000018',10,'1','default','completed',1386.50,69.50,0.00,NULL,NULL,0.00,1317.00,1,NULL,1,'2023-05-02 21:00:41','gcLFHsKJ6gGOcsI0jUEBswHi9AuIU',18,'2023-05-02 15:00:41','2023-05-02 21:00:41'),(19,'#10000019',4,'1','default','completed',578.15,24.65,0.00,NULL,NULL,0.00,553.50,1,NULL,1,'2023-05-02 21:00:41','jJP6A1owCnmad3mOCLZKhby5iIC43',19,'2023-05-02 05:00:41','2023-05-02 21:00:41'),(20,'#10000020',7,'1','default','completed',392.85,28.35,0.00,NULL,NULL,0.00,364.50,1,NULL,1,'2023-05-02 21:00:41','5zGhvRno7UfWDMDcliSvoLt06Ebc4',20,'2023-05-02 13:00:41','2023-05-02 21:00:41'); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `display_layout` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'swatch_dropdown', `is_searchable` tinyint 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) 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,'2023-05-02 21:00:32','2023-05-02 21:00:32',1),(2,'Size','size','text',1,1,1,'published',1,'2023-05-02 21:00:32','2023-05-02 21:00:32',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) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_product_attribute_sets_id` bigint unsigned NOT NULL, `title` varchar(191) 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` bigint unsigned NOT NULL, `title` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `color` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_default` tinyint unsigned NOT NULL DEFAULT '0', `order` tinyint unsigned NOT NULL DEFAULT '0', `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `ec_product_attributes_attribute_set_id_status_index` (`attribute_set_id`,`status`) ) 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','2023-05-02 21:00:32','2023-05-02 21:00:32'),(2,1,'Blue','blue','#333333',NULL,0,2,'published','2023-05-02 21:00:32','2023-05-02 21:00:32'),(3,1,'Red','red','#DA323F',NULL,0,3,'published','2023-05-02 21:00:32','2023-05-02 21:00:32'),(4,1,'Black','back','#2F366C',NULL,0,4,'published','2023-05-02 21:00:32','2023-05-02 21:00:32'),(5,1,'Brown','brown','#87554B',NULL,0,5,'published','2023-05-02 21:00:32','2023-05-02 21:00:32'),(6,2,'S','s',NULL,NULL,1,1,'published','2023-05-02 21:00:32','2023-05-02 21:00:32'),(7,2,'M','m',NULL,NULL,0,2,'published','2023-05-02 21:00:32','2023-05-02 21:00:32'),(8,2,'L','l',NULL,NULL,0,3,'published','2023-05-02 21:00:32','2023-05-02 21:00:32'),(9,2,'XL','xl',NULL,NULL,0,4,'published','2023-05-02 21:00:32','2023-05-02 21:00:32'),(10,2,'XXL','xxl',NULL,NULL,0,5,'published','2023-05-02 21:00:32','2023-05-02 21:00:32'); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_product_attributes_id` bigint unsigned NOT NULL, `title` varchar(191) 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) COLLATE utf8mb4_unicode_ci NOT NULL, `parent_id` bigint unsigned NOT NULL DEFAULT '0', `description` mediumtext COLLATE utf8mb4_unicode_ci, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `order` int unsigned NOT NULL DEFAULT '0', `image` varchar(255) 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`), KEY `ec_product_categories_parent_id_status_index` (`parent_id`,`status`) ) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_categories` -- LOCK TABLES `ec_product_categories` WRITE; /*!40000 ALTER TABLE `ec_product_categories` DISABLE KEYS */; INSERT INTO `ec_product_categories` VALUES (1,'Television',0,NULL,'published',0,'product-categories/p-1.png',1,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(2,'Home Audio & Theaters',1,NULL,'published',0,NULL,0,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(3,'TV & Videos',1,NULL,'published',1,NULL,0,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(4,'Camera, Photos & Videos',1,NULL,'published',2,NULL,0,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(5,'Cellphones & Accessories',1,NULL,'published',3,NULL,0,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(6,'Headphones',1,NULL,'published',4,NULL,0,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(7,'Videos games',1,NULL,'published',5,NULL,0,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(8,'Wireless Speakers',1,NULL,'published',6,NULL,0,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(9,'Office Electronic',1,NULL,'published',7,NULL,0,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(10,'Mobile',0,NULL,'published',1,'product-categories/p-2.png',1,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(11,'Digital Cables',10,NULL,'published',0,NULL,0,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(12,'Audio & Video Cables',10,NULL,'published',1,NULL,0,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(13,'Batteries',10,NULL,'published',2,NULL,0,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(14,'Headphone',0,NULL,'published',2,'product-categories/p-3.png',1,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(15,'Computer & Tablets',14,NULL,'published',0,NULL,0,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(16,'Laptop',14,NULL,'published',1,NULL,0,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(17,'Monitors',14,NULL,'published',2,NULL,0,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(18,'Computer Components',14,NULL,'published',3,NULL,0,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(19,'Watches',0,NULL,'published',3,'product-categories/p-4.png',1,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(20,'Drive & Storages',19,NULL,'published',0,NULL,0,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(21,'Gaming Laptop',19,NULL,'published',1,NULL,0,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(22,'Security & Protection',19,NULL,'published',2,NULL,0,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(23,'Accessories',19,NULL,'published',3,NULL,0,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(24,'Game',0,NULL,'published',4,'product-categories/p-5.png',1,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(25,'Camera',0,NULL,'published',5,'product-categories/p-6.png',1,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(26,'Audio',0,NULL,'published',6,'product-categories/p-7.png',1,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(27,'Mobile & Tablet',0,NULL,'published',7,NULL,0,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(28,'Accessories',0,NULL,'published',8,NULL,0,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(29,'Home Audio & Theater',0,NULL,'published',9,NULL,0,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(30,'Tv & Smart Box',0,NULL,'published',10,NULL,0,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(31,'Printer',0,NULL,'published',11,NULL,0,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(32,'Computer',0,NULL,'published',12,NULL,0,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(33,'Fax Machine',0,NULL,'published',13,NULL,0,'2023-05-02 21:00:32','2023-05-02 21:00:32'),(34,'Mouse',0,NULL,'published',14,NULL,0,'2023-05-02 21:00:32','2023-05-02 21:00:32'); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_product_categories_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text 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,'Tivi',NULL),('vi',2,'Home Audio & Theaters',NULL),('vi',3,'TV & Videos',NULL),('vi',4,'Camera, Photos & Videos',NULL),('vi',5,'Cellphones & Accessories',NULL),('vi',6,'Headphones',NULL),('vi',7,'Videos games',NULL),('vi',8,'Wireless Speakers',NULL),('vi',9,'Office Electronic',NULL),('vi',10,'Di động',NULL),('vi',11,'Digital Cables',NULL),('vi',12,'Audio & Video Cables',NULL),('vi',13,'Batteries',NULL),('vi',14,'Tai nghe',NULL),('vi',15,'Computer & Tablets',NULL),('vi',16,'Laptop',NULL),('vi',17,'Monitors',NULL),('vi',18,'Computer Components',NULL),('vi',19,'Đồng hồ',NULL),('vi',20,'Drive & Storages',NULL),('vi',21,'Gaming Laptop',NULL),('vi',22,'Security & Protection',NULL),('vi',23,'Accessories',NULL),('vi',24,'Trò chơi',NULL),('vi',25,'Máy ảnh',NULL),('vi',26,'Âm thanh',NULL),('vi',27,'Di động & Máy tính bảng',NULL),('vi',28,'Phụ kiện',NULL),('vi',29,'Âm thanh & hình ảnh',NULL),('vi',30,'Tv & Smart Box',NULL),('vi',31,'Máy in',NULL),('vi',32,'Máy tính',NULL),('vi',33,'Máy Fax',NULL),('vi',34,'Chuột máy tính',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` ( `category_id` bigint unsigned NOT NULL, `product_id` bigint unsigned NOT NULL, PRIMARY KEY (`product_id`,`category_id`), KEY `ec_product_category_product_category_id_index` (`category_id`), KEY `ec_product_category_product_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_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,3),(1,23),(2,17),(2,29),(3,2),(3,13),(3,15),(3,20),(3,21),(3,31),(4,4),(4,26),(5,22),(5,24),(5,27),(6,5),(6,19),(6,25),(7,6),(8,1),(8,7),(8,12),(9,8),(10,18),(10,28),(11,9),(11,16),(11,30),(12,14),(13,11),(14,10); /*!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` ( `product_collection_id` bigint unsigned NOT NULL, `product_id` bigint unsigned NOT NULL, PRIMARY KEY (`product_id`,`product_collection_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 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,14),(1,16),(1,18),(1,19),(1,20),(1,21),(1,22),(1,23),(1,26),(2,3),(2,6),(2,9),(2,24),(2,28),(2,30),(3,1),(3,2),(3,4),(3,5),(3,7),(3,8),(3,10),(3,11),(3,12),(3,13),(3,15),(3,17),(3,25),(3,27),(3,29),(3,31); /*!40000 ALTER TABLE `ec_product_collection_products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_collections` -- DROP TABLE IF EXISTS `ec_product_collections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_collections` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `is_featured` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_collections` -- LOCK TABLES `ec_product_collections` WRITE; /*!40000 ALTER TABLE `ec_product_collections` DISABLE KEYS */; INSERT INTO `ec_product_collections` VALUES (1,'New Arrival','new-arrival',NULL,NULL,'published','2023-05-02 21:00:32','2023-05-02 21:00:32',0),(2,'Best Sellers','best-sellers',NULL,NULL,'published','2023-05-02 21:00:32','2023-05-02 21:00:32',0),(3,'Special Offer','special-offer',NULL,NULL,'published','2023-05-02 21:00:32','2023-05-02 21:00:32',0); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_product_collections_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) 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); /*!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` ( `from_product_id` bigint unsigned NOT NULL, `to_product_id` bigint unsigned NOT NULL, PRIMARY KEY (`from_product_id`,`to_product_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 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,6),(1,16),(1,23),(1,30),(2,8),(2,14),(2,16),(2,30),(3,1),(3,19),(3,30),(4,7),(4,19),(4,27),(4,31),(5,1),(5,6),(5,19),(5,28),(6,3),(6,4),(6,7),(6,19),(7,4),(7,8),(7,14),(8,3),(8,9),(8,15),(8,19),(9,2),(9,8),(9,25),(10,3),(10,12),(10,18),(10,22),(11,10),(11,23),(11,25),(12,15),(12,16),(12,19),(12,27),(13,11),(13,14),(13,24),(13,27),(14,3),(14,21),(14,29),(14,30),(15,4),(15,18),(15,24),(15,29),(16,11),(16,20),(16,21),(16,23),(17,5),(17,9),(17,21),(17,23),(18,8),(18,17),(18,24),(18,27),(19,10),(19,15),(19,16),(19,17),(20,7),(20,17),(20,23),(20,28),(21,4),(21,7),(21,12),(21,24),(22,12),(22,16),(22,19),(22,23),(23,1),(23,17),(23,20),(23,27),(24,4),(24,6),(24,14),(25,8),(25,18),(25,21),(25,23),(26,2),(26,11),(26,17),(26,24),(27,5),(27,6),(27,9),(27,17),(28,4),(28,7),(28,18),(28,22),(29,1),(29,3),(29,13),(29,22),(30,14),(30,18),(30,20),(30,21),(31,1),(31,8),(31,17),(31,28); /*!40000 ALTER TABLE `ec_product_cross_sale_relations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_files` -- DROP TABLE IF EXISTS `ec_product_files`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_files` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `product_id` bigint unsigned DEFAULT NULL, `url` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `extras` mediumtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `ec_product_files_product_id_index` (`product_id`) ) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_files` -- LOCK TABLES `ec_product_files` WRITE; /*!40000 ALTER TABLE `ec_product_files` DISABLE KEYS */; INSERT INTO `ec_product_files` VALUES (1,32,'product-files/1.jpg','{\"filename\":\"1.jpg\",\"url\":\"product-files\\/1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:37\",\"name\":\"1\",\"extension\":\"jpg\"}','2023-05-02 21:00:37','2023-05-02 21:00:37'),(2,32,'product-files/1-1.jpg','{\"filename\":\"1-1.jpg\",\"url\":\"product-files\\/1-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:37\",\"name\":\"1-1\",\"extension\":\"jpg\"}','2023-05-02 21:00:37','2023-05-02 21:00:37'),(3,32,'product-files/1-2.jpg','{\"filename\":\"1-2.jpg\",\"url\":\"product-files\\/1-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:37\",\"name\":\"1-2\",\"extension\":\"jpg\"}','2023-05-02 21:00:37','2023-05-02 21:00:37'),(4,32,'product-files/1-3.jpg','{\"filename\":\"1-3.jpg\",\"url\":\"product-files\\/1-3.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:37\",\"name\":\"1-3\",\"extension\":\"jpg\"}','2023-05-02 21:00:37','2023-05-02 21:00:37'),(5,33,'product-files/1.jpg','{\"filename\":\"1.jpg\",\"url\":\"product-files\\/1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:37\",\"name\":\"1\",\"extension\":\"jpg\"}','2023-05-02 21:00:37','2023-05-02 21:00:37'),(6,33,'product-files/1-1.jpg','{\"filename\":\"1-1.jpg\",\"url\":\"product-files\\/1-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:37\",\"name\":\"1-1\",\"extension\":\"jpg\"}','2023-05-02 21:00:37','2023-05-02 21:00:37'),(7,33,'product-files/1-2.jpg','{\"filename\":\"1-2.jpg\",\"url\":\"product-files\\/1-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:37\",\"name\":\"1-2\",\"extension\":\"jpg\"}','2023-05-02 21:00:37','2023-05-02 21:00:37'),(8,33,'product-files/1-3.jpg','{\"filename\":\"1-3.jpg\",\"url\":\"product-files\\/1-3.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:37\",\"name\":\"1-3\",\"extension\":\"jpg\"}','2023-05-02 21:00:37','2023-05-02 21:00:37'),(9,44,'product-files/5.jpg','{\"filename\":\"5.jpg\",\"url\":\"product-files\\/5.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:38\",\"name\":\"5\",\"extension\":\"jpg\"}','2023-05-02 21:00:38','2023-05-02 21:00:38'),(10,44,'product-files/5-1.jpg','{\"filename\":\"5-1.jpg\",\"url\":\"product-files\\/5-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:38\",\"name\":\"5-1\",\"extension\":\"jpg\"}','2023-05-02 21:00:38','2023-05-02 21:00:38'),(11,44,'product-files/5-2.jpg','{\"filename\":\"5-2.jpg\",\"url\":\"product-files\\/5-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:38\",\"name\":\"5-2\",\"extension\":\"jpg\"}','2023-05-02 21:00:38','2023-05-02 21:00:38'),(12,44,'product-files/5-3.jpg','{\"filename\":\"5-3.jpg\",\"url\":\"product-files\\/5-3.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:38\",\"name\":\"5-3\",\"extension\":\"jpg\"}','2023-05-02 21:00:38','2023-05-02 21:00:38'),(13,45,'product-files/5.jpg','{\"filename\":\"5.jpg\",\"url\":\"product-files\\/5.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:38\",\"name\":\"5\",\"extension\":\"jpg\"}','2023-05-02 21:00:38','2023-05-02 21:00:38'),(14,45,'product-files/5-1.jpg','{\"filename\":\"5-1.jpg\",\"url\":\"product-files\\/5-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:38\",\"name\":\"5-1\",\"extension\":\"jpg\"}','2023-05-02 21:00:38','2023-05-02 21:00:38'),(15,45,'product-files/5-2.jpg','{\"filename\":\"5-2.jpg\",\"url\":\"product-files\\/5-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:38\",\"name\":\"5-2\",\"extension\":\"jpg\"}','2023-05-02 21:00:38','2023-05-02 21:00:38'),(16,45,'product-files/5-3.jpg','{\"filename\":\"5-3.jpg\",\"url\":\"product-files\\/5-3.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:38\",\"name\":\"5-3\",\"extension\":\"jpg\"}','2023-05-02 21:00:38','2023-05-02 21:00:38'),(17,54,'product-files/9.jpg','{\"filename\":\"9.jpg\",\"url\":\"product-files\\/9.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:38\",\"name\":\"9\",\"extension\":\"jpg\"}','2023-05-02 21:00:38','2023-05-02 21:00:38'),(18,54,'product-files/9-1.jpg','{\"filename\":\"9-1.jpg\",\"url\":\"product-files\\/9-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:38\",\"name\":\"9-1\",\"extension\":\"jpg\"}','2023-05-02 21:00:38','2023-05-02 21:00:38'),(19,55,'product-files/9.jpg','{\"filename\":\"9.jpg\",\"url\":\"product-files\\/9.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:38\",\"name\":\"9\",\"extension\":\"jpg\"}','2023-05-02 21:00:38','2023-05-02 21:00:38'),(20,55,'product-files/9-1.jpg','{\"filename\":\"9-1.jpg\",\"url\":\"product-files\\/9-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:38\",\"name\":\"9-1\",\"extension\":\"jpg\"}','2023-05-02 21:00:38','2023-05-02 21:00:38'),(21,56,'product-files/9.jpg','{\"filename\":\"9.jpg\",\"url\":\"product-files\\/9.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:38\",\"name\":\"9\",\"extension\":\"jpg\"}','2023-05-02 21:00:38','2023-05-02 21:00:38'),(22,56,'product-files/9-1.jpg','{\"filename\":\"9-1.jpg\",\"url\":\"product-files\\/9-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:38\",\"name\":\"9-1\",\"extension\":\"jpg\"}','2023-05-02 21:00:38','2023-05-02 21:00:38'),(23,62,'product-files/13.jpg','{\"filename\":\"13.jpg\",\"url\":\"product-files\\/13.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:38\",\"name\":\"13\",\"extension\":\"jpg\"}','2023-05-02 21:00:38','2023-05-02 21:00:38'),(24,62,'product-files/13-1.jpg','{\"filename\":\"13-1.jpg\",\"url\":\"product-files\\/13-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:38\",\"name\":\"13-1\",\"extension\":\"jpg\"}','2023-05-02 21:00:38','2023-05-02 21:00:38'),(25,70,'product-files/17.jpg','{\"filename\":\"17.jpg\",\"url\":\"product-files\\/17.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:38\",\"name\":\"17\",\"extension\":\"jpg\"}','2023-05-02 21:00:38','2023-05-02 21:00:38'),(26,71,'product-files/17.jpg','{\"filename\":\"17.jpg\",\"url\":\"product-files\\/17.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:38\",\"name\":\"17\",\"extension\":\"jpg\"}','2023-05-02 21:00:38','2023-05-02 21:00:38'),(27,72,'product-files/17.jpg','{\"filename\":\"17.jpg\",\"url\":\"product-files\\/17.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:38\",\"name\":\"17\",\"extension\":\"jpg\"}','2023-05-02 21:00:38','2023-05-02 21:00:38'),(28,80,'product-files/21.jpg','{\"filename\":\"21.jpg\",\"url\":\"product-files\\/21.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:38\",\"name\":\"21\",\"extension\":\"jpg\"}','2023-05-02 21:00:38','2023-05-02 21:00:38'),(29,80,'product-files/21-1.jpg','{\"filename\":\"21-1.jpg\",\"url\":\"product-files\\/21-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:38\",\"name\":\"21-1\",\"extension\":\"jpg\"}','2023-05-02 21:00:38','2023-05-02 21:00:38'),(30,81,'product-files/21.jpg','{\"filename\":\"21.jpg\",\"url\":\"product-files\\/21.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:39\",\"name\":\"21\",\"extension\":\"jpg\"}','2023-05-02 21:00:39','2023-05-02 21:00:39'),(31,81,'product-files/21-1.jpg','{\"filename\":\"21-1.jpg\",\"url\":\"product-files\\/21-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:39\",\"name\":\"21-1\",\"extension\":\"jpg\"}','2023-05-02 21:00:39','2023-05-02 21:00:39'),(32,82,'product-files/21.jpg','{\"filename\":\"21.jpg\",\"url\":\"product-files\\/21.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:39\",\"name\":\"21\",\"extension\":\"jpg\"}','2023-05-02 21:00:39','2023-05-02 21:00:39'),(33,82,'product-files/21-1.jpg','{\"filename\":\"21-1.jpg\",\"url\":\"product-files\\/21-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:39\",\"name\":\"21-1\",\"extension\":\"jpg\"}','2023-05-02 21:00:39','2023-05-02 21:00:39'),(34,90,'product-files/25.jpg','{\"filename\":\"25.jpg\",\"url\":\"product-files\\/25.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:39\",\"name\":\"25\",\"extension\":\"jpg\"}','2023-05-02 21:00:39','2023-05-02 21:00:39'),(35,90,'product-files/25-1.jpg','{\"filename\":\"25-1.jpg\",\"url\":\"product-files\\/25-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:39\",\"name\":\"25-1\",\"extension\":\"jpg\"}','2023-05-02 21:00:39','2023-05-02 21:00:39'),(36,91,'product-files/25.jpg','{\"filename\":\"25.jpg\",\"url\":\"product-files\\/25.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:39\",\"name\":\"25\",\"extension\":\"jpg\"}','2023-05-02 21:00:39','2023-05-02 21:00:39'),(37,91,'product-files/25-1.jpg','{\"filename\":\"25-1.jpg\",\"url\":\"product-files\\/25-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:39\",\"name\":\"25-1\",\"extension\":\"jpg\"}','2023-05-02 21:00:39','2023-05-02 21:00:39'),(38,101,'product-files/29.jpg','{\"filename\":\"29.jpg\",\"url\":\"product-files\\/29.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:39\",\"name\":\"29\",\"extension\":\"jpg\"}','2023-05-02 21:00:39','2023-05-02 21:00:39'),(39,101,'product-files/29-1.jpg','{\"filename\":\"29-1.jpg\",\"url\":\"product-files\\/29-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:39\",\"name\":\"29-1\",\"extension\":\"jpg\"}','2023-05-02 21:00:39','2023-05-02 21:00:39'),(40,102,'product-files/29.jpg','{\"filename\":\"29.jpg\",\"url\":\"product-files\\/29.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:39\",\"name\":\"29\",\"extension\":\"jpg\"}','2023-05-02 21:00:39','2023-05-02 21:00:39'),(41,102,'product-files/29-1.jpg','{\"filename\":\"29-1.jpg\",\"url\":\"product-files\\/29-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:39\",\"name\":\"29-1\",\"extension\":\"jpg\"}','2023-05-02 21:00:39','2023-05-02 21:00:39'),(42,103,'product-files/29.jpg','{\"filename\":\"29.jpg\",\"url\":\"product-files\\/29.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:39\",\"name\":\"29\",\"extension\":\"jpg\"}','2023-05-02 21:00:39','2023-05-02 21:00:39'),(43,103,'product-files/29-1.jpg','{\"filename\":\"29-1.jpg\",\"url\":\"product-files\\/29-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-05-03 04:00:39\",\"name\":\"29-1\",\"extension\":\"jpg\"}','2023-05-02 21:00:39','2023-05-02 21:00:39'); /*!40000 ALTER TABLE `ec_product_files` 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` bigint unsigned NOT NULL, `product_id` bigint unsigned NOT NULL, PRIMARY KEY (`product_label_id`,`product_id`), KEY `ec_product_label_products_product_label_id_index` (`product_label_id`), KEY `ec_product_label_products_product_id_index` (`product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_label_products` -- LOCK TABLES `ec_product_label_products` WRITE; /*!40000 ALTER TABLE `ec_product_label_products` DISABLE KEYS */; INSERT INTO `ec_product_label_products` VALUES (1,3),(1,6),(1,9),(1,12),(1,24),(1,27),(2,15),(2,30),(3,18),(3,21); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL, `color` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_labels` -- LOCK TABLES `ec_product_labels` WRITE; /*!40000 ALTER TABLE `ec_product_labels` DISABLE KEYS */; INSERT INTO `ec_product_labels` VALUES (1,'Hot','#ec2434','published','2023-05-02 21:00:32','2023-05-02 21:00:32'),(2,'New','#00c9a7','published','2023-05-02 21:00:32','2023-05-02 21:00:32'),(3,'Sale','#fe9931','published','2023-05-02 21:00:32','2023-05-02 21:00:32'); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_product_labels_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) 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` ( `from_product_id` bigint unsigned NOT NULL, `to_product_id` bigint unsigned NOT NULL, PRIMARY KEY (`from_product_id`,`to_product_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` bigint unsigned NOT NULL, `tag_id` bigint unsigned NOT NULL, PRIMARY KEY (`product_id`,`tag_id`), KEY `ec_product_tag_product_product_id_index` (`product_id`), KEY `ec_product_tag_product_tag_id_index` (`tag_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_tag_product` -- LOCK TABLES `ec_product_tag_product` WRITE; /*!40000 ALTER TABLE `ec_product_tag_product` DISABLE KEYS */; INSERT INTO `ec_product_tag_product` VALUES (1,2),(1,4),(2,3),(2,6),(3,2),(3,3),(3,4),(4,3),(4,4),(4,5),(5,2),(5,3),(5,4),(6,1),(6,3),(6,6),(7,1),(7,6),(8,1),(8,6),(9,6),(10,3),(10,6),(11,2),(11,5),(12,1),(12,3),(12,5),(13,1),(13,3),(13,6),(14,3),(14,6),(15,3),(15,4),(16,2),(16,3),(16,4),(17,4),(17,5),(18,1),(18,2),(18,3),(19,2),(19,3),(19,4),(20,2),(20,5),(20,6),(21,1),(21,3),(22,2),(22,5),(23,2),(23,5),(23,6),(24,1),(24,2),(24,4),(25,1),(25,2),(25,6),(26,6),(27,2),(27,5),(28,3),(28,4),(28,5),(29,1),(29,5),(30,2),(30,5),(30,6),(31,1),(31,4),(31,5); /*!40000 ALTER TABLE `ec_product_tag_product` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_tags` -- DROP TABLE IF EXISTS `ec_product_tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_tags` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_tags` -- LOCK TABLES `ec_product_tags` WRITE; /*!40000 ALTER TABLE `ec_product_tags` DISABLE KEYS */; INSERT INTO `ec_product_tags` VALUES (1,'Electronic',NULL,'published','2023-05-02 21:00:39','2023-05-02 21:00:39'),(2,'Mobile',NULL,'published','2023-05-02 21:00:39','2023-05-02 21:00:39'),(3,'Iphone',NULL,'published','2023-05-02 21:00:39','2023-05-02 21:00:39'),(4,'Printer',NULL,'published','2023-05-02 21:00:39','2023-05-02 21:00:39'),(5,'Office',NULL,'published','2023-05-02 21:00:39','2023-05-02 21:00:39'),(6,'IT',NULL,'published','2023-05-02 21:00:39','2023-05-02 21:00:39'); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_product_tags_id` bigint unsigned NOT NULL, `name` varchar(191) 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 */; /*!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` ( `from_product_id` bigint unsigned NOT NULL, `to_product_id` bigint unsigned NOT NULL, PRIMARY KEY (`from_product_id`,`to_product_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` bigint unsigned NOT NULL, `variation_id` bigint unsigned NOT NULL, PRIMARY KEY (`id`), KEY `ec_product_variation_items_attribute_id_variation_id_index` (`attribute_id`,`variation_id`) ) ENGINE=InnoDB AUTO_INCREMENT=155 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 (33,1,17),(35,1,18),(37,1,19),(87,1,44),(99,1,50),(113,1,57),(135,1,68),(141,1,71),(145,1,73),(1,2,1),(17,2,9),(21,2,11),(23,2,12),(43,2,22),(47,2,24),(53,2,27),(55,2,28),(67,2,34),(83,2,42),(93,2,47),(97,2,49),(103,2,52),(111,2,56),(133,2,67),(147,2,74),(153,2,77),(3,3,2),(5,3,3),(7,3,4),(9,3,5),(25,3,13),(27,3,14),(41,3,21),(45,3,23),(51,3,26),(71,3,36),(109,3,55),(115,3,58),(119,3,60),(129,3,65),(137,3,69),(139,3,70),(149,3,75),(11,4,6),(13,4,7),(15,4,8),(19,4,10),(49,4,25),(63,4,32),(65,4,33),(77,4,39),(81,4,41),(85,4,43),(143,4,72),(29,5,15),(31,5,16),(39,5,20),(57,5,29),(59,5,30),(61,5,31),(69,5,35),(73,5,37),(75,5,38),(79,5,40),(89,5,45),(91,5,46),(95,5,48),(101,5,51),(105,5,53),(107,5,54),(117,5,59),(121,5,61),(123,5,62),(125,5,63),(127,5,64),(131,5,66),(151,5,76),(42,6,21),(62,6,31),(64,6,32),(72,6,36),(76,6,38),(120,6,60),(134,6,67),(136,6,68),(4,7,2),(10,7,5),(32,7,16),(44,7,22),(48,7,24),(78,7,39),(84,7,42),(86,7,43),(90,7,45),(98,7,49),(102,7,51),(104,7,52),(124,7,62),(132,7,66),(138,7,69),(142,7,71),(148,7,74),(154,7,77),(6,8,3),(12,8,6),(14,8,7),(16,8,8),(20,8,10),(26,8,13),(38,8,19),(50,8,25),(60,8,30),(68,8,34),(70,8,35),(74,8,37),(122,8,61),(152,8,76),(2,9,1),(8,9,4),(18,9,9),(24,9,12),(28,9,14),(30,9,15),(34,9,17),(52,9,26),(58,9,29),(66,9,33),(80,9,40),(82,9,41),(88,9,44),(94,9,47),(112,9,56),(116,9,58),(128,9,64),(140,9,70),(150,9,75),(22,10,11),(36,10,18),(40,10,20),(46,10,23),(54,10,27),(56,10,28),(92,10,46),(96,10,48),(100,10,50),(106,10,53),(108,10,54),(110,10,55),(114,10,57),(118,10,59),(126,10,63),(130,10,65),(144,10,72),(146,10,73); /*!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` bigint unsigned DEFAULT NULL, `configurable_product_id` bigint unsigned NOT NULL, `is_default` tinyint NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `ec_product_variations_product_id_configurable_product_id_index` (`product_id`,`configurable_product_id`) ) ENGINE=InnoDB AUTO_INCREMENT=78 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_variations` -- LOCK TABLES `ec_product_variations` WRITE; /*!40000 ALTER TABLE `ec_product_variations` DISABLE KEYS */; INSERT INTO `ec_product_variations` VALUES (1,32,1,1),(2,33,1,0),(3,34,2,1),(4,35,2,0),(5,36,2,0),(6,37,2,0),(7,38,2,0),(8,39,3,1),(9,40,4,1),(10,41,4,0),(11,42,4,0),(12,43,4,0),(13,44,5,1),(14,45,5,0),(15,46,6,1),(16,47,6,0),(17,48,6,0),(18,49,7,1),(19,50,7,0),(20,51,7,0),(21,52,8,1),(22,53,8,0),(23,54,9,1),(24,55,9,0),(25,56,9,0),(26,57,10,1),(27,58,10,0),(28,59,11,1),(29,60,11,0),(30,61,12,1),(31,62,13,1),(32,63,14,1),(33,64,14,0),(34,65,14,0),(35,66,15,1),(36,67,15,0),(37,68,16,1),(38,69,16,0),(39,70,17,1),(40,71,17,0),(41,72,17,0),(42,73,18,1),(43,74,19,1),(44,75,19,0),(45,76,19,0),(46,77,19,0),(47,78,20,1),(48,79,20,0),(49,80,21,1),(50,81,21,0),(51,82,21,0),(52,83,22,1),(53,84,22,0),(54,85,22,0),(55,86,23,1),(56,87,23,0),(57,88,24,1),(58,89,24,0),(59,90,25,1),(60,91,25,0),(61,92,26,1),(62,93,26,0),(63,94,26,0),(64,95,26,0),(65,96,27,1),(66,97,27,0),(67,98,28,1),(68,99,28,0),(69,100,28,0),(70,101,29,1),(71,102,29,0),(72,103,29,0),(73,104,30,1),(74,105,30,0),(75,106,31,1),(76,107,31,0),(77,108,31,0); /*!40000 ALTER TABLE `ec_product_variations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_views` -- DROP TABLE IF EXISTS `ec_product_views`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_views` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `product_id` bigint unsigned NOT NULL, `views` int NOT NULL DEFAULT '1', `date` date NOT NULL DEFAULT '2023-05-03', PRIMARY KEY (`id`), UNIQUE KEY `ec_product_views_product_id_date_unique` (`product_id`,`date`), KEY `ec_product_views_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_views` -- LOCK TABLES `ec_product_views` WRITE; /*!40000 ALTER TABLE `ec_product_views` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_product_views` 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` ( `attribute_set_id` bigint unsigned NOT NULL, `product_id` bigint unsigned NOT NULL, `order` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`product_id`,`attribute_set_id`) ) ENGINE=InnoDB 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,0),(2,1,0),(1,2,0),(2,2,0),(1,3,0),(2,3,0),(1,4,0),(2,4,0),(1,5,0),(2,5,0),(1,6,0),(2,6,0),(1,7,0),(2,7,0),(1,8,0),(2,8,0),(1,9,0),(2,9,0),(1,10,0),(2,10,0),(1,11,0),(2,11,0),(1,12,0),(2,12,0),(1,13,0),(2,13,0),(1,14,0),(2,14,0),(1,15,0),(2,15,0),(1,16,0),(2,16,0),(1,17,0),(2,17,0),(1,18,0),(2,18,0),(1,19,0),(2,19,0),(1,20,0),(2,20,0),(1,21,0),(2,21,0),(1,22,0),(2,22,0),(1,23,0),(2,23,0),(1,24,0),(2,24,0),(1,25,0),(2,25,0),(1,26,0),(2,26,0),(1,27,0),(2,27,0),(1,28,0),(2,28,0),(1,29,0),(2,29,0),(1,30,0),(2,30,0),(1,31,0),(2,31,0); /*!40000 ALTER TABLE `ec_product_with_attribute_set` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_products` -- DROP TABLE IF EXISTS `ec_products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_products` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `content` longtext COLLATE utf8mb4_unicode_ci, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `images` text COLLATE utf8mb4_unicode_ci, `sku` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order` int 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` bigint 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, `tax_id` bigint unsigned DEFAULT NULL, `views` bigint NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `stock_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT 'in_stock', `created_by_id` bigint unsigned DEFAULT '0', `created_by_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User', `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_type` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT 'physical', `barcode` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cost_per_item` double DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ec_products_barcode_unique` (`barcode`), KEY `ec_products_brand_id_status_is_variation_created_at_index` (`brand_id`,`status`,`is_variation`,`created_at`), KEY `ec_products_sale_type_index` (`sale_type`), KEY `ec_products_start_date_index` (`start_date`), KEY `ec_products_end_date_index` (`end_date`), KEY `ec_products_sale_price_index` (`sale_price`), KEY `ec_products_is_variation_index` (`is_variation`) ) ENGINE=InnoDB AUTO_INCREMENT=109 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_products` -- LOCK TABLES `ec_products` WRITE; /*!40000 ALTER TABLE `ec_products` DISABLE KEYS */; INSERT INTO `ec_products` VALUES (1,'Smart Home Speaker (Digital)','<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’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/1.jpg\",\"products\\/1-1.jpg\",\"products\\/1-2.jpg\",\"products\\/1-3.jpg\"]','HS-132-A0',0,14,0,1,1,2,0,0,494,NULL,NULL,NULL,20.00,10.00,15.00,876.00,1,73506,'2023-05-02 21:00:37','2023-05-02 21:00:37','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(2,'Headphone Ultra Bass','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ 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 & 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-170-A0',0,18,0,1,1,1,0,0,495,NULL,NULL,NULL,12.00,18.00,16.00,788.00,1,92664,'2023-05-02 21:00:37','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(3,'Boxed - Bluetooth Headphone','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ 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 & 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-121-A0',0,15,0,1,1,6,0,0,277,NULL,NULL,NULL,14.00,13.00,11.00,655.00,1,187904,'2023-05-02 21:00:37','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(4,'Chikie - Bluetooth Speaker','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/4.jpg\",\"products\\/4-1.jpg\",\"products\\/4-2.jpg\",\"products\\/4-3.jpg\"]','HS-182-A0',0,16,0,1,1,4,0,0,73,57.67,NULL,NULL,15.00,17.00,16.00,695.00,1,17640,'2023-05-02 21:00:37','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(5,'Camera Hikvision HK-35VS8 (Digital)','<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’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/5.jpg\",\"products\\/5-1.jpg\",\"products\\/5-2.jpg\",\"products\\/5-3.jpg\"]','HS-185-A0',0,17,0,1,1,7,0,0,47,NULL,NULL,NULL,18.00,20.00,10.00,787.00,1,187642,'2023-05-02 21:00:37','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(6,'Camera Samsung SS-24','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ 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 & 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-192-A0',0,15,0,1,1,4,0,0,59,NULL,NULL,NULL,12.00,15.00,15.00,830.00,1,106533,'2023-05-02 21:00:37','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(7,'Leather Watch Band','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/7.jpg\",\"products\\/7-1.jpg\"]','HS-158-A0',0,20,0,1,1,1,0,0,118,NULL,NULL,NULL,17.00,20.00,20.00,651.00,1,49512,'2023-05-02 21:00:37','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(8,'Apple iPhone 13 Plus','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/8.jpg\",\"products\\/8-1.jpg\"]','HS-108-A0',0,18,0,1,1,2,0,0,122,92.72,NULL,NULL,10.00,18.00,19.00,738.00,1,38856,'2023-05-02 21:00:37','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(9,'Macbook Pro 2015 (Digital)','<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’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/9.jpg\",\"products\\/9-1.jpg\"]','HS-118-A0',0,11,0,1,1,7,0,0,116,NULL,NULL,NULL,18.00,17.00,15.00,593.00,1,146728,'2023-05-02 21:00:37','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(10,'Macbook Air 12 inch','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/10.jpg\",\"products\\/10-1.jpg\"]','HS-158-A0',0,10,0,1,1,6,0,0,492,NULL,NULL,NULL,14.00,16.00,13.00,894.00,1,38540,'2023-05-02 21:00:37','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(11,'Apple Watch Serial 7','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/11.jpg\",\"products\\/11-1.jpg\"]','HS-172-A0',0,19,0,1,1,3,0,0,112,NULL,NULL,NULL,19.00,10.00,19.00,536.00,1,28370,'2023-05-02 21:00:37','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(12,'Macbook Pro 13 inch','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/12.jpg\",\"products\\/12-1.jpg\"]','HS-156-A0',0,10,0,1,1,5,0,0,113,81.36,NULL,NULL,12.00,19.00,15.00,857.00,1,157450,'2023-05-02 21:00:37','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(13,'Apple Keyboard (Digital)','<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’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/13.jpg\",\"products\\/13-1.jpg\"]','HS-146-A0',0,14,0,1,1,3,0,0,113,NULL,NULL,NULL,20.00,20.00,16.00,647.00,1,179949,'2023-05-02 21:00:37','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(14,'MacSafe 80W','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/14.jpg\",\"products\\/14-1.jpg\"]','HS-185-A0',0,16,0,1,1,1,0,0,130,NULL,NULL,NULL,14.00,19.00,15.00,891.00,1,168821,'2023-05-02 21:00:37','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(15,'Hand playstation','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/15.jpg\",\"products\\/15-1.jpg\"]','HS-101-A0',0,18,0,1,1,5,0,0,124,NULL,NULL,NULL,11.00,20.00,19.00,898.00,1,13130,'2023-05-02 21:00:37','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(16,'Apple Airpods Serial 3','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/16.jpg\"]','HS-190-A0',0,15,0,1,1,2,0,0,116,103.24,NULL,NULL,15.00,11.00,11.00,503.00,1,70559,'2023-05-02 21:00:37','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(17,'Cool Smart Watches (Digital)','<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’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/17.jpg\"]','HS-179-A0',0,15,0,1,1,3,0,0,111,NULL,NULL,NULL,12.00,18.00,19.00,723.00,1,53798,'2023-05-02 21:00:37','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(18,'Black Smart Watches','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/18.jpg\",\"products\\/18-1.jpg\",\"products\\/18-2.jpg\"]','HS-186-A0',0,10,0,1,1,6,0,0,120,NULL,NULL,NULL,18.00,15.00,15.00,504.00,1,128789,'2023-05-02 21:00:37','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(19,'Leather Watch Band Serial 3','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/19.jpg\",\"products\\/19-1.jpg\"]','HS-172-A0',0,18,0,1,1,2,0,0,116,NULL,NULL,NULL,10.00,19.00,10.00,540.00,1,117444,'2023-05-02 21:00:37','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(20,'Macbook Pro 2015 13 inch','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/20.jpg\",\"products\\/20-1.jpg\"]','HS-118-A0',0,20,0,1,1,7,0,0,115,92,NULL,NULL,20.00,17.00,16.00,501.00,1,106474,'2023-05-02 21:00:37','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(21,'Historic Alarm Clock (Digital)','<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’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/21.jpg\",\"products\\/21-1.jpg\"]','HS-158-A0',0,11,0,1,1,2,0,0,112,NULL,NULL,NULL,11.00,17.00,15.00,720.00,1,29331,'2023-05-02 21:00:37','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(22,'Black Glasses','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/22.jpg\",\"products\\/22-1.jpg\"]','HS-152-A0',0,18,0,1,1,7,0,0,127,NULL,NULL,NULL,15.00,11.00,17.00,893.00,1,4774,'2023-05-02 21:00:37','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(23,'Phillips Mouse','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/23.jpg\",\"products\\/23-1.jpg\"]','HS-170-A0',0,12,0,1,1,4,0,0,121,NULL,NULL,NULL,18.00,15.00,11.00,804.00,1,5437,'2023-05-02 21:00:37','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(24,'Gaming Keyboard','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/24.jpg\",\"products\\/24-1.jpg\"]','HS-164-A0',0,15,0,1,1,7,0,0,111,79.92,NULL,NULL,13.00,16.00,19.00,618.00,1,142430,'2023-05-02 21:00:37','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(25,'Dual Camera 20MP (Digital)','<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’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/25.jpg\",\"products\\/25-1.jpg\"]','HS-134-A0',0,13,0,1,0,5,0,0,80.25,NULL,NULL,NULL,11.00,16.00,16.00,680.00,1,98405,'2023-05-02 21:00:37','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(26,'Smart Watches','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/26.jpg\",\"products\\/26-1.jpg\",\"products\\/26-2.jpg\"]','HS-166-A0',0,10,0,1,0,4,0,0,40.5,NULL,NULL,NULL,18.00,12.00,17.00,695.00,1,198419,'2023-05-02 21:00:37','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(27,'Beat Headphone','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/27.jpg\",\"products\\/27-1.jpg\"]','HS-150-A0',0,15,0,1,0,6,0,0,20,NULL,NULL,NULL,16.00,12.00,15.00,861.00,1,37573,'2023-05-02 21:00:37','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(28,'Red & Black Headphone','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/28.jpg\",\"products\\/28-1.jpg\"]','HS-188-A0',0,15,0,1,0,4,0,0,53,37.63,NULL,NULL,18.00,14.00,19.00,729.00,1,124461,'2023-05-02 21:00:37','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(29,'Audio Equipment (Digital)','<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’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/29.jpg\",\"products\\/29-1.jpg\"]','HS-128-A0',0,15,0,1,0,3,0,0,59,NULL,NULL,NULL,17.00,14.00,14.00,575.00,1,146362,'2023-05-02 21:00:37','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(30,'Smart Televisions','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/30.jpg\",\"products\\/30-1.jpg\"]','HS-162-A0',0,20,0,1,0,6,0,0,125,NULL,NULL,NULL,15.00,17.00,10.00,728.00,1,82325,'2023-05-02 21:00:37','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(31,'Samsung Smart TV','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline.</p>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ 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 & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/31.jpg\",\"products\\/31-1.jpg\"]','HS-125-A0',0,17,0,1,0,6,0,0,56,NULL,NULL,NULL,10.00,11.00,10.00,591.00,1,32975,'2023-05-02 21:00:37','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(32,'Smart Home Speaker (Digital)',NULL,NULL,'published','[\"products\\/1.jpg\"]','HS-132-A0',0,14,0,1,0,2,1,0,494,NULL,NULL,NULL,20.00,10.00,15.00,876.00,NULL,0,'2023-05-02 21:00:37','2023-05-02 21:00:37','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(33,'Smart Home Speaker (Digital)',NULL,NULL,'published','[\"products\\/1-1.jpg\"]','HS-132-A0-A1',0,14,0,1,0,2,1,0,494,NULL,NULL,NULL,20.00,10.00,15.00,876.00,NULL,0,'2023-05-02 21:00:37','2023-05-02 21:00:37','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(34,'Headphone Ultra Bass',NULL,NULL,'published','[\"products\\/2.jpg\"]','HS-170-A0',0,18,0,1,0,1,1,0,495,NULL,NULL,NULL,12.00,18.00,16.00,788.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(35,'Headphone Ultra Bass',NULL,NULL,'published','[\"products\\/2-1.jpg\"]','HS-170-A0-A1',0,18,0,1,0,1,1,0,495,NULL,NULL,NULL,12.00,18.00,16.00,788.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(36,'Headphone Ultra Bass',NULL,NULL,'published','[\"products\\/2-2.jpg\"]','HS-170-A0-A2',0,18,0,1,0,1,1,0,495,NULL,NULL,NULL,12.00,18.00,16.00,788.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(37,'Headphone Ultra Bass',NULL,NULL,'published','[\"products\\/2-3.jpg\"]','HS-170-A0-A3',0,18,0,1,0,1,1,0,495,NULL,NULL,NULL,12.00,18.00,16.00,788.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(38,'Headphone Ultra Bass',NULL,NULL,'published','[\"products\\/2.jpg\"]','HS-170-A0-A4',0,18,0,1,0,1,1,0,495,NULL,NULL,NULL,12.00,18.00,16.00,788.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(39,'Boxed - Bluetooth Headphone',NULL,NULL,'published','[\"products\\/3.jpg\"]','HS-121-A0',0,15,0,1,0,6,1,0,277,NULL,NULL,NULL,14.00,13.00,11.00,655.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(40,'Chikie - Bluetooth Speaker',NULL,NULL,'published','[\"products\\/4.jpg\"]','HS-182-A0',0,16,0,1,0,4,1,0,73,57.67,NULL,NULL,15.00,17.00,16.00,695.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(41,'Chikie - Bluetooth Speaker',NULL,NULL,'published','[\"products\\/4-1.jpg\"]','HS-182-A0-A1',0,16,0,1,0,4,1,0,73,60.59,NULL,NULL,15.00,17.00,16.00,695.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(42,'Chikie - Bluetooth Speaker',NULL,NULL,'published','[\"products\\/4-2.jpg\"]','HS-182-A0-A2',0,16,0,1,0,4,1,0,73,60.59,NULL,NULL,15.00,17.00,16.00,695.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(43,'Chikie - Bluetooth Speaker',NULL,NULL,'published','[\"products\\/4-3.jpg\"]','HS-182-A0-A3',0,16,0,1,0,4,1,0,73,51.1,NULL,NULL,15.00,17.00,16.00,695.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(44,'Camera Hikvision HK-35VS8 (Digital)',NULL,NULL,'published','[\"products\\/5.jpg\"]','HS-185-A0',0,17,0,1,0,7,1,0,47,NULL,NULL,NULL,18.00,20.00,10.00,787.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(45,'Camera Hikvision HK-35VS8 (Digital)',NULL,NULL,'published','[\"products\\/5-1.jpg\"]','HS-185-A0-A1',0,17,0,1,0,7,1,0,47,NULL,NULL,NULL,18.00,20.00,10.00,787.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(46,'Camera Samsung SS-24',NULL,NULL,'published','[\"products\\/6.jpg\"]','HS-192-A0',0,15,0,1,0,4,1,0,59,NULL,NULL,NULL,12.00,15.00,15.00,830.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(47,'Camera Samsung SS-24',NULL,NULL,'published','[\"products\\/6-1.jpg\"]','HS-192-A0-A1',0,15,0,1,0,4,1,0,59,NULL,NULL,NULL,12.00,15.00,15.00,830.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(48,'Camera Samsung SS-24',NULL,NULL,'published','[\"products\\/6.jpg\"]','HS-192-A0-A2',0,15,0,1,0,4,1,0,59,NULL,NULL,NULL,12.00,15.00,15.00,830.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(49,'Leather Watch Band',NULL,NULL,'published','[\"products\\/7.jpg\"]','HS-158-A0',0,20,0,1,0,1,1,0,118,NULL,NULL,NULL,17.00,20.00,20.00,651.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(50,'Leather Watch Band',NULL,NULL,'published','[\"products\\/7-1.jpg\"]','HS-158-A0-A1',0,20,0,1,0,1,1,0,118,NULL,NULL,NULL,17.00,20.00,20.00,651.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(51,'Leather Watch Band',NULL,NULL,'published','[\"products\\/7.jpg\"]','HS-158-A0-A2',0,20,0,1,0,1,1,0,118,NULL,NULL,NULL,17.00,20.00,20.00,651.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(52,'Apple iPhone 13 Plus',NULL,NULL,'published','[\"products\\/8.jpg\"]','HS-108-A0',0,18,0,1,0,2,1,0,122,92.72,NULL,NULL,10.00,18.00,19.00,738.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(53,'Apple iPhone 13 Plus',NULL,NULL,'published','[\"products\\/8-1.jpg\"]','HS-108-A0-A1',0,18,0,1,0,2,1,0,122,106.14,NULL,NULL,10.00,18.00,19.00,738.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(54,'Macbook Pro 2015 (Digital)',NULL,NULL,'published','[\"products\\/9.jpg\"]','HS-118-A0',0,11,0,1,0,7,1,0,116,NULL,NULL,NULL,18.00,17.00,15.00,593.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(55,'Macbook Pro 2015 (Digital)',NULL,NULL,'published','[\"products\\/9-1.jpg\"]','HS-118-A0-A1',0,11,0,1,0,7,1,0,116,NULL,NULL,NULL,18.00,17.00,15.00,593.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(56,'Macbook Pro 2015 (Digital)',NULL,NULL,'published','[\"products\\/9.jpg\"]','HS-118-A0-A2',0,11,0,1,0,7,1,0,116,NULL,NULL,NULL,18.00,17.00,15.00,593.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(57,'Macbook Air 12 inch',NULL,NULL,'published','[\"products\\/10.jpg\"]','HS-158-A0',0,10,0,1,0,6,1,0,492,NULL,NULL,NULL,14.00,16.00,13.00,894.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(58,'Macbook Air 12 inch',NULL,NULL,'published','[\"products\\/10-1.jpg\"]','HS-158-A0-A1',0,10,0,1,0,6,1,0,492,NULL,NULL,NULL,14.00,16.00,13.00,894.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(59,'Apple Watch Serial 7',NULL,NULL,'published','[\"products\\/11.jpg\"]','HS-172-A0',0,19,0,1,0,3,1,0,112,NULL,NULL,NULL,19.00,10.00,19.00,536.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(60,'Apple Watch Serial 7',NULL,NULL,'published','[\"products\\/11-1.jpg\"]','HS-172-A0-A1',0,19,0,1,0,3,1,0,112,NULL,NULL,NULL,19.00,10.00,19.00,536.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(61,'Macbook Pro 13 inch',NULL,NULL,'published','[\"products\\/12.jpg\"]','HS-156-A0',0,10,0,1,0,5,1,0,113,81.36,NULL,NULL,12.00,19.00,15.00,857.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(62,'Apple Keyboard (Digital)',NULL,NULL,'published','[\"products\\/13.jpg\"]','HS-146-A0',0,14,0,1,0,3,1,0,113,NULL,NULL,NULL,20.00,20.00,16.00,647.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(63,'MacSafe 80W',NULL,NULL,'published','[\"products\\/14.jpg\"]','HS-185-A0',0,16,0,1,0,1,1,0,130,NULL,NULL,NULL,14.00,19.00,15.00,891.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(64,'MacSafe 80W',NULL,NULL,'published','[\"products\\/14-1.jpg\"]','HS-185-A0-A1',0,16,0,1,0,1,1,0,130,NULL,NULL,NULL,14.00,19.00,15.00,891.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(65,'MacSafe 80W',NULL,NULL,'published','[\"products\\/14.jpg\"]','HS-185-A0-A2',0,16,0,1,0,1,1,0,130,NULL,NULL,NULL,14.00,19.00,15.00,891.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(66,'Hand playstation',NULL,NULL,'published','[\"products\\/15.jpg\"]','HS-101-A0',0,18,0,1,0,5,1,0,124,NULL,NULL,NULL,11.00,20.00,19.00,898.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(67,'Hand playstation',NULL,NULL,'published','[\"products\\/15-1.jpg\"]','HS-101-A0-A1',0,18,0,1,0,5,1,0,124,NULL,NULL,NULL,11.00,20.00,19.00,898.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(68,'Apple Airpods Serial 3',NULL,NULL,'published','[\"products\\/16.jpg\"]','HS-190-A0',0,15,0,1,0,2,1,0,116,103.24,NULL,NULL,15.00,11.00,11.00,503.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(69,'Apple Airpods Serial 3',NULL,NULL,'published','[\"products\\/16.jpg\"]','HS-190-A0-A1',0,15,0,1,0,2,1,0,116,103.24,NULL,NULL,15.00,11.00,11.00,503.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(70,'Cool Smart Watches (Digital)',NULL,NULL,'published','[\"products\\/17.jpg\"]','HS-179-A0',0,15,0,1,0,3,1,0,111,NULL,NULL,NULL,12.00,18.00,19.00,723.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(71,'Cool Smart Watches (Digital)',NULL,NULL,'published','[\"products\\/17.jpg\"]','HS-179-A0-A1',0,15,0,1,0,3,1,0,111,NULL,NULL,NULL,12.00,18.00,19.00,723.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(72,'Cool Smart Watches (Digital)',NULL,NULL,'published','[\"products\\/17.jpg\"]','HS-179-A0-A2',0,15,0,1,0,3,1,0,111,NULL,NULL,NULL,12.00,18.00,19.00,723.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(73,'Black Smart Watches',NULL,NULL,'published','[\"products\\/18.jpg\"]','HS-186-A0',0,10,0,1,0,6,1,0,120,NULL,NULL,NULL,18.00,15.00,15.00,504.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(74,'Leather Watch Band Serial 3',NULL,NULL,'published','[\"products\\/19.jpg\"]','HS-172-A0',0,18,0,1,0,2,1,0,116,NULL,NULL,NULL,10.00,19.00,10.00,540.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(75,'Leather Watch Band Serial 3',NULL,NULL,'published','[\"products\\/19-1.jpg\"]','HS-172-A0-A1',0,18,0,1,0,2,1,0,116,NULL,NULL,NULL,10.00,19.00,10.00,540.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(76,'Leather Watch Band Serial 3',NULL,NULL,'published','[\"products\\/19.jpg\"]','HS-172-A0-A2',0,18,0,1,0,2,1,0,116,NULL,NULL,NULL,10.00,19.00,10.00,540.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(77,'Leather Watch Band Serial 3',NULL,NULL,'published','[\"products\\/19.jpg\"]','HS-172-A0-A3',0,18,0,1,0,2,1,0,116,NULL,NULL,NULL,10.00,19.00,10.00,540.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(78,'Macbook Pro 2015 13 inch',NULL,NULL,'published','[\"products\\/20.jpg\"]','HS-118-A0',0,20,0,1,0,7,1,0,115,92,NULL,NULL,20.00,17.00,16.00,501.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(79,'Macbook Pro 2015 13 inch',NULL,NULL,'published','[\"products\\/20-1.jpg\"]','HS-118-A0-A1',0,20,0,1,0,7,1,0,115,83.95,NULL,NULL,20.00,17.00,16.00,501.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(80,'Historic Alarm Clock (Digital)',NULL,NULL,'published','[\"products\\/21.jpg\"]','HS-158-A0',0,11,0,1,0,2,1,0,112,NULL,NULL,NULL,11.00,17.00,15.00,720.00,NULL,0,'2023-05-02 21:00:38','2023-05-02 21:00:38','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(81,'Historic Alarm Clock (Digital)',NULL,NULL,'published','[\"products\\/21-1.jpg\"]','HS-158-A0-A1',0,11,0,1,0,2,1,0,112,NULL,NULL,NULL,11.00,17.00,15.00,720.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(82,'Historic Alarm Clock (Digital)',NULL,NULL,'published','[\"products\\/21.jpg\"]','HS-158-A0-A2',0,11,0,1,0,2,1,0,112,NULL,NULL,NULL,11.00,17.00,15.00,720.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(83,'Black Glasses',NULL,NULL,'published','[\"products\\/22.jpg\"]','HS-152-A0',0,18,0,1,0,7,1,0,127,NULL,NULL,NULL,15.00,11.00,17.00,893.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(84,'Black Glasses',NULL,NULL,'published','[\"products\\/22-1.jpg\"]','HS-152-A0-A1',0,18,0,1,0,7,1,0,127,NULL,NULL,NULL,15.00,11.00,17.00,893.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(85,'Black Glasses',NULL,NULL,'published','[\"products\\/22.jpg\"]','HS-152-A0-A2',0,18,0,1,0,7,1,0,127,NULL,NULL,NULL,15.00,11.00,17.00,893.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(86,'Phillips Mouse',NULL,NULL,'published','[\"products\\/23.jpg\"]','HS-170-A0',0,12,0,1,0,4,1,0,121,NULL,NULL,NULL,18.00,15.00,11.00,804.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(87,'Phillips Mouse',NULL,NULL,'published','[\"products\\/23-1.jpg\"]','HS-170-A0-A1',0,12,0,1,0,4,1,0,121,NULL,NULL,NULL,18.00,15.00,11.00,804.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(88,'Gaming Keyboard',NULL,NULL,'published','[\"products\\/24.jpg\"]','HS-164-A0',0,15,0,1,0,7,1,0,111,79.92,NULL,NULL,13.00,16.00,19.00,618.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(89,'Gaming Keyboard',NULL,NULL,'published','[\"products\\/24-1.jpg\"]','HS-164-A0-A1',0,15,0,1,0,7,1,0,111,93.24,NULL,NULL,13.00,16.00,19.00,618.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(90,'Dual Camera 20MP (Digital)',NULL,NULL,'published','[\"products\\/25.jpg\"]','HS-134-A0',0,13,0,1,0,5,1,0,80.25,NULL,NULL,NULL,11.00,16.00,16.00,680.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(91,'Dual Camera 20MP (Digital)',NULL,NULL,'published','[\"products\\/25-1.jpg\"]','HS-134-A0-A1',0,13,0,1,0,5,1,0,80.25,NULL,NULL,NULL,11.00,16.00,16.00,680.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(92,'Smart Watches',NULL,NULL,'published','[\"products\\/26.jpg\"]','HS-166-A0',0,10,0,1,0,4,1,0,40.5,NULL,NULL,NULL,18.00,12.00,17.00,695.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(93,'Smart Watches',NULL,NULL,'published','[\"products\\/26-1.jpg\"]','HS-166-A0-A1',0,10,0,1,0,4,1,0,40.5,NULL,NULL,NULL,18.00,12.00,17.00,695.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(94,'Smart Watches',NULL,NULL,'published','[\"products\\/26-2.jpg\"]','HS-166-A0-A2',0,10,0,1,0,4,1,0,40.5,NULL,NULL,NULL,18.00,12.00,17.00,695.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(95,'Smart Watches',NULL,NULL,'published','[\"products\\/26.jpg\"]','HS-166-A0-A3',0,10,0,1,0,4,1,0,40.5,NULL,NULL,NULL,18.00,12.00,17.00,695.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(96,'Beat Headphone',NULL,NULL,'published','[\"products\\/27.jpg\"]','HS-150-A0',0,15,0,1,0,6,1,0,20,NULL,NULL,NULL,16.00,12.00,15.00,861.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(97,'Beat Headphone',NULL,NULL,'published','[\"products\\/27-1.jpg\"]','HS-150-A0-A1',0,15,0,1,0,6,1,0,20,NULL,NULL,NULL,16.00,12.00,15.00,861.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(98,'Red & Black Headphone',NULL,NULL,'published','[\"products\\/28.jpg\"]','HS-188-A0',0,15,0,1,0,4,1,0,53,37.63,NULL,NULL,18.00,14.00,19.00,729.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(99,'Red & Black Headphone',NULL,NULL,'published','[\"products\\/28-1.jpg\"]','HS-188-A0-A1',0,15,0,1,0,4,1,0,53,43.99,NULL,NULL,18.00,14.00,19.00,729.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(100,'Red & Black Headphone',NULL,NULL,'published','[\"products\\/28.jpg\"]','HS-188-A0-A2',0,15,0,1,0,4,1,0,53,46.64,NULL,NULL,18.00,14.00,19.00,729.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(101,'Audio Equipment (Digital)',NULL,NULL,'published','[\"products\\/29.jpg\"]','HS-128-A0',0,15,0,1,0,3,1,0,59,NULL,NULL,NULL,17.00,14.00,14.00,575.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(102,'Audio Equipment (Digital)',NULL,NULL,'published','[\"products\\/29-1.jpg\"]','HS-128-A0-A1',0,15,0,1,0,3,1,0,59,NULL,NULL,NULL,17.00,14.00,14.00,575.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(103,'Audio Equipment (Digital)',NULL,NULL,'published','[\"products\\/29.jpg\"]','HS-128-A0-A2',0,15,0,1,0,3,1,0,59,NULL,NULL,NULL,17.00,14.00,14.00,575.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(104,'Smart Televisions',NULL,NULL,'published','[\"products\\/30.jpg\"]','HS-162-A0',0,20,0,1,0,6,1,0,125,NULL,NULL,NULL,15.00,17.00,10.00,728.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(105,'Smart Televisions',NULL,NULL,'published','[\"products\\/30-1.jpg\"]','HS-162-A0-A1',0,20,0,1,0,6,1,0,125,NULL,NULL,NULL,15.00,17.00,10.00,728.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(106,'Samsung Smart TV',NULL,NULL,'published','[\"products\\/31.jpg\"]','HS-125-A0',0,17,0,1,0,6,1,0,56,NULL,NULL,NULL,10.00,11.00,10.00,591.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(107,'Samsung Smart TV',NULL,NULL,'published','[\"products\\/31-1.jpg\"]','HS-125-A0-A1',0,17,0,1,0,6,1,0,56,NULL,NULL,NULL,10.00,11.00,10.00,591.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(108,'Samsung Smart TV',NULL,NULL,'published','[\"products\\/31.jpg\"]','HS-125-A0-A2',0,17,0,1,0,6,1,0,56,NULL,NULL,NULL,10.00,11.00,10.00,591.00,NULL,0,'2023-05-02 21:00:39','2023-05-02 21:00:39','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,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) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_products_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci, `content` text 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,'Loa thông minh',NULL,NULL),('vi',2,'Tai nghe Ultra Bass',NULL,NULL),('vi',3,'Đóng hộp - Tai nghe Bluetooth',NULL,NULL),('vi',4,'Chikie - Loa Bluetooth',NULL,NULL),('vi',5,'Camera Hikvision HK-35VS8',NULL,NULL),('vi',6,'Camera Samsung SS-24',NULL,NULL),('vi',7,'Dây đeo đồng hồ bằng da',NULL,NULL),('vi',8,'Apple iPhone 13 Plus',NULL,NULL),('vi',9,'Macbook Pro 2015',NULL,NULL),('vi',10,'Macbook Air 12 inch',NULL,NULL),('vi',11,'Apple Watch Serial 7',NULL,NULL),('vi',12,'Macbook Pro 13 inch',NULL,NULL),('vi',13,'Bàn phím Apple',NULL,NULL),('vi',14,'MacSafe 80W',NULL,NULL),('vi',15,'Máy chơi game cầm tay',NULL,NULL),('vi',16,'Tai nghe Apple Airpods Serial 3',NULL,NULL),('vi',17,'Đồng hồ thông minh',NULL,NULL),('vi',18,'Đồng hồ thông minh màu đen',NULL,NULL),('vi',19,'Dây đeo đồng hồ dây da Serial 3',NULL,NULL),('vi',20,'Macbook Pro 2015 13 inch',NULL,NULL),('vi',21,'Đồng hồ báo thức cổ điển',NULL,NULL),('vi',22,'Kính đen',NULL,NULL),('vi',23,'Chuột máy tính Phillips',NULL,NULL),('vi',24,'Bàn phím Trò chơi',NULL,NULL),('vi',25,'Camera kép 20MP',NULL,NULL),('vi',26,'Đồng hồ thông minh',NULL,NULL),('vi',27,'Tai nghe Best',NULL,NULL),('vi',28,'Tai nghe Đỏ & Đen',NULL,NULL),('vi',29,'Thiết bị âm thanh',NULL,NULL),('vi',30,'Tivi thông minh',NULL,NULL),('vi',31,'Tivi thông minh Samsung',NULL,NULL),('vi',32,'Loa thông minh',NULL,NULL),('vi',33,'Loa thông minh',NULL,NULL),('vi',34,'Tai nghe Ultra Bass',NULL,NULL),('vi',35,'Tai nghe Ultra Bass',NULL,NULL),('vi',36,'Tai nghe Ultra Bass',NULL,NULL),('vi',37,'Tai nghe Ultra Bass',NULL,NULL),('vi',38,'Tai nghe Ultra Bass',NULL,NULL),('vi',39,'Đóng hộp - Tai nghe Bluetooth',NULL,NULL),('vi',40,'Chikie - Loa Bluetooth',NULL,NULL),('vi',41,'Chikie - Loa Bluetooth',NULL,NULL),('vi',42,'Chikie - Loa Bluetooth',NULL,NULL),('vi',43,'Chikie - Loa Bluetooth',NULL,NULL),('vi',44,'Camera Hikvision HK-35VS8',NULL,NULL),('vi',45,'Camera Hikvision HK-35VS8',NULL,NULL),('vi',46,'Camera Samsung SS-24',NULL,NULL),('vi',47,'Camera Samsung SS-24',NULL,NULL),('vi',48,'Camera Samsung SS-24',NULL,NULL),('vi',49,'Dây đeo đồng hồ bằng da',NULL,NULL),('vi',50,'Dây đeo đồng hồ bằng da',NULL,NULL),('vi',51,'Dây đeo đồng hồ bằng da',NULL,NULL),('vi',52,'Apple iPhone 13 Plus',NULL,NULL),('vi',53,'Apple iPhone 13 Plus',NULL,NULL),('vi',54,'Macbook Pro 2015',NULL,NULL),('vi',55,'Macbook Pro 2015',NULL,NULL),('vi',56,'Macbook Pro 2015',NULL,NULL),('vi',57,'Macbook Air 12 inch',NULL,NULL),('vi',58,'Macbook Air 12 inch',NULL,NULL),('vi',59,'Apple Watch Serial 7',NULL,NULL),('vi',60,'Apple Watch Serial 7',NULL,NULL),('vi',61,'Macbook Pro 13 inch',NULL,NULL),('vi',62,'Bàn phím Apple',NULL,NULL),('vi',63,'MacSafe 80W',NULL,NULL),('vi',64,'MacSafe 80W',NULL,NULL),('vi',65,'MacSafe 80W',NULL,NULL),('vi',66,'Máy chơi game cầm tay',NULL,NULL),('vi',67,'Máy chơi game cầm tay',NULL,NULL),('vi',68,'Tai nghe Apple Airpods Serial 3',NULL,NULL),('vi',69,'Tai nghe Apple Airpods Serial 3',NULL,NULL),('vi',70,'Đồng hồ thông minh',NULL,NULL),('vi',71,'Đồng hồ thông minh',NULL,NULL),('vi',72,'Đồng hồ thông minh',NULL,NULL),('vi',73,'Đồng hồ thông minh màu đen',NULL,NULL),('vi',74,'Dây đeo đồng hồ dây da Serial 3',NULL,NULL),('vi',75,'Dây đeo đồng hồ dây da Serial 3',NULL,NULL),('vi',76,'Dây đeo đồng hồ dây da Serial 3',NULL,NULL),('vi',77,'Dây đeo đồng hồ dây da Serial 3',NULL,NULL),('vi',78,'Macbook Pro 2015 13 inch',NULL,NULL),('vi',79,'Macbook Pro 2015 13 inch',NULL,NULL),('vi',80,'Đồng hồ báo thức cổ điển',NULL,NULL),('vi',81,'Đồng hồ báo thức cổ điển',NULL,NULL),('vi',82,'Đồng hồ báo thức cổ điển',NULL,NULL),('vi',83,'Kính đen',NULL,NULL),('vi',84,'Kính đen',NULL,NULL),('vi',85,'Kính đen',NULL,NULL),('vi',86,'Chuột máy tính Phillips',NULL,NULL),('vi',87,'Chuột máy tính Phillips',NULL,NULL),('vi',88,'Bàn phím Trò chơi',NULL,NULL),('vi',89,'Bàn phím Trò chơi',NULL,NULL),('vi',90,'Camera kép 20MP',NULL,NULL),('vi',91,'Camera kép 20MP',NULL,NULL),('vi',92,'Đồng hồ thông minh',NULL,NULL),('vi',93,'Đồng hồ thông minh',NULL,NULL),('vi',94,'Đồng hồ thông minh',NULL,NULL),('vi',95,'Đồng hồ thông minh',NULL,NULL),('vi',96,'Tai nghe Best',NULL,NULL),('vi',97,'Tai nghe Best',NULL,NULL),('vi',98,'Tai nghe Đỏ & Đen',NULL,NULL),('vi',99,'Tai nghe Đỏ & Đen',NULL,NULL),('vi',100,'Tai nghe Đỏ & Đen',NULL,NULL),('vi',101,'Thiết bị âm thanh',NULL,NULL),('vi',102,'Thiết bị âm thanh',NULL,NULL),('vi',103,'Thiết bị âm thanh',NULL,NULL),('vi',104,'Tivi thông minh',NULL,NULL),('vi',105,'Tivi thông minh',NULL,NULL),('vi',106,'Tivi thông minh Samsung',NULL,NULL),('vi',107,'Tivi thông minh Samsung',NULL,NULL),('vi',108,'Tivi thông minh Samsung',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` bigint unsigned NOT NULL, `product_id` bigint unsigned NOT NULL, `star` double(8,2) NOT NULL, `comment` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `images` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`), UNIQUE KEY `ec_reviews_product_id_customer_id_unique` (`product_id`,`customer_id`), KEY `ec_reviews_product_id_customer_id_status_created_at_index` (`product_id`,`customer_id`,`status`,`created_at`), KEY `ec_reviews_product_id_customer_id_status_index` (`product_id`,`customer_id`,`status`) ) 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,7,27,2.00,'Good app, good backup service and support. Good documentation.','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/1.jpg\",\"products\\/5.jpg\"]'),(2,6,9,2.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/2.jpg\"]'),(3,3,15,1.00,'Good app, good backup service and support. Good documentation.','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/2.jpg\",\"products\\/7.jpg\"]'),(4,3,30,4.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/2.jpg\"]'),(5,3,19,2.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','2023-05-02 21:00:39','2023-05-02 21:00:39','{\"0\":\"products\\/2.jpg\",\"2\":\"products\\/11.jpg\"}'),(6,8,9,2.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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/2.jpg\"]'),(7,5,24,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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/2.jpg\"]'),(8,6,18,4.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/2.jpg\",\"products\\/6.jpg\"]'),(9,7,16,2.00,'Good app, good backup service and support. Good documentation.','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/4.jpg\",\"products\\/6.jpg\"]'),(10,2,29,3.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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/4.jpg\",\"products\\/5.jpg\"]'),(11,8,10,1.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/1.jpg\",\"products\\/7.jpg\"]'),(12,7,13,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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/2.jpg\",\"products\\/5.jpg\"]'),(13,5,23,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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/4.jpg\",\"products\\/5.jpg\"]'),(14,6,3,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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/2.jpg\",\"products\\/6.jpg\"]'),(15,2,24,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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/2.jpg\",\"products\\/7.jpg\"]'),(16,4,11,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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/4.jpg\",\"products\\/6.jpg\",\"products\\/31.jpg\"]'),(17,5,21,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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/4.jpg\"]'),(18,3,5,4.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/2.jpg\",\"products\\/6.jpg\",\"products\\/24.jpg\"]'),(19,4,13,1.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-05-02 21:00:39','2023-05-02 21:00:39','{\"0\":\"products\\/3.jpg\",\"2\":\"products\\/23.jpg\"}'),(20,3,27,1.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','2023-05-02 21:00:39','2023-05-02 21:00:39','{\"0\":\"products\\/1.jpg\",\"2\":\"products\\/30.jpg\"}'),(21,1,4,2.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/1.jpg\",\"products\\/7.jpg\",\"products\\/23.jpg\"]'),(23,11,1,1.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/2.jpg\",\"products\\/7.jpg\"]'),(25,4,17,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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/1.jpg\"]'),(26,9,27,1.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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/3.jpg\",\"products\\/5.jpg\",\"products\\/14.jpg\"]'),(27,8,3,2.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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/3.jpg\",\"products\\/6.jpg\"]'),(28,11,14,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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/1.jpg\"]'),(29,1,10,5.00,'Best ecommerce CMS online store!','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/4.jpg\",\"products\\/6.jpg\"]'),(30,3,20,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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/1.jpg\",\"products\\/7.jpg\"]'),(31,9,23,3.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/4.jpg\",\"products\\/7.jpg\",\"products\\/20.jpg\"]'),(32,4,5,3.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/4.jpg\"]'),(33,7,31,3.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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/4.jpg\",\"products\\/7.jpg\",\"products\\/27.jpg\"]'),(34,5,9,1.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/3.jpg\"]'),(35,6,17,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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/3.jpg\",\"products\\/5.jpg\"]'),(36,7,20,1.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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/2.jpg\",\"products\\/5.jpg\"]'),(37,11,12,5.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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/3.jpg\",\"products\\/6.jpg\"]'),(38,6,24,4.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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/3.jpg\"]'),(39,1,9,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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/2.jpg\",\"products\\/7.jpg\",\"products\\/27.jpg\"]'),(40,11,24,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','2023-05-02 21:00:39','2023-05-02 21:00:39','{\"0\":\"products\\/1.jpg\",\"2\":\"products\\/22.jpg\"}'),(41,4,27,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','2023-05-02 21:00:39','2023-05-02 21:00:39','{\"0\":\"products\\/3.jpg\",\"2\":\"products\\/12.jpg\"}'),(42,1,27,4.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/3.jpg\",\"products\\/7.jpg\",\"products\\/24.jpg\"]'),(43,2,31,4.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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/1.jpg\"]'),(44,3,29,3.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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/4.jpg\"]'),(45,1,1,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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/1.jpg\",\"products\\/7.jpg\"]'),(46,2,12,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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/4.jpg\"]'),(47,11,23,2.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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/3.jpg\"]'),(48,2,13,1.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/1.jpg\",\"products\\/5.jpg\"]'),(49,9,24,3.00,'Good app, good backup service and support. Good documentation.','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/2.jpg\"]'),(50,7,12,3.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/1.jpg\",\"products\\/5.jpg\",\"products\\/27.jpg\"]'),(52,3,11,4.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/3.jpg\",\"products\\/6.jpg\",\"products\\/19.jpg\"]'),(54,9,31,3.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','2023-05-02 21:00:39','2023-05-02 21:00:39','{\"0\":\"products\\/1.jpg\",\"2\":\"products\\/15.jpg\"}'),(55,6,19,4.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/3.jpg\",\"products\\/7.jpg\"]'),(56,6,13,3.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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/1.jpg\",\"products\\/6.jpg\"]'),(57,6,12,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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/4.jpg\",\"products\\/6.jpg\"]'),(58,8,12,1.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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/1.jpg\",\"products\\/7.jpg\",\"products\\/12.jpg\"]'),(59,4,22,5.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/4.jpg\",\"products\\/7.jpg\",\"products\\/19.jpg\"]'),(60,10,1,3.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/1.jpg\"]'),(61,11,4,4.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/3.jpg\",\"products\\/5.jpg\",\"products\\/23.jpg\"]'),(62,9,10,1.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/4.jpg\"]'),(63,1,8,1.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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/4.jpg\",\"products\\/7.jpg\",\"products\\/21.jpg\"]'),(67,9,19,2.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','2023-05-02 21:00:39','2023-05-02 21:00:39','{\"0\":\"products\\/2.jpg\",\"2\":\"products\\/31.jpg\"}'),(68,7,29,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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/3.jpg\",\"products\\/7.jpg\"]'),(69,10,27,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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/3.jpg\"]'),(70,4,4,4.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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/2.jpg\",\"products\\/6.jpg\"]'),(71,2,19,1.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-05-02 21:00:39','2023-05-02 21:00:39','{\"0\":\"products\\/3.jpg\",\"2\":\"products\\/14.jpg\"}'),(73,5,5,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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/4.jpg\",\"products\\/6.jpg\",\"products\\/15.jpg\"]'),(74,7,15,1.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/2.jpg\",\"products\\/6.jpg\"]'),(75,6,4,4.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/2.jpg\",\"products\\/6.jpg\"]'),(76,11,7,2.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/3.jpg\",\"products\\/5.jpg\"]'),(77,2,11,3.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/2.jpg\"]'),(78,10,20,1.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/4.jpg\",\"products\\/7.jpg\",\"products\\/31.jpg\"]'),(80,7,18,5.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/3.jpg\",\"products\\/7.jpg\",\"products\\/13.jpg\"]'),(81,3,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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/3.jpg\",\"products\\/7.jpg\",\"products\\/19.jpg\"]'),(83,1,14,2.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-05-02 21:00:39','2023-05-02 21:00:39','{\"0\":\"products\\/3.jpg\",\"2\":\"products\\/12.jpg\"}'),(84,6,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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/4.jpg\"]'),(85,2,20,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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/4.jpg\"]'),(86,5,1,2.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/1.jpg\",\"products\\/7.jpg\",\"products\\/25.jpg\"]'),(87,11,6,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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/4.jpg\",\"products\\/7.jpg\",\"products\\/17.jpg\"]'),(88,7,30,2.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/3.jpg\"]'),(89,9,3,4.00,'Good app, good backup service and support. Good documentation.','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/4.jpg\",\"products\\/7.jpg\",\"products\\/13.jpg\"]'),(90,8,15,4.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/2.jpg\",\"products\\/5.jpg\"]'),(91,7,21,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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/3.jpg\",\"products\\/5.jpg\"]'),(92,8,8,2.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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/1.jpg\",\"products\\/6.jpg\"]'),(93,9,22,3.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/3.jpg\"]'),(94,1,21,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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/1.jpg\",\"products\\/6.jpg\",\"products\\/13.jpg\"]'),(95,7,28,4.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/3.jpg\",\"products\\/5.jpg\"]'),(96,8,28,5.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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/1.jpg\",\"products\\/7.jpg\"]'),(98,2,4,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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/3.jpg\",\"products\\/6.jpg\",\"products\\/16.jpg\"]'),(99,8,17,1.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','2023-05-02 21:00:39','2023-05-02 21:00:39','[\"products\\/3.jpg\"]'),(100,4,14,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','2023-05-02 21:00:39','2023-05-02 21:00:39','{\"0\":\"products\\/4.jpg\",\"2\":\"products\\/10.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) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint unsigned DEFAULT NULL, `shipment_id` bigint unsigned NOT NULL, `order_id` bigint unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `user_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=53 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,'2023-04-19 13:00:40','2023-04-19 13:00:40','Botble\\ACL\\Models\\User'),(2,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,1,1,'2023-05-01 05:00:40','2023-05-02 21:00:40','Botble\\ACL\\Models\\User'),(3,'create_from_order','Shipping was created from order %order_id%',0,2,2,'2023-04-20 05:00:40','2023-04-20 05:00:40','Botble\\ACL\\Models\\User'),(4,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,2,2,'2023-05-01 07:00:40','2023-05-02 21:00:40','Botble\\ACL\\Models\\User'),(5,'create_from_order','Shipping was created from order %order_id%',0,3,3,'2023-04-19 09:00:40','2023-04-19 09:00:40','Botble\\ACL\\Models\\User'),(6,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,3,3,'2023-05-01 09:00:40','2023-05-02 21:00:40','Botble\\ACL\\Models\\User'),(7,'create_from_order','Shipping was created from order %order_id%',0,4,4,'2023-04-25 19:00:40','2023-04-25 19:00:40','Botble\\ACL\\Models\\User'),(8,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,4,4,'2023-05-01 11:00:40','2023-05-02 21:00:40','Botble\\ACL\\Models\\User'),(9,'create_from_order','Shipping was created from order %order_id%',0,5,5,'2023-04-19 13:00:40','2023-04-19 13:00:40','Botble\\ACL\\Models\\User'),(10,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,5,5,'2023-05-01 13:00:40','2023-05-02 21:00:40','Botble\\ACL\\Models\\User'),(11,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,5,5,'2023-05-02 21:00:40','2023-05-02 21:00:40','Botble\\ACL\\Models\\User'),(12,'create_from_order','Shipping was created from order %order_id%',0,6,6,'2023-04-25 09:00:40','2023-04-25 09:00:40','Botble\\ACL\\Models\\User'),(13,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,6,6,'2023-05-01 15:00:40','2023-05-02 21:00:40','Botble\\ACL\\Models\\User'),(14,'create_from_order','Shipping was created from order %order_id%',0,7,7,'2023-04-30 13:00:40','2023-04-30 13:00:40','Botble\\ACL\\Models\\User'),(15,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,7,7,'2023-05-01 17:00:40','2023-05-02 21:00:40','Botble\\ACL\\Models\\User'),(16,'create_from_order','Shipping was created from order %order_id%',0,8,8,'2023-04-27 11:00:40','2023-04-27 11:00:40','Botble\\ACL\\Models\\User'),(17,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,8,8,'2023-05-01 19:00:40','2023-05-02 21:00:40','Botble\\ACL\\Models\\User'),(18,'create_from_order','Shipping was created from order %order_id%',0,9,9,'2023-05-01 21:00:40','2023-05-01 21:00:40','Botble\\ACL\\Models\\User'),(19,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,9,9,'2023-05-01 21:00:40','2023-05-02 21:00:40','Botble\\ACL\\Models\\User'),(20,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,9,9,'2023-05-02 21:00:40','2023-05-02 21:00:40','Botble\\ACL\\Models\\User'),(21,'create_from_order','Shipping was created from order %order_id%',0,10,10,'2023-04-26 11:00:40','2023-04-26 11:00:40','Botble\\ACL\\Models\\User'),(22,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,10,10,'2023-05-01 23:00:40','2023-05-02 21:00:40','Botble\\ACL\\Models\\User'),(23,'create_from_order','Shipping was created from order %order_id%',0,11,11,'2023-04-27 01:00:40','2023-04-27 01:00:40','Botble\\ACL\\Models\\User'),(24,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,11,11,'2023-05-02 01:00:40','2023-05-02 21:00:40','Botble\\ACL\\Models\\User'),(25,'update_cod_status','Updated COD status to Completed . Updated by: %user_name%',0,11,11,'2023-05-02 21:00:40','2023-05-02 21:00:40','Botble\\ACL\\Models\\User'),(26,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,11,11,'2023-05-02 21:00:40','2023-05-02 21:00:40','Botble\\ACL\\Models\\User'),(27,'create_from_order','Shipping was created from order %order_id%',0,12,12,'2023-04-26 21:00:40','2023-04-26 21:00:40','Botble\\ACL\\Models\\User'),(28,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,12,12,'2023-05-02 03:00:40','2023-05-02 21:00:40','Botble\\ACL\\Models\\User'),(29,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,12,12,'2023-05-02 21:00:40','2023-05-02 21:00:40','Botble\\ACL\\Models\\User'),(30,'create_from_order','Shipping was created from order %order_id%',0,13,13,'2023-04-26 21:00:40','2023-04-26 21:00:40','Botble\\ACL\\Models\\User'),(31,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,13,13,'2023-05-02 05:00:40','2023-05-02 21:00:40','Botble\\ACL\\Models\\User'),(32,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,13,13,'2023-05-02 21:00:40','2023-05-02 21:00:40','Botble\\ACL\\Models\\User'),(33,'create_from_order','Shipping was created from order %order_id%',0,14,14,'2023-04-27 15:00:40','2023-04-27 15:00:40','Botble\\ACL\\Models\\User'),(34,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,14,14,'2023-05-02 07:00:40','2023-05-02 21:00:40','Botble\\ACL\\Models\\User'),(35,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,14,14,'2023-05-02 21:00:40','2023-05-02 21:00:40','Botble\\ACL\\Models\\User'),(36,'create_from_order','Shipping was created from order %order_id%',0,15,15,'2023-04-30 21:00:40','2023-04-30 21:00:40','Botble\\ACL\\Models\\User'),(37,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,15,15,'2023-05-02 09:00:40','2023-05-02 21:00:40','Botble\\ACL\\Models\\User'),(38,'create_from_order','Shipping was created from order %order_id%',0,16,16,'2023-04-29 13:00:40','2023-04-29 13:00:40','Botble\\ACL\\Models\\User'),(39,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,16,16,'2023-05-02 11:00:41','2023-05-02 21:00:41','Botble\\ACL\\Models\\User'),(40,'create_from_order','Shipping was created from order %order_id%',0,17,17,'2023-04-30 13:00:41','2023-04-30 13:00:41','Botble\\ACL\\Models\\User'),(41,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,17,17,'2023-05-02 13:00:41','2023-05-02 21:00:41','Botble\\ACL\\Models\\User'),(42,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,17,17,'2023-05-02 21:00:41','2023-05-02 21:00:41','Botble\\ACL\\Models\\User'),(43,'create_from_order','Shipping was created from order %order_id%',0,18,18,'2023-05-02 15:00:41','2023-05-02 15:00:41','Botble\\ACL\\Models\\User'),(44,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,18,18,'2023-05-02 15:00:41','2023-05-02 21:00:41','Botble\\ACL\\Models\\User'),(45,'update_cod_status','Updated COD status to Completed . Updated by: %user_name%',0,18,18,'2023-05-02 21:00:41','2023-05-02 21:00:41','Botble\\ACL\\Models\\User'),(46,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,18,18,'2023-05-02 21:00:41','2023-05-02 21:00:41','Botble\\ACL\\Models\\User'),(47,'create_from_order','Shipping was created from order %order_id%',0,19,19,'2023-05-02 05:00:41','2023-05-02 05:00:41','Botble\\ACL\\Models\\User'),(48,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,19,19,'2023-05-02 17:00:41','2023-05-02 21:00:41','Botble\\ACL\\Models\\User'),(49,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,19,19,'2023-05-02 21:00:41','2023-05-02 21:00:41','Botble\\ACL\\Models\\User'),(50,'create_from_order','Shipping was created from order %order_id%',0,20,20,'2023-05-02 13:00:41','2023-05-02 13:00:41','Botble\\ACL\\Models\\User'),(51,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,20,20,'2023-05-02 19:00:41','2023-05-02 21:00:41','Botble\\ACL\\Models\\User'),(52,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,20,20,'2023-05-02 21:00:41','2023-05-02 21:00:41','Botble\\ACL\\Models\\User'); /*!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` bigint unsigned NOT NULL, `user_id` bigint unsigned DEFAULT NULL, `weight` double(8,2) DEFAULT '0.00', `shipment_id` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `rate_id` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `note` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `cod_amount` decimal(15,2) DEFAULT '0.00', `cod_status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `cross_checking_status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `price` decimal(15,2) DEFAULT '0.00', `store_id` bigint unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `tracking_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_company_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tracking_link` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `estimate_date_shipped` datetime DEFAULT NULL, `date_shipped` datetime DEFAULT NULL, `label_url` text COLLATE utf8mb4_unicode_ci, `metadata` mediumtext 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 `ec_shipments` -- LOCK TABLES `ec_shipments` WRITE; /*!40000 ALTER TABLE `ec_shipments` DISABLE KEYS */; INSERT INTO `ec_shipments` VALUES (1,1,NULL,3990.00,NULL,NULL,'','approved',0.00,'completed','pending',0.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','JJD0072112984','GHN','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-05-11 04:00:40',NULL,NULL,NULL),(2,2,NULL,2432.00,NULL,NULL,'','approved',0.00,'completed','pending',0.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','JJD0071747000','AliExpress','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-05-12 04:00:40',NULL,NULL,NULL),(3,3,NULL,6546.00,NULL,NULL,'','approved',0.00,'completed','pending',0.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','JJD0040433896','DHL','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-05-11 04:00:40',NULL,NULL,NULL),(4,4,NULL,4637.00,NULL,NULL,'','approved',0.00,'completed','pending',0.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','JJD0076485500','GHN','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-05-05 04:00:40',NULL,NULL,NULL),(5,5,NULL,4737.00,NULL,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','JJD0033100915','AliExpress','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-05-11 04:00:40','2023-05-03 04:00:40',NULL,NULL),(6,6,NULL,3148.00,NULL,NULL,'','approved',0.00,'completed','pending',0.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','JJD0065015517','GHN','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-05-10 04:00:40',NULL,NULL,NULL),(7,7,NULL,2705.00,NULL,NULL,'','approved',0.00,'completed','pending',0.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','JJD0081511542','AliExpress','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-05-11 04:00:40',NULL,NULL,NULL),(8,8,NULL,7209.00,NULL,NULL,'','approved',0.00,'completed','pending',0.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','JJD0085783852','AliExpress','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-05-12 04:00:40',NULL,NULL,NULL),(9,9,NULL,4554.00,NULL,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','JJD0030515994','GHN','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-05-10 04:00:40','2023-05-03 04:00:40',NULL,NULL),(10,10,NULL,7920.00,NULL,NULL,'','approved',0.00,'completed','pending',0.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','JJD003416501','FastShipping','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-05-10 04:00:40',NULL,NULL,NULL),(11,11,NULL,5298.00,NULL,NULL,'','delivered',1433.90,'completed','pending',0.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','JJD0071599776','DHL','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-05-07 04:00:40','2023-05-03 04:00:40',NULL,NULL),(12,12,NULL,4402.00,NULL,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','JJD0089504719','DHL','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-05-07 04:00:40','2023-05-03 04:00:40',NULL,NULL),(13,13,NULL,4204.00,NULL,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','JJD0079822233','FastShipping','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-05-04 04:00:40','2023-05-03 04:00:40',NULL,NULL),(14,14,NULL,2315.00,NULL,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','JJD0059949081','AliExpress','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-05-05 04:00:40','2023-05-03 04:00:40',NULL,NULL),(15,15,NULL,1507.00,NULL,NULL,'','approved',0.00,'completed','pending',0.00,0,'2023-05-02 21:00:40','2023-05-02 21:00:40','JJD003943290','DHL','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-05-06 04:00:40',NULL,NULL,NULL),(16,16,NULL,6522.00,NULL,NULL,'','approved',0.00,'completed','pending',0.00,0,'2023-05-02 21:00:41','2023-05-02 21:00:41','JJD002877334','DHL','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-05-12 04:00:41',NULL,NULL,NULL),(17,17,NULL,8184.00,NULL,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2023-05-02 21:00:41','2023-05-02 21:00:41','JJD0015041497','AliExpress','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-05-07 04:00:41','2023-05-03 04:00:41',NULL,NULL),(18,18,NULL,4057.00,NULL,NULL,'','delivered',1386.50,'completed','pending',0.00,0,'2023-05-02 21:00:41','2023-05-02 21:00:41','JJD0032668195','GHN','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-05-12 04:00:41','2023-05-03 04:00:41',NULL,NULL),(19,19,NULL,7632.00,NULL,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2023-05-02 21:00:41','2023-05-02 21:00:41','JJD0074851711','AliExpress','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-05-07 04:00:41','2023-05-03 04:00:41',NULL,NULL),(20,20,NULL,3833.00,NULL,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2023-05-02 21:00:41','2023-05-02 21:00:41','JJD0021534817','AliExpress','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-05-09 04:00:41','2023-05-03 04:00:41',NULL,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) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_shipping` -- LOCK TABLES `ec_shipping` WRITE; /*!40000 ALTER TABLE `ec_shipping` DISABLE KEYS */; INSERT INTO `ec_shipping` VALUES (1,'All',NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40'); /*!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` bigint unsigned NOT NULL, `country` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip_code` varchar(20) 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) COLLATE utf8mb4_unicode_ci NOT NULL, `shipping_id` bigint unsigned NOT NULL, `type` varchar(24) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'based_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=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_shipping_rules` -- LOCK TABLES `ec_shipping_rules` WRITE; /*!40000 ALTER TABLE `ec_shipping_rules` DISABLE KEYS */; INSERT INTO `ec_shipping_rules` VALUES (1,'Free delivery',1,'based_on_price',0.00,NULL,0.00,'2023-05-02 21:00:40','2023-05-02 21:00:40'); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `country` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_primary` tinyint(1) DEFAULT '0', `is_shipping_location` tinyint(1) DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_store_locators` -- LOCK TABLES `ec_store_locators` WRITE; /*!40000 ALTER TABLE `ec_store_locators` DISABLE KEYS */; INSERT INTO `ec_store_locators` VALUES (1,'Shopwise','sales@botble.com','123-456-7890','123 Street, Old Trafford','US','New York','New York',1,1,'2023-05-02 21:00:42','2023-05-02 21:00:42'); /*!40000 ALTER TABLE `ec_store_locators` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_tax_products` -- DROP TABLE IF EXISTS `ec_tax_products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_tax_products` ( `tax_id` bigint unsigned NOT NULL, `product_id` bigint unsigned NOT NULL, PRIMARY KEY (`product_id`,`tax_id`), KEY `ec_tax_products_tax_id_index` (`tax_id`), KEY `ec_tax_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_tax_products` -- LOCK TABLES `ec_tax_products` WRITE; /*!40000 ALTER TABLE `ec_tax_products` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_tax_products` 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) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `percentage` double(8,6) DEFAULT NULL, `priority` int DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_taxes` -- LOCK TABLES `ec_taxes` WRITE; /*!40000 ALTER TABLE `ec_taxes` DISABLE KEYS */; INSERT INTO `ec_taxes` VALUES (1,'VAT',10.000000,1,'published','2023-05-02 21:00:39','2023-05-02 21:00:39'),(2,'None',0.000000,2,'published','2023-05-02 21:00:39','2023-05-02 21:00:39'),(3,'Import Tax',15.000000,3,'published','2023-05-02 21:00:39','2023-05-02 21:00:39'); /*!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` bigint unsigned NOT NULL, `product_id` bigint unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `ec_wish_lists_product_id_customer_id_index` (`product_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_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) COLLATE utf8mb4_unicode_ci NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `failed_jobs` -- LOCK TABLES `failed_jobs` WRITE; /*!40000 ALTER TABLE `failed_jobs` DISABLE KEYS */; /*!40000 ALTER TABLE `failed_jobs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `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) COLLATE utf8mb4_unicode_ci NOT NULL, `order` tinyint NOT NULL DEFAULT '0', `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=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','2023-05-02 21:00:42','2023-05-02 21:00:42'),(2,'Payment',1,'published','2023-05-02 21:00:42','2023-05-02 21:00:42'),(3,'Order & Returns',2,'published','2023-05-02 21:00:42','2023-05-02 21:00: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) COLLATE utf8mb4_unicode_ci NOT NULL, `faq_categories_id` bigint unsigned NOT NULL, `name` varchar(120) 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 COLLATE utf8mb4_unicode_ci NOT NULL, `answer` text COLLATE utf8mb4_unicode_ci NOT NULL, `category_id` bigint unsigned NOT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=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','2023-05-02 21:00:42','2023-05-02 21:00:42'),(2,'Do You Ship Internationally?','Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.',1,'published','2023-05-02 21:00:42','2023-05-02 21:00: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','2023-05-02 21:00:42','2023-05-02 21:00: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','2023-05-02 21:00:42','2023-05-02 21:00: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','2023-05-02 21:00:42','2023-05-02 21:00: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','2023-05-02 21:00:42','2023-05-02 21:00: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','2023-05-02 21:00:42','2023-05-02 21:00: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','2023-05-02 21:00:42','2023-05-02 21:00: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','2023-05-02 21:00:42','2023-05-02 21:00: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','2023-05-02 21:00:42','2023-05-02 21:00: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) COLLATE utf8mb4_unicode_ci NOT NULL, `faqs_id` bigint unsigned NOT NULL, `question` text COLLATE utf8mb4_unicode_ci, `answer` text 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 `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) COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext 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` bigint unsigned NOT NULL AUTO_INCREMENT, `lang_meta_code` text COLLATE utf8mb4_unicode_ci, `lang_meta_origin` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `reference_id` bigint unsigned NOT NULL, `reference_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`lang_meta_id`), KEY `language_meta_reference_id_index` (`reference_id`) ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `language_meta` -- LOCK TABLES `language_meta` WRITE; /*!40000 ALTER TABLE `language_meta` DISABLE KEYS */; INSERT INTO `language_meta` VALUES (1,'en_US','a199ae788c25b96dfa84e22347ded07e',1,'Botble\\SimpleSlider\\Models\\SimpleSlider'),(2,'vi','a199ae788c25b96dfa84e22347ded07e',2,'Botble\\SimpleSlider\\Models\\SimpleSlider'),(3,'en_US','5a7be244672014ff30ec420f94058d7c',1,'Botble\\Menu\\Models\\MenuLocation'),(4,'en_US','f1ecbda06385b5502531634ac1360f8d',1,'Botble\\Menu\\Models\\Menu'),(5,'en_US','fa22a3e3e3b3a58897134a1960a8681a',2,'Botble\\Menu\\Models\\Menu'),(6,'en_US','a0ec68b6b489715f7a4145e881bbccb6',3,'Botble\\Menu\\Models\\Menu'),(7,'en_US','ea1037eeffb42cc4b095567e90bece70',4,'Botble\\Menu\\Models\\Menu'),(8,'vi','490d47ede771b7c98afcff25e0fa5ecf',2,'Botble\\Menu\\Models\\MenuLocation'),(9,'vi','f1ecbda06385b5502531634ac1360f8d',5,'Botble\\Menu\\Models\\Menu'),(10,'vi','fa22a3e3e3b3a58897134a1960a8681a',6,'Botble\\Menu\\Models\\Menu'),(11,'vi','a0ec68b6b489715f7a4145e881bbccb6',7,'Botble\\Menu\\Models\\Menu'),(12,'vi','ea1037eeffb42cc4b095567e90bece70',8,'Botble\\Menu\\Models\\Menu'); /*!40000 ALTER TABLE `language_meta` 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` bigint unsigned NOT NULL AUTO_INCREMENT, `lang_name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `lang_locale` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `lang_flag` varchar(20) 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=4 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,1,0),(3,'Arabic','ar','ar','ar',0,2,1); /*!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` bigint unsigned NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `alt` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `folder_id` bigint unsigned NOT NULL DEFAULT '0', `mime_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `size` int NOT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `options` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `media_files_user_id_index` (`user_id`), KEY `media_files_index` (`folder_id`,`user_id`,`created_at`) ) ENGINE=InnoDB AUTO_INCREMENT=130 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',1,'image/png',2165,'brands/1.png','[]','2023-05-02 21:00:31','2023-05-02 21:00:31',NULL),(2,0,'2','2',1,'image/png',2165,'brands/2.png','[]','2023-05-02 21:00:31','2023-05-02 21:00:31',NULL),(3,0,'3','3',1,'image/png',2165,'brands/3.png','[]','2023-05-02 21:00:31','2023-05-02 21:00:31',NULL),(4,0,'4','4',1,'image/png',2165,'brands/4.png','[]','2023-05-02 21:00:31','2023-05-02 21:00:31',NULL),(5,0,'5','5',1,'image/png',2165,'brands/5.png','[]','2023-05-02 21:00:31','2023-05-02 21:00:31',NULL),(6,0,'6','6',1,'image/png',2165,'brands/6.png','[]','2023-05-02 21:00:31','2023-05-02 21:00:31',NULL),(7,0,'7','7',1,'image/png',2165,'brands/7.png','[]','2023-05-02 21:00:31','2023-05-02 21:00:31',NULL),(8,0,'p-1','p-1',2,'image/png',2165,'product-categories/p-1.png','[]','2023-05-02 21:00:31','2023-05-02 21:00:31',NULL),(9,0,'p-2','p-2',2,'image/png',2165,'product-categories/p-2.png','[]','2023-05-02 21:00:31','2023-05-02 21:00:31',NULL),(10,0,'p-3','p-3',2,'image/png',2165,'product-categories/p-3.png','[]','2023-05-02 21:00:31','2023-05-02 21:00:31',NULL),(11,0,'p-4','p-4',2,'image/png',2165,'product-categories/p-4.png','[]','2023-05-02 21:00:32','2023-05-02 21:00:32',NULL),(12,0,'p-5','p-5',2,'image/png',2165,'product-categories/p-5.png','[]','2023-05-02 21:00:32','2023-05-02 21:00:32',NULL),(13,0,'p-6','p-6',2,'image/png',2165,'product-categories/p-6.png','[]','2023-05-02 21:00:32','2023-05-02 21:00:32',NULL),(14,0,'p-7','p-7',2,'image/png',2165,'product-categories/p-7.png','[]','2023-05-02 21:00:32','2023-05-02 21:00:32',NULL),(15,0,'1','1',3,'image/jpeg',2165,'customers/1.jpg','[]','2023-05-02 21:00:32','2023-05-02 21:00:32',NULL),(16,0,'10','10',3,'image/jpeg',2165,'customers/10.jpg','[]','2023-05-02 21:00:32','2023-05-02 21:00:32',NULL),(17,0,'2','2',3,'image/jpeg',2165,'customers/2.jpg','[]','2023-05-02 21:00:32','2023-05-02 21:00:32',NULL),(18,0,'3','3',3,'image/jpeg',2165,'customers/3.jpg','[]','2023-05-02 21:00:32','2023-05-02 21:00:32',NULL),(19,0,'4','4',3,'image/jpeg',2165,'customers/4.jpg','[]','2023-05-02 21:00:32','2023-05-02 21:00:32',NULL),(20,0,'5','5',3,'image/jpeg',2165,'customers/5.jpg','[]','2023-05-02 21:00:32','2023-05-02 21:00:32',NULL),(21,0,'6','6',3,'image/jpeg',2165,'customers/6.jpg','[]','2023-05-02 21:00:32','2023-05-02 21:00:32',NULL),(22,0,'7','7',3,'image/jpeg',2165,'customers/7.jpg','[]','2023-05-02 21:00:32','2023-05-02 21:00:32',NULL),(23,0,'8','8',3,'image/jpeg',2165,'customers/8.jpg','[]','2023-05-02 21:00:32','2023-05-02 21:00:32',NULL),(24,0,'9','9',3,'image/jpeg',2165,'customers/9.jpg','[]','2023-05-02 21:00:32','2023-05-02 21:00:32',NULL),(25,0,'1-1','1-1',4,'image/jpeg',2165,'products/1-1.jpg','[]','2023-05-02 21:00:33','2023-05-02 21:00:33',NULL),(26,0,'1-2','1-2',4,'image/jpeg',2165,'products/1-2.jpg','[]','2023-05-02 21:00:33','2023-05-02 21:00:33',NULL),(27,0,'1-3','1-3',4,'image/jpeg',2165,'products/1-3.jpg','[]','2023-05-02 21:00:33','2023-05-02 21:00:33',NULL),(28,0,'1','1',4,'image/jpeg',2165,'products/1.jpg','[]','2023-05-02 21:00:33','2023-05-02 21:00:33',NULL),(29,0,'10-1','10-1',4,'image/jpeg',2165,'products/10-1.jpg','[]','2023-05-02 21:00:33','2023-05-02 21:00:33',NULL),(30,0,'10','10',4,'image/jpeg',2165,'products/10.jpg','[]','2023-05-02 21:00:33','2023-05-02 21:00:33',NULL),(31,0,'11-1','11-1',4,'image/jpeg',2165,'products/11-1.jpg','[]','2023-05-02 21:00:33','2023-05-02 21:00:33',NULL),(32,0,'11','11',4,'image/jpeg',2165,'products/11.jpg','[]','2023-05-02 21:00:33','2023-05-02 21:00:33',NULL),(33,0,'12-1','12-1',4,'image/jpeg',2165,'products/12-1.jpg','[]','2023-05-02 21:00:33','2023-05-02 21:00:33',NULL),(34,0,'12','12',4,'image/jpeg',2165,'products/12.jpg','[]','2023-05-02 21:00:34','2023-05-02 21:00:34',NULL),(35,0,'13-1','13-1',4,'image/jpeg',2165,'products/13-1.jpg','[]','2023-05-02 21:00:34','2023-05-02 21:00:34',NULL),(36,0,'13','13',4,'image/jpeg',2165,'products/13.jpg','[]','2023-05-02 21:00:34','2023-05-02 21:00:34',NULL),(37,0,'14-1','14-1',4,'image/jpeg',2165,'products/14-1.jpg','[]','2023-05-02 21:00:34','2023-05-02 21:00:34',NULL),(38,0,'14','14',4,'image/jpeg',2165,'products/14.jpg','[]','2023-05-02 21:00:34','2023-05-02 21:00:34',NULL),(39,0,'15-1','15-1',4,'image/jpeg',2165,'products/15-1.jpg','[]','2023-05-02 21:00:34','2023-05-02 21:00:34',NULL),(40,0,'15','15',4,'image/jpeg',2165,'products/15.jpg','[]','2023-05-02 21:00:34','2023-05-02 21:00:34',NULL),(41,0,'16','16',4,'image/jpeg',2165,'products/16.jpg','[]','2023-05-02 21:00:34','2023-05-02 21:00:34',NULL),(42,0,'17','17',4,'image/jpeg',2165,'products/17.jpg','[]','2023-05-02 21:00:34','2023-05-02 21:00:34',NULL),(43,0,'18-1','18-1',4,'image/jpeg',2165,'products/18-1.jpg','[]','2023-05-02 21:00:34','2023-05-02 21:00:34',NULL),(44,0,'18-2','18-2',4,'image/jpeg',2165,'products/18-2.jpg','[]','2023-05-02 21:00:34','2023-05-02 21:00:34',NULL),(45,0,'18','18',4,'image/jpeg',2165,'products/18.jpg','[]','2023-05-02 21:00:34','2023-05-02 21:00:34',NULL),(46,0,'19-1','19-1',4,'image/jpeg',2165,'products/19-1.jpg','[]','2023-05-02 21:00:34','2023-05-02 21:00:34',NULL),(47,0,'19','19',4,'image/jpeg',2165,'products/19.jpg','[]','2023-05-02 21:00:34','2023-05-02 21:00:34',NULL),(48,0,'2-1','2-1',4,'image/jpeg',2165,'products/2-1.jpg','[]','2023-05-02 21:00:34','2023-05-02 21:00:34',NULL),(49,0,'2-2','2-2',4,'image/jpeg',2165,'products/2-2.jpg','[]','2023-05-02 21:00:34','2023-05-02 21:00:34',NULL),(50,0,'2-3','2-3',4,'image/jpeg',2165,'products/2-3.jpg','[]','2023-05-02 21:00:34','2023-05-02 21:00:34',NULL),(51,0,'2','2',4,'image/jpeg',2165,'products/2.jpg','[]','2023-05-02 21:00:34','2023-05-02 21:00:34',NULL),(52,0,'20-1','20-1',4,'image/jpeg',2165,'products/20-1.jpg','[]','2023-05-02 21:00:34','2023-05-02 21:00:34',NULL),(53,0,'20','20',4,'image/jpeg',2165,'products/20.jpg','[]','2023-05-02 21:00:34','2023-05-02 21:00:34',NULL),(54,0,'21-1','21-1',4,'image/jpeg',2165,'products/21-1.jpg','[]','2023-05-02 21:00:34','2023-05-02 21:00:34',NULL),(55,0,'21','21',4,'image/jpeg',2165,'products/21.jpg','[]','2023-05-02 21:00:34','2023-05-02 21:00:34',NULL),(56,0,'22-1','22-1',4,'image/jpeg',2165,'products/22-1.jpg','[]','2023-05-02 21:00:35','2023-05-02 21:00:35',NULL),(57,0,'22','22',4,'image/jpeg',2165,'products/22.jpg','[]','2023-05-02 21:00:35','2023-05-02 21:00:35',NULL),(58,0,'23-1','23-1',4,'image/jpeg',2165,'products/23-1.jpg','[]','2023-05-02 21:00:35','2023-05-02 21:00:35',NULL),(59,0,'23','23',4,'image/jpeg',2165,'products/23.jpg','[]','2023-05-02 21:00:35','2023-05-02 21:00:35',NULL),(60,0,'24-1','24-1',4,'image/jpeg',2165,'products/24-1.jpg','[]','2023-05-02 21:00:35','2023-05-02 21:00:35',NULL),(61,0,'24','24',4,'image/jpeg',2165,'products/24.jpg','[]','2023-05-02 21:00:35','2023-05-02 21:00:35',NULL),(62,0,'25-1','25-1',4,'image/jpeg',2165,'products/25-1.jpg','[]','2023-05-02 21:00:35','2023-05-02 21:00:35',NULL),(63,0,'25','25',4,'image/jpeg',2165,'products/25.jpg','[]','2023-05-02 21:00:35','2023-05-02 21:00:35',NULL),(64,0,'26-1','26-1',4,'image/jpeg',2165,'products/26-1.jpg','[]','2023-05-02 21:00:35','2023-05-02 21:00:35',NULL),(65,0,'26-2','26-2',4,'image/jpeg',2165,'products/26-2.jpg','[]','2023-05-02 21:00:35','2023-05-02 21:00:35',NULL),(66,0,'26','26',4,'image/jpeg',2165,'products/26.jpg','[]','2023-05-02 21:00:35','2023-05-02 21:00:35',NULL),(67,0,'27-1','27-1',4,'image/jpeg',2165,'products/27-1.jpg','[]','2023-05-02 21:00:35','2023-05-02 21:00:35',NULL),(68,0,'27','27',4,'image/jpeg',2165,'products/27.jpg','[]','2023-05-02 21:00:35','2023-05-02 21:00:35',NULL),(69,0,'28-1','28-1',4,'image/jpeg',2165,'products/28-1.jpg','[]','2023-05-02 21:00:35','2023-05-02 21:00:35',NULL),(70,0,'28','28',4,'image/jpeg',2165,'products/28.jpg','[]','2023-05-02 21:00:35','2023-05-02 21:00:35',NULL),(71,0,'29-1','29-1',4,'image/jpeg',2165,'products/29-1.jpg','[]','2023-05-02 21:00:35','2023-05-02 21:00:35',NULL),(72,0,'29','29',4,'image/jpeg',2165,'products/29.jpg','[]','2023-05-02 21:00:35','2023-05-02 21:00:35',NULL),(73,0,'3-1','3-1',4,'image/jpeg',2165,'products/3-1.jpg','[]','2023-05-02 21:00:35','2023-05-02 21:00:35',NULL),(74,0,'3-2','3-2',4,'image/jpeg',2165,'products/3-2.jpg','[]','2023-05-02 21:00:35','2023-05-02 21:00:35',NULL),(75,0,'3-3','3-3',4,'image/jpeg',2165,'products/3-3.jpg','[]','2023-05-02 21:00:35','2023-05-02 21:00:35',NULL),(76,0,'3','3',4,'image/jpeg',2165,'products/3.jpg','[]','2023-05-02 21:00:35','2023-05-02 21:00:35',NULL),(77,0,'30-1','30-1',4,'image/jpeg',2165,'products/30-1.jpg','[]','2023-05-02 21:00:35','2023-05-02 21:00:35',NULL),(78,0,'30','30',4,'image/jpeg',2165,'products/30.jpg','[]','2023-05-02 21:00:36','2023-05-02 21:00:36',NULL),(79,0,'31-1','31-1',4,'image/jpeg',2165,'products/31-1.jpg','[]','2023-05-02 21:00:36','2023-05-02 21:00:36',NULL),(80,0,'31','31',4,'image/jpeg',2165,'products/31.jpg','[]','2023-05-02 21:00:36','2023-05-02 21:00:36',NULL),(81,0,'4-1','4-1',4,'image/jpeg',2165,'products/4-1.jpg','[]','2023-05-02 21:00:36','2023-05-02 21:00:36',NULL),(82,0,'4-2','4-2',4,'image/jpeg',2165,'products/4-2.jpg','[]','2023-05-02 21:00:36','2023-05-02 21:00:36',NULL),(83,0,'4-3','4-3',4,'image/jpeg',2165,'products/4-3.jpg','[]','2023-05-02 21:00:36','2023-05-02 21:00:36',NULL),(84,0,'4','4',4,'image/jpeg',2165,'products/4.jpg','[]','2023-05-02 21:00:36','2023-05-02 21:00:36',NULL),(85,0,'5-1','5-1',4,'image/jpeg',2165,'products/5-1.jpg','[]','2023-05-02 21:00:36','2023-05-02 21:00:36',NULL),(86,0,'5-2','5-2',4,'image/jpeg',2165,'products/5-2.jpg','[]','2023-05-02 21:00:36','2023-05-02 21:00:36',NULL),(87,0,'5-3','5-3',4,'image/jpeg',2165,'products/5-3.jpg','[]','2023-05-02 21:00:36','2023-05-02 21:00:36',NULL),(88,0,'5','5',4,'image/jpeg',2165,'products/5.jpg','[]','2023-05-02 21:00:36','2023-05-02 21:00:36',NULL),(89,0,'6-1','6-1',4,'image/jpeg',2165,'products/6-1.jpg','[]','2023-05-02 21:00:36','2023-05-02 21:00:36',NULL),(90,0,'6','6',4,'image/jpeg',2165,'products/6.jpg','[]','2023-05-02 21:00:36','2023-05-02 21:00:36',NULL),(91,0,'7-1','7-1',4,'image/jpeg',2165,'products/7-1.jpg','[]','2023-05-02 21:00:36','2023-05-02 21:00:36',NULL),(92,0,'7','7',4,'image/jpeg',2165,'products/7.jpg','[]','2023-05-02 21:00:36','2023-05-02 21:00:36',NULL),(93,0,'8-1','8-1',4,'image/jpeg',2165,'products/8-1.jpg','[]','2023-05-02 21:00:36','2023-05-02 21:00:36',NULL),(94,0,'8','8',4,'image/jpeg',2165,'products/8.jpg','[]','2023-05-02 21:00:36','2023-05-02 21:00:36',NULL),(95,0,'9-1','9-1',4,'image/jpeg',2165,'products/9-1.jpg','[]','2023-05-02 21:00:37','2023-05-02 21:00:37',NULL),(96,0,'9','9',4,'image/jpeg',2165,'products/9.jpg','[]','2023-05-02 21:00:37','2023-05-02 21:00:37',NULL),(97,0,'1','1',5,'image/jpeg',2165,'news/1.jpg','[]','2023-05-02 21:00:41','2023-05-02 21:00:41',NULL),(98,0,'10','10',5,'image/jpeg',2165,'news/10.jpg','[]','2023-05-02 21:00:41','2023-05-02 21:00:41',NULL),(99,0,'11','11',5,'image/jpeg',2165,'news/11.jpg','[]','2023-05-02 21:00:41','2023-05-02 21:00:41',NULL),(100,0,'2','2',5,'image/jpeg',2165,'news/2.jpg','[]','2023-05-02 21:00:41','2023-05-02 21:00:41',NULL),(101,0,'3','3',5,'image/jpeg',2165,'news/3.jpg','[]','2023-05-02 21:00:41','2023-05-02 21:00:41',NULL),(102,0,'4','4',5,'image/jpeg',2165,'news/4.jpg','[]','2023-05-02 21:00:41','2023-05-02 21:00:41',NULL),(103,0,'5','5',5,'image/jpeg',2165,'news/5.jpg','[]','2023-05-02 21:00:41','2023-05-02 21:00:41',NULL),(104,0,'6','6',5,'image/jpeg',2165,'news/6.jpg','[]','2023-05-02 21:00:41','2023-05-02 21:00:41',NULL),(105,0,'7','7',5,'image/jpeg',2165,'news/7.jpg','[]','2023-05-02 21:00:41','2023-05-02 21:00:41',NULL),(106,0,'8','8',5,'image/jpeg',2165,'news/8.jpg','[]','2023-05-02 21:00:41','2023-05-02 21:00:41',NULL),(107,0,'9','9',5,'image/jpeg',2165,'news/9.jpg','[]','2023-05-02 21:00:41','2023-05-02 21:00:41',NULL),(108,0,'1','1',6,'image/jpeg',2165,'testimonials/1.jpg','[]','2023-05-02 21:00:42','2023-05-02 21:00:42',NULL),(109,0,'2','2',6,'image/jpeg',2165,'testimonials/2.jpg','[]','2023-05-02 21:00:42','2023-05-02 21:00:42',NULL),(110,0,'3','3',6,'image/jpeg',2165,'testimonials/3.jpg','[]','2023-05-02 21:00:42','2023-05-02 21:00:42',NULL),(111,0,'4','4',6,'image/jpeg',2165,'testimonials/4.jpg','[]','2023-05-02 21:00:42','2023-05-02 21:00:42',NULL),(112,0,'1','1',7,'image/jpeg',3063,'sliders/1.jpg','[]','2023-05-02 21:00:42','2023-05-02 21:00:42',NULL),(113,0,'2','2',7,'image/jpeg',3063,'sliders/2.jpg','[]','2023-05-02 21:00:42','2023-05-02 21:00:42',NULL),(114,0,'3','3',7,'image/jpeg',3063,'sliders/3.jpg','[]','2023-05-02 21:00:42','2023-05-02 21:00:42',NULL),(115,0,'american-express','american-express',8,'image/png',3209,'general/american-express.png','[]','2023-05-02 21:00:42','2023-05-02 21:00:42',NULL),(116,0,'b-1','b-1',8,'image/jpeg',1955,'general/b-1.jpg','[]','2023-05-02 21:00:42','2023-05-02 21:00:42',NULL),(117,0,'b-2','b-2',8,'image/jpeg',1955,'general/b-2.jpg','[]','2023-05-02 21:00:43','2023-05-02 21:00:43',NULL),(118,0,'b-3','b-3',8,'image/jpeg',1955,'general/b-3.jpg','[]','2023-05-02 21:00:43','2023-05-02 21:00:43',NULL),(119,0,'discover','discover',8,'image/png',2494,'general/discover.png','[]','2023-05-02 21:00:43','2023-05-02 21:00:43',NULL),(120,0,'favicon','favicon',8,'image/png',1803,'general/favicon.png','[]','2023-05-02 21:00:43','2023-05-02 21:00:43',NULL),(121,0,'logo-light','logo-light',8,'image/png',3736,'general/logo-light.png','[]','2023-05-02 21:00:43','2023-05-02 21:00:43',NULL),(122,0,'logo','logo',8,'image/png',3927,'general/logo.png','[]','2023-05-02 21:00:43','2023-05-02 21:00:43',NULL),(123,0,'master-card','master-card',8,'image/png',3407,'general/master-card.png','[]','2023-05-02 21:00:43','2023-05-02 21:00:43',NULL),(124,0,'newsletter','newsletter',8,'image/jpeg',1248,'general/newsletter.jpg','[]','2023-05-02 21:00:43','2023-05-02 21:00:43',NULL),(125,0,'paypal','paypal',8,'image/png',2670,'general/paypal.png','[]','2023-05-02 21:00:43','2023-05-02 21:00:43',NULL),(126,0,'visa','visa',8,'image/png',2841,'general/visa.png','[]','2023-05-02 21:00:43','2023-05-02 21:00:43',NULL),(127,0,'1','1',9,'image/jpeg',20539,'promotion/1.jpg','[]','2023-05-02 21:00:43','2023-05-02 21:00:43',NULL),(128,0,'2','2',9,'image/jpeg',18320,'promotion/2.jpg','[]','2023-05-02 21:00:43','2023-05-02 21:00:43',NULL),(129,0,'3','3',9,'image/jpeg',42872,'promotion/3.jpg','[]','2023-05-02 21:00:43','2023-05-02 21:00:43',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` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parent_id` bigint unsigned 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_index` (`parent_id`,`user_id`,`created_at`) ) ENGINE=InnoDB AUTO_INCREMENT=10 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,'2023-05-02 21:00:31','2023-05-02 21:00:31',NULL),(2,0,'product-categories','product-categories',0,'2023-05-02 21:00:31','2023-05-02 21:00:31',NULL),(3,0,'customers','customers',0,'2023-05-02 21:00:32','2023-05-02 21:00:32',NULL),(4,0,'products','products',0,'2023-05-02 21:00:33','2023-05-02 21:00:33',NULL),(5,0,'news','news',0,'2023-05-02 21:00:41','2023-05-02 21:00:41',NULL),(6,0,'testimonials','testimonials',0,'2023-05-02 21:00:42','2023-05-02 21:00:42',NULL),(7,0,'sliders','sliders',0,'2023-05-02 21:00:42','2023-05-02 21:00:42',NULL),(8,0,'general','general',0,'2023-05-02 21:00:42','2023-05-02 21:00:42',NULL),(9,0,'promotion','promotion',0,'2023-05-02 21:00:43','2023-05-02 21:00:43',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) COLLATE utf8mb4_unicode_ci NOT NULL, `value` text COLLATE utf8mb4_unicode_ci, `media_id` bigint unsigned DEFAULT NULL, `user_id` bigint unsigned 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` bigint unsigned NOT NULL, `location` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), 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','2023-05-02 21:00:42','2023-05-02 21:00:42'),(2,5,'main-menu','2023-05-02 21:00:42','2023-05-02 21:00: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` bigint unsigned NOT NULL, `parent_id` bigint unsigned NOT NULL DEFAULT '0', `reference_id` bigint unsigned DEFAULT NULL, `reference_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `icon_font` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` tinyint unsigned NOT NULL DEFAULT '0', `title` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `css_class` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `target` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '_self', `has_child` tinyint 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 `reference_id` (`reference_id`), KEY `reference_type` (`reference_type`) ) ENGINE=InnoDB AUTO_INCREMENT=57 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,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(2,1,0,NULL,NULL,'/products',NULL,0,'Products',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(3,1,0,NULL,NULL,'#',NULL,0,'Shop',NULL,'_self',1,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(4,1,3,1,'Botble\\Ecommerce\\Models\\ProductCategory','/product-categories/television',NULL,0,'Product Category',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(5,1,3,1,'Botble\\Ecommerce\\Models\\Brand','/brands/fashion-live',NULL,0,'Brand',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(6,1,3,1,'Botble\\Ecommerce\\Models\\ProductTag','/product-tags/electronic',NULL,0,'Product Tag',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(7,1,3,NULL,NULL,'products/beat-headphone',NULL,0,'Product Single',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(8,1,0,3,'Botble\\Page\\Models\\Page','/blog',NULL,0,'Blog',NULL,'_self',1,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(9,1,8,3,'Botble\\Page\\Models\\Page','/blog',NULL,0,'Blog Left Sidebar',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(10,1,8,1,'Botble\\Blog\\Models\\Category','/news/ecommerce',NULL,0,'Blog Category',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(11,1,8,1,'Botble\\Blog\\Models\\Tag','/tags/general',NULL,0,'Blog Tag',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(12,1,8,NULL,NULL,'news/4-expert-tips-on-how-to-choose-the-right-mens-wallet',NULL,0,'Blog Single',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(13,1,0,5,'Botble\\Page\\Models\\Page','/faq',NULL,0,'FAQ',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(14,1,0,2,'Botble\\Page\\Models\\Page','/contact-us',NULL,0,'Contact',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(15,2,0,4,'Botble\\Page\\Models\\Page','/about-us',NULL,0,'About Us',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(16,2,0,5,'Botble\\Page\\Models\\Page','/faq',NULL,0,'FAQ',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(17,2,0,6,'Botble\\Page\\Models\\Page','/location',NULL,0,'Location',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(18,2,0,7,'Botble\\Page\\Models\\Page','/affiliates',NULL,0,'Affiliates',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(19,2,0,2,'Botble\\Page\\Models\\Page','/contact-us',NULL,0,'Contact',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(20,3,0,1,'Botble\\Ecommerce\\Models\\ProductCategory','/product-categories/television',NULL,0,'Television',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(21,3,0,2,'Botble\\Ecommerce\\Models\\ProductCategory','/product-categories/home-audio-theaters',NULL,0,'Mobile',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(22,3,0,3,'Botble\\Ecommerce\\Models\\ProductCategory','/product-categories/tv-videos',NULL,0,'Headphone',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(23,3,0,4,'Botble\\Ecommerce\\Models\\ProductCategory','/product-categories/camera-photos-videos',NULL,0,'Watches',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(24,3,0,5,'Botble\\Ecommerce\\Models\\ProductCategory','/product-categories/cellphones-accessories',NULL,0,'Game',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(25,4,0,NULL,NULL,'/customer/overview',NULL,0,'My profile',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(26,4,0,NULL,NULL,'/wishlist',NULL,0,'Wishlist',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(27,4,0,NULL,NULL,'customer/orders',NULL,0,'Orders',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(28,4,0,NULL,NULL,'/orders/tracking',NULL,0,'Order tracking',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(29,5,0,NULL,NULL,'/',NULL,0,'Trang chủ',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(30,5,0,NULL,NULL,'/products',NULL,0,'Sản phẩm',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(31,5,0,NULL,NULL,'#',NULL,0,'Cửa hàng',NULL,'_self',1,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(32,5,31,1,'Botble\\Ecommerce\\Models\\ProductCategory','/product-categories/television',NULL,0,'Danh mục sản phẩm',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(33,5,31,1,'Botble\\Ecommerce\\Models\\Brand','/brands/fashion-live',NULL,0,'Thương hiệu',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(34,5,31,1,'Botble\\Ecommerce\\Models\\ProductTag','/product-tags/electronic',NULL,0,'Tag sản phẩm',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(35,5,31,NULL,NULL,'products/beat-headphone',NULL,0,'Sản phẩm chi tiết',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(36,5,0,3,'Botble\\Page\\Models\\Page','/blog',NULL,0,'Tin tức',NULL,'_self',1,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(37,5,36,3,'Botble\\Page\\Models\\Page','/blog',NULL,0,'Blog Left Sidebar',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(38,5,36,5,'Botble\\Blog\\Models\\Category',NULL,NULL,0,'Danh mục',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(39,5,36,6,'Botble\\Blog\\Models\\Tag',NULL,NULL,0,'Tag bài viết',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(40,5,36,NULL,NULL,'news/vi/4-expert-tips-on-how-to-choose-the-right-mens-wallet',NULL,0,'Bài viết chi tiết',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(41,5,0,5,'Botble\\Page\\Models\\Page','/faq',NULL,0,'FAQ',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(42,5,0,2,'Botble\\Page\\Models\\Page','/contact-us',NULL,0,'Liên hệ',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(43,6,0,4,'Botble\\Page\\Models\\Page','/about-us',NULL,0,'Về chúng tôi',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(44,6,0,5,'Botble\\Page\\Models\\Page','/faq',NULL,0,'Hỏi đáp',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(45,6,0,6,'Botble\\Page\\Models\\Page','/location',NULL,0,'Vị trí',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(46,6,0,7,'Botble\\Page\\Models\\Page','/affiliates',NULL,0,'Chi nhánh',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(47,6,0,2,'Botble\\Page\\Models\\Page','/contact-us',NULL,0,'Liên hệ',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(48,7,0,1,'Botble\\Ecommerce\\Models\\ProductCategory','/product-categories/television',NULL,0,'Tivi',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(49,7,0,2,'Botble\\Ecommerce\\Models\\ProductCategory','/product-categories/home-audio-theaters',NULL,0,'Di động',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(50,7,0,3,'Botble\\Ecommerce\\Models\\ProductCategory','/product-categories/tv-videos',NULL,0,'Tai nghe',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(51,7,0,4,'Botble\\Ecommerce\\Models\\ProductCategory','/product-categories/camera-photos-videos',NULL,0,'Đồng hồ',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(52,7,0,5,'Botble\\Ecommerce\\Models\\ProductCategory','/product-categories/cellphones-accessories',NULL,0,'Trò chơi',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(53,8,0,NULL,NULL,'/customer/overview',NULL,0,'Tài khoản của tôi',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(54,8,0,NULL,NULL,'/wishlist',NULL,0,'Danh sách yêu thích',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(55,8,0,NULL,NULL,'customer/orders',NULL,0,'Đơn hàng',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(56,8,0,NULL,NULL,'/orders/tracking',NULL,0,'Theo dõi đơn hàng',NULL,'_self',0,'2023-05-02 21:00:42','2023-05-02 21:00: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) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `menus_slug_unique` (`slug`) ) ENGINE=InnoDB AUTO_INCREMENT=9 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','2023-05-02 21:00:42','2023-05-02 21:00:42'),(2,'Useful Links','useful-links','published','2023-05-02 21:00:42','2023-05-02 21:00:42'),(3,'Categories','categories','published','2023-05-02 21:00:42','2023-05-02 21:00:42'),(4,'My Account','my-account','published','2023-05-02 21:00:42','2023-05-02 21:00:42'),(5,'Menu chính','menu-chinh','published','2023-05-02 21:00:42','2023-05-02 21:00:42'),(6,'Liên kết hữu ích','lien-ket-huu-ich','published','2023-05-02 21:00:42','2023-05-02 21:00:42'),(7,'Danh mục','danh-muc','published','2023-05-02 21:00:42','2023-05-02 21:00:42'),(8,'Tài khoản','tai-khoan','published','2023-05-02 21:00:42','2023-05-02 21:00: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) COLLATE utf8mb4_unicode_ci NOT NULL, `meta_value` text COLLATE utf8mb4_unicode_ci, `reference_id` bigint unsigned NOT NULL, `reference_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `meta_boxes_reference_id_index` (`reference_id`) ) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `meta_boxes` -- LOCK TABLES `meta_boxes` WRITE; /*!40000 ALTER TABLE `meta_boxes` DISABLE KEYS */; INSERT INTO `meta_boxes` VALUES (1,'icon','[\"flaticon-tv\"]',1,'Botble\\Ecommerce\\Models\\ProductCategory','2023-05-02 21:00:32','2023-05-02 21:00:32'),(2,'icon','[\"flaticon-responsive\"]',10,'Botble\\Ecommerce\\Models\\ProductCategory','2023-05-02 21:00:32','2023-05-02 21:00:32'),(3,'icon','[\"flaticon-headphones\"]',14,'Botble\\Ecommerce\\Models\\ProductCategory','2023-05-02 21:00:32','2023-05-02 21:00:32'),(4,'icon','[\"flaticon-watch\"]',19,'Botble\\Ecommerce\\Models\\ProductCategory','2023-05-02 21:00:32','2023-05-02 21:00:32'),(5,'icon','[\"flaticon-console\"]',24,'Botble\\Ecommerce\\Models\\ProductCategory','2023-05-02 21:00:32','2023-05-02 21:00:32'),(6,'icon','[\"flaticon-camera\"]',25,'Botble\\Ecommerce\\Models\\ProductCategory','2023-05-02 21:00:32','2023-05-02 21:00:32'),(7,'icon','[\"flaticon-music-system\"]',26,'Botble\\Ecommerce\\Models\\ProductCategory','2023-05-02 21:00:32','2023-05-02 21:00:32'),(8,'icon','[\"flaticon-responsive\"]',27,'Botble\\Ecommerce\\Models\\ProductCategory','2023-05-02 21:00:32','2023-05-02 21:00:32'),(9,'icon','[\"flaticon-plugins\"]',28,'Botble\\Ecommerce\\Models\\ProductCategory','2023-05-02 21:00:32','2023-05-02 21:00:32'),(10,'icon','[\"flaticon-music-system\"]',29,'Botble\\Ecommerce\\Models\\ProductCategory','2023-05-02 21:00:32','2023-05-02 21:00:32'),(11,'icon','[\"flaticon-monitor\"]',30,'Botble\\Ecommerce\\Models\\ProductCategory','2023-05-02 21:00:32','2023-05-02 21:00:32'),(12,'icon','[\"flaticon-printer\"]',31,'Botble\\Ecommerce\\Models\\ProductCategory','2023-05-02 21:00:32','2023-05-02 21:00:32'),(13,'icon','[\"flaticon-tv\"]',32,'Botble\\Ecommerce\\Models\\ProductCategory','2023-05-02 21:00:32','2023-05-02 21:00:32'),(14,'icon','[\"flaticon-fax\"]',33,'Botble\\Ecommerce\\Models\\ProductCategory','2023-05-02 21:00:32','2023-05-02 21:00:32'),(15,'icon','[\"flaticon-mouse\"]',34,'Botble\\Ecommerce\\Models\\ProductCategory','2023-05-02 21:00:32','2023-05-02 21:00:32'),(16,'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','2023-05-02 21:00:37','2023-05-02 21:00:37'),(17,'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','2023-05-02 21:00:37','2023-05-02 21:00:37'),(18,'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','2023-05-02 21:00:37','2023-05-02 21:00:37'),(19,'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','2023-05-02 21:00:37','2023-05-02 21:00:37'),(20,'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','2023-05-02 21:00:37','2023-05-02 21:00:37'),(21,'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','2023-05-02 21:00:37','2023-05-02 21:00:37'),(22,'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','2023-05-02 21:00:37','2023-05-02 21:00:37'),(23,'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','2023-05-02 21:00:37','2023-05-02 21:00:37'),(24,'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.\"}]]]',9,'Botble\\Ecommerce\\Models\\Product','2023-05-02 21:00:37','2023-05-02 21:00:37'),(25,'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.\"}]]]',10,'Botble\\Ecommerce\\Models\\Product','2023-05-02 21:00:37','2023-05-02 21:00:37'),(26,'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.\"}]]]',11,'Botble\\Ecommerce\\Models\\Product','2023-05-02 21:00:37','2023-05-02 21:00:37'),(27,'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.\"}]]]',12,'Botble\\Ecommerce\\Models\\Product','2023-05-02 21:00:37','2023-05-02 21:00:37'),(28,'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.\"}]]]',13,'Botble\\Ecommerce\\Models\\Product','2023-05-02 21:00:37','2023-05-02 21:00:37'),(29,'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.\"}]]]',14,'Botble\\Ecommerce\\Models\\Product','2023-05-02 21:00:37','2023-05-02 21:00:37'),(30,'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.\"}]]]',15,'Botble\\Ecommerce\\Models\\Product','2023-05-02 21:00:37','2023-05-02 21:00:37'),(31,'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.\"}]]]',16,'Botble\\Ecommerce\\Models\\Product','2023-05-02 21:00:37','2023-05-02 21:00:37'),(32,'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.\"}]]]',17,'Botble\\Ecommerce\\Models\\Product','2023-05-02 21:00:37','2023-05-02 21:00:37'),(33,'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.\"}]]]',18,'Botble\\Ecommerce\\Models\\Product','2023-05-02 21:00:37','2023-05-02 21:00:37'),(34,'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.\"}]]]',19,'Botble\\Ecommerce\\Models\\Product','2023-05-02 21:00:37','2023-05-02 21:00:37'),(35,'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.\"}]]]',20,'Botble\\Ecommerce\\Models\\Product','2023-05-02 21:00:37','2023-05-02 21:00:37'),(36,'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.\"}]]]',21,'Botble\\Ecommerce\\Models\\Product','2023-05-02 21:00:37','2023-05-02 21:00:37'),(37,'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.\"}]]]',22,'Botble\\Ecommerce\\Models\\Product','2023-05-02 21:00:37','2023-05-02 21:00:37'),(38,'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.\"}]]]',23,'Botble\\Ecommerce\\Models\\Product','2023-05-02 21:00:37','2023-05-02 21:00:37'),(39,'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.\"}]]]',24,'Botble\\Ecommerce\\Models\\Product','2023-05-02 21:00:37','2023-05-02 21:00:37'),(40,'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.\"}]]]',25,'Botble\\Ecommerce\\Models\\Product','2023-05-02 21:00:37','2023-05-02 21:00:37'),(41,'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.\"}]]]',26,'Botble\\Ecommerce\\Models\\Product','2023-05-02 21:00:37','2023-05-02 21:00:37'),(42,'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.\"}]]]',27,'Botble\\Ecommerce\\Models\\Product','2023-05-02 21:00:37','2023-05-02 21:00:37'),(43,'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.\"}]]]',28,'Botble\\Ecommerce\\Models\\Product','2023-05-02 21:00:37','2023-05-02 21:00:37'),(44,'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.\"}]]]',29,'Botble\\Ecommerce\\Models\\Product','2023-05-02 21:00:37','2023-05-02 21:00:37'),(45,'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.\"}]]]',30,'Botble\\Ecommerce\\Models\\Product','2023-05-02 21:00:37','2023-05-02 21:00:37'),(46,'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.\"}]]]',31,'Botble\\Ecommerce\\Models\\Product','2023-05-02 21:00:37','2023-05-02 21:00:37'),(47,'button_text','[\"Shop now\"]',1,'Botble\\SimpleSlider\\Models\\SimpleSliderItem','2023-05-02 21:00:42','2023-05-02 21:00:42'),(48,'button_text','[\"Discover now\"]',2,'Botble\\SimpleSlider\\Models\\SimpleSliderItem','2023-05-02 21:00:42','2023-05-02 21:00:42'),(49,'button_text','[\"Shop now\"]',3,'Botble\\SimpleSlider\\Models\\SimpleSliderItem','2023-05-02 21:00:42','2023-05-02 21:00:42'),(50,'button_text','[\"Mua ngay\"]',4,'Botble\\SimpleSlider\\Models\\SimpleSliderItem','2023-05-02 21:00:42','2023-05-02 21:00:42'),(51,'button_text','[\"Kh\\u00e1m ph\\u00e1 ngay\"]',5,'Botble\\SimpleSlider\\Models\\SimpleSliderItem','2023-05-02 21:00:42','2023-05-02 21:00:42'),(52,'button_text','[\"Mua ngay\"]',6,'Botble\\SimpleSlider\\Models\\SimpleSliderItem','2023-05-02 21:00:42','2023-05-02 21:00:42'); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=116 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_reset_tokens_table',1),(5,'2016_06_10_230148_create_acl_tables',1),(6,'2016_06_14_230857_create_menus_table',1),(7,'2016_06_28_221418_create_pages_table',1),(8,'2016_10_05_074239_create_setting_table',1),(9,'2016_11_28_032840_create_dashboard_widget_tables',1),(10,'2016_12_16_084601_create_widgets_table',1),(11,'2017_05_09_070343_create_media_tables',1),(12,'2017_11_03_070450_create_slug_table',1),(13,'2019_01_05_053554_create_jobs_table',1),(14,'2019_08_19_000000_create_failed_jobs_table',1),(15,'2019_12_14_000001_create_personal_access_tokens_table',1),(16,'2022_04_20_100851_add_index_to_media_table',1),(17,'2022_04_20_101046_add_index_to_menu_table',1),(18,'2022_07_10_034813_move_lang_folder_to_root',1),(19,'2022_08_04_051940_add_missing_column_expires_at',1),(20,'2022_09_01_000001_create_admin_notifications_tables',1),(21,'2022_10_14_024629_drop_column_is_featured',1),(22,'2022_11_18_063357_add_missing_timestamp_in_table_settings',1),(23,'2022_12_02_093615_update_slug_index_columns',1),(24,'2023_01_30_024431_add_alt_to_media_table',1),(25,'2023_02_16_042611_drop_table_password_resets',1),(26,'2023_04_23_005903_add_column_permissions_to_admin_notifications',1),(27,'2020_11_18_150916_ads_create_ads_table',2),(28,'2021_12_02_035301_add_ads_translations_table',2),(29,'2023_04_17_062645_add_open_in_new_tab',2),(30,'2015_06_29_025744_create_audit_history',3),(31,'2015_06_18_033822_create_blog_table',4),(32,'2021_02_16_092633_remove_default_value_for_author_type',4),(33,'2021_12_03_030600_create_blog_translations',4),(34,'2022_04_19_113923_add_index_to_table_posts',4),(35,'2016_06_17_091537_create_contacts_table',5),(36,'2020_03_05_041139_create_ecommerce_tables',6),(37,'2021_01_01_044147_ecommerce_create_flash_sale_table',6),(38,'2021_01_17_082713_add_column_is_featured_to_product_collections_table',6),(39,'2021_01_18_024333_add_zip_code_into_table_customer_addresses',6),(40,'2021_02_18_073505_update_table_ec_reviews',6),(41,'2021_03_10_024419_add_column_confirmed_at_to_table_ec_customers',6),(42,'2021_03_10_025153_change_column_tax_amount',6),(43,'2021_03_20_033103_add_column_availability_to_table_ec_products',6),(44,'2021_04_28_074008_ecommerce_create_product_label_table',6),(45,'2021_05_31_173037_ecommerce_create_ec_products_translations',6),(46,'2021_06_28_153141_correct_slugs_data',6),(47,'2021_08_17_105016_remove_column_currency_id_in_some_tables',6),(48,'2021_08_30_142128_add_images_column_to_ec_reviews_table',6),(49,'2021_09_01_115151_remove_unused_fields_in_ec_products',6),(50,'2021_10_04_030050_add_column_created_by_to_table_ec_products',6),(51,'2021_10_05_122616_add_status_column_to_ec_customers_table',6),(52,'2021_11_03_025806_nullable_phone_number_in_ec_customer_addresses',6),(53,'2021_11_23_071403_correct_languages_for_product_variations',6),(54,'2021_11_28_031808_add_product_tags_translations',6),(55,'2021_12_01_031123_add_featured_image_to_ec_products',6),(56,'2022_01_01_033107_update_table_ec_shipments',6),(57,'2022_02_16_042457_improve_product_attribute_sets',6),(58,'2022_03_22_075758_correct_product_name',6),(59,'2022_04_19_113334_add_index_to_ec_products',6),(60,'2022_04_28_144405_remove_unused_table',6),(61,'2022_05_05_115015_create_ec_customer_recently_viewed_products_table',6),(62,'2022_05_18_143720_add_index_to_table_ec_product_categories',6),(63,'2022_06_16_095633_add_index_to_some_tables',6),(64,'2022_06_30_035148_create_order_referrals_table',6),(65,'2022_07_24_153815_add_completed_at_to_ec_orders_table',6),(66,'2022_08_14_032836_create_ec_order_returns_table',6),(67,'2022_08_14_033554_create_ec_order_return_items_table',6),(68,'2022_08_15_040324_add_billing_address',6),(69,'2022_08_30_091114_support_digital_products_table',6),(70,'2022_09_13_095744_create_options_table',6),(71,'2022_09_13_104347_create_option_value_table',6),(72,'2022_10_05_163518_alter_table_ec_order_product',6),(73,'2022_10_12_041517_create_invoices_table',6),(74,'2022_10_12_142226_update_orders_table',6),(75,'2022_10_13_024916_update_table_order_returns',6),(76,'2022_10_21_030830_update_columns_in_ec_shipments_table',6),(77,'2022_10_28_021046_update_columns_in_ec_shipments_table',6),(78,'2022_11_16_034522_update_type_column_in_ec_shipping_rules_table',6),(79,'2022_11_19_041643_add_ec_tax_product_table',6),(80,'2022_12_12_063830_update_tax_defadult_in_ec_tax_products_table',6),(81,'2022_12_17_041532_fix_address_in_order_invoice',6),(82,'2022_12_26_070329_create_ec_product_views_table',6),(83,'2023_01_04_033051_fix_product_categories',6),(84,'2023_01_09_050400_add_ec_global_options_translations_table',6),(85,'2023_01_10_093754_add_missing_option_value_id',6),(86,'2023_01_17_082713_add_column_barcode_and_cost_per_item_to_product_table',6),(87,'2023_01_26_021854_add_ec_customer_used_coupons_table',6),(88,'2023_02_08_015900_update_options_column_in_ec_order_product_table',6),(89,'2023_02_27_095752_remove_duplicate_reviews',6),(90,'2023_03_20_115757_add_user_type_column_to_ec_shipment_histories_table',6),(91,'2023_05_03_011331_add_missing_column_price_into_invoice_items_table',6),(92,'2018_07_09_221238_create_faq_table',7),(93,'2021_12_03_082134_create_faq_translations',7),(94,'2016_10_03_032336_create_languages_table',8),(95,'2021_10_25_021023_fix-priority-load-for-language-advanced',9),(96,'2021_12_03_075608_create_page_translations',9),(97,'2019_11_18_061011_create_country_table',10),(98,'2021_12_03_084118_create_location_translations',10),(99,'2021_12_03_094518_migrate_old_location_data',10),(100,'2021_12_10_034440_switch_plugin_location_to_use_language_advanced',10),(101,'2022_01_16_085908_improve_plugin_location',10),(102,'2022_08_04_052122_delete_location_backup_tables',10),(103,'2023_04_23_061847_increase_state_translations_abbreviation_column',10),(104,'2017_10_24_154832_create_newsletter_table',11),(105,'2017_05_18_080441_create_payment_tables',12),(106,'2021_03_27_144913_add_customer_type_into_table_payments',12),(107,'2021_05_24_034720_make_column_currency_nullable',12),(108,'2021_08_09_161302_add_metadata_column_to_payments_table',12),(109,'2021_10_19_020859_update_metadata_field',12),(110,'2022_06_28_151901_activate_paypal_stripe_plugin',12),(111,'2022_07_07_153354_update_charge_id_in_table_payments',12),(112,'2017_07_11_140018_create_simple_slider_table',13),(113,'2018_07_09_214610_create_testimonial_table',14),(114,'2021_12_03_083642_create_testimonials_translations',14),(115,'2016_10_07_193005_create_translations_table',15); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'subscribed', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `newsletters` -- LOCK TABLES `newsletters` WRITE; /*!40000 ALTER TABLE `newsletters` DISABLE KEYS */; /*!40000 ALTER TABLE `newsletters` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pages` -- DROP TABLE IF EXISTS `pages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `pages` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `content` longtext COLLATE utf8mb4_unicode_ci, `user_id` bigint unsigned NOT NULL, `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `template` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `pages_user_id_index` (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pages` -- LOCK TABLES `pages` WRITE; /*!40000 ALTER TABLE `pages` DISABLE KEYS */; INSERT INTO `pages` VALUES (1,'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>[flash-sale title=\"Best deals for you\"][/flash-sale]</div><div>[product-collections title=\"Exclusive Products\"][/product-collections]</div><div>[theme-ads key_1=\"IZ6WU8KUALYD\" key_2=\"ILSFJVYFGCPZ\" key_3=\"ZDOZUZZIU7FT\"][/theme-ads]</div><div>[trending-products title=\"Trending Products\"][/trending-products]</div><div>[product-blocks featured_product_title=\"Featured Products\" top_rated_product_title=\"Top Rated Products\" on_sale_product_title=\"On Sale Products\"][/product-blocks]</div><div>[featured-brands title=\"Our Brands\"][/featured-brands]</div><div>[featured-news title=\"Visit Our Blog\" subtitle=\"Our Blog updated the newest trend of the world regularly\"][/featured-news]</div><div>[testimonials title=\"Our Client Say!\"][/testimonials]</div><div>[our-features icon1=\"flaticon-shipped\" title1=\"Free Delivery\" subtitle1=\"Free shipping on all US order or order above $200\" icon2=\"flaticon-money-back\" title2=\"30 Day Returns Guarantee\" subtitle2=\"Simply return it within 30 days for an exchange\" icon3=\"flaticon-support\" title3=\"27/4 Online Support\" subtitle3=\"Contact us 24 hours a day, 7 days a week\"][/our-features]</div><div>[newsletter-form title=\"Join Our Newsletter Now\" subtitle=\"Register now to get updates on promotions.\"][/newsletter-form]</div>',1,NULL,'homepage',NULL,'published','2023-05-02 21:00:42','2023-05-02 21:00:42'),(2,'Contact us','<p>[contact-form][/contact-form]</p>',1,NULL,'default',NULL,'published','2023-05-02 21:00:42','2023-05-02 21:00:42'),(3,'Blog','<p>---</p>',1,NULL,'blog-sidebar',NULL,'published','2023-05-02 21:00:42','2023-05-02 21:00:42'),(4,'About us','<p>I wish I could show you our cat Dinah: I think that proved it at all. \'But perhaps it was as much as serpents do, you know.\' He was an old Turtle--we used to say.\' \'So he did, so he did,\' said the Queen, tossing her head in the after-time, be herself a grown woman; and how she was talking. Alice could not stand, and she sat still and said \'That\'s very important,\' the King eagerly, and he says it\'s so useful, it\'s worth a hundred pounds! He says it kills all the jurymen on to the door, and.</p>',1,NULL,'default',NULL,'published','2023-05-02 21:00:42','2023-05-02 21:00:42'),(5,'FAQ','<div>[faqs][/faqs]</div>',1,NULL,'default',NULL,'published','2023-05-02 21:00:42','2023-05-02 21:00:42'),(6,'Location','<p>Mouse to tell me the truth: did you manage on the ground near the door of the sea.\' \'I couldn\'t afford to learn it.\' said the Hatter. \'He won\'t stand beating. Now, if you could see her after the candle is blown out, for she felt certain it must be kind to them,\' thought Alice, \'it\'ll never do to ask: perhaps I shall have to turn into a butterfly, I should think!\' (Dinah was the White Rabbit, with a yelp of delight, and rushed at the Gryphon answered, very nearly carried it out to sea. So they.</p>',1,NULL,'default',NULL,'published','2023-05-02 21:00:42','2023-05-02 21:00:42'),(7,'Affiliates','<p>O Mouse!\' (Alice thought this must be collected at once crowded round her, calling out in a moment. \'Let\'s go on till you come to the shore, and then quietly marched off after the birds! Why, she\'ll eat a little recovered from the roof. There were doors all round her, calling out in a long, low hall, which was the Duchess\'s cook. She carried the pepper-box in her pocket) till she was quite tired and out of a muchness?\' \'Really, now you ask me,\' said Alice, who was talking. Alice could hear the.</p>',1,NULL,'default',NULL,'published','2023-05-02 21:00:42','2023-05-02 21:00:42'),(8,'Brands','<p>[all-brands][/all-brands]</p>',1,NULL,'default',NULL,'published','2023-05-02 21:00:42','2023-05-02 21:00:42'),(9,'Cookie Policy','<h3>EU Cookie Consent</h3><p>To use this website we are using Cookies and collecting some data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.</p><h4>Essential Data</h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.</p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.</p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \"token\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.</p>',1,NULL,'default',NULL,'published','2023-05-02 21:00:42','2023-05-02 21:00:42'); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL, `pages_id` bigint unsigned NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` longtext 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>[flash-sale title=\"Khuyến mãi tốt nhất cho bạn\"][/flash-sale]</div><div>[product-collections title=\"Sản phẩm độc quyền\"][/product-collections]</div><div>[theme-ads key_1=\"IZ6WU8KUALYD\" key_2=\"ILSFJVYFGCPZ\" key_3=\"ZDOZUZZIU7FT\"][/theme-ads]</div><div>[trending-products title=\"Sản phẩm xu hướng\"][/trending-products]</div><div>[product-blocks featured_product_title=\"Nổi bật\" top_rated_product_title=\"Xếp hạng cao nhất\" on_sale_product_title=\"Đang khuyến mãi\"][/product-blocks]</div><div>[featured-brands title=\"Thương hiệu\"][/featured-brands]</div><div>[featured-news title=\"Tin tức\" 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\"][/featured-news]</div><div>[testimonials title=\"Nhận xét từ khách hàng!\"][/testimonials]</div><div>[our-features icon1=\"flaticon-shipped\" 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=\"flaticon-money-back\" title2=\"Đảm bảo hoàn trả trong 30 ngày\" subtitle2=\"Chỉ cần trả lại nó trong vòng 30 ngày để đổi\" icon3=\"flaticon-support\" title3=\"Hỗ trợ trực tuyến 27/4\" subtitle3=\"Liên hệ với chúng tôi 24 giờ một ngày, 7 ngày một tuần\"][/our-features]</div><div>[newsletter-form title=\"Theo dõi bản tin ngay bây giờ\" subtitle=\"Đăng ký ngay để cập nhật các chương trình khuyến mãi.\"][/newsletter-form]</div>'),('vi',2,'Liên hệ',NULL,'<p>[contact-form][/contact-form]</p>'),('vi',3,'Tin tức',NULL,'<p>---</p>'),('vi',4,'Về chúng tôi',NULL,'<p>Alice put down the bottle, saying to herself that perhaps it was an old Crab took the thimble, saying \'We beg your acceptance of this pool? I am to see the earth takes twenty-four hours to turn into a cucumber-frame, or something of the garden: the roses growing on it but tea. \'I don\'t believe it,\' said Alice, \'I\'ve often seen them so often, of course had to ask help of any good reason, and as it is.\' \'Then you shouldn\'t talk,\' said the Mock Turtle would be like, \'--for they haven\'t got much.</p>'),('vi',5,'Câu hỏi thường gặp',NULL,'<div>[faqs][/faqs]</div>'),('vi',6,'Vị trí',NULL,'<p>Canary called out \'The race is over!\' and they can\'t prove I did: there\'s no harm in trying.\' So she set off at once: one old Magpie began wrapping itself up and throw us, with the game,\' the Queen to-day?\' \'I should think you could draw treacle out of his teacup and bread-and-butter, and went on in a sulky tone, as it was her dream:-- First, she dreamed of little birds and animals that had made out the proper way of nursing it, (which was to find her way into that lovely garden. I think I can.</p>'),('vi',7,'Chi nhánh',NULL,'<p>Duchess said to the game. CHAPTER IX. The Mock Turtle went on all the arches are gone from this morning,\' said Alice a little feeble, squeaking voice, (\'That\'s Bill,\' thought Alice,) \'Well, I hardly know--No more, thank ye; I\'m better now--but I\'m a deal faster than it does.\' \'Which would NOT be an old conger-eel, that used to it in time,\' said the Hatter. \'Stolen!\' the King said to herself, \'I wish I hadn\'t cried so much!\' Alas! it was a dead silence. \'It\'s a pun!\' the King say in a very.</p>'),('vi',8,'Thương hiệu',NULL,'<p>[all-brands][/all-brands]</p>'),('vi',9,'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>'); /*!40000 ALTER TABLE `pages_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `password_reset_tokens` -- DROP TABLE IF EXISTS `password_reset_tokens`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `password_reset_tokens` ( `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `password_reset_tokens` -- LOCK TABLES `password_reset_tokens` WRITE; /*!40000 ALTER TABLE `password_reset_tokens` DISABLE KEYS */; /*!40000 ALTER TABLE `password_reset_tokens` 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` bigint unsigned NOT NULL DEFAULT '0', `charge_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_channel` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` decimal(15,2) unsigned NOT NULL, `order_id` bigint unsigned DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT 'pending', `payment_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT 'confirm', `customer_id` bigint unsigned DEFAULT NULL, `refunded_amount` decimal(15,2) unsigned DEFAULT NULL, `refund_note` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `customer_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `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,'DIW2VB6HXF','paystack',NULL,365.25,1,'completed','confirm',6,NULL,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40','Botble\\Ecommerce\\Models\\Customer',NULL),(2,'USD',0,'KTCYCZCEXA','paypal',NULL,403.73,2,'completed','confirm',3,NULL,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40','Botble\\Ecommerce\\Models\\Customer',NULL),(3,'USD',0,'JGSJ5XDRKD','stripe',NULL,792.25,3,'completed','confirm',11,NULL,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40','Botble\\Ecommerce\\Models\\Customer',NULL),(4,'USD',0,'IS4VBKB99O','sslcommerz',NULL,688.15,4,'completed','confirm',2,NULL,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40','Botble\\Ecommerce\\Models\\Customer',NULL),(5,'USD',0,'EUDA5RCFRB','paypal',NULL,1054.70,5,'completed','confirm',10,NULL,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40','Botble\\Ecommerce\\Models\\Customer',NULL),(6,'USD',0,'GE4OLHF7BQ','razorpay',NULL,1201.73,6,'completed','confirm',10,NULL,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40','Botble\\Ecommerce\\Models\\Customer',NULL),(7,'USD',0,'WZ5F9PYN0S','stripe',NULL,467.30,7,'completed','confirm',5,NULL,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40','Botble\\Ecommerce\\Models\\Customer',NULL),(8,'USD',0,'JVI4GLXYZI','razorpay',NULL,2366.50,8,'completed','confirm',7,NULL,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40','Botble\\Ecommerce\\Models\\Customer',NULL),(9,'USD',0,'TSKPDLWLKE','mollie',NULL,1656.90,9,'completed','confirm',3,NULL,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40','Botble\\Ecommerce\\Models\\Customer',NULL),(10,'USD',0,'9OIMZD1GRO','stripe',NULL,1017.00,10,'completed','confirm',6,NULL,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40','Botble\\Ecommerce\\Models\\Customer',NULL),(11,'USD',0,'88R70SLCY7','cod',NULL,1433.90,11,'pending','confirm',9,NULL,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40','Botble\\Ecommerce\\Models\\Customer',NULL),(12,'USD',0,'JKSYUDN8IF','bank_transfer',NULL,844.90,12,'pending','confirm',11,NULL,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40','Botble\\Ecommerce\\Models\\Customer',NULL),(13,'USD',0,'ICBXI2RYJ5','paystack',NULL,2570.90,13,'completed','confirm',1,NULL,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40','Botble\\Ecommerce\\Models\\Customer',NULL),(14,'USD',0,'VDDQPR9RDI','mollie',NULL,439.90,14,'completed','confirm',4,NULL,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40','Botble\\Ecommerce\\Models\\Customer',NULL),(15,'USD',0,'OJOYJ50WUV','mollie',NULL,174.90,15,'completed','confirm',6,NULL,NULL,'2023-05-02 21:00:40','2023-05-02 21:00:40','Botble\\Ecommerce\\Models\\Customer',NULL),(16,'USD',0,'LBERGRTC4G','sslcommerz',NULL,919.70,16,'completed','confirm',3,NULL,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41','Botble\\Ecommerce\\Models\\Customer',NULL),(17,'USD',0,'E26ED2MGO9','bank_transfer',NULL,1280.30,17,'pending','confirm',9,NULL,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41','Botble\\Ecommerce\\Models\\Customer',NULL),(18,'USD',0,'9MWVBVN3FR','cod',NULL,1386.50,18,'pending','confirm',10,NULL,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41','Botble\\Ecommerce\\Models\\Customer',NULL),(19,'USD',0,'DFKJYEF5SA','stripe',NULL,578.15,19,'completed','confirm',4,NULL,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41','Botble\\Ecommerce\\Models\\Customer',NULL),(20,'USD',0,'IWYWSWDCEZ','razorpay',NULL,392.85,20,'completed','confirm',7,NULL,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41','Botble\\Ecommerce\\Models\\Customer',NULL); /*!40000 ALTER TABLE `payments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `personal_access_tokens` -- DROP TABLE IF EXISTS `personal_access_tokens`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `personal_access_tokens` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `tokenable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci, `last_used_at` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `personal_access_tokens_token_unique` (`token`), KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `personal_access_tokens` -- LOCK TABLES `personal_access_tokens` WRITE; /*!40000 ALTER TABLE `personal_access_tokens` DISABLE KEYS */; /*!40000 ALTER TABLE `personal_access_tokens` 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` ( `category_id` bigint unsigned NOT NULL, `post_id` bigint unsigned NOT NULL, KEY `post_categories_category_id_index` (`category_id`), KEY `post_categories_post_id_index` (`post_id`) ) ENGINE=InnoDB 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),(3,1),(1,2),(4,2),(2,3),(4,3),(2,4),(3,4),(1,5),(3,5),(1,6),(4,6),(2,7),(3,7),(1,8),(4,8),(1,9),(3,9),(2,10),(3,10),(1,11),(4,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` ( `tag_id` bigint unsigned NOT NULL, `post_id` bigint unsigned NOT NULL, KEY `post_tags_tag_id_index` (`tag_id`), KEY `post_tags_post_id_index` (`post_id`) ) ENGINE=InnoDB 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),(2,1),(3,1),(4,1),(5,1),(1,2),(2,2),(3,2),(4,2),(5,2),(1,3),(2,3),(3,3),(4,3),(5,3),(1,4),(2,4),(3,4),(4,4),(5,4),(1,5),(2,5),(3,5),(4,5),(5,5),(1,6),(2,6),(3,6),(4,6),(5,6),(1,7),(2,7),(3,7),(4,7),(5,7),(1,8),(2,8),(3,8),(4,8),(5,8),(1,9),(2,9),(3,9),(4,9),(5,9),(1,10),(2,10),(3,10),(4,10),(5,10),(1,11),(2,11),(3,11),(4,11),(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) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` longtext COLLATE utf8mb4_unicode_ci, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `author_id` bigint unsigned 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) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `views` int unsigned NOT NULL DEFAULT '0', `format_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `status` (`status`), KEY `author_id` (`author_id`), KEY `author_type` (`author_type`), KEY `created_at` (`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 </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’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 <strong>minimalist style</strong> 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’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 </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’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’ 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’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 </p>\n\n<hr />\n<h4><strong>Number 3: Don’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 </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> </p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/1.jpg',283,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41'),(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 </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’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 <strong>minimalist style</strong> 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’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 </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’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’ 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’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 </p>\n\n<hr />\n<h4><strong>Number 3: Don’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 </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> </p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/2.jpg',1671,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41'),(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 </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’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 <strong>minimalist style</strong> 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’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 </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’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’ 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’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 </p>\n\n<hr />\n<h4><strong>Number 3: Don’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 </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> </p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/3.jpg',708,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41'),(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 </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’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 <strong>minimalist style</strong> 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’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 </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’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’ 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’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 </p>\n\n<hr />\n<h4><strong>Number 3: Don’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 </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> </p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/4.jpg',1747,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41'),(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 </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’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 <strong>minimalist style</strong> 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’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 </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’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’ 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’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 </p>\n\n<hr />\n<h4><strong>Number 3: Don’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 </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> </p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/5.jpg',1225,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41'),(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 </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’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 <strong>minimalist style</strong> 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’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 </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’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’ 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’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 </p>\n\n<hr />\n<h4><strong>Number 3: Don’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 </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> </p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/6.jpg',2252,NULL,'2023-05-02 21:00:41','2023-05-02 21:00:41'),(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 </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’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 <strong>minimalist style</strong> 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’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 </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’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’ 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’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 </p>\n\n<hr />\n<h4><strong>Number 3: Don’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 </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> </p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/7.jpg',1774,NULL,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(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 </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’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 <strong>minimalist style</strong> 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’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 </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’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’ 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’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 </p>\n\n<hr />\n<h4><strong>Number 3: Don’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 </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> </p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/8.jpg',1917,NULL,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(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 </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’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 <strong>minimalist style</strong> 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’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 </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’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’ 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’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 </p>\n\n<hr />\n<h4><strong>Number 3: Don’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 </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> </p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/9.jpg',2419,NULL,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(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 </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’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 <strong>minimalist style</strong> 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’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 </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’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’ 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’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 </p>\n\n<hr />\n<h4><strong>Number 3: Don’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 </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> </p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/10.jpg',1232,NULL,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(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 </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’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 <strong>minimalist style</strong> 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’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 </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’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’ 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’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 </p>\n\n<hr />\n<h4><strong>Number 3: Don’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 </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> </p>\n','published',1,'Botble\\ACL\\Models\\User',0,'news/11.jpg',1776,NULL,'2023-05-02 21:00:42','2023-05-02 21:00:42'); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL, `posts_id` bigint unsigned NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` longtext 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 </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’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 <strong>minimalist style</strong> 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’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 </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’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’ 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’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 </p>\n\n<hr />\n<h4><strong>Number 3: Don’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 </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> </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 </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’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 <strong>minimalist style</strong> 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’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 </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’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’ 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’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 </p>\n\n<hr />\n<h4><strong>Number 3: Don’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 </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> </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 </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’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 <strong>minimalist style</strong> 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’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 </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’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’ 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’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 </p>\n\n<hr />\n<h4><strong>Number 3: Don’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 </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> </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 </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’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 <strong>minimalist style</strong> 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’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 </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’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’ 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’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 </p>\n\n<hr />\n<h4><strong>Number 3: Don’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 </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> </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 </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’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 <strong>minimalist style</strong> 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’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 </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’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’ 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’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 </p>\n\n<hr />\n<h4><strong>Number 3: Don’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 </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> </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 </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’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 <strong>minimalist style</strong> 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’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 </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’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’ 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’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 </p>\n\n<hr />\n<h4><strong>Number 3: Don’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 </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> </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 </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’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 <strong>minimalist style</strong> 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’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 </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’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’ 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’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 </p>\n\n<hr />\n<h4><strong>Number 3: Don’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 </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> </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 </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’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 <strong>minimalist style</strong> 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’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 </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’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’ 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’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 </p>\n\n<hr />\n<h4><strong>Number 3: Don’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 </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> </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 </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’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 <strong>minimalist style</strong> 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’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 </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’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’ 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’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 </p>\n\n<hr />\n<h4><strong>Number 3: Don’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 </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> </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 </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’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 <strong>minimalist style</strong> 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’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 </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’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’ 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’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 </p>\n\n<hr />\n<h4><strong>Number 3: Don’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 </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> </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 </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’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 <strong>minimalist style</strong> 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’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 </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’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’ 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’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 </p>\n\n<hr />\n<h4><strong>Number 3: Don’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 </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> </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) COLLATE utf8mb4_unicode_ci NOT NULL, `revisionable_id` bigint unsigned NOT NULL, `user_id` bigint unsigned DEFAULT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `old_value` text COLLATE utf8mb4_unicode_ci, `new_value` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `revisions_revisionable_id_revisionable_type_index` (`revisionable_id`,`revisionable_type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `revisions` -- LOCK TABLES `revisions` WRITE; /*!40000 ALTER TABLE `revisions` DISABLE KEYS */; /*!40000 ALTER TABLE `revisions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `role_users` -- DROP TABLE IF EXISTS `role_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `role_users` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint unsigned NOT NULL, `role_id` bigint 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 AUTO_INCREMENT=2 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 */; INSERT INTO `role_users` VALUES (1,2,1,'2023-05-02 21:00:42','2023-05-02 21:00:42'); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `permissions` text COLLATE utf8mb4_unicode_ci, `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_default` tinyint unsigned NOT NULL DEFAULT '0', `created_by` bigint unsigned NOT NULL, `updated_by` bigint 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 AUTO_INCREMENT=2 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 */; INSERT INTO `roles` VALUES (1,'admin','Admin','{\"users.index\":true,\"users.create\":true,\"users.edit\":true,\"users.destroy\":true,\"roles.index\":true,\"roles.create\":true,\"roles.edit\":true,\"roles.destroy\":true,\"core.system\":true,\"core.manage.license\":true,\"media.index\":true,\"files.index\":true,\"files.create\":true,\"files.edit\":true,\"files.trash\":true,\"files.destroy\":true,\"folders.index\":true,\"folders.create\":true,\"folders.edit\":true,\"folders.trash\":true,\"folders.destroy\":true,\"settings.options\":true,\"settings.email\":true,\"settings.media\":true,\"api.settings\":true,\"menus.index\":true,\"menus.create\":true,\"menus.edit\":true,\"menus.destroy\":true,\"pages.index\":true,\"pages.create\":true,\"pages.edit\":true,\"pages.destroy\":true,\"plugins.index\":true,\"plugins.edit\":true,\"plugins.remove\":true,\"plugins.marketplace\":true,\"core.appearance\":true,\"theme.index\":true,\"theme.activate\":true,\"theme.remove\":true,\"theme.options\":true,\"theme.custom-css\":true,\"theme.custom-js\":true,\"theme.custom-html\":true,\"widgets.index\":true,\"ads.index\":true,\"ads.create\":true,\"ads.edit\":true,\"ads.destroy\":true,\"analytics.general\":true,\"analytics.page\":true,\"analytics.browser\":true,\"analytics.referrer\":true,\"audit-log.index\":true,\"audit-log.destroy\":true,\"backups.index\":true,\"backups.create\":true,\"backups.restore\":true,\"backups.destroy\":true,\"plugins.blog\":true,\"posts.index\":true,\"posts.create\":true,\"posts.edit\":true,\"posts.destroy\":true,\"categories.index\":true,\"categories.create\":true,\"categories.edit\":true,\"categories.destroy\":true,\"tags.index\":true,\"tags.create\":true,\"tags.edit\":true,\"tags.destroy\":true,\"contacts.index\":true,\"contacts.edit\":true,\"contacts.destroy\":true,\"plugins.ecommerce\":true,\"ecommerce.settings\":true,\"ecommerce.report.index\":true,\"products.index\":true,\"products.create\":true,\"products.edit\":true,\"products.destroy\":true,\"product-categories.index\":true,\"product-categories.create\":true,\"product-categories.edit\":true,\"product-categories.destroy\":true,\"product-tag.index\":true,\"product-tag.create\":true,\"product-tag.edit\":true,\"product-tag.destroy\":true,\"brands.index\":true,\"brands.create\":true,\"brands.edit\":true,\"brands.destroy\":true,\"product-collections.index\":true,\"product-collections.create\":true,\"product-collections.edit\":true,\"product-collections.destroy\":true,\"product-attribute-sets.index\":true,\"product-attribute-sets.create\":true,\"product-attribute-sets.edit\":true,\"product-attribute-sets.destroy\":true,\"product-attributes.index\":true,\"product-attributes.create\":true,\"product-attributes.edit\":true,\"product-attributes.destroy\":true,\"tax.index\":true,\"tax.create\":true,\"tax.edit\":true,\"tax.destroy\":true,\"reviews.index\":true,\"reviews.destroy\":true,\"shipping_methods.index\":true,\"ecommerce.shipping-rule-items.index\":true,\"ecommerce.shipping-rule-items.create\":true,\"ecommerce.shipping-rule-items.edit\":true,\"ecommerce.shipping-rule-items.destroy\":true,\"ecommerce.shipping-rule-items.bulk-import\":true,\"ecommerce.shipments.index\":true,\"ecommerce.shipments.create\":true,\"ecommerce.shipments.edit\":true,\"ecommerce.shipments.destroy\":true,\"orders.index\":true,\"orders.create\":true,\"orders.edit\":true,\"orders.destroy\":true,\"discounts.index\":true,\"discounts.create\":true,\"discounts.edit\":true,\"discounts.destroy\":true,\"customers.index\":true,\"customers.create\":true,\"customers.edit\":true,\"customers.destroy\":true,\"flash-sale.index\":true,\"flash-sale.create\":true,\"flash-sale.edit\":true,\"flash-sale.destroy\":true,\"product-label.index\":true,\"product-label.create\":true,\"product-label.edit\":true,\"product-label.destroy\":true,\"ecommerce.import.products.index\":true,\"ecommerce.export.products.index\":true,\"order_returns.index\":true,\"order_returns.edit\":true,\"order_returns.destroy\":true,\"global-option.index\":true,\"global-option.create\":true,\"global-option.edit\":true,\"global-option.destroy\":true,\"ecommerce.invoice.index\":true,\"ecommerce.invoice.edit\":true,\"ecommerce.invoice.destroy\":true,\"ecommerce.invoice-template.index\":true,\"plugin.faq\":true,\"faq.index\":true,\"faq.create\":true,\"faq.edit\":true,\"faq.destroy\":true,\"faq_category.index\":true,\"faq_category.create\":true,\"faq_category.edit\":true,\"faq_category.destroy\":true,\"languages.index\":true,\"languages.create\":true,\"languages.edit\":true,\"languages.destroy\":true,\"plugin.location\":true,\"country.index\":true,\"country.create\":true,\"country.edit\":true,\"country.destroy\":true,\"state.index\":true,\"state.create\":true,\"state.edit\":true,\"state.destroy\":true,\"city.index\":true,\"city.create\":true,\"city.edit\":true,\"city.destroy\":true,\"location.bulk-import.index\":true,\"location.export.index\":true,\"newsletter.index\":true,\"newsletter.destroy\":true,\"payment.index\":true,\"payments.settings\":true,\"payment.destroy\":true,\"simple-slider.index\":true,\"simple-slider.create\":true,\"simple-slider.edit\":true,\"simple-slider.destroy\":true,\"simple-slider-item.index\":true,\"simple-slider-item.create\":true,\"simple-slider-item.edit\":true,\"simple-slider-item.destroy\":true,\"social-login.settings\":true,\"testimonial.index\":true,\"testimonial.create\":true,\"testimonial.edit\":true,\"testimonial.destroy\":true,\"plugins.translation\":true,\"translations.locales\":true,\"translations.theme-translations\":true,\"translations.index\":true}',NULL,1,1,1,'2023-05-02 21:00:42','2023-05-02 21:00:42'); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL, `value` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `settings_key_unique` (`key`) ) ENGINE=InnoDB AUTO_INCREMENT=62 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\",\"ads\",\"analytics\",\"audit-log\",\"backup\",\"blog\",\"captcha\",\"contact\",\"cookie-consent\",\"ecommerce\",\"faq\",\"location\",\"newsletter\",\"payment\",\"paypal\",\"paystack\",\"razorpay\",\"shippo\",\"simple-slider\",\"social-login\",\"sslcommerz\",\"stripe\",\"testimonial\",\"translation\",\"mollie\"]',NULL,'2023-05-02 21:00:31'),(4,'language_hide_default','1',NULL,NULL),(5,'language_switcher_display','list',NULL,NULL),(6,'language_display','all',NULL,NULL),(7,'language_hide_languages','[]',NULL,NULL),(8,'media_random_hash','1ed5cbbfafa38cd848861b78bda77f89',NULL,NULL),(9,'simple_slider_using_assets','0',NULL,NULL),(10,'permalink-botble-blog-models-post','news',NULL,NULL),(11,'permalink-botble-blog-models-category','news',NULL,NULL),(12,'permalink-botble-blog-models-tag','tags',NULL,NULL),(13,'payment_cod_status','1',NULL,NULL),(14,'payment_cod_description','Please pay money directly to the postman, if you choose cash on delivery method (COD).',NULL,NULL),(15,'payment_bank_transfer_status','1',NULL,NULL),(16,'payment_bank_transfer_description','Please send money to our bank account: ACB - 8210 4345 19.',NULL,NULL),(17,'plugins_ecommerce_customer_new_order_status','0',NULL,NULL),(18,'plugins_ecommerce_admin_new_order_status','0',NULL,NULL),(19,'ecommerce_load_countries_states_cities_from_location_plugin','0',NULL,NULL),(20,'payment_stripe_payment_type','stripe_checkout',NULL,NULL),(24,'New York','Singapore',NULL,NULL),(26,'ecommerce_is_enabled_support_digital_products','1',NULL,NULL),(28,'ecommerce_store_name','Shopwise',NULL,NULL),(29,'ecommerce_store_phone','123-456-7890',NULL,NULL),(30,'ecommerce_store_address','123 Street, Old Trafford',NULL,NULL),(31,'ecommerce_store_state','New York',NULL,NULL),(32,'ecommerce_store_city','New York',NULL,NULL),(33,'ecommerce_store_country','US',NULL,NULL),(34,'admin_logo','general/logo-light.png',NULL,NULL),(35,'admin_favicon','general/favicon.png',NULL,NULL),(36,'theme','shopwise',NULL,NULL),(37,'theme-shopwise-site_title','Shopwise - Laravel Ecommerce system',NULL,NULL),(38,'theme-shopwise-seo_description','Shopwise is designed for the eCommerce site. His design is suitable for small and big projects. It was built for your Shopping store, fashion store, clothing store, digital store, watch store, men store, women store, kids store, accessories store, Shoe store and etc.',NULL,NULL),(39,'theme-shopwise-copyright','© 2023 Botble Technologies. All Rights Reserved.',NULL,NULL),(40,'theme-shopwise-favicon','general/favicon.png',NULL,NULL),(41,'theme-shopwise-logo','general/logo.png',NULL,NULL),(42,'theme-shopwise-logo_footer','general/logo-light.png',NULL,NULL),(43,'theme-shopwise-address','123 Street, Old Trafford, NewYork, USA',NULL,NULL),(44,'theme-shopwise-hotline','123-456-7890',NULL,NULL),(45,'theme-shopwise-email','info@sitename.com',NULL,NULL),(46,'theme-shopwise-payment_methods','[\"general\\/visa.png\",\"general\\/paypal.png\",\"general\\/master-card.png\",\"general\\/discover.png\",\"general\\/american-express.png\"]',NULL,NULL),(47,'theme-shopwise-newsletter_image','general/newsletter.jpg',NULL,NULL),(48,'theme-shopwise-homepage_id','1',NULL,NULL),(49,'theme-shopwise-blog_page_id','3',NULL,NULL),(50,'theme-shopwise-cookie_consent_message','Your experience on this site will be improved by allowing cookies ',NULL,NULL),(51,'theme-shopwise-cookie_consent_learn_more_url','https://shopwise.test/cookie-policy',NULL,NULL),(52,'theme-shopwise-cookie_consent_learn_more_text','Cookie Policy',NULL,NULL),(53,'theme-shopwise-about-us','If you are going to use of Lorem Ipsum need to be sure there isn\'t hidden of text',NULL,NULL),(54,'theme-shopwise-vi-primary_font','Roboto Condensed',NULL,NULL),(55,'theme-shopwise-vi-copyright','© 2021 Botble Technologies. Tất cả quyền đã được bảo hộ.',NULL,NULL),(56,'theme-shopwise-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),(57,'theme-shopwise-vi-cookie_consent_learn_more_url','https://shopwise.test/cookie-policy',NULL,NULL),(58,'theme-shopwise-vi-cookie_consent_learn_more_text','Chính sách cookie',NULL,NULL),(59,'theme-shopwise-vi-homepage_id','1',NULL,NULL),(60,'theme-shopwise-vi-blog_page_id','3',NULL,NULL),(61,'theme-shopwise-social_links','[[{\"key\":\"social-name\",\"value\":\"Facebook\"},{\"key\":\"social-icon\",\"value\":\"ion-social-facebook\"},{\"key\":\"social-url\",\"value\":\"\"},{\"key\":\"social-color\",\"value\":\"#3b5998\"}],[{\"key\":\"social-name\",\"value\":\"Twitter\"},{\"key\":\"social-icon\",\"value\":\"ion-social-twitter\"},{\"key\":\"social-url\",\"value\":\"\"},{\"key\":\"social-color\",\"value\":\"#00acee\"}],[{\"key\":\"social-name\",\"value\":\"Youtube\"},{\"key\":\"social-icon\",\"value\":\"ion-social-youtube\"},{\"key\":\"social-url\",\"value\":\"\"},{\"key\":\"social-color\",\"value\":\"#c4302b\"}],[{\"key\":\"social-name\",\"value\":\"Instagram\"},{\"key\":\"social-icon\",\"value\":\"ion-social-instagram\"},{\"key\":\"social-url\",\"value\":\"\"},{\"key\":\"social-color\",\"value\":\"#3f729b\"}]]',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` bigint unsigned NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `link` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci, `order` int 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,'Woman Fashion','sliders/1.jpg',NULL,'Get up to 50% off Today Only!',1,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(2,1,'Man Fashion','sliders/2.jpg',NULL,'50% off in all products',2,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(3,1,'Summer Sale','sliders/3.jpg',NULL,'Taking your Viewing Experience to Next Level',3,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(4,2,'Thời trang Nam','sliders/1.jpg',NULL,'Được giảm giá tới 50% Chỉ hôm nay!',1,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(5,2,'Thời trang Nữ','sliders/2.jpg',NULL,'Khuyến mãi 50% tất cả sản phẩm',2,'2023-05-02 21:00:42','2023-05-02 21:00:42'),(6,2,'Khuyến mãi hè','sliders/3.jpg',NULL,'Nâng trải nghiệm xem của bạn lên cấp độ tiếp theo',3,'2023-05-02 21:00:42','2023-05-02 21:00:42'); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL, `key` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=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','2023-05-02 21:00:42','2023-05-02 21:00:42'),(2,'Slider trang chủ','slider-trang-chu',NULL,'published','2023-05-02 21:00:42','2023-05-02 21:00:42'); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL, `reference_id` bigint unsigned NOT NULL, `reference_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `prefix` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT '', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `slugs_reference_id_index` (`reference_id`) ) ENGINE=InnoDB AUTO_INCREMENT=108 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','2023-05-02 21:00:31','2023-05-02 21:00:31'),(2,'hand-crafted',2,'Botble\\Ecommerce\\Models\\Brand','brands','2023-05-02 21:00:31','2023-05-02 21:00:31'),(3,'mestonix',3,'Botble\\Ecommerce\\Models\\Brand','brands','2023-05-02 21:00:31','2023-05-02 21:00:31'),(4,'sunshine',4,'Botble\\Ecommerce\\Models\\Brand','brands','2023-05-02 21:00:31','2023-05-02 21:00:31'),(5,'pure',5,'Botble\\Ecommerce\\Models\\Brand','brands','2023-05-02 21:00:31','2023-05-02 21:00:31'),(6,'anfold',6,'Botble\\Ecommerce\\Models\\Brand','brands','2023-05-02 21:00:31','2023-05-02 21:00:31'),(7,'automotive',7,'Botble\\Ecommerce\\Models\\Brand','brands','2023-05-02 21:00:31','2023-05-02 21:00:31'),(8,'television',1,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(9,'home-audio-theaters',2,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(10,'tv-videos',3,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(11,'camera-photos-videos',4,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(12,'cellphones-accessories',5,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(13,'headphones',6,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(14,'videos-games',7,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(15,'wireless-speakers',8,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(16,'office-electronic',9,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(17,'mobile',10,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(18,'digital-cables',11,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(19,'audio-video-cables',12,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(20,'batteries',13,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(21,'headphone',14,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(22,'computer-tablets',15,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(23,'laptop',16,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(24,'monitors',17,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(25,'computer-components',18,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(26,'watches',19,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(27,'drive-storages',20,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(28,'gaming-laptop',21,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(29,'security-protection',22,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(30,'accessories',23,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(31,'game',24,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(32,'camera',25,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(33,'audio',26,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(34,'mobile-tablet',27,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(35,'accessories',28,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(36,'home-audio-theater',29,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(37,'tv-smart-box',30,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(38,'printer',31,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(39,'computer',32,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(40,'fax-machine',33,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(41,'mouse',34,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-05-02 21:00:32','2023-05-02 21:00:32'),(42,'smart-home-speaker',1,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(43,'headphone-ultra-bass',2,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(44,'boxed-bluetooth-headphone',3,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(45,'chikie-bluetooth-speaker',4,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(46,'camera-hikvision-hk-35vs8',5,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(47,'camera-samsung-ss-24',6,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(48,'leather-watch-band',7,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(49,'apple-iphone-13-plus',8,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(50,'macbook-pro-2015',9,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(51,'macbook-air-12-inch',10,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(52,'apple-watch-serial-7',11,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(53,'macbook-pro-13-inch',12,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(54,'apple-keyboard',13,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(55,'macsafe-80w',14,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(56,'hand-playstation',15,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(57,'apple-airpods-serial-3',16,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(58,'cool-smart-watches',17,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(59,'black-smart-watches',18,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(60,'leather-watch-band-serial-3',19,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(61,'macbook-pro-2015-13-inch',20,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(62,'historic-alarm-clock',21,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(63,'black-glasses',22,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(64,'phillips-mouse',23,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(65,'gaming-keyboard',24,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(66,'dual-camera-20mp',25,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(67,'smart-watches',26,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(68,'beat-headphone',27,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(69,'red-black-headphone',28,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(70,'audio-equipment',29,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(71,'smart-televisions',30,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(72,'samsung-smart-tv',31,'Botble\\Ecommerce\\Models\\Product','products','2023-05-02 21:00:37','2023-05-02 21:00:37'),(73,'electronic',1,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2023-05-02 21:00:39','2023-05-02 21:00:39'),(74,'mobile',2,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2023-05-02 21:00:39','2023-05-02 21:00:39'),(75,'iphone',3,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2023-05-02 21:00:39','2023-05-02 21:00:39'),(76,'printer',4,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2023-05-02 21:00:39','2023-05-02 21:00:39'),(77,'office',5,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2023-05-02 21:00:39','2023-05-02 21:00:39'),(78,'it',6,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2023-05-02 21:00:39','2023-05-02 21:00:39'),(79,'ecommerce',1,'Botble\\Blog\\Models\\Category','news','2023-05-02 21:00:41','2023-05-02 21:00:42'),(80,'fashion',2,'Botble\\Blog\\Models\\Category','news','2023-05-02 21:00:41','2023-05-02 21:00:42'),(81,'electronic',3,'Botble\\Blog\\Models\\Category','news','2023-05-02 21:00:41','2023-05-02 21:00:42'),(82,'commercial',4,'Botble\\Blog\\Models\\Category','news','2023-05-02 21:00:41','2023-05-02 21:00:42'),(83,'general',1,'Botble\\Blog\\Models\\Tag','tags','2023-05-02 21:00:41','2023-05-02 21:00:42'),(84,'design',2,'Botble\\Blog\\Models\\Tag','tags','2023-05-02 21:00:41','2023-05-02 21:00:42'),(85,'fashion',3,'Botble\\Blog\\Models\\Tag','tags','2023-05-02 21:00:41','2023-05-02 21:00:42'),(86,'branding',4,'Botble\\Blog\\Models\\Tag','tags','2023-05-02 21:00:41','2023-05-02 21:00:42'),(87,'modern',5,'Botble\\Blog\\Models\\Tag','tags','2023-05-02 21:00:41','2023-05-02 21:00:42'),(88,'4-expert-tips-on-how-to-choose-the-right-mens-wallet',1,'Botble\\Blog\\Models\\Post','news','2023-05-02 21:00:41','2023-05-02 21:00:42'),(89,'sexy-clutches-how-to-buy-wear-a-designer-clutch-bag',2,'Botble\\Blog\\Models\\Post','news','2023-05-02 21:00:41','2023-05-02 21:00:42'),(90,'the-top-2020-handbag-trends-to-know',3,'Botble\\Blog\\Models\\Post','news','2023-05-02 21:00:41','2023-05-02 21:00:42'),(91,'how-to-match-the-color-of-your-handbag-with-an-outfit',4,'Botble\\Blog\\Models\\Post','news','2023-05-02 21:00:41','2023-05-02 21:00:42'),(92,'how-to-care-for-leather-bags',5,'Botble\\Blog\\Models\\Post','news','2023-05-02 21:00:41','2023-05-02 21:00:42'),(93,'were-crushing-hard-on-summers-10-biggest-bag-trends',6,'Botble\\Blog\\Models\\Post','news','2023-05-02 21:00:41','2023-05-02 21:00:42'),(94,'essential-qualities-of-highly-successful-music',7,'Botble\\Blog\\Models\\Post','news','2023-05-02 21:00:42','2023-05-02 21:00:42'),(95,'9-things-i-love-about-shaving-my-head',8,'Botble\\Blog\\Models\\Post','news','2023-05-02 21:00:42','2023-05-02 21:00:42'),(96,'why-teamwork-really-makes-the-dream-work',9,'Botble\\Blog\\Models\\Post','news','2023-05-02 21:00:42','2023-05-02 21:00:42'),(97,'the-world-caters-to-average-people',10,'Botble\\Blog\\Models\\Post','news','2023-05-02 21:00:42','2023-05-02 21:00:42'),(98,'the-litigants-on-the-screen-are-not-actors',11,'Botble\\Blog\\Models\\Post','news','2023-05-02 21:00:42','2023-05-02 21:00:42'),(99,'homepage',1,'Botble\\Page\\Models\\Page','','2023-05-02 21:00:42','2023-05-02 21:00:42'),(100,'contact-us',2,'Botble\\Page\\Models\\Page','','2023-05-02 21:00:42','2023-05-02 21:00:42'),(101,'blog',3,'Botble\\Page\\Models\\Page','','2023-05-02 21:00:42','2023-05-02 21:00:42'),(102,'about-us',4,'Botble\\Page\\Models\\Page','','2023-05-02 21:00:42','2023-05-02 21:00:42'),(103,'faq',5,'Botble\\Page\\Models\\Page','','2023-05-02 21:00:42','2023-05-02 21:00:42'),(104,'location',6,'Botble\\Page\\Models\\Page','','2023-05-02 21:00:42','2023-05-02 21:00:42'),(105,'affiliates',7,'Botble\\Page\\Models\\Page','','2023-05-02 21:00:42','2023-05-02 21:00:42'),(106,'brands',8,'Botble\\Page\\Models\\Page','','2023-05-02 21:00:42','2023-05-02 21:00:42'),(107,'cookie-policy',9,'Botble\\Page\\Models\\Page','','2023-05-02 21:00:42','2023-05-02 21:00:42'); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL, `abbreviation` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country_id` bigint unsigned DEFAULT NULL, `order` tinyint NOT NULL DEFAULT '0', `is_default` tinyint unsigned NOT NULL DEFAULT '0', `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB 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_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) COLLATE utf8mb4_unicode_ci NOT NULL, `states_id` bigint unsigned NOT NULL, `name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `abbreviation` varchar(10) 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) COLLATE utf8mb4_unicode_ci NOT NULL, `author_id` bigint unsigned NOT NULL, `author_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User', `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT '', `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tags` -- LOCK TABLES `tags` WRITE; /*!40000 ALTER TABLE `tags` DISABLE KEYS */; INSERT INTO `tags` VALUES (1,'General',1,'Botble\\ACL\\Models\\User','','published','2023-05-02 21:00:41','2023-05-02 21:00:41'),(2,'Design',1,'Botble\\ACL\\Models\\User','','published','2023-05-02 21:00:41','2023-05-02 21:00:41'),(3,'Fashion',1,'Botble\\ACL\\Models\\User','','published','2023-05-02 21:00:41','2023-05-02 21:00:41'),(4,'Branding',1,'Botble\\ACL\\Models\\User','','published','2023-05-02 21:00:41','2023-05-02 21:00:41'),(5,'Modern',1,'Botble\\ACL\\Models\\User','','published','2023-05-02 21:00:41','2023-05-02 21:00:41'); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL, `tags_id` bigint unsigned NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(400) 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 `testimonials` -- DROP TABLE IF EXISTS `testimonials`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `testimonials` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `content` text COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `company` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `testimonials` -- LOCK TABLES `testimonials` WRITE; /*!40000 ALTER TABLE `testimonials` DISABLE KEYS */; INSERT INTO `testimonials` VALUES (1,'Adam Williams','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua','testimonials/1.jpg','CEO Of Microsoft','published','2023-05-02 21:00:42','2023-05-02 21:00:42'),(2,'Retha Deowalim','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua','testimonials/2.jpg','CEO Of Apple','published','2023-05-02 21:00:42','2023-05-02 21:00:42'),(3,'Sam J. Wasim','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua','testimonials/3.jpg','Pio Founder','published','2023-05-02 21:00:42','2023-05-02 21:00:42'),(4,'Usan Gulwarm','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua','testimonials/4.jpg','CEO Of Facewarm','published','2023-05-02 21:00:42','2023-05-02 21:00:42'); /*!40000 ALTER TABLE `testimonials` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `testimonials_translations` -- DROP TABLE IF EXISTS `testimonials_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `testimonials_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `testimonials_id` bigint unsigned NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci, `company` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`testimonials_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `testimonials_translations` -- LOCK TABLES `testimonials_translations` WRITE; /*!40000 ALTER TABLE `testimonials_translations` DISABLE KEYS */; INSERT INTO `testimonials_translations` VALUES ('vi',1,'Adam Williams',NULL,'Giám đốc Microsoft'),('vi',2,'Retha Deowalim',NULL,'Giám đốc Apple'),('vi',3,'Sam J. Wasim',NULL,'Nhà sáng lập Pio'),('vi',4,'Usan Gulwarm',NULL,'Giám đốc Facewarm'); /*!40000 ALTER TABLE `testimonials_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) COLLATE utf8mb4_unicode_ci NOT NULL, `group` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `value` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5249 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,1,'en','auth','failed','These credentials do not match our records.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(2,1,'en','auth','password','The provided password is incorrect.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(3,1,'en','auth','throttle','Too many login attempts. Please try again in :seconds seconds.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(4,1,'en','pagination','previous','« Previous','2023-05-02 21:00:43','2023-05-02 21:00:43'),(5,1,'en','pagination','next','Next »','2023-05-02 21:00:43','2023-05-02 21:00:43'),(6,1,'en','passwords','reset','Your password has been reset!','2023-05-02 21:00:43','2023-05-02 21:00:43'),(7,1,'en','passwords','sent','We have emailed your password reset link!','2023-05-02 21:00:43','2023-05-02 21:00:43'),(8,1,'en','passwords','throttled','Please wait before retrying.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(9,1,'en','passwords','token','This password reset token is invalid.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(10,1,'en','passwords','user','We can\'t find a user with that email address.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(11,1,'en','validation','accepted','The :attribute must be accepted.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(12,1,'en','validation','accepted_if','The :attribute must be accepted when :other is :value.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(13,1,'en','validation','active_url','The :attribute is not a valid URL.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(14,1,'en','validation','after','The :attribute must be a date after :date.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(15,1,'en','validation','after_or_equal','The :attribute must be a date after or equal to :date.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(16,1,'en','validation','alpha','The :attribute must only contain letters.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(17,1,'en','validation','alpha_dash','The :attribute must only contain letters, numbers, dashes and underscores.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(18,1,'en','validation','alpha_num','The :attribute must only contain letters and numbers.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(19,1,'en','validation','array','The :attribute must be an array.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(20,1,'en','validation','ascii','The :attribute must only contain single-byte alphanumeric characters and symbols.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(21,1,'en','validation','before','The :attribute must be a date before :date.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(22,1,'en','validation','before_or_equal','The :attribute must be a date before or equal to :date.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(23,1,'en','validation','between.array','The :attribute must have between :min and :max items.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(24,1,'en','validation','between.file','The :attribute must be between :min and :max kilobytes.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(25,1,'en','validation','between.numeric','The :attribute must be between :min and :max.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(26,1,'en','validation','between.string','The :attribute must be between :min and :max characters.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(27,1,'en','validation','boolean','The :attribute field must be true or false.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(28,1,'en','validation','confirmed','The :attribute confirmation does not match.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(29,1,'en','validation','current_password','The password is incorrect.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(30,1,'en','validation','date','The :attribute is not a valid date.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(31,1,'en','validation','date_equals','The :attribute must be a date equal to :date.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(32,1,'en','validation','date_format','The :attribute does not match the format :format.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(33,1,'en','validation','decimal','The :attribute must have :decimal decimal places.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(34,1,'en','validation','declined','The :attribute must be declined.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(35,1,'en','validation','declined_if','The :attribute must be declined when :other is :value.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(36,1,'en','validation','different','The :attribute and :other must be different.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(37,1,'en','validation','digits','The :attribute must be :digits digits.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(38,1,'en','validation','digits_between','The :attribute must be between :min and :max digits.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(39,1,'en','validation','dimensions','The :attribute has invalid image dimensions.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(40,1,'en','validation','distinct','The :attribute field has a duplicate value.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(41,1,'en','validation','doesnt_end_with','The :attribute may not end with one of the following: :values.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(42,1,'en','validation','doesnt_start_with','The :attribute may not start with one of the following: :values.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(43,1,'en','validation','email','The :attribute must be a valid email address.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(44,1,'en','validation','ends_with','The :attribute must end with one of the following: :values.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(45,1,'en','validation','enum','The selected :attribute is invalid.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(46,1,'en','validation','exists','The selected :attribute is invalid.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(47,1,'en','validation','file','The :attribute must be a file.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(48,1,'en','validation','filled','The :attribute field must have a value.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(49,1,'en','validation','gt.array','The :attribute must have more than :value items.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(50,1,'en','validation','gt.file','The :attribute must be greater than :value kilobytes.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(51,1,'en','validation','gt.numeric','The :attribute must be greater than :value.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(52,1,'en','validation','gt.string','The :attribute must be greater than :value characters.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(53,1,'en','validation','gte.array','The :attribute must have :value items or more.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(54,1,'en','validation','gte.file','The :attribute must be greater than or equal to :value kilobytes.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(55,1,'en','validation','gte.numeric','The :attribute must be greater than or equal to :value.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(56,1,'en','validation','gte.string','The :attribute must be greater than or equal to :value characters.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(57,1,'en','validation','image','The :attribute must be an image.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(58,1,'en','validation','in','The selected :attribute is invalid.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(59,1,'en','validation','in_array','The :attribute field does not exist in :other.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(60,1,'en','validation','integer','The :attribute must be an integer.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(61,1,'en','validation','ip','The :attribute must be a valid IP address.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(62,1,'en','validation','ipv4','The :attribute must be a valid IPv4 address.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(63,1,'en','validation','ipv6','The :attribute must be a valid IPv6 address.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(64,1,'en','validation','json','The :attribute must be a valid JSON string.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(65,1,'en','validation','lowercase','The :attribute must be lowercase.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(66,1,'en','validation','lt.array','The :attribute must have less than :value items.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(67,1,'en','validation','lt.file','The :attribute must be less than :value kilobytes.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(68,1,'en','validation','lt.numeric','The :attribute must be less than :value.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(69,1,'en','validation','lt.string','The :attribute must be less than :value characters.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(70,1,'en','validation','lte.array','The :attribute must not have more than :value items.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(71,1,'en','validation','lte.file','The :attribute must be less than or equal to :value kilobytes.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(72,1,'en','validation','lte.numeric','The :attribute must be less than or equal to :value.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(73,1,'en','validation','lte.string','The :attribute must be less than or equal to :value characters.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(74,1,'en','validation','mac_address','The :attribute must be a valid MAC address.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(75,1,'en','validation','max.array','The :attribute must not have more than :max items.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(76,1,'en','validation','max.file','The :attribute must not be greater than :max kilobytes.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(77,1,'en','validation','max.numeric','The :attribute must not be greater than :max.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(78,1,'en','validation','max.string','The :attribute must not be greater than :max characters.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(79,1,'en','validation','max_digits','The :attribute must not have more than :max digits.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(80,1,'en','validation','mimes','The :attribute must be a file of type: :values.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(81,1,'en','validation','mimetypes','The :attribute must be a file of type: :values.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(82,1,'en','validation','min.array','The :attribute must have at least :min items.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(83,1,'en','validation','min.file','The :attribute must be at least :min kilobytes.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(84,1,'en','validation','min.numeric','The :attribute must be at least :min.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(85,1,'en','validation','min.string','The :attribute must be at least :min characters.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(86,1,'en','validation','min_digits','The :attribute must have at least :min digits.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(87,1,'en','validation','missing','The :attribute field must be missing.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(88,1,'en','validation','missing_if','The :attribute field must be missing when :other is :value.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(89,1,'en','validation','missing_unless','The :attribute field must be missing unless :other is :value.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(90,1,'en','validation','missing_with','The :attribute field must be missing when :values is present.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(91,1,'en','validation','missing_with_all','The :attribute field must be missing when :values are present.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(92,1,'en','validation','multiple_of','The :attribute must be a multiple of :value.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(93,1,'en','validation','not_in','The selected :attribute is invalid.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(94,1,'en','validation','not_regex','The :attribute format is invalid.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(95,1,'en','validation','numeric','The :attribute must be a number.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(96,1,'en','validation','password.letters','The :attribute must contain at least one letter.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(97,1,'en','validation','password.mixed','The :attribute must contain at least one uppercase and one lowercase letter.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(98,1,'en','validation','password.numbers','The :attribute must contain at least one number.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(99,1,'en','validation','password.symbols','The :attribute must contain at least one symbol.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(100,1,'en','validation','password.uncompromised','The given :attribute has appeared in a data leak. Please choose a different :attribute.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(101,1,'en','validation','present','The :attribute field must be present.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(102,1,'en','validation','prohibited','The :attribute field is prohibited.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(103,1,'en','validation','prohibited_if','The :attribute field is prohibited when :other is :value.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(104,1,'en','validation','prohibited_unless','The :attribute field is prohibited unless :other is in :values.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(105,1,'en','validation','prohibits','The :attribute field prohibits :other from being present.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(106,1,'en','validation','regex','The :attribute format is invalid.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(107,1,'en','validation','required','The :attribute field is required.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(108,1,'en','validation','required_array_keys','The :attribute field must contain entries for: :values.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(109,1,'en','validation','required_if','The :attribute field is required when :other is :value.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(110,1,'en','validation','required_if_accepted','The :attribute field is required when :other is accepted.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(111,1,'en','validation','required_unless','The :attribute field is required unless :other is in :values.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(112,1,'en','validation','required_with','The :attribute field is required when :values is present.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(113,1,'en','validation','required_with_all','The :attribute field is required when :values are present.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(114,1,'en','validation','required_without','The :attribute field is required when :values is not present.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(115,1,'en','validation','required_without_all','The :attribute field is required when none of :values are present.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(116,1,'en','validation','same','The :attribute and :other must match.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(117,1,'en','validation','size.array','The :attribute must contain :size items.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(118,1,'en','validation','size.file','The :attribute must be :size kilobytes.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(119,1,'en','validation','size.numeric','The :attribute must be :size.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(120,1,'en','validation','size.string','The :attribute must be :size characters.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(121,1,'en','validation','starts_with','The :attribute must start with one of the following: :values.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(122,1,'en','validation','string','The :attribute must be a string.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(123,1,'en','validation','timezone','The :attribute must be a valid timezone.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(124,1,'en','validation','unique','The :attribute has already been taken.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(125,1,'en','validation','uploaded','The :attribute failed to upload.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(126,1,'en','validation','uppercase','The :attribute must be uppercase.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(127,1,'en','validation','url','The :attribute must be a valid URL.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(128,1,'en','validation','ulid','The :attribute must be a valid ULID.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(129,1,'en','validation','uuid','The :attribute must be a valid UUID.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(130,1,'en','validation','custom.attribute-name.rule-name','custom-message','2023-05-02 21:00:43','2023-05-02 21:00:43'),(131,1,'en','core/acl/api','api_clients','API Clients','2023-05-02 21:00:43','2023-05-02 21:00:43'),(132,1,'en','core/acl/api','create_new_client','Create new client','2023-05-02 21:00:43','2023-05-02 21:00:43'),(133,1,'en','core/acl/api','create_new_client_success','Create new client successfully!','2023-05-02 21:00:43','2023-05-02 21:00:43'),(134,1,'en','core/acl/api','edit_client','Edit client \":name\"','2023-05-02 21:00:43','2023-05-02 21:00:43'),(135,1,'en','core/acl/api','edit_client_success','Updated client successfully!','2023-05-02 21:00:43','2023-05-02 21:00:43'),(136,1,'en','core/acl/api','delete_success','Deleted client successfully!','2023-05-02 21:00:43','2023-05-02 21:00:43'),(137,1,'en','core/acl/api','confirm_delete_title','Confirm delete client \":name\"','2023-05-02 21:00:43','2023-05-02 21:00:43'),(138,1,'en','core/acl/api','confirm_delete_description','Do you really want to delete client \":name\"?','2023-05-02 21:00:43','2023-05-02 21:00:43'),(139,1,'en','core/acl/api','cancel_delete','No','2023-05-02 21:00:43','2023-05-02 21:00:43'),(140,1,'en','core/acl/api','continue_delete','Yes, let\'s delete it!','2023-05-02 21:00:43','2023-05-02 21:00:43'),(141,1,'en','core/acl/api','name','Name','2023-05-02 21:00:43','2023-05-02 21:00:43'),(142,1,'en','core/acl/api','cancel','Cancel','2023-05-02 21:00:43','2023-05-02 21:00:43'),(143,1,'en','core/acl/api','save','Save','2023-05-02 21:00:43','2023-05-02 21:00:43'),(144,1,'en','core/acl/api','edit','Edit','2023-05-02 21:00:43','2023-05-02 21:00:43'),(145,1,'en','core/acl/api','delete','Delete','2023-05-02 21:00:43','2023-05-02 21:00:43'),(146,1,'en','core/acl/api','client_id','Client ID','2023-05-02 21:00:43','2023-05-02 21:00:43'),(147,1,'en','core/acl/api','secret','Secret','2023-05-02 21:00:43','2023-05-02 21:00:43'),(148,1,'en','core/acl/auth','login.username','Email/Username','2023-05-02 21:00:43','2023-05-02 21:00:43'),(149,1,'en','core/acl/auth','login.email','Email','2023-05-02 21:00:43','2023-05-02 21:00:43'),(150,1,'en','core/acl/auth','login.password','Password','2023-05-02 21:00:43','2023-05-02 21:00:43'),(151,1,'en','core/acl/auth','login.title','User Login','2023-05-02 21:00:43','2023-05-02 21:00:43'),(152,1,'en','core/acl/auth','login.remember','Remember me?','2023-05-02 21:00:43','2023-05-02 21:00:43'),(153,1,'en','core/acl/auth','login.login','Sign in','2023-05-02 21:00:43','2023-05-02 21:00:43'),(154,1,'en','core/acl/auth','login.placeholder.username','Please enter your username','2023-05-02 21:00:43','2023-05-02 21:00:43'),(155,1,'en','core/acl/auth','login.placeholder.email','Please enter your email','2023-05-02 21:00:43','2023-05-02 21:00:43'),(156,1,'en','core/acl/auth','login.success','Login successfully!','2023-05-02 21:00:43','2023-05-02 21:00:43'),(157,1,'en','core/acl/auth','login.fail','Wrong username or password.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(158,1,'en','core/acl/auth','login.not_active','Your account has not been activated yet!','2023-05-02 21:00:43','2023-05-02 21:00:43'),(159,1,'en','core/acl/auth','login.banned','This account is banned.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(160,1,'en','core/acl/auth','login.logout_success','Logout successfully!','2023-05-02 21:00:43','2023-05-02 21:00:43'),(161,1,'en','core/acl/auth','login.dont_have_account','You don\'t have account on this system, please contact administrator for more information!','2023-05-02 21:00:43','2023-05-02 21:00:43'),(162,1,'en','core/acl/auth','forgot_password.title','Forgot Password','2023-05-02 21:00:43','2023-05-02 21:00:43'),(163,1,'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>','2023-05-02 21:00:43','2023-05-02 21:00:43'),(164,1,'en','core/acl/auth','forgot_password.submit','Submit','2023-05-02 21:00:43','2023-05-02 21:00:43'),(165,1,'en','core/acl/auth','reset.new_password','New password','2023-05-02 21:00:43','2023-05-02 21:00:43'),(166,1,'en','core/acl/auth','reset.password_confirmation','Confirm new password','2023-05-02 21:00:43','2023-05-02 21:00:43'),(167,1,'en','core/acl/auth','reset.email','Email','2023-05-02 21:00:43','2023-05-02 21:00:43'),(168,1,'en','core/acl/auth','reset.title','Reset your password','2023-05-02 21:00:43','2023-05-02 21:00:43'),(169,1,'en','core/acl/auth','reset.update','Update','2023-05-02 21:00:43','2023-05-02 21:00:43'),(170,1,'en','core/acl/auth','reset.wrong_token','This link is invalid or expired. Please try using reset form again.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(171,1,'en','core/acl/auth','reset.user_not_found','This username is not exist.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(172,1,'en','core/acl/auth','reset.success','Reset password successfully!','2023-05-02 21:00:43','2023-05-02 21:00:43'),(173,1,'en','core/acl/auth','reset.fail','Token is invalid, the reset password link has been expired!','2023-05-02 21:00:43','2023-05-02 21:00:43'),(174,1,'en','core/acl/auth','reset.reset.title','Email reset password','2023-05-02 21:00:43','2023-05-02 21:00:43'),(175,1,'en','core/acl/auth','reset.send.success','A email was sent to your email account. Please check and complete this action.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(176,1,'en','core/acl/auth','reset.send.fail','Can not send email in this time. Please try again later.','2023-05-02 21:00:43','2023-05-02 21:00:43'),(177,1,'en','core/acl/auth','reset.new-password','New password','2023-05-02 21:00:43','2023-05-02 21:00:43'),(178,1,'en','core/acl/auth','email.reminder.title','Email reset password','2023-05-02 21:00:43','2023-05-02 21:00:43'),(179,1,'en','core/acl/auth','password_confirmation','Password confirm','2023-05-02 21:00:43','2023-05-02 21:00:43'),(180,1,'en','core/acl/auth','failed','Failed','2023-05-02 21:00:43','2023-05-02 21:00:43'),(181,1,'en','core/acl/auth','throttle','Throttle','2023-05-02 21:00:43','2023-05-02 21:00:43'),(182,1,'en','core/acl/auth','not_member','Not a member yet?','2023-05-02 21:00:43','2023-05-02 21:00:43'),(183,1,'en','core/acl/auth','register_now','Register now','2023-05-02 21:00:43','2023-05-02 21:00:43'),(184,1,'en','core/acl/auth','lost_your_password','Lost your password?','2023-05-02 21:00:43','2023-05-02 21:00:43'),(185,1,'en','core/acl/auth','login_title','Admin','2023-05-02 21:00:43','2023-05-02 21:00:43'),(186,1,'en','core/acl/auth','login_via_social','Login with social networks','2023-05-02 21:00:43','2023-05-02 21:00:43'),(187,1,'en','core/acl/auth','back_to_login','Back to login page','2023-05-02 21:00:43','2023-05-02 21:00:43'),(188,1,'en','core/acl/auth','sign_in_below','Sign In Below','2023-05-02 21:00:43','2023-05-02 21:00:43'),(189,1,'en','core/acl/auth','languages','Languages','2023-05-02 21:00:43','2023-05-02 21:00:43'),(190,1,'en','core/acl/auth','reset_password','Reset Password','2023-05-02 21:00:43','2023-05-02 21:00:43'),(191,1,'en','core/acl/auth','settings.email.title','ACL','2023-05-02 21:00:43','2023-05-02 21:00:43'),(192,1,'en','core/acl/auth','settings.email.description','ACL email configuration','2023-05-02 21:00:43','2023-05-02 21:00:43'),(193,1,'en','core/acl/permissions','notices.role_in_use','Cannot delete this role, it is still in use!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(194,1,'en','core/acl/permissions','notices.role_delete_belong_user','You are not able to delete this role; it belongs to someone else!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(195,1,'en','core/acl/permissions','notices.role_edit_belong_user','You are not able to edit this role; it belongs to someone else!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(196,1,'en','core/acl/permissions','notices.delete_global_role','You are not allowed to delete global roles!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(197,1,'en','core/acl/permissions','notices.delete_success','The selected role was deleted successfully!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(198,1,'en','core/acl/permissions','notices.modified_success','The selected role was modified successfully!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(199,1,'en','core/acl/permissions','notices.create_success','The new role was successfully created','2023-05-02 21:00:44','2023-05-02 21:00:44'),(200,1,'en','core/acl/permissions','notices.duplicated_success','The selected role was duplicated successfully','2023-05-02 21:00:44','2023-05-02 21:00:44'),(201,1,'en','core/acl/permissions','notices.no_select','Please select at least one record to take this action!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(202,1,'en','core/acl/permissions','notices.not_found','Role not found','2023-05-02 21:00:44','2023-05-02 21:00:44'),(203,1,'en','core/acl/permissions','name','Name','2023-05-02 21:00:44','2023-05-02 21:00:44'),(204,1,'en','core/acl/permissions','current_role','Current Role','2023-05-02 21:00:44','2023-05-02 21:00:44'),(205,1,'en','core/acl/permissions','no_role_assigned','No role assigned','2023-05-02 21:00:44','2023-05-02 21:00:44'),(206,1,'en','core/acl/permissions','role_assigned','Assigned Role','2023-05-02 21:00:44','2023-05-02 21:00:44'),(207,1,'en','core/acl/permissions','create_role','Create New Role','2023-05-02 21:00:44','2023-05-02 21:00:44'),(208,1,'en','core/acl/permissions','role_name','Name','2023-05-02 21:00:44','2023-05-02 21:00:44'),(209,1,'en','core/acl/permissions','role_description','Description','2023-05-02 21:00:44','2023-05-02 21:00:44'),(210,1,'en','core/acl/permissions','permission_flags','Permission Flags','2023-05-02 21:00:44','2023-05-02 21:00:44'),(211,1,'en','core/acl/permissions','cancel','Cancel','2023-05-02 21:00:44','2023-05-02 21:00:44'),(212,1,'en','core/acl/permissions','reset','Reset','2023-05-02 21:00:44','2023-05-02 21:00:44'),(213,1,'en','core/acl/permissions','save','Save','2023-05-02 21:00:44','2023-05-02 21:00:44'),(214,1,'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.','2023-05-02 21:00:44','2023-05-02 21:00:44'),(215,1,'en','core/acl/permissions','details','Details','2023-05-02 21:00:44','2023-05-02 21:00:44'),(216,1,'en','core/acl/permissions','duplicate','Duplicate','2023-05-02 21:00:44','2023-05-02 21:00:44'),(217,1,'en','core/acl/permissions','all','All Permissions','2023-05-02 21:00:44','2023-05-02 21:00:44'),(218,1,'en','core/acl/permissions','list_role','List Roles','2023-05-02 21:00:44','2023-05-02 21:00:44'),(219,1,'en','core/acl/permissions','created_on','Created On','2023-05-02 21:00:44','2023-05-02 21:00:44'),(220,1,'en','core/acl/permissions','created_by','Created By','2023-05-02 21:00:44','2023-05-02 21:00:44'),(221,1,'en','core/acl/permissions','actions','Actions','2023-05-02 21:00:44','2023-05-02 21:00:44'),(222,1,'en','core/acl/permissions','role_in_use','Cannot delete this role, it is still in use!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(223,1,'en','core/acl/permissions','role_delete_belong_user','You are not able to delete this role; it belongs to someone else!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(224,1,'en','core/acl/permissions','delete_global_role','Can not delete global role','2023-05-02 21:00:44','2023-05-02 21:00:44'),(225,1,'en','core/acl/permissions','delete_success','Delete role successfully','2023-05-02 21:00:44','2023-05-02 21:00:44'),(226,1,'en','core/acl/permissions','no_select','Please select at least one role to take this action!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(227,1,'en','core/acl/permissions','not_found','No role found!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(228,1,'en','core/acl/permissions','role_edit_belong_user','You are not able to edit this role; it belongs to someone else!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(229,1,'en','core/acl/permissions','modified_success','Modified successfully','2023-05-02 21:00:44','2023-05-02 21:00:44'),(230,1,'en','core/acl/permissions','create_success','Create successfully','2023-05-02 21:00:44','2023-05-02 21:00:44'),(231,1,'en','core/acl/permissions','duplicated_success','Duplicated successfully','2023-05-02 21:00:44','2023-05-02 21:00:44'),(232,1,'en','core/acl/permissions','options','Options','2023-05-02 21:00:44','2023-05-02 21:00:44'),(233,1,'en','core/acl/permissions','access_denied_message','You are not allowed to do this action','2023-05-02 21:00:44','2023-05-02 21:00:44'),(234,1,'en','core/acl/permissions','roles','Roles','2023-05-02 21:00:44','2023-05-02 21:00:44'),(235,1,'en','core/acl/permissions','role_permission','Roles and Permissions','2023-05-02 21:00:44','2023-05-02 21:00:44'),(236,1,'en','core/acl/permissions','user_management','User Management','2023-05-02 21:00:44','2023-05-02 21:00:44'),(237,1,'en','core/acl/permissions','super_user_management','Super User Management','2023-05-02 21:00:44','2023-05-02 21:00:44'),(238,1,'en','core/acl/permissions','action_unauthorized','This action is unauthorized.','2023-05-02 21:00:44','2023-05-02 21:00:44'),(239,1,'en','core/acl/reminders','password','Passwords must be at least six characters and match the confirmation.','2023-05-02 21:00:44','2023-05-02 21:00:44'),(240,1,'en','core/acl/reminders','user','We can\'t find a user with that e-mail address.','2023-05-02 21:00:44','2023-05-02 21:00:44'),(241,1,'en','core/acl/reminders','token','This password reset token is invalid.','2023-05-02 21:00:44','2023-05-02 21:00:44'),(242,1,'en','core/acl/reminders','sent','Password reminder sent!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(243,1,'en','core/acl/reminders','reset','Password has been reset!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(244,1,'en','core/acl/users','delete_user_logged_in','Can\'t delete this user. This user is logged on!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(245,1,'en','core/acl/users','no_select','Please select at least one record to take this action!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(246,1,'en','core/acl/users','lock_user_logged_in','Can\'t lock this user. This user is logged on!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(247,1,'en','core/acl/users','update_success','Update status successfully!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(248,1,'en','core/acl/users','save_setting_failed','Something went wrong when save your setting','2023-05-02 21:00:44','2023-05-02 21:00:44'),(249,1,'en','core/acl/users','not_found','User not found','2023-05-02 21:00:44','2023-05-02 21:00:44'),(250,1,'en','core/acl/users','email_exist','That email address already belongs to an existing account','2023-05-02 21:00:44','2023-05-02 21:00:44'),(251,1,'en','core/acl/users','username_exist','That username address already belongs to an existing account','2023-05-02 21:00:44','2023-05-02 21:00:44'),(252,1,'en','core/acl/users','update_profile_success','Your profile changes were successfully saved','2023-05-02 21:00:44','2023-05-02 21:00:44'),(253,1,'en','core/acl/users','password_update_success','Password successfully changed','2023-05-02 21:00:44','2023-05-02 21:00:44'),(254,1,'en','core/acl/users','current_password_not_valid','Current password is not valid','2023-05-02 21:00:44','2023-05-02 21:00:44'),(255,1,'en','core/acl/users','user_exist_in','User is already a member','2023-05-02 21:00:44','2023-05-02 21:00:44'),(256,1,'en','core/acl/users','email','Email','2023-05-02 21:00:44','2023-05-02 21:00:44'),(257,1,'en','core/acl/users','role','Role','2023-05-02 21:00:44','2023-05-02 21:00:44'),(258,1,'en','core/acl/users','username','Username','2023-05-02 21:00:44','2023-05-02 21:00:44'),(259,1,'en','core/acl/users','last_name','Last Name','2023-05-02 21:00:44','2023-05-02 21:00:44'),(260,1,'en','core/acl/users','first_name','First Name','2023-05-02 21:00:44','2023-05-02 21:00:44'),(261,1,'en','core/acl/users','message','Message','2023-05-02 21:00:44','2023-05-02 21:00:44'),(262,1,'en','core/acl/users','cancel_btn','Cancel','2023-05-02 21:00:44','2023-05-02 21:00:44'),(263,1,'en','core/acl/users','change_password','Change password','2023-05-02 21:00:44','2023-05-02 21:00:44'),(264,1,'en','core/acl/users','current_password','Current password','2023-05-02 21:00:44','2023-05-02 21:00:44'),(265,1,'en','core/acl/users','new_password','New Password','2023-05-02 21:00:44','2023-05-02 21:00:44'),(266,1,'en','core/acl/users','confirm_new_password','Confirm New Password','2023-05-02 21:00:44','2023-05-02 21:00:44'),(267,1,'en','core/acl/users','password','Password','2023-05-02 21:00:44','2023-05-02 21:00:44'),(268,1,'en','core/acl/users','save','Save','2023-05-02 21:00:44','2023-05-02 21:00:44'),(269,1,'en','core/acl/users','cannot_delete','User could not be deleted','2023-05-02 21:00:44','2023-05-02 21:00:44'),(270,1,'en','core/acl/users','deleted','User deleted','2023-05-02 21:00:44','2023-05-02 21:00:44'),(271,1,'en','core/acl/users','last_login','Last Login','2023-05-02 21:00:44','2023-05-02 21:00:44'),(272,1,'en','core/acl/users','error_update_profile_image','Error when update profile image','2023-05-02 21:00:44','2023-05-02 21:00:44'),(273,1,'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>','2023-05-02 21:00:44','2023-05-02 21:00:44'),(274,1,'en','core/acl/users','change_profile_image','Change Profile Image','2023-05-02 21:00:44','2023-05-02 21:00:44'),(275,1,'en','core/acl/users','new_image','New Image','2023-05-02 21:00:44','2023-05-02 21:00:44'),(276,1,'en','core/acl/users','loading','Loading','2023-05-02 21:00:44','2023-05-02 21:00:44'),(277,1,'en','core/acl/users','close','Close','2023-05-02 21:00:44','2023-05-02 21:00:44'),(278,1,'en','core/acl/users','update','Update','2023-05-02 21:00:44','2023-05-02 21:00:44'),(279,1,'en','core/acl/users','read_image_failed','Failed to read the image file','2023-05-02 21:00:44','2023-05-02 21:00:44'),(280,1,'en','core/acl/users','users','Users','2023-05-02 21:00:44','2023-05-02 21:00:44'),(281,1,'en','core/acl/users','update_avatar_success','Update profile image successfully!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(282,1,'en','core/acl/users','info.title','User profile','2023-05-02 21:00:44','2023-05-02 21:00:44'),(283,1,'en','core/acl/users','info.first_name','First Name','2023-05-02 21:00:44','2023-05-02 21:00:44'),(284,1,'en','core/acl/users','info.last_name','Last Name','2023-05-02 21:00:44','2023-05-02 21:00:44'),(285,1,'en','core/acl/users','total_users','Total users','2023-05-02 21:00:44','2023-05-02 21:00:44'),(286,1,'en','core/acl/users','statuses.activated','Activated','2023-05-02 21:00:44','2023-05-02 21:00:44'),(287,1,'en','core/acl/users','statuses.deactivated','Deactivated','2023-05-02 21:00:44','2023-05-02 21:00:44'),(288,1,'en','core/acl/users','make_super','Make super','2023-05-02 21:00:44','2023-05-02 21:00:44'),(289,1,'en','core/acl/users','remove_super','Remove super','2023-05-02 21:00:44','2023-05-02 21:00:44'),(290,1,'en','core/acl/users','is_super','Is super?','2023-05-02 21:00:44','2023-05-02 21:00:44'),(291,1,'en','core/acl/users','email_placeholder','Ex: example@gmail.com','2023-05-02 21:00:44','2023-05-02 21:00:44'),(292,1,'en','core/acl/users','password_confirmation','Re-type password','2023-05-02 21:00:44','2023-05-02 21:00:44'),(293,1,'en','core/acl/users','select_role','Select role','2023-05-02 21:00:44','2023-05-02 21:00:44'),(294,1,'en','core/acl/users','create_new_user','Create a new user','2023-05-02 21:00:44','2023-05-02 21:00:44'),(295,1,'en','core/acl/users','cannot_delete_super_user','Permission denied. Cannot delete a super user!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(296,1,'en','core/acl/users','assigned_role','Assigned Role','2023-05-02 21:00:44','2023-05-02 21:00:44'),(297,1,'en','core/acl/users','no_role_assigned','No role assigned','2023-05-02 21:00:44','2023-05-02 21:00:44'),(298,1,'en','core/acl/users','view_user_profile','View user\'s profile','2023-05-02 21:00:44','2023-05-02 21:00:44'),(299,1,'vi','core/acl/auth','login.username','Email/Tên truy cập','2023-05-02 21:00:44','2023-05-02 21:00:44'),(300,1,'vi','core/acl/auth','login.password','Mật khẩu','2023-05-02 21:00:44','2023-05-02 21:00:44'),(301,1,'vi','core/acl/auth','login.title','Đăng nhập vào quản trị','2023-05-02 21:00:44','2023-05-02 21:00:44'),(302,1,'vi','core/acl/auth','login.remember','Nhớ mật khẩu?','2023-05-02 21:00:44','2023-05-02 21:00:44'),(303,1,'vi','core/acl/auth','login.login','Đăng nhập','2023-05-02 21:00:44','2023-05-02 21:00:44'),(304,1,'vi','core/acl/auth','login.placeholder.username','Vui lòng nhập tên truy cập','2023-05-02 21:00:44','2023-05-02 21:00:44'),(305,1,'vi','core/acl/auth','login.placeholder.email','Vui lòng nhập email','2023-05-02 21:00:44','2023-05-02 21:00:44'),(306,1,'vi','core/acl/auth','login.success','Đăng nhập thành công!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(307,1,'vi','core/acl/auth','login.fail','Sai tên truy cập hoặc mật khẩu.','2023-05-02 21:00:44','2023-05-02 21:00:44'),(308,1,'vi','core/acl/auth','login.not_active','Tài khoản của bạn chưa được kích hoạt!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(309,1,'vi','core/acl/auth','login.banned','Tài khoản này đã bị khóa.','2023-05-02 21:00:44','2023-05-02 21:00:44'),(310,1,'vi','core/acl/auth','login.logout_success','Đăng xuất thành công!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(311,1,'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!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(312,1,'vi','core/acl/auth','login.email','Email','2023-05-02 21:00:44','2023-05-02 21:00:44'),(313,1,'vi','core/acl/auth','forgot_password.title','Quên mật khẩu','2023-05-02 21:00:44','2023-05-02 21:00:44'),(314,1,'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>','2023-05-02 21:00:44','2023-05-02 21:00:44'),(315,1,'vi','core/acl/auth','forgot_password.submit','Hoàn tất','2023-05-02 21:00:44','2023-05-02 21:00:44'),(316,1,'vi','core/acl/auth','reset.new_password','Mật khẩu mới','2023-05-02 21:00:44','2023-05-02 21:00:44'),(317,1,'vi','core/acl/auth','reset.title','Khôi phục mật khẩu','2023-05-02 21:00:44','2023-05-02 21:00:44'),(318,1,'vi','core/acl/auth','reset.update','Cập nhật','2023-05-02 21:00:44','2023-05-02 21:00:44'),(319,1,'vi','core/acl/auth','reset.wrong_token','Liên kết này không chính xác hoặc đã hết hiệu lực, vui lòng yêu cầu khôi phục mật khẩu lại!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(320,1,'vi','core/acl/auth','reset.user_not_found','Tên đăng nhập không tồn tại.','2023-05-02 21:00:44','2023-05-02 21:00:44'),(321,1,'vi','core/acl/auth','reset.success','Khôi phục mật khẩu thành công!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(322,1,'vi','core/acl/auth','reset.fail','Token không hợp lệ hoặc liên kết khôi phục mật khẩu đã hết thời gian hiệu lực!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(323,1,'vi','core/acl/auth','reset.reset.title','Email khôi phục mật khẩu','2023-05-02 21:00:44','2023-05-02 21:00:44'),(324,1,'vi','core/acl/auth','reset.send.success','Một email khôi phục mật khẩu đã được gửi tới email của bạn, vui lòng kiểm tra và hoàn tất yêu cầu.','2023-05-02 21:00:44','2023-05-02 21:00:44'),(325,1,'vi','core/acl/auth','reset.send.fail','Không thể gửi email trong lúc này. Vui lòng thực hiện lại sau.','2023-05-02 21:00:44','2023-05-02 21:00:44'),(326,1,'vi','core/acl/auth','reset.new-password','Mật khẩu mới','2023-05-02 21:00:44','2023-05-02 21:00:44'),(327,1,'vi','core/acl/auth','reset.email','Email','2023-05-02 21:00:44','2023-05-02 21:00:44'),(328,1,'vi','core/acl/auth','reset.password_confirmation','Xác nhận mật khẩu mới','2023-05-02 21:00:44','2023-05-02 21:00:44'),(329,1,'vi','core/acl/auth','email.reminder.title','Email khôi phục mật khẩu','2023-05-02 21:00:44','2023-05-02 21:00:44'),(330,1,'vi','core/acl/auth','failed','Không thành công','2023-05-02 21:00:44','2023-05-02 21:00:44'),(331,1,'vi','core/acl/auth','throttle','Throttle','2023-05-02 21:00:44','2023-05-02 21:00:44'),(332,1,'vi','core/acl/auth','back_to_login','Quay lại trang đăng nhập','2023-05-02 21:00:44','2023-05-02 21:00:44'),(333,1,'vi','core/acl/auth','login_title','Đăng nhập vào quản trị','2023-05-02 21:00:44','2023-05-02 21:00:44'),(334,1,'vi','core/acl/auth','login_via_social','Đăng nhập thông qua mạng xã hội','2023-05-02 21:00:44','2023-05-02 21:00:44'),(335,1,'vi','core/acl/auth','lost_your_password','Quên mật khẩu?','2023-05-02 21:00:44','2023-05-02 21:00:44'),(336,1,'vi','core/acl/auth','not_member','Chưa là thành viên?','2023-05-02 21:00:44','2023-05-02 21:00:44'),(337,1,'vi','core/acl/auth','register_now','Đăng ký ngay','2023-05-02 21:00:44','2023-05-02 21:00:44'),(338,1,'vi','core/acl/auth','languages','Ngôn ngữ','2023-05-02 21:00:44','2023-05-02 21:00:44'),(339,1,'vi','core/acl/auth','password_confirmation','Xác nhận mật khẩu','2023-05-02 21:00:44','2023-05-02 21:00:44'),(340,1,'vi','core/acl/auth','reset_password','Khôi phục mật khẩu','2023-05-02 21:00:44','2023-05-02 21:00:44'),(341,1,'vi','core/acl/auth','sign_in_below','Đăng nhập','2023-05-02 21:00:44','2023-05-02 21:00:44'),(342,1,'vi','core/acl/permissions','notices.role_in_use','Không thể xóa quyền người dùng này vì nó đang được sử dụng!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(343,1,'vi','core/acl/permissions','notices.role_delete_belong_user','Không thể xóa quyền hạn này vì nó thuộc về người khác!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(344,1,'vi','core/acl/permissions','notices.role_edit_belong_user','Bạn không được phép sửa quyền này vì nó thuộc về người khác','2023-05-02 21:00:44','2023-05-02 21:00:44'),(345,1,'vi','core/acl/permissions','notices.delete_global_role','Bạn không thể xóa quyền người dùng hệ thống!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(346,1,'vi','core/acl/permissions','notices.delete_success','Quyền người dùng đã được xóa!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(347,1,'vi','core/acl/permissions','notices.modified_success','Quyền người dùng đã được cập nhật thành công!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(348,1,'vi','core/acl/permissions','notices.create_success','Quyền người dùng mới đã được tạo thành công!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(349,1,'vi','core/acl/permissions','notices.duplicated_success','Quyền người dùng đã được sao chép thành công!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(350,1,'vi','core/acl/permissions','notices.no_select','Hãy chọn ít nhất một quyền người dùng để thực hiện hành động này!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(351,1,'vi','core/acl/permissions','notices.not_found','Không tìm thấy quyền người dùng này','2023-05-02 21:00:44','2023-05-02 21:00:44'),(352,1,'vi','core/acl/permissions','name','Tên','2023-05-02 21:00:44','2023-05-02 21:00:44'),(353,1,'vi','core/acl/permissions','current_role','Quyền hiện tại','2023-05-02 21:00:44','2023-05-02 21:00:44'),(354,1,'vi','core/acl/permissions','no_role_assigned','Không có quyền hạn nào','2023-05-02 21:00:44','2023-05-02 21:00:44'),(355,1,'vi','core/acl/permissions','role_assigned','Quyền đã được gán','2023-05-02 21:00:44','2023-05-02 21:00:44'),(356,1,'vi','core/acl/permissions','create_role','Tạo quyền mới','2023-05-02 21:00:44','2023-05-02 21:00:44'),(357,1,'vi','core/acl/permissions','role_name','Tên','2023-05-02 21:00:44','2023-05-02 21:00:44'),(358,1,'vi','core/acl/permissions','role_description','Mô tả','2023-05-02 21:00:44','2023-05-02 21:00:44'),(359,1,'vi','core/acl/permissions','permission_flags','Cờ đánh dấu quyền hạn','2023-05-02 21:00:44','2023-05-02 21:00:44'),(360,1,'vi','core/acl/permissions','cancel','Hủy bỏ','2023-05-02 21:00:44','2023-05-02 21:00:44'),(361,1,'vi','core/acl/permissions','reset','Làm lại','2023-05-02 21:00:44','2023-05-02 21:00:44'),(362,1,'vi','core/acl/permissions','save','Lưu','2023-05-02 21:00:44','2023-05-02 21:00:44'),(363,1,'vi','core/acl/permissions','global_role_msg','Đây là một phân quyền toàn cục và không thể thay đổi. Bạn có thể sử dụng nút \"Nhân bản\" để tạo một bản sao chép cho phân quyền này và chỉnh sửa.','2023-05-02 21:00:44','2023-05-02 21:00:44'),(364,1,'vi','core/acl/permissions','details','Chi tiết','2023-05-02 21:00:44','2023-05-02 21:00:44'),(365,1,'vi','core/acl/permissions','duplicate','Nhân bản','2023-05-02 21:00:44','2023-05-02 21:00:44'),(366,1,'vi','core/acl/permissions','all','Tất cả phân quyền','2023-05-02 21:00:44','2023-05-02 21:00:44'),(367,1,'vi','core/acl/permissions','list_role','Danh sách quyền','2023-05-02 21:00:44','2023-05-02 21:00:44'),(368,1,'vi','core/acl/permissions','created_on','Ngày tạo','2023-05-02 21:00:44','2023-05-02 21:00:44'),(369,1,'vi','core/acl/permissions','created_by','Được tạo bởi','2023-05-02 21:00:44','2023-05-02 21:00:44'),(370,1,'vi','core/acl/permissions','actions','Tác vụ','2023-05-02 21:00:44','2023-05-02 21:00:44'),(371,1,'vi','core/acl/permissions','create_success','Tạo thành công!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(372,1,'vi','core/acl/permissions','delete_global_role','Không thể xóa quyền hệ thống','2023-05-02 21:00:44','2023-05-02 21:00:44'),(373,1,'vi','core/acl/permissions','delete_success','Xóa quyền thành công','2023-05-02 21:00:44','2023-05-02 21:00:44'),(374,1,'vi','core/acl/permissions','duplicated_success','Nhân bản thành công','2023-05-02 21:00:44','2023-05-02 21:00:44'),(375,1,'vi','core/acl/permissions','modified_success','Sửa thành công','2023-05-02 21:00:44','2023-05-02 21:00:44'),(376,1,'vi','core/acl/permissions','no_select','Hãy chọn ít nhất một quyền để thực hiện hành động này!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(377,1,'vi','core/acl/permissions','not_found','Không tìm thấy quyền thành viên nào!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(378,1,'vi','core/acl/permissions','options','Tùy chọn','2023-05-02 21:00:44','2023-05-02 21:00:44'),(379,1,'vi','core/acl/permissions','role_delete_belong_user','Không thể xóa quyền hạn này vì nó thuộc về người khác!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(380,1,'vi','core/acl/permissions','role_edit_belong_user','Bạn không được phép sửa quyền này vì nó thuộc về người khác','2023-05-02 21:00:44','2023-05-02 21:00:44'),(381,1,'vi','core/acl/permissions','role_in_use','Không thể xóa quyền người dùng này vì nó đang được sử dụng!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(382,1,'vi','core/acl/permissions','access_denied_message','Bạn không có quyền sử dụng chức năng này!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(383,1,'vi','core/acl/permissions','roles','Quyền','2023-05-02 21:00:44','2023-05-02 21:00:44'),(384,1,'vi','core/acl/permissions','role_permission','Nhóm và phân quyền','2023-05-02 21:00:44','2023-05-02 21:00:44'),(385,1,'vi','core/acl/permissions','user_management','Quản lý người dùng hệ thống','2023-05-02 21:00:44','2023-05-02 21:00:44'),(386,1,'vi','core/acl/permissions','super_user_management','Quản lý người dùng cấp cao','2023-05-02 21:00:44','2023-05-02 21:00:44'),(387,1,'vi','core/acl/permissions','action_unauthorized','Hành động này không được phép','2023-05-02 21:00:44','2023-05-02 21:00:44'),(388,1,'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.','2023-05-02 21:00:44','2023-05-02 21:00:44'),(389,1,'vi','core/acl/reminders','user','Hệ thống không thể tìm thấy tài khoản với email này.','2023-05-02 21:00:44','2023-05-02 21:00:44'),(390,1,'vi','core/acl/reminders','token','Mã khôi phục mật khẩu này không hợp lệ.','2023-05-02 21:00:44','2023-05-02 21:00:44'),(391,1,'vi','core/acl/reminders','sent','Liên kết khôi phục mật khẩu đã được gửi!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(392,1,'vi','core/acl/reminders','reset','Mật khẩu đã được thay đổi!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(393,1,'vi','core/acl/users','delete_user_logged_in','Không thể xóa người dùng đang đăng nhập hệ thống!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(394,1,'vi','core/acl/users','no_select','Hãy chọn ít nhất một trường để thực hiện hành động này!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(395,1,'vi','core/acl/users','lock_user_logged_in','Không thể khóa người dùng đang đăng nhập hệ thống!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(396,1,'vi','core/acl/users','update_success','Cập nhật trạng thái thành công!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(397,1,'vi','core/acl/users','save_setting_failed','Có lỗi xảy ra trong quá trình lưu cài đặt của người dùng','2023-05-02 21:00:44','2023-05-02 21:00:44'),(398,1,'vi','core/acl/users','not_found','Không tìm thấy người dùng','2023-05-02 21:00:44','2023-05-02 21:00:44'),(399,1,'vi','core/acl/users','email_exist','Email này đã được sử dụng bởi người dùng khác trong hệ thống','2023-05-02 21:00:44','2023-05-02 21:00:44'),(400,1,'vi','core/acl/users','username_exist','Tên đăng nhập này đã được sử dụng bởi người dùng khác trong hệ thống','2023-05-02 21:00:44','2023-05-02 21:00:44'),(401,1,'vi','core/acl/users','update_profile_success','Thông tin tài khoản của bạn đã được cập nhật thành công','2023-05-02 21:00:44','2023-05-02 21:00:44'),(402,1,'vi','core/acl/users','password_update_success','Cập nhật mật khẩu thành công','2023-05-02 21:00:44','2023-05-02 21:00:44'),(403,1,'vi','core/acl/users','current_password_not_valid','Mật khẩu hiện tại không chính xác','2023-05-02 21:00:44','2023-05-02 21:00:44'),(404,1,'vi','core/acl/users','user_exist_in','Người dùng đã là thành viên','2023-05-02 21:00:44','2023-05-02 21:00:44'),(405,1,'vi','core/acl/users','email','Email','2023-05-02 21:00:44','2023-05-02 21:00:44'),(406,1,'vi','core/acl/users','username','Tên đăng nhập','2023-05-02 21:00:44','2023-05-02 21:00:44'),(407,1,'vi','core/acl/users','role','Phân quyền','2023-05-02 21:00:44','2023-05-02 21:00:44'),(408,1,'vi','core/acl/users','first_name','Họ','2023-05-02 21:00:44','2023-05-02 21:00:44'),(409,1,'vi','core/acl/users','last_name','Tên','2023-05-02 21:00:44','2023-05-02 21:00:44'),(410,1,'vi','core/acl/users','message','Thông điệp','2023-05-02 21:00:44','2023-05-02 21:00:44'),(411,1,'vi','core/acl/users','cancel_btn','Hủy bỏ','2023-05-02 21:00:44','2023-05-02 21:00:44'),(412,1,'vi','core/acl/users','password','Mật khẩu','2023-05-02 21:00:44','2023-05-02 21:00:44'),(413,1,'vi','core/acl/users','new_password','Mật khẩu mới','2023-05-02 21:00:44','2023-05-02 21:00:44'),(414,1,'vi','core/acl/users','save','Lưu','2023-05-02 21:00:44','2023-05-02 21:00:44'),(415,1,'vi','core/acl/users','confirm_new_password','Xác nhận mật khẩu mới','2023-05-02 21:00:44','2023-05-02 21:00:44'),(416,1,'vi','core/acl/users','deleted','Xóa thành viên thành công','2023-05-02 21:00:44','2023-05-02 21:00:44'),(417,1,'vi','core/acl/users','cannot_delete','Không thể xóa thành viên','2023-05-02 21:00:44','2023-05-02 21:00:44'),(418,1,'vi','core/acl/users','last_login','Lần cuối đăng nhập','2023-05-02 21:00:44','2023-05-02 21:00:44'),(419,1,'vi','core/acl/users','error_update_profile_image','Có lỗi trong quá trình đổi ảnh đại diện','2023-05-02 21:00:44','2023-05-02 21:00:44'),(420,1,'vi','core/acl/users','email_reminder_template','<h3>Xin chà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 phụ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>','2023-05-02 21:00:44','2023-05-02 21:00:44'),(421,1,'vi','core/acl/users','change_profile_image','Thay đổi ảnh đại diện','2023-05-02 21:00:44','2023-05-02 21:00:44'),(422,1,'vi','core/acl/users','new_image','Ảnh mới','2023-05-02 21:00:44','2023-05-02 21:00:44'),(423,1,'vi','core/acl/users','loading','Đang tải','2023-05-02 21:00:44','2023-05-02 21:00:44'),(424,1,'vi','core/acl/users','close','Đóng','2023-05-02 21:00:44','2023-05-02 21:00:44'),(425,1,'vi','core/acl/users','update','Cập nhật','2023-05-02 21:00:44','2023-05-02 21:00:44'),(426,1,'vi','core/acl/users','read_image_failed','Không đọc được nội dung của hình ảnh','2023-05-02 21:00:44','2023-05-02 21:00:44'),(427,1,'vi','core/acl/users','update_avatar_success','Cập nhật ảnh đại diện thành công!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(428,1,'vi','core/acl/users','users','Quản trị viên','2023-05-02 21:00:44','2023-05-02 21:00:44'),(429,1,'vi','core/acl/users','info.title','Thông tin người dùng','2023-05-02 21:00:44','2023-05-02 21:00:44'),(430,1,'vi','core/acl/users','info.first_name','Họ','2023-05-02 21:00:44','2023-05-02 21:00:44'),(431,1,'vi','core/acl/users','info.last_name','Tên','2023-05-02 21:00:44','2023-05-02 21:00:44'),(432,1,'vi','core/acl/users','statuses.activated','Đang hoạt động','2023-05-02 21:00:44','2023-05-02 21:00:44'),(433,1,'vi','core/acl/users','statuses.deactivated','Đã khoá','2023-05-02 21:00:44','2023-05-02 21:00:44'),(434,1,'vi','core/acl/users','change_password','Thay đổi mật khẩu','2023-05-02 21:00:44','2023-05-02 21:00:44'),(435,1,'vi','core/acl/users','current_password','Mật khẩu hiện tại','2023-05-02 21:00:44','2023-05-02 21:00:44'),(436,1,'vi','core/acl/users','make_super','Thiết lập quyền cao nhất','2023-05-02 21:00:44','2023-05-02 21:00:44'),(437,1,'vi','core/acl/users','remove_super','Loại bỏ quyền cao nhất','2023-05-02 21:00:44','2023-05-02 21:00:44'),(438,1,'vi','core/acl/users','is_super','Quyền cao nhất?','2023-05-02 21:00:44','2023-05-02 21:00:44'),(439,1,'vi','core/acl/users','email_placeholder','Ex: example@gmail.com','2023-05-02 21:00:44','2023-05-02 21:00:44'),(440,1,'vi','core/acl/users','password_confirmation','Nhập lại mật khẩu','2023-05-02 21:00:44','2023-05-02 21:00:44'),(441,1,'vi','core/acl/users','select_role','Chọn nhóm','2023-05-02 21:00:44','2023-05-02 21:00:44'),(442,1,'vi','core/acl/users','create_new_user','Tạo tài khoản quản trị viên mới','2023-05-02 21:00:44','2023-05-02 21:00:44'),(443,1,'vi','core/acl/users','cannot_delete_super_user','Vượt quyền hạn, không thể xoá quản trị viên cấp cao nhất!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(444,1,'vi','core/acl/users','assigned_role','Cấp quyền','2023-05-02 21:00:44','2023-05-02 21:00:44'),(445,1,'vi','core/acl/users','total_users','Tổng số người dùng','2023-05-02 21:00:44','2023-05-02 21:00:44'),(446,1,'vi','core/acl/users','view_user_profile','Xem thông tin người dùng','2023-05-02 21:00:44','2023-05-02 21:00:44'),(447,1,'vi','core/acl/users','no_role_assigned','Chưa có quyền nào','2023-05-02 21:00:44','2023-05-02 21:00:44'),(448,1,'en','core/base/base','yes','Yes','2023-05-02 21:00:44','2023-05-02 21:00:44'),(449,1,'en','core/base/base','no','No','2023-05-02 21:00:44','2023-05-02 21:00:44'),(450,1,'en','core/base/base','is_default','Is default?','2023-05-02 21:00:44','2023-05-02 21:00:44'),(451,1,'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.','2023-05-02 21:00:44','2023-05-02 21:00:44'),(452,1,'en','core/base/base','email_template.header','Email template header','2023-05-02 21:00:44','2023-05-02 21:00:44'),(453,1,'en','core/base/base','email_template.footer','Email template footer','2023-05-02 21:00:44','2023-05-02 21:00:44'),(454,1,'en','core/base/base','email_template.site_title','Site title','2023-05-02 21:00:44','2023-05-02 21:00:44'),(455,1,'en','core/base/base','email_template.site_url','Site URL','2023-05-02 21:00:44','2023-05-02 21:00:44'),(456,1,'en','core/base/base','email_template.site_logo','Site Logo','2023-05-02 21:00:44','2023-05-02 21:00:44'),(457,1,'en','core/base/base','email_template.date_time','Current date time','2023-05-02 21:00:44','2023-05-02 21:00:44'),(458,1,'en','core/base/base','email_template.date_year','Current year','2023-05-02 21:00:44','2023-05-02 21:00:44'),(459,1,'en','core/base/base','email_template.site_admin_email','Site admin email','2023-05-02 21:00:44','2023-05-02 21:00:44'),(460,1,'en','core/base/base','change_image','Change image','2023-05-02 21:00:44','2023-05-02 21:00:44'),(461,1,'en','core/base/base','delete_image','Delete image','2023-05-02 21:00:44','2023-05-02 21:00:44'),(462,1,'en','core/base/base','preview_image','Preview image','2023-05-02 21:00:44','2023-05-02 21:00:44'),(463,1,'en','core/base/base','image','Image','2023-05-02 21:00:44','2023-05-02 21:00:44'),(464,1,'en','core/base/base','using_button','Using button','2023-05-02 21:00:44','2023-05-02 21:00:44'),(465,1,'en','core/base/base','select_image','Select image','2023-05-02 21:00:44','2023-05-02 21:00:44'),(466,1,'en','core/base/base','to_add_more_image','to add more images','2023-05-02 21:00:44','2023-05-02 21:00:44'),(467,1,'en','core/base/base','add_image','Add image','2023-05-02 21:00:44','2023-05-02 21:00:44'),(468,1,'en','core/base/base','tools','Tools','2023-05-02 21:00:44','2023-05-02 21:00:44'),(469,1,'en','core/base/cache','cache_management','Cache management','2023-05-02 21:00:44','2023-05-02 21:00:44'),(470,1,'en','core/base/cache','cache_commands','Clear cache commands','2023-05-02 21:00:44','2023-05-02 21:00:44'),(471,1,'en','core/base/cache','commands.clear_cms_cache.title','Clear all CMS cache','2023-05-02 21:00:44','2023-05-02 21:00:44'),(472,1,'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.','2023-05-02 21:00:44','2023-05-02 21:00:44'),(473,1,'en','core/base/cache','commands.clear_cms_cache.success_msg','Cache cleaned','2023-05-02 21:00:44','2023-05-02 21:00:44'),(474,1,'en','core/base/cache','commands.refresh_compiled_views.title','Refresh compiled views','2023-05-02 21:00:44','2023-05-02 21:00:44'),(475,1,'en','core/base/cache','commands.refresh_compiled_views.description','Clear compiled views to make views up to date.','2023-05-02 21:00:44','2023-05-02 21:00:44'),(476,1,'en','core/base/cache','commands.refresh_compiled_views.success_msg','Cache view refreshed','2023-05-02 21:00:44','2023-05-02 21:00:44'),(477,1,'en','core/base/cache','commands.clear_config_cache.title','Clear config cache','2023-05-02 21:00:44','2023-05-02 21:00:44'),(478,1,'en','core/base/cache','commands.clear_config_cache.description','You might need to refresh the config caching when you change something on production environment.','2023-05-02 21:00:44','2023-05-02 21:00:44'),(479,1,'en','core/base/cache','commands.clear_config_cache.success_msg','Config cache cleaned','2023-05-02 21:00:44','2023-05-02 21:00:44'),(480,1,'en','core/base/cache','commands.clear_route_cache.title','Clear route cache','2023-05-02 21:00:44','2023-05-02 21:00:44'),(481,1,'en','core/base/cache','commands.clear_route_cache.description','Clear cache routing.','2023-05-02 21:00:44','2023-05-02 21:00:44'),(482,1,'en','core/base/cache','commands.clear_route_cache.success_msg','The route cache has been cleaned','2023-05-02 21:00:44','2023-05-02 21:00:44'),(483,1,'en','core/base/cache','commands.clear_log.title','Clear log','2023-05-02 21:00:44','2023-05-02 21:00:44'),(484,1,'en','core/base/cache','commands.clear_log.description','Clear system log files','2023-05-02 21:00:44','2023-05-02 21:00:44'),(485,1,'en','core/base/cache','commands.clear_log.success_msg','The system log has been cleaned','2023-05-02 21:00:44','2023-05-02 21:00:44'),(486,1,'en','core/base/enums','statuses.draft','Draft','2023-05-02 21:00:44','2023-05-02 21:00:44'),(487,1,'en','core/base/enums','statuses.pending','Pending','2023-05-02 21:00:44','2023-05-02 21:00:44'),(488,1,'en','core/base/enums','statuses.published','Published','2023-05-02 21:00:44','2023-05-02 21:00:44'),(489,1,'en','core/base/errors','401_title','Permission Denied','2023-05-02 21:00:44','2023-05-02 21:00:44'),(490,1,'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>','2023-05-02 21:00:44','2023-05-02 21:00:44'),(491,1,'en','core/base/errors','404_title','Page could not be found','2023-05-02 21:00:44','2023-05-02 21:00:44'),(492,1,'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>','2023-05-02 21:00:44','2023-05-02 21:00:44'),(493,1,'en','core/base/errors','500_title','Page could not be loaded','2023-05-02 21:00:44','2023-05-02 21:00:44'),(494,1,'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>','2023-05-02 21:00:44','2023-05-02 21:00:44'),(495,1,'en','core/base/errors','reasons','This may have occurred because of several reasons','2023-05-02 21:00:44','2023-05-02 21:00:44'),(496,1,'en','core/base/errors','try_again','Please try again in a few minutes, or alternatively return to the homepage by <a href=\":link\">clicking here</a>.','2023-05-02 21:00:44','2023-05-02 21:00:44'),(497,1,'en','core/base/errors','not_found','Not Found','2023-05-02 21:00:44','2023-05-02 21:00:44'),(498,1,'en','core/base/errors','results_not_found','Results not found!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(499,1,'en','core/base/forms','choose_image','Choose image','2023-05-02 21:00:44','2023-05-02 21:00:44'),(500,1,'en','core/base/forms','actions','Actions','2023-05-02 21:00:44','2023-05-02 21:00:44'),(501,1,'en','core/base/forms','save','Save & Exit','2023-05-02 21:00:44','2023-05-02 21:00:44'),(502,1,'en','core/base/forms','save_and_continue','Save','2023-05-02 21:00:44','2023-05-02 21:00:44'),(503,1,'en','core/base/forms','image','Image','2023-05-02 21:00:44','2023-05-02 21:00:44'),(504,1,'en','core/base/forms','image_placeholder','Insert path of image or click upload button','2023-05-02 21:00:44','2023-05-02 21:00:44'),(505,1,'en','core/base/forms','create','Create','2023-05-02 21:00:44','2023-05-02 21:00:44'),(506,1,'en','core/base/forms','edit','Edit','2023-05-02 21:00:44','2023-05-02 21:00:44'),(507,1,'en','core/base/forms','permalink','Permalink','2023-05-02 21:00:44','2023-05-02 21:00:44'),(508,1,'en','core/base/forms','ok','OK','2023-05-02 21:00:44','2023-05-02 21:00:44'),(509,1,'en','core/base/forms','cancel','Cancel','2023-05-02 21:00:44','2023-05-02 21:00:44'),(510,1,'en','core/base/forms','character_remain','character(s) remain','2023-05-02 21:00:44','2023-05-02 21:00:44'),(511,1,'en','core/base/forms','template','Template','2023-05-02 21:00:44','2023-05-02 21:00:44'),(512,1,'en','core/base/forms','choose_file','Choose file','2023-05-02 21:00:44','2023-05-02 21:00:44'),(513,1,'en','core/base/forms','file','File','2023-05-02 21:00:44','2023-05-02 21:00:44'),(514,1,'en','core/base/forms','content','Content','2023-05-02 21:00:44','2023-05-02 21:00:44'),(515,1,'en','core/base/forms','description','Description','2023-05-02 21:00:44','2023-05-02 21:00:44'),(516,1,'en','core/base/forms','name','Name','2023-05-02 21:00:44','2023-05-02 21:00:44'),(517,1,'en','core/base/forms','slug','Slug','2023-05-02 21:00:44','2023-05-02 21:00:44'),(518,1,'en','core/base/forms','title','Title','2023-05-02 21:00:44','2023-05-02 21:00:44'),(519,1,'en','core/base/forms','value','Value','2023-05-02 21:00:44','2023-05-02 21:00:44'),(520,1,'en','core/base/forms','name_placeholder','Name','2023-05-02 21:00:44','2023-05-02 21:00:44'),(521,1,'en','core/base/forms','alias_placeholder','Alias','2023-05-02 21:00:44','2023-05-02 21:00:44'),(522,1,'en','core/base/forms','description_placeholder','Short description','2023-05-02 21:00:44','2023-05-02 21:00:44'),(523,1,'en','core/base/forms','parent','Parent','2023-05-02 21:00:44','2023-05-02 21:00:44'),(524,1,'en','core/base/forms','icon','Icon','2023-05-02 21:00:44','2023-05-02 21:00:44'),(525,1,'en','core/base/forms','icon_placeholder','Ex: fa fa-home','2023-05-02 21:00:44','2023-05-02 21:00:44'),(526,1,'en','core/base/forms','order_by','Order by','2023-05-02 21:00:44','2023-05-02 21:00:44'),(527,1,'en','core/base/forms','order_by_placeholder','Order by','2023-05-02 21:00:44','2023-05-02 21:00:44'),(528,1,'en','core/base/forms','is_featured','Is featured?','2023-05-02 21:00:44','2023-05-02 21:00:44'),(529,1,'en','core/base/forms','is_default','Is default?','2023-05-02 21:00:44','2023-05-02 21:00:44'),(530,1,'en','core/base/forms','update','Update','2023-05-02 21:00:44','2023-05-02 21:00:44'),(531,1,'en','core/base/forms','publish','Publish','2023-05-02 21:00:44','2023-05-02 21:00:44'),(532,1,'en','core/base/forms','remove_image','Remove image','2023-05-02 21:00:44','2023-05-02 21:00:44'),(533,1,'en','core/base/forms','remove_file','Remove file','2023-05-02 21:00:44','2023-05-02 21:00:44'),(534,1,'en','core/base/forms','order','Order','2023-05-02 21:00:44','2023-05-02 21:00:44'),(535,1,'en','core/base/forms','alias','Alias','2023-05-02 21:00:44','2023-05-02 21:00:44'),(536,1,'en','core/base/forms','basic_information','Basic information','2023-05-02 21:00:44','2023-05-02 21:00:44'),(537,1,'en','core/base/forms','short_code','Shortcode','2023-05-02 21:00:44','2023-05-02 21:00:44'),(538,1,'en','core/base/forms','add_short_code','Add a shortcode','2023-05-02 21:00:44','2023-05-02 21:00:44'),(539,1,'en','core/base/forms','add','Add','2023-05-02 21:00:44','2023-05-02 21:00:44'),(540,1,'en','core/base/forms','link','Link','2023-05-02 21:00:44','2023-05-02 21:00:44'),(541,1,'en','core/base/forms','show_hide_editor','Show/Hide Editor','2023-05-02 21:00:44','2023-05-02 21:00:44'),(542,1,'en','core/base/forms','basic_info_title','Basic information','2023-05-02 21:00:44','2023-05-02 21:00:44'),(543,1,'en','core/base/forms','expand_all','Expand all','2023-05-02 21:00:44','2023-05-02 21:00:44'),(544,1,'en','core/base/forms','collapse_all','Collapse all','2023-05-02 21:00:44','2023-05-02 21:00:44'),(545,1,'en','core/base/forms','view_new_tab','Open in new tab','2023-05-02 21:00:44','2023-05-02 21:00:44'),(546,1,'en','core/base/forms','view_preview_image','View preview image','2023-05-02 21:00:44','2023-05-02 21:00:44'),(547,1,'en','core/base/forms','edit_item','Edit \":name\"','2023-05-02 21:00:44','2023-05-02 21:00:44'),(548,1,'en','core/base/layouts','platform_admin','Platform Administration','2023-05-02 21:00:44','2023-05-02 21:00:44'),(549,1,'en','core/base/layouts','dashboard','Dashboard','2023-05-02 21:00:44','2023-05-02 21:00:44'),(550,1,'en','core/base/layouts','widgets','Widgets','2023-05-02 21:00:44','2023-05-02 21:00:44'),(551,1,'en','core/base/layouts','plugins','Plugins','2023-05-02 21:00:44','2023-05-02 21:00:44'),(552,1,'en','core/base/layouts','settings','Settings','2023-05-02 21:00:44','2023-05-02 21:00:44'),(553,1,'en','core/base/layouts','setting_general','General','2023-05-02 21:00:44','2023-05-02 21:00:44'),(554,1,'en','core/base/layouts','setting_email','Email','2023-05-02 21:00:44','2023-05-02 21:00:44'),(555,1,'en','core/base/layouts','system_information','System information','2023-05-02 21:00:44','2023-05-02 21:00:44'),(556,1,'en','core/base/layouts','theme','Theme','2023-05-02 21:00:44','2023-05-02 21:00:44'),(557,1,'en','core/base/layouts','copyright','Copyright :year © :company. Version: <span>:version</span>','2023-05-02 21:00:44','2023-05-02 21:00:44'),(558,1,'en','core/base/layouts','profile','Profile','2023-05-02 21:00:44','2023-05-02 21:00:44'),(559,1,'en','core/base/layouts','logout','Logout','2023-05-02 21:00:44','2023-05-02 21:00:44'),(560,1,'en','core/base/layouts','no_search_result','No results found, please try with different keywords.','2023-05-02 21:00:44','2023-05-02 21:00:44'),(561,1,'en','core/base/layouts','home','Home','2023-05-02 21:00:44','2023-05-02 21:00:44'),(562,1,'en','core/base/layouts','search','Search','2023-05-02 21:00:44','2023-05-02 21:00:44'),(563,1,'en','core/base/layouts','add_new','Add new','2023-05-02 21:00:44','2023-05-02 21:00:44'),(564,1,'en','core/base/layouts','n_a','N/A','2023-05-02 21:00:44','2023-05-02 21:00:44'),(565,1,'en','core/base/layouts','page_loaded_time','Page loaded in','2023-05-02 21:00:44','2023-05-02 21:00:44'),(566,1,'en','core/base/layouts','view_website','View website','2023-05-02 21:00:44','2023-05-02 21:00:44'),(567,1,'en','core/base/mail','send-fail','Send email failed','2023-05-02 21:00:44','2023-05-02 21:00:44'),(568,1,'en','core/base/notices','create_success_message','Created successfully','2023-05-02 21:00:44','2023-05-02 21:00:44'),(569,1,'en','core/base/notices','update_success_message','Updated successfully','2023-05-02 21:00:44','2023-05-02 21:00:44'),(570,1,'en','core/base/notices','delete_success_message','Deleted successfully','2023-05-02 21:00:44','2023-05-02 21:00:44'),(571,1,'en','core/base/notices','success_header','Success!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(572,1,'en','core/base/notices','error_header','Error!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(573,1,'en','core/base/notices','no_select','Please select at least one record to perform this action!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(574,1,'en','core/base/notices','processing_request','We are processing your request.','2023-05-02 21:00:44','2023-05-02 21:00:44'),(575,1,'en','core/base/notices','error','Error!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(576,1,'en','core/base/notices','success','Success!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(577,1,'en','core/base/notices','info','Info!','2023-05-02 21:00:44','2023-05-02 21:00:44'),(578,1,'en','core/base/notices','enum.validate_message','The :attribute value you have entered is invalid.','2023-05-02 21:00:44','2023-05-02 21:00:44'),(579,1,'en','core/base/notifications','notifications','Notifications','2023-05-02 21:00:44','2023-05-02 21:00:44'),(580,1,'en','core/base/notifications','mark_as_read','Mark as read','2023-05-02 21:00:44','2023-05-02 21:00:44'),(581,1,'en','core/base/notifications','clear','Clear','2023-05-02 21:00:44','2023-05-02 21:00:44'),(582,1,'en','core/base/notifications','no_notification_here','No notifications here','2023-05-02 21:00:44','2023-05-02 21:00:44'),(583,1,'en','core/base/notifications','please_check_again_later','Please check again later','2023-05-02 21:00:44','2023-05-02 21:00:44'),(584,1,'en','core/base/notifications','view_more','View more...','2023-05-02 21:00:44','2023-05-02 21:00:44'),(585,1,'en','core/base/notifications','view','View','2023-05-02 21:00:44','2023-05-02 21:00:44'),(586,1,'en','core/base/notifications','show_more','Show more','2023-05-02 21:00:45','2023-05-02 21:00:45'),(587,1,'en','core/base/notifications','show_less','Show less','2023-05-02 21:00:45','2023-05-02 21:00:45'),(588,1,'en','core/base/system','no_select','Please select at least one record to take this action!','2023-05-02 21:00:45','2023-05-02 21:00:45'),(589,1,'en','core/base/system','cannot_find_user','Unable to find specified user','2023-05-02 21:00:45','2023-05-02 21:00:45'),(590,1,'en','core/base/system','supper_revoked','Super user access revoked','2023-05-02 21:00:45','2023-05-02 21:00:45'),(591,1,'en','core/base/system','cannot_revoke_yourself','Can not revoke supper user access permission yourself!','2023-05-02 21:00:45','2023-05-02 21:00:45'),(592,1,'en','core/base/system','cant_remove_supper','You don\'t has permission to remove this super user','2023-05-02 21:00:45','2023-05-02 21:00:45'),(593,1,'en','core/base/system','cant_find_user_with_email','Unable to find user with specified email address','2023-05-02 21:00:45','2023-05-02 21:00:45'),(594,1,'en','core/base/system','supper_granted','Super user access granted','2023-05-02 21:00:45','2023-05-02 21:00:45'),(595,1,'en','core/base/system','delete_log_success','Delete log file successfully!','2023-05-02 21:00:45','2023-05-02 21:00:45'),(596,1,'en','core/base/system','get_member_success','Member list retrieved successfully','2023-05-02 21:00:45','2023-05-02 21:00:45'),(597,1,'en','core/base/system','error_occur','The following errors occurred','2023-05-02 21:00:45','2023-05-02 21:00:45'),(598,1,'en','core/base/system','user_management','User Management','2023-05-02 21:00:45','2023-05-02 21:00:45'),(599,1,'en','core/base/system','user_management_description','Manage users.','2023-05-02 21:00:45','2023-05-02 21:00:45'),(600,1,'en','core/base/system','role_and_permission','Roles and Permissions','2023-05-02 21:00:45','2023-05-02 21:00:45'),(601,1,'en','core/base/system','role_and_permission_description','Manage the available roles.','2023-05-02 21:00:45','2023-05-02 21:00:45'),(602,1,'en','core/base/system','user.list_super','List Super Users','2023-05-02 21:00:45','2023-05-02 21:00:45'),(603,1,'en','core/base/system','user.email','Email','2023-05-02 21:00:45','2023-05-02 21:00:45'),(604,1,'en','core/base/system','user.last_login','Last Login','2023-05-02 21:00:45','2023-05-02 21:00:45'),(605,1,'en','core/base/system','user.username','Username','2023-05-02 21:00:45','2023-05-02 21:00:45'),(606,1,'en','core/base/system','user.add_user','Add Super User','2023-05-02 21:00:45','2023-05-02 21:00:45'),(607,1,'en','core/base/system','user.cancel','Cancel','2023-05-02 21:00:45','2023-05-02 21:00:45'),(608,1,'en','core/base/system','user.create','Create','2023-05-02 21:00:45','2023-05-02 21:00:45'),(609,1,'en','core/base/system','options.features','Feature Access Control','2023-05-02 21:00:45','2023-05-02 21:00:45'),(610,1,'en','core/base/system','options.feature_description','Manage the available.','2023-05-02 21:00:45','2023-05-02 21:00:45'),(611,1,'en','core/base/system','options.manage_super','Super User Management','2023-05-02 21:00:45','2023-05-02 21:00:45'),(612,1,'en','core/base/system','options.manage_super_description','Add/remove super users.','2023-05-02 21:00:45','2023-05-02 21:00:45'),(613,1,'en','core/base/system','options.info','System information','2023-05-02 21:00:45','2023-05-02 21:00:45'),(614,1,'en','core/base/system','options.info_description','All information about current system configuration.','2023-05-02 21:00:45','2023-05-02 21:00:45'),(615,1,'en','core/base/system','info.title','System information','2023-05-02 21:00:45','2023-05-02 21:00:45'),(616,1,'en','core/base/system','info.cache','Cache','2023-05-02 21:00:45','2023-05-02 21:00:45'),(617,1,'en','core/base/system','info.locale','Active locale','2023-05-02 21:00:45','2023-05-02 21:00:45'),(618,1,'en','core/base/system','info.environment','Environment','2023-05-02 21:00:45','2023-05-02 21:00:45'),(619,1,'en','core/base/system','disabled_in_demo_mode','You cannot do it in demo mode!','2023-05-02 21:00:45','2023-05-02 21:00:45'),(620,1,'en','core/base/system','report_description','Please share this information for troubleshooting','2023-05-02 21:00:45','2023-05-02 21:00:45'),(621,1,'en','core/base/system','get_system_report','Get System Report','2023-05-02 21:00:45','2023-05-02 21:00:45'),(622,1,'en','core/base/system','system_environment','System Environment','2023-05-02 21:00:45','2023-05-02 21:00:45'),(623,1,'en','core/base/system','framework_version','Framework Version','2023-05-02 21:00:45','2023-05-02 21:00:45'),(624,1,'en','core/base/system','timezone','Timezone','2023-05-02 21:00:45','2023-05-02 21:00:45'),(625,1,'en','core/base/system','debug_mode','Debug Mode','2023-05-02 21:00:45','2023-05-02 21:00:45'),(626,1,'en','core/base/system','debug_mode_off','Debug Mode Off','2023-05-02 21:00:45','2023-05-02 21:00:45'),(627,1,'en','core/base/system','storage_dir_writable','Storage Dir Writable','2023-05-02 21:00:45','2023-05-02 21:00:45'),(628,1,'en','core/base/system','cache_dir_writable','Cache Dir Writable','2023-05-02 21:00:45','2023-05-02 21:00:45'),(629,1,'en','core/base/system','app_size','App Size','2023-05-02 21:00:45','2023-05-02 21:00:45'),(630,1,'en','core/base/system','server_environment','Server Environment','2023-05-02 21:00:45','2023-05-02 21:00:45'),(631,1,'en','core/base/system','php_version','PHP Version','2023-05-02 21:00:45','2023-05-02 21:00:45'),(632,1,'en','core/base/system','php_version_error','PHP must be >= :version','2023-05-02 21:00:45','2023-05-02 21:00:45'),(633,1,'en','core/base/system','server_software','Server Software','2023-05-02 21:00:45','2023-05-02 21:00:45'),(634,1,'en','core/base/system','server_os','Server OS','2023-05-02 21:00:45','2023-05-02 21:00:45'),(635,1,'en','core/base/system','database','Database','2023-05-02 21:00:45','2023-05-02 21:00:45'),(636,1,'en','core/base/system','ssl_installed','SSL Installed','2023-05-02 21:00:45','2023-05-02 21:00:45'),(637,1,'en','core/base/system','cache_driver','Cache Driver','2023-05-02 21:00:45','2023-05-02 21:00:45'),(638,1,'en','core/base/system','session_driver','Session Driver','2023-05-02 21:00:45','2023-05-02 21:00:45'),(639,1,'en','core/base/system','queue_connection','Queue Connection','2023-05-02 21:00:45','2023-05-02 21:00:45'),(640,1,'en','core/base/system','mbstring_ext','Mbstring Ext','2023-05-02 21:00:45','2023-05-02 21:00:45'),(641,1,'en','core/base/system','openssl_ext','OpenSSL Ext','2023-05-02 21:00:45','2023-05-02 21:00:45'),(642,1,'en','core/base/system','pdo_ext','PDO Ext','2023-05-02 21:00:45','2023-05-02 21:00:45'),(643,1,'en','core/base/system','curl_ext','CURL Ext','2023-05-02 21:00:45','2023-05-02 21:00:45'),(644,1,'en','core/base/system','exif_ext','Exif Ext','2023-05-02 21:00:45','2023-05-02 21:00:45'),(645,1,'en','core/base/system','file_info_ext','File info Ext','2023-05-02 21:00:45','2023-05-02 21:00:45'),(646,1,'en','core/base/system','tokenizer_ext','Tokenizer Ext','2023-05-02 21:00:45','2023-05-02 21:00:45'),(647,1,'en','core/base/system','extra_stats','Extra Stats','2023-05-02 21:00:45','2023-05-02 21:00:45'),(648,1,'en','core/base/system','installed_packages','Installed packages and their version numbers','2023-05-02 21:00:45','2023-05-02 21:00:45'),(649,1,'en','core/base/system','extra_information','Extra Information','2023-05-02 21:00:45','2023-05-02 21:00:45'),(650,1,'en','core/base/system','copy_report','Copy Report','2023-05-02 21:00:45','2023-05-02 21:00:45'),(651,1,'en','core/base/system','package_name','Package Name','2023-05-02 21:00:45','2023-05-02 21:00:45'),(652,1,'en','core/base/system','dependency_name','Dependency Name','2023-05-02 21:00:45','2023-05-02 21:00:45'),(653,1,'en','core/base/system','version','Version','2023-05-02 21:00:45','2023-05-02 21:00:45'),(654,1,'en','core/base/system','cms_version','CMS Version','2023-05-02 21:00:45','2023-05-02 21:00:45'),(655,1,'en','core/base/system','imagick_or_gd_ext','Imagick/GD Ext','2023-05-02 21:00:45','2023-05-02 21:00:45'),(656,1,'en','core/base/system','updater','System Updater','2023-05-02 21:00:45','2023-05-02 21:00:45'),(657,1,'en','core/base/system','zip','Zip Ext','2023-05-02 21:00:45','2023-05-02 21:00:45'),(658,1,'en','core/base/system','iconv','Iconv Ext','2023-05-02 21:00:45','2023-05-02 21:00:45'),(659,1,'en','core/base/system','memory_limit','Memory limit','2023-05-02 21:00:45','2023-05-02 21:00:45'),(660,1,'en','core/base/system','max_execution_time','Max execution time (s)','2023-05-02 21:00:45','2023-05-02 21:00:45'),(661,1,'en','core/base/system','allow_url_fopen_enabled','allow_url_fopen enabled','2023-05-02 21:00:45','2023-05-02 21:00:45'),(662,1,'en','core/base/system','cleanup.title','Cleanup System','2023-05-02 21:00:45','2023-05-02 21:00:45'),(663,1,'en','core/base/system','cleanup.table.name','Table Name','2023-05-02 21:00:45','2023-05-02 21:00:45'),(664,1,'en','core/base/system','cleanup.table.count','Records','2023-05-02 21:00:45','2023-05-02 21:00:45'),(665,1,'en','core/base/system','cleanup.backup_alert','Please backup your database and script files before cleanup, it will clear your data in database.','2023-05-02 21:00:45','2023-05-02 21:00:45'),(666,1,'en','core/base/system','cleanup.messenger_choose_without_table','Please choose to ignore tables that do not want to be cleaned','2023-05-02 21:00:45','2023-05-02 21:00:45'),(667,1,'en','core/base/system','cleanup.messenger_confirm_cleanup','Are you sure you want to database cleanup action, it will clear your data in database?','2023-05-02 21:00:45','2023-05-02 21:00:45'),(668,1,'en','core/base/system','cleanup.submit_button','Cleanup','2023-05-02 21:00:45','2023-05-02 21:00:45'),(669,1,'en','core/base/system','cleanup.success_message','Cleaned data successfully','2023-05-02 21:00:45','2023-05-02 21:00:45'),(670,1,'en','core/base/system','cleanup.not_enabled_yet','This featured is not enabled yet. <br />Please add into .env: <code>CMS_ENABLED_CLEANUP_DATABASE=true</code> to enable this feature!','2023-05-02 21:00:45','2023-05-02 21:00:45'),(671,1,'en','core/base/tables','id','ID','2023-05-02 21:00:45','2023-05-02 21:00:45'),(672,1,'en','core/base/tables','name','Name','2023-05-02 21:00:45','2023-05-02 21:00:45'),(673,1,'en','core/base/tables','slug','Slug','2023-05-02 21:00:45','2023-05-02 21:00:45'),(674,1,'en','core/base/tables','title','Title','2023-05-02 21:00:45','2023-05-02 21:00:45'),(675,1,'en','core/base/tables','order_by','Order By','2023-05-02 21:00:45','2023-05-02 21:00:45'),(676,1,'en','core/base/tables','order','Order','2023-05-02 21:00:45','2023-05-02 21:00:45'),(677,1,'en','core/base/tables','status','Status','2023-05-02 21:00:45','2023-05-02 21:00:45'),(678,1,'en','core/base/tables','created_at','Created At','2023-05-02 21:00:45','2023-05-02 21:00:45'),(679,1,'en','core/base/tables','updated_at','Updated At','2023-05-02 21:00:45','2023-05-02 21:00:45'),(680,1,'en','core/base/tables','description','Description','2023-05-02 21:00:45','2023-05-02 21:00:45'),(681,1,'en','core/base/tables','operations','Operations','2023-05-02 21:00:45','2023-05-02 21:00:45'),(682,1,'en','core/base/tables','url','URL','2023-05-02 21:00:45','2023-05-02 21:00:45'),(683,1,'en','core/base/tables','author','Author','2023-05-02 21:00:45','2023-05-02 21:00:45'),(684,1,'en','core/base/tables','notes','Notes','2023-05-02 21:00:45','2023-05-02 21:00:45'),(685,1,'en','core/base/tables','column','Column','2023-05-02 21:00:45','2023-05-02 21:00:45'),(686,1,'en','core/base/tables','origin','Origin','2023-05-02 21:00:45','2023-05-02 21:00:45'),(687,1,'en','core/base/tables','after_change','After changes','2023-05-02 21:00:45','2023-05-02 21:00:45'),(688,1,'en','core/base/tables','views','Views','2023-05-02 21:00:45','2023-05-02 21:00:45'),(689,1,'en','core/base/tables','browser','Browser','2023-05-02 21:00:45','2023-05-02 21:00:45'),(690,1,'en','core/base/tables','session','Session','2023-05-02 21:00:45','2023-05-02 21:00:45'),(691,1,'en','core/base/tables','activated','activated','2023-05-02 21:00:45','2023-05-02 21:00:45'),(692,1,'en','core/base/tables','deactivated','deactivated','2023-05-02 21:00:45','2023-05-02 21:00:45'),(693,1,'en','core/base/tables','is_featured','Is featured','2023-05-02 21:00:45','2023-05-02 21:00:45'),(694,1,'en','core/base/tables','edit','Edit','2023-05-02 21:00:45','2023-05-02 21:00:45'),(695,1,'en','core/base/tables','delete','Delete','2023-05-02 21:00:45','2023-05-02 21:00:45'),(696,1,'en','core/base/tables','restore','Restore','2023-05-02 21:00:45','2023-05-02 21:00:45'),(697,1,'en','core/base/tables','activate','Activate','2023-05-02 21:00:45','2023-05-02 21:00:45'),(698,1,'en','core/base/tables','deactivate','Deactivate','2023-05-02 21:00:45','2023-05-02 21:00:45'),(699,1,'en','core/base/tables','excel','Excel','2023-05-02 21:00:45','2023-05-02 21:00:45'),(700,1,'en','core/base/tables','export','Export','2023-05-02 21:00:45','2023-05-02 21:00:45'),(701,1,'en','core/base/tables','csv','CSV','2023-05-02 21:00:45','2023-05-02 21:00:45'),(702,1,'en','core/base/tables','pdf','PDF','2023-05-02 21:00:45','2023-05-02 21:00:45'),(703,1,'en','core/base/tables','print','Print','2023-05-02 21:00:45','2023-05-02 21:00:45'),(704,1,'en','core/base/tables','reset','Reset','2023-05-02 21:00:45','2023-05-02 21:00:45'),(705,1,'en','core/base/tables','reload','Reload','2023-05-02 21:00:45','2023-05-02 21:00:45'),(706,1,'en','core/base/tables','display','Display','2023-05-02 21:00:45','2023-05-02 21:00:45'),(707,1,'en','core/base/tables','all','All','2023-05-02 21:00:45','2023-05-02 21:00:45'),(708,1,'en','core/base/tables','add_new','Add New','2023-05-02 21:00:45','2023-05-02 21:00:45'),(709,1,'en','core/base/tables','action','Actions','2023-05-02 21:00:45','2023-05-02 21:00:45'),(710,1,'en','core/base/tables','delete_entry','Delete','2023-05-02 21:00:45','2023-05-02 21:00:45'),(711,1,'en','core/base/tables','view','View Detail','2023-05-02 21:00:45','2023-05-02 21:00:45'),(712,1,'en','core/base/tables','save','Save','2023-05-02 21:00:45','2023-05-02 21:00:45'),(713,1,'en','core/base/tables','show_from','Show from','2023-05-02 21:00:45','2023-05-02 21:00:45'),(714,1,'en','core/base/tables','to','to','2023-05-02 21:00:45','2023-05-02 21:00:45'),(715,1,'en','core/base/tables','in','in','2023-05-02 21:00:45','2023-05-02 21:00:45'),(716,1,'en','core/base/tables','records','records','2023-05-02 21:00:45','2023-05-02 21:00:45'),(717,1,'en','core/base/tables','no_data','No data to display','2023-05-02 21:00:45','2023-05-02 21:00:45'),(718,1,'en','core/base/tables','no_record','No record','2023-05-02 21:00:45','2023-05-02 21:00:45'),(719,1,'en','core/base/tables','confirm_delete','Confirm delete','2023-05-02 21:00:45','2023-05-02 21:00:45'),(720,1,'en','core/base/tables','confirm_delete_msg','Do you really want to delete this record?','2023-05-02 21:00:45','2023-05-02 21:00:45'),(721,1,'en','core/base/tables','confirm_delete_many_msg','Do you really want to delete selected record(s)?','2023-05-02 21:00:45','2023-05-02 21:00:45'),(722,1,'en','core/base/tables','cancel','Cancel','2023-05-02 21:00:45','2023-05-02 21:00:45'),(723,1,'en','core/base/tables','template','Template','2023-05-02 21:00:45','2023-05-02 21:00:45'),(724,1,'en','core/base/tables','email','Email','2023-05-02 21:00:45','2023-05-02 21:00:45'),(725,1,'en','core/base/tables','last_login','Last login','2023-05-02 21:00:45','2023-05-02 21:00:45'),(726,1,'en','core/base/tables','shortcode','Shortcode','2023-05-02 21:00:45','2023-05-02 21:00:45'),(727,1,'en','core/base/tables','image','Image','2023-05-02 21:00:45','2023-05-02 21:00:45'),(728,1,'en','core/base/tables','bulk_changes','Bulk changes','2023-05-02 21:00:45','2023-05-02 21:00:45'),(729,1,'en','core/base/tables','submit','Submit','2023-05-02 21:00:45','2023-05-02 21:00:45'),(730,1,'en','core/base/tables','please_select_record','Please select at least one record to perform this action!','2023-05-02 21:00:45','2023-05-02 21:00:45'),(731,1,'en','core/base/tabs','detail','Detail','2023-05-02 21:00:45','2023-05-02 21:00:45'),(732,1,'en','core/base/tabs','file','Files','2023-05-02 21:00:45','2023-05-02 21:00:45'),(733,1,'en','core/base/tabs','record_note','Record Note','2023-05-02 21:00:45','2023-05-02 21:00:45'),(734,1,'en','core/base/tabs','revision','Revision History','2023-05-02 21:00:45','2023-05-02 21:00:45'),(735,1,'vi','core/base/base','yes','Có','2023-05-02 21:00:45','2023-05-02 21:00:45'),(736,1,'vi','core/base/base','no','Không','2023-05-02 21:00:45','2023-05-02 21:00:45'),(737,1,'vi','core/base/base','is_default','Mặc định?','2023-05-02 21:00:45','2023-05-02 21:00:45'),(738,1,'vi','core/base/base','proc_close_disabled_error','Hàm proc_close() đã bị tắt. Vui lòng liên hệ nhà cung cấp hosting để mở hàm này. Hoặc có thể thêm vào .env: CAN_EXECUTE_COMMAND=false để tắt tính năng này.','2023-05-02 21:00:45','2023-05-02 21:00:45'),(739,1,'vi','core/base/base','add_image','Thêm ảnh','2023-05-02 21:00:45','2023-05-02 21:00:45'),(740,1,'vi','core/base/base','change_image','Đổi ảnh','2023-05-02 21:00:45','2023-05-02 21:00:45'),(741,1,'vi','core/base/base','delete_image','Xóa ảnh','2023-05-02 21:00:45','2023-05-02 21:00:45'),(742,1,'vi','core/base/base','email_template.date_time','Ngày giờ hiện tại','2023-05-02 21:00:45','2023-05-02 21:00:45'),(743,1,'vi','core/base/base','email_template.date_year','Năm hiện tại','2023-05-02 21:00:45','2023-05-02 21:00:45'),(744,1,'vi','core/base/base','email_template.footer','Mẫu chân trang email','2023-05-02 21:00:45','2023-05-02 21:00:45'),(745,1,'vi','core/base/base','email_template.header','Mẫu đầu trang email','2023-05-02 21:00:45','2023-05-02 21:00:45'),(746,1,'vi','core/base/base','email_template.site_admin_email','Email quản trị viên','2023-05-02 21:00:45','2023-05-02 21:00:45'),(747,1,'vi','core/base/base','email_template.site_logo','Logo của trang','2023-05-02 21:00:45','2023-05-02 21:00:45'),(748,1,'vi','core/base/base','email_template.site_title','Tiêu đề trang','2023-05-02 21:00:45','2023-05-02 21:00:45'),(749,1,'vi','core/base/base','email_template.site_url','URL trang','2023-05-02 21:00:45','2023-05-02 21:00:45'),(750,1,'vi','core/base/base','image','Hình ảnh','2023-05-02 21:00:45','2023-05-02 21:00:45'),(751,1,'vi','core/base/base','preview_image','Ảnh xem trước','2023-05-02 21:00:45','2023-05-02 21:00:45'),(752,1,'vi','core/base/base','select_image','Chọn ảnh','2023-05-02 21:00:45','2023-05-02 21:00:45'),(753,1,'vi','core/base/base','to_add_more_image','để thêm hình ảnh','2023-05-02 21:00:45','2023-05-02 21:00:45'),(754,1,'vi','core/base/base','using_button','Sử dụng nút','2023-05-02 21:00:45','2023-05-02 21:00:45'),(755,1,'vi','core/base/cache','cache_management','Quản lý bộ nhớ đệm','2023-05-02 21:00:45','2023-05-02 21:00:45'),(756,1,'vi','core/base/cache','cache_commands','Các lệnh xoá bộ nhớ đệm cơ bản','2023-05-02 21:00:45','2023-05-02 21:00:45'),(757,1,'vi','core/base/cache','commands.clear_cms_cache.title','Xóa tất cả bộ đệm hiện có của ứng dụng','2023-05-02 21:00:45','2023-05-02 21:00:45'),(758,1,'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','2023-05-02 21:00:45','2023-05-02 21:00:45'),(759,1,'vi','core/base/cache','commands.clear_cms_cache.success_msg','Bộ đệm đã được xóa','2023-05-02 21:00:45','2023-05-02 21:00:45'),(760,1,'vi','core/base/cache','commands.refresh_compiled_views.title','Làm mới bộ đệm giao diện','2023-05-02 21:00:45','2023-05-02 21:00:45'),(761,1,'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','2023-05-02 21:00:45','2023-05-02 21:00:45'),(762,1,'vi','core/base/cache','commands.refresh_compiled_views.success_msg','Bộ đệm giao diện đã được làm mới','2023-05-02 21:00:45','2023-05-02 21:00:45'),(763,1,'vi','core/base/cache','commands.clear_config_cache.title','Xóa bộ nhớ đệm của phần cấu hình','2023-05-02 21:00:45','2023-05-02 21:00:45'),(764,1,'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.','2023-05-02 21:00:45','2023-05-02 21:00:45'),(765,1,'vi','core/base/cache','commands.clear_config_cache.success_msg','Bộ đệm cấu hình đã được xóa','2023-05-02 21:00:45','2023-05-02 21:00:45'),(766,1,'vi','core/base/cache','commands.clear_route_cache.title','Xoá cache đường dẫn','2023-05-02 21:00:45','2023-05-02 21:00:45'),(767,1,'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.','2023-05-02 21:00:45','2023-05-02 21:00:45'),(768,1,'vi','core/base/cache','commands.clear_route_cache.success_msg','Bộ đệm điều hướng đã bị xóa','2023-05-02 21:00:45','2023-05-02 21:00:45'),(769,1,'vi','core/base/cache','commands.clear_log.description','Xoá lịch sử lỗi','2023-05-02 21:00:45','2023-05-02 21:00:45'),(770,1,'vi','core/base/cache','commands.clear_log.success_msg','Lịch sử lỗi đã được làm sạch','2023-05-02 21:00:45','2023-05-02 21:00:45'),(771,1,'vi','core/base/cache','commands.clear_log.title','Xoá lịch sử lỗi','2023-05-02 21:00:45','2023-05-02 21:00:45'),(772,1,'vi','core/base/enums','statuses.draft','Bản nháp','2023-05-02 21:00:45','2023-05-02 21:00:45'),(773,1,'vi','core/base/enums','statuses.pending','Đang chờ xử lý','2023-05-02 21:00:45','2023-05-02 21:00:45'),(774,1,'vi','core/base/enums','statuses.published','Đã xuất bản','2023-05-02 21:00:45','2023-05-02 21:00:45'),(775,1,'vi','core/base/errors','401_title','Bạn không có quyền truy cập trang này','2023-05-02 21:00:45','2023-05-02 21:00:45'),(776,1,'vi','core/base/errors','401_msg','<li>Bạn không được cấp quyền truy cập bởi quản trị viên.</li>\n <li>Bạn sử dụng sai loại tài khoản.</li>\n <li>Bạn không được cấp quyền để có thể truy cập trang này</li>','2023-05-02 21:00:45','2023-05-02 21:00:45'),(777,1,'vi','core/base/errors','404_title','Không tìm thấy trang yêu cầu','2023-05-02 21:00:45','2023-05-02 21:00:45'),(778,1,'vi','core/base/errors','404_msg','<li>Trang bạn yêu cầu không tồn tại.</li>\n <li>Liên kết bạn vừa nhấn không còn được sử dụng.</li>\n <li>Trang này có thể đã được chuyển sang vị trí khác.</li>\n <li>Có thể có lỗi xảy ra.</li>\n <li>Bạn không được cấp quyền để có thể truy cập trang này</li>','2023-05-02 21:00:45','2023-05-02 21:00:45'),(779,1,'vi','core/base/errors','500_title','Không thể tải trang','2023-05-02 21:00:45','2023-05-02 21:00:45'),(780,1,'vi','core/base/errors','500_msg','<li>Trang bạn yêu cầu không tồn tại.</li>\n <li>Liên kết bạn vừa nhấn không còn được sử dụng.</li>\n <li>Trang này có thể đã được chuyển sang vị trí khác.</li>\n <li>Có thể có lỗi xảy ra.</li>\n <li>Bạn không được cấp quyền để có thể truy cập trang này</li>','2023-05-02 21:00:45','2023-05-02 21:00:45'),(781,1,'vi','core/base/errors','reasons','Điều này có thể xảy ra vì nhiều lý do.','2023-05-02 21:00:46','2023-05-02 21:00:46'),(782,1,'vi','core/base/errors','try_again','Vui lòng thử lại trong vài phút, hoặc quay trở lại trang chủ bằng cách <a href=\"http://cms.local/admin\"> nhấn vào đây </a>.','2023-05-02 21:00:46','2023-05-02 21:00:46'),(783,1,'vi','core/base/errors','not_found','Không tìm thấy','2023-05-02 21:00:46','2023-05-02 21:00:46'),(784,1,'vi','core/base/forms','choose_image','Chọn ảnh','2023-05-02 21:00:46','2023-05-02 21:00:46'),(785,1,'vi','core/base/forms','actions','Tác vụ','2023-05-02 21:00:46','2023-05-02 21:00:46'),(786,1,'vi','core/base/forms','save','Lưu','2023-05-02 21:00:46','2023-05-02 21:00:46'),(787,1,'vi','core/base/forms','save_and_continue','Lưu & chỉnh sửa','2023-05-02 21:00:46','2023-05-02 21:00:46'),(788,1,'vi','core/base/forms','image','Hình ảnh','2023-05-02 21:00:46','2023-05-02 21:00:46'),(789,1,'vi','core/base/forms','image_placeholder','Chèn đường dẫn hình ảnh hoặc nhấn nút để chọn hình','2023-05-02 21:00:46','2023-05-02 21:00:46'),(790,1,'vi','core/base/forms','create','Tạo mới','2023-05-02 21:00:46','2023-05-02 21:00:46'),(791,1,'vi','core/base/forms','edit','Sửa','2023-05-02 21:00:46','2023-05-02 21:00:46'),(792,1,'vi','core/base/forms','permalink','Đường dẫn','2023-05-02 21:00:46','2023-05-02 21:00:46'),(793,1,'vi','core/base/forms','ok','OK','2023-05-02 21:00:46','2023-05-02 21:00:46'),(794,1,'vi','core/base/forms','cancel','Hủy bỏ','2023-05-02 21:00:46','2023-05-02 21:00:46'),(795,1,'vi','core/base/forms','character_remain','kí tự còn lại','2023-05-02 21:00:46','2023-05-02 21:00:46'),(796,1,'vi','core/base/forms','template','Template','2023-05-02 21:00:46','2023-05-02 21:00:46'),(797,1,'vi','core/base/forms','choose_file','Chọn tập tin','2023-05-02 21:00:46','2023-05-02 21:00:46'),(798,1,'vi','core/base/forms','file','Tập tin','2023-05-02 21:00:46','2023-05-02 21:00:46'),(799,1,'vi','core/base/forms','content','Nội dung','2023-05-02 21:00:46','2023-05-02 21:00:46'),(800,1,'vi','core/base/forms','description','Mô tả','2023-05-02 21:00:46','2023-05-02 21:00:46'),(801,1,'vi','core/base/forms','name','Tên','2023-05-02 21:00:46','2023-05-02 21:00:46'),(802,1,'vi','core/base/forms','name_placeholder','Nhập tên','2023-05-02 21:00:46','2023-05-02 21:00:46'),(803,1,'vi','core/base/forms','description_placeholder','Mô tả ngắn','2023-05-02 21:00:46','2023-05-02 21:00:46'),(804,1,'vi','core/base/forms','parent','Cha','2023-05-02 21:00:46','2023-05-02 21:00:46'),(805,1,'vi','core/base/forms','icon','Biểu tượng','2023-05-02 21:00:46','2023-05-02 21:00:46'),(806,1,'vi','core/base/forms','order_by','Sắp xếp','2023-05-02 21:00:46','2023-05-02 21:00:46'),(807,1,'vi','core/base/forms','order_by_placeholder','Sắp xếp','2023-05-02 21:00:46','2023-05-02 21:00:46'),(808,1,'vi','core/base/forms','slug','Slug','2023-05-02 21:00:46','2023-05-02 21:00:46'),(809,1,'vi','core/base/forms','is_featured','Nổi bật?','2023-05-02 21:00:46','2023-05-02 21:00:46'),(810,1,'vi','core/base/forms','is_default','Mặc định?','2023-05-02 21:00:46','2023-05-02 21:00:46'),(811,1,'vi','core/base/forms','icon_placeholder','Ví dụ: fa fa-home','2023-05-02 21:00:46','2023-05-02 21:00:46'),(812,1,'vi','core/base/forms','update','Cập nhật','2023-05-02 21:00:46','2023-05-02 21:00:46'),(813,1,'vi','core/base/forms','publish','Xuất bản','2023-05-02 21:00:46','2023-05-02 21:00:46'),(814,1,'vi','core/base/forms','remove_image','Xoá ảnh','2023-05-02 21:00:46','2023-05-02 21:00:46'),(815,1,'vi','core/base/forms','add','Thêm','2023-05-02 21:00:46','2023-05-02 21:00:46'),(816,1,'vi','core/base/forms','add_short_code','Thêm shortcode','2023-05-02 21:00:46','2023-05-02 21:00:46'),(817,1,'vi','core/base/forms','alias','Mã thay thế','2023-05-02 21:00:46','2023-05-02 21:00:46'),(818,1,'vi','core/base/forms','alias_placeholder','Mã thay thế','2023-05-02 21:00:46','2023-05-02 21:00:46'),(819,1,'vi','core/base/forms','basic_information','Thông tin cơ bản','2023-05-02 21:00:46','2023-05-02 21:00:46'),(820,1,'vi','core/base/forms','link','Liên kết','2023-05-02 21:00:46','2023-05-02 21:00:46'),(821,1,'vi','core/base/forms','order','Thứ tự','2023-05-02 21:00:46','2023-05-02 21:00:46'),(822,1,'vi','core/base/forms','short_code','Shortcode','2023-05-02 21:00:46','2023-05-02 21:00:46'),(823,1,'vi','core/base/forms','title','Tiêu đề','2023-05-02 21:00:46','2023-05-02 21:00:46'),(824,1,'vi','core/base/forms','value','Giá trị','2023-05-02 21:00:46','2023-05-02 21:00:46'),(825,1,'vi','core/base/forms','show_hide_editor','Ẩn/Hiện trình soạn thảo','2023-05-02 21:00:46','2023-05-02 21:00:46'),(826,1,'vi','core/base/forms','basic_info_title','Thông tin cơ bản','2023-05-02 21:00:46','2023-05-02 21:00:46'),(827,1,'vi','core/base/forms','remove_file','Xóa tập tin','2023-05-02 21:00:46','2023-05-02 21:00:46'),(828,1,'vi','core/base/layouts','platform_admin','Quản trị hệ thống','2023-05-02 21:00:46','2023-05-02 21:00:46'),(829,1,'vi','core/base/layouts','dashboard','Bảng điều khiển','2023-05-02 21:00:46','2023-05-02 21:00:46'),(830,1,'vi','core/base/layouts','widgets','Tiện ích','2023-05-02 21:00:46','2023-05-02 21:00:46'),(831,1,'vi','core/base/layouts','plugins','Tiện ích mở rộng','2023-05-02 21:00:46','2023-05-02 21:00:46'),(832,1,'vi','core/base/layouts','settings','Cài đặt','2023-05-02 21:00:46','2023-05-02 21:00:46'),(833,1,'vi','core/base/layouts','setting_general','Cơ bản','2023-05-02 21:00:46','2023-05-02 21:00:46'),(834,1,'vi','core/base/layouts','system_information','Thông tin hệ thống','2023-05-02 21:00:46','2023-05-02 21:00:46'),(835,1,'vi','core/base/layouts','theme','Giao diện','2023-05-02 21:00:46','2023-05-02 21:00:46'),(836,1,'vi','core/base/layouts','copyright','Bản quyền :year © :company. Phiên bản: <span>:version</span>','2023-05-02 21:00:46','2023-05-02 21:00:46'),(837,1,'vi','core/base/layouts','profile','Thông tin cá nhân','2023-05-02 21:00:46','2023-05-02 21:00:46'),(838,1,'vi','core/base/layouts','logout','Đăng xuất','2023-05-02 21:00:46','2023-05-02 21:00:46'),(839,1,'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.','2023-05-02 21:00:46','2023-05-02 21:00:46'),(840,1,'vi','core/base/layouts','home','Trang chủ','2023-05-02 21:00:46','2023-05-02 21:00:46'),(841,1,'vi','core/base/layouts','search','Tìm kiếm','2023-05-02 21:00:46','2023-05-02 21:00:46'),(842,1,'vi','core/base/layouts','add_new','Thêm mới','2023-05-02 21:00:46','2023-05-02 21:00:46'),(843,1,'vi','core/base/layouts','n_a','N/A','2023-05-02 21:00:46','2023-05-02 21:00:46'),(844,1,'vi','core/base/layouts','page_loaded_time','Trang tải xong trong','2023-05-02 21:00:46','2023-05-02 21:00:46'),(845,1,'vi','core/base/layouts','view_website','Xem trang ngoài','2023-05-02 21:00:46','2023-05-02 21:00:46'),(846,1,'vi','core/base/layouts','setting_email','Email','2023-05-02 21:00:46','2023-05-02 21:00:46'),(847,1,'vi','core/base/mail','send-fail','Gửi email không thành công','2023-05-02 21:00:46','2023-05-02 21:00:46'),(848,1,'vi','core/base/notices','create_success_message','Tạo thành công','2023-05-02 21:00:46','2023-05-02 21:00:46'),(849,1,'vi','core/base/notices','update_success_message','Cập nhật thành công','2023-05-02 21:00:46','2023-05-02 21:00:46'),(850,1,'vi','core/base/notices','delete_success_message','Xóa thành công','2023-05-02 21:00:46','2023-05-02 21:00:46'),(851,1,'vi','core/base/notices','success_header','Thành công!','2023-05-02 21:00:46','2023-05-02 21:00:46'),(852,1,'vi','core/base/notices','error_header','Lỗi!','2023-05-02 21:00:46','2023-05-02 21:00:46'),(853,1,'vi','core/base/notices','no_select','Chọn ít nhất 1 trường để thực hiện hành động này!','2023-05-02 21:00:46','2023-05-02 21:00:46'),(854,1,'vi','core/base/notices','processing_request','Hệ thống đang xử lý yêu cầu.','2023-05-02 21:00:46','2023-05-02 21:00:46'),(855,1,'vi','core/base/notices','error','Lỗi!','2023-05-02 21:00:46','2023-05-02 21:00:46'),(856,1,'vi','core/base/notices','success','Thành công!','2023-05-02 21:00:46','2023-05-02 21:00:46'),(857,1,'vi','core/base/notices','info','Thông tin!','2023-05-02 21:00:46','2023-05-02 21:00:46'),(858,1,'vi','core/base/notices','enum.validate_message','Giá trị của :attribute không hợp lệ','2023-05-02 21:00:46','2023-05-02 21:00:46'),(859,1,'vi','core/base/system','no_select','Hãy chọn ít nhất 1 trường để thực hiện hành động này!','2023-05-02 21:00:46','2023-05-02 21:00:46'),(860,1,'vi','core/base/system','cannot_find_user','Không thể tải được thông tin người dùng','2023-05-02 21:00:46','2023-05-02 21:00:46'),(861,1,'vi','core/base/system','supper_revoked','Quyền quản trị viên cao nhất đã được gỡ bỏ','2023-05-02 21:00:46','2023-05-02 21:00:46'),(862,1,'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!','2023-05-02 21:00:46','2023-05-02 21:00:46'),(863,1,'vi','core/base/system','cant_remove_supper','Bạn không có quyền xóa quản trị viên cấp cao','2023-05-02 21:00:46','2023-05-02 21:00:46'),(864,1,'vi','core/base/system','cant_find_user_with_email','Không thể tìm thấy người dùng với email này','2023-05-02 21:00:46','2023-05-02 21:00:46'),(865,1,'vi','core/base/system','supper_granted','Quyền quản trị cao nhất đã được gán','2023-05-02 21:00:46','2023-05-02 21:00:46'),(866,1,'vi','core/base/system','delete_log_success','Xóa tập tin log thành công!','2023-05-02 21:00:46','2023-05-02 21:00:46'),(867,1,'vi','core/base/system','get_member_success','Hiển thị danh sách thành viên thành công','2023-05-02 21:00:46','2023-05-02 21:00:46'),(868,1,'vi','core/base/system','error_occur','Có lỗi dưới đây','2023-05-02 21:00:46','2023-05-02 21:00:46'),(869,1,'vi','core/base/system','role_and_permission','Phân quyền hệ thống','2023-05-02 21:00:46','2023-05-02 21:00:46'),(870,1,'vi','core/base/system','role_and_permission_description','Quản lý những phân quyền trong hệ thống','2023-05-02 21:00:46','2023-05-02 21:00:46'),(871,1,'vi','core/base/system','user.list_super','Danh sách quản trị viên cấp cao','2023-05-02 21:00:46','2023-05-02 21:00:46'),(872,1,'vi','core/base/system','user.username','Tên đăng nhập','2023-05-02 21:00:46','2023-05-02 21:00:46'),(873,1,'vi','core/base/system','user.email','Email','2023-05-02 21:00:46','2023-05-02 21:00:46'),(874,1,'vi','core/base/system','user.last_login','Đăng nhập lần cuối ','2023-05-02 21:00:46','2023-05-02 21:00:46'),(875,1,'vi','core/base/system','user.add_user','Thêm quản trị viên cấp cao','2023-05-02 21:00:46','2023-05-02 21:00:46'),(876,1,'vi','core/base/system','user.cancel','Hủy bỏ','2023-05-02 21:00:46','2023-05-02 21:00:46'),(877,1,'vi','core/base/system','user.create','Thêm','2023-05-02 21:00:46','2023-05-02 21:00:46'),(878,1,'vi','core/base/system','options.features','Kiểm soát truy cập các tính năng','2023-05-02 21:00:46','2023-05-02 21:00:46'),(879,1,'vi','core/base/system','options.feature_description','Bật/tắt các tính năng.','2023-05-02 21:00:46','2023-05-02 21:00:46'),(880,1,'vi','core/base/system','options.manage_super','Quản lý quản trị viên cấp cao','2023-05-02 21:00:46','2023-05-02 21:00:46'),(881,1,'vi','core/base/system','options.manage_super_description','Thêm/xóa quản trị viên cấp cao','2023-05-02 21:00:46','2023-05-02 21:00:46'),(882,1,'vi','core/base/system','options.info','Thông tin hệ thống','2023-05-02 21:00:46','2023-05-02 21:00:46'),(883,1,'vi','core/base/system','options.info_description','Những thông tin về cấu hình hiện tại của hệ thống.','2023-05-02 21:00:46','2023-05-02 21:00:46'),(884,1,'vi','core/base/system','info.title','Thông tin hệ thống','2023-05-02 21:00:46','2023-05-02 21:00:46'),(885,1,'vi','core/base/system','info.cache','Bộ nhớ đệm','2023-05-02 21:00:46','2023-05-02 21:00:46'),(886,1,'vi','core/base/system','info.environment','Môi trường','2023-05-02 21:00:46','2023-05-02 21:00:46'),(887,1,'vi','core/base/system','info.locale','Ngôn ngữ hệ thống','2023-05-02 21:00:46','2023-05-02 21:00:46'),(888,1,'vi','core/base/system','user_management','Quản lý thành viên','2023-05-02 21:00:46','2023-05-02 21:00:46'),(889,1,'vi','core/base/system','user_management_description','Quản lý người dùng trong hệ thống','2023-05-02 21:00:46','2023-05-02 21:00:46'),(890,1,'vi','core/base/system','app_size','Kích thước ứng dụng','2023-05-02 21:00:46','2023-05-02 21:00:46'),(891,1,'vi','core/base/system','cache_dir_writable','Có thể ghi bộ nhớ đệm','2023-05-02 21:00:46','2023-05-02 21:00:46'),(892,1,'vi','core/base/system','cache_driver','Loại lưu trữ bộ nhớ đệm','2023-05-02 21:00:46','2023-05-02 21:00:46'),(893,1,'vi','core/base/system','copy_report','Sao chép báo cáo','2023-05-02 21:00:46','2023-05-02 21:00:46'),(894,1,'vi','core/base/system','curl_ext','CURL Ext','2023-05-02 21:00:46','2023-05-02 21:00:46'),(895,1,'vi','core/base/system','database','Hệ thống dữ liệu','2023-05-02 21:00:46','2023-05-02 21:00:46'),(896,1,'vi','core/base/system','debug_mode','Chế độ sửa lỗi','2023-05-02 21:00:46','2023-05-02 21:00:46'),(897,1,'vi','core/base/system','dependency_name','Tên gói','2023-05-02 21:00:46','2023-05-02 21:00:46'),(898,1,'vi','core/base/system','exif_ext','Exif Ext','2023-05-02 21:00:46','2023-05-02 21:00:46'),(899,1,'vi','core/base/system','extra_information','Thông tin mở rộng','2023-05-02 21:00:46','2023-05-02 21:00:46'),(900,1,'vi','core/base/system','extra_stats','Thống kê thêm','2023-05-02 21:00:46','2023-05-02 21:00:46'),(901,1,'vi','core/base/system','file_info_ext','File info Ext','2023-05-02 21:00:46','2023-05-02 21:00:46'),(902,1,'vi','core/base/system','framework_version','Phiên bản framework','2023-05-02 21:00:46','2023-05-02 21:00:46'),(903,1,'vi','core/base/system','get_system_report','Lấy thông tin hệ thống','2023-05-02 21:00:46','2023-05-02 21:00:46'),(904,1,'vi','core/base/system','installed_packages','Các gói đã cài đặt và phiên bản','2023-05-02 21:00:46','2023-05-02 21:00:46'),(905,1,'vi','core/base/system','mbstring_ext','Mbstring Ext','2023-05-02 21:00:46','2023-05-02 21:00:46'),(906,1,'vi','core/base/system','openssl_ext','OpenSSL Ext','2023-05-02 21:00:46','2023-05-02 21:00:46'),(907,1,'vi','core/base/system','package_name','Tên gói','2023-05-02 21:00:46','2023-05-02 21:00:46'),(908,1,'vi','core/base/system','pdo_ext','PDO Ext','2023-05-02 21:00:46','2023-05-02 21:00:46'),(909,1,'vi','core/base/system','php_version','Phiên bản PHP','2023-05-02 21:00:46','2023-05-02 21:00:46'),(910,1,'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','2023-05-02 21:00:46','2023-05-02 21:00:46'),(911,1,'vi','core/base/system','server_environment','Môi trường máy chủ','2023-05-02 21:00:46','2023-05-02 21:00:46'),(912,1,'vi','core/base/system','server_os','Hệ điều hành của máy chủ','2023-05-02 21:00:46','2023-05-02 21:00:46'),(913,1,'vi','core/base/system','server_software','Phần mềm','2023-05-02 21:00:46','2023-05-02 21:00:46'),(914,1,'vi','core/base/system','session_driver','Loại lưu trữ phiên làm việc','2023-05-02 21:00:46','2023-05-02 21:00:46'),(915,1,'vi','core/base/system','ssl_installed','Đã cài đặt chứng chỉ SSL','2023-05-02 21:00:46','2023-05-02 21:00:46'),(916,1,'vi','core/base/system','storage_dir_writable','Có thể lưu trữ dữ liệu tạm','2023-05-02 21:00:46','2023-05-02 21:00:46'),(917,1,'vi','core/base/system','system_environment','Môi trường hệ thống','2023-05-02 21:00:46','2023-05-02 21:00:46'),(918,1,'vi','core/base/system','timezone','Múi giờ','2023-05-02 21:00:46','2023-05-02 21:00:46'),(919,1,'vi','core/base/system','tokenizer_ext','Tokenizer Ext','2023-05-02 21:00:46','2023-05-02 21:00:46'),(920,1,'vi','core/base/system','version','Phiên bản','2023-05-02 21:00:46','2023-05-02 21:00:46'),(921,1,'vi','core/base/system','cms_version','Phiên bản CMS','2023-05-02 21:00:46','2023-05-02 21:00:46'),(922,1,'vi','core/base/system','queue_connection','Queue Connection','2023-05-02 21:00:46','2023-05-02 21:00:46'),(923,1,'vi','core/base/system','disabled_in_demo_mode','Bạn không thể thực hiện hành động này ở chế độ demo!','2023-05-02 21:00:46','2023-05-02 21:00:46'),(924,1,'vi','core/base/system','imagick_or_gd_ext','Imagick/GD Ext','2023-05-02 21:00:46','2023-05-02 21:00:46'),(925,1,'vi','core/base/system','php_version_error','Phiên bản PHP phải >= :version','2023-05-02 21:00:46','2023-05-02 21:00:46'),(926,1,'vi','core/base/system','updater','Nâng cấp hệ thống','2023-05-02 21:00:46','2023-05-02 21:00:46'),(927,1,'vi','core/base/tables','id','ID','2023-05-02 21:00:46','2023-05-02 21:00:46'),(928,1,'vi','core/base/tables','name','Tên','2023-05-02 21:00:46','2023-05-02 21:00:46'),(929,1,'vi','core/base/tables','order_by','Thứ tự','2023-05-02 21:00:46','2023-05-02 21:00:46'),(930,1,'vi','core/base/tables','status','Trạng thái','2023-05-02 21:00:46','2023-05-02 21:00:46'),(931,1,'vi','core/base/tables','created_at','Ngày tạo','2023-05-02 21:00:46','2023-05-02 21:00:46'),(932,1,'vi','core/base/tables','updated_at','Ngày cập nhật','2023-05-02 21:00:46','2023-05-02 21:00:46'),(933,1,'vi','core/base/tables','operations','Tác vụ','2023-05-02 21:00:46','2023-05-02 21:00:46'),(934,1,'vi','core/base/tables','url','URL','2023-05-02 21:00:46','2023-05-02 21:00:46'),(935,1,'vi','core/base/tables','author','Người tạo','2023-05-02 21:00:46','2023-05-02 21:00:46'),(936,1,'vi','core/base/tables','column','Cột','2023-05-02 21:00:46','2023-05-02 21:00:46'),(937,1,'vi','core/base/tables','origin','Bản cũ','2023-05-02 21:00:46','2023-05-02 21:00:46'),(938,1,'vi','core/base/tables','after_change','Sau khi thay đổi','2023-05-02 21:00:46','2023-05-02 21:00:46'),(939,1,'vi','core/base/tables','notes','Ghi chú','2023-05-02 21:00:46','2023-05-02 21:00:46'),(940,1,'vi','core/base/tables','activated','kích hoạt','2023-05-02 21:00:46','2023-05-02 21:00:46'),(941,1,'vi','core/base/tables','browser','Trình duyệt','2023-05-02 21:00:46','2023-05-02 21:00:46'),(942,1,'vi','core/base/tables','deactivated','hủy kích hoạt','2023-05-02 21:00:46','2023-05-02 21:00:46'),(943,1,'vi','core/base/tables','description','Mô tả','2023-05-02 21:00:46','2023-05-02 21:00:46'),(944,1,'vi','core/base/tables','session','Phiên','2023-05-02 21:00:46','2023-05-02 21:00:46'),(945,1,'vi','core/base/tables','views','Lượt xem','2023-05-02 21:00:46','2023-05-02 21:00:46'),(946,1,'vi','core/base/tables','restore','Khôi phục','2023-05-02 21:00:46','2023-05-02 21:00:46'),(947,1,'vi','core/base/tables','edit','Sửa','2023-05-02 21:00:46','2023-05-02 21:00:46'),(948,1,'vi','core/base/tables','delete','Xóa','2023-05-02 21:00:46','2023-05-02 21:00:46'),(949,1,'vi','core/base/tables','action','Hành động','2023-05-02 21:00:46','2023-05-02 21:00:46'),(950,1,'vi','core/base/tables','activate','Kích hoạt','2023-05-02 21:00:46','2023-05-02 21:00:46'),(951,1,'vi','core/base/tables','add_new','Thêm mới','2023-05-02 21:00:46','2023-05-02 21:00:46'),(952,1,'vi','core/base/tables','all','Tất cả','2023-05-02 21:00:46','2023-05-02 21:00:46'),(953,1,'vi','core/base/tables','cancel','Hủy bỏ','2023-05-02 21:00:46','2023-05-02 21:00:46'),(954,1,'vi','core/base/tables','confirm_delete','Xác nhận xóa','2023-05-02 21:00:46','2023-05-02 21:00:46'),(955,1,'vi','core/base/tables','confirm_delete_msg','Bạn có chắc chắn muốn xóa bản ghi này?','2023-05-02 21:00:46','2023-05-02 21:00:46'),(956,1,'vi','core/base/tables','csv','CSV','2023-05-02 21:00:46','2023-05-02 21:00:46'),(957,1,'vi','core/base/tables','deactivate','Hủy kích hoạt','2023-05-02 21:00:46','2023-05-02 21:00:46'),(958,1,'vi','core/base/tables','delete_entry','Xóa bản ghi','2023-05-02 21:00:46','2023-05-02 21:00:46'),(959,1,'vi','core/base/tables','display','Hiển thị','2023-05-02 21:00:46','2023-05-02 21:00:46'),(960,1,'vi','core/base/tables','excel','Excel','2023-05-02 21:00:46','2023-05-02 21:00:46'),(961,1,'vi','core/base/tables','export','Xuất bản','2023-05-02 21:00:46','2023-05-02 21:00:46'),(962,1,'vi','core/base/tables','in','trong tổng số','2023-05-02 21:00:46','2023-05-02 21:00:46'),(963,1,'vi','core/base/tables','no_data','Không có dữ liệu để hiển thị','2023-05-02 21:00:46','2023-05-02 21:00:46'),(964,1,'vi','core/base/tables','no_record','Không có dữ liệu','2023-05-02 21:00:46','2023-05-02 21:00:46'),(965,1,'vi','core/base/tables','pdf','PDF','2023-05-02 21:00:46','2023-05-02 21:00:46'),(966,1,'vi','core/base/tables','print','In','2023-05-02 21:00:46','2023-05-02 21:00:46'),(967,1,'vi','core/base/tables','records','bản ghi','2023-05-02 21:00:46','2023-05-02 21:00:46'),(968,1,'vi','core/base/tables','reload','Tải lại','2023-05-02 21:00:46','2023-05-02 21:00:46'),(969,1,'vi','core/base/tables','reset','Làm mới','2023-05-02 21:00:46','2023-05-02 21:00:46'),(970,1,'vi','core/base/tables','save','Lưu','2023-05-02 21:00:46','2023-05-02 21:00:46'),(971,1,'vi','core/base/tables','show_from','Hiển thị từ','2023-05-02 21:00:46','2023-05-02 21:00:46'),(972,1,'vi','core/base/tables','template','Giao diện','2023-05-02 21:00:46','2023-05-02 21:00:46'),(973,1,'vi','core/base/tables','to','đến','2023-05-02 21:00:46','2023-05-02 21:00:46'),(974,1,'vi','core/base/tables','view','Xem chi tiết','2023-05-02 21:00:46','2023-05-02 21:00:46'),(975,1,'vi','core/base/tables','email','Email','2023-05-02 21:00:46','2023-05-02 21:00:46'),(976,1,'vi','core/base/tables','image','Hình ảnh','2023-05-02 21:00:46','2023-05-02 21:00:46'),(977,1,'vi','core/base/tables','is_featured','Nổi bật','2023-05-02 21:00:46','2023-05-02 21:00:46'),(978,1,'vi','core/base/tables','last_login','Lần cuối đăng nhập','2023-05-02 21:00:46','2023-05-02 21:00:46'),(979,1,'vi','core/base/tables','order','Thứ tự','2023-05-02 21:00:46','2023-05-02 21:00:46'),(980,1,'vi','core/base/tables','shortcode','Shortcode','2023-05-02 21:00:46','2023-05-02 21:00:46'),(981,1,'vi','core/base/tables','slug','Slug','2023-05-02 21:00:46','2023-05-02 21:00:46'),(982,1,'vi','core/base/tables','title','Tiêu đề','2023-05-02 21:00:47','2023-05-02 21:00:47'),(983,1,'vi','core/base/tables','bulk_changes','Thay đổi hàng loạt','2023-05-02 21:00:47','2023-05-02 21:00:47'),(984,1,'vi','core/base/tables','confirm_delete_many_msg','Bạn có chắc chắn muốn xóa những bản ghi này?','2023-05-02 21:00:47','2023-05-02 21:00:47'),(985,1,'vi','core/base/tables','submit','Hoàn tất','2023-05-02 21:00:47','2023-05-02 21:00:47'),(986,1,'vi','core/base/tables','please_select_record','Vui lòng chọn ít nhất 1 bản ghi để thực hiện hành động này!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(987,1,'vi','core/base/tabs','detail','Chi tiết','2023-05-02 21:00:47','2023-05-02 21:00:47'),(988,1,'vi','core/base/tabs','file','Tập tin','2023-05-02 21:00:47','2023-05-02 21:00:47'),(989,1,'vi','core/base/tabs','record_note','Ghi chú','2023-05-02 21:00:47','2023-05-02 21:00:47'),(990,1,'vi','core/base/tabs','revision','Lịch sử thay đổi','2023-05-02 21:00:47','2023-05-02 21:00:47'),(991,1,'en','core/dashboard/dashboard','update_position_success','Update widget position successfully!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(992,1,'en','core/dashboard/dashboard','hide_success','Update widget successfully!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(993,1,'en','core/dashboard/dashboard','confirm_hide','Are you sure?','2023-05-02 21:00:47','2023-05-02 21:00:47'),(994,1,'en','core/dashboard/dashboard','hide_message','Do you really want to hide this widget? It will be disappear on Dashboard!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(995,1,'en','core/dashboard/dashboard','confirm_hide_btn','Yes, hide this widget','2023-05-02 21:00:47','2023-05-02 21:00:47'),(996,1,'en','core/dashboard/dashboard','cancel_hide_btn','Cancel','2023-05-02 21:00:47','2023-05-02 21:00:47'),(997,1,'en','core/dashboard/dashboard','collapse_expand','Collapse/Expand','2023-05-02 21:00:47','2023-05-02 21:00:47'),(998,1,'en','core/dashboard/dashboard','hide','Hide','2023-05-02 21:00:47','2023-05-02 21:00:47'),(999,1,'en','core/dashboard/dashboard','reload','Reload','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1000,1,'en','core/dashboard/dashboard','save_setting_success','Save widget settings successfully!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1001,1,'en','core/dashboard/dashboard','widget_not_exists','Widget is not exits!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1002,1,'en','core/dashboard/dashboard','manage_widgets','Manage Widgets','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1003,1,'en','core/dashboard/dashboard','fullscreen','Full screen','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1004,1,'en','core/dashboard/dashboard','title','Dashboard','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1005,1,'en','core/dashboard/dashboard','predefined_ranges.today','Today','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1006,1,'en','core/dashboard/dashboard','predefined_ranges.yesterday','Yesterday','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1007,1,'en','core/dashboard/dashboard','predefined_ranges.this_week','This Week','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1008,1,'en','core/dashboard/dashboard','predefined_ranges.last_7_days','Last 7 Days','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1009,1,'en','core/dashboard/dashboard','predefined_ranges.this_month','This Month','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1010,1,'en','core/dashboard/dashboard','predefined_ranges.last_30_days','Last 30 Days','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1011,1,'en','core/dashboard/dashboard','predefined_ranges.this_year','This Year','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1012,1,'vi','core/dashboard/dashboard','cancel_hide_btn','Hủy bỏ','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1013,1,'vi','core/dashboard/dashboard','collapse_expand','Mở rộng','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1014,1,'vi','core/dashboard/dashboard','confirm_hide','Bạn có chắc?','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1015,1,'vi','core/dashboard/dashboard','confirm_hide_btn','Vâng, ẩn tiện ích này','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1016,1,'vi','core/dashboard/dashboard','hide','Ẩn','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1017,1,'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!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1018,1,'vi','core/dashboard/dashboard','hide_success','Ẩn tiện ích thành công!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1019,1,'vi','core/dashboard/dashboard','manage_widgets','Quản lý tiện ích','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1020,1,'vi','core/dashboard/dashboard','reload','Làm mới','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1021,1,'vi','core/dashboard/dashboard','save_setting_success','Lưu tiện ích thành công','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1022,1,'vi','core/dashboard/dashboard','update_position_success','Cập nhật vị trí tiện ích thành công!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1023,1,'vi','core/dashboard/dashboard','widget_not_exists','Tiện ích này không tồn tại!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1024,1,'vi','core/dashboard/dashboard','fullscreen','Toàn màn hình','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1025,1,'vi','core/dashboard/dashboard','title','Trang quản trị','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1026,1,'en','core/media/media','filter','Filter','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1027,1,'en','core/media/media','everything','Everything','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1028,1,'en','core/media/media','image','Image','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1029,1,'en','core/media/media','video','Video','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1030,1,'en','core/media/media','document','Document','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1031,1,'en','core/media/media','view_in','View in','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1032,1,'en','core/media/media','all_media','All media','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1033,1,'en','core/media/media','trash','Trash','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1034,1,'en','core/media/media','recent','Recent','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1035,1,'en','core/media/media','favorites','Favorites','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1036,1,'en','core/media/media','upload','Upload','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1037,1,'en','core/media/media','create_folder','Create folder','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1038,1,'en','core/media/media','refresh','Refresh','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1039,1,'en','core/media/media','empty_trash','Empty trash','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1040,1,'en','core/media/media','search_file_and_folder','Search in current folder','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1041,1,'en','core/media/media','sort','Sort','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1042,1,'en','core/media/media','file_name_asc','File name - ASC','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1043,1,'en','core/media/media','file_name_desc','File name - DESC','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1044,1,'en','core/media/media','uploaded_date_asc','Uploaded date - ASC','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1045,1,'en','core/media/media','uploaded_date_desc','Uploaded date - DESC','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1046,1,'en','core/media/media','size_asc','Size - ASC','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1047,1,'en','core/media/media','size_desc','Size - DESC','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1048,1,'en','core/media/media','actions','Actions','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1049,1,'en','core/media/media','nothing_is_selected','Nothing is selected','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1050,1,'en','core/media/media','insert','Insert','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1051,1,'en','core/media/media','folder_name','Folder name','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1052,1,'en','core/media/media','create','Create','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1053,1,'en','core/media/media','rename','Rename','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1054,1,'en','core/media/media','crop','Crop','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1055,1,'en','core/media/media','close','Close','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1056,1,'en','core/media/media','save_changes','Save changes','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1057,1,'en','core/media/media','move_to_trash','Move items to trash','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1058,1,'en','core/media/media','confirm_trash','Are you sure you want to move these items to trash?','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1059,1,'en','core/media/media','confirm','Confirm','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1060,1,'en','core/media/media','confirm_delete','Delete item(s)','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1061,1,'en','core/media/media','confirm_delete_description','Your request cannot rollback. Are you sure you wanna delete these items?','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1062,1,'en','core/media/media','empty_trash_title','Empty trash','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1063,1,'en','core/media/media','empty_trash_description','Your request cannot rollback. Are you sure you wanna remove all items in trash?','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1064,1,'en','core/media/media','up_level','Up one level','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1065,1,'en','core/media/media','upload_progress','Upload progress','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1066,1,'en','core/media/media','alt_text','Alt text','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1067,1,'en','core/media/media','folder_created','Folder is created successfully!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1068,1,'en','core/media/media','gallery','Media gallery','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1069,1,'en','core/media/media','trash_error','Error when delete selected item(s)','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1070,1,'en','core/media/media','trash_success','Moved selected item(s) to trash successfully!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1071,1,'en','core/media/media','restore_error','Error when restore selected item(s)','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1072,1,'en','core/media/media','restore_success','Restore selected item(s) successfully!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1073,1,'en','core/media/media','copy_success','Copied selected item(s) successfully!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1074,1,'en','core/media/media','delete_success','Deleted selected item(s) successfully!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1075,1,'en','core/media/media','favorite_success','Favorite selected item(s) successfully!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1076,1,'en','core/media/media','remove_favorite_success','Remove selected item(s) from favorites successfully!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1077,1,'en','core/media/media','rename_error','Error when rename item(s)','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1078,1,'en','core/media/media','rename_success','Rename selected item(s) successfully!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1079,1,'en','core/media/media','crop_success','Crop image successfully!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1080,1,'en','core/media/media','empty_trash_success','Empty trash successfully!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1081,1,'en','core/media/media','invalid_action','Invalid action!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1082,1,'en','core/media/media','file_not_exists','File is not exists!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1083,1,'en','core/media/media','download_file_error','Error when downloading files!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1084,1,'en','core/media/media','missing_zip_archive_extension','Please enable ZipArchive extension to download file!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1085,1,'en','core/media/media','can_not_download_file','Can not download this file!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1086,1,'en','core/media/media','invalid_request','Invalid request!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1087,1,'en','core/media/media','add_success','Add item successfully!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1088,1,'en','core/media/media','file_too_big','File too big. Max file upload is :size bytes','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1089,1,'en','core/media/media','file_too_big_readable_size','File too big. Max file upload is :size.','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1090,1,'en','core/media/media','can_not_detect_file_type','File type is not allowed or can not detect file type!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1091,1,'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','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1092,1,'en','core/media/media','failed_to_crop_image','The file cropping must be image type','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1093,1,'en','core/media/media','menu_name','Media','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1094,1,'en','core/media/media','add','Add media','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1095,1,'en','core/media/media','javascript.name','Name','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1096,1,'en','core/media/media','javascript.url','URL','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1097,1,'en','core/media/media','javascript.full_url','Full URL','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1098,1,'en','core/media/media','javascript.alt','Alt text','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1099,1,'en','core/media/media','javascript.size','Size','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1100,1,'en','core/media/media','javascript.mime_type','Type','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1101,1,'en','core/media/media','javascript.created_at','Uploaded at','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1102,1,'en','core/media/media','javascript.updated_at','Modified at','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1103,1,'en','core/media/media','javascript.nothing_selected','Nothing is selected','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1104,1,'en','core/media/media','javascript.visit_link','Open link','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1105,1,'en','core/media/media','javascript.no_item.all_media.icon','fas fa-cloud-upload-alt','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1106,1,'en','core/media/media','javascript.no_item.all_media.title','Drop files and folders here','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1107,1,'en','core/media/media','javascript.no_item.all_media.message','Or use the upload button above','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1108,1,'en','core/media/media','javascript.no_item.trash.icon','fas fa-trash-alt','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1109,1,'en','core/media/media','javascript.no_item.trash.title','There is nothing in your trash currently','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1110,1,'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','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1111,1,'en','core/media/media','javascript.no_item.favorites.icon','fas fa-star','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1112,1,'en','core/media/media','javascript.no_item.favorites.title','You have not added anything to your favorites yet','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1113,1,'en','core/media/media','javascript.no_item.favorites.message','Add files to favorites to easily find them later','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1114,1,'en','core/media/media','javascript.no_item.recent.icon','far fa-clock','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1115,1,'en','core/media/media','javascript.no_item.recent.title','You did not opened anything yet','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1116,1,'en','core/media/media','javascript.no_item.recent.message','All recent files that you opened will be appeared here','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1117,1,'en','core/media/media','javascript.no_item.default.icon','fas fa-sync','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1118,1,'en','core/media/media','javascript.no_item.default.title','No items','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1119,1,'en','core/media/media','javascript.no_item.default.message','This directory has no item','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1120,1,'en','core/media/media','javascript.clipboard.success','These file links has been copied to clipboard','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1121,1,'en','core/media/media','javascript.message.error_header','Error','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1122,1,'en','core/media/media','javascript.message.success_header','Success','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1123,1,'en','core/media/media','javascript.download.error','No files selected or cannot download these files','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1124,1,'en','core/media/media','javascript.actions_list.basic.preview','Preview','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1125,1,'en','core/media/media','javascript.actions_list.basic.crop','Crop','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1126,1,'en','core/media/media','javascript.actions_list.file.copy_link','Copy link','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1127,1,'en','core/media/media','javascript.actions_list.file.rename','Rename','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1128,1,'en','core/media/media','javascript.actions_list.file.make_copy','Make a copy','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1129,1,'en','core/media/media','javascript.actions_list.user.favorite','Add to favorite','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1130,1,'en','core/media/media','javascript.actions_list.user.remove_favorite','Remove favorite','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1131,1,'en','core/media/media','javascript.actions_list.other.download','Download','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1132,1,'en','core/media/media','javascript.actions_list.other.trash','Move to trash','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1133,1,'en','core/media/media','javascript.actions_list.other.delete','Delete permanently','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1134,1,'en','core/media/media','javascript.actions_list.other.restore','Restore','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1135,1,'en','core/media/media','javascript.change_image','Change image','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1136,1,'en','core/media/media','javascript.delete_image','Delete image','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1137,1,'en','core/media/media','javascript.choose_image','Choose image','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1138,1,'en','core/media/media','javascript.preview_image','Preview image','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1139,1,'en','core/media/media','name_invalid','The folder name has invalid character(s).','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1140,1,'en','core/media/media','url_invalid','Please provide a valid URL','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1141,1,'en','core/media/media','path_invalid','Please provide a valid path','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1142,1,'en','core/media/media','download_link','Download','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1143,1,'en','core/media/media','url','URL','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1144,1,'en','core/media/media','download_explain','Enter one URL per line.','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1145,1,'en','core/media/media','downloading','Downloading...','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1146,1,'en','core/media/media','prepare_file_to_download','Preparing file to download...','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1147,1,'en','core/media/media','update_alt_text_success','Update alt text successfully!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1148,1,'en','core/media/media','cropper.height','Height','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1149,1,'en','core/media/media','cropper.width','Width','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1150,1,'en','core/media/media','cropper.aspect_ratio','Aspect ratio?','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1151,1,'en','core/media/media','unable_to_write','Unable to write file. Please chmod folder \":folder\" to make it writeable!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1152,1,'vi','core/media/media','filter','Lọc','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1153,1,'vi','core/media/media','everything','Tất cả','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1154,1,'vi','core/media/media','image','Hình ảnh','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1155,1,'vi','core/media/media','video','Phim','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1156,1,'vi','core/media/media','document','Tài liệu','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1157,1,'vi','core/media/media','view_in','Chế độ xem','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1158,1,'vi','core/media/media','all_media','Tất cả tập tin','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1159,1,'vi','core/media/media','trash','Thùng rác','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1160,1,'vi','core/media/media','recent','Gần đây','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1161,1,'vi','core/media/media','favorites','Được gắn dấu sao','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1162,1,'vi','core/media/media','upload','Tải lên','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1163,1,'vi','core/media/media','create_folder','Tạo thư mục','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1164,1,'vi','core/media/media','refresh','Làm mới','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1165,1,'vi','core/media/media','empty_trash','Dọn thùng rác','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1166,1,'vi','core/media/media','search_file_and_folder','Tìm kiếm tập tin và thư mục','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1167,1,'vi','core/media/media','sort','Sắp xếp','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1168,1,'vi','core/media/media','file_name_asc','Tên tập tin - ASC','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1169,1,'vi','core/media/media','file_name_desc','Tên tập tin - DESC','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1170,1,'vi','core/media/media','uploaded_date_asc','Ngày tải lên - ASC','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1171,1,'vi','core/media/media','uploaded_date_desc','Ngày tải lên - DESC','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1172,1,'vi','core/media/media','size_asc','Kích thước - ASC','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1173,1,'vi','core/media/media','size_desc','Kích thước - DESC','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1174,1,'vi','core/media/media','actions','Hành động','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1175,1,'vi','core/media/media','nothing_is_selected','Không có tập tin nào được chọn','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1176,1,'vi','core/media/media','insert','Chèn','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1177,1,'vi','core/media/media','folder_name','Tên thư mục','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1178,1,'vi','core/media/media','create','Tạo','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1179,1,'vi','core/media/media','rename','Đổi tên','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1180,1,'vi','core/media/media','close','Đóng','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1181,1,'vi','core/media/media','save_changes','Lưu thay đổi','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1182,1,'vi','core/media/media','move_to_trash','Đưa vào thùng rác','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1183,1,'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?','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1184,1,'vi','core/media/media','confirm','Xác nhận','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1185,1,'vi','core/media/media','confirm_delete','Xóa tập tin','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1186,1,'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?','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1187,1,'vi','core/media/media','empty_trash_title','Dọn sạch thùng rác','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1188,1,'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?','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1189,1,'vi','core/media/media','up_level','Quay lại một cấp','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1190,1,'vi','core/media/media','upload_progress','Tiến trình tải lên','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1191,1,'vi','core/media/media','folder_created','Tạo thư mục thành công!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1192,1,'vi','core/media/media','gallery','Thư viện tập tin','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1193,1,'vi','core/media/media','trash_error','Có lỗi khi xóa tập tin/thư mục','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1194,1,'vi','core/media/media','trash_success','Xóa tập tin/thư mục thành công!','2023-05-02 21:00:47','2023-05-02 21:00:47'),(1195,1,'vi','core/media/media','restore_error','Có lỗi trong quá trình khôi phục','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1196,1,'vi','core/media/media','restore_success','Khôi phục thành công!','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1197,1,'vi','core/media/media','copy_success','Sao chép thành công!','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1198,1,'vi','core/media/media','delete_success','Xóa thành công!','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1199,1,'vi','core/media/media','favorite_success','Thêm dấu sao thành công!','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1200,1,'vi','core/media/media','remove_favorite_success','Bỏ dấu sao thành công!','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1201,1,'vi','core/media/media','rename_error','Có lỗi trong quá trình đổi tên','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1202,1,'vi','core/media/media','rename_success','Đổi tên thành công!','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1203,1,'vi','core/media/media','invalid_action','Hành động không hợp lệ!','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1204,1,'vi','core/media/media','file_not_exists','Tập tin không tồn tại!','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1205,1,'vi','core/media/media','download_file_error','Có lỗi trong quá trình tải xuống tập tin!','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1206,1,'vi','core/media/media','missing_zip_archive_extension','Hãy bật ZipArchive extension để tải tập tin!','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1207,1,'vi','core/media/media','can_not_download_file','Không thể tải tập tin!','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1208,1,'vi','core/media/media','invalid_request','Yêu cầu không hợp lệ!','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1209,1,'vi','core/media/media','add_success','Thêm thành công!','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1210,1,'vi','core/media/media','file_too_big','Tập tin quá lớn. Giới hạn tải lên là :size bytes','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1211,1,'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!','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1212,1,'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','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1213,1,'vi','core/media/media','menu_name','Quản lý tập tin','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1214,1,'vi','core/media/media','add','Thêm tập tin','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1215,1,'vi','core/media/media','javascript.name','Tên','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1216,1,'vi','core/media/media','javascript.url','Đường dẫn','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1217,1,'vi','core/media/media','javascript.full_url','Đường dẫn tuyệt đối','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1218,1,'vi','core/media/media','javascript.size','Kích thước','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1219,1,'vi','core/media/media','javascript.mime_type','Loại','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1220,1,'vi','core/media/media','javascript.created_at','Được tải lên lúc','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1221,1,'vi','core/media/media','javascript.updated_at','Được chỉnh sửa lúc','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1222,1,'vi','core/media/media','javascript.nothing_selected','Bạn chưa chọn tập tin nào','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1223,1,'vi','core/media/media','javascript.visit_link','Mở liên kết','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1224,1,'vi','core/media/media','javascript.no_item.all_media.icon','fas fa-cloud-upload-alt','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1225,1,'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','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1226,1,'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','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1227,1,'vi','core/media/media','javascript.no_item.trash.icon','fas fa-trash-alt','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1228,1,'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','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1229,1,'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.','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1230,1,'vi','core/media/media','javascript.no_item.favorites.icon','fas fa-star','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1231,1,'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','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1232,1,'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.','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1233,1,'vi','core/media/media','javascript.no_item.recent.icon','far fa-clock','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1234,1,'vi','core/media/media','javascript.no_item.recent.title','Bạn chưa mở tập tin nào.','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1235,1,'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.','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1236,1,'vi','core/media/media','javascript.no_item.default.icon','fas fa-sync','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1237,1,'vi','core/media/media','javascript.no_item.default.title','Thư mục trống','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1238,1,'vi','core/media/media','javascript.no_item.default.message','Thư mục này chưa có tập tin nào','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1239,1,'vi','core/media/media','javascript.clipboard.success','Đường dẫn của các tập tin đã được sao chép vào clipboard','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1240,1,'vi','core/media/media','javascript.message.error_header','Lỗi','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1241,1,'vi','core/media/media','javascript.message.success_header','Thành công','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1242,1,'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ề','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1243,1,'vi','core/media/media','javascript.actions_list.basic.preview','Xem trước','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1244,1,'vi','core/media/media','javascript.actions_list.file.copy_link','Sao chép đường dẫn','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1245,1,'vi','core/media/media','javascript.actions_list.file.rename','Đổi tên','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1246,1,'vi','core/media/media','javascript.actions_list.file.make_copy','Nhân bản','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1247,1,'vi','core/media/media','javascript.actions_list.user.favorite','Yêu thích','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1248,1,'vi','core/media/media','javascript.actions_list.user.remove_favorite','Xóa khỏi mục yêu thích','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1249,1,'vi','core/media/media','javascript.actions_list.other.download','Tải xuống','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1250,1,'vi','core/media/media','javascript.actions_list.other.trash','Chuyển vào thùng rác','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1251,1,'vi','core/media/media','javascript.actions_list.other.delete','Xóa hoàn toàn','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1252,1,'vi','core/media/media','javascript.actions_list.other.restore','Khôi phục','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1253,1,'vi','core/media/media','empty_trash_success','Dọn sạch thùng rác thành công','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1254,1,'vi','core/media/media','name_invalid','Tên thư mục chứa ký tự không hợp lệ','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1255,1,'vi','core/media/media','path_invalid','Vui lòng cung cấp 1 đường dẫn hợp lệ','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1256,1,'vi','core/media/media','url_invalid','Vui lòng cung cấp 1 đường dẫn hợp lệ','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1257,1,'vi','core/media/media','download_explain','Mỗi URL trên 1 dòng','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1258,1,'vi','core/media/media','download_link','Tải xuống','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1259,1,'vi','core/media/media','downloading','Đang tải xuống','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1260,1,'en','core/setting/setting','title','Settings','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1261,1,'en','core/setting/setting','email_setting_title','Email settings','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1262,1,'en','core/setting/setting','general.theme','Theme','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1263,1,'en','core/setting/setting','general.description','Setting site information','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1264,1,'en','core/setting/setting','general.title','General','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1265,1,'en','core/setting/setting','general.general_block','General Information','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1266,1,'en','core/setting/setting','general.rich_editor','Rich Editor','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1267,1,'en','core/setting/setting','general.site_title','Site title','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1268,1,'en','core/setting/setting','general.admin_email','Admin Email','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1269,1,'en','core/setting/setting','general.seo_block','SEO Configuration','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1270,1,'en','core/setting/setting','general.seo_title','SEO Title','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1271,1,'en','core/setting/setting','general.seo_description','SEO Description','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1272,1,'en','core/setting/setting','general.webmaster_tools_block','Google Webmaster Tools','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1273,1,'en','core/setting/setting','general.placeholder.site_title','Site Title (maximum 120 characters)','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1274,1,'en','core/setting/setting','general.placeholder.admin_email','Admin Email','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1275,1,'en','core/setting/setting','general.placeholder.seo_title','SEO Title (maximum 120 characters)','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1276,1,'en','core/setting/setting','general.placeholder.seo_description','SEO Description (maximum 120 characters)','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1277,1,'en','core/setting/setting','general.placeholder.google_analytics','Google Analytics','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1278,1,'en','core/setting/setting','general.cache_admin_menu','Cache admin menu?','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1279,1,'en','core/setting/setting','general.enable_send_error_reporting_via_email','Enable to send error reporting via email?','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1280,1,'en','core/setting/setting','general.time_zone','Timezone','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1281,1,'en','core/setting/setting','general.default_admin_theme','Default admin theme','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1282,1,'en','core/setting/setting','general.enable_change_admin_theme','Enable change admin theme?','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1283,1,'en','core/setting/setting','general.enable','Enable','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1284,1,'en','core/setting/setting','general.disable','Disable','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1285,1,'en','core/setting/setting','general.enable_cache','Enable cache?','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1286,1,'en','core/setting/setting','general.disable_cache_in_the_admin_panel','Disable cache in the admin panel?','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1287,1,'en','core/setting/setting','general.cache_time','Cache time (minutes)','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1288,1,'en','core/setting/setting','general.enable_cache_site_map','Enable cache site map?','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1289,1,'en','core/setting/setting','general.cache_time_site_map','Cache Time Site map (minutes)','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1290,1,'en','core/setting/setting','general.admin_logo','Admin logo','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1291,1,'en','core/setting/setting','general.admin_favicon','Admin favicon','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1292,1,'en','core/setting/setting','general.admin_title','Admin title','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1293,1,'en','core/setting/setting','general.admin_title_placeholder','Title show to tab of browser','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1294,1,'en','core/setting/setting','general.cache_block','Cache','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1295,1,'en','core/setting/setting','general.admin_appearance_title','Admin appearance','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1296,1,'en','core/setting/setting','general.admin_appearance_description','Setting admin appearance such as editor, language...','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1297,1,'en','core/setting/setting','general.seo_block_description','Setting site title, site meta description, site keyword for optimize SEO','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1298,1,'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','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1299,1,'en','core/setting/setting','general.cache_description','Config cache for system for optimize speed','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1300,1,'en','core/setting/setting','general.yes','Yes','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1301,1,'en','core/setting/setting','general.no','No','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1302,1,'en','core/setting/setting','general.show_on_front','Your homepage displays','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1303,1,'en','core/setting/setting','general.select','— Select —','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1304,1,'en','core/setting/setting','general.show_site_name','Show site name after page title, separate with \"-\"?','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1305,1,'en','core/setting/setting','general.locale','Site language','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1306,1,'en','core/setting/setting','general.locale_direction','Front site language direction','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1307,1,'en','core/setting/setting','general.admin_locale_direction','Admin language direction','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1308,1,'en','core/setting/setting','general.admin_login_screen_backgrounds','Login screen backgrounds (~1366x768)','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1309,1,'en','core/setting/setting','general.minutes','minutes','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1310,1,'en','core/setting/setting','email.subject','Subject','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1311,1,'en','core/setting/setting','email.content','Content','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1312,1,'en','core/setting/setting','email.title','Setting for email template','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1313,1,'en','core/setting/setting','email.description','Email template using HTML & system variables.','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1314,1,'en','core/setting/setting','email.reset_to_default','Reset to default','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1315,1,'en','core/setting/setting','email.back','Back to settings','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1316,1,'en','core/setting/setting','email.reset_success','Reset back to default successfully','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1317,1,'en','core/setting/setting','email.confirm_reset','Confirm reset email template?','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1318,1,'en','core/setting/setting','email.confirm_message','Do you really want to reset this email template to default?','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1319,1,'en','core/setting/setting','email.continue','Continue','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1320,1,'en','core/setting/setting','email.sender_name','Sender name','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1321,1,'en','core/setting/setting','email.sender_name_placeholder','Name','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1322,1,'en','core/setting/setting','email.sender_email','Sender email','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1323,1,'en','core/setting/setting','email.mailer','Mailer','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1324,1,'en','core/setting/setting','email.port','Port','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1325,1,'en','core/setting/setting','email.port_placeholder','Ex: 587','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1326,1,'en','core/setting/setting','email.host','Host','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1327,1,'en','core/setting/setting','email.host_placeholder','Ex: smtp.gmail.com','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1328,1,'en','core/setting/setting','email.username','Username','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1329,1,'en','core/setting/setting','email.username_placeholder','Username to login to mail server','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1330,1,'en','core/setting/setting','email.password','Password','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1331,1,'en','core/setting/setting','email.password_placeholder','Password to login to mail server','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1332,1,'en','core/setting/setting','email.encryption','Encryption','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1333,1,'en','core/setting/setting','email.mail_gun_domain','Domain','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1334,1,'en','core/setting/setting','email.mail_gun_domain_placeholder','Domain','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1335,1,'en','core/setting/setting','email.mail_gun_secret','Secret','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1336,1,'en','core/setting/setting','email.mail_gun_secret_placeholder','Secret','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1337,1,'en','core/setting/setting','email.mail_gun_endpoint','Endpoint','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1338,1,'en','core/setting/setting','email.mail_gun_endpoint_placeholder','Endpoint','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1339,1,'en','core/setting/setting','email.log_channel','Log channel','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1340,1,'en','core/setting/setting','email.sendmail_path','Sendmail Path','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1341,1,'en','core/setting/setting','email.encryption_placeholder','Encryption: ssl or tls','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1342,1,'en','core/setting/setting','email.ses_key','Key','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1343,1,'en','core/setting/setting','email.ses_key_placeholder','Key','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1344,1,'en','core/setting/setting','email.ses_secret','Secret','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1345,1,'en','core/setting/setting','email.ses_secret_placeholder','Secret','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1346,1,'en','core/setting/setting','email.ses_region','Region','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1347,1,'en','core/setting/setting','email.ses_region_placeholder','Region','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1348,1,'en','core/setting/setting','email.postmark_token','Token','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1349,1,'en','core/setting/setting','email.postmark_token_placeholder','Token','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1350,1,'en','core/setting/setting','email.template_title','Email templates','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1351,1,'en','core/setting/setting','email.template_description','Base templates for all emails','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1352,1,'en','core/setting/setting','email.template_header','Email template header','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1353,1,'en','core/setting/setting','email.template_header_description','Template for header of emails','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1354,1,'en','core/setting/setting','email.template_footer','Email template footer','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1355,1,'en','core/setting/setting','email.template_footer_description','Template for footer of emails','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1356,1,'en','core/setting/setting','email.default','Default','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1357,1,'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)','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1358,1,'en','core/setting/setting','media.title','Media','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1359,1,'en','core/setting/setting','media.driver','Driver','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1360,1,'en','core/setting/setting','media.description','Settings for media','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1361,1,'en','core/setting/setting','media.aws_access_key_id','AWS Access Key ID','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1362,1,'en','core/setting/setting','media.aws_secret_key','AWS Secret Key','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1363,1,'en','core/setting/setting','media.aws_default_region','AWS Default Region','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1364,1,'en','core/setting/setting','media.aws_bucket','AWS Bucket','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1365,1,'en','core/setting/setting','media.aws_url','AWS URL','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1366,1,'en','core/setting/setting','media.aws_endpoint','AWS Endpoint (Optional)','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1367,1,'en','core/setting/setting','media.do_spaces_access_key_id','DO Spaces Access Key ID','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1368,1,'en','core/setting/setting','media.do_spaces_secret_key','DO Spaces Secret Key','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1369,1,'en','core/setting/setting','media.do_spaces_default_region','DO Spaces Default Region','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1370,1,'en','core/setting/setting','media.do_spaces_bucket','DO Spaces Bucket','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1371,1,'en','core/setting/setting','media.do_spaces_endpoint','DO Spaces Endpoint','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1372,1,'en','core/setting/setting','media.do_spaces_cdn_enabled','Is DO Spaces CDN enabled?','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1373,1,'en','core/setting/setting','media.media_do_spaces_cdn_custom_domain','Do Spaces CDN custom domain','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1374,1,'en','core/setting/setting','media.media_do_spaces_cdn_custom_domain_placeholder','https://your-custom-domain.com','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1375,1,'en','core/setting/setting','media.wasabi_access_key_id','Wasabi Access Key ID','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1376,1,'en','core/setting/setting','media.wasabi_secret_key','Wasabi Secret Key','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1377,1,'en','core/setting/setting','media.wasabi_default_region','Wasabi Default Region','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1378,1,'en','core/setting/setting','media.wasabi_bucket','Wasabi Bucket','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1379,1,'en','core/setting/setting','media.wasabi_root','Wasabi Root','2023-05-02 21:00:48','2023-05-02 21:00:48'),(1380,1,'en','core/setting/setting','media.default_placeholder_image','Default placeholder image','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1381,1,'en','core/setting/setting','media.enable_chunk','Enable chunk size upload?','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1382,1,'en','core/setting/setting','media.chunk_size','Chunk size (Bytes)','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1383,1,'en','core/setting/setting','media.chunk_size_placeholder','Default: 1048576 ~ 1MB','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1384,1,'en','core/setting/setting','media.max_file_size','Chunk max file size (MB)','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1385,1,'en','core/setting/setting','media.max_file_size_placeholder','Default: 1048576 ~ 1GB','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1386,1,'en','core/setting/setting','media.enable_watermark','Enable watermark?','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1387,1,'en','core/setting/setting','media.watermark_source','Watermark image','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1388,1,'en','core/setting/setting','media.watermark_size','Size of watermark (%)','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1389,1,'en','core/setting/setting','media.watermark_size_placeholder','Default: 10 (%)','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1390,1,'en','core/setting/setting','media.watermark_opacity','Watermark Opacity (%)','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1391,1,'en','core/setting/setting','media.watermark_opacity_placeholder','Default: 70 (%)','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1392,1,'en','core/setting/setting','media.watermark_position','Watermark position','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1393,1,'en','core/setting/setting','media.watermark_position_x','Watermark position X','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1394,1,'en','core/setting/setting','media.watermark_position_y','Watermark position Y','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1395,1,'en','core/setting/setting','media.watermark_position_top_left','Top left','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1396,1,'en','core/setting/setting','media.watermark_position_top_right','Top right','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1397,1,'en','core/setting/setting','media.watermark_position_bottom_left','Bottom left','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1398,1,'en','core/setting/setting','media.watermark_position_bottom_right','Bottom right','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1399,1,'en','core/setting/setting','media.watermark_position_center','Center','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1400,1,'en','core/setting/setting','media.turn_off_automatic_url_translation_into_latin','Turn off automatic URL translation into Latin?','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1401,1,'en','core/setting/setting','media.bunnycdn_hostname','Hostname','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1402,1,'en','core/setting/setting','media.bunnycdn_zone','Zone Name (The name of your storage zone)','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1403,1,'en','core/setting/setting','media.bunnycdn_key','FTP & API Access Password (The storage zone API Access Password)','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1404,1,'en','core/setting/setting','media.bunnycdn_region','Region (The storage zone region)','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1405,1,'en','core/setting/setting','media.optional','Optional','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1406,1,'en','core/setting/setting','media.sizes','Media thumbnails sizes','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1407,1,'en','core/setting/setting','media.media_sizes_helper','Set width or height to 0 if you just want to crop by width or height. Need to click on \"Generate thumbnails\" to apply changes.','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1408,1,'en','core/setting/setting','media.width','Width','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1409,1,'en','core/setting/setting','media.height','Height','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1410,1,'en','core/setting/setting','media.default_size_value','Default: :size','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1411,1,'en','core/setting/setting','media.all','All','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1412,1,'en','core/setting/setting','media.media_folders_can_add_watermark','Add watermark for images in folders:','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1413,1,'en','core/setting/setting','media.max_upload_filesize','Max upload filesize (MB)','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1414,1,'en','core/setting/setting','media.max_upload_filesize_placeholder','Default: :size, must less than :size.','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1415,1,'en','core/setting/setting','media.max_upload_filesize_helper','Your server allows to upload files maximum :size, you can change this value to limit upload filesize.','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1416,1,'en','core/setting/setting','media.image_processing_library','Image processing library','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1417,1,'en','core/setting/setting','license.purchase_code','Purchase code','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1418,1,'en','core/setting/setting','license.buyer','Buyer','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1419,1,'en','core/setting/setting','field_type_not_exists','This field type does not exist','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1420,1,'en','core/setting/setting','save_settings','Save settings','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1421,1,'en','core/setting/setting','template','Template','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1422,1,'en','core/setting/setting','description','Description','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1423,1,'en','core/setting/setting','enable','Enable','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1424,1,'en','core/setting/setting','send','Send','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1425,1,'en','core/setting/setting','test_email_description','To send test email, please make sure you are updated configuration to send mail!','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1426,1,'en','core/setting/setting','test_email_input_placeholder','Enter the email which you want to send test email.','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1427,1,'en','core/setting/setting','test_email_modal_title','Send a test email','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1428,1,'en','core/setting/setting','test_send_mail','Send test mail','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1429,1,'en','core/setting/setting','test_email_send_success','Send email successfully!','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1430,1,'en','core/setting/setting','locale_direction_ltr','Left to Right','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1431,1,'en','core/setting/setting','locale_direction_rtl','Right to Left','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1432,1,'en','core/setting/setting','saving','Saving...','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1433,1,'en','core/setting/setting','emails_warning','You can add up to :count emails','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1434,1,'en','core/setting/setting','email_add_more','Add more','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1435,1,'en','core/setting/setting','generate','Generate','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1436,1,'en','core/setting/setting','generate_thumbnails','Generate thumbnails','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1437,1,'en','core/setting/setting','generate_thumbnails_success','Generate thumbnails successfully. :count files are generated!','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1438,1,'en','core/setting/setting','generate_thumbnails_error','We are unable to regenerate thumbnail for these files :count files!','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1439,1,'en','core/setting/setting','generate_thumbnails_description','Are you sure you want to re-generate thumbnails for all images? It will take time so please DO NOT leave this page, wait until it is finished.','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1440,1,'en','core/setting/setting','enable_chunk_description','Chunk size upload is used to upload large file size.','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1441,1,'en','core/setting/setting','watermark_description','WARNING: Watermark is just added to new uploaded images, it won\'t be added to existing images. Disable watermark won\'t remove watermark from existing images.','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1442,1,'en','core/setting/setting','submit','Submit','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1443,1,'en','core/setting/setting','back','Back','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1444,1,'en','core/setting/setting','enter_sample_value','Enter sample values for testing','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1445,1,'en','core/setting/setting','preview','Preview','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1446,1,'vi','core/setting/setting','title','Cài đặt','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1447,1,'vi','core/setting/setting','general.theme','Giao diện','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1448,1,'vi','core/setting/setting','general.description','Cấu hình những thông tin cài đặt website.','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1449,1,'vi','core/setting/setting','general.title','Thông tin chung','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1450,1,'vi','core/setting/setting','general.general_block','Thông tin chung','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1451,1,'vi','core/setting/setting','general.site_title','Tên trang','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1452,1,'vi','core/setting/setting','general.admin_email','Email quản trị viên','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1453,1,'vi','core/setting/setting','general.seo_block','Cấu hình SEO','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1454,1,'vi','core/setting/setting','general.seo_title','Tiêu đề SEO','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1455,1,'vi','core/setting/setting','general.seo_description','Mô tả SEO','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1456,1,'vi','core/setting/setting','general.webmaster_tools_block','Google Webmaster Tools','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1457,1,'vi','core/setting/setting','general.placeholder.site_title','Tên trang (tối đa 120 kí tự)','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1458,1,'vi','core/setting/setting','general.placeholder.admin_email','Admin Email','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1459,1,'vi','core/setting/setting','general.placeholder.google_analytics','Ví dụ: UA-42767940-2','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1460,1,'vi','core/setting/setting','general.placeholder.seo_title','Tiêu đề SEO (tối đa 120 kí tự)','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1461,1,'vi','core/setting/setting','general.placeholder.seo_description','Mô tả SEO (tối đa 120 kí tự)','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1462,1,'vi','core/setting/setting','general.enable_change_admin_theme','Cho phép thay đổi giao diện quản trị?','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1463,1,'vi','core/setting/setting','general.enable','Bật','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1464,1,'vi','core/setting/setting','general.disable','Tắt','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1465,1,'vi','core/setting/setting','general.enable_cache','Bật bộ nhớ đệm?','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1466,1,'vi','core/setting/setting','general.cache_time','Thời gian lưu bộ nhớ đệm (phút)','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1467,1,'vi','core/setting/setting','general.cache_time_site_map','Thời gian lưu sơ đồ trang trong bộ nhớ đệm','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1468,1,'vi','core/setting/setting','general.admin_logo','Logo trang quản trị','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1469,1,'vi','core/setting/setting','general.admin_title','Tiêu đề trang quản trị','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1470,1,'vi','core/setting/setting','general.admin_title_placeholder','Tiêu đề hiển thị trên thẻ trình duyệt','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1471,1,'vi','core/setting/setting','general.rich_editor','Bộ soạn thảo văn bản','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1472,1,'vi','core/setting/setting','general.cache_block','Bộ nhớ đệm','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1473,1,'vi','core/setting/setting','general.yes','Bật','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1474,1,'vi','core/setting/setting','general.no','Tắt','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1475,1,'vi','core/setting/setting','general.locale','Ngôn ngữ','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1476,1,'vi','core/setting/setting','general.admin_appearance_description','Setting admin appearance such as editor, language...','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1477,1,'vi','core/setting/setting','general.admin_appearance_title','Admin appearance','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1478,1,'vi','core/setting/setting','general.admin_login_screen_backgrounds','Login screen backgrounds (~1366x768)','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1479,1,'vi','core/setting/setting','general.admin_favicon','Admin favicon','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1480,1,'vi','core/setting/setting','general.cache_admin_menu','Cache admin menu?','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1481,1,'vi','core/setting/setting','general.cache_description','Config cache for system for optimize speed','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1482,1,'vi','core/setting/setting','general.default_admin_theme','Default admin theme','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1483,1,'vi','core/setting/setting','general.enable_send_error_reporting_via_email','Enable to send error reporting via email?','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1484,1,'vi','core/setting/setting','general.locale_direction','Hướng chữ viết','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1485,1,'vi','core/setting/setting','general.select','-- Lựa chọn --','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1486,1,'vi','core/setting/setting','general.seo_block_description','Setting site title, site meta description, site keyword for optimize SEO','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1487,1,'vi','core/setting/setting','general.show_on_front','Thiết lập trang chủ','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1488,1,'vi','core/setting/setting','general.show_site_name','Hiển thị tên trang web sau tiêu đề trang, tách biệt bằng \"-\"?','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1489,1,'vi','core/setting/setting','general.time_zone','Múi giờ','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1490,1,'vi','core/setting/setting','general.webmaster_tools_description','Công cụ quản trị trang web của Google (GWT) là phần mềm miễn phí giúp bạn quản lý khía cạnh kỹ thuật của trang web của mình','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1491,1,'vi','core/setting/setting','email.subject','Tiêu đề','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1492,1,'vi','core/setting/setting','email.content','Nội dung','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1493,1,'vi','core/setting/setting','email.title','Cấu hình email template','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1494,1,'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.','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1495,1,'vi','core/setting/setting','email.reset_to_default','Khôi phục về mặc định','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1496,1,'vi','core/setting/setting','email.back','Trở lại trang cài đặt','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1497,1,'vi','core/setting/setting','email.reset_success','Khôi phục mặc định thành công','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1498,1,'vi','core/setting/setting','email.confirm_reset','Xác nhận khôi phục mặc định?','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1499,1,'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?','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1500,1,'vi','core/setting/setting','email.continue','Tiếp tục','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1501,1,'vi','core/setting/setting','email.sender_name','Tên người gửi','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1502,1,'vi','core/setting/setting','email.sender_name_placeholder','Tên','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1503,1,'vi','core/setting/setting','email.sender_email','Email của người gửi','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1504,1,'vi','core/setting/setting','email.mailer','Loại','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1505,1,'vi','core/setting/setting','email.port','Cổng','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1506,1,'vi','core/setting/setting','email.port_placeholder','Ví dụ: 587','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1507,1,'vi','core/setting/setting','email.host','Máy chủ','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1508,1,'vi','core/setting/setting','email.host_placeholder','Ví dụ: smtp.gmail.com','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1509,1,'vi','core/setting/setting','email.username','Tên đăng nhập','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1510,1,'vi','core/setting/setting','email.username_placeholder','Tên đăng nhập vào máy chủ mail','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1511,1,'vi','core/setting/setting','email.password','Mật khẩu','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1512,1,'vi','core/setting/setting','email.password_placeholder','Mật khẩu đăng nhập vào máy chủ mail','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1513,1,'vi','core/setting/setting','email.encryption','Mã hoá','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1514,1,'vi','core/setting/setting','email.mail_gun_domain','Tên miền','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1515,1,'vi','core/setting/setting','email.mail_gun_domain_placeholder','Tên miền','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1516,1,'vi','core/setting/setting','email.mail_gun_secret','Chuỗi bí mật','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1517,1,'vi','core/setting/setting','email.mail_gun_secret_placeholder','Chuỗi bí mật','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1518,1,'vi','core/setting/setting','email.template_title','Mẫu giao diện email','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1519,1,'vi','core/setting/setting','email.template_description','Giao diện mặc định cho tất cả email','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1520,1,'vi','core/setting/setting','email.template_header','Mẫu cho phần trên của email','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1521,1,'vi','core/setting/setting','email.template_header_description','Phần trên của tất cả email','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1522,1,'vi','core/setting/setting','email.template_footer','Mẫu cho phần dưới của email','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1523,1,'vi','core/setting/setting','email.template_footer_description','Phần dưới của tất cả email','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1524,1,'vi','core/setting/setting','email.default','Mặc định','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1525,1,'vi','core/setting/setting','email.mail_gun_endpoint','Endpoint','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1526,1,'vi','core/setting/setting','email.mail_gun_endpoint_placeholder','Endpoint','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1527,1,'vi','core/setting/setting','email.postmark_token','Token','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1528,1,'vi','core/setting/setting','email.postmark_token_placeholder','Token','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1529,1,'vi','core/setting/setting','email.encryption_placeholder','Kiểu mã hóa: ssl hoặc tls','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1530,1,'vi','core/setting/setting','email.log_channel','Phương thức log','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1531,1,'vi','core/setting/setting','email.sendmail_path','Sendmail Path','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1532,1,'vi','core/setting/setting','email.ses_key','Key','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1533,1,'vi','core/setting/setting','email.ses_key_placeholder','Key','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1534,1,'vi','core/setting/setting','email.ses_region','Region','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1535,1,'vi','core/setting/setting','email.ses_region_placeholder','Region','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1536,1,'vi','core/setting/setting','email.ses_secret','Secret','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1537,1,'vi','core/setting/setting','email.ses_secret_placeholder','Secret','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1538,1,'vi','core/setting/setting','email.using_queue_to_send_mail','Sử dụng job queue để gửi email (Trước tiên phải thiết lập Queue https://laravel.com/docs/queues#supervisor-configuration)','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1539,1,'vi','core/setting/setting','save_settings','Lưu cài đặt','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1540,1,'vi','core/setting/setting','template','Mẫu','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1541,1,'vi','core/setting/setting','description','Mô tả','2023-05-02 21:00:49','2023-05-02 21:00:49'),(1542,1,'vi','core/setting/setting','enable','Bật','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1543,1,'vi','core/setting/setting','test_send_mail','Gửi thử nghiệm','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1544,1,'vi','core/setting/setting','email_setting_title','Cấu hình email','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1545,1,'vi','core/setting/setting','field_type_not_exists','Loại field này không được hỗ trợ','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1546,1,'vi','core/setting/setting','test_email_description','Để gửi email thử nghiệm, hãy đảm bảo rằng bạn đã cập nhật cấu hình để gửi thư!','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1547,1,'vi','core/setting/setting','test_email_input_placeholder','Nhập email mà bạn muốn gửi email thử nghiệm.','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1548,1,'vi','core/setting/setting','test_email_modal_title','Gửi một email thử nghiệm','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1549,1,'vi','core/setting/setting','test_email_send_success','Gửi email thành công!','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1550,1,'vi','core/setting/setting','send','Gửi','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1551,1,'vi','core/setting/setting','license.buyer','Tên đăng nhập','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1552,1,'vi','core/setting/setting','license.purchase_code','Purchase code','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1553,1,'vi','core/setting/setting','locale_direction_ltr','Trái sang phải','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1554,1,'vi','core/setting/setting','locale_direction_rtl','Phải sang trái','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1555,1,'vi','core/setting/setting','media.aws_access_key_id','AWS Access Key ID','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1556,1,'vi','core/setting/setting','media.aws_bucket','AWS Bucket','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1557,1,'vi','core/setting/setting','media.aws_default_region','AWS Default Region','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1558,1,'vi','core/setting/setting','media.aws_url','AWS URL','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1559,1,'vi','core/setting/setting','media.aws_secret_key','AWS Secret Key','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1560,1,'vi','core/setting/setting','media.chunk_size','Chunk size (Bytes)','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1561,1,'vi','core/setting/setting','media.chunk_size_placeholder','Mặc định: 1048576 ~ 1MB','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1562,1,'vi','core/setting/setting','media.do_spaces_access_key_id','DO Spaces Access Key ID','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1563,1,'vi','core/setting/setting','media.description','Cài đặt cho media','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1564,1,'vi','core/setting/setting','media.do_spaces_bucket','DO Spaces Bucket','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1565,1,'vi','core/setting/setting','media.do_spaces_cdn_enabled','Bật DO Spaces CDN?','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1566,1,'vi','core/setting/setting','media.do_spaces_default_region','DO Spaces Default Region','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1567,1,'vi','core/setting/setting','media.do_spaces_endpoint','DO Spaces Endpoint','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1568,1,'vi','core/setting/setting','media.do_spaces_secret_key','DO Spaces Secret Key','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1569,1,'vi','core/setting/setting','media.driver','Driver','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1570,1,'vi','core/setting/setting','media.enable_chunk','Bật chunk size upload?','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1571,1,'vi','core/setting/setting','media.enable_watermark','Bật watermark?','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1572,1,'vi','core/setting/setting','media.max_file_size','Chunk max file size (MB)','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1573,1,'vi','core/setting/setting','media.max_file_size_placeholder','Mặc định: 1048576 ~ 1GB','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1574,1,'vi','core/setting/setting','media.media_do_spaces_cdn_custom_domain','Do Spaces CDN custom domain','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1575,1,'vi','core/setting/setting','media.media_do_spaces_cdn_custom_domain_placeholder','https://ten-mien-cua-ban.com','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1576,1,'vi','core/setting/setting','media.title','Media','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1577,1,'vi','core/setting/setting','media.watermark_opacity','Watermark Opacity (%)','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1578,1,'vi','core/setting/setting','media.watermark_opacity_placeholder','Mặc định: 70 (%)','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1579,1,'vi','core/setting/setting','media.watermark_position','Vị trí watermark','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1580,1,'vi','core/setting/setting','media.watermark_position_bottom_left','Bên trái dưới cùng','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1581,1,'vi','core/setting/setting','media.watermark_position_bottom_right','Bên phải dưới cùng','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1582,1,'vi','core/setting/setting','media.watermark_position_center','Chính giữa','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1583,1,'vi','core/setting/setting','media.watermark_position_top_left','Bên trái trên cùng','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1584,1,'vi','core/setting/setting','media.watermark_position_top_right','Bên phải trên cùng','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1585,1,'vi','core/setting/setting','media.watermark_position_x','Watermark position X','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1586,1,'vi','core/setting/setting','media.watermark_position_y','Watermark position Y','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1587,1,'vi','core/setting/setting','media.watermark_size','Kích thước của watermark (%)','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1588,1,'vi','core/setting/setting','media.watermark_size_placeholder','Mặc định: 10 (%)','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1589,1,'vi','core/setting/setting','media.watermark_source','Hình ảnh watermark','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1590,1,'en','core/table/general','operations','Operations','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1591,1,'en','core/table/general','loading_data','Loading data from server','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1592,1,'en','core/table/general','display','Display','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1593,1,'en','core/table/general','all','All','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1594,1,'en','core/table/general','edit_entry','Edit','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1595,1,'en','core/table/general','delete_entry','Delete','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1596,1,'en','core/table/general','show_from','Showing from','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1597,1,'en','core/table/general','to','to','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1598,1,'en','core/table/general','in','in','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1599,1,'en','core/table/general','records','records','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1600,1,'en','core/table/general','no_data','No data to display','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1601,1,'en','core/table/general','no_record','No record','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1602,1,'en','core/table/general','loading','Loading data from server','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1603,1,'en','core/table/general','confirm_delete','Confirm delete','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1604,1,'en','core/table/general','confirm_delete_msg','Do you really want to delete this record?','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1605,1,'en','core/table/general','cancel','Cancel','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1606,1,'en','core/table/general','delete','Delete','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1607,1,'en','core/table/general','close','Close','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1608,1,'en','core/table/general','contains','Contains','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1609,1,'en','core/table/general','is_equal_to','Is equal to','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1610,1,'en','core/table/general','greater_than','Greater than','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1611,1,'en','core/table/general','less_than','Less than','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1612,1,'en','core/table/general','value','Value','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1613,1,'en','core/table/general','select_field','Select field','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1614,1,'en','core/table/general','reset','Reset','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1615,1,'en','core/table/general','add_additional_filter','Add additional filter','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1616,1,'en','core/table/general','apply','Apply','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1617,1,'en','core/table/general','filters','Filters','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1618,1,'en','core/table/general','bulk_change','Bulk changes','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1619,1,'en','core/table/general','select_option','Select option','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1620,1,'en','core/table/general','bulk_actions','Bulk Actions','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1621,1,'en','core/table/general','save_bulk_change_success','Update data for selected record(s) successfully!','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1622,1,'en','core/table/general','please_select_record','Please select at least one record to perform this action!','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1623,1,'en','core/table/general','filtered','(filtered from _MAX_ total records)','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1624,1,'en','core/table/general','search','Search...','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1625,1,'en','core/table/table','operations','Operations','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1626,1,'en','core/table/table','loading_data','Loading data from server','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1627,1,'en','core/table/table','display','Display','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1628,1,'en','core/table/table','all','All','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1629,1,'en','core/table/table','edit_entry','Edit','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1630,1,'en','core/table/table','delete_entry','Delete','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1631,1,'en','core/table/table','show_from','Showing from','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1632,1,'en','core/table/table','to','to','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1633,1,'en','core/table/table','in','in','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1634,1,'en','core/table/table','records','records','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1635,1,'en','core/table/table','no_data','No data to display','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1636,1,'en','core/table/table','no_record','No record','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1637,1,'en','core/table/table','loading','Loading data from server','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1638,1,'en','core/table/table','confirm_delete','Confirm delete','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1639,1,'en','core/table/table','confirm_delete_msg','Do you really want to delete this record?','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1640,1,'en','core/table/table','cancel','Cancel','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1641,1,'en','core/table/table','delete','Delete','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1642,1,'en','core/table/table','close','Close','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1643,1,'en','core/table/table','contains','Contains','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1644,1,'en','core/table/table','is_equal_to','Is equal to','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1645,1,'en','core/table/table','greater_than','Greater than','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1646,1,'en','core/table/table','less_than','Less than','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1647,1,'en','core/table/table','value','Value','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1648,1,'en','core/table/table','select_field','Select field','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1649,1,'en','core/table/table','reset','Reset','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1650,1,'en','core/table/table','add_additional_filter','Add additional filter','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1651,1,'en','core/table/table','apply','Apply','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1652,1,'en','core/table/table','filters','Filters','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1653,1,'en','core/table/table','bulk_change','Bulk changes','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1654,1,'en','core/table/table','select_option','Select option','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1655,1,'en','core/table/table','bulk_actions','Bulk Actions','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1656,1,'en','core/table/table','save_bulk_change_success','Update data for selected record(s) successfully!','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1657,1,'en','core/table/table','please_select_record','Please select at least one record to perform this action!','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1658,1,'en','core/table/table','filtered','(filtered from _MAX_ total records)','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1659,1,'en','core/table/table','search','Search...','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1660,1,'vi','core/table/general','operations','Hành động','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1661,1,'vi','core/table/general','loading_data','Đang tải dữ liệu từ hệ thống','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1662,1,'vi','core/table/general','display','Hiển thị','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1663,1,'vi','core/table/general','all','Tất cả','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1664,1,'vi','core/table/general','edit_entry','Sửa','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1665,1,'vi','core/table/general','delete_entry','Xoá','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1666,1,'vi','core/table/general','show_from','Hiển thị từ','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1667,1,'vi','core/table/general','to','đến','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1668,1,'vi','core/table/general','in','trong tổng số','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1669,1,'vi','core/table/general','records','bản ghi','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1670,1,'vi','core/table/general','no_data','Không có dữ liệu để hiển thị','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1671,1,'vi','core/table/general','no_record','không có bản ghi nào','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1672,1,'vi','core/table/general','loading','Đang tải dữ liệu từ hệ thống','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1673,1,'vi','core/table/general','confirm_delete','Xác nhận xoá','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1674,1,'vi','core/table/general','confirm_delete_msg','Bạn có chắc chắn muốn xoá bản ghi này?','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1675,1,'vi','core/table/general','cancel','Huỷ bỏ','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1676,1,'vi','core/table/general','delete','Xoá','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1677,1,'vi','core/table/general','close','Đóng','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1678,1,'vi','core/table/general','is_equal_to','Bằng với','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1679,1,'vi','core/table/general','greater_than','Lớn hơn','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1680,1,'vi','core/table/general','less_than','Nhỏ hơn','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1681,1,'vi','core/table/general','value','Giá trị','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1682,1,'vi','core/table/general','select_field','Chọn trường','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1683,1,'vi','core/table/general','reset','Làm mới','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1684,1,'vi','core/table/general','add_additional_filter','Thêm bộ lọc','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1685,1,'vi','core/table/general','apply','Áp dụng','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1686,1,'vi','core/table/general','select_option','Lựa chọn','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1687,1,'vi','core/table/general','filters','Lọc dữ liệu','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1688,1,'vi','core/table/general','bulk_change','Thay đổi hàng loạt','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1689,1,'vi','core/table/general','bulk_actions','Hành động','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1690,1,'vi','core/table/general','contains','Bao gồm','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1691,1,'vi','core/table/general','filtered','(đã được lọc từ _MAX_ bản ghi)','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1692,1,'vi','core/table/table','operations','Hành động','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1693,1,'vi','core/table/table','loading_data','Đang tải dữ liệu từ hệ thống','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1694,1,'vi','core/table/table','display','Hiển thị','2023-05-02 21:00:50','2023-05-02 21:00:50'),(1695,1,'vi','core/table/table','all','Tất cả','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1696,1,'vi','core/table/table','edit_entry','Sửa','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1697,1,'vi','core/table/table','delete_entry','Xoá','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1698,1,'vi','core/table/table','show_from','Hiển thị từ','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1699,1,'vi','core/table/table','to','đến','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1700,1,'vi','core/table/table','in','trong tổng số','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1701,1,'vi','core/table/table','records','bản ghi','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1702,1,'vi','core/table/table','no_data','Không có dữ liệu để hiển thị','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1703,1,'vi','core/table/table','no_record','không có bản ghi nào','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1704,1,'vi','core/table/table','loading','Đang tải dữ liệu từ hệ thống','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1705,1,'vi','core/table/table','confirm_delete','Xác nhận xoá','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1706,1,'vi','core/table/table','confirm_delete_msg','Bạn có chắc chắn muốn xoá bản ghi này?','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1707,1,'vi','core/table/table','cancel','Huỷ bỏ','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1708,1,'vi','core/table/table','delete','Xoá','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1709,1,'vi','core/table/table','close','Đóng','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1710,1,'vi','core/table/table','is_equal_to','Bằng với','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1711,1,'vi','core/table/table','greater_than','Lớn hơn','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1712,1,'vi','core/table/table','less_than','Nhỏ hơn','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1713,1,'vi','core/table/table','value','Giá trị','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1714,1,'vi','core/table/table','select_field','Chọn trường','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1715,1,'vi','core/table/table','reset','Làm mới','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1716,1,'vi','core/table/table','add_additional_filter','Thêm bộ lọc','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1717,1,'vi','core/table/table','apply','Áp dụng','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1718,1,'vi','core/table/table','select_option','Lựa chọn','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1719,1,'vi','core/table/table','filters','Lọc dữ liệu','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1720,1,'vi','core/table/table','bulk_change','Thay đổi hàng loạt','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1721,1,'vi','core/table/table','bulk_actions','Hành động','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1722,1,'vi','core/table/table','contains','Bao gồm','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1723,1,'vi','core/table/table','filtered','(đã được lọc từ _MAX_ bản ghi)','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1724,1,'vi','core/table/table','please_select_record','Vui lòng chọn ít nhất 1 bản ghi để thực hiện hành động này!','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1725,1,'vi','core/table/table','save_bulk_change_success','Cập nhật dữ liệu cho các bản ghi thành công!','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1726,1,'vi','core/table/table','search','Tìm kiếm...','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1727,1,'en','packages/api/api','settings','API Settings','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1728,1,'en','packages/api/api','save_settings','Save settings','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1729,1,'en','packages/api/api','setting_title','API settings','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1730,1,'en','packages/api/api','setting_description','Settings for API','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1731,1,'en','packages/api/api','api_enabled','API enabled?','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1732,1,'en','packages/get-started/get-started','welcome_title','Welcome to your admin dashboard!','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1733,1,'en','packages/get-started/get-started','welcome_description','In a few short steps, you can have your new dashboard up and running!','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1734,1,'en','packages/get-started/get-started','get_started','Get Started!','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1735,1,'en','packages/get-started/get-started','customize_branding_title','Customize branding','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1736,1,'en','packages/get-started/get-started','customize_branding_description','Customize your site with colors, logo and subdomain to match your business unique branding and identity.','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1737,1,'en','packages/get-started/get-started','colors','Colors','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1738,1,'en','packages/get-started/get-started','fonts','Fonts','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1739,1,'en','packages/get-started/get-started','primary_color','Primary color','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1740,1,'en','packages/get-started/get-started','primary_font','Primary font','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1741,1,'en','packages/get-started/get-started','setup_wizard_button',':link to finish Quick setup Wizard!','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1742,1,'en','packages/get-started/get-started','click_here','Click here','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1743,1,'en','packages/get-started/get-started','site_title','Site title','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1744,1,'en','packages/get-started/get-started','identify','Identify','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1745,1,'en','packages/get-started/get-started','logo','Logo','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1746,1,'en','packages/get-started/get-started','admin_logo','Admin logo','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1747,1,'en','packages/get-started/get-started','favicon','Favicon','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1748,1,'en','packages/get-started/get-started','admin_favicon','Admin favicon','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1749,1,'en','packages/get-started/get-started','next_step','Next step','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1750,1,'en','packages/get-started/get-started','site_ready_title','Your site is ready!','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1751,1,'en','packages/get-started/get-started','site_ready_description','Welcome to your new site! Your website has been created and populated with sample data. You are in the admin area of your site where you can set up everything else needed to complete your site.','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1752,1,'en','packages/get-started/get-started','finish','Finish','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1753,1,'en','packages/get-started/get-started','exit_wizard_title','Are you sure you want to exit the Quick Setup Wizard?','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1754,1,'en','packages/get-started/get-started','exit_wizard_confirm','Yes, I\'ll finish it later','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1755,1,'en','packages/get-started/get-started','exit_wizard_cancel','No, take me back to the wizard','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1756,1,'en','packages/get-started/get-started','change_default_account_info_title','Change default account info','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1757,1,'en','packages/get-started/get-started','change_default_account_info_description','The default account is using a weak password. You need to change it to a complex password for better security.','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1758,1,'en','packages/get-started/get-started','username','Username','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1759,1,'en','packages/get-started/get-started','email','Email','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1760,1,'en','packages/get-started/get-started','password','Password','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1761,1,'en','packages/get-started/get-started','password_confirmation','Password confirmation','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1762,1,'en','packages/installer/installer','title','Installer','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1763,1,'en','packages/installer/installer','next','Next Step','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1764,1,'en','packages/installer/installer','back','Previous','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1765,1,'en','packages/installer/installer','finish','Install','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1766,1,'en','packages/installer/installer','installation','Installation','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1767,1,'en','packages/installer/installer','forms.errorTitle','The following errors occurred:','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1768,1,'en','packages/installer/installer','welcome.templateTitle','Welcome','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1769,1,'en','packages/installer/installer','welcome.title','Welcome','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1770,1,'en','packages/installer/installer','welcome.message','Before getting started, we need some information on the database. You will need to know the following items before proceeding.','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1771,1,'en','packages/installer/installer','welcome.next','Let\'s go','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1772,1,'en','packages/installer/installer','requirements.templateTitle','Step 1 | Server Requirements','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1773,1,'en','packages/installer/installer','requirements.title','Server Requirements','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1774,1,'en','packages/installer/installer','requirements.next','Check Permissions','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1775,1,'en','packages/installer/installer','permissions.templateTitle','Step 2 | Permissions','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1776,1,'en','packages/installer/installer','permissions.title','Permissions','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1777,1,'en','packages/installer/installer','permissions.next','Configure Environment','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1778,1,'en','packages/installer/installer','environment.wizard.templateTitle','Environment Settings','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1779,1,'en','packages/installer/installer','environment.wizard.title','Environment Settings','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1780,1,'en','packages/installer/installer','environment.wizard.form.name_required','An environment name is required.','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1781,1,'en','packages/installer/installer','environment.wizard.form.app_name_label','Site title','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1782,1,'en','packages/installer/installer','environment.wizard.form.app_name_placeholder','Site title','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1783,1,'en','packages/installer/installer','environment.wizard.form.app_url_label','URL','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1784,1,'en','packages/installer/installer','environment.wizard.form.app_url_placeholder','URL','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1785,1,'en','packages/installer/installer','environment.wizard.form.db_connection_label','Database Connection','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1786,1,'en','packages/installer/installer','environment.wizard.form.db_connection_label_mysql','MySQL','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1787,1,'en','packages/installer/installer','environment.wizard.form.db_connection_label_sqlite','SQLite','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1788,1,'en','packages/installer/installer','environment.wizard.form.db_connection_label_pgsql','PostgreSQL','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1789,1,'en','packages/installer/installer','environment.wizard.form.db_host_label','Database host','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1790,1,'en','packages/installer/installer','environment.wizard.form.db_host_placeholder','Database host','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1791,1,'en','packages/installer/installer','environment.wizard.form.db_port_label','Database port','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1792,1,'en','packages/installer/installer','environment.wizard.form.db_port_placeholder','Database port','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1793,1,'en','packages/installer/installer','environment.wizard.form.db_name_label','Database name','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1794,1,'en','packages/installer/installer','environment.wizard.form.db_name_placeholder','Database name','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1795,1,'en','packages/installer/installer','environment.wizard.form.db_username_label','Database username','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1796,1,'en','packages/installer/installer','environment.wizard.form.db_username_placeholder','Database username','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1797,1,'en','packages/installer/installer','environment.wizard.form.db_password_label','Database password','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1798,1,'en','packages/installer/installer','environment.wizard.form.db_password_placeholder','Database password','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1799,1,'en','packages/installer/installer','environment.wizard.form.buttons.install','Install','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1800,1,'en','packages/installer/installer','environment.wizard.form.db_host_helper','If you use Laravel Sail, just change DB_HOST to DB_HOST=mysql. On some hosting DB_HOST can be localhost instead of 127.0.0.1','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1801,1,'en','packages/installer/installer','environment.wizard.form.db_connections.mysql','MySQL','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1802,1,'en','packages/installer/installer','environment.wizard.form.db_connections.sqlite','SQLite','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1803,1,'en','packages/installer/installer','environment.wizard.form.db_connections.pgsql','PostgreSQL','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1804,1,'en','packages/installer/installer','environment.success','Your .env file settings have been saved.','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1805,1,'en','packages/installer/installer','environment.errors','Unable to save the .env file, Please create it manually.','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1806,1,'en','packages/installer/installer','install','Install','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1807,1,'en','packages/installer/installer','final.title','Installation Finished','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1808,1,'en','packages/installer/installer','final.templateTitle','Installation Finished','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1809,1,'en','packages/installer/installer','final.finished','Application has been successfully installed.','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1810,1,'en','packages/installer/installer','final.exit','Click here to exit','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1811,1,'en','packages/installer/installer','create_account','Create account','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1812,1,'en','packages/installer/installer','first_name','First name','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1813,1,'en','packages/installer/installer','last_name','Last name','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1814,1,'en','packages/installer/installer','username','Username','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1815,1,'en','packages/installer/installer','email','Email','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1816,1,'en','packages/installer/installer','password','Password','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1817,1,'en','packages/installer/installer','password_confirmation','Password confirmation','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1818,1,'en','packages/installer/installer','create','Create','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1819,1,'en','packages/installer/installer','install_success','Installed successfully!','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1820,1,'en','packages/menu/menu','name','Menus','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1821,1,'en','packages/menu/menu','key_name','Menu name (key: :key)','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1822,1,'en','packages/menu/menu','basic_info','Basic information','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1823,1,'en','packages/menu/menu','add_to_menu','Add to menu','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1824,1,'en','packages/menu/menu','custom_link','Custom link','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1825,1,'en','packages/menu/menu','add_link','Add link','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1826,1,'en','packages/menu/menu','structure','Menu structure','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1827,1,'en','packages/menu/menu','remove','Remove','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1828,1,'en','packages/menu/menu','cancel','Cancel','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1829,1,'en','packages/menu/menu','title','Title','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1830,1,'en','packages/menu/menu','icon','Icon','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1831,1,'en','packages/menu/menu','url','URL','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1832,1,'en','packages/menu/menu','target','Target','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1833,1,'en','packages/menu/menu','css_class','CSS class','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1834,1,'en','packages/menu/menu','self_open_link','Open link directly','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1835,1,'en','packages/menu/menu','blank_open_link','Open link in new tab','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1836,1,'en','packages/menu/menu','create','Create menu','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1837,1,'en','packages/menu/menu','menu_settings','Menu settings','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1838,1,'en','packages/menu/menu','display_location','Display location','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1839,1,'en','packages/menu/menu','title_placeholder','Title','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1840,1,'en','packages/menu/menu','icon_placeholder','Icon','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1841,1,'en','packages/menu/menu','url_placeholder','URL','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1842,1,'en','packages/menu/menu','css_class_placeholder','CSS class','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1843,1,'en','packages/menu/menu','menu_id','Menu ID','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1844,1,'vi','packages/menu/menu','name','Trình đơn','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1845,1,'vi','packages/menu/menu','cancel','Hủy bỏ','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1846,1,'vi','packages/menu/menu','add_link','Thêm liên kết','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1847,1,'vi','packages/menu/menu','add_to_menu','Thêm vào trình đơn','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1848,1,'vi','packages/menu/menu','basic_info','Thông tin cơ bản','2023-05-02 21:00:51','2023-05-02 21:00:51'),(1849,1,'vi','packages/menu/menu','blank_open_link','Mở liên kết trong tab mới','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1850,1,'vi','packages/menu/menu','css_class','CSS class','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1851,1,'vi','packages/menu/menu','custom_link','Liên kết tùy chọn','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1852,1,'vi','packages/menu/menu','icon','Biểu tượng','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1853,1,'vi','packages/menu/menu','key_name','Tên menu (key::key)','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1854,1,'vi','packages/menu/menu','remove','Xóa','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1855,1,'vi','packages/menu/menu','self_open_link','Mở liên kết trong tab hiện tại','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1856,1,'vi','packages/menu/menu','structure','Cấu trúc trình đơn','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1857,1,'vi','packages/menu/menu','target','Target','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1858,1,'vi','packages/menu/menu','title','Tiêu đề','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1859,1,'vi','packages/menu/menu','url','URL','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1860,1,'vi','packages/menu/menu','create','Tạo trình đơn','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1861,1,'vi','packages/menu/menu','edit','Sửa trình đơn','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1862,1,'vi','packages/menu/menu','display_location','Vị trí hiển thị','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1863,1,'vi','packages/menu/menu','menu_settings','Cấu hình menu','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1864,1,'en','packages/optimize/optimize','settings.title','Optimize page speed','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1865,1,'en','packages/optimize/optimize','settings.description','Minify HTML output, inline CSS, remove comments...','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1866,1,'en','packages/optimize/optimize','settings.enable','Enable optimize page speed?','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1867,1,'en','packages/optimize/optimize','collapse_white_space','Collapse white space','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1868,1,'en','packages/optimize/optimize','collapse_white_space_description','This filter reduces bytes transmitted in an HTML file by removing unnecessary whitespace.','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1869,1,'en','packages/optimize/optimize','elide_attributes','Elide attributes','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1870,1,'en','packages/optimize/optimize','elide_attributes_description','This filter reduces the transfer size of HTML files by removing attributes from tags when the specified value is equal to the default value for that attribute. This can save a modest number of bytes, and may make the document more compressible by canonicalizing the affected tags.','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1871,1,'en','packages/optimize/optimize','inline_css','Inline CSS','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1872,1,'en','packages/optimize/optimize','inline_css_description','This filter transforms the inline \"style\" attribute of tags into classes by moving the CSS to the header.','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1873,1,'en','packages/optimize/optimize','insert_dns_prefetch','Insert DNS prefetch','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1874,1,'en','packages/optimize/optimize','insert_dns_prefetch_description','This filter injects tags in the HEAD to enable the browser to do DNS prefetching.','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1875,1,'en','packages/optimize/optimize','remove_comments','Remove comments','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1876,1,'en','packages/optimize/optimize','remove_comments_description','This filter eliminates HTML, JS and CSS comments. The filter reduces the transfer size of HTML files by removing the comments. Depending on the HTML file, this filter can significantly reduce the number of bytes transmitted on the network.','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1877,1,'en','packages/optimize/optimize','remove_quotes','Remove quotes','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1878,1,'en','packages/optimize/optimize','remove_quotes_description','This filter eliminates unnecessary quotation marks from HTML attributes. While required by the various HTML specifications, browsers permit their omission when the value of an attribute is composed of a certain subset of characters (alphanumerics and some punctuation characters).','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1879,1,'en','packages/optimize/optimize','defer_javascript','Defer javascript','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1880,1,'en','packages/optimize/optimize','defer_javascript_description','Defers the execution of javascript in the HTML. If necessary cancel deferring in some script, use data-pagespeed-no-defer as script attribute to cancel deferring.','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1881,1,'en','packages/page/pages','create','Create new page','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1882,1,'en','packages/page/pages','form.name','Name','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1883,1,'en','packages/page/pages','form.name_placeholder','Page\'s name (Maximum 120 characters)','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1884,1,'en','packages/page/pages','form.content','Content','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1885,1,'en','packages/page/pages','form.note','Note content','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1886,1,'en','packages/page/pages','notices.no_select','Please select at least one record to take this action!','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1887,1,'en','packages/page/pages','notices.update_success_message','Update successfully','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1888,1,'en','packages/page/pages','cannot_delete','Page could not be deleted','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1889,1,'en','packages/page/pages','deleted','Page deleted','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1890,1,'en','packages/page/pages','pages','Pages','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1891,1,'en','packages/page/pages','menu','Pages','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1892,1,'en','packages/page/pages','menu_name','Pages','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1893,1,'en','packages/page/pages','edit_this_page','Edit this page','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1894,1,'en','packages/page/pages','total_pages','Total pages','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1895,1,'en','packages/page/pages','settings.show_on_front','Your homepage displays','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1896,1,'en','packages/page/pages','settings.select','— Select —','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1897,1,'en','packages/page/pages','front_page','Front Page','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1898,1,'vi','packages/page/pages','create','Thêm trang','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1899,1,'vi','packages/page/pages','edit','Sửa trang','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1900,1,'vi','packages/page/pages','form.name','Tiêu đề trang','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1901,1,'vi','packages/page/pages','form.note','Nội dung ghi chú','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1902,1,'vi','packages/page/pages','form.name_placeholder','Tên trang (tối đa 120 kí tự)','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1903,1,'vi','packages/page/pages','form.content','Nội dung','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1904,1,'vi','packages/page/pages','notices.no_select','Chọn ít nhất 1 trang để thực hiện hành động này!','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1905,1,'vi','packages/page/pages','notices.update_success_message','Cập nhật thành công','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1906,1,'vi','packages/page/pages','deleted','Xóa trang thành công','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1907,1,'vi','packages/page/pages','cannot_delete','Không thể xóa trang','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1908,1,'vi','packages/page/pages','menu','Trang','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1909,1,'vi','packages/page/pages','menu_name','Trang','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1910,1,'vi','packages/page/pages','edit_this_page','Sửa trang này','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1911,1,'vi','packages/page/pages','pages','Trang','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1912,1,'vi','packages/page/pages','front_page','Trang chủ','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1913,1,'vi','packages/page/pages','settings.select','-- Lựa chọn --','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1914,1,'vi','packages/page/pages','settings.show_on_front','Lựa chọn trang chủ','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1915,1,'vi','packages/page/pages','total_pages','Tổng số trang','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1916,1,'en','packages/plugin-management/marketplace','previous','« Previous','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1917,1,'en','packages/plugin-management/marketplace','next','Next »','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1918,1,'en','packages/plugin-management/marketplace','showing','Showing','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1919,1,'en','packages/plugin-management/marketplace','to','to','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1920,1,'en','packages/plugin-management/marketplace','of','of','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1921,1,'en','packages/plugin-management/marketplace','results','results','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1922,1,'en','packages/plugin-management/marketplace','add_new','Add new','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1923,1,'en','packages/plugin-management/marketplace','installed','Installed','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1924,1,'en','packages/plugin-management/marketplace','install_now','Install now','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1925,1,'en','packages/plugin-management/marketplace','installing','Installing...','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1926,1,'en','packages/plugin-management/marketplace','detail','Details','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1927,1,'en','packages/plugin-management/marketplace','version','Version','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1928,1,'en','packages/plugin-management/marketplace','minimum_core_version','Minimum core version','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1929,1,'en','packages/plugin-management/marketplace','last_update','Last update','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1930,1,'en','packages/plugin-management/marketplace','compatible_version','Compatible with your version','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1931,1,'en','packages/plugin-management/marketplace','incompatible_version','Incompatible with your version','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1932,1,'en','packages/plugin-management/marketplace','deactivate','Deactivate','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1933,1,'en','packages/plugin-management/marketplace','activate','Activate','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1934,1,'en','packages/plugin-management/marketplace','activating','Activating...','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1935,1,'en','packages/plugin-management/marketplace','activated','Activated','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1936,1,'en','packages/plugin-management/marketplace','connection_aborted','Connection Aborted','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1937,1,'en','packages/plugin-management/marketplace','connection_aborted_description','Connection Aborted Description','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1938,1,'en','packages/plugin-management/marketplace','api_connect_error','Connect to Marketplace API Error, please contact support','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1939,1,'en','packages/plugin-management/marketplace','keyword','Keyword','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1940,1,'en','packages/plugin-management/marketplace','search','Search','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1941,1,'en','packages/plugin-management/marketplace','all','All','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1942,1,'en','packages/plugin-management/marketplace','featured','Featured','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1943,1,'en','packages/plugin-management/marketplace','popular','Popular','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1944,1,'en','packages/plugin-management/marketplace','top_rated','Top Rated','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1945,1,'en','packages/plugin-management/marketplace','install_plugin','Install plugin','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1946,1,'en','packages/plugin-management/marketplace','cancel','Cancel','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1947,1,'en','packages/plugin-management/marketplace','yes_install',' Yes! Install','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1948,1,'en','packages/plugin-management/marketplace','message_alert','Are you sure you want to install this plugin?','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1949,1,'en','packages/plugin-management/marketplace','folder_permissions','Folder does not have permission to write file or the update file path could not be resolved, please contact support','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1950,1,'en','packages/plugin-management/marketplace','unzip_failed','Unzip extraction failed','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1951,1,'en','packages/plugin-management/marketplace','unzip_success','Download file extracted','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1952,1,'en','packages/plugin-management/marketplace','install_success','Installed plugin successfully!','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1953,1,'en','packages/plugin-management/marketplace','update_success','Updated plugin successfully!','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1954,1,'en','packages/plugin-management/marketplace','minimum_core_version_error','Cannot install this plugin. Minimum core version is :version.','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1955,1,'en','packages/plugin-management/plugin','enabled','Enabled','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1956,1,'en','packages/plugin-management/plugin','deactivated','Deactivated','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1957,1,'en','packages/plugin-management/plugin','activated','Activated','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1958,1,'en','packages/plugin-management/plugin','activate','Activate','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1959,1,'en','packages/plugin-management/plugin','deactivate','Deactivate','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1960,1,'en','packages/plugin-management/plugin','author','By','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1961,1,'en','packages/plugin-management/plugin','update_plugin_status_success','Update plugin successfully','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1962,1,'en','packages/plugin-management/plugin','plugins','Plugins','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1963,1,'en','packages/plugin-management/plugin','missing_required_plugins','Please activate plugin(s): :plugins before activate this plugin!','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1964,1,'en','packages/plugin-management/plugin','remove','Remove','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1965,1,'en','packages/plugin-management/plugin','remove_plugin_success','Remove plugin successfully!','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1966,1,'en','packages/plugin-management/plugin','remove_plugin','Remove plugin','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1967,1,'en','packages/plugin-management/plugin','remove_plugin_confirm_message','Do you really want to remove this plugin?','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1968,1,'en','packages/plugin-management/plugin','remove_plugin_confirm_yes','Yes, remove it!','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1969,1,'en','packages/plugin-management/plugin','total_plugins','Total plugins','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1970,1,'en','packages/plugin-management/plugin','invalid_plugin','This plugin is not a valid plugin, please check it again!','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1971,1,'en','packages/plugin-management/plugin','version','Version','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1972,1,'en','packages/plugin-management/plugin','invalid_json','Invalid plugin.json!','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1973,1,'en','packages/plugin-management/plugin','activate_success','Activate plugin successfully!','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1974,1,'en','packages/plugin-management/plugin','activated_already','This plugin is activated already!','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1975,1,'en','packages/plugin-management/plugin','plugin_not_exist','This plugin is not exists.','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1976,1,'en','packages/plugin-management/plugin','missing_json_file','Missing file plugin.json!','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1977,1,'en','packages/plugin-management/plugin','plugin_invalid','Plugin is valid!','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1978,1,'en','packages/plugin-management/plugin','published_assets_success','Publish assets for plugin :name successfully!','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1979,1,'en','packages/plugin-management/plugin','plugin_removed','Plugin has been removed!','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1980,1,'en','packages/plugin-management/plugin','deactivated_success','Deactivate plugin successfully!','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1981,1,'en','packages/plugin-management/plugin','deactivated_already','This plugin is deactivated already!','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1982,1,'en','packages/plugin-management/plugin','folder_is_not_writeable','Cannot write files! Folder :name is not writable. Please chmod to make it writable!','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1983,1,'en','packages/plugin-management/plugin','plugin_is_not_ready','Plugin :name is not ready to use','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1984,1,'en','packages/plugin-management/plugin','plugins_installed','Installed Plugins','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1985,1,'en','packages/plugin-management/plugin','plugins_add_new','Add new','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1986,1,'en','packages/plugin-management/plugin','update','Update','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1987,1,'en','packages/plugin-management/plugin','requirement_not_met','Plugin :plugin requires plugin(s): :required_plugins. Do you want to install them and activate :plugin now?','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1988,1,'en','packages/plugin-management/plugin','install','Install now','2023-05-02 21:00:52','2023-05-02 21:00:52'),(1989,1,'en','packages/plugin-management/plugin','install_plugin','Install Plugin','2023-05-02 21:00:53','2023-05-02 21:00:53'),(1990,1,'vi','packages/plugin-management/plugin','activate','Kích hoạt','2023-05-02 21:00:53','2023-05-02 21:00:53'),(1991,1,'vi','packages/plugin-management/plugin','author','Tác giả','2023-05-02 21:00:53','2023-05-02 21:00:53'),(1992,1,'vi','packages/plugin-management/plugin','version','Phiên bản','2023-05-02 21:00:53','2023-05-02 21:00:53'),(1993,1,'vi','packages/plugin-management/plugin','activated','Đã kích hoạt','2023-05-02 21:00:53','2023-05-02 21:00:53'),(1994,1,'vi','packages/plugin-management/plugin','deactivate','Hủy kích hoạt','2023-05-02 21:00:53','2023-05-02 21:00:53'),(1995,1,'vi','packages/plugin-management/plugin','deactivated','Đã vô hiệu','2023-05-02 21:00:53','2023-05-02 21:00:53'),(1996,1,'vi','packages/plugin-management/plugin','enabled','Kích hoạt','2023-05-02 21:00:53','2023-05-02 21:00:53'),(1997,1,'vi','packages/plugin-management/plugin','invalid_plugin','Gói mở rộng không hợp lệ','2023-05-02 21:00:53','2023-05-02 21:00:53'),(1998,1,'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','2023-05-02 21:00:53','2023-05-02 21:00:53'),(1999,1,'vi','packages/plugin-management/plugin','missing_required_plugins','Vui lòng kích hoạt các gói mở rộng :plugins trước khi kích hoạt gói này','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2000,1,'vi','packages/plugin-management/plugin','plugins','Gói mở rộng','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2001,1,'vi','packages/plugin-management/plugin','remove','Xoá','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2002,1,'vi','packages/plugin-management/plugin','remove_plugin_success','Xoá thành công!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2003,1,'vi','packages/plugin-management/plugin','remove_plugin','Xoá gói mở rộng','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2004,1,'vi','packages/plugin-management/plugin','remove_plugin_confirm_message','Bạn có chắc chắn muốn xoá plugin này?','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2005,1,'vi','packages/plugin-management/plugin','remove_plugin_confirm_yes','Có, xoá!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2006,1,'vi','packages/plugin-management/plugin','total_plugins','Tất cả plugins','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2007,1,'vi','packages/plugin-management/plugin','activate_success','Kích hoạt thành công!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2008,1,'vi','packages/plugin-management/plugin','activated_already','Gói mở rộng này đã được kích hoạt rồi!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2009,1,'vi','packages/plugin-management/plugin','deactivated_already','Gói mở rộng này đã được hủy kích hoạt rồi!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2010,1,'vi','packages/plugin-management/plugin','deactivated_success','Hủy kích hoạt thành công!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2011,1,'vi','packages/plugin-management/plugin','invalid_json','Sai cấu hình plugin.json!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2012,1,'vi','packages/plugin-management/plugin','missing_json_file','Thiếu tập tin cấu hình plugin.json!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2013,1,'vi','packages/plugin-management/plugin','plugin_invalid','Gói mở rộng không hợp lệ!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2014,1,'vi','packages/plugin-management/plugin','plugin_not_exist','Gói mở rộng không tồn tại','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2015,1,'vi','packages/plugin-management/plugin','plugin_removed','Gói mở rộng đã bị xóa!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2016,1,'vi','packages/plugin-management/plugin','published_assets_success','Xuất bản assets cho gói mở rộng thành công!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2017,1,'en','packages/seo-helper/seo-helper','meta_box_header','Search Engine Optimize','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2018,1,'en','packages/seo-helper/seo-helper','edit_seo_meta','Edit SEO meta','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2019,1,'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','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2020,1,'en','packages/seo-helper/seo-helper','seo_title','SEO Title','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2021,1,'en','packages/seo-helper/seo-helper','seo_description','SEO description','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2022,1,'vi','packages/seo-helper/seo-helper','meta_box_header','Tối ưu hoá bộ máy tìm kiếm (SEO)','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2023,1,'vi','packages/seo-helper/seo-helper','edit_seo_meta','Chỉnh sửa SEO','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2024,1,'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.','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2025,1,'vi','packages/seo-helper/seo-helper','seo_title','Tiêu đề trang','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2026,1,'vi','packages/seo-helper/seo-helper','seo_description','Mô tả trang','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2027,1,'en','packages/shortcode/shortcode','settings.title','Shortcode','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2028,1,'en','packages/shortcode/shortcode','settings.description','Settings for Shortcode','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2029,1,'en','packages/shortcode/shortcode','settings.show_shortcode_edit_link','Show edit link?','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2030,1,'en','packages/slug/slug','permalink_settings','Permalink','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2031,1,'en','packages/slug/slug','settings.title','Permalink settings','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2032,1,'en','packages/slug/slug','settings.description','Manage permalink for all modules.','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2033,1,'en','packages/slug/slug','settings.preview','Preview','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2034,1,'en','packages/slug/slug','settings.turn_off_automatic_url_translation_into_latin','Turn off automatic URL translation into Latin?','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2035,1,'en','packages/slug/slug','settings.available_variables','Available variables','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2036,1,'en','packages/slug/slug','preview','Preview','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2037,1,'en','packages/slug/slug','prefix_for','Prefix for :name','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2038,1,'vi','packages/slug/slug','permalink_settings','Liên kết cố định','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2039,1,'vi','packages/slug/slug','preview','Xem trước','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2040,1,'vi','packages/slug/slug','settings.description','Quản lý liên kết cố định cho các module.','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2041,1,'vi','packages/slug/slug','settings.preview','Xem trước','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2042,1,'vi','packages/slug/slug','settings.title','Cài đặt liên kết cố định','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2043,1,'en','packages/theme/theme','name','Themes','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2044,1,'en','packages/theme/theme','theme','Theme','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2045,1,'en','packages/theme/theme','author','Author','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2046,1,'en','packages/theme/theme','version','Version','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2047,1,'en','packages/theme/theme','description','Description','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2048,1,'en','packages/theme/theme','active_success','Activate theme :name successfully!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2049,1,'en','packages/theme/theme','active','Active','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2050,1,'en','packages/theme/theme','activated','Activated','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2051,1,'en','packages/theme/theme','appearance','Appearance','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2052,1,'en','packages/theme/theme','theme_options','Theme options','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2053,1,'en','packages/theme/theme','save_changes','Save Changes','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2054,1,'en','packages/theme/theme','developer_mode','Developer Mode Enabled','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2055,1,'en','packages/theme/theme','custom_css','Custom CSS','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2056,1,'en','packages/theme/theme','custom_js','Custom JS','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2057,1,'en','packages/theme/theme','custom_header_js','Header JS','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2058,1,'en','packages/theme/theme','custom_header_js_placeholder','JS in header of page, wrap it inside <script></script>','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2059,1,'en','packages/theme/theme','custom_body_js','Body JS','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2060,1,'en','packages/theme/theme','custom_body_js_placeholder','JS in body of page, wrap it inside <script></script>','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2061,1,'en','packages/theme/theme','custom_footer_js','Footer JS','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2062,1,'en','packages/theme/theme','custom_footer_js_placeholder','JS in footer of page, wrap it inside <script></script>','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2063,1,'en','packages/theme/theme','custom_html','Custom HTML','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2064,1,'en','packages/theme/theme','custom_header_html','Header HTML','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2065,1,'en','packages/theme/theme','custom_header_html_placeholder','HTML in header of page, no special tags: script, style, iframe...','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2066,1,'en','packages/theme/theme','custom_body_html','Body HTML','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2067,1,'en','packages/theme/theme','custom_body_html_placeholder','HTML in body of page, no special tags: script, style, iframe...','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2068,1,'en','packages/theme/theme','custom_footer_html','Footer HTML','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2069,1,'en','packages/theme/theme','custom_footer_html_placeholder','HTML in footer of page, no special tags: script, style, iframe...','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2070,1,'en','packages/theme/theme','remove_theme_success','Remove theme successfully!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2071,1,'en','packages/theme/theme','theme_is_not_existed','This theme is not existed!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2072,1,'en','packages/theme/theme','remove','Remove','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2073,1,'en','packages/theme/theme','remove_theme','Remove theme','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2074,1,'en','packages/theme/theme','remove_theme_confirm_message','Do you really want to remove this theme?','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2075,1,'en','packages/theme/theme','remove_theme_confirm_yes','Yes, remove it!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2076,1,'en','packages/theme/theme','total_themes','Total themes','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2077,1,'en','packages/theme/theme','show_admin_bar','Show admin bar (When admin logged in, still show admin bar in website)?','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2078,1,'en','packages/theme/theme','settings.title','Theme','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2079,1,'en','packages/theme/theme','settings.description','Setting for theme','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2080,1,'en','packages/theme/theme','settings.redirect_404_to_homepage','Redirect all not found requests to homepage?','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2081,1,'en','packages/theme/theme','settings.show_guidelines','Show guidelines?','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2082,1,'en','packages/theme/theme','add_new','Add new','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2083,1,'en','packages/theme/theme','theme_activated_already','Theme \":name\" is activated already!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2084,1,'en','packages/theme/theme','missing_json_file','Missing file theme.json!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2085,1,'en','packages/theme/theme','theme_invalid','Theme is valid!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2086,1,'en','packages/theme/theme','published_assets_success','Publish assets for :themes successfully!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2087,1,'en','packages/theme/theme','cannot_remove_theme','Cannot remove activated theme, please activate another theme before removing \":name\"!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2088,1,'en','packages/theme/theme','theme_deleted','Theme \":name\" has been destroyed.','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2089,1,'en','packages/theme/theme','removed_assets','Remove assets of a theme :name successfully!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2090,1,'en','packages/theme/theme','update_custom_css_success','Update custom CSS successfully!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2091,1,'en','packages/theme/theme','update_custom_js_success','Update custom JS successfully!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2092,1,'en','packages/theme/theme','update_custom_html_success','Update custom HTML successfully!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2093,1,'en','packages/theme/theme','go_to_dashboard','Go to dashboard','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2094,1,'en','packages/theme/theme','custom_css_placeholder','Using Ctrl + Space to autocomplete.','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2095,1,'en','packages/theme/theme','theme_option_general','General','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2096,1,'en','packages/theme/theme','theme_option_general_description','General settings','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2097,1,'en','packages/theme/theme','theme_option_seo_open_graph_image','SEO default Open Graph image','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2098,1,'en','packages/theme/theme','theme_option_logo','Logo','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2099,1,'en','packages/theme/theme','theme_option_favicon','Favicon','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2100,1,'en','packages/theme/theme','folder_is_not_writeable','Cannot write files! Folder :name is not writable. Please chmod to make it writable!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2101,1,'vi','packages/theme/theme','name','Giao diện','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2102,1,'vi','packages/theme/theme','activated','Đã kích hoạt','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2103,1,'vi','packages/theme/theme','active','Kích hoạt','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2104,1,'vi','packages/theme/theme','active_success','Kích hoạt giao diện thành công!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2105,1,'vi','packages/theme/theme','author','Tác giả','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2106,1,'vi','packages/theme/theme','description','Mô tả','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2107,1,'vi','packages/theme/theme','appearance','Hiển thị','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2108,1,'vi','packages/theme/theme','theme','Giao diện','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2109,1,'vi','packages/theme/theme','theme_options','Tuỳ chọn giao diện','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2110,1,'vi','packages/theme/theme','version','Phiên bản','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2111,1,'vi','packages/theme/theme','save_changes','Lưu thay đổi','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2112,1,'vi','packages/theme/theme','developer_mode','Đang kích hoạt chế độ thử nghiệm','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2113,1,'vi','packages/theme/theme','custom_css','Tuỳ chỉnh CSS','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2114,1,'vi','packages/theme/theme','remove','Xóa','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2115,1,'vi','packages/theme/theme','remove_theme','Xóa giao diện','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2116,1,'vi','packages/theme/theme','remove_theme_confirm_message','Bạn có chắc chắn muốn xóa giao diện này?','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2117,1,'vi','packages/theme/theme','remove_theme_confirm_yes','Vâng, xác nhận xóa!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2118,1,'vi','packages/theme/theme','remove_theme_success','Xóa giao diện thành công!','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2119,1,'vi','packages/theme/theme','settings.description','Cài đặt giao diện','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2120,1,'vi','packages/theme/theme','settings.title','Giao diện','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2121,1,'vi','packages/theme/theme','show_admin_bar','Hiển thị admin bar (khi admin đã đăng nhập, vẫn hiển thị admin bar trên website)?','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2122,1,'vi','packages/theme/theme','total_themes','Tổng số giao diện','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2123,1,'vi','packages/theme/theme','add_new','Thêm mới','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2124,1,'en','packages/widget/global','name','Widgets','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2125,1,'en','packages/widget/global','create','New widget','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2126,1,'en','packages/widget/global','edit','Edit widget','2023-05-02 21:00:53','2023-05-02 21:00:53'),(2127,1,'en','packages/widget/global','delete','Delete','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2128,1,'en','packages/widget/global','available','Available Widgets','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2129,1,'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.','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2130,1,'en','packages/widget/global','number_tag_display','Number tags will be display','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2131,1,'en','packages/widget/global','number_post_display','Number posts will be display','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2132,1,'en','packages/widget/global','select_menu','Select Menu','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2133,1,'en','packages/widget/global','widget_text','Text','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2134,1,'en','packages/widget/global','widget_text_description','Arbitrary text or HTML.','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2135,1,'en','packages/widget/global','widget_recent_post','Recent Posts','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2136,1,'en','packages/widget/global','widget_recent_post_description','Recent posts widget.','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2137,1,'en','packages/widget/global','widget_custom_menu','Custom Menu','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2138,1,'en','packages/widget/global','widget_custom_menu_description','Add a custom menu to your widget area.','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2139,1,'en','packages/widget/global','widget_tag','Tags','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2140,1,'en','packages/widget/global','widget_tag_description','Popular tags','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2141,1,'en','packages/widget/global','save_success','Save widget successfully!','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2142,1,'en','packages/widget/global','delete_success','Delete widget successfully!','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2143,1,'en','packages/widget/widget','name','Widgets','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2144,1,'en','packages/widget/widget','create','New widget','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2145,1,'en','packages/widget/widget','edit','Edit widget','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2146,1,'en','packages/widget/widget','delete','Delete','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2147,1,'en','packages/widget/widget','available','Available Widgets','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2148,1,'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.','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2149,1,'en','packages/widget/widget','number_tag_display','Number tags will be display','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2150,1,'en','packages/widget/widget','number_post_display','Number posts will be display','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2151,1,'en','packages/widget/widget','select_menu','Select Menu','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2152,1,'en','packages/widget/widget','widget_text','Text','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2153,1,'en','packages/widget/widget','widget_text_description','Arbitrary text or HTML.','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2154,1,'en','packages/widget/widget','widget_recent_post','Recent Posts','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2155,1,'en','packages/widget/widget','widget_recent_post_description','Recent posts widget.','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2156,1,'en','packages/widget/widget','widget_custom_menu','Custom Menu','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2157,1,'en','packages/widget/widget','widget_custom_menu_description','Add a custom menu to your widget area.','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2158,1,'en','packages/widget/widget','widget_tag','Tags','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2159,1,'en','packages/widget/widget','widget_tag_description','Popular tags','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2160,1,'en','packages/widget/widget','save_success','Save widget successfully!','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2161,1,'en','packages/widget/widget','delete_success','Delete widget successfully!','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2162,1,'en','packages/widget/widget','primary_sidebar_name','Primary sidebar','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2163,1,'en','packages/widget/widget','primary_sidebar_description','Primary sidebar section','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2164,1,'vi','packages/widget/global','name','Widgets','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2165,1,'vi','packages/widget/global','create','New widget','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2166,1,'vi','packages/widget/global','edit','Edit widget','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2167,1,'vi','packages/widget/global','available','Tiện ích có sẵn','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2168,1,'vi','packages/widget/global','delete','Xóa','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2169,1,'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.','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2170,1,'vi','packages/widget/global','number_post_display','Số bài viết sẽ hiển thị','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2171,1,'vi','packages/widget/global','number_tag_display','Số thẻ sẽ hiển thị','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2172,1,'vi','packages/widget/global','select_menu','Lựa chọn trình đơn','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2173,1,'vi','packages/widget/global','widget_custom_menu','Menu tùy chỉnh','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2174,1,'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','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2175,1,'vi','packages/widget/global','widget_recent_post','Bài viết gần đây','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2176,1,'vi','packages/widget/global','widget_recent_post_description','Tiện ích bài viết gần đây','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2177,1,'vi','packages/widget/global','widget_tag','Thẻ','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2178,1,'vi','packages/widget/global','widget_tag_description','Thẻ phổ biến, sử dụng nhiều','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2179,1,'vi','packages/widget/global','widget_text','Văn bản','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2180,1,'vi','packages/widget/global','widget_text_description','Văn bản tùy ý hoặc HTML.','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2181,1,'vi','packages/widget/global','delete_success','Xoá tiện ích thành công','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2182,1,'vi','packages/widget/global','save_success','Lưu tiện ích thành công!','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2183,1,'vi','packages/widget/widget','name','Widgets','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2184,1,'vi','packages/widget/widget','create','New widget','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2185,1,'vi','packages/widget/widget','edit','Edit widget','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2186,1,'vi','packages/widget/widget','available','Tiện ích có sẵn','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2187,1,'vi','packages/widget/widget','delete','Xóa','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2188,1,'vi','packages/widget/widget','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.','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2189,1,'vi','packages/widget/widget','number_post_display','Số bài viết sẽ hiển thị','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2190,1,'vi','packages/widget/widget','number_tag_display','Số thẻ sẽ hiển thị','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2191,1,'vi','packages/widget/widget','select_menu','Lựa chọn trình đơn','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2192,1,'vi','packages/widget/widget','widget_custom_menu','Menu tùy chỉnh','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2193,1,'vi','packages/widget/widget','widget_custom_menu_description','Thêm menu tùy chỉnh vào khu vực tiện ích của bạn','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2194,1,'vi','packages/widget/widget','widget_recent_post','Bài viết gần đây','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2195,1,'vi','packages/widget/widget','widget_recent_post_description','Tiện ích bài viết gần đây','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2196,1,'vi','packages/widget/widget','widget_tag','Thẻ','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2197,1,'vi','packages/widget/widget','widget_tag_description','Thẻ phổ biến, sử dụng nhiều','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2198,1,'vi','packages/widget/widget','widget_text','Văn bản','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2199,1,'vi','packages/widget/widget','widget_text_description','Văn bản tùy ý hoặc HTML.','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2200,1,'vi','packages/widget/widget','delete_success','Xoá tiện ích thành công','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2201,1,'vi','packages/widget/widget','save_success','Lưu tiện ích thành công!','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2202,1,'en','plugins/ads/ads','name','Ads','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2203,1,'en','plugins/ads/ads','create','New ads','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2204,1,'en','plugins/ads/ads','edit','Edit ads','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2205,1,'en','plugins/ads/ads','location','Location','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2206,1,'en','plugins/ads/ads','url','URL','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2207,1,'en','plugins/ads/ads','expired_at','Expired at','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2208,1,'en','plugins/ads/ads','key','Key','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2209,1,'en','plugins/ads/ads','shortcode','Shortcode','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2210,1,'en','plugins/ads/ads','clicked','Clicked','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2211,1,'en','plugins/ads/ads','not_set','Not set','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2212,1,'en','plugins/ads/ads','adblock_warning','If you are using Adblock browser extension, you need to disable this extension on your site first. It may block your ads if it is enabled on your site! <br /> Tips: Image name SHOULD NOT contain some ads keywords (ad, promotion...)','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2213,1,'en','plugins/ads/ads','select_ad','Select Ad','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2214,1,'en','plugins/ads/ads','open_in_new_tab','Open in new tab?','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2215,1,'en','plugins/analytics/analytics','sessions','Sessions','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2216,1,'en','plugins/analytics/analytics','visitors','Visitors','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2217,1,'en','plugins/analytics/analytics','pageviews','Pageviews','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2218,1,'en','plugins/analytics/analytics','bounce_rate','Bounce Rate','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2219,1,'en','plugins/analytics/analytics','page_session','Pages/Session','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2220,1,'en','plugins/analytics/analytics','avg_duration','Avg. Duration','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2221,1,'en','plugins/analytics/analytics','percent_new_session','Percent new session','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2222,1,'en','plugins/analytics/analytics','new_users','New visitors','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2223,1,'en','plugins/analytics/analytics','visits','visits','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2224,1,'en','plugins/analytics/analytics','views','views','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2225,1,'en','plugins/analytics/analytics','property_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>','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2226,1,'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>','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2227,1,'en','plugins/analytics/analytics','start_date_can_not_before_end_date','Start date :start_date cannot be after end date :end_date','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2228,1,'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>','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2229,1,'en','plugins/analytics/analytics','property_id_is_invalid','Property ID is invalid. Check this: https://developers.google.com/analytics/devguides/reporting/data/v1/property-id','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2230,1,'en','plugins/analytics/analytics','settings.title','Google Analytics','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2231,1,'en','plugins/analytics/analytics','settings.description','Config Credentials for Google Analytics','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2232,1,'en','plugins/analytics/analytics','settings.tracking_code','Measurement ID / Tracking ID','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2233,1,'en','plugins/analytics/analytics','settings.tracking_code_placeholder','Example: G-76NX8HY29D','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2234,1,'en','plugins/analytics/analytics','settings.view_id','View ID for UA','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2235,1,'en','plugins/analytics/analytics','settings.view_id_description','Google Analytics View ID (UA)','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2236,1,'en','plugins/analytics/analytics','settings.analytics_property_id','Property ID for GA4','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2237,1,'en','plugins/analytics/analytics','settings.analytics_property_id_description','Google Analytics Property ID (GA4)','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2238,1,'en','plugins/analytics/analytics','settings.json_credential','Service Account Credentials','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2239,1,'en','plugins/analytics/analytics','settings.json_credential_description','Service Account Credentials','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2240,1,'en','plugins/analytics/analytics','settings.type','Type','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2241,1,'en','plugins/analytics/analytics','settings.ua_description','Universal Analytics','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2242,1,'en','plugins/analytics/analytics','settings.ga4_description','Google Analytics 4 (GA4)','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2243,1,'en','plugins/analytics/analytics','widget_analytics_page','Top Most Visit Pages','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2244,1,'en','plugins/analytics/analytics','widget_analytics_browser','Top Browsers','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2245,1,'en','plugins/analytics/analytics','widget_analytics_referrer','Top Referrers','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2246,1,'en','plugins/analytics/analytics','widget_analytics_general','Site Analytics','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2247,1,'vi','plugins/analytics/analytics','avg_duration','Trung bình','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2248,1,'vi','plugins/analytics/analytics','bounce_rate','Tỉ lệ thoát','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2249,1,'vi','plugins/analytics/analytics','page_session','Trang/Phiên','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2250,1,'vi','plugins/analytics/analytics','pageviews','Lượt xem','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2251,1,'vi','plugins/analytics/analytics','sessions','Phiên','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2252,1,'vi','plugins/analytics/analytics','views','lượt xem','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2253,1,'vi','plugins/analytics/analytics','visitors','Người truy cập','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2254,1,'vi','plugins/analytics/analytics','visits','lượt ghé thăm','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2255,1,'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=\"https://docs.botble.com/cms/master/plugin-analytics\" target=\"_blank\">https://docs.botble.com/cms/master/plugin-analytics</a>','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2256,1,'vi','plugins/analytics/analytics','new_users','Lượt khách mới','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2257,1,'vi','plugins/analytics/analytics','percent_new_session','Tỉ lệ khách mới','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2258,1,'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','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2259,1,'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=\"https://docs.botble.com/cms/master/plugin-analytics\" target=\"_blank\">https://docs.botble.com/cms/master/plugin-analytics</a>','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2260,1,'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=\"https://docs.botble.com/cms/master/plugin-analytics\" target=\"_blank\">https://docs.botble.com/cms/master/plugin-analytics</a>','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2261,1,'vi','plugins/analytics/analytics','settings.title','Google Analytics','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2262,1,'vi','plugins/analytics/analytics','settings.description','Config Credentials for Google Analytics','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2263,1,'vi','plugins/analytics/analytics','settings.tracking_code','Measurement ID / Tracking ID','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2264,1,'vi','plugins/analytics/analytics','settings.tracking_code_placeholder','Example: G-76NX8HY29D','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2265,1,'vi','plugins/analytics/analytics','settings.view_id','View ID','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2266,1,'vi','plugins/analytics/analytics','settings.view_id_description','Google Analytics View ID','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2267,1,'vi','plugins/analytics/analytics','settings.json_credential','Service Account Credentials','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2268,1,'vi','plugins/analytics/analytics','settings.json_credential_description','Service Account Credentials','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2269,1,'vi','plugins/analytics/analytics','widget_analytics_browser','Trình duyệt truy cập nhiều','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2270,1,'vi','plugins/analytics/analytics','widget_analytics_general','Thống kê truy cập','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2271,1,'vi','plugins/analytics/analytics','widget_analytics_page','Trang được xem nhiều nhất','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2272,1,'vi','plugins/analytics/analytics','widget_analytics_referrer','Trang giới thiệu nhiều','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2273,1,'en','plugins/audit-log/history','name','Activities Logs','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2274,1,'en','plugins/audit-log/history','created','created','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2275,1,'en','plugins/audit-log/history','updated','updated','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2276,1,'en','plugins/audit-log/history','deleted','deleted','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2277,1,'en','plugins/audit-log/history','logged in','logged in','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2278,1,'en','plugins/audit-log/history','logged out','logged out','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2279,1,'en','plugins/audit-log/history','changed password','changed password','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2280,1,'en','plugins/audit-log/history','updated profile','updated profile','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2281,1,'en','plugins/audit-log/history','attached','attached','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2282,1,'en','plugins/audit-log/history','shared','shared','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2283,1,'en','plugins/audit-log/history','to the system','to the system','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2284,1,'en','plugins/audit-log/history','of the system','of the system','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2285,1,'en','plugins/audit-log/history','menu','menu','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2286,1,'en','plugins/audit-log/history','post','post','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2287,1,'en','plugins/audit-log/history','page','page','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2288,1,'en','plugins/audit-log/history','category','category','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2289,1,'en','plugins/audit-log/history','tag','tag','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2290,1,'en','plugins/audit-log/history','user','user','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2291,1,'en','plugins/audit-log/history','contact','contact','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2292,1,'en','plugins/audit-log/history','backup','backup','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2293,1,'en','plugins/audit-log/history','custom-field','custom field','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2294,1,'en','plugins/audit-log/history','widget_audit_logs','Activities Logs','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2295,1,'en','plugins/audit-log/history','action','Action','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2296,1,'en','plugins/audit-log/history','user_agent','User Agent','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2297,1,'en','plugins/audit-log/history','system','System','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2298,1,'en','plugins/audit-log/history','delete_all','Delete all records','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2299,1,'vi','plugins/audit-log/history','name','Lịch sử hoạt động','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2300,1,'vi','plugins/audit-log/history','created',' đã tạo','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2301,1,'vi','plugins/audit-log/history','updated',' đã cập nhật','2023-05-02 21:00:54','2023-05-02 21:00:54'),(2302,1,'vi','plugins/audit-log/history','deleted',' đã xóa','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2303,1,'vi','plugins/audit-log/history','attached','đính kèm','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2304,1,'vi','plugins/audit-log/history','backup','sao lưu','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2305,1,'vi','plugins/audit-log/history','category','danh mục','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2306,1,'vi','plugins/audit-log/history','changed password','thay đổi mật khẩu','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2307,1,'vi','plugins/audit-log/history','contact','liên hệ','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2308,1,'vi','plugins/audit-log/history','custom-field','khung mở rộng','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2309,1,'vi','plugins/audit-log/history','logged in','đăng nhập','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2310,1,'vi','plugins/audit-log/history','logged out','đăng xuất','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2311,1,'vi','plugins/audit-log/history','menu','trình đơn','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2312,1,'vi','plugins/audit-log/history','of the system','khỏi hệ thống','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2313,1,'vi','plugins/audit-log/history','page','trang','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2314,1,'vi','plugins/audit-log/history','post','bài viết','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2315,1,'vi','plugins/audit-log/history','shared','đã chia sẻ','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2316,1,'vi','plugins/audit-log/history','tag','thẻ','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2317,1,'vi','plugins/audit-log/history','to the system','vào hệ thống','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2318,1,'vi','plugins/audit-log/history','updated profile','cập nhật tài khoản','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2319,1,'vi','plugins/audit-log/history','user','thành viên','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2320,1,'vi','plugins/audit-log/history','widget_audit_logs','Lịch sử hoạt động','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2321,1,'vi','plugins/audit-log/history','system','Hệ thống','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2322,1,'vi','plugins/audit-log/history','action','Hành động','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2323,1,'vi','plugins/audit-log/history','delete_all','Xóa tất cả bản ghi','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2324,1,'vi','plugins/audit-log/history','user_agent','User Agent','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2325,1,'en','plugins/backup/backup','name','Backup','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2326,1,'en','plugins/backup/backup','backup_description','Backup database and uploads folder.','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2327,1,'en','plugins/backup/backup','create_backup_success','Created backup successfully!','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2328,1,'en','plugins/backup/backup','delete_backup_success','Delete backup successfully!','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2329,1,'en','plugins/backup/backup','restore_backup_success','Restore backup successfully!','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2330,1,'en','plugins/backup/backup','generate_btn','Generate backup','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2331,1,'en','plugins/backup/backup','create','Create a backup','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2332,1,'en','plugins/backup/backup','restore','Restore a backup','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2333,1,'en','plugins/backup/backup','create_btn','Create','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2334,1,'en','plugins/backup/backup','restore_btn','Restore','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2335,1,'en','plugins/backup/backup','restore_confirm_msg','Do you really want to restore this revision?','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2336,1,'en','plugins/backup/backup','download_uploads_folder','Download backup of uploads folder','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2337,1,'en','plugins/backup/backup','download_database','Download backup of database','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2338,1,'en','plugins/backup/backup','restore_tooltip','Restore this backup','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2339,1,'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!','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2340,1,'en','plugins/backup/backup','menu_name','Backups','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2341,1,'en','plugins/backup/backup','size','Size','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2342,1,'en','plugins/backup/backup','no_backups','There is no backup now!','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2343,1,'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.','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2344,1,'en','plugins/backup/backup','database_backup_not_existed','Backup database is not existed!','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2345,1,'en','plugins/backup/backup','uploads_folder_backup_not_existed','Backup uploads folder is not existed!','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2346,1,'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.','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2347,1,'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.','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2348,1,'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.','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2349,1,'en','plugins/backup/backup','important_message4','It is not a full backup, it is just back up uploaded files and your database.','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2350,1,'en','plugins/backup/backup','cannot_restore_database','Cannot restore database. The database backup is missing!','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2351,1,'vi','plugins/backup/backup','backup_description','Sao lưu cơ sở dữ liệu và thư mục /uploads','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2352,1,'vi','plugins/backup/backup','create','Tạo bản sao lưu','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2353,1,'vi','plugins/backup/backup','create_backup_success','Tạo bản sao lưu thành công!','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2354,1,'vi','plugins/backup/backup','create_btn','Tạo','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2355,1,'vi','plugins/backup/backup','delete_backup_success','Xóa bản sao lưu thành công!','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2356,1,'vi','plugins/backup/backup','generate_btn','Tạo sao lưu','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2357,1,'vi','plugins/backup/backup','name','Sao lưu','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2358,1,'vi','plugins/backup/backup','restore','Khôi phục bản sao lưu','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2359,1,'vi','plugins/backup/backup','restore_backup_success','Khôi phục bản sao lưu thành công','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2360,1,'vi','plugins/backup/backup','restore_btn','Khôi phục','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2361,1,'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?','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2362,1,'vi','plugins/backup/backup','restore_tooltip','Khôi phục bản sao lưu này','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2363,1,'vi','plugins/backup/backup','download_database','Tải về bản sao lưu CSDL','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2364,1,'vi','plugins/backup/backup','download_uploads_folder','Tải về bản sao lưu thư mục uploads','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2365,1,'vi','plugins/backup/backup','menu_name','Sao lưu','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2366,1,'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!','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2367,1,'en','plugins/blog/base','menu_name','Blog','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2368,1,'en','plugins/blog/base','blog_page','Blog Page','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2369,1,'en','plugins/blog/base','select','-- Select --','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2370,1,'en','plugins/blog/base','blog_page_id','Blog page','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2371,1,'en','plugins/blog/base','number_posts_per_page','Number posts per page','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2372,1,'en','plugins/blog/base','write_some_tags','Write some tags','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2373,1,'en','plugins/blog/base','short_code_name','Blog posts','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2374,1,'en','plugins/blog/base','short_code_description','Add blog posts','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2375,1,'en','plugins/blog/base','number_posts_per_page_in_category','Number of posts per page in a category','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2376,1,'en','plugins/blog/base','number_posts_per_page_in_tag','Number of posts per page in a tag','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2377,1,'en','plugins/blog/base','settings.title','Blog','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2378,1,'en','plugins/blog/base','settings.description','Settings for Blog','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2379,1,'en','plugins/blog/base','settings.enable_blog_post_schema','Enable Blog Post Schema?','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2380,1,'en','plugins/blog/base','settings.enable_blog_post_schema_description','Learn more: https://schema.org/Article','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2381,1,'en','plugins/blog/base','settings.schema_type','Schema type','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2382,1,'en','plugins/blog/categories','create','Create new category','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2383,1,'en','plugins/blog/categories','menu','Categories','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2384,1,'en','plugins/blog/categories','edit_this_category','Edit this category','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2385,1,'en','plugins/blog/categories','menu_name','Categories','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2386,1,'en','plugins/blog/categories','none','None','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2387,1,'en','plugins/blog/categories','total_posts','Total posts: :total','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2388,1,'en','plugins/blog/member','dob','Born :date','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2389,1,'en','plugins/blog/member','draft_posts','Draft Posts','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2390,1,'en','plugins/blog/member','pending_posts','Pending Posts','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2391,1,'en','plugins/blog/member','published_posts','Published Posts','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2392,1,'en','plugins/blog/member','posts','Posts','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2393,1,'en','plugins/blog/member','write_post','Write a post','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2394,1,'en','plugins/blog/posts','create','Create new post','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2395,1,'en','plugins/blog/posts','form.name','Name','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2396,1,'en','plugins/blog/posts','form.name_placeholder','Post\'s name (Maximum :c characters)','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2397,1,'en','plugins/blog/posts','form.description','Description','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2398,1,'en','plugins/blog/posts','form.description_placeholder','Short description for post (Maximum :c characters)','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2399,1,'en','plugins/blog/posts','form.categories','Categories','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2400,1,'en','plugins/blog/posts','form.tags','Tags','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2401,1,'en','plugins/blog/posts','form.tags_placeholder','Tags','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2402,1,'en','plugins/blog/posts','form.content','Content','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2403,1,'en','plugins/blog/posts','form.is_featured','Is featured?','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2404,1,'en','plugins/blog/posts','form.note','Note content','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2405,1,'en','plugins/blog/posts','form.format_type','Format','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2406,1,'en','plugins/blog/posts','cannot_delete','Post could not be deleted','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2407,1,'en','plugins/blog/posts','post_deleted','Post deleted','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2408,1,'en','plugins/blog/posts','posts','Posts','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2409,1,'en','plugins/blog/posts','post','Post','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2410,1,'en','plugins/blog/posts','edit_this_post','Edit this post','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2411,1,'en','plugins/blog/posts','no_new_post_now','There is no new post now!','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2412,1,'en','plugins/blog/posts','menu_name','Posts','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2413,1,'en','plugins/blog/posts','widget_posts_recent','Recent Posts','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2414,1,'en','plugins/blog/posts','categories','Categories','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2415,1,'en','plugins/blog/posts','category','Category','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2416,1,'en','plugins/blog/posts','author','Author','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2417,1,'en','plugins/blog/tags','form.name','Name','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2418,1,'en','plugins/blog/tags','form.name_placeholder','Tag\'s name (Maximum 120 characters)','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2419,1,'en','plugins/blog/tags','form.description','Description','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2420,1,'en','plugins/blog/tags','form.description_placeholder','Short description for tag (Maximum 400 characters)','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2421,1,'en','plugins/blog/tags','form.categories','Categories','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2422,1,'en','plugins/blog/tags','notices.no_select','Please select at least one tag to take this action!','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2423,1,'en','plugins/blog/tags','create','Create new tag','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2424,1,'en','plugins/blog/tags','cannot_delete','Tag could not be deleted','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2425,1,'en','plugins/blog/tags','deleted','Tag deleted','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2426,1,'en','plugins/blog/tags','menu','Tags','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2427,1,'en','plugins/blog/tags','edit_this_tag','Edit this tag','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2428,1,'en','plugins/blog/tags','menu_name','Tags','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2429,1,'vi','plugins/blog/base','menu_name','Blog','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2430,1,'vi','plugins/blog/base','blog_page','Trang Blog','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2431,1,'vi','plugins/blog/base','select','-- Lựa chọn --','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2432,1,'vi','plugins/blog/base','blog_page_id','Trang Blog','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2433,1,'vi','plugins/blog/categories','create','Thêm danh mục mới','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2434,1,'vi','plugins/blog/categories','edit','Sửa danh mục','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2435,1,'vi','plugins/blog/categories','menu','Danh mục','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2436,1,'vi','plugins/blog/categories','edit_this_category','Sửa danh mục này','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2437,1,'vi','plugins/blog/categories','menu_name','Danh mục','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2438,1,'vi','plugins/blog/categories','none','Không','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2439,1,'vi','plugins/blog/member','dob','Born :date','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2440,1,'vi','plugins/blog/member','draft_posts','Draft Posts','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2441,1,'vi','plugins/blog/member','pending_posts','Pending Posts','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2442,1,'vi','plugins/blog/member','published_posts','Published Posts','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2443,1,'vi','plugins/blog/member','posts','Posts','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2444,1,'vi','plugins/blog/member','write_post','Write a post','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2445,1,'vi','plugins/blog/posts','create','Thêm bài viết','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2446,1,'vi','plugins/blog/posts','edit','Sửa bài viết','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2447,1,'vi','plugins/blog/posts','form.name','Tên','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2448,1,'vi','plugins/blog/posts','form.name_placeholder','Tên bài viết (Tối đa 120 kí tự)','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2449,1,'vi','plugins/blog/posts','form.description','Mô tả','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2450,1,'vi','plugins/blog/posts','form.description_placeholder','Mô tả ngắn cho bài viết (Tối đa 400 kí tự)','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2451,1,'vi','plugins/blog/posts','form.categories','Chuyên mục','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2452,1,'vi','plugins/blog/posts','form.tags','Từ khóa','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2453,1,'vi','plugins/blog/posts','form.tags_placeholder','Thêm từ khóa','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2454,1,'vi','plugins/blog/posts','form.content','Nội dung','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2455,1,'vi','plugins/blog/posts','form.is_featured','Bài viết nổi bật?','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2456,1,'vi','plugins/blog/posts','form.note','Nội dung ghi chú','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2457,1,'vi','plugins/blog/posts','form.format_type','Định dạng','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2458,1,'vi','plugins/blog/posts','post_deleted','Xóa bài viết thành công','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2459,1,'vi','plugins/blog/posts','cannot_delete','Không thể xóa bài viết','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2460,1,'vi','plugins/blog/posts','menu_name','Bài viết','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2461,1,'vi','plugins/blog/posts','edit_this_post','Sửa bài viết này','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2462,1,'vi','plugins/blog/posts','no_new_post_now','Hiện tại không có bài viết mới!','2023-05-02 21:00:55','2023-05-02 21:00:55'),(2463,1,'vi','plugins/blog/posts','posts','Bài viết','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2464,1,'vi','plugins/blog/posts','post','Bài viết','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2465,1,'vi','plugins/blog/posts','widget_posts_recent','Bài viết gần đây','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2466,1,'vi','plugins/blog/posts','author','Tác giả','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2467,1,'vi','plugins/blog/posts','categories','Danh mục','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2468,1,'vi','plugins/blog/posts','category','Danh mục','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2469,1,'vi','plugins/blog/tags','create','Thêm thẻ mới','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2470,1,'vi','plugins/blog/tags','edit','Sửa thẻ','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2471,1,'vi','plugins/blog/tags','form.name','Tên','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2472,1,'vi','plugins/blog/tags','form.name_placeholder','Tên thẻ (Tối đa 120 kí tự)','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2473,1,'vi','plugins/blog/tags','form.description','Mô tả','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2474,1,'vi','plugins/blog/tags','form.description_placeholder','Mô tả ngắn cho tag (Tối đa 400 kí tự)','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2475,1,'vi','plugins/blog/tags','form.categories','Chuyên mục','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2476,1,'vi','plugins/blog/tags','notices.no_select','Chọn ít nhất 1 bài viết để thực hiện hành động này!','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2477,1,'vi','plugins/blog/tags','cannot_delete','Không thể xóa thẻ','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2478,1,'vi','plugins/blog/tags','deleted','Xóa thẻ thành công','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2479,1,'vi','plugins/blog/tags','menu_name','Thẻ','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2480,1,'vi','plugins/blog/tags','edit_this_tag','Sửa thẻ này','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2481,1,'vi','plugins/blog/tags','menu','Thẻ','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2482,1,'en','plugins/captcha/captcha','settings.title','Captcha','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2483,1,'en','plugins/captcha/captcha','settings.description','Settings for Google Captcha','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2484,1,'en','plugins/captcha/captcha','settings.captcha_site_key','Captcha Site Key','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2485,1,'en','plugins/captcha/captcha','settings.captcha_secret','Captcha Secret','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2486,1,'en','plugins/captcha/captcha','settings.enable_captcha','Enable Captcha?','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2487,1,'en','plugins/captcha/captcha','settings.helper','Go here to get credentials https://www.google.com/recaptcha/admin#list.','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2488,1,'en','plugins/captcha/captcha','settings.hide_badge','Hide recaptcha badge (for v3)','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2489,1,'en','plugins/captcha/captcha','settings.type','Type','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2490,1,'en','plugins/captcha/captcha','settings.v2_description','V2 (Verify requests with a challenge)','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2491,1,'en','plugins/captcha/captcha','settings.v3_description','V3 (Verify requests with a score)','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2492,1,'en','plugins/captcha/captcha','numbers.0','Zero','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2493,1,'en','plugins/captcha/captcha','numbers.1','One','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2494,1,'en','plugins/captcha/captcha','numbers.2','Two','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2495,1,'en','plugins/captcha/captcha','numbers.3','Three','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2496,1,'en','plugins/captcha/captcha','numbers.4','Four','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2497,1,'en','plugins/captcha/captcha','numbers.5','Five','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2498,1,'en','plugins/captcha/captcha','numbers.6','Six','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2499,1,'en','plugins/captcha/captcha','numbers.7','Seven','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2500,1,'en','plugins/captcha/captcha','numbers.8','Eight','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2501,1,'en','plugins/captcha/captcha','numbers.9','Nine','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2502,1,'en','plugins/captcha/captcha','numbers.10','Ten','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2503,1,'en','plugins/captcha/captcha','numbers.11','Eleven','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2504,1,'en','plugins/captcha/captcha','numbers.12','Twelve','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2505,1,'en','plugins/captcha/captcha','operands.+','plus','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2506,1,'en','plugins/captcha/captcha','operands.-','minus','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2507,1,'en','plugins/captcha/captcha','operands.*','times','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2508,1,'en','plugins/captcha/captcha','operands./','divided by','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2509,1,'vi','plugins/captcha/captcha','settings.title','Captcha','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2510,1,'vi','plugins/captcha/captcha','settings.description','Cài đặt cho Google Captcha','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2511,1,'vi','plugins/captcha/captcha','settings.captcha_site_key','Captcha Site Key','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2512,1,'vi','plugins/captcha/captcha','settings.captcha_secret','Captcha Secret','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2513,1,'vi','plugins/captcha/captcha','settings.enable_captcha','Bật Captcha?','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2514,1,'vi','plugins/captcha/captcha','settings.helper','Truy cập https://www.google.com/recaptcha/admin#list để lấy thông tin về Site key và Secret.','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2515,1,'en','plugins/contact/contact','menu','Contact','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2516,1,'en','plugins/contact/contact','edit','View contact','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2517,1,'en','plugins/contact/contact','tables.phone','Phone','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2518,1,'en','plugins/contact/contact','tables.email','Email','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2519,1,'en','plugins/contact/contact','tables.full_name','Full Name','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2520,1,'en','plugins/contact/contact','tables.time','Time','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2521,1,'en','plugins/contact/contact','tables.address','Address','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2522,1,'en','plugins/contact/contact','tables.subject','Subject','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2523,1,'en','plugins/contact/contact','tables.content','Content','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2524,1,'en','plugins/contact/contact','contact_information','Contact information','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2525,1,'en','plugins/contact/contact','replies','Replies','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2526,1,'en','plugins/contact/contact','email.header','Email','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2527,1,'en','plugins/contact/contact','email.title','New contact from your site','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2528,1,'en','plugins/contact/contact','form.name.required','Name is required','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2529,1,'en','plugins/contact/contact','form.email.required','Email is required','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2530,1,'en','plugins/contact/contact','form.email.email','The email address is not valid','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2531,1,'en','plugins/contact/contact','form.content.required','Content is required','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2532,1,'en','plugins/contact/contact','contact_sent_from','This contact information sent from','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2533,1,'en','plugins/contact/contact','sender','Sender','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2534,1,'en','plugins/contact/contact','sender_email','Email','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2535,1,'en','plugins/contact/contact','sender_address','Address','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2536,1,'en','plugins/contact/contact','sender_phone','Phone','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2537,1,'en','plugins/contact/contact','message_content','Message content','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2538,1,'en','plugins/contact/contact','sent_from','Email sent from','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2539,1,'en','plugins/contact/contact','form_name','Name','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2540,1,'en','plugins/contact/contact','form_email','Email','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2541,1,'en','plugins/contact/contact','form_address','Address','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2542,1,'en','plugins/contact/contact','form_subject','Subject','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2543,1,'en','plugins/contact/contact','form_phone','Phone','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2544,1,'en','plugins/contact/contact','form_message','Message','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2545,1,'en','plugins/contact/contact','required_field','The field with (<span style=\"color: red\">*</span>) is required.','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2546,1,'en','plugins/contact/contact','send_btn','Send message','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2547,1,'en','plugins/contact/contact','new_msg_notice','You have <span class=\"bold\">:count</span> New Messages','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2548,1,'en','plugins/contact/contact','view_all','View all','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2549,1,'en','plugins/contact/contact','statuses.read','Read','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2550,1,'en','plugins/contact/contact','statuses.unread','Unread','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2551,1,'en','plugins/contact/contact','phone','Phone','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2552,1,'en','plugins/contact/contact','address','Address','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2553,1,'en','plugins/contact/contact','message','Message','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2554,1,'en','plugins/contact/contact','settings.email.title','Contact','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2555,1,'en','plugins/contact/contact','settings.email.description','Contact email configuration','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2556,1,'en','plugins/contact/contact','settings.email.templates.notice_title','Send notice to administrator','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2557,1,'en','plugins/contact/contact','settings.email.templates.notice_description','Email template to send notice to administrator when system get new contact','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2558,1,'en','plugins/contact/contact','settings.title','Contact','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2559,1,'en','plugins/contact/contact','settings.description','Settings for contact plugin','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2560,1,'en','plugins/contact/contact','settings.blacklist_keywords','Blacklist keywords','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2561,1,'en','plugins/contact/contact','settings.blacklist_keywords_placeholder','keywords...','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2562,1,'en','plugins/contact/contact','settings.blacklist_keywords_helper','Blacklist contact requests if it includes those keywords in the content field (separate by comma).','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2563,1,'en','plugins/contact/contact','settings.blacklist_email_domains','Blacklist email domains','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2564,1,'en','plugins/contact/contact','settings.blacklist_email_domains_placeholder','domain...','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2565,1,'en','plugins/contact/contact','settings.blacklist_email_domains_helper','Blacklist contact requests if the email domain is in blacklist domains (separate by comma).','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2566,1,'en','plugins/contact/contact','settings.enable_math_captcha','Enable math captcha?','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2567,1,'en','plugins/contact/contact','no_reply','No reply yet!','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2568,1,'en','plugins/contact/contact','reply','Reply','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2569,1,'en','plugins/contact/contact','send','Send','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2570,1,'en','plugins/contact/contact','shortcode_name','Contact form','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2571,1,'en','plugins/contact/contact','shortcode_description','Add a contact form','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2572,1,'en','plugins/contact/contact','shortcode_content_description','Add shortcode [contact-form][/contact-form] to editor?','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2573,1,'en','plugins/contact/contact','message_sent_success','Message sent successfully!','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2574,1,'vi','plugins/contact/contact','menu','Liên hệ','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2575,1,'vi','plugins/contact/contact','edit','Xem liên hệ','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2576,1,'vi','plugins/contact/contact','tables.phone','Điện thoại','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2577,1,'vi','plugins/contact/contact','tables.email','Email','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2578,1,'vi','plugins/contact/contact','tables.full_name','Họ tên','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2579,1,'vi','plugins/contact/contact','tables.time','Thời gian','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2580,1,'vi','plugins/contact/contact','tables.address','Địa địa chỉ','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2581,1,'vi','plugins/contact/contact','tables.subject','Tiêu đề','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2582,1,'vi','plugins/contact/contact','tables.content','Nội dung','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2583,1,'vi','plugins/contact/contact','contact_information','Thông tin liên hệ','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2584,1,'vi','plugins/contact/contact','email.title','Thông tin liên hệ mới','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2585,1,'vi','plugins/contact/contact','email.header','Email','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2586,1,'vi','plugins/contact/contact','form.name.required','Tên là bắt buộc','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2587,1,'vi','plugins/contact/contact','form.email.required','Email là bắt buộc','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2588,1,'vi','plugins/contact/contact','form.email.email','Địa chỉ email không hợp lệ','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2589,1,'vi','plugins/contact/contact','form.content.required','Nội dung là bắt buộc','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2590,1,'vi','plugins/contact/contact','contact_sent_from','Liên hệ này được gửi từ','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2591,1,'vi','plugins/contact/contact','form_address','Địa chỉ','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2592,1,'vi','plugins/contact/contact','form_email','Thư điện tử','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2593,1,'vi','plugins/contact/contact','form_message','Thông điệp','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2594,1,'vi','plugins/contact/contact','form_name','Họ tên','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2595,1,'vi','plugins/contact/contact','form_phone','Số điện thoại','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2596,1,'vi','plugins/contact/contact','message_content','Nội dung thông điệp','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2597,1,'vi','plugins/contact/contact','required_field','Những trường có dấu (<span style=\"color: red\">*</span>) là bắt buộc.','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2598,1,'vi','plugins/contact/contact','send_btn','Gửi tin nhắn','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2599,1,'vi','plugins/contact/contact','sender','Người gửi','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2600,1,'vi','plugins/contact/contact','sender_address','Địa chỉ','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2601,1,'vi','plugins/contact/contact','sender_email','Thư điện tử','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2602,1,'vi','plugins/contact/contact','sender_phone','Số điện thoại','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2603,1,'vi','plugins/contact/contact','sent_from','Thư được gửi từ','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2604,1,'vi','plugins/contact/contact','address','Địa chỉ','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2605,1,'vi','plugins/contact/contact','message','Liên hệ','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2606,1,'vi','plugins/contact/contact','new_msg_notice','Bạn có <span class=\"bold\">:count</span> tin nhắn mới','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2607,1,'vi','plugins/contact/contact','phone','Điện thoại','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2608,1,'vi','plugins/contact/contact','statuses.read','Đã đọc','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2609,1,'vi','plugins/contact/contact','statuses.unread','Chưa đọc','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2610,1,'vi','plugins/contact/contact','view_all','Xem tất cả','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2611,1,'vi','plugins/contact/contact','settings.email.title','Liên hệ','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2612,1,'vi','plugins/contact/contact','settings.email.description','Cấu hình thông tin cho mục liên hệ','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2613,1,'vi','plugins/contact/contact','settings.email.templates.notice_title','Thông báo tới admin','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2614,1,'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','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2615,1,'vi','plugins/contact/contact','replies','Trả lời','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2616,1,'vi','plugins/contact/contact','form_subject','Tiêu đề','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2617,1,'en','plugins/cookie-consent/cookie-consent','theme_options.name','Cookie Consent','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2618,1,'en','plugins/cookie-consent/cookie-consent','theme_options.description','Cookie consent settings','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2619,1,'en','plugins/cookie-consent/cookie-consent','theme_options.enable','Enable cookie consent?','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2620,1,'en','plugins/cookie-consent/cookie-consent','theme_options.message','Message','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2621,1,'en','plugins/cookie-consent/cookie-consent','theme_options.button_text','Button text','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2622,1,'en','plugins/cookie-consent/cookie-consent','theme_options.max_width','Max width (px)','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2623,1,'en','plugins/cookie-consent/cookie-consent','theme_options.background_color','Background color','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2624,1,'en','plugins/cookie-consent/cookie-consent','theme_options.text_color','Text color','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2625,1,'en','plugins/cookie-consent/cookie-consent','theme_options.learn_more_url','Learn more URL','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2626,1,'en','plugins/cookie-consent/cookie-consent','theme_options.learn_more_text','Learn more text','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2627,1,'en','plugins/cookie-consent/cookie-consent','theme_options.style','Style','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2628,1,'en','plugins/cookie-consent/cookie-consent','theme_options.full_width','Full width','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2629,1,'en','plugins/cookie-consent/cookie-consent','theme_options.minimal','Minimal','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2630,1,'en','plugins/cookie-consent/cookie-consent','message','Your experience on this site will be improved by allowing cookies.','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2631,1,'en','plugins/cookie-consent/cookie-consent','button_text','Allow cookies','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2632,1,'en','plugins/ecommerce/addresses','address','Address','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2633,1,'en','plugins/ecommerce/addresses','addresses','Addresses','2023-05-02 21:00:56','2023-05-02 21:00:56'),(2634,1,'en','plugins/ecommerce/addresses','address_placeholder','Enter address','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2635,1,'en','plugins/ecommerce/addresses','zip','Zip code','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2636,1,'en','plugins/ecommerce/addresses','zip_placeholder','Enter zip code','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2637,1,'en','plugins/ecommerce/addresses','city','City','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2638,1,'en','plugins/ecommerce/addresses','city_placeholder','Enter city','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2639,1,'en','plugins/ecommerce/addresses','state','State','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2640,1,'en','plugins/ecommerce/addresses','state_placeholder','Enter state','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2641,1,'en','plugins/ecommerce/addresses','country','Country','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2642,1,'en','plugins/ecommerce/addresses','use_this_address_as_default','Use this address as default','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2643,1,'en','plugins/ecommerce/addresses','name','Full name','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2644,1,'en','plugins/ecommerce/addresses','name_placeholder','Enter name','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2645,1,'en','plugins/ecommerce/addresses','phone','Phone','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2646,1,'en','plugins/ecommerce/addresses','phone_placeholder','Enter phone','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2647,1,'en','plugins/ecommerce/addresses','email','Email','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2648,1,'en','plugins/ecommerce/addresses','email_placeholder','Enter email','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2649,1,'en','plugins/ecommerce/addresses','select_state','Select state...','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2650,1,'en','plugins/ecommerce/addresses','select_city','Select city...','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2651,1,'en','plugins/ecommerce/addresses','select_country','Select country...','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2652,1,'en','plugins/ecommerce/addresses','add_address','Add Address','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2653,1,'en','plugins/ecommerce/addresses','new_address','New address','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2654,1,'en','plugins/ecommerce/addresses','edit_address','Edit address','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2655,1,'en','plugins/ecommerce/addresses','action','Action','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2656,1,'en','plugins/ecommerce/addresses','add','Add','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2657,1,'en','plugins/ecommerce/addresses','save','Save','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2658,1,'en','plugins/ecommerce/addresses','no_data','No data to display','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2659,1,'en','plugins/ecommerce/addresses','no_option','No option','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2660,1,'en','plugins/ecommerce/brands','name','Brands','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2661,1,'en','plugins/ecommerce/brands','create','New brand','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2662,1,'en','plugins/ecommerce/brands','edit','Edit brand','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2663,1,'en','plugins/ecommerce/brands','form.name','Name','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2664,1,'en','plugins/ecommerce/brands','form.name_placeholder','Brand\'s name (Maximum 255 characters)','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2665,1,'en','plugins/ecommerce/brands','form.description','Description','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2666,1,'en','plugins/ecommerce/brands','form.description_placeholder','Short description for brand (Maximum 400 characters)','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2667,1,'en','plugins/ecommerce/brands','form.website','Website','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2668,1,'en','plugins/ecommerce/brands','form.logo','Logo','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2669,1,'en','plugins/ecommerce/brands','form.is_featured','Is featured','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2670,1,'en','plugins/ecommerce/brands','logo','Logo','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2671,1,'en','plugins/ecommerce/brands','website','Website','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2672,1,'en','plugins/ecommerce/brands','notices.no_select','Please select at least one record to take this action!','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2673,1,'en','plugins/ecommerce/brands','notices.update_success_message','Update successfully','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2674,1,'en','plugins/ecommerce/brands','cannot_delete','Brand could not be deleted','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2675,1,'en','plugins/ecommerce/brands','brand_deleted','Brand deleted','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2676,1,'en','plugins/ecommerce/brands','menu','Brands','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2677,1,'en','plugins/ecommerce/brands','no_brand','No brand','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2678,1,'en','plugins/ecommerce/brands','intro.title','Manage brands','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2679,1,'en','plugins/ecommerce/brands','intro.description','Manage product brands such as Nike, Adidas, Bitis ...','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2680,1,'en','plugins/ecommerce/brands','intro.button_text','Create brand','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2681,1,'en','plugins/ecommerce/bulk-import','name','Bulk Import','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2682,1,'en','plugins/ecommerce/bulk-import','loading_text','Importing','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2683,1,'en','plugins/ecommerce/bulk-import','imported_successfully','Imported successfully.','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2684,1,'en','plugins/ecommerce/bulk-import','please_choose_the_file_mime','Please choose the file mime :types','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2685,1,'en','plugins/ecommerce/bulk-import','please_choose_the_file','Please choose the file','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2686,1,'en','plugins/ecommerce/bulk-import','start_import','Start Import','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2687,1,'en','plugins/ecommerce/bulk-import','note','Note!','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2688,1,'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!','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2689,1,'en','plugins/ecommerce/bulk-import','results','Result: :success successes, :failed failures','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2690,1,'en','plugins/ecommerce/bulk-import','failures','Failures','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2691,1,'en','plugins/ecommerce/bulk-import','tables.import','Import','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2692,1,'en','plugins/ecommerce/bulk-import','template','Template','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2693,1,'en','plugins/ecommerce/bulk-import','rules','Rules','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2694,1,'en','plugins/ecommerce/bulk-import','choose_file_with_mime','Choose file with mime: (:types)','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2695,1,'en','plugins/ecommerce/bulk-import','choose_file','Choose file','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2696,1,'en','plugins/ecommerce/bulk-import','menu','Import products','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2697,1,'en','plugins/ecommerce/bulk-import','download-csv-file','Download CSV template','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2698,1,'en','plugins/ecommerce/bulk-import','download-excel-file','Download Excel template','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2699,1,'en','plugins/ecommerce/bulk-import','downloading','Downloading...','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2700,1,'en','plugins/ecommerce/bulk-import','export.template.input_error','Input error','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2701,1,'en','plugins/ecommerce/bulk-import','export.template.number_not_allowed','Number is not allowed!','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2702,1,'en','plugins/ecommerce/bulk-import','export.template.allowed_input','Allowed input','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2703,1,'en','plugins/ecommerce/bulk-import','export.template.prompt_decimal','Only numbers or decimals are accepted and greater than or equal to :min.','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2704,1,'en','plugins/ecommerce/bulk-import','export.template.prompt_whole_number','Only numbers are accepted and greater than or equal to :min.','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2705,1,'en','plugins/ecommerce/bulk-import','export.template.prompt_list','Please pick a value from the drop-down list.','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2706,1,'en','plugins/ecommerce/bulk-import','export.template.pick_from_list','Pick from list','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2707,1,'en','plugins/ecommerce/bulk-import','export.template.value_not_in_list','Value is not in list.','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2708,1,'en','plugins/ecommerce/bulk-import','import_failed_description','Import failed, please check the errors below!','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2709,1,'en','plugins/ecommerce/bulk-import','column','Column','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2710,1,'en','plugins/ecommerce/bulk-import','row','Row','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2711,1,'en','plugins/ecommerce/bulk-import','attribute','Attribute','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2712,1,'en','plugins/ecommerce/bulk-import','errors','Errors','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2713,1,'en','plugins/ecommerce/bulk-import','import_types.name','Import type','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2714,1,'en','plugins/ecommerce/bulk-import','import_types.all','All','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2715,1,'en','plugins/ecommerce/bulk-import','import_types.products','Products','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2716,1,'en','plugins/ecommerce/bulk-import','import_types.variations','Variations','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2717,1,'en','plugins/ecommerce/bulk-import','import_products','Import products','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2718,1,'en','plugins/ecommerce/currency','currencies','Currencies','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2719,1,'en','plugins/ecommerce/currency','setting_description','List of currencies using on website','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2720,1,'en','plugins/ecommerce/currency','name','Name','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2721,1,'en','plugins/ecommerce/currency','symbol','Symbol','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2722,1,'en','plugins/ecommerce/currency','number_of_decimals','Number of decimals','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2723,1,'en','plugins/ecommerce/currency','exchange_rate','Exchange rate','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2724,1,'en','plugins/ecommerce/currency','is_prefix_symbol','Position of symbol','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2725,1,'en','plugins/ecommerce/currency','is_default','Is default?','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2726,1,'en','plugins/ecommerce/currency','remove','Remove','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2727,1,'en','plugins/ecommerce/currency','new_currency','Add a new currency','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2728,1,'en','plugins/ecommerce/currency','save_settings','Save settings','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2729,1,'en','plugins/ecommerce/currency','before_number','Before number','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2730,1,'en','plugins/ecommerce/currency','after_number','After number','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2731,1,'en','plugins/ecommerce/currency','require_at_least_one_currency','The system requires at least one currency!','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2732,1,'en','plugins/ecommerce/currency','enable_auto_detect_visitor_currency','Enable auto-detect visitor currency?','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2733,1,'en','plugins/ecommerce/currency','add_space_between_price_and_currency','Add a space between price and currency?','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2734,1,'en','plugins/ecommerce/currency','invalid_currency_name','Invalid currency code, it must be in :currencies.','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2735,1,'en','plugins/ecommerce/currency','instruction','Please check list currency code here: https://en.wikipedia.org/wiki/ISO_4217','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2736,1,'en','plugins/ecommerce/currency','code','Code','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2737,1,'en','plugins/ecommerce/currency','api_key','API Exchange Rates Key','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2738,1,'en','plugins/ecommerce/currency','update_currency_rates','Update currency rates','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2739,1,'en','plugins/ecommerce/currency','no_api_key','No API key','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2740,1,'en','plugins/ecommerce/customer','name','Customers','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2741,1,'en','plugins/ecommerce/customer','create','Create a customer','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2742,1,'en','plugins/ecommerce/customer','edit','Edit customer \":name\"','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2743,1,'en','plugins/ecommerce/customer','email','Email','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2744,1,'en','plugins/ecommerce/customer','email_placeholder','Ex: example@gmail.com','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2745,1,'en','plugins/ecommerce/customer','password','Password','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2746,1,'en','plugins/ecommerce/customer','change_password','Change password?','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2747,1,'en','plugins/ecommerce/customer','password_confirmation','Password confirmation','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2748,1,'en','plugins/ecommerce/customer','intro.title','Manage customers','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2749,1,'en','plugins/ecommerce/customer','intro.description','When a customer buy your product(s), you will know their order histories.','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2750,1,'en','plugins/ecommerce/customer','intro.button_text','Create customer','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2751,1,'en','plugins/ecommerce/customer','phone','Phone','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2752,1,'en','plugins/ecommerce/customer','phone_placeholder','Phone','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2753,1,'en','plugins/ecommerce/customer','avatar','Avatar','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2754,1,'en','plugins/ecommerce/customer','dob','Date of birth','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2755,1,'en','plugins/ecommerce/customer','statuses.activated','Activated','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2756,1,'en','plugins/ecommerce/customer','statuses.locked','Locked','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2757,1,'en','plugins/ecommerce/customer','email_verified','Email verified?','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2758,1,'en','plugins/ecommerce/customer','verify_email.confirm_heading','Verify email confirmation','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2759,1,'en','plugins/ecommerce/customer','verify_email.confirm_description','Are you sure you want to verify email this customer?','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2760,1,'en','plugins/ecommerce/customer','verify_email.notification','This customer is not verified email yet? :approve_link to verify email.','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2761,1,'en','plugins/ecommerce/customer','verify_email.approve_here','click here','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2762,1,'en','plugins/ecommerce/customer','verify_email.confirm_button','Verify','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2763,1,'en','plugins/ecommerce/discount','name','Discounts','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2764,1,'en','plugins/ecommerce/discount','create','Create discount','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2765,1,'en','plugins/ecommerce/discount','invalid_coupon','This coupon is invalid or expired!','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2766,1,'en','plugins/ecommerce/discount','cannot_use_same_time_with_other_discount_program','Cannot use this coupon in the same time with other discount program!','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2767,1,'en','plugins/ecommerce/discount','not_used','This coupon is not used yet!','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2768,1,'en','plugins/ecommerce/discount','detail','Detail','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2769,1,'en','plugins/ecommerce/discount','used','Used','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2770,1,'en','plugins/ecommerce/discount','intro.title','Manage discount/coupon code','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2771,1,'en','plugins/ecommerce/discount','intro.description','Create coupon code or promotion for your products.','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2772,1,'en','plugins/ecommerce/discount','intro.button_text','Create discount','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2773,1,'en','plugins/ecommerce/discount','expired','Expired','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2774,1,'en','plugins/ecommerce/discount','discount_promotion','Discount promotion','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2775,1,'en','plugins/ecommerce/discount','can','can','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2776,1,'en','plugins/ecommerce/discount','cannot','cannot','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2777,1,'en','plugins/ecommerce/discount','use_with_promotion','be used with promotion','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2778,1,'en','plugins/ecommerce/discount','create_discount_validate_title_required_if','Please enter the name of the promotion','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2779,1,'en','plugins/ecommerce/discount','create_discount_validate_code_required_if','Please enter the promotion code','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2780,1,'en','plugins/ecommerce/discount','create_discount_validate_value_required','Amount must be greater than 0','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2781,1,'en','plugins/ecommerce/discount','create_discount_validate_target_required','No object selected for promotion','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2782,1,'en','plugins/ecommerce/discount','enums.type-options.amount','Amount - Fixed','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2783,1,'en','plugins/ecommerce/discount','enums.type-options.percentage','Discount %','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2784,1,'en','plugins/ecommerce/discount','enums.type-options.shipping','Free shipping','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2785,1,'en','plugins/ecommerce/discount','enums.type-options.same-price','Same price','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2786,1,'en','plugins/ecommerce/discount','discount','Discount','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2787,1,'en','plugins/ecommerce/discount','create_coupon_code','Create coupon code','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2788,1,'en','plugins/ecommerce/discount','create_discount_promotion','Create discount promotion','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2789,1,'en','plugins/ecommerce/discount','generate_coupon_code','Generate coupon code','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2790,1,'en','plugins/ecommerce/discount','customers_will_enter_this_coupon_code_when_they_checkout','Customers will enter this coupon code when they checkout','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2791,1,'en','plugins/ecommerce/discount','select_type_of_discount','Select type of discount','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2792,1,'en','plugins/ecommerce/discount','coupon_code','Coupon code','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2793,1,'en','plugins/ecommerce/discount','promotion','Promotion','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2794,1,'en','plugins/ecommerce/discount','can_be_used_with_promotion','Can be used with promotion','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2795,1,'en','plugins/ecommerce/discount','unlimited_coupon','Unlimited coupon','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2796,1,'en','plugins/ecommerce/discount','enter_number','Enter number','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2797,1,'en','plugins/ecommerce/discount','coupon_type','Coupon type','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2798,1,'en','plugins/ecommerce/discount','percentage_discount','Percentage discount (%)','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2799,1,'en','plugins/ecommerce/discount','free_shipping','Free shipping','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2800,1,'en','plugins/ecommerce/discount','same_price','Same price','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2801,1,'en','plugins/ecommerce/discount','apply_for','apply for','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2802,1,'en','plugins/ecommerce/discount','all_orders','All orders','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2803,1,'en','plugins/ecommerce/discount','order_amount_from','Order amount from','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2804,1,'en','plugins/ecommerce/discount','product_collection','Product collection','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2805,1,'en','plugins/ecommerce/discount','product','Product','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2806,1,'en','plugins/ecommerce/discount','customer','Customer','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2807,1,'en','plugins/ecommerce/discount','variant','Variant','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2808,1,'en','plugins/ecommerce/discount','search_product','Search product','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2809,1,'en','plugins/ecommerce/discount','no_products_found','No products found!','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2810,1,'en','plugins/ecommerce/discount','search_customer','Search customer','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2811,1,'en','plugins/ecommerce/discount','no_customer_found','No customer found!','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2812,1,'en','plugins/ecommerce/discount','one_time_per_order','One time per order','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2813,1,'en','plugins/ecommerce/discount','one_time_per_product_in_cart','One time per product in cart','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2814,1,'en','plugins/ecommerce/discount','number_of_products','Number of products required to apply','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2815,1,'en','plugins/ecommerce/discount','selected_products','Selected products','2023-05-02 21:00:57','2023-05-02 21:00:57'),(2816,1,'en','plugins/ecommerce/discount','selected_customers','Selected customers','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2817,1,'en','plugins/ecommerce/discount','time','Time','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2818,1,'en','plugins/ecommerce/discount','start_date','Start date','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2819,1,'en','plugins/ecommerce/discount','end_date','End date','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2820,1,'en','plugins/ecommerce/discount','never_expired','Never expired','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2821,1,'en','plugins/ecommerce/discount','save','Save','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2822,1,'en','plugins/ecommerce/discount','enter_promotion_name','Enter promotion name','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2823,1,'en','plugins/ecommerce/discount','enter_coupon_name','Enter coupon name','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2824,1,'en','plugins/ecommerce/discount','cancel','Cancel','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2825,1,'en','plugins/ecommerce/discount','is','Is','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2826,1,'en','plugins/ecommerce/discount','when_shipping_fee_less_than','when shipping fee less than','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2827,1,'en','plugins/ecommerce/discount','minimum_order_amount_error','You are under :minimum_amount to apply the coupon, you must add :add_more more items to your cart','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2828,1,'en','plugins/ecommerce/discount','once_per_customer','Once per customer','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2829,1,'en','plugins/ecommerce/discount','you_need_login_to_use_coupon_code','You need to login to use this coupon code','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2830,1,'en','plugins/ecommerce/discount','you_used_coupon_code','You have already used this coupon code','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2831,1,'en','plugins/ecommerce/discount','customer_used_coupon_code','Customers who have used this discount code','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2832,1,'en','plugins/ecommerce/ecommerce','settings','Settings','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2833,1,'en','plugins/ecommerce/ecommerce','name','Ecommerce','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2834,1,'en','plugins/ecommerce/ecommerce','setting.email.title','E-commerce','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2835,1,'en','plugins/ecommerce/ecommerce','setting.email.description','Ecommerce email config','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2836,1,'en','plugins/ecommerce/ecommerce','setting.email.order_confirm_subject','Subject of order confirmation email','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2837,1,'en','plugins/ecommerce/ecommerce','setting.email.order_confirm_subject_placeholder','The subject of email confirmation send to the customer','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2838,1,'en','plugins/ecommerce/ecommerce','setting.email.order_confirm_content','Content of order confirmation email','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2839,1,'en','plugins/ecommerce/ecommerce','setting.email.order_status_change_subject','Subject of email when changing order\'s status','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2840,1,'en','plugins/ecommerce/ecommerce','setting.email.order_status_change_subject_placeholder','Subject of email when changing order\'s status send to customer','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2841,1,'en','plugins/ecommerce/ecommerce','setting.email.order_status_change_content','Content of email when changing order\'s status','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2842,1,'en','plugins/ecommerce/ecommerce','setting.email.from_email','Email from','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2843,1,'en','plugins/ecommerce/ecommerce','setting.email.from_email_placeholder','Email from address to display in mail. Ex: example@gmail.com','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2844,1,'en','plugins/ecommerce/ecommerce','setting.title','Basic information','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2845,1,'en','plugins/ecommerce/ecommerce','setting.state','State','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2846,1,'en','plugins/ecommerce/ecommerce','setting.city','City','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2847,1,'en','plugins/ecommerce/ecommerce','setting.country','Country','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2848,1,'en','plugins/ecommerce/ecommerce','setting.weight_unit_gram','Gram (g)','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2849,1,'en','plugins/ecommerce/ecommerce','setting.weight_unit_kilogram','Kilogram (kg)','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2850,1,'en','plugins/ecommerce/ecommerce','setting.weight_unit_lb','Pound (lb)','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2851,1,'en','plugins/ecommerce/ecommerce','setting.weight_unit_oz','Ounce (oz)','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2852,1,'en','plugins/ecommerce/ecommerce','setting.height_unit_cm','Centimeter (cm)','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2853,1,'en','plugins/ecommerce/ecommerce','setting.height_unit_m','Meter (m)','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2854,1,'en','plugins/ecommerce/ecommerce','setting.height_unit_inch','Inch','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2855,1,'en','plugins/ecommerce/ecommerce','setting.store_locator_title','Store locators','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2856,1,'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.','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2857,1,'en','plugins/ecommerce/ecommerce','setting.phone','Phone','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2858,1,'en','plugins/ecommerce/ecommerce','setting.address','Address','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2859,1,'en','plugins/ecommerce/ecommerce','setting.is_primary','Primary?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2860,1,'en','plugins/ecommerce/ecommerce','setting.add_new','Add new','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2861,1,'en','plugins/ecommerce/ecommerce','setting.or','Or','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2862,1,'en','plugins/ecommerce/ecommerce','setting.change_primary_store','change default store locator','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2863,1,'en','plugins/ecommerce/ecommerce','setting.other_settings','Other settings','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2864,1,'en','plugins/ecommerce/ecommerce','setting.other_settings_description','Settings for cart, review...','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2865,1,'en','plugins/ecommerce/ecommerce','setting.enable_cart','Enable shopping cart?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2866,1,'en','plugins/ecommerce/ecommerce','setting.enable_tax','Enable tax?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2867,1,'en','plugins/ecommerce/ecommerce','setting.display_product_price_including_taxes','Display product price including taxes?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2868,1,'en','plugins/ecommerce/ecommerce','setting.enable_review','Enable review?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2869,1,'en','plugins/ecommerce/ecommerce','setting.enable_quick_buy_button','Enable quick buy button?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2870,1,'en','plugins/ecommerce/ecommerce','setting.quick_buy_target','Quick buy target page?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2871,1,'en','plugins/ecommerce/ecommerce','setting.checkout_page','Checkout page','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2872,1,'en','plugins/ecommerce/ecommerce','setting.cart_page','Cart page','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2873,1,'en','plugins/ecommerce/ecommerce','setting.add_location','Add location','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2874,1,'en','plugins/ecommerce/ecommerce','setting.edit_location','Edit location','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2875,1,'en','plugins/ecommerce/ecommerce','setting.delete_location','Delete location','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2876,1,'en','plugins/ecommerce/ecommerce','setting.change_primary_location','Change primary location','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2877,1,'en','plugins/ecommerce/ecommerce','setting.delete_location_confirmation','Are you sure you want to delete this location? This action cannot be undo.','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2878,1,'en','plugins/ecommerce/ecommerce','setting.save_location','Save location','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2879,1,'en','plugins/ecommerce/ecommerce','setting.accept','Accept','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2880,1,'en','plugins/ecommerce/ecommerce','setting.select_country','Select country...','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2881,1,'en','plugins/ecommerce/ecommerce','setting.zip_code_enabled','Enable Zip Code?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2882,1,'en','plugins/ecommerce/ecommerce','setting.thousands_separator','Thousands separator','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2883,1,'en','plugins/ecommerce/ecommerce','setting.decimal_separator','Decimal separator','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2884,1,'en','plugins/ecommerce/ecommerce','setting.separator_period','Period (.)','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2885,1,'en','plugins/ecommerce/ecommerce','setting.separator_comma','Comma (,)','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2886,1,'en','plugins/ecommerce/ecommerce','setting.separator_space','Space ( )','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2887,1,'en','plugins/ecommerce/ecommerce','setting.available_countries','Available countries','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2888,1,'en','plugins/ecommerce/ecommerce','setting.all','All','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2889,1,'en','plugins/ecommerce/ecommerce','setting.verify_customer_email','Verify customer\'s email?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2890,1,'en','plugins/ecommerce/ecommerce','setting.minimum_order_amount','Minimum order amount to place an order (:currency).','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2891,1,'en','plugins/ecommerce/ecommerce','setting.enable_guest_checkout','Enable guest checkout?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2892,1,'en','plugins/ecommerce/ecommerce','setting.show_number_of_products','Show number of products in the product single','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2893,1,'en','plugins/ecommerce/ecommerce','setting.payment_method_cod_minimum_amount','Minimum order amount - :currency (Optional)','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2894,1,'en','plugins/ecommerce/ecommerce','setting.review.max_file_size','Review max file size (MB)','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2895,1,'en','plugins/ecommerce/ecommerce','setting.review.max_file_number','Review max file number','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2896,1,'en','plugins/ecommerce/ecommerce','setting.using_custom_font_for_invoice','Using custom font for invoice?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2897,1,'en','plugins/ecommerce/ecommerce','setting.invoice_font_family','Invoice font family (Only work for Latin language)','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2898,1,'en','plugins/ecommerce/ecommerce','setting.enable_invoice_stamp','Enable invoice stamp?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2899,1,'en','plugins/ecommerce/ecommerce','setting.invoice_support_arabic_language','Support Arabic language in invoice?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2900,1,'en','plugins/ecommerce/ecommerce','setting.make_phone_field_at_the_checkout_optional','Make phone field at the checkout optional?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2901,1,'en','plugins/ecommerce/ecommerce','setting.disable_order_invoice_until_order_confirmed','Disable order invoice until order confirmed?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2902,1,'en','plugins/ecommerce/ecommerce','setting.vat_number','VAT number','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2903,1,'en','plugins/ecommerce/ecommerce','setting.tax_id','Tax ID','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2904,1,'en','plugins/ecommerce/ecommerce','setting.enable_recaptcha_in_register_page','Enable Recaptcha in the registration page?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2905,1,'en','plugins/ecommerce/ecommerce','setting.enable_math_captcha_in_register_page','Enable Math captcha in the registration page?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2906,1,'en','plugins/ecommerce/ecommerce','setting.enable_recaptcha_in_register_page_description','Need to setup Captcha in Admin -> Settings -> General first.','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2907,1,'en','plugins/ecommerce/ecommerce','setting.show_out_of_stock_products','Show out of stock products?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2908,1,'en','plugins/ecommerce/ecommerce','setting.default_tax_rate','Default tax rate','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2909,1,'en','plugins/ecommerce/ecommerce','setting.default_tax_rate_description','Important: it will be applied if no tax selected in product.','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2910,1,'en','plugins/ecommerce/ecommerce','setting.how_to_display_product_variation_images','How to display product variation images?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2911,1,'en','plugins/ecommerce/ecommerce','setting.only_variation_images','Only variation images','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2912,1,'en','plugins/ecommerce/ecommerce','setting.variation_images_and_main_product_images','Variation images + main product images','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2913,1,'en','plugins/ecommerce/ecommerce','setting.load_countries_states_cities_from_location_plugin','Load countries, states, cities from plugin location?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2914,1,'en','plugins/ecommerce/ecommerce','setting.enable_wishlist','Enable wishlist?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2915,1,'en','plugins/ecommerce/ecommerce','setting.enable_compare','Enable compare?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2916,1,'en','plugins/ecommerce/ecommerce','setting.enable_order_tracking','Enable order tracking?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2917,1,'en','plugins/ecommerce/ecommerce','setting.recently_viewed.enable','Enable customer recently viewed products?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2918,1,'en','plugins/ecommerce/ecommerce','setting.recently_viewed.max','Maximum number of customer recently viewed products','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2919,1,'en','plugins/ecommerce/ecommerce','setting.recently_viewed.max_helper','If you set 0, it will save all products.','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2920,1,'en','plugins/ecommerce/ecommerce','setting.search_products','Search products','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2921,1,'en','plugins/ecommerce/ecommerce','setting.search_products_description','Config rules to search products','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2922,1,'en','plugins/ecommerce/ecommerce','setting.search_for_an_exact_phrase','Search for an exact phrase?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2923,1,'en','plugins/ecommerce/ecommerce','setting.search_products_by','Search products by:','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2924,1,'en','plugins/ecommerce/ecommerce','setting.tracking_settings','Tracking settings','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2925,1,'en','plugins/ecommerce/ecommerce','setting.tracking_settings_description','Manage tracking: UTM, Facebook, Google Tag Manager...','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2926,1,'en','plugins/ecommerce/ecommerce','setting.enable_facebook_pixel','Enable Facebook Pixel (Meta Pixel)?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2927,1,'en','plugins/ecommerce/ecommerce','setting.facebook_pixel_id','Facebook Pixel ID','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2928,1,'en','plugins/ecommerce/ecommerce','setting.facebook_pixel_helper','Go to https://developers.facebook.com/docs/meta-pixel to create Facebook Pixel.','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2929,1,'en','plugins/ecommerce/ecommerce','setting.enable_google_tag_manager','Enable Google Tag Manager?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2930,1,'en','plugins/ecommerce/ecommerce','setting.google_tag_manager_code','Google Tag Mana\n ger code','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2931,1,'en','plugins/ecommerce/ecommerce','setting.google_tag_manager_helper','Go to https://ads.google.com/aw/conversions to create Google Ads Conversions.','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2932,1,'en','plugins/ecommerce/ecommerce','setting.webhook','Webhook','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2933,1,'en','plugins/ecommerce/ecommerce','setting.webhook_description','Send webhook when order placed.','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2934,1,'en','plugins/ecommerce/ecommerce','setting.shipping','Shipping','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2935,1,'en','plugins/ecommerce/ecommerce','setting.shipping_description','Settings for shipping','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2936,1,'en','plugins/ecommerce/ecommerce','setting.hide_other_shipping_options_if_it_has_free_shipping','Hide other shipping options if it has free shipping in the list?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2937,1,'en','plugins/ecommerce/ecommerce','setting.order_placed_webhook_url','Order placed webhook URL (method: POST)','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2938,1,'en','plugins/ecommerce/ecommerce','setting.return_request','Return Request','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2939,1,'en','plugins/ecommerce/ecommerce','setting.return_request_description','Number of days a customer can request a return after the order is completed.','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2940,1,'en','plugins/ecommerce/ecommerce','setting.returnable_days','Refundable days','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2941,1,'en','plugins/ecommerce/ecommerce','setting.billing_address_enabled','Enable billing address?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2942,1,'en','plugins/ecommerce/ecommerce','setting.activate_custom_return_product_quantity','Activate custom return product quantity?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2943,1,'en','plugins/ecommerce/ecommerce','setting.allow_partial_return','Allow partial return?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2944,1,'en','plugins/ecommerce/ecommerce','setting.allow_partial_return_description','Customer can return a few products, do not need to return all products in an order.','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2945,1,'en','plugins/ecommerce/ecommerce','setting.activate_custom_return_product_quantity_description','Allow customer to change the quantity of the product they want to return.','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2946,1,'en','plugins/ecommerce/ecommerce','setting.digital_product','Digital product','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2947,1,'en','plugins/ecommerce/ecommerce','setting.digital_product_title','Is enabled to support the digital products?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2948,1,'en','plugins/ecommerce/ecommerce','setting.allow_guest_checkout_for_digital_products','Allow guest checkout for digital products?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2949,1,'en','plugins/ecommerce/ecommerce','setting.company_settings','Company settings','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2950,1,'en','plugins/ecommerce/ecommerce','setting.company_settings_description','Settings Company information for invoicing','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2951,1,'en','plugins/ecommerce/ecommerce','setting.company_name','Company name','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2952,1,'en','plugins/ecommerce/ecommerce','setting.company_address','Company address','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2953,1,'en','plugins/ecommerce/ecommerce','setting.company_zipcode','Company zipcode','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2954,1,'en','plugins/ecommerce/ecommerce','setting.company_email','Company email','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2955,1,'en','plugins/ecommerce/ecommerce','setting.company_phone','Company phone','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2956,1,'en','plugins/ecommerce/ecommerce','setting.company_logo','Company logo','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2957,1,'en','plugins/ecommerce/ecommerce','setting.company_tax_id','Company tax ID','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2958,1,'en','plugins/ecommerce/ecommerce','setting.invoice_code_prefix','Invoice code prefix','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2959,1,'en','plugins/ecommerce/ecommerce','setting.only_allow_customers_purchased_to_review','Only customers who have purchased the product can review the product?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2960,1,'en','plugins/ecommerce/ecommerce','setting.enable_order_auto_confirmed','Auto confirm order?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2961,1,'en','plugins/ecommerce/ecommerce','setting.is_enabled_order_return','Is enabled order return?','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2962,1,'en','plugins/ecommerce/ecommerce','store_address','Store address','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2963,1,'en','plugins/ecommerce/ecommerce','store_phone','Store phone','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2964,1,'en','plugins/ecommerce/ecommerce','order_id','Order ID','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2965,1,'en','plugins/ecommerce/ecommerce','order_token','Order token','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2966,1,'en','plugins/ecommerce/ecommerce','customer_name','Customer name','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2967,1,'en','plugins/ecommerce/ecommerce','customer_email','Customer email','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2968,1,'en','plugins/ecommerce/ecommerce','customer_phone','Customer phone','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2969,1,'en','plugins/ecommerce/ecommerce','customer_address','Customer address','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2970,1,'en','plugins/ecommerce/ecommerce','product_list','List products in order','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2971,1,'en','plugins/ecommerce/ecommerce','order_note','Order note','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2972,1,'en','plugins/ecommerce/ecommerce','payment_detail','Payment detail','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2973,1,'en','plugins/ecommerce/ecommerce','shipping_method','Shipping method','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2974,1,'en','plugins/ecommerce/ecommerce','payment_method','Payment method','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2975,1,'en','plugins/ecommerce/ecommerce','standard_and_format','Standard & Format','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2976,1,'en','plugins/ecommerce/ecommerce','standard_and_format_description','Standards and formats are used to calculate things like product prices, shipping weights, and order times.','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2977,1,'en','plugins/ecommerce/ecommerce','change_order_format','Edit order code format (optional)','2023-05-02 21:00:58','2023-05-02 21:00:58'),(2978,1,'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\"','2023-05-02 21:00:59','2023-05-02 21:00:59'),(2979,1,'en','plugins/ecommerce/ecommerce','start_with','Start with','2023-05-02 21:00:59','2023-05-02 21:00:59'),(2980,1,'en','plugins/ecommerce/ecommerce','end_with','End with','2023-05-02 21:00:59','2023-05-02 21:00:59'),(2981,1,'en','plugins/ecommerce/ecommerce','order_will_be_shown','Your order code will be shown','2023-05-02 21:00:59','2023-05-02 21:00:59'),(2982,1,'en','plugins/ecommerce/ecommerce','weight_unit','Unit of weight','2023-05-02 21:00:59','2023-05-02 21:00:59'),(2983,1,'en','plugins/ecommerce/ecommerce','height_unit','Unit length / height','2023-05-02 21:00:59','2023-05-02 21:00:59'),(2984,1,'en','plugins/ecommerce/ecommerce','theme_options.name','Ecommerce','2023-05-02 21:00:59','2023-05-02 21:00:59'),(2985,1,'en','plugins/ecommerce/ecommerce','theme_options.description','Theme options for Ecommerce','2023-05-02 21:00:59','2023-05-02 21:00:59'),(2986,1,'en','plugins/ecommerce/ecommerce','theme_options.number_products_per_page','Number of products per page','2023-05-02 21:00:59','2023-05-02 21:00:59'),(2987,1,'en','plugins/ecommerce/ecommerce','theme_options.number_of_cross_sale_product','Number of cross sale products in product detail page','2023-05-02 21:00:59','2023-05-02 21:00:59'),(2988,1,'en','plugins/ecommerce/ecommerce','theme_options.max_price_filter','Maximum price to filter','2023-05-02 21:00:59','2023-05-02 21:00:59'),(2989,1,'en','plugins/ecommerce/ecommerce','theme_options.logo_in_the_checkout_page','Logo in the checkout page (Default is the main logo)','2023-05-02 21:00:59','2023-05-02 21:00:59'),(2990,1,'en','plugins/ecommerce/ecommerce','basic_settings','Basic settings','2023-05-02 21:00:59','2023-05-02 21:00:59'),(2991,1,'en','plugins/ecommerce/ecommerce','advanced_settings','Advanced settings','2023-05-02 21:00:59','2023-05-02 21:00:59'),(2992,1,'en','plugins/ecommerce/ecommerce','product_review_list','Product review list','2023-05-02 21:00:59','2023-05-02 21:00:59'),(2993,1,'en','plugins/ecommerce/email','customer_new_order_title','Order confirmation','2023-05-02 21:00:59','2023-05-02 21:00:59'),(2994,1,'en','plugins/ecommerce/email','customer_new_order_description','Send email confirmation to customer when an order placed','2023-05-02 21:00:59','2023-05-02 21:00:59'),(2995,1,'en','plugins/ecommerce/email','order_cancellation_title','Order cancellation','2023-05-02 21:00:59','2023-05-02 21:00:59'),(2996,1,'en','plugins/ecommerce/email','order_cancellation_description','Send to custom when they cancelled order','2023-05-02 21:00:59','2023-05-02 21:00:59'),(2997,1,'en','plugins/ecommerce/email','delivery_confirmation_title','Delivering confirmation','2023-05-02 21:00:59','2023-05-02 21:00:59'),(2998,1,'en','plugins/ecommerce/email','delivery_confirmation_description','Send to customer when order is delivering','2023-05-02 21:00:59','2023-05-02 21:00:59'),(2999,1,'en','plugins/ecommerce/email','admin_new_order_title','Notice about new order','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3000,1,'en','plugins/ecommerce/email','admin_new_order_description','Send to administrators when an order placed','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3001,1,'en','plugins/ecommerce/email','order_confirmation_title','Order confirmation','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3002,1,'en','plugins/ecommerce/email','order_confirmation_description','Send to customer when they order was confirmed by admins','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3003,1,'en','plugins/ecommerce/email','payment_confirmation_title','Payment confirmation','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3004,1,'en','plugins/ecommerce/email','payment_confirmation_description','Send to customer when their payment was confirmed','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3005,1,'en','plugins/ecommerce/email','order_recover_title','Incomplete order','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3006,1,'en','plugins/ecommerce/email','order_recover_description','Send to custom to remind them about incomplete orders','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3007,1,'en','plugins/ecommerce/email','view_order','View order','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3008,1,'en','plugins/ecommerce/email','link_go_to_our_shop','or <a href=\":link\">Go to our shop</a>','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3009,1,'en','plugins/ecommerce/email','order_number','Order number: <strong>:order_id</strong>','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3010,1,'en','plugins/ecommerce/email','order_information','Order information:','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3011,1,'en','plugins/ecommerce/email','order_return_request_title','Order return request','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3012,1,'en','plugins/ecommerce/email','order_return_request_description','Send to customer when they return order','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3013,1,'en','plugins/ecommerce/export','products.name','Export products','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3014,1,'en','plugins/ecommerce/export','products.title','Export Products (CSV)','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3015,1,'en','plugins/ecommerce/export','products.total_products','Total products','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3016,1,'en','plugins/ecommerce/export','products.total_variations','Total variations','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3017,1,'en','plugins/ecommerce/export','start_export','Start export','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3018,1,'en','plugins/ecommerce/export','exporting','Exporting...','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3019,1,'en','plugins/ecommerce/export','export','Export','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3020,1,'en','plugins/ecommerce/flash-sale','name','Flash sales','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3021,1,'en','plugins/ecommerce/flash-sale','create','New flash sale','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3022,1,'en','plugins/ecommerce/flash-sale','edit','Edit flash sale','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3023,1,'en','plugins/ecommerce/flash-sale','products','Products','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3024,1,'en','plugins/ecommerce/invoice-template','name','Invoice template','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3025,1,'en','plugins/ecommerce/invoice-template','setting','Invoice Settings','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3026,1,'en','plugins/ecommerce/invoice-template','setting_description','Settings for Invoice template','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3027,1,'en','plugins/ecommerce/invoice-template','setting_content','Content','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3028,1,'en','plugins/ecommerce/invoice-template','preview','Preview','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3029,1,'en','plugins/ecommerce/invoice-template','preview_heading','Preview Invoice template','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3030,1,'en','plugins/ecommerce/invoice','name','Invoices','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3031,1,'en','plugins/ecommerce/invoice','create','New invoice','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3032,1,'en','plugins/ecommerce/invoice','edit','Edit invoice','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3033,1,'en','plugins/ecommerce/invoice','print','Print Invoice','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3034,1,'en','plugins/ecommerce/invoice','download','Download Invoice','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3035,1,'en','plugins/ecommerce/invoice','heading','Invoice','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3036,1,'en','plugins/ecommerce/invoice','invoice_for_job','','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3037,1,'en','plugins/ecommerce/invoice','table.code','Code','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3038,1,'en','plugins/ecommerce/invoice','table.amount','Amount','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3039,1,'en','plugins/ecommerce/invoice','detail.invoice_for','Invoice For','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3040,1,'en','plugins/ecommerce/invoice','detail.invoice_to','Invoice To','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3041,1,'en','plugins/ecommerce/invoice','detail.tax_id','Tax ID','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3042,1,'en','plugins/ecommerce/invoice','detail.code','Invoice Code','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3043,1,'en','plugins/ecommerce/invoice','detail.issue_at','Issue At','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3044,1,'en','plugins/ecommerce/invoice','detail.description','Description','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3045,1,'en','plugins/ecommerce/invoice','detail.qty','Qty','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3046,1,'en','plugins/ecommerce/invoice','detail.amount','Amount','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3047,1,'en','plugins/ecommerce/invoice','detail.discount','Discount','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3048,1,'en','plugins/ecommerce/invoice','detail.grand_total','Grand Total','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3049,1,'en','plugins/ecommerce/invoice','detail.shipping_fee','Shipping Fee','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3050,1,'en','plugins/ecommerce/invoice','detail.sub_total','Sub Total','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3051,1,'en','plugins/ecommerce/invoice','detail.tax','Tax','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3052,1,'en','plugins/ecommerce/invoice','detail.total','Total','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3053,1,'en','plugins/ecommerce/invoice','total_amount','Total Amount','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3054,1,'en','plugins/ecommerce/invoice','payment_info','Payment Info','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3055,1,'en','plugins/ecommerce/invoice','payment_method','Payment Method','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3056,1,'en','plugins/ecommerce/invoice','payment_status','Payment Status','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3057,1,'en','plugins/ecommerce/invoice','generate_invoices','Generate Invoices','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3058,1,'en','plugins/ecommerce/invoice','generate_success_message','Generated :count invoices successfully','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3059,1,'en','plugins/ecommerce/order','statuses.pending','Pending','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3060,1,'en','plugins/ecommerce/order','statuses.processing','Processing','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3061,1,'en','plugins/ecommerce/order','statuses.completed','Completed','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3062,1,'en','plugins/ecommerce/order','statuses.canceled','Canceled','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3063,1,'en','plugins/ecommerce/order','statuses.partial_returned','Partial returned','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3064,1,'en','plugins/ecommerce/order','statuses.returned','Returned','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3065,1,'en','plugins/ecommerce/order','return_statuses.pending','Pending','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3066,1,'en','plugins/ecommerce/order','return_statuses.processing','Processing','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3067,1,'en','plugins/ecommerce/order','return_statuses.completed','Completed','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3068,1,'en','plugins/ecommerce/order','return_statuses.canceled','Canceled','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3069,1,'en','plugins/ecommerce/order','menu','Orders','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3070,1,'en','plugins/ecommerce/order','create','Create an order','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3071,1,'en','plugins/ecommerce/order','cancel_error','The order is delivering or not completed','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3072,1,'en','plugins/ecommerce/order','cancel_success','You do cancel the order successful','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3073,1,'en','plugins/ecommerce/order','return_error','The order is delivering or not completed','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3074,1,'en','plugins/ecommerce/order','return_success','Requested product(s) return successfully!','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3075,1,'en','plugins/ecommerce/order','incomplete_order','Incomplete orders','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3076,1,'en','plugins/ecommerce/order','order_id','Order ID','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3077,1,'en','plugins/ecommerce/order','product_id','Product ID','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3078,1,'en','plugins/ecommerce/order','customer_label','Customer','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3079,1,'en','plugins/ecommerce/order','tax_amount','Tax Amount','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3080,1,'en','plugins/ecommerce/order','shipping_amount','Shipping amount','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3081,1,'en','plugins/ecommerce/order','payment_method','Payment method','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3082,1,'en','plugins/ecommerce/order','payment_status_label','Payment status','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3083,1,'en','plugins/ecommerce/order','manage_orders','Manage orders','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3084,1,'en','plugins/ecommerce/order','order_intro_description','Once your store has orders, this is where you will process and track those orders.','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3085,1,'en','plugins/ecommerce/order','create_new_order','Create a new order','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3086,1,'en','plugins/ecommerce/order','manage_incomplete_orders','Manage incomplete orders','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3087,1,'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.','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3088,1,'en','plugins/ecommerce/order','invoice_for_order','Invoice for order','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3089,1,'en','plugins/ecommerce/order','created','Created','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3090,1,'en','plugins/ecommerce/order','invoice','Invoice','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3091,1,'en','plugins/ecommerce/order','return','Order Return Request','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3092,1,'en','plugins/ecommerce/order','is_return','Return checkbox','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3093,1,'en','plugins/ecommerce/order','total_refund_amount','Total refund amount','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3094,1,'en','plugins/ecommerce/order','total_amount_can_be_refunded','Total amount can be refunded','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3095,1,'en','plugins/ecommerce/order','refund_reason','Refund reason','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3096,1,'en','plugins/ecommerce/order','products','product(s)','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3097,1,'en','plugins/ecommerce/order','default','Default','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3098,1,'en','plugins/ecommerce/order','system','System','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3099,1,'en','plugins/ecommerce/order','new_order_from','New order :order_id from :customer','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3100,1,'en','plugins/ecommerce/order','confirmation_email_was_sent_to_customer','The email confirmation was sent to customer','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3101,1,'en','plugins/ecommerce/order','address_name_required','The name field is required.','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3102,1,'en','plugins/ecommerce/order','address_phone_required','The phone field is required.','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3103,1,'en','plugins/ecommerce/order','address_email_required','The email field is required.','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3104,1,'en','plugins/ecommerce/order','address_email_unique','The customer with that email is existed, please choose other email or login with this email!','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3105,1,'en','plugins/ecommerce/order','address_state_required','The state field is required.','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3106,1,'en','plugins/ecommerce/order','address_city_required','The city field is required.','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3107,1,'en','plugins/ecommerce/order','address_country_required','The country field is required.','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3108,1,'en','plugins/ecommerce/order','address_address_required','The address field is required.','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3109,1,'en','plugins/ecommerce/order','address_zipcode_required','The zipcode field is required.','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3110,1,'en','plugins/ecommerce/order','create_order_from_payment_page','Order was created from checkout page','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3111,1,'en','plugins/ecommerce/order','create_order_from_admin_page','Order was created from admin page','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3112,1,'en','plugins/ecommerce/order','order_was_verified_by','Order was verified by %user_name%','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3113,1,'en','plugins/ecommerce/order','new_order','New order :order_id','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3114,1,'en','plugins/ecommerce/order','payment_was_confirmed_by','Payment was confirmed (amount :money) by %user_name%','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3115,1,'en','plugins/ecommerce/order','edit_order','Edit order :code','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3116,1,'en','plugins/ecommerce/order','confirm_order_success','Confirm order successfully!','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3117,1,'en','plugins/ecommerce/order','error_when_sending_email','There is an error when sending email','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3118,1,'en','plugins/ecommerce/order','sent_confirmation_email_success','Sent confirmation email successfully!','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3119,1,'en','plugins/ecommerce/order','order_was_sent_to_shipping_team','Order was sent to shipping team','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3120,1,'en','plugins/ecommerce/order','by_username','by %user_name%','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3121,1,'en','plugins/ecommerce/order','shipping_was_created_from','Shipping was created from order %order_id%','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3122,1,'en','plugins/ecommerce/order','shipping_was_canceled_success','Shipping was cancelled successfully!','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3123,1,'en','plugins/ecommerce/order','shipping_was_canceled_by','Shipping was cancelled by %user_name%','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3124,1,'en','plugins/ecommerce/order','update_shipping_address_success','Update shipping address successfully!','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3125,1,'en','plugins/ecommerce/order','order_was_canceled_by','Order was cancelled by %user_name%','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3126,1,'en','plugins/ecommerce/order','order_was_returned_by','Order was returned by %user_name%','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3127,1,'en','plugins/ecommerce/order','confirm_payment_success','Confirm payment successfully!','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3128,1,'en','plugins/ecommerce/order','refund_amount_invalid','Refund amount must be lower or equal :price','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3129,1,'en','plugins/ecommerce/order','number_of_products_invalid','Number of products refund is not valid!','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3130,1,'en','plugins/ecommerce/order','cannot_found_payment_for_this_order','Cannot found payment for this order!','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3131,1,'en','plugins/ecommerce/order','refund_success_with_price','Refund success :price','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3132,1,'en','plugins/ecommerce/order','refund_success','Refund successfully!','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3133,1,'en','plugins/ecommerce/order','order_is_not_existed','Order is not existed!','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3134,1,'en','plugins/ecommerce/order','reorder','Reorder','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3135,1,'en','plugins/ecommerce/order','sent_email_incomplete_order_success','Sent email to remind about incomplete order successfully!','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3136,1,'en','plugins/ecommerce/order','applied_coupon_success','Applied coupon \":code\" successfully!','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3137,1,'en','plugins/ecommerce/order','new_order_notice','You have <span class=\"bold\">:count</span> New Order(s)','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3138,1,'en','plugins/ecommerce/order','view_all','View all','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3139,1,'en','plugins/ecommerce/order','cancel_order','Cancel order','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3140,1,'en','plugins/ecommerce/order','order_canceled','Order canceled','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3141,1,'en','plugins/ecommerce/order','order_was_canceled_at','Order was canceled at','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3142,1,'en','plugins/ecommerce/order','return_order','Return order','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3143,1,'en','plugins/ecommerce/order','order_returned','Order returned','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3144,1,'en','plugins/ecommerce/order','order_was_returned_at','Order was returned at','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3145,1,'en','plugins/ecommerce/order','completed','Completed','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3146,1,'en','plugins/ecommerce/order','uncompleted','Uncompleted','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3147,1,'en','plugins/ecommerce/order','sku','SKU','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3148,1,'en','plugins/ecommerce/order','warehouse','Warehouse','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3149,1,'en','plugins/ecommerce/order','sub_amount','Sub amount','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3150,1,'en','plugins/ecommerce/order','coupon_code','Coupon code: \":code\"','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3151,1,'en','plugins/ecommerce/order','shipping_fee','Shipping fee','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3152,1,'en','plugins/ecommerce/order','tax','Tax','2023-05-02 21:00:59','2023-05-02 21:00:59'),(3153,1,'en','plugins/ecommerce/order','refunded_amount','Refunded amount','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3154,1,'en','plugins/ecommerce/order','amount_received','The amount actually received','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3155,1,'en','plugins/ecommerce/order','download_invoice','Download invoice','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3156,1,'en','plugins/ecommerce/order','print_invoice','Print invoice','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3157,1,'en','plugins/ecommerce/order','add_note','Add note...','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3158,1,'en','plugins/ecommerce/order','order_was_confirmed','Order was confirmed','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3159,1,'en','plugins/ecommerce/order','confirm_order','Confirm order','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3160,1,'en','plugins/ecommerce/order','confirm','Confirm','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3161,1,'en','plugins/ecommerce/order','order_was_canceled','Order was canceled','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3162,1,'en','plugins/ecommerce/order','order_was_returned','Order was returned','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3163,1,'en','plugins/ecommerce/order','pending_payment','Pending payment','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3164,1,'en','plugins/ecommerce/order','payment_was_accepted','Payment :money was accepted','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3165,1,'en','plugins/ecommerce/order','payment_was_refunded','Payment was refunded','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3166,1,'en','plugins/ecommerce/order','confirm_payment','Confirm payment','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3167,1,'en','plugins/ecommerce/order','refund','Refund','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3168,1,'en','plugins/ecommerce/order','all_products_are_not_delivered','All products are not delivered','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3169,1,'en','plugins/ecommerce/order','delivery','Delivery','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3170,1,'en','plugins/ecommerce/order','history','History','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3171,1,'en','plugins/ecommerce/order','order_number','Order number','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3172,1,'en','plugins/ecommerce/order','from','from','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3173,1,'en','plugins/ecommerce/order','status','Status','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3174,1,'en','plugins/ecommerce/order','successfully','Successfully','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3175,1,'en','plugins/ecommerce/order','transaction_type','Transaction\'s type','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3176,1,'en','plugins/ecommerce/order','staff','Staff','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3177,1,'en','plugins/ecommerce/order','refund_date','Refund date','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3178,1,'en','plugins/ecommerce/order','n_a','N\\A','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3179,1,'en','plugins/ecommerce/order','payment_date','Payment date','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3180,1,'en','plugins/ecommerce/order','payment_gateway','Payment gateway','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3181,1,'en','plugins/ecommerce/order','transaction_amount','Transaction amount','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3182,1,'en','plugins/ecommerce/order','resend','Resend','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3183,1,'en','plugins/ecommerce/order','default_store','Default store','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3184,1,'en','plugins/ecommerce/order','update_address','Update address','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3185,1,'en','plugins/ecommerce/order','have_an_account_already','Have an account already','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3186,1,'en','plugins/ecommerce/order','dont_have_an_account_yet','Don\'t have an account yet','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3187,1,'en','plugins/ecommerce/order','mark_payment_as_confirmed','Mark <span>:method</span> as confirmed','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3188,1,'en','plugins/ecommerce/order','resend_order_confirmation','Resend order confirmation','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3189,1,'en','plugins/ecommerce/order','resend_order_confirmation_description','Confirmation email will be sent to <strong>:email</strong>?','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3190,1,'en','plugins/ecommerce/order','send','Send','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3191,1,'en','plugins/ecommerce/order','update','Update','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3192,1,'en','plugins/ecommerce/order','cancel_shipping_confirmation','Cancel shipping confirmation?','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3193,1,'en','plugins/ecommerce/order','cancel_shipping_confirmation_description','Cancel shipping confirmation?','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3194,1,'en','plugins/ecommerce/order','cancel_order_confirmation','Cancel order confirmation?','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3195,1,'en','plugins/ecommerce/order','cancel_order_confirmation_description','Are you sure you want to cancel this order? This action cannot rollback','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3196,1,'en','plugins/ecommerce/order','return_order_confirmation','Return order confirmation?','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3197,1,'en','plugins/ecommerce/order','return_order_confirmation_description','Are you sure you want to return this order? This action cannot rollback','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3198,1,'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','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3199,1,'en','plugins/ecommerce/order','save_note','Save note','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3200,1,'en','plugins/ecommerce/order','order_note','Order note','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3201,1,'en','plugins/ecommerce/order','order_note_placeholder','Note about order, ex: time or shipping instruction.','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3202,1,'en','plugins/ecommerce/order','order_amount','Order amount','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3203,1,'en','plugins/ecommerce/order','additional_information','Additional information','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3204,1,'en','plugins/ecommerce/order','notice_about_incomplete_order','Notice about incomplete order','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3205,1,'en','plugins/ecommerce/order','notice_about_incomplete_order_description','Remind email about uncompleted order will be send to <strong>:email</strong>?','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3206,1,'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.','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3207,1,'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:','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3208,1,'en','plugins/ecommerce/order','send_an_email_to_recover_this_order','Send an email to customer to recover this order','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3209,1,'en','plugins/ecommerce/order','see_maps','See maps','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3210,1,'en','plugins/ecommerce/order','one_or_more_products_dont_have_enough_quantity','One or more products don\'t have enough quantity!','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3211,1,'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.','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3212,1,'en','plugins/ecommerce/order','payment_info','Payment Info','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3213,1,'en','plugins/ecommerce/order','payment_method_refund_automatic','Your customer will be refunded using :method automatically.','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3214,1,'en','plugins/ecommerce/order','order','Order','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3215,1,'en','plugins/ecommerce/order','order_information','Order information','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3216,1,'en','plugins/ecommerce/order','create_a_new_product','Create a new product','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3217,1,'en','plugins/ecommerce/order','out_of_stock','Out of stock','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3218,1,'en','plugins/ecommerce/order','products_available','product(s) available','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3219,1,'en','plugins/ecommerce/order','no_products_found','No products found!','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3220,1,'en','plugins/ecommerce/order','note','Note','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3221,1,'en','plugins/ecommerce/order','note_for_order','Note for order...','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3222,1,'en','plugins/ecommerce/order','amount','Amount','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3223,1,'en','plugins/ecommerce/order','add_discount','Add discount','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3224,1,'en','plugins/ecommerce/order','discount','Discount','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3225,1,'en','plugins/ecommerce/order','add_shipping_fee','Add shipping fee','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3226,1,'en','plugins/ecommerce/order','shipping','Shipping','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3227,1,'en','plugins/ecommerce/order','total_amount','Total amount','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3228,1,'en','plugins/ecommerce/order','confirm_payment_and_create_order','Confirm payment and create order','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3229,1,'en','plugins/ecommerce/order','paid','Paid','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3230,1,'en','plugins/ecommerce/order','pay_later','Pay later','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3231,1,'en','plugins/ecommerce/order','customer_information','Customer information','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3232,1,'en','plugins/ecommerce/order','create_new_customer','Create new customer','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3233,1,'en','plugins/ecommerce/order','no_customer_found','No customer found!','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3234,1,'en','plugins/ecommerce/order','customer','Customer','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3235,1,'en','plugins/ecommerce/order','orders','order(s)','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3236,1,'en','plugins/ecommerce/order','shipping_address','Shipping Address','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3237,1,'en','plugins/ecommerce/order','billing_address','Billing Address','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3238,1,'en','plugins/ecommerce/order','see_on_maps','See on maps','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3239,1,'en','plugins/ecommerce/order','name','Name','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3240,1,'en','plugins/ecommerce/order','price','Price','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3241,1,'en','plugins/ecommerce/order','product_name','Product name','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3242,1,'en','plugins/ecommerce/order','total','Total','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3243,1,'en','plugins/ecommerce/order','action','Action','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3244,1,'en','plugins/ecommerce/order','add_product','Add product','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3245,1,'en','plugins/ecommerce/order','enter_free_text','Enter free text','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3246,1,'en','plugins/ecommerce/order','promotion_discount_amount','Promotion amount','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3247,1,'en','plugins/ecommerce/order','add','Add','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3248,1,'en','plugins/ecommerce/order','store','Store','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3249,1,'en','plugins/ecommerce/order','please_choose_product_option','Please choose product option','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3250,1,'en','plugins/ecommerce/order','sku_optional','SKU (optional)','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3251,1,'en','plugins/ecommerce/order','with_storehouse_management','With storehouse management?','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3252,1,'en','plugins/ecommerce/order','quantity','Quantity','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3253,1,'en','plugins/ecommerce/order','allow_customer_checkout_when_this_product_out_of_stock','Allow customer checkout when this product out of stock?','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3254,1,'en','plugins/ecommerce/order','address','Address','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3255,1,'en','plugins/ecommerce/order','phone','Phone','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3256,1,'en','plugins/ecommerce/order','country','Country','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3257,1,'en','plugins/ecommerce/order','state','State','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3258,1,'en','plugins/ecommerce/order','city','City','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3259,1,'en','plugins/ecommerce/order','zip_code','Zip code','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3260,1,'en','plugins/ecommerce/order','discount_based_on','Discount based on','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3261,1,'en','plugins/ecommerce/order','or_coupon_code','Or coupon code','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3262,1,'en','plugins/ecommerce/order','description','Description','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3263,1,'en','plugins/ecommerce/order','how_to_select_configured_shipping','How to select configured shipping?','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3264,1,'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','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3265,1,'en','plugins/ecommerce/order','please_products_and_customer_address_to_see_the_shipping_rates','Please add products and customer information with the complete shipping address to see the configured shipping rates','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3266,1,'en','plugins/ecommerce/order','shipping_method_not_found','Shipping method not found','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3267,1,'en','plugins/ecommerce/order','free_shipping','Free shipping','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3268,1,'en','plugins/ecommerce/order','custom','Custom','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3269,1,'en','plugins/ecommerce/order','email','Email','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3270,1,'en','plugins/ecommerce/order','create_order','Create order','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3271,1,'en','plugins/ecommerce/order','close','Close','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3272,1,'en','plugins/ecommerce/order','confirm_payment_is_paid_for_this_order','Confirm payment is paid for this order','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3273,1,'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','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3274,1,'en','plugins/ecommerce/order','select_payment_method','Select payment method','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3275,1,'en','plugins/ecommerce/order','cash_on_delivery_cod','Cash on delivery (COD)','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3276,1,'en','plugins/ecommerce/order','bank_transfer','Bank transfer','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3277,1,'en','plugins/ecommerce/order','paid_amount','Paid amount','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3278,1,'en','plugins/ecommerce/order','confirm_that_payment_for_this_order_will_be_paid_later','Confirm that payment for this order will be paid later','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3279,1,'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','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3280,1,'en','plugins/ecommerce/order','pending_amount','Pending amount','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3281,1,'en','plugins/ecommerce/order','update_email','Update email','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3282,1,'en','plugins/ecommerce/order','save','Save','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3283,1,'en','plugins/ecommerce/order','cancel','Cancel','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3284,1,'en','plugins/ecommerce/order','create_a_new_order','Create a new order','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3285,1,'en','plugins/ecommerce/order','search_or_create_new_product','Search or create a new product','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3286,1,'en','plugins/ecommerce/order','search_or_create_new_customer','Search or create a new customer','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3287,1,'en','plugins/ecommerce/order','discount_description','Discount description','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3288,1,'en','plugins/ecommerce/order','cant_select_out_of_stock_product','Cannot select out of stock product!','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3289,1,'en','plugins/ecommerce/order','referral','Referral','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3290,1,'en','plugins/ecommerce/order','return_order_unique','Same :attribute already exists in a previous return request.','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3291,1,'en','plugins/ecommerce/order','total_return_amount','Total return amount','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3292,1,'en','plugins/ecommerce/order','change_return_order_status','Change return order status','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3293,1,'en','plugins/ecommerce/order','return_reason','Return reason','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3294,1,'en','plugins/ecommerce/order','referral_data.ip','IP','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3295,1,'en','plugins/ecommerce/order','referral_data.landing_domain','Landing domain','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3296,1,'en','plugins/ecommerce/order','referral_data.landing_page','Landing page','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3297,1,'en','plugins/ecommerce/order','referral_data.landing_params','Landing params','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3298,1,'en','plugins/ecommerce/order','referral_data.gclid','Gclid','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3299,1,'en','plugins/ecommerce/order','referral_data.fclid','Fclid','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3300,1,'en','plugins/ecommerce/order','referral_data.utm_source','UTM source','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3301,1,'en','plugins/ecommerce/order','referral_data.utm_campaign','UTM campaign','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3302,1,'en','plugins/ecommerce/order','referral_data.utm_medium','UTM medium','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3303,1,'en','plugins/ecommerce/order','referral_data.utm_term','UTM term','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3304,1,'en','plugins/ecommerce/order','referral_data.utm_content','UTM content','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3305,1,'en','plugins/ecommerce/order','referral_data.referral','Referral','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3306,1,'en','plugins/ecommerce/order','referral_data.referrer_url','Referral URL','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3307,1,'en','plugins/ecommerce/order','referral_data.referrer_domain','Referral domain','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3308,1,'en','plugins/ecommerce/order','order_address_types.shipping_address','Shipping address','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3309,1,'en','plugins/ecommerce/order','order_address_types.billing_address','Billing address','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3310,1,'en','plugins/ecommerce/order','order_return_reasons.damaged','Damaged product','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3311,1,'en','plugins/ecommerce/order','order_return_reasons.defective','Defective','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3312,1,'en','plugins/ecommerce/order','order_return_reasons.incorrect_item','Incorrect item','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3313,1,'en','plugins/ecommerce/order','order_return_reasons.arrived_late','Arrived late','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3314,1,'en','plugins/ecommerce/order','order_return_reasons.not_as_described','Not as described','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3315,1,'en','plugins/ecommerce/order','order_return_reasons.no_longer_want','No longer want','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3316,1,'en','plugins/ecommerce/order','order_return_reasons.other','Other','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3317,1,'en','plugins/ecommerce/order','order_return_reason','Return reason','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3318,1,'en','plugins/ecommerce/order','notices.update_return_order_status_error','Cannot update return order status! Maybe the return order status is not valid.','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3319,1,'en','plugins/ecommerce/order','notices.update_return_order_status_success','Update return order status successfully!','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3320,1,'en','plugins/ecommerce/order','order_return','Order returns','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3321,1,'en','plugins/ecommerce/order','edit_order_return','Edit order return :code','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3322,1,'en','plugins/ecommerce/order','order_return_items_count','Product item(s)','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3323,1,'en','plugins/ecommerce/order','new_order_notifications.new_order','New order','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3324,1,'en','plugins/ecommerce/order','new_order_notifications.view','View','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3325,1,'en','plugins/ecommerce/order','new_order_notifications.description',':customer ordered :quantity :product','2023-05-02 21:01:00','2023-05-02 21:01:00'),(3326,1,'en','plugins/ecommerce/order','confirm_payment_notifications.confirm_payment','Confirm payment','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3327,1,'en','plugins/ecommerce/order','confirm_payment_notifications.description','Order :order Payment was confirmed (amount :amount) by :by','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3328,1,'en','plugins/ecommerce/order','update_shipping_status_notifications.update_shipping_status','Update shipping status','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3329,1,'en','plugins/ecommerce/order','update_shipping_status_notifications.description','Order :order had changed shipping status :description','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3330,1,'en','plugins/ecommerce/order','cancel_order_notifications.cancel_order','Cancel order','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3331,1,'en','plugins/ecommerce/order','cancel_order_notifications.description','Order :order was cancelled by custom :customer','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3332,1,'en','plugins/ecommerce/order','return_order_notifications.return_order','Return order','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3333,1,'en','plugins/ecommerce/order','return_order_notifications.description',':customer has requested return product(s)','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3334,1,'en','plugins/ecommerce/order','order_completed_notifications.order_completed','Order Completed','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3335,1,'en','plugins/ecommerce/order','order_completed_notifications.description','Order :order has been completed','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3336,1,'en','plugins/ecommerce/payment','name','Payments','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3337,1,'en','plugins/ecommerce/payment','payment_method','Payment methods','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3338,1,'en','plugins/ecommerce/payment','view_payment','View payment #','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3339,1,'en','plugins/ecommerce/payment','charge_id','Charge ID','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3340,1,'en','plugins/ecommerce/payment','amount','Amount','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3341,1,'en','plugins/ecommerce/payment','currency','Currency','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3342,1,'en','plugins/ecommerce/payment','user','User','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3343,1,'en','plugins/ecommerce/payment','paypal_name_required','PayPal\'s name is required!','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3344,1,'en','plugins/ecommerce/payment','paypal_name_max','PayPal\'s name is too long!','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3345,1,'en','plugins/ecommerce/payment','status','Status','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3346,1,'en','plugins/ecommerce/payment','enabled','Enabled','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3347,1,'en','plugins/ecommerce/payment','disabled','Disabled','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3348,1,'en','plugins/ecommerce/payment','client_id','Client ID','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3349,1,'en','plugins/ecommerce/payment','client_secret','Client Secret','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3350,1,'en','plugins/ecommerce/payment','mode','Mode','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3351,1,'en','plugins/ecommerce/payment','sandbox','Sandbox','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3352,1,'en','plugins/ecommerce/payment','live','Live','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3353,1,'en','plugins/ecommerce/payment','enable_payment_log','Enable Payment Log','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3354,1,'en','plugins/ecommerce/payment','yes','Yes','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3355,1,'en','plugins/ecommerce/payment','no','No','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3356,1,'en','plugins/ecommerce/payment','client_key','Client Key','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3357,1,'en','plugins/ecommerce/payment','paypal','PayPal','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3358,1,'en','plugins/ecommerce/payment','action','Action','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3359,1,'en','plugins/ecommerce/payment','go_back','Go back','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3360,1,'en','plugins/ecommerce/payment','view','View','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3361,1,'en','plugins/ecommerce/payment','cash_on_delivery','Cash on delivery (COD)','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3362,1,'en','plugins/ecommerce/payment','via_bank_transfer','Via bank transfer','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3363,1,'en','plugins/ecommerce/payment','payment_via_cart','Payment via card','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3364,1,'en','plugins/ecommerce/payment','card_number','Card number','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3365,1,'en','plugins/ecommerce/payment','full_name','Full name','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3366,1,'en','plugins/ecommerce/payment','payment_via_paypal','Payment via PayPal','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3367,1,'en','plugins/ecommerce/payment','mm_yy','MM/YY','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3368,1,'en','plugins/ecommerce/payment','cvc','CVC','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3369,1,'en','plugins/ecommerce/payment','details','Details','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3370,1,'en','plugins/ecommerce/payment','payer_name','Payer Name','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3371,1,'en','plugins/ecommerce/payment','email','Email','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3372,1,'en','plugins/ecommerce/payment','phone','Phone','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3373,1,'en','plugins/ecommerce/payment','country','Country','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3374,1,'en','plugins/ecommerce/payment','shipping_address','Shipping Address','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3375,1,'en','plugins/ecommerce/payment','payment_details','Payment Details','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3376,1,'en','plugins/ecommerce/payment','card','Card','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3377,1,'en','plugins/ecommerce/payment','address','Address','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3378,1,'en','plugins/ecommerce/payment','new_payment','Payment for order :id','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3379,1,'en','plugins/ecommerce/payment','payment_id','Payment ID','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3380,1,'en','plugins/ecommerce/payment','order','Order','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3381,1,'en','plugins/ecommerce/payment','add_payment','Add payment','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3382,1,'en','plugins/ecommerce/payment','add_new_payment','New payment','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3383,1,'en','plugins/ecommerce/payment','add','Add','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3384,1,'en','plugins/ecommerce/payment','no_data','No data to display','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3385,1,'en','plugins/ecommerce/payment','no_option','No option','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3386,1,'en','plugins/ecommerce/payment','edit_payment','Edit payment','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3387,1,'en','plugins/ecommerce/payment','save','Save','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3388,1,'en','plugins/ecommerce/prices','name','Price','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3389,1,'en','plugins/ecommerce/prices','create','New price','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3390,1,'en','plugins/ecommerce/prices','edit','Edit price','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3391,1,'en','plugins/ecommerce/prices','list','List price','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3392,1,'en','plugins/ecommerce/product-attribute-sets','name','Product attribute sets','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3393,1,'en','plugins/ecommerce/product-attribute-sets','create','New product attribute set','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3394,1,'en','plugins/ecommerce/product-attribute-sets','edit','Edit product attribute set','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3395,1,'en','plugins/ecommerce/product-attribute-sets','visible_in_categories','Visible in categories','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3396,1,'en','plugins/ecommerce/product-attribute-sets','product_with_more_version','Product with more version','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3397,1,'en','plugins/ecommerce/product-attribute-sets','create_a_version','Create a version','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3398,1,'en','plugins/ecommerce/product-attribute-sets','enabled','Enabled','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3399,1,'en','plugins/ecommerce/product-attribute-sets','attributes','Attributes','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3400,1,'en','plugins/ecommerce/product-attribute-sets','price','Price','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3401,1,'en','plugins/ecommerce/product-attribute-sets','edit_btn','Edit','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3402,1,'en','plugins/ecommerce/product-attribute-sets','remove_btn','Remove','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3403,1,'en','plugins/ecommerce/product-attribute-sets','product','Product','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3404,1,'en','plugins/ecommerce/product-attribute-sets','back_to_product','Back to product','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3405,1,'en','plugins/ecommerce/product-attribute-sets','save','Save','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3406,1,'en','plugins/ecommerce/product-attribute-sets','other_existing_versions','Other existing versions','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3407,1,'en','plugins/ecommerce/product-attribute-sets','version_information','Version information','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3408,1,'en','plugins/ecommerce/product-attribute-sets','add_rule','Add rule','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3409,1,'en','plugins/ecommerce/product-attribute-sets','rules','Rules','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3410,1,'en','plugins/ecommerce/product-attribute-sets','pricing','Pricing','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3411,1,'en','plugins/ecommerce/product-attribute-sets','sale_price','Sale price','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3412,1,'en','plugins/ecommerce/product-attribute-sets','sale_type','Sale type','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3413,1,'en','plugins/ecommerce/product-attribute-sets','no_sale_price','No sale price','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3414,1,'en','plugins/ecommerce/product-attribute-sets','always_on_sale','Always on sale','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3415,1,'en','plugins/ecommerce/product-attribute-sets','limited_time','Limited time','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3416,1,'en','plugins/ecommerce/product-attribute-sets','from','From','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3417,1,'en','plugins/ecommerce/product-attribute-sets','to','To','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3418,1,'en','plugins/ecommerce/product-attribute-sets','storehouse','Storehouse','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3419,1,'en','plugins/ecommerce/product-attribute-sets','no_storehouse_management','No storehouse management','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3420,1,'en','plugins/ecommerce/product-attribute-sets','with_storehouse_management','With storehouse management','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3421,1,'en','plugins/ecommerce/product-attribute-sets','quantity','Quantity','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3422,1,'en','plugins/ecommerce/product-attribute-sets','allow_customer_checkout_out_of_stock','Allow customer checkout when this product out of stock','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3423,1,'en','plugins/ecommerce/product-attribute-sets','shipping','Shipping','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3424,1,'en','plugins/ecommerce/product-attribute-sets','length','Length','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3425,1,'en','plugins/ecommerce/product-attribute-sets','wide','Wide','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3426,1,'en','plugins/ecommerce/product-attribute-sets','height','Height','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3427,1,'en','plugins/ecommerce/product-attribute-sets','weight','Weight','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3428,1,'en','plugins/ecommerce/product-attribute-sets','version_images','Version images','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3429,1,'en','plugins/ecommerce/product-attribute-sets','add_new_image','Add new image','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3430,1,'en','plugins/ecommerce/product-attribute-sets','attribute_set','Attribute set','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3431,1,'en','plugins/ecommerce/product-attribute-sets','value','Value','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3432,1,'en','plugins/ecommerce/product-attribute-sets','dropdown_swatch','Dropdown Swatch','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3433,1,'en','plugins/ecommerce/product-attribute-sets','visual_swatch','Visual Swatch','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3434,1,'en','plugins/ecommerce/product-attribute-sets','text_swatch','Text Swatch','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3435,1,'en','plugins/ecommerce/product-attribute-sets','display_layout','Display Layout','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3436,1,'en','plugins/ecommerce/product-attribute-sets','searchable','Searchable','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3437,1,'en','plugins/ecommerce/product-attribute-sets','comparable','Comparable','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3438,1,'en','plugins/ecommerce/product-attribute-sets','use_in_product_listing','Used in product listing','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3439,1,'en','plugins/ecommerce/product-attribute-sets','attributes_list','Attributes list','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3440,1,'en','plugins/ecommerce/product-attribute-sets','is_default','Is default?','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3441,1,'en','plugins/ecommerce/product-attribute-sets','title','Title','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3442,1,'en','plugins/ecommerce/product-attribute-sets','slug','Slug','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3443,1,'en','plugins/ecommerce/product-attribute-sets','color','Color','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3444,1,'en','plugins/ecommerce/product-attribute-sets','image','Image','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3445,1,'en','plugins/ecommerce/product-attribute-sets','remove','Remove','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3446,1,'en','plugins/ecommerce/product-attribute-sets','add_new_attribute','Add new attribute','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3447,1,'en','plugins/ecommerce/product-attribute-sets','use_image_from_product_variation','Use image from product variation (for Visual Swatch only)','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3448,1,'en','plugins/ecommerce/product-attributes','name','Product attributes','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3449,1,'en','plugins/ecommerce/product-attributes','create','New product attribute','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3450,1,'en','plugins/ecommerce/product-attributes','edit','Edit product attribute','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3451,1,'en','plugins/ecommerce/product-attributes','intro.title','Manage product attributes','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3452,1,'en','plugins/ecommerce/product-attributes','intro.description','Product attribute such as color, width, height ...','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3453,1,'en','plugins/ecommerce/product-attributes','intro.button_text','Create product attribute','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3454,1,'en','plugins/ecommerce/product-categories','name','Product categories','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3455,1,'en','plugins/ecommerce/product-categories','create','Create new product category','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3456,1,'en','plugins/ecommerce/product-categories','edit','Edit product category','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3457,1,'en','plugins/ecommerce/product-categories','list','List product categories','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3458,1,'en','plugins/ecommerce/product-categories','none','None','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3459,1,'en','plugins/ecommerce/product-categories','menu','Product categories','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3460,1,'en','plugins/ecommerce/product-categories','intro.title','Manage product categories','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3461,1,'en','plugins/ecommerce/product-categories','intro.description','Such as clothes, shoes, bags, jewelry ...','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3462,1,'en','plugins/ecommerce/product-categories','intro.button_text','Create product category','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3463,1,'en','plugins/ecommerce/product-categories','total_products','Total products: :total','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3464,1,'en','plugins/ecommerce/product-collections','name','Product collections','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3465,1,'en','plugins/ecommerce/product-collections','create','New product collection','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3466,1,'en','plugins/ecommerce/product-collections','edit','Edit product collection','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3467,1,'en','plugins/ecommerce/product-collections','slug_help_block','Label key: <code>:slug</code>. We will use this key for filter.','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3468,1,'en','plugins/ecommerce/product-collections','intro.title','Manage product collections','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3469,1,'en','plugins/ecommerce/product-collections','intro.description','Group your products into collections to make it easier for customers to find them by category.','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3470,1,'en','plugins/ecommerce/product-collections','intro.button_text','Create product collection','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3471,1,'en','plugins/ecommerce/product-label','name','Product labels','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3472,1,'en','plugins/ecommerce/product-label','create','New product label','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3473,1,'en','plugins/ecommerce/product-label','edit','Edit product label','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3474,1,'en','plugins/ecommerce/product-label','color','Color','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3475,1,'en','plugins/ecommerce/product-label','color_placeholder','Example: #f0f0f0','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3476,1,'en','plugins/ecommerce/product-option','name','Product options','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3477,1,'en','plugins/ecommerce/product-option','options','Options','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3478,1,'en','plugins/ecommerce/product-option','create','New option','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3479,1,'en','plugins/ecommerce/product-option','edit','Edit option :name','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3480,1,'en','plugins/ecommerce/product-option','required','Is required?','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3481,1,'en','plugins/ecommerce/product-option','option_value','Option value','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3482,1,'en','plugins/ecommerce/product-option','option_type','Type','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3483,1,'en','plugins/ecommerce/product-option','label','Label','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3484,1,'en','plugins/ecommerce/product-option','price','Price','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3485,1,'en','plugins/ecommerce/product-option','price_type','Price Type','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3486,1,'en','plugins/ecommerce/product-option','percent','Percent','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3487,1,'en','plugins/ecommerce/product-option','fixed','Fixed','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3488,1,'en','plugins/ecommerce/product-option','label_placeholder','Please fill label','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3489,1,'en','plugins/ecommerce/product-option','affect_price_label','Please fill affect price','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3490,1,'en','plugins/ecommerce/product-option','add_new_row','Add new row','2023-05-02 21:01:01','2023-05-02 21:01:01'),(3491,1,'en','plugins/ecommerce/product-option','add_new_option','Add new option','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3492,1,'en','plugins/ecommerce/product-option','select_global_option','Select Global Option','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3493,1,'en','plugins/ecommerce/product-option','add_global_option','Add Global Option','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3494,1,'en','plugins/ecommerce/product-option','please_select_option','Please select option','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3495,1,'en','plugins/ecommerce/product-option','add_to_cart_value_required','Option :value is required','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3496,1,'en','plugins/ecommerce/product-option','option_value_attribute','value :item of :value_key on option #:option_key','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3497,1,'en','plugins/ecommerce/product-option','option_name_attribute','Option :key','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3498,1,'en','plugins/ecommerce/product-option','option_type_attribute','Type of option :key','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3499,1,'en','plugins/ecommerce/product-option','option_value_name_attribute','Values of option :key','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3500,1,'en','plugins/ecommerce/product-option','please_choose_option_type','Please choose option type!','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3501,1,'en','plugins/ecommerce/product-tag','name','Product tags','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3502,1,'en','plugins/ecommerce/product-tag','create','New product tag','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3503,1,'en','plugins/ecommerce/product-tag','edit','Edit product tag','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3504,1,'en','plugins/ecommerce/products','name','Products','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3505,1,'en','plugins/ecommerce/products','create','New product','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3506,1,'en','plugins/ecommerce/products','create_product_type.physical','New physical product','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3507,1,'en','plugins/ecommerce/products','create_product_type.digital','New digital product','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3508,1,'en','plugins/ecommerce/products','edit','Edit product - :name','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3509,1,'en','plugins/ecommerce/products','form.name','Name','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3510,1,'en','plugins/ecommerce/products','form.name_placeholder','Product\'s name (Maximum 120 characters)','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3511,1,'en','plugins/ecommerce/products','form.description','Description','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3512,1,'en','plugins/ecommerce/products','form.description_placeholder','Short description for product (Maximum 400 characters)','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3513,1,'en','plugins/ecommerce/products','form.categories','Categories','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3514,1,'en','plugins/ecommerce/products','form.content','Content','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3515,1,'en','plugins/ecommerce/products','form.price','Price','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3516,1,'en','plugins/ecommerce/products','form.quantity','Quantity','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3517,1,'en','plugins/ecommerce/products','form.brand','Brand','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3518,1,'en','plugins/ecommerce/products','form.width','Width','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3519,1,'en','plugins/ecommerce/products','form.height','Height','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3520,1,'en','plugins/ecommerce/products','form.weight','Weight','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3521,1,'en','plugins/ecommerce/products','form.date.start','From date','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3522,1,'en','plugins/ecommerce/products','form.date.end','To date','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3523,1,'en','plugins/ecommerce/products','form.image','Images','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3524,1,'en','plugins/ecommerce/products','form.collections','Product collections','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3525,1,'en','plugins/ecommerce/products','form.labels','Labels','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3526,1,'en','plugins/ecommerce/products','form.price_sale','Price sale','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3527,1,'en','plugins/ecommerce/products','form.product_type.title','Product type','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3528,1,'en','plugins/ecommerce/products','form.product','Product','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3529,1,'en','plugins/ecommerce/products','form.total','Total','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3530,1,'en','plugins/ecommerce/products','form.sub_total','Subtotal','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3531,1,'en','plugins/ecommerce/products','form.shipping_fee','Shipping fee','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3532,1,'en','plugins/ecommerce/products','form.discount','Discount','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3533,1,'en','plugins/ecommerce/products','form.options','Options','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3534,1,'en','plugins/ecommerce/products','form.shipping.height','Height','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3535,1,'en','plugins/ecommerce/products','form.shipping.length','Length','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3536,1,'en','plugins/ecommerce/products','form.shipping.title','Shipping','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3537,1,'en','plugins/ecommerce/products','form.shipping.weight','Weight','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3538,1,'en','plugins/ecommerce/products','form.shipping.wide','Wide','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3539,1,'en','plugins/ecommerce/products','form.barcode','Barcode (ISBN, UPC, GTIN, etc.) ','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3540,1,'en','plugins/ecommerce/products','form.barcode_placeholder','Enter barcode','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3541,1,'en','plugins/ecommerce/products','form.cost_per_item','Cost per item','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3542,1,'en','plugins/ecommerce/products','form.cost_per_item_placeholder','Enter cost per item','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3543,1,'en','plugins/ecommerce/products','form.cost_per_item_helper','Customers won\'t see this price.','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3544,1,'en','plugins/ecommerce/products','form.stock.allow_order_when_out','Allow customer checkout when this product out of stock','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3545,1,'en','plugins/ecommerce/products','form.stock.in_stock','In stock','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3546,1,'en','plugins/ecommerce/products','form.stock.out_stock','Out stock','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3547,1,'en','plugins/ecommerce/products','form.stock.title','Stock status','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3548,1,'en','plugins/ecommerce/products','form.storehouse.no_storehouse','No storehouse management','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3549,1,'en','plugins/ecommerce/products','form.storehouse.storehouse','With storehouse management','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3550,1,'en','plugins/ecommerce/products','form.storehouse.title','Storehouse','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3551,1,'en','plugins/ecommerce/products','form.storehouse.quantity','Quantity','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3552,1,'en','plugins/ecommerce/products','form.tax','Tax','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3553,1,'en','plugins/ecommerce/products','form.taxes','Taxes','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3554,1,'en','plugins/ecommerce/products','form.is_default','Is default','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3555,1,'en','plugins/ecommerce/products','form.action','Action','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3556,1,'en','plugins/ecommerce/products','form.restock_quantity','Restock quantity','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3557,1,'en','plugins/ecommerce/products','form.remain','Remain','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3558,1,'en','plugins/ecommerce/products','form.choose_discount_period','Choose Discount Period','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3559,1,'en','plugins/ecommerce/products','form.cancel','Cancel','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3560,1,'en','plugins/ecommerce/products','form.no_results','No results!','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3561,1,'en','plugins/ecommerce/products','form.value','Value','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3562,1,'en','plugins/ecommerce/products','form.attribute_name','Attribute name','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3563,1,'en','plugins/ecommerce/products','form.add_more_attribute','Add more attribute','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3564,1,'en','plugins/ecommerce/products','form.continue','Continue','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3565,1,'en','plugins/ecommerce/products','form.add_new_attributes','Add new attributes','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3566,1,'en','plugins/ecommerce/products','form.add_new_attributes_description','Adding new attributes helps the product to have many options, such as size or color.','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3567,1,'en','plugins/ecommerce/products','form.create_product_variations',':link to create product variations!','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3568,1,'en','plugins/ecommerce/products','form.tags','Tags','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3569,1,'en','plugins/ecommerce/products','form.write_some_tags','Write some tags','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3570,1,'en','plugins/ecommerce/products','form.variation_existed','This variation is existed.','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3571,1,'en','plugins/ecommerce/products','form.no_attributes_selected','No attributes selected!','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3572,1,'en','plugins/ecommerce/products','form.added_variation_success','Added variation successfully!','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3573,1,'en','plugins/ecommerce/products','form.updated_variation_success','Updated variation successfully!','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3574,1,'en','plugins/ecommerce/products','form.created_all_variation_success','Created all variations successfully!','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3575,1,'en','plugins/ecommerce/products','form.updated_product_attributes_success','Updated product attributes successfully!','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3576,1,'en','plugins/ecommerce/products','form.stock_status','Stock status','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3577,1,'en','plugins/ecommerce/products','form.auto_generate_sku','Auto generate SKU?','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3578,1,'en','plugins/ecommerce/products','form.featured_image','Featured image (optional)','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3579,1,'en','plugins/ecommerce/products','form.product_id','Product ID','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3580,1,'en','plugins/ecommerce/products','price','Price','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3581,1,'en','plugins/ecommerce/products','quantity','Quantity','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3582,1,'en','plugins/ecommerce/products','type','Type','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3583,1,'en','plugins/ecommerce/products','image','Thumbnail','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3584,1,'en','plugins/ecommerce/products','sku','SKU','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3585,1,'en','plugins/ecommerce/products','variation_sku','Variation SKU','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3586,1,'en','plugins/ecommerce/products','brand','Brand','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3587,1,'en','plugins/ecommerce/products','cannot_delete','Product could not be deleted','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3588,1,'en','plugins/ecommerce/products','product_deleted','Product deleted','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3589,1,'en','plugins/ecommerce/products','product_collections','Product collections','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3590,1,'en','plugins/ecommerce/products','products','Products','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3591,1,'en','plugins/ecommerce/products','menu','Products','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3592,1,'en','plugins/ecommerce/products','control.button_add_image','Add image','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3593,1,'en','plugins/ecommerce/products','price_sale','Sale price','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3594,1,'en','plugins/ecommerce/products','price_group_title','Manager product price','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3595,1,'en','plugins/ecommerce/products','store_house_group_title','Manager store house','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3596,1,'en','plugins/ecommerce/products','shipping_group_title','Manager shipping','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3597,1,'en','plugins/ecommerce/products','overview','Overview','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3598,1,'en','plugins/ecommerce/products','attributes','Attributes','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3599,1,'en','plugins/ecommerce/products','product_has_variations','Product has variations','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3600,1,'en','plugins/ecommerce/products','manage_products','Manage products','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3601,1,'en','plugins/ecommerce/products','add_new_product','Add a new product','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3602,1,'en','plugins/ecommerce/products','start_by_adding_new_product','Start by adding new products.','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3603,1,'en','plugins/ecommerce/products','edit_this_product','Edit this product','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3604,1,'en','plugins/ecommerce/products','delete','Delete','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3605,1,'en','plugins/ecommerce/products','related_products','Related products','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3606,1,'en','plugins/ecommerce/products','cross_selling_products','Cross-selling products','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3607,1,'en','plugins/ecommerce/products','up_selling_products','Up-selling products','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3608,1,'en','plugins/ecommerce/products','grouped_products','Grouped products','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3609,1,'en','plugins/ecommerce/products','search_products','Search products','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3610,1,'en','plugins/ecommerce/products','selected_products','Selected products','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3611,1,'en','plugins/ecommerce/products','edit_variation_item','Edit','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3612,1,'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.','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3613,1,'en','plugins/ecommerce/products','save_changes','Save changes','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3614,1,'en','plugins/ecommerce/products','continue','Continue','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3615,1,'en','plugins/ecommerce/products','edit_attribute','Edit attribute','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3616,1,'en','plugins/ecommerce/products','select_attribute','Select attribute','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3617,1,'en','plugins/ecommerce/products','add_new_variation','Add new variation','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3618,1,'en','plugins/ecommerce/products','edit_variation','Edit variation','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3619,1,'en','plugins/ecommerce/products','generate_all_variations','Generate all variations','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3620,1,'en','plugins/ecommerce/products','generate_all_variations_confirmation','Are you sure you want to generate all variations for this product?','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3621,1,'en','plugins/ecommerce/products','delete_variation','Delete variation?','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3622,1,'en','plugins/ecommerce/products','delete_variation_confirmation','Are you sure you want to delete this variation? This action cannot be undo.','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3623,1,'en','plugins/ecommerce/products','delete_variations_confirmation','Are you sure you want to delete those variations? This action cannot be undo.','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3624,1,'en','plugins/ecommerce/products','product_create_validate_name_required','Please enter product\'s name','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3625,1,'en','plugins/ecommerce/products','product_create_validate_sale_price_max','The discount must be less than the original price','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3626,1,'en','plugins/ecommerce/products','product_create_validate_cost_per_item_max','The cost per item must be less than the original price','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3627,1,'en','plugins/ecommerce/products','product_create_validate_sale_price_required_if','Must enter a discount when you want to schedule a promotion','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3628,1,'en','plugins/ecommerce/products','product_create_validate_end_date_after','End date must be after start date','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3629,1,'en','plugins/ecommerce/products','product_create_validate_start_date_required_if','Discount start date cannot be left blank when scheduling is selected','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3630,1,'en','plugins/ecommerce/products','product_create_validate_sale_price','Discounts cannot be left blank when scheduling is selected','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3631,1,'en','plugins/ecommerce/products','stock_statuses.in_stock','In stock','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3632,1,'en','plugins/ecommerce/products','stock_statuses.out_of_stock','Out of stock','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3633,1,'en','plugins/ecommerce/products','stock_statuses.on_backorder','On backorder','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3634,1,'en','plugins/ecommerce/products','stock_status','Stock status','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3635,1,'en','plugins/ecommerce/products','processing','Processing...','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3636,1,'en','plugins/ecommerce/products','delete_selected_variations','Delete selected variations','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3637,1,'en','plugins/ecommerce/products','delete_variations','Delete variations','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3638,1,'en','plugins/ecommerce/products','category','Category','2023-05-02 21:01:02','2023-05-02 21:01:02'),(3639,1,'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>.','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3640,1,'en','plugins/ecommerce/products','product_price_discount_warning','This product is in discount <strong>:name</strong> so its price is <strong>:price</strong>.','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3641,1,'en','plugins/ecommerce/products','product_image','Product image','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3642,1,'en','plugins/ecommerce/products','product_name','Product name','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3643,1,'en','plugins/ecommerce/products','types.physical','Physical','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3644,1,'en','plugins/ecommerce/products','types.digital','Digital','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3645,1,'en','plugins/ecommerce/products','digital_attachments.title','Digital attachments','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3646,1,'en','plugins/ecommerce/products','digital_attachments.add','Add Attachment','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3647,1,'en','plugins/ecommerce/products','digital_attachments.file_name','File name','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3648,1,'en','plugins/ecommerce/products','digital_attachments.file_size','File size','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3649,1,'en','plugins/ecommerce/products','digital_attachments.unsaved','Unsaved','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3650,1,'en','plugins/ecommerce/products','this_action_will_reload_page','This action will reload the page to update the data!','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3651,1,'en','plugins/ecommerce/products','select','Select','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3652,1,'en','plugins/ecommerce/products','set_this_variant_as_default','Set this variant as default','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3653,1,'en','plugins/ecommerce/reports','name','Report','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3654,1,'en','plugins/ecommerce/reports','widget.order.title','Orders','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3655,1,'en','plugins/ecommerce/reports','count.revenue','Today revenue','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3656,1,'en','plugins/ecommerce/reports','count.orders','Today orders','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3657,1,'en','plugins/ecommerce/reports','count.products','Total products','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3658,1,'en','plugins/ecommerce/reports','count.customers','Total customers','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3659,1,'en','plugins/ecommerce/reports','product_name','Product name','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3660,1,'en','plugins/ecommerce/reports','quantity','Quantity','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3661,1,'en','plugins/ecommerce/reports','revenue_statistics','Revenue statistics','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3662,1,'en','plugins/ecommerce/reports','top_selling_products','Top Selling Products','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3663,1,'en','plugins/ecommerce/reports','ranges.today','Today','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3664,1,'en','plugins/ecommerce/reports','ranges.this_week','This week','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3665,1,'en','plugins/ecommerce/reports','ranges.last_7_days','Last 7 days','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3666,1,'en','plugins/ecommerce/reports','ranges.last_30_days','Last 30 days','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3667,1,'en','plugins/ecommerce/reports','ranges.this_month','This month','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3668,1,'en','plugins/ecommerce/reports','ranges.this_year','This year','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3669,1,'en','plugins/ecommerce/reports','revenue_this_month','Revenue this month','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3670,1,'en','plugins/ecommerce/reports','order_processing_this_month','order(s) processing in this month','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3671,1,'en','plugins/ecommerce/reports','order_completed_this_month','order(s) completed in this month','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3672,1,'en','plugins/ecommerce/reports','product_will_be_out_of_stock','product(s) will be out of stock soon','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3673,1,'en','plugins/ecommerce/reports','product_out_of_stock','product(s) out of stock','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3674,1,'en','plugins/ecommerce/reports','sales_reports','Sales Reports','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3675,1,'en','plugins/ecommerce/reports','total_earnings','Total Earnings','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3676,1,'en','plugins/ecommerce/reports','recent_orders','Recent Orders','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3677,1,'en','plugins/ecommerce/reports','trending_products','Trending Products','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3678,1,'en','plugins/ecommerce/reports','statistics','Statistics','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3679,1,'en','plugins/ecommerce/reports','items_earning_sales','Items Earning Sales: :value','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3680,1,'en','plugins/ecommerce/reports','revenue','Revenue','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3681,1,'en','plugins/ecommerce/reports','orders','Orders','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3682,1,'en','plugins/ecommerce/reports','products','Products','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3683,1,'en','plugins/ecommerce/reports','customers','Customers','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3684,1,'en','plugins/ecommerce/reports','earnings','Earnings','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3685,1,'en','plugins/ecommerce/reports','views','Views','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3686,1,'en','plugins/ecommerce/reports','date_range_format_value','From :from to :to','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3687,1,'en','plugins/ecommerce/reports','select_range','Select Range','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3688,1,'en','plugins/ecommerce/reports','customers_chart','Customers','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3689,1,'en','plugins/ecommerce/reports','orders_chart','Orders','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3690,1,'en','plugins/ecommerce/reports','number_of_orders','Number of orders','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3691,1,'en','plugins/ecommerce/reports','number_of_customers','Number of customers','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3692,1,'en','plugins/ecommerce/review','name','Reviews','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3693,1,'en','plugins/ecommerce/review','add_review','Add review','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3694,1,'en','plugins/ecommerce/review','delete_review','Delete review','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3695,1,'en','plugins/ecommerce/review','create_review','Create Review','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3696,1,'en','plugins/ecommerce/review','please_select_rating','Please select rating','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3697,1,'en','plugins/ecommerce/review','comment','Comment','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3698,1,'en','plugins/ecommerce/review','approve','Approve','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3699,1,'en','plugins/ecommerce/review','approved','Approved','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3700,1,'en','plugins/ecommerce/review','disapprove','Disapprove','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3701,1,'en','plugins/ecommerce/review','disapproved','Disapproved','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3702,1,'en','plugins/ecommerce/review','product','Product','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3703,1,'en','plugins/ecommerce/review','user','User','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3704,1,'en','plugins/ecommerce/review','star','Star','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3705,1,'en','plugins/ecommerce/review','status','Status','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3706,1,'en','plugins/ecommerce/review','list_review','Customer reviews','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3707,1,'en','plugins/ecommerce/review','intro.title','Manage customer reviews','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3708,1,'en','plugins/ecommerce/review','intro.description','Customer reviews will be shown here and you can manage it to show/hide in product detail page.','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3709,1,'en','plugins/ecommerce/review','images','Images','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3710,1,'en','plugins/ecommerce/shipping','name','Shipping Rules','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3711,1,'en','plugins/ecommerce/shipping','shipping','Shipping','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3712,1,'en','plugins/ecommerce/shipping','title','Title','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3713,1,'en','plugins/ecommerce/shipping','amount','Amount','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3714,1,'en','plugins/ecommerce/shipping','enable','Enable','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3715,1,'en','plugins/ecommerce/shipping','enabled','Enabled','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3716,1,'en','plugins/ecommerce/shipping','disable','Disable','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3717,1,'en','plugins/ecommerce/shipping','disabled','Disabled','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3718,1,'en','plugins/ecommerce/shipping','create_shipping','Create a shipping','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3719,1,'en','plugins/ecommerce/shipping','edit_shipping','Edit shipping :code','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3720,1,'en','plugins/ecommerce/shipping','status','Status','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3721,1,'en','plugins/ecommerce/shipping','shipping_methods','Shipping methods','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3722,1,'en','plugins/ecommerce/shipping','create_shipping_method','Create shipping method','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3723,1,'en','plugins/ecommerce/shipping','edit_shipping_method','Edit shipping method','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3724,1,'en','plugins/ecommerce/shipping','add_shipping_region','Add shipping region','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3725,1,'en','plugins/ecommerce/shipping','country','Country','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3726,1,'en','plugins/ecommerce/shipping','state','State','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3727,1,'en','plugins/ecommerce/shipping','city','City','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3728,1,'en','plugins/ecommerce/shipping','address','Address','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3729,1,'en','plugins/ecommerce/shipping','phone','Phone','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3730,1,'en','plugins/ecommerce/shipping','email','Email','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3731,1,'en','plugins/ecommerce/shipping','zip_code','Zip code','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3732,1,'en','plugins/ecommerce/shipping','methods.default','Default','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3733,1,'en','plugins/ecommerce/shipping','statuses.not_approved','Not approved','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3734,1,'en','plugins/ecommerce/shipping','statuses.approved','Approved','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3735,1,'en','plugins/ecommerce/shipping','statuses.pending','Pending','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3736,1,'en','plugins/ecommerce/shipping','statuses.arrange_shipment','Arrange shipment','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3737,1,'en','plugins/ecommerce/shipping','statuses.ready_to_be_shipped_out','Ready to be shipped out','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3738,1,'en','plugins/ecommerce/shipping','statuses.picking','Picking','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3739,1,'en','plugins/ecommerce/shipping','statuses.delay_picking','Delay picking','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3740,1,'en','plugins/ecommerce/shipping','statuses.picked','Picked','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3741,1,'en','plugins/ecommerce/shipping','statuses.not_picked','Not picked','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3742,1,'en','plugins/ecommerce/shipping','statuses.delivering','Delivering','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3743,1,'en','plugins/ecommerce/shipping','statuses.delivered','Delivered','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3744,1,'en','plugins/ecommerce/shipping','statuses.not_delivered','Not delivered','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3745,1,'en','plugins/ecommerce/shipping','statuses.audited','Audited','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3746,1,'en','plugins/ecommerce/shipping','statuses.canceled','Canceled','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3747,1,'en','plugins/ecommerce/shipping','cod_statuses.pending','Pending','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3748,1,'en','plugins/ecommerce/shipping','cod_statuses.completed','Completed','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3749,1,'en','plugins/ecommerce/shipping','delete','Delete','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3750,1,'en','plugins/ecommerce/shipping','shipping_rules','Shipping Rules','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3751,1,'en','plugins/ecommerce/shipping','shipping_rules_description','Rules to calculate shipping fee.','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3752,1,'en','plugins/ecommerce/shipping','select_country','Select country','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3753,1,'en','plugins/ecommerce/shipping','add_shipping_rule','Add shipping rule','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3754,1,'en','plugins/ecommerce/shipping','delete_shipping_rate','Delete shipping rate for area','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3755,1,'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?','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3756,1,'en','plugins/ecommerce/shipping','delete_shipping_area','Delete shipping area','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3757,1,'en','plugins/ecommerce/shipping','delete_shipping_area_confirmation','Are you sure you want to delete shipping area <strong class=\"region-item-label\"></strong>?','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3758,1,'en','plugins/ecommerce/shipping','add_shipping_fee_for_area','Add shipping fee for area','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3759,1,'en','plugins/ecommerce/shipping','confirm','Confirm','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3760,1,'en','plugins/ecommerce/shipping','save','Save','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3761,1,'en','plugins/ecommerce/shipping','greater_than','Greater than','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3762,1,'en','plugins/ecommerce/shipping','type','Type','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3763,1,'en','plugins/ecommerce/shipping','shipping_rule_name','Name of shipping rule','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3764,1,'en','plugins/ecommerce/shipping','shipping_fee','Shipping fee','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3765,1,'en','plugins/ecommerce/shipping','cancel','Cancel','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3766,1,'en','plugins/ecommerce/shipping','based_on_weight','Based on product\'s weight (:unit)','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3767,1,'en','plugins/ecommerce/shipping','based_on_price','Based on product\'s price','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3768,1,'en','plugins/ecommerce/shipping','shipment_canceled','Shipment was canceled','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3769,1,'en','plugins/ecommerce/shipping','at','At','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3770,1,'en','plugins/ecommerce/shipping','cash_on_delivery','Cash on delivery (COD)','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3771,1,'en','plugins/ecommerce/shipping','update_shipping_status','Update shipping status','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3772,1,'en','plugins/ecommerce/shipping','update_cod_status','Update COD status','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3773,1,'en','plugins/ecommerce/shipping','history','History','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3774,1,'en','plugins/ecommerce/shipping','shipment_information','Shipment information','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3775,1,'en','plugins/ecommerce/shipping','order_number','Order number','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3776,1,'en','plugins/ecommerce/shipping','shipping_method','Shipping method','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3777,1,'en','plugins/ecommerce/shipping','select_shipping_method','Select shipping method','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3778,1,'en','plugins/ecommerce/shipping','cod_status','COD status','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3779,1,'en','plugins/ecommerce/shipping','shipping_status','Shipping status','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3780,1,'en','plugins/ecommerce/shipping','customer_information','Customer information','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3781,1,'en','plugins/ecommerce/shipping','sku','SKU','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3782,1,'en','plugins/ecommerce/shipping','change_status_confirm_title','Confirm <span class=\"shipment-status-label\"></span> ?','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3783,1,'en','plugins/ecommerce/shipping','change_status_confirm_description','Are you sure you want to confirm <span class=\"shipment-status-label\"></span> for this shipment?','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3784,1,'en','plugins/ecommerce/shipping','accept','Accept','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3785,1,'en','plugins/ecommerce/shipping','weight_unit','Weight (:unit)','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3786,1,'en','plugins/ecommerce/shipping','updated_at','Last Update','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3787,1,'en','plugins/ecommerce/shipping','cod_amount','Cash on delivery amount (COD)','2023-05-02 21:01:03','2023-05-02 21:01:03'),(3788,1,'en','plugins/ecommerce/shipping','cancel_shipping','Cancel shipping','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3789,1,'en','plugins/ecommerce/shipping','shipping_address','Shipping address','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3790,1,'en','plugins/ecommerce/shipping','packages','Packages','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3791,1,'en','plugins/ecommerce/shipping','edit','Edit','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3792,1,'en','plugins/ecommerce/shipping','fee','Fee','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3793,1,'en','plugins/ecommerce/shipping','note','Note','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3794,1,'en','plugins/ecommerce/shipping','finish','Finish','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3795,1,'en','plugins/ecommerce/shipping','shipping_fee_cod','Shipping fee/COD','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3796,1,'en','plugins/ecommerce/shipping','send_confirmation_email_to_customer','Send confirmation email to customer','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3797,1,'en','plugins/ecommerce/shipping','form_name','Name','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3798,1,'en','plugins/ecommerce/shipping','changed_shipping_status','Changed status of shipping to: :status. Updated by: %user_name%','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3799,1,'en','plugins/ecommerce/shipping','order_confirmed_by','Order confirmed by %user_name%','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3800,1,'en','plugins/ecommerce/shipping','shipping_canceled_by','Shipping is cancelled by %user_name%','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3801,1,'en','plugins/ecommerce/shipping','update_shipping_status_success','Update shipping status successfully!','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3802,1,'en','plugins/ecommerce/shipping','update_cod_status_success','Updated COD status of shipping successfully!','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3803,1,'en','plugins/ecommerce/shipping','updated_cod_status_by','Updated COD status to :status . Updated by: %user_name%','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3804,1,'en','plugins/ecommerce/shipping','all','All','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3805,1,'en','plugins/ecommerce/shipping','error_when_adding_new_region','There is an error when adding new region!','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3806,1,'en','plugins/ecommerce/shipping','delivery','Delivery','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3807,1,'en','plugins/ecommerce/shipping','adjustment_price_of','Adjustment price of :key','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3808,1,'en','plugins/ecommerce/shipping','warehouse','Warehouse','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3809,1,'en','plugins/ecommerce/shipping','delivery_note','Delivery note','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3810,1,'en','plugins/ecommerce/shipping','shipments','Shipments','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3811,1,'en','plugins/ecommerce/shipping','order_id','Order ID','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3812,1,'en','plugins/ecommerce/shipping','not_available','Not available','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3813,1,'en','plugins/ecommerce/shipping','shipping_amount','Shipping Amount','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3814,1,'en','plugins/ecommerce/shipping','additional_shipment_information','Additional shipment information','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3815,1,'en','plugins/ecommerce/shipping','shipping_company_name','Shipping Company Name','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3816,1,'en','plugins/ecommerce/shipping','tracking_id','Tracking ID','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3817,1,'en','plugins/ecommerce/shipping','tracking_link','Tracking Link','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3818,1,'en','plugins/ecommerce/shipping','estimate_date_shipped','Estimate Date Shipped','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3819,1,'en','plugins/ecommerce/shipping','date_shipped','Date Shipped','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3820,1,'en','plugins/ecommerce/shipping','add_note','Add note...','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3821,1,'en','plugins/ecommerce/shipping','view_order','View Order :order_id','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3822,1,'en','plugins/ecommerce/shipping','rule.types.based_on_weight','Based on product\'s weight (:unit)','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3823,1,'en','plugins/ecommerce/shipping','rule.types.based_on_price','Based on product\'s price','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3824,1,'en','plugins/ecommerce/shipping','rule.types.based_on_zipcode','Based on zipcode','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3825,1,'en','plugins/ecommerce/shipping','rule.types.based_on_location','Based on location','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3826,1,'en','plugins/ecommerce/shipping','rule.types.unavailable','Unavailable','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3827,1,'en','plugins/ecommerce/shipping','rule.item.name','Shipping Rule Items','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3828,1,'en','plugins/ecommerce/shipping','rule.item.edit','Edit item','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3829,1,'en','plugins/ecommerce/shipping','rule.item.create','Create new item','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3830,1,'en','plugins/ecommerce/shipping','rule.item.delete','Delete shipping rule item','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3831,1,'en','plugins/ecommerce/shipping','rule.item.confirmation','Are you sure you want to delete shipping rule item <strong class=\"item-label\"></strong>?','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3832,1,'en','plugins/ecommerce/shipping','rule.item.load_data_table','Load data table (:total)','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3833,1,'en','plugins/ecommerce/shipping','rule.item.tables.shipping_rule','Shipping rule','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3834,1,'en','plugins/ecommerce/shipping','rule.item.tables.country','Country','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3835,1,'en','plugins/ecommerce/shipping','rule.item.tables.state','State','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3836,1,'en','plugins/ecommerce/shipping','rule.item.tables.city','City','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3837,1,'en','plugins/ecommerce/shipping','rule.item.tables.zip_code','Zip code','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3838,1,'en','plugins/ecommerce/shipping','rule.item.tables.adjustment_price','Adjustment price','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3839,1,'en','plugins/ecommerce/shipping','rule.item.tables.is_enabled','Is enabled?','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3840,1,'en','plugins/ecommerce/shipping','rule.item.forms.country','Country','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3841,1,'en','plugins/ecommerce/shipping','rule.item.forms.country_placeholder','Country','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3842,1,'en','plugins/ecommerce/shipping','rule.item.forms.state','State','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3843,1,'en','plugins/ecommerce/shipping','rule.item.forms.state_placeholder','State','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3844,1,'en','plugins/ecommerce/shipping','rule.item.forms.city','City','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3845,1,'en','plugins/ecommerce/shipping','rule.item.forms.city_placeholder','City','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3846,1,'en','plugins/ecommerce/shipping','rule.item.forms.zip_code','Zip code','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3847,1,'en','plugins/ecommerce/shipping','rule.item.forms.zip_code_placeholder','Zip code','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3848,1,'en','plugins/ecommerce/shipping','rule.item.forms.adjustment_price','Adjustment price','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3849,1,'en','plugins/ecommerce/shipping','rule.item.forms.adjustment_price_placeholder','Adjustment price','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3850,1,'en','plugins/ecommerce/shipping','rule.item.forms.is_enabled','Is enabled?','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3851,1,'en','plugins/ecommerce/shipping','rule.item.forms.shipping_rule','Shipping rule','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3852,1,'en','plugins/ecommerce/shipping','rule.item.forms.no_shipping_rule','No shipping rule','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3853,1,'en','plugins/ecommerce/shipping','rule.item.bulk-import.menu','Bulk import Shipping Rule Items','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3854,1,'en','plugins/ecommerce/shipping','rule.item.bulk-import.greater_than_or_equal','Only numbers or decimals are accepted and greater than or equal to :min.','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3855,1,'en','plugins/ecommerce/shipping','rule.item.bulk-import.less_than_or_equal','Only numbers or decimals are accepted and less than or equal to :max.','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3856,1,'en','plugins/ecommerce/shipping','rule.item.bulk-import.between','Only numbers or decimals are accepted and between :min and :max.','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3857,1,'en','plugins/ecommerce/shipping','rule.item.bulk-import.overwrite','Overwrite','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3858,1,'en','plugins/ecommerce/shipping','rule.item.bulk-import.add_new','Add new','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3859,1,'en','plugins/ecommerce/shipping','rule.item.bulk-import.skip','Skip','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3860,1,'en','plugins/ecommerce/shipping','rule.select_type','Select type','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3861,1,'en','plugins/ecommerce/shipping','rule.cannot_create_rule_type_for_this_location','Cannot create rule type \":type\" on this location!','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3862,1,'en','plugins/ecommerce/store-locator','name','Store locators','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3863,1,'en','plugins/ecommerce/store-locator','description','This address will appear on your invoice and will be used to calculate your shipping price.','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3864,1,'en','plugins/ecommerce/store-locator','shop_name','Shop name','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3865,1,'en','plugins/ecommerce/store-locator','phone','Phone','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3866,1,'en','plugins/ecommerce/store-locator','email','Email','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3867,1,'en','plugins/ecommerce/store-locator','state','State','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3868,1,'en','plugins/ecommerce/store-locator','city','City','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3869,1,'en','plugins/ecommerce/store-locator','country','Country','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3870,1,'en','plugins/ecommerce/store-locator','address','Address','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3871,1,'en','plugins/ecommerce/store-locator','primary_store_is','Primary store is','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3872,1,'en','plugins/ecommerce/store-locator','store_name','Store name','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3873,1,'en','plugins/ecommerce/store-locator','select_country','Select country...','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3874,1,'en','plugins/ecommerce/store-locator','default_shipping_location','Default shipping location','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3875,1,'en','plugins/ecommerce/store-locator','default_store','Default store','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3876,1,'en','plugins/ecommerce/store-locator','company','Company','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3877,1,'en','plugins/ecommerce/store-locator','zip_code','Zip Code','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3878,1,'en','plugins/ecommerce/tax','name','Taxes','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3879,1,'en','plugins/ecommerce/tax','create','Create a tax','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3880,1,'en','plugins/ecommerce/tax','edit','Edit tax :title','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3881,1,'en','plugins/ecommerce/tax','title','Title','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3882,1,'en','plugins/ecommerce/tax','percentage','Percentage %','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3883,1,'en','plugins/ecommerce/tax','priority','Priority','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3884,1,'en','plugins/ecommerce/tax','select_tax','-- select --','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3885,1,'en','plugins/ecommerce/tax','default','Default','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3886,1,'vi','plugins/ecommerce/brands','name','Thương hiệu','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3887,1,'vi','plugins/ecommerce/brands','create','Thêm thương hiệu mới','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3888,1,'vi','plugins/ecommerce/brands','edit','Sửa thương hiệu','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3889,1,'vi','plugins/ecommerce/brands','form.name','Tên','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3890,1,'vi','plugins/ecommerce/brands','form.name_placeholder','Tên thương hiệu (tối đa 255 kí tự)','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3891,1,'vi','plugins/ecommerce/brands','form.description','Mô tả','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3892,1,'vi','plugins/ecommerce/brands','form.description_placeholder','Mô tả ngắn cho thương hiệu này (tối đa 400 kí tự)','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3893,1,'vi','plugins/ecommerce/brands','form.website','Website','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3894,1,'vi','plugins/ecommerce/brands','form.logo','Logo','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3895,1,'vi','plugins/ecommerce/brands','form.is_featured','Nổi bật?','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3896,1,'vi','plugins/ecommerce/brands','logo','Logo','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3897,1,'vi','plugins/ecommerce/brands','website','Website','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3898,1,'vi','plugins/ecommerce/brands','notices.no_select','Không có bản ghi nào được chọn!','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3899,1,'vi','plugins/ecommerce/brands','notices.update_success_message','Cập nhật thành công','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3900,1,'vi','plugins/ecommerce/brands','cannot_delete','Xoá không thành công','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3901,1,'vi','plugins/ecommerce/brands','brand_deleted','Xoá thương hiệu thành công','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3902,1,'vi','plugins/ecommerce/brands','menu','Thương hiệu','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3903,1,'vi','plugins/ecommerce/brands','intro.title','Quản lý danh sách thương hiệu','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3904,1,'vi','plugins/ecommerce/brands','intro.description','Các thương hiệu của sản phẩm như Nike, Adidas, Bitis ...','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3905,1,'vi','plugins/ecommerce/brands','intro.button_text','Tạo thương hiệu','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3906,1,'vi','plugins/ecommerce/brands','no_brand','Không có thương hiệu','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3907,1,'vi','plugins/ecommerce/currencies','name','Tiền tệ','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3908,1,'vi','plugins/ecommerce/currencies','create','Thêm loại tiền tệ mới','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3909,1,'vi','plugins/ecommerce/currencies','edit','Sửa tiền tệ','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3910,1,'vi','plugins/ecommerce/currencies','list','Danh sách tiền tệ','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3911,1,'vi','plugins/ecommerce/currencies','tables.title','Tên','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3912,1,'vi','plugins/ecommerce/currencies','tables.code','Mã','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3913,1,'vi','plugins/ecommerce/currencies','tables.symbol','Kí hiệu','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3914,1,'vi','plugins/ecommerce/currencies','tables.is_prefix_symbol','Sử dụng ký hiệu trước số tiền','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3915,1,'vi','plugins/ecommerce/currencies','tables.status','Trạng thái','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3916,1,'vi','plugins/ecommerce/currencies','tables.order','Sắp xếp','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3917,1,'vi','plugins/ecommerce/currencies','forms.title','Tiêu đề','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3918,1,'vi','plugins/ecommerce/currencies','forms.code','Mã','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3919,1,'vi','plugins/ecommerce/currencies','forms.symbol','Kí hiệu','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3920,1,'vi','plugins/ecommerce/currencies','forms.is_prefix_symbol','Sử dụng ký hiệu trước số tiền','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3921,1,'vi','plugins/ecommerce/currencies','forms.status','Trạng thái','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3922,1,'vi','plugins/ecommerce/currencies','forms.order','Sắp xếp','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3923,1,'vi','plugins/ecommerce/currencies','forms.decimals','Số kí tự sau dấu phân cách','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3924,1,'vi','plugins/ecommerce/currencies','forms.activated','Đã kích hoạt','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3925,1,'vi','plugins/ecommerce/currencies','forms.deactivated','Đã bị huỷ kích hoạt','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3926,1,'vi','plugins/ecommerce/currencies','forms.yes','Có','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3927,1,'vi','plugins/ecommerce/currencies','forms.no','Không','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3928,1,'vi','plugins/ecommerce/currency','currencies','Tiền tệ','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3929,1,'vi','plugins/ecommerce/currency','setting_description','Các loại tiền tệ được sử dụng trên website.','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3930,1,'vi','plugins/ecommerce/currency','name','Tên','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3931,1,'vi','plugins/ecommerce/currency','symbol','Ký hiệu','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3932,1,'vi','plugins/ecommerce/currency','number_of_decimals','Số thập phân','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3933,1,'vi','plugins/ecommerce/currency','exchange_rate','Tỷ giá','2023-05-02 21:01:04','2023-05-02 21:01:04'),(3934,1,'vi','plugins/ecommerce/currency','is_prefix_symbol','Vị trí ký hiệu','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3935,1,'vi','plugins/ecommerce/currency','is_default','Mặc định?','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3936,1,'vi','plugins/ecommerce/currency','remove','Xoá','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3937,1,'vi','plugins/ecommerce/currency','new_currency','Thêm tiền tệ mới','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3938,1,'vi','plugins/ecommerce/currency','save_settings','Lưu cài đặt','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3939,1,'vi','plugins/ecommerce/currency','before_number','Trước số','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3940,1,'vi','plugins/ecommerce/currency','after_number','Sau số','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3941,1,'vi','plugins/ecommerce/customer','name','Khách hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3942,1,'vi','plugins/ecommerce/customer','create','Create a customer','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3943,1,'vi','plugins/ecommerce/customer','edit','Edit customer \":name\"','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3944,1,'vi','plugins/ecommerce/customer','email','Email','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3945,1,'vi','plugins/ecommerce/customer','email_placeholder','Ex: example@gmail.com','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3946,1,'vi','plugins/ecommerce/customer','password','Password','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3947,1,'vi','plugins/ecommerce/customer','change_password','Change password?','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3948,1,'vi','plugins/ecommerce/customer','password_confirmation','Password confirmation','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3949,1,'vi','plugins/ecommerce/customer','intro.title','Quản lý danh sách khách hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3950,1,'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.','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3951,1,'vi','plugins/ecommerce/customer','intro.button_text','Tạo khách hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3952,1,'vi','plugins/ecommerce/discount','name','Khuyến mãi','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3953,1,'vi','plugins/ecommerce/discount','invalid_coupon','Mã khuyến mãi không hợp lệ hoặc đã hết hạn!','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3954,1,'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!','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3955,1,'vi','plugins/ecommerce/discount','not_used','Chưa sử dụng mã giảm giá này','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3956,1,'vi','plugins/ecommerce/discount','detail','Detail','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3957,1,'vi','plugins/ecommerce/discount','used','Used','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3958,1,'vi','plugins/ecommerce/discount','start_date','Start date','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3959,1,'vi','plugins/ecommerce/discount','end_date','End date','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3960,1,'vi','plugins/ecommerce/discount','intro.title','Chương trình khuyến mãi','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3961,1,'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.','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3962,1,'vi','plugins/ecommerce/discount','intro.button_text','Tạo khuyến mãi','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3963,1,'vi','plugins/ecommerce/discount','create','Create discount','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3964,1,'vi','plugins/ecommerce/discount','expired','Expired','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3965,1,'vi','plugins/ecommerce/discount','discount_promotion','Discount promotion','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3966,1,'vi','plugins/ecommerce/discount','can','can','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3967,1,'vi','plugins/ecommerce/discount','cannot','cannot','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3968,1,'vi','plugins/ecommerce/discount','use_with_promotion','be used with promotion','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3969,1,'vi','plugins/ecommerce/discount','create_discount_validate_title_required_if','Please enter the name of the promotion','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3970,1,'vi','plugins/ecommerce/discount','create_discount_validate_code_required_if','Please enter the promotion code','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3971,1,'vi','plugins/ecommerce/discount','create_discount_validate_value_required','Amount must be greater than 0','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3972,1,'vi','plugins/ecommerce/discount','create_discount_validate_target_required','No object selected for promotion','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3973,1,'vi','plugins/ecommerce/discount','enums.type-options.amount','Amount - Fixed','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3974,1,'vi','plugins/ecommerce/discount','enums.type-options.percentage','Discount %','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3975,1,'vi','plugins/ecommerce/discount','enums.type-options.shipping','Free shipping','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3976,1,'vi','plugins/ecommerce/discount','enums.type-options.same-price','Same price','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3977,1,'vi','plugins/ecommerce/discount','discount','Discount','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3978,1,'vi','plugins/ecommerce/discount','create_coupon_code','Tạo mã khuyến mãi','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3979,1,'vi','plugins/ecommerce/discount','create_discount_promotion','Create discount promotion','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3980,1,'vi','plugins/ecommerce/discount','generate_coupon_code','Generate coupon code','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3981,1,'vi','plugins/ecommerce/discount','customers_will_enter_this_coupon_code_when_they_checkout','Customers will enter this coupon code when they checkout','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3982,1,'vi','plugins/ecommerce/discount','select_type_of_discount','Select type of discount','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3983,1,'vi','plugins/ecommerce/discount','coupon_code','Coupon code','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3984,1,'vi','plugins/ecommerce/discount','promotion','Promotion','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3985,1,'vi','plugins/ecommerce/discount','can_be_used_with_promotion','Can be used with promotion','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3986,1,'vi','plugins/ecommerce/discount','unlimited_coupon','Unlimited coupon','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3987,1,'vi','plugins/ecommerce/discount','enter_number','Enter number','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3988,1,'vi','plugins/ecommerce/discount','coupon_type','Coupon type','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3989,1,'vi','plugins/ecommerce/discount','percentage_discount','Percentage discount (%)','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3990,1,'vi','plugins/ecommerce/discount','free_shipping','Free shipping','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3991,1,'vi','plugins/ecommerce/discount','same_price','Same price','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3992,1,'vi','plugins/ecommerce/discount','apply_for','apply for','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3993,1,'vi','plugins/ecommerce/discount','all_orders','All orders','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3994,1,'vi','plugins/ecommerce/discount','order_amount_from','Order amount from','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3995,1,'vi','plugins/ecommerce/discount','product_collection','Product collection','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3996,1,'vi','plugins/ecommerce/discount','product','Product','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3997,1,'vi','plugins/ecommerce/discount','customer','Customer','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3998,1,'vi','plugins/ecommerce/discount','variant','Variant','2023-05-02 21:01:05','2023-05-02 21:01:05'),(3999,1,'vi','plugins/ecommerce/discount','search_product','Search product','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4000,1,'vi','plugins/ecommerce/discount','no_products_found','No products found!','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4001,1,'vi','plugins/ecommerce/discount','search_customer','Search customer','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4002,1,'vi','plugins/ecommerce/discount','no_customer_found','No customer found!','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4003,1,'vi','plugins/ecommerce/discount','one_time_per_order','One time per order','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4004,1,'vi','plugins/ecommerce/discount','one_time_per_product_in_cart','One time per product in cart','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4005,1,'vi','plugins/ecommerce/discount','number_of_products','Number of products required to apply','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4006,1,'vi','plugins/ecommerce/discount','selected_products','Selected products','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4007,1,'vi','plugins/ecommerce/discount','selected_customers','Selected customers','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4008,1,'vi','plugins/ecommerce/discount','time','Time','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4009,1,'vi','plugins/ecommerce/discount','never_expired','Never expired','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4010,1,'vi','plugins/ecommerce/discount','save','Save','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4011,1,'vi','plugins/ecommerce/discount','enter_promotion_name','Enter promotion name','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4012,1,'vi','plugins/ecommerce/discount','enter_coupon_name','Enter coupon name','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4013,1,'vi','plugins/ecommerce/discount','cancel','Cancel','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4014,1,'vi','plugins/ecommerce/discount','is','Is','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4015,1,'vi','plugins/ecommerce/discount','when_shipping_fee_less_than','when shipping fee less than','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4016,1,'vi','plugins/ecommerce/ecommerce','settings','Cài đặt','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4017,1,'vi','plugins/ecommerce/ecommerce','name','Thương mại điện tử','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4018,1,'vi','plugins/ecommerce/ecommerce','setting.email.title','E-commerce','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4019,1,'vi','plugins/ecommerce/ecommerce','setting.email.description','Ecommerce email config','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4020,1,'vi','plugins/ecommerce/ecommerce','setting.email.order_confirm_subject','Subject of order confirmation email','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4021,1,'vi','plugins/ecommerce/ecommerce','setting.email.order_confirm_subject_placeholder','The subject of email confirmation send to the customer','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4022,1,'vi','plugins/ecommerce/ecommerce','setting.email.order_confirm_content','Content of order confirmation email','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4023,1,'vi','plugins/ecommerce/ecommerce','setting.email.order_status_change_subject','Subject of email when changing order\'s status','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4024,1,'vi','plugins/ecommerce/ecommerce','setting.email.order_status_change_subject_placeholder','Subject of email when changing order\'s status send to customer','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4025,1,'vi','plugins/ecommerce/ecommerce','setting.email.order_status_change_content','Content of email when changing order\'s status','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4026,1,'vi','plugins/ecommerce/ecommerce','setting.email.from_email','Email from','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4027,1,'vi','plugins/ecommerce/ecommerce','setting.email.from_email_placeholder','Email from address to display in mail. Ex: example@gmail.com','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4028,1,'vi','plugins/ecommerce/ecommerce','store_address','Địa chỉ cửa hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4029,1,'vi','plugins/ecommerce/ecommerce','store_phone','Số điện thoại cửa hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4030,1,'vi','plugins/ecommerce/ecommerce','order_id','Mã đơn hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4031,1,'vi','plugins/ecommerce/ecommerce','order_token','Chuỗi mã hoá đơn hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4032,1,'vi','plugins/ecommerce/ecommerce','customer_name','Tên khách hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4033,1,'vi','plugins/ecommerce/ecommerce','customer_email','Email khách hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4034,1,'vi','plugins/ecommerce/ecommerce','customer_phone','Số điện thoại khách hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4035,1,'vi','plugins/ecommerce/ecommerce','customer_address','Địa chỉ khách hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4036,1,'vi','plugins/ecommerce/ecommerce','product_list','Danh sách sản phẩm trong đơn hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4037,1,'vi','plugins/ecommerce/ecommerce','payment_detail','Chi tiết thanh toán','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4038,1,'vi','plugins/ecommerce/ecommerce','shipping_method','Phương thức vận chuyển','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4039,1,'vi','plugins/ecommerce/ecommerce','payment_method','Phương thức thanh toán','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4040,1,'vi','plugins/ecommerce/ecommerce','standard_and_format','Tiêu chuẩn & Định dạng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4041,1,'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.','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4042,1,'vi','plugins/ecommerce/ecommerce','change_order_format','Chỉnh sửa định dạng mã đơn hàng (tùy chọn)','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4043,1,'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\"','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4044,1,'vi','plugins/ecommerce/ecommerce','start_with','Bắt đầu bằng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4045,1,'vi','plugins/ecommerce/ecommerce','end_with','Kết thúc bằng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4046,1,'vi','plugins/ecommerce/ecommerce','order_will_be_shown','Mã đơn hàng của bạn sẽ hiển thị theo mẫu','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4047,1,'vi','plugins/ecommerce/ecommerce','weight_unit','Đơn vị cân nặng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4048,1,'vi','plugins/ecommerce/ecommerce','height_unit','Đơn vị chiều dài/chiều cao','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4049,1,'vi','plugins/ecommerce/email','customer_new_order_title','Xác nhận đơn hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4050,1,'vi','plugins/ecommerce/email','customer_new_order_description','Được gửi khi khách hàng tạo đơn hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4051,1,'vi','plugins/ecommerce/email','order_cancellation_title','Hủy đơn hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4052,1,'vi','plugins/ecommerce/email','order_cancellation_description','Được gửi khi khách hàng hủy đơn hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4053,1,'vi','plugins/ecommerce/email','delivery_confirmation_title','Xác nhận giao hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4054,1,'vi','plugins/ecommerce/email','delivery_confirmation_description','Được gửi đến khách hàng khi bắt đầu giao hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4055,1,'vi','plugins/ecommerce/email','admin_new_order_title','Thông báo có đơn hàng mới','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4056,1,'vi','plugins/ecommerce/email','admin_new_order_description','Được gửi cho quản trị viên khi có khách mua hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4057,1,'vi','plugins/ecommerce/email','order_confirmation_title','Xác nhận đơn hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4058,1,'vi','plugins/ecommerce/email','order_confirmation_description','Email được gửi đến khách hàng khi đơn hàng xác nhận','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4059,1,'vi','plugins/ecommerce/email','payment_confirmation_title','Xác nhận thanh toán','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4060,1,'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','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4061,1,'vi','plugins/ecommerce/email','order_recover_title','Đơn hàng đang chờ hoàn tất','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4062,1,'vi','plugins/ecommerce/email','order_recover_description','Email nhắc nhở khách hàng hoàn tất đơn hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4063,1,'vi','plugins/ecommerce/email','link_go_to_our_shop','hoặc <a href=\":link\">Truy cập website</a>','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4064,1,'vi','plugins/ecommerce/email','order_information','Thông tin đơn hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4065,1,'vi','plugins/ecommerce/email','order_number','Mã đơn hàng: <strong>:order_id</strong>','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4066,1,'vi','plugins/ecommerce/email','view_order','Xem đơn hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4067,1,'vi','plugins/ecommerce/order','statuses.pending','Chưa xử lý','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4068,1,'vi','plugins/ecommerce/order','statuses.processing','Đang xử lý','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4069,1,'vi','plugins/ecommerce/order','statuses.completed','Hoàn thành','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4070,1,'vi','plugins/ecommerce/order','statuses.canceled','Bị huỷ','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4071,1,'vi','plugins/ecommerce/order','name','Đơn hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4072,1,'vi','plugins/ecommerce/order','incomplete_order','Đơn hàng chưa hoàn tất','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4073,1,'vi','plugins/ecommerce/order','order_id','Mã đơn hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4074,1,'vi','plugins/ecommerce/order','customer_label','Khách hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4075,1,'vi','plugins/ecommerce/order','amount','Tổng cộng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4076,1,'vi','plugins/ecommerce/order','shipping_amount','Phí vận chuyển','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4077,1,'vi','plugins/ecommerce/order','payment_method','Phương thức thanh toán','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4078,1,'vi','plugins/ecommerce/order','payment_status_label','Trạng thái thanh toán','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4079,1,'vi','plugins/ecommerce/order','manage_orders','Quản lý đơn hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4080,1,'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 đó.','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4081,1,'vi','plugins/ecommerce/order','create_new_order','Tạo đơn hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4082,1,'vi','plugins/ecommerce/order','manage_incomplete_orders','Quản lý đơn hàng chưa hoàn tất','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4083,1,'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.','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4084,1,'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.','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4085,1,'vi','plugins/ecommerce/order','menu','Đơn hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4086,1,'vi','plugins/ecommerce/order','order_information','Thông tin đơn hàng','2023-05-02 21:01:05','2023-05-02 21:01:05'),(4087,1,'vi','plugins/ecommerce/order','create','Create an order','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4088,1,'vi','plugins/ecommerce/order','cancel_error','The order is delivering or completed','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4089,1,'vi','plugins/ecommerce/order','cancel_success','You do cancel the order successful','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4090,1,'vi','plugins/ecommerce/order','product_id','Product ID','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4091,1,'vi','plugins/ecommerce/order','tax_amount','Tax Amount','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4092,1,'vi','plugins/ecommerce/order','invoice_for_order','Invoice for order','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4093,1,'vi','plugins/ecommerce/order','created','Created','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4094,1,'vi','plugins/ecommerce/order','invoice','Invoice','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4095,1,'vi','plugins/ecommerce/order','return','Return','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4096,1,'vi','plugins/ecommerce/order','total_refund_amount','Total refund amount','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4097,1,'vi','plugins/ecommerce/order','total_amount_can_be_refunded','Total amount can be refunded','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4098,1,'vi','plugins/ecommerce/order','refund_reason','Refund reason (optional)','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4099,1,'vi','plugins/ecommerce/order','products','product(s)','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4100,1,'vi','plugins/ecommerce/order','default','Default','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4101,1,'vi','plugins/ecommerce/order','system','System','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4102,1,'vi','plugins/ecommerce/order','new_order_from','New order :order_id from :customer','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4103,1,'vi','plugins/ecommerce/order','confirmation_email_was_sent_to_customer','The email confirmation was sent to customer','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4104,1,'vi','plugins/ecommerce/order','address_name_required','The name field is required.','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4105,1,'vi','plugins/ecommerce/order','address_phone_required','The phone field is required.','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4106,1,'vi','plugins/ecommerce/order','address_email_required','The email field is required.','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4107,1,'vi','plugins/ecommerce/order','address_email_unique','The customer with that email is existed, please choose other email or login with this email!','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4108,1,'vi','plugins/ecommerce/order','address_state_required','The state field is required.','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4109,1,'vi','plugins/ecommerce/order','address_city_required','The city field is required.','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4110,1,'vi','plugins/ecommerce/order','address_country_required','The country field is required.','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4111,1,'vi','plugins/ecommerce/order','address_address_required','The address field is required.','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4112,1,'vi','plugins/ecommerce/order','create_order_from_payment_page','Order was created from checkout page','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4113,1,'vi','plugins/ecommerce/order','order_was_verified_by','Order was verified by %user_name%','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4114,1,'vi','plugins/ecommerce/order','new_order','New order :order_id','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4115,1,'vi','plugins/ecommerce/order','payment_was_confirmed_by','Payment was confirmed (amount :money) by %user_name%','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4116,1,'vi','plugins/ecommerce/order','edit_order','Edit order :code','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4117,1,'vi','plugins/ecommerce/order','confirm_order_success','Confirm order successfully!','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4118,1,'vi','plugins/ecommerce/order','error_when_sending_email','There is an error when sending email','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4119,1,'vi','plugins/ecommerce/order','sent_confirmation_email_success','Sent confirmation email successfully!','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4120,1,'vi','plugins/ecommerce/order','order_was_sent_to_shipping_team','Order was sent to shipping team','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4121,1,'vi','plugins/ecommerce/order','by_username','by %user_name%','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4122,1,'vi','plugins/ecommerce/order','shipping_was_created_from','Shipping was created from order %order_id%','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4123,1,'vi','plugins/ecommerce/order','shipping_was_canceled_success','Shipping was cancelled successfully!','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4124,1,'vi','plugins/ecommerce/order','shipping_was_canceled_by','Shipping was cancelled by %user_name%','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4125,1,'vi','plugins/ecommerce/order','update_shipping_address_success','Update shipping address successfully!','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4126,1,'vi','plugins/ecommerce/order','order_was_canceled_by','Order was cancelled by %user_name%','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4127,1,'vi','plugins/ecommerce/order','confirm_payment_success','Confirm payment successfully!','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4128,1,'vi','plugins/ecommerce/order','refund_amount_invalid','Refund amount must be lower or equal :price','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4129,1,'vi','plugins/ecommerce/order','number_of_products_invalid','Number of products refund is not valid!','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4130,1,'vi','plugins/ecommerce/order','cannot_found_payment_for_this_order','Cannot found payment for this order!','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4131,1,'vi','plugins/ecommerce/order','refund_success_with_price','Refund success :price','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4132,1,'vi','plugins/ecommerce/order','refund_success','Refund successfully!','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4133,1,'vi','plugins/ecommerce/order','order_is_not_existed','Order is not existed!','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4134,1,'vi','plugins/ecommerce/order','reorder','Reorder','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4135,1,'vi','plugins/ecommerce/order','sent_email_incomplete_order_success','Sent email to remind about incomplete order successfully!','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4136,1,'vi','plugins/ecommerce/order','applied_coupon_success','Applied coupon \":code\" successfully!','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4137,1,'vi','plugins/ecommerce/order','new_order_notice','You have <span class=\"bold\">:count</span> New Order(s)','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4138,1,'vi','plugins/ecommerce/order','view_all','View all','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4139,1,'vi','plugins/ecommerce/order','cancel_order','Cancel order','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4140,1,'vi','plugins/ecommerce/order','order_canceled','Order canceled','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4141,1,'vi','plugins/ecommerce/order','order_was_canceled_at','Order was canceled at','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4142,1,'vi','plugins/ecommerce/order','completed','Completed','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4143,1,'vi','plugins/ecommerce/order','uncompleted','Uncompleted','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4144,1,'vi','plugins/ecommerce/order','sku','SKU','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4145,1,'vi','plugins/ecommerce/order','warehouse','Warehouse','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4146,1,'vi','plugins/ecommerce/order','sub_amount','Sub amount','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4147,1,'vi','plugins/ecommerce/order','coupon_code','Coupon code: \":code\"','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4148,1,'vi','plugins/ecommerce/order','shipping_fee','Shipping fee','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4149,1,'vi','plugins/ecommerce/order','tax','Tax','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4150,1,'vi','plugins/ecommerce/order','refunded_amount','Refunded amount','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4151,1,'vi','plugins/ecommerce/order','amount_received','The amount actually received','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4152,1,'vi','plugins/ecommerce/order','download_invoice','Download invoice','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4153,1,'vi','plugins/ecommerce/order','add_note','Add note...','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4154,1,'vi','plugins/ecommerce/order','order_was_confirmed','Order was confirmed','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4155,1,'vi','plugins/ecommerce/order','confirm_order','Confirm order','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4156,1,'vi','plugins/ecommerce/order','confirm','Confirm','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4157,1,'vi','plugins/ecommerce/order','order_was_canceled','Order was canceled','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4158,1,'vi','plugins/ecommerce/order','pending_payment','Pending payment','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4159,1,'vi','plugins/ecommerce/order','payment_was_accepted','Payment :money was accepted','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4160,1,'vi','plugins/ecommerce/order','payment_was_refunded','Payment was refunded','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4161,1,'vi','plugins/ecommerce/order','confirm_payment','Confirm payment','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4162,1,'vi','plugins/ecommerce/order','refund','Refund','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4163,1,'vi','plugins/ecommerce/order','all_products_are_not_delivered','All products are not delivered','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4164,1,'vi','plugins/ecommerce/order','delivery','Delivery','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4165,1,'vi','plugins/ecommerce/order','history','History','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4166,1,'vi','plugins/ecommerce/order','order_number','Order number','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4167,1,'vi','plugins/ecommerce/order','from','from','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4168,1,'vi','plugins/ecommerce/order','status','Status','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4169,1,'vi','plugins/ecommerce/order','successfully','Successfully','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4170,1,'vi','plugins/ecommerce/order','transaction_type','Transaction\'s type','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4171,1,'vi','plugins/ecommerce/order','staff','Staff','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4172,1,'vi','plugins/ecommerce/order','refund_date','Refund date','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4173,1,'vi','plugins/ecommerce/order','n_a','N\\A','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4174,1,'vi','plugins/ecommerce/order','payment_date','Payment date','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4175,1,'vi','plugins/ecommerce/order','payment_gateway','Payment gateway','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4176,1,'vi','plugins/ecommerce/order','transaction_amount','Transaction amount','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4177,1,'vi','plugins/ecommerce/order','resend','Resend','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4178,1,'vi','plugins/ecommerce/order','default_store','Default store','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4179,1,'vi','plugins/ecommerce/order','update_address','Update address','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4180,1,'vi','plugins/ecommerce/order','have_an_account_already','Have an account already','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4181,1,'vi','plugins/ecommerce/order','dont_have_an_account_yet','Don\'t have an account yet','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4182,1,'vi','plugins/ecommerce/order','mark_payment_as_confirmed','Mark <span>:method</span> as confirmed','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4183,1,'vi','plugins/ecommerce/order','resend_order_confirmation','Resend order confirmation','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4184,1,'vi','plugins/ecommerce/order','resend_order_confirmation_description','Confirmation email will be sent to <strong>:email</strong>?','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4185,1,'vi','plugins/ecommerce/order','send','Send','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4186,1,'vi','plugins/ecommerce/order','update','Update','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4187,1,'vi','plugins/ecommerce/order','cancel_shipping_confirmation','Cancel shipping confirmation?','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4188,1,'vi','plugins/ecommerce/order','cancel_shipping_confirmation_description','Cancel shipping confirmation?','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4189,1,'vi','plugins/ecommerce/order','cancel_order_confirmation','Cancel order confirmation?','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4190,1,'vi','plugins/ecommerce/order','cancel_order_confirmation_description','Are you sure you want to cancel this order? This action cannot rollback','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4191,1,'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','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4192,1,'vi','plugins/ecommerce/order','save_note','Save note','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4193,1,'vi','plugins/ecommerce/order','order_note','Order note','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4194,1,'vi','plugins/ecommerce/order','order_note_placeholder','Note about order, ex: time or shipping instruction.','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4195,1,'vi','plugins/ecommerce/order','order_amount','Order amount','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4196,1,'vi','plugins/ecommerce/order','additional_information','Additional information','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4197,1,'vi','plugins/ecommerce/order','notice_about_incomplete_order','Notice about incomplete order','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4198,1,'vi','plugins/ecommerce/order','notice_about_incomplete_order_description','Remind email about uncompleted order will be send to <strong>:email</strong>?','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4199,1,'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.','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4200,1,'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:','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4201,1,'vi','plugins/ecommerce/order','send_an_email_to_recover_this_order','Send an email to customer to recover this order','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4202,1,'vi','plugins/ecommerce/order','see_maps','See maps','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4203,1,'vi','plugins/ecommerce/order','one_or_more_products_dont_have_enough_quantity','One or more products don\'t have enough quantity!','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4204,1,'vi','plugins/ecommerce/order','payment_info','Payment Info','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4205,1,'vi','plugins/ecommerce/order','payment_method_refund_automatic','Your customer will be refunded using :method automatically.','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4206,1,'vi','plugins/ecommerce/order','order','Order','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4207,1,'vi','plugins/ecommerce/order','create_a_new_product','Create a new product','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4208,1,'vi','plugins/ecommerce/order','out_of_stock','Out of stock','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4209,1,'vi','plugins/ecommerce/order','products_available','product(s) available','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4210,1,'vi','plugins/ecommerce/order','no_products_found','No products found!','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4211,1,'vi','plugins/ecommerce/order','note','Note','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4212,1,'vi','plugins/ecommerce/order','note_for_order','Note for order...','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4213,1,'vi','plugins/ecommerce/order','add_discount','Add discount','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4214,1,'vi','plugins/ecommerce/order','discount','Discount','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4215,1,'vi','plugins/ecommerce/order','add_shipping_fee','Add shipping fee','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4216,1,'vi','plugins/ecommerce/order','shipping','Shipping','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4217,1,'vi','plugins/ecommerce/order','total_amount','Total amount','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4218,1,'vi','plugins/ecommerce/order','confirm_payment_and_create_order','Confirm payment and create order','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4219,1,'vi','plugins/ecommerce/order','paid','Paid','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4220,1,'vi','plugins/ecommerce/order','pay_later','Pay later','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4221,1,'vi','plugins/ecommerce/order','customer_information','Customer information','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4222,1,'vi','plugins/ecommerce/order','create_new_customer','Create new customer','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4223,1,'vi','plugins/ecommerce/order','no_customer_found','No customer found!','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4224,1,'vi','plugins/ecommerce/order','customer','Customer','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4225,1,'vi','plugins/ecommerce/order','orders','order(s)','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4226,1,'vi','plugins/ecommerce/order','shipping_address','Shipping Address','2023-05-02 21:01:06','2023-05-02 21:01:06'),(4227,1,'vi','plugins/ecommerce/order','see_on_maps','See on maps','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4228,1,'vi','plugins/ecommerce/order','price','Price','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4229,1,'vi','plugins/ecommerce/order','sku_optional','SKU (optional)','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4230,1,'vi','plugins/ecommerce/order','with_storehouse_management','With storehouse management?','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4231,1,'vi','plugins/ecommerce/order','quantity','Quantity','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4232,1,'vi','plugins/ecommerce/order','allow_customer_checkout_when_this_product_out_of_stock','Allow customer checkout when this product out of stock?','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4233,1,'vi','plugins/ecommerce/order','address','Address','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4234,1,'vi','plugins/ecommerce/order','phone','Phone','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4235,1,'vi','plugins/ecommerce/order','country','Country','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4236,1,'vi','plugins/ecommerce/order','state','State','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4237,1,'vi','plugins/ecommerce/order','city','City','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4238,1,'vi','plugins/ecommerce/order','zip_code','Zip code','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4239,1,'vi','plugins/ecommerce/order','discount_based_on','Discount based on','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4240,1,'vi','plugins/ecommerce/order','or_coupon_code','Or coupon code','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4241,1,'vi','plugins/ecommerce/order','description','Description','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4242,1,'vi','plugins/ecommerce/order','how_to_select_configured_shipping','How to select configured shipping?','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4243,1,'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','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4244,1,'vi','plugins/ecommerce/order','free_shipping','Free shipping','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4245,1,'vi','plugins/ecommerce/order','custom','Custom','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4246,1,'vi','plugins/ecommerce/order','email','Email','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4247,1,'vi','plugins/ecommerce/order','create_order','Create order','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4248,1,'vi','plugins/ecommerce/order','close','Close','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4249,1,'vi','plugins/ecommerce/order','confirm_payment_is_paid_for_this_order','Confirm payment is paid for this order','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4250,1,'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','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4251,1,'vi','plugins/ecommerce/order','select_payment_method','Select payment method','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4252,1,'vi','plugins/ecommerce/order','cash_on_delivery_cod','Cash on delivery (COD)','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4253,1,'vi','plugins/ecommerce/order','bank_transfer','Bank transfer','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4254,1,'vi','plugins/ecommerce/order','paid_amount','Paid amount','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4255,1,'vi','plugins/ecommerce/order','confirm_that_payment_for_this_order_will_be_paid_later','Confirm that payment for this order will be paid later','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4256,1,'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','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4257,1,'vi','plugins/ecommerce/order','pending_amount','Pending amount','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4258,1,'vi','plugins/ecommerce/order','update_email','Update email','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4259,1,'vi','plugins/ecommerce/order','save','Save','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4260,1,'vi','plugins/ecommerce/order','cancel','Cancel','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4261,1,'vi','plugins/ecommerce/order','create_a_new_order','Create a new order','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4262,1,'vi','plugins/ecommerce/order','search_or_create_new_product','Search or create a new product','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4263,1,'vi','plugins/ecommerce/order','search_or_create_new_customer','Search or create a new customer','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4264,1,'vi','plugins/ecommerce/order','discount_description','Discount description','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4265,1,'vi','plugins/ecommerce/order','cant_select_out_of_stock_product','Cannot select out of stock product!','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4266,1,'vi','plugins/ecommerce/payment','name','Thanh toán','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4267,1,'vi','plugins/ecommerce/payment','payment_method','Phương thức thanh toán','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4268,1,'vi','plugins/ecommerce/payment','view_payment','Xem thanh toán #','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4269,1,'vi','plugins/ecommerce/payment','charge_id','Mã giao dịch','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4270,1,'vi','plugins/ecommerce/payment','amount','Số tiền','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4271,1,'vi','plugins/ecommerce/payment','currency','Đơn vị tiền tệ','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4272,1,'vi','plugins/ecommerce/payment','user','Người dùng','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4273,1,'vi','plugins/ecommerce/payment','paypal_name_required','Tên của phương thức PayPal là bắt buộc!','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4274,1,'vi','plugins/ecommerce/payment','paypal_name_max','Tên của phương thức PayPal quá dài!','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4275,1,'vi','plugins/ecommerce/payment','status','Trạng thái','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4276,1,'vi','plugins/ecommerce/payment','enabled','Bật','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4277,1,'vi','plugins/ecommerce/payment','disabled','Tắt','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4278,1,'vi','plugins/ecommerce/payment','client_id','Client ID','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4279,1,'vi','plugins/ecommerce/payment','client_secret','Client Secret','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4280,1,'vi','plugins/ecommerce/payment','mode','Chế độ','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4281,1,'vi','plugins/ecommerce/payment','sandbox','Sandbox','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4282,1,'vi','plugins/ecommerce/payment','live','Live','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4283,1,'vi','plugins/ecommerce/payment','enable_payment_log','Bật lưu nhật ký thanh toán','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4284,1,'vi','plugins/ecommerce/payment','yes','Có','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4285,1,'vi','plugins/ecommerce/payment','no','Không','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4286,1,'vi','plugins/ecommerce/payment','client_key','Client Key','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4287,1,'vi','plugins/ecommerce/payment','paypal','PayPal','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4288,1,'vi','plugins/ecommerce/payment','action','Hành động','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4289,1,'vi','plugins/ecommerce/payment','go_back','Quay lại','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4290,1,'vi','plugins/ecommerce/payment','view','Xem','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4291,1,'vi','plugins/ecommerce/payment','cash_on_delivery','Thanh toán khi nhận hàng (COD)','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4292,1,'vi','plugins/ecommerce/payment','via_bank_transfer','Thông qua chuyển khoản ngân hàng','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4293,1,'vi','plugins/ecommerce/payment','payment_via_cart','Thanh toán bằng thẻ','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4294,1,'vi','plugins/ecommerce/payment','card_number','Số thẻ','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4295,1,'vi','plugins/ecommerce/payment','full_name','Tên trên thẻ','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4296,1,'vi','plugins/ecommerce/payment','payment_via_paypal','Thanh toán thông qua PayPal','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4297,1,'vi','plugins/ecommerce/payment','mm_yy','MM/YY','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4298,1,'vi','plugins/ecommerce/payment','cvc','CVC','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4299,1,'vi','plugins/ecommerce/payment','details','Chi tiết','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4300,1,'vi','plugins/ecommerce/payment','payer_name','Người thanh toán','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4301,1,'vi','plugins/ecommerce/payment','email','Địa chỉ email','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4302,1,'vi','plugins/ecommerce/payment','phone','Điện thoại','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4303,1,'vi','plugins/ecommerce/payment','country','Quốc gia','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4304,1,'vi','plugins/ecommerce/payment','shipping_address','Địa chỉ giao hàng','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4305,1,'vi','plugins/ecommerce/payment','payment_details','Chi tiết giao dịch','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4306,1,'vi','plugins/ecommerce/payment','card','Thẻ','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4307,1,'vi','plugins/ecommerce/payment','address','Địa chỉ','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4308,1,'vi','plugins/ecommerce/payment','new_payment','Thanh toán cho đơn hàng :id','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4309,1,'vi','plugins/ecommerce/payment','payment_id','Mã thanh toán','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4310,1,'vi','plugins/ecommerce/prices','name','Price','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4311,1,'vi','plugins/ecommerce/prices','create','New price','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4312,1,'vi','plugins/ecommerce/prices','edit','Edit price','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4313,1,'vi','plugins/ecommerce/prices','list','List price','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4314,1,'vi','plugins/ecommerce/product-attribute-sets','name','Product attribute sets','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4315,1,'vi','plugins/ecommerce/product-attribute-sets','create','New product attribute set','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4316,1,'vi','plugins/ecommerce/product-attribute-sets','edit','Edit product attribute set','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4317,1,'vi','plugins/ecommerce/product-attribute-sets','visible_in_categories','Visible in categories','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4318,1,'vi','plugins/ecommerce/product-attribute-sets','product_with_more_version','Product with more version','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4319,1,'vi','plugins/ecommerce/product-attribute-sets','create_a_version','Create a version','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4320,1,'vi','plugins/ecommerce/product-attribute-sets','enabled','Enabled','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4321,1,'vi','plugins/ecommerce/product-attribute-sets','attributes','Attributes','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4322,1,'vi','plugins/ecommerce/product-attribute-sets','price','Price','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4323,1,'vi','plugins/ecommerce/product-attribute-sets','edit_btn','Edit','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4324,1,'vi','plugins/ecommerce/product-attribute-sets','remove_btn','Remove','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4325,1,'vi','plugins/ecommerce/product-attribute-sets','product','Product','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4326,1,'vi','plugins/ecommerce/product-attribute-sets','back_to_product','Back to product','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4327,1,'vi','plugins/ecommerce/product-attribute-sets','save','Save','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4328,1,'vi','plugins/ecommerce/product-attribute-sets','other_existing_versions','Other existing versions','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4329,1,'vi','plugins/ecommerce/product-attribute-sets','version_information','Version information','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4330,1,'vi','plugins/ecommerce/product-attribute-sets','add_rule','Add rule','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4331,1,'vi','plugins/ecommerce/product-attribute-sets','rules','Rules','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4332,1,'vi','plugins/ecommerce/product-attribute-sets','pricing','Pricing','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4333,1,'vi','plugins/ecommerce/product-attribute-sets','sale_price','Sale price','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4334,1,'vi','plugins/ecommerce/product-attribute-sets','sale_type','Sale type','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4335,1,'vi','plugins/ecommerce/product-attribute-sets','no_sale_price','No sale price','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4336,1,'vi','plugins/ecommerce/product-attribute-sets','always_on_sale','Always on sale','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4337,1,'vi','plugins/ecommerce/product-attribute-sets','limited_time','Limited time','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4338,1,'vi','plugins/ecommerce/product-attribute-sets','from','From','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4339,1,'vi','plugins/ecommerce/product-attribute-sets','to','To','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4340,1,'vi','plugins/ecommerce/product-attribute-sets','storehouse','Storehouse','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4341,1,'vi','plugins/ecommerce/product-attribute-sets','no_storehouse_management','No storehouse management','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4342,1,'vi','plugins/ecommerce/product-attribute-sets','with_storehouse_management','With storehouse management','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4343,1,'vi','plugins/ecommerce/product-attribute-sets','quantity','Quantity','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4344,1,'vi','plugins/ecommerce/product-attribute-sets','allow_customer_checkout_out_of_stock','Allow customer checkout when this product out of stock','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4345,1,'vi','plugins/ecommerce/product-attribute-sets','shipping','Shipping','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4346,1,'vi','plugins/ecommerce/product-attribute-sets','length','Length','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4347,1,'vi','plugins/ecommerce/product-attribute-sets','wide','Wide','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4348,1,'vi','plugins/ecommerce/product-attribute-sets','height','Height','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4349,1,'vi','plugins/ecommerce/product-attribute-sets','weight','Weight','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4350,1,'vi','plugins/ecommerce/product-attribute-sets','version_images','Version images','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4351,1,'vi','plugins/ecommerce/product-attribute-sets','add_new_image','Add new image','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4352,1,'vi','plugins/ecommerce/product-attribute-sets','attribute_set','Attribute set','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4353,1,'vi','plugins/ecommerce/product-attribute-sets','value','Value','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4354,1,'vi','plugins/ecommerce/product-attribute-sets','dropdown_swatch','Dropdown Swatch','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4355,1,'vi','plugins/ecommerce/product-attribute-sets','visual_swatch','Visual Swatch','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4356,1,'vi','plugins/ecommerce/product-attribute-sets','text_swatch','Text Swatch','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4357,1,'vi','plugins/ecommerce/product-attributes','name','Thuộc tính sản phẩm','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4358,1,'vi','plugins/ecommerce/product-attributes','create','Tạo','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4359,1,'vi','plugins/ecommerce/product-attributes','edit','Sửa','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4360,1,'vi','plugins/ecommerce/product-attributes','intro.title','Quản lý danh sách thuộc tính sản phẩm','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4361,1,'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 ...','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4362,1,'vi','plugins/ecommerce/product-attributes','intro.button_text','Tạo thuộc tính sản phẩm','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4363,1,'vi','plugins/ecommerce/product-categories','create','Create new product category','2023-05-02 21:01:07','2023-05-02 21:01:07'),(4364,1,'vi','plugins/ecommerce/product-categories','edit','Edit product category','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4365,1,'vi','plugins/ecommerce/product-categories','name','Danh mục sản phẩm','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4366,1,'vi','plugins/ecommerce/product-categories','none','Không có','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4367,1,'vi','plugins/ecommerce/product-categories','menu','Danh mục sản phẩm','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4368,1,'vi','plugins/ecommerce/product-categories','intro.title','Quản lý danh sách danh mục sản phẩm','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4369,1,'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ử ...','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4370,1,'vi','plugins/ecommerce/product-categories','intro.button_text','Tạo danh mục sản phẩm','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4371,1,'vi','plugins/ecommerce/product-categories','total_products','Tổng sản phẩm: :total','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4372,1,'vi','plugins/ecommerce/product-collections','name','Nhóm sản phẩm','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4373,1,'vi','plugins/ecommerce/product-collections','create','Thêm nhóm sản phẩm','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4374,1,'vi','plugins/ecommerce/product-collections','edit','Sửa nhóm sản phẩm','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4375,1,'vi','plugins/ecommerce/product-collections','slug_help_block','Label key: <code>:slug</code>. We will use this key for filter.','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4376,1,'vi','plugins/ecommerce/product-collections','intro.title','Quản lý nhóm sản phẩm','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4377,1,'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.','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4378,1,'vi','plugins/ecommerce/product-collections','intro.button_text','Tạo nhóm sản phẩm','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4379,1,'vi','plugins/ecommerce/products','name','Sản phẩm','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4380,1,'vi','plugins/ecommerce/products','create','Thêm sản phẩm mới','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4381,1,'vi','plugins/ecommerce/products','edit','Sửa sản phẩm - :name','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4382,1,'vi','plugins/ecommerce/products','form.name','Tên sản phẩm','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4383,1,'vi','plugins/ecommerce/products','form.name_placeholder','Tên sản phẩm (Tối đa 120 chữ cái)','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4384,1,'vi','plugins/ecommerce/products','form.description','Mô tả ngắn','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4385,1,'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)','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4386,1,'vi','plugins/ecommerce/products','form.categories','Danh mục','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4387,1,'vi','plugins/ecommerce/products','form.content','Chi tiết sản phẩm','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4388,1,'vi','plugins/ecommerce/products','form.price','Giá cơ bản','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4389,1,'vi','plugins/ecommerce/products','form.price_sale','Giá giảm','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4390,1,'vi','plugins/ecommerce/products','form.quantity','Số lượng','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4391,1,'vi','plugins/ecommerce/products','form.brand','Thương hiệu','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4392,1,'vi','plugins/ecommerce/products','form.width','Rộng','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4393,1,'vi','plugins/ecommerce/products','form.height','Cao','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4394,1,'vi','plugins/ecommerce/products','form.weight','Cân nặng','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4395,1,'vi','plugins/ecommerce/products','form.image','Hình ảnh','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4396,1,'vi','plugins/ecommerce/products','form.product_type.title','Loại sản phẩm','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4397,1,'vi','plugins/ecommerce/products','form.stock.title','Tình trạng kho','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4398,1,'vi','plugins/ecommerce/products','form.stock.in_stock','Còn hàng','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4399,1,'vi','plugins/ecommerce/products','form.stock.out_stock','Hết hàng','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4400,1,'vi','plugins/ecommerce/products','form.stock.allow_order_when_out','Cho phép đặt hàng khi hết','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4401,1,'vi','plugins/ecommerce/products','form.storehouse.title','Quản lý kho','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4402,1,'vi','plugins/ecommerce/products','form.storehouse.no_storehouse','Không quản lý kho','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4403,1,'vi','plugins/ecommerce/products','form.storehouse.storehouse','Quản lý kho','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4404,1,'vi','plugins/ecommerce/products','form.storehouse.quantity','Số lượng','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4405,1,'vi','plugins/ecommerce/products','form.shipping.title','Giao hàng','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4406,1,'vi','plugins/ecommerce/products','form.shipping.length','Chiều dài','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4407,1,'vi','plugins/ecommerce/products','form.shipping.wide','Chiều rộng','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4408,1,'vi','plugins/ecommerce/products','form.shipping.height','Chiều cao','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4409,1,'vi','plugins/ecommerce/products','form.shipping.weight','Cân nặng','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4410,1,'vi','plugins/ecommerce/products','form.date.start','Ngày bắt đầu','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4411,1,'vi','plugins/ecommerce/products','form.date.end','Ngày kết thúc','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4412,1,'vi','plugins/ecommerce/products','form.tags','Nhãn','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4413,1,'vi','plugins/ecommerce/products','form.tax','Thuế','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4414,1,'vi','plugins/ecommerce/products','form.taxes','Thuế','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4415,1,'vi','plugins/ecommerce/products','price','Giá cơ bản','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4416,1,'vi','plugins/ecommerce/products','price_sale','Giá giảm','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4417,1,'vi','plugins/ecommerce/products','quantity','Số lượng','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4418,1,'vi','plugins/ecommerce/products','type','Loại sản phẩm','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4419,1,'vi','plugins/ecommerce/products','image','Ảnh','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4420,1,'vi','plugins/ecommerce/products','sku','Mã sản phẩm','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4421,1,'vi','plugins/ecommerce/products','brand','Thương hiệu','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4422,1,'vi','plugins/ecommerce/products','cannot_delete','Product could not be deleted','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4423,1,'vi','plugins/ecommerce/products','product_deleted','Product deleted','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4424,1,'vi','plugins/ecommerce/products','products','Sản phẩm','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4425,1,'vi','plugins/ecommerce/products','menu','Sản phẩm','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4426,1,'vi','plugins/ecommerce/products','control.button_add_image','Thêm hình ảnh','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4427,1,'vi','plugins/ecommerce/products','overview','Tổng quan','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4428,1,'vi','plugins/ecommerce/products','attributes','Thuộc tính','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4429,1,'vi','plugins/ecommerce/products','product_has_variations','Sản phẩm có nhiều phiên bản','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4430,1,'vi','plugins/ecommerce/products','manage_products','Quản lý danh sách sản phẩm','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4431,1,'vi','plugins/ecommerce/products','add_new_product','Tạo sản phẩm','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4432,1,'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.','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4433,1,'vi','plugins/ecommerce/reports','name','Báo cáo','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4434,1,'vi','plugins/ecommerce/reports','widget.order.title','Đơn hàng','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4435,1,'vi','plugins/ecommerce/reports','count.revenue','Doanh thu hôm nay','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4436,1,'vi','plugins/ecommerce/reports','count.orders','Đơn hàng hôm nay','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4437,1,'vi','plugins/ecommerce/reports','count.products','Sản phẩm','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4438,1,'vi','plugins/ecommerce/reports','count.customers','Khách hàng','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4439,1,'vi','plugins/ecommerce/reports','product_name','Tên sản phẩm','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4440,1,'vi','plugins/ecommerce/reports','quantity','Số lượng','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4441,1,'vi','plugins/ecommerce/reports','revenue_statistics','Thống kê doanh thu','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4442,1,'vi','plugins/ecommerce/reports','top_selling_products','Sản phẩm bán chạy trong tháng','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4443,1,'vi','plugins/ecommerce/review','name','Đánh giá','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4444,1,'vi','plugins/ecommerce/review','list_review','Khách hàng đánh giá','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4445,1,'vi','plugins/ecommerce/review','add_review','Thêm đánh giá','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4446,1,'vi','plugins/ecommerce/review','delete_review','Xóa đánh giá','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4447,1,'vi','plugins/ecommerce/review','create_review','Tạo đánh giá','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4448,1,'vi','plugins/ecommerce/review','please_select_rating','Chọn đánh giá','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4449,1,'vi','plugins/ecommerce/review','comment','Bình luận','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4450,1,'vi','plugins/ecommerce/review','approve','Chấp thuận','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4451,1,'vi','plugins/ecommerce/review','approved','Đã chấp thuận','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4452,1,'vi','plugins/ecommerce/review','disapprove','Không chấp thuận','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4453,1,'vi','plugins/ecommerce/review','disapproved','Đã không chấp thuận','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4454,1,'vi','plugins/ecommerce/review','product','Sản phẩm','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4455,1,'vi','plugins/ecommerce/review','user','Người dùng','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4456,1,'vi','plugins/ecommerce/review','star','Sao','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4457,1,'vi','plugins/ecommerce/review','status','Trạng thái','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4458,1,'vi','plugins/ecommerce/review','intro.title','Quản lý danh sách nhận xét của khách hàng','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4459,1,'vi','plugins/ecommerce/review','intro.description','Lưu trữ các nhận xét, đánh giá của khách hàng','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4460,1,'vi','plugins/ecommerce/shipping','name','Phí vận chuyển','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4461,1,'vi','plugins/ecommerce/shipping','shipping','Vận chuyển','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4462,1,'vi','plugins/ecommerce/shipping','title','Title','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4463,1,'vi','plugins/ecommerce/shipping','country','Quốc gia','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4464,1,'vi','plugins/ecommerce/shipping','state','State','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4465,1,'vi','plugins/ecommerce/shipping','city','City','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4466,1,'vi','plugins/ecommerce/shipping','amount','Amount','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4467,1,'vi','plugins/ecommerce/shipping','enable','Enable','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4468,1,'vi','plugins/ecommerce/shipping','enabled','Enabled','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4469,1,'vi','plugins/ecommerce/shipping','disable','Disable','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4470,1,'vi','plugins/ecommerce/shipping','disabled','Disabled','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4471,1,'vi','plugins/ecommerce/shipping','create_shipping','Create a shipping','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4472,1,'vi','plugins/ecommerce/shipping','edit_shipping','Edit shipping #','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4473,1,'vi','plugins/ecommerce/shipping','status','Status','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4474,1,'vi','plugins/ecommerce/shipping','shipping_methods','Phương thức vận chuyển','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4475,1,'vi','plugins/ecommerce/shipping','create_shipping_method','Tạo phương thức vận chuyển','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4476,1,'vi','plugins/ecommerce/shipping','edit_shipping_method','Sửa phương thức vận chuyển','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4477,1,'vi','plugins/ecommerce/shipping','add_shipping_region','Thêm khu vực vận chuyển','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4478,1,'vi','plugins/ecommerce/shipping','methods.default','Default','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4479,1,'vi','plugins/ecommerce/shipping','statuses.not_approved','Not approved','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4480,1,'vi','plugins/ecommerce/shipping','statuses.approved','Approved','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4481,1,'vi','plugins/ecommerce/shipping','statuses.picking','Picking','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4482,1,'vi','plugins/ecommerce/shipping','statuses.delay_picking','Delay picking','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4483,1,'vi','plugins/ecommerce/shipping','statuses.picked','Picked','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4484,1,'vi','plugins/ecommerce/shipping','statuses.not_picked','Not picked','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4485,1,'vi','plugins/ecommerce/shipping','statuses.delivering','Delivering','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4486,1,'vi','plugins/ecommerce/shipping','statuses.delivered','Delivered','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4487,1,'vi','plugins/ecommerce/shipping','statuses.not_delivered','Not delivered','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4488,1,'vi','plugins/ecommerce/shipping','statuses.audited','Audited','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4489,1,'vi','plugins/ecommerce/shipping','statuses.canceled','Canceled','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4490,1,'vi','plugins/ecommerce/shipping','cod_statuses.pending','Pending','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4491,1,'vi','plugins/ecommerce/shipping','cod_statuses.completed','Completed','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4492,1,'vi','plugins/ecommerce/store-locator','name','Địa chỉ cửa hàng','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4493,1,'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.','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4494,1,'vi','plugins/ecommerce/store-locator','shop_name','Tên cửa hàng','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4495,1,'vi','plugins/ecommerce/store-locator','phone','Điện thoại','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4496,1,'vi','plugins/ecommerce/store-locator','address','Địa chỉ','2023-05-02 21:01:08','2023-05-02 21:01:08'),(4497,1,'vi','plugins/ecommerce/tax','name','Thuế','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4498,1,'vi','plugins/ecommerce/tax','create','Tạo thuế','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4499,1,'vi','plugins/ecommerce/tax','edit','Chỉnh sửa thuế :title','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4500,1,'vi','plugins/ecommerce/tax','title','Tiêu đề','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4501,1,'vi','plugins/ecommerce/tax','percentage','Tỉ lệ phần trăm %','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4502,1,'vi','plugins/ecommerce/tax','priority','Thứ tự ưu tiên','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4503,1,'vi','plugins/ecommerce/tax','select_tax','-- lựa chọn --','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4504,1,'en','plugins/faq/faq-category','name','Categories','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4505,1,'en','plugins/faq/faq-category','create','New category','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4506,1,'en','plugins/faq/faq','name','FAQ','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4507,1,'en','plugins/faq/faq','create','New faq','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4508,1,'en','plugins/faq/faq','question','Question','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4509,1,'en','plugins/faq/faq','answer','Answer','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4510,1,'en','plugins/faq/faq','category','Category','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4511,1,'en','plugins/faq/faq','all','All','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4512,1,'en','plugins/faq/faq','faq_schema_config','FAQ schema configuration (:link)','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4513,1,'en','plugins/faq/faq','learn_more','Learn more','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4514,1,'en','plugins/faq/faq','settings.title','FAQ','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4515,1,'en','plugins/faq/faq','settings.description','Settings for FAQ','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4516,1,'en','plugins/faq/faq','settings.enable_faq_schema','Enable FAQ Schema?','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4517,1,'en','plugins/faq/faq','settings.enable_faq_schema_description','Learn more: https://developers.google.com/search/docs/data-types/faqpage','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4518,1,'en','plugins/faq/faq','select_category','Select a category','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4519,1,'en','plugins/faq/faq','add_item','Add item','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4520,1,'vi','plugins/faq/faq-category','create','Thêm danh mục','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4521,1,'vi','plugins/faq/faq-category','edit','Sửa danh mục','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4522,1,'vi','plugins/faq/faq-category','name','Danh mục','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4523,1,'vi','plugins/faq/faq','name','Câu hỏi thường gặp','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4524,1,'vi','plugins/faq/faq','create','Thêm câu hỏi','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4525,1,'vi','plugins/faq/faq','edit','Sửa câu hỏi','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4526,1,'vi','plugins/faq/faq','question','Câu hỏi','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4527,1,'vi','plugins/faq/faq','answer','Trả lời','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4528,1,'en','plugins/language/language','name','Languages','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4529,1,'en','plugins/language/language','choose_language','Choose a language','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4530,1,'en','plugins/language/language','select_language','Select language','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4531,1,'en','plugins/language/language','choose_language_helper','You can choose a language in the list or directly edit it below.','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4532,1,'en','plugins/language/language','language_name','Language name','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4533,1,'en','plugins/language/language','language_name_helper','The name is how it is displayed on your site (for example: English).','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4534,1,'en','plugins/language/language','locale','Locale','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4535,1,'en','plugins/language/language','locale_helper','Laravel Locale for the language (for example: <code>en</code>).','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4536,1,'en','plugins/language/language','language_code','Language code','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4537,1,'en','plugins/language/language','language_code_helper','Language code - preferably 2-letters ISO 639-1 (for example: en)','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4538,1,'en','plugins/language/language','text_direction','Text direction','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4539,1,'en','plugins/language/language','text_direction_helper','Choose the text direction for the language','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4540,1,'en','plugins/language/language','left_to_right','Left to right','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4541,1,'en','plugins/language/language','right_to_left','Right to left','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4542,1,'en','plugins/language/language','flag','Flag','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4543,1,'en','plugins/language/language','flag_helper','Choose a flag for the language.','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4544,1,'en','plugins/language/language','order','Order','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4545,1,'en','plugins/language/language','order_helper','Position of the language in the language switcher','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4546,1,'en','plugins/language/language','add_new_language','Add new language','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4547,1,'en','plugins/language/language','code','Code','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4548,1,'en','plugins/language/language','default_language','Is default?','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4549,1,'en','plugins/language/language','actions','Actions','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4550,1,'en','plugins/language/language','translations','Translations','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4551,1,'en','plugins/language/language','edit','Edit','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4552,1,'en','plugins/language/language','edit_tooltip','Edit this language','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4553,1,'en','plugins/language/language','delete','Delete','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4554,1,'en','plugins/language/language','delete_tooltip','Delete this language and all its associated data','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4555,1,'en','plugins/language/language','choose_default_language','Choose :language as default language','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4556,1,'en','plugins/language/language','current_language','Current record\'s language','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4557,1,'en','plugins/language/language','edit_related','Edit related language for this record','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4558,1,'en','plugins/language/language','add_language_for_item','Add other language version for this record','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4559,1,'en','plugins/language/language','settings','Settings','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4560,1,'en','plugins/language/language','language_hide_default','Hide default language from URL?','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4561,1,'en','plugins/language/language','language_display_flag_only','Flag only','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4562,1,'en','plugins/language/language','language_display_name_only','Name only','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4563,1,'en','plugins/language/language','language_display_all','Display all flag and name','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4564,1,'en','plugins/language/language','language_display','Language display','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4565,1,'en','plugins/language/language','switcher_display','Switcher language display','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4566,1,'en','plugins/language/language','language_switcher_display_dropdown','Dropdown','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4567,1,'en','plugins/language/language','language_switcher_display_list','List','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4568,1,'en','plugins/language/language','current_language_edit_notification','You are editing \"<strong class=\"current_language_text\">:language</strong>\" version','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4569,1,'en','plugins/language/language','confirm-change-language','Confirm change language','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4570,1,'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!','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4571,1,'en','plugins/language/language','confirm-change-language-btn','Confirm change','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4572,1,'en','plugins/language/language','hide_languages','Hide languages','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4573,1,'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.','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4574,1,'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.','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4575,1,'en','plugins/language/language','show_all','Show all','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4576,1,'en','plugins/language/language','change_language','Language','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4577,1,'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','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4578,1,'en','plugins/language/language','select_flag','Select a flag...','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4579,1,'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!','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4580,1,'en','plugins/language/language','added_already','This language was added already!','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4581,1,'en','plugins/language/language','language_auto_detect_user_language','Auto detect user language?','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4582,1,'vi','plugins/language/language','name','Ngôn ngữ','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4583,1,'vi','plugins/language/language','choose_language','Chọn một ngôn ngữ','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4584,1,'vi','plugins/language/language','select_language','Chọn ngôn ngữ','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4585,1,'vi','plugins/language/language','choose_language_helper','Bạn có thể chọn 1 ngôn ngữ trong danh sách hoặc nhập trực tiếp nội dung xuống các mục dưới','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4586,1,'vi','plugins/language/language','language_name','Tên đầy đủ','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4587,1,'vi','plugins/language/language','language_name_helper','Tên ngôn ngữ sẽ được hiển thị trên website (ví dụ: Tiếng Anh).','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4588,1,'vi','plugins/language/language','locale','Locale','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4589,1,'vi','plugins/language/language','locale_helper','Laravel Locale cho ngôn ngữ này (ví dụ: <code>en</code>).','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4590,1,'vi','plugins/language/language','language_code','Mã ngôn ngữ','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4591,1,'vi','plugins/language/language','language_code_helper','Mã ngôn ngữ - ưu tiên dạng 2-kí tự theo chuẩn ISO 639-1 (ví dụ: en)','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4592,1,'vi','plugins/language/language','text_direction','Hướng viết chữ','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4593,1,'vi','plugins/language/language','text_direction_helper','Chọn hướng viết chữ cho ngôn ngữ này','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4594,1,'vi','plugins/language/language','left_to_right','Trái qua phải','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4595,1,'vi','plugins/language/language','right_to_left','Phải qua trái','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4596,1,'vi','plugins/language/language','flag','Cờ','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4597,1,'vi','plugins/language/language','flag_helper','Chọn 1 cờ cho ngôn ngữ này','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4598,1,'vi','plugins/language/language','order','Sắp xếp','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4599,1,'vi','plugins/language/language','order_helper','Vị trí của ngôn ngữ hiển thị trong mục chuyển đổi ngôn ngữ','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4600,1,'vi','plugins/language/language','add_new_language','Thêm ngôn ngữ mới','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4601,1,'vi','plugins/language/language','code','Mã','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4602,1,'vi','plugins/language/language','default_language','Ngôn ngữ mặc định','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4603,1,'vi','plugins/language/language','actions','Hành động','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4604,1,'vi','plugins/language/language','translations','Dịch','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4605,1,'vi','plugins/language/language','edit','Sửa','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4606,1,'vi','plugins/language/language','edit_tooltip','Sửa ngôn ngữ này','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4607,1,'vi','plugins/language/language','delete','Xóa','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4608,1,'vi','plugins/language/language','delete_tooltip','Xóa ngôn ngữ này và các dữ liệu liên quan','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4609,1,'vi','plugins/language/language','choose_default_language','Chọn :language làm ngôn ngữ mặc định','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4610,1,'vi','plugins/language/language','add_language_for_item','Thêm ngôn ngữ khác cho bản ghi này','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4611,1,'vi','plugins/language/language','current_language','Ngôn ngữ hiện tại của bản ghi','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4612,1,'vi','plugins/language/language','edit_related','Sửa bản ngôn ngữ khác của bản ghi này','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4613,1,'vi','plugins/language/language','confirm-change-language','Xác nhận thay đổi ngôn ngữ','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4614,1,'vi','plugins/language/language','confirm-change-language-btn','Xác nhận thay đổi','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4615,1,'vi','plugins/language/language','confirm-change-language-message','Bạn có chắc chắn muốn thay đổi ngôn ngữ sang tiếng \"<strong class=\"change_to_language_text\"></strong>\" ? Điều này sẽ ghi đè bản ghi tiếng \"<strong class=\"change_to_language_text\"></strong>\" nếu nó đã tồn tại!','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4616,1,'vi','plugins/language/language','current_language_edit_notification','Bạn đang chỉnh sửa phiên bản tiếng \"<strong class=\"current_language_text\">:language</strong>\"','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4617,1,'vi','plugins/language/language','hide_languages','Ẩn ngôn ngữ','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4618,1,'vi','plugins/language/language','hide_languages_description','Bạn có thể hoàn toàn ẩn ngôn ngữ cụ thể đối với người truy cập và công cụ tìm kiếm, nhưng sẽ vẫn hiển thị trong trang quản trị. Điều này cho phép bạn biết những ngôn ngữ nào đang được xử lý.','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4619,1,'vi','plugins/language/language','hide_languages_helper_display_hidden','{0} Tất cả ngôn ngữ đang được hiển thị.|{1} :language đang bị ẩn đối với người truy cập.|[2, Inf] :language đang bị ẩn đối với người truy cập.','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4620,1,'vi','plugins/language/language','language_display','Hiển thị ngôn ngữ','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4621,1,'vi','plugins/language/language','language_display_all','Hiển thị cả cờ và tên ngôn ngữ','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4622,1,'vi','plugins/language/language','language_display_flag_only','Chỉ hiển thị cờ','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4623,1,'vi','plugins/language/language','language_display_name_only','Chỉ hiển thị tên','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4624,1,'vi','plugins/language/language','language_hide_default','Ẩn ngôn ngữ mặc định trên URL','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4625,1,'vi','plugins/language/language','language_switcher_display_dropdown','Dropdown','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4626,1,'vi','plugins/language/language','language_switcher_display_list','Danh sách','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4627,1,'vi','plugins/language/language','settings','Cài đặt','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4628,1,'vi','plugins/language/language','switcher_display','Hiển thị bộ chuyển đổi ngôn ngữ','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4629,1,'vi','plugins/language/language','change_language','Ngôn ngữ','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4630,1,'vi','plugins/language/language','show_all','Hiển thị tất cả','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4631,1,'vi','plugins/language/language','language_show_default_item_if_current_version_not_existed','Hiển thị bản ghi ở ngôn ngữ mặc định nếu phiên bản cho ngôn ngữ hiện tại chưa có','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4632,1,'en','plugins/location/bulk-import','name','Bulk Import','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4633,1,'en','plugins/location/bulk-import','loading_text','Importing','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4634,1,'en','plugins/location/bulk-import','imported_successfully','Imported successfully.','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4635,1,'en','plugins/location/bulk-import','please_choose_the_file_mime','Please choose the file mime :types','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4636,1,'en','plugins/location/bulk-import','please_choose_the_file','Please choose the file','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4637,1,'en','plugins/location/bulk-import','start_import','Start Import','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4638,1,'en','plugins/location/bulk-import','note','Note!','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4639,1,'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!','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4640,1,'en','plugins/location/bulk-import','results','Result: :success successes, :failed failures','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4641,1,'en','plugins/location/bulk-import','failures','Failures','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4642,1,'en','plugins/location/bulk-import','tables.import','Import','2023-05-02 21:01:09','2023-05-02 21:01:09'),(4643,1,'en','plugins/location/bulk-import','template','Template','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4644,1,'en','plugins/location/bulk-import','rules','Rules','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4645,1,'en','plugins/location/bulk-import','choose_file_with_mime','Choose file with mime: (:types)','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4646,1,'en','plugins/location/bulk-import','choose_file','Choose file','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4647,1,'en','plugins/location/bulk-import','menu','Import locations','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4648,1,'en','plugins/location/bulk-import','download-csv-file','Download CSV template','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4649,1,'en','plugins/location/bulk-import','download-excel-file','Download Excel template','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4650,1,'en','plugins/location/bulk-import','downloading','Downloading...','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4651,1,'en','plugins/location/bulk-import','export.template.input_error','Input error','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4652,1,'en','plugins/location/bulk-import','export.template.number_not_allowed','Number is not allowed!','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4653,1,'en','plugins/location/bulk-import','export.template.allowed_input','Allowed input','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4654,1,'en','plugins/location/bulk-import','export.template.prompt_decimal','Only numbers or decimals are accepted and greater than or equal to :min.','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4655,1,'en','plugins/location/bulk-import','export.template.prompt_whole_number','Only numbers are accepted and greater than or equal to :min.','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4656,1,'en','plugins/location/bulk-import','export.template.prompt_list','Please pick a value from the drop-down list.','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4657,1,'en','plugins/location/bulk-import','export.template.pick_from_list','Pick from list','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4658,1,'en','plugins/location/bulk-import','export.template.value_not_in_list','Value is not in list.','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4659,1,'en','plugins/location/bulk-import','export.template.max_text_length','Max text length','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4660,1,'en','plugins/location/bulk-import','export.template.prompt_max_text_length','Only accept text with length less than or equal to :max.','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4661,1,'en','plugins/location/bulk-import','import_failed_description','Import failed, please check the errors below!','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4662,1,'en','plugins/location/bulk-import','available_enable_multi_language','Only available when you enable \"Is Multi Language?\"','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4663,1,'en','plugins/location/bulk-import','import_type_required_if','The :attribute field is required when \"Import Type\" is :value.','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4664,1,'en','plugins/location/bulk-import','import_available_data','Import available data','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4665,1,'en','plugins/location/bulk-import','import','Import','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4666,1,'en','plugins/location/bulk-import','import_available_data_confirmation','Import available data confirmation','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4667,1,'en','plugins/location/bulk-import','import_available_data_confirmation_content','Do you really want to import states/cities for this country?','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4668,1,'en','plugins/location/city','name','Cities','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4669,1,'en','plugins/location/city','create','New city','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4670,1,'en','plugins/location/city','state','State','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4671,1,'en','plugins/location/city','select_state','Select state...','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4672,1,'en','plugins/location/city','select_city','Select city...','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4673,1,'en','plugins/location/city','country','Country','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4674,1,'en','plugins/location/city','select_country','Select country...','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4675,1,'en','plugins/location/city','city','City','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4676,1,'en','plugins/location/country','name','Countries','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4677,1,'en','plugins/location/country','create','New country','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4678,1,'en','plugins/location/country','nationality','Nationality','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4679,1,'en','plugins/location/country','code','Country ISO code','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4680,1,'en','plugins/location/country','code_placeholder','ISO country code, uppercase. Ex: US.','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4681,1,'en','plugins/location/country','code_helper','Find country ISO code from here: https://en.wikipedia.org/wiki/List_of_ISO_3166_country_codes','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4682,1,'en','plugins/location/location','name','Locations','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4683,1,'en','plugins/location/location','all_states','All states','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4684,1,'en','plugins/location/location','abbreviation','Abbreviation','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4685,1,'en','plugins/location/location','abbreviation_placeholder','E.g: CA','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4686,1,'en','plugins/location/location','exporting','Exporting','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4687,1,'en','plugins/location/location','total_country','Total countries','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4688,1,'en','plugins/location/location','total_state','Total states','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4689,1,'en','plugins/location/location','total_city','Total cities','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4690,1,'en','plugins/location/location','export_location','Export location','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4691,1,'en','plugins/location/location','start_export','Start exporting','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4692,1,'en','plugins/location/state','name','States','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4693,1,'en','plugins/location/state','create','New state','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4694,1,'en','plugins/location/state','country','Country','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4695,1,'en','plugins/location/state','select_country','Select a country...','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4696,1,'en','plugins/location/state','state','State','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4697,1,'vi','plugins/location/city','name','Quận/huyện','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4698,1,'vi','plugins/location/city','create','Thêm quận/huyện','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4699,1,'vi','plugins/location/city','edit','Sửa quận/huyện','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4700,1,'vi','plugins/location/city','state','Tỉnh','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4701,1,'vi','plugins/location/city','select_state','Lựa chọn tỉnh/thành phố...','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4702,1,'vi','plugins/location/city','select_city','Lựa chọn quận/huyện...','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4703,1,'vi','plugins/location/city','country','Quốc gia','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4704,1,'vi','plugins/location/city','select_country','Lựa chọn quốc gia...','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4705,1,'vi','plugins/location/city','city','Quận/huyện','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4706,1,'vi','plugins/location/country','name','Quốc gia','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4707,1,'vi','plugins/location/country','create','Thêm quốc gia','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4708,1,'vi','plugins/location/country','edit','Sửa quốc gia','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4709,1,'vi','plugins/location/country','nationality','Quốc tịch','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4710,1,'vi','plugins/location/location','name','Địa điểm','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4711,1,'vi','plugins/location/location','create','Thêm địa điểm','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4712,1,'vi','plugins/location/location','edit','Sửa địa điểm','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4713,1,'vi','plugins/location/location','all_states','Tất cả tỉnh thành','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4714,1,'vi','plugins/location/state','name','Tỉnh/thành phố','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4715,1,'vi','plugins/location/state','create','Thêm tỉnh/thành phố','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4716,1,'vi','plugins/location/state','edit','Sửa tỉnh/thành phố','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4717,1,'vi','plugins/location/state','country','Quốc gia','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4718,1,'vi','plugins/location/state','select_country','Lựa chọn quốc gia...','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4719,1,'vi','plugins/location/state','state','Tỉnh/thành phố','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4720,1,'en','plugins/newsletter/newsletter','name','Newsletters','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4721,1,'en','plugins/newsletter/newsletter','settings.email.templates.title','Newsletter','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4722,1,'en','plugins/newsletter/newsletter','settings.email.templates.description','Config newsletter email templates','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4723,1,'en','plugins/newsletter/newsletter','settings.email.templates.to_admin.title','Email send to admin','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4724,1,'en','plugins/newsletter/newsletter','settings.email.templates.to_admin.description','Template for sending email to admin','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4725,1,'en','plugins/newsletter/newsletter','settings.email.templates.to_user.title','Email send to user','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4726,1,'en','plugins/newsletter/newsletter','settings.email.templates.to_user.description','Template for sending email to subscriber','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4727,1,'en','plugins/newsletter/newsletter','settings.title','Newsletter','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4728,1,'en','plugins/newsletter/newsletter','settings.description','Settings for newsletter (auto send newsletter email to SendGrid, Mailchimp... when someone register newsletter on website).','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4729,1,'en','plugins/newsletter/newsletter','settings.mailchimp_api_key','Mailchimp API Key','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4730,1,'en','plugins/newsletter/newsletter','settings.mailchimp_list_id','Mailchimp List ID','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4731,1,'en','plugins/newsletter/newsletter','settings.mailchimp_list','Mailchimp List','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4732,1,'en','plugins/newsletter/newsletter','settings.sendgrid_api_key','Sendgrid API Key','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4733,1,'en','plugins/newsletter/newsletter','settings.sendgrid_list_id','Sendgrid List ID','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4734,1,'en','plugins/newsletter/newsletter','settings.sendgrid_list','Sendgrid List','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4735,1,'en','plugins/newsletter/newsletter','settings.enable_newsletter_contacts_list_api','Enable newsletter contacts list API?','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4736,1,'en','plugins/newsletter/newsletter','statuses.subscribed','Subscribed','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4737,1,'en','plugins/newsletter/newsletter','statuses.unsubscribed','Unsubscribed','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4738,1,'vi','plugins/newsletter/newsletter','name','Đăng ký nhận bản tin','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4739,1,'vi','plugins/newsletter/newsletter','settings.email.templates.title','Đăng ký nhận bản tin','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4740,1,'vi','plugins/newsletter/newsletter','settings.email.templates.description','Cấu hình email xác nhận đăng ký nhận bản tin','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4741,1,'vi','plugins/newsletter/newsletter','settings.email.templates.to_admin.title','Email gửi tới cho quản trị viên','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4742,1,'vi','plugins/newsletter/newsletter','settings.email.templates.to_admin.description','Mẫu email gửi tới cho quản trị viên','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4743,1,'vi','plugins/newsletter/newsletter','settings.email.templates.to_user.title','Email gửi tới cho người đăng ký','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4744,1,'vi','plugins/newsletter/newsletter','settings.email.templates.to_user.description','Mẫu email gửi tới cho người đăng ký','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4745,1,'vi','plugins/newsletter/newsletter','statuses.subscribed','Theo dõi','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4746,1,'vi','plugins/newsletter/newsletter','statuses.unsubscribed','Hủy theo dõi','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4747,1,'en','plugins/payment/payment','payments','Payments','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4748,1,'en','plugins/payment/payment','checkout_success','Checkout successfully!','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4749,1,'en','plugins/payment/payment','view_payment','View payment #','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4750,1,'en','plugins/payment/payment','charge_id','Charge ID','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4751,1,'en','plugins/payment/payment','amount','Amount','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4752,1,'en','plugins/payment/payment','currency','Currency','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4753,1,'en','plugins/payment/payment','user','User','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4754,1,'en','plugins/payment/payment','stripe','Stripe','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4755,1,'en','plugins/payment/payment','paypal','PayPal','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4756,1,'en','plugins/payment/payment','action','Action','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4757,1,'en','plugins/payment/payment','payment_via_card','Payment via card','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4758,1,'en','plugins/payment/payment','card_number','Card number','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4759,1,'en','plugins/payment/payment','full_name','Full name','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4760,1,'en','plugins/payment/payment','payment_via_paypal','Fast and safe online payment via PayPal.','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4761,1,'en','plugins/payment/payment','mm_yy','MM/YY','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4762,1,'en','plugins/payment/payment','cvc','CVC','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4763,1,'en','plugins/payment/payment','details','Details','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4764,1,'en','plugins/payment/payment','payer_name','Payer Name','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4765,1,'en','plugins/payment/payment','email','Email','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4766,1,'en','plugins/payment/payment','phone','Phone','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4767,1,'en','plugins/payment/payment','country','Country','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4768,1,'en','plugins/payment/payment','shipping_address','Shipping Address','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4769,1,'en','plugins/payment/payment','payment_details','Payment Details','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4770,1,'en','plugins/payment/payment','card','Card','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4771,1,'en','plugins/payment/payment','address','Address','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4772,1,'en','plugins/payment/payment','could_not_get_stripe_token','Could not get Stripe token to make a charge.','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4773,1,'en','plugins/payment/payment','payment_id','Payment ID','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4774,1,'en','plugins/payment/payment','payment_methods','Payment methods','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4775,1,'en','plugins/payment/payment','transactions','Transactions','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4776,1,'en','plugins/payment/payment','payment_methods_description','Setup payment methods for website','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4777,1,'en','plugins/payment/payment','paypal_description','Customer can buy product and pay directly via PayPal','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4778,1,'en','plugins/payment/payment','use','Use','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4779,1,'en','plugins/payment/payment','stripe_description','Customer can buy product and pay directly using Visa, Credit card via Stripe','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4780,1,'en','plugins/payment/payment','edit','Edit','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4781,1,'en','plugins/payment/payment','settings','Settings','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4782,1,'en','plugins/payment/payment','activate','Activate','2023-05-02 21:01:10','2023-05-02 21:01:10'),(4783,1,'en','plugins/payment/payment','deactivate','Deactivate','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4784,1,'en','plugins/payment/payment','update','Update','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4785,1,'en','plugins/payment/payment','configuration_instruction','Configuration instruction for :name','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4786,1,'en','plugins/payment/payment','configuration_requirement','To use :name, you need','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4787,1,'en','plugins/payment/payment','service_registration','Register with :name','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4788,1,'en','plugins/payment/payment','after_service_registration_msg','After registration at :name, you will have Client ID, Client Secret','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4789,1,'en','plugins/payment/payment','enter_client_id_and_secret','Enter Client ID, Secret into the box in right hand','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4790,1,'en','plugins/payment/payment','method_name','Method name','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4791,1,'en','plugins/payment/payment','please_provide_information','Please provide information','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4792,1,'en','plugins/payment/payment','client_id','Client ID','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4793,1,'en','plugins/payment/payment','client_secret','Client Secret','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4794,1,'en','plugins/payment/payment','secret','Secret','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4795,1,'en','plugins/payment/payment','stripe_key','Stripe Public Key','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4796,1,'en','plugins/payment/payment','stripe_secret','Stripe Private Key','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4797,1,'en','plugins/payment/payment','stripe_after_service_registration_msg','After registration at :name, you will have Public, Secret keys','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4798,1,'en','plugins/payment/payment','stripe_enter_client_id_and_secret','Enter Public, Secret keys into the box in right hand','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4799,1,'en','plugins/payment/payment','pay_online_via','Pay online via :name','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4800,1,'en','plugins/payment/payment','sandbox_mode','Sandbox mode','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4801,1,'en','plugins/payment/payment','deactivate_payment_method','Deactivate payment method','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4802,1,'en','plugins/payment/payment','deactivate_payment_method_description','Do you really want to deactivate this payment method?','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4803,1,'en','plugins/payment/payment','agree','Agree','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4804,1,'en','plugins/payment/payment','name','Payments','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4805,1,'en','plugins/payment/payment','create','New payment','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4806,1,'en','plugins/payment/payment','go_back','Go back','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4807,1,'en','plugins/payment/payment','information','Information','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4808,1,'en','plugins/payment/payment','methods.paypal','PayPal','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4809,1,'en','plugins/payment/payment','methods.cod','Cash on delivery (COD)','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4810,1,'en','plugins/payment/payment','methods.bank_transfer','Bank transfer','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4811,1,'en','plugins/payment/payment','statuses.pending','Pending','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4812,1,'en','plugins/payment/payment','statuses.completed','Completed','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4813,1,'en','plugins/payment/payment','statuses.refunding','Refunding','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4814,1,'en','plugins/payment/payment','statuses.refunded','Refunded','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4815,1,'en','plugins/payment/payment','statuses.fraud','Fraud','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4816,1,'en','plugins/payment/payment','statuses.failed','Failed','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4817,1,'en','plugins/payment/payment','payment_methods_instruction','Guide customers to pay directly. You can choose to pay by delivery or bank transfer','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4818,1,'en','plugins/payment/payment','payment_method_description','Payment guide - (Displayed on the notice of successful purchase and payment page)','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4819,1,'en','plugins/payment/payment','payment_via_cod','Cash on delivery (COD)','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4820,1,'en','plugins/payment/payment','payment_via_bank_transfer','Bank transfer','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4821,1,'en','plugins/payment/payment','payment_pending','Checkout successfully. Your payment is pending and will be checked by our staff.','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4822,1,'en','plugins/payment/payment','created_at','Created At','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4823,1,'en','plugins/payment/payment','payment_channel','Payment Channel','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4824,1,'en','plugins/payment/payment','total','Total','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4825,1,'en','plugins/payment/payment','status','Status','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4826,1,'en','plugins/payment/payment','default_payment_method','Default payment method','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4827,1,'en','plugins/payment/payment','turn_off_success','Turn off payment method successfully!','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4828,1,'en','plugins/payment/payment','saved_payment_method_success','Saved payment method successfully!','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4829,1,'en','plugins/payment/payment','saved_payment_settings_success','Saved payment settings successfully!','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4830,1,'en','plugins/payment/payment','payment_name','Name','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4831,1,'en','plugins/payment/payment','payment_not_found','Payment not found!','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4832,1,'en','plugins/payment/payment','refunds.title','Refunds','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4833,1,'en','plugins/payment/payment','refunds.id','ID','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4834,1,'en','plugins/payment/payment','refunds.breakdowns','Breakdowns','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4835,1,'en','plugins/payment/payment','refunds.gross_amount','Gross amount','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4836,1,'en','plugins/payment/payment','refunds.paypal_fee','PayPal fee','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4837,1,'en','plugins/payment/payment','refunds.net_amount','Net amount','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4838,1,'en','plugins/payment/payment','refunds.total_refunded_amount','Total refunded amount','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4839,1,'en','plugins/payment/payment','refunds.create_time','Create time','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4840,1,'en','plugins/payment/payment','refunds.update_time','Update time','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4841,1,'en','plugins/payment/payment','refunds.status','Status','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4842,1,'en','plugins/payment/payment','refunds.description','Description','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4843,1,'en','plugins/payment/payment','refunds.refunded_at','Refunded at','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4844,1,'en','plugins/payment/payment','refunds.error_message','Error message','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4845,1,'en','plugins/payment/payment','view_response_source','View response source','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4846,1,'en','plugins/payment/payment','status_is_not_completed','Status is not COMPLETED','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4847,1,'en','plugins/payment/payment','cannot_found_capture_id','Can not found capture id with payment detail','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4848,1,'en','plugins/payment/payment','amount_refunded','Amount refunded','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4849,1,'en','plugins/payment/payment','amount_remaining','Amount remaining','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4850,1,'en','plugins/payment/payment','paid_at','Paid At','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4851,1,'en','plugins/payment/payment','invalid_settings','Settings for :name are invalid!','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4852,1,'en','plugins/payment/payment','view_transaction','Transaction \":charge_id\"','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4853,1,'en','plugins/payment/payment','payment_description','Pay for your order #:order_id at :site_url','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4854,1,'vi','plugins/payment/payment','payments','Thanh toán','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4855,1,'vi','plugins/payment/payment','checkout_success','Thanh toán thành công!','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4856,1,'vi','plugins/payment/payment','view_payment','Xem thanh toán #','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4857,1,'vi','plugins/payment/payment','charge_id','Mã thanh toán','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4858,1,'vi','plugins/payment/payment','amount','Số tiền','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4859,1,'vi','plugins/payment/payment','currency','Loại tiền tệ','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4860,1,'vi','plugins/payment/payment','user','Người dùng','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4861,1,'vi','plugins/payment/payment','stripe','Stripe','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4862,1,'vi','plugins/payment/payment','paypal','PayPal','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4863,1,'vi','plugins/payment/payment','action','Hành động','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4864,1,'vi','plugins/payment/payment','payment_via_card','Thanh toán qua thẻ','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4865,1,'vi','plugins/payment/payment','card_number','Số thẻ','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4866,1,'vi','plugins/payment/payment','full_name','Họ tên','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4867,1,'vi','plugins/payment/payment','payment_via_paypal','Thanh toán qua PayPal','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4868,1,'vi','plugins/payment/payment','mm_yy','MM/YY','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4869,1,'vi','plugins/payment/payment','cvc','CVC','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4870,1,'vi','plugins/payment/payment','details','Chi tiết','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4871,1,'vi','plugins/payment/payment','payer_name','Tên người mua','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4872,1,'vi','plugins/payment/payment','email','Email','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4873,1,'vi','plugins/payment/payment','phone','Điện thoại','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4874,1,'vi','plugins/payment/payment','country','Quốc gia','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4875,1,'vi','plugins/payment/payment','shipping_address','Địa chỉ giao hàng','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4876,1,'vi','plugins/payment/payment','payment_details','Chi tiết thanh toán','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4877,1,'vi','plugins/payment/payment','card','Thẻ','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4878,1,'vi','plugins/payment/payment','address','Địa chỉ','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4879,1,'vi','plugins/payment/payment','could_not_get_stripe_token','Không thể lấy mã Stripe để thanh toán.','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4880,1,'vi','plugins/payment/payment','payment_id','Mã thanh toán','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4881,1,'vi','plugins/payment/payment','payment_methods','Phương thức thanh toán','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4882,1,'vi','plugins/payment/payment','transactions','Lịch sử giao dịch','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4883,1,'vi','plugins/payment/payment','payment_methods_description','Cài đặt các phương thức thanh toán cho website','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4884,1,'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','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4885,1,'vi','plugins/payment/payment','use','Dùng','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4886,1,'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','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4887,1,'vi','plugins/payment/payment','edit','Chỉnh sửa','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4888,1,'vi','plugins/payment/payment','settings','Cài đặt','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4889,1,'vi','plugins/payment/payment','activate','Kích hoạt','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4890,1,'vi','plugins/payment/payment','deactivate','Huỷ kích hoạt','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4891,1,'vi','plugins/payment/payment','update','Cập nhật','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4892,1,'vi','plugins/payment/payment','configuration_instruction','Hướng dẫn cấu hình :name','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4893,1,'vi','plugins/payment/payment','configuration_requirement','Để sử dụng :name bạn cần','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4894,1,'vi','plugins/payment/payment','service_registration','Đăng ký dịch vụ với :name','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4895,1,'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','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4896,1,'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','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4897,1,'vi','plugins/payment/payment','method_name','Tên phương thức','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4898,1,'vi','plugins/payment/payment','please_provide_information','Xin vui lòng cung cấp thông tin','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4899,1,'vi','plugins/payment/payment','client_id','Client ID','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4900,1,'vi','plugins/payment/payment','client_secret','Client Secret','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4901,1,'vi','plugins/payment/payment','stripe_key','Stripe Key','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4902,1,'vi','plugins/payment/payment','stripe_secret','Stripe Secret','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4903,1,'vi','plugins/payment/payment','stripe_after_service_registration_msg','After registration at :name, you will have Public, Secret keys','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4904,1,'vi','plugins/payment/payment','stripe_enter_client_id_and_secret','Enter Public, Secret keys into the box in right hand','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4905,1,'vi','plugins/payment/payment','secret','Secret','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4906,1,'vi','plugins/payment/payment','pay_online_via','Thanh toán online qua :name','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4907,1,'vi','plugins/payment/payment','sandbox_mode','Chế độ thử nghiệm','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4908,1,'vi','plugins/payment/payment','deactivate_payment_method','Huỷ kích hoạt phương thức','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4909,1,'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?','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4910,1,'vi','plugins/payment/payment','agree','Đồng ý','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4911,1,'vi','plugins/payment/payment','name','Thanh toán','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4912,1,'vi','plugins/payment/payment','create','Thêm thanh toán mới','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4913,1,'vi','plugins/payment/payment','go_back','Trở lại','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4914,1,'vi','plugins/payment/payment','information','Thông tin','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4915,1,'vi','plugins/payment/payment','methods.paypal','PayPal','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4916,1,'vi','plugins/payment/payment','methods.cod','Thanh toán khi giao hàng (COD)','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4917,1,'vi','plugins/payment/payment','methods.bank_transfer','Chuyển khoản qua ngân hàng','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4918,1,'vi','plugins/payment/payment','statuses.pending','Chưa hoàn tất','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4919,1,'vi','plugins/payment/payment','statuses.completed','Đã hoàn thành','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4920,1,'vi','plugins/payment/payment','statuses.refunding','Đang hoàn tiền','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4921,1,'vi','plugins/payment/payment','statuses.refunded','Đã hoàn tiền','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4922,1,'vi','plugins/payment/payment','statuses.fraud','Gian lận','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4923,1,'vi','plugins/payment/payment','statuses.failed','Thất bại','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4924,1,'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','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4925,1,'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)','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4926,1,'vi','plugins/payment/payment','payment_via_cod','Thanh toán khi nhận hàng (COD)','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4927,1,'vi','plugins/payment/payment','payment_via_bank_transfer','Chuyển khoản qua ngân hàng','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4928,1,'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.','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4929,1,'vi','plugins/payment/payment','created_at','Ngày tạo','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4930,1,'vi','plugins/payment/payment','payment_channel','Phương thức thanh toán','2023-05-02 21:01:11','2023-05-02 21:01:11'),(4931,1,'vi','plugins/payment/payment','total','Tổng cộng','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4932,1,'vi','plugins/payment/payment','status','Trạng thái','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4933,1,'vi','plugins/payment/payment','default_payment_method','Phương thức thanh toán mặc định','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4934,1,'en','plugins/shippo/shippo','name','Shippo','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4935,1,'en','plugins/shippo/shippo','description','All of the Carriers and Stores You Need','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4936,1,'en','plugins/shippo/shippo','note_0','Before activating, please read the instructions below','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4937,1,'en','plugins/shippo/shippo','note_1','Need to use cities, states, countries from Admin -> Locations, <a href=\":link\" target=\"_blank\" rel=\"noopener noreferrer\">:link</a>','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4938,1,'en','plugins/shippo/shippo','note_2','Enabled \"Load countries, states, cities from plugin location?\" and \"Enable Zip Code?\" for Shippo to work correctly','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4939,1,'en','plugins/shippo/shippo','note_3','Update city, state, country with location plugin data, enter and check the address and zip code in \"<a href=\":link\" target=\"_blank\">Basic information</a>\"','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4940,1,'en','plugins/shippo/shippo','note_4','Vendor needs to update Company & Zip Code. Update city, state, country with location plugin data','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4941,1,'en','plugins/shippo/shippo','note_5','Shippo only allows to create transactions with shipment/rate within 24 hours, if more than 24 hours, please update the rate again','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4942,1,'en','plugins/shippo/shippo','note_6','COD payment method refer <a href=\":link\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4943,1,'en','plugins/shippo/shippo','configuration_instruction','Configuration instruction for :name','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4944,1,'en','plugins/shippo/shippo','configuration_requirement','To use :name, you need','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4945,1,'en','plugins/shippo/shippo','service_registration','Register with :name','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4946,1,'en','plugins/shippo/shippo','after_service_registration_msg','After registration at :name, you will have API Key','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4947,1,'en','plugins/shippo/shippo','enter_api_key','Enter API Key into the box in right hand','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4948,1,'en','plugins/shippo/shippo','please_provide_information','Please provide information','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4949,1,'en','plugins/shippo/shippo','sandbox_mode','Test mode','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4950,1,'en','plugins/shippo/shippo','activate','Activate','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4951,1,'en','plugins/shippo/shippo','disabled_in_demo_mode','You cannot update Shippo settings in demo mode!','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4952,1,'en','plugins/shippo/shippo','parcel','Parcel','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4953,1,'en','plugins/shippo/shippo','estimated_days','Estimated delivery in :day day(s)','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4954,1,'en','plugins/shippo/shippo','from_address','From address','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4955,1,'en','plugins/shippo/shippo','to_address','To address','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4956,1,'en','plugins/shippo/shippo','check_validate_token','Check validate token?','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4957,1,'en','plugins/shippo/shippo','saved_shipping_settings_success','Saved settings successfully!','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4958,1,'en','plugins/shippo/shippo','token_name_is_required',':name is required for the integration to work','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4959,1,'en','plugins/shippo/shippo','token_name_is_invalid',':name is invalid','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4960,1,'en','plugins/shippo/shippo','live_api_token','Live API Token','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4961,1,'en','plugins/shippo/shippo','test_api_token','Test API Token','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4962,1,'en','plugins/shippo/shippo','print_label','Print label','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4963,1,'en','plugins/shippo/shippo','transaction.created','Created transaction #:tracking','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4964,1,'en','plugins/shippo/shippo','transaction.view_and_create','View and Create transaction','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4965,1,'en','plugins/shippo/shippo','transaction.create','Create transaction','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4966,1,'en','plugins/shippo/shippo','transaction.created_success','Created transaction successfully!','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4967,1,'en','plugins/shippo/shippo','transaction.updated','Updated transaction #:tracking','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4968,1,'en','plugins/shippo/shippo','tracking.updated','Updated tracking #:tracking','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4969,1,'en','plugins/shippo/shippo','tracking.statuses.pre_transit','The label is created but before the package is dropped off or picked up by the carrier.','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4970,1,'en','plugins/shippo/shippo','tracking.statuses.transit','The package has been scanned by the carrier and is in transit.','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4971,1,'en','plugins/shippo/shippo','tracking.statuses.delivered','The package has been successfully delivered.','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4972,1,'en','plugins/shippo/shippo','tracking.statuses.returned','The package is en route to be returned to the sender, or has been returned successfully.','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4973,1,'en','plugins/shippo/shippo','tracking.statuses.failure','The carrier indicated that there has been an issue with the delivery. This can happen for various reasons and depends on the carrier. This status does not indicate a technical, but a delivery issue.','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4974,1,'en','plugins/shippo/shippo','tracking.statuses.unknown','The package has not been found via the carrier’s tracking system.','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4975,1,'en','plugins/shippo/shippo','view_other_exchange_rates','View :count other exchange rates','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4976,1,'en','plugins/shippo/shippo','carrier_could_not_be_found','The carrier for which the order was selected could not be found','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4977,1,'en','plugins/shippo/shippo','update_rate','Update rate','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4978,1,'en','plugins/shippo/shippo','updated_rate_success','Created rate successfully!','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4979,1,'en','plugins/shippo/shippo','recheck_rate','Recheck rate','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4980,1,'en','plugins/shippo/shippo','shipment_object_id_not_found','No matching shipping #:id information found','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4981,1,'en','plugins/shippo/shippo','order_amount','Order amount','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4982,1,'en','plugins/shippo/shippo','logging','Logging?','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4983,1,'en','plugins/shippo/shippo','webhooks','Webhooks?','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4984,1,'en','plugins/shippo/shippo','cache_response','Cache response?','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4985,1,'en','plugins/shippo/shippo','not_available_in_cod_payment_method','Shippo options won\'t be shown if the selected payment method is COD!','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4986,1,'en','plugins/simple-slider/simple-slider','create','New slider','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4987,1,'en','plugins/simple-slider/simple-slider','menu','Simple sliders','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4988,1,'en','plugins/simple-slider/simple-slider','settings.title','Simple sliders','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4989,1,'en','plugins/simple-slider/simple-slider','settings.description','Settings for Simple sliders','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4990,1,'en','plugins/simple-slider/simple-slider','settings.using_assets','Using default assets?','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4991,1,'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.','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4992,1,'en','plugins/simple-slider/simple-slider','add_new','Add new','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4993,1,'en','plugins/simple-slider/simple-slider','save_sorting','Save sorting','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4994,1,'en','plugins/simple-slider/simple-slider','key','Key','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4995,1,'en','plugins/simple-slider/simple-slider','slide_items','Slide Items','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4996,1,'en','plugins/simple-slider/simple-slider','update_slide_position_success','Updated slide position successfully!','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4997,1,'en','plugins/simple-slider/simple-slider','create_new_slide','Create a new slide','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4998,1,'en','plugins/simple-slider/simple-slider','edit_slide','Edit slide #:id','2023-05-02 21:01:12','2023-05-02 21:01:12'),(4999,1,'en','plugins/simple-slider/simple-slider','simple_slider_shortcode_name','Simple Slider','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5000,1,'en','plugins/simple-slider/simple-slider','simple_slider_shortcode_description','Add a simple slider','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5001,1,'en','plugins/simple-slider/simple-slider','select_slider','Select a slider','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5002,1,'vi','plugins/simple-slider/simple-slider','create','Thêm mới slider','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5003,1,'vi','plugins/simple-slider/simple-slider','edit','Sửa slider','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5004,1,'vi','plugins/simple-slider/simple-slider','menu','Sliders','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5005,1,'vi','plugins/simple-slider/simple-slider','settings.description','Cài đặt cho Simple Sliders','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5006,1,'vi','plugins/simple-slider/simple-slider','settings.title','Simple sliders','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5007,1,'vi','plugins/simple-slider/simple-slider','settings.using_assets','Sử dụng assets mặc định?','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5008,1,'vi','plugins/simple-slider/simple-slider','settings.using_assets_description','Nếu tùy chọn này được bật, những scripts bên dưới sẽ được thêm vào website của bạn.','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5009,1,'en','plugins/social-login/social-login','settings.title','Social Login settings','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5010,1,'en','plugins/social-login/social-login','settings.description','Configure social login options','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5011,1,'en','plugins/social-login/social-login','settings.facebook.title','Facebook login settings','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5012,1,'en','plugins/social-login/social-login','settings.facebook.description','Enable/disable & configure app credentials for Facebook login','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5013,1,'en','plugins/social-login/social-login','settings.facebook.app_id','App ID','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5014,1,'en','plugins/social-login/social-login','settings.facebook.app_secret','App Secret','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5015,1,'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','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5016,1,'en','plugins/social-login/social-login','settings.google.title','Google login settings','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5017,1,'en','plugins/social-login/social-login','settings.google.description','Enable/disable & configure app credentials for Google login','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5018,1,'en','plugins/social-login/social-login','settings.google.app_id','App ID','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5019,1,'en','plugins/social-login/social-login','settings.google.app_secret','App Secret','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5020,1,'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','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5021,1,'en','plugins/social-login/social-login','settings.github.title','Github login settings','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5022,1,'en','plugins/social-login/social-login','settings.github.description','Enable/disable & configure app credentials for Github login','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5023,1,'en','plugins/social-login/social-login','settings.github.app_id','App ID','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5024,1,'en','plugins/social-login/social-login','settings.github.app_secret','App Secret','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5025,1,'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','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5026,1,'en','plugins/social-login/social-login','settings.linkedin.title','Linkedin login settings','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5027,1,'en','plugins/social-login/social-login','settings.linkedin.description','Enable/disable & configure app credentials for Linkedin login','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5028,1,'en','plugins/social-login/social-login','settings.linkedin.app_id','App ID','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5029,1,'en','plugins/social-login/social-login','settings.linkedin.app_secret','App Secret','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5030,1,'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','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5031,1,'en','plugins/social-login/social-login','settings.enable','Enable?','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5032,1,'en','plugins/social-login/social-login','menu','Social Login','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5033,1,'vi','plugins/social-login/social-login','settings.title','Social Login settings','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5034,1,'vi','plugins/social-login/social-login','settings.description','Cấu hình tùy chọn đăng nhập thông qua mạng xã hội','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5035,1,'vi','plugins/social-login/social-login','settings.facebook.title','Facebook login settings','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5036,1,'vi','plugins/social-login/social-login','settings.facebook.description','Enable/disable & configure app credentials for Facebook login','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5037,1,'vi','plugins/social-login/social-login','settings.facebook.app_id','App ID','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5038,1,'vi','plugins/social-login/social-login','settings.facebook.app_secret','App Secret','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5039,1,'vi','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','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5040,1,'vi','plugins/social-login/social-login','settings.google.title','Google login settings','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5041,1,'vi','plugins/social-login/social-login','settings.google.description','Enable/disable & configure app credentials for Google login','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5042,1,'vi','plugins/social-login/social-login','settings.google.app_id','App ID','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5043,1,'vi','plugins/social-login/social-login','settings.google.app_secret','App Secret','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5044,1,'vi','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','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5045,1,'vi','plugins/social-login/social-login','settings.github.title','Github login settings','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5046,1,'vi','plugins/social-login/social-login','settings.github.description','Enable/disable & configure app credentials for Github login','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5047,1,'vi','plugins/social-login/social-login','settings.github.app_id','App ID','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5048,1,'vi','plugins/social-login/social-login','settings.github.app_secret','App Secret','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5049,1,'vi','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','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5050,1,'vi','plugins/social-login/social-login','settings.linkedin.title','Linkedin login settings','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5051,1,'vi','plugins/social-login/social-login','settings.linkedin.description','Enable/disable & configure app credentials for Linkedin login','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5052,1,'vi','plugins/social-login/social-login','settings.linkedin.app_id','App ID','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5053,1,'vi','plugins/social-login/social-login','settings.linkedin.app_secret','App Secret','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5054,1,'vi','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','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5055,1,'vi','plugins/social-login/social-login','settings.enable','Bật?','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5056,1,'vi','plugins/social-login/social-login','menu','Đăng nhập mạng xã hội','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5057,1,'en','plugins/testimonial/testimonial','name','Testimonials','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5058,1,'en','plugins/testimonial/testimonial','create','New testimonial','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5059,1,'en','plugins/testimonial/testimonial','company','Position/Company','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5060,1,'vi','plugins/testimonial/testimonial','name','Nhận xét của khách hàng','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5061,1,'vi','plugins/testimonial/testimonial','create','Thêm nhận xét mới','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5062,1,'vi','plugins/testimonial/testimonial','edit','Sửa nhận xét','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5063,1,'vi','plugins/testimonial/testimonial','company','Chức vụ/Công ty','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5064,1,'en','plugins/translation/translation','translations','Translations','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5065,1,'en','plugins/translation/translation','translations_description','Translate all words in system.','2023-05-02 21:01:12','2023-05-02 21:01:12'),(5066,1,'en','plugins/translation/translation','export_warning','Warning, translations are not visible until they are exported back to the :lang_path file, using \'php artisan cms:translations:export\' command or publish button.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5067,1,'en','plugins/translation/translation','import_done','Done importing, processed :counter items! Reload this page to refresh the groups!','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5068,1,'en','plugins/translation/translation','translation_manager','Translations Manager','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5069,1,'en','plugins/translation/translation','done_publishing','Done publishing the translations for group','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5070,1,'en','plugins/translation/translation','append_translation','Append new translations','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5071,1,'en','plugins/translation/translation','replace_translation','Replace existing translations','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5072,1,'en','plugins/translation/translation','import_group','Import group','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5073,1,'en','plugins/translation/translation','confirm_publish_group','Are you sure you want to publish the translations group \":group\"? This will overwrite existing language files.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5074,1,'en','plugins/translation/translation','publish_translations','Publish translations','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5075,1,'en','plugins/translation/translation','back','Back','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5076,1,'en','plugins/translation/translation','edit_title','Enter translation','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5077,1,'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.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5078,1,'en','plugins/translation/translation','choose_a_group','Choose a group','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5079,1,'en','plugins/translation/translation','locales','Locales','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5080,1,'en','plugins/translation/translation','theme-translations','Theme translations','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5081,1,'en','plugins/translation/translation','admin-translations','Other translations','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5082,1,'en','plugins/translation/translation','translate_from','Translate from','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5083,1,'en','plugins/translation/translation','to','to','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5084,1,'en','plugins/translation/translation','no_other_languages','No other language to translate!','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5085,1,'en','plugins/translation/translation','edit','Edit','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5086,1,'en','plugins/translation/translation','locale','Locale','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5087,1,'en','plugins/translation/translation','locale_placeholder','Ex: en','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5088,1,'en','plugins/translation/translation','name','Name','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5089,1,'en','plugins/translation/translation','default_locale','Default locale?','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5090,1,'en','plugins/translation/translation','actions','Actions','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5091,1,'en','plugins/translation/translation','choose_language','Choose language','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5092,1,'en','plugins/translation/translation','add_new_language','Add new language','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5093,1,'en','plugins/translation/translation','select_language','Select language','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5094,1,'en','plugins/translation/translation','flag','Flag','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5095,1,'en','plugins/translation/translation','folder_is_not_writeable','Cannot write files! Folder :lang_path is not writable. Please chmod to make it writable!','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5096,1,'en','plugins/translation/translation','delete','Delete','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5097,1,'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 :lang_path!','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5098,1,'en','plugins/translation/translation','download','Download','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5099,1,'en','plugins/translation/translation','select_locale','Select locale','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5100,1,'en','plugins/translation/translation','theme_translations_instruction','Click on text to translate. Do NOT translate variables, Eg. :username, :query, :link...','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5101,1,'en','plugins/translation/translation','import_available_locale','Or import available locale from our GitHub repository','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5102,1,'en','plugins/translation/translation','add_new_locale','Add new locale','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5103,1,'en','plugins/translation/translation','download_locale','Download locale','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5104,1,'en','plugins/translation/translation','import_available_locale_confirmation','Download locale from GitHub','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5105,1,'en','plugins/translation/translation','import_available_locale_confirmation_content','Are you sure you want to download this locale? It will be downloaded into :lang_path, you can delete it later if you want.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5106,1,'en','plugins/translation/translation','is_default','Is default?','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5107,1,'vi','plugins/translation/translation','append_translation','Tiếp nối bản dịch','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5108,1,'vi','plugins/translation/translation','back','Quay lại','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5109,1,'vi','plugins/translation/translation','choose_a_group','Chọn một nhóm','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5110,1,'vi','plugins/translation/translation','choose_group_msg','Chọn một nhóm để hiển thị nhóm dịch thuật. Nếu nhóm không có sẵn, hãy chắc chắn là bạn đã chạy migrations và nhập dữ liệu dịch thuật.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5111,1,'vi','plugins/translation/translation','confirm_publish_group','Bạn có chắc muốn xuất bản nhóm \":group\"? Điều này sẽ ghi đè tập tin ngôn ngữ hiện tại.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5112,1,'vi','plugins/translation/translation','done_publishing','Xuất bản nhóm dịch thuật thành công','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5113,1,'vi','plugins/translation/translation','edit_title','Nhập nội dung dịch','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5114,1,'vi','plugins/translation/translation','export_warning','Cảnh báo, bản dịch sẽ không có sẵn cho đến khi chúng được xuất bản lại vào thư mục :lang_path, sử dụng lệnh \'php artisan cms:translations:export\' hoặc sử dụng nút xuất bản','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5115,1,'vi','plugins/translation/translation','import_done','Nhập hoàn thành, đã xử lý :counter bản ghi! ','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5116,1,'vi','plugins/translation/translation','import_group','Nhập nhóm','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5117,1,'vi','plugins/translation/translation','publish_translations','Xuất bản dịch thuật','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5118,1,'vi','plugins/translation/translation','replace_translation','Thay thế bản dịch hiện tại','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5119,1,'vi','plugins/translation/translation','translation_manager','Quản lý dịch thuật','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5120,1,'vi','plugins/translation/translation','translations','Dịch thuật','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5121,1,'vi','plugins/translation/translation','translations_description','Dịch tất cả các từ trong hệ thống','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5122,1,'vi','plugins/translation/translation','actions','Hành động','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5123,1,'vi','plugins/translation/translation','add_new_language','Thêm ngôn ngữ mới','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5124,1,'vi','plugins/translation/translation','admin-translations','Dịch các mục khác','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5125,1,'vi','plugins/translation/translation','choose_language','Chọn ngôn ngữ','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5126,1,'vi','plugins/translation/translation','default_locale','Ngôn ngữ mặc định','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5127,1,'vi','plugins/translation/translation','delete','Xóa','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5128,1,'vi','plugins/translation/translation','edit','Sửa','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5129,1,'vi','plugins/translation/translation','flag','Cờ','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5130,1,'vi','plugins/translation/translation','locale','Ngôn ngữ','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5131,1,'vi','plugins/translation/translation','locales','Ngôn ngữ','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5132,1,'vi','plugins/translation/translation','name','Tên','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5133,1,'vi','plugins/translation/translation','no_other_languages','Không còn ngôn ngữ nào khác để dịch!','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5134,1,'vi','plugins/translation/translation','select_language','Lựa chọn ngôn ngữ','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5135,1,'vi','plugins/translation/translation','theme-translations','Dịch giao diện','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5136,1,'vi','plugins/translation/translation','to','sang','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5137,1,'vi','plugins/translation/translation','translate_from','Dịch từ','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5138,1,'vi','auth','failed','Thông tin tài khoản không tìm thấy trong hệ thống.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5139,1,'vi','auth','password','Mật khẩu không đúng.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5140,1,'vi','auth','throttle','Vượt quá số lần đăng nhập cho phép. Vui lòng thử lại sau :seconds giây.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5141,1,'vi','pagination','next','Trang trước »','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5142,1,'vi','pagination','previous','« Trang sau','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5143,1,'vi','passwords','reset','Mật khẩu mới đã được cập nhật!','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5144,1,'vi','passwords','sent','Hướng dẫn cấp lại mật khẩu đã được gửi!','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5145,1,'vi','passwords','throttled','Vui lòng đợi trước khi thử lại.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5146,1,'vi','passwords','token','Mã khôi phục mật khẩu không hợp lệ.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5147,1,'vi','passwords','user','Không tìm thấy người dùng với địa chỉ email này.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5148,1,'vi','validation','accepted','Trường :attribute phải được chấp nhận.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5149,1,'vi','validation','accepted_if','Trường :attribute phải được chấp nhận khi :other là :value.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5150,1,'vi','validation','active_url','Trường :attribute không phải là một URL hợp lệ.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5151,1,'vi','validation','after','Trường :attribute phải là một ngày sau ngày :date.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5152,1,'vi','validation','after_or_equal','Trường :attribute phải là thời gian bắt đầu sau hoặc đúng bằng :date.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5153,1,'vi','validation','alpha','Trường :attribute chỉ có thể chứa các chữ cái.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5154,1,'vi','validation','alpha_dash','Trường :attribute chỉ có thể chứa chữ cái, số và dấu gạch ngang.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5155,1,'vi','validation','alpha_num','Trường :attribute chỉ có thể chứa chữ cái và số.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5156,1,'vi','validation','array','Trường :attribute phải là dạng mảng.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5157,1,'vi','validation','before','Trường :attribute phải là một ngày trước ngày :date.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5158,1,'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.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5159,1,'vi','validation','between.array','Trường :attribute phải có từ :min - :max phần tử.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5160,1,'vi','validation','between.file','Dung lượng tập tin trong trường :attribute phải từ :min - :max kB.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5161,1,'vi','validation','between.numeric','Trường :attribute phải nằm trong khoảng :min - :max.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5162,1,'vi','validation','between.string','Trường :attribute phải từ :min - :max kí tự.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5163,1,'vi','validation','boolean','Trường :attribute phải là true hoặc false.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5164,1,'vi','validation','confirmed','Giá trị xác nhận trong trường :attribute không khớp.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5165,1,'vi','validation','current_password','Mật khẩu không đúng.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5166,1,'vi','validation','date','Trường :attribute không phải là định dạng của ngày-tháng.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5167,1,'vi','validation','date_equals','Trường :attribute phải là một ngày bằng với :date.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5168,1,'vi','validation','date_format','Trường :attribute không giống với định dạng :format.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5169,1,'vi','validation','declined','Trường :attribute phải bị từ chối.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5170,1,'vi','validation','declined_if','Trường :attribute phải bị từ chối khi :other là :value.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5171,1,'vi','validation','different','Trường :attribute và :other phải khác nhau.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5172,1,'vi','validation','digits','Độ dài của trường :attribute phải gồm :digits chữ số.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5173,1,'vi','validation','digits_between','Độ dài của trường :attribute phải nằm trong khoảng :min and :max chữ số.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5174,1,'vi','validation','dimensions','Trường :attribute có kích thước không hợp lệ.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5175,1,'vi','validation','distinct','Trường :attribute có giá trị trùng lặp.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5176,1,'vi','validation','email','Trường :attribute phải là một địa chỉ email hợp lệ.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5177,1,'vi','validation','ends_with','Trường :attribute phải kết thúc bằng một trong những giá trị sau: :values','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5178,1,'vi','validation','enum','Giá trị đã chọn trong trường :attribute không hợp lệ.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5179,1,'vi','validation','exists','Giá trị đã chọn trong trường :attribute không hợp lệ.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5180,1,'vi','validation','file','Trường :attribute phải là một tệp tin.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5181,1,'vi','validation','filled','Trường :attribute không được bỏ trống.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5182,1,'vi','validation','gt.array','Mảng :attribute phải có nhiều hơn :value phần tử.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5183,1,'vi','validation','gt.file','Dung lượng trường :attribute phải lớn hơn :value kilobytes.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5184,1,'vi','validation','gt.numeric','Giá trị trường :attribute phải lớn hơn :value.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5185,1,'vi','validation','gt.string','Độ dài trường :attribute phải nhiều hơn :value kí tự.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5186,1,'vi','validation','gte.array','Mảng :attribute phải có ít nhất :value phần tử.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5187,1,'vi','validation','gte.file','Dung lượng trường :attribute phải lớn hơn hoặc bằng :value kilobytes.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5188,1,'vi','validation','gte.numeric','Giá trị trường :attribute phải lớn hơn hoặc bằng :value.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5189,1,'vi','validation','gte.string','Độ dài trường :attribute phải lớn hơn hoặc bằng :value kí tự.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5190,1,'vi','validation','image','Trường :attribute phải là định dạng hình ảnh.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5191,1,'vi','validation','in','Giá trị đã chọn trong trường :attribute không hợp lệ.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5192,1,'vi','validation','in_array','Trường :attribute phải thuộc tập cho phép: :other.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5193,1,'vi','validation','integer','Trường :attribute phải là một số nguyên.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5194,1,'vi','validation','ip','Trường :attribute phải là một địa chỉ IP.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5195,1,'vi','validation','ipv4','Trường :attribute phải là một địa chỉ IPv4.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5196,1,'vi','validation','ipv6','Trường :attribute phải là một địa chỉ IPv6.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5197,1,'vi','validation','json','Trường :attribute phải là một chuỗi JSON.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5198,1,'vi','validation','lt.array','Mảng :attribute phải có ít hơn :value phần tử.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5199,1,'vi','validation','lt.file','Dung lượng trường :attribute phải nhỏ hơn :value kilobytes.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5200,1,'vi','validation','lt.numeric','Giá trị trường :attribute phải nhỏ hơn :value.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5201,1,'vi','validation','lt.string','Độ dài trường :attribute phải nhỏ hơn :value kí tự.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5202,1,'vi','validation','lte.array','Mảng :attribute không được có nhiều hơn :value phần tử.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5203,1,'vi','validation','lte.file','Dung lượng trường :attribute phải nhỏ hơn hoặc bằng :value kilobytes.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5204,1,'vi','validation','lte.numeric','Giá trị trường :attribute phải nhỏ hơn hoặc bằng :value.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5205,1,'vi','validation','lte.string','Độ dài trường :attribute phải nhỏ hơn hoặc bằng :value kí tự.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5206,1,'vi','validation','mac_address','Trường :attribute phải là một địa chỉ MAC hợp lệ.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5207,1,'vi','validation','max.array','Trường :attribute không được lớn hơn :max phần tử.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5208,1,'vi','validation','max.file','Dung lượng tập tin trong trường :attribute không được lớn hơn :max kB.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5209,1,'vi','validation','max.numeric','Trường :attribute không được lớn hơn :max.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5210,1,'vi','validation','max.string','Trường :attribute không được lớn hơn :max kí tự.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5211,1,'vi','validation','mimes','Trường :attribute phải là một tập tin có định dạng: :values.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5212,1,'vi','validation','mimetypes','Trường :attribute phải là một tập tin có định dạng: :values.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5213,1,'vi','validation','min.array','Trường :attribute phải có tối thiểu :min phần tử.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5214,1,'vi','validation','min.file','Dung lượng tập tin trong trường :attribute phải tối thiểu :min kB.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5215,1,'vi','validation','min.numeric','Trường :attribute phải tối thiểu là :min.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5216,1,'vi','validation','min.string','Trường :attribute phải có tối thiểu :min kí tự.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5217,1,'vi','validation','multiple_of','Trường :attribute phải là bội số của :value','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5218,1,'vi','validation','not_in','Giá trị đã chọn trong trường :attribute không hợp lệ.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5219,1,'vi','validation','not_regex','Trường :attribute có định dạng không hợp lệ.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5220,1,'vi','validation','numeric','Trường :attribute phải là một số.','2023-05-02 21:01:13','2023-05-02 21:01:13'),(5221,1,'vi','validation','password','Mật khẩu không đúng.','2023-05-02 21:01:14','2023-05-02 21:01:14'),(5222,1,'vi','validation','present','Trường :attribute phải được cung cấp.','2023-05-02 21:01:14','2023-05-02 21:01:14'),(5223,1,'vi','validation','prohibited','Trường :attribute bị cấm.','2023-05-02 21:01:14','2023-05-02 21:01:14'),(5224,1,'vi','validation','prohibited_if','Trường :attribute bị cấm khi :other là :value.','2023-05-02 21:01:14','2023-05-02 21:01:14'),(5225,1,'vi','validation','prohibited_unless','Trường :attribute bị cấm trừ khi :other là một trong :values.','2023-05-02 21:01:14','2023-05-02 21:01:14'),(5226,1,'vi','validation','prohibits','Trường :attribute cấm :other từ thời điểm hiện tại.','2023-05-02 21:01:14','2023-05-02 21:01:14'),(5227,1,'vi','validation','regex','Trường :attribute có định dạng không hợp lệ.','2023-05-02 21:01:14','2023-05-02 21:01:14'),(5228,1,'vi','validation','required','Trường :attribute không được bỏ trống.','2023-05-02 21:01:14','2023-05-02 21:01:14'),(5229,1,'vi','validation','required_array_keys','Trường :attribute phải bao gồm các mục nhập cho: :values.','2023-05-02 21:01:14','2023-05-02 21:01:14'),(5230,1,'vi','validation','required_if','Trường :attribute không được bỏ trống khi trường :other là :value.','2023-05-02 21:01:14','2023-05-02 21:01:14'),(5231,1,'vi','validation','required_unless','Trường :attribute không được bỏ trống trừ khi :other là :values.','2023-05-02 21:01:14','2023-05-02 21:01:14'),(5232,1,'vi','validation','required_with','Trường :attribute không được bỏ trống khi một trong :values có giá trị.','2023-05-02 21:01:14','2023-05-02 21:01:14'),(5233,1,'vi','validation','required_with_all','Trường :attribute không được bỏ trống khi tất cả :values có giá trị.','2023-05-02 21:01:14','2023-05-02 21:01:14'),(5234,1,'vi','validation','required_without','Trường :attribute không được bỏ trống khi một trong :values không có giá trị.','2023-05-02 21:01:14','2023-05-02 21:01:14'),(5235,1,'vi','validation','required_without_all','Trường :attribute không được bỏ trống khi tất cả :values không có giá trị.','2023-05-02 21:01:14','2023-05-02 21:01:14'),(5236,1,'vi','validation','same','Trường :attribute và :other phải giống nhau.','2023-05-02 21:01:14','2023-05-02 21:01:14'),(5237,1,'vi','validation','size.array','Trường :attribute phải chứa :size phần tử.','2023-05-02 21:01:14','2023-05-02 21:01:14'),(5238,1,'vi','validation','size.file','Dung lượng tập tin trong trường :attribute phải bằng :size kB.','2023-05-02 21:01:14','2023-05-02 21:01:14'),(5239,1,'vi','validation','size.numeric','Trường :attribute phải bằng :size.','2023-05-02 21:01:14','2023-05-02 21:01:14'),(5240,1,'vi','validation','size.string','Trường :attribute phải chứa :size kí tự.','2023-05-02 21:01:14','2023-05-02 21:01:14'),(5241,1,'vi','validation','starts_with','Trường :attribute phải được bắt đầu bằng một trong những giá trị sau: :values','2023-05-02 21:01:14','2023-05-02 21:01:14'),(5242,1,'vi','validation','string','Trường :attribute phải là một chuỗi kí tự.','2023-05-02 21:01:14','2023-05-02 21:01:14'),(5243,1,'vi','validation','timezone','Trường :attribute phải là một múi giờ hợp lệ.','2023-05-02 21:01:14','2023-05-02 21:01:14'),(5244,1,'vi','validation','unique','Trường :attribute đã có trong cơ sở dữ liệu.','2023-05-02 21:01:14','2023-05-02 21:01:14'),(5245,1,'vi','validation','uploaded','Trường :attribute tải lên thất bại.','2023-05-02 21:01:14','2023-05-02 21:01:14'),(5246,1,'vi','validation','url','Trường :attribute không giống với định dạng một URL.','2023-05-02 21:01:14','2023-05-02 21:01:14'),(5247,1,'vi','validation','uuid','Trường :attribute phải là một chuỗi UUID hợp lệ.','2023-05-02 21:01:14','2023-05-02 21:01:14'),(5248,1,'vi','validation','custom.attribute-name.rule-name','custom-message','2023-05-02 21:01:14','2023-05-02 21:01:14'); /*!40000 ALTER TABLE `translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_meta` -- DROP TABLE IF EXISTS `user_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `user_meta` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint 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) 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) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `first_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `last_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `username` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `avatar_id` bigint unsigned DEFAULT NULL, `super_user` tinyint(1) NOT NULL DEFAULT '0', `manage_supers` tinyint(1) NOT NULL DEFAULT '0', `permissions` text COLLATE utf8mb4_unicode_ci, `last_login` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `users_email_unique` (`email`), UNIQUE KEY `users_username_unique` (`username`) ) ENGINE=InnoDB AUTO_INCREMENT=3 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$BN7F3Bt9CopjJh.7fFAAMObtS3Z3/1HPaxpuXGMV6w9o5MQwDBgra',NULL,'2023-05-02 21:00:42','2023-05-02 21:00:42','Super','Admin','botble',NULL,1,1,NULL,NULL),(2,'user@botble.com',NULL,'$2y$10$rC7iBpn97PNQQlKWBeGILu3S.ULKluhR9PRK8CIlTIbLizfOdfGNm',NULL,'2023-05-02 21:00:42','2023-05-02 21:00:42','Normal','Admin','admin',NULL,0,0,'{\"users.index\":true,\"users.create\":true,\"users.edit\":true,\"users.destroy\":true,\"roles.index\":true,\"roles.create\":true,\"roles.edit\":true,\"roles.destroy\":true,\"core.system\":true,\"core.manage.license\":true,\"media.index\":true,\"files.index\":true,\"files.create\":true,\"files.edit\":true,\"files.trash\":true,\"files.destroy\":true,\"folders.index\":true,\"folders.create\":true,\"folders.edit\":true,\"folders.trash\":true,\"folders.destroy\":true,\"settings.options\":true,\"settings.email\":true,\"settings.media\":true,\"api.settings\":true,\"menus.index\":true,\"menus.create\":true,\"menus.edit\":true,\"menus.destroy\":true,\"pages.index\":true,\"pages.create\":true,\"pages.edit\":true,\"pages.destroy\":true,\"plugins.index\":true,\"plugins.edit\":true,\"plugins.remove\":true,\"plugins.marketplace\":true,\"core.appearance\":true,\"theme.index\":true,\"theme.activate\":true,\"theme.remove\":true,\"theme.options\":true,\"theme.custom-css\":true,\"theme.custom-js\":true,\"theme.custom-html\":true,\"widgets.index\":true,\"ads.index\":true,\"ads.create\":true,\"ads.edit\":true,\"ads.destroy\":true,\"analytics.general\":true,\"analytics.page\":true,\"analytics.browser\":true,\"analytics.referrer\":true,\"audit-log.index\":true,\"audit-log.destroy\":true,\"backups.index\":true,\"backups.create\":true,\"backups.restore\":true,\"backups.destroy\":true,\"plugins.blog\":true,\"posts.index\":true,\"posts.create\":true,\"posts.edit\":true,\"posts.destroy\":true,\"categories.index\":true,\"categories.create\":true,\"categories.edit\":true,\"categories.destroy\":true,\"tags.index\":true,\"tags.create\":true,\"tags.edit\":true,\"tags.destroy\":true,\"contacts.index\":true,\"contacts.edit\":true,\"contacts.destroy\":true,\"plugins.ecommerce\":true,\"ecommerce.settings\":true,\"ecommerce.report.index\":true,\"products.index\":true,\"products.create\":true,\"products.edit\":true,\"products.destroy\":true,\"product-categories.index\":true,\"product-categories.create\":true,\"product-categories.edit\":true,\"product-categories.destroy\":true,\"product-tag.index\":true,\"product-tag.create\":true,\"product-tag.edit\":true,\"product-tag.destroy\":true,\"brands.index\":true,\"brands.create\":true,\"brands.edit\":true,\"brands.destroy\":true,\"product-collections.index\":true,\"product-collections.create\":true,\"product-collections.edit\":true,\"product-collections.destroy\":true,\"product-attribute-sets.index\":true,\"product-attribute-sets.create\":true,\"product-attribute-sets.edit\":true,\"product-attribute-sets.destroy\":true,\"product-attributes.index\":true,\"product-attributes.create\":true,\"product-attributes.edit\":true,\"product-attributes.destroy\":true,\"tax.index\":true,\"tax.create\":true,\"tax.edit\":true,\"tax.destroy\":true,\"reviews.index\":true,\"reviews.destroy\":true,\"shipping_methods.index\":true,\"ecommerce.shipping-rule-items.index\":true,\"ecommerce.shipping-rule-items.create\":true,\"ecommerce.shipping-rule-items.edit\":true,\"ecommerce.shipping-rule-items.destroy\":true,\"ecommerce.shipping-rule-items.bulk-import\":true,\"ecommerce.shipments.index\":true,\"ecommerce.shipments.create\":true,\"ecommerce.shipments.edit\":true,\"ecommerce.shipments.destroy\":true,\"orders.index\":true,\"orders.create\":true,\"orders.edit\":true,\"orders.destroy\":true,\"discounts.index\":true,\"discounts.create\":true,\"discounts.edit\":true,\"discounts.destroy\":true,\"customers.index\":true,\"customers.create\":true,\"customers.edit\":true,\"customers.destroy\":true,\"flash-sale.index\":true,\"flash-sale.create\":true,\"flash-sale.edit\":true,\"flash-sale.destroy\":true,\"product-label.index\":true,\"product-label.create\":true,\"product-label.edit\":true,\"product-label.destroy\":true,\"ecommerce.import.products.index\":true,\"ecommerce.export.products.index\":true,\"order_returns.index\":true,\"order_returns.edit\":true,\"order_returns.destroy\":true,\"global-option.index\":true,\"global-option.create\":true,\"global-option.edit\":true,\"global-option.destroy\":true,\"ecommerce.invoice.index\":true,\"ecommerce.invoice.edit\":true,\"ecommerce.invoice.destroy\":true,\"ecommerce.invoice-template.index\":true,\"plugin.faq\":true,\"faq.index\":true,\"faq.create\":true,\"faq.edit\":true,\"faq.destroy\":true,\"faq_category.index\":true,\"faq_category.create\":true,\"faq_category.edit\":true,\"faq_category.destroy\":true,\"languages.index\":true,\"languages.create\":true,\"languages.edit\":true,\"languages.destroy\":true,\"plugin.location\":true,\"country.index\":true,\"country.create\":true,\"country.edit\":true,\"country.destroy\":true,\"state.index\":true,\"state.create\":true,\"state.edit\":true,\"state.destroy\":true,\"city.index\":true,\"city.create\":true,\"city.edit\":true,\"city.destroy\":true,\"location.bulk-import.index\":true,\"location.export.index\":true,\"newsletter.index\":true,\"newsletter.destroy\":true,\"payment.index\":true,\"payments.settings\":true,\"payment.destroy\":true,\"simple-slider.index\":true,\"simple-slider.create\":true,\"simple-slider.edit\":true,\"simple-slider.destroy\":true,\"simple-slider-item.index\":true,\"simple-slider-item.create\":true,\"simple-slider-item.edit\":true,\"simple-slider-item.destroy\":true,\"social-login.settings\":true,\"testimonial.index\":true,\"testimonial.create\":true,\"testimonial.edit\":true,\"testimonial.destroy\":true,\"plugins.translation\":true,\"translations.locales\":true,\"translations.theme-translations\":true,\"translations.index\":true}',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) COLLATE utf8mb4_unicode_ci NOT NULL, `sidebar_id` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `theme` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `position` tinyint unsigned NOT NULL DEFAULT '0', `data` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `widgets` -- LOCK TABLES `widgets` WRITE; /*!40000 ALTER TABLE `widgets` DISABLE KEYS */; INSERT INTO `widgets` VALUES (1,'CustomMenuWidget','footer_sidebar','shopwise',1,'{\"id\":\"CustomMenuWidget\",\"name\":\"Useful Links\",\"menu_id\":\"useful-links\"}','2023-05-02 21:00:42','2023-05-02 21:00:42'),(2,'CustomMenuWidget','footer_sidebar','shopwise',2,'{\"id\":\"CustomMenuWidget\",\"name\":\"Categories\",\"menu_id\":\"categories\"}','2023-05-02 21:00:42','2023-05-02 21:00:42'),(3,'CustomMenuWidget','footer_sidebar','shopwise',3,'{\"id\":\"CustomMenuWidget\",\"name\":\"My Account\",\"menu_id\":\"my-account\"}','2023-05-02 21:00:42','2023-05-02 21:00:42'),(4,'CustomMenuWidget','footer_sidebar','shopwise-vi',1,'{\"id\":\"CustomMenuWidget\",\"name\":\"Li\\u00ean k\\u1ebft h\\u1eefu \\u00edch\",\"menu_id\":\"lien-ket-huu-ich\"}','2023-05-02 21:00:42','2023-05-02 21:00:42'),(5,'CustomMenuWidget','footer_sidebar','shopwise-vi',2,'{\"id\":\"CustomMenuWidget\",\"name\":\"Danh m\\u1ee5c\",\"menu_id\":\"danh-muc\"}','2023-05-02 21:00:42','2023-05-02 21:00:42'),(6,'CustomMenuWidget','footer_sidebar','shopwise-vi',3,'{\"id\":\"CustomMenuWidget\",\"name\":\"T\\u00e0i kho\\u1ea3n\",\"menu_id\":\"tai-khoan\"}','2023-05-02 21:00:42','2023-05-02 21:00: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 2023-05-03 11:01:15
Page is not found
Oops! Page not found.
Sorry, an error has occured, Requested page not found!
Back To Homepage