Server IP : 103.11.96.170 / Your IP : 3.17.154.155 Web Server : Microsoft-IIS/10.0 System : Windows NT WIN-F6SLGVICLOP 10.0 build 17763 (Windows Server 2016) AMD64 User : elibrary.unsap.ac.id ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF Directory (0777) : D:/localhost/elibrary/../../UNSAP/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
-- phpMyAdmin SQL Dump -- version 4.9.7 -- https://www.phpmyadmin.net/ -- -- Host: localhost:3306 -- Generation Time: Sep 26, 2022 at 12:41 PM -- Server version: 10.5.17-MariaDB-cll-lve -- PHP Version: 7.4.30 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `u7998733_laralms` -- -- -------------------------------------------------------- -- -- Table structure for table `admin_menus` -- CREATE TABLE `admin_menus` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_menus` -- INSERT INTO `admin_menus` (`id`, `name`, `created_at`, `updated_at`) VALUES (1, 'nav-menu', '2019-09-12 23:33:58', '2019-09-12 23:33:58'); -- -------------------------------------------------------- -- -- Table structure for table `admin_menu_items` -- CREATE TABLE `admin_menu_items` ( `id` int(10) UNSIGNED NOT NULL, `label` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `link` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `parent` int(10) UNSIGNED NOT NULL DEFAULT 0, `sort` int(11) NOT NULL DEFAULT 0, `class` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `menu` int(10) UNSIGNED NOT NULL, `depth` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_menu_items` -- INSERT INTO `admin_menu_items` (`id`, `label`, `link`, `parent`, `sort`, `class`, `menu`, `depth`, `created_at`, `updated_at`) VALUES (1, 'Blog', 'blog', 1, 0, NULL, 1, 0, '2019-09-12 23:33:58', '2020-05-14 11:59:24'), (2, 'Courses', 'courses', 2, 1, NULL, 1, 0, '2019-09-12 23:33:58', '2020-05-14 11:59:24'), (4, 'Forums', 'forums', 4, 2, NULL, 1, 0, '2019-09-12 23:33:58', '2020-05-14 11:59:24'), (5, 'Contact', 'contact', 5, 3, NULL, 1, 0, '2019-09-12 23:33:58', '2020-05-14 11:59:24'), (6, 'About Us', 'about-us', 6, 4, NULL, 1, 0, '2019-09-12 23:33:58', '2020-05-14 11:59:24'); -- -------------------------------------------------------- -- -- Table structure for table `blogs` -- CREATE TABLE `blogs` ( `id` int(10) UNSIGNED NOT NULL, `category_id` int(10) UNSIGNED NOT NULL, `user_id` int(10) UNSIGNED NOT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `views` int(11) NOT NULL DEFAULT 0, `meta_title` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_keywords` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `blog_comments` -- CREATE TABLE `blog_comments` ( `id` int(10) UNSIGNED NOT NULL, `blog_id` int(10) UNSIGNED NOT NULL, `user_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `comment` text COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `bundles` -- CREATE TABLE `bundles` ( `id` int(10) UNSIGNED NOT NULL, `category_id` int(11) DEFAULT NULL, `user_id` int(10) UNSIGNED DEFAULT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(15,2) DEFAULT NULL, `course_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `featured` int(11) DEFAULT 0, `trending` int(11) DEFAULT 0, `popular` int(11) DEFAULT 0, `meta_title` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_keywords` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `published` tinyint(4) DEFAULT 0, `free` tinyint(4) DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `bundle_courses` -- CREATE TABLE `bundle_courses` ( `bundle_id` int(10) UNSIGNED NOT NULL, `course_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `bundle_student` -- CREATE TABLE `bundle_student` ( `bundle_id` int(10) UNSIGNED DEFAULT NULL, `user_id` int(10) UNSIGNED DEFAULT NULL, `rating` int(10) UNSIGNED NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cache` -- CREATE TABLE `cache` ( `key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `value` text COLLATE utf8mb4_unicode_ci NOT NULL, `expiration` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cart_storage` -- CREATE TABLE `cart_storage` ( `id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `cart_data` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `icon` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` int(11) NOT NULL DEFAULT 1 COMMENT '0 - disabled, 1 - enabled', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `categories` -- INSERT INTO `categories` (`id`, `name`, `slug`, `icon`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES (11, 'Web Development', 'web-development', 'fas fa-laptop-code', 1, '2020-05-14 12:48:48', '2020-05-14 12:48:48', NULL), (12, 'Data Science', 'data-science', 'fab fa-cloudsmith', 1, '2020-05-14 12:50:14', '2020-05-14 12:50:14', NULL), (13, 'Database', 'database', 'fas fa-database', 1, '2020-05-14 12:50:45', '2020-05-14 12:50:45', NULL), (14, 'Software Engineering', 'software-engineering', 'fas fa-desktop', 1, '2020-05-14 12:51:56', '2020-05-14 12:51:56', NULL), (15, 'Music', 'music', 'fas fa-music', 1, '2020-05-15 11:17:07', '2020-05-18 10:14:38', NULL), (16, 'Teknologi & Software', 'teknologi-software', 'far fa-keyboard', 1, '2020-05-15 11:37:00', '2020-05-15 11:37:00', NULL), (17, 'Self-development', 'self-development', 'fas fa-users', 1, '2020-05-15 11:52:03', '2020-05-15 11:52:03', NULL), (18, 'Office Productivity', 'office-productivity', 'far fa-calendar-alt', 1, '2020-05-18 10:06:51', '2020-05-18 10:08:05', NULL), (19, 'Networking', 'networking', 'fas fa-bezier-curve', 1, '2020-08-12 23:32:16', '2020-08-12 23:32:16', NULL), (20, 'Geographic Information Systems', 'geographic-information-systems', 'fas fa-map-marked-alt', 1, '2021-03-01 23:19:58', '2021-03-01 23:19:58', NULL), (21, 'Project Manager', 'project-manager', 'fas fa-bomb', 1, '2021-03-02 01:04:36', '2021-03-02 01:04:36', NULL); -- -------------------------------------------------------- -- -- Table structure for table `certificates` -- CREATE TABLE `certificates` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` int(10) UNSIGNED DEFAULT NULL, `course_id` int(10) UNSIGNED DEFAULT NULL, `url` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(4) NOT NULL DEFAULT 1 COMMENT '1-Generated 0-Not Generated', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `certificates` -- INSERT INTO `certificates` (`id`, `name`, `user_id`, `course_id`, `url`, `status`, `created_at`, `updated_at`) VALUES (3, '3', 3, 54, 'Certificate-54-3.pdf', 1, '2020-06-18 00:43:44', '2020-06-18 00:43:44'), (4, '13', 13, 54, 'Certificate-54-13.pdf', 1, '2020-10-12 23:37:02', '2020-10-12 23:37:02'); -- -------------------------------------------------------- -- -- Table structure for table `chapter_students` -- CREATE TABLE `chapter_students` ( `id` int(10) UNSIGNED NOT NULL, `model_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `model_id` bigint(20) UNSIGNED DEFAULT NULL, `user_id` int(10) UNSIGNED DEFAULT NULL, `course_id` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `chapter_students` -- INSERT INTO `chapter_students` (`id`, `model_type`, `model_id`, `user_id`, `course_id`, `created_at`, `updated_at`) VALUES (10, 'App\\Models\\Lesson', 509, 3, 54, '2020-05-16 07:42:22', '2020-05-16 07:42:22'), (11, 'App\\Models\\Test', 102, 3, 54, '2020-05-16 07:42:59', '2020-05-16 07:42:59'), (12, 'App\\Models\\Lesson', 505, 3, 54, '2020-06-18 00:43:13', '2020-06-18 00:43:13'), (13, 'App\\Models\\Lesson', 506, 3, 54, '2020-06-18 00:43:30', '2020-06-18 00:43:30'), (14, 'App\\Models\\Lesson', 507, 3, 54, '2020-06-18 00:43:34', '2020-06-18 00:43:34'), (15, 'App\\Models\\Lesson', 508, 3, 54, '2020-06-18 00:43:37', '2020-06-18 00:43:37'), (16, 'App\\Models\\Lesson', 505, 13, 54, '2020-10-12 23:36:11', '2020-10-12 23:36:11'), (17, 'App\\Models\\Lesson', 506, 13, 54, '2020-10-12 23:36:26', '2020-10-12 23:36:26'), (18, 'App\\Models\\Lesson', 507, 13, 54, '2020-10-12 23:36:30', '2020-10-12 23:36:30'), (19, 'App\\Models\\Lesson', 508, 13, 54, '2020-10-12 23:36:33', '2020-10-12 23:36:33'), (20, 'App\\Models\\Lesson', 509, 13, 54, '2020-10-12 23:36:36', '2020-10-12 23:36:36'), (21, 'App\\Models\\Test', 102, 13, 54, '2020-10-12 23:36:42', '2020-10-12 23:36:42'), (22, 'App\\Models\\Lesson', 505, 18, 54, '2021-09-23 09:48:23', '2021-09-23 09:48:23'), (23, 'App\\Models\\Lesson', 506, 18, 54, '2021-09-23 09:48:58', '2021-09-23 09:48:58'), (24, 'App\\Models\\Lesson', 505, 27, 54, '2022-03-22 19:50:00', '2022-03-22 19:50:00'); -- -------------------------------------------------------- -- -- Table structure for table `chatter_categories` -- CREATE TABLE `chatter_categories` ( `id` int(10) UNSIGNED NOT NULL, `parent_id` int(10) UNSIGNED DEFAULT NULL, `order` int(11) NOT NULL DEFAULT 1, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `color` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `chatter_categories` -- INSERT INTO `chatter_categories` (`id`, `parent_id`, `order`, `name`, `color`, `slug`, `created_at`, `updated_at`) VALUES (1, NULL, 1, 'Introductions', '#3498DB', 'introductions', NULL, NULL), (2, NULL, 2, 'General', '#2ECC71', 'general', NULL, NULL), (3, NULL, 3, 'Feedback', '#9B59B6', 'feedback', NULL, NULL), (4, NULL, 4, 'Random', '#E67E22', 'random', NULL, NULL), (5, 1, 1, 'Rules', '#227ab5', 'rules', NULL, NULL), (6, 5, 1, 'Basics', '#195a86', 'basics', NULL, NULL), (7, 5, 2, 'Contribution', '#195a86', 'contribution', NULL, NULL), (8, 1, 2, 'About', '#227ab5', 'about', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `chatter_discussion` -- CREATE TABLE `chatter_discussion` ( `id` int(10) UNSIGNED NOT NULL, `chatter_category_id` int(10) UNSIGNED NOT NULL DEFAULT 1, `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` int(10) UNSIGNED NOT NULL, `sticky` tinyint(1) NOT NULL DEFAULT 0, `views` int(10) UNSIGNED NOT NULL DEFAULT 0, `answered` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `color` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT '#232629', `deleted_at` timestamp NULL DEFAULT NULL, `last_reply_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `chatter_post` -- CREATE TABLE `chatter_post` ( `id` int(10) UNSIGNED NOT NULL, `chatter_discussion_id` int(10) UNSIGNED NOT NULL, `user_id` int(10) UNSIGNED NOT NULL, `body` text COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `markdown` tinyint(1) NOT NULL DEFAULT 0, `locked` tinyint(1) NOT NULL DEFAULT 0, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `chatter_user_discussion` -- CREATE TABLE `chatter_user_discussion` ( `user_id` int(10) UNSIGNED NOT NULL, `discussion_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `configs` -- CREATE TABLE `configs` ( `id` int(10) UNSIGNED NOT NULL, `key` text COLLATE utf8mb4_unicode_ci NOT NULL, `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `configs` -- INSERT INTO `configs` (`id`, `key`, `value`, `created_at`, `updated_at`) VALUES (1, 'theme_layout', '3', '2019-09-12 23:33:57', '2020-05-15 12:14:05'), (2, 'font_color', 'default', '2019-09-12 23:33:57', '2020-05-18 10:18:08'), (3, 'layout_type', 'wide-layout', '2019-09-12 23:33:57', '2020-05-14 11:07:07'), (4, 'layout_1', '{\"search_section\":{\"title\":\"Search Section\",\"status\":1},\"popular_courses\":{\"title\":\"Popular Courses\",\"status\":1},\"reasons\":{\"title\":\"Reasons why choose Neon LMS\",\"status\":0},\"testimonial\":{\"title\":\"Testimonial\",\"status\":0},\"latest_news\":{\"title\":\"Latest News, Courses\",\"status\":0},\"sponsors\":{\"title\":\"Sponsors\",\"status\":1},\"featured_courses\":{\"title\":\"Featured Courses\",\"status\":1},\"teachers\":{\"title\":\"Teachers\",\"status\":1},\"faq\":{\"title\":\"Frequently Asked Questions\",\"status\":0},\"course_by_category\":{\"title\":\"Course By Category\",\"status\":0},\"contact_us\":{\"title\":\"Contact us / Get in Touch\",\"status\":0}}', '2019-09-12 23:33:57', '2020-05-15 11:31:38'), (5, 'layout_2', '{\"sponsors\":{\"title\":\"Sponsors\",\"status\":1},\"popular_courses\":{\"title\":\"Popular Courses\",\"status\":1},\"search_section\":{\"title\":\"Search Section\",\"status\":1},\"latest_news\":{\"title\":\"Latest News, Courses\",\"status\":1},\"featured_courses\":{\"title\":\"Featured Courses\",\"status\":1},\"faq\":{\"title\":\"Frequently Asked Questions\",\"status\":1},\"course_by_category\":{\"title\":\"Course By Category\",\"status\":1},\"testimonial\":{\"title\":\"Testimonial\",\"status\":1},\"teachers\":{\"title\":\"Teachers\",\"status\":1},\"contact_us\":{\"title\":\"Contact us / Get in Touch\",\"status\":1}}', '2019-09-12 23:33:57', '2020-05-14 11:07:07'), (6, 'layout_3', '{\"counters\":{\"title\":\"Counters\",\"status\":1},\"latest_news\":{\"title\":\"Latest News, Courses\",\"status\":0},\"popular_courses\":{\"title\":\"Popular Courses\",\"status\":0},\"reasons\":{\"title\":\"Reasons why choose Neon LMS\",\"status\":0},\"featured_courses\":{\"title\":\"Featured Courses\",\"status\":1},\"teachers\":{\"title\":\"Teachers\",\"status\":1},\"faq\":{\"title\":\"Frequently Asked Questions\",\"status\":0},\"testimonial\":{\"title\":\"Testimonial\",\"status\":1},\"sponsors\":{\"title\":\"Sponsors\",\"status\":0},\"course_by_category\":{\"title\":\"Course By Category\",\"status\":1},\"contact_us\":{\"title\":\"Contact us / Get in Touch\",\"status\":0}}', '2019-09-12 23:33:57', '2020-05-18 10:17:29'), (7, 'layout_4', '{\"counters\":{\"title\":\"Counters\",\"status\":1},\"popular_courses\":{\"title\":\"Popular Courses\",\"status\":0},\"reasons\":{\"title\":\"Reasons why choose Neon LMS\",\"status\":0},\"featured_courses\":{\"title\":\"Featured Courses\",\"status\":1},\"course_by_category\":{\"title\":\"Course By Category\",\"status\":1},\"teachers\":{\"title\":\"Teachers\",\"status\":1},\"latest_news\":{\"title\":\"Latest News, Courses\",\"status\":0},\"search_section\":{\"title\":\"Search Section\",\"status\":0},\"faq\":{\"title\":\"Frequently Asked Questions\",\"status\":0},\"testimonial\":{\"title\":\"Testimonial\",\"status\":1},\"sponsors\":{\"title\":\"Sponsors\",\"status\":0},\"contact_form\":{\"title\":\"Contact Form\",\"status\":0},\"contact_us\":{\"title\":\"Contact us / Get in Touch\",\"status\":0}}', '2019-09-12 23:33:58', '2020-05-14 11:10:30'), (8, 'counter', '2', '2019-09-12 23:33:58', '2020-05-14 13:51:05'), (9, 'total_students', '30', '2019-09-12 23:33:58', '2020-05-14 13:49:41'), (10, 'total_courses', '30', '2019-09-12 23:33:58', '2020-05-14 13:49:41'), (11, 'total_teachers', '30', '2019-09-12 23:33:58', '2020-05-14 13:49:41'), (12, 'logo_b_image', '1589891089-untitled-1.png', '2019-09-12 23:33:58', '2020-05-19 05:24:49'), (13, 'logo_w_image', '1589891089-untitled-1.png', '2019-09-12 23:33:58', '2020-05-19 05:24:49'), (14, 'logo_white_image', '1589891089-untitled-1.png', '2019-09-12 23:33:58', '2020-05-19 05:24:49'), (15, 'logo_popup', '1589819139-logo-pop-up-inovasi.png', '2019-09-12 23:33:58', '2020-05-18 09:25:39'), (16, 'favicon_image', '1589567260-512x512.png', '2019-09-12 23:33:58', '2020-05-15 11:27:41'), (17, 'contact_data', '[{\"name\":\"short_text\",\"value\":\"Open, 8AM–5PM\",\"status\":1},{\"name\":\"primary_address\",\"value\":\"Jl. Angkrek Situ No.19, Situ, Kec. Sumedang Utara, Kabupaten Sumedang, Jawa Barat 45621\",\"status\":1},{\"name\":\"secondary_address\",\"value\":\"Jl. Angkrek Situ No.19, Situ, Kec. Sumedang Utara, Kabupaten Sumedang, Jawa Barat 45621\",\"status\":0},{\"name\":\"primary_phone\",\"value\":\"(0261) 207395\",\"status\":1},{\"name\":\"secondary_phone\",\"value\":\"(0261) 207395\",\"status\":0},{\"name\":\"primary_email\",\"value\":\"elearning@stmik-sumedang.ac.id\",\"status\":1},{\"name\":\"secondary_email\",\"value\":\"elearning@stmik-sumedang.ac.id\",\"status\":0},{\"name\":\"location_on_map\",\"value\":\"<iframe src=\'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3961.4553617268425!2d107.92161241399583!3d-6.835880295059665!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x2e68e644e46a6435%3A0xc2adbda35a1a1a52!2sSTMIK%20Sumedang!5e0!3m2!1sen!2sid!4v1589565280612!5m2!1sen!2sid\' width=\'600\' height=\'450\' frameborder=\'0\' style=\'border:0;\' allowfullscreen=\'\' aria-hidden=\'false\' tabindex=\'0\'></iframe>\",\"status\":1}]', '2019-09-12 23:33:58', '2020-05-15 10:57:21'), (18, 'footer_data', '{\"short_description\":{\"text\":\"BERPENGETAHUAN\",\"status\":1},\"section1\":{\"type\":\"1\",\"status\":1},\"section2\":{\"type\":\"1\",\"status\":1},\"section3\":{\"type\":\"1\",\"status\":1},\"social_links\":{\"status\":1,\"links\":[{\"icon\":\"fab fa-facebook-f\",\"link\":\"#\"},{\"icon\":\"fab fa-instagram\",\"link\":\"#\"},{\"icon\":\"fab fa-youtube\",\"link\":\"#\"}]},\"newsletter_form\":{\"status\":1},\"bottom_footer\":{\"status\":1},\"copyright_text\":{\"text\":\"All right reserved © 2020\",\"status\":1},\"bottom_footer_links\":{\"status\":1,\"links\":[{\"label\":\"Simenak\",\"link\":\"#\"}]}}', '2019-09-12 23:33:58', '2020-05-18 09:53:11'), (19, 'app.locale', 'en', '2019-09-12 23:33:58', '2019-09-12 23:33:58'), (20, 'app.display_type', 'ltr', '2019-09-12 23:33:58', '2019-09-12 23:33:58'), (21, 'app.currency', 'USD', '2019-09-12 23:33:58', '2019-09-12 23:33:58'), (22, 'lesson_timer', '0', '2019-09-12 23:33:58', '2020-05-18 09:49:15'), (23, 'show_offers', '0', '2019-09-12 23:33:58', '2020-05-15 13:44:47'), (24, 'access.captcha.registration', '0', '2019-09-12 23:33:58', '2019-09-12 23:33:58'), (25, 'sitemap.chunk', '500', '2019-09-12 23:33:58', '2019-09-12 23:33:58'), (26, 'one_signal', '0', '2019-09-12 23:33:58', '2019-09-12 23:33:58'), (27, 'nav_menu', '1', '2019-09-12 23:33:58', '2019-09-12 23:33:58'), (28, 'app.name', 'Pusat dan Inkubator Bisnis', '2020-05-14 10:49:29', '2020-05-19 05:24:05'), (29, 'app.url', 'http://dev.stmiksumedang.ac.id/', '2020-05-14 10:49:29', '2020-05-14 10:49:29'), (30, 'google_analytics_id', NULL, '2020-05-14 10:49:29', '2020-05-14 10:49:29'), (31, 'no-captcha_sitekey', 'no-captcha-sitekey', '2020-05-14 10:49:29', '2020-05-14 10:49:29'), (32, 'no-captcha_secret', 'no-captcha-secret', '2020-05-14 10:49:29', '2020-05-14 10:49:29'), (33, 'onesignal_data', NULL, '2020-05-14 10:49:29', '2020-05-14 10:49:29'), (34, 'mail.from.name', 'stmiklearn', '2020-05-14 10:49:29', '2020-05-15 10:31:22'), (35, 'mail.from.address', 'elearning@stmik-sumedang.ac.id', '2020-05-14 10:49:29', '2020-05-14 11:12:16'), (36, 'mail.driver', 'smtp', '2020-05-14 10:49:29', '2020-05-14 10:49:29'), (37, 'mail.host', 'smtp.gmail.com', '2020-05-14 10:49:29', '2020-05-14 10:55:46'), (38, 'mail.port', '465', '2020-05-14 10:49:29', '2020-05-14 10:55:46'), (39, 'mail.username', 'elearning@stmik-sumedang.ac.id', '2020-05-14 10:49:29', '2020-05-14 10:55:46'), (40, 'mail.password', 'stm1k.20', '2020-05-14 10:49:29', '2020-05-14 10:55:46'), (41, 'mail.encryption', 'tls', '2020-05-14 10:49:29', '2020-10-12 23:57:43'), (42, 'services.stripe.key', NULL, '2020-05-14 10:49:29', '2020-05-14 10:49:29'), (43, 'services.stripe.secret', NULL, '2020-05-14 10:49:29', '2020-05-14 10:49:29'), (44, 'paypal.settings.mode', 'sandbox', '2020-05-14 10:49:29', '2020-05-14 10:49:29'), (45, 'paypal.client_id', NULL, '2020-05-14 10:49:29', '2020-05-14 10:49:29'), (46, 'paypal.secret', NULL, '2020-05-14 10:49:29', '2020-05-14 10:49:29'), (47, 'registration_fields', '[{\"name\":\"phone\",\"type\":\"number\"},{\"name\":\"gender\",\"type\":\"radio\"},{\"name\":\"city\",\"type\":\"text\"}]', '2020-05-14 10:49:29', '2021-09-28 07:10:17'), (48, 'access_registration', '0', '2020-05-14 10:49:29', '2020-05-14 10:49:29'), (49, 'mailchimp_double_opt_in', '0', '2020-05-14 10:49:29', '2020-05-14 10:49:29'), (50, 'access_users_change_email', '0', '2020-05-14 10:49:29', '2020-05-14 10:49:29'), (51, 'access_users_confirm_email', '0', '2020-05-14 10:49:29', '2020-05-14 10:49:29'), (52, 'access_captcha_registration', '0', '2020-05-14 10:49:29', '2020-05-14 10:49:29'), (53, 'access_users_requires_approval', '0', '2020-05-14 10:49:29', '2020-05-14 10:49:29'), (54, 'services.stripe.active', '0', '2020-05-14 10:49:29', '2020-05-14 10:49:29'), (55, 'paypal.active', '0', '2020-05-14 10:49:29', '2020-05-14 10:49:29'), (56, 'payment_offline_active', '0', '2020-05-14 10:49:29', '2020-05-18 09:49:15'), (57, 'backup.status', '0', '2020-05-14 10:49:29', '2020-05-14 10:49:29'), (58, 'retest', '0', '2020-05-14 10:49:29', '2020-05-16 07:54:56'), (59, 'onesignal_status', '0', '2020-05-14 10:49:29', '2020-05-14 10:49:29'), (60, 'section1', '1', '2020-05-14 12:30:01', '2020-05-18 09:51:38'), (61, 'section2', '1', '2020-05-14 12:30:01', '2020-05-15 10:08:42'), (62, 'section3', '1', '2020-05-14 12:30:01', '2020-05-15 10:08:42'), (63, 'icon', 'fab fa-facebook-f', '2020-05-14 12:30:01', '2020-05-18 09:49:15'), (64, 'sitemap.schedule', '1', '2020-05-14 12:34:54', '2020-05-14 12:34:54'), (65, 'services.facebook.active', '0', '2020-07-27 01:28:13', '2021-09-28 08:20:51'), (66, 'services.facebook.client_id', '298339928257225', '2020-07-27 01:28:13', '2020-07-27 01:28:13'), (67, 'services.facebook.client_secret', '56461235f2823d94d56c218f0700e006', '2020-07-27 01:28:13', '2020-07-27 01:28:13'), (68, 'services.google.client_id', '1042088479227-05aa3fdccn5usbsbg16dmn56iqcuvovq.apps.googleusercontent.com', '2020-07-27 01:28:13', '2021-09-28 06:55:51'), (69, 'services.google.client_secret', '9AdsKV0bhpDIlSK-YJtyJ39m', '2020-07-27 01:28:13', '2021-09-28 06:55:51'), (70, 'services.twitter.client_id', NULL, '2020-07-27 01:28:13', '2020-07-27 01:28:13'), (71, 'services.twitter.client_secret', NULL, '2020-07-27 01:28:13', '2020-07-27 01:28:13'), (72, 'services.linkedin.client_id', '86kwumnq6y4m4w', '2020-07-27 01:28:13', '2020-07-27 02:11:03'), (73, 'services.linkedin.client_secret', 'DHYUpZSgctJukiBU', '2020-07-27 01:28:13', '2020-07-27 02:11:03'), (74, 'services.google.active', '1', '2020-07-27 01:28:13', '2021-09-29 07:04:43'), (75, 'services.twitter.active', '0', '2020-07-27 01:28:13', '2020-07-27 01:28:13'), (76, 'services.linkedin.active', '0', '2020-07-27 01:28:13', '2021-09-28 06:55:51'), (77, 'services.github.active', '0', '2020-07-27 01:28:13', '2020-07-27 01:28:13'), (78, 'services.bitbucket.active', '0', '2020-07-27 01:28:13', '2020-07-27 01:28:13'); -- -------------------------------------------------------- -- -- Table structure for table `contacts` -- CREATE TABLE `contacts` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `number` bigint(20) DEFAULT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `contacts` -- INSERT INTO `contacts` (`id`, `name`, `email`, `number`, `message`, `created_at`, `updated_at`) VALUES (1, 'Mark Brown', 'markbrown3049@gmail.com', 2079460433, 'Hi,\r\n\r\nI\'ve just been looking at mooc.stmik-sumedang.ac.id and wondered if you\'d be interested in using our logo design service?\r\n\r\nYou can view some of our previous designs here:\r\nhttps://imgur.com/a/39n0lTz\r\n\r\nOur price is $139 (USD) that includes:\r\n\r\n* 2 logo concepts (we send you different designs from 2 of our designers)\r\n* Logo transparency (the main benefit here is your logo will go with any background)\r\n* Source file\r\n* Printable file\r\n* 2 revisions (99% of the time, customers only ever need one at the most)\r\n\r\nIf this is something you feel you may be interested in or have any questions, reply and we can discuss it further. If not, you can discard this.\r\n\r\nEnjoy the rest of your day.\r\n\r\nKind Regards,\r\nMark', '2022-02-05 13:08:47', '2022-02-05 13:08:47'); -- -------------------------------------------------------- -- -- Table structure for table `coupons` -- CREATE TABLE `coupons` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `type` tinyint(4) NOT NULL DEFAULT 1 COMMENT '1 - Discount, 2 - Flat Amount', `amount` double(8,2) NOT NULL COMMENT 'Percentage or Amount', `min_price` double(8,2) NOT NULL DEFAULT 0.00 COMMENT 'Minimum price to allow coupons', `expires_at` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `per_user_limit` int(11) NOT NULL DEFAULT 1 COMMENT '0 - Unlimited', `status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0 - Disabled, 1 - Enabled, 2 - Expired', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `coupons` -- INSERT INTO `coupons` (`id`, `name`, `description`, `code`, `type`, `amount`, `min_price`, `expires_at`, `per_user_limit`, `status`, `created_at`, `updated_at`) VALUES (1, 'Kupon', 'dfgdfgdfg', 'stmiklearn1', 1, 100.00, 1.00, '2020-05-31', 5, 0, '2020-05-15 13:43:09', '2020-05-15 13:44:13'); -- -------------------------------------------------------- -- -- Table structure for table `courses` -- CREATE TABLE `courses` ( `id` int(10) UNSIGNED NOT NULL, `category_id` int(10) UNSIGNED DEFAULT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(15,2) DEFAULT NULL, `course_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `featured` int(11) DEFAULT 0, `trending` int(11) DEFAULT 0, `popular` int(11) DEFAULT 0, `meta_title` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_keywords` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `published` tinyint(4) DEFAULT 0, `free` tinyint(4) DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `courses` -- INSERT INTO `courses` (`id`, `category_id`, `title`, `slug`, `description`, `price`, `course_image`, `start_date`, `featured`, `trending`, `popular`, `meta_title`, `meta_description`, `meta_keywords`, `published`, `free`, `created_at`, `updated_at`, `deleted_at`) VALUES (54, 11, 'Basics Laravel', 'basics-laravel', '<p>Requirements: </p>\r\n<p>\r\n▪️You should be familiar with the basics of HTML and PHP<br>\r\n▪️You should have basic understanding of Object Oriented Programming<br>\r\n<p align=\"justify\">\r\n<p>Who this course is for: </p>\r\n<ul>\r\n<li>This course is meant for students already familiar with the basics of HTML, PHP and have basic understanding of MVC and want to level up their development skills by building real life project</li>\r\n<li>his course is ideal for students who has basic of Laravel or other MVC Framework</li></li></ul></p>', NULL, '1589636018-laravel.jpg', '2020-05-16', 1, 1, 1, 'basics laravel', 'basics laravel', 'basics laravel', 1, 1, '2020-05-16 06:32:26', '2020-05-16 07:06:30', NULL), (55, 11, 'Basics Vue Js', 'basics-vue-js', NULL, '10.00', '1589662195-1-ozqgznbyxjfblvgp5gqlyq.jpeg', '2020-05-17', 1, 1, 1, 'vuejs', 'vujs', 'vue js', 1, 0, '2020-05-16 10:30:29', '2020-05-18 09:35:50', '2020-05-18 09:35:50'), (56, 19, 'Basic', 'basic', NULL, NULL, NULL, '2020-09-01', 0, 0, 0, NULL, NULL, NULL, 0, 1, '2020-08-12 23:43:40', '2020-08-12 23:43:40', NULL), (57, 20, 'Digital Mapping', 'digital-mapping', 'Digital Mapping\r\nPemetaan digital adalah proses dimana suatu kumpulan data dikompilasi dan diformat menjadi gambar digital. Fungsi utama dari teknologi ini adalah untuk menghasilkan peta yang memberikan representasi akurat dari daerah tertentu, merinci jalan utama dan tempat menarik lainnya.', NULL, '1614666286-gambar.jpeg', '2021-03-08', 1, 1, 1, NULL, NULL, NULL, 1, 1, '2021-03-01 23:22:20', '2021-03-01 23:25:34', NULL); -- -------------------------------------------------------- -- -- Table structure for table `course_student` -- CREATE TABLE `course_student` ( `course_id` int(10) UNSIGNED DEFAULT NULL, `user_id` int(10) UNSIGNED DEFAULT NULL, `rating` int(10) UNSIGNED NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `course_student` -- INSERT INTO `course_student` (`course_id`, `user_id`, `rating`, `created_at`, `updated_at`) VALUES (54, 3, 0, '2020-05-16 07:39:19', '2020-05-16 07:39:19'), (54, 13, 0, '2020-10-12 23:35:56', '2020-10-12 23:35:56'), (54, 15, 0, '2021-07-07 20:16:01', '2021-07-07 20:16:01'), (54, 18, 0, '2021-09-23 09:48:15', '2021-09-23 09:48:15'), (54, 27, 0, '2022-03-22 19:49:50', '2022-03-22 19:49:50'), (57, 27, 0, '2022-03-22 19:53:04', '2022-03-22 19:53:04'); -- -------------------------------------------------------- -- -- Table structure for table `course_timeline` -- CREATE TABLE `course_timeline` ( `id` int(10) UNSIGNED NOT NULL, `model_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `model_id` bigint(20) UNSIGNED DEFAULT NULL, `course_id` int(11) NOT NULL, `sequence` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `course_timeline` -- INSERT INTO `course_timeline` (`id`, `model_type`, `model_id`, `course_id`, `sequence`, `created_at`, `updated_at`) VALUES (366, 'App\\Models\\Lesson', 501, 51, 1, '2020-05-14 12:58:35', '2020-05-14 12:58:35'), (367, 'App\\Models\\Test', 101, 51, 2, '2020-05-14 14:16:00', '2020-05-14 14:16:00'), (368, 'App\\Models\\Lesson', 502, 52, 1, '2020-05-15 14:08:21', '2020-05-15 14:08:21'), (369, 'App\\Models\\Lesson', 503, 52, 2, '2020-05-15 14:10:48', '2020-05-15 14:10:48'), (370, 'App\\Models\\Lesson', 504, 52, 3, '2020-05-16 06:14:08', '2020-05-16 06:14:08'), (371, 'App\\Models\\Lesson', 505, 54, 1, '2020-05-16 06:47:21', '2020-05-16 06:47:21'), (372, 'App\\Models\\Lesson', 506, 54, 2, '2020-05-16 06:50:19', '2020-05-16 06:50:19'), (373, 'App\\Models\\Lesson', 507, 54, 3, '2020-05-16 06:50:54', '2020-05-16 06:50:54'), (374, 'App\\Models\\Lesson', 508, 54, 4, '2020-05-16 06:51:57', '2020-05-16 06:51:57'), (375, 'App\\Models\\Lesson', 509, 54, 5, '2020-05-16 06:53:58', '2020-05-16 06:53:58'), (376, 'App\\Models\\Test', 102, 54, 6, '2020-05-16 07:08:50', '2020-05-16 07:08:50'); -- -------------------------------------------------------- -- -- Table structure for table `course_user` -- CREATE TABLE `course_user` ( `course_id` int(10) UNSIGNED DEFAULT NULL, `user_id` int(10) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `course_user` -- INSERT INTO `course_user` (`course_id`, `user_id`) VALUES (54, 6), (55, 6), (56, 9), (57, 9); -- -------------------------------------------------------- -- -- Table structure for table `faqs` -- CREATE TABLE `faqs` ( `id` int(10) UNSIGNED NOT NULL, `category_id` int(10) UNSIGNED DEFAULT NULL, `question` text COLLATE utf8mb4_unicode_ci NOT NULL, `answer` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `status` int(11) NOT NULL DEFAULT 1 COMMENT '0 - disbaled, 1 - enabled', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `invoices` -- CREATE TABLE `invoices` ( `id` int(10) UNSIGNED NOT NULL, `order_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `url` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `jobs` -- CREATE TABLE `jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `attempts` tinyint(3) UNSIGNED NOT NULL, `reserved_at` int(10) UNSIGNED DEFAULT NULL, `available_at` int(10) UNSIGNED NOT NULL, `created_at` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `lessons` -- CREATE TABLE `lessons` ( `id` int(10) UNSIGNED NOT NULL, `course_id` int(10) UNSIGNED DEFAULT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `lesson_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `short_text` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `full_text` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` int(10) UNSIGNED DEFAULT NULL, `free_lesson` tinyint(4) DEFAULT 1, `published` tinyint(4) DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `lessons` -- INSERT INTO `lessons` (`id`, `course_id`, `title`, `slug`, `lesson_image`, `short_text`, `full_text`, `position`, `free_lesson`, `published`, `created_at`, `updated_at`, `deleted_at`) VALUES (505, 54, 'Introduction', 'introduction', NULL, 'Preview', NULL, 1, 1, 1, '2020-05-16 06:47:21', '2020-05-16 06:48:05', NULL), (506, 54, 'Versi Laravel', 'versi-laravel', NULL, NULL, NULL, 2, 1, 1, '2020-05-16 06:50:19', '2020-05-16 06:50:19', NULL), (507, 54, 'Instalasi Local Development Environment', 'instalasi-local-development-environment', NULL, NULL, NULL, 3, 1, 1, '2020-05-16 06:50:54', '2020-05-16 06:50:54', NULL), (508, 54, 'Instalasi Composer dan Laravel Installer', 'instalasi-composer-dan-laravel-installer', NULL, NULL, NULL, 4, 1, 1, '2020-05-16 06:51:57', '2020-05-16 06:51:57', NULL), (509, 54, 'Membuat Aplikasi Kontak Menejer', 'membuat-aplikasi-kontak-menejer', NULL, 'Project 1', '<p>1. Aplikasi Kontak Menejer</p>\r\n\r\n<p>Aplikasi ini nantinya bisa digunakan untuk memenej kontak, seperti:</p>\r\n\r\n<ul>\r\n <li>Membuat kontak baru</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Edit data kontak</li>\r\n <li>upload kontak foto</li>\r\n <li>Hapus data kontak</li>\r\n <li>Menampilkan semua kontak dalam paginasi halaman</li>\r\n <li>Filter data kontak berdasarkan grup terpilih</li>\r\n <li>Form Pencarian data kontak dengan dilengkapi fitur autokomplit, </li>\r\n <li>Tambah Grup menggunakan AJAX</li>\r\n <li>Otentikasi </li>\r\n <li>Otorisasi</li>\r\n <li>Suport Multi user</li>\r\n</ul>', 5, 1, 1, '2020-05-16 06:53:58', '2020-05-16 06:55:35', NULL); -- -------------------------------------------------------- -- -- Table structure for table `locales` -- CREATE TABLE `locales` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `short_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `display_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'ltr' COMMENT 'ltr - Left to right, rtl - Right to Left', `is_default` tinyint(4) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `locales` -- INSERT INTO `locales` (`id`, `name`, `short_name`, `display_type`, `is_default`, `created_at`, `updated_at`) VALUES (1, 'English', 'en', 'ltr', 1, '2019-09-12 23:33:53', '2019-09-12 23:33:53'); -- -------------------------------------------------------- -- -- Table structure for table `ltm_translations` -- CREATE TABLE `ltm_translations` ( `id` int(10) UNSIGNED NOT NULL, `status` int(11) NOT NULL DEFAULT 0, `locale` varchar(191) COLLATE utf8mb4_bin NOT NULL, `group` varchar(191) COLLATE utf8mb4_bin NOT NULL, `key` text COLLATE utf8mb4_bin NOT NULL, `value` text COLLATE utf8mb4_bin DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; -- -- Dumping data for table `ltm_translations` -- INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES (1, 0, 'ar', 'custom-menu', 'nav-menu.about-us', 'معلومات عنا', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (2, 0, 'ar', 'custom-menu', 'nav-menu.blog', 'مدونة', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (3, 0, 'ar', 'custom-menu', 'nav-menu.bundles', 'بال', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (4, 0, 'ar', 'custom-menu', 'nav-menu.contact', 'اتصل', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (5, 0, 'ar', 'custom-menu', 'nav-menu.courses', 'الدورات', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (6, 0, 'ar', 'custom-menu', 'nav-menu.forums', 'المنتديات', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (7, 0, 'en', 'custom-menu', 'nav-menu.blog', 'Blog', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (8, 0, 'en', 'custom-menu', 'nav-menu.courses', 'Courses', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (9, 0, 'en', 'custom-menu', 'nav-menu.bundles', 'Bundles', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (10, 0, 'en', 'custom-menu', 'nav-menu.forums', 'Forums', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (11, 0, 'en', 'custom-menu', 'nav-menu.contact', 'Contact', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (12, 0, 'en', 'custom-menu', 'nav-menu.about-us', 'About Us', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (13, 0, 'es', 'custom-menu', 'nav-menu.about-us', 'Sobre nosotros', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (14, 0, 'es', 'custom-menu', 'nav-menu.blog', 'Blog', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (15, 0, 'es', 'custom-menu', 'nav-menu.bundles', 'manojos', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (16, 0, 'es', 'custom-menu', 'nav-menu.contact', 'Contacto', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (17, 0, 'es', 'custom-menu', 'nav-menu.courses', 'Los cursos', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (18, 0, 'es', 'custom-menu', 'nav-menu.forums', 'La', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (19, 0, 'fr', 'custom-menu', 'nav-menu.about-us', 'À propos de nous', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (20, 0, 'fr', 'custom-menu', 'nav-menu.blog', 'Blog', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (21, 0, 'fr', 'custom-menu', 'nav-menu.bundles', 'Liasses', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (22, 0, 'fr', 'custom-menu', 'nav-menu.contact', 'Contact', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (23, 0, 'fr', 'custom-menu', 'nav-menu.courses', 'Cours', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (24, 0, 'fr', 'custom-menu', 'nav-menu.forums', 'Les forums', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (25, 0, 'ar', 'alerts', 'backend.general.backup_warning', 'يرجى ملء التفاصيل اللازمة للنسخ الاحتياطي', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (26, 0, 'ar', 'alerts', 'backend.general.cancelled', 'تم الغاء التحديث', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (27, 0, 'ar', 'alerts', 'backend.general.created', 'تم الإنشاء بنجاح.', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (28, 0, 'ar', 'alerts', 'backend.general.deleted', 'حذف بنجاح.', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (29, 0, 'ar', 'alerts', 'backend.general.error', 'هناك خطأ ما. حاول مرة أخري', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (30, 0, 'ar', 'alerts', 'backend.general.restored', 'استعادة بنجاح.', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (31, 0, 'ar', 'alerts', 'backend.general.unverified', 'لم يتم التحقق من ملفات التحديث.', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (32, 0, 'ar', 'alerts', 'backend.general.updated', 'تم التحديث بنجاح.', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (33, 0, 'ar', 'alerts', 'backend.general.delete_warning', 'لا يمكنك حذف المسار. الطلاب مسجلون بالفعل. إلغاء نشر الدورة التدريبية بدلاً من ذلك', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (34, 0, 'ar', 'alerts', 'backend.general.delete_warning_bundle', 'لا يمكنك حذف حزمة. الطلاب مسجلون بالفعل. إلغاء نشر الحزمة بدلاً من ذلك', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (35, 0, 'ar', 'alerts', 'backend.roles.created', 'تم إنشاء الدور بنجاح.', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (36, 0, 'ar', 'alerts', 'backend.roles.deleted', 'تم حذف الدور بنجاح.', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (37, 0, 'ar', 'alerts', 'backend.roles.updated', 'تم تحديث الدور بنجاح.', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (38, 0, 'ar', 'alerts', 'backend.users.cant_resend_confirmation', 'تم تعيين التطبيق حاليًا للموافقة يدويًا على المستخدمين.', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (39, 0, 'ar', 'alerts', 'backend.users.confirmation_email', 'تم إرسال رسالة تأكيد إلكترونية جديدة إلى العنوان في الملف.', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (40, 0, 'ar', 'alerts', 'backend.users.confirmed', 'تم تأكيد المستخدم بنجاح.', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (41, 0, 'ar', 'alerts', 'backend.users.created', 'تم إنشاء المستخدم بنجاح.', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (42, 0, 'ar', 'alerts', 'backend.users.deleted', 'تم حذف المستخدم بنجاح.', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (43, 0, 'ar', 'alerts', 'backend.users.deleted_permanently', 'تم حذف المستخدم بشكل دائم.', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (44, 0, 'ar', 'alerts', 'backend.users.restored', 'تمت استعادة المستخدم بنجاح.', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (45, 0, 'ar', 'alerts', 'backend.users.session_cleared', 'تم مسح جلسة المستخدم بنجاح.', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (46, 0, 'ar', 'alerts', 'backend.users.social_deleted', 'تم حذف الحساب الاجتماعي بنجاح', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (47, 0, 'ar', 'alerts', 'backend.users.unconfirmed', 'تم إلغاء تأكيد المستخدم بنجاح', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (48, 0, 'ar', 'alerts', 'backend.users.updated', 'تم تحديث المستخدم بنجاح.', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (49, 0, 'ar', 'alerts', 'backend.users.updated_password', 'تم تحديث كلمة مرور المستخدم بنجاح.', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (50, 0, 'ar', 'alerts', 'frontend.contact.sent', 'تم إرسال المعلومات الخاصة بك بنجاح. سوف نرد مرة أخرى على البريد الإلكتروني المقدم بأسرع ما يمكن.', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (51, 0, 'ar', 'alerts', 'frontend.course.completed', 'تهانينا! لقد أكملت بالطبع بنجاح. تحقق من شهادتك في لوحة القيادة', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (52, 0, 'ar', 'auth', 'failed', 'بيانات الاعتماد هذه لا تتطابق مع سجلاتنا.', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (53, 0, 'ar', 'auth', 'general_error', 'ليس لديك حق الوصول للقيام بذلك.', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (54, 0, 'ar', 'auth', 'password_rules', 'يجب أن يكون طول كلمة مرورك أكثر من 8 أحرف ، ويجب أن يحتوي على ما لا يقل عن حرف واحد كبير واحد صغير ورقم واحد', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (55, 0, 'ar', 'auth', 'password_used', 'لا يمكنك تعيين كلمة مرور استخدمتها من قبل.', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (56, 0, 'ar', 'auth', 'socialite.unacceptable', ': مزود ليس نوع تسجيل الدخول مقبول.', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (57, 0, 'ar', 'auth', 'throttle', 'محاولات تسجيل الدخول كثيرة جدًا. يرجى المحاولة مرة أخرى بعد: ثوانٍ.', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (58, 0, 'ar', 'auth', 'unknown', 'حدث خطأ غير معروف', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (59, 0, 'ar', 'buttons', 'backend.access.users.activate', 'تفعيل', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (60, 0, 'ar', 'buttons', 'backend.access.users.change_password', 'غير كلمة السر', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (61, 0, 'ar', 'buttons', 'backend.access.users.clear_session', 'جلسة واضحة', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (62, 0, 'ar', 'buttons', 'backend.access.users.confirm', 'تؤكد', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (63, 0, 'ar', 'buttons', 'backend.access.users.deactivate', 'عطل', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (64, 0, 'ar', 'buttons', 'backend.access.users.delete_permanently', 'الحذف بشكل نهائي', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (65, 0, 'ar', 'buttons', 'backend.access.users.login_as', 'تسجيل الدخول باسم: المستخدم', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (66, 0, 'ar', 'buttons', 'backend.access.users.resend_email', 'أعد إرسال رسالة البريد الالكتروني الخاصة بالتأكيد', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (67, 0, 'ar', 'buttons', 'backend.access.users.restore_user', 'استعادة المستخدم', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (68, 0, 'ar', 'buttons', 'backend.access.users.unconfirm', 'برنامج الأمم المتحدة للتأكيد', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (69, 0, 'ar', 'buttons', 'backend.access.users.unlink', 'فك ارتباط', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (70, 0, 'ar', 'buttons', 'emails.auth.confirm_account', 'تأكيد الحساب', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (71, 0, 'ar', 'buttons', 'emails.auth.reset_password', 'إعادة تعيين كلمة المرور', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (72, 0, 'ar', 'buttons', 'general.cancel', 'إلغاء', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (73, 0, 'ar', 'buttons', 'general.continue', 'استمر', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (74, 0, 'ar', 'buttons', 'general.crud.create', 'خلق', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (75, 0, 'ar', 'buttons', 'general.crud.delete', 'حذف', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (76, 0, 'ar', 'buttons', 'general.crud.edit', 'تصحيح', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (77, 0, 'ar', 'buttons', 'general.crud.update', 'تحديث', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (78, 0, 'ar', 'buttons', 'general.crud.view', 'رأي', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (79, 0, 'ar', 'buttons', 'general.crud.generate', 'توفير', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (80, 0, 'ar', 'buttons', 'general.save', 'حفظ', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (81, 0, 'ar', 'buttons', 'general.view', 'رأي', '2019-09-12 23:33:58', '2020-05-14 12:20:09'), (82, 0, 'ar', 'configmanager', 'title', 'مدير التكوين', '2019-09-12 23:33:58', '2020-05-14 12:20:10'), (83, 0, 'ar', 'configmanager', 'info_choose', 'اختر ملفًا لبدء التحرير', '2019-09-12 23:33:58', '2020-05-14 12:20:10'), (84, 0, 'ar', 'configmanager', 'file', 'ملف', '2019-09-12 23:33:58', '2020-05-14 12:20:10'), (85, 0, 'ar', 'configmanager', 'path', 'مسار', '2019-09-12 23:33:58', '2020-05-14 12:20:10'), (86, 0, 'ar', 'configmanager', 'header.key', 'مفتاح', '2019-09-12 23:33:58', '2020-05-14 12:20:10'), (87, 0, 'ar', 'configmanager', 'header.value', 'القيمة', '2019-09-12 23:33:58', '2020-05-14 12:20:10'), (88, 0, 'ar', 'configmanager', 'header.actions', 'أفعال', '2019-09-12 23:33:58', '2020-05-14 12:20:10'), (89, 0, 'ar', 'configmanager', 'actions.edit', 'تصحيح', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (90, 0, 'ar', 'configmanager', 'actions.confirm', 'حفظ مفتاح جديد', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (91, 0, 'ar', 'configmanager', 'actions.save', 'حفظ!', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (92, 0, 'ar', 'configmanager', 'actions.cancel', 'إلغاء', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (93, 0, 'ar', 'configmanager', 'sure', 'هل أنت واثق؟', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (94, 0, 'ar', 'datatable', 'colvis', 'رؤية العمود', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (95, 0, 'ar', 'datatable', 'csv', 'CSV', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (96, 0, 'ar', 'datatable', 'pdf', 'PDF', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (97, 0, 'ar', 'exceptions', 'backend.access.roles.already_exists', 'هذا الدور موجود بالفعل. يرجى اختيار اسم مختلف.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (98, 0, 'ar', 'exceptions', 'backend.access.roles.cant_delete_admin', 'لا يمكنك حذف دور المسؤول.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (99, 0, 'ar', 'exceptions', 'backend.access.roles.create_error', 'كانت هناك مشكلة في إنشاء هذا الدور. حاول مرة اخرى.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (100, 0, 'ar', 'exceptions', 'backend.access.roles.delete_error', 'حدثت مشكلة في حذف هذا الدور. حاول مرة اخرى.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (101, 0, 'ar', 'exceptions', 'backend.access.roles.has_users', 'لا يمكنك حذف دور مع المستخدمين المرتبطين.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (102, 0, 'ar', 'exceptions', 'backend.access.roles.needs_permission', 'يجب تحديد إذن واحد على الأقل لهذا الدور.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (103, 0, 'ar', 'exceptions', 'backend.access.roles.not_found', 'هذا الدور غير موجود.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (104, 0, 'ar', 'exceptions', 'backend.access.roles.update_error', 'حدثت مشكلة أثناء تحديث هذا الدور. حاول مرة اخرى.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (105, 0, 'ar', 'exceptions', 'backend.access.users.already_confirmed', 'تم تأكيد هذا المستخدم بالفعل.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (106, 0, 'ar', 'exceptions', 'backend.access.users.cant_confirm', 'حدثت مشكلة في تأكيد حساب المستخدم.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (107, 0, 'ar', 'exceptions', 'backend.access.users.cant_deactivate_self', 'لا يمكنك فعل ذلك بنفسك.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (108, 0, 'ar', 'exceptions', 'backend.access.users.cant_delete_admin', 'لا يمكنك حذف المسؤول الفائق.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (109, 0, 'ar', 'exceptions', 'backend.access.users.cant_delete_own_session', 'لا يمكنك حذف الجلسة الخاصة بك.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (110, 0, 'ar', 'exceptions', 'backend.access.users.cant_delete_self', 'لا يمكنك حذف نفسك.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (111, 0, 'ar', 'exceptions', 'backend.access.users.cant_restore', 'لا يتم حذف هذا المستخدم لذلك لا يمكن استعادته.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (112, 0, 'ar', 'exceptions', 'backend.access.users.cant_unconfirm_admin', 'لا يمكنك إلغاء تأكيد المسؤول الفائق.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (113, 0, 'ar', 'exceptions', 'backend.access.users.cant_unconfirm_self', 'لا يمكنك إلغاء تأكيد نفسك.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (114, 0, 'ar', 'exceptions', 'backend.access.users.create_error', 'حدثت مشكلة أثناء إنشاء هذا المستخدم. حاول مرة اخرى.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (115, 0, 'ar', 'exceptions', 'backend.access.users.delete_error', 'حدثت مشكلة في حذف هذا المستخدم. حاول مرة اخرى.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (116, 0, 'ar', 'exceptions', 'backend.access.users.delete_first', 'يجب حذف هذا المستخدم أولاً قبل إتلافه نهائيًا.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (117, 0, 'ar', 'exceptions', 'backend.access.users.email_error', 'ينتمي عنوان البريد الإلكتروني هذا إلى مستخدم آخر.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (118, 0, 'ar', 'exceptions', 'backend.access.users.mark_error', 'حدثت مشكلة أثناء تحديث هذا المستخدم. حاول مرة اخرى.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (119, 0, 'ar', 'exceptions', 'backend.access.users.not_confirmed', 'لم يتم تأكيد هذا المستخدم.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (120, 0, 'ar', 'exceptions', 'backend.access.users.not_found', 'هذا المستخدم غير موجود.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (121, 0, 'ar', 'exceptions', 'backend.access.users.restore_error', 'حدثت مشكلة في استعادة هذا المستخدم. حاول مرة اخرى.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (122, 0, 'ar', 'exceptions', 'backend.access.users.role_needed', 'يجب عليك اختيار دور واحد على الأقل.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (123, 0, 'ar', 'exceptions', 'backend.access.users.role_needed_create', 'يجب عليك اختيار دور واحد على الأقل.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (124, 0, 'ar', 'exceptions', 'backend.access.users.session_wrong_driver', 'يجب ضبط برنامج تشغيل الجلسة على قاعدة البيانات لاستخدام هذه الميزة.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (125, 0, 'ar', 'exceptions', 'backend.access.users.social_delete_error', 'حدثت مشكلة أثناء إزالة الحساب الاجتماعي من المستخدم.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (126, 0, 'ar', 'exceptions', 'backend.access.users.update_error', 'حدثت مشكلة أثناء تحديث هذا المستخدم. حاول مرة اخرى.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (127, 0, 'ar', 'exceptions', 'backend.access.users.update_password_error', 'حدثت مشكلة أثناء تغيير كلمة مرور المستخدمين هذه. حاول مرة اخرى.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (128, 0, 'ar', 'exceptions', 'frontend.auth.confirmation.already_confirmed', 'تم تأكيد حسابك بالفعل.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (129, 0, 'ar', 'exceptions', 'frontend.auth.confirmation.confirm', 'اكد حسابك!', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (130, 0, 'ar', 'exceptions', 'frontend.auth.confirmation.created_confirm', 'تم إنشاء حسابك بنجاح. لقد أرسلنا لك رسالة بريد إلكتروني لتأكيد حسابك.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (131, 0, 'ar', 'exceptions', 'frontend.auth.confirmation.created_pending', 'تم إنشاء حسابك بنجاح وهو في انتظار الموافقة. سيتم إرسال بريد إلكتروني عند الموافقة على حسابك.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (132, 0, 'ar', 'exceptions', 'frontend.auth.confirmation.mismatch', 'رمز التأكيد الخاص بك غير متطابق.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (133, 0, 'ar', 'exceptions', 'frontend.auth.confirmation.not_found', 'رمز التأكيد هذا غير موجود.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (134, 0, 'ar', 'exceptions', 'frontend.auth.confirmation.pending', 'حسابك في انتظار الموافقة حاليًا.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (135, 0, 'ar', 'exceptions', 'frontend.auth.confirmation.resend', 'حسابك غير مؤكد يرجى النقر على رابط التأكيد في بريدك الإلكتروني ، أو <a href=\":url\">click انقر هنا </a> لإعادة إرسال رسالة التأكيد الإلكترونية.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (136, 0, 'ar', 'exceptions', 'frontend.auth.confirmation.resent', 'تم إرسال رسالة تأكيد إلكترونية جديدة إلى العنوان في الملف.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (137, 0, 'ar', 'exceptions', 'frontend.auth.confirmation.success', 'تم تأكيد حسابك بنجاح!', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (138, 0, 'ar', 'exceptions', 'frontend.auth.deactivated', 'حسابك تم تعطيله.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (139, 0, 'ar', 'exceptions', 'frontend.auth.email_taken', 'عنوان البريد الإلكتروني هذا مأخوذ بالفعل.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (140, 0, 'ar', 'exceptions', 'frontend.auth.password.change_mismatch', 'هذه ليست كلمة مرورك القديمة.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (141, 0, 'ar', 'exceptions', 'frontend.auth.password.reset_problem', 'حدثت مشكلة في إعادة تعيين كلمة المرور الخاصة بك. يرجى إعادة إرسال البريد الإلكتروني لإعادة تعيين كلمة المرور.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (142, 0, 'ar', 'exceptions', 'frontend.auth.registration_disabled', 'التسجيل مغلق حاليًا.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (143, 0, 'ar', 'http', '404.back', 'العودة إلى الصفحة الرئيسية', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (144, 0, 'ar', 'http', '404.description', 'هذا هو نوع من الزخارف ، أليس كذلك؟', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (145, 0, 'ar', 'http', '404.description2', 'يبدو أنه لم يتم العثور على أي شيء في هذا الموقع.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (146, 0, 'ar', 'http', '404.title', 'الصفحة غير موجودة', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (147, 0, 'ar', 'http', '404.title2', '404', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (148, 0, 'ar', 'http', '503.description', 'سأعود.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (149, 0, 'ar', 'http', '503.title', 'سأعود.', '2019-09-12 23:33:59', '2020-05-14 12:20:10'), (150, 0, 'ar', 'labels', 'backend.access.roles.create', 'خلق دور', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (151, 0, 'ar', 'labels', 'backend.access.roles.edit', 'تحرير الدور', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (152, 0, 'ar', 'labels', 'backend.access.roles.management', 'إدارة الدور', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (153, 0, 'ar', 'labels', 'backend.access.roles.table.number_of_users', 'عدد المستخدمين', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (154, 0, 'ar', 'labels', 'backend.access.roles.table.permissions', 'أذونات', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (155, 0, 'ar', 'labels', 'backend.access.roles.table.role', 'وظيفة', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (156, 0, 'ar', 'labels', 'backend.access.roles.table.sort', 'فرز', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (157, 0, 'ar', 'labels', 'backend.access.roles.table.total', 'مجموع الأدوار |', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (158, 0, 'ar', 'labels', 'backend.access.users.active', 'المستخدمين النشطين', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (159, 0, 'ar', 'labels', 'backend.access.users.all_permissions', 'جميع الأذونات', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (160, 0, 'ar', 'labels', 'backend.access.users.change_password', 'غير كلمة السر', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (161, 0, 'ar', 'labels', 'backend.access.users.change_password_for', 'تغيير كلمة المرور لـ :user', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (162, 0, 'ar', 'labels', 'backend.access.users.create', 'إنشاء مستخدم', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (163, 0, 'ar', 'labels', 'backend.access.users.deactivated', 'المستخدمين المعطلين', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (164, 0, 'ar', 'labels', 'backend.access.users.deleted', 'حذف المستخدمين', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (165, 0, 'ar', 'labels', 'backend.access.users.edit', 'تحرير العضو', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (166, 0, 'ar', 'labels', 'backend.access.users.management', 'إدارةالمستخدم', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (167, 0, 'ar', 'labels', 'backend.access.users.no_permissions', 'لا أذونات', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (168, 0, 'ar', 'labels', 'backend.access.users.no_roles', 'لا أدوار لتعيين.', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (169, 0, 'ar', 'labels', 'backend.access.users.permissions', 'أذونات', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (170, 0, 'ar', 'labels', 'backend.access.users.table.abilities', 'قدرات', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (171, 0, 'ar', 'labels', 'backend.access.users.table.confirmed', 'تم تأكيد', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (172, 0, 'ar', 'labels', 'backend.access.users.table.created', 'خلقت', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (173, 0, 'ar', 'labels', 'backend.access.users.table.email', 'البريد الإلكتروني', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (174, 0, 'ar', 'labels', 'backend.access.users.table.first_name', 'الاسم الاول', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (175, 0, 'ar', 'labels', 'backend.access.users.table.id', 'هوية شخصية', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (176, 0, 'ar', 'labels', 'backend.access.users.table.last_name', 'الكنية', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (177, 0, 'ar', 'labels', 'backend.access.users.table.last_updated', 'آخر تحديث', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (178, 0, 'ar', 'labels', 'backend.access.users.table.name', 'اسم', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (179, 0, 'ar', 'labels', 'backend.access.users.table.no_deactivated', 'لا المستخدمين المعطلين', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (180, 0, 'ar', 'labels', 'backend.access.users.table.no_deleted', 'لا يوجد مستخدمين محذوفين', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (181, 0, 'ar', 'labels', 'backend.access.users.table.other_permissions', 'أذونات أخرى', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (182, 0, 'ar', 'labels', 'backend.access.users.table.permissions', 'أذونات', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (183, 0, 'ar', 'labels', 'backend.access.users.table.roles', 'الأدوار', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (184, 0, 'ar', 'labels', 'backend.access.users.table.social', 'اجتماعي', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (185, 0, 'ar', 'labels', 'backend.access.users.table.status', 'الحالة', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (186, 0, 'ar', 'labels', 'backend.access.users.table.total', 'مجموع المستخدمين | مجموع المستخدمين', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (187, 0, 'ar', 'labels', 'backend.access.users.tabs.content.overview.avatar', 'الصورة الرمزية', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (188, 0, 'ar', 'labels', 'backend.access.users.tabs.content.overview.confirmed', 'تم تأكيد', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (189, 0, 'ar', 'labels', 'backend.access.users.tabs.content.overview.created_at', 'أنشئت في', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (190, 0, 'ar', 'labels', 'backend.access.users.tabs.content.overview.deleted_at', 'تم الحذف في', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (191, 0, 'ar', 'labels', 'backend.access.users.tabs.content.overview.email', 'البريد الإلكتروني', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (192, 0, 'ar', 'labels', 'backend.access.users.tabs.content.overview.first_name', 'الاسم الاول', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (193, 0, 'ar', 'labels', 'backend.access.users.tabs.content.overview.last_login_at', 'آخر تسجيل دخول في', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (194, 0, 'ar', 'labels', 'backend.access.users.tabs.content.overview.last_login_ip', 'آخر تسجيل دخول IP', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (195, 0, 'ar', 'labels', 'backend.access.users.tabs.content.overview.last_name', 'الكنية', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (196, 0, 'ar', 'labels', 'backend.access.users.tabs.content.overview.last_updated', 'آخر تحديث', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (197, 0, 'ar', 'labels', 'backend.access.users.tabs.content.overview.name', 'اسم', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (198, 0, 'ar', 'labels', 'backend.access.users.tabs.content.overview.status', 'الحالة', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (199, 0, 'ar', 'labels', 'backend.access.users.tabs.content.overview.timezone', 'وحدة زمنية', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (200, 0, 'ar', 'labels', 'backend.access.users.tabs.titles.history', 'التاريخ', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (201, 0, 'ar', 'labels', 'backend.access.users.tabs.titles.overview', 'نظرة عامة', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (202, 0, 'ar', 'labels', 'backend.access.users.user_actions', 'إجراءات المستخدم', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (203, 0, 'ar', 'labels', 'backend.access.users.view', 'عرض المستخدم', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (204, 0, 'ar', 'labels', 'backend.backup.api_key', 'مفتاح API', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (205, 0, 'ar', 'labels', 'backend.backup.api_secret', 'سر API', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (206, 0, 'ar', 'labels', 'backend.backup.app_key', 'مفتاح التطبيق', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (207, 0, 'ar', 'labels', 'backend.backup.app_secret', 'سر التطبيق', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (208, 0, 'ar', 'labels', 'backend.backup.app_token', 'رمز التطبيق', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (209, 0, 'ar', 'labels', 'backend.backup.aws', 'AWS S3', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (210, 0, 'ar', 'labels', 'backend.backup.backup_files', 'ملفات النسخ الاحتياطي', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (211, 0, 'ar', 'labels', 'backend.backup.backup_note', '<b> ملاحظة </b>: لتشغيل هذه النسخة الاحتياطية بشكل صحيح ، يلزمك إضافة الكود التالي إلى <b>CRON TAB:</b><br><code>* * * * * cd /path-to-your-project && php artisan schedule:run >> /dev/null 2>&1</code>', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (212, 0, 'ar', 'labels', 'backend.backup.backup_notice', 'يرجى الرجوع الوثائق قبل بدء النسخ الاحتياطي. لديها كل التفاصيل خطوة بخطوة لإنشاء نسخة احتياطية مع Dropbox.', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (213, 0, 'ar', 'labels', 'backend.backup.backup_schedule', 'جدول النسخ الاحتياطي', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (214, 0, 'ar', 'labels', 'backend.backup.backup_type', 'نوع النسخ الاحتياطي', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (215, 0, 'ar', 'labels', 'backend.backup.bucket_name', 'اسم الجرافة', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (216, 0, 'ar', 'labels', 'backend.backup.configuration', 'ترتيب', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (217, 0, 'ar', 'labels', 'backend.backup.daily', 'اليومي', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (218, 0, 'ar', 'labels', 'backend.backup.db', 'قاعدة البيانات', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (219, 0, 'ar', 'labels', 'backend.backup.db_app', 'ملفات قاعدة البيانات والتطبيق', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (220, 0, 'ar', 'labels', 'backend.backup.db_storage', 'ملفات قاعدة البيانات والتخزين', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (221, 0, 'ar', 'labels', 'backend.backup.dropbox', 'Dropbox', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (222, 0, 'ar', 'labels', 'backend.backup.dropbox_note', 'يرجى الخروج من وثائق <b> كيفية الحصول على مفاتيح تطبيق DropBox؟ </b>', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (223, 0, 'ar', 'labels', 'backend.backup.email', 'إشعار البريد الإلكتروني', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (224, 0, 'ar', 'labels', 'backend.backup.enable_disable', 'مفعل وغير مفعل', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (225, 0, 'ar', 'labels', 'backend.backup.generate_backup', 'توليد النسخ الاحتياطي', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (226, 0, 'ar', 'labels', 'backend.backup.monthly', 'شهريا', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (227, 0, 'ar', 'labels', 'backend.backup.region', 'منطقة', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (228, 0, 'ar', 'labels', 'backend.backup.title', 'دعم', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (229, 0, 'ar', 'labels', 'backend.backup.weekly', 'أسبوعي', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (230, 0, 'ar', 'labels', 'backend.blogs.create', 'انشاء مدونة', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (231, 0, 'ar', 'labels', 'backend.blogs.edit', 'تحرير المدونة', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (232, 0, 'ar', 'labels', 'backend.blogs.fields.category', 'الفئة', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (233, 0, 'ar', 'labels', 'backend.blogs.fields.clear', 'واضح', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (234, 0, 'ar', 'labels', 'backend.blogs.fields.comments', 'تعليقات', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (235, 0, 'ar', 'labels', 'backend.blogs.fields.content', 'يحتوى', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (236, 0, 'ar', 'labels', 'backend.blogs.fields.created', 'خلقت', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (237, 0, 'ar', 'labels', 'backend.blogs.fields.created_at', 'تم إنشاؤها على', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (238, 0, 'ar', 'labels', 'backend.blogs.fields.featured_image', 'صورة مميزة', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (239, 0, 'ar', 'labels', 'backend.blogs.fields.meta_description', 'ميتا الوصف', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (240, 0, 'ar', 'labels', 'backend.blogs.fields.meta_keywords', 'كلمات دلالية', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (241, 0, 'ar', 'labels', 'backend.blogs.fields.meta_title', 'عنوان الفوقية', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (242, 0, 'ar', 'labels', 'backend.blogs.fields.publish', 'نشر', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (243, 0, 'ar', 'labels', 'backend.blogs.fields.slug', 'سبيكة', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (244, 0, 'ar', 'labels', 'backend.blogs.fields.status', 'الحالة', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (245, 0, 'ar', 'labels', 'backend.blogs.fields.tags', 'الكلمات', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (246, 0, 'ar', 'labels', 'backend.blogs.fields.tags_placeholder', 'إضافة العلامات هنا', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (247, 0, 'ar', 'labels', 'backend.blogs.fields.title', 'عنوان', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (248, 0, 'ar', 'labels', 'backend.blogs.fields.views', 'الآراء', '2019-09-12 23:33:59', '2020-05-14 12:20:11'), (249, 0, 'ar', 'labels', 'backend.blogs.max_file_size', '(الحد الأقصى لحجم الملف 10 ميغابايت)', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (250, 0, 'ar', 'labels', 'backend.blogs.title', 'مدونة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (251, 0, 'ar', 'labels', 'backend.blogs.view', 'عرض المدونات', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (252, 0, 'ar', 'labels', 'backend.categories.create', 'إنشاء فئة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (253, 0, 'ar', 'labels', 'backend.categories.edit', 'تحرير الفئة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (254, 0, 'ar', 'labels', 'backend.categories.fields.courses', 'الدورات', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (255, 0, 'ar', 'labels', 'backend.categories.fields.icon', 'أيقونة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (256, 0, 'ar', 'labels', 'backend.categories.fields.icon_type.icon', 'اختر أيقونة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (257, 0, 'ar', 'labels', 'backend.categories.fields.icon_type.image', 'تحميل الصور', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (258, 0, 'ar', 'labels', 'backend.categories.fields.icon_type.select_any', 'اختر أي', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (259, 0, 'ar', 'labels', 'backend.categories.fields.icon_type.title', 'نوع الأيقونة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (260, 0, 'ar', 'labels', 'backend.categories.fields.image', 'صورة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (261, 0, 'ar', 'labels', 'backend.categories.fields.name', 'اسم', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (262, 0, 'ar', 'labels', 'backend.categories.fields.or', 'أو', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (263, 0, 'ar', 'labels', 'backend.categories.fields.select_icon', 'اختر أيقونة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (264, 0, 'ar', 'labels', 'backend.categories.fields.slug', 'سبيكة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (265, 0, 'ar', 'labels', 'backend.categories.fields.status', 'الحالة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (266, 0, 'ar', 'labels', 'backend.categories.title', 'الاقسام', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (267, 0, 'ar', 'labels', 'backend.categories.view', 'عرض الفئات', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (268, 0, 'ar', 'labels', 'backend.courses.fields.slug', 'سبيكة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (269, 0, 'ar', 'labels', 'backend.courses.fields.status', 'الحالة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (270, 0, 'ar', 'labels', 'backend.courses.fields.category', 'الفئة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (271, 0, 'ar', 'labels', 'backend.courses.fields.course', 'دورة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (272, 0, 'ar', 'labels', 'backend.courses.fields.course_image', 'صورة الدورة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (273, 0, 'ar', 'labels', 'backend.courses.fields.description', 'وصف', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (274, 0, 'ar', 'labels', 'backend.courses.fields.featured', 'متميز', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (275, 0, 'ar', 'labels', 'backend.courses.fields.lessons.add', 'أضف دروس', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (276, 0, 'ar', 'labels', 'backend.courses.fields.lessons.view', 'عرض الدروس', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (277, 0, 'ar', 'labels', 'backend.courses.fields.meta_description', 'ميتا الوصف', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (278, 0, 'ar', 'labels', 'backend.courses.fields.meta_keywords', 'كلمات دلالية', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (279, 0, 'ar', 'labels', 'backend.courses.fields.meta_title', 'عنوان الفوقية', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (280, 0, 'ar', 'labels', 'backend.courses.fields.popular', 'جمع', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (281, 0, 'ar', 'labels', 'backend.courses.fields.price', 'السعر', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (282, 0, 'ar', 'labels', 'backend.courses.fields.published', 'نشرت', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (283, 0, 'ar', 'labels', 'backend.courses.fields.sidebar', 'أضف الشريط الجانبي', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (284, 0, 'ar', 'labels', 'backend.courses.fields.start_date', 'تاريخ البدء', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (285, 0, 'ar', 'labels', 'backend.courses.fields.teachers', 'معلمون', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (286, 0, 'ar', 'labels', 'backend.courses.fields.title', 'عنوان', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (287, 0, 'ar', 'labels', 'backend.courses.fields.trending', 'الشائع', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (288, 0, 'ar', 'labels', 'backend.courses.fields.free', 'حر', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (289, 0, 'ar', 'labels', 'backend.courses.add_categories', 'إضافة فئات', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (290, 0, 'ar', 'labels', 'backend.courses.add_teachers', 'إضافة المعلمين', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (291, 0, 'ar', 'labels', 'backend.courses.category', 'الفئة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (292, 0, 'ar', 'labels', 'backend.courses.course_timeline', 'الجدول الزمني للدورة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (293, 0, 'ar', 'labels', 'backend.courses.create', 'إنشاء دورة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (294, 0, 'ar', 'labels', 'backend.courses.edit', 'تحرير الدورة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (295, 0, 'ar', 'labels', 'backend.courses.lesson', 'درس', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (296, 0, 'ar', 'labels', 'backend.courses.listing_note', 'سيتم عرض وفرز الدروس المنشورة فقط.', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (297, 0, 'ar', 'labels', 'backend.courses.save_timeline', 'حفظ الجدول الزمني', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (298, 0, 'ar', 'labels', 'backend.courses.select_category', 'اختر الفئة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (299, 0, 'ar', 'labels', 'backend.courses.select_teachers', 'اختر المعلمين', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (300, 0, 'ar', 'labels', 'backend.courses.slug_placeholder', 'سبيكة الإدخال أو سيتم إنشاؤه تلقائيا', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (301, 0, 'ar', 'labels', 'backend.courses.test', 'اختبار', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (302, 0, 'ar', 'labels', 'backend.courses.timeline_description', 'سحب وتغيير تسلسل الدروس / الاختبارات بالطبع', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (303, 0, 'ar', 'labels', 'backend.courses.title', 'الدورات', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (304, 0, 'ar', 'labels', 'backend.courses.view', 'عرض الدورات', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (305, 0, 'ar', 'labels', 'backend.lessons.fields.slug', 'سبيكة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (306, 0, 'ar', 'labels', 'backend.lessons.fields.add_audio', 'إضافة الصوت', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (307, 0, 'ar', 'labels', 'backend.lessons.fields.add_pdf', 'إضافة PDF', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (308, 0, 'ar', 'labels', 'backend.lessons.fields.add_video', 'أضف فيديو', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (309, 0, 'ar', 'labels', 'backend.lessons.fields.course', 'دورة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (310, 0, 'ar', 'labels', 'backend.lessons.fields.downloadable_files', 'ملفات قابلة للتحميل', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (311, 0, 'ar', 'labels', 'backend.lessons.fields.free_lesson', 'الدرس المجاني', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (312, 0, 'ar', 'labels', 'backend.lessons.fields.full_text', 'نص كامل', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (313, 0, 'ar', 'labels', 'backend.lessons.fields.lesson_image', 'صورة الدرس', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (314, 0, 'ar', 'labels', 'backend.lessons.fields.media_audio', 'صوت الوسائط', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (315, 0, 'ar', 'labels', 'backend.lessons.fields.media_pdf', 'قوات الدفاع الشعبي وسائل الإعلام', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (316, 0, 'ar', 'labels', 'backend.lessons.fields.media_video', 'فيديو وسائط', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (317, 0, 'ar', 'labels', 'backend.lessons.fields.position', 'موضع', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (318, 0, 'ar', 'labels', 'backend.lessons.fields.published', 'نشرت', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (319, 0, 'ar', 'labels', 'backend.lessons.fields.short_text', 'نص قصير', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (320, 0, 'ar', 'labels', 'backend.lessons.fields.title', 'عنوان', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (321, 0, 'ar', 'labels', 'backend.lessons.fields.youtube_videos', 'يوتيوب فيديو', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (322, 0, 'ar', 'labels', 'backend.lessons.create', 'إنشاء الدرس', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (323, 0, 'ar', 'labels', 'backend.lessons.edit', 'تحرير الدرس', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (324, 0, 'ar', 'labels', 'backend.lessons.enter_video_embed_code', 'أدخل رمز تضمين الفيديو', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (325, 0, 'ar', 'labels', 'backend.lessons.enter_video_url', 'أدخل بيانات الفيديو', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (326, 0, 'ar', 'labels', 'backend.lessons.max_file_size', '(حجم الملف الأقصى 5 ميجابايت)', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (327, 0, 'ar', 'labels', 'backend.lessons.remove', 'إزالة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (328, 0, 'ar', 'labels', 'backend.lessons.select_course', 'اختر الدورة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (329, 0, 'ar', 'labels', 'backend.lessons.short_description_placeholder', 'إدخال وصف قصير للدرس', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (330, 0, 'ar', 'labels', 'backend.lessons.slug_placeholder', 'سبيكة الإدخال أو سيتم إنشاؤه تلقائيا', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (331, 0, 'ar', 'labels', 'backend.lessons.title', 'الدروس', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (332, 0, 'ar', 'labels', 'backend.lessons.video_guide', '<p class = \"mb-1\"> <b> Youtube: </b> اذهب إلى Youtube -> اذهب إلى الفيديو الذي تريد عرضه -> انقر على زر المشاركة أسفل الفيديو. انسخ تلك الروابط والصقها في مربع النص أعلاه </p>\n<p class = \"mb-1\"> <b> Vimeo: </b> اذهب إلى Vimeo -> اذهب إلى الفيديو الذي تريد عرضه -> انقر على زر المشاركة وانسخ عنوان url للفيديو هنا </p>\n<p class = \"mb-1\"> <b> تحميل: </b> تحميل ملف <b> mp4 </b> في إدخال الملف </p>\n<p class = \"mb-1\"> <b> تضمين: </b> نسخ / لصق رمز التضمين في مربع النص أعلاه </p>', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (333, 0, 'ar', 'labels', 'backend.lessons.view', 'عرض الدروس', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (334, 0, 'ar', 'labels', 'backend.lessons.vimeo_note', '<b> تعليمات لإضافة رابط فيديو: </b> <br> انتقل إلى vimeo -> فيديو مفتوح -> انقر بزر الماوس الأيمن على الفيديو و <b> نسخ عنوان URL للفيديو </b> والصقه هنا. <br> لإضافة مقاطع فيديو متعددة ، قم بفصلها باستخدام علامة <b> و </b> (فاصلة).', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (335, 0, 'ar', 'labels', 'backend.lessons.yt_note', '<b> تعليمات لإضافة رابط فيديو: </b> <br> انتقل إلى youtube -> open video -> انقر بزر الماوس الأيمن على الفيديو و <b> نسخ عنوان URL للفيديو </b> والصقه هنا. <br> لإضافة مقاطع فيديو متعددة ، قم بفصلها باستخدام علامة <b> و </b> (فاصلة).', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (336, 0, 'ar', 'labels', 'backend.pages.fields.slug', 'سبيكة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (337, 0, 'ar', 'labels', 'backend.pages.fields.status', 'الحالة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (338, 0, 'ar', 'labels', 'backend.pages.fields.clear', 'واضح', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (339, 0, 'ar', 'labels', 'backend.pages.fields.content', 'يحتوى', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (340, 0, 'ar', 'labels', 'backend.pages.fields.created', 'خلقت', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (341, 0, 'ar', 'labels', 'backend.pages.fields.created_at', 'تم إنشاؤها على', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (342, 0, 'ar', 'labels', 'backend.pages.fields.drafted', 'صاغت', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (343, 0, 'ar', 'labels', 'backend.pages.fields.featured_image', 'صورة مميزة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (344, 0, 'ar', 'labels', 'backend.pages.fields.meta_description', 'ميتا الوصف', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (345, 0, 'ar', 'labels', 'backend.pages.fields.meta_keywords', 'كلمات دلالية', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (346, 0, 'ar', 'labels', 'backend.pages.fields.meta_title', 'عنوان الفوقية', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (347, 0, 'ar', 'labels', 'backend.pages.fields.published', 'نشرت', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (348, 0, 'ar', 'labels', 'backend.pages.fields.title', 'عنوان', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (349, 0, 'ar', 'labels', 'backend.pages.create', 'إنشاء صفحة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (350, 0, 'ar', 'labels', 'backend.pages.edit', 'تعديل الصفحة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (351, 0, 'ar', 'labels', 'backend.pages.max_file_size', '(الحد الأقصى لحجم الملف 10 ميغابايت)', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (352, 0, 'ar', 'labels', 'backend.pages.title', 'صفحات', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (353, 0, 'ar', 'labels', 'backend.pages.view', 'عرض الصفحات', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (354, 0, 'ar', 'labels', 'backend.faqs.fields.status', 'الحالة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (355, 0, 'ar', 'labels', 'backend.faqs.fields.answer', 'إجابة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (356, 0, 'ar', 'labels', 'backend.faqs.fields.category', 'الفئة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (357, 0, 'ar', 'labels', 'backend.faqs.fields.question', 'سؤال', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (358, 0, 'ar', 'labels', 'backend.faqs.create', 'إنشاء التعليمات', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (359, 0, 'ar', 'labels', 'backend.faqs.edit', 'تحرير التعليمات', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (360, 0, 'ar', 'labels', 'backend.faqs.title', 'أسئلة وأجوبة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (361, 0, 'ar', 'labels', 'backend.faqs.view', 'عرض الأسئلة الشائعة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (362, 0, 'ar', 'labels', 'backend.hero_slider.fields.status', 'الحالة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (363, 0, 'ar', 'labels', 'backend.hero_slider.fields.bg_image', 'صورة BG', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (364, 0, 'ar', 'labels', 'backend.hero_slider.fields.buttons.add', 'إضافة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (365, 0, 'ar', 'labels', 'backend.hero_slider.fields.buttons.label', 'ضع الكلمة المناسبة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (366, 0, 'ar', 'labels', 'backend.hero_slider.fields.buttons.link', 'حلقة الوصل', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (367, 0, 'ar', 'labels', 'backend.hero_slider.fields.buttons.name', 'زر', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (368, 0, 'ar', 'labels', 'backend.hero_slider.fields.buttons.note', 'ملاحظة: يمكن إضافة 4 أزرار كحد أقصى. يرجى إضافة التصنيف والرابط للزر لإعادة توجيه الإجراء عند النقر فوق الزر.', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (369, 0, 'ar', 'labels', 'backend.hero_slider.fields.buttons.placeholder', 'إضافة عدد من الأزرار التي تريد إضافتها', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (370, 0, 'ar', 'labels', 'backend.hero_slider.fields.buttons.title', 'وصفت', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (371, 0, 'ar', 'labels', 'backend.hero_slider.fields.hero_text', 'نص البطل', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (372, 0, 'ar', 'labels', 'backend.hero_slider.fields.name', 'اسم', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (373, 0, 'ar', 'labels', 'backend.hero_slider.fields.overlay.note', 'إذا قمت بتشغيله. سيتم عرض تراكب أسود على صورتك. سيكون مفيدًا عندما لا تكون صورة BG أغمق أو لا تحتوي على تراكب', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (374, 0, 'ar', 'labels', 'backend.hero_slider.fields.overlay.title', 'غطاء', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (375, 0, 'ar', 'labels', 'backend.hero_slider.fields.sequence', 'تسلسل', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (376, 0, 'ar', 'labels', 'backend.hero_slider.fields.sub_text', 'النص الفرعي', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (377, 0, 'ar', 'labels', 'backend.hero_slider.fields.widget.countdown_timer', 'العد التنازلي', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (378, 0, 'ar', 'labels', 'backend.hero_slider.fields.widget.input_date_time', 'تاريخ الإدخال والوقت', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (379, 0, 'ar', 'labels', 'backend.hero_slider.fields.widget.search_bar', 'شريط البحث', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (380, 0, 'ar', 'labels', 'backend.hero_slider.fields.widget.select_widget', 'حدد القطعة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (381, 0, 'ar', 'labels', 'backend.hero_slider.fields.widget.title', 'القطعة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (382, 0, 'ar', 'labels', 'backend.hero_slider.create', 'إنشاء شريحة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (383, 0, 'ar', 'labels', 'backend.hero_slider.edit', 'تحرير الشرائح', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (384, 0, 'ar', 'labels', 'backend.hero_slider.manage_sequence', 'إدارة تسلسل الشرائح', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (385, 0, 'ar', 'labels', 'backend.hero_slider.note', 'ملاحظة: يرجى تحميل .jpg أو .png بدقة <b> 1920 × 900 </b> للحصول على أفضل نتيجة استخدم صور أغمق أو متراكبة للحصول على نتيجة أفضل.', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (386, 0, 'ar', 'labels', 'backend.hero_slider.off', 'إيقاف', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (387, 0, 'ar', 'labels', 'backend.hero_slider.on', 'على', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (388, 0, 'ar', 'labels', 'backend.hero_slider.save_sequence', 'حفظ التسلسل', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (389, 0, 'ar', 'labels', 'backend.hero_slider.sequence_note', 'سحب وتغيير تسلسل الشريحة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (390, 0, 'ar', 'labels', 'backend.hero_slider.title', 'بطل المتزلج', '2019-09-12 23:34:00', '2020-05-14 12:20:11'); INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES (391, 0, 'ar', 'labels', 'backend.hero_slider.view', 'عرض الشرائح', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (392, 0, 'ar', 'labels', 'backend.reasons.fields.status', 'الحالة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (393, 0, 'ar', 'labels', 'backend.reasons.fields.content', 'يحتوى', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (394, 0, 'ar', 'labels', 'backend.reasons.fields.icon', 'أيقونة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (395, 0, 'ar', 'labels', 'backend.reasons.fields.title', 'عنوان', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (396, 0, 'ar', 'labels', 'backend.reasons.create', 'خلق السبب', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (397, 0, 'ar', 'labels', 'backend.reasons.edit', 'تحرير السبب', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (398, 0, 'ar', 'labels', 'backend.reasons.note', 'سيتم عرض الأسباب كمنزلق على الصفحة الرئيسية أدناه', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (399, 0, 'ar', 'labels', 'backend.reasons.title', 'أسباب', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (400, 0, 'ar', 'labels', 'backend.reasons.view', 'عرض الأسباب', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (401, 0, 'ar', 'labels', 'backend.sponsors.fields.status', 'الحالة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (402, 0, 'ar', 'labels', 'backend.sponsors.fields.link', 'حلقة الوصل', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (403, 0, 'ar', 'labels', 'backend.sponsors.fields.logo', 'شعار', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (404, 0, 'ar', 'labels', 'backend.sponsors.fields.name', 'اسم', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (405, 0, 'ar', 'labels', 'backend.sponsors.create', 'إنشاء الرعاة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (406, 0, 'ar', 'labels', 'backend.sponsors.edit', 'تحرير الرعاة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (407, 0, 'ar', 'labels', 'backend.sponsors.title', 'الرعاة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (408, 0, 'ar', 'labels', 'backend.sponsors.view', 'عرض الرعاة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (409, 0, 'ar', 'labels', 'backend.teachers.fields.status', 'الحالة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (410, 0, 'ar', 'labels', 'backend.teachers.fields.email', 'عنوان بريد الكتروني', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (411, 0, 'ar', 'labels', 'backend.teachers.fields.first_name', 'الاسم الاول', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (412, 0, 'ar', 'labels', 'backend.teachers.fields.image', 'صورة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (413, 0, 'ar', 'labels', 'backend.teachers.fields.last_name', 'الكنية', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (414, 0, 'ar', 'labels', 'backend.teachers.fields.password', 'كلمه السر', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (415, 0, 'ar', 'labels', 'backend.teachers.create', 'خلق المعلم', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (416, 0, 'ar', 'labels', 'backend.teachers.edit', 'تحرير المعلم', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (417, 0, 'ar', 'labels', 'backend.teachers.title', 'معلمون', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (418, 0, 'ar', 'labels', 'backend.teachers.view', 'عرض المعلمين', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (419, 0, 'ar', 'labels', 'backend.testimonials.fields.status', 'الحالة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (420, 0, 'ar', 'labels', 'backend.testimonials.fields.content', 'يحتوى', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (421, 0, 'ar', 'labels', 'backend.testimonials.fields.name', 'اسم', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (422, 0, 'ar', 'labels', 'backend.testimonials.fields.occupation', 'الاحتلال', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (423, 0, 'ar', 'labels', 'backend.testimonials.create', 'إنشاء التزكية', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (424, 0, 'ar', 'labels', 'backend.testimonials.edit', 'تحرير التزكية', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (425, 0, 'ar', 'labels', 'backend.testimonials.title', 'الشهادات - التوصيات', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (426, 0, 'ar', 'labels', 'backend.testimonials.view', 'عرض الشهادات', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (427, 0, 'ar', 'labels', 'backend.contacts.fields.email', 'البريد الإلكتروني', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (428, 0, 'ar', 'labels', 'backend.contacts.fields.message', 'رسالة', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (429, 0, 'ar', 'labels', 'backend.contacts.fields.name', 'اسم', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (430, 0, 'ar', 'labels', 'backend.contacts.fields.phone', 'هاتف', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (431, 0, 'ar', 'labels', 'backend.contacts.fields.time', 'زمن', '2019-09-12 23:34:00', '2020-05-14 12:20:11'), (432, 0, 'ar', 'labels', 'backend.contacts.title', 'يؤدي', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (433, 0, 'ar', 'labels', 'backend.dashboard.amount', 'كمية', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (434, 0, 'ar', 'labels', 'backend.dashboard.buy_course_now', 'شراء بالطبع الآن', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (435, 0, 'ar', 'labels', 'backend.dashboard.completed', 'منجز', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (436, 0, 'ar', 'labels', 'backend.dashboard.course', 'دورة', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (437, 0, 'ar', 'labels', 'backend.dashboard.courses', 'الدورات', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (438, 0, 'ar', 'labels', 'backend.dashboard.email', 'البريد الإلكتروني', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (439, 0, 'ar', 'labels', 'backend.dashboard.message', 'رسالة', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (440, 0, 'ar', 'labels', 'backend.dashboard.message_by', 'رسالة بواسطة', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (441, 0, 'ar', 'labels', 'backend.dashboard.name', 'اسم', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (442, 0, 'ar', 'labels', 'backend.dashboard.no_data', 'لا تتوافر بيانات', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (443, 0, 'ar', 'labels', 'backend.dashboard.ordered_by', 'مرتبة حسب', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (444, 0, 'ar', 'labels', 'backend.dashboard.recent_contact_requests', 'طلبات الاتصال الحديثة', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (445, 0, 'ar', 'labels', 'backend.dashboard.recent_contacts', 'الاتصالات الأخيرة', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (446, 0, 'ar', 'labels', 'backend.dashboard.recent_messages', 'الرسائل الحديثة', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (447, 0, 'ar', 'labels', 'backend.dashboard.recent_orders', 'الطلبيات الأخيرة', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (448, 0, 'ar', 'labels', 'backend.dashboard.recent_reviews', 'المراجعات الأخيرة', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (449, 0, 'ar', 'labels', 'backend.dashboard.review', 'إعادة النظر', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (450, 0, 'ar', 'labels', 'backend.dashboard.students', 'الطلاب', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (451, 0, 'ar', 'labels', 'backend.dashboard.students_enrolled', 'التحق الطلاب بـ <br> الدورات التدريبية الخاصة بك', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (452, 0, 'ar', 'labels', 'backend.dashboard.teachers', 'معلمون', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (453, 0, 'ar', 'labels', 'backend.dashboard.time', 'زمن', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (454, 0, 'ar', 'labels', 'backend.dashboard.title', 'لوحة القيادة', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (455, 0, 'ar', 'labels', 'backend.dashboard.trending', 'الشائع', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (456, 0, 'ar', 'labels', 'backend.dashboard.view', 'رأي', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (457, 0, 'ar', 'labels', 'backend.dashboard.view_all', 'عرض الكل', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (458, 0, 'ar', 'labels', 'backend.dashboard.your_courses', 'الدورات الخاصة بك', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (459, 0, 'ar', 'labels', 'backend.dashboard.my_course_bundles', 'حزم دورة بلدي', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (460, 0, 'ar', 'labels', 'backend.dashboard.my_courses', 'دوراتي', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (461, 0, 'ar', 'labels', 'backend.dashboard.course_and_bundles', 'بالطبع وحزم', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (462, 0, 'ar', 'labels', 'backend.dashboard.your_courses_and_bundles', 'الدورات الخاصة بك والحزم', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (463, 0, 'ar', 'labels', 'backend.dashboard.pending', 'قيد الانتظار', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (464, 0, 'ar', 'labels', 'backend.dashboard.pending_orders', 'أوامر معلقة', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (465, 0, 'ar', 'labels', 'backend.dashboard.success', 'نجاح', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (466, 0, 'ar', 'labels', 'backend.dashboard.failed', 'فشل', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (467, 0, 'ar', 'labels', 'backend.general_settings.app_locale', 'لغة التطبيق', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (468, 0, 'ar', 'labels', 'backend.general_settings.app_name', 'اسم التطبيق', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (469, 0, 'ar', 'labels', 'backend.general_settings.app_timezone', 'التطبيق المنطقة الزمنية', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (470, 0, 'ar', 'labels', 'backend.general_settings.app_url', 'عنوان URL للتطبيق', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (471, 0, 'ar', 'labels', 'backend.general_settings.captcha', 'ما إذا كان التسجيل - تسجيل الدخول captcha أو إيقاف تشغيله', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (472, 0, 'ar', 'labels', 'backend.general_settings.captcha_note', 'كيفية الحصول على بيانات اعتماد Google reCaptcha؟', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (473, 0, 'ar', 'labels', 'backend.general_settings.captcha_site_key', 'مفتاح التحقق', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (474, 0, 'ar', 'labels', 'backend.general_settings.captcha_site_secret', 'كلمة التحقق السرية', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (475, 0, 'ar', 'labels', 'backend.general_settings.captcha_status', 'وضع كلمة التحقق', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (476, 0, 'ar', 'labels', 'backend.general_settings.change_email', 'تغيير الايميل', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (477, 0, 'ar', 'labels', 'backend.general_settings.confirm_email', 'تأكيد عنوان البريد الإلكتروني', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (478, 0, 'ar', 'labels', 'backend.general_settings.contact.location_on_map', 'الموقع على الخريطة', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (479, 0, 'ar', 'labels', 'backend.general_settings.contact.map_note', '<ol class=\"map-guide\">\n<li>اذهب إلى <a class=\"text-bold\" target=\"_blank\" href=\"//maps.google.com\">خرائط جوجل</a> </li>\n<li>ابحث في المكان الذي تريد إضافته عن طريق إدخال العنوان / الموقع في مربع الإدخال الموجود في الركن الأيمن العلوي</li>\n<li>بمجرد الحصول على المكان الذي تريده. هذا يظهر التفاصيل في الشريط الجانبي الأيسر. انقر فوق <i class = \"fa fa-share-alt text-primary\"> زر </i></li>\n<li>ستظهر نافذة منبثقة تحتوي على علامتي تبويب <b> إرسال رابط </b> و <b> تضمين خريطة </b></li>\n<li>انقر فوق <b> تضمين خريطة </b> ستظهر لك اختيار \"مكان على الخريطة\"</li>\n<li>الآن انقر على القائمة المنسدلة من اليسار. بشكل افتراضي ، يتم تحديد <b> متوسط </b>. انقر عليها واختر <b> كبير </b></li>\n<li>الآن انقر على رابط <b class = \"text-primary\"> COPY HTML </b> منه و <b> لصق </b> هذا الرمز هنا في <b> الموقع على الخريطة </b>.</li>\n </ol>', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (480, 0, 'ar', 'labels', 'backend.general_settings.contact.primary_address', 'العنوان الرئيسي', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (481, 0, 'ar', 'labels', 'backend.general_settings.contact.primary_email', 'البريد الإلكتروني الرئيسي', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (482, 0, 'ar', 'labels', 'backend.general_settings.contact.primary_email_note', 'سيتم استخدام هذا البريد الإلكتروني لمطابقة رسائل البريد الإلكتروني \"اتصل بنا\"', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (483, 0, 'ar', 'labels', 'backend.general_settings.contact.primary_phone', 'الهاتف الرئيسي', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (484, 0, 'ar', 'labels', 'backend.general_settings.contact.secondary_address', 'العنوان الثانوي', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (485, 0, 'ar', 'labels', 'backend.general_settings.contact.secondary_email', 'البريد الإلكتروني الثانوي', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (486, 0, 'ar', 'labels', 'backend.general_settings.contact.secondary_phone', 'الهاتف الثانوي', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (487, 0, 'ar', 'labels', 'backend.general_settings.contact.short_text', 'نص قصير', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (488, 0, 'ar', 'labels', 'backend.general_settings.contact.show', 'تبين', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (489, 0, 'ar', 'labels', 'backend.general_settings.contact.title', 'اتصل', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (490, 0, 'ar', 'labels', 'backend.general_settings.counter', 'عداد', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (491, 0, 'ar', 'labels', 'backend.general_settings.counter_note', '<b> ثابت </b> = إضافة بيانات لعداد يدويًا. الرجاء إدخال النص الدقيق الذي تريد عرضه في قسم عداد الواجهة الأمامية ، <br> <b> قاعدة البيانات / حقيقي </b> = سيستغرق الأمر بيانات حقيقية من قاعدة البيانات لجميع الحقول (الطلاب المسجلين ، إجمالي الدورات ، إجمالي المعلمين)', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (492, 0, 'ar', 'labels', 'backend.general_settings.database', 'قاعدة البيانات / ريال', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (493, 0, 'ar', 'labels', 'backend.general_settings.email.mail_driver', 'سائق البريد', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (494, 0, 'ar', 'labels', 'backend.general_settings.email.mail_driver_note', 'يمكنك تحديد أي برنامج تشغيل تريده لإعداد Mail. <ب> السابقين. SMTP و Mailgun و Mandrill و SparkPost و Amazon SES إلخ. </b> <br> أضف <b> برنامج تشغيل فرديًا فقط </b>', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (495, 0, 'ar', 'labels', 'backend.general_settings.email.mail_encryption', 'تشفير البريد', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (496, 0, 'ar', 'labels', 'backend.general_settings.email.mail_encryption_note', 'استخدم <b> tls </b> إذا كان موقعك يستخدم بروتوكول <b> HTTP </b> و <b>ssl </b> إذا كان موقعك يستخدم بروتوكول <b> HTTPS </b>', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (497, 0, 'ar', 'labels', 'backend.general_settings.email.mail_from_address', 'البريد من العنوان', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (498, 0, 'ar', 'labels', 'backend.general_settings.email.mail_from_address_note', 'سيتم استخدام هذا البريد الإلكتروني لمراسلات \"نموذج الاتصال\".', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (499, 0, 'ar', 'labels', 'backend.general_settings.email.mail_from_name', 'البريد من الاسم', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (500, 0, 'ar', 'labels', 'backend.general_settings.email.mail_from_name_note', 'سيكون هذا اسم العرض للبريد الإلكتروني المرسل.', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (501, 0, 'ar', 'labels', 'backend.general_settings.email.mail_host', 'البريد المضيف', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (502, 0, 'ar', 'labels', 'backend.general_settings.email.mail_password', 'بريد كلمة المرور', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (503, 0, 'ar', 'labels', 'backend.general_settings.email.mail_password_note', 'أضف كلمة مرور البريد الإلكتروني التي تريد تكوينها لإرسال رسائل البريد الإلكتروني', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (504, 0, 'ar', 'labels', 'backend.general_settings.email.mail_port', 'ميناء البريد', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (505, 0, 'ar', 'labels', 'backend.general_settings.email.mail_username', 'البريد اسم المستخدم', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (506, 0, 'ar', 'labels', 'backend.general_settings.email.mail_username_note', 'أضف معرف بريدك الإلكتروني الذي تريد تكوينه لإرسال رسائل البريد الإلكتروني', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (507, 0, 'ar', 'labels', 'backend.general_settings.email.note', '<b> ملاحظة مهمة </b>: إذا كنت تستخدم <b> GMAIL </b> لتكوين البريد ، فتأكد من إكمال العملية التالية قبل التحديث:\n <UL>\n<li> انتقل إلى <a target=\"_blank\" href=\"https://myaccount.google.com/security\"> حسابي </a> من حسابك في Google الذي تريد تكوينه وتسجيل الدخول </li>\n<li> قم بالتمرير لأسفل إلى <b> وصول أقل أمانًا للتطبيق </b> وتعيينه <b>ON</b> </li>\n</UL>', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (508, 0, 'ar', 'labels', 'backend.general_settings.email.title', 'تكوين البريد', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (509, 0, 'ar', 'labels', 'backend.general_settings.enable_registration', 'تمكين التسجيل', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (510, 0, 'ar', 'labels', 'backend.general_settings.font_color', 'لون الخط', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (511, 0, 'ar', 'labels', 'backend.general_settings.footer.bottom_footer', 'أسفل تذييل', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (512, 0, 'ar', 'labels', 'backend.general_settings.footer.bottom_footer_note', 'ملاحظة: يتضمن النص حقوق الطبع والنشر وصلات تذييل', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (513, 0, 'ar', 'labels', 'backend.general_settings.footer.copyright_text', 'نص حقوق النشر', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (514, 0, 'ar', 'labels', 'backend.general_settings.footer.custom_links', 'روابط مخصصة', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (515, 0, 'ar', 'labels', 'backend.general_settings.footer.featured_courses', 'دورات مميزة', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (516, 0, 'ar', 'labels', 'backend.general_settings.footer.footer_links', 'روابط تذييل الصفحة', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (517, 0, 'ar', 'labels', 'backend.general_settings.footer.link', 'حلقة الوصل', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (518, 0, 'ar', 'labels', 'backend.general_settings.footer.link_label', 'ضع الكلمة المناسبة', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (519, 0, 'ar', 'labels', 'backend.general_settings.footer.link_url', 'URL', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (520, 0, 'ar', 'labels', 'backend.general_settings.footer.newsletter_form', 'نموذج النشرة الإخبارية', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (521, 0, 'ar', 'labels', 'backend.general_settings.footer.popular_categories', 'فئات شعبية', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (522, 0, 'ar', 'labels', 'backend.general_settings.footer.popular_courses', 'دورات شعبية', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (523, 0, 'ar', 'labels', 'backend.general_settings.footer.recent_news', 'أخبار حديثة', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (524, 0, 'ar', 'labels', 'backend.general_settings.footer.section_1', 'القسم 1', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (525, 0, 'ar', 'labels', 'backend.general_settings.footer.section_2', 'القسم 2', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (526, 0, 'ar', 'labels', 'backend.general_settings.footer.section_3', 'القسم 3', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (527, 0, 'ar', 'labels', 'backend.general_settings.footer.short_description', 'وصف قصير فارغ', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (528, 0, 'ar', 'labels', 'backend.general_settings.footer.social_links', 'روابط اجتماعية', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (529, 0, 'ar', 'labels', 'backend.general_settings.footer.social_links_note', 'أضف عنوان URL للرابط الاجتماعي وحدد أيقونة لتلك الوسائط من iconpicker. انقر فوق الزر <b> ADD + </b>. وسيتم إنشاء الرابط الاجتماعي الخاص بك. يمكنك أيضًا حذفها بالنقر فوق الزر <b> <i class = \"fa fa-times\"> </i> </b>', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (530, 0, 'ar', 'labels', 'backend.general_settings.footer.title', 'تذييل', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (531, 0, 'ar', 'labels', 'backend.general_settings.footer.trending_courses', 'تتجه الدورات', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (532, 0, 'ar', 'labels', 'backend.general_settings.general.title', 'جنرال لواء', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (533, 0, 'ar', 'labels', 'backend.general_settings.google_analytics', 'جوجل تحليلات مدونة', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (534, 0, 'ar', 'labels', 'backend.general_settings.google_analytics_id', 'معرف Google Analytics', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (535, 0, 'ar', 'labels', 'backend.general_settings.google_analytics_id_note', 'كيف تحصل على Google Analytics ID؟', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (536, 0, 'ar', 'labels', 'backend.general_settings.homepage', 'اختر الصفحة الرئيسية', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (537, 0, 'ar', 'labels', 'backend.general_settings.language_settings.default_language', 'اللغة الافتراضية', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (538, 0, 'ar', 'labels', 'backend.general_settings.language_settings.display_type', 'نوع العرض', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (539, 0, 'ar', 'labels', 'backend.general_settings.language_settings.left_to_right', 'من اليسار إلى اليمين', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (540, 0, 'ar', 'labels', 'backend.general_settings.language_settings.right_to_left', 'من اليمين الى اليسار', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (541, 0, 'ar', 'labels', 'backend.general_settings.language_settings.title', 'اعدادات اللغة', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (542, 0, 'ar', 'labels', 'backend.general_settings.layout.title', 'نسق', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (543, 0, 'ar', 'labels', 'backend.general_settings.layout_note', 'سيؤدي هذا إلى تغيير تخطيط سمة الواجهة الأمامية', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (544, 0, 'ar', 'labels', 'backend.general_settings.layout_type', 'نوع التخطيط', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (545, 0, 'ar', 'labels', 'backend.general_settings.logos.title', 'الشعارات', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (546, 0, 'ar', 'labels', 'backend.general_settings.mail_configuration_note', 'هل قمت بتكوين: ربط إعدادات البريد </a>؟ من الضروري الإعداد لإرسال / استقبال رسائل البريد الإلكتروني', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (547, 0, 'ar', 'labels', 'backend.general_settings.mail_driver', 'سائق البريد', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (548, 0, 'ar', 'labels', 'backend.general_settings.mail_from_address', 'البريد من العنوان', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (549, 0, 'ar', 'labels', 'backend.general_settings.mail_from_name', 'البريد من الاسم', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (550, 0, 'ar', 'labels', 'backend.general_settings.mail_host', 'مضيف البريد', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (551, 0, 'ar', 'labels', 'backend.general_settings.mail_password', 'بريد كلمة المرور', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (552, 0, 'ar', 'labels', 'backend.general_settings.mail_port', 'ميناء البريد', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (553, 0, 'ar', 'labels', 'backend.general_settings.mail_username', 'البريد اسم المستخدم', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (554, 0, 'ar', 'labels', 'backend.general_settings.management', 'الاعدادات العامة', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (555, 0, 'ar', 'labels', 'backend.general_settings.newsletter.api_key', 'مفتاح API', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (556, 0, 'ar', 'labels', 'backend.general_settings.newsletter.api_key_note', 'أنشئ <b> مفتاح API </b> من <a target=\"_blank\" href=\"https://mailchimp.com/\"> <b> حساب Mailchimp </b> </a> والصقه أعلاه مربع النوع.', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (557, 0, 'ar', 'labels', 'backend.general_settings.newsletter.api_key_note_sendgrid', 'قم بإنشاء <b> مفتاح API </b> من <a target=\"_blank\" href=\"https://sendgrid.com/\"> <b> حساب SendGrid </b> </a> والصقه في أعلاه مربع الكتابة.', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (558, 0, 'ar', 'labels', 'backend.general_settings.newsletter.api_key_question', 'كيفية توليد مفتاح API؟', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (559, 0, 'ar', 'labels', 'backend.general_settings.newsletter.create_new', 'إنشاء واختيار جديد', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (560, 0, 'ar', 'labels', 'backend.general_settings.newsletter.double_opt_in', 'التقيد المزدوج', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (561, 0, 'ar', 'labels', 'backend.general_settings.newsletter.double_opt_in_note', '<b> On </b> = سيُطلب من المستخدم في البريد الاشتراك في الاشتراك. <b> متوقف </b> = سيتم اشتراك المستخدم مباشرةً في الرسائل الإخبارية', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (562, 0, 'ar', 'labels', 'backend.general_settings.newsletter.get_lists', 'الحصول على قوائم', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (563, 0, 'ar', 'labels', 'backend.general_settings.newsletter.list_id', 'معرف القائمة', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (564, 0, 'ar', 'labels', 'backend.general_settings.newsletter.list_id_note', 'ابحث عن <b> معرف القائمة </b> والصقه في المربع أعلاه', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (565, 0, 'ar', 'labels', 'backend.general_settings.newsletter.list_id_question', 'كيفية العثور على معرف قائمة من Mailchimp؟', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (566, 0, 'ar', 'labels', 'backend.general_settings.newsletter.list_id_question_sendgrid', 'إنشاء قائمة بريد إلكتروني جديدة لـ SendGrid هنا.', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (567, 0, 'ar', 'labels', 'backend.general_settings.newsletter.mail_provider', 'مزود خدمة البريد', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (568, 0, 'ar', 'labels', 'backend.general_settings.newsletter.mail_provider_note', '<b> ملاحظة </b>: يمكنك تحديد أي مزود خدمة بريد لتلقي جميع رسائل البريد الإلكتروني المستخدمة في <b> الاشتراك في الرسالة الإخبارية </b>. <br> حدد وإعداد وفقًا للخطوات الموضحة. <b> إنه إلزامي </b> ، إذا كنت تريد استخدام نموذج <b> اشتراك النشرة الإخبارية </b>.', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (569, 0, 'ar', 'labels', 'backend.general_settings.newsletter.mailchimp', 'ميل تشيمب', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (570, 0, 'ar', 'labels', 'backend.general_settings.newsletter.manage_lists', 'إدارة قوائم SendGrid', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (571, 0, 'ar', 'labels', 'backend.general_settings.newsletter.select_list', 'اختر قائمة', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (572, 0, 'ar', 'labels', 'backend.general_settings.newsletter.sendgrid', 'SendGrid', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (573, 0, 'ar', 'labels', 'backend.general_settings.newsletter.sendgrid_lists', 'SendGrid قوائم البريد الإلكتروني', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (574, 0, 'ar', 'labels', 'backend.general_settings.newsletter.title', 'تكوين النشرة الإخبارية', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (575, 0, 'ar', 'labels', 'backend.general_settings.password_expires_days', 'كلمة المرور تنتهي أيام', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (576, 0, 'ar', 'labels', 'backend.general_settings.password_history', 'كلمة السر التاريخ', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (577, 0, 'ar', 'labels', 'backend.general_settings.payment_settings.client_id', 'معرف العميل', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (578, 0, 'ar', 'labels', 'backend.general_settings.payment_settings.client_secret', 'سر', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (579, 0, 'ar', 'labels', 'backend.general_settings.payment_settings.how_to_paypal', 'كيفية الحصول على بيانات اعتماد API في PayPal؟', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (580, 0, 'ar', 'labels', 'backend.general_settings.payment_settings.how_to_stripe', 'كيفية الحصول على أوراق اعتماد API STRIPE؟', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (581, 0, 'ar', 'labels', 'backend.general_settings.payment_settings.key', 'مفتاح API', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (582, 0, 'ar', 'labels', 'backend.general_settings.payment_settings.live', 'حي', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (583, 0, 'ar', 'labels', 'backend.general_settings.payment_settings.mode', 'الوضع', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (584, 0, 'ar', 'labels', 'backend.general_settings.payment_settings.mode_note', '<b> Sandbox </b> = سيتم استخدامه لاختبار المدفوعات باستخدام بيانات اعتماد اختبار PayPal. يمكن للحساب باستخدام USD فقط إجراء الدفعات مع PayPal في الوقت الحالي. سيتم إعادة توجيه هذه الخيارات لاختبار مدفوعات PayPal باستخدام بيانات اعتماد مستخدم Sandbox. سيتم استخدامه للمعاملات الوهمية فقط. <br>\n<b> Live </b> = سيتم استخدام بيانات اعتماد Live PayPal معك لإجراء معاملات فعلية مع المستخدمين العاديين باستخدام حساب PayPal.', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (585, 0, 'ar', 'labels', 'backend.general_settings.payment_settings.offline_mode', 'طريقة الدفع دون اتصال', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (586, 0, 'ar', 'labels', 'backend.general_settings.payment_settings.offline_mode_note', 'يحصل المستخدم على مساعدة للدفع في وضع عدم الاتصال بالإنترنت عبر المشرف', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (587, 0, 'ar', 'labels', 'backend.general_settings.payment_settings.paypal', 'طريقة الدفع باي بال', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (588, 0, 'ar', 'labels', 'backend.general_settings.payment_settings.paypal_note', 'يعيد توجيه إلى paypal للدفع', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (589, 0, 'ar', 'labels', 'backend.general_settings.payment_settings.sandbox', 'رمل', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (590, 0, 'ar', 'labels', 'backend.general_settings.payment_settings.secret', 'سر API', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (591, 0, 'ar', 'labels', 'backend.general_settings.payment_settings.stripe', 'طريقة الدفع الشريطية', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (592, 0, 'ar', 'labels', 'backend.general_settings.payment_settings.stripe_note', 'تمكن المدفوعات في الموقع مع بطاقات الخصم / الائتمان', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (593, 0, 'ar', 'labels', 'backend.general_settings.payment_settings.title', 'تكوين الدفع', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (594, 0, 'ar', 'labels', 'backend.general_settings.payment_settings.select_currency', 'اختر العملة', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (595, 0, 'ar', 'labels', 'backend.general_settings.payment_settings.bluesnap', 'Bluesnap طريقة الدفع', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (596, 0, 'ar', 'labels', 'backend.general_settings.payment_settings.bluesnap_note', 'نموذج بطاقة Bluesnap للدفع', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (597, 0, 'ar', 'labels', 'backend.general_settings.payment_settings.how_to_bluesnap', 'كيفية الحصول على بيانات اعتماد Bluesnap API؟', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (598, 0, 'ar', 'labels', 'backend.general_settings.requires_approval', 'يتطلب موافقة', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (599, 0, 'ar', 'labels', 'backend.general_settings.retest_note', 'تمكين / تعطيل إذا كان المستخدم سيكون قادرا على إعادة اختبار للامتحان نفسه', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (600, 0, 'ar', 'labels', 'backend.general_settings.sections_note', 'بمجرد النقر فوق \"تحديث\" ، سترى قائمة بالأقسام لتشغيل / إيقاف', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (601, 0, 'ar', 'labels', 'backend.general_settings.static', 'ثابتة', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (602, 0, 'ar', 'labels', 'backend.general_settings.theme_layout', 'تخطيط الموضوع', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (603, 0, 'ar', 'labels', 'backend.general_settings.title', 'جنرال لواء', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (604, 0, 'ar', 'labels', 'backend.general_settings.total_courses', 'أدخل مجموع الدورات. على سبيل المثال: 1 كيلو ، 1000 إلخ', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (605, 0, 'ar', 'labels', 'backend.general_settings.total_students', 'أدخل مجموع الطلاب. على سبيل المثال: 1 كيلو ، مليون ، 1000 إلخ.', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (606, 0, 'ar', 'labels', 'backend.general_settings.total_teachers', 'أدخل مجموع المعلمين. على سبيل المثال: 1 كيلو ، 1000 إلخ', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (607, 0, 'ar', 'labels', 'backend.general_settings.user_registration_settings.desc', 'سيتم عرض الحقول المحددة من الشريط الجانبي الأيمن في نموذج التسجيل', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (608, 0, 'ar', 'labels', 'backend.general_settings.user_registration_settings.fields.address', 'عنوان', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (609, 0, 'ar', 'labels', 'backend.general_settings.user_registration_settings.fields.city', 'مدينة', '2019-09-12 23:34:01', '2020-05-14 12:20:11'), (610, 0, 'ar', 'labels', 'backend.general_settings.user_registration_settings.fields.country', 'بلد', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (611, 0, 'ar', 'labels', 'backend.general_settings.user_registration_settings.fields.dob', 'تاريخ الولادة', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (612, 0, 'ar', 'labels', 'backend.general_settings.user_registration_settings.fields.email', 'البريد الإلكتروني', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (613, 0, 'ar', 'labels', 'backend.general_settings.user_registration_settings.fields.female', 'إناثا', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (614, 0, 'ar', 'labels', 'backend.general_settings.user_registration_settings.fields.first_name', 'الاسم الاول', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (615, 0, 'ar', 'labels', 'backend.general_settings.user_registration_settings.fields.gender', 'جنس', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (616, 0, 'ar', 'labels', 'backend.general_settings.user_registration_settings.fields.last_name', 'الكنية', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (617, 0, 'ar', 'labels', 'backend.general_settings.user_registration_settings.fields.male', 'الذكر', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (618, 0, 'ar', 'labels', 'backend.general_settings.user_registration_settings.fields.other', 'آخر', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (619, 0, 'ar', 'labels', 'backend.general_settings.user_registration_settings.fields.password', 'كلمه السر', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (620, 0, 'ar', 'labels', 'backend.general_settings.user_registration_settings.fields.phone', 'هاتف', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (621, 0, 'ar', 'labels', 'backend.general_settings.user_registration_settings.fields.pincode', 'الرقم السري', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (622, 0, 'ar', 'labels', 'backend.general_settings.user_registration_settings.fields.state', 'حالة', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (623, 0, 'ar', 'labels', 'backend.general_settings.user_registration_settings.title', 'إعدادات تسجيل المستخدم', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (624, 0, 'ar', 'labels', 'backend.general_settings.lesson_note', 'تمكين / تعطيل إذا كان المستخدم سيكون قادرا على تخطي قبل انتهاء الموقت.', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (625, 0, 'ar', 'labels', 'backend.general_settings.troubleshoot', 'استكشاف', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (626, 0, 'ar', 'labels', 'backend.general_settings.show_offers_note', 'تمكين / تعطيل إذا عرضت الكوبون رابط الصفحة ليتم عرضها في أسفل الصفحة', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (627, 0, 'ar', 'labels', 'backend.general_settings.how_to_onesignal', 'كيفية إنشاء التطبيق في OneSignal؟', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (628, 0, 'ar', 'labels', 'backend.general_settings.onesignal_note', 'تمكين / تعطيل تكوين OneSignal لموقع الويب.', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (629, 0, 'ar', 'labels', 'backend.general_settings.setup_onesignal', 'كيفية إعداد OneSignal؟', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (630, 0, 'ar', 'labels', 'backend.invoices.fields.amount', 'كمية', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (631, 0, 'ar', 'labels', 'backend.invoices.fields.download', 'تحميل', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (632, 0, 'ar', 'labels', 'backend.invoices.fields.order_date', 'تاريخ الطلب', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (633, 0, 'ar', 'labels', 'backend.invoices.fields.view', 'رأي', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (634, 0, 'ar', 'labels', 'backend.invoices.title', 'الفواتير', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (635, 0, 'ar', 'labels', 'backend.logo.favicon', 'أضف فافيكون', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (636, 0, 'ar', 'labels', 'backend.logo.favicon_note', 'ملاحظة: قم بتحميل الشعار بدقة <b> 32 × 32 </b> بكسل وإضافات <b> .png </b> أو <b> .gif </b> أو <b> .ico </b>', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (637, 0, 'ar', 'labels', 'backend.logo.logo_b', 'الشعار 1', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (638, 0, 'ar', 'labels', 'backend.logo.logo_b_note', 'ملاحظة: تحميل الشعار مع <b> نص أسود وخلفية شفافة بتنسيق .png </b> و <b> 294 × 50 </b> (WxH) بكسل. <br> <b> الارتفاع </b> <b> العرض </b> وفقًا لـ <b> نسبة العرض إلى الارتفاع </b>.', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (639, 0, 'ar', 'labels', 'backend.logo.logo_popup', 'شعار للنوافذ المنبثقة', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (640, 0, 'ar', 'labels', 'backend.logo.logo_popup_note', 'ملاحظة: أضف دقة شعار مربعة أقل من <b> 72 × 72 </b> بكسل', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (641, 0, 'ar', 'labels', 'backend.logo.logo_w', 'الشعار 2', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (642, 0, 'ar', 'labels', 'backend.logo.logo_w_note', 'ملاحظة: تحميل الشعار مع <> نص أبيض وخلفية شفافة بتنس> و <b> 294 × 50 </b> (WxH) بكسل. <br> <b> الارتفاع </b> <b> العرض </b> وفقًا لـ <b> نسبة العرض إلى الارتفاع </b>.', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (643, 0, 'ar', 'labels', 'backend.logo.logo_white', 'الشعار 3', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (644, 0, 'ar', 'labels', 'backend.logo.logo_white_note', 'ملاحظة: قم بتحميل الشعار مع <b> بنص أبيض وخلفية شفافة فقط بتنسيق .png </b> و <b> 294 × 50 </b> (WxH>) بكسل. <br> <b> الارتفاع </b> ثابت ، <b> العرض </b> وفقًا لـ <b> نسبة العرض إلى الارتفاع </b>.', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (645, 0, 'ar', 'labels', 'backend.logo.title', 'تغيير الشعار', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (646, 0, 'ar', 'labels', 'backend.menu-manager.title', 'مدير القائمة', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (647, 0, 'ar', 'labels', 'backend.messages.compose', 'مؤلف موسيقى', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (648, 0, 'ar', 'labels', 'backend.messages.search_user', 'بحث المستخدم', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (649, 0, 'ar', 'labels', 'backend.messages.select_recipients', 'اختر المستلمين', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (650, 0, 'ar', 'labels', 'backend.messages.start_conversation', 'بدء محادثة', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (651, 0, 'ar', 'labels', 'backend.messages.title', 'رسائل', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (652, 0, 'ar', 'labels', 'backend.messages.type_a_message', 'اكتب رسالة', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (653, 0, 'ar', 'labels', 'backend.orders.complete', 'أكمل يدويا', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (654, 0, 'ar', 'labels', 'backend.orders.download_invoice', 'تحميل فاتورة', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (655, 0, 'ar', 'labels', 'backend.orders.fields.amount', 'كمية', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (656, 0, 'ar', 'labels', 'backend.orders.fields.date', 'تاريخ الطلب', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (657, 0, 'ar', 'labels', 'backend.orders.fields.items', 'العناصر', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (658, 0, 'ar', 'labels', 'backend.orders.fields.ordered_by', 'مرتبة حسب', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (659, 0, 'ar', 'labels', 'backend.orders.fields.payment_status.completed', 'منجز', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (660, 0, 'ar', 'labels', 'backend.orders.fields.payment_status.failed', 'فشل', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (661, 0, 'ar', 'labels', 'backend.orders.fields.payment_status.pending', 'قيد الانتظار', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (662, 0, 'ar', 'labels', 'backend.orders.fields.payment_status.title', 'دفع', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (663, 0, 'ar', 'labels', 'backend.orders.fields.payment_type.offline', 'غير متصل على الانترنت', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (664, 0, 'ar', 'labels', 'backend.orders.fields.payment_type.paypal', 'باي بال', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (665, 0, 'ar', 'labels', 'backend.orders.fields.payment_type.stripe', 'بطاقة الائتمان / الخصم (بوابة الدفع عبر الشريط)', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (666, 0, 'ar', 'labels', 'backend.orders.fields.payment_type.title', 'نوع الدفع', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (667, 0, 'ar', 'labels', 'backend.orders.fields.reference_no', 'رقم المرجع.', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (668, 0, 'ar', 'labels', 'backend.orders.fields.user_email', 'البريد الالكتروني للمستخدم', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (669, 0, 'ar', 'labels', 'backend.orders.offline_requests', 'طلبات غير متصل', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (670, 0, 'ar', 'labels', 'backend.orders.title', 'أوامر', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (671, 0, 'ar', 'labels', 'backend.orders.view_invoice', 'عرض الفاتورة', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (672, 0, 'ar', 'labels', 'backend.questions.create', 'إنشاء سؤال', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (673, 0, 'ar', 'labels', 'backend.questions.edit', 'تحرير السؤال', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (674, 0, 'ar', 'labels', 'backend.questions.fields.correct', 'صيح', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (675, 0, 'ar', 'labels', 'backend.questions.fields.course', 'دورة', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (676, 0, 'ar', 'labels', 'backend.questions.fields.lesson', 'درس', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (677, 0, 'ar', 'labels', 'backend.questions.fields.option_text', 'نص الخيار', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (678, 0, 'ar', 'labels', 'backend.questions.fields.question', 'سؤال', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (679, 0, 'ar', 'labels', 'backend.questions.fields.question_image', 'صورة السؤال', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (680, 0, 'ar', 'labels', 'backend.questions.fields.score', 'أحرز هدفا', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (681, 0, 'ar', 'labels', 'backend.questions.fields.tests', 'اختبارات', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (682, 0, 'ar', 'labels', 'backend.questions.fields.title', 'عنوان', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (683, 0, 'ar', 'labels', 'backend.questions.fields.option_explanation', 'شرح الخيار', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (684, 0, 'ar', 'labels', 'backend.questions.title', 'الأسئلة', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (685, 0, 'ar', 'labels', 'backend.questions.view', 'عرض الأسئلة', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (686, 0, 'ar', 'labels', 'backend.questions.test', 'اختبار', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (687, 0, 'ar', 'labels', 'backend.questions_options.create', 'إنشاء خيار', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (688, 0, 'ar', 'labels', 'backend.questions_options.edit', 'تحرير الخيار', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (689, 0, 'ar', 'labels', 'backend.questions_options.fields.correct', 'صيح', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (690, 0, 'ar', 'labels', 'backend.questions_options.fields.course', 'دورة', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (691, 0, 'ar', 'labels', 'backend.questions_options.fields.lesson', 'درس', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (692, 0, 'ar', 'labels', 'backend.questions_options.fields.option_text', 'نص الخيار', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (693, 0, 'ar', 'labels', 'backend.questions_options.fields.question', 'سؤال', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (694, 0, 'ar', 'labels', 'backend.questions_options.fields.question_option', 'خيار السؤال', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (695, 0, 'ar', 'labels', 'backend.questions_options.fields.score', 'أحرز هدفا', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (696, 0, 'ar', 'labels', 'backend.questions_options.fields.tests', 'اختبارات', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (697, 0, 'ar', 'labels', 'backend.questions_options.fields.title', 'عنوان', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (698, 0, 'ar', 'labels', 'backend.questions_options.title', 'خيار الأسئلة', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (699, 0, 'ar', 'labels', 'backend.questions_options.view', 'عرض خيارات السؤال', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (700, 0, 'ar', 'labels', 'backend.reviews.fields.content', 'يحتوى', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (701, 0, 'ar', 'labels', 'backend.reviews.fields.course', 'دورة', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (702, 0, 'ar', 'labels', 'backend.reviews.fields.time', 'زمن', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (703, 0, 'ar', 'labels', 'backend.reviews.fields.user', 'المستعمل', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (704, 0, 'ar', 'labels', 'backend.reviews.title', 'التعليقات', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (705, 0, 'ar', 'labels', 'backend.social_settings.fb_api_note', 'كيفية الحصول على مؤهلات اعتماد واجهة برمجة تطبيقات Facebook؟', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (706, 0, 'ar', 'labels', 'backend.social_settings.fb_note', 'تمكين / تعطيل تسجيل الدخول إلى موقع Facebook', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (707, 0, 'ar', 'labels', 'backend.social_settings.google_api_note', 'كيفية الحصول على بيانات اعتماد Google API؟', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (708, 0, 'ar', 'labels', 'backend.social_settings.google_note', 'تمكين / تعطيل تسجيل الدخول إلى Google لموقع الويب', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (709, 0, 'ar', 'labels', 'backend.social_settings.linkedin_api_note', 'كيفية الحصول على مؤهلات LinkedIn API؟', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (710, 0, 'ar', 'labels', 'backend.social_settings.linkedin_note', 'تمكين / تعطيل تسجيل الدخول إلى LinkedIn لموقع الويب', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (711, 0, 'ar', 'labels', 'backend.social_settings.management', 'الوضع الاجتماعي', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (712, 0, 'ar', 'labels', 'backend.social_settings.twitter_api_note', 'كيفية الحصول على بيانات اعتماد Twitter API؟', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (713, 0, 'ar', 'labels', 'backend.social_settings.twitter_note', 'تمكين / تعطيل تسجيل الدخول إلى Twitter لموقع الويب', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (714, 0, 'ar', 'labels', 'backend.tests.create', 'إنشاء اختبار', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (715, 0, 'ar', 'labels', 'backend.tests.edit', 'تحرير الاختبار', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (716, 0, 'ar', 'labels', 'backend.tests.fields.course', 'دورة', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (717, 0, 'ar', 'labels', 'backend.tests.fields.description', 'وصف', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (718, 0, 'ar', 'labels', 'backend.tests.fields.lesson', 'درس', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (719, 0, 'ar', 'labels', 'backend.tests.fields.published', 'نشرت', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (720, 0, 'ar', 'labels', 'backend.tests.fields.questions', 'الأسئلة', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (721, 0, 'ar', 'labels', 'backend.tests.fields.title', 'عنوان', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (722, 0, 'ar', 'labels', 'backend.tests.title', 'اختبارات', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (723, 0, 'ar', 'labels', 'backend.tests.view', 'عرض الاختبارات', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (724, 0, 'ar', 'labels', 'backend.translations.add_new_locale', 'إضافة لغة جديدة', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (725, 0, 'ar', 'labels', 'backend.translations.adding', 'مضيفا ...', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (726, 0, 'ar', 'labels', 'backend.translations.append_new_translations', 'إلحاق ترجمات جديدة', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (727, 0, 'ar', 'labels', 'backend.translations.changed', 'تغير', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (728, 0, 'ar', 'labels', 'backend.translations.choose_a_group', 'اختر مجموعة لعرض ترجمات المجموعة. إذا لم تكن هناك مجموعات مرئية ، فتأكد\n لقد قمت بتشغيل عمليات الترحيل واستوردت الترجمات.', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (729, 0, 'ar', 'labels', 'backend.translations.current_supported_locales', 'اللغات المدعومة الحالية', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (730, 0, 'ar', 'labels', 'backend.translations.done_importing', 'تم الاستيراد والمعالجة <strong class = \"counter\"> N </strong>! إعادة تحميل هذه الصفحة إلى\n تحديث المجموعات!', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (731, 0, 'ar', 'labels', 'backend.translations.done_publishing_for_all_groups', 'تم نشر الترجمات لكل المجموعة!', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (732, 0, 'ar', 'labels', 'backend.translations.done_publishing_for_group', 'تم نشر الترجمات للمجموعة', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (733, 0, 'ar', 'labels', 'backend.translations.done_searching', 'تم البحث عن الترجمات ، التي عثر عليها <strong class = \"counter\"> N </strong>!', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (734, 0, 'ar', 'labels', 'backend.translations.enter_new_locale_key', 'أدخل مفتاح اللغة الجديد', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (735, 0, 'ar', 'labels', 'backend.translations.export_all_translations', 'تصدير جميع الترجمات', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (736, 0, 'ar', 'labels', 'backend.translations.import_groups', 'استيراد المجموعات', '2019-09-12 23:34:02', '2020-05-14 12:20:11'); INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES (737, 0, 'ar', 'labels', 'backend.translations.import_groups_note', '<p> سيؤدي هذا إلى الحصول على جميع ملفات الإعدادات المحلية من مجلد <code> lang </code> وإدراجها في قاعدة البيانات. <br> <b> إلحاق ترجمات جديدة: </b> سيُلحق فقط الملفات والبيانات الجديدة <b> & </b>\n <b> استبدل الترجمات الحالية: </b> ستحل محل السجلات الحالية وفقًا للملفات </p>', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (738, 0, 'ar', 'labels', 'backend.translations.key', 'مفتاح', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (739, 0, 'ar', 'labels', 'backend.translations.publish_all', 'نشر الكل', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (740, 0, 'ar', 'labels', 'backend.translations.publish_all_warning', 'هل أنت متأكد أنك تريد نشر كل مجموعة الترجمات؟ سيؤدي هذا إلى الكتابة فوق ملفات اللغة الحالية.', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (741, 0, 'ar', 'labels', 'backend.translations.publish_translations', 'نشر الترجمات', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (742, 0, 'ar', 'labels', 'backend.translations.publishing', 'نشر..', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (743, 0, 'ar', 'labels', 'backend.translations.replace_existing_translations', 'استبدال الترجمات الحالية', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (744, 0, 'ar', 'labels', 'backend.translations.supported_locales', 'اللغات المدعومة', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (745, 0, 'ar', 'labels', 'backend.translations.title', 'مدير الترجمة', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (746, 0, 'ar', 'labels', 'backend.translations.total', 'مجموع', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (747, 0, 'ar', 'labels', 'backend.translations.translation_warning', 'هل أنت متأكد أنك تريد نشر مجموعة الترجمات: group؟ سيؤدي هذا إلى الكتابة فوق ملفات اللغة الحالية', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (748, 0, 'ar', 'labels', 'backend.translations.warning', 'تحذير ، الترجمات غير مرئية حتى يتم تصديرها مرة أخرى إلى ملف التطبيق / اللغة ، باستخدام\n <code> php translation translation: export </code> زر الأمر أو النشر.', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (749, 0, 'ar', 'labels', 'backend.update.current_version', 'النسخة الحالية', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (750, 0, 'ar', 'labels', 'backend.update.file_replaced', 'سيتم تحديث / استبدال الملفات التالية', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (751, 0, 'ar', 'labels', 'backend.update.note_before_upload', '<p> <b> يرجى أخذ BACKUP قبل التحديث. </b> قد يأتي ملف zip المحدث مع مجلدات جديدة وتحديثات للملفات. <b> سيتم استبدال ملفاتك الحالية بملف جديد </b>. لذا ، <b> إذا قمت بإجراء أي تغييرات في ملفات التطبيق الحالية ، فسيكون هذا المفقود </b>. </p>\n <p> إذا كنت تقوم بالتحميل مباشرة من مربع إدخال الملف أدناه ، فسيتم استبدال ملفاتك. نوصي بشدة بالقيام بذلك الاستبدال اليدوي للملفات واحدًا تلو الآخر أو تعديل التغييرات من خلال مقارنة الملف الذي تم تعديله الحالي والملفات الجديدة المحدثة. </p>\n <p> إذا كنت لا تزال تعاني من الارتباك. يرجى الاتصال بنا ، وسوف نوجهك لتحديث التطبيق الخاص بك </p>', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (752, 0, 'ar', 'labels', 'backend.update.note_before_upload_title', 'قراءة الملاحظات التالية قبل التحديث', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (753, 0, 'ar', 'labels', 'backend.update.title', 'تحديث الموضوع', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (754, 0, 'ar', 'labels', 'backend.update.upload', 'تحميل الإصدار الجديد <small> (update.zip) </small>', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (755, 0, 'ar', 'labels', 'backend.update.warning', '<b> تحذير: نوصيك بشدة بتحديث المظهر حسب رقم الإصدار </b>. <br> <b> مثال: </b> update_v1.zip، update_v2.zip. من فضلك لا تقفز رقم الإصدار. إذا كان رقم الإصدار هو 1 وتريد تحديثه ، فقم بالتحديث إلى الإصدار 2. لا تقم بالتحديث مباشرة إلى الإصدار 3.', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (756, 0, 'ar', 'labels', 'backend.certificates.download', 'تحميل', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (757, 0, 'ar', 'labels', 'backend.certificates.fields.action', 'عمل', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (758, 0, 'ar', 'labels', 'backend.certificates.fields.course_name', 'اسم الدورة التدريبية', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (759, 0, 'ar', 'labels', 'backend.certificates.fields.progress', 'تقدم', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (760, 0, 'ar', 'labels', 'backend.certificates.title', 'شهادات', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (761, 0, 'ar', 'labels', 'backend.certificates.view', 'رأي', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (762, 0, 'ar', 'labels', 'backend.bundles.fields.slug', 'سبيكة', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (763, 0, 'ar', 'labels', 'backend.bundles.fields.status', 'الحالة', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (764, 0, 'ar', 'labels', 'backend.bundles.fields.category', 'الفئة', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (765, 0, 'ar', 'labels', 'backend.bundles.fields.course', 'دورة', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (766, 0, 'ar', 'labels', 'backend.bundles.fields.course_image', 'صورة الدورة', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (767, 0, 'ar', 'labels', 'backend.bundles.fields.description', 'وصف', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (768, 0, 'ar', 'labels', 'backend.bundles.fields.featured', 'متميز', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (769, 0, 'ar', 'labels', 'backend.bundles.fields.lessons.add', 'أضف دروس', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (770, 0, 'ar', 'labels', 'backend.bundles.fields.lessons.view', 'عرض الدروس', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (771, 0, 'ar', 'labels', 'backend.bundles.fields.meta_description', 'ميتا الوصف', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (772, 0, 'ar', 'labels', 'backend.bundles.fields.meta_keywords', 'كلمات دلالية', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (773, 0, 'ar', 'labels', 'backend.bundles.fields.meta_title', 'عنوان الفوقية', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (774, 0, 'ar', 'labels', 'backend.bundles.fields.popular', 'جمع', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (775, 0, 'ar', 'labels', 'backend.bundles.fields.price', 'السعر', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (776, 0, 'ar', 'labels', 'backend.bundles.fields.published', 'نشرت', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (777, 0, 'ar', 'labels', 'backend.bundles.fields.sidebar', 'أضف الشريط الجانبي', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (778, 0, 'ar', 'labels', 'backend.bundles.fields.start_date', 'تاريخ البدء', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (779, 0, 'ar', 'labels', 'backend.bundles.fields.teachers', 'معلمون', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (780, 0, 'ar', 'labels', 'backend.bundles.fields.title', 'عنوان', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (781, 0, 'ar', 'labels', 'backend.bundles.fields.trending', 'الشائع', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (782, 0, 'ar', 'labels', 'backend.bundles.fields.courses', 'الدورات', '2019-09-12 23:34:02', '2020-05-14 12:20:11'), (783, 0, 'ar', 'labels', 'backend.bundles.fields.free', 'حر', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (784, 0, 'ar', 'labels', 'backend.bundles.add_categories', 'إضافة فئات', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (785, 0, 'ar', 'labels', 'backend.bundles.add_teachers', 'إضافة المعلمين', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (786, 0, 'ar', 'labels', 'backend.bundles.category', 'الفئة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (787, 0, 'ar', 'labels', 'backend.bundles.course_timeline', 'الجدول الزمني للدورة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (788, 0, 'ar', 'labels', 'backend.bundles.create', 'إنشاء حزمة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (789, 0, 'ar', 'labels', 'backend.bundles.edit', 'تحرير الحزمة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (790, 0, 'ar', 'labels', 'backend.bundles.lesson', 'درس', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (791, 0, 'ar', 'labels', 'backend.bundles.listing_note', 'سيتم عرض وفرز الدروس المنشورة فقط.', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (792, 0, 'ar', 'labels', 'backend.bundles.save_timeline', 'حفظ الجدول الزمني', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (793, 0, 'ar', 'labels', 'backend.bundles.select_category', 'اختر الفئة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (794, 0, 'ar', 'labels', 'backend.bundles.select_teachers', 'اختر المعلمين', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (795, 0, 'ar', 'labels', 'backend.bundles.slug_placeholder', 'سبيكة الإدخال أو سيتم إنشاؤه تلقائيا', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (796, 0, 'ar', 'labels', 'backend.bundles.test', 'اختبار', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (797, 0, 'ar', 'labels', 'backend.bundles.timeline_description', 'سحب وتغيير تسلسل الدروس / الاختبارات بالطبع', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (798, 0, 'ar', 'labels', 'backend.bundles.title', 'بال', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (799, 0, 'ar', 'labels', 'backend.bundles.view', 'عرض الحزم', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (800, 0, 'ar', 'labels', 'backend.bundles.add_courses', 'إضافة الدورات', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (801, 0, 'ar', 'labels', 'backend.bundles.select_courses', 'اختر الدورات', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (802, 0, 'ar', 'labels', 'backend.reports.bundles', 'بال', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (803, 0, 'ar', 'labels', 'backend.reports.courses', 'الدورات', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (804, 0, 'ar', 'labels', 'backend.reports.fields.bundle', 'حزمة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (805, 0, 'ar', 'labels', 'backend.reports.fields.completed', 'بالطبع الانتهاء', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (806, 0, 'ar', 'labels', 'backend.reports.fields.content', 'يحتوى', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (807, 0, 'ar', 'labels', 'backend.reports.fields.course', 'دورة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (808, 0, 'ar', 'labels', 'backend.reports.fields.earnings', 'أرباح', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (809, 0, 'ar', 'labels', 'backend.reports.fields.name', 'اسم', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (810, 0, 'ar', 'labels', 'backend.reports.fields.orders', 'أوامر', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (811, 0, 'ar', 'labels', 'backend.reports.fields.students', 'الطلاب', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (812, 0, 'ar', 'labels', 'backend.reports.fields.time', 'زمن', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (813, 0, 'ar', 'labels', 'backend.reports.fields.user', 'المستعمل', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (814, 0, 'ar', 'labels', 'backend.reports.sales_report', 'تقرير المبيعات', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (815, 0, 'ar', 'labels', 'backend.reports.students_report', 'تقرير الطلاب', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (816, 0, 'ar', 'labels', 'backend.reports.title', 'تقارير', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (817, 0, 'ar', 'labels', 'backend.reports.total_earnings', 'الأرباح الكلية', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (818, 0, 'ar', 'labels', 'backend.reports.total_sales', 'إجمالي المبيعات', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (819, 0, 'ar', 'labels', 'backend.coupons.amount_note', 'إذا تم تحديد <b> معدل الخصم </b> ، فنسبة معدل الإدخال. إذا تم تحديد <b> معدل ثابت </b> ، فقم بإدخال مبلغ معين ليتم خصمه.', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (820, 0, 'ar', 'labels', 'backend.coupons.bundles', 'بال', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (821, 0, 'ar', 'labels', 'backend.coupons.courses', 'الدورات', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (822, 0, 'ar', 'labels', 'backend.coupons.create', 'إنشاء القسيمة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (823, 0, 'ar', 'labels', 'backend.coupons.description', 'وصف', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (824, 0, 'ar', 'labels', 'backend.coupons.discount_rate', 'معدل الخصم', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (825, 0, 'ar', 'labels', 'backend.coupons.edit', 'تحرير القسيمة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (826, 0, 'ar', 'labels', 'backend.coupons.fields.amount', 'كمية', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (827, 0, 'ar', 'labels', 'backend.coupons.fields.code', 'الشفرة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (828, 0, 'ar', 'labels', 'backend.coupons.fields.description', 'وصف', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (829, 0, 'ar', 'labels', 'backend.coupons.fields.expires_at', 'تنتهي في', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (830, 0, 'ar', 'labels', 'backend.coupons.fields.for', 'إلى عن على', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (831, 0, 'ar', 'labels', 'backend.coupons.fields.min_price', 'الحد الأدنى للطلب السعر', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (832, 0, 'ar', 'labels', 'backend.coupons.fields.name', 'اسم', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (833, 0, 'ar', 'labels', 'backend.coupons.fields.per_user_limit', 'لكل حد للمستخدم', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (834, 0, 'ar', 'labels', 'backend.coupons.fields.status', 'الحالة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (835, 0, 'ar', 'labels', 'backend.coupons.fields.total', 'مجموع', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (836, 0, 'ar', 'labels', 'backend.coupons.fields.type', 'نوع', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (837, 0, 'ar', 'labels', 'backend.coupons.flat_rate', 'معدل', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (838, 0, 'ar', 'labels', 'backend.coupons.off', 'إيقاف', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (839, 0, 'ar', 'labels', 'backend.coupons.on', 'على', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (840, 0, 'ar', 'labels', 'backend.coupons.per_user_limit_note', 'حدد عدد المرات التي يستطيع فيها مستخدم واحد استخدام هذه القسيمة. افتراضيا استخدام مرة واحدة.', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (841, 0, 'ar', 'labels', 'backend.coupons.title', 'كوبونات', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (842, 0, 'ar', 'labels', 'backend.coupons.total_note', 'عدد القسائم التي ستصدر', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (843, 0, 'ar', 'labels', 'backend.coupons.type_note', '<b> معدل الخصم (٪): </b> إذا حددت هذا ، فسيتم تطبيق السعر بنسبة٪ على إجمالي الشراء. السابق. السعر = 100 دولار وسعر الخصم هو 10 ٪ ثم سيتم خصم 10 ٪ من 100 دولار. السابق. السعر = 100 دولار والسعر الثابت 25 دولار ، ثم يتم خصم 25 دولار من 100 دولار.', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (844, 0, 'ar', 'labels', 'backend.coupons.unlimited', 'غير محدود', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (845, 0, 'ar', 'labels', 'backend.coupons.view', 'عرض كوبونات', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (846, 0, 'ar', 'labels', 'backend.sitemap.daily', 'اليومي', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (847, 0, 'ar', 'labels', 'backend.sitemap.generate', 'توفير', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (848, 0, 'ar', 'labels', 'backend.sitemap.generated', 'تم إنشاء ملف Sitemap بنجاح.', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (849, 0, 'ar', 'labels', 'backend.sitemap.monthly', 'شهريا', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (850, 0, 'ar', 'labels', 'backend.sitemap.records_note', 'عدد السجلات لكل ملف.', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (851, 0, 'ar', 'labels', 'backend.sitemap.records_per_file', 'السجلات لكل ملف', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (852, 0, 'ar', 'labels', 'backend.sitemap.sitemap_note', 'ستنشئ أداة خريطة الموقع هذه ملف Sitemap للدورة التدريبية المنشورة ، والحزم والمدونات.', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (853, 0, 'ar', 'labels', 'backend.sitemap.title', 'خريطة الموقع', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (854, 0, 'ar', 'labels', 'backend.sitemap.weekly', 'أسبوعي', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (855, 0, 'ar', 'labels', 'backend.tax.create', 'إنشاء ضريبة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (856, 0, 'ar', 'labels', 'backend.tax.edit', 'تحرير الضريبة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (857, 0, 'ar', 'labels', 'backend.tax.fields.name', 'اسم', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (858, 0, 'ar', 'labels', 'backend.tax.fields.rate', 'معدل', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (859, 0, 'ar', 'labels', 'backend.tax.fields.status', 'الحالة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (860, 0, 'ar', 'labels', 'backend.tax.off', 'إيقاف', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (861, 0, 'ar', 'labels', 'backend.tax.on', 'على', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (862, 0, 'ar', 'labels', 'backend.tax.title', 'ضريبة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (863, 0, 'ar', 'labels', 'backend.tax.view', 'عرض الضريبة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (864, 0, 'ar', 'labels', 'backend.forum_category.create', 'إنشاء فئة المنتدى', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (865, 0, 'ar', 'labels', 'backend.forum_category.edit', 'تحرير فئة المنتدى', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (866, 0, 'ar', 'labels', 'backend.forum_category.fields.category', 'الفئة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (867, 0, 'ar', 'labels', 'backend.forum_category.fields.color', 'اللون', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (868, 0, 'ar', 'labels', 'backend.forum_category.fields.order', 'طلب', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (869, 0, 'ar', 'labels', 'backend.forum_category.fields.parent_category', 'القسم الرئيسي', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (870, 0, 'ar', 'labels', 'backend.forum_category.fields.status', 'الحالة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (871, 0, 'ar', 'labels', 'backend.forum_category.off', 'إيقاف', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (872, 0, 'ar', 'labels', 'backend.forum_category.on', 'على', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (873, 0, 'ar', 'labels', 'backend.forum_category.title', 'أقسام المنتدى', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (874, 0, 'ar', 'labels', 'backend.forum_category.view', 'مشاهدة قسم المنتدى', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (875, 0, 'ar', 'labels', 'lang.sp', 'الأسبانية', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (876, 0, 'ar', 'labels', 'lang.fr', 'الفرنسية', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (877, 0, 'ar', 'labels', 'lang.en', 'الإنجليزية', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (878, 0, 'ar', 'labels', 'lang.ar', 'عربى', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (879, 0, 'ar', 'labels', 'general.yes', 'نعم فعلا', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (880, 0, 'ar', 'labels', 'general.trash', 'قمامة، يدمر، يهدم', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (881, 0, 'ar', 'labels', 'general.toolbar_btn_groups', 'شريط الأدوات مع مجموعات الأزرار', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (882, 0, 'ar', 'labels', 'general.toggle_navigation', 'تبديل الملاحة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (883, 0, 'ar', 'labels', 'general.sr_no', 'الأب رقم.', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (884, 0, 'ar', 'labels', 'general.show', 'تبين', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (885, 0, 'ar', 'labels', 'general.read_more', 'قراءة المزيد', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (886, 0, 'ar', 'labels', 'general.none', 'لا شيء', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (887, 0, 'ar', 'labels', 'general.no_data_available', 'لا تتوافر بيانات', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (888, 0, 'ar', 'labels', 'general.no', 'لا', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (889, 0, 'ar', 'labels', 'general.more', 'أكثر من', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (890, 0, 'ar', 'labels', 'general.actions', 'أفعال', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (891, 0, 'ar', 'labels', 'general.active', 'نشيط', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (892, 0, 'ar', 'labels', 'general.all', 'الكل', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (893, 0, 'ar', 'labels', 'general.back', 'الى الخلف', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (894, 0, 'ar', 'labels', 'general.buttons.cancel', 'إلغاء', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (895, 0, 'ar', 'labels', 'general.buttons.save', 'حفظ', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (896, 0, 'ar', 'labels', 'general.buttons.update', 'تحديث', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (897, 0, 'ar', 'labels', 'general.copyright', 'حقوق النشر', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (898, 0, 'ar', 'labels', 'general.create_new', 'خلق جديد إبداع جديد', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (899, 0, 'ar', 'labels', 'general.custom', 'العادة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (900, 0, 'ar', 'labels', 'general.delete', 'حذف', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (901, 0, 'ar', 'labels', 'general.delete_selected', 'احذف المختار', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (902, 0, 'ar', 'labels', 'general.edit', 'تصحيح', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (903, 0, 'ar', 'labels', 'general.hide', 'إخفاء', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (904, 0, 'ar', 'labels', 'general.inactive', 'غير نشط', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (905, 0, 'ar', 'labels', 'frontend.auth.login_box_title', 'تسجيل الدخول', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (906, 0, 'ar', 'labels', 'frontend.auth.login_button', 'تسجيل الدخول', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (907, 0, 'ar', 'labels', 'frontend.auth.login_with', 'تسجيل الدخول مع :social_media', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (908, 0, 'ar', 'labels', 'frontend.auth.register_box_title', 'تسجيل', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (909, 0, 'ar', 'labels', 'frontend.auth.register_button', 'تسجيل', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (910, 0, 'ar', 'labels', 'frontend.auth.remember_me', 'تذكرنى', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (911, 0, 'ar', 'labels', 'frontend.badges.trending', 'الشائع', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (912, 0, 'ar', 'labels', 'frontend.blog.add_comment', 'أضف تعليق', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (913, 0, 'ar', 'labels', 'frontend.blog.blog_categories', 'المدونة <span> الفئات. </span>', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (914, 0, 'ar', 'labels', 'frontend.blog.by', 'بواسطة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (915, 0, 'ar', 'labels', 'frontend.blog.featured_course', 'ظهرت <span> الدورة التدريبية. </span>', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (916, 0, 'ar', 'labels', 'frontend.blog.login_to_post_comment', 'تسجيل الدخول لنشر تعليق', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (917, 0, 'ar', 'labels', 'frontend.blog.no_comments_yet', 'لا تعليقات حتى الآن ، كن أول من يعلق.', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (918, 0, 'ar', 'labels', 'frontend.blog.popular_tags', '<span> العلامات الشائعة. </span>', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (919, 0, 'ar', 'labels', 'frontend.blog.post_comments', 'نشر <span> تعليقات. </span>', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (920, 0, 'ar', 'labels', 'frontend.blog.related_news', '<span> ذات صلة </span> الأخبار', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (921, 0, 'ar', 'labels', 'frontend.blog.search_blog', 'بحث المدونة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (922, 0, 'ar', 'labels', 'frontend.blog.share_this_news', 'شارك هذا الخبر', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (923, 0, 'ar', 'labels', 'frontend.blog.title', 'مدونة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (924, 0, 'ar', 'labels', 'frontend.blog.write_a_comment', 'أكتب تعليقا', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (925, 0, 'ar', 'labels', 'frontend.cart.card_number', 'رقم البطاقة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (926, 0, 'ar', 'labels', 'frontend.cart.card_number_placeholder', 'أدخل رقم بطاقتك', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (927, 0, 'ar', 'labels', 'frontend.cart.cart', 'عربة التسوق', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (928, 0, 'ar', 'labels', 'frontend.cart.checkout', 'الدفع', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (929, 0, 'ar', 'labels', 'frontend.cart.complete_your_purchases', 'أكمل <span> مشترياتك. </span>', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (930, 0, 'ar', 'labels', 'frontend.cart.confirmation_note', 'بتأكيد هذا الشراء ، أوافق على <b> شروط الاستخدام ، وسياسة رد الأموال </b> و <b> سياسة الخصوصية </b>', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (931, 0, 'ar', 'labels', 'frontend.cart.course_name', 'اسم الدورة التدريبية', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (932, 0, 'ar', 'labels', 'frontend.cart.course_type', 'دورة كتابية', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (933, 0, 'ar', 'labels', 'frontend.cart.cvv', 'CVV', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (934, 0, 'ar', 'labels', 'frontend.cart.empty_cart', 'عربة التسوق فارغة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (935, 0, 'ar', 'labels', 'frontend.cart.expiration_date', 'تاريخ إنتهاء الصلاحية', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (936, 0, 'ar', 'labels', 'frontend.cart.go_back_to_cart', 'العودة إلى السلة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (937, 0, 'ar', 'labels', 'frontend.cart.mm', 'MM', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (938, 0, 'ar', 'labels', 'frontend.cart.name_on_card', 'الاسم على البطاقة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (939, 0, 'ar', 'labels', 'frontend.cart.name_on_card_placeholder', 'أدخل الاسم المكتوب على بطاقتك', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (940, 0, 'ar', 'labels', 'frontend.cart.no_payment_method', 'لا توجد طريقة دفع متاحة في هذه اللحظة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (941, 0, 'ar', 'labels', 'frontend.cart.offline_payment', 'غير متصل الدفع', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (942, 0, 'ar', 'labels', 'frontend.cart.offline_payment_note', 'في طريقة الدفع هذه ، سيقوم المسؤولون التنفيذيون لدينا بالاتصال بك وإعطائك تعليمات بشأن الدفع وشراء الدورة التدريبية.', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (943, 0, 'ar', 'labels', 'frontend.cart.order_detail', 'ترتيب <span> التفاصيل. </span>', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (944, 0, 'ar', 'labels', 'frontend.cart.order_item', 'طلب <span> عنصر. </span>', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (945, 0, 'ar', 'labels', 'frontend.cart.order_payment', 'اطلب <span> الدفع. </span>', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (946, 0, 'ar', 'labels', 'frontend.cart.pay_now', 'ادفع الآن', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (947, 0, 'ar', 'labels', 'frontend.cart.pay_securely_paypal', 'ادفع بأمان باستخدام PayPal', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (948, 0, 'ar', 'labels', 'frontend.cart.payment_cards', 'بطاقة الائتمان أو الخصم', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (949, 0, 'ar', 'labels', 'frontend.cart.payment_status', 'حالة السداد', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (950, 0, 'ar', 'labels', 'frontend.cart.paypal', 'باي بال', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (951, 0, 'ar', 'labels', 'frontend.cart.request_assistance', 'طلب المساعدة', '2019-09-12 23:34:03', '2020-05-14 12:20:11'), (952, 0, 'ar', 'labels', 'frontend.cart.see_more_courses', 'رؤية المزيد من الدورات', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (953, 0, 'ar', 'labels', 'frontend.cart.starts', 'يبدأ', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (954, 0, 'ar', 'labels', 'frontend.cart.stripe_error_message', 'يرجى تصحيح الأخطاء والمحاولة مرة أخرى.', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (955, 0, 'ar', 'labels', 'frontend.cart.success_message', 'تهانينا. استمتع بدراستك', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (956, 0, 'ar', 'labels', 'frontend.cart.total', 'مجموع', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (957, 0, 'ar', 'labels', 'frontend.cart.your_payment_status', '<span> حالة الدفع الخاصة بك. </span>', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (958, 0, 'ar', 'labels', 'frontend.cart.your_shopping_cart', 'سلة التسوق الخاصة بك', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (959, 0, 'ar', 'labels', 'frontend.cart.yy', 'YY', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (960, 0, 'ar', 'labels', 'frontend.cart.product_name', 'اسم المنتج', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (961, 0, 'ar', 'labels', 'frontend.cart.product_type', 'نوع المنتج', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (962, 0, 'ar', 'labels', 'frontend.cart.connection_timeout', 'انتهى وقت محاولة الاتصال', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (963, 0, 'ar', 'labels', 'frontend.cart.offline_request', 'تم استلام الطلب بنجاح! تحقق من بريدك الإلكتروني المسجل لمزيد من التفاصيل.', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (964, 0, 'ar', 'labels', 'frontend.cart.payment_done', 'تم الدفع بنجاح!', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (965, 0, 'ar', 'labels', 'frontend.cart.payment_failed', 'خطأ! عملية الدفع فشلت!', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (966, 0, 'ar', 'labels', 'frontend.cart.product_added', 'تم اضافة المنتج الى السلة بنجاح', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (967, 0, 'ar', 'labels', 'frontend.cart.try_again', 'خطأ! حاول مرة اخرى.', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (968, 0, 'ar', 'labels', 'frontend.cart.unknown_error', 'حدث خطأ غير معروف', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (969, 0, 'ar', 'labels', 'frontend.cart.purchase_successful', 'تهانينا! لقد اشتريت هذه الدورة.', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (970, 0, 'ar', 'labels', 'frontend.cart.amount', 'كمية', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (971, 0, 'ar', 'labels', 'frontend.cart.apply', 'تطبيق', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (972, 0, 'ar', 'labels', 'frontend.cart.empty_input', 'اكتب رمز القسيمة قبل التقديم', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (973, 0, 'ar', 'labels', 'frontend.cart.invalid_coupon', 'قسيمة غير صالحة!', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (974, 0, 'ar', 'labels', 'frontend.cart.item', 'بند', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (975, 0, 'ar', 'labels', 'frontend.cart.items', 'العناصر', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (976, 0, 'ar', 'labels', 'frontend.cart.offers', 'عروض', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (977, 0, 'ar', 'labels', 'frontend.cart.price', 'السعر', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (978, 0, 'ar', 'labels', 'frontend.cart.sub_total', 'المجموع الفرعي', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (979, 0, 'ar', 'labels', 'frontend.cart.total_payable', 'مجموع المستحق', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (980, 0, 'ar', 'labels', 'frontend.contact.box_title', 'اتصل بنا', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (981, 0, 'ar', 'labels', 'frontend.contact.button', 'إرسال المعلومات', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (982, 0, 'ar', 'labels', 'frontend.contact.keep_in_touch', 'حافظ على <span> في اللمس. </span>', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (983, 0, 'ar', 'labels', 'frontend.contact.message', 'رسالة', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (984, 0, 'ar', 'labels', 'frontend.contact.phone_number', 'رقم الهاتف', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (985, 0, 'ar', 'labels', 'frontend.contact.send_email', 'ارسل بريد الكتروني', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (986, 0, 'ar', 'labels', 'frontend.contact.send_message_now', 'إرسال رسالة الآن', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (987, 0, 'ar', 'labels', 'frontend.contact.send_us_a_message', 'أرسل لنا <span>رسالة</span>', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (988, 0, 'ar', 'labels', 'frontend.contact.title', 'اتصل', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (989, 0, 'ar', 'labels', 'frontend.contact.your_email', 'بريدك الالكتروني', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (990, 0, 'ar', 'labels', 'frontend.contact.your_name', 'اسمك', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (991, 0, 'ar', 'labels', 'frontend.course.add_review_now', 'إضافة مراجعة الآن', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (992, 0, 'ar', 'labels', 'frontend.course.add_reviews', 'أضف <span> مراجعات. </span>', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (993, 0, 'ar', 'labels', 'frontend.course.add_to_cart', 'أضف إلى السلة', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (994, 0, 'ar', 'labels', 'frontend.course.added_to_cart', 'يضاف إلى العربة', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (995, 0, 'ar', 'labels', 'frontend.course.author', 'مؤلف', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (996, 0, 'ar', 'labels', 'frontend.course.average_rating', 'متوسط تقييم', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (997, 0, 'ar', 'labels', 'frontend.course.buy_note', 'يمكن للطلاب فقط شراء الدورة', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (998, 0, 'ar', 'labels', 'frontend.course.buy_now', 'اشتري الآن', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (999, 0, 'ar', 'labels', 'frontend.course.by', 'بواسطة', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1000, 0, 'ar', 'labels', 'frontend.course.category', 'الفئة', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1001, 0, 'ar', 'labels', 'frontend.course.chapter_videos', 'الفصل فيديو', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1002, 0, 'ar', 'labels', 'frontend.course.chapters', 'فصول', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1003, 0, 'ar', 'labels', 'frontend.course.completed', 'منجز', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1004, 0, 'ar', 'labels', 'frontend.course.continue_course', 'مواصلة الدورة', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1005, 0, 'ar', 'labels', 'frontend.course.course_detail', 'تفاصيل الدورة', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1006, 0, 'ar', 'labels', 'frontend.course.course_details', '<span> تفاصيل الدورة. </span>', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1007, 0, 'ar', 'labels', 'frontend.course.course_name', 'اسم الدورة التدريبية', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1008, 0, 'ar', 'labels', 'frontend.course.course_reviews', 'الدورة التدريبية <span> من المراجعات: </span>', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1009, 0, 'ar', 'labels', 'frontend.course.course_timeline', 'الدورة التدريبية <b> الجدول الزمني: </b>', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1010, 0, 'ar', 'labels', 'frontend.course.course_type', 'دورة كتابية', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1011, 0, 'ar', 'labels', 'frontend.course.courses', 'الدورات', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1012, 0, 'ar', 'labels', 'frontend.course.details', 'تفاصيل', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1013, 0, 'ar', 'labels', 'frontend.course.download_files', 'تحميل ملفات', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1014, 0, 'ar', 'labels', 'frontend.course.enrolled', 'المقيدين', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1015, 0, 'ar', 'labels', 'frontend.course.featured', 'متميز', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1016, 0, 'ar', 'labels', 'frontend.course.featured_course', '<span> دورة مميزة </span>', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1017, 0, 'ar', 'labels', 'frontend.course.find_courses', 'البحث عن الدورات', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1018, 0, 'ar', 'labels', 'frontend.course.find_your_course', '<span> بحث </span> عن دورتك التدريبية.', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1019, 0, 'ar', 'labels', 'frontend.course.full_text', 'نص كامل', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1020, 0, 'ar', 'labels', 'frontend.course.give_test_again', 'إعطاء اختبار مرة أخرى', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1021, 0, 'ar', 'labels', 'frontend.course.go', 'اذهب', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1022, 0, 'ar', 'labels', 'frontend.course.mb', 'MB', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1023, 0, 'ar', 'labels', 'frontend.course.message', 'رسالة', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1024, 0, 'ar', 'labels', 'frontend.course.next', 'التالى', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1025, 0, 'ar', 'labels', 'frontend.course.no_reviews_yet', 'لا توجد تعليقات حتى الآن.', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1026, 0, 'ar', 'labels', 'frontend.course.none', 'لا شيء', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1027, 0, 'ar', 'labels', 'frontend.course.popular', 'جمع', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1028, 0, 'ar', 'labels', 'frontend.course.prev', 'PREV', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1029, 0, 'ar', 'labels', 'frontend.course.price', 'السعر', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1030, 0, 'ar', 'labels', 'frontend.course.progress', 'تقدم', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1031, 0, 'ar', 'labels', 'frontend.course.ratings', 'تصنيفات', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1032, 0, 'ar', 'labels', 'frontend.course.recent_news', '<span> الأخيرة </span> الأخبار.', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1033, 0, 'ar', 'labels', 'frontend.course.sort_by', '<b> فرز </b> حسب', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1034, 0, 'ar', 'labels', 'frontend.course.stars', 'نجوم', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1035, 0, 'ar', 'labels', 'frontend.course.starts', 'يبدأ', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1036, 0, 'ar', 'labels', 'frontend.course.students', 'الطلاب', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1037, 0, 'ar', 'labels', 'frontend.course.submit_results', 'إرسال النتائج', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1038, 0, 'ar', 'labels', 'frontend.course.test', 'اختبار', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1039, 0, 'ar', 'labels', 'frontend.course.title', 'دورة', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1040, 0, 'ar', 'labels', 'frontend.course.trending', 'الشائع', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1041, 0, 'ar', 'labels', 'frontend.course.view_all_news', 'عرض جميع الأخبار', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1042, 0, 'ar', 'labels', 'frontend.course.your_rating', 'تقييمك', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1043, 0, 'ar', 'labels', 'frontend.course.your_test_score', 'نقاط الاختبار الخاصة بك', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1044, 0, 'ar', 'labels', 'frontend.course.certified', 'أنت معتمد لهذه الدورة', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1045, 0, 'ar', 'labels', 'frontend.course.finish_course', 'الانتهاء من الدورة', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1046, 0, 'ar', 'labels', 'frontend.course.course', 'دورة', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1047, 0, 'ar', 'labels', 'frontend.course.bundle_detail', 'حزمة التفاصيل', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1048, 0, 'ar', 'labels', 'frontend.course.bundle_reviews', 'الحزمة <span> من المراجعات: </span>', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1049, 0, 'ar', 'labels', 'frontend.course.bundles', 'بال', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1050, 0, 'ar', 'labels', 'frontend.course.available_in_bundles', 'متاح أيضا في حزم', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1051, 0, 'ar', 'labels', 'frontend.course.complete_test', 'يرجى إكمال الاختبار', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1052, 0, 'ar', 'labels', 'frontend.course.looking_for', 'البحث عن؟', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1053, 0, 'ar', 'labels', 'frontend.course.get_now', 'احصل الان', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1054, 0, 'ar', 'labels', 'frontend.course.explanation', 'تفسير', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1055, 0, 'ar', 'labels', 'frontend.course.not_attempted', 'لم تحاول', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1056, 0, 'ar', 'labels', 'frontend.course.find_your_bundle', '<span> ابحث عن </span> الحزمة الخاصة بك', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1057, 0, 'ar', 'labels', 'frontend.course.select_category', 'اختر الفئة', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1058, 0, 'ar', 'labels', 'frontend.faq.contact_us', 'اتصل بنا', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1059, 0, 'ar', 'labels', 'frontend.faq.find', 'ابحث عن <span> أسئلتك وإجاباتك. </span>', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1060, 0, 'ar', 'labels', 'frontend.faq.make_question', 'كون سؤالا', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1061, 0, 'ar', 'labels', 'frontend.faq.title', 'بشكل متكرر <span> الأسئلة المتداولة </span>', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1062, 0, 'ar', 'labels', 'frontend.home.all_teachers', 'جميع المعلمين', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1063, 0, 'ar', 'labels', 'frontend.home.learn_new_skills', 'تعلم مهارات جديدة', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1064, 0, 'ar', 'labels', 'frontend.home.online_available_courses', 'الدورات المتاحة على الانترنت', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1065, 0, 'ar', 'labels', 'frontend.home.our_professionals', 'المهنيين لدينا', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1066, 0, 'ar', 'labels', 'frontend.home.popular_teachers', '<span> شائع </span> المعلمون', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1067, 0, 'ar', 'labels', 'frontend.home.search_course', 'بحث دورة', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1068, 0, 'ar', 'labels', 'frontend.home.search_course_placeholder', 'اكتب ماذا تريد أن تتعلم اليوم؟', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1069, 0, 'ar', 'labels', 'frontend.home.search_courses', '<span> بحث </span> عن الدورات التدريبية.', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1070, 0, 'ar', 'labels', 'frontend.home.students_enrolled', 'الطلاب المسجلين', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1071, 0, 'ar', 'labels', 'frontend.home.teachers', 'معلمون', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1072, 0, 'ar', 'labels', 'frontend.home.title', 'الصفحة الرئيسية', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1073, 0, 'ar', 'labels', 'frontend.home.what_they_say_about_us', 'ماذا يقولون عنا', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1074, 0, 'ar', 'labels', 'frontend.layouts.partials.advantages', 'مزايا', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1075, 0, 'ar', 'labels', 'frontend.layouts.partials.browse_course_by_category', 'استعرض الدورات <span> حسب الفئة. </span>', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1076, 0, 'ar', 'labels', 'frontend.layouts.partials.browse_featured_course', 'استعرض <span> الدورة التدريبية المميزة. </span>', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1077, 0, 'ar', 'labels', 'frontend.layouts.partials.call_us_registration', 'اتصل بنا للحصول على تسجيل مجاني', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1078, 0, 'ar', 'labels', 'frontend.layouts.partials.contact_us', 'اتصل بنا', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1079, 0, 'ar', 'labels', 'frontend.layouts.partials.course_detail', 'تفاصيل الدورة', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1080, 0, 'ar', 'labels', 'frontend.layouts.partials.courses_categories', 'فئات الدورات', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1081, 0, 'ar', 'labels', 'frontend.layouts.partials.days', 'أيام', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1082, 0, 'ar', 'labels', 'frontend.layouts.partials.email_address', 'عنوان بريد الكتروني', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1083, 0, 'ar', 'labels', 'frontend.layouts.partials.email_registration', 'مراسلتنا عبر البريد الإلكتروني للحصول على تسجيل مجاني', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1084, 0, 'ar', 'labels', 'frontend.layouts.partials.faq', 'التعليمات', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1085, 0, 'ar', 'labels', 'frontend.layouts.partials.faq_full', 'بشكل متكرر <span> الأسئلة المتداولة </span>', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1086, 0, 'ar', 'labels', 'frontend.layouts.partials.featured_course', '<span> دورة مميزة </span>', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1087, 0, 'ar', 'labels', 'frontend.layouts.partials.get_in_touch', 'ابقى على تواصل', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1088, 0, 'ar', 'labels', 'frontend.layouts.partials.hours', 'ساعات', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1089, 0, 'ar', 'labels', 'frontend.layouts.partials.latest_news_blog', 'أحدث <span> مدونة الأخبار. </span>', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1090, 0, 'ar', 'labels', 'frontend.layouts.partials.learn_new_skills', 'تعلم مهارات جديدة', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1091, 0, 'ar', 'labels', 'frontend.layouts.partials.minutes', 'الدقائق', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1092, 0, 'ar', 'labels', 'frontend.layouts.partials.popular_courses', 'الدورات <span> الشائعة. </span>', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1093, 0, 'ar', 'labels', 'frontend.layouts.partials.primary', 'ابتدائي', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1094, 0, 'ar', 'labels', 'frontend.layouts.partials.recent_news', '<span> الأخيرة </span> الأخبار.', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1095, 0, 'ar', 'labels', 'frontend.layouts.partials.search_courses', 'البحث في الدورات', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1096, 0, 'ar', 'labels', 'frontend.layouts.partials.search_our_courses', 'بحث دوراتنا', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1097, 0, 'ar', 'labels', 'frontend.layouts.partials.search_placeholder', 'اكتب ماذا تريد أن تتعلم اليوم؟', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1098, 0, 'ar', 'labels', 'frontend.layouts.partials.second', 'ثانيا', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1099, 0, 'ar', 'labels', 'frontend.layouts.partials.seconds', 'ثواني', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1100, 0, 'ar', 'labels', 'frontend.layouts.partials.social_network', 'شبكة اجتماعية', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1101, 0, 'ar', 'labels', 'frontend.layouts.partials.sponsors', 'الرعاة.', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1102, 0, 'ar', 'labels', 'frontend.layouts.partials.students', 'الطلاب', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1103, 0, 'ar', 'labels', 'frontend.layouts.partials.students_testimonial', 'الطلاب <span> شهادة. </span>', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1104, 0, 'ar', 'labels', 'frontend.layouts.partials.subscribe_newsletter', 'اشترك في النشرة الإخبارية', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1105, 0, 'ar', 'labels', 'frontend.layouts.partials.subscribe_now', 'إشترك الآن', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1106, 0, 'ar', 'labels', 'frontend.layouts.partials.trending_courses', 'الاتجاهات <span> الدورات التدريبية. </span>', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1107, 0, 'ar', 'labels', 'frontend.layouts.partials.view_all_news', 'عرض جميع الأخبار', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1108, 0, 'ar', 'labels', 'frontend.layouts.partials.view_all_popular_courses', 'عرض جميع الدورات الشعبية', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1109, 0, 'ar', 'labels', 'frontend.layouts.partials.view_all_trending_courses', 'عرض جميع الدورات التدريبية', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1110, 0, 'ar', 'labels', 'frontend.layouts.partials.why_choose', 'السبب في اختيار', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1111, 0, 'ar', 'labels', 'frontend.layouts.partials.certificate_verification', 'التحقق من الشهادة', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1112, 0, 'ar', 'labels', 'frontend.layouts.partials.more_faqs', 'المزيد من الأسئلة الشائعة', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1113, 0, 'ar', 'labels', 'frontend.layouts.partials.offers', 'عروض', '2019-09-12 23:34:04', '2020-05-14 12:20:11'), (1114, 0, 'ar', 'labels', 'frontend.modal.already_user_note', 'بالفعل مستخدم؟ تسجيل الدخول هنا', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1115, 0, 'ar', 'labels', 'frontend.modal.login_now', 'تسجيل الدخول الآن', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1116, 0, 'ar', 'labels', 'frontend.modal.login_register', '<a href=\"#\" class=\"font-weight-bold go-login px-0\">تسجيل الدخول</a>إلى موقعنا ، أو<a href=\"#\" class=\"font-weight-bold go-register px-0\" id=\"\">تسجيل</a>', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1117, 0, 'ar', 'labels', 'frontend.modal.my_account', 'حسابي', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1118, 0, 'ar', 'labels', 'frontend.modal.new_user_note', 'مستخدم جديد؟ سجل هنا', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1119, 0, 'ar', 'labels', 'frontend.modal.register_now', 'سجل الان', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1120, 0, 'ar', 'labels', 'frontend.modal.registration_message', 'تم التسجيل بنجاح الرجاء تسجيل الدخول', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1121, 0, 'ar', 'labels', 'frontend.passwords.expired_password_box_title', 'انتهت كلمة المرور الخاصة بك.', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1122, 0, 'ar', 'labels', 'frontend.passwords.forgot_password', 'نسيت رقمك السري؟', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1123, 0, 'ar', 'labels', 'frontend.passwords.reset_password_box_title', 'إعادة تعيين كلمة المرور', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1124, 0, 'ar', 'labels', 'frontend.passwords.reset_password_button', 'إعادة تعيين كلمة المرور', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1125, 0, 'ar', 'labels', 'frontend.passwords.send_password_reset_link_button', 'إرسال رابط إعادة تعيين كلمة المرور', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1126, 0, 'ar', 'labels', 'frontend.passwords.update_password_button', 'إرسال رابط إعادة تعيين كلمة المرور', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1127, 0, 'ar', 'labels', 'frontend.search_result.blog', 'مدونة', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1128, 0, 'ar', 'labels', 'frontend.search_result.course_detail', 'بالطبع التفاصيل', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1129, 0, 'ar', 'labels', 'frontend.search_result.course_name', 'اسم الدورة التدريبية', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1130, 0, 'ar', 'labels', 'frontend.search_result.course_type', 'دورة كتابية', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1131, 0, 'ar', 'labels', 'frontend.search_result.featured', 'متميز', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1132, 0, 'ar', 'labels', 'frontend.search_result.none', 'لا شيء', '2019-09-12 23:34:05', '2020-05-14 12:20:11'); INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES (1133, 0, 'ar', 'labels', 'frontend.search_result.popular', 'جمع', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1134, 0, 'ar', 'labels', 'frontend.search_result.search_blog', 'بحث المدونة', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1135, 0, 'ar', 'labels', 'frontend.search_result.sort_by', '<b> فرز </b> حسب', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1136, 0, 'ar', 'labels', 'frontend.search_result.starts', 'يبدأ', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1137, 0, 'ar', 'labels', 'frontend.search_result.students', 'الطلاب', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1138, 0, 'ar', 'labels', 'frontend.search_result.trending', 'الشائع', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1139, 0, 'ar', 'labels', 'frontend.teacher.course_detail', 'بالطبع التفاصيل', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1140, 0, 'ar', 'labels', 'frontend.teacher.courses_by_teacher', 'الدورات <span> حسب المعلم. </span>', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1141, 0, 'ar', 'labels', 'frontend.teacher.send_now', 'ارسل الان', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1142, 0, 'ar', 'labels', 'frontend.teacher.students', 'الطلاب', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1143, 0, 'ar', 'labels', 'frontend.teacher.title', 'معلمون', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1144, 0, 'ar', 'labels', 'frontend.user.passwords.change', 'غير كلمة السر', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1145, 0, 'ar', 'labels', 'frontend.user.profile.avatar', 'الصورة الرمزية', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1146, 0, 'ar', 'labels', 'frontend.user.profile.created_at', 'أنشئت في', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1147, 0, 'ar', 'labels', 'frontend.user.profile.edit_information', 'تعديل المعلومات', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1148, 0, 'ar', 'labels', 'frontend.user.profile.email', 'البريد الإلكتروني', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1149, 0, 'ar', 'labels', 'frontend.user.profile.first_name', 'الاسم الاول', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1150, 0, 'ar', 'labels', 'frontend.user.profile.last_name', 'الكنية', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1151, 0, 'ar', 'labels', 'frontend.user.profile.last_updated', 'آخر تحديث', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1152, 0, 'ar', 'labels', 'frontend.user.profile.name', 'اسم', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1153, 0, 'ar', 'labels', 'frontend.user.profile.update_information', 'تحديث المعلومات', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1154, 0, 'ar', 'labels', 'frontend.certificate_verification.date_on_certificate', 'تاريخ الشهادة. السابق. 2018-11-25', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1155, 0, 'ar', 'labels', 'frontend.certificate_verification.name_on_certificate', 'الاسم في الشهادة. السابق. يوحنا', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1156, 0, 'ar', 'labels', 'frontend.certificate_verification.not_found', 'لم يتم العثور على شهادة للمعلومات المقدمة.', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1157, 0, 'ar', 'labels', 'frontend.certificate_verification.title', 'التحقق من الشهادة', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1158, 0, 'ar', 'labels', 'frontend.certificate_verification.verify_now', 'تحقق الآن', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1159, 0, 'ar', 'labels', 'frontend.footer.featured_courses', 'دورات مميزة', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1160, 0, 'ar', 'labels', 'frontend.footer.popular_categories', 'فئات شعبية', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1161, 0, 'ar', 'labels', 'frontend.footer.popular_courses', 'دورات شعبية', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1162, 0, 'ar', 'labels', 'frontend.footer.trending_courses', 'تتجه الدورات', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1163, 0, 'ar', 'labels', 'frontend.footer.useful_links', 'روابط مفيدة', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1164, 0, 'ar', 'labels', 'frontend.offers.minimum_order_amount', 'الحد الأدنى للطلب', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1165, 0, 'ar', 'labels', 'frontend.offers.no_offers', 'لا عروض', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1166, 0, 'ar', 'labels', 'frontend.offers.per_user', 'لكل مستخدم', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1167, 0, 'ar', 'labels', 'frontend.offers.title', 'عروض', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1168, 0, 'ar', 'labels', 'frontend.offers.unlimited', 'غير محدود', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1169, 0, 'ar', 'labels', 'frontend.offers.usage', 'استعمال', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1170, 0, 'ar', 'labels', 'frontend.offers.validity', 'صلاحية', '2019-09-12 23:34:05', '2020-05-14 12:20:11'), (1171, 0, 'ar', 'menus', 'backend.access.roles.all', 'كل الأدوار', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1172, 0, 'ar', 'menus', 'backend.access.roles.create', 'خلق دور', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1173, 0, 'ar', 'menus', 'backend.access.roles.edit', 'تحرير الدور', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1174, 0, 'ar', 'menus', 'backend.access.roles.main', 'الأدوار', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1175, 0, 'ar', 'menus', 'backend.access.roles.management', 'إدارة الدور', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1176, 0, 'ar', 'menus', 'backend.access.title', 'التمكن من', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1177, 0, 'ar', 'menus', 'backend.access.users.all', 'جميع المستخدمين', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1178, 0, 'ar', 'menus', 'backend.access.users.change-password', 'غير كلمة السر', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1179, 0, 'ar', 'menus', 'backend.access.users.create', 'إنشاء مستخدم', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1180, 0, 'ar', 'menus', 'backend.access.users.deactivated', 'المستخدمين المعطلين', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1181, 0, 'ar', 'menus', 'backend.access.users.deleted', 'حذف المستخدمين', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1182, 0, 'ar', 'menus', 'backend.access.users.edit', 'تحرير العضو', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1183, 0, 'ar', 'menus', 'backend.access.users.main', 'المستخدمين', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1184, 0, 'ar', 'menus', 'backend.access.users.view', 'عرض المستخدم', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1185, 0, 'ar', 'menus', 'backend.log-viewer.dashboard', 'تصحيح لوحة القيادة', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1186, 0, 'ar', 'menus', 'backend.log-viewer.logs', 'سجلات', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1187, 0, 'ar', 'menus', 'backend.log-viewer.main', 'سجل المشاهد', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1188, 0, 'ar', 'menus', 'backend.sidebar.account.title', 'الحساب', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1189, 0, 'ar', 'menus', 'backend.sidebar.backup.title', 'دعم', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1190, 0, 'ar', 'menus', 'backend.sidebar.blogs.title', 'مدونة', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1191, 0, 'ar', 'menus', 'backend.sidebar.categories.title', 'الاقسام', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1192, 0, 'ar', 'menus', 'backend.sidebar.change-password.title', 'غير كلمة السر', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1193, 0, 'ar', 'menus', 'backend.sidebar.contact.title', 'اتصل', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1194, 0, 'ar', 'menus', 'backend.sidebar.contacts.title', 'يؤدي', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1195, 0, 'ar', 'menus', 'backend.sidebar.courses.manage', 'إدارة الدورات', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1196, 0, 'ar', 'menus', 'backend.sidebar.courses.management', 'إدارة الدورات', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1197, 0, 'ar', 'menus', 'backend.sidebar.courses.title', 'الدورات', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1198, 0, 'ar', 'menus', 'backend.sidebar.dashboard', 'لوحة القيادة', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1199, 0, 'ar', 'menus', 'backend.sidebar.debug-site.title', 'تصحيح الموقع', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1200, 0, 'ar', 'menus', 'backend.sidebar.faqs.title', 'أسئلة وأجوبة', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1201, 0, 'ar', 'menus', 'backend.sidebar.footer.title', 'تذييل', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1202, 0, 'ar', 'menus', 'backend.sidebar.general', 'جنرال لواء', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1203, 0, 'ar', 'menus', 'backend.sidebar.hero-slider.title', 'بطل المتزلج', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1204, 0, 'ar', 'menus', 'backend.sidebar.history', 'التاريخ', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1205, 0, 'ar', 'menus', 'backend.sidebar.invoices.title', 'الفواتير', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1206, 0, 'ar', 'menus', 'backend.sidebar.lessons.title', 'الدروس', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1207, 0, 'ar', 'menus', 'backend.sidebar.menu-manager.title', 'مدير القائمة', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1208, 0, 'ar', 'menus', 'backend.sidebar.messages.title', 'رسائل', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1209, 0, 'ar', 'menus', 'backend.sidebar.newsletter-configuration.title', 'تكوين النشرة الإخبارية', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1210, 0, 'ar', 'menus', 'backend.sidebar.orders.title', 'أوامر', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1211, 0, 'ar', 'menus', 'backend.sidebar.pages.title', 'مدير الصفحات', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1212, 0, 'ar', 'menus', 'backend.sidebar.questions-options.title', 'خيارات الأسئلة', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1213, 0, 'ar', 'menus', 'backend.sidebar.questions.title', 'الأسئلة', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1214, 0, 'ar', 'menus', 'backend.sidebar.reasons.title', 'أسباب', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1215, 0, 'ar', 'menus', 'backend.sidebar.reviews.title', 'التعليقات', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1216, 0, 'ar', 'menus', 'backend.sidebar.settings.general', 'جنرال لواء', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1217, 0, 'ar', 'menus', 'backend.sidebar.settings.social-login', 'تسجيل الدخول الاجتماعي', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1218, 0, 'ar', 'menus', 'backend.sidebar.settings.title', 'الإعدادات', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1219, 0, 'ar', 'menus', 'backend.sidebar.site-management.title', 'إدارة الموقع', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1220, 0, 'ar', 'menus', 'backend.sidebar.sponsors.title', 'الرعاة', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1221, 0, 'ar', 'menus', 'backend.sidebar.system', 'النظام', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1222, 0, 'ar', 'menus', 'backend.sidebar.teachers.title', 'معلمون', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1223, 0, 'ar', 'menus', 'backend.sidebar.testimonials.title', 'الشهادات - التوصيات', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1224, 0, 'ar', 'menus', 'backend.sidebar.tests.title', 'اختبارات', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1225, 0, 'ar', 'menus', 'backend.sidebar.translations.title', 'مدير الترجمة', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1226, 0, 'ar', 'menus', 'backend.sidebar.update.title', 'تحديث', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1227, 0, 'ar', 'menus', 'backend.sidebar.certificates.title', 'شهادات', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1228, 0, 'ar', 'menus', 'backend.sidebar.bundles.title', 'بال', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1229, 0, 'ar', 'menus', 'backend.sidebar.reports.sales', 'مبيعات', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1230, 0, 'ar', 'menus', 'backend.sidebar.reports.students', 'الطلاب', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1231, 0, 'ar', 'menus', 'backend.sidebar.reports.title', 'تقارير', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1232, 0, 'ar', 'menus', 'backend.sidebar.coupons.title', 'كوبونات', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1233, 0, 'ar', 'menus', 'backend.sidebar.sitemap.title', 'خريطة الموقع', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1234, 0, 'ar', 'menus', 'backend.sidebar.tax.title', 'ضريبة', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1235, 0, 'ar', 'menus', 'backend.sidebar.forums-category.title', 'فئات المنتديات', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1236, 0, 'ar', 'menus', 'language-picker.langs.ar', 'عربى', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1237, 0, 'ar', 'menus', 'language-picker.langs.en', 'الإنجليزية', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1238, 0, 'ar', 'menus', 'language-picker.langs.fr', 'الفرنسية', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1239, 0, 'ar', 'menus', 'language-picker.langs.es', 'الأسبانية', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1240, 0, 'ar', 'menus', 'language-picker.langs.zh', 'صينى', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1241, 0, 'ar', 'menus', 'language-picker.langs.zh-TW', 'تقاليد صينية', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1242, 0, 'ar', 'menus', 'language-picker.langs.da', 'دانماركي', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1243, 0, 'ar', 'menus', 'language-picker.langs.de', 'ألمانية', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1244, 0, 'ar', 'menus', 'language-picker.langs.el', 'الإغريقي', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1245, 0, 'ar', 'menus', 'language-picker.langs.fa', 'اللغة الفارسية', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1246, 0, 'ar', 'menus', 'language-picker.langs.he', 'اللغة العبرية', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1247, 0, 'ar', 'menus', 'language-picker.langs.id', 'الأندونيسية', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1248, 0, 'ar', 'menus', 'language-picker.langs.it', 'الإيطالي', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1249, 0, 'ar', 'menus', 'language-picker.langs.ja', 'اليابانية', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1250, 0, 'ar', 'menus', 'language-picker.langs.nl', 'هولندي', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1251, 0, 'ar', 'menus', 'language-picker.langs.no', 'النرويجية', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1252, 0, 'ar', 'menus', 'language-picker.langs.pt_BR', 'البرتغالية (البرازيل).', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1253, 0, 'ar', 'menus', 'language-picker.langs.ru', 'الروسية', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1254, 0, 'ar', 'menus', 'language-picker.langs.sv', 'اللغة السويدية', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1255, 0, 'ar', 'menus', 'language-picker.langs.th', 'التايلاندية', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1256, 0, 'ar', 'menus', 'language-picker.langs.tr', 'اللغة التركية', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1257, 0, 'ar', 'menus', 'language-picker.langs.af', 'الأفريكانية', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1258, 0, 'ar', 'menus', 'language-picker.langs.ak', 'اكان', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1259, 0, 'ar', 'menus', 'language-picker.langs.sq_AL', 'ألباني (ألبانيا)', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1260, 0, 'ar', 'menus', 'language-picker.langs.sq', 'الألبانية', '2019-09-12 23:34:05', '2020-05-14 12:20:12'), (1261, 0, 'ar', 'menus', 'language-picker.langs.am_ET', 'الأمهرية (إثيوبيا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1262, 0, 'ar', 'menus', 'language-picker.langs.am', 'الأمهرية', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1263, 0, 'ar', 'menus', 'language-picker.langs.ar_DZ', 'العربية (الجزائر)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1264, 0, 'ar', 'menus', 'language-picker.langs.ar_BH', 'العربية (البحرين)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1265, 0, 'ar', 'menus', 'language-picker.langs.ar_EG', 'العربية (مصر)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1266, 0, 'ar', 'menus', 'language-picker.langs.ar_IQ', 'العربية (العراق)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1267, 0, 'ar', 'menus', 'language-picker.langs.ar_JO', 'العربية (الأردن)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1268, 0, 'ar', 'menus', 'language-picker.langs.ar_KW', 'العربية (الكويت)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1269, 0, 'ar', 'menus', 'language-picker.langs.ar_LB', 'العربية (لبنان)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1270, 0, 'ar', 'menus', 'language-picker.langs.ar_LY', 'العربية (ليبيا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1271, 0, 'ar', 'menus', 'language-picker.langs.ar_MA', 'العربية (المغرب)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1272, 0, 'ar', 'menus', 'language-picker.langs.ar_OM', 'العربية (عمان)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1273, 0, 'ar', 'menus', 'language-picker.langs.ar_QA', 'العربية (قطر)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1274, 0, 'ar', 'menus', 'language-picker.langs.ar_SA', 'العربية (العربية السعودية)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1275, 0, 'ar', 'menus', 'language-picker.langs.ar_SD', 'العربية (السودان)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1276, 0, 'ar', 'menus', 'language-picker.langs.ar_SY', 'العربية (سوريا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1277, 0, 'ar', 'menus', 'language-picker.langs.ar_TN', 'العربية (تونس)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1278, 0, 'ar', 'menus', 'language-picker.langs.ar_AE', 'العربية (الإمارات العربية)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1279, 0, 'ar', 'menus', 'language-picker.langs.ar_YE', 'العربية (اليمن)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1280, 0, 'ar', 'menus', 'language-picker.langs.hy_AM', 'أرميني (أرمينيا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1281, 0, 'ar', 'menus', 'language-picker.langs.hy', 'الأرميني', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1282, 0, 'ar', 'menus', 'language-picker.langs.as_IN', 'الأسامية (الهند)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1283, 0, 'ar', 'menus', 'language-picker.langs.as', 'الأسامية', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1284, 0, 'ar', 'menus', 'language-picker.langs.asa_TZ', 'أسو (تنزانيا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1285, 0, 'ar', 'menus', 'language-picker.langs.asa', 'جامعة ولاية أريزونا', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1286, 0, 'ar', 'menus', 'language-picker.langs.az_Cyrl', 'الأذربيجاني (السيريلية)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1287, 0, 'ar', 'menus', 'language-picker.langs.az_Cyrl_AZ', 'أذربيجان (السيريلية ، أذربيجان)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1288, 0, 'ar', 'menus', 'language-picker.langs.az_Latn', 'أذربيجان (لاتينية)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1289, 0, 'ar', 'menus', 'language-picker.langs.az_Latn_AZ', 'أذربيجان (اللاتينية ، أذربيجان)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1290, 0, 'ar', 'menus', 'language-picker.langs.az', 'أذربيجان', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1291, 0, 'ar', 'menus', 'language-picker.langs.bm_ML', 'بامبارا (مالي)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1292, 0, 'ar', 'menus', 'language-picker.langs.bm', 'البامبارا', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1293, 0, 'ar', 'menus', 'language-picker.langs.eu_ES', 'الباسك (اسبانيا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1294, 0, 'ar', 'menus', 'language-picker.langs.eu', 'الباسكي', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1295, 0, 'ar', 'menus', 'language-picker.langs.be_BY', 'البيلوروسية (بيلاروسيا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1296, 0, 'ar', 'menus', 'language-picker.langs.be', 'البيلاروسية', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1297, 0, 'ar', 'menus', 'language-picker.langs.bem_ZM', 'بيمبا (زامبيا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1298, 0, 'ar', 'menus', 'language-picker.langs.bem', 'بمبا', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1299, 0, 'ar', 'menus', 'language-picker.langs.bez_TZ', 'بينا (تنزانيا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1300, 0, 'ar', 'menus', 'language-picker.langs.bez', 'بينا', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1301, 0, 'ar', 'menus', 'language-picker.langs.bn_BD', 'البنغالية (بنغلاديش)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1302, 0, 'ar', 'menus', 'language-picker.langs.bn_IN', 'البنغالية (الهند)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1303, 0, 'ar', 'menus', 'language-picker.langs.bn', 'بنغالي', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1304, 0, 'ar', 'menus', 'language-picker.langs.bs_BA', 'البوسنية (البوسنة والهرسك)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1305, 0, 'ar', 'menus', 'language-picker.langs.bs', 'البوسنية', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1306, 0, 'ar', 'menus', 'language-picker.langs.bg_BG', 'البلغارية (بلغاريا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1307, 0, 'ar', 'menus', 'language-picker.langs.bg', 'البلغارية', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1308, 0, 'ar', 'menus', 'language-picker.langs.my_MM', 'البورمية (ميانمار [بورما])', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1309, 0, 'ar', 'menus', 'language-picker.langs.my', 'البورمية', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1310, 0, 'ar', 'menus', 'language-picker.langs.yue_Hant_HK', 'الكانتونية (التقليدية ، هونج كونج SAR الصين)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1311, 0, 'ar', 'menus', 'language-picker.langs.ca_ES', 'الكاتالانية (اسبانيا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1312, 0, 'ar', 'menus', 'language-picker.langs.ca', 'الكاتالونية', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1313, 0, 'ar', 'menus', 'language-picker.langs.tzm_Latn', 'الأمازيغية الوسطى المغرب (لاتيني)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1314, 0, 'ar', 'menus', 'language-picker.langs.tzm_Latn_MA', 'الأمازيغية الوسطى المغرب (اللاتينية ، المغرب)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1315, 0, 'ar', 'menus', 'language-picker.langs.tzm', 'وسط المغرب الأمازيغية', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1316, 0, 'ar', 'menus', 'language-picker.langs.chr_US', 'شيروكي (الولايات المتحدة)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1317, 0, 'ar', 'menus', 'language-picker.langs.chr', 'شيروكي', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1318, 0, 'ar', 'menus', 'language-picker.langs.cgg_UG', 'شيغا (أوغندا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1319, 0, 'ar', 'menus', 'language-picker.langs.cgg', 'Chiga', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1320, 0, 'ar', 'menus', 'language-picker.langs.zh_Hans', 'الصينية (هان المبسطة)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1321, 0, 'ar', 'menus', 'language-picker.langs.zh_Hans_CN', 'الصينية (هان المبسطة ، الصين)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1322, 0, 'ar', 'menus', 'language-picker.langs.zh_Hans_HK', 'الصينية (هان المبسطة ، هونغ كونغ ، الصين)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1323, 0, 'ar', 'menus', 'language-picker.langs.zh_Hans_MO', 'الصينية (هان المبسطة ، ماكاو SAR الصين)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1324, 0, 'ar', 'menus', 'language-picker.langs.zh_Hans_SG', 'الصينية (هان المبسطة ، سنغافورة)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1325, 0, 'ar', 'menus', 'language-picker.langs.zh_Hant', 'الصينية (هان التقليدية)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1326, 0, 'ar', 'menus', 'language-picker.langs.zh_Hant_HK', 'الصينية (هان التقليدية ، هونج كونج SAR الصين)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1327, 0, 'ar', 'menus', 'language-picker.langs.zh_Hant_MO', 'الصينية (هان التقليدية ، ماكاو SAR الصين)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1328, 0, 'ar', 'menus', 'language-picker.langs.zh_Hant_TW', 'الصينية (هان التقليدية ، تايوان)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1329, 0, 'ar', 'menus', 'language-picker.langs.kw_GB', 'كورنيش (المملكة المتحدة)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1330, 0, 'ar', 'menus', 'language-picker.langs.kw', 'كورنيش', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1331, 0, 'ar', 'menus', 'language-picker.langs.hr_HR', 'الكرواتية (كرواتيا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1332, 0, 'ar', 'menus', 'language-picker.langs.hr', 'الكرواتية', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1333, 0, 'ar', 'menus', 'language-picker.langs.cs_CZ', 'التشيكية (الجمهورية التشيكية)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1334, 0, 'ar', 'menus', 'language-picker.langs.cs', 'تشيكي', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1335, 0, 'ar', 'menus', 'language-picker.langs.da_DK', 'الدانمركية (الدنمارك)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1336, 0, 'ar', 'menus', 'language-picker.langs.nl_BE', 'الهولندية (بلجيكا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1337, 0, 'ar', 'menus', 'language-picker.langs.nl_NL', 'الهولندية (هولندا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1338, 0, 'ar', 'menus', 'language-picker.langs.ebu_KE', 'امبو (كينيا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1339, 0, 'ar', 'menus', 'language-picker.langs.ebu', 'إمبو', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1340, 0, 'ar', 'menus', 'language-picker.langs.en_AS', 'الإنجليزية (ساموا الأمريكية)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1341, 0, 'ar', 'menus', 'language-picker.langs.en_AU', 'الإنجليزية (أستراليا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1342, 0, 'ar', 'menus', 'language-picker.langs.en_BE', 'الإنجليزية (بلجيكا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1343, 0, 'ar', 'menus', 'language-picker.langs.en_BZ', 'الإنجليزية (بليز)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1344, 0, 'ar', 'menus', 'language-picker.langs.en_BW', 'الإنجليزية (بوتسوانا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1345, 0, 'ar', 'menus', 'language-picker.langs.en_CA', 'الإنجليزية (كندا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1346, 0, 'ar', 'menus', 'language-picker.langs.en_GU', 'الإنجليزية (غوام)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1347, 0, 'ar', 'menus', 'language-picker.langs.en_HK', 'الإنجليزية (هونج كونج SAR الصين)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1348, 0, 'ar', 'menus', 'language-picker.langs.en_IN', 'الإنجليزية (الهند)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1349, 0, 'ar', 'menus', 'language-picker.langs.en_IE', 'الإنجليزية (أيرلندا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1350, 0, 'ar', 'menus', 'language-picker.langs.en_IL', 'الإنجليزية (إسرائيل)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1351, 0, 'ar', 'menus', 'language-picker.langs.en_JM', 'الإنجليزية (جامايكا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1352, 0, 'ar', 'menus', 'language-picker.langs.en_MT', 'الإنجليزية (مالطا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1353, 0, 'ar', 'menus', 'language-picker.langs.en_MH', 'الإنجليزية (جزر مارشال)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1354, 0, 'ar', 'menus', 'language-picker.langs.en_MU', 'الإنجليزية (موريشيوس)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1355, 0, 'ar', 'menus', 'language-picker.langs.en_NA', 'الإنجليزية (ناميبيا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1356, 0, 'ar', 'menus', 'language-picker.langs.en_NZ', 'الإنجليزية (نيوزيلندا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1357, 0, 'ar', 'menus', 'language-picker.langs.en_MP', 'الإنجليزية (جزر ماريانا الشمالية)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1358, 0, 'ar', 'menus', 'language-picker.langs.en_PK', 'الإنجليزية (باكستان)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1359, 0, 'ar', 'menus', 'language-picker.langs.en_PH', 'الإنجليزية (الفلبين)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1360, 0, 'ar', 'menus', 'language-picker.langs.en_SG', 'الإنجليزية (سنغافورة)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1361, 0, 'ar', 'menus', 'language-picker.langs.en_ZA', 'الإنجليزية (جنوب إفريقيا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1362, 0, 'ar', 'menus', 'language-picker.langs.en_TT', 'الإنجليزية (ترينيداد وتوباغو)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1363, 0, 'ar', 'menus', 'language-picker.langs.en_UM', 'الإنجليزية (الجزر الصغيرة البعيدة للولايات المتحدة)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1364, 0, 'ar', 'menus', 'language-picker.langs.en_VI', 'الإنجليزية (جزر فيرجن الأمريكية)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1365, 0, 'ar', 'menus', 'language-picker.langs.en_GB', 'الإنجليزية (المملكة المتحدة)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1366, 0, 'ar', 'menus', 'language-picker.langs.en_US', 'انجليزية الولايات المتحدة)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1367, 0, 'ar', 'menus', 'language-picker.langs.en_ZW', 'الإنجليزية (زيمبابوي)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1368, 0, 'ar', 'menus', 'language-picker.langs.eo', 'الاسبرانتو', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1369, 0, 'ar', 'menus', 'language-picker.langs.et_EE', 'الإستونية (إستونيا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1370, 0, 'ar', 'menus', 'language-picker.langs.et', 'الإستونية', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1371, 0, 'ar', 'menus', 'language-picker.langs.ee_GH', 'إوي (غانا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1372, 0, 'ar', 'menus', 'language-picker.langs.ee_TG', 'إوي (توغو)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1373, 0, 'ar', 'menus', 'language-picker.langs.ee', 'نعجة', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1374, 0, 'ar', 'menus', 'language-picker.langs.fo_FO', 'جزر فارو (جزر فارو)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1375, 0, 'ar', 'menus', 'language-picker.langs.fo', 'جزر فارو', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1376, 0, 'ar', 'menus', 'language-picker.langs.fil_PH', 'فلبيني (الفلبين)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1377, 0, 'ar', 'menus', 'language-picker.langs.fil', 'الفلبينية', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1378, 0, 'ar', 'menus', 'language-picker.langs.fi_FI', 'الفنلندية (فنلندا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1379, 0, 'ar', 'menus', 'language-picker.langs.fi', 'اللغة الفنلندية', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1380, 0, 'ar', 'menus', 'language-picker.langs.fr_BE', 'الفرنسية (بلجيكا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1381, 0, 'ar', 'menus', 'language-picker.langs.fr_BJ', 'الفرنسية (بنين)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1382, 0, 'ar', 'menus', 'language-picker.langs.fr_BF', 'الفرنسية (بوركينا فاسو)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1383, 0, 'ar', 'menus', 'language-picker.langs.fr_BI', 'الفرنسية (بوروندي)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1384, 0, 'ar', 'menus', 'language-picker.langs.fr_CM', 'الفرنسية (الكاميرون)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1385, 0, 'ar', 'menus', 'language-picker.langs.fr_CA', 'الفرنسية (كندا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1386, 0, 'ar', 'menus', 'language-picker.langs.fr_CF', 'الفرنسية (جمهورية إفريقيا الوسطى)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1387, 0, 'ar', 'menus', 'language-picker.langs.fr_TD', 'الفرنسية (تشاد)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1388, 0, 'ar', 'menus', 'language-picker.langs.fr_KM', 'الفرنسية (جزر القمر)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1389, 0, 'ar', 'menus', 'language-picker.langs.fr_CG', 'الفرنسية (الكونغو - برازافيل)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1390, 0, 'ar', 'menus', 'language-picker.langs.fr_CD', 'الفرنسية (الكونغو - كينشاسا)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1391, 0, 'ar', 'menus', 'language-picker.langs.fr_CI', 'الفرنسية (كوت ديفوار)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1392, 0, 'ar', 'menus', 'language-picker.langs.fr_DJ', 'الفرنسية (جيبوتي)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1393, 0, 'ar', 'menus', 'language-picker.langs.fr_GQ', 'الفرنسية (غينيا الاستوائية)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1394, 0, 'ar', 'menus', 'language-picker.langs.fr_FR', 'فرنسا الفرنسية)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1395, 0, 'ar', 'menus', 'language-picker.langs.fr_GA', 'الفرنسية (الغابون)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1396, 0, 'ar', 'menus', 'language-picker.langs.fr_GP', 'الفرنسية (جوادلوب)', '2019-09-12 23:34:06', '2020-05-14 12:20:12'), (1397, 0, 'ar', 'menus', 'language-picker.langs.fr_GN', 'الفرنسية (غينيا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1398, 0, 'ar', 'menus', 'language-picker.langs.fr_LU', 'الفرنسية (لوكسمبورغ)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1399, 0, 'ar', 'menus', 'language-picker.langs.fr_MG', 'الفرنسية (مدغشقر)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1400, 0, 'ar', 'menus', 'language-picker.langs.fr_ML', 'الفرنسية (مالي)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1401, 0, 'ar', 'menus', 'language-picker.langs.fr_MQ', 'الفرنسية (المارتينيك)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1402, 0, 'ar', 'menus', 'language-picker.langs.fr_MC', 'الفرنسية (موناكو)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1403, 0, 'ar', 'menus', 'language-picker.langs.fr_NE', 'الفرنسية (النيجر)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1404, 0, 'ar', 'menus', 'language-picker.langs.fr_RW', 'الفرنسية (رواندا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1405, 0, 'ar', 'menus', 'language-picker.langs.fr_RE', 'الفرنسية (ريونيون)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1406, 0, 'ar', 'menus', 'language-picker.langs.fr_BL', 'الفرنسية (سانت بارتيليمي)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1407, 0, 'ar', 'menus', 'language-picker.langs.fr_MF', 'الفرنسية (سانت مارتن)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1408, 0, 'ar', 'menus', 'language-picker.langs.fr_SN', 'الفرنسية (السنغال)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1409, 0, 'ar', 'menus', 'language-picker.langs.fr_CH', 'الفرنسية (سويسرا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1410, 0, 'ar', 'menus', 'language-picker.langs.fr_TG', 'الفرنسية (توغو)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1411, 0, 'ar', 'menus', 'language-picker.langs.ff_SN', 'فولاه (السنغال)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1412, 0, 'ar', 'menus', 'language-picker.langs.ff', 'الفلة', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1413, 0, 'ar', 'menus', 'language-picker.langs.gl_ES', 'غاليسيان (اسبانيا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1414, 0, 'ar', 'menus', 'language-picker.langs.gl', 'الجاليكية', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1415, 0, 'ar', 'menus', 'language-picker.langs.lg_UG', 'جاندا (أوغندا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1416, 0, 'ar', 'menus', 'language-picker.langs.lg', 'غاندا', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1417, 0, 'ar', 'menus', 'language-picker.langs.ka_GE', 'الجورجية (جورجيا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1418, 0, 'ar', 'menus', 'language-picker.langs.ka', 'الجورجية', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1419, 0, 'ar', 'menus', 'language-picker.langs.de_AT', 'الألمانية (النمسا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1420, 0, 'ar', 'menus', 'language-picker.langs.de_BE', 'الألمانية (بلجيكا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1421, 0, 'ar', 'menus', 'language-picker.langs.de_DE', 'الألمانية ألمانيا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1422, 0, 'ar', 'menus', 'language-picker.langs.de_LI', 'الألمانية (ليختنشتاين)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1423, 0, 'ar', 'menus', 'language-picker.langs.de_LU', 'الألمانية (لوكسمبورغ)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1424, 0, 'ar', 'menus', 'language-picker.langs.de_CH', 'الألمانية (سويسرا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1425, 0, 'ar', 'menus', 'language-picker.langs.el_CY', 'اليونانية (قبرص)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1426, 0, 'ar', 'menus', 'language-picker.langs.el_GR', 'اليونانية (اليونان)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1427, 0, 'ar', 'menus', 'language-picker.langs.gu_IN', 'غوجاراتي (الهند)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1428, 0, 'ar', 'menus', 'language-picker.langs.gu', 'الغوجاراتية', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1429, 0, 'ar', 'menus', 'language-picker.langs.guz_KE', 'جوسي (كينيا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1430, 0, 'ar', 'menus', 'language-picker.langs.guz', 'Gusii', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1431, 0, 'ar', 'menus', 'language-picker.langs.ha_Latn', 'الهوسا (اللاتينية)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1432, 0, 'ar', 'menus', 'language-picker.langs.ha_Latn_GH', 'الهوسا (اللاتينية ، غانا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1433, 0, 'ar', 'menus', 'language-picker.langs.ha_Latn_NE', 'الهوسا (اللاتينية ، النيجر)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1434, 0, 'ar', 'menus', 'language-picker.langs.ha_Latn_NG', 'الهوسا (اللاتينية ، نيجيريا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1435, 0, 'ar', 'menus', 'language-picker.langs.ha', 'الهوسا', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1436, 0, 'ar', 'menus', 'language-picker.langs.haw_US', 'هاواي (الولايات المتحدة)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1437, 0, 'ar', 'menus', 'language-picker.langs.haw', 'هاواي', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1438, 0, 'ar', 'menus', 'language-picker.langs.he_IL', 'العبرية (إسرائيل)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1439, 0, 'ar', 'menus', 'language-picker.langs.hi_IN', 'الهندية (الهند)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1440, 0, 'ar', 'menus', 'language-picker.langs.hi', 'الهندية', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1441, 0, 'ar', 'menus', 'language-picker.langs.hu_HU', 'الهنغارية (المجر)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1442, 0, 'ar', 'menus', 'language-picker.langs.hu', 'الهنغارية', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1443, 0, 'ar', 'menus', 'language-picker.langs.is_IS', 'الآيسلندية (أيسلندا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1444, 0, 'ar', 'menus', 'language-picker.langs.is', 'أيسلندي', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1445, 0, 'ar', 'menus', 'language-picker.langs.ig_NG', 'ايجبو (نيجيريا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1446, 0, 'ar', 'menus', 'language-picker.langs.ig', 'الإيبو', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1447, 0, 'ar', 'menus', 'language-picker.langs.id_ID', 'الاندونيسية (اندونيسيا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1448, 0, 'ar', 'menus', 'language-picker.langs.ga_IE', 'الأيرلندية (أيرلندا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1449, 0, 'ar', 'menus', 'language-picker.langs.ga', 'الأيرلندية', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1450, 0, 'ar', 'menus', 'language-picker.langs.it_IT', 'الإيطالية (إيطاليا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1451, 0, 'ar', 'menus', 'language-picker.langs.it_CH', 'الإيطالية (سويسرا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1452, 0, 'ar', 'menus', 'language-picker.langs.ja_JP', 'اليابانية (اليابان)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1453, 0, 'ar', 'menus', 'language-picker.langs.kea_CV', 'كابوفيرديانو (الرأس الأخضر)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1454, 0, 'ar', 'menus', 'language-picker.langs.kea', 'Kabuverdianu', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1455, 0, 'ar', 'menus', 'language-picker.langs.kab_DZ', 'القبائل (الجزائر)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1456, 0, 'ar', 'menus', 'language-picker.langs.kab', 'القبائل', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1457, 0, 'ar', 'menus', 'language-picker.langs.kl_GL', 'كالايسوت (جرينلاند)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1458, 0, 'ar', 'menus', 'language-picker.langs.kl', 'الكالاليست', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1459, 0, 'ar', 'menus', 'language-picker.langs.kln_KE', 'كالينجين (كينيا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1460, 0, 'ar', 'menus', 'language-picker.langs.kln', 'كالينجين', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1461, 0, 'ar', 'menus', 'language-picker.langs.kam_KE', 'كامبا (كينيا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1462, 0, 'ar', 'menus', 'language-picker.langs.kam', 'كامبا', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1463, 0, 'ar', 'menus', 'language-picker.langs.kn_IN', 'كانادا (الهند)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1464, 0, 'ar', 'menus', 'language-picker.langs.kn', 'الكانادا', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1465, 0, 'ar', 'menus', 'language-picker.langs.kk_Cyrl', 'الكازاخستانية (السيريلية)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1466, 0, 'ar', 'menus', 'language-picker.langs.kk_Cyrl_KZ', 'الكازاخستانية (السيريلية ، كازاخستان)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1467, 0, 'ar', 'menus', 'language-picker.langs.kk', 'الكازاخية', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1468, 0, 'ar', 'menus', 'language-picker.langs.km_KH', 'الخمير (كمبوديا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1469, 0, 'ar', 'menus', 'language-picker.langs.km', 'الخمير', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1470, 0, 'ar', 'menus', 'language-picker.langs.ki_KE', 'كيكويو (كينيا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1471, 0, 'ar', 'menus', 'language-picker.langs.ki', 'الكيكويو', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1472, 0, 'ar', 'menus', 'language-picker.langs.rw_RW', 'كينيارواندا (رواندا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1473, 0, 'ar', 'menus', 'language-picker.langs.rw', 'الكينيارواندية', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1474, 0, 'ar', 'menus', 'language-picker.langs.kok_IN', 'كونكاني (الهند)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1475, 0, 'ar', 'menus', 'language-picker.langs.kok', 'الكونكانية', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1476, 0, 'ar', 'menus', 'language-picker.langs.ko_KR', 'الكورية (كوريا الجنوبية)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1477, 0, 'ar', 'menus', 'language-picker.langs.ko', 'الكورية', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1478, 0, 'ar', 'menus', 'language-picker.langs.khq_ML', 'كويرا تشيني (مالي)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1479, 0, 'ar', 'menus', 'language-picker.langs.khq', 'كويرا تشيني', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1480, 0, 'ar', 'menus', 'language-picker.langs.ses_ML', 'كويرابورو سيني (مالي)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1481, 0, 'ar', 'menus', 'language-picker.langs.ses', 'كويرابورو سيني', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1482, 0, 'ar', 'menus', 'language-picker.langs.lag_TZ', 'لانجي (تنزانيا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1483, 0, 'ar', 'menus', 'language-picker.langs.lag', 'Langi', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1484, 0, 'ar', 'menus', 'language-picker.langs.lv_LV', 'لاتفيا (لاتفيا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1485, 0, 'ar', 'menus', 'language-picker.langs.lv', 'اللاتفية', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1486, 0, 'ar', 'menus', 'language-picker.langs.lt_LT', 'الليتوانية (ليتوانيا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1487, 0, 'ar', 'menus', 'language-picker.langs.lt', 'اللتوانية', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1488, 0, 'ar', 'menus', 'language-picker.langs.luo_KE', 'لوه (كينيا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1489, 0, 'ar', 'menus', 'language-picker.langs.luo', 'لوه', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1490, 0, 'ar', 'menus', 'language-picker.langs.luy_KE', 'لوييا (كينيا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1491, 0, 'ar', 'menus', 'language-picker.langs.luy', 'Luyia', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1492, 0, 'ar', 'menus', 'language-picker.langs.mk_MK', 'المقدونية (مقدونيا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1493, 0, 'ar', 'menus', 'language-picker.langs.mk', 'المقدونية', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1494, 0, 'ar', 'menus', 'language-picker.langs.jmc_TZ', 'ماتشامي (تنزانيا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1495, 0, 'ar', 'menus', 'language-picker.langs.jmc', 'Machame', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1496, 0, 'ar', 'menus', 'language-picker.langs.kde_TZ', 'ماكوندي (تنزانيا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1497, 0, 'ar', 'menus', 'language-picker.langs.kde', 'ماكوندي', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1498, 0, 'ar', 'menus', 'language-picker.langs.mg_MG', 'مدغشقر (مدغشقر)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1499, 0, 'ar', 'menus', 'language-picker.langs.mg', 'مدغشقر', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1500, 0, 'ar', 'menus', 'language-picker.langs.ms_BN', 'الملايو (بروناي)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1501, 0, 'ar', 'menus', 'language-picker.langs.ms_MY', 'الملايو (ماليزيا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1502, 0, 'ar', 'menus', 'language-picker.langs.ms', 'لغة الملايو', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1503, 0, 'ar', 'menus', 'language-picker.langs.ml_IN', 'مليالم (الهند)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1504, 0, 'ar', 'menus', 'language-picker.langs.ml', 'المالايالامية', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1505, 0, 'ar', 'menus', 'language-picker.langs.mt_MT', 'المالطية (مالطا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1506, 0, 'ar', 'menus', 'language-picker.langs.mt', 'المالطية', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1507, 0, 'ar', 'menus', 'language-picker.langs.gv_GB', 'مانكس (المملكة المتحدة)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1508, 0, 'ar', 'menus', 'language-picker.langs.gv', 'مانكس', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1509, 0, 'ar', 'menus', 'language-picker.langs.mr_IN', 'ماراثي (الهند)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1510, 0, 'ar', 'menus', 'language-picker.langs.mr', 'المهاراتية', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1511, 0, 'ar', 'menus', 'language-picker.langs.mas_KE', 'ماساي (كينيا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1512, 0, 'ar', 'menus', 'language-picker.langs.mas_TZ', 'ماساي (تنزانيا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1513, 0, 'ar', 'menus', 'language-picker.langs.mas', 'الماساي', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1514, 0, 'ar', 'menus', 'language-picker.langs.mer_KE', 'ميرو (كينيا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1515, 0, 'ar', 'menus', 'language-picker.langs.mer', 'ميرو', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1516, 0, 'ar', 'menus', 'language-picker.langs.mfe_MU', 'موريسين (موريشيوس)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1517, 0, 'ar', 'menus', 'language-picker.langs.mfe', 'Morisyen', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1518, 0, 'ar', 'menus', 'language-picker.langs.naq_NA', 'ناما (ناميبيا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1519, 0, 'ar', 'menus', 'language-picker.langs.naq', 'ناما', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1520, 0, 'ar', 'menus', 'language-picker.langs.ne_IN', 'النيبالية (الهند)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1521, 0, 'ar', 'menus', 'language-picker.langs.ne_NP', 'النيبالية (نيبال)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1522, 0, 'ar', 'menus', 'language-picker.langs.ne', 'النيبالية', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1523, 0, 'ar', 'menus', 'language-picker.langs.nd_ZW', 'نديبيلي الشمالية (زيمبابوي)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1524, 0, 'ar', 'menus', 'language-picker.langs.nd', 'شمال نديبيلي', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1525, 0, 'ar', 'menus', 'language-picker.langs.nb_NO', 'النرويجية بوكمال (النرويج)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1526, 0, 'ar', 'menus', 'language-picker.langs.nb', 'النرويجية Bokmål', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1527, 0, 'ar', 'menus', 'language-picker.langs.nn_NO', 'نينورسك النرويجي (النرويج)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1528, 0, 'ar', 'menus', 'language-picker.langs.nn', 'نينورسك النرويجي', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1529, 0, 'ar', 'menus', 'language-picker.langs.nyn_UG', 'نيانكول (أوغندا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1530, 0, 'ar', 'menus', 'language-picker.langs.nyn', 'النيانكول', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1531, 0, 'ar', 'menus', 'language-picker.langs.or_IN', 'الأوريا (الهند)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1532, 0, 'ar', 'menus', 'language-picker.langs.or', 'الأوريا', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1533, 0, 'ar', 'menus', 'language-picker.langs.om_ET', 'أورومو (إثيوبيا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1534, 0, 'ar', 'menus', 'language-picker.langs.om_KE', 'أورومو (كينيا)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1535, 0, 'ar', 'menus', 'language-picker.langs.om', 'أورومو', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1536, 0, 'ar', 'menus', 'language-picker.langs.ps_AF', 'الباشتو (أفغانستان)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1537, 0, 'ar', 'menus', 'language-picker.langs.ps', 'الباشتو', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1538, 0, 'ar', 'menus', 'language-picker.langs.fa_AF', 'الفارسية (أفغانستان)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1539, 0, 'ar', 'menus', 'language-picker.langs.fa_IR', 'الفارسية (إيران)', '2019-09-12 23:34:07', '2020-05-14 12:20:12'), (1540, 0, 'ar', 'menus', 'language-picker.langs.pl_PL', 'البولندية (بولندا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1541, 0, 'ar', 'menus', 'language-picker.langs.pl', 'البولندي', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1542, 0, 'ar', 'menus', 'language-picker.langs.pt_GW', 'البرتغالية (غينيا بيساو)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1543, 0, 'ar', 'menus', 'language-picker.langs.pt_MZ', 'البرتغالية (موزمبيق)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1544, 0, 'ar', 'menus', 'language-picker.langs.pt_PT', 'البرتغالية (البرتغال)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1545, 0, 'ar', 'menus', 'language-picker.langs.pt', 'البرتغالية', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1546, 0, 'ar', 'menus', 'language-picker.langs.pa_Arab', 'البنجابية (العربية)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'); INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES (1547, 0, 'ar', 'menus', 'language-picker.langs.pa_Arab_PK', 'البنجابية (العربية ، باكستان)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1548, 0, 'ar', 'menus', 'language-picker.langs.pa_Guru', 'البنجابية (غرموخي)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1549, 0, 'ar', 'menus', 'language-picker.langs.pa_Guru_IN', 'البنجابية (غرموخي ، الهند)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1550, 0, 'ar', 'menus', 'language-picker.langs.pa', 'البنجابية', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1551, 0, 'ar', 'menus', 'language-picker.langs.ro_MD', 'الرومانية (مولدوفا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1552, 0, 'ar', 'menus', 'language-picker.langs.ro_RO', 'الرومانية (رومانيا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1553, 0, 'ar', 'menus', 'language-picker.langs.ro', 'روماني', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1554, 0, 'ar', 'menus', 'language-picker.langs.rm_CH', 'رومانش (سويسرا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1555, 0, 'ar', 'menus', 'language-picker.langs.rm', 'الرومانش', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1556, 0, 'ar', 'menus', 'language-picker.langs.rof_TZ', 'رومبو (تنزانيا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1557, 0, 'ar', 'menus', 'language-picker.langs.rof', 'رومبو', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1558, 0, 'ar', 'menus', 'language-picker.langs.ru_MD', 'الروسية (مولدوفا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1559, 0, 'ar', 'menus', 'language-picker.langs.ru_RU', 'الروسية (روسيا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1560, 0, 'ar', 'menus', 'language-picker.langs.ru_UA', 'الروسية (أوكرانيا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1561, 0, 'ar', 'menus', 'language-picker.langs.rwk_TZ', 'روا (تنزانيا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1562, 0, 'ar', 'menus', 'language-picker.langs.rwk', 'RWA', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1563, 0, 'ar', 'menus', 'language-picker.langs.saq_KE', 'سامبورو (كينيا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1564, 0, 'ar', 'menus', 'language-picker.langs.saq', 'سامبورو', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1565, 0, 'ar', 'menus', 'language-picker.langs.sg_CF', 'سانجو (جمهورية إفريقيا الوسطى)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1566, 0, 'ar', 'menus', 'language-picker.langs.sg', 'سانغو', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1567, 0, 'ar', 'menus', 'language-picker.langs.seh_MZ', 'سينا (موزمبيق)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1568, 0, 'ar', 'menus', 'language-picker.langs.seh', 'سينا', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1569, 0, 'ar', 'menus', 'language-picker.langs.sr_Cyrl', 'الصربية (السيريلية)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1570, 0, 'ar', 'menus', 'language-picker.langs.sr_Cyrl_BA', 'الصربية (السيريلية ، البوسنة والهرسك)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1571, 0, 'ar', 'menus', 'language-picker.langs.sr_Cyrl_ME', 'الصربية (السيريلية ، الجبل الأسود)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1572, 0, 'ar', 'menus', 'language-picker.langs.sr_Cyrl_RS', 'الصربية (السيريلية ، صربيا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1573, 0, 'ar', 'menus', 'language-picker.langs.sr_Latn', 'الصربية (اللاتينية)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1574, 0, 'ar', 'menus', 'language-picker.langs.sr_Latn_BA', 'الصربية (اللاتينية والبوسنة والهرسك)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1575, 0, 'ar', 'menus', 'language-picker.langs.sr_Latn_ME', 'الصربية (اللاتينية ، الجبل الأسود)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1576, 0, 'ar', 'menus', 'language-picker.langs.sr_Latn_RS', 'الصربية (اللاتينية ، صربيا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1577, 0, 'ar', 'menus', 'language-picker.langs.sr', 'صربي', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1578, 0, 'ar', 'menus', 'language-picker.langs.sn_ZW', 'شونا (زيمبابوي)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1579, 0, 'ar', 'menus', 'language-picker.langs.sn', 'شونا', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1580, 0, 'ar', 'menus', 'language-picker.langs.ii_CN', 'سيتشوان يي (الصين)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1581, 0, 'ar', 'menus', 'language-picker.langs.ii', 'سيتشوان يي', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1582, 0, 'ar', 'menus', 'language-picker.langs.si_LK', 'سينهالا (سريلانكا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1583, 0, 'ar', 'menus', 'language-picker.langs.si', 'السنهالية', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1584, 0, 'ar', 'menus', 'language-picker.langs.sk_SK', 'السلوفاكية (سلوفاكيا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1585, 0, 'ar', 'menus', 'language-picker.langs.sk', 'السلوفاكية', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1586, 0, 'ar', 'menus', 'language-picker.langs.sl_SI', 'السلوفينية (سلوفينيا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1587, 0, 'ar', 'menus', 'language-picker.langs.sl', 'سلوفيني', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1588, 0, 'ar', 'menus', 'language-picker.langs.xog_UG', 'سوجا (أوغندا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1589, 0, 'ar', 'menus', 'language-picker.langs.xog', 'سوجا', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1590, 0, 'ar', 'menus', 'language-picker.langs.so_DJ', 'صومالي (جيبوتي)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1591, 0, 'ar', 'menus', 'language-picker.langs.so_ET', 'صومالي (إثيوبيا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1592, 0, 'ar', 'menus', 'language-picker.langs.so_KE', 'صومالي (كينيا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1593, 0, 'ar', 'menus', 'language-picker.langs.so_SO', 'صومالي (الصومال)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1594, 0, 'ar', 'menus', 'language-picker.langs.so', 'الصومالية', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1595, 0, 'ar', 'menus', 'language-picker.langs.es_AR', 'الإسبانية (الأرجنتين)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1596, 0, 'ar', 'menus', 'language-picker.langs.es_BO', 'الإسبانية (بوليفيا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1597, 0, 'ar', 'menus', 'language-picker.langs.es_CL', 'الإسبانية (تشيلي)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1598, 0, 'ar', 'menus', 'language-picker.langs.es_CO', 'الإسبانية (كولومبيا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1599, 0, 'ar', 'menus', 'language-picker.langs.es_CR', 'الإسبانية (كوستاريكا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1600, 0, 'ar', 'menus', 'language-picker.langs.es_DO', 'الإسبانية (جمهورية الدومينيكان)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1601, 0, 'ar', 'menus', 'language-picker.langs.es_EC', 'الإسبانية (الإكوادور)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1602, 0, 'ar', 'menus', 'language-picker.langs.es_SV', 'الأسبانية (السلفادور)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1603, 0, 'ar', 'menus', 'language-picker.langs.es_GQ', 'الإسبانية (غينيا الاستوائية)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1604, 0, 'ar', 'menus', 'language-picker.langs.es_GT', 'الإسبانية (غواتيمالا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1605, 0, 'ar', 'menus', 'language-picker.langs.es_HN', 'الإسبانية (هندوراس)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1606, 0, 'ar', 'menus', 'language-picker.langs.es_419', 'الإسبانية (أمريكا اللاتينية)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1607, 0, 'ar', 'menus', 'language-picker.langs.es_MX', 'الإسبانية (المكسيك)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1608, 0, 'ar', 'menus', 'language-picker.langs.es_NI', 'الإسبانية (نيكاراغوا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1609, 0, 'ar', 'menus', 'language-picker.langs.es_PA', 'الإسبانية (بنما)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1610, 0, 'ar', 'menus', 'language-picker.langs.es_PY', 'الإسبانية (باراجواي)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1611, 0, 'ar', 'menus', 'language-picker.langs.es_PE', 'الإسبانية (بيرو)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1612, 0, 'ar', 'menus', 'language-picker.langs.es_PR', 'الإسبانية (بورتوريكو)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1613, 0, 'ar', 'menus', 'language-picker.langs.es_ES', 'الإسبانية (إسبانيا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1614, 0, 'ar', 'menus', 'language-picker.langs.es_US', 'الإسبانية (الولايات المتحدة)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1615, 0, 'ar', 'menus', 'language-picker.langs.es_UY', 'الإسبانية (أوروغواي)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1616, 0, 'ar', 'menus', 'language-picker.langs.es_VE', 'الإسبانية (فنزويلا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1617, 0, 'ar', 'menus', 'language-picker.langs.sw_KE', 'السواحيلية (كينيا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1618, 0, 'ar', 'menus', 'language-picker.langs.sw_TZ', 'السواحيلية (تنزانيا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1619, 0, 'ar', 'menus', 'language-picker.langs.sw', 'السواحلية', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1620, 0, 'ar', 'menus', 'language-picker.langs.sv_FI', 'السويدية (فنلندا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1621, 0, 'ar', 'menus', 'language-picker.langs.sv_SE', 'السويدية (السويد)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1622, 0, 'ar', 'menus', 'language-picker.langs.gsw_CH', 'الألمانية السويسرية (سويسرا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1623, 0, 'ar', 'menus', 'language-picker.langs.gsw', 'الألمانية السويسرية', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1624, 0, 'ar', 'menus', 'language-picker.langs.shi_Latn', 'تشلحيت (لاتينية)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1625, 0, 'ar', 'menus', 'language-picker.langs.shi_Latn_MA', 'تشلحيت (اللاتينية ، المغرب)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1626, 0, 'ar', 'menus', 'language-picker.langs.shi_Tfng', 'تشلحيت (تيفيناغ)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1627, 0, 'ar', 'menus', 'language-picker.langs.shi_Tfng_MA', 'تشلحيت (تيفيناغ ، المغرب)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1628, 0, 'ar', 'menus', 'language-picker.langs.shi', 'تشلحيت', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1629, 0, 'ar', 'menus', 'language-picker.langs.dav_KE', 'تايتا (كينيا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1630, 0, 'ar', 'menus', 'language-picker.langs.dav', 'تايتا', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1631, 0, 'ar', 'menus', 'language-picker.langs.ta_IN', 'التاميل (الهند)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1632, 0, 'ar', 'menus', 'language-picker.langs.ta_LK', 'تاميل (سريلانكا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1633, 0, 'ar', 'menus', 'language-picker.langs.ta', 'التاميل', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1634, 0, 'ar', 'menus', 'language-picker.langs.te_IN', 'التيلجو (الهند)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1635, 0, 'ar', 'menus', 'language-picker.langs.te', 'التيلجو', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1636, 0, 'ar', 'menus', 'language-picker.langs.teo_KE', 'تيسو (كينيا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1637, 0, 'ar', 'menus', 'language-picker.langs.teo_UG', 'تيسو (أوغندا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1638, 0, 'ar', 'menus', 'language-picker.langs.teo', 'تيسو', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1639, 0, 'ar', 'menus', 'language-picker.langs.th_TH', 'التايلاندية (تايلاند)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1640, 0, 'ar', 'menus', 'language-picker.langs.bo_CN', 'التبتية (الصين)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1641, 0, 'ar', 'menus', 'language-picker.langs.bo_IN', 'التبتية (الهند)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1642, 0, 'ar', 'menus', 'language-picker.langs.bo', 'التبت', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1643, 0, 'ar', 'menus', 'language-picker.langs.ti_ER', 'تيغرينيا (إريتريا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1644, 0, 'ar', 'menus', 'language-picker.langs.ti_ET', 'تيغرينيا (إثيوبيا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1645, 0, 'ar', 'menus', 'language-picker.langs.ti', 'التيغرينية', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1646, 0, 'ar', 'menus', 'language-picker.langs.to_TO', 'تونغا (تونغا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1647, 0, 'ar', 'menus', 'language-picker.langs.to', 'تونغا', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1648, 0, 'ar', 'menus', 'language-picker.langs.tr_TR', 'التركية (تركيا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1649, 0, 'ar', 'menus', 'language-picker.langs.uk_UA', 'الأوكرانية (أوكرانيا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1650, 0, 'ar', 'menus', 'language-picker.langs.uk', 'الأوكراني', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1651, 0, 'ar', 'menus', 'language-picker.langs.ur_IN', 'الأردية (الهند)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1652, 0, 'ar', 'menus', 'language-picker.langs.ur_PK', 'الأردية (باكستان)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1653, 0, 'ar', 'menus', 'language-picker.langs.ur', 'الأردية', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1654, 0, 'ar', 'menus', 'language-picker.langs.uz_Arab', 'الأوزبكية (العربية)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1655, 0, 'ar', 'menus', 'language-picker.langs.uz_Arab_AF', 'الأوزبكية (العربية ، أفغانستان)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1656, 0, 'ar', 'menus', 'language-picker.langs.uz_Cyrl', 'الأوزبكية (السيريلية)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1657, 0, 'ar', 'menus', 'language-picker.langs.uz_Cyrl_UZ', 'الأوزبكية (السيريلية ، أوزبكستان)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1658, 0, 'ar', 'menus', 'language-picker.langs.uz_Latn', 'الأوزبكية (اللاتينية)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1659, 0, 'ar', 'menus', 'language-picker.langs.uz_Latn_UZ', 'الأوزبكية (اللاتينية ، أوزبكستان)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1660, 0, 'ar', 'menus', 'language-picker.langs.uz', 'الأوزبكي', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1661, 0, 'ar', 'menus', 'language-picker.langs.vi_VN', 'الفيتنامية (فيتنام)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1662, 0, 'ar', 'menus', 'language-picker.langs.vi', 'الفيتنامية', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1663, 0, 'ar', 'menus', 'language-picker.langs.vun_TZ', 'فونجو (تنزانيا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1664, 0, 'ar', 'menus', 'language-picker.langs.vun', 'Vunjo', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1665, 0, 'ar', 'menus', 'language-picker.langs.cy_GB', 'الويلزية (المملكة المتحدة)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1666, 0, 'ar', 'menus', 'language-picker.langs.cy', 'تهرب من دفع الرهان', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1667, 0, 'ar', 'menus', 'language-picker.langs.yo_NG', 'يوروبا (نيجيريا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1668, 0, 'ar', 'menus', 'language-picker.langs.yo', 'اليوروبا', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1669, 0, 'ar', 'menus', 'language-picker.langs.zu_ZA', 'الزولو (جنوب إفريقيا)', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1670, 0, 'ar', 'menus', 'language-picker.langs.zu', 'الزولو', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1671, 0, 'ar', 'menus', 'language-picker.language', 'لغة', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1672, 0, 'ar', 'navs', 'frontend.contact', 'اتصل', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1673, 0, 'ar', 'navs', 'frontend.courses', 'الدورات', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1674, 0, 'ar', 'navs', 'frontend.dashboard', 'لوحة القيادة', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1675, 0, 'ar', 'navs', 'frontend.forums', 'المنتديات', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1676, 0, 'ar', 'navs', 'frontend.login', 'تسجيل الدخول', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1677, 0, 'ar', 'navs', 'frontend.macros', 'وحدات الماكرو', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1678, 0, 'ar', 'navs', 'frontend.register', 'تسجيل', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1679, 0, 'ar', 'navs', 'frontend.user.account', 'حسابي', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1680, 0, 'ar', 'navs', 'frontend.user.administration', 'الادارة', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1681, 0, 'ar', 'navs', 'frontend.user.change_password', 'غير كلمة السر', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1682, 0, 'ar', 'navs', 'frontend.user.my_information', 'معلوماتي', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1683, 0, 'ar', 'navs', 'frontend.user.profile', 'الملف الشخصي', '2019-09-12 23:34:08', '2020-05-14 12:20:12'), (1684, 0, 'ar', 'navs', 'general.home', 'الصفحة الرئيسية', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1685, 0, 'ar', 'navs', 'general.login', 'تسجيل الدخول', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1686, 0, 'ar', 'navs', 'general.logout', 'الخروج', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1687, 0, 'ar', 'navs', 'general.account', 'الحساب', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1688, 0, 'ar', 'navs', 'general.messages', 'رسائل', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1689, 0, 'ar', 'navs', 'general.no_messages', 'لا توجد رسائل', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1690, 0, 'ar', 'navs', 'general.profile', 'الملف الشخصي', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1691, 0, 'ar', 'pagination', 'next', 'التالي & raquo؛', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1692, 0, 'ar', 'pagination', 'previous', 'وقوو]؛ سابق', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1693, 0, 'ar', 'passwords', 'password', 'يجب أن تتكون كلمات المرور من ستة أحرف على الأقل وأن تطابق التأكيد.', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1694, 0, 'ar', 'passwords', 'reset', 'تم إعادة تعيين كلمة المرور الخاصة بك!', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1695, 0, 'ar', 'passwords', 'sent', 'لقد أرسلنا رابط إعادة تعيين كلمة المرور عبر البريد الإلكتروني!', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1696, 0, 'ar', 'passwords', 'token', 'الرمز المميز لإعادة تعيين كلمة المرور غير صالح.', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1697, 0, 'ar', 'passwords', 'user', 'لا يمكننا العثور على مستخدم يحمل عنوان البريد الإلكتروني هذا.', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1698, 0, 'ar', 'roles', 'administrator', 'مدير', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1699, 0, 'ar', 'roles', 'user', 'المستعمل', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1700, 0, 'ar', 'strings', 'backend.access.users.delete_user_confirm', 'هل تريد بالتأكيد حذف هذا المستخدم نهائيًا؟ في أي مكان في التطبيق يشير إلى معرف المستخدم هذا ، من المحتمل أن يكون الخطأ المضي قدما على مسؤوليتك الخاصة. هذا لا يمكن التراجع عنها.', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1701, 0, 'ar', 'strings', 'backend.access.users.if_confirmed_off', '(إذا تم تأكيد إيقاف التشغيل)', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1702, 0, 'ar', 'strings', 'backend.access.users.no_deactivated', 'لا يوجد مستخدمين غير نشطين.', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1703, 0, 'ar', 'strings', 'backend.access.users.no_deleted', 'لا يوجد مستخدمين محذوفين.', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1704, 0, 'ar', 'strings', 'backend.access.users.restore_user_confirm', 'استعادة هذا المستخدم إلى حالته الأصلية؟', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1705, 0, 'ar', 'strings', 'backend.dashboard.my_courses', 'دوراتي', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1706, 0, 'ar', 'strings', 'backend.dashboard.title', 'لوحة القيادة', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1707, 0, 'ar', 'strings', 'backend.dashboard.welcome', 'أهلا بك', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1708, 0, 'ar', 'strings', 'backend.general.actions', 'أفعال', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1709, 0, 'ar', 'strings', 'backend.general.all', 'الكل', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1710, 0, 'ar', 'strings', 'backend.general.all_rights_reserved', 'كل الحقوق محفوظة.', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1711, 0, 'ar', 'strings', 'backend.general.app_add', 'إضافة', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1712, 0, 'ar', 'strings', 'backend.general.app_add_new', 'اضف جديد', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1713, 0, 'ar', 'strings', 'backend.general.app_are_you_sure', 'هل أنت واثق؟', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1714, 0, 'ar', 'strings', 'backend.general.app_back_to_list', 'الرجوع للقائمة', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1715, 0, 'ar', 'strings', 'backend.general.app_create', 'خلق', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1716, 0, 'ar', 'strings', 'backend.general.app_dashboard', 'لوحة القيادة', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1717, 0, 'ar', 'strings', 'backend.general.app_delete', 'حذف', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1718, 0, 'ar', 'strings', 'backend.general.app_edit', 'تصحيح', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1719, 0, 'ar', 'strings', 'backend.general.app_list', 'قائمة', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1720, 0, 'ar', 'strings', 'backend.general.app_logout', 'الخروج', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1721, 0, 'ar', 'strings', 'backend.general.app_no_entries_in_table', 'لا توجد إدخالات في الجدول', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1722, 0, 'ar', 'strings', 'backend.general.app_permadel', 'حذف بشكل دائم', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1723, 0, 'ar', 'strings', 'backend.general.app_restore', 'استعادة', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1724, 0, 'ar', 'strings', 'backend.general.app_save', 'حفظ', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1725, 0, 'ar', 'strings', 'backend.general.app_update', 'تحديث', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1726, 0, 'ar', 'strings', 'backend.general.app_view', 'رأي', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1727, 0, 'ar', 'strings', 'backend.general.are_you_sure', 'هل انت متأكد من أنك تريد أن تفعل هذا؟', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1728, 0, 'ar', 'strings', 'backend.general.boilerplate_link', 'استوديو JThemes', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1729, 0, 'ar', 'strings', 'backend.general.continue', 'استمر', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1730, 0, 'ar', 'strings', 'backend.general.custom_controller_index', 'مؤشر تحكم مخصص.', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1731, 0, 'ar', 'strings', 'backend.general.member_since', 'عضو منذ', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1732, 0, 'ar', 'strings', 'backend.general.minutes', 'الدقائق', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1733, 0, 'ar', 'strings', 'backend.general.search_placeholder', 'بحث...', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1734, 0, 'ar', 'strings', 'backend.general.see_all.messages', 'رؤية كل الرسائل', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1735, 0, 'ar', 'strings', 'backend.general.see_all.notifications', 'عرض الكل', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1736, 0, 'ar', 'strings', 'backend.general.see_all.tasks', 'عرض جميع المهام', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1737, 0, 'ar', 'strings', 'backend.general.status.offline', 'غير متصل على الانترنت', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1738, 0, 'ar', 'strings', 'backend.general.status.online', 'عبر الانترنت', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1739, 0, 'ar', 'strings', 'backend.general.timeout', 'تم تسجيل خروجك تلقائيًا لأسباب أمنية نظرًا لعدم وجود نشاط لك فيها', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1740, 0, 'ar', 'strings', 'backend.general.trashed', 'الحضيض', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1741, 0, 'ar', 'strings', 'backend.general.you_have.messages', '{0} ليس لديك رسائل | {1} لديك رسالة واحدة | [2 ، Inf] لديك: رسائل عدد', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1742, 0, 'ar', 'strings', 'backend.general.you_have.notifications', '{0} ليس لديك إعلامات | {1} لديك إشعار واحد | [2 ، Inf] لديك: إعلامات الأرقام', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1743, 0, 'ar', 'strings', 'backend.general.you_have.tasks', '{0} ليس لديك مهام | {1} لديك مهمة واحدة | [2 ، Inf] لديك: رقم المهام', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1744, 0, 'ar', 'strings', 'backend.menu_manager.Category', 'الفئة', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1745, 0, 'ar', 'strings', 'backend.menu_manager.add_to_menu', 'أضف إلى القائمة', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1746, 0, 'ar', 'strings', 'backend.menu_manager.assigned_menu', 'القائمة المخصصة', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1747, 0, 'ar', 'strings', 'backend.menu_manager.auto_add_pages', 'إضافة صفحات السيارات', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1748, 0, 'ar', 'strings', 'backend.menu_manager.auto_add_pages_desc', 'أضف صفحات المستوى الأعلى الجديدة تلقائيًا إلى هذه القائمة', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1749, 0, 'ar', 'strings', 'backend.menu_manager.cancel', 'إلغاء', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1750, 0, 'ar', 'strings', 'backend.menu_manager.categories', 'الاقسام', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1751, 0, 'ar', 'strings', 'backend.menu_manager.choose', 'أختر', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1752, 0, 'ar', 'strings', 'backend.menu_manager.class', 'فئة CSS (اختياري)', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1753, 0, 'ar', 'strings', 'backend.menu_manager.create_menu', 'إنشاء القائمة', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1754, 0, 'ar', 'strings', 'backend.menu_manager.create_new', 'إنشاء قائمة جديدة', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1755, 0, 'ar', 'strings', 'backend.menu_manager.currently', 'تم التعيين حاليًا على', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1756, 0, 'ar', 'strings', 'backend.menu_manager.custom_link', 'رابط مخصص', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1757, 0, 'ar', 'strings', 'backend.menu_manager.delete', 'حذف', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1758, 0, 'ar', 'strings', 'backend.menu_manager.delete_menu', 'حذف القائمة', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1759, 0, 'ar', 'strings', 'backend.menu_manager.display', 'عرض', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1760, 0, 'ar', 'strings', 'backend.menu_manager.drag_instruction_1', 'ضع كل عنصر بالترتيب الذي تفضله. انقر على السهم على يمين العنصر لعرض المزيد من خيارات التكوين.', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1761, 0, 'ar', 'strings', 'backend.menu_manager.drag_instruction_2', 'الرجاء إدخال الاسم وحدد زر \"إنشاء قائمة\"', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1762, 0, 'ar', 'strings', 'backend.menu_manager.edit', 'تصحيح', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1763, 0, 'ar', 'strings', 'backend.menu_manager.edit_menus', 'تحرير القوائم', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1764, 0, 'ar', 'strings', 'backend.menu_manager.footer_menu', 'القائمة تذييل', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1765, 0, 'ar', 'strings', 'backend.menu_manager.label', 'ضع الكلمة المناسبة', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1766, 0, 'ar', 'strings', 'backend.menu_manager.link', 'حلقة الوصل', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1767, 0, 'ar', 'strings', 'backend.menu_manager.locations', 'مواقع', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1768, 0, 'ar', 'strings', 'backend.menu_manager.menu_creation', 'إنشاء القائمة', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1769, 0, 'ar', 'strings', 'backend.menu_manager.menu_settings', 'إعدادات القائمة', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1770, 0, 'ar', 'strings', 'backend.menu_manager.menu_structure', 'هيكل القائمة', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1771, 0, 'ar', 'strings', 'backend.menu_manager.move', 'نقل', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1772, 0, 'ar', 'strings', 'backend.menu_manager.move_down', 'تحرك لأسفل', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1773, 0, 'ar', 'strings', 'backend.menu_manager.move_left', 'تحرك يسارا', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1774, 0, 'ar', 'strings', 'backend.menu_manager.move_right', 'تحرك يمينا', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1775, 0, 'ar', 'strings', 'backend.menu_manager.move_up', 'تحرك', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1776, 0, 'ar', 'strings', 'backend.menu_manager.name', 'اسم', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1777, 0, 'ar', 'strings', 'backend.menu_manager.or', 'أو', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1778, 0, 'ar', 'strings', 'backend.menu_manager.page', 'صفحة', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1779, 0, 'ar', 'strings', 'backend.menu_manager.pages', 'صفحات', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1780, 0, 'ar', 'strings', 'backend.menu_manager.post', 'بريد', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1781, 0, 'ar', 'strings', 'backend.menu_manager.posts', 'المشاركات', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1782, 0, 'ar', 'strings', 'backend.menu_manager.save_changes', 'حفظ التغييرات', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1783, 0, 'ar', 'strings', 'backend.menu_manager.save_menu', 'حفظ القائمة', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1784, 0, 'ar', 'strings', 'backend.menu_manager.screen_reader_text', 'اضغط على رجوع أو أدخل للتوسيع', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1785, 0, 'ar', 'strings', 'backend.menu_manager.select_all', 'اختر الكل', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1786, 0, 'ar', 'strings', 'backend.menu_manager.select_to_edit', 'حدد القائمة التي تريد تحريرها', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1787, 0, 'ar', 'strings', 'backend.menu_manager.sub_menu', 'القائمة الفرعية', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1788, 0, 'ar', 'strings', 'backend.menu_manager.theme_location', 'موضوع الموقع', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1789, 0, 'ar', 'strings', 'backend.menu_manager.title', 'مدير القائمة', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1790, 0, 'ar', 'strings', 'backend.menu_manager.top', 'أعلى', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1791, 0, 'ar', 'strings', 'backend.menu_manager.top_menu', 'القائمة العلوية', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1792, 0, 'ar', 'strings', 'backend.menu_manager.update_item', 'تحديث البند', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1793, 0, 'ar', 'strings', 'backend.menu_manager.url', 'URL', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1794, 0, 'ar', 'strings', 'backend.menu_manager.welcome', 'أهلا بك', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1795, 0, 'ar', 'strings', 'backend.search.empty', 'يرجى إدخال مصطلح البحث.', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1796, 0, 'ar', 'strings', 'backend.search.incomplete', 'يجب عليك كتابة منطق البحث الخاص بك لهذا النظام.', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1797, 0, 'ar', 'strings', 'backend.search.results', 'نتائج البحث عن: الاستعلام', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1798, 0, 'ar', 'strings', 'backend.search.title', 'نتائج البحث', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1799, 0, 'ar', 'strings', 'backend.welcome', 'مرحبًا بك في لوحة المعلومات', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1800, 0, 'ar', 'strings', 'emails.auth.account_confirmed', 'تم تأكيد حسابك.', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1801, 0, 'ar', 'strings', 'emails.auth.click_to_confirm', 'انقر هنا لتأكيد حسابك:', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1802, 0, 'ar', 'strings', 'emails.auth.error', 'يصيح!', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1803, 0, 'ar', 'strings', 'emails.auth.greeting', 'مرحبا!', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1804, 0, 'ar', 'strings', 'emails.auth.password_cause_of_email', 'أنت تتلقى هذا البريد الإلكتروني لأننا تلقينا طلب إعادة تعيين كلمة المرور لحسابك.', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1805, 0, 'ar', 'strings', 'emails.auth.password_if_not_requested', 'إذا لم تطلب إعادة تعيين كلمة المرور ، فلا يلزم اتخاذ أي إجراء آخر.', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1806, 0, 'ar', 'strings', 'emails.auth.password_reset_subject', 'إعادة تعيين كلمة المرور', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1807, 0, 'ar', 'strings', 'emails.auth.regards', 'مع تحياتي،', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1808, 0, 'ar', 'strings', 'emails.auth.reset_password', 'انقر هنا لإعادة تعيين كلمة المرور الخاصة بك', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1809, 0, 'ar', 'strings', 'emails.auth.thank_you_for_using_app', 'شكرا لك لاستخدام التطبيق لدينا!', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1810, 0, 'ar', 'strings', 'emails.auth.trouble_clicking_button', 'إذا كنت تواجه مشكلة في النقر فوق الزر \": action_text\" ، فانسخ والصق عنوان URL أدناه في متصفح الويب الخاص بك:', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1811, 0, 'ar', 'strings', 'emails.contact.email_body_title', 'لديك طلب نموذج اتصال جديد: فيما يلي التفاصيل:', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1812, 0, 'ar', 'strings', 'emails.contact.subject', 'جديد: app_name تقديم نموذج الاتصال!', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1813, 0, 'ar', 'strings', 'emails.offline_order.subject', 'بخصوص طلبك الأخير على: app_name', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1814, 0, 'ar', 'strings', 'frontend.general.joined', 'انضم', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1815, 0, 'ar', 'strings', 'frontend.test', 'اختبار', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1816, 0, 'ar', 'strings', 'frontend.tests.based_on.permission', 'بناء على إذن -', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1817, 0, 'ar', 'strings', 'frontend.tests.based_on.role', 'الدور القائم -', '2019-09-12 23:34:09', '2020-05-14 12:20:12'), (1818, 0, 'ar', 'strings', 'frontend.tests.js_injected_from_controller', 'جافا سكريبت حقن من وحدة تحكم', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1819, 0, 'ar', 'strings', 'frontend.tests.using_access_helper.array_permissions', 'استخدام مساعد الوصول مع مجموعة من أسماء الإذن أو المعرّف حيث يجب على المستخدم امتلاك كل شيء.', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1820, 0, 'ar', 'strings', 'frontend.tests.using_access_helper.array_permissions_not', 'استخدام مساعد الوصول مع مجموعة من أسماء التصاريح أو المعرفات حيث لا يتعين على المستخدم امتلاك كل شيء.', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1821, 0, 'ar', 'strings', 'frontend.tests.using_access_helper.array_roles', 'استخدام مساعد الوصول مع مجموعة من أسماء الأدوار أو معرفات حيث يتعين على المستخدم امتلاك كل شيء.', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1822, 0, 'ar', 'strings', 'frontend.tests.using_access_helper.array_roles_not', 'استخدام مساعد الوصول مع مجموعة من أسماء الأدوار أو معرفات حيث لا يتعين على المستخدم امتلاك الكل.', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1823, 0, 'ar', 'strings', 'frontend.tests.using_access_helper.permission_id', 'باستخدام مساعد الوصول مع معرف إذن', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1824, 0, 'ar', 'strings', 'frontend.tests.using_access_helper.permission_name', 'باستخدام مساعد الوصول مع اسم إذن', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1825, 0, 'ar', 'strings', 'frontend.tests.using_access_helper.role_id', 'باستخدام مساعد الوصول مع معرف الدور', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1826, 0, 'ar', 'strings', 'frontend.tests.using_access_helper.role_name', 'باستخدام مساعد الوصول مع اسم الدور', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1827, 0, 'ar', 'strings', 'frontend.tests.you_can_see_because_permission', 'يمكنك رؤية هذا لأنك تملك إذن \": إذن\"!', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1828, 0, 'ar', 'strings', 'frontend.tests.you_can_see_because', 'يمكنك أن ترى هذا لأن لديك دور \": دور\"', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1829, 0, 'ar', 'strings', 'frontend.tests.view_console_it_works', 'عرض وحدة التحكم ، سترى \"إنه يعمل!\" الذي يأتي من فهرس FrontendController @', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1830, 0, 'ar', 'strings', 'frontend.tests.using_blade_extensions', 'باستخدام ملحقات النصل', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1831, 0, 'ar', 'strings', 'frontend.welcome_to', 'مرحبا بكم في: المكان', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1832, 0, 'ar', 'strings', 'frontend.user.profile_updated', 'تم تحديث الملف الشخصي بنجاح.', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1833, 0, 'ar', 'strings', 'frontend.user.password_updated', 'تم تحديث كلمة المرور بنجاح.', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1834, 0, 'ar', 'strings', 'frontend.user.change_email_notice', 'إذا قمت بتغيير بريدك الإلكتروني ، فسوف يتم تسجيل خروجك حتى تؤكد عنوان بريدك الإلكتروني الجديد.', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1835, 0, 'ar', 'strings', 'frontend.user.email_changed_notice', 'يجب تأكيد عنوان بريدك الإلكتروني الجديد قبل أن تتمكن من تسجيل الدخول مرة أخرى.', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1836, 0, 'ar', 'validation', 'accepted', 'يجب قبول السمة:', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1837, 0, 'ar', 'validation', 'active_url', 'السمة: ليست عنوان URL صالحًا.', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1838, 0, 'ar', 'validation', 'after', 'يجب أن تكون السمة: تاريخ بعد: تاريخ.', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1839, 0, 'ar', 'validation', 'after_or_equal', 'يجب أن تكون السمة: تاريخ بعد أو يساوي: تاريخ.', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1840, 0, 'ar', 'validation', 'alpha', 'قد تحتوي السمة على أحرف فقط.', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1841, 0, 'ar', 'validation', 'alpha_dash', ': قد تحتوي السمة على أحرف وأرقام وشرطات وشرطات سفلية فقط.', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1842, 0, 'ar', 'validation', 'alpha_num', 'قد تحتوي السمة على أحرف وأرقام فقط.', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1843, 0, 'ar', 'validation', 'array', 'يجب أن تكون السمة صفيف.', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1844, 0, 'ar', 'validation', 'attributes.backend.access.permissions.associated_roles', 'الأدوار المرتبطة', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1845, 0, 'ar', 'validation', 'attributes.backend.access.permissions.dependencies', 'تبعيات', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1846, 0, 'ar', 'validation', 'attributes.backend.access.permissions.display_name', 'اسم العرض', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1847, 0, 'ar', 'validation', 'attributes.backend.access.permissions.first_name', 'الاسم الاول', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1848, 0, 'ar', 'validation', 'attributes.backend.access.permissions.group', 'مجموعة', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1849, 0, 'ar', 'validation', 'attributes.backend.access.permissions.group_sort', 'ترتيب المجموعة', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1850, 0, 'ar', 'validation', 'attributes.backend.access.permissions.groups.name', 'أسم المجموعة', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1851, 0, 'ar', 'validation', 'attributes.backend.access.permissions.last_name', 'الكنية', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1852, 0, 'ar', 'validation', 'attributes.backend.access.permissions.name', 'اسم', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1853, 0, 'ar', 'validation', 'attributes.backend.access.permissions.system', 'النظام', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1854, 0, 'ar', 'validation', 'attributes.backend.access.roles.associated_permissions', 'أذونات المرتبطة', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1855, 0, 'ar', 'validation', 'attributes.backend.access.roles.name', 'اسم', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1856, 0, 'ar', 'validation', 'attributes.backend.access.roles.sort', 'فرز', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1857, 0, 'ar', 'validation', 'attributes.backend.access.users.active', 'نشيط', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1858, 0, 'ar', 'validation', 'attributes.backend.access.users.associated_roles', 'الأدوار المرتبطة', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1859, 0, 'ar', 'validation', 'attributes.backend.access.users.confirmed', 'تم تأكيد', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1860, 0, 'ar', 'validation', 'attributes.backend.access.users.email', 'عنوان بريد الكتروني', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1861, 0, 'ar', 'validation', 'attributes.backend.access.users.first_name', 'الاسم الاول', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1862, 0, 'ar', 'validation', 'attributes.backend.access.users.language', 'لغة', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1863, 0, 'ar', 'validation', 'attributes.backend.access.users.last_name', 'الكنية', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1864, 0, 'ar', 'validation', 'attributes.backend.access.users.name', 'اسم', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1865, 0, 'ar', 'validation', 'attributes.backend.access.users.other_permissions', 'أذونات أخرى', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1866, 0, 'ar', 'validation', 'attributes.backend.access.users.password', 'كلمه السر', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1867, 0, 'ar', 'validation', 'attributes.backend.access.users.password_confirmation', 'تأكيد كلمة المرور', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1868, 0, 'ar', 'validation', 'attributes.backend.access.users.send_confirmation_email', 'إرسال تأكيد البريد الإلكتروني', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1869, 0, 'ar', 'validation', 'attributes.backend.access.users.timezone', 'وحدة زمنية', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1870, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.app_locale', 'لغة التطبيق', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1871, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.app_name', 'اسم التطبيق', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1872, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.app_timezone', 'التطبيق المنطقة الزمنية', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1873, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.app_url', 'عنوان URL للتطبيق', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1874, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.captcha_site_key', 'مفتاح التحقق', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1875, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.captcha_site_secret', 'كلمة التحقق السرية', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1876, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.captcha_status', 'وضع كلمة التحقق', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1877, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.change_email', 'تغيير الايميل', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1878, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.confirm_email', 'تأكيد عنوان البريد الإلكتروني', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1879, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.enable_registration', 'تمكين التسجيل', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1880, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.font_color', 'لون الخط', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1881, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.google_analytics', 'جوجل تحليلات مدونة', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1882, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.homepage', 'اختر الصفحة الرئيسية', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1883, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.layout_type', 'نوع التخطيط', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1884, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.mail_driver', 'سائق البريد', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1885, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.mail_from_address', 'البريد من العنوان', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1886, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.mail_from_name', 'البريد من الاسم', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1887, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.mail_host', 'مضيف البريد', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1888, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.mail_password', 'بريد كلمة المرور', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1889, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.mail_port', 'ميناء البريد', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1890, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.mail_username', 'البريد اسم المستخدم', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1891, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.password_expires_days', 'كلمة المرور تنتهي أيام', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1892, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.password_history', 'كلمة السر التاريخ', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1893, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.requires_approval', 'يتطلب موافقة', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1894, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.retest_status', 'إعادة الاختبار', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1895, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.theme_layout', 'تخطيط الموضوع', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1896, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.lesson_timer', 'الدرس الموقت', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1897, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.one_signal_push_notification', 'إعداد OneSignal', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1898, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.onesignal_code', 'الصق شفرة البرنامج النصي OneSignal هنا', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1899, 0, 'ar', 'validation', 'attributes.backend.settings.general_settings.show_offers', 'عرض صفحة العروض', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1900, 0, 'ar', 'validation', 'attributes.backend.settings.social_settings.bitbucket.client_id', 'معرف العميل', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1901, 0, 'ar', 'validation', 'attributes.backend.settings.social_settings.bitbucket.client_secret', 'سر العميل', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1902, 0, 'ar', 'validation', 'attributes.backend.settings.social_settings.bitbucket.redirect', 'إعادة توجيه URL', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1903, 0, 'ar', 'validation', 'attributes.backend.settings.social_settings.bitbucket.label', 'Bitbucket حالة تسجيل الدخول', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1904, 0, 'ar', 'validation', 'attributes.backend.settings.social_settings.facebook.client_id', 'معرف العميل', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1905, 0, 'ar', 'validation', 'attributes.backend.settings.social_settings.facebook.client_secret', 'سر العميل', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1906, 0, 'ar', 'validation', 'attributes.backend.settings.social_settings.facebook.redirect', 'إعادة توجيه URL', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1907, 0, 'ar', 'validation', 'attributes.backend.settings.social_settings.facebook.label', 'فيسبوك حالة تسجيل الدخول', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1908, 0, 'ar', 'validation', 'attributes.backend.settings.social_settings.github.client_id', 'معرف العميل', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1909, 0, 'ar', 'validation', 'attributes.backend.settings.social_settings.github.client_secret', 'سر العميل', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1910, 0, 'ar', 'validation', 'attributes.backend.settings.social_settings.github.redirect', 'إعادة توجيه URL', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1911, 0, 'ar', 'validation', 'attributes.backend.settings.social_settings.github.label', 'جيثب حالة تسجيل الدخول', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1912, 0, 'ar', 'validation', 'attributes.backend.settings.social_settings.google.client_id', 'معرف العميل', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1913, 0, 'ar', 'validation', 'attributes.backend.settings.social_settings.google.client_secret', 'سر العميل', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1914, 0, 'ar', 'validation', 'attributes.backend.settings.social_settings.google.label', 'حالة تسجيل الدخول إلى Google', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1915, 0, 'ar', 'validation', 'attributes.backend.settings.social_settings.google.redirect', 'إعادة توجيه URL', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1916, 0, 'ar', 'validation', 'attributes.backend.settings.social_settings.linkedin.client_id', 'معرف العميل', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1917, 0, 'ar', 'validation', 'attributes.backend.settings.social_settings.linkedin.client_secret', 'سر العميل', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1918, 0, 'ar', 'validation', 'attributes.backend.settings.social_settings.linkedin.label', 'LinkedIn حالة تسجيل الدخول', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1919, 0, 'ar', 'validation', 'attributes.backend.settings.social_settings.linkedin.redirect', 'إعادة توجيه URL', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1920, 0, 'ar', 'validation', 'attributes.backend.settings.social_settings.twitter.client_id', 'معرف العميل', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1921, 0, 'ar', 'validation', 'attributes.backend.settings.social_settings.twitter.client_secret', 'سر العميل', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1922, 0, 'ar', 'validation', 'attributes.backend.settings.social_settings.twitter.label', 'حالة تسجيل الدخول إلى تويتر', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1923, 0, 'ar', 'validation', 'attributes.backend.settings.social_settings.twitter.redirect', 'إعادة توجيه URL', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1924, 0, 'ar', 'validation', 'attributes.frontend.avatar', 'الصورة الرمزية الموقع', '2019-09-12 23:34:10', '2020-05-14 12:20:12'); INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES (1925, 0, 'ar', 'validation', 'attributes.frontend.captcha', 'كلمة التحقق المطلوبة', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1926, 0, 'ar', 'validation', 'attributes.frontend.email', 'عنوان بريد الكتروني', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1927, 0, 'ar', 'validation', 'attributes.frontend.first_name', 'الاسم الاول', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1928, 0, 'ar', 'validation', 'attributes.frontend.gravatar', 'غرفتر', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1929, 0, 'ar', 'validation', 'attributes.frontend.language', 'لغة', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1930, 0, 'ar', 'validation', 'attributes.frontend.last_name', 'الكنية', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1931, 0, 'ar', 'validation', 'attributes.frontend.message', 'رسالة', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1932, 0, 'ar', 'validation', 'attributes.frontend.name', 'الاسم الكامل', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1933, 0, 'ar', 'validation', 'attributes.frontend.new_password', 'كلمة السر الجديدة', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1934, 0, 'ar', 'validation', 'attributes.frontend.new_password_confirmation', 'تأكيد كلمة السر الجديدة', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1935, 0, 'ar', 'validation', 'attributes.frontend.old_password', 'كلمة المرور القديمة', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1936, 0, 'ar', 'validation', 'attributes.frontend.password', 'كلمه السر', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1937, 0, 'ar', 'validation', 'attributes.frontend.password_confirmation', 'تأكيد كلمة المرور', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1938, 0, 'ar', 'validation', 'attributes.frontend.phone', 'هاتف', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1939, 0, 'ar', 'validation', 'attributes.frontend.timezone', 'وحدة زمنية', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1940, 0, 'ar', 'validation', 'attributes.frontend.upload', 'رفع', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1941, 0, 'ar', 'validation', 'attributes.frontend.female', 'إناثا', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1942, 0, 'ar', 'validation', 'attributes.frontend.male', 'الذكر', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1943, 0, 'ar', 'validation', 'attributes.frontend.other', 'آخر', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1944, 0, 'ar', 'validation', 'before', 'يجب أن تكون السمة: تاريخ قبل: تاريخ.', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1945, 0, 'ar', 'validation', 'before_or_equal', 'يجب أن تكون السمة: تاريخ قبل أو تساوي: تاريخ.', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1946, 0, 'ar', 'validation', 'between.array', 'يجب أن تحتوي السمة: على: العناصر min و: max.', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1947, 0, 'ar', 'validation', 'between.file', 'يجب أن تكون السمة: بين: min و: max كيلو بايت.', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1948, 0, 'ar', 'validation', 'between.numeric', 'يجب أن تكون السمة بين: min و: max.', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1949, 0, 'ar', 'validation', 'between.string', 'يجب أن تكون السمة: بين: min و: الحد الأقصى لعدد الأحرف.', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1950, 0, 'ar', 'validation', 'boolean', 'يجب أن يكون حقل السمة صواب أو خطأ.', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1951, 0, 'ar', 'validation', 'confirmed', 'تأكيد السمة غير متطابق.', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1952, 0, 'ar', 'validation', 'custom.attribute-name.rule-name', 'رسالة مخصصة', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1953, 0, 'ar', 'validation', 'date', 'السمة: ليست تاريخًا صالحًا.', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1954, 0, 'ar', 'validation', 'date_format', 'السمة: لا تتطابق مع التنسيق: التنسيق.', '2019-09-12 23:34:10', '2020-05-14 12:20:12'), (1955, 0, 'ar', 'validation', 'different', ': السمة و: يجب أن تكون مختلفة.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1956, 0, 'ar', 'validation', 'digits', 'يجب أن تكون السمة: digits digits.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1957, 0, 'ar', 'validation', 'digits_between', 'يجب أن تكون السمة بين: min و: أقصى عدد.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1958, 0, 'ar', 'validation', 'dimensions', 'تحتوي السمة: على أبعاد صور غير صالحة.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1959, 0, 'ar', 'validation', 'distinct', 'يحتوي حقل السمة على قيمة مكررة.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1960, 0, 'ar', 'validation', 'email', 'يجب أن تكون السمة: عنوان بريد إلكتروني صالحًا.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1961, 0, 'ar', 'validation', 'exists', 'السمة المحددة: غير صالحة.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1962, 0, 'ar', 'validation', 'file', 'يجب أن تكون السمة ملف.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1963, 0, 'ar', 'validation', 'filled', 'يجب أن يحتوي حقل السمة على قيمة.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1964, 0, 'ar', 'validation', 'gt.array', 'يجب أن تحتوي السمة: على أكثر من: عناصر القيمة.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1965, 0, 'ar', 'validation', 'gt.file', 'يجب أن تكون السمة: أكبر من: قيمة كيلو بايت.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1966, 0, 'ar', 'validation', 'gt.numeric', 'يجب أن تكون السمة: أكبر من: قيمة.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1967, 0, 'ar', 'validation', 'gt.string', 'يجب أن تكون السمة: أكبر من: أحرف القيمة.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1968, 0, 'ar', 'validation', 'gte.array', 'يجب أن تحتوي السمة: على عناصر قيمة أو أكثر.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1969, 0, 'ar', 'validation', 'gte.file', 'يجب أن تكون السمة: أكبر من أو تساوي: قيمة الكيلوبايت.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1970, 0, 'ar', 'validation', 'gte.numeric', 'يجب أن تكون السمة: أكبر من أو تساوي: value.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1971, 0, 'ar', 'validation', 'gte.string', 'يجب أن تكون السمة: أكبر من أو تساوي: أحرف القيمة.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1972, 0, 'ar', 'validation', 'image', 'يجب أن تكون السمة صورة.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1973, 0, 'ar', 'validation', 'in', 'السمة المحددة: غير صالحة.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1974, 0, 'ar', 'validation', 'in_array', ': حقل السمة غير موجود في: الآخر.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1975, 0, 'ar', 'validation', 'integer', 'يجب أن تكون السمة عددًا صحيحًا.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1976, 0, 'ar', 'validation', 'ip', 'يجب أن تكون السمة: عنوان IP صالحًا.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1977, 0, 'ar', 'validation', 'ipv4', 'يجب أن تكون السمة: عنوان IPv4 صالحًا.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1978, 0, 'ar', 'validation', 'ipv6', 'يجب أن تكون السمة: عنوان IPv6 صالحًا.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1979, 0, 'ar', 'validation', 'json', 'يجب أن تكون السمة: سلسلة JSON صالحة.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1980, 0, 'ar', 'validation', 'lt.array', 'يجب أن تحتوي السمة: على أقل من: عناصر القيمة.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1981, 0, 'ar', 'validation', 'lt.file', 'يجب أن تكون السمة: أقل من: قيمة كيلو بايت.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1982, 0, 'ar', 'validation', 'lt.numeric', 'يجب أن تكون السمة: أقل من: قيمة.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1983, 0, 'ar', 'validation', 'lt.string', 'يجب أن تكون السمة: أقل من: قيمة الأحرف.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1984, 0, 'ar', 'validation', 'lte.array', 'يجب ألا تحتوي السمة: على أكثر من: عناصر القيمة.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1985, 0, 'ar', 'validation', 'lte.file', 'يجب أن تكون السمة: أقل من أو تساوي: قيمة الكيلوبايت.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1986, 0, 'ar', 'validation', 'lte.numeric', 'يجب أن تكون السمة: أقل من أو تساوي: value.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1987, 0, 'ar', 'validation', 'lte.string', 'يجب أن تكون السمة: أقل من أو تساوي: أحرف القيمة.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1988, 0, 'ar', 'validation', 'max.array', 'قد لا تحتوي السمة: أكثر من: العناصر القصوى.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1989, 0, 'ar', 'validation', 'max.file', 'قد لا تكون السمة: أكبر من: كحد أقصى', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1990, 0, 'ar', 'validation', 'max.numeric', 'قد لا تكون السمة: أكبر من:', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1991, 0, 'ar', 'validation', 'max.string', 'قد لا تكون السمة: أكبر من: الحد الأقصى لعدد الأحرف.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1992, 0, 'ar', 'validation', 'mimes', 'يجب أن تكون السمة: ملف نوع:attribute قيم.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1993, 0, 'ar', 'validation', 'mimetypes', 'يجب أن تكون السمة: ملف نوع:attribute قيم.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1994, 0, 'ar', 'validation', 'min.array', 'يجب أن تحتوي السمة: على الأقل: عناصر دقيقة.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1995, 0, 'ar', 'validation', 'min.file', 'يجب أن تكون السمة: الأقل كيلوبايت.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1996, 0, 'ar', 'validation', 'min.numeric', 'يجب أن تكون السمة: min على الأقل.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1997, 0, 'ar', 'validation', 'min.string', 'يجب أن تكون السمة: الأقل من الأحرف.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1998, 0, 'ar', 'validation', 'not_in', 'السمة المحددة: غير صالحة.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (1999, 0, 'ar', 'validation', 'not_regex', 'تنسيق السمة: غير صالح.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (2000, 0, 'ar', 'validation', 'numeric', 'يجب أن تكون السمة رقمًا.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (2001, 0, 'ar', 'validation', 'present', 'يجب أن يكون حقل السمة موجودًا.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (2002, 0, 'ar', 'validation', 'regex', 'تنسيق السمة: غير صالح.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (2003, 0, 'ar', 'validation', 'required', ': حقل السمة مطلوب.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (2004, 0, 'ar', 'validation', 'required_if', 'حقل السمة: مطلوب عند: الآخر هو: قيمة.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (2005, 0, 'ar', 'validation', 'required_unless', 'حقل السمة: مطلوب ما لم: الآخر موجود في: القيم.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (2006, 0, 'ar', 'validation', 'required_with', 'حقل السمة: مطلوب عند: القيم موجودة.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (2007, 0, 'ar', 'validation', 'required_with_all', 'حقل السمة: مطلوب عند: القيم موجودة.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (2008, 0, 'ar', 'validation', 'required_without', 'حقل السمة: مطلوب عندما تكون القيم غير موجودة.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (2009, 0, 'ar', 'validation', 'required_without_all', 'حقل السمة: مطلوب عند عدم وجود: من القيم.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (2010, 0, 'ar', 'validation', 'same', 'السمة: و الأخرى يجب أن تتطابق.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (2011, 0, 'ar', 'validation', 'size.array', 'يجب أن تحتوي السمة: عناصر الحجم.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (2012, 0, 'ar', 'validation', 'size.file', 'يجب أن تكون السمة: size كيلوبايت.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (2013, 0, 'ar', 'validation', 'size.numeric', 'يجب أن تكون السمة: size.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (2014, 0, 'ar', 'validation', 'size.string', 'يجب أن تكون السمة: size size.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (2015, 0, 'ar', 'validation', 'string', 'يجب أن تكون السمة سلسلة.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (2016, 0, 'ar', 'validation', 'timezone', 'يجب أن تكون السمة منطقة صالحة.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (2017, 0, 'ar', 'validation', 'unique', 'السمة: تم اتخاذها بالفعل.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (2018, 0, 'ar', 'validation', 'uploaded', 'فشلت السمة: في التحميل.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (2019, 0, 'ar', 'validation', 'url', 'تنسيق السمة: غير صالح.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (2020, 0, 'ar', 'validation', 'uuid', 'يجب أن تكون السمة UUID صالحة.', '2019-09-12 23:34:11', '2020-05-14 12:20:12'), (2021, 0, 'en', 'alerts', 'backend.general.created', 'Created successfully.', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2022, 0, 'en', 'alerts', 'backend.general.error', 'Something went wrong. Try Again', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2023, 0, 'en', 'alerts', 'backend.general.updated', 'Updated successfully.', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2024, 0, 'en', 'alerts', 'backend.general.deleted', 'Deleted successfully.', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2025, 0, 'en', 'alerts', 'backend.general.restored', 'Restored successfully.', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2026, 0, 'en', 'alerts', 'backend.general.cancelled', 'Update Cancelled.', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2027, 0, 'en', 'alerts', 'backend.general.unverified', 'Unverified Update files.', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2028, 0, 'en', 'alerts', 'backend.general.backup_warning', 'Please fill necessary details for backup', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2029, 0, 'en', 'alerts', 'backend.general.delete_warning', 'You can not delete course. Students are already enrolled. Unpublish the course instead', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2030, 0, 'en', 'alerts', 'backend.general.delete_warning_bundle', 'You can not delete Bundle. Students are already enrolled. Unpublish the Bundle instead', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2031, 0, 'en', 'alerts', 'backend.roles.created', 'The role was successfully created.', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2032, 0, 'en', 'alerts', 'backend.roles.updated', 'The role was successfully updated.', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2033, 0, 'en', 'alerts', 'backend.roles.deleted', 'The role was successfully deleted.', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2034, 0, 'en', 'alerts', 'backend.users.cant_resend_confirmation', 'The application is currently set to manually approve users.', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2035, 0, 'en', 'alerts', 'backend.users.confirmation_email', 'A new confirmation e-mail has been sent to the address on file.', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2036, 0, 'en', 'alerts', 'backend.users.confirmed', 'The user was successfully confirmed.', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2037, 0, 'en', 'alerts', 'backend.users.unconfirmed', 'The user was successfully un-confirmed', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2038, 0, 'en', 'alerts', 'backend.users.created', 'The user was successfully created.', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2039, 0, 'en', 'alerts', 'backend.users.updated', 'The user was successfully updated.', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2040, 0, 'en', 'alerts', 'backend.users.deleted', 'The user was successfully deleted.', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2041, 0, 'en', 'alerts', 'backend.users.updated_password', 'The user\'s password was successfully updated.', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2042, 0, 'en', 'alerts', 'backend.users.session_cleared', 'The user\'s session was successfully cleared.', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2043, 0, 'en', 'alerts', 'backend.users.social_deleted', 'Social Account Successfully Removed', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2044, 0, 'en', 'alerts', 'backend.users.deleted_permanently', 'The user was deleted permanently.', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2045, 0, 'en', 'alerts', 'backend.users.restored', 'The user was successfully restored.', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2046, 0, 'en', 'alerts', 'frontend.contact.sent', 'Your information was successfully sent. We will respond back to the e-mail provided as soon as we can.', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2047, 0, 'en', 'alerts', 'frontend.course.completed', 'Congratulations! You\'ve successfully completed course. Checkout your certificate in dashboard', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2048, 0, 'en', 'auth', 'general_error', 'You do not have access to do that.', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2049, 0, 'en', 'auth', 'socialite.unacceptable', ':provider is not an acceptable login type.', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2050, 0, 'en', 'auth', 'password_rules', 'Your password must be more than 8 characters long, should contain at least 1 uppercase, 1 lowercase and 1 number.', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2051, 0, 'en', 'auth', 'password_used', 'You can not set a password that you have previously used.', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2052, 0, 'en', 'auth', 'failed', 'These credentials do not match our records.', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2053, 0, 'en', 'auth', 'throttle', 'Too many login attempts. Please try again in :seconds seconds.', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2054, 0, 'en', 'auth', 'unknown', 'An unknown error occurred', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2055, 0, 'en', 'buttons', 'general.crud.edit', 'Edit', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2056, 0, 'en', 'buttons', 'general.crud.delete', 'Delete', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2057, 0, 'en', 'buttons', 'general.crud.view', 'View', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2058, 0, 'en', 'buttons', 'general.crud.create', 'Create', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2059, 0, 'en', 'buttons', 'general.crud.update', 'Update', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2060, 0, 'en', 'buttons', 'general.crud.generate', 'Generate', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2061, 0, 'en', 'buttons', 'general.cancel', 'Cancel', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2062, 0, 'en', 'buttons', 'general.continue', 'Continue', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2063, 0, 'en', 'buttons', 'general.save', 'Save', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2064, 0, 'en', 'buttons', 'general.view', 'View', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2065, 0, 'en', 'buttons', 'backend.access.users.unconfirm', 'Un-confirm', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2066, 0, 'en', 'buttons', 'backend.access.users.confirm', 'Confirm', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2067, 0, 'en', 'buttons', 'backend.access.users.unlink', 'Unlink', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2068, 0, 'en', 'buttons', 'backend.access.users.login_as', 'Login As :user', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2069, 0, 'en', 'buttons', 'backend.access.users.clear_session', 'Clear Session', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2070, 0, 'en', 'buttons', 'backend.access.users.change_password', 'Change Password', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2071, 0, 'en', 'buttons', 'backend.access.users.activate', 'Activate', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2072, 0, 'en', 'buttons', 'backend.access.users.deactivate', 'Deactivate', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2073, 0, 'en', 'buttons', 'backend.access.users.resend_email', 'Resend Confirmation E-mail', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2074, 0, 'en', 'buttons', 'backend.access.users.delete_permanently', 'Delete Permanently', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2075, 0, 'en', 'buttons', 'backend.access.users.restore_user', 'Restore User', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2076, 0, 'en', 'buttons', 'emails.auth.confirm_account', 'Confirm Account', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2077, 0, 'en', 'buttons', 'emails.auth.reset_password', 'Reset Password', '2019-09-12 23:34:11', '2020-05-14 12:20:09'), (2078, 0, 'en', 'configmanager', 'title', 'Config Manager', '2019-09-12 23:34:11', '2020-05-14 12:20:10'), (2079, 0, 'en', 'configmanager', 'info_choose', 'Choose a file to start editing', '2019-09-12 23:34:11', '2020-05-14 12:20:10'), (2080, 0, 'en', 'configmanager', 'file', 'File', '2019-09-12 23:34:11', '2020-05-14 12:20:10'), (2081, 0, 'en', 'configmanager', 'path', 'Path', '2019-09-12 23:34:11', '2020-05-14 12:20:10'), (2082, 0, 'en', 'configmanager', 'header.key', 'Key', '2019-09-12 23:34:11', '2020-05-14 12:20:10'), (2083, 0, 'en', 'configmanager', 'header.value', 'Value', '2019-09-12 23:34:11', '2020-05-14 12:20:10'), (2084, 0, 'en', 'configmanager', 'header.actions', 'Actions', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2085, 0, 'en', 'configmanager', 'actions.edit', 'Edit', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2086, 0, 'en', 'configmanager', 'actions.confirm', 'Save new key', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2087, 0, 'en', 'configmanager', 'actions.save', 'Save!', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2088, 0, 'en', 'configmanager', 'actions.cancel', 'Cancel', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2089, 0, 'en', 'configmanager', 'sure', 'Are you sure?', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2090, 0, 'en', 'datatable', 'colvis', 'Column Visibility', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2091, 0, 'en', 'datatable', 'csv', 'CSV', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2092, 0, 'en', 'datatable', 'pdf', 'PDF', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2093, 0, 'en', 'exceptions', 'backend.access.roles.cant_delete_admin', 'You can not delete the Administrator role.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2094, 0, 'en', 'exceptions', 'backend.access.roles.needs_permission', 'You must select at least one permission for this role.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2095, 0, 'en', 'exceptions', 'backend.access.roles.create_error', 'There was a problem creating this role. Please try again.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2096, 0, 'en', 'exceptions', 'backend.access.roles.update_error', 'There was a problem updating this role. Please try again.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2097, 0, 'en', 'exceptions', 'backend.access.roles.already_exists', 'That role already exists. Please choose a different name.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2098, 0, 'en', 'exceptions', 'backend.access.roles.delete_error', 'There was a problem deleting this role. Please try again.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2099, 0, 'en', 'exceptions', 'backend.access.roles.has_users', 'You can not delete a role with associated users.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2100, 0, 'en', 'exceptions', 'backend.access.roles.not_found', 'That role does not exist.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2101, 0, 'en', 'exceptions', 'backend.access.users.already_confirmed', 'This user is already confirmed.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2102, 0, 'en', 'exceptions', 'backend.access.users.cant_delete_own_session', 'You can not delete your own session.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2103, 0, 'en', 'exceptions', 'backend.access.users.session_wrong_driver', 'Your session driver must be set to database to use this feature.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2104, 0, 'en', 'exceptions', 'backend.access.users.social_delete_error', 'There was a problem removing the social account from the user.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2105, 0, 'en', 'exceptions', 'backend.access.users.role_needed_create', 'You must choose at lease one role.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2106, 0, 'en', 'exceptions', 'backend.access.users.create_error', 'There was a problem creating this user. Please try again.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2107, 0, 'en', 'exceptions', 'backend.access.users.update_error', 'There was a problem updating this user. Please try again.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2108, 0, 'en', 'exceptions', 'backend.access.users.update_password_error', 'There was a problem changing this users password. Please try again.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2109, 0, 'en', 'exceptions', 'backend.access.users.cant_deactivate_self', 'You can not do that to yourself.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2110, 0, 'en', 'exceptions', 'backend.access.users.mark_error', 'There was a problem updating this user. Please try again.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2111, 0, 'en', 'exceptions', 'backend.access.users.cant_confirm', 'There was a problem confirming the user account.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2112, 0, 'en', 'exceptions', 'backend.access.users.not_confirmed', 'This user is not confirmed.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2113, 0, 'en', 'exceptions', 'backend.access.users.cant_unconfirm_admin', 'You can not un-confirm the super administrator.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2114, 0, 'en', 'exceptions', 'backend.access.users.cant_unconfirm_self', 'You can not un-confirm yourself.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2115, 0, 'en', 'exceptions', 'backend.access.users.delete_first', 'This user must be deleted first before it can be destroyed permanently.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2116, 0, 'en', 'exceptions', 'backend.access.users.delete_error', 'There was a problem deleting this user. Please try again.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2117, 0, 'en', 'exceptions', 'backend.access.users.cant_restore', 'This user is not deleted so it can not be restored.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2118, 0, 'en', 'exceptions', 'backend.access.users.restore_error', 'There was a problem restoring this user. Please try again.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2119, 0, 'en', 'exceptions', 'backend.access.users.email_error', 'That email address belongs to a different user.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2120, 0, 'en', 'exceptions', 'backend.access.users.not_found', 'That user does not exist.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2121, 0, 'en', 'exceptions', 'backend.access.users.cant_delete_admin', 'You can not delete the super administrator.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2122, 0, 'en', 'exceptions', 'backend.access.users.cant_delete_self', 'You can not delete yourself.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2123, 0, 'en', 'exceptions', 'backend.access.users.role_needed', 'You must choose at least one role.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2124, 0, 'en', 'exceptions', 'frontend.auth.confirmation.success', 'Your account has been successfully confirmed!', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2125, 0, 'en', 'exceptions', 'frontend.auth.confirmation.already_confirmed', 'Your account is already confirmed.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2126, 0, 'en', 'exceptions', 'frontend.auth.confirmation.resent', 'A new confirmation e-mail has been sent to the address on file.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2127, 0, 'en', 'exceptions', 'frontend.auth.confirmation.pending', 'Your account is currently pending approval.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2128, 0, 'en', 'exceptions', 'frontend.auth.confirmation.resend', 'Your account is not confirmed. Please click the confirmation link in your e-mail, or <a href=\":url\">click here</a> to resend the confirmation e-mail.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2129, 0, 'en', 'exceptions', 'frontend.auth.confirmation.confirm', 'Confirm your account!', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2130, 0, 'en', 'exceptions', 'frontend.auth.confirmation.mismatch', 'Your confirmation code does not match.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2131, 0, 'en', 'exceptions', 'frontend.auth.confirmation.created_pending', 'Your account was successfully created and is pending approval. An e-mail will be sent when your account is approved.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2132, 0, 'en', 'exceptions', 'frontend.auth.confirmation.created_confirm', 'Your account was successfully created. We have sent you an e-mail to confirm your account.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2133, 0, 'en', 'exceptions', 'frontend.auth.confirmation.not_found', 'That confirmation code does not exist.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2134, 0, 'en', 'exceptions', 'frontend.auth.deactivated', 'Your account has been deactivated.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2135, 0, 'en', 'exceptions', 'frontend.auth.password.reset_problem', 'There was a problem resetting your password. Please resend the password reset email.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2136, 0, 'en', 'exceptions', 'frontend.auth.password.change_mismatch', 'That is not your old password.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2137, 0, 'en', 'exceptions', 'frontend.auth.email_taken', 'That e-mail address is already taken.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2138, 0, 'en', 'exceptions', 'frontend.auth.registration_disabled', 'Registration is currently closed.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2139, 0, 'en', 'http', '404.description2', ' It looks like nothing was found at this location.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2140, 0, 'en', 'http', '404.title', 'Page Not Found', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2141, 0, 'en', 'http', '404.title2', '404', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2142, 0, 'en', 'http', '404.back', 'Back To HomePage', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2143, 0, 'en', 'http', '404.description', 'THIS IS SOMEWHAT EMBARRASSING, ISN’T IT?', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2144, 0, 'en', 'http', '503.title', 'Be right back.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2145, 0, 'en', 'http', '503.description', 'Be right back.', '2019-09-12 23:34:12', '2020-05-14 12:20:10'), (2146, 0, 'en', 'labels', 'backend.courses.title', 'Courses', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2147, 0, 'en', 'labels', 'backend.courses.fields.published', 'Published', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2148, 0, 'en', 'labels', 'backend.courses.fields.featured', 'Featured', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2149, 0, 'en', 'labels', 'backend.courses.fields.free', 'Free', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2150, 0, 'en', 'labels', 'backend.courses.fields.trending', 'Trending', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2151, 0, 'en', 'labels', 'backend.courses.fields.popular', 'Popular', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2152, 0, 'en', 'labels', 'backend.courses.fields.teachers', 'Teachers', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2153, 0, 'en', 'labels', 'backend.courses.fields.category', 'Category', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2154, 0, 'en', 'labels', 'backend.courses.fields.title', 'Title', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2155, 0, 'en', 'labels', 'backend.courses.fields.slug', 'Slug', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2156, 0, 'en', 'labels', 'backend.courses.fields.description', 'Description', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2157, 0, 'en', 'labels', 'backend.courses.fields.price', 'Price', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2158, 0, 'en', 'labels', 'backend.courses.fields.course_image', 'Course Image', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2159, 0, 'en', 'labels', 'backend.courses.fields.start_date', 'Start Date', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2160, 0, 'en', 'labels', 'backend.courses.fields.meta_title', 'Meta Title', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2161, 0, 'en', 'labels', 'backend.courses.fields.meta_description', 'Meta Description', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2162, 0, 'en', 'labels', 'backend.courses.fields.meta_keywords', 'Meta Keywords', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2163, 0, 'en', 'labels', 'backend.courses.fields.sidebar', 'Add Sidebar', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2164, 0, 'en', 'labels', 'backend.courses.fields.lessons.add', 'Add Lessons', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2165, 0, 'en', 'labels', 'backend.courses.fields.lessons.view', 'View Lessons', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2166, 0, 'en', 'labels', 'backend.courses.fields.course', 'Course', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2167, 0, 'en', 'labels', 'backend.courses.fields.status', 'Status', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2168, 0, 'en', 'labels', 'backend.courses.add_teachers', 'Add Teachers', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2169, 0, 'en', 'labels', 'backend.courses.add_categories', 'Add Categories', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2170, 0, 'en', 'labels', 'backend.courses.slug_placeholder', 'Input slug or it will be generated automatically', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2171, 0, 'en', 'labels', 'backend.courses.select_category', 'Select Category', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2172, 0, 'en', 'labels', 'backend.courses.select_teachers', 'Select Teachers', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2173, 0, 'en', 'labels', 'backend.courses.test', 'Test', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2174, 0, 'en', 'labels', 'backend.courses.lesson', 'Lesson', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2175, 0, 'en', 'labels', 'backend.courses.create', 'Create Course', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2176, 0, 'en', 'labels', 'backend.courses.edit', 'Edit Course', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2177, 0, 'en', 'labels', 'backend.courses.view', 'View Courses', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2178, 0, 'en', 'labels', 'backend.courses.category', 'Category', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2179, 0, 'en', 'labels', 'backend.courses.save_timeline', 'Save timeline', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2180, 0, 'en', 'labels', 'backend.courses.course_timeline', 'Course timeline', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2181, 0, 'en', 'labels', 'backend.courses.timeline_description', 'Drag and change sequence of Lessons/Tests for course', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2182, 0, 'en', 'labels', 'backend.courses.listing_note', 'Only Published Lessons and Tests will be Displayed and Sorted.', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2183, 0, 'en', 'labels', 'backend.tests.title', 'Tests', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2184, 0, 'en', 'labels', 'backend.tests.fields.course', 'Course', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2185, 0, 'en', 'labels', 'backend.tests.fields.lesson', 'Lesson', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2186, 0, 'en', 'labels', 'backend.tests.fields.title', 'Title', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2187, 0, 'en', 'labels', 'backend.tests.fields.description', 'Description', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2188, 0, 'en', 'labels', 'backend.tests.fields.published', 'Published', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2189, 0, 'en', 'labels', 'backend.tests.fields.questions', 'Questions', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2190, 0, 'en', 'labels', 'backend.tests.create', 'Create Test', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2191, 0, 'en', 'labels', 'backend.tests.edit', 'Edit Test', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2192, 0, 'en', 'labels', 'backend.tests.view', 'View Tests', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2193, 0, 'en', 'labels', 'backend.orders.fields.payment_status.pending', 'Pending', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2194, 0, 'en', 'labels', 'backend.orders.fields.payment_status.completed', 'Completed', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2195, 0, 'en', 'labels', 'backend.orders.fields.payment_status.failed', 'Failed', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2196, 0, 'en', 'labels', 'backend.orders.fields.payment_status.title', 'Payment', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2197, 0, 'en', 'labels', 'backend.orders.fields.payment_type.stripe', 'Credit / Debit Card (Stripe Payment Gateway)', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2198, 0, 'en', 'labels', 'backend.orders.fields.payment_type.paypal', 'Paypal', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2199, 0, 'en', 'labels', 'backend.orders.fields.payment_type.offline', 'Offline', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2200, 0, 'en', 'labels', 'backend.orders.fields.payment_type.title', 'Payment Type', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2201, 0, 'en', 'labels', 'backend.orders.fields.reference_no', 'Reference No.', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2202, 0, 'en', 'labels', 'backend.orders.fields.ordered_by', 'Ordered By', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2203, 0, 'en', 'labels', 'backend.orders.fields.items', 'Items', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2204, 0, 'en', 'labels', 'backend.orders.fields.amount', 'Amount', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2205, 0, 'en', 'labels', 'backend.orders.fields.user_email', 'User Email', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2206, 0, 'en', 'labels', 'backend.orders.fields.date', 'Order date', '2019-09-12 23:34:12', '2020-05-14 12:20:11'), (2207, 0, 'en', 'labels', 'backend.orders.complete', 'Complete Manually', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2208, 0, 'en', 'labels', 'backend.orders.offline_requests', 'Offline Requests', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2209, 0, 'en', 'labels', 'backend.orders.view_invoice', 'View Invoice', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2210, 0, 'en', 'labels', 'backend.orders.download_invoice', 'Download Invoice', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2211, 0, 'en', 'labels', 'backend.orders.title', 'Orders', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2212, 0, 'en', 'labels', 'backend.pages.fields.published', 'Published', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2213, 0, 'en', 'labels', 'backend.pages.fields.drafted', 'Drafted', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2214, 0, 'en', 'labels', 'backend.pages.fields.title', 'Title', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2215, 0, 'en', 'labels', 'backend.pages.fields.slug', 'Slug', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2216, 0, 'en', 'labels', 'backend.pages.fields.featured_image', 'Featured image', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2217, 0, 'en', 'labels', 'backend.pages.fields.content', 'Content', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2218, 0, 'en', 'labels', 'backend.pages.fields.meta_title', 'Meta Title', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2219, 0, 'en', 'labels', 'backend.pages.fields.meta_description', 'Meta Description', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2220, 0, 'en', 'labels', 'backend.pages.fields.meta_keywords', 'Meta Keywords', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2221, 0, 'en', 'labels', 'backend.pages.fields.clear', 'Clear', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2222, 0, 'en', 'labels', 'backend.pages.fields.status', 'Status', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2223, 0, 'en', 'labels', 'backend.pages.fields.created', 'Created', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2224, 0, 'en', 'labels', 'backend.pages.fields.created_at', 'Created On', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2225, 0, 'en', 'labels', 'backend.pages.max_file_size', '(max file size 10MB)', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2226, 0, 'en', 'labels', 'backend.pages.title', 'Pages', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2227, 0, 'en', 'labels', 'backend.pages.create', 'Create Page', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2228, 0, 'en', 'labels', 'backend.pages.edit', 'Edit Page', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2229, 0, 'en', 'labels', 'backend.pages.view', 'View Pages', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2230, 0, 'en', 'labels', 'backend.access.users.user_actions', 'User Actions', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2231, 0, 'en', 'labels', 'backend.access.users.management', 'User Management', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2232, 0, 'en', 'labels', 'backend.access.users.change_password', 'Change Password', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2233, 0, 'en', 'labels', 'backend.access.users.change_password_for', 'Change Password for :user', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2234, 0, 'en', 'labels', 'backend.access.users.create', 'Create User', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2235, 0, 'en', 'labels', 'backend.access.users.table.abilities', 'Abilities', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2236, 0, 'en', 'labels', 'backend.access.users.table.total', 'user total|users total', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2237, 0, 'en', 'labels', 'backend.access.users.table.confirmed', 'Confirmed', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2238, 0, 'en', 'labels', 'backend.access.users.table.created', 'Created', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2239, 0, 'en', 'labels', 'backend.access.users.table.email', 'E-mail', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2240, 0, 'en', 'labels', 'backend.access.users.table.id', 'ID', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2241, 0, 'en', 'labels', 'backend.access.users.table.last_updated', 'Last Updated', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2242, 0, 'en', 'labels', 'backend.access.users.table.name', 'Name', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2243, 0, 'en', 'labels', 'backend.access.users.table.first_name', 'First Name', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2244, 0, 'en', 'labels', 'backend.access.users.table.last_name', 'Last Name', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2245, 0, 'en', 'labels', 'backend.access.users.table.no_deactivated', 'No Deactivated Users', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2246, 0, 'en', 'labels', 'backend.access.users.table.no_deleted', 'No Deleted Users', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2247, 0, 'en', 'labels', 'backend.access.users.table.other_permissions', 'Other Permissions', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2248, 0, 'en', 'labels', 'backend.access.users.table.permissions', 'Permissions', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2249, 0, 'en', 'labels', 'backend.access.users.table.roles', 'Roles', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2250, 0, 'en', 'labels', 'backend.access.users.table.social', 'Social', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2251, 0, 'en', 'labels', 'backend.access.users.table.status', 'Status', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2252, 0, 'en', 'labels', 'backend.access.users.all_permissions', 'All Permissions', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2253, 0, 'en', 'labels', 'backend.access.users.deactivated', 'Deactivated Users', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2254, 0, 'en', 'labels', 'backend.access.users.deleted', 'Deleted Users', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2255, 0, 'en', 'labels', 'backend.access.users.edit', 'Edit User', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2256, 0, 'en', 'labels', 'backend.access.users.active', 'Active Users', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2257, 0, 'en', 'labels', 'backend.access.users.view', 'View User', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2258, 0, 'en', 'labels', 'backend.access.users.tabs.titles.overview', 'Overview', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2259, 0, 'en', 'labels', 'backend.access.users.tabs.titles.history', 'History', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2260, 0, 'en', 'labels', 'backend.access.users.tabs.content.overview.avatar', 'Avatar', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2261, 0, 'en', 'labels', 'backend.access.users.tabs.content.overview.confirmed', 'Confirmed', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2262, 0, 'en', 'labels', 'backend.access.users.tabs.content.overview.created_at', 'Created At', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2263, 0, 'en', 'labels', 'backend.access.users.tabs.content.overview.deleted_at', 'Deleted At', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2264, 0, 'en', 'labels', 'backend.access.users.tabs.content.overview.email', 'E-mail', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2265, 0, 'en', 'labels', 'backend.access.users.tabs.content.overview.last_login_at', 'Last Login At', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2266, 0, 'en', 'labels', 'backend.access.users.tabs.content.overview.last_login_ip', 'Last Login IP', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2267, 0, 'en', 'labels', 'backend.access.users.tabs.content.overview.last_updated', 'Last Updated', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2268, 0, 'en', 'labels', 'backend.access.users.tabs.content.overview.name', 'Name', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2269, 0, 'en', 'labels', 'backend.access.users.tabs.content.overview.first_name', 'First Name', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2270, 0, 'en', 'labels', 'backend.access.users.tabs.content.overview.last_name', 'Last Name', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2271, 0, 'en', 'labels', 'backend.access.users.tabs.content.overview.status', 'Status', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2272, 0, 'en', 'labels', 'backend.access.users.tabs.content.overview.timezone', 'Timezone', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2273, 0, 'en', 'labels', 'backend.access.users.no_permissions', 'No Permissions', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2274, 0, 'en', 'labels', 'backend.access.users.no_roles', 'No Roles to set.', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2275, 0, 'en', 'labels', 'backend.access.users.permissions', 'Permissions', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2276, 0, 'en', 'labels', 'backend.access.roles.management', 'Role Management', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2277, 0, 'en', 'labels', 'backend.access.roles.create', 'Create Role', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2278, 0, 'en', 'labels', 'backend.access.roles.edit', 'Edit Role', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2279, 0, 'en', 'labels', 'backend.access.roles.table.total', 'role total|roles total', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2280, 0, 'en', 'labels', 'backend.access.roles.table.number_of_users', 'Number of Users', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2281, 0, 'en', 'labels', 'backend.access.roles.table.permissions', 'Permissions', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2282, 0, 'en', 'labels', 'backend.access.roles.table.role', 'Role', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2283, 0, 'en', 'labels', 'backend.access.roles.table.sort', 'Sort', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2284, 0, 'en', 'labels', 'backend.blogs.fields.title', 'Title', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2285, 0, 'en', 'labels', 'backend.blogs.fields.category', 'Category', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2286, 0, 'en', 'labels', 'backend.blogs.fields.slug', 'Slug', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2287, 0, 'en', 'labels', 'backend.blogs.fields.featured_image', 'Featured image', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2288, 0, 'en', 'labels', 'backend.blogs.fields.content', 'Content', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2289, 0, 'en', 'labels', 'backend.blogs.fields.tags_placeholder', 'Add tags here', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2290, 0, 'en', 'labels', 'backend.blogs.fields.meta_title', 'Meta Title', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2291, 0, 'en', 'labels', 'backend.blogs.fields.meta_description', 'Meta Description', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2292, 0, 'en', 'labels', 'backend.blogs.fields.meta_keywords', 'Meta Keywords', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2293, 0, 'en', 'labels', 'backend.blogs.fields.publish', 'Publish', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2294, 0, 'en', 'labels', 'backend.blogs.fields.clear', 'Clear', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2295, 0, 'en', 'labels', 'backend.blogs.fields.status', 'Status', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2296, 0, 'en', 'labels', 'backend.blogs.fields.views', 'Views', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2297, 0, 'en', 'labels', 'backend.blogs.fields.created', 'Created', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2298, 0, 'en', 'labels', 'backend.blogs.fields.comments', 'Comments', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2299, 0, 'en', 'labels', 'backend.blogs.fields.tags', 'Tags', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2300, 0, 'en', 'labels', 'backend.blogs.fields.created_at', 'Created On', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2301, 0, 'en', 'labels', 'backend.blogs.max_file_size', '(max file size 10MB)', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2302, 0, 'en', 'labels', 'backend.blogs.title', 'Blog', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2303, 0, 'en', 'labels', 'backend.blogs.create', 'Create Blog', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2304, 0, 'en', 'labels', 'backend.blogs.edit', 'Edit Blog', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2305, 0, 'en', 'labels', 'backend.blogs.view', 'View Blogs', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2306, 0, 'en', 'labels', 'backend.lessons.slug_placeholder', 'Input slug or it will be generated automatically', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2307, 0, 'en', 'labels', 'backend.lessons.fields.course', 'Course', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2308, 0, 'en', 'labels', 'backend.lessons.fields.title', 'Title', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2309, 0, 'en', 'labels', 'backend.lessons.fields.slug', 'Slug', '2019-09-12 23:34:13', '2020-05-14 12:20:11'); INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES (2310, 0, 'en', 'labels', 'backend.lessons.fields.lesson_image', 'Lesson Image', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2311, 0, 'en', 'labels', 'backend.lessons.fields.short_text', 'Short Text', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2312, 0, 'en', 'labels', 'backend.lessons.fields.full_text', 'Full Text', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2313, 0, 'en', 'labels', 'backend.lessons.fields.downloadable_files', 'Downloadable Files', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2314, 0, 'en', 'labels', 'backend.lessons.fields.free_lesson', 'Free Lesson', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2315, 0, 'en', 'labels', 'backend.lessons.fields.published', 'Published', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2316, 0, 'en', 'labels', 'backend.lessons.fields.position', 'Position', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2317, 0, 'en', 'labels', 'backend.lessons.fields.youtube_videos', 'YouTube Videos', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2318, 0, 'en', 'labels', 'backend.lessons.fields.add_pdf', 'Add PDF', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2319, 0, 'en', 'labels', 'backend.lessons.fields.add_video', 'Add Video', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2320, 0, 'en', 'labels', 'backend.lessons.fields.media_video', 'Media Video', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2321, 0, 'en', 'labels', 'backend.lessons.fields.media_audio', 'Media Audio', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2322, 0, 'en', 'labels', 'backend.lessons.fields.media_pdf', 'Media PDF', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2323, 0, 'en', 'labels', 'backend.lessons.fields.add_audio', 'Add Audio', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2324, 0, 'en', 'labels', 'backend.lessons.max_file_size', '(max file size 5MB)', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2325, 0, 'en', 'labels', 'backend.lessons.short_description_placeholder', 'Input short description of lesson', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2326, 0, 'en', 'labels', 'backend.lessons.select_course', 'Select Course', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2327, 0, 'en', 'labels', 'backend.lessons.yt_note', '<b>Instructions to add Video link: </b><br> Go to youtube -> open video -> right click on video and <b>Copy Video URL</b> and paste here.<br> If you want to add multiple videos, then separate them with <b>,</b> (Comma) Sign.', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2328, 0, 'en', 'labels', 'backend.lessons.vimeo_note', '<b>Instructions to add Video link: </b><br> Go to vimeo -> open video -> right click on video and <b>Copy Video URL</b> and paste here.<br> If you want to add multiple videos, then separate them with <b>,</b> (Comma) Sign.', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2329, 0, 'en', 'labels', 'backend.lessons.title', 'Lessons', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2330, 0, 'en', 'labels', 'backend.lessons.enter_video_url', 'Enter video data', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2331, 0, 'en', 'labels', 'backend.lessons.enter_video_embed_code', 'Enter video embed code', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2332, 0, 'en', 'labels', 'backend.lessons.create', 'Create Lesson', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2333, 0, 'en', 'labels', 'backend.lessons.edit', 'Edit Lesson', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2334, 0, 'en', 'labels', 'backend.lessons.view', 'View Lessons', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2335, 0, 'en', 'labels', 'backend.lessons.video_guide', '<p class=\"mb-1\"><b>Youtube :</b> Go to Youtube -> Go to video you want to display -> click on share button below video. Copy that links and paste in above text box </p>\n<p class=\"mb-1\"><b>Vimeo :</b> Go to Vimeo -> Go to video you want to display -> click on share button and copy paste video url here </p>\n<p class=\"mb-1\"><b>Upload :</b> Upload <b>mp4</b> file in file input</p>\n<p class=\"mb-1\"><b>Embed :</b> Copy / Paste embed code in above text box</p>', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2336, 0, 'en', 'labels', 'backend.lessons.remove', 'Remove', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2337, 0, 'en', 'labels', 'backend.categories.fields.name', 'Name', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2338, 0, 'en', 'labels', 'backend.categories.fields.select_icon', 'Select Icon', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2339, 0, 'en', 'labels', 'backend.categories.fields.image', 'Image', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2340, 0, 'en', 'labels', 'backend.categories.fields.icon', 'Icon', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2341, 0, 'en', 'labels', 'backend.categories.fields.icon_type.title', 'Icon type', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2342, 0, 'en', 'labels', 'backend.categories.fields.icon_type.select_any', 'Select Any', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2343, 0, 'en', 'labels', 'backend.categories.fields.icon_type.image', 'Upload image', '2019-09-12 23:34:13', '2020-05-14 12:20:11'), (2344, 0, 'en', 'labels', 'backend.categories.fields.icon_type.icon', 'Select Icon', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2345, 0, 'en', 'labels', 'backend.categories.fields.or', 'Or', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2346, 0, 'en', 'labels', 'backend.categories.fields.slug', 'Slug', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2347, 0, 'en', 'labels', 'backend.categories.fields.courses', 'Courses', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2348, 0, 'en', 'labels', 'backend.categories.fields.status', 'Status', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2349, 0, 'en', 'labels', 'backend.categories.title', 'Categories', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2350, 0, 'en', 'labels', 'backend.categories.create', 'Create Category', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2351, 0, 'en', 'labels', 'backend.categories.edit', 'Edit Category', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2352, 0, 'en', 'labels', 'backend.categories.view', 'View Categories', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2353, 0, 'en', 'labels', 'backend.faqs.fields.question', 'Question', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2354, 0, 'en', 'labels', 'backend.faqs.fields.answer', 'Answer', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2355, 0, 'en', 'labels', 'backend.faqs.fields.category', 'Category', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2356, 0, 'en', 'labels', 'backend.faqs.fields.status', 'Status', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2357, 0, 'en', 'labels', 'backend.faqs.title', 'FAQs', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2358, 0, 'en', 'labels', 'backend.faqs.create', 'Create FAQ', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2359, 0, 'en', 'labels', 'backend.faqs.edit', 'Edit FAQ', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2360, 0, 'en', 'labels', 'backend.faqs.view', 'View FAQs', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2361, 0, 'en', 'labels', 'backend.invoices.fields.view', 'View', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2362, 0, 'en', 'labels', 'backend.invoices.fields.download', 'Download', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2363, 0, 'en', 'labels', 'backend.invoices.fields.order_date', 'Order Date', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2364, 0, 'en', 'labels', 'backend.invoices.fields.amount', 'Amount', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2365, 0, 'en', 'labels', 'backend.invoices.title', 'Invoices', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2366, 0, 'en', 'labels', 'backend.menu-manager.title', 'Menu Manager', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2367, 0, 'en', 'labels', 'backend.messages.compose', 'Compose', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2368, 0, 'en', 'labels', 'backend.messages.search_user', 'Search User', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2369, 0, 'en', 'labels', 'backend.messages.select_recipients', 'Select Recipients', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2370, 0, 'en', 'labels', 'backend.messages.start_conversation', 'Start a conversation', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2371, 0, 'en', 'labels', 'backend.messages.type_a_message', 'Type a message', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2372, 0, 'en', 'labels', 'backend.messages.title', 'Messages', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2373, 0, 'en', 'labels', 'backend.questions.fields.question', 'Question', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2374, 0, 'en', 'labels', 'backend.questions.fields.question_image', 'Question Image', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2375, 0, 'en', 'labels', 'backend.questions.fields.score', 'Score', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2376, 0, 'en', 'labels', 'backend.questions.fields.tests', 'Tests', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2377, 0, 'en', 'labels', 'backend.questions.fields.option_text', 'Option Text', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2378, 0, 'en', 'labels', 'backend.questions.fields.correct', 'Correct', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2379, 0, 'en', 'labels', 'backend.questions.fields.course', 'Course', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2380, 0, 'en', 'labels', 'backend.questions.fields.lesson', 'Lesson', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2381, 0, 'en', 'labels', 'backend.questions.fields.title', 'Title', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2382, 0, 'en', 'labels', 'backend.questions.fields.option_explanation', 'Option Explanation', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2383, 0, 'en', 'labels', 'backend.questions.title', 'Questions', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2384, 0, 'en', 'labels', 'backend.questions.create', 'Create Question', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2385, 0, 'en', 'labels', 'backend.questions.edit', 'Edit Question', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2386, 0, 'en', 'labels', 'backend.questions.view', 'View Questions', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2387, 0, 'en', 'labels', 'backend.questions.test', 'Test', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2388, 0, 'en', 'labels', 'backend.reasons.fields.title', 'Title', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2389, 0, 'en', 'labels', 'backend.reasons.fields.icon', 'Icon', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2390, 0, 'en', 'labels', 'backend.reasons.fields.content', 'Content', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2391, 0, 'en', 'labels', 'backend.reasons.fields.status', 'Status', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2392, 0, 'en', 'labels', 'backend.reasons.title', 'Reasons', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2393, 0, 'en', 'labels', 'backend.reasons.create', 'Create Reason', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2394, 0, 'en', 'labels', 'backend.reasons.edit', 'Edit Reason', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2395, 0, 'en', 'labels', 'backend.reasons.view', 'View Reasons', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2396, 0, 'en', 'labels', 'backend.reasons.note', 'Reasons will be displayed as a slider on homepage as below', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2397, 0, 'en', 'labels', 'backend.general_settings.title', 'General', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2398, 0, 'en', 'labels', 'backend.general_settings.contact.short_text', 'Short Text', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2399, 0, 'en', 'labels', 'backend.general_settings.contact.show', 'Show', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2400, 0, 'en', 'labels', 'backend.general_settings.contact.primary_address', 'Primary Address', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2401, 0, 'en', 'labels', 'backend.general_settings.contact.secondary_address', 'Secondary Address', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2402, 0, 'en', 'labels', 'backend.general_settings.contact.primary_phone', 'Primary Phone', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2403, 0, 'en', 'labels', 'backend.general_settings.contact.secondary_phone', 'Secondary Phone', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2404, 0, 'en', 'labels', 'backend.general_settings.contact.primary_email', 'Primary Email', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2405, 0, 'en', 'labels', 'backend.general_settings.contact.secondary_email', 'Secondary Email', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2406, 0, 'en', 'labels', 'backend.general_settings.contact.location_on_map', 'Location on Map', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2407, 0, 'en', 'labels', 'backend.general_settings.contact.map_note', '<h3>How to embed Location for Map?</h3>\n <p>Do following simple steps and you are good to go:</p>\n <ol class=\"map-guide\">\n <li>Go to <a class=\"text-bold\" target=\"_blank\" href=\"//maps.google.com\">Google Map</a> </li>\n <li>Search the place you want to add by Entering address / location in input box located on upper-left corner</li>\n <li>Once you get the place you want. It shows details in left sidebar. Click on <i class=\"fa fa-share-alt text-primary\"></i> button</li>\n <li>A popup will appear which will have two tabs <b>Send a link</b> and <b>Embed a Map</b></li>\n <li>Click on <b>Embed a map</b> It will show you chosen Place on Map</li>\n <li>Now click on the dropdown from the left. By default <b>Medium</b> is selected. Click on it and Select <b>Large</b></li>\n <li>Now Click on <b class=\"text-primary\">COPY HTML</b> link from it and <b>Paste</b> that code here in <b>Location on Map</b>.</li>\n </ol>', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2408, 0, 'en', 'labels', 'backend.general_settings.contact.title', 'Contact', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2409, 0, 'en', 'labels', 'backend.general_settings.contact.primary_email_note', 'This email will be used to correspond \"Contact Us\" emails', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2410, 0, 'en', 'labels', 'backend.general_settings.footer.short_description', 'Short Description', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2411, 0, 'en', 'labels', 'backend.general_settings.footer.popular_categories', 'Popular categories', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2412, 0, 'en', 'labels', 'backend.general_settings.footer.featured_courses', 'Featured courses', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2413, 0, 'en', 'labels', 'backend.general_settings.footer.trending_courses', 'Trending courses', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2414, 0, 'en', 'labels', 'backend.general_settings.footer.popular_courses', 'Popular courses', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2415, 0, 'en', 'labels', 'backend.general_settings.footer.custom_links', 'Custom Links', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2416, 0, 'en', 'labels', 'backend.general_settings.footer.social_links', 'Social Links', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2417, 0, 'en', 'labels', 'backend.general_settings.footer.link_url', 'URL', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2418, 0, 'en', 'labels', 'backend.general_settings.footer.social_links_note', 'Add social link URL and select Icon for that media from iconpicker. Click on <b>ADD +</b> button. And your social link will be created. You can also delete them by clicking on <b><i class=\"fa fa-times\"></i></b> button', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2419, 0, 'en', 'labels', 'backend.general_settings.footer.newsletter_form', 'Newsletter Form', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2420, 0, 'en', 'labels', 'backend.general_settings.footer.bottom_footer', 'Bottom Footer', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2421, 0, 'en', 'labels', 'backend.general_settings.footer.bottom_footer_note', 'Note : it includes Copyright text and Footer links', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2422, 0, 'en', 'labels', 'backend.general_settings.footer.copyright_text', 'Copyright Text', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2423, 0, 'en', 'labels', 'backend.general_settings.footer.footer_links', 'Footer Links', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2424, 0, 'en', 'labels', 'backend.general_settings.footer.link_label', 'Label', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2425, 0, 'en', 'labels', 'backend.general_settings.footer.link', 'Link', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2426, 0, 'en', 'labels', 'backend.general_settings.footer.title', 'Footer', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2427, 0, 'en', 'labels', 'backend.general_settings.footer.section_1', 'Section 1', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2428, 0, 'en', 'labels', 'backend.general_settings.footer.section_2', 'Section 2', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2429, 0, 'en', 'labels', 'backend.general_settings.footer.section_3', 'Section 3', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2430, 0, 'en', 'labels', 'backend.general_settings.footer.recent_news', 'Recent News', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2431, 0, 'en', 'labels', 'backend.general_settings.logos.title', 'Logos', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2432, 0, 'en', 'labels', 'backend.general_settings.layout.title', 'Layout', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2433, 0, 'en', 'labels', 'backend.general_settings.email.title', 'Mail Configuration', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2434, 0, 'en', 'labels', 'backend.general_settings.email.mail_from_name', 'Mail From Name', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2435, 0, 'en', 'labels', 'backend.general_settings.email.mail_from_name_note', 'This will be display name for your sent email.', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2436, 0, 'en', 'labels', 'backend.general_settings.email.mail_from_address', 'Mail From Address', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2437, 0, 'en', 'labels', 'backend.general_settings.email.mail_from_address_note', 'This email will be used for \"Contact Form\" correspondence.', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2438, 0, 'en', 'labels', 'backend.general_settings.email.mail_driver', 'Mail Driver', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2439, 0, 'en', 'labels', 'backend.general_settings.email.mail_driver_note', 'You can select any driver you want for your Mail setup. <b>Ex. SMTP, Mailgun, Mandrill, SparkPost, Amazon SES etc.</b><br> Add <b>single driver only</b>.', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2440, 0, 'en', 'labels', 'backend.general_settings.email.mail_host', 'Mail HOST', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2441, 0, 'en', 'labels', 'backend.general_settings.email.mail_port', 'Mail PORT', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2442, 0, 'en', 'labels', 'backend.general_settings.email.mail_username', 'Mail Username', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2443, 0, 'en', 'labels', 'backend.general_settings.email.mail_username_note', 'Add your email id you want to configure for sending emails', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2444, 0, 'en', 'labels', 'backend.general_settings.email.mail_password', 'Mail Password', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2445, 0, 'en', 'labels', 'backend.general_settings.email.mail_password_note', 'Add your email password you want to configure for sending emails', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2446, 0, 'en', 'labels', 'backend.general_settings.email.mail_encryption', 'Mail Encryption', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2447, 0, 'en', 'labels', 'backend.general_settings.email.mail_encryption_note', 'Use <b>tls</b> if your site uses <b>HTTP</b> protocol and <b>ssl</b> if you site uses <b>HTTPS</b> protocol', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2448, 0, 'en', 'labels', 'backend.general_settings.email.note', '<b>Important Note</b> : IF you are using <b>GMAIL</b> for Mail configuration, make sure you have completed following process before updating:\n <ul>\n<li>Go to <a target=\"_blank\" href=\"https://myaccount.google.com/security\">My Account</a> from your Google Account you want to configure and Login</li>\n<li>Scroll down to <b>Less secure app access</b> and set it <b>ON</b></li>\n</ul>', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2449, 0, 'en', 'labels', 'backend.general_settings.payment_settings.title', 'Payment Configuration', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2450, 0, 'en', 'labels', 'backend.general_settings.payment_settings.select_currency', 'Select Currency', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2451, 0, 'en', 'labels', 'backend.general_settings.payment_settings.stripe', 'Stripe Payment Method', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2452, 0, 'en', 'labels', 'backend.general_settings.payment_settings.stripe_note', 'Enables payments in site with Debit / Credit Cards', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2453, 0, 'en', 'labels', 'backend.general_settings.payment_settings.paypal', 'Paypal Payment Method', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2454, 0, 'en', 'labels', 'backend.general_settings.payment_settings.paypal_note', 'Redirects to paypal for payment', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2455, 0, 'en', 'labels', 'backend.general_settings.payment_settings.offline_mode', 'Offline Payment Method', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2456, 0, 'en', 'labels', 'backend.general_settings.payment_settings.offline_mode_note', 'User gets assistance for offline payment via admin', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2457, 0, 'en', 'labels', 'backend.general_settings.payment_settings.key', 'API Key', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2458, 0, 'en', 'labels', 'backend.general_settings.payment_settings.secret', 'API Secret', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2459, 0, 'en', 'labels', 'backend.general_settings.payment_settings.client_id', 'Client ID', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2460, 0, 'en', 'labels', 'backend.general_settings.payment_settings.client_secret', 'Secret', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2461, 0, 'en', 'labels', 'backend.general_settings.payment_settings.mode', 'Mode', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2462, 0, 'en', 'labels', 'backend.general_settings.payment_settings.sandbox', 'Sandbox', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2463, 0, 'en', 'labels', 'backend.general_settings.payment_settings.live', 'Live', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2464, 0, 'en', 'labels', 'backend.general_settings.payment_settings.how_to_stripe', 'How to get STRIPE API Credentials?', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2465, 0, 'en', 'labels', 'backend.general_settings.payment_settings.how_to_paypal', 'How to get PayPal API Credentials?', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2466, 0, 'en', 'labels', 'backend.general_settings.payment_settings.mode_note', '<b>Sandbox</b>= Will be used for testing payments with PayPal Test Credentials. Account with USD only can make payments with PayPal for now. This options will redirect to test PayPal payment with Sandbox User Credentials. It will be used for dummy transactions only.<br>\n<b>Live</b> = Will be used with you Live PayPal credentials to make actual transaction with normal users with PayPal account.', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2467, 0, 'en', 'labels', 'backend.general_settings.payment_settings.bluesnap', 'Bluesnap Payment Method', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2468, 0, 'en', 'labels', 'backend.general_settings.payment_settings.bluesnap_note', 'Bluesnap card form for payment', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2469, 0, 'en', 'labels', 'backend.general_settings.payment_settings.how_to_bluesnap', 'How to get Bluesnap API Credentials?', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2470, 0, 'en', 'labels', 'backend.general_settings.management', 'General Settings', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2471, 0, 'en', 'labels', 'backend.general_settings.app_name', 'App Name', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2472, 0, 'en', 'labels', 'backend.general_settings.app_url', 'App URL', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2473, 0, 'en', 'labels', 'backend.general_settings.lesson_note', 'Enable / Disable if user will be able to skip before timer is over.', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2474, 0, 'en', 'labels', 'backend.general_settings.font_color', 'Font Color', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2475, 0, 'en', 'labels', 'backend.general_settings.static', 'Static', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2476, 0, 'en', 'labels', 'backend.general_settings.google_analytics_id', 'Google Analytics ID', '2019-09-12 23:34:14', '2020-05-14 12:20:11'), (2477, 0, 'en', 'labels', 'backend.general_settings.google_analytics_id_note', 'How to get Google Analytics ID?', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2478, 0, 'en', 'labels', 'backend.general_settings.database', 'Database / Real', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2479, 0, 'en', 'labels', 'backend.general_settings.counter', 'Counter', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2480, 0, 'en', 'labels', 'backend.general_settings.counter_note', '<b>Static</b> = Manually add data for counter. Please enter exact text you want to display on frontend counter section,<br> <b>Database/Real</b> = It will take real data from database for all the fields (Students enrolled, Total Courses, Total Teachers)', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2481, 0, 'en', 'labels', 'backend.general_settings.total_students', 'Enter Total Students. Ex: 1K, 1Million, 1000 etc.', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2482, 0, 'en', 'labels', 'backend.general_settings.total_courses', 'Enter Total Courses. Ex: 1K, 1000 etc.', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2483, 0, 'en', 'labels', 'backend.general_settings.total_teachers', 'Enter Total Teachers. Ex: 1K, 1000 etc.', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2484, 0, 'en', 'labels', 'backend.general_settings.layout_type', 'Layout Type', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2485, 0, 'en', 'labels', 'backend.general_settings.theme_layout', 'Theme Layout', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2486, 0, 'en', 'labels', 'backend.general_settings.layout_note', 'This will change frontend theme layout', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2487, 0, 'en', 'labels', 'backend.general_settings.show_offers_note', 'Enable / Disable if Coupon offers page link to be displayed in bottom footer', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2488, 0, 'en', 'labels', 'backend.general_settings.newsletter.mail_provider', 'Mail Service Provider', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2489, 0, 'en', 'labels', 'backend.general_settings.newsletter.mailchimp', 'Mailchimp', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2490, 0, 'en', 'labels', 'backend.general_settings.newsletter.sendgrid', 'SendGrid', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2491, 0, 'en', 'labels', 'backend.general_settings.newsletter.mail_provider_note', '<b>Note </b>: You can select any Mail service provider to receive all the emails which are being used to <b>subscribe newsletter</b>.<br> Select and setup according to steps given. <b>It is compulsory</b>, if you want to use <b>newsletter subscription</b> form.', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2492, 0, 'en', 'labels', 'backend.general_settings.newsletter.api_key', 'API Key', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2493, 0, 'en', 'labels', 'backend.general_settings.newsletter.api_key_note', 'Generate <b>API key</b> from your <a target=\"_blank\" href=\"https://mailchimp.com/\"><b> Mailchimp account</b></a> and paste that in above text box.', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2494, 0, 'en', 'labels', 'backend.general_settings.newsletter.api_key_question', 'How to generate API key?', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2495, 0, 'en', 'labels', 'backend.general_settings.newsletter.list_id', 'List ID', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2496, 0, 'en', 'labels', 'backend.general_settings.newsletter.list_id_note', 'Find and paste <b>List ID</b> in above box', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2497, 0, 'en', 'labels', 'backend.general_settings.newsletter.list_id_question', 'How to find List ID from Mailchimp?', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2498, 0, 'en', 'labels', 'backend.general_settings.newsletter.double_opt_in', 'Double Opt-in', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2499, 0, 'en', 'labels', 'backend.general_settings.newsletter.double_opt_in_note', '<b>On</b> = User will be asked in mail to opt in for subscription. <b>Off</b> = User will be directly subscribed for newsletter ', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2500, 0, 'en', 'labels', 'backend.general_settings.newsletter.api_key_note_sendgrid', 'Generate <b>API key</b> from your <a target=\"_blank\" href=\"https://sendgrid.com/\"><b> SendGrid account</b></a> and paste that in above text box.', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2501, 0, 'en', 'labels', 'backend.general_settings.newsletter.get_lists', 'Get Lists', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2502, 0, 'en', 'labels', 'backend.general_settings.newsletter.sendgrid_lists', 'SendGrid Email Lists', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2503, 0, 'en', 'labels', 'backend.general_settings.newsletter.select_list', 'Select List', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2504, 0, 'en', 'labels', 'backend.general_settings.newsletter.manage_lists', 'Manage SendGrid Lists', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2505, 0, 'en', 'labels', 'backend.general_settings.newsletter.create_new', 'Create and Select New', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2506, 0, 'en', 'labels', 'backend.general_settings.newsletter.title', 'Newsletter Configuration', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2507, 0, 'en', 'labels', 'backend.general_settings.newsletter.list_id_question_sendgrid', 'Create new Email list for SendGrid Here.', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2508, 0, 'en', 'labels', 'backend.general_settings.mail_configuration_note', 'Have you configured :link Mail Settings</a>? It is compulsory to setup to send/receive emails', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2509, 0, 'en', 'labels', 'backend.general_settings.app_locale', 'App Locale', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2510, 0, 'en', 'labels', 'backend.general_settings.app_timezone', 'App Timezone', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2511, 0, 'en', 'labels', 'backend.general_settings.mail_driver', 'Mail Driver', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2512, 0, 'en', 'labels', 'backend.general_settings.mail_host', 'Mail Host', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2513, 0, 'en', 'labels', 'backend.general_settings.mail_port', 'Mail Port', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2514, 0, 'en', 'labels', 'backend.general_settings.mail_from_name', 'Mail From Name', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2515, 0, 'en', 'labels', 'backend.general_settings.mail_from_address', 'Mail From Address', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2516, 0, 'en', 'labels', 'backend.general_settings.mail_username', 'Mail Username', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2517, 0, 'en', 'labels', 'backend.general_settings.mail_password', 'Mail Password', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2518, 0, 'en', 'labels', 'backend.general_settings.enable_registration', 'Enable Registration', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2519, 0, 'en', 'labels', 'backend.general_settings.change_email', 'Change Email', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2520, 0, 'en', 'labels', 'backend.general_settings.password_history', 'Password History', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2521, 0, 'en', 'labels', 'backend.general_settings.password_expires_days', 'Password Expires Days', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2522, 0, 'en', 'labels', 'backend.general_settings.requires_approval', 'Requires Approval', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2523, 0, 'en', 'labels', 'backend.general_settings.confirm_email', 'Confirm Email', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2524, 0, 'en', 'labels', 'backend.general_settings.homepage', 'Select Homepage', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2525, 0, 'en', 'labels', 'backend.general_settings.captcha_status', 'Captcha Status', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2526, 0, 'en', 'labels', 'backend.general_settings.captcha_site_key', 'Captcha Key', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2527, 0, 'en', 'labels', 'backend.general_settings.captcha_site_secret', 'Captcha Secret', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2528, 0, 'en', 'labels', 'backend.general_settings.google_analytics', 'Google Analytics Code', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2529, 0, 'en', 'labels', 'backend.general_settings.sections_note', 'Once you click on update, you will see list of sections to on/off.', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2530, 0, 'en', 'labels', 'backend.general_settings.general.title', 'General', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2531, 0, 'en', 'labels', 'backend.general_settings.captcha', 'Whether the registration - login captcha is on or off', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2532, 0, 'en', 'labels', 'backend.general_settings.captcha_note', 'How to get Google reCaptcha credentials?', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2533, 0, 'en', 'labels', 'backend.general_settings.retest_note', 'Enable / Disable if user will be able to give retest for same exam', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2534, 0, 'en', 'labels', 'backend.general_settings.language_settings.title', 'Language Settings', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2535, 0, 'en', 'labels', 'backend.general_settings.language_settings.default_language', 'Default Language', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2536, 0, 'en', 'labels', 'backend.general_settings.language_settings.right_to_left', 'Right to Left', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2537, 0, 'en', 'labels', 'backend.general_settings.language_settings.left_to_right', 'Left to right', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2538, 0, 'en', 'labels', 'backend.general_settings.language_settings.display_type', 'Display Type', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2539, 0, 'en', 'labels', 'backend.general_settings.user_registration_settings.title', 'User Registration Settings', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2540, 0, 'en', 'labels', 'backend.general_settings.user_registration_settings.desc', 'Checked fields from the right sidebar will be displayed in registration form', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2541, 0, 'en', 'labels', 'backend.general_settings.user_registration_settings.fields.first_name', 'First Name', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2542, 0, 'en', 'labels', 'backend.general_settings.user_registration_settings.fields.last_name', 'Last Name', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2543, 0, 'en', 'labels', 'backend.general_settings.user_registration_settings.fields.email', 'Email', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2544, 0, 'en', 'labels', 'backend.general_settings.user_registration_settings.fields.password', 'Password', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2545, 0, 'en', 'labels', 'backend.general_settings.user_registration_settings.fields.phone', 'Phone', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2546, 0, 'en', 'labels', 'backend.general_settings.user_registration_settings.fields.dob', 'Date of Birth', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2547, 0, 'en', 'labels', 'backend.general_settings.user_registration_settings.fields.gender', 'Gender', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2548, 0, 'en', 'labels', 'backend.general_settings.user_registration_settings.fields.male', 'Male', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2549, 0, 'en', 'labels', 'backend.general_settings.user_registration_settings.fields.female', 'Female', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2550, 0, 'en', 'labels', 'backend.general_settings.user_registration_settings.fields.other', 'Other', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2551, 0, 'en', 'labels', 'backend.general_settings.user_registration_settings.fields.address', 'Address', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2552, 0, 'en', 'labels', 'backend.general_settings.user_registration_settings.fields.pincode', 'Pincode', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2553, 0, 'en', 'labels', 'backend.general_settings.user_registration_settings.fields.country', 'Country', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2554, 0, 'en', 'labels', 'backend.general_settings.user_registration_settings.fields.state', 'State', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2555, 0, 'en', 'labels', 'backend.general_settings.user_registration_settings.fields.city', 'City', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2556, 0, 'en', 'labels', 'backend.general_settings.troubleshoot', 'Troubleshoot', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2557, 0, 'en', 'labels', 'backend.general_settings.onesignal_note', 'Enable / Disble OneSignal configuration for Website.', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2558, 0, 'en', 'labels', 'backend.general_settings.how_to_onesignal', 'How to create app in OneSignal?', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2559, 0, 'en', 'labels', 'backend.general_settings.setup_onesignal', 'How to set up OneSignal?', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2560, 0, 'en', 'labels', 'backend.logo.logo_b', 'Logo 1', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2561, 0, 'en', 'labels', 'backend.logo.logo_b_note', 'Note : Upload logo with <b>black text and transparent background in .png format</b> and <b>294x50</b>(WxH) pixels.<br> <b>Height</b> should be fixed, <b>width</b> according to your <b>aspect ratio</b>.', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2562, 0, 'en', 'labels', 'backend.logo.logo_w', 'Logo 2', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2563, 0, 'en', 'labels', 'backend.logo.logo_w_note', 'Note : Upload logo with <b>white text and transparent background in .png format</b> and <b>294x50</b> (WxH) pixels.<br> <b>Height</b> should be fixed, <b>width</b> according to your <b>aspect ratio</b>.', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2564, 0, 'en', 'labels', 'backend.logo.logo_white', 'Logo 3', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2565, 0, 'en', 'labels', 'backend.logo.logo_white_note', 'Note : Upload logo with <b>only in white text and transparent background in .png format</b> and <b>294x50</b>(WxH) pixels.<br> <b>Height</b> should be fixed, <b>width</b> according to your <b>aspect ratio</b>.', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2566, 0, 'en', 'labels', 'backend.logo.logo_popup', 'Logo for Popups', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2567, 0, 'en', 'labels', 'backend.logo.logo_popup_note', 'Note : Add square logo minimum resolution <b>72x72</b> pixels', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2568, 0, 'en', 'labels', 'backend.logo.favicon', 'Add Favicon', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2569, 0, 'en', 'labels', 'backend.logo.favicon_note', 'Note : Upload logo with resolution <b>32x32</b> pixels and extension <b>.png</b> or <b>.gif</b> or <b>.ico</b>', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2570, 0, 'en', 'labels', 'backend.logo.title', 'Change Logo', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2571, 0, 'en', 'labels', 'backend.social_settings.management', 'Social Settings', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2572, 0, 'en', 'labels', 'backend.social_settings.fb_note', 'Enable / disable facebook login for website', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2573, 0, 'en', 'labels', 'backend.social_settings.fb_api_note', 'How to get Facebook API Credentials?', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2574, 0, 'en', 'labels', 'backend.social_settings.google_api_note', 'How to get Google API Credentials?', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2575, 0, 'en', 'labels', 'backend.social_settings.twitter_api_note', 'How to get Twitter API Credentials?', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2576, 0, 'en', 'labels', 'backend.social_settings.google_note', 'Enable / disable Google login for website', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2577, 0, 'en', 'labels', 'backend.social_settings.twitter_note', 'Enable / disable Twitter login for website', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2578, 0, 'en', 'labels', 'backend.social_settings.linkedin_api_note', 'How to get LinkedIn API Credentials?', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2579, 0, 'en', 'labels', 'backend.social_settings.linkedin_note', 'Enable / disable LinkedIn login for website', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2580, 0, 'en', 'labels', 'backend.hero_slider.fields.name', 'Name', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2581, 0, 'en', 'labels', 'backend.hero_slider.fields.bg_image', 'BG Image', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2582, 0, 'en', 'labels', 'backend.hero_slider.fields.overlay.title', 'Overlay', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2583, 0, 'en', 'labels', 'backend.hero_slider.fields.overlay.note', 'If you turn it on. A black overlay will be displayed on your image. It will be helpful when BG image is not darker or does not have Overlay', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2584, 0, 'en', 'labels', 'backend.hero_slider.fields.hero_text', 'Hero Text', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2585, 0, 'en', 'labels', 'backend.hero_slider.fields.sub_text', 'Sub Text', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2586, 0, 'en', 'labels', 'backend.hero_slider.fields.widget.title', 'Widget', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2587, 0, 'en', 'labels', 'backend.hero_slider.fields.widget.input_date_time', 'Input date and time', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2588, 0, 'en', 'labels', 'backend.hero_slider.fields.widget.select_widget', 'Select Widget', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2589, 0, 'en', 'labels', 'backend.hero_slider.fields.widget.search_bar', 'Search Bar', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2590, 0, 'en', 'labels', 'backend.hero_slider.fields.widget.countdown_timer', 'Countdown Timer', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2591, 0, 'en', 'labels', 'backend.hero_slider.fields.buttons.title', 'Buttons', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2592, 0, 'en', 'labels', 'backend.hero_slider.fields.buttons.add', 'Add', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2593, 0, 'en', 'labels', 'backend.hero_slider.fields.buttons.placeholder', 'Add number of buttons you want to add', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2594, 0, 'en', 'labels', 'backend.hero_slider.fields.buttons.note', 'Note: Maximum 4 buttons can be added. Please add label and link for the button for redirecting action when button is clicked.', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2595, 0, 'en', 'labels', 'backend.hero_slider.fields.buttons.name', 'Button', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2596, 0, 'en', 'labels', 'backend.hero_slider.fields.buttons.label', 'Label', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2597, 0, 'en', 'labels', 'backend.hero_slider.fields.buttons.link', 'Link', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2598, 0, 'en', 'labels', 'backend.hero_slider.fields.sequence', 'Sequence', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2599, 0, 'en', 'labels', 'backend.hero_slider.fields.status', 'Status', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2600, 0, 'en', 'labels', 'backend.hero_slider.note', 'Note: Please upload .jpg or .png in <b>1920x900</b> resolution for best result. Use darker or Overlayed images for better result.', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2601, 0, 'en', 'labels', 'backend.hero_slider.on', 'On', '2019-09-12 23:34:15', '2020-05-14 12:20:11'), (2602, 0, 'en', 'labels', 'backend.hero_slider.off', 'Off', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2603, 0, 'en', 'labels', 'backend.hero_slider.title', 'Hero Slider', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2604, 0, 'en', 'labels', 'backend.hero_slider.create', 'Create Slide', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2605, 0, 'en', 'labels', 'backend.hero_slider.edit', 'Edit Slide', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2606, 0, 'en', 'labels', 'backend.hero_slider.view', 'View Slides', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2607, 0, 'en', 'labels', 'backend.hero_slider.manage_sequence', 'Manage Sequence of Slides', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2608, 0, 'en', 'labels', 'backend.hero_slider.sequence_note', 'Drag and change sequence of a Slide', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2609, 0, 'en', 'labels', 'backend.hero_slider.save_sequence', 'Save Sequence', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2610, 0, 'en', 'labels', 'backend.tax.title', 'Tax', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2611, 0, 'en', 'labels', 'backend.tax.create', 'Create Tax', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2612, 0, 'en', 'labels', 'backend.tax.edit', 'Edit Tax', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2613, 0, 'en', 'labels', 'backend.tax.view', 'View Tax', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2614, 0, 'en', 'labels', 'backend.tax.on', 'On', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2615, 0, 'en', 'labels', 'backend.tax.off', 'Off', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2616, 0, 'en', 'labels', 'backend.tax.fields.name', 'Name', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2617, 0, 'en', 'labels', 'backend.tax.fields.rate', 'Rate', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2618, 0, 'en', 'labels', 'backend.tax.fields.status', 'Status', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2619, 0, 'en', 'labels', 'backend.coupons.title', 'Coupons', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2620, 0, 'en', 'labels', 'backend.coupons.create', 'Create Coupon', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2621, 0, 'en', 'labels', 'backend.coupons.edit', 'Edit Coupon', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2622, 0, 'en', 'labels', 'backend.coupons.view', 'View Coupons', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2623, 0, 'en', 'labels', 'backend.coupons.courses', 'Courses', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2624, 0, 'en', 'labels', 'backend.coupons.bundles', 'Bundles', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2625, 0, 'en', 'labels', 'backend.coupons.on', 'On', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2626, 0, 'en', 'labels', 'backend.coupons.off', 'Off', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2627, 0, 'en', 'labels', 'backend.coupons.flat_rate', 'Flat Rate', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2628, 0, 'en', 'labels', 'backend.coupons.discount_rate', 'Discount Rate', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2629, 0, 'en', 'labels', 'backend.coupons.type_note', '<b>Discount Rate (%) :</b> If you will select this, it will apply rate in % to total purchase. Ex. Price = $100 and Discount rate is 10% then 10% of 100$ will be deducted.<br><b>Flat Rate : </b>If you select this, particular amount will be deducted from total purchase. Ex. Price = 100$ and Flat rate is 25$ then 25$ will be deducted from 100$.', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2630, 0, 'en', 'labels', 'backend.coupons.amount_note', 'If <b>Discount Rate</b> selected, input rate of percentage. If <b>Flat Rate</b> selected, input particular amount to be deducted.', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2631, 0, 'en', 'labels', 'backend.coupons.per_user_limit_note', 'Specify how many times a single user can use this coupon. By default one time use.', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2632, 0, 'en', 'labels', 'backend.coupons.total_note', 'Number of coupons to be issued', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2633, 0, 'en', 'labels', 'backend.coupons.fields.name', 'Name', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2634, 0, 'en', 'labels', 'backend.coupons.fields.code', 'Code', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2635, 0, 'en', 'labels', 'backend.coupons.fields.type', 'Type', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2636, 0, 'en', 'labels', 'backend.coupons.fields.for', 'For', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2637, 0, 'en', 'labels', 'backend.coupons.fields.amount', 'Amount', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2638, 0, 'en', 'labels', 'backend.coupons.fields.expires_at', 'Expires At', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2639, 0, 'en', 'labels', 'backend.coupons.fields.per_user_limit', 'Per User Limit', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2640, 0, 'en', 'labels', 'backend.coupons.fields.total', 'Total', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2641, 0, 'en', 'labels', 'backend.coupons.fields.status', 'Status', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2642, 0, 'en', 'labels', 'backend.coupons.fields.min_price', 'Minimum Order Price', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2643, 0, 'en', 'labels', 'backend.coupons.fields.description', 'Description', '2019-09-12 23:34:16', '2020-05-14 12:20:11'); INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES (2644, 0, 'en', 'labels', 'backend.coupons.description', 'Description', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2645, 0, 'en', 'labels', 'backend.coupons.unlimited', 'Unlimited', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2646, 0, 'en', 'labels', 'backend.sponsors.title', 'Sponsors', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2647, 0, 'en', 'labels', 'backend.sponsors.fields.name', 'Name', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2648, 0, 'en', 'labels', 'backend.sponsors.fields.link', 'Link', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2649, 0, 'en', 'labels', 'backend.sponsors.fields.logo', 'Logo', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2650, 0, 'en', 'labels', 'backend.sponsors.fields.status', 'Status', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2651, 0, 'en', 'labels', 'backend.sponsors.create', 'Create Sponsors', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2652, 0, 'en', 'labels', 'backend.sponsors.edit', 'Edit Sponsors', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2653, 0, 'en', 'labels', 'backend.sponsors.view', 'View Sponsors', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2654, 0, 'en', 'labels', 'backend.teachers.fields.first_name', 'First Name', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2655, 0, 'en', 'labels', 'backend.teachers.fields.last_name', 'Last Name', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2656, 0, 'en', 'labels', 'backend.teachers.fields.email', 'Email Address', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2657, 0, 'en', 'labels', 'backend.teachers.fields.password', 'Password', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2658, 0, 'en', 'labels', 'backend.teachers.fields.image', 'Image', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2659, 0, 'en', 'labels', 'backend.teachers.fields.status', 'Status', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2660, 0, 'en', 'labels', 'backend.teachers.title', 'Teachers', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2661, 0, 'en', 'labels', 'backend.teachers.create', 'Create Teacher', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2662, 0, 'en', 'labels', 'backend.teachers.edit', 'Edit Teacher', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2663, 0, 'en', 'labels', 'backend.teachers.view', 'View Teachers', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2664, 0, 'en', 'labels', 'backend.testimonials.fields.name', 'Name', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2665, 0, 'en', 'labels', 'backend.testimonials.fields.occupation', 'Occupation', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2666, 0, 'en', 'labels', 'backend.testimonials.fields.content', 'Content', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2667, 0, 'en', 'labels', 'backend.testimonials.fields.status', 'Status', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2668, 0, 'en', 'labels', 'backend.testimonials.title', 'Testimonials', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2669, 0, 'en', 'labels', 'backend.testimonials.create', 'Create Testimonial', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2670, 0, 'en', 'labels', 'backend.testimonials.edit', 'Edit Testimonial', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2671, 0, 'en', 'labels', 'backend.testimonials.view', 'View Testimonials', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2672, 0, 'en', 'labels', 'backend.dashboard.title', 'Dashboard', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2673, 0, 'en', 'labels', 'backend.dashboard.students', 'Students', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2674, 0, 'en', 'labels', 'backend.dashboard.trending', 'Trending', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2675, 0, 'en', 'labels', 'backend.dashboard.teachers', 'Teachers', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2676, 0, 'en', 'labels', 'backend.dashboard.completed', 'Completed', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2677, 0, 'en', 'labels', 'backend.dashboard.no_data', 'No data available', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2678, 0, 'en', 'labels', 'backend.dashboard.buy_course_now', 'Buy course now', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2679, 0, 'en', 'labels', 'backend.dashboard.your_courses', 'Your Courses', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2680, 0, 'en', 'labels', 'backend.dashboard.students_enrolled', 'Students Enrolled To<br> Your Courses', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2681, 0, 'en', 'labels', 'backend.dashboard.recent_reviews', 'Recent Reviews', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2682, 0, 'en', 'labels', 'backend.dashboard.recent_orders', 'Recent Orders', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2683, 0, 'en', 'labels', 'backend.dashboard.recent_contacts', 'Recent Contacts', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2684, 0, 'en', 'labels', 'backend.dashboard.view_all', 'View All', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2685, 0, 'en', 'labels', 'backend.dashboard.course', 'Course', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2686, 0, 'en', 'labels', 'backend.dashboard.review', 'Review', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2687, 0, 'en', 'labels', 'backend.dashboard.time', 'Time', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2688, 0, 'en', 'labels', 'backend.dashboard.recent_messages', 'Recent Messages', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2689, 0, 'en', 'labels', 'backend.dashboard.message', 'Message', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2690, 0, 'en', 'labels', 'backend.dashboard.message_by', 'Message By', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2691, 0, 'en', 'labels', 'backend.dashboard.courses', 'Courses', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2692, 0, 'en', 'labels', 'backend.dashboard.ordered_by', 'Ordered By', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2693, 0, 'en', 'labels', 'backend.dashboard.view', 'View', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2694, 0, 'en', 'labels', 'backend.dashboard.amount', 'Amount', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2695, 0, 'en', 'labels', 'backend.dashboard.recent_contact_requests', 'Recent Contact Requests', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2696, 0, 'en', 'labels', 'backend.dashboard.name', 'Name', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2697, 0, 'en', 'labels', 'backend.dashboard.email', 'Email', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2698, 0, 'en', 'labels', 'backend.dashboard.my_course_bundles', 'My Course Bundles', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2699, 0, 'en', 'labels', 'backend.dashboard.my_courses', 'My Courses', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2700, 0, 'en', 'labels', 'backend.dashboard.your_courses_and_bundles', 'Your Courses and Bundles', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2701, 0, 'en', 'labels', 'backend.dashboard.course_and_bundles', 'Course and Bundles', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2702, 0, 'en', 'labels', 'backend.dashboard.pending_orders', 'Pending Orders', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2703, 0, 'en', 'labels', 'backend.dashboard.pending', 'Pending', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2704, 0, 'en', 'labels', 'backend.dashboard.success', 'Success', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2705, 0, 'en', 'labels', 'backend.dashboard.failed', 'Failed', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2706, 0, 'en', 'labels', 'backend.questions_options.title', 'Questions Option', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2707, 0, 'en', 'labels', 'backend.questions_options.create', 'Create Option', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2708, 0, 'en', 'labels', 'backend.questions_options.edit', 'Edit Option', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2709, 0, 'en', 'labels', 'backend.questions_options.view', 'View Question Options', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2710, 0, 'en', 'labels', 'backend.questions_options.fields.course', 'Course', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2711, 0, 'en', 'labels', 'backend.questions_options.fields.lesson', 'Lesson', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2712, 0, 'en', 'labels', 'backend.questions_options.fields.title', 'Title', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2713, 0, 'en', 'labels', 'backend.questions_options.fields.question', 'Question', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2714, 0, 'en', 'labels', 'backend.questions_options.fields.question_option', 'Question Option', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2715, 0, 'en', 'labels', 'backend.questions_options.fields.score', 'Score', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2716, 0, 'en', 'labels', 'backend.questions_options.fields.tests', 'Tests', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2717, 0, 'en', 'labels', 'backend.questions_options.fields.option_text', 'Option Text', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2718, 0, 'en', 'labels', 'backend.questions_options.fields.correct', 'Correct', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2719, 0, 'en', 'labels', 'backend.reviews.title', 'Reviews', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2720, 0, 'en', 'labels', 'backend.reviews.fields.course', 'Course', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2721, 0, 'en', 'labels', 'backend.reviews.fields.user', 'User', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2722, 0, 'en', 'labels', 'backend.reviews.fields.content', 'Content', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2723, 0, 'en', 'labels', 'backend.reviews.fields.time', 'Time', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2724, 0, 'en', 'labels', 'backend.contacts.title', 'Leads', '2019-09-12 23:34:16', '2020-05-14 12:20:11'), (2725, 0, 'en', 'labels', 'backend.contacts.fields.name', 'Name', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2726, 0, 'en', 'labels', 'backend.contacts.fields.email', 'Email', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2727, 0, 'en', 'labels', 'backend.contacts.fields.phone', 'Phone', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2728, 0, 'en', 'labels', 'backend.contacts.fields.message', 'Message', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2729, 0, 'en', 'labels', 'backend.contacts.fields.time', 'Time', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2730, 0, 'en', 'labels', 'backend.translations.title', 'Translation Manager', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2731, 0, 'en', 'labels', 'backend.translations.warning', 'Warning, translations are not visible until they are exported back to the app/lang file, using\n <code>php artisan translation:export</code> command or publish button.', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2732, 0, 'en', 'labels', 'backend.translations.done_importing', 'Done importing, processed <strong class=\"counter\">N</strong> items! Reload this page to\n refresh the groups!', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2733, 0, 'en', 'labels', 'backend.translations.done_searching', 'Done searching for translations, found <strong class=\"counter\">N</strong> items!', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2734, 0, 'en', 'labels', 'backend.translations.done_publishing_for_group', 'Done publishing the translations for group', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2735, 0, 'en', 'labels', 'backend.translations.done_publishing_for_all_groups', 'Done publishing the translations for all group!', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2736, 0, 'en', 'labels', 'backend.translations.append_new_translations', 'Append new translations', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2737, 0, 'en', 'labels', 'backend.translations.replace_existing_translations', 'Replace existing translations', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2738, 0, 'en', 'labels', 'backend.translations.import_groups', 'Import Groups', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2739, 0, 'en', 'labels', 'backend.translations.import_groups_note', '<p>This will get all locale files from <code>lang</code> folder and insert into database.<br> <b>Append new translations :</b> It will append only new files and data <b>&</b>\n <b>Replace existing translations:</b>It will replace existing records according to files</p>', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2740, 0, 'en', 'labels', 'backend.translations.choose_a_group', 'Choose a group to display the group translations. If no groups are visible, make sure\n you have run the migrations and imported the translations.', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2741, 0, 'en', 'labels', 'backend.translations.translation_warning', 'Are you sure you want to publish the translations group :group ? This will overwrite existing language files', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2742, 0, 'en', 'labels', 'backend.translations.publishing', 'Publishing..', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2743, 0, 'en', 'labels', 'backend.translations.publish_translations', 'Publish Translations', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2744, 0, 'en', 'labels', 'backend.translations.total', 'Total', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2745, 0, 'en', 'labels', 'backend.translations.changed', 'Changed', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2746, 0, 'en', 'labels', 'backend.translations.key', 'Key', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2747, 0, 'en', 'labels', 'backend.translations.supported_locales', 'Supported Locales', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2748, 0, 'en', 'labels', 'backend.translations.current_supported_locales', 'Current Supported Locales', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2749, 0, 'en', 'labels', 'backend.translations.enter_new_locale_key', 'Enter new locale key', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2750, 0, 'en', 'labels', 'backend.translations.add_new_locale', 'Add new locale', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2751, 0, 'en', 'labels', 'backend.translations.adding', 'Adding...', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2752, 0, 'en', 'labels', 'backend.translations.export_all_translations', 'Export all translations', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2753, 0, 'en', 'labels', 'backend.translations.publish_all', 'Publish all', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2754, 0, 'en', 'labels', 'backend.translations.publish_all_warning', 'Are you sure you want to publish all translations group? This will overwrite existing language files.', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2755, 0, 'en', 'labels', 'backend.update.title', 'Update Theme', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2756, 0, 'en', 'labels', 'backend.update.upload', 'Upload new version <small>(update.zip)</small>', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2757, 0, 'en', 'labels', 'backend.update.current_version', 'Current Version', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2758, 0, 'en', 'labels', 'backend.update.note_before_upload_title', 'Read following notes before updating', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2759, 0, 'en', 'labels', 'backend.update.file_replaced', 'Following files will be updated / replaced', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2760, 0, 'en', 'labels', 'backend.update.warning', '<b>WARNING : We strongly recommend you to update theme by version number</b>.<br> <b>Example :</b> update_v1.zip, update_v2.zip. Please do not jump version number. If your version number is 1 and you want to update it, then update to version 2. Do no directly update to version 3.', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2761, 0, 'en', 'labels', 'backend.update.note_before_upload', '<p><b>Please take BACKUP before updating.</b> Updated zip file may come with new folders and file updates. <b>Your current files will be replaced with new one</b>. So, <b>if you have made any changes in current application files it will be LOST</b>.</p>\n <p>If you are directly uploading from below file input box, your files will be replaced. We strongly recommend you to do it manual replacement of files one by one or edit the changes by comparing your current edited file and new updated files.</p>\n <p>If you still have confusion. Please contact us, we will guide you to update your application</p>', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2762, 0, 'en', 'labels', 'backend.backup.title', 'Backup', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2763, 0, 'en', 'labels', 'backend.backup.email', 'Email Notification', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2764, 0, 'en', 'labels', 'backend.backup.app_token', 'App Token', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2765, 0, 'en', 'labels', 'backend.backup.app_secret', 'App Secret', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2766, 0, 'en', 'labels', 'backend.backup.api_key', 'API Key', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2767, 0, 'en', 'labels', 'backend.backup.app_key', 'App Key', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2768, 0, 'en', 'labels', 'backend.backup.api_secret', 'API Secret', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2769, 0, 'en', 'labels', 'backend.backup.enable_disable', 'Enable / Disable', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2770, 0, 'en', 'labels', 'backend.backup.backup_type', 'Backup Type', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2771, 0, 'en', 'labels', 'backend.backup.dropbox', 'Dropbox', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2772, 0, 'en', 'labels', 'backend.backup.backup_files', 'Backup Files', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2773, 0, 'en', 'labels', 'backend.backup.aws', 'AWS S3', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2774, 0, 'en', 'labels', 'backend.backup.db', 'Database', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2775, 0, 'en', 'labels', 'backend.backup.configuration', 'Configuration', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2776, 0, 'en', 'labels', 'backend.backup.generate_backup', 'Generate Backup', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2777, 0, 'en', 'labels', 'backend.backup.db_storage', 'Database and Storage files', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2778, 0, 'en', 'labels', 'backend.backup.db_app', 'Database and Application files', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2779, 0, 'en', 'labels', 'backend.backup.backup_schedule', 'Backup Schedule', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2780, 0, 'en', 'labels', 'backend.backup.daily', 'Daily', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2781, 0, 'en', 'labels', 'backend.backup.weekly', 'Weekly', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2782, 0, 'en', 'labels', 'backend.backup.monthly', 'Monthly', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2783, 0, 'en', 'labels', 'backend.backup.dropbox_note', 'Please checkout documentation for <b>How to obtain DropBox App Keys?</b>', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2784, 0, 'en', 'labels', 'backend.backup.region', 'Region', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2785, 0, 'en', 'labels', 'backend.backup.bucket_name', 'Bucket Name', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2786, 0, 'en', 'labels', 'backend.backup.backup_notice', 'Please refer documentation before beginning backup. It has every details step by step for creating backup with Dropbox.', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2787, 0, 'en', 'labels', 'backend.backup.backup_note', '<b>Note </b>: To run this backup properly you need to add following code to your <b>CRON TAB:</b><br><code>* * * * * cd /path-to-your-project && php artisan schedule:run >> /dev/null 2>&1</code>', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2788, 0, 'en', 'labels', 'backend.certificates.title', 'Certificates', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2789, 0, 'en', 'labels', 'backend.certificates.fields.course_name', 'Course Name', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2790, 0, 'en', 'labels', 'backend.certificates.fields.progress', 'Progress', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2791, 0, 'en', 'labels', 'backend.certificates.fields.action', 'Action', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2792, 0, 'en', 'labels', 'backend.certificates.view', 'View', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2793, 0, 'en', 'labels', 'backend.certificates.download', 'Download', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2794, 0, 'en', 'labels', 'backend.bundles.title', 'Bundles', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2795, 0, 'en', 'labels', 'backend.bundles.fields.published', 'Published', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2796, 0, 'en', 'labels', 'backend.bundles.fields.featured', 'Featured', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2797, 0, 'en', 'labels', 'backend.bundles.fields.trending', 'Trending', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2798, 0, 'en', 'labels', 'backend.bundles.fields.free', 'Free', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2799, 0, 'en', 'labels', 'backend.bundles.fields.popular', 'Popular', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2800, 0, 'en', 'labels', 'backend.bundles.fields.teachers', 'Teachers', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2801, 0, 'en', 'labels', 'backend.bundles.fields.category', 'Category', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2802, 0, 'en', 'labels', 'backend.bundles.fields.title', 'Title', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2803, 0, 'en', 'labels', 'backend.bundles.fields.slug', 'Slug', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2804, 0, 'en', 'labels', 'backend.bundles.fields.description', 'Description', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2805, 0, 'en', 'labels', 'backend.bundles.fields.price', 'Price', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2806, 0, 'en', 'labels', 'backend.bundles.fields.course_image', 'Course Image', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2807, 0, 'en', 'labels', 'backend.bundles.fields.start_date', 'Start Date', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2808, 0, 'en', 'labels', 'backend.bundles.fields.meta_title', 'Meta Title', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2809, 0, 'en', 'labels', 'backend.bundles.fields.meta_description', 'Meta Description', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2810, 0, 'en', 'labels', 'backend.bundles.fields.meta_keywords', 'Meta Keywords', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2811, 0, 'en', 'labels', 'backend.bundles.fields.sidebar', 'Add Sidebar', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2812, 0, 'en', 'labels', 'backend.bundles.fields.lessons.add', 'Add Lessons', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2813, 0, 'en', 'labels', 'backend.bundles.fields.lessons.view', 'View Lessons', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2814, 0, 'en', 'labels', 'backend.bundles.fields.course', 'Course', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2815, 0, 'en', 'labels', 'backend.bundles.fields.courses', 'Courses', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2816, 0, 'en', 'labels', 'backend.bundles.fields.status', 'Status', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2817, 0, 'en', 'labels', 'backend.bundles.add_courses', 'Add Courses', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2818, 0, 'en', 'labels', 'backend.bundles.add_teachers', 'Add Teachers', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2819, 0, 'en', 'labels', 'backend.bundles.add_categories', 'Add Categories', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2820, 0, 'en', 'labels', 'backend.bundles.slug_placeholder', 'Input slug or it will be generated automatically', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2821, 0, 'en', 'labels', 'backend.bundles.select_category', 'Select Category', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2822, 0, 'en', 'labels', 'backend.bundles.select_courses', 'Select Courses', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2823, 0, 'en', 'labels', 'backend.bundles.select_teachers', 'Select Teachers', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2824, 0, 'en', 'labels', 'backend.bundles.test', 'Test', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2825, 0, 'en', 'labels', 'backend.bundles.lesson', 'Lesson', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2826, 0, 'en', 'labels', 'backend.bundles.create', 'Create Bundle', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2827, 0, 'en', 'labels', 'backend.bundles.edit', 'Edit Bundle', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2828, 0, 'en', 'labels', 'backend.bundles.view', 'View Bundles', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2829, 0, 'en', 'labels', 'backend.bundles.category', 'Category', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2830, 0, 'en', 'labels', 'backend.bundles.save_timeline', 'Save timeline', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2831, 0, 'en', 'labels', 'backend.bundles.course_timeline', 'Course timeline', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2832, 0, 'en', 'labels', 'backend.bundles.timeline_description', 'Drag and change sequence of Lessons/Tests for course', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2833, 0, 'en', 'labels', 'backend.bundles.listing_note', 'Only Published Lessons and Tests will be Displayed and Sorted.', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2834, 0, 'en', 'labels', 'backend.reports.title', 'Reports', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2835, 0, 'en', 'labels', 'backend.reports.sales_report', 'Sales Report', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2836, 0, 'en', 'labels', 'backend.reports.students_report', 'Students Report', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2837, 0, 'en', 'labels', 'backend.reports.bundles', 'Bundles', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2838, 0, 'en', 'labels', 'backend.reports.courses', 'Courses', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2839, 0, 'en', 'labels', 'backend.reports.total_earnings', 'Total Earnings', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2840, 0, 'en', 'labels', 'backend.reports.total_sales', 'Total Sales', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2841, 0, 'en', 'labels', 'backend.reports.fields.name', 'Name', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2842, 0, 'en', 'labels', 'backend.reports.fields.orders', 'Orders', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2843, 0, 'en', 'labels', 'backend.reports.fields.earnings', 'Earnings', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2844, 0, 'en', 'labels', 'backend.reports.fields.course', 'Course', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2845, 0, 'en', 'labels', 'backend.reports.fields.user', 'User', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2846, 0, 'en', 'labels', 'backend.reports.fields.content', 'Content', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2847, 0, 'en', 'labels', 'backend.reports.fields.time', 'Time', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2848, 0, 'en', 'labels', 'backend.reports.fields.students', 'Students', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2849, 0, 'en', 'labels', 'backend.reports.fields.bundle', 'Bundle', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2850, 0, 'en', 'labels', 'backend.reports.fields.completed', 'Completed Course', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2851, 0, 'en', 'labels', 'backend.sitemap.title', 'Sitemap', '2019-09-12 23:34:17', '2020-05-14 12:20:11'), (2852, 0, 'en', 'labels', 'backend.sitemap.records_per_file', 'Records Per File', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2853, 0, 'en', 'labels', 'backend.sitemap.records_note', 'Number of records per file.', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2854, 0, 'en', 'labels', 'backend.sitemap.generated', 'Sitemap generated successfully.', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2855, 0, 'en', 'labels', 'backend.sitemap.generate', 'Generate', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2856, 0, 'en', 'labels', 'backend.sitemap.daily', 'Daily', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2857, 0, 'en', 'labels', 'backend.sitemap.weekly', 'Weekly', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2858, 0, 'en', 'labels', 'backend.sitemap.monthly', 'Monthly', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2859, 0, 'en', 'labels', 'backend.sitemap.sitemap_note', 'This sitemap tool will generate sitemap for published Course, Bundles and Blog.', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2860, 0, 'en', 'labels', 'backend.forum_category.title', 'Forum Categories', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2861, 0, 'en', 'labels', 'backend.forum_category.create', 'Create Forum Category', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2862, 0, 'en', 'labels', 'backend.forum_category.edit', 'Edit Forum Category', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2863, 0, 'en', 'labels', 'backend.forum_category.view', 'View Forum Category', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2864, 0, 'en', 'labels', 'backend.forum_category.on', 'On', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2865, 0, 'en', 'labels', 'backend.forum_category.off', 'Off', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2866, 0, 'en', 'labels', 'backend.forum_category.fields.parent_category', 'Parent Category', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2867, 0, 'en', 'labels', 'backend.forum_category.fields.category', 'Category', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2868, 0, 'en', 'labels', 'backend.forum_category.fields.order', 'Order', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2869, 0, 'en', 'labels', 'backend.forum_category.fields.color', 'Color', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2870, 0, 'en', 'labels', 'backend.forum_category.fields.status', 'Status', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2871, 0, 'en', 'labels', 'general.active', 'Active', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2872, 0, 'en', 'labels', 'general.inactive', 'Inactive', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2873, 0, 'en', 'labels', 'general.yes', 'Yes', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2874, 0, 'en', 'labels', 'general.no', 'No', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2875, 0, 'en', 'labels', 'general.none', 'None', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2876, 0, 'en', 'labels', 'general.back', 'Back', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2877, 0, 'en', 'labels', 'general.more', 'More', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2878, 0, 'en', 'labels', 'general.buttons.update', 'Update', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2879, 0, 'en', 'labels', 'general.buttons.cancel', 'Cancel', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2880, 0, 'en', 'labels', 'general.buttons.save', 'Save', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2881, 0, 'en', 'labels', 'general.toolbar_btn_groups', 'Toolbar with button groups', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2882, 0, 'en', 'labels', 'general.create_new', 'Create New', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2883, 0, 'en', 'labels', 'general.all', 'All', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2884, 0, 'en', 'labels', 'general.trash', 'Trash', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2885, 0, 'en', 'labels', 'general.delete', 'Delete', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2886, 0, 'en', 'labels', 'general.no_data_available', 'No data available', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2887, 0, 'en', 'labels', 'general.edit', 'Edit', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2888, 0, 'en', 'labels', 'general.copyright', 'Copyright', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2889, 0, 'en', 'labels', 'general.delete_selected', 'Delete Selected', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2890, 0, 'en', 'labels', 'general.custom', 'Custom', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2891, 0, 'en', 'labels', 'general.actions', 'Actions', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2892, 0, 'en', 'labels', 'general.hide', 'Hide', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2893, 0, 'en', 'labels', 'general.show', 'Show', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2894, 0, 'en', 'labels', 'general.toggle_navigation', 'Toggle Navigation', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2895, 0, 'en', 'labels', 'general.sr_no', 'Sr No.', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2896, 0, 'en', 'labels', 'general.read_more', 'Read More', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2897, 0, 'en', 'labels', 'frontend.auth.login_button', 'Login', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2898, 0, 'en', 'labels', 'frontend.auth.login_box_title', 'Login', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2899, 0, 'en', 'labels', 'frontend.auth.remember_me', 'Remember Me', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2900, 0, 'en', 'labels', 'frontend.auth.register_box_title', 'Register', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2901, 0, 'en', 'labels', 'frontend.auth.register_button', 'Register', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2902, 0, 'en', 'labels', 'frontend.auth.login_with', 'Login with :social_media', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2903, 0, 'en', 'labels', 'frontend.passwords.reset_password_box_title', 'Reset Password', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2904, 0, 'en', 'labels', 'frontend.passwords.send_password_reset_link_button', 'Send Password Reset Link', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2905, 0, 'en', 'labels', 'frontend.passwords.expired_password_box_title', 'Your password has expired.', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2906, 0, 'en', 'labels', 'frontend.passwords.update_password_button', 'Update Password', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2907, 0, 'en', 'labels', 'frontend.passwords.reset_password_button', 'Reset Password', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2908, 0, 'en', 'labels', 'frontend.passwords.forgot_password', 'Forgot Your Password?', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2909, 0, 'en', 'labels', 'frontend.blog.share_this_news', 'Share this news', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2910, 0, 'en', 'labels', 'frontend.blog.related_news', '<span>Related</span> News', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2911, 0, 'en', 'labels', 'frontend.blog.post_comments', 'Post <span>Comments.</span>', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2912, 0, 'en', 'labels', 'frontend.blog.write_a_comment', 'Write a Comment', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2913, 0, 'en', 'labels', 'frontend.blog.add_comment', 'Add Comment', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2914, 0, 'en', 'labels', 'frontend.blog.by', 'By', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2915, 0, 'en', 'labels', 'frontend.blog.title', 'Blog', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2916, 0, 'en', 'labels', 'frontend.blog.search_blog', 'Search Blog', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2917, 0, 'en', 'labels', 'frontend.blog.blog_categories', 'Blog <span>Categories.</span>', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2918, 0, 'en', 'labels', 'frontend.blog.popular_tags', 'Popular <span>Tags.</span>', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2919, 0, 'en', 'labels', 'frontend.blog.featured_course', 'Featured <span>Course.</span>', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2920, 0, 'en', 'labels', 'frontend.blog.login_to_post_comment', 'Login to Post a Comment', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2921, 0, 'en', 'labels', 'frontend.blog.no_comments_yet', 'No comments yet, Be the first to comment.', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2922, 0, 'en', 'labels', 'frontend.cart.payment_status', 'Payment Status', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2923, 0, 'en', 'labels', 'frontend.cart.payment_cards', 'Credit or Debit Card', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2924, 0, 'en', 'labels', 'frontend.cart.name_on_card_placeholder', 'Enter the name written on your card', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2925, 0, 'en', 'labels', 'frontend.cart.no_payment_method', 'No payment method available at this moment', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2926, 0, 'en', 'labels', 'frontend.cart.card_number_placeholder', 'Enter your card number', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2927, 0, 'en', 'labels', 'frontend.cart.cvv', 'CVV', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2928, 0, 'en', 'labels', 'frontend.cart.mm', 'MM', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2929, 0, 'en', 'labels', 'frontend.cart.yy', 'YY', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2930, 0, 'en', 'labels', 'frontend.cart.pay_now', 'Pay Now', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2931, 0, 'en', 'labels', 'frontend.cart.stripe_error_message', 'Please correct the errors and try again.', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2932, 0, 'en', 'labels', 'frontend.cart.paypal', 'PayPal', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2933, 0, 'en', 'labels', 'frontend.cart.pay_securely_paypal', 'Pay securely with PayPal', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2934, 0, 'en', 'labels', 'frontend.cart.offline_payment', 'Offline Payment', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2935, 0, 'en', 'labels', 'frontend.cart.offline_payment_note', 'In this payment method our executives will contact you and give you instructions regarding payment and course purchase.', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2936, 0, 'en', 'labels', 'frontend.cart.request_assistance', 'Request Assistance', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2937, 0, 'en', 'labels', 'frontend.cart.cart', 'Cart', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2938, 0, 'en', 'labels', 'frontend.cart.checkout', 'Checkout', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2939, 0, 'en', 'labels', 'frontend.cart.your_shopping_cart', 'Your Shopping Cart', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2940, 0, 'en', 'labels', 'frontend.cart.complete_your_purchases', 'Complete<span> Your Purchases.</span>', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2941, 0, 'en', 'labels', 'frontend.cart.order_item', 'Order <span>Item.</span>', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2942, 0, 'en', 'labels', 'frontend.cart.course_name', 'Course Name', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2943, 0, 'en', 'labels', 'frontend.cart.course_type', 'Course Type', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2944, 0, 'en', 'labels', 'frontend.cart.starts', 'Starts', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2945, 0, 'en', 'labels', 'frontend.cart.empty_cart', 'Your cart is empty', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2946, 0, 'en', 'labels', 'frontend.cart.order_payment', 'Order <span>Payment.</span>', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2947, 0, 'en', 'labels', 'frontend.cart.name_on_card', 'Name on Card', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2948, 0, 'en', 'labels', 'frontend.cart.card_number', 'Card Number', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2949, 0, 'en', 'labels', 'frontend.cart.expiration_date', 'Expiration Date', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2950, 0, 'en', 'labels', 'frontend.cart.confirmation_note', 'By confirming this purchase, I agree to the <b>Term of Use, Refund Policy</b> and <b>Privacy Policy</b>', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2951, 0, 'en', 'labels', 'frontend.cart.order_detail', 'Order <span>Detail.</span>', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2952, 0, 'en', 'labels', 'frontend.cart.total', 'Total', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2953, 0, 'en', 'labels', 'frontend.cart.your_payment_status', 'Your <span>Payment Status.</span>', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2954, 0, 'en', 'labels', 'frontend.cart.success_message', 'Congratulations. Enjoy your course', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2955, 0, 'en', 'labels', 'frontend.cart.see_more_courses', 'See More Courses', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2956, 0, 'en', 'labels', 'frontend.cart.go_back_to_cart', 'Go back to Cart', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2957, 0, 'en', 'labels', 'frontend.cart.product_name', 'Product Name', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2958, 0, 'en', 'labels', 'frontend.cart.product_type', 'Product Type', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2959, 0, 'en', 'labels', 'frontend.cart.product_added', 'Product added to cart successfully', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2960, 0, 'en', 'labels', 'frontend.cart.try_again', 'Error! Please Try again.', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2961, 0, 'en', 'labels', 'frontend.cart.payment_done', 'Payment done successfully !', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2962, 0, 'en', 'labels', 'frontend.cart.payment_failed', 'Error! Payment Failed!', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2963, 0, 'en', 'labels', 'frontend.cart.offline_request', 'Request received successfully! check your registered email for further details.', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2964, 0, 'en', 'labels', 'frontend.cart.purchase_successful', 'Congratulations! You\'ve purchased this course.', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2965, 0, 'en', 'labels', 'frontend.cart.unknown_error', 'Unknown error occurred', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2966, 0, 'en', 'labels', 'frontend.cart.connection_timeout', 'Connection Timeout', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2967, 0, 'en', 'labels', 'frontend.cart.sub_total', 'Sub Total', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2968, 0, 'en', 'labels', 'frontend.cart.apply', 'Apply', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2969, 0, 'en', 'labels', 'frontend.cart.items', 'items', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2970, 0, 'en', 'labels', 'frontend.cart.item', 'item', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2971, 0, 'en', 'labels', 'frontend.cart.offers', 'Offers', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2972, 0, 'en', 'labels', 'frontend.cart.empty_input', 'Write coupon code before applying', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2973, 0, 'en', 'labels', 'frontend.cart.invalid_coupon', 'Invalid Coupon!', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2974, 0, 'en', 'labels', 'frontend.cart.amount', 'Amount', '2019-09-12 23:34:18', '2020-05-14 12:20:11'), (2975, 0, 'en', 'labels', 'frontend.cart.total_payable', 'Total Payable', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (2976, 0, 'en', 'labels', 'frontend.cart.price', 'Price', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (2977, 0, 'en', 'labels', 'frontend.contact.title', 'Contact', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (2978, 0, 'en', 'labels', 'frontend.contact.your_name', 'Your Name', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (2979, 0, 'en', 'labels', 'frontend.contact.your_email', 'Your Email', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (2980, 0, 'en', 'labels', 'frontend.contact.phone_number', 'Phone Number', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (2981, 0, 'en', 'labels', 'frontend.contact.message', 'Message', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (2982, 0, 'en', 'labels', 'frontend.contact.box_title', 'Contact Us', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (2983, 0, 'en', 'labels', 'frontend.contact.button', 'Send Information', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (2984, 0, 'en', 'labels', 'frontend.contact.send_us_a_message', 'Send Us A<span> Message.</span>', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (2985, 0, 'en', 'labels', 'frontend.contact.keep_in_touch', 'Keep<span> In Touch.</span>', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (2986, 0, 'en', 'labels', 'frontend.contact.send_email', 'Send Email', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (2987, 0, 'en', 'labels', 'frontend.contact.send_message_now', 'Send Message Now', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (2988, 0, 'en', 'labels', 'frontend.badges.trending', 'Trending', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (2989, 0, 'en', 'labels', 'frontend.course.ratings', 'Ratings', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (2990, 0, 'en', 'labels', 'frontend.course.stars', 'Stars', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (2991, 0, 'en', 'labels', 'frontend.course.by', 'By', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (2992, 0, 'en', 'labels', 'frontend.course.no_reviews_yet', 'No reviews yet.', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (2993, 0, 'en', 'labels', 'frontend.course.add_to_cart', 'Add To Cart', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (2994, 0, 'en', 'labels', 'frontend.course.buy_note', 'Only Students Can Buy Course', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (2995, 0, 'en', 'labels', 'frontend.course.continue_course', 'Continue Course', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (2996, 0, 'en', 'labels', 'frontend.course.enrolled', 'Enrolled', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (2997, 0, 'en', 'labels', 'frontend.course.chapters', 'Chapters', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (2998, 0, 'en', 'labels', 'frontend.course.category', 'Category', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (2999, 0, 'en', 'labels', 'frontend.course.author', 'Author', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3000, 0, 'en', 'labels', 'frontend.course.courses', 'Courses', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3001, 0, 'en', 'labels', 'frontend.course.students', 'Students', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3002, 0, 'en', 'labels', 'frontend.course.give_test_again', 'Give Test Again', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3003, 0, 'en', 'labels', 'frontend.course.submit_results', 'Submit Results', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3004, 0, 'en', 'labels', 'frontend.course.chapter_videos', 'Chapter Videos', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3005, 0, 'en', 'labels', 'frontend.course.download_files', 'Download Files', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3006, 0, 'en', 'labels', 'frontend.course.mb', 'MB', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3007, 0, 'en', 'labels', 'frontend.course.prev', 'PREV', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3008, 0, 'en', 'labels', 'frontend.course.test', 'Test', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3009, 0, 'en', 'labels', 'frontend.course.completed', 'Completed', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3010, 0, 'en', 'labels', 'frontend.course.title', 'Course', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3011, 0, 'en', 'labels', 'frontend.course.course_details', '<span>Course Details.</span>', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3012, 0, 'en', 'labels', 'frontend.course.course_detail', 'Course Details', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3013, 0, 'en', 'labels', 'frontend.course.course_timeline', 'Course <b>Timeline:</b>', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3014, 0, 'en', 'labels', 'frontend.course.go', 'Go', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3015, 0, 'en', 'labels', 'frontend.course.course_reviews', 'Course <span>Reviews:</span>', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3016, 0, 'en', 'labels', 'frontend.course.average_rating', 'Average Rating', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3017, 0, 'en', 'labels', 'frontend.course.details', 'Details', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3018, 0, 'en', 'labels', 'frontend.course.add_reviews', 'Add <span>Reviews.</span>', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3019, 0, 'en', 'labels', 'frontend.course.your_rating', 'Your Rating', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3020, 0, 'en', 'labels', 'frontend.course.message', 'Message', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3021, 0, 'en', 'labels', 'frontend.course.add_review_now', 'Add Review Now', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3022, 0, 'en', 'labels', 'frontend.course.price', 'Price', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3023, 0, 'en', 'labels', 'frontend.course.added_to_cart', 'Added To Cart', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3024, 0, 'en', 'labels', 'frontend.course.buy_now', 'Buy Now', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3025, 0, 'en', 'labels', 'frontend.course.get_now', 'Get Now', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3026, 0, 'en', 'labels', 'frontend.course.recent_news', '<span>Recent </span>News.', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3027, 0, 'en', 'labels', 'frontend.course.view_all_news', 'View All News', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3028, 0, 'en', 'labels', 'frontend.course.featured_course', '<span>Featured</span> Course.', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3029, 0, 'en', 'labels', 'frontend.course.sort_by', '<b>Sort</b> By', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3030, 0, 'en', 'labels', 'frontend.course.popular', 'Popular', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3031, 0, 'en', 'labels', 'frontend.course.none', 'None', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3032, 0, 'en', 'labels', 'frontend.course.trending', 'Trending', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3033, 0, 'en', 'labels', 'frontend.course.featured', 'Featured', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3034, 0, 'en', 'labels', 'frontend.course.course_name', 'Course Name', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3035, 0, 'en', 'labels', 'frontend.course.course_type', 'Course Type', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3036, 0, 'en', 'labels', 'frontend.course.starts', 'Starts', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3037, 0, 'en', 'labels', 'frontend.course.full_text', 'FULL TEXT', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3038, 0, 'en', 'labels', 'frontend.course.find_courses', 'FIND COURSES', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3039, 0, 'en', 'labels', 'frontend.course.your_test_score', 'Your Test Score', '2019-09-12 23:34:19', '2020-05-14 12:20:11'); INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES (3040, 0, 'en', 'labels', 'frontend.course.find_your_course', '<span>Find </span>Your Course.', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3041, 0, 'en', 'labels', 'frontend.course.next', 'NEXT', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3042, 0, 'en', 'labels', 'frontend.course.progress', 'Progress', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3043, 0, 'en', 'labels', 'frontend.course.finish_course', 'Finish Course', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3044, 0, 'en', 'labels', 'frontend.course.certified', 'You\'re Certified for this course', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3045, 0, 'en', 'labels', 'frontend.course.course', 'Course', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3046, 0, 'en', 'labels', 'frontend.course.bundles', 'Bundles', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3047, 0, 'en', 'labels', 'frontend.course.bundle_detail', 'Bundle Details', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3048, 0, 'en', 'labels', 'frontend.course.bundle_reviews', 'Bundle <span>Reviews:</span>', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3049, 0, 'en', 'labels', 'frontend.course.available_in_bundles', 'Also available in Bundles', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3050, 0, 'en', 'labels', 'frontend.course.complete_test', 'Please Complete Test', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3051, 0, 'en', 'labels', 'frontend.course.looking_for', 'Looking For?', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3052, 0, 'en', 'labels', 'frontend.course.not_attempted', 'Not Attempted', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3053, 0, 'en', 'labels', 'frontend.course.explanation', 'Explanation', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3054, 0, 'en', 'labels', 'frontend.course.find_your_bundle', '<span>Find</span> your Bundle', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3055, 0, 'en', 'labels', 'frontend.course.select_category', 'Select Category', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3056, 0, 'en', 'labels', 'frontend.home.title', 'Home', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3057, 0, 'en', 'labels', 'frontend.home.search_course_placeholder', 'Type what do you want to learn today?', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3058, 0, 'en', 'labels', 'frontend.home.popular_teachers', '<span>Popular</span> Teachers', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3059, 0, 'en', 'labels', 'frontend.home.learn_new_skills', 'Learn new skills', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3060, 0, 'en', 'labels', 'frontend.home.search_course', 'Search Course', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3061, 0, 'en', 'labels', 'frontend.home.search_courses', '<span>Search</span> Courses.', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3062, 0, 'en', 'labels', 'frontend.home.students_enrolled', 'Students Enrolled', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3063, 0, 'en', 'labels', 'frontend.home.online_available_courses', 'Online Available Courses', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3064, 0, 'en', 'labels', 'frontend.home.teachers', 'Teachers', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3065, 0, 'en', 'labels', 'frontend.home.our_professionals', 'Our Professionals', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3066, 0, 'en', 'labels', 'frontend.home.all_teachers', 'All Teachers', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3067, 0, 'en', 'labels', 'frontend.home.what_they_say_about_us', 'What they say about us', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3068, 0, 'en', 'labels', 'frontend.layouts.partials.advantages', 'Advantages', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3069, 0, 'en', 'labels', 'frontend.layouts.partials.email_address', 'Email Address', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3070, 0, 'en', 'labels', 'frontend.layouts.partials.email_registration', 'Email Us For Free Registration', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3071, 0, 'en', 'labels', 'frontend.layouts.partials.call_us_registration', 'Call Us For Free Registration', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3072, 0, 'en', 'labels', 'frontend.layouts.partials.students', 'Students', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3073, 0, 'en', 'labels', 'frontend.layouts.partials.faq', 'FAQ', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3074, 0, 'en', 'labels', 'frontend.layouts.partials.more_faqs', 'More Faqs', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3075, 0, 'en', 'labels', 'frontend.layouts.partials.search_placeholder', 'Type what do you want to learn today?', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3076, 0, 'en', 'labels', 'frontend.layouts.partials.search_our_courses', 'SEARCH OUR COURSES', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3077, 0, 'en', 'labels', 'frontend.layouts.partials.browse_featured_course', 'Browse Our<span> Featured Course.</span>', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3078, 0, 'en', 'labels', 'frontend.layouts.partials.course_detail', 'Course detail', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3079, 0, 'en', 'labels', 'frontend.layouts.partials.contact_us', 'Contact Us', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3080, 0, 'en', 'labels', 'frontend.layouts.partials.get_in_touch', 'Get In Touch', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3081, 0, 'en', 'labels', 'frontend.layouts.partials.primary', 'Primary', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3082, 0, 'en', 'labels', 'frontend.layouts.partials.second', 'Second', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3083, 0, 'en', 'labels', 'frontend.layouts.partials.courses_categories', 'Courses Categories', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3084, 0, 'en', 'labels', 'frontend.layouts.partials.browse_course_by_category', 'Browse Courses<span> By Category.</span>', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3085, 0, 'en', 'labels', 'frontend.layouts.partials.faq_full', 'Frequently<span> Asked Questions</span>', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3086, 0, 'en', 'labels', 'frontend.layouts.partials.social_network', 'Social Network', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3087, 0, 'en', 'labels', 'frontend.layouts.partials.subscribe_newsletter', 'Subscribe Newsletter', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3088, 0, 'en', 'labels', 'frontend.layouts.partials.subscribe_now', 'Subscribe Now', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3089, 0, 'en', 'labels', 'frontend.layouts.partials.latest_news_blog', 'Latest <span>News Blog.</span>', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3090, 0, 'en', 'labels', 'frontend.layouts.partials.trending_courses', 'Trending <span>Courses.</span>', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3091, 0, 'en', 'labels', 'frontend.layouts.partials.popular_courses', 'Popular <span>Courses.</span>', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3092, 0, 'en', 'labels', 'frontend.layouts.partials.view_all_news', 'View All News', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3093, 0, 'en', 'labels', 'frontend.layouts.partials.view_all_trending_courses', 'View All Trending Courses', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3094, 0, 'en', 'labels', 'frontend.layouts.partials.view_all_popular_courses', 'View All Popular Courses', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3095, 0, 'en', 'labels', 'frontend.layouts.partials.learn_new_skills', 'Learn new skills', '2019-09-12 23:34:19', '2020-05-14 12:20:11'), (3096, 0, 'en', 'labels', 'frontend.layouts.partials.recent_news', '<span>Recent </span>News.', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3097, 0, 'en', 'labels', 'frontend.layouts.partials.featured_course', '<span>Featured </span>Course.', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3098, 0, 'en', 'labels', 'frontend.layouts.partials.days', 'Days', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3099, 0, 'en', 'labels', 'frontend.layouts.partials.hours', 'Hours', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3100, 0, 'en', 'labels', 'frontend.layouts.partials.minutes', 'Minutes', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3101, 0, 'en', 'labels', 'frontend.layouts.partials.seconds', 'Seconds', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3102, 0, 'en', 'labels', 'frontend.layouts.partials.search_courses', 'Search Courses', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3103, 0, 'en', 'labels', 'frontend.layouts.partials.sponsors', 'Sponsors.', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3104, 0, 'en', 'labels', 'frontend.layouts.partials.students_testimonial', 'Students <span>Testimonial.</span>', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3105, 0, 'en', 'labels', 'frontend.layouts.partials.why_choose', 'Reason Why Choose', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3106, 0, 'en', 'labels', 'frontend.layouts.partials.certificate_verification', 'Certificate Verification', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3107, 0, 'en', 'labels', 'frontend.layouts.partials.offers', 'Offers', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3108, 0, 'en', 'labels', 'frontend.modal.new_user_note', 'New User? Register Here', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3109, 0, 'en', 'labels', 'frontend.modal.registration_message', 'Registration Successful. Please LogIn', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3110, 0, 'en', 'labels', 'frontend.modal.my_account', 'My Account', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3111, 0, 'en', 'labels', 'frontend.modal.login_register', '<a href=\"#\" class=\"font-weight-bold go-login px-0\">LOGIN</a> to our website, or <a href=\"#\" class=\"font-weight-bold go-register px-0\" id=\"\">REGISTER</a>', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3112, 0, 'en', 'labels', 'frontend.modal.already_user_note', 'Already a user? Login Here', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3113, 0, 'en', 'labels', 'frontend.modal.login_now', 'LogIn Now', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3114, 0, 'en', 'labels', 'frontend.modal.register_now', 'Register Now', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3115, 0, 'en', 'labels', 'frontend.search_result.students', 'Students', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3116, 0, 'en', 'labels', 'frontend.search_result.blog', 'Blog', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3117, 0, 'en', 'labels', 'frontend.search_result.search_blog', 'Search Blog', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3118, 0, 'en', 'labels', 'frontend.search_result.sort_by', '<b>Sort</b> By', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3119, 0, 'en', 'labels', 'frontend.search_result.popular', 'Popular', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3120, 0, 'en', 'labels', 'frontend.search_result.none', 'None', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3121, 0, 'en', 'labels', 'frontend.search_result.trending', 'Trending', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3122, 0, 'en', 'labels', 'frontend.search_result.featured', 'Featured', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3123, 0, 'en', 'labels', 'frontend.search_result.course_name', 'Course Name', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3124, 0, 'en', 'labels', 'frontend.search_result.course_type', 'Course Type', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3125, 0, 'en', 'labels', 'frontend.search_result.starts', 'Starts', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3126, 0, 'en', 'labels', 'frontend.search_result.course_detail', 'Course Detail', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3127, 0, 'en', 'labels', 'frontend.teacher.send_now', 'Send Now', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3128, 0, 'en', 'labels', 'frontend.teacher.students', 'Students', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3129, 0, 'en', 'labels', 'frontend.teacher.title', 'Teachers', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3130, 0, 'en', 'labels', 'frontend.teacher.courses_by_teacher', 'Courses <span>By Teacher.</span>', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3131, 0, 'en', 'labels', 'frontend.teacher.course_detail', 'Course Detail', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3132, 0, 'en', 'labels', 'frontend.user.passwords.change', 'Change Password', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3133, 0, 'en', 'labels', 'frontend.user.profile.avatar', 'Avatar', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3134, 0, 'en', 'labels', 'frontend.user.profile.created_at', 'Created At', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3135, 0, 'en', 'labels', 'frontend.user.profile.edit_information', 'Edit Information', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3136, 0, 'en', 'labels', 'frontend.user.profile.email', 'E-mail', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3137, 0, 'en', 'labels', 'frontend.user.profile.last_updated', 'Last Updated', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3138, 0, 'en', 'labels', 'frontend.user.profile.name', 'Name', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3139, 0, 'en', 'labels', 'frontend.user.profile.first_name', 'First Name', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3140, 0, 'en', 'labels', 'frontend.user.profile.last_name', 'Last Name', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3141, 0, 'en', 'labels', 'frontend.user.profile.update_information', 'Update Information', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3142, 0, 'en', 'labels', 'frontend.faq.title', 'Frequently <span>Asked Questions</span>', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3143, 0, 'en', 'labels', 'frontend.faq.find', 'Find <span>Your Questions & Answers.</span>', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3144, 0, 'en', 'labels', 'frontend.faq.make_question', 'Make Question', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3145, 0, 'en', 'labels', 'frontend.faq.contact_us', 'Contact Us', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3146, 0, 'en', 'labels', 'frontend.certificate_verification.title', 'Certificate Verification', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3147, 0, 'en', 'labels', 'frontend.certificate_verification.name_on_certificate', 'Name on Certificate. Ex. John', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3148, 0, 'en', 'labels', 'frontend.certificate_verification.date_on_certificate', 'Date on Certificate. Ex. 2018-11-25', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3149, 0, 'en', 'labels', 'frontend.certificate_verification.verify_now', 'Verify Now', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3150, 0, 'en', 'labels', 'frontend.certificate_verification.not_found', 'No certificate found for given information.', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3151, 0, 'en', 'labels', 'frontend.footer.popular_courses', 'Popular courses', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3152, 0, 'en', 'labels', 'frontend.footer.popular_categories', 'Popular Categories', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3153, 0, 'en', 'labels', 'frontend.footer.featured_courses', 'Featured Courses', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3154, 0, 'en', 'labels', 'frontend.footer.trending_courses', 'Trending Courses', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3155, 0, 'en', 'labels', 'frontend.footer.useful_links', 'Useful Links', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3156, 0, 'en', 'labels', 'frontend.offers.title', 'Offers', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3157, 0, 'en', 'labels', 'frontend.offers.no_offers', 'No Offers', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3158, 0, 'en', 'labels', 'frontend.offers.unlimited', 'Unlimited', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3159, 0, 'en', 'labels', 'frontend.offers.validity', 'Validity', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3160, 0, 'en', 'labels', 'frontend.offers.minimum_order_amount', 'Minimum Order Amount', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3161, 0, 'en', 'labels', 'frontend.offers.usage', 'Usage', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3162, 0, 'en', 'labels', 'frontend.offers.per_user', 'Per User', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3163, 0, 'en', 'labels', 'lang.en', 'English', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3164, 0, 'en', 'labels', 'lang.sp', 'Spanish', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3165, 0, 'en', 'labels', 'lang.fr', 'French', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3166, 0, 'en', 'labels', 'lang.ar', 'Arabic', '2019-09-12 23:34:20', '2020-05-14 12:20:11'), (3167, 0, 'en', 'menus', 'backend.sidebar.general', 'General', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3168, 0, 'en', 'menus', 'backend.sidebar.dashboard', 'Dashboard', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3169, 0, 'en', 'menus', 'backend.sidebar.courses.management', 'Courses Management', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3170, 0, 'en', 'menus', 'backend.sidebar.courses.title', 'Courses', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3171, 0, 'en', 'menus', 'backend.sidebar.courses.manage', 'Manage Courses', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3172, 0, 'en', 'menus', 'backend.sidebar.site-management.title', 'Site Management', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3173, 0, 'en', 'menus', 'backend.sidebar.menu-manager.title', 'Menu Manager', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3174, 0, 'en', 'menus', 'backend.sidebar.system', 'System', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3175, 0, 'en', 'menus', 'backend.sidebar.settings.title', 'Settings', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3176, 0, 'en', 'menus', 'backend.sidebar.settings.general', 'General', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3177, 0, 'en', 'menus', 'backend.sidebar.settings.social-login', 'Social Login', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3178, 0, 'en', 'menus', 'backend.sidebar.debug-site.title', 'Debug Site', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3179, 0, 'en', 'menus', 'backend.sidebar.history', 'History', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3180, 0, 'en', 'menus', 'backend.sidebar.lessons.title', 'Lessons', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3181, 0, 'en', 'menus', 'backend.sidebar.questions.title', 'Questions', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3182, 0, 'en', 'menus', 'backend.sidebar.questions-options.title', 'Questions Options', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3183, 0, 'en', 'menus', 'backend.sidebar.tests.title', 'Tests', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3184, 0, 'en', 'menus', 'backend.sidebar.change-password.title', 'Change Password', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3185, 0, 'en', 'menus', 'backend.sidebar.account.title', 'Account', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3186, 0, 'en', 'menus', 'backend.sidebar.messages.title', 'Messages', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3187, 0, 'en', 'menus', 'backend.sidebar.orders.title', 'Orders', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3188, 0, 'en', 'menus', 'backend.sidebar.categories.title', 'Categories', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3189, 0, 'en', 'menus', 'backend.sidebar.teachers.title', 'Teachers', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3190, 0, 'en', 'menus', 'backend.sidebar.hero-slider.title', 'Hero Slider', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3191, 0, 'en', 'menus', 'backend.sidebar.sponsors.title', 'Sponsors', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3192, 0, 'en', 'menus', 'backend.sidebar.testimonials.title', 'Testimonials', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3193, 0, 'en', 'menus', 'backend.sidebar.blogs.title', 'Blog', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3194, 0, 'en', 'menus', 'backend.sidebar.faqs.title', 'FAQs', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3195, 0, 'en', 'menus', 'backend.sidebar.reasons.title', 'Reasons', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3196, 0, 'en', 'menus', 'backend.sidebar.contact.title', 'Contact', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3197, 0, 'en', 'menus', 'backend.sidebar.footer.title', 'Footer', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3198, 0, 'en', 'menus', 'backend.sidebar.newsletter-configuration.title', 'Newsletter Configuration', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3199, 0, 'en', 'menus', 'backend.sidebar.invoices.title', 'Invoices', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3200, 0, 'en', 'menus', 'backend.sidebar.certificates.title', 'Certificates', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3201, 0, 'en', 'menus', 'backend.sidebar.contacts.title', 'Leads', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3202, 0, 'en', 'menus', 'backend.sidebar.pages.title', 'Pages Manager', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3203, 0, 'en', 'menus', 'backend.sidebar.reviews.title', 'Reviews', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3204, 0, 'en', 'menus', 'backend.sidebar.translations.title', 'Translation Manager', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3205, 0, 'en', 'menus', 'backend.sidebar.update.title', 'Update', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3206, 0, 'en', 'menus', 'backend.sidebar.backup.title', 'Backup', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3207, 0, 'en', 'menus', 'backend.sidebar.bundles.title', 'Bundles', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3208, 0, 'en', 'menus', 'backend.sidebar.reports.title', 'Reports', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3209, 0, 'en', 'menus', 'backend.sidebar.reports.students', 'Students', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3210, 0, 'en', 'menus', 'backend.sidebar.reports.sales', 'Sales', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3211, 0, 'en', 'menus', 'backend.sidebar.coupons.title', 'Coupons', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3212, 0, 'en', 'menus', 'backend.sidebar.tax.title', 'Tax', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3213, 0, 'en', 'menus', 'backend.sidebar.sitemap.title', 'Sitemap', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3214, 0, 'en', 'menus', 'backend.sidebar.forums-category.title', 'Forums Categories', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3215, 0, 'en', 'menus', 'backend.access.title', 'Access', '2019-09-12 23:34:20', '2020-05-14 12:20:12'), (3216, 0, 'en', 'menus', 'backend.access.roles.management', 'Role Management', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3217, 0, 'en', 'menus', 'backend.access.roles.create', 'Create Role', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3218, 0, 'en', 'menus', 'backend.access.roles.edit', 'Edit Role', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3219, 0, 'en', 'menus', 'backend.access.roles.all', 'All Roles', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3220, 0, 'en', 'menus', 'backend.access.roles.main', 'Roles', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3221, 0, 'en', 'menus', 'backend.access.users.deactivated', 'Deactivated Users', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3222, 0, 'en', 'menus', 'backend.access.users.deleted', 'Deleted Users', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3223, 0, 'en', 'menus', 'backend.access.users.view', 'View User', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3224, 0, 'en', 'menus', 'backend.access.users.edit', 'Edit User', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3225, 0, 'en', 'menus', 'backend.access.users.change-password', 'Change Password', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3226, 0, 'en', 'menus', 'backend.access.users.all', 'All Users', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3227, 0, 'en', 'menus', 'backend.access.users.create', 'Create User', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3228, 0, 'en', 'menus', 'backend.access.users.main', 'Users', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3229, 0, 'en', 'menus', 'backend.log-viewer.dashboard', 'Debug dashboard', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3230, 0, 'en', 'menus', 'backend.log-viewer.logs', 'Logs', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3231, 0, 'en', 'menus', 'backend.log-viewer.main', 'Log Viewer', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3232, 0, 'en', 'menus', 'language-picker.language', 'Language', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3233, 0, 'en', 'menus', 'language-picker.langs.ar', 'Arabic', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3234, 0, 'en', 'menus', 'language-picker.langs.zh', 'Chinese', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3235, 0, 'en', 'menus', 'language-picker.langs.zh-TW', 'Chinese Traditional', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3236, 0, 'en', 'menus', 'language-picker.langs.da', 'Danish', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3237, 0, 'en', 'menus', 'language-picker.langs.de', 'German', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3238, 0, 'en', 'menus', 'language-picker.langs.el', 'Greek', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3239, 0, 'en', 'menus', 'language-picker.langs.en', 'English', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3240, 0, 'en', 'menus', 'language-picker.langs.es', 'Spanish', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3241, 0, 'en', 'menus', 'language-picker.langs.fa', 'Persian', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3242, 0, 'en', 'menus', 'language-picker.langs.fr', 'French', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3243, 0, 'en', 'menus', 'language-picker.langs.he', 'Hebrew', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3244, 0, 'en', 'menus', 'language-picker.langs.id', 'Indonesian', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3245, 0, 'en', 'menus', 'language-picker.langs.it', 'Italian', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3246, 0, 'en', 'menus', 'language-picker.langs.ja', 'Japanese', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3247, 0, 'en', 'menus', 'language-picker.langs.nl', 'Dutch', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3248, 0, 'en', 'menus', 'language-picker.langs.no', 'Norwegian', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3249, 0, 'en', 'menus', 'language-picker.langs.pt_BR', 'Portuguese (Brazil)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3250, 0, 'en', 'menus', 'language-picker.langs.ru', 'Russian', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3251, 0, 'en', 'menus', 'language-picker.langs.sv', 'Swedish', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3252, 0, 'en', 'menus', 'language-picker.langs.th', 'Thai', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3253, 0, 'en', 'menus', 'language-picker.langs.tr', 'Turkish', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3254, 0, 'en', 'menus', 'language-picker.langs.af', 'Afrikaans', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3255, 0, 'en', 'menus', 'language-picker.langs.ak', 'Akan', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3256, 0, 'en', 'menus', 'language-picker.langs.sq_AL', 'Albanian (Albania)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3257, 0, 'en', 'menus', 'language-picker.langs.sq', 'Albanian', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3258, 0, 'en', 'menus', 'language-picker.langs.am_ET', 'Amharic (Ethiopia)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3259, 0, 'en', 'menus', 'language-picker.langs.am', 'Amharic', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3260, 0, 'en', 'menus', 'language-picker.langs.ar_DZ', 'Arabic (Algeria)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3261, 0, 'en', 'menus', 'language-picker.langs.ar_BH', 'Arabic (Bahrain)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3262, 0, 'en', 'menus', 'language-picker.langs.ar_EG', 'Arabic (Egypt)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3263, 0, 'en', 'menus', 'language-picker.langs.ar_IQ', 'Arabic (Iraq)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3264, 0, 'en', 'menus', 'language-picker.langs.ar_JO', 'Arabic (Jordan)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3265, 0, 'en', 'menus', 'language-picker.langs.ar_KW', 'Arabic (Kuwait)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3266, 0, 'en', 'menus', 'language-picker.langs.ar_LB', 'Arabic (Lebanon)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3267, 0, 'en', 'menus', 'language-picker.langs.ar_LY', 'Arabic (Libya)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3268, 0, 'en', 'menus', 'language-picker.langs.ar_MA', 'Arabic (Morocco)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3269, 0, 'en', 'menus', 'language-picker.langs.ar_OM', 'Arabic (Oman)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3270, 0, 'en', 'menus', 'language-picker.langs.ar_QA', 'Arabic (Qatar)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3271, 0, 'en', 'menus', 'language-picker.langs.ar_SA', 'Arabic (Saudi Arabia)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3272, 0, 'en', 'menus', 'language-picker.langs.ar_SD', 'Arabic (Sudan)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3273, 0, 'en', 'menus', 'language-picker.langs.ar_SY', 'Arabic (Syria)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3274, 0, 'en', 'menus', 'language-picker.langs.ar_TN', 'Arabic (Tunisia)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3275, 0, 'en', 'menus', 'language-picker.langs.ar_AE', 'Arabic (United Arab Emirates)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3276, 0, 'en', 'menus', 'language-picker.langs.ar_YE', 'Arabic (Yemen)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3277, 0, 'en', 'menus', 'language-picker.langs.hy_AM', 'Armenian (Armenia)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3278, 0, 'en', 'menus', 'language-picker.langs.hy', 'Armenian', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3279, 0, 'en', 'menus', 'language-picker.langs.as_IN', 'Assamese (India)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3280, 0, 'en', 'menus', 'language-picker.langs.as', 'Assamese', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3281, 0, 'en', 'menus', 'language-picker.langs.asa_TZ', 'Asu (Tanzania)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3282, 0, 'en', 'menus', 'language-picker.langs.asa', 'Asu', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3283, 0, 'en', 'menus', 'language-picker.langs.az_Cyrl', 'Azerbaijani (Cyrillic)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3284, 0, 'en', 'menus', 'language-picker.langs.az_Cyrl_AZ', 'Azerbaijani (Cyrillic, Azerbaijan)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3285, 0, 'en', 'menus', 'language-picker.langs.az_Latn', 'Azerbaijani (Latin)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3286, 0, 'en', 'menus', 'language-picker.langs.az_Latn_AZ', 'Azerbaijani (Latin, Azerbaijan)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3287, 0, 'en', 'menus', 'language-picker.langs.az', 'Azerbaijani', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3288, 0, 'en', 'menus', 'language-picker.langs.bm_ML', 'Bambara (Mali)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3289, 0, 'en', 'menus', 'language-picker.langs.bm', 'Bambara', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3290, 0, 'en', 'menus', 'language-picker.langs.eu_ES', 'Basque (Spain)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3291, 0, 'en', 'menus', 'language-picker.langs.eu', 'Basque', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3292, 0, 'en', 'menus', 'language-picker.langs.be_BY', 'Belarusian (Belarus)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3293, 0, 'en', 'menus', 'language-picker.langs.be', 'Belarusian', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3294, 0, 'en', 'menus', 'language-picker.langs.bem_ZM', 'Bemba (Zambia)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3295, 0, 'en', 'menus', 'language-picker.langs.bem', 'Bemba', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3296, 0, 'en', 'menus', 'language-picker.langs.bez_TZ', 'Bena (Tanzania)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3297, 0, 'en', 'menus', 'language-picker.langs.bez', 'Bena', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3298, 0, 'en', 'menus', 'language-picker.langs.bn_BD', 'Bengali (Bangladesh)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3299, 0, 'en', 'menus', 'language-picker.langs.bn_IN', 'Bengali (India)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3300, 0, 'en', 'menus', 'language-picker.langs.bn', 'Bengali', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3301, 0, 'en', 'menus', 'language-picker.langs.bs_BA', 'Bosnian (Bosnia and Herzegovina)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3302, 0, 'en', 'menus', 'language-picker.langs.bs', 'Bosnian', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3303, 0, 'en', 'menus', 'language-picker.langs.bg_BG', 'Bulgarian (Bulgaria)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3304, 0, 'en', 'menus', 'language-picker.langs.bg', 'Bulgarian', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3305, 0, 'en', 'menus', 'language-picker.langs.my_MM', 'Burmese (Myanmar [Burma])', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3306, 0, 'en', 'menus', 'language-picker.langs.my', 'Burmese', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3307, 0, 'en', 'menus', 'language-picker.langs.yue_Hant_HK', 'Cantonese (Traditional, Hong Kong SAR China)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3308, 0, 'en', 'menus', 'language-picker.langs.ca_ES', 'Catalan (Spain)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3309, 0, 'en', 'menus', 'language-picker.langs.ca', 'Catalan', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3310, 0, 'en', 'menus', 'language-picker.langs.tzm_Latn', 'Central Morocco Tamazight (Latin)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3311, 0, 'en', 'menus', 'language-picker.langs.tzm_Latn_MA', 'Central Morocco Tamazight (Latin, Morocco)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3312, 0, 'en', 'menus', 'language-picker.langs.tzm', 'Central Morocco Tamazight', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3313, 0, 'en', 'menus', 'language-picker.langs.chr_US', 'Cherokee (United States)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3314, 0, 'en', 'menus', 'language-picker.langs.chr', 'Cherokee', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3315, 0, 'en', 'menus', 'language-picker.langs.cgg_UG', 'Chiga (Uganda)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3316, 0, 'en', 'menus', 'language-picker.langs.cgg', 'Chiga', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3317, 0, 'en', 'menus', 'language-picker.langs.zh_Hans', 'Chinese (Simplified Han)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3318, 0, 'en', 'menus', 'language-picker.langs.zh_Hans_CN', 'Chinese (Simplified Han, China)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3319, 0, 'en', 'menus', 'language-picker.langs.zh_Hans_HK', 'Chinese (Simplified Han, Hong Kong SAR China)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3320, 0, 'en', 'menus', 'language-picker.langs.zh_Hans_MO', 'Chinese (Simplified Han, Macau SAR China)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3321, 0, 'en', 'menus', 'language-picker.langs.zh_Hans_SG', 'Chinese (Simplified Han, Singapore)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3322, 0, 'en', 'menus', 'language-picker.langs.zh_Hant', 'Chinese (Traditional Han)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3323, 0, 'en', 'menus', 'language-picker.langs.zh_Hant_HK', 'Chinese (Traditional Han, Hong Kong SAR China)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3324, 0, 'en', 'menus', 'language-picker.langs.zh_Hant_MO', 'Chinese (Traditional Han, Macau SAR China)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3325, 0, 'en', 'menus', 'language-picker.langs.zh_Hant_TW', 'Chinese (Traditional Han, Taiwan)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3326, 0, 'en', 'menus', 'language-picker.langs.kw_GB', 'Cornish (United Kingdom)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3327, 0, 'en', 'menus', 'language-picker.langs.kw', 'Cornish', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3328, 0, 'en', 'menus', 'language-picker.langs.hr_HR', 'Croatian (Croatia)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3329, 0, 'en', 'menus', 'language-picker.langs.hr', 'Croatian', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3330, 0, 'en', 'menus', 'language-picker.langs.cs_CZ', 'Czech (Czech Republic)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3331, 0, 'en', 'menus', 'language-picker.langs.cs', 'Czech', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3332, 0, 'en', 'menus', 'language-picker.langs.da_DK', 'Danish (Denmark)', '2019-09-12 23:34:21', '2020-05-14 12:20:12'), (3333, 0, 'en', 'menus', 'language-picker.langs.nl_BE', 'Dutch (Belgium)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3334, 0, 'en', 'menus', 'language-picker.langs.nl_NL', 'Dutch (Netherlands)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3335, 0, 'en', 'menus', 'language-picker.langs.ebu_KE', 'Embu (Kenya)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3336, 0, 'en', 'menus', 'language-picker.langs.ebu', 'Embu', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3337, 0, 'en', 'menus', 'language-picker.langs.en_AS', 'English (American Samoa)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3338, 0, 'en', 'menus', 'language-picker.langs.en_AU', 'English (Australia)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3339, 0, 'en', 'menus', 'language-picker.langs.en_BE', 'English (Belgium)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3340, 0, 'en', 'menus', 'language-picker.langs.en_BZ', 'English (Belize)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3341, 0, 'en', 'menus', 'language-picker.langs.en_BW', 'English (Botswana)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3342, 0, 'en', 'menus', 'language-picker.langs.en_CA', 'English (Canada)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3343, 0, 'en', 'menus', 'language-picker.langs.en_GU', 'English (Guam)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3344, 0, 'en', 'menus', 'language-picker.langs.en_HK', 'English (Hong Kong SAR China)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3345, 0, 'en', 'menus', 'language-picker.langs.en_IN', 'English (India)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3346, 0, 'en', 'menus', 'language-picker.langs.en_IE', 'English (Ireland)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3347, 0, 'en', 'menus', 'language-picker.langs.en_IL', 'English (Israel)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3348, 0, 'en', 'menus', 'language-picker.langs.en_JM', 'English (Jamaica)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3349, 0, 'en', 'menus', 'language-picker.langs.en_MT', 'English (Malta)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3350, 0, 'en', 'menus', 'language-picker.langs.en_MH', 'English (Marshall Islands)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3351, 0, 'en', 'menus', 'language-picker.langs.en_MU', 'English (Mauritius)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3352, 0, 'en', 'menus', 'language-picker.langs.en_NA', 'English (Namibia)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3353, 0, 'en', 'menus', 'language-picker.langs.en_NZ', 'English (New Zealand)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3354, 0, 'en', 'menus', 'language-picker.langs.en_MP', 'English (Northern Mariana Islands)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3355, 0, 'en', 'menus', 'language-picker.langs.en_PK', 'English (Pakistan)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3356, 0, 'en', 'menus', 'language-picker.langs.en_PH', 'English (Philippines)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3357, 0, 'en', 'menus', 'language-picker.langs.en_SG', 'English (Singapore)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3358, 0, 'en', 'menus', 'language-picker.langs.en_ZA', 'English (South Africa)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3359, 0, 'en', 'menus', 'language-picker.langs.en_TT', 'English (Trinidad and Tobago)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3360, 0, 'en', 'menus', 'language-picker.langs.en_UM', 'English (U.S. Minor Outlying Islands)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3361, 0, 'en', 'menus', 'language-picker.langs.en_VI', 'English (U.S. Virgin Islands)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3362, 0, 'en', 'menus', 'language-picker.langs.en_GB', 'English (United Kingdom)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3363, 0, 'en', 'menus', 'language-picker.langs.en_US', 'English (United States)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3364, 0, 'en', 'menus', 'language-picker.langs.en_ZW', 'English (Zimbabwe)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3365, 0, 'en', 'menus', 'language-picker.langs.eo', 'Esperanto', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3366, 0, 'en', 'menus', 'language-picker.langs.et_EE', 'Estonian (Estonia)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3367, 0, 'en', 'menus', 'language-picker.langs.et', 'Estonian', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3368, 0, 'en', 'menus', 'language-picker.langs.ee_GH', 'Ewe (Ghana)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3369, 0, 'en', 'menus', 'language-picker.langs.ee_TG', 'Ewe (Togo)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3370, 0, 'en', 'menus', 'language-picker.langs.ee', 'Ewe', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3371, 0, 'en', 'menus', 'language-picker.langs.fo_FO', 'Faroese (Faroe Islands)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3372, 0, 'en', 'menus', 'language-picker.langs.fo', 'Faroese', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3373, 0, 'en', 'menus', 'language-picker.langs.fil_PH', 'Filipino (Philippines)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3374, 0, 'en', 'menus', 'language-picker.langs.fil', 'Filipino', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3375, 0, 'en', 'menus', 'language-picker.langs.fi_FI', 'Finnish (Finland)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3376, 0, 'en', 'menus', 'language-picker.langs.fi', 'Finnish', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3377, 0, 'en', 'menus', 'language-picker.langs.fr_BE', 'French (Belgium)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3378, 0, 'en', 'menus', 'language-picker.langs.fr_BJ', 'French (Benin)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3379, 0, 'en', 'menus', 'language-picker.langs.fr_BF', 'French (Burkina Faso)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3380, 0, 'en', 'menus', 'language-picker.langs.fr_BI', 'French (Burundi)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3381, 0, 'en', 'menus', 'language-picker.langs.fr_CM', 'French (Cameroon)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3382, 0, 'en', 'menus', 'language-picker.langs.fr_CA', 'French (Canada)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3383, 0, 'en', 'menus', 'language-picker.langs.fr_CF', 'French (Central African Republic)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3384, 0, 'en', 'menus', 'language-picker.langs.fr_TD', 'French (Chad)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3385, 0, 'en', 'menus', 'language-picker.langs.fr_KM', 'French (Comoros)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3386, 0, 'en', 'menus', 'language-picker.langs.fr_CG', 'French (Congo - Brazzaville)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3387, 0, 'en', 'menus', 'language-picker.langs.fr_CD', 'French (Congo - Kinshasa)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3388, 0, 'en', 'menus', 'language-picker.langs.fr_CI', 'French (Côte d’Ivoire)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3389, 0, 'en', 'menus', 'language-picker.langs.fr_DJ', 'French (Djibouti)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3390, 0, 'en', 'menus', 'language-picker.langs.fr_GQ', 'French (Equatorial Guinea)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3391, 0, 'en', 'menus', 'language-picker.langs.fr_FR', 'French (France)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3392, 0, 'en', 'menus', 'language-picker.langs.fr_GA', 'French (Gabon)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3393, 0, 'en', 'menus', 'language-picker.langs.fr_GP', 'French (Guadeloupe)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3394, 0, 'en', 'menus', 'language-picker.langs.fr_GN', 'French (Guinea)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3395, 0, 'en', 'menus', 'language-picker.langs.fr_LU', 'French (Luxembourg)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3396, 0, 'en', 'menus', 'language-picker.langs.fr_MG', 'French (Madagascar)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3397, 0, 'en', 'menus', 'language-picker.langs.fr_ML', 'French (Mali)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3398, 0, 'en', 'menus', 'language-picker.langs.fr_MQ', 'French (Martinique)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3399, 0, 'en', 'menus', 'language-picker.langs.fr_MC', 'French (Monaco)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3400, 0, 'en', 'menus', 'language-picker.langs.fr_NE', 'French (Niger)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3401, 0, 'en', 'menus', 'language-picker.langs.fr_RW', 'French (Rwanda)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3402, 0, 'en', 'menus', 'language-picker.langs.fr_RE', 'French (Réunion)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3403, 0, 'en', 'menus', 'language-picker.langs.fr_BL', 'French (Saint Barthélemy)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3404, 0, 'en', 'menus', 'language-picker.langs.fr_MF', 'French (Saint Martin)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3405, 0, 'en', 'menus', 'language-picker.langs.fr_SN', 'French (Senegal)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3406, 0, 'en', 'menus', 'language-picker.langs.fr_CH', 'French (Switzerland)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3407, 0, 'en', 'menus', 'language-picker.langs.fr_TG', 'French (Togo)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3408, 0, 'en', 'menus', 'language-picker.langs.ff_SN', 'Fulah (Senegal)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3409, 0, 'en', 'menus', 'language-picker.langs.ff', 'Fulah', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3410, 0, 'en', 'menus', 'language-picker.langs.gl_ES', 'Galician (Spain)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3411, 0, 'en', 'menus', 'language-picker.langs.gl', 'Galician', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3412, 0, 'en', 'menus', 'language-picker.langs.lg_UG', 'Ganda (Uganda)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3413, 0, 'en', 'menus', 'language-picker.langs.lg', 'Ganda', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3414, 0, 'en', 'menus', 'language-picker.langs.ka_GE', 'Georgian (Georgia)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3415, 0, 'en', 'menus', 'language-picker.langs.ka', 'Georgian', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3416, 0, 'en', 'menus', 'language-picker.langs.de_AT', 'German (Austria)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3417, 0, 'en', 'menus', 'language-picker.langs.de_BE', 'German (Belgium)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3418, 0, 'en', 'menus', 'language-picker.langs.de_DE', 'German (Germany)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3419, 0, 'en', 'menus', 'language-picker.langs.de_LI', 'German (Liechtenstein)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3420, 0, 'en', 'menus', 'language-picker.langs.de_LU', 'German (Luxembourg)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3421, 0, 'en', 'menus', 'language-picker.langs.de_CH', 'German (Switzerland)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3422, 0, 'en', 'menus', 'language-picker.langs.el_CY', 'Greek (Cyprus)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3423, 0, 'en', 'menus', 'language-picker.langs.el_GR', 'Greek (Greece)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3424, 0, 'en', 'menus', 'language-picker.langs.gu_IN', 'Gujarati (India)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3425, 0, 'en', 'menus', 'language-picker.langs.gu', 'Gujarati', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3426, 0, 'en', 'menus', 'language-picker.langs.guz_KE', 'Gusii (Kenya)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3427, 0, 'en', 'menus', 'language-picker.langs.guz', 'Gusii', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3428, 0, 'en', 'menus', 'language-picker.langs.ha_Latn', 'Hausa (Latin)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3429, 0, 'en', 'menus', 'language-picker.langs.ha_Latn_GH', 'Hausa (Latin, Ghana)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3430, 0, 'en', 'menus', 'language-picker.langs.ha_Latn_NE', 'Hausa (Latin, Niger)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3431, 0, 'en', 'menus', 'language-picker.langs.ha_Latn_NG', 'Hausa (Latin, Nigeria)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3432, 0, 'en', 'menus', 'language-picker.langs.ha', 'Hausa', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3433, 0, 'en', 'menus', 'language-picker.langs.haw_US', 'Hawaiian (United States)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3434, 0, 'en', 'menus', 'language-picker.langs.haw', 'Hawaiian', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3435, 0, 'en', 'menus', 'language-picker.langs.he_IL', 'Hebrew (Israel)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3436, 0, 'en', 'menus', 'language-picker.langs.hi_IN', 'Hindi (India)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3437, 0, 'en', 'menus', 'language-picker.langs.hi', 'Hindi', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3438, 0, 'en', 'menus', 'language-picker.langs.hu_HU', 'Hungarian (Hungary)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3439, 0, 'en', 'menus', 'language-picker.langs.hu', 'Hungarian', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3440, 0, 'en', 'menus', 'language-picker.langs.is_IS', 'Icelandic (Iceland)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3441, 0, 'en', 'menus', 'language-picker.langs.is', 'Icelandic', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3442, 0, 'en', 'menus', 'language-picker.langs.ig_NG', 'Igbo (Nigeria)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3443, 0, 'en', 'menus', 'language-picker.langs.ig', 'Igbo', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3444, 0, 'en', 'menus', 'language-picker.langs.id_ID', 'Indonesian (Indonesia)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3445, 0, 'en', 'menus', 'language-picker.langs.ga_IE', 'Irish (Ireland)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3446, 0, 'en', 'menus', 'language-picker.langs.ga', 'Irish', '2019-09-12 23:34:22', '2020-05-14 12:20:12'); INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES (3447, 0, 'en', 'menus', 'language-picker.langs.it_IT', 'Italian (Italy)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3448, 0, 'en', 'menus', 'language-picker.langs.it_CH', 'Italian (Switzerland)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3449, 0, 'en', 'menus', 'language-picker.langs.ja_JP', 'Japanese (Japan)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3450, 0, 'en', 'menus', 'language-picker.langs.kea_CV', 'Kabuverdianu (Cape Verde)', '2019-09-12 23:34:22', '2020-05-14 12:20:12'), (3451, 0, 'en', 'menus', 'language-picker.langs.kea', 'Kabuverdianu', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3452, 0, 'en', 'menus', 'language-picker.langs.kab_DZ', 'Kabyle (Algeria)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3453, 0, 'en', 'menus', 'language-picker.langs.kab', 'Kabyle', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3454, 0, 'en', 'menus', 'language-picker.langs.kl_GL', 'Kalaallisut (Greenland)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3455, 0, 'en', 'menus', 'language-picker.langs.kl', 'Kalaallisut', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3456, 0, 'en', 'menus', 'language-picker.langs.kln_KE', 'Kalenjin (Kenya)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3457, 0, 'en', 'menus', 'language-picker.langs.kln', 'Kalenjin', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3458, 0, 'en', 'menus', 'language-picker.langs.kam_KE', 'Kamba (Kenya)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3459, 0, 'en', 'menus', 'language-picker.langs.kam', 'Kamba', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3460, 0, 'en', 'menus', 'language-picker.langs.kn_IN', 'Kannada (India)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3461, 0, 'en', 'menus', 'language-picker.langs.kn', 'Kannada', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3462, 0, 'en', 'menus', 'language-picker.langs.kk_Cyrl', 'Kazakh (Cyrillic)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3463, 0, 'en', 'menus', 'language-picker.langs.kk_Cyrl_KZ', 'Kazakh (Cyrillic, Kazakhstan)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3464, 0, 'en', 'menus', 'language-picker.langs.kk', 'Kazakh', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3465, 0, 'en', 'menus', 'language-picker.langs.km_KH', 'Khmer (Cambodia)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3466, 0, 'en', 'menus', 'language-picker.langs.km', 'Khmer', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3467, 0, 'en', 'menus', 'language-picker.langs.ki_KE', 'Kikuyu (Kenya)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3468, 0, 'en', 'menus', 'language-picker.langs.ki', 'Kikuyu', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3469, 0, 'en', 'menus', 'language-picker.langs.rw_RW', 'Kinyarwanda (Rwanda)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3470, 0, 'en', 'menus', 'language-picker.langs.rw', 'Kinyarwanda', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3471, 0, 'en', 'menus', 'language-picker.langs.kok_IN', 'Konkani (India)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3472, 0, 'en', 'menus', 'language-picker.langs.kok', 'Konkani', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3473, 0, 'en', 'menus', 'language-picker.langs.ko_KR', 'Korean (South Korea)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3474, 0, 'en', 'menus', 'language-picker.langs.ko', 'Korean', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3475, 0, 'en', 'menus', 'language-picker.langs.khq_ML', 'Koyra Chiini (Mali)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3476, 0, 'en', 'menus', 'language-picker.langs.khq', 'Koyra Chiini', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3477, 0, 'en', 'menus', 'language-picker.langs.ses_ML', 'Koyraboro Senni (Mali)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3478, 0, 'en', 'menus', 'language-picker.langs.ses', 'Koyraboro Senni', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3479, 0, 'en', 'menus', 'language-picker.langs.lag_TZ', 'Langi (Tanzania)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3480, 0, 'en', 'menus', 'language-picker.langs.lag', 'Langi', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3481, 0, 'en', 'menus', 'language-picker.langs.lv_LV', 'Latvian (Latvia)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3482, 0, 'en', 'menus', 'language-picker.langs.lv', 'Latvian', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3483, 0, 'en', 'menus', 'language-picker.langs.lt_LT', 'Lithuanian (Lithuania)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3484, 0, 'en', 'menus', 'language-picker.langs.lt', 'Lithuanian', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3485, 0, 'en', 'menus', 'language-picker.langs.luo_KE', 'Luo (Kenya)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3486, 0, 'en', 'menus', 'language-picker.langs.luo', 'Luo', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3487, 0, 'en', 'menus', 'language-picker.langs.luy_KE', 'Luyia (Kenya)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3488, 0, 'en', 'menus', 'language-picker.langs.luy', 'Luyia', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3489, 0, 'en', 'menus', 'language-picker.langs.mk_MK', 'Macedonian (Macedonia)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3490, 0, 'en', 'menus', 'language-picker.langs.mk', 'Macedonian', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3491, 0, 'en', 'menus', 'language-picker.langs.jmc_TZ', 'Machame (Tanzania)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3492, 0, 'en', 'menus', 'language-picker.langs.jmc', 'Machame', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3493, 0, 'en', 'menus', 'language-picker.langs.kde_TZ', 'Makonde (Tanzania)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3494, 0, 'en', 'menus', 'language-picker.langs.kde', 'Makonde', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3495, 0, 'en', 'menus', 'language-picker.langs.mg_MG', 'Malagasy (Madagascar)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3496, 0, 'en', 'menus', 'language-picker.langs.mg', 'Malagasy', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3497, 0, 'en', 'menus', 'language-picker.langs.ms_BN', 'Malay (Brunei)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3498, 0, 'en', 'menus', 'language-picker.langs.ms_MY', 'Malay (Malaysia)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3499, 0, 'en', 'menus', 'language-picker.langs.ms', 'Malay', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3500, 0, 'en', 'menus', 'language-picker.langs.ml_IN', 'Malayalam (India)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3501, 0, 'en', 'menus', 'language-picker.langs.ml', 'Malayalam', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3502, 0, 'en', 'menus', 'language-picker.langs.mt_MT', 'Maltese (Malta)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3503, 0, 'en', 'menus', 'language-picker.langs.mt', 'Maltese', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3504, 0, 'en', 'menus', 'language-picker.langs.gv_GB', 'Manx (United Kingdom)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3505, 0, 'en', 'menus', 'language-picker.langs.gv', 'Manx', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3506, 0, 'en', 'menus', 'language-picker.langs.mr_IN', 'Marathi (India)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3507, 0, 'en', 'menus', 'language-picker.langs.mr', 'Marathi', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3508, 0, 'en', 'menus', 'language-picker.langs.mas_KE', 'Masai (Kenya)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3509, 0, 'en', 'menus', 'language-picker.langs.mas_TZ', 'Masai (Tanzania)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3510, 0, 'en', 'menus', 'language-picker.langs.mas', 'Masai', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3511, 0, 'en', 'menus', 'language-picker.langs.mer_KE', 'Meru (Kenya)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3512, 0, 'en', 'menus', 'language-picker.langs.mer', 'Meru', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3513, 0, 'en', 'menus', 'language-picker.langs.mfe_MU', 'Morisyen (Mauritius)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3514, 0, 'en', 'menus', 'language-picker.langs.mfe', 'Morisyen', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3515, 0, 'en', 'menus', 'language-picker.langs.naq_NA', 'Nama (Namibia)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3516, 0, 'en', 'menus', 'language-picker.langs.naq', 'Nama', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3517, 0, 'en', 'menus', 'language-picker.langs.ne_IN', 'Nepali (India)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3518, 0, 'en', 'menus', 'language-picker.langs.ne_NP', 'Nepali (Nepal)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3519, 0, 'en', 'menus', 'language-picker.langs.ne', 'Nepali', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3520, 0, 'en', 'menus', 'language-picker.langs.nd_ZW', 'North Ndebele (Zimbabwe)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3521, 0, 'en', 'menus', 'language-picker.langs.nd', 'North Ndebele', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3522, 0, 'en', 'menus', 'language-picker.langs.nb_NO', 'Norwegian Bokmål (Norway)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3523, 0, 'en', 'menus', 'language-picker.langs.nb', 'Norwegian Bokmål', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3524, 0, 'en', 'menus', 'language-picker.langs.nn_NO', 'Norwegian Nynorsk (Norway)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3525, 0, 'en', 'menus', 'language-picker.langs.nn', 'Norwegian Nynorsk', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3526, 0, 'en', 'menus', 'language-picker.langs.nyn_UG', 'Nyankole (Uganda)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3527, 0, 'en', 'menus', 'language-picker.langs.nyn', 'Nyankole', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3528, 0, 'en', 'menus', 'language-picker.langs.or_IN', 'Oriya (India)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3529, 0, 'en', 'menus', 'language-picker.langs.or', 'Oriya', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3530, 0, 'en', 'menus', 'language-picker.langs.om_ET', 'Oromo (Ethiopia)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3531, 0, 'en', 'menus', 'language-picker.langs.om_KE', 'Oromo (Kenya)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3532, 0, 'en', 'menus', 'language-picker.langs.om', 'Oromo', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3533, 0, 'en', 'menus', 'language-picker.langs.ps_AF', 'Pashto (Afghanistan)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3534, 0, 'en', 'menus', 'language-picker.langs.ps', 'Pashto', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3535, 0, 'en', 'menus', 'language-picker.langs.fa_AF', 'Persian (Afghanistan)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3536, 0, 'en', 'menus', 'language-picker.langs.fa_IR', 'Persian (Iran)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3537, 0, 'en', 'menus', 'language-picker.langs.pl_PL', 'Polish (Poland)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3538, 0, 'en', 'menus', 'language-picker.langs.pl', 'Polish', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3539, 0, 'en', 'menus', 'language-picker.langs.pt_GW', 'Portuguese (Guinea-Bissau)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3540, 0, 'en', 'menus', 'language-picker.langs.pt_MZ', 'Portuguese (Mozambique)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3541, 0, 'en', 'menus', 'language-picker.langs.pt_PT', 'Portuguese (Portugal)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3542, 0, 'en', 'menus', 'language-picker.langs.pt', 'Portuguese', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3543, 0, 'en', 'menus', 'language-picker.langs.pa_Arab', 'Punjabi (Arabic)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3544, 0, 'en', 'menus', 'language-picker.langs.pa_Arab_PK', 'Punjabi (Arabic, Pakistan)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3545, 0, 'en', 'menus', 'language-picker.langs.pa_Guru', 'Punjabi (Gurmukhi)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3546, 0, 'en', 'menus', 'language-picker.langs.pa_Guru_IN', 'Punjabi (Gurmukhi, India)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3547, 0, 'en', 'menus', 'language-picker.langs.pa', 'Punjabi', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3548, 0, 'en', 'menus', 'language-picker.langs.ro_MD', 'Romanian (Moldova)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3549, 0, 'en', 'menus', 'language-picker.langs.ro_RO', 'Romanian (Romania)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3550, 0, 'en', 'menus', 'language-picker.langs.ro', 'Romanian', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3551, 0, 'en', 'menus', 'language-picker.langs.rm_CH', 'Romansh (Switzerland)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3552, 0, 'en', 'menus', 'language-picker.langs.rm', 'Romansh', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3553, 0, 'en', 'menus', 'language-picker.langs.rof_TZ', 'Rombo (Tanzania)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3554, 0, 'en', 'menus', 'language-picker.langs.rof', 'Rombo', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3555, 0, 'en', 'menus', 'language-picker.langs.ru_MD', 'Russian (Moldova)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3556, 0, 'en', 'menus', 'language-picker.langs.ru_RU', 'Russian (Russia)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3557, 0, 'en', 'menus', 'language-picker.langs.ru_UA', 'Russian (Ukraine)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3558, 0, 'en', 'menus', 'language-picker.langs.rwk_TZ', 'Rwa (Tanzania)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3559, 0, 'en', 'menus', 'language-picker.langs.rwk', 'Rwa', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3560, 0, 'en', 'menus', 'language-picker.langs.saq_KE', 'Samburu (Kenya)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3561, 0, 'en', 'menus', 'language-picker.langs.saq', 'Samburu', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3562, 0, 'en', 'menus', 'language-picker.langs.sg_CF', 'Sango (Central African Republic)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3563, 0, 'en', 'menus', 'language-picker.langs.sg', 'Sango', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3564, 0, 'en', 'menus', 'language-picker.langs.seh_MZ', 'Sena (Mozambique)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3565, 0, 'en', 'menus', 'language-picker.langs.seh', 'Sena', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3566, 0, 'en', 'menus', 'language-picker.langs.sr_Cyrl', 'Serbian (Cyrillic)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3567, 0, 'en', 'menus', 'language-picker.langs.sr_Cyrl_BA', 'Serbian (Cyrillic, Bosnia and Herzegovina)', '2019-09-12 23:34:23', '2020-05-14 12:20:12'), (3568, 0, 'en', 'menus', 'language-picker.langs.sr_Cyrl_ME', 'Serbian (Cyrillic, Montenegro)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3569, 0, 'en', 'menus', 'language-picker.langs.sr_Cyrl_RS', 'Serbian (Cyrillic, Serbia)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3570, 0, 'en', 'menus', 'language-picker.langs.sr_Latn', 'Serbian (Latin)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3571, 0, 'en', 'menus', 'language-picker.langs.sr_Latn_BA', 'Serbian (Latin, Bosnia and Herzegovina)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3572, 0, 'en', 'menus', 'language-picker.langs.sr_Latn_ME', 'Serbian (Latin, Montenegro)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3573, 0, 'en', 'menus', 'language-picker.langs.sr_Latn_RS', 'Serbian (Latin, Serbia)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3574, 0, 'en', 'menus', 'language-picker.langs.sr', 'Serbian', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3575, 0, 'en', 'menus', 'language-picker.langs.sn_ZW', 'Shona (Zimbabwe)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3576, 0, 'en', 'menus', 'language-picker.langs.sn', 'Shona', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3577, 0, 'en', 'menus', 'language-picker.langs.ii_CN', 'Sichuan Yi (China)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3578, 0, 'en', 'menus', 'language-picker.langs.ii', 'Sichuan Yi', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3579, 0, 'en', 'menus', 'language-picker.langs.si_LK', 'Sinhala (Sri Lanka)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3580, 0, 'en', 'menus', 'language-picker.langs.si', 'Sinhala', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3581, 0, 'en', 'menus', 'language-picker.langs.sk_SK', 'Slovak (Slovakia)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3582, 0, 'en', 'menus', 'language-picker.langs.sk', 'Slovak', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3583, 0, 'en', 'menus', 'language-picker.langs.sl_SI', 'Slovenian (Slovenia)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3584, 0, 'en', 'menus', 'language-picker.langs.sl', 'Slovenian', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3585, 0, 'en', 'menus', 'language-picker.langs.xog_UG', 'Soga (Uganda)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3586, 0, 'en', 'menus', 'language-picker.langs.xog', 'Soga', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3587, 0, 'en', 'menus', 'language-picker.langs.so_DJ', 'Somali (Djibouti)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3588, 0, 'en', 'menus', 'language-picker.langs.so_ET', 'Somali (Ethiopia)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3589, 0, 'en', 'menus', 'language-picker.langs.so_KE', 'Somali (Kenya)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3590, 0, 'en', 'menus', 'language-picker.langs.so_SO', 'Somali (Somalia)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3591, 0, 'en', 'menus', 'language-picker.langs.so', 'Somali', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3592, 0, 'en', 'menus', 'language-picker.langs.es_AR', 'Spanish (Argentina)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3593, 0, 'en', 'menus', 'language-picker.langs.es_BO', 'Spanish (Bolivia)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3594, 0, 'en', 'menus', 'language-picker.langs.es_CL', 'Spanish (Chile)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3595, 0, 'en', 'menus', 'language-picker.langs.es_CO', 'Spanish (Colombia)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3596, 0, 'en', 'menus', 'language-picker.langs.es_CR', 'Spanish (Costa Rica)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3597, 0, 'en', 'menus', 'language-picker.langs.es_DO', 'Spanish (Dominican Republic)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3598, 0, 'en', 'menus', 'language-picker.langs.es_EC', 'Spanish (Ecuador)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3599, 0, 'en', 'menus', 'language-picker.langs.es_SV', 'Spanish (El Salvador)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3600, 0, 'en', 'menus', 'language-picker.langs.es_GQ', 'Spanish (Equatorial Guinea)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3601, 0, 'en', 'menus', 'language-picker.langs.es_GT', 'Spanish (Guatemala)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3602, 0, 'en', 'menus', 'language-picker.langs.es_HN', 'Spanish (Honduras)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3603, 0, 'en', 'menus', 'language-picker.langs.es_419', 'Spanish (Latin America)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3604, 0, 'en', 'menus', 'language-picker.langs.es_MX', 'Spanish (Mexico)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3605, 0, 'en', 'menus', 'language-picker.langs.es_NI', 'Spanish (Nicaragua)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3606, 0, 'en', 'menus', 'language-picker.langs.es_PA', 'Spanish (Panama)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3607, 0, 'en', 'menus', 'language-picker.langs.es_PY', 'Spanish (Paraguay)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3608, 0, 'en', 'menus', 'language-picker.langs.es_PE', 'Spanish (Peru)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3609, 0, 'en', 'menus', 'language-picker.langs.es_PR', 'Spanish (Puerto Rico)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3610, 0, 'en', 'menus', 'language-picker.langs.es_ES', 'Spanish (Spain)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3611, 0, 'en', 'menus', 'language-picker.langs.es_US', 'Spanish (United States)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3612, 0, 'en', 'menus', 'language-picker.langs.es_UY', 'Spanish (Uruguay)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3613, 0, 'en', 'menus', 'language-picker.langs.es_VE', 'Spanish (Venezuela)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3614, 0, 'en', 'menus', 'language-picker.langs.sw_KE', 'Swahili (Kenya)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3615, 0, 'en', 'menus', 'language-picker.langs.sw_TZ', 'Swahili (Tanzania)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3616, 0, 'en', 'menus', 'language-picker.langs.sw', 'Swahili', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3617, 0, 'en', 'menus', 'language-picker.langs.sv_FI', 'Swedish (Finland)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3618, 0, 'en', 'menus', 'language-picker.langs.sv_SE', 'Swedish (Sweden)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3619, 0, 'en', 'menus', 'language-picker.langs.gsw_CH', 'Swiss German (Switzerland)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3620, 0, 'en', 'menus', 'language-picker.langs.gsw', 'Swiss German', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3621, 0, 'en', 'menus', 'language-picker.langs.shi_Latn', 'Tachelhit (Latin)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3622, 0, 'en', 'menus', 'language-picker.langs.shi_Latn_MA', 'Tachelhit (Latin, Morocco)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3623, 0, 'en', 'menus', 'language-picker.langs.shi_Tfng', 'Tachelhit (Tifinagh)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3624, 0, 'en', 'menus', 'language-picker.langs.shi_Tfng_MA', 'Tachelhit (Tifinagh, Morocco)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3625, 0, 'en', 'menus', 'language-picker.langs.shi', 'Tachelhit', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3626, 0, 'en', 'menus', 'language-picker.langs.dav_KE', 'Taita (Kenya)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3627, 0, 'en', 'menus', 'language-picker.langs.dav', 'Taita', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3628, 0, 'en', 'menus', 'language-picker.langs.ta_IN', 'Tamil (India)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3629, 0, 'en', 'menus', 'language-picker.langs.ta_LK', 'Tamil (Sri Lanka)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3630, 0, 'en', 'menus', 'language-picker.langs.ta', 'Tamil', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3631, 0, 'en', 'menus', 'language-picker.langs.te_IN', 'Telugu (India)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3632, 0, 'en', 'menus', 'language-picker.langs.te', 'Telugu', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3633, 0, 'en', 'menus', 'language-picker.langs.teo_KE', 'Teso (Kenya)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3634, 0, 'en', 'menus', 'language-picker.langs.teo_UG', 'Teso (Uganda)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3635, 0, 'en', 'menus', 'language-picker.langs.teo', 'Teso', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3636, 0, 'en', 'menus', 'language-picker.langs.th_TH', 'Thai (Thailand)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3637, 0, 'en', 'menus', 'language-picker.langs.bo_CN', 'Tibetan (China)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3638, 0, 'en', 'menus', 'language-picker.langs.bo_IN', 'Tibetan (India)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3639, 0, 'en', 'menus', 'language-picker.langs.bo', 'Tibetan', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3640, 0, 'en', 'menus', 'language-picker.langs.ti_ER', 'Tigrinya (Eritrea)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3641, 0, 'en', 'menus', 'language-picker.langs.ti_ET', 'Tigrinya (Ethiopia)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3642, 0, 'en', 'menus', 'language-picker.langs.ti', 'Tigrinya', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3643, 0, 'en', 'menus', 'language-picker.langs.to_TO', 'Tonga (Tonga)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3644, 0, 'en', 'menus', 'language-picker.langs.to', 'Tonga', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3645, 0, 'en', 'menus', 'language-picker.langs.tr_TR', 'Turkish (Turkey)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3646, 0, 'en', 'menus', 'language-picker.langs.uk_UA', 'Ukrainian (Ukraine)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3647, 0, 'en', 'menus', 'language-picker.langs.uk', 'Ukrainian', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3648, 0, 'en', 'menus', 'language-picker.langs.ur_IN', 'Urdu (India)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3649, 0, 'en', 'menus', 'language-picker.langs.ur_PK', 'Urdu (Pakistan)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3650, 0, 'en', 'menus', 'language-picker.langs.ur', 'Urdu', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3651, 0, 'en', 'menus', 'language-picker.langs.uz_Arab', 'Uzbek (Arabic)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3652, 0, 'en', 'menus', 'language-picker.langs.uz_Arab_AF', 'Uzbek (Arabic, Afghanistan)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3653, 0, 'en', 'menus', 'language-picker.langs.uz_Cyrl', 'Uzbek (Cyrillic)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3654, 0, 'en', 'menus', 'language-picker.langs.uz_Cyrl_UZ', 'Uzbek (Cyrillic, Uzbekistan)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3655, 0, 'en', 'menus', 'language-picker.langs.uz_Latn', 'Uzbek (Latin)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3656, 0, 'en', 'menus', 'language-picker.langs.uz_Latn_UZ', 'Uzbek (Latin, Uzbekistan)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3657, 0, 'en', 'menus', 'language-picker.langs.uz', 'Uzbek', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3658, 0, 'en', 'menus', 'language-picker.langs.vi_VN', 'Vietnamese (Vietnam)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3659, 0, 'en', 'menus', 'language-picker.langs.vi', 'Vietnamese', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3660, 0, 'en', 'menus', 'language-picker.langs.vun_TZ', 'Vunjo (Tanzania)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3661, 0, 'en', 'menus', 'language-picker.langs.vun', 'Vunjo', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3662, 0, 'en', 'menus', 'language-picker.langs.cy_GB', 'Welsh (United Kingdom)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3663, 0, 'en', 'menus', 'language-picker.langs.cy', 'Welsh', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3664, 0, 'en', 'menus', 'language-picker.langs.yo_NG', 'Yoruba (Nigeria)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3665, 0, 'en', 'menus', 'language-picker.langs.yo', 'Yoruba', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3666, 0, 'en', 'menus', 'language-picker.langs.zu_ZA', 'Zulu (South Africa)', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3667, 0, 'en', 'menus', 'language-picker.langs.zu', 'Zulu', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3668, 0, 'en', 'navs', 'general.logout', 'Logout', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3669, 0, 'en', 'navs', 'general.home', 'Home', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3670, 0, 'en', 'navs', 'general.login', 'LogIn', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3671, 0, 'en', 'navs', 'general.messages', 'Messages', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3672, 0, 'en', 'navs', 'general.no_messages', 'No messages', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3673, 0, 'en', 'navs', 'general.account', 'Account', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3674, 0, 'en', 'navs', 'general.profile', 'Profile', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3675, 0, 'en', 'navs', 'frontend.contact', 'Contact', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3676, 0, 'en', 'navs', 'frontend.dashboard', 'Dashboard', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3677, 0, 'en', 'navs', 'frontend.login', 'Login', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3678, 0, 'en', 'navs', 'frontend.macros', 'Macros', '2019-09-12 23:34:24', '2020-05-14 12:20:12'), (3679, 0, 'en', 'navs', 'frontend.register', 'Register', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3680, 0, 'en', 'navs', 'frontend.courses', 'Courses', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3681, 0, 'en', 'navs', 'frontend.forums', 'Forums', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3682, 0, 'en', 'navs', 'frontend.user.account', 'My Account', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3683, 0, 'en', 'navs', 'frontend.user.administration', 'Administration', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3684, 0, 'en', 'navs', 'frontend.user.change_password', 'Change Password', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3685, 0, 'en', 'navs', 'frontend.user.my_information', 'My Information', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3686, 0, 'en', 'navs', 'frontend.user.profile', 'Profile', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3687, 0, 'en', 'pagination', 'previous', '« Previous', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3688, 0, 'en', 'pagination', 'next', 'Next »', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3689, 0, 'en', 'passwords', 'password', 'Passwords must be at least six characters and match the confirmation.', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3690, 0, 'en', 'passwords', 'reset', 'Your password has been reset!', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3691, 0, 'en', 'passwords', 'sent', 'We have e-mailed your password reset link!', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3692, 0, 'en', 'passwords', 'token', 'This password reset token is invalid.', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3693, 0, 'en', 'passwords', 'user', 'We can\'t find a user with that e-mail address.', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3694, 0, 'en', 'roles', 'administrator', 'Administrator', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3695, 0, 'en', 'roles', 'user', 'User', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3696, 0, 'en', 'strings', 'frontend.user.email_changed_notice', 'You must confirm your new e-mail address before you can log in again.', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3697, 0, 'en', 'strings', 'frontend.user.profile_updated', 'Profile successfully updated.', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3698, 0, 'en', 'strings', 'frontend.user.password_updated', 'Password successfully updated.', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3699, 0, 'en', 'strings', 'frontend.user.change_email_notice', 'If you change your e-mail you will be logged out until you confirm your new e-mail address.', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3700, 0, 'en', 'strings', 'frontend.test', 'Test', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3701, 0, 'en', 'strings', 'frontend.tests.based_on.permission', 'Permission Based - ', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3702, 0, 'en', 'strings', 'frontend.tests.based_on.role', 'Role Based - ', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3703, 0, 'en', 'strings', 'frontend.tests.js_injected_from_controller', 'Javascript Injected from a Controller', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3704, 0, 'en', 'strings', 'frontend.tests.using_blade_extensions', 'Using Blade Extensions', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3705, 0, 'en', 'strings', 'frontend.tests.using_access_helper.array_permissions', 'Using Access Helper with Array of Permission Names or ID\'s where the user does have to possess all.', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3706, 0, 'en', 'strings', 'frontend.tests.using_access_helper.array_permissions_not', 'Using Access Helper with Array of Permission Names or ID\'s where the user does not have to possess all.', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3707, 0, 'en', 'strings', 'frontend.tests.using_access_helper.array_roles', 'Using Access Helper with Array of Role Names or ID\'s where the user does have to possess all.', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3708, 0, 'en', 'strings', 'frontend.tests.using_access_helper.array_roles_not', 'Using Access Helper with Array of Role Names or ID\'s where the user does not have to possess all.', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3709, 0, 'en', 'strings', 'frontend.tests.using_access_helper.permission_id', 'Using Access Helper with Permission ID', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3710, 0, 'en', 'strings', 'frontend.tests.using_access_helper.permission_name', 'Using Access Helper with Permission Name', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3711, 0, 'en', 'strings', 'frontend.tests.using_access_helper.role_id', 'Using Access Helper with Role ID', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3712, 0, 'en', 'strings', 'frontend.tests.using_access_helper.role_name', 'Using Access Helper with Role Name', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3713, 0, 'en', 'strings', 'frontend.tests.view_console_it_works', 'View console, you should see \'it works!\' which is coming from FrontendController@index', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3714, 0, 'en', 'strings', 'frontend.tests.you_can_see_because', 'You can see this because you have the role of \':role\'!', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3715, 0, 'en', 'strings', 'frontend.tests.you_can_see_because_permission', 'You can see this because you have the permission of \':permission\'!', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3716, 0, 'en', 'strings', 'frontend.general.joined', 'Joined', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3717, 0, 'en', 'strings', 'frontend.welcome_to', 'Welcome to :place', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3718, 0, 'en', 'strings', 'backend.menu_manager.page', 'Page', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3719, 0, 'en', 'strings', 'backend.menu_manager.link', 'Link', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3720, 0, 'en', 'strings', 'backend.menu_manager.title', 'Menu Manager', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3721, 0, 'en', 'strings', 'backend.menu_manager.edit_menus', 'Edit Menus', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3722, 0, 'en', 'strings', 'backend.menu_manager.locations', 'Locations', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3723, 0, 'en', 'strings', 'backend.menu_manager.select_to_edit', 'Select the menu you want to edit', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3724, 0, 'en', 'strings', 'backend.menu_manager.create_new', 'Create new menu', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3725, 0, 'en', 'strings', 'backend.menu_manager.or', 'Or', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3726, 0, 'en', 'strings', 'backend.menu_manager.choose', 'Choose', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3727, 0, 'en', 'strings', 'backend.menu_manager.welcome', 'Welcome', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3728, 0, 'en', 'strings', 'backend.menu_manager.url', 'URL', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3729, 0, 'en', 'strings', 'backend.menu_manager.label', 'Label', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3730, 0, 'en', 'strings', 'backend.menu_manager.add_to_menu', 'Add to Menu', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3731, 0, 'en', 'strings', 'backend.menu_manager.screen_reader_text', 'Press return or enter to expand', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3732, 0, 'en', 'strings', 'backend.menu_manager.categories', 'Categories', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3733, 0, 'en', 'strings', 'backend.menu_manager.Category', 'Category', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3734, 0, 'en', 'strings', 'backend.menu_manager.pages', 'Pages', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3735, 0, 'en', 'strings', 'backend.menu_manager.posts', 'Posts', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3736, 0, 'en', 'strings', 'backend.menu_manager.post', 'Post', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3737, 0, 'en', 'strings', 'backend.menu_manager.custom_link', 'Custom Link', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3738, 0, 'en', 'strings', 'backend.menu_manager.menu_structure', 'Menu Structure', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3739, 0, 'en', 'strings', 'backend.menu_manager.name', 'Name', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3740, 0, 'en', 'strings', 'backend.menu_manager.create_menu', 'Create Menu', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3741, 0, 'en', 'strings', 'backend.menu_manager.save_menu', 'Save Menu', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3742, 0, 'en', 'strings', 'backend.menu_manager.delete_menu', 'Delete Menu', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3743, 0, 'en', 'strings', 'backend.menu_manager.sub_menu', 'Sub-menu', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3744, 0, 'en', 'strings', 'backend.menu_manager.menu_creation', 'Menu Creation', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3745, 0, 'en', 'strings', 'backend.menu_manager.drag_instruction_1', 'Place each item in the order you prefer. Click on the arrow to the right of the item to display more configuration options.', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3746, 0, 'en', 'strings', 'backend.menu_manager.drag_instruction_2', 'Please enter the name and select \"Create menu\" button', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3747, 0, 'en', 'strings', 'backend.menu_manager.class', 'Class CSS (optional)', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3748, 0, 'en', 'strings', 'backend.menu_manager.move', 'Move', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3749, 0, 'en', 'strings', 'backend.menu_manager.move_up', 'Move up', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3750, 0, 'en', 'strings', 'backend.menu_manager.move_down', 'Move down', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3751, 0, 'en', 'strings', 'backend.menu_manager.move_right', 'Move right', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3752, 0, 'en', 'strings', 'backend.menu_manager.move_left', 'Move left', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3753, 0, 'en', 'strings', 'backend.menu_manager.top', 'Top', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3754, 0, 'en', 'strings', 'backend.menu_manager.delete', 'Delete', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3755, 0, 'en', 'strings', 'backend.menu_manager.cancel', 'Cancel', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3756, 0, 'en', 'strings', 'backend.menu_manager.update_item', 'Update Item', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3757, 0, 'en', 'strings', 'backend.menu_manager.menu_settings', 'Menu Settings', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3758, 0, 'en', 'strings', 'backend.menu_manager.auto_add_pages', 'Auto Add Pages', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3759, 0, 'en', 'strings', 'backend.menu_manager.auto_add_pages_desc', 'Automatically add new top-level pages to this menu', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3760, 0, 'en', 'strings', 'backend.menu_manager.display', 'Display', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3761, 0, 'en', 'strings', 'backend.menu_manager.top_menu', 'Top Menu', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3762, 0, 'en', 'strings', 'backend.menu_manager.footer_menu', 'Footer Menu', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3763, 0, 'en', 'strings', 'backend.menu_manager.currently', 'Currently set to', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3764, 0, 'en', 'strings', 'backend.menu_manager.theme_location', 'Theme Location', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3765, 0, 'en', 'strings', 'backend.menu_manager.save_changes', 'Save Changes', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3766, 0, 'en', 'strings', 'backend.menu_manager.assigned_menu', 'Assigned Menu', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3767, 0, 'en', 'strings', 'backend.menu_manager.edit', 'Edit', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3768, 0, 'en', 'strings', 'backend.menu_manager.select_all', 'Select All', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3769, 0, 'en', 'strings', 'backend.general.are_you_sure', 'Are you sure you want to do this?', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3770, 0, 'en', 'strings', 'backend.general.app_back_to_list', 'Back to list', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3771, 0, 'en', 'strings', 'backend.general.app_save', 'Save', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3772, 0, 'en', 'strings', 'backend.general.actions', 'Actions', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3773, 0, 'en', 'strings', 'backend.general.app_update', 'Update', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3774, 0, 'en', 'strings', 'backend.general.app_restore', 'Restore', '2019-09-12 23:34:25', '2020-05-14 12:20:12'), (3775, 0, 'en', 'strings', 'backend.general.app_permadel', 'Permanently Delete', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3776, 0, 'en', 'strings', 'backend.general.all_rights_reserved', 'All Rights Reserved.', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3777, 0, 'en', 'strings', 'backend.general.app_add', 'Add', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3778, 0, 'en', 'strings', 'backend.general.app_create', 'Create', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3779, 0, 'en', 'strings', 'backend.general.app_edit', 'Edit', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3780, 0, 'en', 'strings', 'backend.general.app_view', 'View', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3781, 0, 'en', 'strings', 'backend.general.app_list', 'List', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3782, 0, 'en', 'strings', 'backend.general.app_no_entries_in_table', 'No entries in table', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3783, 0, 'en', 'strings', 'backend.general.custom_controller_index', 'Custom controller index.', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3784, 0, 'en', 'strings', 'backend.general.app_logout', 'Logout', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3785, 0, 'en', 'strings', 'backend.general.app_add_new', 'Add new', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3786, 0, 'en', 'strings', 'backend.general.app_are_you_sure', 'Are you sure?', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3787, 0, 'en', 'strings', 'backend.general.app_dashboard', 'Dashboard', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3788, 0, 'en', 'strings', 'backend.general.app_delete', 'Delete', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3789, 0, 'en', 'strings', 'backend.general.all', 'All', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3790, 0, 'en', 'strings', 'backend.general.trashed', 'Trashed', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3791, 0, 'en', 'strings', 'backend.general.boilerplate_link', 'JThemes Studio', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3792, 0, 'en', 'strings', 'backend.general.continue', 'Continue', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3793, 0, 'en', 'strings', 'backend.general.member_since', 'Member since', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3794, 0, 'en', 'strings', 'backend.general.minutes', ' minutes', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3795, 0, 'en', 'strings', 'backend.general.search_placeholder', 'Search...', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3796, 0, 'en', 'strings', 'backend.general.timeout', 'You were automatically logged out for security reasons since you had no activity in ', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3797, 0, 'en', 'strings', 'backend.general.see_all.messages', 'See all messages', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3798, 0, 'en', 'strings', 'backend.general.see_all.notifications', 'View all', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3799, 0, 'en', 'strings', 'backend.general.see_all.tasks', 'View all tasks', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3800, 0, 'en', 'strings', 'backend.general.status.online', 'Online', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3801, 0, 'en', 'strings', 'backend.general.status.offline', 'Offline', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3802, 0, 'en', 'strings', 'backend.general.you_have.messages', '{0} You don\'t have messages|{1} You have 1 message|[2,Inf] You have :number messages', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3803, 0, 'en', 'strings', 'backend.general.you_have.notifications', '{0} You don\'t have notifications|{1} You have 1 notification|[2,Inf] You have :number notifications', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3804, 0, 'en', 'strings', 'backend.general.you_have.tasks', '{0} You don\'t have tasks|{1} You have 1 task|[2,Inf] You have :number tasks', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3805, 0, 'en', 'strings', 'backend.access.users.if_confirmed_off', '(If confirmed is off)', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3806, 0, 'en', 'strings', 'backend.access.users.delete_user_confirm', 'Are you sure you want to delete this user permanently? Anywhere in the application that references this user\'s id will most likely error. Proceed at your own risk. This can not be un-done.', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3807, 0, 'en', 'strings', 'backend.access.users.no_deactivated', 'There are no deactivated users.', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3808, 0, 'en', 'strings', 'backend.access.users.no_deleted', 'There are no deleted users.', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3809, 0, 'en', 'strings', 'backend.access.users.restore_user_confirm', 'Restore this user to its original state?', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3810, 0, 'en', 'strings', 'backend.dashboard.title', 'Dashboard', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3811, 0, 'en', 'strings', 'backend.dashboard.welcome', 'Welcome', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3812, 0, 'en', 'strings', 'backend.dashboard.my_courses', 'My Courses', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3813, 0, 'en', 'strings', 'backend.search.empty', 'Please enter a search term.', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3814, 0, 'en', 'strings', 'backend.search.incomplete', 'You must write your own search logic for this system.', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3815, 0, 'en', 'strings', 'backend.search.title', 'Search Results', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3816, 0, 'en', 'strings', 'backend.search.results', 'Search Results for :query', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3817, 0, 'en', 'strings', 'backend.welcome', 'Welcome to the Dashboard', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3818, 0, 'en', 'strings', 'emails.contact.subject', 'A new :app_name contact form submission!', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3819, 0, 'en', 'strings', 'emails.contact.email_body_title', 'You have a new contact form request: Below are the details:', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3820, 0, 'en', 'strings', 'emails.auth.account_confirmed', 'Your account has been confirmed.', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3821, 0, 'en', 'strings', 'emails.auth.thank_you_for_using_app', 'Thank you for using our application!', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3822, 0, 'en', 'strings', 'emails.auth.click_to_confirm', 'Click here to confirm your account:', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3823, 0, 'en', 'strings', 'emails.auth.password_reset_subject', 'Reset Password', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3824, 0, 'en', 'strings', 'emails.auth.password_cause_of_email', 'You are receiving this email because we received a password reset request for your account.', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3825, 0, 'en', 'strings', 'emails.auth.password_if_not_requested', 'If you did not request a password reset, no further action is required.', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3826, 0, 'en', 'strings', 'emails.auth.error', 'Whoops!', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3827, 0, 'en', 'strings', 'emails.auth.greeting', 'Hello!', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3828, 0, 'en', 'strings', 'emails.auth.regards', 'Regards,', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3829, 0, 'en', 'strings', 'emails.auth.trouble_clicking_button', 'If you’re having trouble clicking the \":action_text\" button, copy and paste the URL below into your web browser:', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3830, 0, 'en', 'strings', 'emails.auth.reset_password', 'Click here to reset your password', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3831, 0, 'en', 'strings', 'emails.offline_order.subject', 'Regarding your recent order on :app_name', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3832, 0, 'en', 'validation', 'required', 'The :attribute field is required.', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3833, 0, 'en', 'validation', 'attributes.frontend.old_password', 'Old Password', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3834, 0, 'en', 'validation', 'attributes.frontend.male', 'Male', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3835, 0, 'en', 'validation', 'attributes.frontend.female', 'Female', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3836, 0, 'en', 'validation', 'attributes.frontend.other', 'Other', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3837, 0, 'en', 'validation', 'attributes.frontend.password', 'Password', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3838, 0, 'en', 'validation', 'attributes.frontend.password_confirmation', 'Password Confirmation', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3839, 0, 'en', 'validation', 'attributes.frontend.avatar', 'Avatar Location', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3840, 0, 'en', 'validation', 'attributes.frontend.first_name', 'First Name', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3841, 0, 'en', 'validation', 'attributes.frontend.last_name', 'Last Name', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3842, 0, 'en', 'validation', 'attributes.frontend.email', 'E-mail Address', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3843, 0, 'en', 'validation', 'attributes.frontend.name', 'Full Name', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3844, 0, 'en', 'validation', 'attributes.frontend.phone', 'Phone', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3845, 0, 'en', 'validation', 'attributes.frontend.message', 'Message', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3846, 0, 'en', 'validation', 'attributes.frontend.new_password', 'New Password', '2019-09-12 23:34:26', '2020-05-14 12:20:12'); INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES (3847, 0, 'en', 'validation', 'attributes.frontend.new_password_confirmation', 'New Password Confirmation', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3848, 0, 'en', 'validation', 'attributes.frontend.timezone', 'Timezone', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3849, 0, 'en', 'validation', 'attributes.frontend.language', 'Language', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3850, 0, 'en', 'validation', 'attributes.frontend.gravatar', 'Gravatar', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3851, 0, 'en', 'validation', 'attributes.frontend.upload', 'Upload', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3852, 0, 'en', 'validation', 'attributes.frontend.captcha', 'Captcha required', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3853, 0, 'en', 'validation', 'attributes.backend.access.roles.name', 'Name', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3854, 0, 'en', 'validation', 'attributes.backend.access.roles.associated_permissions', 'Associated Permissions', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3855, 0, 'en', 'validation', 'attributes.backend.access.roles.sort', 'Sort', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3856, 0, 'en', 'validation', 'attributes.backend.access.users.password', 'Password', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3857, 0, 'en', 'validation', 'attributes.backend.access.users.password_confirmation', 'Password Confirmation', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3858, 0, 'en', 'validation', 'attributes.backend.access.users.first_name', 'First Name', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3859, 0, 'en', 'validation', 'attributes.backend.access.users.last_name', 'Last Name', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3860, 0, 'en', 'validation', 'attributes.backend.access.users.email', 'E-mail Address', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3861, 0, 'en', 'validation', 'attributes.backend.access.users.active', 'Active', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3862, 0, 'en', 'validation', 'attributes.backend.access.users.confirmed', 'Confirmed', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3863, 0, 'en', 'validation', 'attributes.backend.access.users.send_confirmation_email', 'Send Confirmation E-mail', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3864, 0, 'en', 'validation', 'attributes.backend.access.users.associated_roles', 'Associated Roles', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3865, 0, 'en', 'validation', 'attributes.backend.access.users.name', 'Name', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3866, 0, 'en', 'validation', 'attributes.backend.access.users.other_permissions', 'Other Permissions', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3867, 0, 'en', 'validation', 'attributes.backend.access.users.timezone', 'Timezone', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3868, 0, 'en', 'validation', 'attributes.backend.access.users.language', 'Language', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3869, 0, 'en', 'validation', 'attributes.backend.access.permissions.associated_roles', 'Associated Roles', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3870, 0, 'en', 'validation', 'attributes.backend.access.permissions.dependencies', 'Dependencies', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3871, 0, 'en', 'validation', 'attributes.backend.access.permissions.display_name', 'Display Name', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3872, 0, 'en', 'validation', 'attributes.backend.access.permissions.group', 'Group', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3873, 0, 'en', 'validation', 'attributes.backend.access.permissions.group_sort', 'Group Sort', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3874, 0, 'en', 'validation', 'attributes.backend.access.permissions.groups.name', 'Group Name', '2019-09-12 23:34:26', '2020-05-14 12:20:12'), (3875, 0, 'en', 'validation', 'attributes.backend.access.permissions.name', 'Name', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3876, 0, 'en', 'validation', 'attributes.backend.access.permissions.first_name', 'First Name', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3877, 0, 'en', 'validation', 'attributes.backend.access.permissions.last_name', 'Last Name', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3878, 0, 'en', 'validation', 'attributes.backend.access.permissions.system', 'System', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3879, 0, 'en', 'validation', 'attributes.backend.settings.social_settings.facebook.label', 'Facebook Login Status', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3880, 0, 'en', 'validation', 'attributes.backend.settings.social_settings.facebook.client_id', 'Client ID', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3881, 0, 'en', 'validation', 'attributes.backend.settings.social_settings.facebook.client_secret', 'Client Secret', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3882, 0, 'en', 'validation', 'attributes.backend.settings.social_settings.facebook.redirect', 'Redirect URL', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3883, 0, 'en', 'validation', 'attributes.backend.settings.social_settings.google.label', 'Google Login Status', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3884, 0, 'en', 'validation', 'attributes.backend.settings.social_settings.google.client_id', 'Client ID', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3885, 0, 'en', 'validation', 'attributes.backend.settings.social_settings.google.client_secret', 'Client Secret', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3886, 0, 'en', 'validation', 'attributes.backend.settings.social_settings.google.redirect', 'Redirect URL', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3887, 0, 'en', 'validation', 'attributes.backend.settings.social_settings.twitter.label', 'Twitter Login Status', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3888, 0, 'en', 'validation', 'attributes.backend.settings.social_settings.twitter.client_id', 'Client ID', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3889, 0, 'en', 'validation', 'attributes.backend.settings.social_settings.twitter.client_secret', 'Client Secret', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3890, 0, 'en', 'validation', 'attributes.backend.settings.social_settings.twitter.redirect', 'Redirect URL', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3891, 0, 'en', 'validation', 'attributes.backend.settings.social_settings.linkedin.label', 'LinkedIn Login Status', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3892, 0, 'en', 'validation', 'attributes.backend.settings.social_settings.linkedin.client_id', 'Client ID', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3893, 0, 'en', 'validation', 'attributes.backend.settings.social_settings.linkedin.client_secret', 'Client Secret', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3894, 0, 'en', 'validation', 'attributes.backend.settings.social_settings.linkedin.redirect', 'Redirect URL', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3895, 0, 'en', 'validation', 'attributes.backend.settings.social_settings.github.label', 'Github Login Status', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3896, 0, 'en', 'validation', 'attributes.backend.settings.social_settings.github.client_id', 'Client ID', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3897, 0, 'en', 'validation', 'attributes.backend.settings.social_settings.github.client_secret', 'Client Secret', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3898, 0, 'en', 'validation', 'attributes.backend.settings.social_settings.github.redirect', 'Redirect URL', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3899, 0, 'en', 'validation', 'attributes.backend.settings.social_settings.bitbucket.label', 'Bitbucket Login Status', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3900, 0, 'en', 'validation', 'attributes.backend.settings.social_settings.bitbucket.client_id', 'Client ID', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3901, 0, 'en', 'validation', 'attributes.backend.settings.social_settings.bitbucket.client_secret', 'Client Secret', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3902, 0, 'en', 'validation', 'attributes.backend.settings.social_settings.bitbucket.redirect', 'Redirect URL', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3903, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.app_name', 'App Name', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3904, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.app_url', 'App URL', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3905, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.app_locale', 'App Locale', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3906, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.app_timezone', 'App Timezone', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3907, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.mail_driver', 'Mail Driver', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3908, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.mail_host', 'Mail Host', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3909, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.mail_port', 'Mail Port', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3910, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.mail_from_name', 'Mail From Name', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3911, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.lesson_timer', 'Lesson Timer', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3912, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.mail_from_address', 'Mail From Address', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3913, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.mail_username', 'Mail Username', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3914, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.mail_password', 'Mail Password', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3915, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.enable_registration', 'Enable Registration', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3916, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.change_email', 'Change Email', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3917, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.password_history', 'Password History', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3918, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.password_expires_days', 'Password Expires Days', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3919, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.requires_approval', 'Requires Approval', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3920, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.confirm_email', 'Confirm Email', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3921, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.homepage', 'Select Homepage', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3922, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.captcha_status', 'Captcha Status', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3923, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.captcha_site_key', 'Captcha Key', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3924, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.captcha_site_secret', 'Captcha Secret', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3925, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.google_analytics', 'Google Analytics Code', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3926, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.theme_layout', 'Theme Layout', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3927, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.font_color', 'Font Color', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3928, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.layout_type', 'Layout Type', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3929, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.retest_status', 'Re-Test', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3930, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.show_offers', 'Show Offers Page', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3931, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.one_signal_push_notification', 'OneSignal Setup', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3932, 0, 'en', 'validation', 'attributes.backend.settings.general_settings.onesignal_code', 'Paste OneSignal script code here', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3933, 0, 'en', 'validation', 'accepted', 'The :attribute must be accepted.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3934, 0, 'en', 'validation', 'active_url', 'The :attribute is not a valid URL.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3935, 0, 'en', 'validation', 'after', 'The :attribute must be a date after :date.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3936, 0, 'en', 'validation', 'after_or_equal', 'The :attribute must be a date after or equal to :date.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3937, 0, 'en', 'validation', 'alpha', 'The :attribute may only contain letters.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3938, 0, 'en', 'validation', 'alpha_dash', 'The :attribute may only contain letters, numbers, dashes and underscores.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3939, 0, 'en', 'validation', 'alpha_num', 'The :attribute may only contain letters and numbers.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3940, 0, 'en', 'validation', 'array', 'The :attribute must be an array.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3941, 0, 'en', 'validation', 'before', 'The :attribute must be a date before :date.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3942, 0, 'en', 'validation', 'before_or_equal', 'The :attribute must be a date before or equal to :date.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3943, 0, 'en', 'validation', 'between.numeric', 'The :attribute must be between :min and :max.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3944, 0, 'en', 'validation', 'between.file', 'The :attribute must be between :min and :max kilobytes.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3945, 0, 'en', 'validation', 'between.string', 'The :attribute must be between :min and :max characters.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3946, 0, 'en', 'validation', 'between.array', 'The :attribute must have between :min and :max items.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3947, 0, 'en', 'validation', 'boolean', 'The :attribute field must be true or false.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3948, 0, 'en', 'validation', 'confirmed', 'The :attribute confirmation does not match.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3949, 0, 'en', 'validation', 'date', 'The :attribute is not a valid date.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3950, 0, 'en', 'validation', 'date_format', 'The :attribute does not match the format :format.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3951, 0, 'en', 'validation', 'different', 'The :attribute and :other must be different.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3952, 0, 'en', 'validation', 'digits', 'The :attribute must be :digits digits.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3953, 0, 'en', 'validation', 'digits_between', 'The :attribute must be between :min and :max digits.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3954, 0, 'en', 'validation', 'dimensions', 'The :attribute has invalid image dimensions.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3955, 0, 'en', 'validation', 'distinct', 'The :attribute field has a duplicate value.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3956, 0, 'en', 'validation', 'email', 'The :attribute must be a valid email address.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3957, 0, 'en', 'validation', 'exists', 'The selected :attribute is invalid.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3958, 0, 'en', 'validation', 'file', 'The :attribute must be a file.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3959, 0, 'en', 'validation', 'filled', 'The :attribute field must have a value.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3960, 0, 'en', 'validation', 'gt.numeric', 'The :attribute must be greater than :value.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3961, 0, 'en', 'validation', 'gt.file', 'The :attribute must be greater than :value kilobytes.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3962, 0, 'en', 'validation', 'gt.string', 'The :attribute must be greater than :value characters.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3963, 0, 'en', 'validation', 'gt.array', 'The :attribute must have more than :value items.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3964, 0, 'en', 'validation', 'gte.numeric', 'The :attribute must be greater than or equal :value.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3965, 0, 'en', 'validation', 'gte.file', 'The :attribute must be greater than or equal :value kilobytes.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3966, 0, 'en', 'validation', 'gte.string', 'The :attribute must be greater than or equal :value characters.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3967, 0, 'en', 'validation', 'gte.array', 'The :attribute must have :value items or more.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3968, 0, 'en', 'validation', 'image', 'The :attribute must be an image.', '2019-09-12 23:34:27', '2020-05-14 12:20:12'), (3969, 0, 'en', 'validation', 'in', 'The selected :attribute is invalid.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3970, 0, 'en', 'validation', 'in_array', 'The :attribute field does not exist in :other.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3971, 0, 'en', 'validation', 'integer', 'The :attribute must be an integer.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3972, 0, 'en', 'validation', 'ip', 'The :attribute must be a valid IP address.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3973, 0, 'en', 'validation', 'ipv4', 'The :attribute must be a valid IPv4 address.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3974, 0, 'en', 'validation', 'ipv6', 'The :attribute must be a valid IPv6 address.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3975, 0, 'en', 'validation', 'json', 'The :attribute must be a valid JSON string.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3976, 0, 'en', 'validation', 'lt.numeric', 'The :attribute must be less than :value.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3977, 0, 'en', 'validation', 'lt.file', 'The :attribute must be less than :value kilobytes.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3978, 0, 'en', 'validation', 'lt.string', 'The :attribute must be less than :value characters.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3979, 0, 'en', 'validation', 'lt.array', 'The :attribute must have less than :value items.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3980, 0, 'en', 'validation', 'lte.numeric', 'The :attribute must be less than or equal :value.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3981, 0, 'en', 'validation', 'lte.file', 'The :attribute must be less than or equal :value kilobytes.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3982, 0, 'en', 'validation', 'lte.string', 'The :attribute must be less than or equal :value characters.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3983, 0, 'en', 'validation', 'lte.array', 'The :attribute must not have more than :value items.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3984, 0, 'en', 'validation', 'max.numeric', 'The :attribute may not be greater than :max.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3985, 0, 'en', 'validation', 'max.file', 'The :attribute may not be greater than :max kilobytes.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3986, 0, 'en', 'validation', 'max.string', 'The :attribute may not be greater than :max characters.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3987, 0, 'en', 'validation', 'max.array', 'The :attribute may not have more than :max items.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3988, 0, 'en', 'validation', 'mimes', 'The :attribute must be a file of type: :values.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3989, 0, 'en', 'validation', 'mimetypes', 'The :attribute must be a file of type: :values.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3990, 0, 'en', 'validation', 'min.numeric', 'The :attribute must be at least :min.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3991, 0, 'en', 'validation', 'min.file', 'The :attribute must be at least :min kilobytes.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3992, 0, 'en', 'validation', 'min.string', 'The :attribute must be at least :min characters.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3993, 0, 'en', 'validation', 'min.array', 'The :attribute must have at least :min items.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3994, 0, 'en', 'validation', 'not_in', 'The selected :attribute is invalid.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3995, 0, 'en', 'validation', 'not_regex', 'The :attribute format is invalid.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3996, 0, 'en', 'validation', 'numeric', 'The :attribute must be a number.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3997, 0, 'en', 'validation', 'present', 'The :attribute field must be present.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3998, 0, 'en', 'validation', 'regex', 'The :attribute format is invalid.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (3999, 0, 'en', 'validation', 'required_if', 'The :attribute field is required when :other is :value.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (4000, 0, 'en', 'validation', 'required_unless', 'The :attribute field is required unless :other is in :values.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (4001, 0, 'en', 'validation', 'required_with', 'The :attribute field is required when :values is present.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (4002, 0, 'en', 'validation', 'required_with_all', 'The :attribute field is required when :values are present.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (4003, 0, 'en', 'validation', 'required_without', 'The :attribute field is required when :values is not present.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (4004, 0, 'en', 'validation', 'required_without_all', 'The :attribute field is required when none of :values are present.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (4005, 0, 'en', 'validation', 'same', 'The :attribute and :other must match.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (4006, 0, 'en', 'validation', 'size.numeric', 'The :attribute must be :size.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (4007, 0, 'en', 'validation', 'size.file', 'The :attribute must be :size kilobytes.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (4008, 0, 'en', 'validation', 'size.string', 'The :attribute must be :size characters.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (4009, 0, 'en', 'validation', 'size.array', 'The :attribute must contain :size items.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (4010, 0, 'en', 'validation', 'string', 'The :attribute must be a string.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (4011, 0, 'en', 'validation', 'timezone', 'The :attribute must be a valid zone.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (4012, 0, 'en', 'validation', 'unique', 'The :attribute has already been taken.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (4013, 0, 'en', 'validation', 'uploaded', 'The :attribute failed to upload.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (4014, 0, 'en', 'validation', 'url', 'The :attribute format is invalid.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (4015, 0, 'en', 'validation', 'uuid', 'The :attribute must be a valid UUID.', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (4016, 0, 'en', 'validation', 'custom.attribute-name.rule-name', 'custom-message', '2019-09-12 23:34:28', '2020-05-14 12:20:12'), (4017, 0, 'es', 'alerts', 'backend.roles.created', 'El rol fue creado exitosamente.', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4018, 0, 'es', 'alerts', 'backend.roles.deleted', 'El rol fue eliminado con éxito.', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4019, 0, 'es', 'alerts', 'backend.roles.updated', 'El rol fue actualizado exitosamente.', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4020, 0, 'es', 'alerts', 'backend.users.cant_resend_confirmation', 'La aplicación está configurada actualmente para aprobar manualmente los usuarios.', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4021, 0, 'es', 'alerts', 'backend.users.confirmation_email', 'Se ha enviado un nuevo correo electrónico de confirmación a la dirección que figura en el archivo.', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4022, 0, 'es', 'alerts', 'backend.users.confirmed', 'El usuario fue confirmado con éxito.', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4023, 0, 'es', 'alerts', 'backend.users.created', 'El usuario fue creado con éxito.', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4024, 0, 'es', 'alerts', 'backend.users.deleted', 'El usuario fue eliminado con éxito.', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4025, 0, 'es', 'alerts', 'backend.users.deleted_permanently', 'El usuario fue eliminado permanentemente.', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4026, 0, 'es', 'alerts', 'backend.users.restored', 'El usuario fue restaurado con éxito.', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4027, 0, 'es', 'alerts', 'backend.users.session_cleared', 'La sesión del usuario fue borrada con éxito.', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4028, 0, 'es', 'alerts', 'backend.users.social_deleted', 'Cuenta social eliminada con éxito', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4029, 0, 'es', 'alerts', 'backend.users.unconfirmed', 'El usuario fue exitosamente sin confirmar', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4030, 0, 'es', 'alerts', 'backend.users.updated', 'El usuario fue actualizado con éxito.', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4031, 0, 'es', 'alerts', 'backend.users.updated_password', 'La contraseña del usuario se actualizó con éxito.', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4032, 0, 'es', 'alerts', 'backend.general.backup_warning', 'Por favor, rellene los detalles necesarios para la copia de seguridad', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4033, 0, 'es', 'alerts', 'backend.general.cancelled', 'Actualización cancelada.', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4034, 0, 'es', 'alerts', 'backend.general.created', 'Creado con éxito.', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4035, 0, 'es', 'alerts', 'backend.general.deleted', 'Borrado exitosamente.', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4036, 0, 'es', 'alerts', 'backend.general.error', 'Algo salió mal. Inténtalo de nuevo', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4037, 0, 'es', 'alerts', 'backend.general.restored', 'Restaurado con éxito.', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4038, 0, 'es', 'alerts', 'backend.general.unverified', 'Archivos de actualización no verificados.', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4039, 0, 'es', 'alerts', 'backend.general.updated', 'Actualizado con éxito.', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4040, 0, 'es', 'alerts', 'backend.general.delete_warning', 'No puedes eliminar el curso. Los estudiantes ya están matriculados. Anular la publicación del curso', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4041, 0, 'es', 'alerts', 'backend.general.delete_warning_bundle', 'No puedes eliminar Bundle. Los estudiantes ya están matriculados. Anular la publicación del paquete', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4042, 0, 'es', 'alerts', 'frontend.contact.sent', 'Su información fue enviada con éxito. Le responderemos lo antes posible al correo electrónico proporcionado.', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4043, 0, 'es', 'alerts', 'frontend.course.completed', '¡Felicidades! Has completado con éxito el curso. Revisa tu certificado en el tablero', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4044, 0, 'es', 'auth', 'failed', 'Estas credenciales no coinciden con nuestros registros.', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4045, 0, 'es', 'auth', 'general_error', 'No tienes acceso para hacer eso.', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4046, 0, 'es', 'auth', 'password_rules', 'Su contraseña debe tener más de 8 caracteres, debe contener al menos 1 mayúscula, 1 minúscula y 1 número.', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4047, 0, 'es', 'auth', 'password_used', 'No puede establecer una contraseña que haya utilizado anteriormente.', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4048, 0, 'es', 'auth', 'socialite.unacceptable', ': proveedor no es un tipo de inicio de sesión aceptable.', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4049, 0, 'es', 'auth', 'throttle', 'Demasiados intentos de inicio de sesión. Por favor, intente de nuevo en: segundos segundos.', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4050, 0, 'es', 'auth', 'unknown', 'Un error desconocido ocurrió', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4051, 0, 'es', 'buttons', 'backend.access.users.activate', 'Activar', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4052, 0, 'es', 'buttons', 'backend.access.users.change_password', 'Cambia la contraseña', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4053, 0, 'es', 'buttons', 'backend.access.users.clear_session', 'Sesión clara', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4054, 0, 'es', 'buttons', 'backend.access.users.confirm', 'Confirmar', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4055, 0, 'es', 'buttons', 'backend.access.users.deactivate', 'Desactivar', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4056, 0, 'es', 'buttons', 'backend.access.users.delete_permanently', 'borrar permanentemente', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4057, 0, 'es', 'buttons', 'backend.access.users.login_as', 'Iniciar sesión como: usuario', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4058, 0, 'es', 'buttons', 'backend.access.users.resend_email', 'Reenviar correo electrónico de confirmación', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4059, 0, 'es', 'buttons', 'backend.access.users.restore_user', 'Restaurar usuario', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4060, 0, 'es', 'buttons', 'backend.access.users.unconfirm', 'Des-confirmar', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4061, 0, 'es', 'buttons', 'backend.access.users.unlink', 'Desconectar', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4062, 0, 'es', 'buttons', 'emails.auth.confirm_account', 'Confirmar cuenta', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4063, 0, 'es', 'buttons', 'emails.auth.reset_password', 'Restablecer la contraseña', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4064, 0, 'es', 'buttons', 'general.cancel', 'Cancelar', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4065, 0, 'es', 'buttons', 'general.continue', 'Continuar', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4066, 0, 'es', 'buttons', 'general.crud.create', 'Crear', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4067, 0, 'es', 'buttons', 'general.crud.delete', 'Borrar', '2019-09-12 23:34:28', '2020-05-14 12:20:09'), (4068, 0, 'es', 'buttons', 'general.crud.edit', 'Editar', '2019-09-12 23:34:29', '2020-05-14 12:20:09'), (4069, 0, 'es', 'buttons', 'general.crud.update', 'Actualizar', '2019-09-12 23:34:29', '2020-05-14 12:20:09'), (4070, 0, 'es', 'buttons', 'general.crud.view', 'Ver', '2019-09-12 23:34:29', '2020-05-14 12:20:09'), (4071, 0, 'es', 'buttons', 'general.crud.generate', 'Generar', '2019-09-12 23:34:29', '2020-05-14 12:20:09'), (4072, 0, 'es', 'buttons', 'general.save', 'Salvar', '2019-09-12 23:34:29', '2020-05-14 12:20:09'), (4073, 0, 'es', 'buttons', 'general.view', 'Ver', '2019-09-12 23:34:29', '2020-05-14 12:20:09'), (4074, 0, 'es', 'configmanager', 'title', 'Administrador de configuración', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4075, 0, 'es', 'configmanager', 'info_choose', 'Elige un archivo para empezar a editar.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4076, 0, 'es', 'configmanager', 'file', 'Expediente', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4077, 0, 'es', 'configmanager', 'path', 'Camino', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4078, 0, 'es', 'configmanager', 'header.key', 'Llave', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4079, 0, 'es', 'configmanager', 'header.value', 'Valor', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4080, 0, 'es', 'configmanager', 'header.actions', 'Comportamiento', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4081, 0, 'es', 'configmanager', 'actions.edit', 'Editar', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4082, 0, 'es', 'configmanager', 'actions.confirm', 'Guardar nueva clave', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4083, 0, 'es', 'configmanager', 'actions.save', '¡Salvar!', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4084, 0, 'es', 'configmanager', 'actions.cancel', 'Cancelar', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4085, 0, 'es', 'configmanager', 'sure', '¿Estás seguro?', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4086, 0, 'es', 'datatable', 'colvis', 'Visibilidad de la columna', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4087, 0, 'es', 'datatable', 'csv', 'CSV', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4088, 0, 'es', 'datatable', 'pdf', 'PDF', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4089, 0, 'es', 'exceptions', 'backend.access.roles.already_exists', 'Ese papel ya existe. Por favor, elija un nombre diferente.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4090, 0, 'es', 'exceptions', 'backend.access.roles.cant_delete_admin', 'No se puede eliminar la función de administrador.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4091, 0, 'es', 'exceptions', 'backend.access.roles.create_error', 'Hubo un problema creando este rol. Inténtalo de nuevo.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4092, 0, 'es', 'exceptions', 'backend.access.roles.delete_error', 'Hubo un problema al eliminar este rol. Inténtalo de nuevo.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4093, 0, 'es', 'exceptions', 'backend.access.roles.has_users', 'No se puede eliminar un rol con usuarios asociados.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4094, 0, 'es', 'exceptions', 'backend.access.roles.needs_permission', 'Debe seleccionar al menos un permiso para este rol.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4095, 0, 'es', 'exceptions', 'backend.access.roles.not_found', 'Ese papel no existe.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4096, 0, 'es', 'exceptions', 'backend.access.roles.update_error', 'Hubo un problema al actualizar este rol. Inténtalo de nuevo.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4097, 0, 'es', 'exceptions', 'backend.access.users.already_confirmed', 'Este usuario ya está confirmado.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4098, 0, 'es', 'exceptions', 'backend.access.users.cant_confirm', 'Hubo un problema al confirmar la cuenta de usuario.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4099, 0, 'es', 'exceptions', 'backend.access.users.cant_deactivate_self', 'No puedes hacer eso a ti mismo.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4100, 0, 'es', 'exceptions', 'backend.access.users.cant_delete_admin', 'No se puede eliminar el super administrador.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4101, 0, 'es', 'exceptions', 'backend.access.users.cant_delete_self', 'No puedes borrarte.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4102, 0, 'es', 'exceptions', 'backend.access.users.cant_delete_own_session', 'No puedes borrar tu propia sesión.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4103, 0, 'es', 'exceptions', 'backend.access.users.cant_restore', 'Este usuario no se elimina, por lo que no se puede restaurar.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4104, 0, 'es', 'exceptions', 'backend.access.users.cant_unconfirm_admin', 'No puedes anular la confirmación del super administrador.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4105, 0, 'es', 'exceptions', 'backend.access.users.cant_unconfirm_self', 'Usted no puede anular la confirmación de sí mismo.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4106, 0, 'es', 'exceptions', 'backend.access.users.create_error', 'Hubo un problema al crear este usuario. Inténtalo de nuevo.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4107, 0, 'es', 'exceptions', 'backend.access.users.delete_error', 'Hubo un problema al eliminar este usuario. Inténtalo de nuevo.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4108, 0, 'es', 'exceptions', 'backend.access.users.delete_first', 'Este usuario debe eliminarse primero antes de que pueda ser destruido permanentemente.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4109, 0, 'es', 'exceptions', 'backend.access.users.email_error', 'Esa dirección de correo electrónico pertenece a un usuario diferente.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4110, 0, 'es', 'exceptions', 'backend.access.users.mark_error', 'Hubo un problema al actualizar este usuario. Inténtalo de nuevo.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4111, 0, 'es', 'exceptions', 'backend.access.users.not_confirmed', 'Este usuario no está confirmado.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4112, 0, 'es', 'exceptions', 'backend.access.users.not_found', 'Ese usuario no existe.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4113, 0, 'es', 'exceptions', 'backend.access.users.restore_error', 'Hubo un problema al restaurar este usuario. Inténtalo de nuevo.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4114, 0, 'es', 'exceptions', 'backend.access.users.role_needed_create', 'Debes elegir al menos un rol.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4115, 0, 'es', 'exceptions', 'backend.access.users.role_needed', 'Debes elegir al menos un rol.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4116, 0, 'es', 'exceptions', 'backend.access.users.session_wrong_driver', 'Su controlador de sesión debe configurarse en la base de datos para usar esta función.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4117, 0, 'es', 'exceptions', 'backend.access.users.social_delete_error', 'Hubo un problema al eliminar la cuenta social del usuario.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4118, 0, 'es', 'exceptions', 'backend.access.users.update_error', 'Hubo un problema al actualizar este usuario. Inténtalo de nuevo.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4119, 0, 'es', 'exceptions', 'backend.access.users.update_password_error', 'Hubo un problema al cambiar la contraseña de este usuario. Inténtalo de nuevo.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4120, 0, 'es', 'exceptions', 'frontend.auth.confirmation.already_confirmed', 'Tu cuenta ya está confirmada.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4121, 0, 'es', 'exceptions', 'frontend.auth.confirmation.confirm', '¡Confirme su cuenta!', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4122, 0, 'es', 'exceptions', 'frontend.auth.confirmation.created_confirm', 'Tu cuenta fue creada exitosamente. Le hemos enviado un correo electrónico para confirmar su cuenta.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4123, 0, 'es', 'exceptions', 'frontend.auth.confirmation.created_pending', 'Su cuenta fue creada exitosamente y está pendiente de aprobación. Se enviará un correo electrónico cuando se apruebe su cuenta.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4124, 0, 'es', 'exceptions', 'frontend.auth.confirmation.mismatch', 'Su código de confirmación no coincide.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4125, 0, 'es', 'exceptions', 'frontend.auth.confirmation.not_found', 'Ese código de confirmación no existe.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4126, 0, 'es', 'exceptions', 'frontend.auth.confirmation.pending', 'Su cuenta está pendiente de aprobación.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4127, 0, 'es', 'exceptions', 'frontend.auth.confirmation.resend', 'Tu cuenta no está confirmada. Haga clic en el enlace de confirmación en su correo electrónico o <a href=\":url\">click haga clic aquí </a> para reenviar el correo electrónico de confirmación.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4128, 0, 'es', 'exceptions', 'frontend.auth.confirmation.success', 'Su cuenta ha sido confirmada con éxito!', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4129, 0, 'es', 'exceptions', 'frontend.auth.confirmation.resent', 'Se ha enviado un nuevo correo electrónico de confirmación a la dirección que figura en el archivo.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4130, 0, 'es', 'exceptions', 'frontend.auth.deactivated', 'Tu cuenta ha sido desactivada.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4131, 0, 'es', 'exceptions', 'frontend.auth.email_taken', 'Esa dirección de correo electrónico ya está tomada.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4132, 0, 'es', 'exceptions', 'frontend.auth.password.change_mismatch', 'Esa no es tu antigua contraseña.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4133, 0, 'es', 'exceptions', 'frontend.auth.password.reset_problem', 'Hubo un problema al restablecer su contraseña. Por favor, vuelva a enviar el correo electrónico de restablecimiento de contraseña.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4134, 0, 'es', 'exceptions', 'frontend.auth.registration_disabled', 'La inscripción está actualmente cerrada.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4135, 0, 'es', 'http', '404.title', 'Página no encontrada', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4136, 0, 'es', 'http', '404.description', 'ESTO ES ALGUNO QUE EMBAJA, ¿NO ES?', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4137, 0, 'es', 'http', '404.back', 'Volver a la página de inicio', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4138, 0, 'es', 'http', '404.description2', 'Parece que no se encontró nada en esta ubicación.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4139, 0, 'es', 'http', '404.title2', '404', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4140, 0, 'es', 'http', '503.title', 'Vuelvo enseguida.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4141, 0, 'es', 'http', '503.description', 'Vuelvo enseguida.', '2019-09-12 23:34:29', '2020-05-14 12:20:10'), (4142, 0, 'es', 'labels', 'general.all', 'Todos', '2019-09-12 23:34:29', '2020-05-14 12:20:11'), (4143, 0, 'es', 'labels', 'general.yes', 'Sí', '2019-09-12 23:34:29', '2020-05-14 12:20:11'), (4144, 0, 'es', 'labels', 'general.no', 'No', '2019-09-12 23:34:29', '2020-05-14 12:20:11'), (4145, 0, 'es', 'labels', 'general.copyright', 'Copyright', '2019-09-12 23:34:29', '2020-05-14 12:20:11'), (4146, 0, 'es', 'labels', 'general.custom', 'Personalizado', '2019-09-12 23:34:29', '2020-05-14 12:20:11'), (4147, 0, 'es', 'labels', 'general.actions', 'Acciones', '2019-09-12 23:34:29', '2020-05-14 12:20:11'), (4148, 0, 'es', 'labels', 'general.active', 'Activo', '2019-09-12 23:34:29', '2020-05-14 12:20:11'), (4149, 0, 'es', 'labels', 'general.buttons.save', 'Guardar', '2019-09-12 23:34:29', '2020-05-14 12:20:11'), (4150, 0, 'es', 'labels', 'general.buttons.update', 'Actualizar', '2019-09-12 23:34:29', '2020-05-14 12:20:11'), (4151, 0, 'es', 'labels', 'general.buttons.cancel', 'Cancelar', '2019-09-12 23:34:29', '2020-05-14 12:20:11'), (4152, 0, 'es', 'labels', 'general.hide', 'Ocultar', '2019-09-12 23:34:29', '2020-05-14 12:20:11'), (4153, 0, 'es', 'labels', 'general.inactive', 'Inactivo', '2019-09-12 23:34:29', '2020-05-14 12:20:11'), (4154, 0, 'es', 'labels', 'general.none', 'Ningúno', '2019-09-12 23:34:29', '2020-05-14 12:20:11'), (4155, 0, 'es', 'labels', 'general.show', 'Mostrar', '2019-09-12 23:34:29', '2020-05-14 12:20:11'), (4156, 0, 'es', 'labels', 'general.toggle_navigation', 'Abrir/Cerrar menú de navegación', '2019-09-12 23:34:29', '2020-05-14 12:20:11'), (4157, 0, 'es', 'labels', 'general.trash', 'Basura', '2019-09-12 23:34:29', '2020-05-14 12:20:11'), (4158, 0, 'es', 'labels', 'general.toolbar_btn_groups', 'Barra de herramientas con grupos de botones', '2019-09-12 23:34:29', '2020-05-14 12:20:11'), (4159, 0, 'es', 'labels', 'general.sr_no', 'No Señor.', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4160, 0, 'es', 'labels', 'general.read_more', 'Lee mas', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4161, 0, 'es', 'labels', 'general.no_data_available', 'Datos no disponibles', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4162, 0, 'es', 'labels', 'general.more', 'Más', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4163, 0, 'es', 'labels', 'general.edit', 'Editar', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4164, 0, 'es', 'labels', 'general.delete_selected', 'Eliminar seleccionado', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4165, 0, 'es', 'labels', 'general.delete', 'Borrar', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4166, 0, 'es', 'labels', 'general.create_new', 'Crear nuevo', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4167, 0, 'es', 'labels', 'general.back', 'Espalda', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4168, 0, 'es', 'labels', 'backend.access.roles.create', 'Crear Rol', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4169, 0, 'es', 'labels', 'backend.access.roles.edit', 'Modificar Rol', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4170, 0, 'es', 'labels', 'backend.access.roles.management', 'Administración de Roles', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4171, 0, 'es', 'labels', 'backend.access.roles.table.number_of_users', 'Número de Usuarios', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4172, 0, 'es', 'labels', 'backend.access.roles.table.permissions', 'Permisos', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4173, 0, 'es', 'labels', 'backend.access.roles.table.role', 'Rol', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4174, 0, 'es', 'labels', 'backend.access.roles.table.sort', 'Orden', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4175, 0, 'es', 'labels', 'backend.access.roles.table.total', 'Todos los Roles', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4176, 0, 'es', 'labels', 'backend.access.users.active', 'Usuarios activos', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4177, 0, 'es', 'labels', 'backend.access.users.all_permissions', 'Todos los Permisos', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4178, 0, 'es', 'labels', 'backend.access.users.change_password', 'Cambiar la contraseña', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4179, 0, 'es', 'labels', 'backend.access.users.change_password_for', 'Cambiar la contraseña para :user', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4180, 0, 'es', 'labels', 'backend.access.users.create', 'Crear Usuario', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4181, 0, 'es', 'labels', 'backend.access.users.deactivated', 'Usuarios desactivados', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4182, 0, 'es', 'labels', 'backend.access.users.deleted', 'Usuarios eliminados', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4183, 0, 'es', 'labels', 'backend.access.users.edit', 'Modificar Usuario', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4184, 0, 'es', 'labels', 'backend.access.users.management', 'Administración de Usuarios', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4185, 0, 'es', 'labels', 'backend.access.users.no_permissions', 'Sin Permisos', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4186, 0, 'es', 'labels', 'backend.access.users.no_roles', 'No hay Roles disponibles.', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4187, 0, 'es', 'labels', 'backend.access.users.permissions', 'Permisos', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4188, 0, 'es', 'labels', 'backend.access.users.table.confirmed', 'Confirmado', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4189, 0, 'es', 'labels', 'backend.access.users.table.created', 'Creado', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4190, 0, 'es', 'labels', 'backend.access.users.table.email', 'Correo', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4191, 0, 'es', 'labels', 'backend.access.users.table.id', 'ID', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4192, 0, 'es', 'labels', 'backend.access.users.table.last_updated', 'Última modificación', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4193, 0, 'es', 'labels', 'backend.access.users.table.name', 'Nombre', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4194, 0, 'es', 'labels', 'backend.access.users.table.first_name', 'Nombre', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4195, 0, 'es', 'labels', 'backend.access.users.table.last_name', 'Apellidos', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4196, 0, 'es', 'labels', 'backend.access.users.table.no_deactivated', 'Ningún Usuario desactivado disponible', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4197, 0, 'es', 'labels', 'backend.access.users.table.no_deleted', 'Ningún Usuario eliminado disponible', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4198, 0, 'es', 'labels', 'backend.access.users.table.other_permissions', 'Otros Permisos', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4199, 0, 'es', 'labels', 'backend.access.users.table.permissions', 'Permisos', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4200, 0, 'es', 'labels', 'backend.access.users.table.roles', 'Roles', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4201, 0, 'es', 'labels', 'backend.access.users.table.social', 'Cuenta Social', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4202, 0, 'es', 'labels', 'backend.access.users.table.total', 'Todos los Usuarios', '2019-09-12 23:34:30', '2020-05-14 12:20:11'); INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES (4203, 0, 'es', 'labels', 'backend.access.users.table.abilities', 'Habilidades', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4204, 0, 'es', 'labels', 'backend.access.users.table.status', 'Estado', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4205, 0, 'es', 'labels', 'backend.access.users.tabs.titles.overview', 'Resúmen', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4206, 0, 'es', 'labels', 'backend.access.users.tabs.titles.history', 'Historia', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4207, 0, 'es', 'labels', 'backend.access.users.tabs.content.overview.avatar', 'Avatar', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4208, 0, 'es', 'labels', 'backend.access.users.tabs.content.overview.confirmed', 'Confirmado', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4209, 0, 'es', 'labels', 'backend.access.users.tabs.content.overview.created_at', 'Creación', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4210, 0, 'es', 'labels', 'backend.access.users.tabs.content.overview.deleted_at', 'Eliminación', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4211, 0, 'es', 'labels', 'backend.access.users.tabs.content.overview.email', 'E-mail', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4212, 0, 'es', 'labels', 'backend.access.users.tabs.content.overview.last_login_at', 'Último Login En', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4213, 0, 'es', 'labels', 'backend.access.users.tabs.content.overview.last_login_ip', 'Último Login IP', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4214, 0, 'es', 'labels', 'backend.access.users.tabs.content.overview.last_updated', 'Última Actualización', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4215, 0, 'es', 'labels', 'backend.access.users.tabs.content.overview.name', 'Nombre', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4216, 0, 'es', 'labels', 'backend.access.users.tabs.content.overview.first_name', 'Nombre', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4217, 0, 'es', 'labels', 'backend.access.users.tabs.content.overview.last_name', 'Apellidos', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4218, 0, 'es', 'labels', 'backend.access.users.tabs.content.overview.status', 'Estatus', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4219, 0, 'es', 'labels', 'backend.access.users.tabs.content.overview.timezone', 'Zona horaria', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4220, 0, 'es', 'labels', 'backend.access.users.view', 'Ver Usuario', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4221, 0, 'es', 'labels', 'backend.access.users.user_actions', 'Acciones del usuario', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4222, 0, 'es', 'labels', 'backend.backup.api_key', 'Clave API', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4223, 0, 'es', 'labels', 'backend.backup.api_secret', 'API Secret', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4224, 0, 'es', 'labels', 'backend.backup.app_key', 'Clave de aplicación', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4225, 0, 'es', 'labels', 'backend.backup.app_secret', 'App secreta', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4226, 0, 'es', 'labels', 'backend.backup.app_token', 'App Token', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4227, 0, 'es', 'labels', 'backend.backup.aws', 'AWS S3', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4228, 0, 'es', 'labels', 'backend.backup.backup_files', 'Archivos de respaldo', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4229, 0, 'es', 'labels', 'backend.backup.backup_note', '<b> Nota </b>: para ejecutar esta copia de seguridad correctamente, debe agregar el siguiente código a su <b> TABLA CRON: </b> <br> <code> * * * * * cd / path-to-your -proyecto && php programa artesanal: ejecuta >> / dev / null 2> & 1 </code>', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4230, 0, 'es', 'labels', 'backend.backup.backup_notice', 'Por favor, consulte la documentación antes de comenzar la copia de seguridad. Tiene todos los detalles paso a paso para crear copias de seguridad con Dropbox.', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4231, 0, 'es', 'labels', 'backend.backup.backup_schedule', 'Horario de copia de seguridad', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4232, 0, 'es', 'labels', 'backend.backup.backup_type', 'Tipo de copia de seguridad', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4233, 0, 'es', 'labels', 'backend.backup.bucket_name', 'Nombre del cubo', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4234, 0, 'es', 'labels', 'backend.backup.configuration', 'Configuración', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4235, 0, 'es', 'labels', 'backend.backup.daily', 'Diario', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4236, 0, 'es', 'labels', 'backend.backup.db', 'Base de datos', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4237, 0, 'es', 'labels', 'backend.backup.db_app', 'Base de datos y archivos de aplicación', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4238, 0, 'es', 'labels', 'backend.backup.db_storage', 'Base de datos y archivos de almacenamiento', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4239, 0, 'es', 'labels', 'backend.backup.dropbox', 'Dropbox', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4240, 0, 'es', 'labels', 'backend.backup.dropbox_note', 'Consulte la documentación de <b> ¿Cómo obtener las claves de la aplicación DropBox? </b>', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4241, 0, 'es', 'labels', 'backend.backup.email', 'Notificación de correo electrónico', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4242, 0, 'es', 'labels', 'backend.backup.enable_disable', 'Habilitar deshabilitar', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4243, 0, 'es', 'labels', 'backend.backup.generate_backup', 'Generar copia de seguridad', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4244, 0, 'es', 'labels', 'backend.backup.monthly', 'Mensual', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4245, 0, 'es', 'labels', 'backend.backup.region', 'Región', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4246, 0, 'es', 'labels', 'backend.backup.title', 'Apoyo', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4247, 0, 'es', 'labels', 'backend.backup.weekly', 'Semanal', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4248, 0, 'es', 'labels', 'backend.blogs.create', 'Blog creativo', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4249, 0, 'es', 'labels', 'backend.blogs.edit', 'Edit Blog', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4250, 0, 'es', 'labels', 'backend.blogs.fields.category', 'Categoría', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4251, 0, 'es', 'labels', 'backend.blogs.fields.clear', 'Claro', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4252, 0, 'es', 'labels', 'backend.blogs.fields.comments', 'Comentarios', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4253, 0, 'es', 'labels', 'backend.blogs.fields.content', 'Contenido', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4254, 0, 'es', 'labels', 'backend.blogs.fields.created', 'Creado', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4255, 0, 'es', 'labels', 'backend.blogs.fields.created_at', 'Creado en', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4256, 0, 'es', 'labels', 'backend.blogs.fields.featured_image', 'Foto principal', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4257, 0, 'es', 'labels', 'backend.blogs.fields.meta_description', 'Metadescripción', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4258, 0, 'es', 'labels', 'backend.blogs.fields.meta_keywords', 'Meta Keywords', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4259, 0, 'es', 'labels', 'backend.blogs.fields.meta_title', 'Título meta', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4260, 0, 'es', 'labels', 'backend.blogs.fields.publish', 'Publicar', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4261, 0, 'es', 'labels', 'backend.blogs.fields.slug', 'Babosa', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4262, 0, 'es', 'labels', 'backend.blogs.fields.status', 'Estado', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4263, 0, 'es', 'labels', 'backend.blogs.fields.tags', 'Etiquetas', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4264, 0, 'es', 'labels', 'backend.blogs.fields.tags_placeholder', 'Añadir etiquetas aquí', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4265, 0, 'es', 'labels', 'backend.blogs.fields.title', 'Título', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4266, 0, 'es', 'labels', 'backend.blogs.fields.views', 'Puntos de vista', '2019-09-12 23:34:30', '2020-05-14 12:20:11'), (4267, 0, 'es', 'labels', 'backend.blogs.max_file_size', '(tamaño máximo de archivo 10MB)', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4268, 0, 'es', 'labels', 'backend.blogs.title', 'Blog', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4269, 0, 'es', 'labels', 'backend.blogs.view', 'Ver Blogs', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4270, 0, 'es', 'labels', 'backend.categories.create', 'Crear Categoría', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4271, 0, 'es', 'labels', 'backend.categories.edit', 'Editar categoria', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4272, 0, 'es', 'labels', 'backend.categories.fields.courses', 'Los cursos', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4273, 0, 'es', 'labels', 'backend.categories.fields.icon', 'Icono', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4274, 0, 'es', 'labels', 'backend.categories.fields.icon_type.icon', 'Seleccionar icono', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4275, 0, 'es', 'labels', 'backend.categories.fields.icon_type.image', 'Cargar imagen', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4276, 0, 'es', 'labels', 'backend.categories.fields.icon_type.select_any', 'Seleccione Cualquiera', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4277, 0, 'es', 'labels', 'backend.categories.fields.icon_type.title', 'Tipo de icono', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4278, 0, 'es', 'labels', 'backend.categories.fields.image', 'Imagen', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4279, 0, 'es', 'labels', 'backend.categories.fields.name', 'Nombre', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4280, 0, 'es', 'labels', 'backend.categories.fields.or', 'O', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4281, 0, 'es', 'labels', 'backend.categories.fields.select_icon', 'Select Icon', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4282, 0, 'es', 'labels', 'backend.categories.fields.slug', 'Babosa', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4283, 0, 'es', 'labels', 'backend.categories.fields.status', 'Estado', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4284, 0, 'es', 'labels', 'backend.categories.title', 'Categorías', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4285, 0, 'es', 'labels', 'backend.categories.view', 'Ver Categorías', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4286, 0, 'es', 'labels', 'backend.courses.fields.slug', 'Babosa', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4287, 0, 'es', 'labels', 'backend.courses.fields.status', 'Estado', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4288, 0, 'es', 'labels', 'backend.courses.fields.category', 'Categoría', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4289, 0, 'es', 'labels', 'backend.courses.fields.course', 'Curso', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4290, 0, 'es', 'labels', 'backend.courses.fields.course_image', 'Imagen del curso', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4291, 0, 'es', 'labels', 'backend.courses.fields.description', 'Descripción', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4292, 0, 'es', 'labels', 'backend.courses.fields.featured', 'Destacados', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4293, 0, 'es', 'labels', 'backend.courses.fields.lessons.add', 'Añadir lecciones', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4294, 0, 'es', 'labels', 'backend.courses.fields.lessons.view', 'Ver Lecciones', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4295, 0, 'es', 'labels', 'backend.courses.fields.meta_description', 'Metadescripción', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4296, 0, 'es', 'labels', 'backend.courses.fields.meta_keywords', 'Meta Keywords', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4297, 0, 'es', 'labels', 'backend.courses.fields.meta_title', 'Título meta', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4298, 0, 'es', 'labels', 'backend.courses.fields.popular', 'Popular', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4299, 0, 'es', 'labels', 'backend.courses.fields.price', 'Precio', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4300, 0, 'es', 'labels', 'backend.courses.fields.published', 'Publicado', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4301, 0, 'es', 'labels', 'backend.courses.fields.sidebar', 'Añadir barra lateral', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4302, 0, 'es', 'labels', 'backend.courses.fields.start_date', 'Fecha de inicio', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4303, 0, 'es', 'labels', 'backend.courses.fields.teachers', 'Maestros', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4304, 0, 'es', 'labels', 'backend.courses.fields.title', 'Título', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4305, 0, 'es', 'labels', 'backend.courses.fields.trending', 'Tendencias', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4306, 0, 'es', 'labels', 'backend.courses.fields.free', 'Gratis', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4307, 0, 'es', 'labels', 'backend.courses.add_categories', 'Añadir categorías', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4308, 0, 'es', 'labels', 'backend.courses.add_teachers', 'Añadir profesores', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4309, 0, 'es', 'labels', 'backend.courses.category', 'Categoría', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4310, 0, 'es', 'labels', 'backend.courses.course_timeline', 'Línea de tiempo del curso', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4311, 0, 'es', 'labels', 'backend.courses.create', 'Crear Curso', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4312, 0, 'es', 'labels', 'backend.courses.edit', 'Editar curso', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4313, 0, 'es', 'labels', 'backend.courses.lesson', 'Lección', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4314, 0, 'es', 'labels', 'backend.courses.listing_note', 'Sólo se mostrarán y ordenarán las lecciones y pruebas publicadas.', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4315, 0, 'es', 'labels', 'backend.courses.save_timeline', 'Guardar línea de tiempo', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4316, 0, 'es', 'labels', 'backend.courses.select_category', 'selecciona una categoría', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4317, 0, 'es', 'labels', 'backend.courses.select_teachers', 'Maestros selectos', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4318, 0, 'es', 'labels', 'backend.courses.slug_placeholder', 'Slug de entrada o se generará automáticamente.', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4319, 0, 'es', 'labels', 'backend.courses.test', 'Prueba', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4320, 0, 'es', 'labels', 'backend.courses.timeline_description', 'Arrastrar y cambiar la secuencia de Lecciones / Pruebas para el curso.', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4321, 0, 'es', 'labels', 'backend.courses.title', 'Los cursos', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4322, 0, 'es', 'labels', 'backend.courses.view', 'Ver cursos', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4323, 0, 'es', 'labels', 'backend.pages.fields.slug', 'Babosa', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4324, 0, 'es', 'labels', 'backend.pages.fields.clear', 'Claro', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4325, 0, 'es', 'labels', 'backend.pages.fields.content', 'Contenido', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4326, 0, 'es', 'labels', 'backend.pages.fields.created', 'Creado', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4327, 0, 'es', 'labels', 'backend.pages.fields.created_at', 'Creado en', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4328, 0, 'es', 'labels', 'backend.pages.fields.drafted', 'Redactado', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4329, 0, 'es', 'labels', 'backend.pages.fields.featured_image', 'Foto principal', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4330, 0, 'es', 'labels', 'backend.pages.fields.meta_description', 'Metadescripción', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4331, 0, 'es', 'labels', 'backend.pages.fields.meta_keywords', 'Meta Keywords', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4332, 0, 'es', 'labels', 'backend.pages.fields.meta_title', 'Título meta', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4333, 0, 'es', 'labels', 'backend.pages.fields.published', 'Publicado', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4334, 0, 'es', 'labels', 'backend.pages.fields.status', 'Estado', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4335, 0, 'es', 'labels', 'backend.pages.fields.title', 'Título', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4336, 0, 'es', 'labels', 'backend.pages.create', 'Crear página', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4337, 0, 'es', 'labels', 'backend.pages.edit', 'Editar página', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4338, 0, 'es', 'labels', 'backend.pages.max_file_size', '(tamaño máximo de archivo 10MB)', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4339, 0, 'es', 'labels', 'backend.pages.title', 'Páginas', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4340, 0, 'es', 'labels', 'backend.pages.view', 'Ver páginas', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4341, 0, 'es', 'labels', 'backend.lessons.fields.slug', 'Babosa', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4342, 0, 'es', 'labels', 'backend.lessons.fields.course', 'Curso', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4343, 0, 'es', 'labels', 'backend.lessons.fields.downloadable_files', 'Archivos descargables', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4344, 0, 'es', 'labels', 'backend.lessons.fields.free_lesson', 'Lección gratis', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4345, 0, 'es', 'labels', 'backend.lessons.fields.full_text', 'Texto completo', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4346, 0, 'es', 'labels', 'backend.lessons.fields.lesson_image', 'Imagen de la lección', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4347, 0, 'es', 'labels', 'backend.lessons.fields.position', 'Posición', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4348, 0, 'es', 'labels', 'backend.lessons.fields.published', 'publicado', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4349, 0, 'es', 'labels', 'backend.lessons.fields.short_text', 'Texto corto', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4350, 0, 'es', 'labels', 'backend.lessons.fields.title', 'Título', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4351, 0, 'es', 'labels', 'backend.lessons.fields.youtube_videos', 'Videos de Youtube', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4352, 0, 'es', 'labels', 'backend.lessons.fields.add_pdf', 'Añadir PDF', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4353, 0, 'es', 'labels', 'backend.lessons.fields.add_video', 'Añadir video', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4354, 0, 'es', 'labels', 'backend.lessons.fields.add_audio', 'Añadir audio', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4355, 0, 'es', 'labels', 'backend.lessons.fields.media_audio', 'Media Audio', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4356, 0, 'es', 'labels', 'backend.lessons.fields.media_pdf', 'Media PDF', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4357, 0, 'es', 'labels', 'backend.lessons.fields.media_video', 'Video multimedia', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4358, 0, 'es', 'labels', 'backend.lessons.create', 'Crear lección', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4359, 0, 'es', 'labels', 'backend.lessons.edit', 'Editar Lección', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4360, 0, 'es', 'labels', 'backend.lessons.max_file_size', '(tamaño máximo de archivo 5MB)', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4361, 0, 'es', 'labels', 'backend.lessons.select_course', 'Seleccionar curso', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4362, 0, 'es', 'labels', 'backend.lessons.short_description_placeholder', 'Introduzca una breve descripción de la lección', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4363, 0, 'es', 'labels', 'backend.lessons.slug_placeholder', 'Insertar una breve descripción de la lección', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4364, 0, 'es', 'labels', 'backend.lessons.title', 'Lecciones', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4365, 0, 'es', 'labels', 'backend.lessons.view', 'Ver Lecciones', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4366, 0, 'es', 'labels', 'backend.lessons.video_guide', '<p class = \"mb-1\"> <b> Youtube: </b> Vaya a Youtube -> Vaya al video que desea visualizar -> haga clic en el botón Compartir debajo del video. Copia los enlaces y pégalos en el cuadro de texto anterior </p>\n<p class = \"mb-1\"> <b> Vimeo: </b> Vaya a Vimeo -> Vaya al video que desea mostrar -> haga clic en el botón Compartir y copie la URL del video aquí </p>\n<p class = \"mb-1\"> <b> Subir: </b> Subir <b> mp4 </b> en la entrada del archivo </p>\n<p class = \"mb-1\"> <b> Incrustar: </b> Copiar / Pegar código de inserción en el cuadro de texto anterior </p>', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4367, 0, 'es', 'labels', 'backend.lessons.remove', 'Retirar', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4368, 0, 'es', 'labels', 'backend.lessons.enter_video_url', 'Introducir datos de video', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4369, 0, 'es', 'labels', 'backend.lessons.enter_video_embed_code', 'Ingrese el código de inserción de video', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4370, 0, 'es', 'labels', 'backend.lessons.vimeo_note', '<b> Instrucciones para agregar el enlace del video: </b> <br> Vaya a vimeo -> abrir video -> haga clic derecho en el video y <b> Copiar URL del video </b> y péguelo aquí. <br> Si desea para agregar varios videos, luego sepárelos con <b>, </b> (coma) Firmar.', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4371, 0, 'es', 'labels', 'backend.lessons.yt_note', '<b> Instructions pour ajouter un lien vidéo: </b> <br> Allez sur youtube -> ouvrir la vidéo -> faites un clic droit sur la vidéo et <b> Copier l\'URL de la vidéo </b> et collez-le ici. <br> Si vous voulez pour ajouter plusieurs vidéos, séparez-les par <b>, </b> (Virgule).', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4372, 0, 'es', 'labels', 'backend.contacts.fields.email', 'Email', '2019-09-12 23:34:31', '2020-05-14 12:20:11'), (4373, 0, 'es', 'labels', 'backend.contacts.fields.message', 'Mensaje', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4374, 0, 'es', 'labels', 'backend.contacts.fields.name', 'Nombre', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4375, 0, 'es', 'labels', 'backend.contacts.fields.phone', 'Teléfono', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4376, 0, 'es', 'labels', 'backend.contacts.fields.time', 'Hora', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4377, 0, 'es', 'labels', 'backend.contacts.title', 'Lleva', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4378, 0, 'es', 'labels', 'backend.dashboard.amount', 'Cantidad', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4379, 0, 'es', 'labels', 'backend.dashboard.buy_course_now', 'Comprar curso ahora', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4380, 0, 'es', 'labels', 'backend.dashboard.completed', 'Terminado', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4381, 0, 'es', 'labels', 'backend.dashboard.course', 'Curso', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4382, 0, 'es', 'labels', 'backend.dashboard.courses', 'Los cursos', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4383, 0, 'es', 'labels', 'backend.dashboard.email', 'Email', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4384, 0, 'es', 'labels', 'backend.dashboard.message', 'Mensaje', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4385, 0, 'es', 'labels', 'backend.dashboard.message_by', 'Mensaje por', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4386, 0, 'es', 'labels', 'backend.dashboard.name', 'Nombre', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4387, 0, 'es', 'labels', 'backend.dashboard.no_data', 'Datos no disponibles', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4388, 0, 'es', 'labels', 'backend.dashboard.ordered_by', 'Ordenado por', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4389, 0, 'es', 'labels', 'backend.dashboard.recent_contact_requests', 'Solicitudes de contacto recientes', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4390, 0, 'es', 'labels', 'backend.dashboard.recent_contacts', 'Contactos recientes', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4391, 0, 'es', 'labels', 'backend.dashboard.recent_messages', 'Mensajes recientes', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4392, 0, 'es', 'labels', 'backend.dashboard.recent_orders', 'órdenes recientes', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4393, 0, 'es', 'labels', 'backend.dashboard.recent_reviews', 'Opiniones recientes', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4394, 0, 'es', 'labels', 'backend.dashboard.review', 'revisión', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4395, 0, 'es', 'labels', 'backend.dashboard.students', 'Estudiantes', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4396, 0, 'es', 'labels', 'backend.dashboard.students_enrolled', 'Estudiantes matriculados en<br> tus cursos', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4397, 0, 'es', 'labels', 'backend.dashboard.teachers', 'Enseignants', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4398, 0, 'es', 'labels', 'backend.dashboard.time', 'Hora', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4399, 0, 'es', 'labels', 'backend.dashboard.title', 'Tablero', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4400, 0, 'es', 'labels', 'backend.dashboard.trending', 'Tendencias', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4401, 0, 'es', 'labels', 'backend.dashboard.view', 'Ver', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4402, 0, 'es', 'labels', 'backend.dashboard.view_all', 'Ver todo', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4403, 0, 'es', 'labels', 'backend.dashboard.your_courses', 'Tus cursos', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4404, 0, 'es', 'labels', 'backend.dashboard.my_course_bundles', 'Mis paquetes de curso', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4405, 0, 'es', 'labels', 'backend.dashboard.my_courses', 'Mis cursos', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4406, 0, 'es', 'labels', 'backend.dashboard.course_and_bundles', 'Curso y Paquetes', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4407, 0, 'es', 'labels', 'backend.dashboard.your_courses_and_bundles', 'Tus cursos y paquetes', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4408, 0, 'es', 'labels', 'backend.dashboard.pending', 'Pendiente', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4409, 0, 'es', 'labels', 'backend.dashboard.pending_orders', 'Ordenes pendientes', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4410, 0, 'es', 'labels', 'backend.dashboard.success', 'Éxito', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4411, 0, 'es', 'labels', 'backend.dashboard.failed', 'Ha fallado', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4412, 0, 'es', 'labels', 'backend.faqs.create', 'Crear preguntas frecuentes', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4413, 0, 'es', 'labels', 'backend.faqs.edit', 'Editar preguntas frecuentes', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4414, 0, 'es', 'labels', 'backend.faqs.fields.answer', 'Responder', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4415, 0, 'es', 'labels', 'backend.faqs.fields.category', 'Categoría', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4416, 0, 'es', 'labels', 'backend.faqs.fields.question', 'Pregunta', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4417, 0, 'es', 'labels', 'backend.faqs.fields.status', 'Estado', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4418, 0, 'es', 'labels', 'backend.faqs.title', 'Preguntas frecuentes', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4419, 0, 'es', 'labels', 'backend.faqs.view', 'Ver preguntas frecuentes', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4420, 0, 'es', 'labels', 'backend.general_settings.app_locale', 'Localidad de la aplicación', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4421, 0, 'es', 'labels', 'backend.general_settings.app_name', 'Nombre de la aplicación', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4422, 0, 'es', 'labels', 'backend.general_settings.app_timezone', 'Zona horaria de la aplicación', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4423, 0, 'es', 'labels', 'backend.general_settings.app_url', 'URL de la aplicación', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4424, 0, 'es', 'labels', 'backend.general_settings.change_email', 'Cambiar e-mail', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4425, 0, 'es', 'labels', 'backend.general_settings.confirm_email', 'Confirmar correo electrónico', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4426, 0, 'es', 'labels', 'backend.general_settings.contact.location_on_map', 'Ubicación en el mapa', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4427, 0, 'es', 'labels', 'backend.general_settings.contact.map_note', '<h3> ¿Cómo incrustar la ubicación para el mapa? </h3>\n <p> Sigue los sencillos pasos y ya estás listo: </p>\n <ol class = \"map-guide\">\n <li> Vaya a <a class=\"text-bold\" target=\"_blank\" href=\"//maps.google.com\"> Mapa de Google </a> </li>\n <li> Busque el lugar que desea agregar ingresando la dirección / ubicación en el cuadro de entrada ubicado en la esquina superior izquierda </li>\n <li> Una vez que obtenga el lugar que desea. Muestra detalles en la barra lateral izquierda. Haga clic en el botón <i class = \"fa fa-share-alt text-primary\"> </i> </li>\n <li> Aparecerá una ventana emergente que tendrá dos pestañas <b> Enviar un enlace </b> y <b> Incrustar un mapa </b> </li>\n <li> Haga clic en <b> Insertar un mapa </b>. Le mostrará el lugar que ha elegido en el mapa </li>\n <li> Ahora haga clic en el menú desplegable de la izquierda. De forma predeterminada, se selecciona <b> Medio </b>. Haga clic en él y seleccione <b> Large</b> </li>\n <li> Ahora haga clic en el enlace <b class = \"text-primary\"> COPY HTML </b> y <b> Pegar </b> ese código aquí en <b> Ubicación en el mapa </b>. < /li>\n </ol>', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4428, 0, 'es', 'labels', 'backend.general_settings.contact.primary_address', 'dirección primaria', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4429, 0, 'es', 'labels', 'backend.general_settings.contact.primary_email', 'Correo electrónico principal', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4430, 0, 'es', 'labels', 'backend.general_settings.contact.primary_email_note', 'Este correo electrónico se utilizará para corresponder a los correos electrónicos \"Contáctenos\"', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4431, 0, 'es', 'labels', 'backend.general_settings.contact.primary_phone', 'Teléfono Principal', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4432, 0, 'es', 'labels', 'backend.general_settings.contact.secondary_address', 'Dirección secundaria', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4433, 0, 'es', 'labels', 'backend.general_settings.contact.secondary_email', 'Dirección secundaria', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4434, 0, 'es', 'labels', 'backend.general_settings.contact.secondary_phone', 'Teléfono secundario', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4435, 0, 'es', 'labels', 'backend.general_settings.contact.short_text', 'Texto corto', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4436, 0, 'es', 'labels', 'backend.general_settings.contact.show', 'Show', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4437, 0, 'es', 'labels', 'backend.general_settings.contact.title', 'Contacto', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4438, 0, 'es', 'labels', 'backend.general_settings.counter', 'Mostrador', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4439, 0, 'es', 'labels', 'backend.general_settings.counter_note', '<b> Estático </b> = Agregar datos manualmente para el contador. Ingrese el texto exacto que desea mostrar en la sección de contador de frontend, <br> <b> Database / Real </b> = Tomará datos reales de la base de datos para todos los campos (Estudiantes inscritos, Total de cursos, Total de maestros)', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4440, 0, 'es', 'labels', 'backend.general_settings.database', 'Base de datos / Real', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4441, 0, 'es', 'labels', 'backend.general_settings.email.mail_driver', 'Controlador de correo', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4442, 0, 'es', 'labels', 'backend.general_settings.email.mail_driver_note', 'Puede seleccionar cualquier controlador que desee para su configuración de correo. <b> Ex. SMTP, Mailgun, Mandrill, SparkPost, Amazon SES, etc. </b> <br> Agregar <b> solo controlador único </b>.', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4443, 0, 'es', 'labels', 'backend.general_settings.email.mail_encryption', 'Cifrado de correo', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4444, 0, 'es', 'labels', 'backend.general_settings.email.mail_encryption_note', 'Use <b> tls </b> si su sitio usa el protocolo <b> HTTP </b> y <b> ssl </b> si su sitio usa el protocolo <b> HTTPS </b>', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4445, 0, 'es', 'labels', 'backend.general_settings.email.mail_from_address', 'Correo de dirección', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4446, 0, 'es', 'labels', 'backend.general_settings.email.mail_from_address_note', 'Este correo electrónico se utilizará para la correspondencia del \"Formulario de contacto\".', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4447, 0, 'es', 'labels', 'backend.general_settings.email.mail_from_name', 'Correo de nombre', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4448, 0, 'es', 'labels', 'backend.general_settings.email.mail_from_name_note', 'Este será el nombre para mostrar de su correo electrónico enviado.', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4449, 0, 'es', 'labels', 'backend.general_settings.email.mail_host', 'Correo HOST', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4450, 0, 'es', 'labels', 'backend.general_settings.email.mail_password', 'Contraseña de correo', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4451, 0, 'es', 'labels', 'backend.general_settings.email.mail_password_note', 'Agregue la contraseña de correo electrónico que desea configurar para enviar correos electrónicos', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4452, 0, 'es', 'labels', 'backend.general_settings.email.mail_port', 'Correo PORT', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4453, 0, 'es', 'labels', 'backend.general_settings.email.mail_username', 'Nombre de usuario del correo', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4454, 0, 'es', 'labels', 'backend.general_settings.email.mail_username_note', 'Agregue su ID de correo electrónico que desea configurar para enviar correos electrónicos', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4455, 0, 'es', 'labels', 'backend.general_settings.email.note', '<b> Nota importante </b>: si está utilizando <b> GMAIL </b> para la configuración de correo, asegúrese de haber completado el siguiente proceso antes de actualizar:\n <ul>\n<li> Vaya a <a target=\"_blank\" href=\"https://myaccount.google.com/security\"> Mi cuenta </a> desde la cuenta de Google que desea configurar e iniciar sesión </li>\n<li> Desplácese hacia abajo hasta <b> Acceso de aplicación menos seguro </b> y configúrelo <b>ON</b> </li>\n</ul>', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4456, 0, 'es', 'labels', 'backend.general_settings.email.title', 'Configuración de correo', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4457, 0, 'es', 'labels', 'backend.general_settings.enable_registration', 'Habilitar registro', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4458, 0, 'es', 'labels', 'backend.general_settings.font_color', 'Color de fuente', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4459, 0, 'es', 'labels', 'backend.general_settings.footer.bottom_footer', 'Pie de página inferior', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4460, 0, 'es', 'labels', 'backend.general_settings.footer.bottom_footer_note', 'Nota: incluye texto de copyright y enlaces de pie de página.', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4461, 0, 'es', 'labels', 'backend.general_settings.footer.copyright_text', 'Texto de copyright', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4462, 0, 'es', 'labels', 'backend.general_settings.footer.custom_links', 'Enlaces personalizados', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4463, 0, 'es', 'labels', 'backend.general_settings.footer.featured_courses', 'Cursos destacados', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4464, 0, 'es', 'labels', 'backend.general_settings.footer.footer_links', 'Enlaces de pie de página', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4465, 0, 'es', 'labels', 'backend.general_settings.footer.link', 'Enlazar', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4466, 0, 'es', 'labels', 'backend.general_settings.footer.link_label', 'Etiqueta', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4467, 0, 'es', 'labels', 'backend.general_settings.footer.link_url', 'URL', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4468, 0, 'es', 'labels', 'backend.general_settings.footer.newsletter_form', 'Boletín de noticias', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4469, 0, 'es', 'labels', 'backend.general_settings.footer.popular_categories', 'Categorías Populares', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4470, 0, 'es', 'labels', 'backend.general_settings.footer.popular_courses', 'Cursos populares', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4471, 0, 'es', 'labels', 'backend.general_settings.footer.recent_news', 'Noticias recientes', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4472, 0, 'es', 'labels', 'backend.general_settings.footer.section_1', 'Sección 1', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4473, 0, 'es', 'labels', 'backend.general_settings.footer.section_2', 'Sección 2', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4474, 0, 'es', 'labels', 'backend.general_settings.footer.section_3', 'Sección 3', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4475, 0, 'es', 'labels', 'backend.general_settings.footer.short_description', 'Breve descripción', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4476, 0, 'es', 'labels', 'backend.general_settings.footer.social_links', 'vínculos sociales', '2019-09-12 23:34:32', '2020-05-14 12:20:11'), (4477, 0, 'es', 'labels', 'backend.general_settings.footer.social_links_note', 'Agregue la URL del enlace social y seleccione el icono para ese medio desde el selector de iconos. Haga clic en el botón <b> AGREGAR + </b>. Y tu enlace social será creado. También puede eliminarlos haciendo clic en el botón <b> <i class = \"fa fa-times\"> </i> </b>', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4478, 0, 'es', 'labels', 'backend.general_settings.footer.title', 'Pie de página', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4479, 0, 'es', 'labels', 'backend.general_settings.footer.trending_courses', 'Cursos de tendencias', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4480, 0, 'es', 'labels', 'backend.general_settings.general.title', 'General', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4481, 0, 'es', 'labels', 'backend.general_settings.google_analytics', 'Código de Google Analytics', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4482, 0, 'es', 'labels', 'backend.general_settings.homepage', 'Seleccione la página de inicio', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4483, 0, 'es', 'labels', 'backend.general_settings.layout.title', 'Diseño', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4484, 0, 'es', 'labels', 'backend.general_settings.layout_note', 'Esto cambiará el diseño del tema frontend', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4485, 0, 'es', 'labels', 'backend.general_settings.layout_type', 'Tipo de diseño', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4486, 0, 'es', 'labels', 'backend.general_settings.logos.title', 'Logotipos', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4487, 0, 'es', 'labels', 'backend.general_settings.mail_configuration_note', '¿Has configurado :link Configuración de correo </a>? Es obligatorio configurar para enviar / recibir correos electrónicos.', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4488, 0, 'es', 'labels', 'backend.general_settings.mail_driver', 'Controlador de correo', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4489, 0, 'es', 'labels', 'backend.general_settings.mail_from_address', 'Correo de dirección', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4490, 0, 'es', 'labels', 'backend.general_settings.mail_from_name', 'Correo de nombre', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4491, 0, 'es', 'labels', 'backend.general_settings.mail_host', 'Host de correo', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4492, 0, 'es', 'labels', 'backend.general_settings.mail_password', 'Contraseña de correo', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4493, 0, 'es', 'labels', 'backend.general_settings.mail_port', 'Puerto de correo', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4494, 0, 'es', 'labels', 'backend.general_settings.mail_username', 'Nombre de usuario del correo', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4495, 0, 'es', 'labels', 'backend.general_settings.management', 'Configuración general', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4496, 0, 'es', 'labels', 'backend.general_settings.newsletter.api_key', 'Clave API', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4497, 0, 'es', 'labels', 'backend.general_settings.newsletter.api_key_note', 'Genere <b> clave de API </b> a partir de su <a target=\"_blank\" href=\"https://mailchimp.com/\"> <b> cuenta de Mailchimp </b> </a> y péguela arriba. caja de texto.', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4498, 0, 'es', 'labels', 'backend.general_settings.newsletter.api_key_note_sendgrid', 'Genere <b> clave de API </b> a partir de su <a target=\"_blank\" href=\"https://sendgrid.com/\"> <b> cuenta de SendGrid </b> </a> y péguela arriba. caja de texto.', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4499, 0, 'es', 'labels', 'backend.general_settings.newsletter.api_key_question', '¿Cómo generar la clave API?', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4500, 0, 'es', 'labels', 'backend.general_settings.newsletter.create_new', 'Crear y Seleccionar Nuevo', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4501, 0, 'es', 'labels', 'backend.general_settings.newsletter.double_opt_in', 'Opción doble', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4502, 0, 'es', 'labels', 'backend.general_settings.newsletter.double_opt_in_note', '<b> On </b> = Se le pedirá al usuario por correo que opte por la suscripción. <b> Apagado </b> = El usuario se suscribirá directamente al boletín', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4503, 0, 'es', 'labels', 'backend.general_settings.newsletter.get_lists', 'Obtener listas', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4504, 0, 'es', 'labels', 'backend.general_settings.newsletter.list_id', 'ID de lista', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4505, 0, 'es', 'labels', 'backend.general_settings.newsletter.list_id_note', 'Busque y pegue <b> ID de lista </b> en el cuadro de arriba', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4506, 0, 'es', 'labels', 'backend.general_settings.newsletter.list_id_question', '¿Cómo encontrar el ID de la lista de Mailchimp?', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4507, 0, 'es', 'labels', 'backend.general_settings.newsletter.list_id_question_sendgrid', 'Crear nueva lista de correo electrónico para SendGrid aquí.', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4508, 0, 'es', 'labels', 'backend.general_settings.newsletter.mail_provider', 'Proveedor de servicios de correo', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4509, 0, 'es', 'labels', 'backend.general_settings.newsletter.mail_provider_note', '<b> Nota </b>: puede seleccionar cualquier proveedor de servicios de correo para recibir todos los correos electrónicos que se utilizan para <b> suscribirse al boletín </b>. Seleccione y configure de acuerdo con los pasos dados. <b> Es obligatorio </b>, si desea utilizar el formulario <b> suscripción al boletín </b>.', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4510, 0, 'es', 'labels', 'backend.general_settings.newsletter.mailchimp', 'Mailchimp', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4511, 0, 'es', 'labels', 'backend.general_settings.newsletter.manage_lists', 'Gestionar listas de SendGrid', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4512, 0, 'es', 'labels', 'backend.general_settings.newsletter.select_list', 'Seleccionar lista', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4513, 0, 'es', 'labels', 'backend.general_settings.newsletter.sendgrid', 'SendGrid', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4514, 0, 'es', 'labels', 'backend.general_settings.newsletter.sendgrid_lists', 'Listas de correo electrónico de SendGrid', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4515, 0, 'es', 'labels', 'backend.general_settings.newsletter.title', 'Configuración del boletín', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4516, 0, 'es', 'labels', 'backend.general_settings.password_expires_days', 'Contraseña caduca días', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4517, 0, 'es', 'labels', 'backend.general_settings.password_history', 'Historial de contraseñas', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4518, 0, 'es', 'labels', 'backend.general_settings.payment_settings.client_id', 'Identificación del cliente', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4519, 0, 'es', 'labels', 'backend.general_settings.payment_settings.client_secret', 'Secreto', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4520, 0, 'es', 'labels', 'backend.general_settings.payment_settings.how_to_paypal', '¿Cómo obtener las credenciales API de PayPal?', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4521, 0, 'es', 'labels', 'backend.general_settings.payment_settings.how_to_stripe', '¿Cómo obtener las credenciales de STRIPE API?', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4522, 0, 'es', 'labels', 'backend.general_settings.payment_settings.key', 'Clave API', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4523, 0, 'es', 'labels', 'backend.general_settings.payment_settings.live', 'Vivir', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4524, 0, 'es', 'labels', 'backend.general_settings.payment_settings.mode', 'Modo', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4525, 0, 'es', 'labels', 'backend.general_settings.payment_settings.mode_note', '<b> Sandbox </b> = Se utilizará para probar los pagos con las credenciales de prueba de PayPal. La cuenta con USD solo puede hacer pagos con PayPal por ahora. Estas opciones se redireccionarán para probar el pago de PayPal con las credenciales de usuario de Sandbox. Se utilizará solo para transacciones ficticias. <br>\n<b> Live </b> = Se usarán con sus credenciales de Live PayPal para realizar transacciones reales con usuarios normales con cuentas de PayPal.', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4526, 0, 'es', 'labels', 'backend.general_settings.payment_settings.offline_mode', 'Método de pago fuera de línea', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4527, 0, 'es', 'labels', 'backend.general_settings.payment_settings.offline_mode_note', 'El usuario obtiene asistencia para el pago fuera de línea a través de admin', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4528, 0, 'es', 'labels', 'backend.general_settings.payment_settings.paypal', 'Método de pago de PayPal', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4529, 0, 'es', 'labels', 'backend.general_settings.payment_settings.paypal_note', 'Redirecciones a paypal para el pago.', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4530, 0, 'es', 'labels', 'backend.general_settings.payment_settings.sandbox', 'Sandbox', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4531, 0, 'es', 'labels', 'backend.general_settings.payment_settings.secret', 'API Secret', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4532, 0, 'es', 'labels', 'backend.general_settings.payment_settings.stripe', 'Método de pago a rayas', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4533, 0, 'es', 'labels', 'backend.general_settings.payment_settings.stripe_note', 'Permite pagos en sitio con tarjetas de débito / crédito.', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4534, 0, 'es', 'labels', 'backend.general_settings.payment_settings.title', 'Configuración de pago', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4535, 0, 'es', 'labels', 'backend.general_settings.payment_settings.select_currency', 'Seleccione el tipo de moneda', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4536, 0, 'es', 'labels', 'backend.general_settings.payment_settings.bluesnap', 'Método de pago de Bluesnap', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4537, 0, 'es', 'labels', 'backend.general_settings.payment_settings.bluesnap_note', 'Formulario de tarjeta Bluesnap para pago', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4538, 0, 'es', 'labels', 'backend.general_settings.payment_settings.how_to_bluesnap', '¿Cómo obtener las credenciales de la API de Bluesnap?', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4539, 0, 'es', 'labels', 'backend.general_settings.requires_approval', 'Requiere Aprobación', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4540, 0, 'es', 'labels', 'backend.general_settings.sections_note', 'Una vez que haga clic en actualizar, verá la lista de secciones para activar / desactivar.', '2019-09-12 23:34:33', '2020-05-14 12:20:11'); INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES (4541, 0, 'es', 'labels', 'backend.general_settings.static', 'Estático', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4542, 0, 'es', 'labels', 'backend.general_settings.theme_layout', 'Diseño del tema', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4543, 0, 'es', 'labels', 'backend.general_settings.title', 'General', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4544, 0, 'es', 'labels', 'backend.general_settings.total_courses', 'Introduzca el total de cursos. Ej: 1K, 1000 etc.', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4545, 0, 'es', 'labels', 'backend.general_settings.total_students', 'Ingrese el total de estudiantes. Ej: 1K, 1Million, 1000 etc.', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4546, 0, 'es', 'labels', 'backend.general_settings.total_teachers', 'Introduzca Total de Maestros. Ej: 1K, 1000 etc.', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4547, 0, 'es', 'labels', 'backend.general_settings.captcha', 'Si el registro - login captcha está activado o desactivado', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4548, 0, 'es', 'labels', 'backend.general_settings.captcha_note', '¿Cómo obtener credenciales reCaptcha de Google?', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4549, 0, 'es', 'labels', 'backend.general_settings.captcha_site_key', 'Captcha Key', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4550, 0, 'es', 'labels', 'backend.general_settings.captcha_site_secret', 'Captcha Secret', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4551, 0, 'es', 'labels', 'backend.general_settings.captcha_status', 'Estado Captcha', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4552, 0, 'es', 'labels', 'backend.general_settings.google_analytics_id', 'identificación de Google Analytics', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4553, 0, 'es', 'labels', 'backend.general_settings.google_analytics_id_note', '¿Cómo obtener el ID de Google Analytics?', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4554, 0, 'es', 'labels', 'backend.general_settings.retest_note', 'Habilitar / Deshabilitar si el usuario podrá volver a realizar la prueba para el mismo examen', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4555, 0, 'es', 'labels', 'backend.general_settings.language_settings.default_language', 'Idioma predeterminado', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4556, 0, 'es', 'labels', 'backend.general_settings.language_settings.display_type', 'Tipo de visualización', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4557, 0, 'es', 'labels', 'backend.general_settings.language_settings.left_to_right', 'De izquierda a derecha', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4558, 0, 'es', 'labels', 'backend.general_settings.language_settings.right_to_left', 'De derecha a izquierda', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4559, 0, 'es', 'labels', 'backend.general_settings.language_settings.title', 'Configuraciones de idioma', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4560, 0, 'es', 'labels', 'backend.general_settings.user_registration_settings.desc', 'Los campos marcados en la barra lateral derecha se mostrarán en el formulario de registro', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4561, 0, 'es', 'labels', 'backend.general_settings.user_registration_settings.fields.address', 'Dirección', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4562, 0, 'es', 'labels', 'backend.general_settings.user_registration_settings.fields.city', 'Ciudad', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4563, 0, 'es', 'labels', 'backend.general_settings.user_registration_settings.fields.country', 'País', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4564, 0, 'es', 'labels', 'backend.general_settings.user_registration_settings.fields.dob', 'Fecha de nacimiento', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4565, 0, 'es', 'labels', 'backend.general_settings.user_registration_settings.fields.email', 'Email', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4566, 0, 'es', 'labels', 'backend.general_settings.user_registration_settings.fields.female', 'Hembra', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4567, 0, 'es', 'labels', 'backend.general_settings.user_registration_settings.fields.first_name', 'Nombre de pila', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4568, 0, 'es', 'labels', 'backend.general_settings.user_registration_settings.fields.gender', 'Género', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4569, 0, 'es', 'labels', 'backend.general_settings.user_registration_settings.fields.last_name', 'Apellido', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4570, 0, 'es', 'labels', 'backend.general_settings.user_registration_settings.fields.male', 'Masculino', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4571, 0, 'es', 'labels', 'backend.general_settings.user_registration_settings.fields.other', 'Otro', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4572, 0, 'es', 'labels', 'backend.general_settings.user_registration_settings.fields.password', 'Contraseña', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4573, 0, 'es', 'labels', 'backend.general_settings.user_registration_settings.fields.phone', 'Teléfono', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4574, 0, 'es', 'labels', 'backend.general_settings.user_registration_settings.fields.pincode', 'Código PIN', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4575, 0, 'es', 'labels', 'backend.general_settings.user_registration_settings.fields.state', 'Estado', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4576, 0, 'es', 'labels', 'backend.general_settings.user_registration_settings.title', 'Configuración de registro de usuario', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4577, 0, 'es', 'labels', 'backend.general_settings.lesson_note', 'Habilitar / Deshabilitar si el usuario podrá omitir antes de que finalice el temporizador.', '2019-09-12 23:34:33', '2020-05-14 12:20:11'), (4578, 0, 'es', 'labels', 'backend.general_settings.troubleshoot', 'Solucionar problemas', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4579, 0, 'es', 'labels', 'backend.general_settings.show_offers_note', 'Habilitar / deshabilitar si el cupón ofrece un enlace a la página que se mostrará en el pie de página', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4580, 0, 'es', 'labels', 'backend.general_settings.how_to_onesignal', '¿Cómo crear una aplicación en OneSignal?', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4581, 0, 'es', 'labels', 'backend.general_settings.onesignal_note', 'Habilitar / deshabilitar la configuración de OneSignal para el sitio web.', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4582, 0, 'es', 'labels', 'backend.general_settings.setup_onesignal', '¿Cómo configurar OneSignal?', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4583, 0, 'es', 'labels', 'backend.hero_slider.create', 'Crear diapositiva', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4584, 0, 'es', 'labels', 'backend.hero_slider.edit', 'Editar diapositiva', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4585, 0, 'es', 'labels', 'backend.hero_slider.fields.bg_image', 'Imagen de BG', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4586, 0, 'es', 'labels', 'backend.hero_slider.fields.buttons.add', 'Añadir', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4587, 0, 'es', 'labels', 'backend.hero_slider.fields.buttons.label', 'Etiqueta', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4588, 0, 'es', 'labels', 'backend.hero_slider.fields.buttons.link', 'Enlazar', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4589, 0, 'es', 'labels', 'backend.hero_slider.fields.buttons.note', 'Nota: Se pueden agregar un máximo de 4 botones. Agregue la etiqueta y el enlace al botón para redireccionar la acción cuando se haga clic en el botón.', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4590, 0, 'es', 'labels', 'backend.hero_slider.fields.buttons.name', 'Botón', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4591, 0, 'es', 'labels', 'backend.hero_slider.fields.buttons.placeholder', 'Agregue el número de botones que desea agregar', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4592, 0, 'es', 'labels', 'backend.hero_slider.fields.buttons.title', 'Botones', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4593, 0, 'es', 'labels', 'backend.hero_slider.fields.hero_text', 'Texto de héroe', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4594, 0, 'es', 'labels', 'backend.hero_slider.fields.name', 'Nombre', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4595, 0, 'es', 'labels', 'backend.hero_slider.fields.overlay.note', 'Si lo enciendes. Se mostrará una superposición negra en su imagen. Será útil cuando la imagen BG no sea más oscura o no tenga Superposición', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4596, 0, 'es', 'labels', 'backend.hero_slider.fields.overlay.title', 'Cubrir', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4597, 0, 'es', 'labels', 'backend.hero_slider.fields.sequence', 'Secuencia', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4598, 0, 'es', 'labels', 'backend.hero_slider.fields.status', 'Estado', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4599, 0, 'es', 'labels', 'backend.hero_slider.fields.sub_text', 'Sub texto', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4600, 0, 'es', 'labels', 'backend.hero_slider.fields.widget.countdown_timer', 'Contador regresivo', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4601, 0, 'es', 'labels', 'backend.hero_slider.fields.widget.input_date_time', 'Ingrese fecha y hora', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4602, 0, 'es', 'labels', 'backend.hero_slider.fields.widget.search_bar', 'Barra de búsqueda', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4603, 0, 'es', 'labels', 'backend.hero_slider.fields.widget.select_widget', 'Seleccione Widget', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4604, 0, 'es', 'labels', 'backend.hero_slider.fields.widget.title', 'Widget', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4605, 0, 'es', 'labels', 'backend.hero_slider.manage_sequence', 'Gestionar secuencia de diapositivas', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4606, 0, 'es', 'labels', 'backend.hero_slider.note', 'Nota: suba .jpg o .png en la resolución <b> 1920x900 </b> para obtener el mejor resultado. Utilice imágenes más oscuras o superpuestas para un mejor resultado.', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4607, 0, 'es', 'labels', 'backend.hero_slider.off', 'Apagado', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4608, 0, 'es', 'labels', 'backend.hero_slider.on', 'En', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4609, 0, 'es', 'labels', 'backend.hero_slider.save_sequence', 'Guardar secuencia', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4610, 0, 'es', 'labels', 'backend.hero_slider.sequence_note', 'Arrastrar y cambiar la secuencia de una diapositiva.', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4611, 0, 'es', 'labels', 'backend.hero_slider.title', 'Control deslizante de héroe', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4612, 0, 'es', 'labels', 'backend.hero_slider.view', 'Ver diapositivas', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4613, 0, 'es', 'labels', 'backend.invoices.fields.amount', 'Cantidad', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4614, 0, 'es', 'labels', 'backend.invoices.fields.download', 'Descargar', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4615, 0, 'es', 'labels', 'backend.invoices.fields.order_date', 'Fecha de orden', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4616, 0, 'es', 'labels', 'backend.invoices.fields.view', 'Ver', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4617, 0, 'es', 'labels', 'backend.invoices.title', 'Facturas', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4618, 0, 'es', 'labels', 'backend.logo.favicon', 'Añadir Favicon', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4619, 0, 'es', 'labels', 'backend.logo.favicon_note', 'Nota: Cargue el logotipo con la resolución <b> 32x32 </b> píxeles y la extensión <b> .png </b> o <b> .gif </b> o <b> .ico </b>', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4620, 0, 'es', 'labels', 'backend.logo.logo_b', 'Logo 1', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4621, 0, 'es', 'labels', 'backend.logo.logo_b_note', 'Nota: Cargue el logotipo con <b> texto negro y fondo transparente en formato .png </b> y <b> 294x50 </b> (WxH) píxeles. <br> <b> Altura </b> se debe corregir <b> ancho </b> según su <b> relación de aspecto </b>.', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4622, 0, 'es', 'labels', 'backend.logo.logo_popup', 'Logo para Popups', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4623, 0, 'es', 'labels', 'backend.logo.logo_popup_note', 'Nota: Agregue una resolución mínima de logotipo cuadrado <b> 72x72 </b> píxeles', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4624, 0, 'es', 'labels', 'backend.logo.logo_w', 'Logo 2', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4625, 0, 'es', 'labels', 'backend.logo.logo_white', 'Logo 3', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4626, 0, 'es', 'labels', 'backend.logo.logo_w_note', 'Nota: suba el logotipo con <b> texto en blanco y fondo transparente en formato .png </b> y <b> 294x50 </b> (WxH) píxeles. <b> ancho </b> según su <b> relación de aspecto </b>.', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4627, 0, 'es', 'labels', 'backend.logo.logo_white_note', 'Nota: Cargue el logotipo con <b> solo en texto blanco y fondo transparente en formato .png </b> y <b> 294x50 </b> (WxH) píxeles. fijo, <b> ancho </b> según su <b> relación de aspecto </b>.', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4628, 0, 'es', 'labels', 'backend.logo.title', 'Cambiar Logo', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4629, 0, 'es', 'labels', 'backend.menu-manager.title', 'Gerente de menú', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4630, 0, 'es', 'labels', 'backend.messages.compose', 'Componer', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4631, 0, 'es', 'labels', 'backend.messages.search_user', 'Buscar usuario', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4632, 0, 'es', 'labels', 'backend.messages.select_recipients', 'Seleccionar destinatarios', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4633, 0, 'es', 'labels', 'backend.messages.start_conversation', 'Iniciar una conversación', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4634, 0, 'es', 'labels', 'backend.messages.title', 'Mensajes', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4635, 0, 'es', 'labels', 'backend.messages.type_a_message', 'Escribe un mensaje', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4636, 0, 'es', 'labels', 'backend.orders.complete', 'Completar manualmente', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4637, 0, 'es', 'labels', 'backend.orders.download_invoice', 'Descargar factura', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4638, 0, 'es', 'labels', 'backend.orders.fields.amount', 'Cantidad', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4639, 0, 'es', 'labels', 'backend.orders.fields.date', 'Fecha de orden', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4640, 0, 'es', 'labels', 'backend.orders.fields.items', 'Artículos', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4641, 0, 'es', 'labels', 'backend.orders.fields.ordered_by', 'Ordenado por', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4642, 0, 'es', 'labels', 'backend.orders.fields.payment_status.completed', 'Terminado', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4643, 0, 'es', 'labels', 'backend.orders.fields.payment_status.failed', 'Ha fallado', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4644, 0, 'es', 'labels', 'backend.orders.fields.payment_status.pending', 'Pendiente', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4645, 0, 'es', 'labels', 'backend.orders.fields.payment_status.title', 'Pago', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4646, 0, 'es', 'labels', 'backend.orders.fields.payment_type.offline', 'Desconectado', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4647, 0, 'es', 'labels', 'backend.orders.fields.payment_type.paypal', 'Paypal', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4648, 0, 'es', 'labels', 'backend.orders.fields.payment_type.stripe', 'Tarjeta de crédito / débito (Stripe Payment Gateway)', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4649, 0, 'es', 'labels', 'backend.orders.fields.payment_type.title', 'Tipo de pago', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4650, 0, 'es', 'labels', 'backend.orders.fields.reference_no', 'Numero de referencia.', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4651, 0, 'es', 'labels', 'backend.orders.fields.user_email', 'Email del usuario', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4652, 0, 'es', 'labels', 'backend.orders.offline_requests', 'Solicitudes offline', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4653, 0, 'es', 'labels', 'backend.orders.title', 'Pedidos', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4654, 0, 'es', 'labels', 'backend.orders.view_invoice', 'Mirar la factura', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4655, 0, 'es', 'labels', 'backend.questions.create', 'Crear pregunta', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4656, 0, 'es', 'labels', 'backend.questions.edit', 'Editar pregunta', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4657, 0, 'es', 'labels', 'backend.questions.fields.correct', 'Correcto', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4658, 0, 'es', 'labels', 'backend.questions.fields.course', 'Curso', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4659, 0, 'es', 'labels', 'backend.questions.fields.lesson', 'Lección', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4660, 0, 'es', 'labels', 'backend.questions.fields.option_text', 'Opción de texto', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4661, 0, 'es', 'labels', 'backend.questions.fields.question', 'Pregunta', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4662, 0, 'es', 'labels', 'backend.questions.fields.question_image', 'Imagen de la pregunta', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4663, 0, 'es', 'labels', 'backend.questions.fields.score', 'Puntuación', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4664, 0, 'es', 'labels', 'backend.questions.fields.tests', 'Pruebas', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4665, 0, 'es', 'labels', 'backend.questions.fields.title', 'Título', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4666, 0, 'es', 'labels', 'backend.questions.fields.option_explanation', 'Opción Explicación', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4667, 0, 'es', 'labels', 'backend.questions.title', 'Preguntas', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4668, 0, 'es', 'labels', 'backend.questions.view', 'Ver preguntas', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4669, 0, 'es', 'labels', 'backend.questions.test', 'Prueba', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4670, 0, 'es', 'labels', 'backend.questions_options.create', 'Opción de creación', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4671, 0, 'es', 'labels', 'backend.questions_options.edit', 'Opción de edición', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4672, 0, 'es', 'labels', 'backend.questions_options.fields.correct', 'Correcto', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4673, 0, 'es', 'labels', 'backend.questions_options.fields.course', 'Curso', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4674, 0, 'es', 'labels', 'backend.questions_options.fields.lesson', 'Lección', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4675, 0, 'es', 'labels', 'backend.questions_options.fields.title', 'Título', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4676, 0, 'es', 'labels', 'backend.questions_options.fields.question', 'Pregunta', '2019-09-12 23:34:34', '2020-05-14 12:20:11'), (4677, 0, 'es', 'labels', 'backend.questions_options.fields.question_option', 'Opción de pregunta', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4678, 0, 'es', 'labels', 'backend.questions_options.fields.score', 'Puntuación', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4679, 0, 'es', 'labels', 'backend.questions_options.fields.tests', 'Pruebas', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4680, 0, 'es', 'labels', 'backend.questions_options.fields.option_text', 'Opción de texto', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4681, 0, 'es', 'labels', 'backend.questions_options.title', 'Opción de preguntas', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4682, 0, 'es', 'labels', 'backend.questions_options.view', 'Ver opciones de preguntas', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4683, 0, 'es', 'labels', 'backend.reviews.fields.course', 'Curso', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4684, 0, 'es', 'labels', 'backend.reviews.fields.content', 'Contenido', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4685, 0, 'es', 'labels', 'backend.reviews.fields.time', 'Hora', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4686, 0, 'es', 'labels', 'backend.reviews.fields.user', 'Usuario', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4687, 0, 'es', 'labels', 'backend.reviews.title', 'Opiniones', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4688, 0, 'es', 'labels', 'backend.reasons.create', 'Crear razón', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4689, 0, 'es', 'labels', 'backend.reasons.edit', 'Razón de edición', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4690, 0, 'es', 'labels', 'backend.reasons.fields.content', 'Contenido', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4691, 0, 'es', 'labels', 'backend.reasons.fields.icon', 'Icono', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4692, 0, 'es', 'labels', 'backend.reasons.fields.status', 'Estado', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4693, 0, 'es', 'labels', 'backend.reasons.fields.title', 'Título', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4694, 0, 'es', 'labels', 'backend.reasons.note', 'Las razones se mostrarán como un control deslizante en la página de inicio como se muestra a continuación', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4695, 0, 'es', 'labels', 'backend.reasons.title', 'Razones', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4696, 0, 'es', 'labels', 'backend.reasons.view', 'Ver razones', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4697, 0, 'es', 'labels', 'backend.social_settings.fb_api_note', '¿Cómo obtener credenciales API de Facebook?', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4698, 0, 'es', 'labels', 'backend.social_settings.fb_note', 'Habilitar / deshabilitar el inicio de sesión de Facebook para el sitio web', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4699, 0, 'es', 'labels', 'backend.social_settings.google_api_note', '¿Cómo obtener credenciales API de Google?', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4700, 0, 'es', 'labels', 'backend.social_settings.google_note', 'Habilitar / deshabilitar el inicio de sesión de Google para el sitio web', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4701, 0, 'es', 'labels', 'backend.social_settings.management', 'Ajustes sociales', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4702, 0, 'es', 'labels', 'backend.social_settings.twitter_api_note', '¿Cómo obtener las credenciales de la API de Twitter?', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4703, 0, 'es', 'labels', 'backend.social_settings.twitter_note', 'Habilitar / deshabilitar el inicio de sesión de Twitter para el sitio web', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4704, 0, 'es', 'labels', 'backend.social_settings.linkedin_api_note', '¿Cómo obtener credenciales API de LinkedIn?', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4705, 0, 'es', 'labels', 'backend.social_settings.linkedin_note', 'Habilitar / deshabilitar el inicio de sesión de LinkedIn para el sitio web', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4706, 0, 'es', 'labels', 'backend.sponsors.create', 'Crear patrocinadores', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4707, 0, 'es', 'labels', 'backend.sponsors.edit', 'Editar patrocinadores', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4708, 0, 'es', 'labels', 'backend.sponsors.fields.link', 'Enlazar', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4709, 0, 'es', 'labels', 'backend.sponsors.fields.logo', 'Logo', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4710, 0, 'es', 'labels', 'backend.sponsors.fields.name', 'Nombre', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4711, 0, 'es', 'labels', 'backend.sponsors.fields.status', 'Estado', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4712, 0, 'es', 'labels', 'backend.sponsors.title', 'Los patrocinadores', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4713, 0, 'es', 'labels', 'backend.sponsors.view', 'Ver los patrocinadores', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4714, 0, 'es', 'labels', 'backend.teachers.create', 'Crear profesor', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4715, 0, 'es', 'labels', 'backend.teachers.edit', 'Profesor de edición', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4716, 0, 'es', 'labels', 'backend.teachers.fields.email', 'Dirección de correo electrónico', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4717, 0, 'es', 'labels', 'backend.teachers.fields.first_name', 'Nombre de pila', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4718, 0, 'es', 'labels', 'backend.teachers.fields.image', 'Imagen', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4719, 0, 'es', 'labels', 'backend.teachers.fields.last_name', 'Apellido', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4720, 0, 'es', 'labels', 'backend.teachers.fields.password', 'Contraseña', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4721, 0, 'es', 'labels', 'backend.teachers.fields.status', 'Estado', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4722, 0, 'es', 'labels', 'backend.teachers.title', 'Maestros', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4723, 0, 'es', 'labels', 'backend.teachers.view', 'Ver profesores', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4724, 0, 'es', 'labels', 'backend.testimonials.create', 'Crear Testimonial', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4725, 0, 'es', 'labels', 'backend.testimonials.edit', 'Editar Testimonial', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4726, 0, 'es', 'labels', 'backend.testimonials.fields.content', 'Contenido', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4727, 0, 'es', 'labels', 'backend.testimonials.fields.name', 'Nombre', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4728, 0, 'es', 'labels', 'backend.testimonials.fields.occupation', 'Ocupación', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4729, 0, 'es', 'labels', 'backend.testimonials.fields.status', 'Estado', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4730, 0, 'es', 'labels', 'backend.testimonials.title', 'Testimonios', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4731, 0, 'es', 'labels', 'backend.testimonials.view', 'Ver testimonios', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4732, 0, 'es', 'labels', 'backend.tests.create', 'Crear prueba', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4733, 0, 'es', 'labels', 'backend.tests.edit', 'Prueba de edición', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4734, 0, 'es', 'labels', 'backend.tests.fields.course', 'Curso', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4735, 0, 'es', 'labels', 'backend.tests.fields.description', 'Descripción', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4736, 0, 'es', 'labels', 'backend.tests.fields.lesson', 'Lección', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4737, 0, 'es', 'labels', 'backend.tests.fields.published', 'Publicado', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4738, 0, 'es', 'labels', 'backend.tests.fields.questions', 'Preguntas', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4739, 0, 'es', 'labels', 'backend.tests.fields.title', 'Título', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4740, 0, 'es', 'labels', 'backend.tests.title', 'Pruebas', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4741, 0, 'es', 'labels', 'backend.tests.view', 'Ver Pruebas', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4742, 0, 'es', 'labels', 'backend.translations.add_new_locale', 'Agregar nuevo local', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4743, 0, 'es', 'labels', 'backend.translations.adding', 'Añadiendo ...', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4744, 0, 'es', 'labels', 'backend.translations.append_new_translations', 'Añadir nuevas traducciones', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4745, 0, 'es', 'labels', 'backend.translations.choose_a_group', 'Elija un grupo para mostrar las traducciones del grupo. Si no hay grupos visibles, asegúrese de Usted ha ejecutado las migraciones e importado las traducciones.', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4746, 0, 'es', 'labels', 'backend.translations.changed', 'Cambiado', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4747, 0, 'es', 'labels', 'backend.translations.current_supported_locales', 'Locales soportados actuales', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4748, 0, 'es', 'labels', 'backend.translations.done_importing', 'Hecho importando, procesamos <strong class = \"counter\"> N </strong> elementos! Actualizar esta página para actualizar los grupos!', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4749, 0, 'es', 'labels', 'backend.translations.done_publishing_for_all_groups', 'Hecho publicando las traducciones para todo el grupo!', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4750, 0, 'es', 'labels', 'backend.translations.done_publishing_for_group', 'Hecho publicando las traducciones para grupo.', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4751, 0, 'es', 'labels', 'backend.translations.done_searching', '¡Terminé la búsqueda de traducciones, encontré elementos <strong class = \"counter\"> N </strong>!', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4752, 0, 'es', 'labels', 'backend.translations.enter_new_locale_key', 'Introduzca la nueva clave de configuración regional', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4753, 0, 'es', 'labels', 'backend.translations.export_all_translations', 'Exportar todas las traducciones', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4754, 0, 'es', 'labels', 'backend.translations.import_groups', 'Importar Grupos', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4755, 0, 'es', 'labels', 'backend.translations.import_groups_note', '<p> Obtendrá todos los archivos locales de la carpeta <code> lang </code> e insertarlos en la base de datos. <br> <b> Agregar nuevas traducciones: </b> Agregará solo los archivos nuevos y datos <b> & </b> <b> Reemplazar las traducciones existentes: </b> Reemplazará los registros existentes de acuerdo con los archivos </p>', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4756, 0, 'es', 'labels', 'backend.translations.key', 'Llave', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4757, 0, 'es', 'labels', 'backend.translations.publish_all', 'Publicar todo', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4758, 0, 'es', 'labels', 'backend.translations.publish_all_warning', '¿Seguro que quieres publicar todas las traducciones del grupo? Esto sobrescribirá los archivos de idioma existentes.', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4759, 0, 'es', 'labels', 'backend.translations.publish_translations', 'Publicar traducciones', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4760, 0, 'es', 'labels', 'backend.translations.publishing', 'Publicación..', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4761, 0, 'es', 'labels', 'backend.translations.replace_existing_translations', 'Reemplazar las traducciones existentes', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4762, 0, 'es', 'labels', 'backend.translations.supported_locales', 'Locales soportados', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4763, 0, 'es', 'labels', 'backend.translations.title', 'Gerente de traducción', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4764, 0, 'es', 'labels', 'backend.translations.total', 'Total', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4765, 0, 'es', 'labels', 'backend.translations.translation_warning', '¿Estás seguro de que quieres publicar el grupo de traducciones :group ? Esto sobrescribirá los archivos de idioma existentes.', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4766, 0, 'es', 'labels', 'backend.translations.warning', 'Advertencia, las traducciones no están visibles hasta que se exportan de nuevo al archivo app / lang, usando <code> php artisan translation:export </code> comando o botón de publicación.', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4767, 0, 'es', 'labels', 'backend.update.current_version', 'Versión actual', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4768, 0, 'es', 'labels', 'backend.update.file_replaced', 'Los siguientes archivos serán actualizados / reemplazados', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4769, 0, 'es', 'labels', 'backend.update.note_before_upload', '<p> <b> Realice BACKUP antes de actualizar. </b> El archivo zip actualizado puede incluir nuevas carpetas y actualizaciones de archivos. <b> Sus archivos actuales serán reemplazados por uno nuevo </b>. Por lo tanto, <b> si ha realizado algún cambio en los archivos de la aplicación actual, se PERDERÁ </b>. </p>\n <p> Si está cargando directamente desde el cuadro de entrada de archivo inferior, sus archivos serán reemplazados. Le recomendamos encarecidamente que realice la sustitución manual de los archivos uno por uno o edite los cambios comparando su archivo editado actual y los nuevos archivos actualizados. </p>\n <p> Si todavía tienes confusión. Póngase en contacto con nosotros, le guiaremos para actualizar su aplicación </p>', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4770, 0, 'es', 'labels', 'backend.update.note_before_upload_title', 'Lea las siguientes notas antes de actualizar', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4771, 0, 'es', 'labels', 'backend.update.title', 'Tema de actualización', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4772, 0, 'es', 'labels', 'backend.update.upload', 'Subir nueva versión <small> (update.zip) </small>', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4773, 0, 'es', 'labels', 'backend.update.warning', '<b> ADVERTENCIA: le recomendamos encarecidamente que actualice el tema por el número de versión </b>. <br> <b> Ejemplo: </b> update_v1.zip, update_v2.zip. Por favor, no saltar el número de versión. Si su número de versión es 1 y desea actualizarlo, entonces actualice a la versión 2. No actualice directamente a la versión 3.', '2019-09-12 23:34:35', '2020-05-14 12:20:11'), (4774, 0, 'es', 'labels', 'backend.certificates.download', 'Descargar', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4775, 0, 'es', 'labels', 'backend.certificates.fields.action', 'Acción', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4776, 0, 'es', 'labels', 'backend.certificates.fields.course_name', 'Nombre del curso', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4777, 0, 'es', 'labels', 'backend.certificates.fields.progress', 'Progreso', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4778, 0, 'es', 'labels', 'backend.certificates.title', 'Certificados', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4779, 0, 'es', 'labels', 'backend.certificates.view', 'Ver', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4780, 0, 'es', 'labels', 'backend.bundles.fields.slug', 'Babosa', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4781, 0, 'es', 'labels', 'backend.bundles.fields.status', 'Estado', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4782, 0, 'es', 'labels', 'backend.bundles.fields.category', 'Categoría', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4783, 0, 'es', 'labels', 'backend.bundles.fields.course', 'Curso', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4784, 0, 'es', 'labels', 'backend.bundles.fields.course_image', 'Imagen del curso', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4785, 0, 'es', 'labels', 'backend.bundles.fields.description', 'Descripción', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4786, 0, 'es', 'labels', 'backend.bundles.fields.featured', 'Destacados', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4787, 0, 'es', 'labels', 'backend.bundles.fields.lessons.add', 'Añadir lecciones', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4788, 0, 'es', 'labels', 'backend.bundles.fields.lessons.view', 'Ver Lecciones', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4789, 0, 'es', 'labels', 'backend.bundles.fields.meta_description', 'Metadescripción', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4790, 0, 'es', 'labels', 'backend.bundles.fields.meta_keywords', 'Meta Keywords', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4791, 0, 'es', 'labels', 'backend.bundles.fields.meta_title', 'Título meta', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4792, 0, 'es', 'labels', 'backend.bundles.fields.popular', 'Popular', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4793, 0, 'es', 'labels', 'backend.bundles.fields.price', 'Precio', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4794, 0, 'es', 'labels', 'backend.bundles.fields.published', 'Publicado', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4795, 0, 'es', 'labels', 'backend.bundles.fields.sidebar', 'Añadir barra lateral', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4796, 0, 'es', 'labels', 'backend.bundles.fields.start_date', 'Fecha de inicio', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4797, 0, 'es', 'labels', 'backend.bundles.fields.teachers', 'Maestros', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4798, 0, 'es', 'labels', 'backend.bundles.fields.title', 'Título', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4799, 0, 'es', 'labels', 'backend.bundles.fields.trending', 'Tendencias', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4800, 0, 'es', 'labels', 'backend.bundles.fields.courses', 'Los cursos', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4801, 0, 'es', 'labels', 'backend.bundles.fields.free', 'Gratis', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4802, 0, 'es', 'labels', 'backend.bundles.add_categories', 'Añadir categorías', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4803, 0, 'es', 'labels', 'backend.bundles.add_teachers', 'Añadir profesores', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4804, 0, 'es', 'labels', 'backend.bundles.category', 'Categoría', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4805, 0, 'es', 'labels', 'backend.bundles.course_timeline', 'Línea de tiempo del curso', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4806, 0, 'es', 'labels', 'backend.bundles.create', 'Crear paquete', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4807, 0, 'es', 'labels', 'backend.bundles.edit', 'Editar paquete', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4808, 0, 'es', 'labels', 'backend.bundles.lesson', 'Lección', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4809, 0, 'es', 'labels', 'backend.bundles.listing_note', 'Solo se mostrarán y ordenarán las lecciones y pruebas publicadas.', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4810, 0, 'es', 'labels', 'backend.bundles.save_timeline', 'Guardar línea de tiempo', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4811, 0, 'es', 'labels', 'backend.bundles.select_category', 'selecciona una categoría', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4812, 0, 'es', 'labels', 'backend.bundles.select_teachers', 'Maestros seleccionados', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4813, 0, 'es', 'labels', 'backend.bundles.slug_placeholder', 'Slug de entrada o se generará automáticamente.', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4814, 0, 'es', 'labels', 'backend.bundles.test', 'Prueba', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4815, 0, 'es', 'labels', 'backend.bundles.timeline_description', 'Arrastre y cambie la secuencia de Lecciones / Pruebas para el curso.', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4816, 0, 'es', 'labels', 'backend.bundles.title', 'manojos', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4817, 0, 'es', 'labels', 'backend.bundles.view', 'Ver paquetes', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4818, 0, 'es', 'labels', 'backend.bundles.add_courses', 'Añadir cursos', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4819, 0, 'es', 'labels', 'backend.bundles.select_courses', 'Seleccionar cursos', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4820, 0, 'es', 'labels', 'backend.reports.bundles', 'manojos', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4821, 0, 'es', 'labels', 'backend.reports.courses', 'Los cursos', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4822, 0, 'es', 'labels', 'backend.reports.fields.bundle', 'Haz', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4823, 0, 'es', 'labels', 'backend.reports.fields.completed', 'Curso completado', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4824, 0, 'es', 'labels', 'backend.reports.fields.content', 'Contenido', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4825, 0, 'es', 'labels', 'backend.reports.fields.course', 'Curso', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4826, 0, 'es', 'labels', 'backend.reports.fields.earnings', 'Ganancias', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4827, 0, 'es', 'labels', 'backend.reports.fields.name', 'Nombre', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4828, 0, 'es', 'labels', 'backend.reports.fields.orders', 'Pedidos', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4829, 0, 'es', 'labels', 'backend.reports.fields.students', 'Estudiantes', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4830, 0, 'es', 'labels', 'backend.reports.fields.time', 'Hora', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4831, 0, 'es', 'labels', 'backend.reports.fields.user', 'Usuario', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4832, 0, 'es', 'labels', 'backend.reports.sales_report', 'Reporte de ventas', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4833, 0, 'es', 'labels', 'backend.reports.students_report', 'Informe de los estudiantes', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4834, 0, 'es', 'labels', 'backend.reports.title', 'Informes', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4835, 0, 'es', 'labels', 'backend.reports.total_earnings', 'Ganancias Totales', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4836, 0, 'es', 'labels', 'backend.reports.total_sales', 'Ventas totales', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4837, 0, 'es', 'labels', 'backend.coupons.amount_note', 'Si se selecciona <b> Tasa de descuento </b>, ingrese la tasa de porcentaje. Si se selecciona <b> Tarifa plana </b>, ingrese una cantidad particular que se deducirá.', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4838, 0, 'es', 'labels', 'backend.coupons.bundles', 'manojos', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4839, 0, 'es', 'labels', 'backend.coupons.courses', 'Cursos', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4840, 0, 'es', 'labels', 'backend.coupons.create', 'Crear cupón', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4841, 0, 'es', 'labels', 'backend.coupons.description', 'Descripción', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4842, 0, 'es', 'labels', 'backend.coupons.discount_rate', 'Tasa de descuento', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4843, 0, 'es', 'labels', 'backend.coupons.edit', 'Editar cupón', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4844, 0, 'es', 'labels', 'backend.coupons.fields.amount', 'Cantidad', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4845, 0, 'es', 'labels', 'backend.coupons.fields.code', 'Código', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4846, 0, 'es', 'labels', 'backend.coupons.fields.description', 'Descripción', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4847, 0, 'es', 'labels', 'backend.coupons.fields.expires_at', 'Caduca a las', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4848, 0, 'es', 'labels', 'backend.coupons.fields.for', 'por', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4849, 0, 'es', 'labels', 'backend.coupons.fields.min_price', 'Precio mínimo de pedido', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4850, 0, 'es', 'labels', 'backend.coupons.fields.name', 'Nombre', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4851, 0, 'es', 'labels', 'backend.coupons.fields.per_user_limit', 'Por límite de usuario', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4852, 0, 'es', 'labels', 'backend.coupons.fields.status', 'Estado', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4853, 0, 'es', 'labels', 'backend.coupons.fields.total', 'Total', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4854, 0, 'es', 'labels', 'backend.coupons.fields.type', 'Tipo', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4855, 0, 'es', 'labels', 'backend.coupons.flat_rate', 'Tarifa plana', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4856, 0, 'es', 'labels', 'backend.coupons.off', 'Apagada', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4857, 0, 'es', 'labels', 'backend.coupons.on', 'En', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4858, 0, 'es', 'labels', 'backend.coupons.per_user_limit_note', 'Especifique cuántas veces un solo usuario puede usar este cupón. Por defecto una vez uso.', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4859, 0, 'es', 'labels', 'backend.coupons.title', 'Cupones', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4860, 0, 'es', 'labels', 'backend.coupons.total_note', 'Número de cupones a emitir', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4861, 0, 'es', 'labels', 'backend.coupons.type_note', '<b> Tasa de descuento (%): </b> Si selecciona esto, aplicará la tasa en% a la compra total. Ex. Precio = $ 100 y la tasa de descuento es del 10%, luego se deducirá el 10% de 100 $. <br> <b> Tarifa plana: </b> Si selecciona esto, se deducirá una cantidad particular de la compra total. Ex. Precio = 100 $ y la tarifa plana es de 25 $, luego se deducirán 25 $ de 100 $.', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4862, 0, 'es', 'labels', 'backend.coupons.unlimited', 'Ilimitada', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4863, 0, 'es', 'labels', 'backend.coupons.view', 'Ver cupones', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4864, 0, 'es', 'labels', 'backend.sitemap.daily', 'Diaria', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4865, 0, 'es', 'labels', 'backend.sitemap.generate', 'Generar', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4866, 0, 'es', 'labels', 'backend.sitemap.generated', 'Mapa del sitio generado con éxito.', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4867, 0, 'es', 'labels', 'backend.sitemap.monthly', 'Mensual', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4868, 0, 'es', 'labels', 'backend.sitemap.records_note', 'Número de registros por archivo.', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4869, 0, 'es', 'labels', 'backend.sitemap.records_per_file', 'Registros por archivo', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4870, 0, 'es', 'labels', 'backend.sitemap.sitemap_note', 'Esta herramienta de mapa del sitio generará un mapa del sitio para cursos, paquetes y blogs publicados.', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4871, 0, 'es', 'labels', 'backend.sitemap.title', 'Mapa del sitio', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4872, 0, 'es', 'labels', 'backend.sitemap.weekly', 'Semanal', '2019-09-12 23:34:36', '2020-05-14 12:20:11'), (4873, 0, 'es', 'labels', 'backend.tax.create', 'Crear impuesto', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4874, 0, 'es', 'labels', 'backend.tax.edit', 'Editar impuesto', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4875, 0, 'es', 'labels', 'backend.tax.fields.name', 'Nombre', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4876, 0, 'es', 'labels', 'backend.tax.fields.rate', 'Tarifa', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4877, 0, 'es', 'labels', 'backend.tax.fields.status', 'Estado', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4878, 0, 'es', 'labels', 'backend.tax.off', 'Apagada', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4879, 0, 'es', 'labels', 'backend.tax.on', 'En', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4880, 0, 'es', 'labels', 'backend.tax.title', 'Impuesto', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4881, 0, 'es', 'labels', 'backend.tax.view', 'Ver impuesto', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4882, 0, 'es', 'labels', 'backend.forum_category.create', 'Crear categoría de foro', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4883, 0, 'es', 'labels', 'backend.forum_category.edit', 'Editar categoría del foro', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4884, 0, 'es', 'labels', 'backend.forum_category.fields.category', 'Categoría', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4885, 0, 'es', 'labels', 'backend.forum_category.fields.color', 'Color', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4886, 0, 'es', 'labels', 'backend.forum_category.fields.order', 'Orden', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4887, 0, 'es', 'labels', 'backend.forum_category.fields.parent_category', 'Categoría principal', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4888, 0, 'es', 'labels', 'backend.forum_category.fields.status', 'Estado', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4889, 0, 'es', 'labels', 'backend.forum_category.off', 'Apagada', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4890, 0, 'es', 'labels', 'backend.forum_category.on', 'En', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4891, 0, 'es', 'labels', 'backend.forum_category.title', 'Categorías del foro', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4892, 0, 'es', 'labels', 'backend.forum_category.view', 'Ver categoría del foro', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4893, 0, 'es', 'labels', 'frontend.auth.login_box_title', 'Iniciar Sesión', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4894, 0, 'es', 'labels', 'frontend.auth.login_button', 'Iniciar Sesión', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4895, 0, 'es', 'labels', 'frontend.auth.login_with', 'Iniciar Sesión mediante :social_media', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4896, 0, 'es', 'labels', 'frontend.auth.register_box_title', 'Registrarse', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4897, 0, 'es', 'labels', 'frontend.auth.register_button', 'Registrarse', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4898, 0, 'es', 'labels', 'frontend.auth.remember_me', 'Recordarme', '2019-09-12 23:34:37', '2020-05-14 12:20:11'); INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES (4899, 0, 'es', 'labels', 'frontend.contact.box_title', 'Contáctenos', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4900, 0, 'es', 'labels', 'frontend.contact.button', 'Enviar información', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4901, 0, 'es', 'labels', 'frontend.contact.keep_in_touch', 'Mantener <span> en contacto. </span>', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4902, 0, 'es', 'labels', 'frontend.contact.message', 'Mensaje', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4903, 0, 'es', 'labels', 'frontend.contact.phone_number', 'Número de teléfono', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4904, 0, 'es', 'labels', 'frontend.contact.send_email', 'Enviar correo electrónico', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4905, 0, 'es', 'labels', 'frontend.contact.send_message_now', 'Enviar mensaje ahora', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4906, 0, 'es', 'labels', 'frontend.contact.send_us_a_message', 'Envíenos <span> un mensaje . </span>', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4907, 0, 'es', 'labels', 'frontend.contact.title', 'Contacto', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4908, 0, 'es', 'labels', 'frontend.contact.your_email', 'Tu correo electrónico', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4909, 0, 'es', 'labels', 'frontend.contact.your_name', 'Tu nombre', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4910, 0, 'es', 'labels', 'frontend.passwords.expired_password_box_title', 'Tu contraseña a expirado.', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4911, 0, 'es', 'labels', 'frontend.passwords.forgot_password', 'Has olvidado la contraseña?', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4912, 0, 'es', 'labels', 'frontend.passwords.reset_password_box_title', 'Reiniciar contraseña', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4913, 0, 'es', 'labels', 'frontend.passwords.reset_password_button', 'Reiniciar contraseña', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4914, 0, 'es', 'labels', 'frontend.passwords.update_password_button', 'Actualizar contraseña', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4915, 0, 'es', 'labels', 'frontend.passwords.send_password_reset_link_button', 'Enviar el correo de verificación', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4916, 0, 'es', 'labels', 'frontend.user.passwords.change', 'Cambiar la contraseña', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4917, 0, 'es', 'labels', 'frontend.user.profile.avatar', 'Avatar', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4918, 0, 'es', 'labels', 'frontend.user.profile.created_at', 'Creado el', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4919, 0, 'es', 'labels', 'frontend.user.profile.edit_information', 'Modificar la información', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4920, 0, 'es', 'labels', 'frontend.user.profile.email', 'Correo', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4921, 0, 'es', 'labels', 'frontend.user.profile.last_updated', 'Última modificación', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4922, 0, 'es', 'labels', 'frontend.user.profile.name', 'Nombre', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4923, 0, 'es', 'labels', 'frontend.user.profile.first_name', 'Nombre', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4924, 0, 'es', 'labels', 'frontend.user.profile.last_name', 'Apellidos', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4925, 0, 'es', 'labels', 'frontend.user.profile.update_information', 'Actualizar la información', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4926, 0, 'es', 'labels', 'frontend.teacher.title', 'Espalda...', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4927, 0, 'es', 'labels', 'frontend.teacher.students', 'Estudiantes', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4928, 0, 'es', 'labels', 'frontend.teacher.send_now', 'Enviar ahora', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4929, 0, 'es', 'labels', 'frontend.teacher.courses_by_teacher', 'Cursos <span> Por profesor. </span>', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4930, 0, 'es', 'labels', 'frontend.teacher.course_detail', 'Detalle del curso', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4931, 0, 'es', 'labels', 'frontend.search_result.trending', 'Tendencias', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4932, 0, 'es', 'labels', 'frontend.search_result.students', 'Estudiantes', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4933, 0, 'es', 'labels', 'frontend.search_result.starts', 'Empieza', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4934, 0, 'es', 'labels', 'frontend.search_result.blog', 'Blog', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4935, 0, 'es', 'labels', 'frontend.search_result.course_detail', 'Detalle del curso', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4936, 0, 'es', 'labels', 'frontend.search_result.course_name', 'Nombre del curso', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4937, 0, 'es', 'labels', 'frontend.search_result.course_type', 'Tipo de curso', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4938, 0, 'es', 'labels', 'frontend.search_result.featured', 'Destacados', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4939, 0, 'es', 'labels', 'frontend.search_result.none', 'Ninguno', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4940, 0, 'es', 'labels', 'frontend.search_result.popular', 'Popular', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4941, 0, 'es', 'labels', 'frontend.search_result.search_blog', 'Buscar Blog', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4942, 0, 'es', 'labels', 'frontend.search_result.sort_by', '<b> Ordenar </b> Por', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4943, 0, 'es', 'labels', 'frontend.badges.trending', 'Tendencias', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4944, 0, 'es', 'labels', 'frontend.blog.add_comment', 'Agregar comentario', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4945, 0, 'es', 'labels', 'frontend.blog.blog_categories', 'Blog <span> Categorías. </span>', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4946, 0, 'es', 'labels', 'frontend.blog.by', 'Por', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4947, 0, 'es', 'labels', 'frontend.blog.featured_course', 'Curso <span> destacado </span>', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4948, 0, 'es', 'labels', 'frontend.blog.login_to_post_comment', 'Inicia sesión para publicar un comentario', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4949, 0, 'es', 'labels', 'frontend.blog.no_comments_yet', 'No hay comentarios todavía, Sé el primero en comentar.', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4950, 0, 'es', 'labels', 'frontend.blog.popular_tags', 'Etiquetas <span> populares </span>', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4951, 0, 'es', 'labels', 'frontend.blog.post_comments', 'Publicar <span> Comentarios. </span>', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4952, 0, 'es', 'labels', 'frontend.blog.related_news', '<span> Noticias relacionadas </span>', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4953, 0, 'es', 'labels', 'frontend.blog.search_blog', 'Buscar Blog', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4954, 0, 'es', 'labels', 'frontend.blog.share_this_news', 'Comparte esta noticia', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4955, 0, 'es', 'labels', 'frontend.blog.title', 'Blog', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4956, 0, 'es', 'labels', 'frontend.blog.write_a_comment', 'Écrire un commentaire', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4957, 0, 'es', 'labels', 'frontend.cart.card_number', 'Número de tarjeta', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4958, 0, 'es', 'labels', 'frontend.cart.card_number_placeholder', 'Ingrese su número de tarjeta', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4959, 0, 'es', 'labels', 'frontend.cart.cart', 'Carro', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4960, 0, 'es', 'labels', 'frontend.cart.checkout', 'Revisa', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4961, 0, 'es', 'labels', 'frontend.cart.complete_your_purchases', 'Complete <span> Sus compras. </span>', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4962, 0, 'es', 'labels', 'frontend.cart.confirmation_note', 'Al confirmar esta compra, acepto los <b> Términos de uso, la Política de reembolso </b> y la <b> Política de privacidad </b>', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4963, 0, 'es', 'labels', 'frontend.cart.course_name', 'Nombre del curso', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4964, 0, 'es', 'labels', 'frontend.cart.course_type', 'Tipo de curso', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4965, 0, 'es', 'labels', 'frontend.cart.cvv', 'CVV', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4966, 0, 'es', 'labels', 'frontend.cart.empty_cart', 'Tu carrito esta vacío', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4967, 0, 'es', 'labels', 'frontend.cart.expiration_date', 'Fecha de caducidad', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4968, 0, 'es', 'labels', 'frontend.cart.go_back_to_cart', 'Volver al carrito', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4969, 0, 'es', 'labels', 'frontend.cart.mm', 'MM', '2019-09-12 23:34:37', '2020-05-14 12:20:11'), (4970, 0, 'es', 'labels', 'frontend.cart.name_on_card', 'Nombre en la tarjeta', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4971, 0, 'es', 'labels', 'frontend.cart.name_on_card_placeholder', 'Ingrese el nombre escrito en su tarjeta', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4972, 0, 'es', 'labels', 'frontend.cart.no_payment_method', 'No hay método de pago disponible en este momento.', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4973, 0, 'es', 'labels', 'frontend.cart.offline_payment', 'Pago offline', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4974, 0, 'es', 'labels', 'frontend.cart.offline_payment_note', 'En este método de pago, nuestros ejecutivos lo contactarán y le darán instrucciones sobre el pago y la compra del curso.', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4975, 0, 'es', 'labels', 'frontend.cart.order_detail', 'Ordenar <span> Detalle. </span>', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4976, 0, 'es', 'labels', 'frontend.cart.order_item', 'Ordenar <span> artículo. </span>', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4977, 0, 'es', 'labels', 'frontend.cart.order_payment', 'Orden <span> Pago. </span>', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4978, 0, 'es', 'labels', 'frontend.cart.pay_now', 'Pague ahora', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4979, 0, 'es', 'labels', 'frontend.cart.pay_securely_paypal', 'Pague de forma segura con PayPal', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4980, 0, 'es', 'labels', 'frontend.cart.payment_cards', 'Tarjeta de crédito o débito', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4981, 0, 'es', 'labels', 'frontend.cart.payment_status', 'Estado de pago', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4982, 0, 'es', 'labels', 'frontend.cart.paypal', 'PayPal', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4983, 0, 'es', 'labels', 'frontend.cart.request_assistance', 'Solicitar asistencia', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4984, 0, 'es', 'labels', 'frontend.cart.see_more_courses', 'Ver más cursos', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4985, 0, 'es', 'labels', 'frontend.cart.starts', 'Empieza', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4986, 0, 'es', 'labels', 'frontend.cart.stripe_error_message', 'Por favor, corrija los errores e inténtelo de nuevo.', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4987, 0, 'es', 'labels', 'frontend.cart.success_message', 'Felicidades. Disfruta tu curso', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4988, 0, 'es', 'labels', 'frontend.cart.total', 'Total', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4989, 0, 'es', 'labels', 'frontend.cart.your_payment_status', 'Su <span> Estado de pago. </span>', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4990, 0, 'es', 'labels', 'frontend.cart.your_shopping_cart', 'tu carrito de la compra', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4991, 0, 'es', 'labels', 'frontend.cart.yy', 'YY', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4992, 0, 'es', 'labels', 'frontend.cart.product_name', 'nombre del producto', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4993, 0, 'es', 'labels', 'frontend.cart.product_type', 'tipo de producto', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4994, 0, 'es', 'labels', 'frontend.cart.connection_timeout', 'El tiempo de conexión expiro', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4995, 0, 'es', 'labels', 'frontend.cart.offline_request', 'Solicitud recibida con éxito! Revise su correo electrónico registrado para más detalles.', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4996, 0, 'es', 'labels', 'frontend.cart.payment_done', 'Pago realizado con éxito!', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4997, 0, 'es', 'labels', 'frontend.cart.payment_failed', '¡Error! ¡Pago fallido!', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4998, 0, 'es', 'labels', 'frontend.cart.product_added', 'Producto añadido al carrito con éxito.', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (4999, 0, 'es', 'labels', 'frontend.cart.try_again', '¡Error! Inténtalo de nuevo.', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5000, 0, 'es', 'labels', 'frontend.cart.unknown_error', 'Ocurrió un error desconocido', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5001, 0, 'es', 'labels', 'frontend.cart.purchase_successful', '¡Felicidades! Has comprado este curso.', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5002, 0, 'es', 'labels', 'frontend.cart.amount', 'Cantidad', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5003, 0, 'es', 'labels', 'frontend.cart.apply', 'Aplicar', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5004, 0, 'es', 'labels', 'frontend.cart.empty_input', 'Escriba el código de cupón antes de aplicar', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5005, 0, 'es', 'labels', 'frontend.cart.invalid_coupon', 'Cupón inválido!', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5006, 0, 'es', 'labels', 'frontend.cart.item', 'ít', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5007, 0, 'es', 'labels', 'frontend.cart.items', 'artículos', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5008, 0, 'es', 'labels', 'frontend.cart.offers', 'Ofertas', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5009, 0, 'es', 'labels', 'frontend.cart.price', 'Precio', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5010, 0, 'es', 'labels', 'frontend.cart.sub_total', 'Subtotal', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5011, 0, 'es', 'labels', 'frontend.cart.total_payable', 'Total a pagar', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5012, 0, 'es', 'labels', 'frontend.course.add_review_now', 'Añadir reseña ahora', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5013, 0, 'es', 'labels', 'frontend.course.add_reviews', 'Añadir <span> Comentarios. </span>', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5014, 0, 'es', 'labels', 'frontend.course.add_to_cart', 'Añadir a la cesta', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5015, 0, 'es', 'labels', 'frontend.course.added_to_cart', 'Añadido a la cesta', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5016, 0, 'es', 'labels', 'frontend.course.author', 'Autor', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5017, 0, 'es', 'labels', 'frontend.course.average_rating', 'Puntuación media', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5018, 0, 'es', 'labels', 'frontend.course.buy_note', 'Solo los estudiantes pueden comprar el curso', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5019, 0, 'es', 'labels', 'frontend.course.buy_now', 'Compra ahora', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5020, 0, 'es', 'labels', 'frontend.course.by', 'Por', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5021, 0, 'es', 'labels', 'frontend.course.category', 'Categoría', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5022, 0, 'es', 'labels', 'frontend.course.chapter_videos', 'Videos del Capítulo', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5023, 0, 'es', 'labels', 'frontend.course.chapters', 'Capítulos', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5024, 0, 'es', 'labels', 'frontend.course.completed', 'Terminado', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5025, 0, 'es', 'labels', 'frontend.course.continue_course', 'Continuar el curso', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5026, 0, 'es', 'labels', 'frontend.course.course_detail', 'Detalles del curso', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5027, 0, 'es', 'labels', 'frontend.course.course_details', '<span>Detalles del curso.</span>', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5028, 0, 'es', 'labels', 'frontend.course.course_name', 'Nombre del curso', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5029, 0, 'es', 'labels', 'frontend.course.course_reviews', 'Curso <span> Opiniones: </span>', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5030, 0, 'es', 'labels', 'frontend.course.course_timeline', 'Curso <b> Línea de tiempo: </b>', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5031, 0, 'es', 'labels', 'frontend.course.course_type', 'Tipo de curso', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5032, 0, 'es', 'labels', 'frontend.course.courses', 'Los cursos', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5033, 0, 'es', 'labels', 'frontend.course.details', 'Detalles', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5034, 0, 'es', 'labels', 'frontend.course.download_files', 'Descargar archivos', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5035, 0, 'es', 'labels', 'frontend.course.enrolled', 'Inscrito', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5036, 0, 'es', 'labels', 'frontend.course.featured', 'Destacados', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5037, 0, 'es', 'labels', 'frontend.course.featured_course', 'Curso <span> Destacado </span>.', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5038, 0, 'es', 'labels', 'frontend.course.find_courses', 'ENCONTRAR CURSOS', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5039, 0, 'es', 'labels', 'frontend.course.find_your_course', '<span> Encuentra </span> tu curso.', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5040, 0, 'es', 'labels', 'frontend.course.full_text', 'TEXTO COMPLETO', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5041, 0, 'es', 'labels', 'frontend.course.give_test_again', 'Dar prueba de nuevo', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5042, 0, 'es', 'labels', 'frontend.course.go', 'Ir', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5043, 0, 'es', 'labels', 'frontend.course.mb', 'MB', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5044, 0, 'es', 'labels', 'frontend.course.message', 'Mensaje', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5045, 0, 'es', 'labels', 'frontend.course.next', 'SIGUIENTE', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5046, 0, 'es', 'labels', 'frontend.course.no_reviews_yet', 'Aún no hay comentarios.', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5047, 0, 'es', 'labels', 'frontend.course.none', 'Ninguno', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5048, 0, 'es', 'labels', 'frontend.course.popular', 'Popular', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5049, 0, 'es', 'labels', 'frontend.course.prev', 'Antes', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5050, 0, 'es', 'labels', 'frontend.course.price', 'Precio', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5051, 0, 'es', 'labels', 'frontend.course.progress', 'Progreso', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5052, 0, 'es', 'labels', 'frontend.course.ratings', 'Calificaciones', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5053, 0, 'es', 'labels', 'frontend.course.recent_news', '<span> Noticias recientes </span>.', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5054, 0, 'es', 'labels', 'frontend.course.sort_by', '<b> Ordenar </b> Por', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5055, 0, 'es', 'labels', 'frontend.course.stars', 'Estrellas', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5056, 0, 'es', 'labels', 'frontend.course.starts', 'Empieza', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5057, 0, 'es', 'labels', 'frontend.course.students', 'Estudiantes', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5058, 0, 'es', 'labels', 'frontend.course.submit_results', 'Enviar resultados', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5059, 0, 'es', 'labels', 'frontend.course.test', 'Prueba', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5060, 0, 'es', 'labels', 'frontend.course.title', 'Curso', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5061, 0, 'es', 'labels', 'frontend.course.trending', 'Tendencias', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5062, 0, 'es', 'labels', 'frontend.course.view_all_news', 'Ver todas las noticias', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5063, 0, 'es', 'labels', 'frontend.course.your_rating', 'Tu clasificación', '2019-09-12 23:34:38', '2020-05-14 12:20:11'), (5064, 0, 'es', 'labels', 'frontend.course.your_test_score', 'Su puntuación de la prueba', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5065, 0, 'es', 'labels', 'frontend.course.certified', 'Estás certificado para este curso', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5066, 0, 'es', 'labels', 'frontend.course.finish_course', 'Terminar el curso', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5067, 0, 'es', 'labels', 'frontend.course.course', 'Curso', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5068, 0, 'es', 'labels', 'frontend.course.bundle_detail', 'Detalles del paquete', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5069, 0, 'es', 'labels', 'frontend.course.bundle_reviews', 'Comentarios de <span> paquetes: </span>', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5070, 0, 'es', 'labels', 'frontend.course.bundles', 'manojos', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5071, 0, 'es', 'labels', 'frontend.course.available_in_bundles', 'También disponible en paquetes', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5072, 0, 'es', 'labels', 'frontend.course.complete_test', 'Por favor complete la prueba', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5073, 0, 'es', 'labels', 'frontend.course.looking_for', '¿Buscando?', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5074, 0, 'es', 'labels', 'frontend.course.get_now', 'Obtener ahora', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5075, 0, 'es', 'labels', 'frontend.course.explanation', 'Explicación', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5076, 0, 'es', 'labels', 'frontend.course.not_attempted', 'No intentado', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5077, 0, 'es', 'labels', 'frontend.course.find_your_bundle', '<span> Encuentra </span> tu paquete', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5078, 0, 'es', 'labels', 'frontend.course.select_category', 'selecciona una categoría', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5079, 0, 'es', 'labels', 'frontend.faq.contact_us', 'Contáctenos', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5080, 0, 'es', 'labels', 'frontend.faq.find', 'Encuentra <span> Tus preguntas y respuestas. </span>', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5081, 0, 'es', 'labels', 'frontend.faq.make_question', 'Hacer una pregunta', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5082, 0, 'es', 'labels', 'frontend.faq.title', 'Con frecuencia, <span> Preguntas frecuentes </span>', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5083, 0, 'es', 'labels', 'frontend.home.all_teachers', 'Todos los maestros', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5084, 0, 'es', 'labels', 'frontend.home.learn_new_skills', 'Aprende nuevas habilidades', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5085, 0, 'es', 'labels', 'frontend.home.online_available_courses', 'Cursos en línea disponibles', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5086, 0, 'es', 'labels', 'frontend.home.our_professionals', 'Nuestros profesionales', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5087, 0, 'es', 'labels', 'frontend.home.popular_teachers', '<span> Profesores populares </span>', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5088, 0, 'es', 'labels', 'frontend.home.search_course', 'Curso de busqueda', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5089, 0, 'es', 'labels', 'frontend.home.search_course_placeholder', 'Escribe que quieres aprender hoy?', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5090, 0, 'es', 'labels', 'frontend.home.search_courses', '<span> Buscar </span> Cursos.', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5091, 0, 'es', 'labels', 'frontend.home.students_enrolled', 'Estudiantes matriculados', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5092, 0, 'es', 'labels', 'frontend.home.teachers', 'Maestros', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5093, 0, 'es', 'labels', 'frontend.home.title', 'Casa', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5094, 0, 'es', 'labels', 'frontend.home.what_they_say_about_us', 'Que dicen de nosotros', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5095, 0, 'es', 'labels', 'frontend.layouts.partials.advantages', 'Ventajas', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5096, 0, 'es', 'labels', 'frontend.layouts.partials.browse_course_by_category', 'Buscar cursos <span> Por categoría. </span>', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5097, 0, 'es', 'labels', 'frontend.layouts.partials.browse_featured_course', 'Navega por nuestro <span> Curso destacado. </span>', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5098, 0, 'es', 'labels', 'frontend.layouts.partials.call_us_registration', 'Llámenos para registrarse gratis', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5099, 0, 'es', 'labels', 'frontend.layouts.partials.contact_us', 'Contáctenos', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5100, 0, 'es', 'labels', 'frontend.layouts.partials.course_detail', 'Detalle del curso', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5101, 0, 'es', 'labels', 'frontend.layouts.partials.courses_categories', 'Categorias de Cursos', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5102, 0, 'es', 'labels', 'frontend.layouts.partials.days', 'Dias', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5103, 0, 'es', 'labels', 'frontend.layouts.partials.email_address', 'Dirección de correo electrónico', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5104, 0, 'es', 'labels', 'frontend.layouts.partials.email_registration', 'Envíenos un correo electrónico para registrarse gratis', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5105, 0, 'es', 'labels', 'frontend.layouts.partials.faq', 'Preguntas más frecuentes', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5106, 0, 'es', 'labels', 'frontend.layouts.partials.faq_full', 'Con frecuencia, <span> Preguntas frecuentes </span>', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5107, 0, 'es', 'labels', 'frontend.layouts.partials.featured_course', 'Curso <span> Destacado </span>.', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5108, 0, 'es', 'labels', 'frontend.layouts.partials.get_in_touch', 'Estar en contacto', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5109, 0, 'es', 'labels', 'frontend.layouts.partials.hours', 'Horas', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5110, 0, 'es', 'labels', 'frontend.layouts.partials.latest_news_blog', 'Último <span> Blog de Noticias. </span>', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5111, 0, 'es', 'labels', 'frontend.layouts.partials.learn_new_skills', 'Aprende nuevas habilidades', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5112, 0, 'es', 'labels', 'frontend.layouts.partials.minutes', 'Minutos', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5113, 0, 'es', 'labels', 'frontend.layouts.partials.popular_courses', 'Cursos <span>populares . </span>', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5114, 0, 'es', 'labels', 'frontend.layouts.partials.primary', 'Primario', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5115, 0, 'es', 'labels', 'frontend.layouts.partials.recent_news', '<span> Noticias recientes </span>.', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5116, 0, 'es', 'labels', 'frontend.layouts.partials.search_courses', 'Buscar cursos', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5117, 0, 'es', 'labels', 'frontend.layouts.partials.search_our_courses', 'BUSCA NUESTROS CURSOS', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5118, 0, 'es', 'labels', 'frontend.layouts.partials.search_placeholder', 'Escribe que quieres aprender hoy?', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5119, 0, 'es', 'labels', 'frontend.layouts.partials.second', 'Segundo', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5120, 0, 'es', 'labels', 'frontend.layouts.partials.seconds', 'Segundos', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5121, 0, 'es', 'labels', 'frontend.layouts.partials.social_network', 'Red social', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5122, 0, 'es', 'labels', 'frontend.layouts.partials.sponsors', 'Patrocinadores.', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5123, 0, 'es', 'labels', 'frontend.layouts.partials.students', 'Estudiantes', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5124, 0, 'es', 'labels', 'frontend.layouts.partials.students_testimonial', 'Testimonial de<span> los estudiantes . </span>', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5125, 0, 'es', 'labels', 'frontend.layouts.partials.subscribe_newsletter', 'Suscribirse al boletín informativo', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5126, 0, 'es', 'labels', 'frontend.layouts.partials.subscribe_now', 'Suscríbase ahora', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5127, 0, 'es', 'labels', 'frontend.layouts.partials.trending_courses', 'Trending <span> Courses. </span>', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5128, 0, 'es', 'labels', 'frontend.layouts.partials.view_all_news', 'Ver todas las noticias', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5129, 0, 'es', 'labels', 'frontend.layouts.partials.view_all_popular_courses', 'Ver todos los cursos populares', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5130, 0, 'es', 'labels', 'frontend.layouts.partials.view_all_trending_courses', 'Ver todos los cursos de tendencias', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5131, 0, 'es', 'labels', 'frontend.layouts.partials.why_choose', 'Razón por la que elegir', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5132, 0, 'es', 'labels', 'frontend.layouts.partials.certificate_verification', 'Verificación del certificado', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5133, 0, 'es', 'labels', 'frontend.layouts.partials.more_faqs', 'Más preguntas frecuentes', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5134, 0, 'es', 'labels', 'frontend.layouts.partials.offers', 'Ofertas', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5135, 0, 'es', 'labels', 'frontend.modal.already_user_note', '¿Ya eres usuario? Entre aquí', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5136, 0, 'es', 'labels', 'frontend.modal.login_now', 'Inicia sesión ahora', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5137, 0, 'es', 'labels', 'frontend.modal.login_register', '<a href=\"#\" class=\"font-weight-bold go-login px-0\"> LOGIN </a> en nuestro sitio web, o <a href = \"#\" class = \"font-weight-bold go- registrar px-0 \"id =\" \"> REGISTRO </a>', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5138, 0, 'es', 'labels', 'frontend.modal.my_account', 'Mi cuenta', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5139, 0, 'es', 'labels', 'frontend.modal.new_user_note', '¿Nuevo usuario? Registrar aquí', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5140, 0, 'es', 'labels', 'frontend.modal.register_now', 'Regístrate ahora', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5141, 0, 'es', 'labels', 'frontend.modal.registration_message', 'Registro exitoso. Por favor Iniciar sesión', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5142, 0, 'es', 'labels', 'frontend.certificate_verification.date_on_certificate', 'Fecha en el certificado. Ex. 2018-11-25', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5143, 0, 'es', 'labels', 'frontend.certificate_verification.name_on_certificate', 'Nombre en el certificado. Ex. Juan', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5144, 0, 'es', 'labels', 'frontend.certificate_verification.not_found', 'Ningún certificado encontrado para la información dada.', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5145, 0, 'es', 'labels', 'frontend.certificate_verification.title', 'Verificación del certificado', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5146, 0, 'es', 'labels', 'frontend.certificate_verification.verify_now', 'verifica ahora', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5147, 0, 'es', 'labels', 'frontend.footer.useful_links', 'Enlaces útiles', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5148, 0, 'es', 'labels', 'frontend.footer.trending_courses', 'Cursos de tendencias', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5149, 0, 'es', 'labels', 'frontend.footer.popular_courses', 'Cursos populares', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5150, 0, 'es', 'labels', 'frontend.footer.popular_categories', 'Categorías Populares', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5151, 0, 'es', 'labels', 'frontend.footer.featured_courses', 'Cursos destacados', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5152, 0, 'es', 'labels', 'frontend.offers.minimum_order_amount', 'Cantidad mínima de pedido', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5153, 0, 'es', 'labels', 'frontend.offers.no_offers', 'No hay ofertas', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5154, 0, 'es', 'labels', 'frontend.offers.per_user', 'Por usuario', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5155, 0, 'es', 'labels', 'frontend.offers.title', 'Ofertas', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5156, 0, 'es', 'labels', 'frontend.offers.unlimited', 'Ilimitada', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5157, 0, 'es', 'labels', 'frontend.offers.usage', 'Uso', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5158, 0, 'es', 'labels', 'frontend.offers.validity', 'Validez', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5159, 0, 'es', 'labels', 'lang.sp', 'Español', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5160, 0, 'es', 'labels', 'lang.fr', 'Francés', '2019-09-12 23:34:39', '2020-05-14 12:20:11'), (5161, 0, 'es', 'labels', 'lang.en', 'Inglés', '2019-09-12 23:34:40', '2020-05-14 12:20:11'), (5162, 0, 'es', 'labels', 'lang.ar', 'Arábica', '2019-09-12 23:34:40', '2020-05-14 12:20:11'), (5163, 0, 'es', 'menus', 'backend.access.title', 'Acceso', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5164, 0, 'es', 'menus', 'backend.access.roles.all', 'Todos los roles', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5165, 0, 'es', 'menus', 'backend.access.roles.create', 'Crear rol', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5166, 0, 'es', 'menus', 'backend.access.roles.edit', 'Editar rol', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5167, 0, 'es', 'menus', 'backend.access.roles.management', 'Gestión de roles', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5168, 0, 'es', 'menus', 'backend.access.roles.main', 'Roles', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5169, 0, 'es', 'menus', 'backend.access.users.all', 'Todos los usuarios', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5170, 0, 'es', 'menus', 'backend.access.users.change-password', 'Cambia la contraseña', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5171, 0, 'es', 'menus', 'backend.access.users.create', 'Crear usuario', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5172, 0, 'es', 'menus', 'backend.access.users.deactivated', 'Usuarios desactivados', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5173, 0, 'es', 'menus', 'backend.access.users.deleted', 'Usuarios eliminados', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5174, 0, 'es', 'menus', 'backend.access.users.edit', 'editar usuario', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5175, 0, 'es', 'menus', 'backend.access.users.main', 'Usuarios', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5176, 0, 'es', 'menus', 'backend.access.users.view', 'Ver Usuario', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5177, 0, 'es', 'menus', 'backend.log-viewer.main', 'Visor de registro', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5178, 0, 'es', 'menus', 'backend.log-viewer.dashboard', 'Panel de depuración', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5179, 0, 'es', 'menus', 'backend.log-viewer.logs', 'Troncos', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5180, 0, 'es', 'menus', 'backend.sidebar.dashboard', 'Tablero', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5181, 0, 'es', 'menus', 'backend.sidebar.general', 'General', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5182, 0, 'es', 'menus', 'backend.sidebar.history', 'Historia', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5183, 0, 'es', 'menus', 'backend.sidebar.system', 'Sistema', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5184, 0, 'es', 'menus', 'backend.sidebar.account.title', 'Cuenta', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5185, 0, 'es', 'menus', 'backend.sidebar.backup.title', 'Apoyo', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5186, 0, 'es', 'menus', 'backend.sidebar.blogs.title', 'Blog', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5187, 0, 'es', 'menus', 'backend.sidebar.categories.title', 'Las categorías', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5188, 0, 'es', 'menus', 'backend.sidebar.change-password.title', 'Cambia la contraseña', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5189, 0, 'es', 'menus', 'backend.sidebar.contact.title', 'Contacto', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5190, 0, 'es', 'menus', 'backend.sidebar.contacts.title', 'Lleva', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5191, 0, 'es', 'menus', 'backend.sidebar.courses.manage', 'Gestionar cursos', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5192, 0, 'es', 'menus', 'backend.sidebar.courses.management', 'Gestión de cursos', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5193, 0, 'es', 'menus', 'backend.sidebar.courses.title', 'Los cursos', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5194, 0, 'es', 'menus', 'backend.sidebar.debug-site.title', 'Depurar el sitio', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5195, 0, 'es', 'menus', 'backend.sidebar.faqs.title', 'Preguntas frecuentes', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5196, 0, 'es', 'menus', 'backend.sidebar.footer.title', 'Pie de página', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5197, 0, 'es', 'menus', 'backend.sidebar.hero-slider.title', 'Control deslizante de héroe', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5198, 0, 'es', 'menus', 'backend.sidebar.invoices.title', 'Facturas', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5199, 0, 'es', 'menus', 'backend.sidebar.lessons.title', 'Lecciones', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5200, 0, 'es', 'menus', 'backend.sidebar.menu-manager.title', 'Gestor de menú', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5201, 0, 'es', 'menus', 'backend.sidebar.messages.title', 'Mensajes', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5202, 0, 'es', 'menus', 'backend.sidebar.newsletter-configuration.title', 'Configuración del boletín', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5203, 0, 'es', 'menus', 'backend.sidebar.orders.title', 'Pedidos', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5204, 0, 'es', 'menus', 'backend.sidebar.pages.title', 'Administrador de páginas', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5205, 0, 'es', 'menus', 'backend.sidebar.questions-options.title', 'Preguntas Opciones', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5206, 0, 'es', 'menus', 'backend.sidebar.questions.title', 'Preguntas', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5207, 0, 'es', 'menus', 'backend.sidebar.reasons.title', 'Razones', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5208, 0, 'es', 'menus', 'backend.sidebar.reviews.title', 'Opiniones', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5209, 0, 'es', 'menus', 'backend.sidebar.settings.general', 'General', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5210, 0, 'es', 'menus', 'backend.sidebar.settings.social-login', 'Inicio de sesión social', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5211, 0, 'es', 'menus', 'backend.sidebar.settings.title', 'Ajustes', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5212, 0, 'es', 'menus', 'backend.sidebar.site-management.title', 'Manejo de sitio', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5213, 0, 'es', 'menus', 'backend.sidebar.sponsors.title', 'Los patrocinadores', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5214, 0, 'es', 'menus', 'backend.sidebar.teachers.title', 'Maestros', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5215, 0, 'es', 'menus', 'backend.sidebar.testimonials.title', 'Testimonios', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5216, 0, 'es', 'menus', 'backend.sidebar.tests.title', 'Pruebas', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5217, 0, 'es', 'menus', 'backend.sidebar.translations.title', 'Gerente de traducción', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5218, 0, 'es', 'menus', 'backend.sidebar.update.title', 'Actualizar', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5219, 0, 'es', 'menus', 'backend.sidebar.certificates.title', 'Certificados', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5220, 0, 'es', 'menus', 'backend.sidebar.bundles.title', 'manojos', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5221, 0, 'es', 'menus', 'backend.sidebar.reports.sales', 'Ventas', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5222, 0, 'es', 'menus', 'backend.sidebar.reports.students', 'Estudiantes', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5223, 0, 'es', 'menus', 'backend.sidebar.reports.title', 'Informes', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5224, 0, 'es', 'menus', 'backend.sidebar.coupons.title', 'Cupones', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5225, 0, 'es', 'menus', 'backend.sidebar.sitemap.title', 'Mapa del sitio', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5226, 0, 'es', 'menus', 'backend.sidebar.tax.title', 'Impuesto', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5227, 0, 'es', 'menus', 'backend.sidebar.forums-category.title', 'Categorías de foros', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5228, 0, 'es', 'menus', 'language-picker.language', 'Idioma', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5229, 0, 'es', 'menus', 'language-picker.langs.ar', 'Arábica', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5230, 0, 'es', 'menus', 'language-picker.langs.zh', 'chino', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5231, 0, 'es', 'menus', 'language-picker.langs.zh-TW', 'Chino tradicional', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5232, 0, 'es', 'menus', 'language-picker.langs.da', 'danés', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5233, 0, 'es', 'menus', 'language-picker.langs.de', 'alemán', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5234, 0, 'es', 'menus', 'language-picker.langs.el', 'griego', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5235, 0, 'es', 'menus', 'language-picker.langs.en', 'Inglés', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5236, 0, 'es', 'menus', 'language-picker.langs.es', 'Español', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5237, 0, 'es', 'menus', 'language-picker.langs.fa', 'persa', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5238, 0, 'es', 'menus', 'language-picker.langs.fr', 'francés', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5239, 0, 'es', 'menus', 'language-picker.langs.he', 'hebreo', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5240, 0, 'es', 'menus', 'language-picker.langs.id', 'indonesio', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5241, 0, 'es', 'menus', 'language-picker.langs.it', 'italiano', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5242, 0, 'es', 'menus', 'language-picker.langs.ja', 'japonés', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5243, 0, 'es', 'menus', 'language-picker.langs.nl', 'holandés', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5244, 0, 'es', 'menus', 'language-picker.langs.no', 'noruego', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5245, 0, 'es', 'menus', 'language-picker.langs.pt_BR', 'Portugués (Brasil)', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5246, 0, 'es', 'menus', 'language-picker.langs.ru', 'ruso', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5247, 0, 'es', 'menus', 'language-picker.langs.sv', 'sueco', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5248, 0, 'es', 'menus', 'language-picker.langs.th', 'tailandés', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5249, 0, 'es', 'menus', 'language-picker.langs.tr', 'turco', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5250, 0, 'es', 'menus', 'language-picker.langs.af', 'africaans', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5251, 0, 'es', 'menus', 'language-picker.langs.ak', 'Akan', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5252, 0, 'es', 'menus', 'language-picker.langs.sq_AL', 'Albanés (Albania)', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5253, 0, 'es', 'menus', 'language-picker.langs.sq', 'albanés', '2019-09-12 23:34:40', '2020-05-14 12:20:12'), (5254, 0, 'es', 'menus', 'language-picker.langs.am_ET', 'Amárico (etiopía)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5255, 0, 'es', 'menus', 'language-picker.langs.am', 'Amárico', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5256, 0, 'es', 'menus', 'language-picker.langs.ar_DZ', 'Árabe (Argelia)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5257, 0, 'es', 'menus', 'language-picker.langs.ar_BH', 'Árabe (Bahrein)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5258, 0, 'es', 'menus', 'language-picker.langs.ar_EG', 'Árabe (egipto)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5259, 0, 'es', 'menus', 'language-picker.langs.ar_IQ', 'Árabe (Iraq)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5260, 0, 'es', 'menus', 'language-picker.langs.ar_JO', 'Árabe (Jordania)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5261, 0, 'es', 'menus', 'language-picker.langs.ar_KW', 'Árabe (Kuwait)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5262, 0, 'es', 'menus', 'language-picker.langs.ar_LB', 'Árabe (Líbano)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5263, 0, 'es', 'menus', 'language-picker.langs.ar_LY', 'Árabe (libia)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5264, 0, 'es', 'menus', 'language-picker.langs.ar_MA', 'Árabe (Marruecos)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5265, 0, 'es', 'menus', 'language-picker.langs.ar_OM', 'Árabe (Omán)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5266, 0, 'es', 'menus', 'language-picker.langs.ar_QA', 'Arabe (qatar)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5267, 0, 'es', 'menus', 'language-picker.langs.ar_SA', 'Árabe (Arabia Saudita)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5268, 0, 'es', 'menus', 'language-picker.langs.ar_SD', 'Árabe (sudán)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5269, 0, 'es', 'menus', 'language-picker.langs.ar_SY', 'Árabe (Siria)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5270, 0, 'es', 'menus', 'language-picker.langs.ar_TN', 'Arabe (tunez)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5271, 0, 'es', 'menus', 'language-picker.langs.ar_AE', 'Árabe (Emiratos Árabes Unidos)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5272, 0, 'es', 'menus', 'language-picker.langs.ar_YE', 'Árabe (Yemen)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5273, 0, 'es', 'menus', 'language-picker.langs.hy_AM', 'Armenio (armenia)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5274, 0, 'es', 'menus', 'language-picker.langs.hy', 'armenio', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5275, 0, 'es', 'menus', 'language-picker.langs.as_IN', 'Assamese (India)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5276, 0, 'es', 'menus', 'language-picker.langs.as', 'Asamés', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5277, 0, 'es', 'menus', 'language-picker.langs.asa_TZ', 'Asu (Tanzania)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5278, 0, 'es', 'menus', 'language-picker.langs.asa', 'Asu', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5279, 0, 'es', 'menus', 'language-picker.langs.az_Cyrl', 'Azerbaiyano (cirílico)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5280, 0, 'es', 'menus', 'language-picker.langs.az_Cyrl_AZ', 'Azerbaiyán (cirílico, Azerbaiyán)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5281, 0, 'es', 'menus', 'language-picker.langs.az_Latn', 'Azerbaiyano (latín)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5282, 0, 'es', 'menus', 'language-picker.langs.az_Latn_AZ', 'Azerbaiyano (latín, azerbaiyán)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5283, 0, 'es', 'menus', 'language-picker.langs.az', 'Azerbaiyano', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5284, 0, 'es', 'menus', 'language-picker.langs.bm_ML', 'Bambara (Mali)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5285, 0, 'es', 'menus', 'language-picker.langs.bm', 'Bambara', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5286, 0, 'es', 'menus', 'language-picker.langs.eu_ES', 'Vasco (españa)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5287, 0, 'es', 'menus', 'language-picker.langs.eu', 'vasco', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5288, 0, 'es', 'menus', 'language-picker.langs.be_BY', 'Bielorruso (bielorruso)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5289, 0, 'es', 'menus', 'language-picker.langs.be', 'Bielorruso', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5290, 0, 'es', 'menus', 'language-picker.langs.bem_ZM', 'Bemba (Zambia)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5291, 0, 'es', 'menus', 'language-picker.langs.bem', 'Bemba', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5292, 0, 'es', 'menus', 'language-picker.langs.bez_TZ', 'Bena (Tanzania)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5293, 0, 'es', 'menus', 'language-picker.langs.bez', 'Bena', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5294, 0, 'es', 'menus', 'language-picker.langs.bn_BD', 'Bengalí (Bangladesh)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5295, 0, 'es', 'menus', 'language-picker.langs.bn_IN', 'Bengalí (india)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'); INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES (5296, 0, 'es', 'menus', 'language-picker.langs.bn', 'bengalí', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5297, 0, 'es', 'menus', 'language-picker.langs.bs_BA', 'Bosnio (Bosnia y Herzegovina)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5298, 0, 'es', 'menus', 'language-picker.langs.bs', 'bosnio', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5299, 0, 'es', 'menus', 'language-picker.langs.bg_BG', 'Búlgaro (bulgaria)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5300, 0, 'es', 'menus', 'language-picker.langs.bg', 'búlgaro', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5301, 0, 'es', 'menus', 'language-picker.langs.my_MM', 'Birmania (Myanmar [Birmania])', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5302, 0, 'es', 'menus', 'language-picker.langs.my', 'birmano', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5303, 0, 'es', 'menus', 'language-picker.langs.yue_Hant_HK', 'Cantonés (Tradicional, Hong Kong SAR China)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5304, 0, 'es', 'menus', 'language-picker.langs.ca_ES', 'Catalán (españa)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5305, 0, 'es', 'menus', 'language-picker.langs.ca', 'catalán', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5306, 0, 'es', 'menus', 'language-picker.langs.tzm_Latn', 'Marruecos central Tamazight (América)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5307, 0, 'es', 'menus', 'language-picker.langs.tzm_Latn_MA', 'Marruecos central Tamazight (América, Marruecos)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5308, 0, 'es', 'menus', 'language-picker.langs.tzm', 'Marruecos central Tamazight', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5309, 0, 'es', 'menus', 'language-picker.langs.chr_US', 'Cherokee (Estados Unidos)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5310, 0, 'es', 'menus', 'language-picker.langs.chr', 'Cherokee', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5311, 0, 'es', 'menus', 'language-picker.langs.cgg_UG', 'Chiga (Uganda)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5312, 0, 'es', 'menus', 'language-picker.langs.cgg', 'Chiga', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5313, 0, 'es', 'menus', 'language-picker.langs.zh_Hans', 'Chino (Han simplificado)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5314, 0, 'es', 'menus', 'language-picker.langs.zh_Hans_CN', 'Chino (Han simplificado, China)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5315, 0, 'es', 'menus', 'language-picker.langs.zh_Hans_HK', 'Chino (Han simplificado, Hong Kong SAR China)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5316, 0, 'es', 'menus', 'language-picker.langs.zh_Hans_MO', 'Chino (Han simplificado, Macao SAR China)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5317, 0, 'es', 'menus', 'language-picker.langs.zh_Hans_SG', 'Chino (Han simplificado, Singapur)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5318, 0, 'es', 'menus', 'language-picker.langs.zh_Hant', 'Chino (Han tradicional)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5319, 0, 'es', 'menus', 'language-picker.langs.zh_Hant_HK', 'Chino (Tradicional Han, Hong Kong SAR China)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5320, 0, 'es', 'menus', 'language-picker.langs.zh_Hant_MO', 'Chino (Tradicional Han, Macao SAR China)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5321, 0, 'es', 'menus', 'language-picker.langs.zh_Hant_TW', 'Chino (Han tradicional, Taiwán)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5322, 0, 'es', 'menus', 'language-picker.langs.kw_GB', 'Cornish (Reino Unido)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5323, 0, 'es', 'menus', 'language-picker.langs.kw', 'de Cornualles', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5324, 0, 'es', 'menus', 'language-picker.langs.hr_HR', 'Croata (croacia)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5325, 0, 'es', 'menus', 'language-picker.langs.hr', 'croata', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5326, 0, 'es', 'menus', 'language-picker.langs.cs_CZ', 'Checa (República Checa)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5327, 0, 'es', 'menus', 'language-picker.langs.cs', 'checo', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5328, 0, 'es', 'menus', 'language-picker.langs.da_DK', 'Danés (Dinamarca)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5329, 0, 'es', 'menus', 'language-picker.langs.nl_BE', 'Holandés (Bélgica)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5330, 0, 'es', 'menus', 'language-picker.langs.nl_NL', 'Holandés (Países Bajos)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5331, 0, 'es', 'menus', 'language-picker.langs.ebu_KE', 'Embu (Kenia)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5332, 0, 'es', 'menus', 'language-picker.langs.ebu', 'Embu', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5333, 0, 'es', 'menus', 'language-picker.langs.en_AS', 'Inglés (Samoa Americana)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5334, 0, 'es', 'menus', 'language-picker.langs.en_AU', 'Inglés (Australia)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5335, 0, 'es', 'menus', 'language-picker.langs.en_BE', 'Inglés (Bélgica)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5336, 0, 'es', 'menus', 'language-picker.langs.en_BZ', 'Inglés (Belice)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5337, 0, 'es', 'menus', 'language-picker.langs.en_BW', 'Inglés (Botswana)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5338, 0, 'es', 'menus', 'language-picker.langs.en_CA', 'Inglés (Canadá)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5339, 0, 'es', 'menus', 'language-picker.langs.en_GU', 'Inglés (Guam)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5340, 0, 'es', 'menus', 'language-picker.langs.en_HK', 'Inglés (Hong Kong SAR China)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5341, 0, 'es', 'menus', 'language-picker.langs.en_IN', 'Inglés (India)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5342, 0, 'es', 'menus', 'language-picker.langs.en_IE', 'Inglés (Irlanda)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5343, 0, 'es', 'menus', 'language-picker.langs.en_IL', 'Inglés (Israel)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5344, 0, 'es', 'menus', 'language-picker.langs.en_JM', 'Inglés (Jamaica)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5345, 0, 'es', 'menus', 'language-picker.langs.en_MT', 'Inglés (Malta)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5346, 0, 'es', 'menus', 'language-picker.langs.en_MH', 'Inglés (Islas Marshall)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5347, 0, 'es', 'menus', 'language-picker.langs.en_MU', 'Inglés (Mauricio)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5348, 0, 'es', 'menus', 'language-picker.langs.en_NA', 'Inglés (Namibia)', '2019-09-12 23:34:41', '2020-05-14 12:20:12'), (5349, 0, 'es', 'menus', 'language-picker.langs.en_NZ', 'Inglés (Nueva Zelanda)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5350, 0, 'es', 'menus', 'language-picker.langs.en_MP', 'Inglés (Islas Marianas del Norte)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5351, 0, 'es', 'menus', 'language-picker.langs.en_PK', 'Inglés (Pakistán)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5352, 0, 'es', 'menus', 'language-picker.langs.en_PH', 'Inglés (Filipinas)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5353, 0, 'es', 'menus', 'language-picker.langs.en_SG', 'Inglés (Singapur)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5354, 0, 'es', 'menus', 'language-picker.langs.en_ZA', 'Inglés (Sudáfrica)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5355, 0, 'es', 'menus', 'language-picker.langs.en_TT', 'Inglés (Trinidad y Tobago)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5356, 0, 'es', 'menus', 'language-picker.langs.en_UM', 'Inglés (Islas periféricas menores de los Estados Unidos)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5357, 0, 'es', 'menus', 'language-picker.langs.en_VI', 'Inglés (Islas Vírgenes de los Estados Unidos)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5358, 0, 'es', 'menus', 'language-picker.langs.en_GB', 'Inglés reino unido)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5359, 0, 'es', 'menus', 'language-picker.langs.en_US', 'Inglés Estados Unidos)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5360, 0, 'es', 'menus', 'language-picker.langs.en_ZW', 'Inglés (Zimbabwe)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5361, 0, 'es', 'menus', 'language-picker.langs.eo', 'esperanto', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5362, 0, 'es', 'menus', 'language-picker.langs.et_EE', 'Estonio (estonia)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5363, 0, 'es', 'menus', 'language-picker.langs.et', 'Estonio', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5364, 0, 'es', 'menus', 'language-picker.langs.ee_GH', 'Ewe (Ghana)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5365, 0, 'es', 'menus', 'language-picker.langs.ee_TG', 'Ewe (Togo)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5366, 0, 'es', 'menus', 'language-picker.langs.ee', 'Oveja', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5367, 0, 'es', 'menus', 'language-picker.langs.fo_FO', 'Feroés (Islas Feroe)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5368, 0, 'es', 'menus', 'language-picker.langs.fo', 'Feroés', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5369, 0, 'es', 'menus', 'language-picker.langs.fil_PH', 'Filipino (filipino)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5370, 0, 'es', 'menus', 'language-picker.langs.fil', 'Filipino', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5371, 0, 'es', 'menus', 'language-picker.langs.fi_FI', 'Finlandés (finlandia)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5372, 0, 'es', 'menus', 'language-picker.langs.fi', 'finlandés', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5373, 0, 'es', 'menus', 'language-picker.langs.fr_BE', 'Francés (Bélgica)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5374, 0, 'es', 'menus', 'language-picker.langs.fr_BJ', 'Francés (Benin)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5375, 0, 'es', 'menus', 'language-picker.langs.fr_BF', 'Francés (Burkina Faso)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5376, 0, 'es', 'menus', 'language-picker.langs.fr_BI', 'Francés (burundi)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5377, 0, 'es', 'menus', 'language-picker.langs.fr_CM', 'Francés (Camerún)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5378, 0, 'es', 'menus', 'language-picker.langs.fr_CA', 'Francés (Canadá)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5379, 0, 'es', 'menus', 'language-picker.langs.fr_CF', 'Francés (República Centroafricana)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5380, 0, 'es', 'menus', 'language-picker.langs.fr_TD', 'Francés (Chad)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5381, 0, 'es', 'menus', 'language-picker.langs.fr_KM', 'Francés (comoras)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5382, 0, 'es', 'menus', 'language-picker.langs.fr_CG', 'Francés (Congo - Brazzaville)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5383, 0, 'es', 'menus', 'language-picker.langs.fr_CD', 'Francés (Congo - Kinshasa)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5384, 0, 'es', 'menus', 'language-picker.langs.fr_CI', 'Francés (Côte d’Ivoire)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5385, 0, 'es', 'menus', 'language-picker.langs.fr_DJ', 'Francés (Djibouti)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5386, 0, 'es', 'menus', 'language-picker.langs.fr_GQ', 'Francés (Guinea Ecuatorial)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5387, 0, 'es', 'menus', 'language-picker.langs.fr_FR', 'Francés Francia)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5388, 0, 'es', 'menus', 'language-picker.langs.fr_GA', 'Francés (Gabón)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5389, 0, 'es', 'menus', 'language-picker.langs.fr_GP', 'Francés (guadalupe)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5390, 0, 'es', 'menus', 'language-picker.langs.fr_GN', 'Francés (guinea)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5391, 0, 'es', 'menus', 'language-picker.langs.fr_LU', 'Francés (Luxemburgo)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5392, 0, 'es', 'menus', 'language-picker.langs.fr_MG', 'Francés (madagascar)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5393, 0, 'es', 'menus', 'language-picker.langs.fr_ML', 'Francés (mali)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5394, 0, 'es', 'menus', 'language-picker.langs.fr_MQ', 'Francés (martinica)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5395, 0, 'es', 'menus', 'language-picker.langs.fr_MC', 'Francés (Mónaco)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5396, 0, 'es', 'menus', 'language-picker.langs.fr_NE', 'Francés (Niger)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5397, 0, 'es', 'menus', 'language-picker.langs.fr_RW', 'Francés (Ruanda)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5398, 0, 'es', 'menus', 'language-picker.langs.fr_RE', 'Francés (Reunión)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5399, 0, 'es', 'menus', 'language-picker.langs.fr_BL', 'Francés (San Bartolomé)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5400, 0, 'es', 'menus', 'language-picker.langs.fr_MF', 'Francés (san martin)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5401, 0, 'es', 'menus', 'language-picker.langs.fr_SN', 'Francés (senegal)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5402, 0, 'es', 'menus', 'language-picker.langs.fr_CH', 'Francés (Suiza)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5403, 0, 'es', 'menus', 'language-picker.langs.fr_TG', 'Francés (Togo)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5404, 0, 'es', 'menus', 'language-picker.langs.ff_SN', 'Fulah (Senegal)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5405, 0, 'es', 'menus', 'language-picker.langs.ff', 'Fulah', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5406, 0, 'es', 'menus', 'language-picker.langs.gl_ES', 'Gallego (españa)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5407, 0, 'es', 'menus', 'language-picker.langs.gl', 'gallego', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5408, 0, 'es', 'menus', 'language-picker.langs.lg_UG', 'Ganda (Uganda)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5409, 0, 'es', 'menus', 'language-picker.langs.lg', 'Ganda', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5410, 0, 'es', 'menus', 'language-picker.langs.ka_GE', 'Georgiano (Georgia)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5411, 0, 'es', 'menus', 'language-picker.langs.ka', 'georgiano', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5412, 0, 'es', 'menus', 'language-picker.langs.de_AT', 'Alemán (Austria)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5413, 0, 'es', 'menus', 'language-picker.langs.de_BE', 'Alemán (Bélgica)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5414, 0, 'es', 'menus', 'language-picker.langs.de_DE', 'Alemán Alemania)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5415, 0, 'es', 'menus', 'language-picker.langs.de_LI', 'Alemán (Liechtenstein)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5416, 0, 'es', 'menus', 'language-picker.langs.de_LU', 'Alemán (Luxemburgo)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5417, 0, 'es', 'menus', 'language-picker.langs.de_CH', 'Alemán (Suiza)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5418, 0, 'es', 'menus', 'language-picker.langs.el_CY', 'Griego (chipre)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5419, 0, 'es', 'menus', 'language-picker.langs.el_GR', 'Griego (grecia)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5420, 0, 'es', 'menus', 'language-picker.langs.gu_IN', 'Gujarati (India)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5421, 0, 'es', 'menus', 'language-picker.langs.gu', 'Gujarati', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5422, 0, 'es', 'menus', 'language-picker.langs.guz_KE', 'Gusii (Kenia)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5423, 0, 'es', 'menus', 'language-picker.langs.guz', 'Gusii', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5424, 0, 'es', 'menus', 'language-picker.langs.ha_Latn', 'Hausa (latín)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5425, 0, 'es', 'menus', 'language-picker.langs.ha_Latn_GH', 'Hausa (América, Ghana)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5426, 0, 'es', 'menus', 'language-picker.langs.ha_Latn_NE', 'Hausa (América, Níger)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5427, 0, 'es', 'menus', 'language-picker.langs.ha_Latn_NG', 'Hausa (América, Nigeria)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5428, 0, 'es', 'menus', 'language-picker.langs.ha', 'Hausa', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5429, 0, 'es', 'menus', 'language-picker.langs.haw_US', 'Hawaiano (Estados Unidos)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5430, 0, 'es', 'menus', 'language-picker.langs.haw', 'hawaiano', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5431, 0, 'es', 'menus', 'language-picker.langs.he_IL', 'Hebreo (israel)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5432, 0, 'es', 'menus', 'language-picker.langs.hi_IN', 'Hindi (India)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5433, 0, 'es', 'menus', 'language-picker.langs.hi', 'hindi', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5434, 0, 'es', 'menus', 'language-picker.langs.hu_HU', 'Húngaro (Hungría)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5435, 0, 'es', 'menus', 'language-picker.langs.hu', 'húngaro', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5436, 0, 'es', 'menus', 'language-picker.langs.is_IS', 'Islandés (islandia)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5437, 0, 'es', 'menus', 'language-picker.langs.is', 'islandés', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5438, 0, 'es', 'menus', 'language-picker.langs.ig_NG', 'Igbo (Nigeria)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5439, 0, 'es', 'menus', 'language-picker.langs.ig', 'Igbo', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5440, 0, 'es', 'menus', 'language-picker.langs.id_ID', 'Indonesio (indonesia)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5441, 0, 'es', 'menus', 'language-picker.langs.ga_IE', 'Irlandés (irlanda)', '2019-09-12 23:34:42', '2020-05-14 12:20:12'), (5442, 0, 'es', 'menus', 'language-picker.langs.ga', 'irlandesa', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5443, 0, 'es', 'menus', 'language-picker.langs.it_IT', 'Italiano (italia)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5444, 0, 'es', 'menus', 'language-picker.langs.it_CH', 'Italiano (suiza)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5445, 0, 'es', 'menus', 'language-picker.langs.ja_JP', 'Japonés (Japón)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5446, 0, 'es', 'menus', 'language-picker.langs.kea_CV', 'Kabuverdianu (Cabo Verde)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5447, 0, 'es', 'menus', 'language-picker.langs.kea', 'Kabuverdianu', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5448, 0, 'es', 'menus', 'language-picker.langs.kab_DZ', 'Cabila (Argelia)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5449, 0, 'es', 'menus', 'language-picker.langs.kab', 'Cabila', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5450, 0, 'es', 'menus', 'language-picker.langs.kl_GL', 'Kalaallisut (Groenlandia)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5451, 0, 'es', 'menus', 'language-picker.langs.kl', 'Kalaallisut', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5452, 0, 'es', 'menus', 'language-picker.langs.kln_KE', 'Kalenjin (Kenia)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5453, 0, 'es', 'menus', 'language-picker.langs.kln', 'Kalenjin', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5454, 0, 'es', 'menus', 'language-picker.langs.kam_KE', 'Kamba (Kenia)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5455, 0, 'es', 'menus', 'language-picker.langs.kam', 'Kamba', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5456, 0, 'es', 'menus', 'language-picker.langs.kn_IN', 'Kannada (India)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5457, 0, 'es', 'menus', 'language-picker.langs.kn', 'Canada', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5458, 0, 'es', 'menus', 'language-picker.langs.kk_Cyrl', 'Kazajo (cirílico)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5459, 0, 'es', 'menus', 'language-picker.langs.kk_Cyrl_KZ', 'Kazajo (cirílico, Kazajstán)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5460, 0, 'es', 'menus', 'language-picker.langs.kk', 'Kazajo', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5461, 0, 'es', 'menus', 'language-picker.langs.km_KH', 'Khmer (Camboya)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5462, 0, 'es', 'menus', 'language-picker.langs.km', 'Khmer', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5463, 0, 'es', 'menus', 'language-picker.langs.ki_KE', 'Kikuyu (Kenia)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5464, 0, 'es', 'menus', 'language-picker.langs.ki', 'Kikuyu', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5465, 0, 'es', 'menus', 'language-picker.langs.rw_RW', 'Kinyarwanda (Ruanda)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5466, 0, 'es', 'menus', 'language-picker.langs.rw', 'Kinyarwanda', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5467, 0, 'es', 'menus', 'language-picker.langs.kok_IN', 'Konkani (India)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5468, 0, 'es', 'menus', 'language-picker.langs.kok', 'Konkani', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5469, 0, 'es', 'menus', 'language-picker.langs.ko_KR', 'Coreano (corea del sur)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5470, 0, 'es', 'menus', 'language-picker.langs.ko', 'coreano', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5471, 0, 'es', 'menus', 'language-picker.langs.khq_ML', 'Koyra Chiini (Mali)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5472, 0, 'es', 'menus', 'language-picker.langs.khq', 'Koyra Chiini', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5473, 0, 'es', 'menus', 'language-picker.langs.ses_ML', 'Koyraboro Senni (Mali)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5474, 0, 'es', 'menus', 'language-picker.langs.ses', 'Koyraboro Senni', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5475, 0, 'es', 'menus', 'language-picker.langs.lag_TZ', 'Langi (Tanzania)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5476, 0, 'es', 'menus', 'language-picker.langs.lag', 'Langi', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5477, 0, 'es', 'menus', 'language-picker.langs.lv_LV', 'Letón (letonia)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5478, 0, 'es', 'menus', 'language-picker.langs.lv', 'letón', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5479, 0, 'es', 'menus', 'language-picker.langs.lt_LT', 'Lituano (lituania)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5480, 0, 'es', 'menus', 'language-picker.langs.lt', 'lituano', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5481, 0, 'es', 'menus', 'language-picker.langs.luo_KE', 'Luo (Kenia)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5482, 0, 'es', 'menus', 'language-picker.langs.luo', 'Luo', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5483, 0, 'es', 'menus', 'language-picker.langs.luy_KE', 'Luyia (Kenia)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5484, 0, 'es', 'menus', 'language-picker.langs.luy', 'Luyia', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5485, 0, 'es', 'menus', 'language-picker.langs.mk_MK', 'Macedonio (Macedonia)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5486, 0, 'es', 'menus', 'language-picker.langs.mk', 'macedónio', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5487, 0, 'es', 'menus', 'language-picker.langs.jmc_TZ', 'Machame (Tanzania)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5488, 0, 'es', 'menus', 'language-picker.langs.jmc', 'Machame', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5489, 0, 'es', 'menus', 'language-picker.langs.kde_TZ', 'Makonde (Tanzania)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5490, 0, 'es', 'menus', 'language-picker.langs.kde', 'Makonde', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5491, 0, 'es', 'menus', 'language-picker.langs.mg_MG', 'Malgache (madagascar)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5492, 0, 'es', 'menus', 'language-picker.langs.mg', 'madagascarí', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5493, 0, 'es', 'menus', 'language-picker.langs.ms_BN', 'Malayo (brunei)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5494, 0, 'es', 'menus', 'language-picker.langs.ms_MY', 'Malayo (malasia)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5495, 0, 'es', 'menus', 'language-picker.langs.ms', 'malayo', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5496, 0, 'es', 'menus', 'language-picker.langs.ml_IN', 'Malayalam (India)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5497, 0, 'es', 'menus', 'language-picker.langs.ml', 'Malayalam', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5498, 0, 'es', 'menus', 'language-picker.langs.mt_MT', 'Maltés (malta)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5499, 0, 'es', 'menus', 'language-picker.langs.mt', 'maltés', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5500, 0, 'es', 'menus', 'language-picker.langs.gv_GB', 'Manx (Reino Unido)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5501, 0, 'es', 'menus', 'language-picker.langs.gv', 'de la isla de Man', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5502, 0, 'es', 'menus', 'language-picker.langs.mr_IN', 'Marathi (India)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5503, 0, 'es', 'menus', 'language-picker.langs.mr', 'Marathi', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5504, 0, 'es', 'menus', 'language-picker.langs.mas_KE', 'Masai (Kenia)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5505, 0, 'es', 'menus', 'language-picker.langs.mas_TZ', 'Masai (Tanzania)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5506, 0, 'es', 'menus', 'language-picker.langs.mas', 'Masai', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5507, 0, 'es', 'menus', 'language-picker.langs.mer_KE', 'Meru (Kenia)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5508, 0, 'es', 'menus', 'language-picker.langs.mer', 'Meru', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5509, 0, 'es', 'menus', 'language-picker.langs.mfe_MU', 'Morisyen (Mauricio)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5510, 0, 'es', 'menus', 'language-picker.langs.mfe', 'Morisyen', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5511, 0, 'es', 'menus', 'language-picker.langs.naq_NA', 'Nama (Namibia)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5512, 0, 'es', 'menus', 'language-picker.langs.naq', 'Nama', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5513, 0, 'es', 'menus', 'language-picker.langs.ne_IN', 'Nepalí (india)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5514, 0, 'es', 'menus', 'language-picker.langs.ne_NP', 'Nepalí (Nepal)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5515, 0, 'es', 'menus', 'language-picker.langs.ne', 'Nepalí', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5516, 0, 'es', 'menus', 'language-picker.langs.nd_ZW', 'Ndebele del Norte (Zimbabwe)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5517, 0, 'es', 'menus', 'language-picker.langs.nd', 'Ndebele Norte', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5518, 0, 'es', 'menus', 'language-picker.langs.nb_NO', 'Bokmål noruego (Noruega)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5519, 0, 'es', 'menus', 'language-picker.langs.nb', 'Noruego bokmål', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5520, 0, 'es', 'menus', 'language-picker.langs.nn_NO', 'Nynorsk noruego (Noruega)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5521, 0, 'es', 'menus', 'language-picker.langs.nn', 'Nynorsk noruego', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5522, 0, 'es', 'menus', 'language-picker.langs.nyn_UG', 'Nyankole (Uganda)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5523, 0, 'es', 'menus', 'language-picker.langs.nyn', 'Nyankole', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5524, 0, 'es', 'menus', 'language-picker.langs.or_IN', 'Oriya (India)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5525, 0, 'es', 'menus', 'language-picker.langs.or', 'Oriya', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5526, 0, 'es', 'menus', 'language-picker.langs.om_ET', 'Oromo (Etiopía)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5527, 0, 'es', 'menus', 'language-picker.langs.om_KE', 'Oromo (Kenia)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5528, 0, 'es', 'menus', 'language-picker.langs.om', 'Oromo', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5529, 0, 'es', 'menus', 'language-picker.langs.ps_AF', 'Pashto (Afganistán)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5530, 0, 'es', 'menus', 'language-picker.langs.ps', 'Pashto', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5531, 0, 'es', 'menus', 'language-picker.langs.fa_AF', 'Persa (Afganistán)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5532, 0, 'es', 'menus', 'language-picker.langs.fa_IR', 'Persa (iran)', '2019-09-12 23:34:43', '2020-05-14 12:20:12'), (5533, 0, 'es', 'menus', 'language-picker.langs.pl_PL', 'Polaco (Polonia)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5534, 0, 'es', 'menus', 'language-picker.langs.pl', 'polaco', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5535, 0, 'es', 'menus', 'language-picker.langs.pt_GW', 'Portugués (Guinea-Bissau)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5536, 0, 'es', 'menus', 'language-picker.langs.pt_MZ', 'Portugués (Mozambique)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5537, 0, 'es', 'menus', 'language-picker.langs.pt_PT', 'Portugués (portugal)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5538, 0, 'es', 'menus', 'language-picker.langs.pt', 'portugués', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5539, 0, 'es', 'menus', 'language-picker.langs.pa_Arab', 'Punjabi (árabe)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5540, 0, 'es', 'menus', 'language-picker.langs.pa_Arab_PK', 'Punjabi (árabe, Pakistán)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5541, 0, 'es', 'menus', 'language-picker.langs.pa_Guru', 'Punjabi (Gurmukhi)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5542, 0, 'es', 'menus', 'language-picker.langs.pa_Guru_IN', 'Punjabi (Gurmukhi, India)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5543, 0, 'es', 'menus', 'language-picker.langs.pa', 'punjabi', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5544, 0, 'es', 'menus', 'language-picker.langs.ro_MD', 'Rumano (moldavia)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5545, 0, 'es', 'menus', 'language-picker.langs.ro_RO', 'Rumano (rumania)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5546, 0, 'es', 'menus', 'language-picker.langs.ro', 'rumano', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5547, 0, 'es', 'menus', 'language-picker.langs.rm_CH', 'Romansh (Suiza)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5548, 0, 'es', 'menus', 'language-picker.langs.rm', 'Romanche', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5549, 0, 'es', 'menus', 'language-picker.langs.rof_TZ', 'Rombo (Tanzania)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5550, 0, 'es', 'menus', 'language-picker.langs.rof', 'Rombo', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5551, 0, 'es', 'menus', 'language-picker.langs.ru_MD', 'Ruso (Moldavia)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5552, 0, 'es', 'menus', 'language-picker.langs.ru_RU', 'Ruso (Rusia)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5553, 0, 'es', 'menus', 'language-picker.langs.ru_UA', 'Ruso (Ucrania)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5554, 0, 'es', 'menus', 'language-picker.langs.rwk_TZ', 'Rwa (Tanzania)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5555, 0, 'es', 'menus', 'language-picker.langs.rwk', 'Rwa', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5556, 0, 'es', 'menus', 'language-picker.langs.saq_KE', 'Samburu (Kenia)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5557, 0, 'es', 'menus', 'language-picker.langs.saq', 'Samburu', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5558, 0, 'es', 'menus', 'language-picker.langs.sg_CF', 'Sango (República Centroafricana)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5559, 0, 'es', 'menus', 'language-picker.langs.sg', 'Sango', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5560, 0, 'es', 'menus', 'language-picker.langs.seh_MZ', 'Sena (Mozambique)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5561, 0, 'es', 'menus', 'language-picker.langs.seh', 'Sena', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5562, 0, 'es', 'menus', 'language-picker.langs.sr_Cyrl', 'Serbio (cirílico)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5563, 0, 'es', 'menus', 'language-picker.langs.sr_Cyrl_BA', 'Serbio (cirílico, Bosnia y Herzegovina)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5564, 0, 'es', 'menus', 'language-picker.langs.sr_Cyrl_ME', 'Serbio (cirílico, Montenegro)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5565, 0, 'es', 'menus', 'language-picker.langs.sr_Cyrl_RS', 'Serbio (cirílico, Serbia)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5566, 0, 'es', 'menus', 'language-picker.langs.sr_Latn', 'Serbio (latín)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5567, 0, 'es', 'menus', 'language-picker.langs.sr_Latn_BA', 'Serbio (latín, bosnia y herzegovina)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5568, 0, 'es', 'menus', 'language-picker.langs.sr_Latn_ME', 'Serbio (latín, montenegro)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5569, 0, 'es', 'menus', 'language-picker.langs.sr_Latn_RS', 'Serbio (latín, serbia)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5570, 0, 'es', 'menus', 'language-picker.langs.sr', 'serbio', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5571, 0, 'es', 'menus', 'language-picker.langs.sn_ZW', 'Shona (Zimbabwe)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5572, 0, 'es', 'menus', 'language-picker.langs.sn', 'Shona', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5573, 0, 'es', 'menus', 'language-picker.langs.ii_CN', 'Sichuan Yi (China)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5574, 0, 'es', 'menus', 'language-picker.langs.ii', 'Sichuan Yi', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5575, 0, 'es', 'menus', 'language-picker.langs.si_LK', 'Cingalés (sri lanka)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5576, 0, 'es', 'menus', 'language-picker.langs.si', 'Cingalés', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5577, 0, 'es', 'menus', 'language-picker.langs.sk_SK', 'Eslovaco (eslovaquia)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5578, 0, 'es', 'menus', 'language-picker.langs.sk', 'eslovaco', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5579, 0, 'es', 'menus', 'language-picker.langs.sl_SI', 'Esloveno (eslovenia)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5580, 0, 'es', 'menus', 'language-picker.langs.sl', 'esloveno', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5581, 0, 'es', 'menus', 'language-picker.langs.xog_UG', 'Soga (Uganda)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5582, 0, 'es', 'menus', 'language-picker.langs.xog', 'Soga', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5583, 0, 'es', 'menus', 'language-picker.langs.so_DJ', 'Somalí (Djibouti)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5584, 0, 'es', 'menus', 'language-picker.langs.so_ET', 'Somalí (etiopía)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5585, 0, 'es', 'menus', 'language-picker.langs.so_KE', 'Somalí (Kenia)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5586, 0, 'es', 'menus', 'language-picker.langs.so_SO', 'Somalí (somalia)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5587, 0, 'es', 'menus', 'language-picker.langs.so', 'somalí', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5588, 0, 'es', 'menus', 'language-picker.langs.es_AR', 'Español (argentina)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5589, 0, 'es', 'menus', 'language-picker.langs.es_BO', 'Español (bolivia)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5590, 0, 'es', 'menus', 'language-picker.langs.es_CL', 'Español (chile)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5591, 0, 'es', 'menus', 'language-picker.langs.es_CO', 'Español (colombia)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5592, 0, 'es', 'menus', 'language-picker.langs.es_CR', 'Español (costa rica)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5593, 0, 'es', 'menus', 'language-picker.langs.es_DO', 'Español (republica dominicana)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5594, 0, 'es', 'menus', 'language-picker.langs.es_EC', 'Español (ecuador)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5595, 0, 'es', 'menus', 'language-picker.langs.es_SV', 'Español (el salvador)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5596, 0, 'es', 'menus', 'language-picker.langs.es_GQ', 'Español (guinea ecuatorial)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5597, 0, 'es', 'menus', 'language-picker.langs.es_GT', 'Español (guatemala)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5598, 0, 'es', 'menus', 'language-picker.langs.es_HN', 'Español (honduras)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5599, 0, 'es', 'menus', 'language-picker.langs.es_419', 'Español (latinoamerica)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5600, 0, 'es', 'menus', 'language-picker.langs.es_MX', 'Español (mexico)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5601, 0, 'es', 'menus', 'language-picker.langs.es_NI', 'Español (nicaragua)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5602, 0, 'es', 'menus', 'language-picker.langs.es_PA', 'Español (panamá)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5603, 0, 'es', 'menus', 'language-picker.langs.es_PY', 'Español (paraguay)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5604, 0, 'es', 'menus', 'language-picker.langs.es_PE', 'Español (peru)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5605, 0, 'es', 'menus', 'language-picker.langs.es_PR', 'Español (puerto rico)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5606, 0, 'es', 'menus', 'language-picker.langs.es_ES', 'Español (españa)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5607, 0, 'es', 'menus', 'language-picker.langs.es_US', 'Español (Estados Unidos)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5608, 0, 'es', 'menus', 'language-picker.langs.es_UY', 'Español (uruguay)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5609, 0, 'es', 'menus', 'language-picker.langs.es_VE', 'Español (venezuela)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5610, 0, 'es', 'menus', 'language-picker.langs.sw_KE', 'Swahili (Kenia)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5611, 0, 'es', 'menus', 'language-picker.langs.sw_TZ', 'Swahili (Tanzania)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5612, 0, 'es', 'menus', 'language-picker.langs.sw', 'swahili', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5613, 0, 'es', 'menus', 'language-picker.langs.sv_FI', 'Sueco (finlandia)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5614, 0, 'es', 'menus', 'language-picker.langs.sv_SE', 'Sueco (Suecia)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5615, 0, 'es', 'menus', 'language-picker.langs.gsw_CH', 'Alemán suizo (suiza)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5616, 0, 'es', 'menus', 'language-picker.langs.gsw', 'suizo alemán', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5617, 0, 'es', 'menus', 'language-picker.langs.shi_Latn', 'Tachelhit (latín)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5618, 0, 'es', 'menus', 'language-picker.langs.shi_Latn_MA', 'Tachelhit (América, Marruecos)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5619, 0, 'es', 'menus', 'language-picker.langs.shi_Tfng', 'Tachelhit (Tifinagh)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5620, 0, 'es', 'menus', 'language-picker.langs.shi_Tfng_MA', 'Tachelhit (Tifinagh, Marruecos)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5621, 0, 'es', 'menus', 'language-picker.langs.shi', 'Tachelhit', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5622, 0, 'es', 'menus', 'language-picker.langs.dav_KE', 'Taita (Kenia)', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5623, 0, 'es', 'menus', 'language-picker.langs.dav', 'Taita', '2019-09-12 23:34:44', '2020-05-14 12:20:12'), (5624, 0, 'es', 'menus', 'language-picker.langs.ta_IN', 'Tamil (india)', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5625, 0, 'es', 'menus', 'language-picker.langs.ta_LK', 'Tamil (Sri Lanka)', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5626, 0, 'es', 'menus', 'language-picker.langs.ta', 'Tamil', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5627, 0, 'es', 'menus', 'language-picker.langs.te_IN', 'Telugu (india)', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5628, 0, 'es', 'menus', 'language-picker.langs.te', 'Telugu', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5629, 0, 'es', 'menus', 'language-picker.langs.teo_KE', 'Teso (Kenia)', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5630, 0, 'es', 'menus', 'language-picker.langs.teo_UG', 'Teso (Uganda)', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5631, 0, 'es', 'menus', 'language-picker.langs.teo', 'Teso', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5632, 0, 'es', 'menus', 'language-picker.langs.th_TH', 'Tailandés (tailandia)', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5633, 0, 'es', 'menus', 'language-picker.langs.bo_CN', 'Tibetano (China)', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5634, 0, 'es', 'menus', 'language-picker.langs.bo_IN', 'Tibetano (india)', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5635, 0, 'es', 'menus', 'language-picker.langs.bo', 'Tibetano', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5636, 0, 'es', 'menus', 'language-picker.langs.ti_ER', 'Tigrinya (Eritrea)', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5637, 0, 'es', 'menus', 'language-picker.langs.ti_ET', 'Tigrinya (Etiopía)', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5638, 0, 'es', 'menus', 'language-picker.langs.ti', 'Tigrinya', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5639, 0, 'es', 'menus', 'language-picker.langs.to_TO', 'Tonga (Tonga)', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5640, 0, 'es', 'menus', 'language-picker.langs.to', 'Tonga', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5641, 0, 'es', 'menus', 'language-picker.langs.tr_TR', 'Turco (Turquía)', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5642, 0, 'es', 'menus', 'language-picker.langs.uk_UA', 'Ucraniano (Ucrania)', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5643, 0, 'es', 'menus', 'language-picker.langs.uk', 'ucranio', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5644, 0, 'es', 'menus', 'language-picker.langs.ur_IN', 'Urdu (india)', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5645, 0, 'es', 'menus', 'language-picker.langs.ur_PK', 'Urdu (Pakistán)', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5646, 0, 'es', 'menus', 'language-picker.langs.ur', 'Urdu', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5647, 0, 'es', 'menus', 'language-picker.langs.uz_Arab', 'Uzbeko (árabe)', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5648, 0, 'es', 'menus', 'language-picker.langs.uz_Arab_AF', 'Uzbeko (árabe, Afganistán)', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5649, 0, 'es', 'menus', 'language-picker.langs.uz_Cyrl', 'Uzbeko (cirílico)', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5650, 0, 'es', 'menus', 'language-picker.langs.uz_Cyrl_UZ', 'Uzbeko (cirílico, uzbekistán)', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5651, 0, 'es', 'menus', 'language-picker.langs.uz_Latn', 'Uzbeko (latín)', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5652, 0, 'es', 'menus', 'language-picker.langs.uz_Latn_UZ', 'Uzbeko (latín, uzbekistán)', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5653, 0, 'es', 'menus', 'language-picker.langs.uz', 'Uzbeko', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5654, 0, 'es', 'menus', 'language-picker.langs.vi_VN', 'Vietnamita (vietnam)', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5655, 0, 'es', 'menus', 'language-picker.langs.vi', 'vietnamita', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5656, 0, 'es', 'menus', 'language-picker.langs.vun_TZ', 'Vunjo (Tanzania)', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5657, 0, 'es', 'menus', 'language-picker.langs.vun', 'Vunjo', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5658, 0, 'es', 'menus', 'language-picker.langs.cy_GB', 'Galés (Reino Unido)', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5659, 0, 'es', 'menus', 'language-picker.langs.cy', 'galés', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5660, 0, 'es', 'menus', 'language-picker.langs.yo_NG', 'Yoruba (Nigeria)', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5661, 0, 'es', 'menus', 'language-picker.langs.yo', 'Yoruba', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5662, 0, 'es', 'menus', 'language-picker.langs.zu_ZA', 'Zulu (Sudáfrica)', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5663, 0, 'es', 'menus', 'language-picker.langs.zu', 'zulú', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5664, 0, 'es', 'navs', 'general.home', 'Casa', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5665, 0, 'es', 'navs', 'general.logout', 'Cerrar sesión', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5666, 0, 'es', 'navs', 'general.login', 'Iniciar sesión', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5667, 0, 'es', 'navs', 'general.account', 'Cuenta', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5668, 0, 'es', 'navs', 'general.messages', 'Mensajes', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5669, 0, 'es', 'navs', 'general.no_messages', 'Ningún mensaje', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5670, 0, 'es', 'navs', 'general.profile', 'Perfil', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5671, 0, 'es', 'navs', 'frontend.contact', 'Contacto', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5672, 0, 'es', 'navs', 'frontend.dashboard', 'Tablero', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5673, 0, 'es', 'navs', 'frontend.login', 'Iniciar sesión', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5674, 0, 'es', 'navs', 'frontend.macros', 'Macros', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5675, 0, 'es', 'navs', 'frontend.register', 'Registro', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5676, 0, 'es', 'navs', 'frontend.user.account', 'Mi cuenta', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5677, 0, 'es', 'navs', 'frontend.user.administration', 'Administración', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5678, 0, 'es', 'navs', 'frontend.user.change_password', 'Cambia la contraseña', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5679, 0, 'es', 'navs', 'frontend.user.my_information', 'Mi informacion', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5680, 0, 'es', 'navs', 'frontend.user.profile', 'Perfil', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5681, 0, 'es', 'navs', 'frontend.forums', 'Los foros', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5682, 0, 'es', 'navs', 'frontend.courses', 'Los cursos', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5683, 0, 'es', 'pagination', 'previous', '& laquo; Anterior', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5684, 0, 'es', 'pagination', 'next', 'Siguiente & raquo;', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5685, 0, 'es', 'passwords', 'password', 'Las contraseñas deben tener al menos seis caracteres y coincidir con la confirmación.', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5686, 0, 'es', 'passwords', 'reset', '¡Tu contraseña ha sido restablecida!', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5687, 0, 'es', 'passwords', 'sent', '¡Hemos enviado por correo electrónico el enlace para restablecer su contraseña!', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5688, 0, 'es', 'passwords', 'token', 'Este token de restablecimiento de contraseña no es válido.', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5689, 0, 'es', 'passwords', 'user', 'No podemos encontrar un usuario con esa dirección de correo electrónico.', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5690, 0, 'es', 'roles', 'administrator', 'Administrador', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5691, 0, 'es', 'roles', 'user', 'Usuario', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5692, 0, 'es', 'strings', 'backend.access.users.delete_user_confirm', '¿Estás seguro de que deseas eliminar este usuario de forma permanente? Lo más probable es que se produzca un error en cualquier lugar de la aplicación que haga referencia a la identificación de este usuario. Procede bajo tu propio riesgo. Esto no se puede deshacer.', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5693, 0, 'es', 'strings', 'backend.access.users.if_confirmed_off', '(Si la confirmación está desactivada)', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5694, 0, 'es', 'strings', 'backend.access.users.no_deactivated', 'No hay usuarios desactivados.', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5695, 0, 'es', 'strings', 'backend.access.users.no_deleted', 'No hay usuarios eliminados.', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5696, 0, 'es', 'strings', 'backend.access.users.restore_user_confirm', '¿Restaurar este usuario a su estado original?', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5697, 0, 'es', 'strings', 'backend.dashboard.title', 'Tablero', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5698, 0, 'es', 'strings', 'backend.dashboard.welcome', 'Bienvenido', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5699, 0, 'es', 'strings', 'backend.dashboard.my_courses', 'Mis cursos', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5700, 0, 'es', 'strings', 'backend.general.all_rights_reserved', 'Todos los derechos reservados.', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5701, 0, 'es', 'strings', 'backend.general.are_you_sure', '¿Seguro que quieres hacer esto?', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5702, 0, 'es', 'strings', 'backend.general.boilerplate_link', 'JThemes Studio', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5703, 0, 'es', 'strings', 'backend.general.continue', 'Continuar', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5704, 0, 'es', 'strings', 'backend.general.member_since', 'Miembro desde', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5705, 0, 'es', 'strings', 'backend.general.minutes', 'minutos', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5706, 0, 'es', 'strings', 'backend.general.search_placeholder', 'Buscar...', '2019-09-12 23:34:45', '2020-05-14 12:20:12'); INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES (5707, 0, 'es', 'strings', 'backend.general.timeout', 'Se desconectó automáticamente por razones de seguridad ya que no tenía actividad en', '2019-09-12 23:34:45', '2020-05-14 12:20:12'), (5708, 0, 'es', 'strings', 'backend.general.see_all.messages', 'Ver todos los mensajes', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5709, 0, 'es', 'strings', 'backend.general.see_all.notifications', 'Ver todo', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5710, 0, 'es', 'strings', 'backend.general.see_all.tasks', 'Ver todas las tareas', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5711, 0, 'es', 'strings', 'backend.general.status.online', 'En línea', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5712, 0, 'es', 'strings', 'backend.general.status.offline', 'Desconectado', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5713, 0, 'es', 'strings', 'backend.general.you_have.messages', '{0} No tiene mensajes | {1} Tiene 1 mensaje | [2, Inf] Tiene: número de mensajes', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5714, 0, 'es', 'strings', 'backend.general.you_have.notifications', '{0} No tienes notificaciones | {1} Tienes 1 notificación | [2, Inf] Tienes: notificaciones de números', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5715, 0, 'es', 'strings', 'backend.general.you_have.tasks', '{0} No tienes tareas | {1} Tienes 1 tarea | [2, Inf] Tienes: número de tareas', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5716, 0, 'es', 'strings', 'backend.general.actions', 'Comportamiento', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5717, 0, 'es', 'strings', 'backend.general.all', 'Todos', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5718, 0, 'es', 'strings', 'backend.general.app_add', 'Añadir', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5719, 0, 'es', 'strings', 'backend.general.app_add_new', 'Añadir nuevo', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5720, 0, 'es', 'strings', 'backend.general.app_are_you_sure', '¿Estás seguro?', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5721, 0, 'es', 'strings', 'backend.general.app_back_to_list', 'Volver a la lista', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5722, 0, 'es', 'strings', 'backend.general.app_create', 'Crear', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5723, 0, 'es', 'strings', 'backend.general.app_dashboard', 'Tablero', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5724, 0, 'es', 'strings', 'backend.general.app_delete', 'Borrar', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5725, 0, 'es', 'strings', 'backend.general.app_edit', 'Editar', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5726, 0, 'es', 'strings', 'backend.general.app_list', 'Lista', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5727, 0, 'es', 'strings', 'backend.general.app_logout', 'Cerrar sesión', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5728, 0, 'es', 'strings', 'backend.general.app_no_entries_in_table', 'No hay entradas en la tabla', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5729, 0, 'es', 'strings', 'backend.general.app_permadel', 'Borrar permanentemente', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5730, 0, 'es', 'strings', 'backend.general.app_restore', 'Restaurar', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5731, 0, 'es', 'strings', 'backend.general.app_save', 'Salvar', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5732, 0, 'es', 'strings', 'backend.general.app_update', 'Actualizar', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5733, 0, 'es', 'strings', 'backend.general.app_view', 'Ver', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5734, 0, 'es', 'strings', 'backend.general.custom_controller_index', 'Índice de controlador personalizado.', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5735, 0, 'es', 'strings', 'backend.general.trashed', 'Basura', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5736, 0, 'es', 'strings', 'backend.search.empty', 'Por favor, introduzca un término de búsqueda.', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5737, 0, 'es', 'strings', 'backend.search.incomplete', 'Debes escribir tu propia lógica de búsqueda para este sistema.', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5738, 0, 'es', 'strings', 'backend.search.title', 'Resultados de la búsqueda', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5739, 0, 'es', 'strings', 'backend.search.results', 'Resultados de la búsqueda para: consulta', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5740, 0, 'es', 'strings', 'backend.welcome', 'Bienvenido al Dashboard', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5741, 0, 'es', 'strings', 'backend.menu_manager.Category', 'Categoría', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5742, 0, 'es', 'strings', 'backend.menu_manager.add_to_menu', 'Añadir al menú', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5743, 0, 'es', 'strings', 'backend.menu_manager.assigned_menu', 'Menú Asignado', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5744, 0, 'es', 'strings', 'backend.menu_manager.auto_add_pages', 'Añadir páginas automáticamente', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5745, 0, 'es', 'strings', 'backend.menu_manager.cancel', 'Cancelar', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5746, 0, 'es', 'strings', 'backend.menu_manager.categories', 'Las categorías', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5747, 0, 'es', 'strings', 'backend.menu_manager.choose', 'Escoger', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5748, 0, 'es', 'strings', 'backend.menu_manager.class', 'Clase CSS (opcional)', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5749, 0, 'es', 'strings', 'backend.menu_manager.create_menu', 'Crear menú', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5750, 0, 'es', 'strings', 'backend.menu_manager.create_new', 'Crear nuevo menú', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5751, 0, 'es', 'strings', 'backend.menu_manager.currently', 'Actualmente configurado en', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5752, 0, 'es', 'strings', 'backend.menu_manager.custom_link', 'Enlace personalizado', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5753, 0, 'es', 'strings', 'backend.menu_manager.delete', 'Borrar', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5754, 0, 'es', 'strings', 'backend.menu_manager.delete_menu', 'Eliminar menú', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5755, 0, 'es', 'strings', 'backend.menu_manager.display', 'Monitor', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5756, 0, 'es', 'strings', 'backend.menu_manager.drag_instruction_1', 'Coloca cada artículo en el orden que prefieras. Haga clic en la flecha a la derecha del elemento para mostrar más opciones de configuración.', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5757, 0, 'es', 'strings', 'backend.menu_manager.drag_instruction_2', 'Por favor ingrese el nombre y seleccione el botón \"Crear menú\"', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5758, 0, 'es', 'strings', 'backend.menu_manager.edit', 'Editar', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5759, 0, 'es', 'strings', 'backend.menu_manager.edit_menus', 'Menús de edición', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5760, 0, 'es', 'strings', 'backend.menu_manager.footer_menu', 'Menú de pie de página', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5761, 0, 'es', 'strings', 'backend.menu_manager.label', 'Etiqueta', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5762, 0, 'es', 'strings', 'backend.menu_manager.link', 'Enlazar', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5763, 0, 'es', 'strings', 'backend.menu_manager.locations', 'Ubicaciones', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5764, 0, 'es', 'strings', 'backend.menu_manager.menu_creation', 'Creación de menús', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5765, 0, 'es', 'strings', 'backend.menu_manager.menu_settings', 'Ajustes de menú', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5766, 0, 'es', 'strings', 'backend.menu_manager.menu_structure', 'Estructura del menú', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5767, 0, 'es', 'strings', 'backend.menu_manager.move', 'Movimiento', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5768, 0, 'es', 'strings', 'backend.menu_manager.move_down', 'Mover hacia abajo', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5769, 0, 'es', 'strings', 'backend.menu_manager.move_left', 'Mover hacia la izquierda', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5770, 0, 'es', 'strings', 'backend.menu_manager.move_right', 'Mover a la derecha', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5771, 0, 'es', 'strings', 'backend.menu_manager.move_up', 'Ascender', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5772, 0, 'es', 'strings', 'backend.menu_manager.name', 'Nombre', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5773, 0, 'es', 'strings', 'backend.menu_manager.or', 'O', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5774, 0, 'es', 'strings', 'backend.menu_manager.page', 'Página', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5775, 0, 'es', 'strings', 'backend.menu_manager.pages', 'Páginas', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5776, 0, 'es', 'strings', 'backend.menu_manager.post', 'Enviar', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5777, 0, 'es', 'strings', 'backend.menu_manager.posts', 'Mensajes', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5778, 0, 'es', 'strings', 'backend.menu_manager.save_changes', 'Guardar cambios', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5779, 0, 'es', 'strings', 'backend.menu_manager.save_menu', 'Guardar menú', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5780, 0, 'es', 'strings', 'backend.menu_manager.screen_reader_text', 'Presione regresar o entrar para expandir', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5781, 0, 'es', 'strings', 'backend.menu_manager.select_all', 'Seleccionar todo', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5782, 0, 'es', 'strings', 'backend.menu_manager.select_to_edit', 'Selecciona el menú que quieres editar.', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5783, 0, 'es', 'strings', 'backend.menu_manager.sub_menu', 'Submenú', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5784, 0, 'es', 'strings', 'backend.menu_manager.theme_location', 'Ubicación del tema', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5785, 0, 'es', 'strings', 'backend.menu_manager.title', 'Gestor de menú', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5786, 0, 'es', 'strings', 'backend.menu_manager.top', 'Parte superior', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5787, 0, 'es', 'strings', 'backend.menu_manager.top_menu', 'Menu principal', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5788, 0, 'es', 'strings', 'backend.menu_manager.update_item', 'Actualizar artículo', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5789, 0, 'es', 'strings', 'backend.menu_manager.url', 'URL', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5790, 0, 'es', 'strings', 'backend.menu_manager.welcome', 'Bienvenido', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5791, 0, 'es', 'strings', 'backend.menu_manager.auto_add_pages_desc', 'Añadir automáticamente nuevas páginas de nivel superior a este menú', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5792, 0, 'es', 'strings', 'emails.auth.account_confirmed', 'Su cuenta ha sido confirmada.', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5793, 0, 'es', 'strings', 'emails.auth.error', 'Whoops!', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5794, 0, 'es', 'strings', 'emails.auth.greeting', '¡Hola!', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5795, 0, 'es', 'strings', 'emails.auth.regards', 'Saludos,', '2019-09-12 23:34:46', '2020-05-14 12:20:12'), (5796, 0, 'es', 'strings', 'emails.auth.trouble_clicking_button', 'Si tienes problemas para hacer clic en el botón \": action_text\", copia y pega la URL a continuación en tu navegador web:', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5797, 0, 'es', 'strings', 'emails.auth.thank_you_for_using_app', '¡Gracias por utilizar nuestra aplicación!', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5798, 0, 'es', 'strings', 'emails.auth.password_reset_subject', 'Restablecer la contraseña', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5799, 0, 'es', 'strings', 'emails.auth.password_cause_of_email', 'Está recibiendo este correo electrónico porque recibimos una solicitud de restablecimiento de contraseña para su cuenta.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5800, 0, 'es', 'strings', 'emails.auth.password_if_not_requested', 'Si no solicitó un restablecimiento de contraseña, no es necesario realizar ninguna otra acción.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5801, 0, 'es', 'strings', 'emails.auth.reset_password', 'Pincha aquí para restaurar tu contraseña', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5802, 0, 'es', 'strings', 'emails.auth.click_to_confirm', 'Haga clic aquí para confirmar su cuenta:', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5803, 0, 'es', 'strings', 'emails.contact.email_body_title', 'Tiene una nueva solicitud de formulario de contacto: A continuación se muestran los detalles:', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5804, 0, 'es', 'strings', 'emails.contact.subject', 'Un nuevo: app_name formulario de contacto de presentación!', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5805, 0, 'es', 'strings', 'emails.offline_order.subject', 'Con respecto a su orden reciente en: app_name', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5806, 0, 'es', 'strings', 'frontend.test', 'Prueba', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5807, 0, 'es', 'strings', 'frontend.tests.based_on.permission', 'Basado en permisos', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5808, 0, 'es', 'strings', 'frontend.tests.based_on.role', 'Basado en roles', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5809, 0, 'es', 'strings', 'frontend.tests.js_injected_from_controller', 'Javascript inyectado desde un controlador', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5810, 0, 'es', 'strings', 'frontend.tests.using_blade_extensions', 'Usando Extensiones Blade', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5811, 0, 'es', 'strings', 'frontend.tests.using_access_helper.array_permissions', 'Uso de Access Helper con una matriz de nombres de permisos o ID donde el usuario tiene que poseer todos.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5812, 0, 'es', 'strings', 'frontend.tests.using_access_helper.array_permissions_not', 'Uso de Access Helper con una matriz de nombres de permisos o ID donde el usuario no tiene que poseer todos.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5813, 0, 'es', 'strings', 'frontend.tests.using_access_helper.array_roles', 'Uso de Access Helper con Array of Role Names o ID\'s donde el usuario tiene que poseer todos.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5814, 0, 'es', 'strings', 'frontend.tests.using_access_helper.array_roles_not', 'Uso de Access Helper con Array of Role Names o ID\'s donde el usuario no tiene que poseer todos.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5815, 0, 'es', 'strings', 'frontend.tests.using_access_helper.permission_id', 'Uso de Access Helper con ID de permiso', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5816, 0, 'es', 'strings', 'frontend.tests.using_access_helper.permission_name', 'Usando Access Helper con nombre de permiso', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5817, 0, 'es', 'strings', 'frontend.tests.using_access_helper.role_id', 'Usando Access Helper con Role ID', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5818, 0, 'es', 'strings', 'frontend.tests.using_access_helper.role_name', 'Uso de Access Helper con nombre de rol', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5819, 0, 'es', 'strings', 'frontend.tests.view_console_it_works', 'Ver la consola, deberías ver \'¡funciona!\' que viene de FrontendController @ index', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5820, 0, 'es', 'strings', 'frontend.tests.you_can_see_because', '¡Puedes ver esto porque tienes el rol de \': role\'!', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5821, 0, 'es', 'strings', 'frontend.tests.you_can_see_because_permission', '¡Puedes ver esto porque tienes el permiso de \': permission\'!', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5822, 0, 'es', 'strings', 'frontend.general.joined', 'Unido', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5823, 0, 'es', 'strings', 'frontend.user.change_email_notice', 'Si cambia su correo electrónico, se cerrará su sesión hasta que confirme su nueva dirección de correo electrónico.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5824, 0, 'es', 'strings', 'frontend.user.email_changed_notice', 'Debe confirmar su nueva dirección de correo electrónico antes de poder iniciar sesión nuevamente.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5825, 0, 'es', 'strings', 'frontend.user.profile_updated', 'Perfil actualizado con éxito.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5826, 0, 'es', 'strings', 'frontend.user.password_updated', 'Contraseña actualizada con éxito.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5827, 0, 'es', 'strings', 'frontend.welcome_to', 'Bienvenido a: lugar', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5828, 0, 'es', 'validation', 'accepted', 'El atributo: debe ser aceptado.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5829, 0, 'es', 'validation', 'active_url', 'El atributo: no es una URL válida.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5830, 0, 'es', 'validation', 'after', 'El atributo: debe ser una fecha después de: fecha.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5831, 0, 'es', 'validation', 'after_or_equal', 'El atributo: debe ser una fecha posterior o igual a la fecha.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5832, 0, 'es', 'validation', 'alpha', 'El atributo: solo puede contener letras.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5833, 0, 'es', 'validation', 'alpha_dash', 'El atributo: solo puede contener letras, números, guiones y guiones bajos.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5834, 0, 'es', 'validation', 'alpha_num', 'El atributo: solo puede contener letras y números.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5835, 0, 'es', 'validation', 'array', 'El atributo: debe ser una matriz.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5836, 0, 'es', 'validation', 'before', 'El atributo: debe ser una fecha anterior a: fecha.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5837, 0, 'es', 'validation', 'before_or_equal', 'El atributo: debe ser una fecha anterior o igual a la fecha.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5838, 0, 'es', 'validation', 'between.numeric', 'El atributo: debe estar entre: min y: max.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5839, 0, 'es', 'validation', 'between.file', 'El atributo: debe estar entre: mínimo y: máximo de kilobytes.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5840, 0, 'es', 'validation', 'between.string', 'El atributo: debe estar entre: min y: max caracteres.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5841, 0, 'es', 'validation', 'between.array', 'El atributo: debe tener entre: min y: max elementos.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5842, 0, 'es', 'validation', 'boolean', 'El campo: atributo debe ser verdadero o falso.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5843, 0, 'es', 'validation', 'confirmed', 'La confirmación del atributo: no coincide.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5844, 0, 'es', 'validation', 'date', 'El atributo: no es una fecha válida.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5845, 0, 'es', 'validation', 'date_format', 'El atributo: no coincide con el formato: formato.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5846, 0, 'es', 'validation', 'different', 'El: atributo y: otro deben ser diferentes.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5847, 0, 'es', 'validation', 'digits', 'El atributo: debe ser: dígitos dígitos.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5848, 0, 'es', 'validation', 'digits_between', 'El atributo: debe estar entre: mínimo y: máximo de dígitos.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5849, 0, 'es', 'validation', 'dimensions', 'El atributo: tiene dimensiones de imagen no válidas.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5850, 0, 'es', 'validation', 'distinct', 'El campo: atributo tiene un valor duplicado.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5851, 0, 'es', 'validation', 'email', 'El atributo: debe ser una dirección de correo electrónico válida.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5852, 0, 'es', 'validation', 'exists', 'El atributo seleccionado: no es válido.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5853, 0, 'es', 'validation', 'file', 'El atributo: debe ser un archivo.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5854, 0, 'es', 'validation', 'filled', 'El campo: atributo debe tener un valor.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5855, 0, 'es', 'validation', 'gt.numeric', 'El atributo: debe ser mayor que: valor.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5856, 0, 'es', 'validation', 'gt.file', 'El atributo: debe ser mayor que: valor de kilobytes.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5857, 0, 'es', 'validation', 'gt.string', 'El atributo: debe ser mayor que: caracteres de valor.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5858, 0, 'es', 'validation', 'gt.array', 'El atributo: debe tener más de: elementos de valor.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5859, 0, 'es', 'validation', 'gte.numeric', 'El atributo: debe ser mayor o igual que el valor.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5860, 0, 'es', 'validation', 'gte.file', 'El atributo: debe ser mayor o igual que el valor de kilobytes.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5861, 0, 'es', 'validation', 'gte.string', 'El atributo: debe ser mayor o igual que los caracteres de valor.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5862, 0, 'es', 'validation', 'gte.array', 'El atributo: debe tener: elementos de valor o más.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5863, 0, 'es', 'validation', 'image', 'El atributo: debe ser una imagen.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5864, 0, 'es', 'validation', 'in', 'El atributo seleccionado: no es válido.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5865, 0, 'es', 'validation', 'in_array', 'El campo: atributo no existe en: otro.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5866, 0, 'es', 'validation', 'integer', 'El atributo: debe ser un número entero.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5867, 0, 'es', 'validation', 'ip', 'El atributo: debe ser una dirección IP válida.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5868, 0, 'es', 'validation', 'ipv4', 'El atributo: debe ser una dirección IPv4 válida.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5869, 0, 'es', 'validation', 'ipv6', 'El atributo: debe ser una dirección IPv6 válida.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5870, 0, 'es', 'validation', 'json', 'El atributo: debe ser una cadena JSON válida.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5871, 0, 'es', 'validation', 'lt.numeric', 'El atributo: debe ser menor que: valor.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5872, 0, 'es', 'validation', 'lt.file', 'El atributo: debe ser menor que: valor de kilobytes.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5873, 0, 'es', 'validation', 'lt.string', 'El atributo: debe ser menor que: caracteres de valor.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5874, 0, 'es', 'validation', 'lt.array', 'El atributo: debe tener menos de: elementos de valor.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5875, 0, 'es', 'validation', 'lte.numeric', 'El atributo: debe ser menor o igual que el valor.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5876, 0, 'es', 'validation', 'lte.file', 'El atributo: debe ser menor o igual que el valor de kilobytes.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5877, 0, 'es', 'validation', 'lte.string', 'El atributo: debe ser menor o igual que el valor de los caracteres.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5878, 0, 'es', 'validation', 'lte.array', 'El atributo: no debe tener más de: elementos de valor.', '2019-09-12 23:34:47', '2020-05-14 12:20:12'), (5879, 0, 'es', 'validation', 'max.numeric', 'El atributo: no puede ser mayor que: max.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5880, 0, 'es', 'validation', 'max.file', 'El atributo: no puede ser mayor que: max kilobytes.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5881, 0, 'es', 'validation', 'max.string', 'El atributo: no puede ser mayor que: max caracteres.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5882, 0, 'es', 'validation', 'max.array', 'El atributo: no puede tener más de: elementos máximos.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5883, 0, 'es', 'validation', 'mimes', 'El atributo: debe ser un archivo de tipo: valores.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5884, 0, 'es', 'validation', 'min.numeric', 'El atributo: debe ser al menos: min.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5885, 0, 'es', 'validation', 'min.file', 'El atributo: debe ser al menos: kilobytes mínimos.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5886, 0, 'es', 'validation', 'min.string', 'El atributo: debe tener al menos: min caracteres.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5887, 0, 'es', 'validation', 'min.array', 'El atributo: debe tener al menos: elementos min.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5888, 0, 'es', 'validation', 'not_in', 'El atributo seleccionado: no es válido.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5889, 0, 'es', 'validation', 'not_regex', 'El formato de atributo: no es válido.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5890, 0, 'es', 'validation', 'numeric', 'El atributo: debe ser un número.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5891, 0, 'es', 'validation', 'present', 'El campo: atributo debe estar presente.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5892, 0, 'es', 'validation', 'regex', 'El formato de atributo: no es válido.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5893, 0, 'es', 'validation', 'required', 'El campo: atributo es obligatorio.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5894, 0, 'es', 'validation', 'required_if', 'El campo: atributo es obligatorio cuando: otro es: valor.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5895, 0, 'es', 'validation', 'required_unless', 'El campo: atributo es obligatorio a menos que: otro esté en: valores.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5896, 0, 'es', 'validation', 'required_with', 'El campo: atributo es obligatorio cuando: los valores están presentes.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5897, 0, 'es', 'validation', 'required_with_all', 'El campo: atributo es obligatorio cuando: los valores están presentes.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5898, 0, 'es', 'validation', 'required_without', 'El campo: atributo es obligatorio cuando: los valores no están presentes.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5899, 0, 'es', 'validation', 'required_without_all', 'El campo: atributo es obligatorio cuando ninguno de los valores está presente.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5900, 0, 'es', 'validation', 'same', 'El: atributo y: otro debe coincidir.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5901, 0, 'es', 'validation', 'size.numeric', 'El atributo: debe ser: tamaño.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5902, 0, 'es', 'validation', 'size.file', 'El atributo: debe ser: kilobytes de tamaño.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5903, 0, 'es', 'validation', 'size.string', 'El atributo: debe ser: caracteres de tamaño.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5904, 0, 'es', 'validation', 'size.array', 'El atributo: debe contener: elementos de tamaño.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5905, 0, 'es', 'validation', 'string', 'El atributo: debe ser una cadena.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5906, 0, 'es', 'validation', 'timezone', 'El atributo: debe ser una zona válida.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5907, 0, 'es', 'validation', 'unique', 'El atributo: ya ha sido tomado.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5908, 0, 'es', 'validation', 'uploaded', 'El atributo: no se pudo cargar.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5909, 0, 'es', 'validation', 'url', 'El formato de atributo: no es válido.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5910, 0, 'es', 'validation', 'uuid', 'El atributo: debe ser un UUID válido.', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5911, 0, 'es', 'validation', 'custom.attribute-name.rule-name', 'mensaje personalizado', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5912, 0, 'es', 'validation', 'attributes.backend.access.permissions.associated_roles', 'Roles asociados', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5913, 0, 'es', 'validation', 'attributes.backend.access.permissions.dependencies', 'Dependencias', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5914, 0, 'es', 'validation', 'attributes.backend.access.permissions.display_name', 'Nombre para mostrar', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5915, 0, 'es', 'validation', 'attributes.backend.access.permissions.group', 'Grupo', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5916, 0, 'es', 'validation', 'attributes.backend.access.permissions.group_sort', 'Grupo de clasificación', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5917, 0, 'es', 'validation', 'attributes.backend.access.permissions.groups.name', 'Nombre del grupo', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5918, 0, 'es', 'validation', 'attributes.backend.access.permissions.name', 'Nombre', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5919, 0, 'es', 'validation', 'attributes.backend.access.permissions.first_name', 'Nombre de pila', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5920, 0, 'es', 'validation', 'attributes.backend.access.permissions.last_name', 'Apellido', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5921, 0, 'es', 'validation', 'attributes.backend.access.permissions.system', 'Sistema', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5922, 0, 'es', 'validation', 'attributes.backend.access.roles.associated_permissions', 'Permisos asociados', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5923, 0, 'es', 'validation', 'attributes.backend.access.roles.name', 'Nombre', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5924, 0, 'es', 'validation', 'attributes.backend.access.roles.sort', 'Ordenar', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5925, 0, 'es', 'validation', 'attributes.backend.access.users.active', 'Activo', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5926, 0, 'es', 'validation', 'attributes.backend.access.users.associated_roles', 'Roles asociados', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5927, 0, 'es', 'validation', 'attributes.backend.access.users.confirmed', 'Confirmado', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5928, 0, 'es', 'validation', 'attributes.backend.access.users.email', 'Dirección de correo electrónico', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5929, 0, 'es', 'validation', 'attributes.backend.access.users.name', 'Nombre', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5930, 0, 'es', 'validation', 'attributes.backend.access.users.last_name', 'Apellido', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5931, 0, 'es', 'validation', 'attributes.backend.access.users.first_name', 'Nombre de pila', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5932, 0, 'es', 'validation', 'attributes.backend.access.users.other_permissions', 'Otros permisos', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5933, 0, 'es', 'validation', 'attributes.backend.access.users.password', 'Contraseña', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5934, 0, 'es', 'validation', 'attributes.backend.access.users.password_confirmation', 'Confirmación de contraseña', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5935, 0, 'es', 'validation', 'attributes.backend.access.users.send_confirmation_email', 'Enviar correo electrónico de confirmación', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5936, 0, 'es', 'validation', 'attributes.backend.access.users.timezone', 'Zona horaria', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5937, 0, 'es', 'validation', 'attributes.backend.access.users.language', 'Idioma', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5938, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.app_locale', 'Localidad de la aplicación', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5939, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.app_name', 'Nombre de la aplicación', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5940, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.app_timezone', 'Zona horaria de la aplicación', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5941, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.app_url', 'URL de la aplicación', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5942, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.change_email', 'Cambiar e-mail', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5943, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.confirm_email', 'Confirmar correo electrónico', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5944, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.enable_registration', 'Habilitar registro', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5945, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.font_color', 'Color de fuente', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5946, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.theme_layout', 'Diseño del tema', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5947, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.requires_approval', 'Requiere Aprobación', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5948, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.password_history', 'Historial de contraseñas', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5949, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.password_expires_days', 'Contraseña caduca días', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5950, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.mail_username', 'Nombre de usuario del correo', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5951, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.mail_port', 'Puerto de correo', '2019-09-12 23:34:48', '2020-05-14 12:20:12'), (5952, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.mail_password', 'Contraseña de correo', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5953, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.mail_host', 'Host de correo', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5954, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.mail_from_name', 'Correo de nombre', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5955, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.mail_from_address', 'Correo de dirección', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5956, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.mail_driver', 'Controlador de correo', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5957, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.layout_type', 'Tipo de diseño', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5958, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.homepage', 'Seleccione la página de inicio', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5959, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.captcha_site_key', 'Captcha Key', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5960, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.captcha_site_secret', 'Captcha Secret', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5961, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.captcha_status', 'Estado Captcha', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5962, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.retest_status', 'Volver a probar', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5963, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.google_analytics', 'Código de Google Analytics', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5964, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.lesson_timer', 'Temporizador de Lección', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5965, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.one_signal_push_notification', 'Configuración OneSignal', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5966, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.onesignal_code', 'Pegue el código de secuencia de comandos de OneSignal aquí', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5967, 0, 'es', 'validation', 'attributes.backend.settings.general_settings.show_offers', 'Mostrar página de ofertas', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5968, 0, 'es', 'validation', 'attributes.backend.settings.social_settings.twitter.redirect', 'Redireccionar URL', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5969, 0, 'es', 'validation', 'attributes.backend.settings.social_settings.twitter.label', 'Estado de inicio de sesión de Twitter', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5970, 0, 'es', 'validation', 'attributes.backend.settings.social_settings.twitter.client_secret', 'Secreto del cliente', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5971, 0, 'es', 'validation', 'attributes.backend.settings.social_settings.twitter.client_id', 'Identificación del cliente', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5972, 0, 'es', 'validation', 'attributes.backend.settings.social_settings.linkedin.redirect', 'Redireccionar URL', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5973, 0, 'es', 'validation', 'attributes.backend.settings.social_settings.linkedin.client_secret', 'Secreto del cliente', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5974, 0, 'es', 'validation', 'attributes.backend.settings.social_settings.linkedin.client_id', 'Identificación del cliente', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5975, 0, 'es', 'validation', 'attributes.backend.settings.social_settings.linkedin.label', 'Estado de inicio de sesión de LinkedIn', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5976, 0, 'es', 'validation', 'attributes.backend.settings.social_settings.google.redirect', 'Redireccionar URL', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5977, 0, 'es', 'validation', 'attributes.backend.settings.social_settings.google.label', 'Estado de inicio de sesión de Google', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5978, 0, 'es', 'validation', 'attributes.backend.settings.social_settings.google.client_secret', 'Secreto del cliente', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5979, 0, 'es', 'validation', 'attributes.backend.settings.social_settings.google.client_id', 'Identificación del cliente', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5980, 0, 'es', 'validation', 'attributes.backend.settings.social_settings.github.client_secret', 'Secreto del cliente', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5981, 0, 'es', 'validation', 'attributes.backend.settings.social_settings.github.client_id', 'Identificación del cliente', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5982, 0, 'es', 'validation', 'attributes.backend.settings.social_settings.github.redirect', 'Redireccionar URL', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5983, 0, 'es', 'validation', 'attributes.backend.settings.social_settings.github.label', 'Estado de inicio de sesión de Github', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5984, 0, 'es', 'validation', 'attributes.backend.settings.social_settings.facebook.client_secret', 'Secreto del cliente', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5985, 0, 'es', 'validation', 'attributes.backend.settings.social_settings.facebook.redirect', 'Redireccionar URL', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5986, 0, 'es', 'validation', 'attributes.backend.settings.social_settings.facebook.label', 'Estado de inicio de sesión de Facebook', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5987, 0, 'es', 'validation', 'attributes.backend.settings.social_settings.facebook.client_id', 'Identificación del cliente', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5988, 0, 'es', 'validation', 'attributes.backend.settings.social_settings.bitbucket.client_secret', 'Secreto del cliente', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5989, 0, 'es', 'validation', 'attributes.backend.settings.social_settings.bitbucket.redirect', 'Redireccionar URL', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5990, 0, 'es', 'validation', 'attributes.backend.settings.social_settings.bitbucket.client_id', 'Identificación del cliente', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5991, 0, 'es', 'validation', 'attributes.backend.settings.social_settings.bitbucket.label', 'Estado de inicio de sesión de Bitbucket', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5992, 0, 'es', 'validation', 'attributes.frontend.avatar', 'Ubicación de Avatar', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5993, 0, 'es', 'validation', 'attributes.frontend.email', 'Dirección de correo electrónico', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5994, 0, 'es', 'validation', 'attributes.frontend.first_name', 'Nombre de pila', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5995, 0, 'es', 'validation', 'attributes.frontend.last_name', 'Apellido', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5996, 0, 'es', 'validation', 'attributes.frontend.name', 'Nombre completo', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5997, 0, 'es', 'validation', 'attributes.frontend.password', 'Contraseña', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5998, 0, 'es', 'validation', 'attributes.frontend.password_confirmation', 'Confirmación de contraseña', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (5999, 0, 'es', 'validation', 'attributes.frontend.phone', 'Teléfono', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (6000, 0, 'es', 'validation', 'attributes.frontend.message', 'Mensaje', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (6001, 0, 'es', 'validation', 'attributes.frontend.old_password', 'Contraseña anterior', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (6002, 0, 'es', 'validation', 'attributes.frontend.new_password', 'Nueva contraseña', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (6003, 0, 'es', 'validation', 'attributes.frontend.new_password_confirmation', 'Nueva confirmación de contraseña', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (6004, 0, 'es', 'validation', 'attributes.frontend.timezone', 'Zona horaria', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (6005, 0, 'es', 'validation', 'attributes.frontend.language', 'Idioma', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (6006, 0, 'es', 'validation', 'attributes.frontend.upload', 'Subir', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (6007, 0, 'es', 'validation', 'attributes.frontend.gravatar', 'Gravatar', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (6008, 0, 'es', 'validation', 'attributes.frontend.captcha', 'Captcha requerido', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (6009, 0, 'es', 'validation', 'attributes.frontend.female', 'Hembra', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (6010, 0, 'es', 'validation', 'attributes.frontend.male', 'Masculino', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (6011, 0, 'es', 'validation', 'attributes.frontend.other', 'Otro', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (6012, 0, 'es', 'validation', 'mimetypes', 'El atributo: debe ser un archivo de tipo: valores.', '2019-09-12 23:34:49', '2020-05-14 12:20:12'), (6013, 0, 'fr', 'alerts', 'backend.roles.created', 'Le rôle a été créé avec succès.', '2019-09-12 23:34:49', '2020-05-14 12:20:09'), (6014, 0, 'fr', 'alerts', 'backend.roles.deleted', 'Le rôle a été supprimé avec succès.', '2019-09-12 23:34:49', '2020-05-14 12:20:09'), (6015, 0, 'fr', 'alerts', 'backend.roles.updated', 'Le rôle a été mis à jour avec succès.', '2019-09-12 23:34:49', '2020-05-14 12:20:09'), (6016, 0, 'fr', 'alerts', 'backend.users.cant_resend_confirmation', 'L\'application est actuellement configurée pour approuver manuellement les utilisateurs.', '2019-09-12 23:34:49', '2020-05-14 12:20:09'), (6017, 0, 'fr', 'alerts', 'backend.users.confirmation_email', 'Un nouvel e-mail de confirmation a été envoyé à l\'adresse enregistrée.', '2019-09-12 23:34:49', '2020-05-14 12:20:09'), (6018, 0, 'fr', 'alerts', 'backend.users.confirmed', 'L\'utilisateur a été confirmé avec succès.', '2019-09-12 23:34:49', '2020-05-14 12:20:09'), (6019, 0, 'fr', 'alerts', 'backend.users.created', 'L\'utilisateur a été créé avec succès.', '2019-09-12 23:34:49', '2020-05-14 12:20:09'), (6020, 0, 'fr', 'alerts', 'backend.users.deleted', 'L\'utilisateur a été supprimé avec succès.', '2019-09-12 23:34:49', '2020-05-14 12:20:09'), (6021, 0, 'fr', 'alerts', 'backend.users.deleted_permanently', 'L\'utilisateur a été supprimé définitivement.', '2019-09-12 23:34:49', '2020-05-14 12:20:09'), (6022, 0, 'fr', 'alerts', 'backend.users.restored', 'L\'utilisateur a été restauré avec succès.', '2019-09-12 23:34:49', '2020-05-14 12:20:09'), (6023, 0, 'fr', 'alerts', 'backend.users.session_cleared', 'La session de l\'utilisateur a été effacée avec succès.', '2019-09-12 23:34:49', '2020-05-14 12:20:09'), (6024, 0, 'fr', 'alerts', 'backend.users.social_deleted', 'Compte social supprimé avec succès', '2019-09-12 23:34:49', '2020-05-14 12:20:09'), (6025, 0, 'fr', 'alerts', 'backend.users.unconfirmed', 'L\'utilisateur a été non confirmé avec succès', '2019-09-12 23:34:49', '2020-05-14 12:20:09'), (6026, 0, 'fr', 'alerts', 'backend.users.updated', 'L\'utilisateur a été mis à jour avec succès.', '2019-09-12 23:34:49', '2020-05-14 12:20:09'), (6027, 0, 'fr', 'alerts', 'backend.users.updated_password', 'Le mot de passe de l\'utilisateur a été mis à jour avec succès.', '2019-09-12 23:34:49', '2020-05-14 12:20:09'), (6028, 0, 'fr', 'alerts', 'backend.general.backup_warning', 'S\'il vous plaît remplir les détails nécessaires pour la sauvegarde', '2019-09-12 23:34:49', '2020-05-14 12:20:09'), (6029, 0, 'fr', 'alerts', 'backend.general.cancelled', 'Mise à jour annulée.', '2019-09-12 23:34:49', '2020-05-14 12:20:09'), (6030, 0, 'fr', 'alerts', 'backend.general.created', 'Créé avec succès.', '2019-09-12 23:34:49', '2020-05-14 12:20:09'), (6031, 0, 'fr', 'alerts', 'backend.general.deleted', 'Supprimé avec succès.', '2019-09-12 23:34:49', '2020-05-14 12:20:09'), (6032, 0, 'fr', 'alerts', 'backend.general.error', 'Quelque chose s\'est mal passé. Réessayer', '2019-09-12 23:34:49', '2020-05-14 12:20:09'), (6033, 0, 'fr', 'alerts', 'backend.general.restored', 'Restauré avec succès.', '2019-09-12 23:34:49', '2020-05-14 12:20:09'), (6034, 0, 'fr', 'alerts', 'backend.general.unverified', 'Fichiers de mise à jour non vérifiés.', '2019-09-12 23:34:49', '2020-05-14 12:20:09'), (6035, 0, 'fr', 'alerts', 'backend.general.updated', 'Mis à jour avec succés.', '2019-09-12 23:34:49', '2020-05-14 12:20:09'), (6036, 0, 'fr', 'alerts', 'backend.general.delete_warning', 'Vous ne pouvez pas supprimer de cours. Les étudiants sont déjà inscrits. Dé-publier le cours à la place', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6037, 0, 'fr', 'alerts', 'backend.general.delete_warning_bundle', 'Vous ne pouvez pas supprimer Bundle. Les étudiants sont déjà inscrits. Annuler la publication du paquet', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6038, 0, 'fr', 'alerts', 'frontend.contact.sent', 'Vos informations ont été envoyées avec succès. Nous répondrons à l\'e-mail fourni dès que possible.', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6039, 0, 'fr', 'alerts', 'frontend.course.completed', 'Toutes nos félicitations! Vous avez terminé le cours avec succès. Commander votre certificat dans le tableau de bord', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6040, 0, 'fr', 'auth', 'failed', 'Ces informations d\'identification ne correspondent pas à nos enregistrements.', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6041, 0, 'fr', 'auth', 'general_error', 'Vous n\'avez pas le droit de le faire.', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6042, 0, 'fr', 'auth', 'password_rules', 'Votre mot de passe doit comporter plus de 8 caractères et doit contenir au moins une majuscule, une minuscule et un chiffre.', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6043, 0, 'fr', 'auth', 'password_used', 'Vous ne pouvez pas définir un mot de passe que vous avez déjà utilisé.', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6044, 0, 'fr', 'auth', 'socialite.unacceptable', ': fournisseur n\'est pas un type de connexion acceptable.', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6045, 0, 'fr', 'auth', 'throttle', 'Trop de tentatives de connexion. Veuillez réessayer dans: secondes secondes.', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6046, 0, 'fr', 'auth', 'unknown', 'Une erreur inconnue est survenue', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6047, 0, 'fr', 'buttons', 'backend.access.users.activate', 'Activer', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6048, 0, 'fr', 'buttons', 'backend.access.users.change_password', 'Changer le mot de passe', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6049, 0, 'fr', 'buttons', 'backend.access.users.clear_session', 'Effacer la session', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6050, 0, 'fr', 'buttons', 'backend.access.users.confirm', 'Confirmer', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6051, 0, 'fr', 'buttons', 'backend.access.users.deactivate', 'Désactiver', '2019-09-12 23:34:50', '2020-05-14 12:20:09'); INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES (6052, 0, 'fr', 'buttons', 'backend.access.users.delete_permanently', 'supprimer définitivement', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6053, 0, 'fr', 'buttons', 'backend.access.users.login_as', 'Se connecter en tant que: utilisateur', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6054, 0, 'fr', 'buttons', 'backend.access.users.resend_email', 'Renvoyer un courriel de confirmation', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6055, 0, 'fr', 'buttons', 'backend.access.users.restore_user', 'Restaurer l\'utilisateur', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6056, 0, 'fr', 'buttons', 'backend.access.users.unconfirm', 'Annuler la confirmation', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6057, 0, 'fr', 'buttons', 'backend.access.users.unlink', 'Dissocier', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6058, 0, 'fr', 'buttons', 'emails.auth.confirm_account', 'Confirmer le compte', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6059, 0, 'fr', 'buttons', 'emails.auth.reset_password', 'réinitialiser le mot de passe', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6060, 0, 'fr', 'buttons', 'general.cancel', 'Annuler', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6061, 0, 'fr', 'buttons', 'general.continue', 'Continuer', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6062, 0, 'fr', 'buttons', 'general.crud.create', 'Créer', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6063, 0, 'fr', 'buttons', 'general.crud.delete', 'Effacer', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6064, 0, 'fr', 'buttons', 'general.crud.edit', 'modifier', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6065, 0, 'fr', 'buttons', 'general.crud.update', 'Mettre à jour', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6066, 0, 'fr', 'buttons', 'general.crud.view', 'Vue', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6067, 0, 'fr', 'buttons', 'general.crud.generate', 'produire', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6068, 0, 'fr', 'buttons', 'general.save', 'sauvegarder', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6069, 0, 'fr', 'buttons', 'general.view', 'Vue', '2019-09-12 23:34:50', '2020-05-14 12:20:09'), (6070, 0, 'fr', 'configmanager', 'title', 'Gestionnaire de configuration', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6071, 0, 'fr', 'configmanager', 'info_choose', 'Choisissez un fichier pour commencer l\'édition', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6072, 0, 'fr', 'configmanager', 'file', 'Fichier', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6073, 0, 'fr', 'configmanager', 'path', 'Chemin', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6074, 0, 'fr', 'configmanager', 'header.key', 'Clé', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6075, 0, 'fr', 'configmanager', 'header.value', 'Valeur', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6076, 0, 'fr', 'configmanager', 'header.actions', 'actes', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6077, 0, 'fr', 'configmanager', 'actions.edit', 'modifier', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6078, 0, 'fr', 'configmanager', 'actions.confirm', 'Enregistrer une nouvelle clé', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6079, 0, 'fr', 'configmanager', 'actions.save', 'Sauvegarder!', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6080, 0, 'fr', 'configmanager', 'actions.cancel', 'Annuler', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6081, 0, 'fr', 'configmanager', 'sure', 'Êtes-vous sûr?', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6082, 0, 'fr', 'datatable', 'colvis', 'Visibilité de la colonne', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6083, 0, 'fr', 'datatable', 'csv', 'CSV', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6084, 0, 'fr', 'datatable', 'pdf', 'PDF', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6085, 0, 'fr', 'exceptions', 'backend.access.roles.already_exists', 'Ce rôle existe déjà. Veuillez choisir un autre nom.', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6086, 0, 'fr', 'exceptions', 'backend.access.roles.cant_delete_admin', 'Vous ne pouvez pas supprimer le rôle d\'administrateur.', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6087, 0, 'fr', 'exceptions', 'backend.access.roles.create_error', 'Un problème est survenu lors de la création de ce rôle. Veuillez réessayer.', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6088, 0, 'fr', 'exceptions', 'backend.access.roles.delete_error', 'Un problème est survenu lors de la suppression de ce rôle. Veuillez réessayer.', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6089, 0, 'fr', 'exceptions', 'backend.access.roles.has_users', 'Vous ne pouvez pas supprimer un rôle avec des utilisateurs associés.', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6090, 0, 'fr', 'exceptions', 'backend.access.roles.needs_permission', 'Vous devez sélectionner au moins une autorisation pour ce rôle.', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6091, 0, 'fr', 'exceptions', 'backend.access.roles.not_found', 'Ce rôle n\'existe pas.', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6092, 0, 'fr', 'exceptions', 'backend.access.roles.update_error', 'Un problème est survenu lors de la mise à jour de ce rôle. Veuillez réessayer.', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6093, 0, 'fr', 'exceptions', 'backend.access.users.already_confirmed', 'Cet utilisateur est déjà confirmé.', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6094, 0, 'fr', 'exceptions', 'backend.access.users.cant_confirm', 'Un problème est survenu lors de la confirmation du compte d\'utilisateur.', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6095, 0, 'fr', 'exceptions', 'backend.access.users.cant_deactivate_self', 'Vous ne pouvez pas faire ça pour vous.', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6096, 0, 'fr', 'exceptions', 'backend.access.users.cant_delete_admin', 'Vous ne pouvez pas supprimer le super administrateur.', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6097, 0, 'fr', 'exceptions', 'backend.access.users.cant_delete_self', 'Vous ne pouvez pas vous supprimer.', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6098, 0, 'fr', 'exceptions', 'backend.access.users.cant_delete_own_session', 'Vous ne pouvez pas supprimer votre propre session.', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6099, 0, 'fr', 'exceptions', 'backend.access.users.cant_restore', 'Cet utilisateur n\'est pas supprimé et ne peut donc pas être restauré.', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6100, 0, 'fr', 'exceptions', 'backend.access.users.cant_unconfirm_admin', 'Vous ne pouvez pas annuler la confirmation du super administrateur.', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6101, 0, 'fr', 'exceptions', 'backend.access.users.cant_unconfirm_self', 'Vous ne pouvez pas annuler votre confirmation.', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6102, 0, 'fr', 'exceptions', 'backend.access.users.create_error', 'Un problème est survenu lors de la création de cet utilisateur. Veuillez réessayer.', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6103, 0, 'fr', 'exceptions', 'backend.access.users.delete_error', 'Un problème est survenu lors de la suppression de cet utilisateur. Veuillez réessayer.', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6104, 0, 'fr', 'exceptions', 'backend.access.users.delete_first', 'Cet utilisateur doit d\'abord être supprimé pour pouvoir être détruit définitivement.', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6105, 0, 'fr', 'exceptions', 'backend.access.users.email_error', 'Cette adresse email appartient à un autre utilisateur.', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6106, 0, 'fr', 'exceptions', 'backend.access.users.mark_error', 'Un problème est survenu lors de la mise à jour de cet utilisateur. Veuillez réessayer.', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6107, 0, 'fr', 'exceptions', 'backend.access.users.not_confirmed', 'Cet utilisateur n\'est pas confirmé.', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6108, 0, 'fr', 'exceptions', 'backend.access.users.not_found', 'Cet utilisateur n\'existe pas.', '2019-09-12 23:34:50', '2020-05-14 12:20:10'), (6109, 0, 'fr', 'exceptions', 'backend.access.users.restore_error', 'Un problème est survenu lors de la restauration de cet utilisateur. Veuillez réessayer.', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6110, 0, 'fr', 'exceptions', 'backend.access.users.role_needed_create', 'Vous devez choisir au moins un rôle.', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6111, 0, 'fr', 'exceptions', 'backend.access.users.role_needed', 'Vous devez choisir au moins un rôle.', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6112, 0, 'fr', 'exceptions', 'backend.access.users.session_wrong_driver', 'Votre pilote de session doit être défini sur la base de données pour utiliser cette fonctionnalité.', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6113, 0, 'fr', 'exceptions', 'backend.access.users.social_delete_error', 'Un problème est survenu lors de la suppression du compte social de l\'utilisateur.', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6114, 0, 'fr', 'exceptions', 'backend.access.users.update_error', 'Un problème est survenu lors de la mise à jour de cet utilisateur. Veuillez réessayer.', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6115, 0, 'fr', 'exceptions', 'backend.access.users.update_password_error', 'Un problème est survenu lors de la modification du mot de passe de cet utilisateur. Veuillez réessayer.', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6116, 0, 'fr', 'exceptions', 'frontend.auth.confirmation.already_confirmed', 'Votre compte est déjà confirmé.', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6117, 0, 'fr', 'exceptions', 'frontend.auth.confirmation.confirm', 'Confirmez votre compte!', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6118, 0, 'fr', 'exceptions', 'frontend.auth.confirmation.created_confirm', 'Votre compte a été créé avec succès. Nous vous avons envoyé un e-mail pour confirmer votre compte.', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6119, 0, 'fr', 'exceptions', 'frontend.auth.confirmation.created_pending', 'Votre compte a été créé avec succès et est en attente d\'approbation. Un e-mail sera envoyé lorsque votre compte sera approuvé.', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6120, 0, 'fr', 'exceptions', 'frontend.auth.confirmation.mismatch', 'Votre code de confirmation ne correspond pas.', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6121, 0, 'fr', 'exceptions', 'frontend.auth.confirmation.not_found', 'Ce code de confirmation n\'existe pas.', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6122, 0, 'fr', 'exceptions', 'frontend.auth.confirmation.pending', 'Votre compte est actuellement en attente d\'approbation.', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6123, 0, 'fr', 'exceptions', 'frontend.auth.confirmation.resend', 'Votre compte n\'est pas confirmé. Veuillez cliquer sur le lien de confirmation dans votre courrier électronique ou <a href=\":url\">click cliquer ici </a> pour renvoyer le message de confirmation.', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6124, 0, 'fr', 'exceptions', 'frontend.auth.confirmation.success', 'Votre compte a été confirmé avec succès!', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6125, 0, 'fr', 'exceptions', 'frontend.auth.confirmation.resent', 'Un nouvel e-mail de confirmation a été envoyé à l\'adresse enregistrée.', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6126, 0, 'fr', 'exceptions', 'frontend.auth.deactivated', 'Votre compte a été désactivé.', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6127, 0, 'fr', 'exceptions', 'frontend.auth.email_taken', 'Cette adresse e-mail est déjà prise.', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6128, 0, 'fr', 'exceptions', 'frontend.auth.password.change_mismatch', 'Ce n\'est pas votre ancien mot de passe.', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6129, 0, 'fr', 'exceptions', 'frontend.auth.password.reset_problem', 'Un problème est survenu lors de la réinitialisation de votre mot de passe. Veuillez renvoyer l\'e-mail de réinitialisation du mot de passe.', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6130, 0, 'fr', 'exceptions', 'frontend.auth.registration_disabled', 'L\'inscription est actuellement fermée.', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6131, 0, 'fr', 'http', '404.title', 'Page non trouvée', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6132, 0, 'fr', 'http', '404.description', 'C’EST QUELQU\'UN QUELQUE EMBARRASSEMENT, N\'EST-CE PAS?', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6133, 0, 'fr', 'http', '404.back', 'Retour à la page d\'accueil', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6134, 0, 'fr', 'http', '404.description2', 'On dirait que rien n\'a été trouvé à cet endroit.', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6135, 0, 'fr', 'http', '404.title2', '404', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6136, 0, 'fr', 'http', '503.title', 'Je reviens tout de suite.', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6137, 0, 'fr', 'http', '503.description', 'Je reviens tout de suite.', '2019-09-12 23:34:51', '2020-05-14 12:20:10'), (6138, 0, 'fr', 'labels', 'general.all', 'Tout', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6139, 0, 'fr', 'labels', 'general.yes', 'Oui', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6140, 0, 'fr', 'labels', 'general.no', 'Non', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6141, 0, 'fr', 'labels', 'general.custom', 'Personnalisé', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6142, 0, 'fr', 'labels', 'general.actions', 'Actions', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6143, 0, 'fr', 'labels', 'general.active', 'Active', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6144, 0, 'fr', 'labels', 'general.buttons.save', 'Enregistrer', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6145, 0, 'fr', 'labels', 'general.buttons.update', 'Mettre à jour', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6146, 0, 'fr', 'labels', 'general.buttons.cancel', 'Annuler', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6147, 0, 'fr', 'labels', 'general.hide', 'Cacher', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6148, 0, 'fr', 'labels', 'general.inactive', 'Inactive', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6149, 0, 'fr', 'labels', 'general.none', 'Aucun', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6150, 0, 'fr', 'labels', 'general.show', 'Voir', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6151, 0, 'fr', 'labels', 'general.toggle_navigation', 'Navigation', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6152, 0, 'fr', 'labels', 'general.trash', 'Poubelle', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6153, 0, 'fr', 'labels', 'general.toolbar_btn_groups', 'Barre d\'outils avec des groupes de boutons', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6154, 0, 'fr', 'labels', 'general.sr_no', 'Sr No.', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6155, 0, 'fr', 'labels', 'general.read_more', 'Lire la suite', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6156, 0, 'fr', 'labels', 'general.no_data_available', 'Pas de données disponibles', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6157, 0, 'fr', 'labels', 'general.more', 'Plus', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6158, 0, 'fr', 'labels', 'general.edit', 'modifier', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6159, 0, 'fr', 'labels', 'general.delete_selected', 'Supprimer sélectionnée', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6160, 0, 'fr', 'labels', 'general.delete', 'Effacer', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6161, 0, 'fr', 'labels', 'general.create_new', 'Créer un nouveau', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6162, 0, 'fr', 'labels', 'general.copyright', 'droits d\'auteur', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6163, 0, 'fr', 'labels', 'general.back', 'Retour', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6164, 0, 'fr', 'labels', 'backend.access.roles.create', 'Créer un rôle', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6165, 0, 'fr', 'labels', 'backend.access.roles.edit', 'Editer un rôle', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6166, 0, 'fr', 'labels', 'backend.access.roles.management', 'Gestion des rôles', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6167, 0, 'fr', 'labels', 'backend.access.roles.table.number_of_users', 'Nombre d\'utilisateurs', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6168, 0, 'fr', 'labels', 'backend.access.roles.table.permissions', 'Permissions', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6169, 0, 'fr', 'labels', 'backend.access.roles.table.role', 'Rôle', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6170, 0, 'fr', 'labels', 'backend.access.roles.table.sort', 'Ordre', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6171, 0, 'fr', 'labels', 'backend.access.roles.table.total', 'rôle total|rôles total', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6172, 0, 'fr', 'labels', 'backend.access.users.active', 'Utilisateurs actifs', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6173, 0, 'fr', 'labels', 'backend.access.users.all_permissions', 'Toutes les permissions', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6174, 0, 'fr', 'labels', 'backend.access.users.change_password', 'Modifier le mot de passe', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6175, 0, 'fr', 'labels', 'backend.access.users.change_password_for', 'Modifier le mot de passe pour :user', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6176, 0, 'fr', 'labels', 'backend.access.users.create', 'Créer un utilisateur', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6177, 0, 'fr', 'labels', 'backend.access.users.deactivated', 'Utilisateurs désactivés', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6178, 0, 'fr', 'labels', 'backend.access.users.deleted', 'Utilisateurs supprimés', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6179, 0, 'fr', 'labels', 'backend.access.users.edit', 'Éditer un utilisateur', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6180, 0, 'fr', 'labels', 'backend.access.users.management', 'Gestion des utilisateurs', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6181, 0, 'fr', 'labels', 'backend.access.users.no_permissions', 'Aucune permission', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6182, 0, 'fr', 'labels', 'backend.access.users.no_roles', 'Aucun rôle à affecter.', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6183, 0, 'fr', 'labels', 'backend.access.users.permissions', 'Permissions', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6184, 0, 'fr', 'labels', 'backend.access.users.table.confirmed', 'Confirmé', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6185, 0, 'fr', 'labels', 'backend.access.users.table.created', 'Création', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6186, 0, 'fr', 'labels', 'backend.access.users.table.email', 'Adresse email', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6187, 0, 'fr', 'labels', 'backend.access.users.table.id', 'ID', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6188, 0, 'fr', 'labels', 'backend.access.users.table.last_updated', 'Mise à jour', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6189, 0, 'fr', 'labels', 'backend.access.users.table.name', 'Nom', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6190, 0, 'fr', 'labels', 'backend.access.users.table.first_name', 'Prénom', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6191, 0, 'fr', 'labels', 'backend.access.users.table.last_name', 'Nom', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6192, 0, 'fr', 'labels', 'backend.access.users.table.no_deactivated', 'Pas d\'utilisateurs désactivés', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6193, 0, 'fr', 'labels', 'backend.access.users.table.no_deleted', 'Pas d\'utilisateurs supprimés', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6194, 0, 'fr', 'labels', 'backend.access.users.table.other_permissions', 'Autres permissions', '2019-09-12 23:34:51', '2020-05-14 12:20:11'), (6195, 0, 'fr', 'labels', 'backend.access.users.table.permissions', 'Permissions', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6196, 0, 'fr', 'labels', 'backend.access.users.table.roles', 'Rôles', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6197, 0, 'fr', 'labels', 'backend.access.users.table.social', 'Réseau social', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6198, 0, 'fr', 'labels', 'backend.access.users.table.total', 'utilisateur total|utilisateurs total', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6199, 0, 'fr', 'labels', 'backend.access.users.table.abilities', 'Les capacités', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6200, 0, 'fr', 'labels', 'backend.access.users.table.status', 'Statut', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6201, 0, 'fr', 'labels', 'backend.access.users.tabs.titles.overview', 'Résumé', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6202, 0, 'fr', 'labels', 'backend.access.users.tabs.titles.history', 'Historique', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6203, 0, 'fr', 'labels', 'backend.access.users.tabs.content.overview.avatar', 'Avatar', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6204, 0, 'fr', 'labels', 'backend.access.users.tabs.content.overview.confirmed', 'Confirmé', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6205, 0, 'fr', 'labels', 'backend.access.users.tabs.content.overview.created_at', 'Créé le', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6206, 0, 'fr', 'labels', 'backend.access.users.tabs.content.overview.deleted_at', 'Supprimé le', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6207, 0, 'fr', 'labels', 'backend.access.users.tabs.content.overview.email', 'Adresse email', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6208, 0, 'fr', 'labels', 'backend.access.users.tabs.content.overview.last_login_at', 'Last Login At', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6209, 0, 'fr', 'labels', 'backend.access.users.tabs.content.overview.last_login_ip', 'Last Login IP', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6210, 0, 'fr', 'labels', 'backend.access.users.tabs.content.overview.last_updated', 'Mise à jour', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6211, 0, 'fr', 'labels', 'backend.access.users.tabs.content.overview.name', 'Nom complet', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6212, 0, 'fr', 'labels', 'backend.access.users.tabs.content.overview.first_name', 'Prénom', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6213, 0, 'fr', 'labels', 'backend.access.users.tabs.content.overview.last_name', 'Nom', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6214, 0, 'fr', 'labels', 'backend.access.users.tabs.content.overview.status', 'Statut', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6215, 0, 'fr', 'labels', 'backend.access.users.tabs.content.overview.timezone', 'Timezone', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6216, 0, 'fr', 'labels', 'backend.access.users.view', 'Voir un utilisateur', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6217, 0, 'fr', 'labels', 'backend.access.users.user_actions', 'Actions de l\'utilisateur', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6218, 0, 'fr', 'labels', 'backend.backup.api_key', 'clé API', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6219, 0, 'fr', 'labels', 'backend.backup.api_secret', 'Secret API', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6220, 0, 'fr', 'labels', 'backend.backup.app_key', 'Clé d\'application', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6221, 0, 'fr', 'labels', 'backend.backup.app_secret', 'App Secret', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6222, 0, 'fr', 'labels', 'backend.backup.app_token', 'Jeton d\'application', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6223, 0, 'fr', 'labels', 'backend.backup.aws', 'AWS S3', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6224, 0, 'fr', 'labels', 'backend.backup.backup_files', 'Fichiers de sauvegarde', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6225, 0, 'fr', 'labels', 'backend.backup.backup_note', '<b> Remarque </b>: pour exécuter cette sauvegarde correctement, vous devez ajouter le code suivant à votre <b> ONGLET CRON: </b> <br> <code> * * * * * cd / chemin d\'accès à votre -project && php artisan agenda: lancer >> / dev / null 2> & 1 </code>', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6226, 0, 'fr', 'labels', 'backend.backup.backup_notice', 'Veuillez vous reporter à la documentation avant de commencer la sauvegarde. Il contient tous les détails étape par étape pour créer une sauvegarde avec Dropbox.', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6227, 0, 'fr', 'labels', 'backend.backup.backup_schedule', 'Calendrier de sauvegarde', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6228, 0, 'fr', 'labels', 'backend.backup.backup_type', 'Type de sauvegarde', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6229, 0, 'fr', 'labels', 'backend.backup.bucket_name', 'Nom du seau', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6230, 0, 'fr', 'labels', 'backend.backup.configuration', 'Configuration', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6231, 0, 'fr', 'labels', 'backend.backup.daily', 'du quotidien', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6232, 0, 'fr', 'labels', 'backend.backup.db', 'Base de données', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6233, 0, 'fr', 'labels', 'backend.backup.db_app', 'Fichiers de base de données et d\'application', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6234, 0, 'fr', 'labels', 'backend.backup.db_storage', 'Fichiers de base de données et de stockage', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6235, 0, 'fr', 'labels', 'backend.backup.dropbox', 'Dropbox', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6236, 0, 'fr', 'labels', 'backend.backup.dropbox_note', 'Veuillez vérifier la documentation pour <b> Comment obtenir les clés de l\'application DropBox? </b>', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6237, 0, 'fr', 'labels', 'backend.backup.email', 'Notification par email', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6238, 0, 'fr', 'labels', 'backend.backup.enable_disable', 'Activer désactiver', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6239, 0, 'fr', 'labels', 'backend.backup.generate_backup', 'Générer une sauvegarde', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6240, 0, 'fr', 'labels', 'backend.backup.monthly', 'Mensuel', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6241, 0, 'fr', 'labels', 'backend.backup.region', 'Région', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6242, 0, 'fr', 'labels', 'backend.backup.title', 'Sauvegarde', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6243, 0, 'fr', 'labels', 'backend.backup.weekly', 'Hebdomadaire', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6244, 0, 'fr', 'labels', 'backend.blogs.create', 'Créer un blog', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6245, 0, 'fr', 'labels', 'backend.blogs.edit', 'Edit Blog', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6246, 0, 'fr', 'labels', 'backend.blogs.fields.category', 'Catégorie', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6247, 0, 'fr', 'labels', 'backend.blogs.fields.clear', 'Clair', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6248, 0, 'fr', 'labels', 'backend.blogs.fields.comments', 'commentaires', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6249, 0, 'fr', 'labels', 'backend.blogs.fields.content', 'Contenu', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6250, 0, 'fr', 'labels', 'backend.blogs.fields.created', 'Créé', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6251, 0, 'fr', 'labels', 'backend.blogs.fields.created_at', 'Créé sur', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6252, 0, 'fr', 'labels', 'backend.blogs.fields.featured_image', 'L\'image sélectionnée', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6253, 0, 'fr', 'labels', 'backend.blogs.fields.meta_description', 'Meta Description', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6254, 0, 'fr', 'labels', 'backend.blogs.fields.meta_keywords', 'Méta Mots-clés', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6255, 0, 'fr', 'labels', 'backend.blogs.fields.meta_title', 'Meta Title', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6256, 0, 'fr', 'labels', 'backend.blogs.fields.publish', 'Publier', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6257, 0, 'fr', 'labels', 'backend.blogs.fields.slug', 'Limace', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6258, 0, 'fr', 'labels', 'backend.blogs.fields.status', 'Statut', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6259, 0, 'fr', 'labels', 'backend.blogs.fields.tags', 'Mots clés', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6260, 0, 'fr', 'labels', 'backend.blogs.fields.tags_placeholder', 'Ajouter des tags ici', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6261, 0, 'fr', 'labels', 'backend.blogs.fields.title', 'Titre', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6262, 0, 'fr', 'labels', 'backend.blogs.fields.views', 'Des vues', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6263, 0, 'fr', 'labels', 'backend.blogs.max_file_size', '(taille maximale du fichier: 10 Mo)', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6264, 0, 'fr', 'labels', 'backend.blogs.title', 'Blog', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6265, 0, 'fr', 'labels', 'backend.blogs.view', 'Voir les blogs', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6266, 0, 'fr', 'labels', 'backend.categories.create', 'Créer une catégorie', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6267, 0, 'fr', 'labels', 'backend.categories.edit', 'Modifier la catégorie', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6268, 0, 'fr', 'labels', 'backend.categories.fields.courses', 'Cours', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6269, 0, 'fr', 'labels', 'backend.categories.fields.icon', 'Icône', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6270, 0, 'fr', 'labels', 'backend.categories.fields.icon_type.icon', 'Sélectionnez l\'icône', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6271, 0, 'fr', 'labels', 'backend.categories.fields.icon_type.image', 'Télécharger une image', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6272, 0, 'fr', 'labels', 'backend.categories.fields.icon_type.select_any', 'Sélectionnez Any', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6273, 0, 'fr', 'labels', 'backend.categories.fields.icon_type.title', 'Type d\'icône', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6274, 0, 'fr', 'labels', 'backend.categories.fields.image', 'Image', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6275, 0, 'fr', 'labels', 'backend.categories.fields.name', 'prénom', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6276, 0, 'fr', 'labels', 'backend.categories.fields.or', 'Ou', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6277, 0, 'fr', 'labels', 'backend.categories.fields.select_icon', 'Sélectionnez l\'icône', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6278, 0, 'fr', 'labels', 'backend.categories.fields.slug', 'Limace', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6279, 0, 'fr', 'labels', 'backend.categories.fields.status', 'Statut', '2019-09-12 23:34:52', '2020-05-14 12:20:11'), (6280, 0, 'fr', 'labels', 'backend.categories.title', 'Les catégories', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6281, 0, 'fr', 'labels', 'backend.categories.view', 'Voir les catégories', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6282, 0, 'fr', 'labels', 'backend.courses.fields.slug', 'Limace', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6283, 0, 'fr', 'labels', 'backend.courses.fields.status', 'Statut', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6284, 0, 'fr', 'labels', 'backend.courses.fields.category', 'Catégorie', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6285, 0, 'fr', 'labels', 'backend.courses.fields.course', 'Cours', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6286, 0, 'fr', 'labels', 'backend.courses.fields.course_image', 'Image du cours', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6287, 0, 'fr', 'labels', 'backend.courses.fields.description', 'La description', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6288, 0, 'fr', 'labels', 'backend.courses.fields.featured', 'En vedette', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6289, 0, 'fr', 'labels', 'backend.courses.fields.lessons.add', 'Ajouter des leçons', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6290, 0, 'fr', 'labels', 'backend.courses.fields.lessons.view', 'Voir les leçons', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6291, 0, 'fr', 'labels', 'backend.courses.fields.meta_description', 'Meta Description', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6292, 0, 'fr', 'labels', 'backend.courses.fields.meta_keywords', 'Méta Mots-clés', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6293, 0, 'fr', 'labels', 'backend.courses.fields.meta_title', 'Meta Title', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6294, 0, 'fr', 'labels', 'backend.courses.fields.popular', 'Populaire', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6295, 0, 'fr', 'labels', 'backend.courses.fields.price', 'Prix', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6296, 0, 'fr', 'labels', 'backend.courses.fields.published', 'Publié', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6297, 0, 'fr', 'labels', 'backend.courses.fields.sidebar', 'Ajouter une barre latérale', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6298, 0, 'fr', 'labels', 'backend.courses.fields.start_date', 'Date de début', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6299, 0, 'fr', 'labels', 'backend.courses.fields.teachers', 'Enseignants', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6300, 0, 'fr', 'labels', 'backend.courses.fields.title', 'Titre', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6301, 0, 'fr', 'labels', 'backend.courses.fields.trending', 'Tendances', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6302, 0, 'fr', 'labels', 'backend.courses.fields.free', 'Libre', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6303, 0, 'fr', 'labels', 'backend.courses.add_categories', 'Ajouter des catégories', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6304, 0, 'fr', 'labels', 'backend.courses.add_teachers', 'Ajouter des professeurs', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6305, 0, 'fr', 'labels', 'backend.courses.category', 'Catégorie', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6306, 0, 'fr', 'labels', 'backend.courses.course_timeline', 'Chronologie du cours', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6307, 0, 'fr', 'labels', 'backend.courses.create', 'Créer un cours', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6308, 0, 'fr', 'labels', 'backend.courses.edit', 'Modifier le cours', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6309, 0, 'fr', 'labels', 'backend.courses.lesson', 'Leçon', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6310, 0, 'fr', 'labels', 'backend.courses.listing_note', 'Seuls les cours et les tests publiés seront affichés et triés.', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6311, 0, 'fr', 'labels', 'backend.courses.save_timeline', 'Enregistrer la chronologie', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6312, 0, 'fr', 'labels', 'backend.courses.select_category', 'Choisir une catégorie', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6313, 0, 'fr', 'labels', 'backend.courses.select_teachers', 'Sélectionner les enseignants', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6314, 0, 'fr', 'labels', 'backend.courses.slug_placeholder', 'Slug d\'entrée ou il sera généré automatiquement', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6315, 0, 'fr', 'labels', 'backend.courses.test', 'Tester', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6316, 0, 'fr', 'labels', 'backend.courses.timeline_description', 'Faites glisser et modifier la séquence de leçons / tests pour le cours', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6317, 0, 'fr', 'labels', 'backend.courses.title', 'Cours', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6318, 0, 'fr', 'labels', 'backend.courses.view', 'Voir les cours', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6319, 0, 'fr', 'labels', 'backend.pages.fields.slug', 'Limace', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6320, 0, 'fr', 'labels', 'backend.pages.fields.clear', 'Clair', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6321, 0, 'fr', 'labels', 'backend.pages.fields.content', 'Contenu', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6322, 0, 'fr', 'labels', 'backend.pages.fields.created', 'Créé', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6323, 0, 'fr', 'labels', 'backend.pages.fields.created_at', 'Créé sur', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6324, 0, 'fr', 'labels', 'backend.pages.fields.drafted', 'Rédigé', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6325, 0, 'fr', 'labels', 'backend.pages.fields.featured_image', 'L\'image sélectionnée', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6326, 0, 'fr', 'labels', 'backend.pages.fields.meta_description', 'Meta Description', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6327, 0, 'fr', 'labels', 'backend.pages.fields.meta_keywords', 'Méta Mots-clés', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6328, 0, 'fr', 'labels', 'backend.pages.fields.meta_title', 'Meta Title', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6329, 0, 'fr', 'labels', 'backend.pages.fields.published', 'Publié', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6330, 0, 'fr', 'labels', 'backend.pages.fields.status', 'Statut', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6331, 0, 'fr', 'labels', 'backend.pages.fields.title', 'Titre', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6332, 0, 'fr', 'labels', 'backend.pages.create', 'Créer une page', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6333, 0, 'fr', 'labels', 'backend.pages.edit', 'Modifier la page', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6334, 0, 'fr', 'labels', 'backend.pages.max_file_size', '(taille maximale du fichier: 10 Mo)', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6335, 0, 'fr', 'labels', 'backend.pages.title', 'Des pages', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6336, 0, 'fr', 'labels', 'backend.pages.view', 'Pages de vue', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6337, 0, 'fr', 'labels', 'backend.lessons.fields.slug', 'Limace', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6338, 0, 'fr', 'labels', 'backend.lessons.fields.course', 'Cours', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6339, 0, 'fr', 'labels', 'backend.lessons.fields.downloadable_files', 'Fichiers téléchargeables', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6340, 0, 'fr', 'labels', 'backend.lessons.fields.free_lesson', 'Leçon gratuite', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6341, 0, 'fr', 'labels', 'backend.lessons.fields.full_text', 'Texte intégral', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6342, 0, 'fr', 'labels', 'backend.lessons.fields.lesson_image', 'Image de la leçon', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6343, 0, 'fr', 'labels', 'backend.lessons.fields.position', 'Position', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6344, 0, 'fr', 'labels', 'backend.lessons.fields.published', 'Publié', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6345, 0, 'fr', 'labels', 'backend.lessons.fields.short_text', 'Texte court', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6346, 0, 'fr', 'labels', 'backend.lessons.fields.title', 'Titre', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6347, 0, 'fr', 'labels', 'backend.lessons.fields.youtube_videos', 'Vidéos youtube', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6348, 0, 'fr', 'labels', 'backend.lessons.fields.add_pdf', 'Ajouter un PDF', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6349, 0, 'fr', 'labels', 'backend.lessons.fields.add_video', 'Ajouter une vidéo', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6350, 0, 'fr', 'labels', 'backend.lessons.fields.add_audio', 'Ajouter de l\'audio', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6351, 0, 'fr', 'labels', 'backend.lessons.fields.media_audio', 'Média Audio', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6352, 0, 'fr', 'labels', 'backend.lessons.fields.media_pdf', 'Média PDF', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6353, 0, 'fr', 'labels', 'backend.lessons.fields.media_video', 'Vidéo média', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6354, 0, 'fr', 'labels', 'backend.lessons.create', 'Créer une leçon', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6355, 0, 'fr', 'labels', 'backend.lessons.edit', 'Modifier la leçon', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6356, 0, 'fr', 'labels', 'backend.lessons.max_file_size', '(taille maximale du fichier: 5 Mo)', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6357, 0, 'fr', 'labels', 'backend.lessons.select_course', 'Sélectionnez un cours', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6358, 0, 'fr', 'labels', 'backend.lessons.short_description_placeholder', 'Entrez une brève description de la leçon', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6359, 0, 'fr', 'labels', 'backend.lessons.slug_placeholder', 'Introduire une description succincte de la lecture', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6360, 0, 'fr', 'labels', 'backend.lessons.title', 'Cours', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6361, 0, 'fr', 'labels', 'backend.lessons.view', 'Voir les leçons', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6362, 0, 'fr', 'labels', 'backend.lessons.video_guide', '<p class = \"mb-1\"> <b> Youtube: </b> Allez sur Youtube -> Allez à la vidéo que vous souhaitez afficher -> cliquez sur le bouton Partager en dessous de la vidéo. Copiez ces liens et collez-les dans la zone de texte ci-dessus </p>\n<p class = \"mb-1\"> <b> Vimeo: </b> Aller à Vimeo -> Aller à la vidéo que vous souhaitez afficher -> cliquez sur le bouton Partager et copiez l\'URL de la vidéo de collage ici </p>\n<p class = \"mb-1\"> <b> Transférer: </b> Transférer un fichier <b> mp4 </b> dans l\'entrée de fichier </p>.\n<p class = \"mb-1\"> <b> Incorporer: </b> copier / coller le code intégré dans la zone de texte ci-dessus </p>', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6363, 0, 'fr', 'labels', 'backend.lessons.remove', 'Retirer', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6364, 0, 'fr', 'labels', 'backend.lessons.enter_video_embed_code', 'Entrez le code d\'intégration de la vidéo', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6365, 0, 'fr', 'labels', 'backend.lessons.enter_video_url', 'Entrer des données vidéo', '2019-09-12 23:34:53', '2020-05-14 12:20:11'), (6366, 0, 'fr', 'labels', 'backend.lessons.vimeo_note', '<b> Instructions pour ajouter un lien vidéo: </b> <br> Allez à vimeo -> ouvrir la vidéo -> cliquez avec le bouton droit sur la vidéo et <b> Copier l\'URL de la vidéo </b> et collez-le ici. <br> Si vous le souhaitez pour ajouter plusieurs vidéos, séparez-les par <b>, </b> (Virgule).', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6367, 0, 'fr', 'labels', 'backend.lessons.yt_note', '<b> Instructions pour ajouter un lien vidéo: </b> <br> Allez sur youtube -> ouvrir la vidéo -> faites un clic droit sur la vidéo et <b> Copier l\'URL de la vidéo </b> et collez-le ici. <br> Si vous voulez pour ajouter plusieurs vidéos, séparez-les par <b>, </b> (Virgule).', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6368, 0, 'fr', 'labels', 'backend.contacts.fields.email', 'Email', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6369, 0, 'fr', 'labels', 'backend.contacts.fields.message', 'Message', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6370, 0, 'fr', 'labels', 'backend.contacts.fields.name', 'prénom', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6371, 0, 'fr', 'labels', 'backend.contacts.fields.phone', 'Téléphone', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6372, 0, 'fr', 'labels', 'backend.contacts.fields.time', 'Temps', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6373, 0, 'fr', 'labels', 'backend.contacts.title', 'Pistes', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6374, 0, 'fr', 'labels', 'backend.dashboard.amount', 'Montant', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6375, 0, 'fr', 'labels', 'backend.dashboard.buy_course_now', 'Acheter le cours maintenant', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6376, 0, 'fr', 'labels', 'backend.dashboard.completed', 'Terminé', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6377, 0, 'fr', 'labels', 'backend.dashboard.course', 'Cours', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6378, 0, 'fr', 'labels', 'backend.dashboard.courses', 'Cours', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6379, 0, 'fr', 'labels', 'backend.dashboard.email', 'Email', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6380, 0, 'fr', 'labels', 'backend.dashboard.message', 'Message', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6381, 0, 'fr', 'labels', 'backend.dashboard.message_by', 'Message de', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6382, 0, 'fr', 'labels', 'backend.dashboard.name', 'prénom', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6383, 0, 'fr', 'labels', 'backend.dashboard.no_data', 'Pas de données disponibles', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6384, 0, 'fr', 'labels', 'backend.dashboard.ordered_by', 'Commander par', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6385, 0, 'fr', 'labels', 'backend.dashboard.recent_contact_requests', 'Demandes de contact récentes', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6386, 0, 'fr', 'labels', 'backend.dashboard.recent_contacts', 'Contacts récents', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6387, 0, 'fr', 'labels', 'backend.dashboard.recent_messages', 'Messages récents', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6388, 0, 'fr', 'labels', 'backend.dashboard.recent_orders', 'Dernières commandes', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6389, 0, 'fr', 'labels', 'backend.dashboard.recent_reviews', 'Avis récents', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6390, 0, 'fr', 'labels', 'backend.dashboard.review', 'La revue', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6391, 0, 'fr', 'labels', 'backend.dashboard.students', 'Étudiants', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6392, 0, 'fr', 'labels', 'backend.dashboard.students_enrolled', 'Etudiants inscrits à <br> vos cours', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6393, 0, 'fr', 'labels', 'backend.dashboard.teachers', 'Enseignants', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6394, 0, 'fr', 'labels', 'backend.dashboard.time', 'Temps', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6395, 0, 'fr', 'labels', 'backend.dashboard.title', 'Tableau de bord', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6396, 0, 'fr', 'labels', 'backend.dashboard.trending', 'Tendances', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6397, 0, 'fr', 'labels', 'backend.dashboard.view', 'Vue', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6398, 0, 'fr', 'labels', 'backend.dashboard.view_all', 'Voir tout', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6399, 0, 'fr', 'labels', 'backend.dashboard.your_courses', 'Vos cours', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6400, 0, 'fr', 'labels', 'backend.dashboard.my_course_bundles', 'Mes cours', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6401, 0, 'fr', 'labels', 'backend.dashboard.my_courses', 'Mes cours', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6402, 0, 'fr', 'labels', 'backend.dashboard.course_and_bundles', 'Cours et forfaits', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6403, 0, 'fr', 'labels', 'backend.dashboard.your_courses_and_bundles', 'Vos cours et forfaits', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6404, 0, 'fr', 'labels', 'backend.dashboard.pending', 'en attendant', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6405, 0, 'fr', 'labels', 'backend.dashboard.pending_orders', 'Les ordres en attente', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6406, 0, 'fr', 'labels', 'backend.dashboard.success', 'Succès', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6407, 0, 'fr', 'labels', 'backend.dashboard.failed', 'Échoué', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6408, 0, 'fr', 'labels', 'backend.faqs.create', 'Créer une FAQ', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6409, 0, 'fr', 'labels', 'backend.faqs.edit', 'Modifier la FAQ', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6410, 0, 'fr', 'labels', 'backend.faqs.fields.answer', 'Réponse', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6411, 0, 'fr', 'labels', 'backend.faqs.fields.category', 'Catégorie', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6412, 0, 'fr', 'labels', 'backend.faqs.fields.question', 'Question', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6413, 0, 'fr', 'labels', 'backend.faqs.fields.status', 'Statut', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6414, 0, 'fr', 'labels', 'backend.faqs.title', 'FAQ', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6415, 0, 'fr', 'labels', 'backend.faqs.view', 'Voir les FAQ', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6416, 0, 'fr', 'labels', 'backend.general_settings.app_locale', 'App Locale', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6417, 0, 'fr', 'labels', 'backend.general_settings.app_name', 'Nom de l\'application', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6418, 0, 'fr', 'labels', 'backend.general_settings.app_timezone', 'Fuseau horaire App', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6419, 0, 'fr', 'labels', 'backend.general_settings.app_url', 'URL de l\'application', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6420, 0, 'fr', 'labels', 'backend.general_settings.change_email', 'Changer l\'e-mail', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6421, 0, 'fr', 'labels', 'backend.general_settings.confirm_email', 'Confirmez votre e-mail', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6422, 0, 'fr', 'labels', 'backend.general_settings.contact.location_on_map', 'Localisation sur la carte', '2019-09-12 23:34:54', '2020-05-14 12:20:11'); INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES (6423, 0, 'fr', 'labels', 'backend.general_settings.contact.map_note', '<h3> Comment intégrer l\'emplacement pour la carte? </h3>\n <p> Suivez les étapes simples ci-dessous et vous êtes prêt à partir: </p>\n <ol class = \"map-guide\">\n <li> Accédez à la <a class=\"text-bold\" target=\"_blank\" href=\"//maps.google.com\"> carte Google </a> </li>.\n <li> Recherchez le lieu que vous souhaitez ajouter en saisissant l\'adresse dans la zone de saisie située dans le coin supérieur gauche </li>\n <li> Une fois que vous avez trouvé l\'endroit que vous voulez. Il montre les détails dans la barre latérale gauche. Cliquez sur le bouton <i class = \"fa fa-share-alt text-primary\"> </i> </li>\n <li> Une fenêtre contextuelle contenant deux onglets apparaîtra <b> Envoyer un lien </b> et <b> Intégrer une carte </b> </li>\n <li> Cliquez sur <b> Intégrer une carte </b>. Il vous montrera l\'emplacement choisi sur la carte </li>.\n <li> Cliquez maintenant sur le menu déroulant à gauche. Par défaut, <b> Moyen </b> est sélectionné. Cliquez dessus et sélectionnez <b> Grand </b> </li>\n <li> Maintenant, cliquez sur le lien <b class = \"text-primary\"> COPY HTML </b> et sur <b> Collez </b> ce code ici dans <b> Emplacement sur la carte </b>. </li>\n </ol>', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6424, 0, 'fr', 'labels', 'backend.general_settings.contact.primary_address', 'Adresse principale', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6425, 0, 'fr', 'labels', 'backend.general_settings.contact.primary_email', 'Email primaire', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6426, 0, 'fr', 'labels', 'backend.general_settings.contact.primary_email_note', 'Ce courrier électronique est utilisé par un correspondant de journalistes électroniques \"Contacts\"', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6427, 0, 'fr', 'labels', 'backend.general_settings.contact.primary_phone', 'Téléphone primaire', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6428, 0, 'fr', 'labels', 'backend.general_settings.contact.secondary_address', 'Adresse secondaire', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6429, 0, 'fr', 'labels', 'backend.general_settings.contact.secondary_email', 'Secondary Email', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6430, 0, 'fr', 'labels', 'backend.general_settings.contact.secondary_phone', 'Téléphone secondaire', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6431, 0, 'fr', 'labels', 'backend.general_settings.contact.short_text', 'Texte court', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6432, 0, 'fr', 'labels', 'backend.general_settings.contact.show', 'Spectacle', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6433, 0, 'fr', 'labels', 'backend.general_settings.contact.title', 'Contact', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6434, 0, 'fr', 'labels', 'backend.general_settings.counter', 'Compteur', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6435, 0, 'fr', 'labels', 'backend.general_settings.counter_note', '<b> Static </b> = Ajouter manuellement des données pour le compteur. Veuillez saisir le texte exact que vous souhaitez afficher dans la section des guichets frontaux, <br> <b> Database / Real </b> = Il utilisera des données réelles de la base de données pour tous les champs (Nombre total d\'étudiants inscrits, Nombre total de cours, Nombre total d\'enseignants)', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6436, 0, 'fr', 'labels', 'backend.general_settings.database', 'Base de données / Real', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6437, 0, 'fr', 'labels', 'backend.general_settings.email.mail_driver', 'Pilote de courrier', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6438, 0, 'fr', 'labels', 'backend.general_settings.email.mail_driver_note', 'Vous pouvez sélectionner le pilote de votre choix pour la configuration de votre messagerie. <b> Ex. SMTP, Mailgun, Mandrill, SparkPost, Amazon SES, etc. </b> <br> Ajoutez <b> un seul pilote </b>.', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6439, 0, 'fr', 'labels', 'backend.general_settings.email.mail_encryption', 'Chiffrement du courrier', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6440, 0, 'fr', 'labels', 'backend.general_settings.email.mail_encryption_note', 'Utilisez <b> tls </b> si votre site utilise le protocole <b> HTTP </b> et <b> ssl </b> si votre site utilise le protocole <b> HTTPS </b>.', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6441, 0, 'fr', 'labels', 'backend.general_settings.email.mail_from_address', 'Mail De Adresse', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6442, 0, 'fr', 'labels', 'backend.general_settings.email.mail_from_address_note', 'Cet email sera utilisé pour la correspondance \"Formulaire de contact\".', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6443, 0, 'fr', 'labels', 'backend.general_settings.email.mail_from_name', 'Mail De Nom', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6444, 0, 'fr', 'labels', 'backend.general_settings.email.mail_from_name_note', 'Ce sera un nom d\'affichage pour votre email envoyé.', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6445, 0, 'fr', 'labels', 'backend.general_settings.email.mail_host', 'Mail HOST', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6446, 0, 'fr', 'labels', 'backend.general_settings.email.mail_password', 'Mot de passe mail', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6447, 0, 'fr', 'labels', 'backend.general_settings.email.mail_password_note', 'Ajoutez votre mot de passe email que vous souhaitez configurer pour l\'envoi d\'emails', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6448, 0, 'fr', 'labels', 'backend.general_settings.email.mail_port', 'Mail PORT', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6449, 0, 'fr', 'labels', 'backend.general_settings.email.mail_username', 'Mail Nom d\'utilisateur', '2019-09-12 23:34:54', '2020-05-14 12:20:11'), (6450, 0, 'fr', 'labels', 'backend.general_settings.email.mail_username_note', 'Ajoutez votre identifiant de messagerie que vous souhaitez configurer pour l\'envoi d\'emails', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6451, 0, 'fr', 'labels', 'backend.general_settings.email.note', '<b> Remarque importante </b>: SI vous utilisez <b> GMAIL </b> pour la configuration du courrier, assurez-vous d\'avoir terminé le processus suivant avant la mise à jour:\n <ul>\n<li> Accédez à <a target=\"_blank\" href=\"https://myaccount.google.com/security\"> Mon compte </a> à partir de votre compte Google que vous souhaitez configurer et vous connecter </li>.\n<li> Faites défiler jusqu\'à <b> Accès à une application moins sécurisée </b> et définissez-le <b> SUR </b> </li>\n</ul>', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6452, 0, 'fr', 'labels', 'backend.general_settings.email.title', 'Configuration du courrier', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6453, 0, 'fr', 'labels', 'backend.general_settings.enable_registration', 'Activer l\'inscription', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6454, 0, 'fr', 'labels', 'backend.general_settings.font_color', 'Couleur de la police', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6455, 0, 'fr', 'labels', 'backend.general_settings.footer.bottom_footer', 'Pied de page inférieur', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6456, 0, 'fr', 'labels', 'backend.general_settings.footer.bottom_footer_note', 'Remarque: il comprend le texte du droit d\'auteur et les liens de pied de page.', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6457, 0, 'fr', 'labels', 'backend.general_settings.footer.copyright_text', 'Texte de copyright', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6458, 0, 'fr', 'labels', 'backend.general_settings.footer.custom_links', 'Liens personnalisés', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6459, 0, 'fr', 'labels', 'backend.general_settings.footer.featured_courses', 'Cours en vedette', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6460, 0, 'fr', 'labels', 'backend.general_settings.footer.footer_links', 'Liens de pied de page', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6461, 0, 'fr', 'labels', 'backend.general_settings.footer.link', 'Lien', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6462, 0, 'fr', 'labels', 'backend.general_settings.footer.link_label', 'Étiquette', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6463, 0, 'fr', 'labels', 'backend.general_settings.footer.link_url', 'URL', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6464, 0, 'fr', 'labels', 'backend.general_settings.footer.newsletter_form', 'Bulletin d\'information', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6465, 0, 'fr', 'labels', 'backend.general_settings.footer.popular_categories', 'Catégories populaires', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6466, 0, 'fr', 'labels', 'backend.general_settings.footer.popular_courses', 'Cours populaires', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6467, 0, 'fr', 'labels', 'backend.general_settings.footer.recent_news', 'Nouvelles récentes', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6468, 0, 'fr', 'labels', 'backend.general_settings.footer.section_1', 'Section 1', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6469, 0, 'fr', 'labels', 'backend.general_settings.footer.section_2', 'Section 2', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6470, 0, 'fr', 'labels', 'backend.general_settings.footer.section_3', 'Section 3', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6471, 0, 'fr', 'labels', 'backend.general_settings.footer.short_description', 'brève description', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6472, 0, 'fr', 'labels', 'backend.general_settings.footer.social_links', 'Liens sociaux', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6473, 0, 'fr', 'labels', 'backend.general_settings.footer.social_links_note', 'Ajoutez une URL de lien social et sélectionnez Icône pour ce média dans iconpicker. Cliquez sur le bouton <b> AJOUTER + </b>. Et votre lien social sera créé. Vous pouvez également les supprimer en cliquant sur le bouton <b> <i class = \"fa fa-times\"> </i> </b>.', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6474, 0, 'fr', 'labels', 'backend.general_settings.footer.title', 'Bas de page', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6475, 0, 'fr', 'labels', 'backend.general_settings.footer.trending_courses', 'Cours tendances', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6476, 0, 'fr', 'labels', 'backend.general_settings.general.title', 'Général', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6477, 0, 'fr', 'labels', 'backend.general_settings.google_analytics', 'Code Google Analytics', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6478, 0, 'fr', 'labels', 'backend.general_settings.homepage', 'Sélectionner la page d\'accueil', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6479, 0, 'fr', 'labels', 'backend.general_settings.layout.title', 'Disposition', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6480, 0, 'fr', 'labels', 'backend.general_settings.layout_note', 'Cela changera la disposition du thème frontal', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6481, 0, 'fr', 'labels', 'backend.general_settings.layout_type', 'Type de disposition', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6482, 0, 'fr', 'labels', 'backend.general_settings.logos.title', 'Logos', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6483, 0, 'fr', 'labels', 'backend.general_settings.mail_configuration_note', 'Avez-vous configuré: Lier les paramètres de messagerie </a>? Il est obligatoire de configurer pour envoyer / recevoir des emails', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6484, 0, 'fr', 'labels', 'backend.general_settings.mail_driver', 'Pilote de courrier', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6485, 0, 'fr', 'labels', 'backend.general_settings.mail_from_address', 'Mail De Adresse', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6486, 0, 'fr', 'labels', 'backend.general_settings.mail_from_name', 'Mail De Nom', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6487, 0, 'fr', 'labels', 'backend.general_settings.mail_host', 'Mail Host', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6488, 0, 'fr', 'labels', 'backend.general_settings.mail_password', 'Mot de passe mail', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6489, 0, 'fr', 'labels', 'backend.general_settings.mail_port', 'Port de messagerie', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6490, 0, 'fr', 'labels', 'backend.general_settings.mail_username', 'Mail Nom d\'utilisateur', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6491, 0, 'fr', 'labels', 'backend.general_settings.management', 'réglages généraux', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6492, 0, 'fr', 'labels', 'backend.general_settings.newsletter.api_key', 'Clave API', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6493, 0, 'fr', 'labels', 'backend.general_settings.newsletter.api_key_note', 'Genere <b> clave de API </b> a partir de su <a target=\"_blank\" href=\"https://mailchimp.com/\"> <b> cuenta de Mailchimp </b> </a> y péguela arriba. caja de texto.', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6494, 0, 'fr', 'labels', 'backend.general_settings.newsletter.api_key_note_sendgrid', 'Générez une <b> clé API </b> à partir de votre <a target=\"_blank\" href=\"https://sendgrid.com/\"> <b> compte SendGrid </b> </a> et collez-le ci-dessus zone de texte.', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6495, 0, 'fr', 'labels', 'backend.general_settings.newsletter.api_key_question', 'Comment générer une clé API?', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6496, 0, 'fr', 'labels', 'backend.general_settings.newsletter.create_new', 'Créer et sélectionner un nouveau', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6497, 0, 'fr', 'labels', 'backend.general_settings.newsletter.double_opt_in', 'Double opt-in', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6498, 0, 'fr', 'labels', 'backend.general_settings.newsletter.double_opt_in_note', '<b> On </b> = L\'utilisateur sera invité par courrier électronique à s\'inscrire pour s\'abonner. <b> désactivé </b> = l\'utilisateur sera directement abonné au bulletin d\'information', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6499, 0, 'fr', 'labels', 'backend.general_settings.newsletter.get_lists', 'Obtenir des listes', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6500, 0, 'fr', 'labels', 'backend.general_settings.newsletter.list_id', 'ID de liste', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6501, 0, 'fr', 'labels', 'backend.general_settings.newsletter.list_id_note', 'Recherchez et collez <b> ID de liste </b> dans la zone ci-dessus.', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6502, 0, 'fr', 'labels', 'backend.general_settings.newsletter.list_id_question', 'Comment trouver l\'ID de liste de Mailchimp?', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6503, 0, 'fr', 'labels', 'backend.general_settings.newsletter.list_id_question_sendgrid', 'Créer une nouvelle liste de courrier électronique pour SendGrid ici.', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6504, 0, 'fr', 'labels', 'backend.general_settings.newsletter.mail_provider', 'Fournisseur de services de messagerie', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6505, 0, 'fr', 'labels', 'backend.general_settings.newsletter.mail_provider_note', '<b> Remarque </b>: vous pouvez sélectionner n\'importe quel fournisseur de service de messagerie pour recevoir tous les courriels utilisés pour <b> s\'abonner à la newsletter </b>. <br> Sélectionnez et configurez en fonction des étapes indiquées. <b> Il est obligatoire </b> si vous souhaitez utiliser le formulaire <b> Inscription à la newsletter </b>.', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6506, 0, 'fr', 'labels', 'backend.general_settings.newsletter.mailchimp', 'Mailchimp', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6507, 0, 'fr', 'labels', 'backend.general_settings.newsletter.manage_lists', 'Gérer les listes SendGrid', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6508, 0, 'fr', 'labels', 'backend.general_settings.newsletter.select_list', 'Liste de sélection', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6509, 0, 'fr', 'labels', 'backend.general_settings.newsletter.sendgrid', 'SendGrid', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6510, 0, 'fr', 'labels', 'backend.general_settings.newsletter.sendgrid_lists', 'Listes de messagerie SendGrid', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6511, 0, 'fr', 'labels', 'backend.general_settings.newsletter.title', 'Configuration de la newsletter', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6512, 0, 'fr', 'labels', 'backend.general_settings.password_expires_days', 'Mot de passe expire jours', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6513, 0, 'fr', 'labels', 'backend.general_settings.password_history', 'Historique du mot de passe', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6514, 0, 'fr', 'labels', 'backend.general_settings.payment_settings.client_id', 'identité du client', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6515, 0, 'fr', 'labels', 'backend.general_settings.payment_settings.client_secret', 'Secret', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6516, 0, 'fr', 'labels', 'backend.general_settings.payment_settings.how_to_paypal', 'Comment obtenir les informations d\'identification de l\'API PayPal?', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6517, 0, 'fr', 'labels', 'backend.general_settings.payment_settings.how_to_stripe', 'Comment obtenir les informations d\'identification de l\'API STRIPE?', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6518, 0, 'fr', 'labels', 'backend.general_settings.payment_settings.key', 'clé API', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6519, 0, 'fr', 'labels', 'backend.general_settings.payment_settings.live', 'Vivre', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6520, 0, 'fr', 'labels', 'backend.general_settings.payment_settings.mode', 'Mode', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6521, 0, 'fr', 'labels', 'backend.general_settings.payment_settings.mode_note', '<b> Sandbox </b> = Sera utilisé pour tester les paiements avec des informations d\'identification de test PayPal. Compte avec USD uniquement peut effectuer des paiements avec PayPal pour le moment. Cette option redirigera pour tester le paiement PayPal avec les informations d\'identification de l\'utilisateur Sandbox. Il sera utilisé uniquement pour les transactions fictives. <br>\n<b> Live </b> = Sera utilisé avec vos informations d\'identification Live PayPal pour effectuer des transactions réelles avec des utilisateurs normaux disposant d\'un compte PayPal.', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6522, 0, 'fr', 'labels', 'backend.general_settings.payment_settings.offline_mode', 'Méthode de paiement hors ligne', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6523, 0, 'fr', 'labels', 'backend.general_settings.payment_settings.offline_mode_note', 'L\'utilisateur obtient de l\'aide pour le paiement hors ligne via l\'administrateur', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6524, 0, 'fr', 'labels', 'backend.general_settings.payment_settings.paypal', 'Méthode de paiement Paypal', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6525, 0, 'fr', 'labels', 'backend.general_settings.payment_settings.paypal_note', 'Redirige vers paypal pour le paiement', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6526, 0, 'fr', 'labels', 'backend.general_settings.payment_settings.sandbox', 'Sandbox', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6527, 0, 'fr', 'labels', 'backend.general_settings.payment_settings.secret', 'Secret API', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6528, 0, 'fr', 'labels', 'backend.general_settings.payment_settings.stripe', 'Méthode de paiement Stripe', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6529, 0, 'fr', 'labels', 'backend.general_settings.payment_settings.stripe_note', 'Permet les paiements sur le site avec les cartes de débit / crédit', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6530, 0, 'fr', 'labels', 'backend.general_settings.payment_settings.title', 'Configuration du paiement', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6531, 0, 'fr', 'labels', 'backend.general_settings.payment_settings.select_currency', 'Sélectionnez la devise', '2019-09-12 23:34:55', '2020-05-14 12:20:11'), (6532, 0, 'fr', 'labels', 'backend.general_settings.payment_settings.bluesnap', 'Méthode de paiement Bluesnap', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6533, 0, 'fr', 'labels', 'backend.general_settings.payment_settings.bluesnap_note', 'Formulaire de carte Bluesnap pour le paiement', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6534, 0, 'fr', 'labels', 'backend.general_settings.payment_settings.how_to_bluesnap', 'Comment obtenir les informations d\'identification de l\'API Bluesnap?', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6535, 0, 'fr', 'labels', 'backend.general_settings.requires_approval', 'Nécessite une approbation', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6536, 0, 'fr', 'labels', 'backend.general_settings.sections_note', 'Une fois que vous cliquez sur mettre à jour, vous verrez la liste des sections à activer / désactiver.', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6537, 0, 'fr', 'labels', 'backend.general_settings.static', 'Statique', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6538, 0, 'fr', 'labels', 'backend.general_settings.theme_layout', 'Mise en page du thème', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6539, 0, 'fr', 'labels', 'backend.general_settings.title', 'Général', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6540, 0, 'fr', 'labels', 'backend.general_settings.total_courses', 'Entrez le nombre total de cours. Ex: 1K, 1000 etc.', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6541, 0, 'fr', 'labels', 'backend.general_settings.total_students', 'Entrez le nombre total d\'étudiants. Ex: 1K, 1Million, 1000 etc.', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6542, 0, 'fr', 'labels', 'backend.general_settings.total_teachers', 'Entrez le nombre total d\'enseignants. Ex: 1K, 1000 etc.', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6543, 0, 'fr', 'labels', 'backend.general_settings.captcha', 'Si l\'enregistrement - login captcha est activé ou désactivé', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6544, 0, 'fr', 'labels', 'backend.general_settings.captcha_note', 'Comment obtenir des informations d\'identification Google reCaptcha?', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6545, 0, 'fr', 'labels', 'backend.general_settings.captcha_site_key', 'Captcha Key', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6546, 0, 'fr', 'labels', 'backend.general_settings.captcha_site_secret', 'Captcha Secret', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6547, 0, 'fr', 'labels', 'backend.general_settings.captcha_status', 'Statut Captcha', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6548, 0, 'fr', 'labels', 'backend.general_settings.google_analytics_id', 'Identification Google Analytics', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6549, 0, 'fr', 'labels', 'backend.general_settings.google_analytics_id_note', 'Comment obtenir un identifiant Google Analytics?', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6550, 0, 'fr', 'labels', 'backend.general_settings.retest_note', 'Activer / Désactiver si l’utilisateur pourra effectuer un nouveau test pour le même examen', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6551, 0, 'fr', 'labels', 'backend.general_settings.language_settings.default_language', 'Langage par défaut', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6552, 0, 'fr', 'labels', 'backend.general_settings.language_settings.display_type', 'Type d\'affichage', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6553, 0, 'fr', 'labels', 'backend.general_settings.language_settings.left_to_right', 'De gauche à droite', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6554, 0, 'fr', 'labels', 'backend.general_settings.language_settings.right_to_left', 'De droite à gauche', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6555, 0, 'fr', 'labels', 'backend.general_settings.language_settings.title', 'Paramètres de langue', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6556, 0, 'fr', 'labels', 'backend.general_settings.user_registration_settings.desc', 'Les champs cochés de la barre latérale droite seront affichés dans le formulaire d\'inscription', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6557, 0, 'fr', 'labels', 'backend.general_settings.user_registration_settings.fields.address', 'Adresse', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6558, 0, 'fr', 'labels', 'backend.general_settings.user_registration_settings.fields.city', 'Ville', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6559, 0, 'fr', 'labels', 'backend.general_settings.user_registration_settings.fields.country', 'Pays', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6560, 0, 'fr', 'labels', 'backend.general_settings.user_registration_settings.fields.dob', 'Date de naissance', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6561, 0, 'fr', 'labels', 'backend.general_settings.user_registration_settings.fields.email', 'Email', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6562, 0, 'fr', 'labels', 'backend.general_settings.user_registration_settings.fields.female', 'Femelle', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6563, 0, 'fr', 'labels', 'backend.general_settings.user_registration_settings.fields.first_name', 'Prénom', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6564, 0, 'fr', 'labels', 'backend.general_settings.user_registration_settings.fields.gender', 'Le sexe', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6565, 0, 'fr', 'labels', 'backend.general_settings.user_registration_settings.fields.last_name', 'Nom de famille', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6566, 0, 'fr', 'labels', 'backend.general_settings.user_registration_settings.fields.male', 'Mâle', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6567, 0, 'fr', 'labels', 'backend.general_settings.user_registration_settings.fields.other', 'Autre', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6568, 0, 'fr', 'labels', 'backend.general_settings.user_registration_settings.fields.password', 'Mot de passe', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6569, 0, 'fr', 'labels', 'backend.general_settings.user_registration_settings.fields.phone', 'Téléphone', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6570, 0, 'fr', 'labels', 'backend.general_settings.user_registration_settings.fields.pincode', 'Code PIN', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6571, 0, 'fr', 'labels', 'backend.general_settings.user_registration_settings.fields.state', 'Etat', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6572, 0, 'fr', 'labels', 'backend.general_settings.user_registration_settings.title', 'Paramètres d\'inscription de l\'utilisateur', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6573, 0, 'fr', 'labels', 'backend.general_settings.lesson_note', 'Activer / Désactiver si l\'utilisateur peut sauter avant la fin du temps', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6574, 0, 'fr', 'labels', 'backend.general_settings.troubleshoot', 'Dépanner', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6575, 0, 'fr', 'labels', 'backend.general_settings.show_offers_note', 'Activer / Désactiver si Coupon propose d’afficher le lien de page en bas de page', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6576, 0, 'fr', 'labels', 'backend.general_settings.how_to_onesignal', 'Comment créer une application dans OneSignal?', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6577, 0, 'fr', 'labels', 'backend.general_settings.onesignal_note', 'Activer / désactiver la configuration OneSignal pour le site Web.', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6578, 0, 'fr', 'labels', 'backend.general_settings.setup_onesignal', 'Comment configurer OneSignal?', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6579, 0, 'fr', 'labels', 'backend.hero_slider.create', 'Créer une diapositive', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6580, 0, 'fr', 'labels', 'backend.hero_slider.edit', 'Modifier la diapositive', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6581, 0, 'fr', 'labels', 'backend.hero_slider.fields.bg_image', 'BG Image', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6582, 0, 'fr', 'labels', 'backend.hero_slider.fields.buttons.add', 'Add', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6583, 0, 'fr', 'labels', 'backend.hero_slider.fields.buttons.label', 'Étiquette', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6584, 0, 'fr', 'labels', 'backend.hero_slider.fields.buttons.link', 'Lien', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6585, 0, 'fr', 'labels', 'backend.hero_slider.fields.buttons.note', 'Remarque: 4 boutons maximum peuvent être ajoutés. S\'il vous plaît ajouter une étiquette et un lien pour le bouton pour rediriger l\'action lorsque le bouton est cliqué.', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6586, 0, 'fr', 'labels', 'backend.hero_slider.fields.buttons.name', 'Bouton', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6587, 0, 'fr', 'labels', 'backend.hero_slider.fields.buttons.placeholder', 'Ajouter le nombre de boutons que vous souhaitez ajouter', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6588, 0, 'fr', 'labels', 'backend.hero_slider.fields.buttons.title', 'Boutons', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6589, 0, 'fr', 'labels', 'backend.hero_slider.fields.hero_text', 'Texte du héros', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6590, 0, 'fr', 'labels', 'backend.hero_slider.fields.name', 'prénom', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6591, 0, 'fr', 'labels', 'backend.hero_slider.fields.overlay.note', 'Si vous l\'allumez. Une superposition noire sera affichée sur votre image. Cela sera utile lorsque l\'image de la glycémie n\'est pas plus sombre ou n\'a pas de superposition', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6592, 0, 'fr', 'labels', 'backend.hero_slider.fields.overlay.title', 'Recouvrir', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6593, 0, 'fr', 'labels', 'backend.hero_slider.fields.sequence', 'Séquence', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6594, 0, 'fr', 'labels', 'backend.hero_slider.fields.status', 'Statut', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6595, 0, 'fr', 'labels', 'backend.hero_slider.fields.sub_text', 'Sous-texte', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6596, 0, 'fr', 'labels', 'backend.hero_slider.fields.widget.countdown_timer', 'Compte à rebours', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6597, 0, 'fr', 'labels', 'backend.hero_slider.fields.widget.input_date_time', 'Date et heure d\'entrée', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6598, 0, 'fr', 'labels', 'backend.hero_slider.fields.widget.search_bar', 'Barre de recherche', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6599, 0, 'fr', 'labels', 'backend.hero_slider.fields.widget.select_widget', 'Sélectionner un widget', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6600, 0, 'fr', 'labels', 'backend.hero_slider.fields.widget.title', 'Widget', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6601, 0, 'fr', 'labels', 'backend.hero_slider.manage_sequence', 'Gérer la séquence de diapositives', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6602, 0, 'fr', 'labels', 'backend.hero_slider.note', 'Remarque: téléchargez le fichier .jpg ou .png en résolution <b> 1920x900 </b> pour obtenir les meilleurs résultats. Utilisez des images plus sombres ou superposées pour un meilleur résultat.', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6603, 0, 'fr', 'labels', 'backend.hero_slider.off', 'De', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6604, 0, 'fr', 'labels', 'backend.hero_slider.on', 'Sur', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6605, 0, 'fr', 'labels', 'backend.hero_slider.save_sequence', 'Enregistrer la séquence', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6606, 0, 'fr', 'labels', 'backend.hero_slider.sequence_note', 'Faites glisser et modifier la séquence d\'une diapositive', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6607, 0, 'fr', 'labels', 'backend.hero_slider.title', 'Curseur de héros', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6608, 0, 'fr', 'labels', 'backend.hero_slider.view', 'Voir les diapositives', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6609, 0, 'fr', 'labels', 'backend.invoices.fields.amount', 'Montant', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6610, 0, 'fr', 'labels', 'backend.invoices.fields.download', 'Télécharger', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6611, 0, 'fr', 'labels', 'backend.invoices.fields.order_date', 'Date de commande', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6612, 0, 'fr', 'labels', 'backend.invoices.fields.view', 'Vue', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6613, 0, 'fr', 'labels', 'backend.invoices.title', 'Factures', '2019-09-12 23:34:56', '2020-05-14 12:20:11'), (6614, 0, 'fr', 'labels', 'backend.logo.favicon', 'Ajouter un favicon', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6615, 0, 'fr', 'labels', 'backend.logo.favicon_note', 'Remarque: Téléchargez le logo avec une résolution <b> 32x32 </b> pixels et une extension <b> .png </b> ou <b> .gif </b> ou <b> .ico </b>.', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6616, 0, 'fr', 'labels', 'backend.logo.logo_b', 'Logo 1', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6617, 0, 'fr', 'labels', 'backend.logo.logo_b_note', 'Remarque: Téléchargez le logo avec <b> texte noir et fond transparent au format .png </b> et <b> 294x50 </b> (WxH) pixels. <br> <b> Hauteur </b> doit être corrigé, <b> largeur </b> en fonction de votre <b> format d\'image </b>.', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6618, 0, 'fr', 'labels', 'backend.logo.logo_popup', 'Logo pour Popups', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6619, 0, 'fr', 'labels', 'backend.logo.logo_popup_note', 'Remarque: ajoutez une résolution minimale du logo carré <b> 72x72 </b> pixels.', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6620, 0, 'fr', 'labels', 'backend.logo.logo_w', 'Logo 2', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6621, 0, 'fr', 'labels', 'backend.logo.logo_white', 'Logo 3', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6622, 0, 'fr', 'labels', 'backend.logo.logo_w_note', 'Remarque: Téléchargez le logo avec <b> texte blanc et fond transparent au format .png </b> et <b> 294x50 </b> (WxH) pixels. <br> <b> Hauteur </b> doit être corrigé, <b> largeur </b> en fonction de votre <b> format d\'image </b>.', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6623, 0, 'fr', 'labels', 'backend.logo.logo_white_note', 'Remarque: Téléchargez le logo avec <b> uniquement des textes en blanc et un arrière-plan transparent au format .png </b> et <b> 294x50 </b> (WxH) pixels. <br> <b> Hauteur </b> fixé, <b> largeur </b> en fonction de votre <b> format d\'image </b>.', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6624, 0, 'fr', 'labels', 'backend.logo.title', 'Changer le logo', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6625, 0, 'fr', 'labels', 'backend.menu-manager.title', 'Gestionnaire de menu', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6626, 0, 'fr', 'labels', 'backend.messages.compose', 'Composer', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6627, 0, 'fr', 'labels', 'backend.messages.search_user', 'Rechercher un utilisateur', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6628, 0, 'fr', 'labels', 'backend.messages.select_recipients', 'Sélectionner les destinataires', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6629, 0, 'fr', 'labels', 'backend.messages.start_conversation', 'Commencer une conversation', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6630, 0, 'fr', 'labels', 'backend.messages.title', 'messages', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6631, 0, 'fr', 'labels', 'backend.messages.type_a_message', 'Tapez un message', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6632, 0, 'fr', 'labels', 'backend.orders.complete', 'Terminer manuellement', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6633, 0, 'fr', 'labels', 'backend.orders.download_invoice', 'Télécharger la facture', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6634, 0, 'fr', 'labels', 'backend.orders.fields.amount', 'Montant', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6635, 0, 'fr', 'labels', 'backend.orders.fields.date', 'Date de commande', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6636, 0, 'fr', 'labels', 'backend.orders.fields.items', 'Articles', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6637, 0, 'fr', 'labels', 'backend.orders.fields.ordered_by', 'Commander par', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6638, 0, 'fr', 'labels', 'backend.orders.fields.payment_status.completed', 'Terminé', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6639, 0, 'fr', 'labels', 'backend.orders.fields.payment_status.failed', 'Échoué', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6640, 0, 'fr', 'labels', 'backend.orders.fields.payment_status.pending', 'en attendant', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6641, 0, 'fr', 'labels', 'backend.orders.fields.payment_status.title', 'Paiement', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6642, 0, 'fr', 'labels', 'backend.orders.fields.payment_type.offline', 'Hors ligne', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6643, 0, 'fr', 'labels', 'backend.orders.fields.payment_type.paypal', 'Paypal', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6644, 0, 'fr', 'labels', 'backend.orders.fields.payment_type.stripe', 'Carte de crédit / débit (Stripe passerelle de paiement)', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6645, 0, 'fr', 'labels', 'backend.orders.fields.payment_type.title', 'Type de paiement', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6646, 0, 'fr', 'labels', 'backend.orders.fields.reference_no', 'Numéro de référence.', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6647, 0, 'fr', 'labels', 'backend.orders.fields.user_email', 'Email de l\'utilisateur', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6648, 0, 'fr', 'labels', 'backend.orders.offline_requests', 'Demandes hors ligne', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6649, 0, 'fr', 'labels', 'backend.orders.title', 'Ordres', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6650, 0, 'fr', 'labels', 'backend.orders.view_invoice', 'Voir la facture', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6651, 0, 'fr', 'labels', 'backend.questions.create', 'Créer une question', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6652, 0, 'fr', 'labels', 'backend.questions.edit', 'Modifier la question', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6653, 0, 'fr', 'labels', 'backend.questions.fields.correct', 'Correct', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6654, 0, 'fr', 'labels', 'backend.questions.fields.course', 'Cours', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6655, 0, 'fr', 'labels', 'backend.questions.fields.lesson', 'Leçon', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6656, 0, 'fr', 'labels', 'backend.questions.fields.option_text', 'Texte d\'option', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6657, 0, 'fr', 'labels', 'backend.questions.fields.question', 'Question', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6658, 0, 'fr', 'labels', 'backend.questions.fields.question_image', 'Question Image', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6659, 0, 'fr', 'labels', 'backend.questions.fields.score', 'But', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6660, 0, 'fr', 'labels', 'backend.questions.fields.tests', 'Des tests', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6661, 0, 'fr', 'labels', 'backend.questions.fields.title', 'Titre', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6662, 0, 'fr', 'labels', 'backend.questions.fields.option_explanation', 'Option Explication', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6663, 0, 'fr', 'labels', 'backend.questions.title', 'Des questions', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6664, 0, 'fr', 'labels', 'backend.questions.view', 'Voir les questions', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6665, 0, 'fr', 'labels', 'backend.questions.test', 'Tester', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6666, 0, 'fr', 'labels', 'backend.questions_options.create', 'Créer une option', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6667, 0, 'fr', 'labels', 'backend.questions_options.edit', 'Option d\'édition', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6668, 0, 'fr', 'labels', 'backend.questions_options.fields.correct', 'Correct', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6669, 0, 'fr', 'labels', 'backend.questions_options.fields.course', 'Cours', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6670, 0, 'fr', 'labels', 'backend.questions_options.fields.lesson', 'Leçon', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6671, 0, 'fr', 'labels', 'backend.questions_options.fields.title', 'Titre', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6672, 0, 'fr', 'labels', 'backend.questions_options.fields.question', 'Question', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6673, 0, 'fr', 'labels', 'backend.questions_options.fields.question_option', 'Option de question', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6674, 0, 'fr', 'labels', 'backend.questions_options.fields.score', 'But', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6675, 0, 'fr', 'labels', 'backend.questions_options.fields.tests', 'Des tests', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6676, 0, 'fr', 'labels', 'backend.questions_options.fields.option_text', 'Texte d\'option', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6677, 0, 'fr', 'labels', 'backend.questions_options.title', 'Option de questions', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6678, 0, 'fr', 'labels', 'backend.questions_options.view', 'Voir les options de question', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6679, 0, 'fr', 'labels', 'backend.reviews.fields.course', 'Cours', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6680, 0, 'fr', 'labels', 'backend.reviews.fields.content', 'Contenu', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6681, 0, 'fr', 'labels', 'backend.reviews.fields.time', 'Temps', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6682, 0, 'fr', 'labels', 'backend.reviews.fields.user', 'Utilisateur', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6683, 0, 'fr', 'labels', 'backend.reviews.title', 'Avis', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6684, 0, 'fr', 'labels', 'backend.reasons.create', 'Créer une raison', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6685, 0, 'fr', 'labels', 'backend.reasons.edit', 'Modifier le motif', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6686, 0, 'fr', 'labels', 'backend.reasons.fields.content', 'Contenu', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6687, 0, 'fr', 'labels', 'backend.reasons.fields.icon', 'Icône', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6688, 0, 'fr', 'labels', 'backend.reasons.fields.status', 'Statut', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6689, 0, 'fr', 'labels', 'backend.reasons.fields.title', 'Titre', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6690, 0, 'fr', 'labels', 'backend.reasons.note', 'Les raisons seront affichées sous forme de curseur sur la page d\'accueil, comme ci-dessous', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6691, 0, 'fr', 'labels', 'backend.reasons.title', 'Les raisons', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6692, 0, 'fr', 'labels', 'backend.reasons.view', 'Voir les motifs', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6693, 0, 'fr', 'labels', 'backend.social_settings.fb_api_note', 'Comment obtenir les informations d\'identification de l\'API Facebook?', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6694, 0, 'fr', 'labels', 'backend.social_settings.fb_note', 'Activer / désactiver la connexion à Facebook pour le site Web', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6695, 0, 'fr', 'labels', 'backend.social_settings.google_api_note', 'Comment obtenir les informations d\'identification de l\'API Google?', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6696, 0, 'fr', 'labels', 'backend.social_settings.google_note', 'Activer / désactiver la connexion à Google pour le site Web', '2019-09-12 23:34:57', '2020-05-14 12:20:11'), (6697, 0, 'fr', 'labels', 'backend.social_settings.management', 'Paramètres sociaux', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6698, 0, 'fr', 'labels', 'backend.social_settings.twitter_api_note', 'Comment obtenir les informations d\'identification de l\'API Twitter?', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6699, 0, 'fr', 'labels', 'backend.social_settings.twitter_note', 'Activer / désactiver la connexion à Twitter pour le site Web', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6700, 0, 'fr', 'labels', 'backend.social_settings.linkedin_api_note', 'Comment obtenir les informations d\'identification de l\'API LinkedIn?', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6701, 0, 'fr', 'labels', 'backend.social_settings.linkedin_note', 'Activer / désactiver la connexion à LinkedIn pour le site Web', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6702, 0, 'fr', 'labels', 'backend.sponsors.create', 'Créer des sponsors', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6703, 0, 'fr', 'labels', 'backend.sponsors.edit', 'Crear patrocinadores', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6704, 0, 'fr', 'labels', 'backend.sponsors.fields.link', 'Lien', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6705, 0, 'fr', 'labels', 'backend.sponsors.fields.logo', 'Logo', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6706, 0, 'fr', 'labels', 'backend.sponsors.fields.name', 'prénom', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6707, 0, 'fr', 'labels', 'backend.sponsors.fields.status', 'Statut', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6708, 0, 'fr', 'labels', 'backend.sponsors.title', 'Sponsors', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6709, 0, 'fr', 'labels', 'backend.sponsors.view', 'Voir les sponsors', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6710, 0, 'fr', 'labels', 'backend.teachers.create', 'Créer un enseignant', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6711, 0, 'fr', 'labels', 'backend.teachers.edit', 'Editer le professeur', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6712, 0, 'fr', 'labels', 'backend.teachers.fields.email', 'Adresse électronique', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6713, 0, 'fr', 'labels', 'backend.teachers.fields.first_name', 'Prénom', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6714, 0, 'fr', 'labels', 'backend.teachers.fields.image', 'Image', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6715, 0, 'fr', 'labels', 'backend.teachers.fields.last_name', 'Nom de famille', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6716, 0, 'fr', 'labels', 'backend.teachers.fields.password', 'Mot de passe', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6717, 0, 'fr', 'labels', 'backend.teachers.fields.status', 'Statut', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6718, 0, 'fr', 'labels', 'backend.teachers.title', 'Enseignants', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6719, 0, 'fr', 'labels', 'backend.teachers.view', 'Voir les professeurs', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6720, 0, 'fr', 'labels', 'backend.testimonials.create', 'Créer un témoignage', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6721, 0, 'fr', 'labels', 'backend.testimonials.edit', 'Modifier le témoignage', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6722, 0, 'fr', 'labels', 'backend.testimonials.fields.content', 'Contenu', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6723, 0, 'fr', 'labels', 'backend.testimonials.fields.name', 'prénom', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6724, 0, 'fr', 'labels', 'backend.testimonials.fields.occupation', 'Occupation', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6725, 0, 'fr', 'labels', 'backend.testimonials.fields.status', 'Statut', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6726, 0, 'fr', 'labels', 'backend.testimonials.title', 'Témoignages', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6727, 0, 'fr', 'labels', 'backend.testimonials.view', 'Voir les témoignages', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6728, 0, 'fr', 'labels', 'backend.tests.create', 'Créer un test', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6729, 0, 'fr', 'labels', 'backend.tests.edit', 'Modifier le test', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6730, 0, 'fr', 'labels', 'backend.tests.fields.course', 'Cours', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6731, 0, 'fr', 'labels', 'backend.tests.fields.description', 'La description', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6732, 0, 'fr', 'labels', 'backend.tests.fields.lesson', 'Leçon', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6733, 0, 'fr', 'labels', 'backend.tests.fields.published', 'Publié', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6734, 0, 'fr', 'labels', 'backend.tests.fields.questions', 'Des questions', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6735, 0, 'fr', 'labels', 'backend.tests.fields.title', 'Titre', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6736, 0, 'fr', 'labels', 'backend.tests.title', 'Des tests', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6737, 0, 'fr', 'labels', 'backend.tests.view', 'Voir les tests', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6738, 0, 'fr', 'labels', 'backend.translations.add_new_locale', 'Ajouter une nouvelle locale', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6739, 0, 'fr', 'labels', 'backend.translations.adding', 'Ajouter...', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6740, 0, 'fr', 'labels', 'backend.translations.append_new_translations', 'Ajouter de nouvelles traductions', '2019-09-12 23:34:58', '2020-05-14 12:20:11'); INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES (6741, 0, 'fr', 'labels', 'backend.translations.choose_a_group', 'Choisissez un groupe pour afficher les traductions du groupe. Si aucun groupe n\'est visible, assurez-vous vous avez exécuté les migrations et importé les traductions.', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6742, 0, 'fr', 'labels', 'backend.translations.changed', 'Modifié', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6743, 0, 'fr', 'labels', 'backend.translations.current_supported_locales', 'Paramètres régionaux pris en charge actuellement', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6744, 0, 'fr', 'labels', 'backend.translations.done_importing', 'Importation terminée, articles <strong class = \"counter\"> N </strong> traités! Recharger cette page pour rafraîchir les groupes!', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6745, 0, 'fr', 'labels', 'backend.translations.done_publishing_for_all_groups', 'Terminé la publication des traductions pour tout le groupe!', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6746, 0, 'fr', 'labels', 'backend.translations.done_publishing_for_group', 'Terminé la publication des traductions pour le groupe', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6747, 0, 'fr', 'labels', 'backend.translations.done_searching', 'Terminé la recherche des traductions, <strong class = \"counter\"> éléments N </strong> trouvés!', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6748, 0, 'fr', 'labels', 'backend.translations.enter_new_locale_key', 'Entrez la nouvelle clé locale', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6749, 0, 'fr', 'labels', 'backend.translations.export_all_translations', 'Exporter toutes les traductions', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6750, 0, 'fr', 'labels', 'backend.translations.import_groups', 'Groupes d\'importation', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6751, 0, 'fr', 'labels', 'backend.translations.import_groups_note', '<p> Ceci récupérera tous les fichiers de paramètres régionaux du dossier <code> lang </code> et les insérera dans la base de données. <br> <b> Ajoute les nouvelles traductions: </b> données <b> et </b>\n <b> Remplacer les traductions existantes: </b> Il remplacera les enregistrements existants en fonction des fichiers </p>', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6752, 0, 'fr', 'labels', 'backend.translations.key', 'Clé', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6753, 0, 'fr', 'labels', 'backend.translations.publish_all', 'Publier tout', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6754, 0, 'fr', 'labels', 'backend.translations.publish_all_warning', 'Êtes-vous sûr de vouloir publier tous les groupes de traductions? Cela écrasera les fichiers de langue existants.', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6755, 0, 'fr', 'labels', 'backend.translations.publish_translations', 'Publier des traductions', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6756, 0, 'fr', 'labels', 'backend.translations.publishing', 'Édition..', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6757, 0, 'fr', 'labels', 'backend.translations.replace_existing_translations', 'Remplacer les traductions existantes', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6758, 0, 'fr', 'labels', 'backend.translations.supported_locales', 'Locales prises en charge', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6759, 0, 'fr', 'labels', 'backend.translations.title', 'Responsable de la traduction', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6760, 0, 'fr', 'labels', 'backend.translations.total', 'Total', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6761, 0, 'fr', 'labels', 'backend.translations.translation_warning', 'Êtes-vous sûr de vouloir publier le groupe de traductions :group ? Cela écrasera les fichiers de langue existants', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6762, 0, 'fr', 'labels', 'backend.translations.warning', 'Attention, les traductions ne sont visibles qu’après leur exportation dans le fichier app / lang, à l’aide de Commande <code> php artisan translation:export </code> ou bouton de publication.', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6763, 0, 'fr', 'labels', 'backend.update.current_version', 'Version actuelle', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6764, 0, 'fr', 'labels', 'backend.update.file_replaced', 'Les fichiers suivants seront mis à jour / remplacés', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6765, 0, 'fr', 'labels', 'backend.update.note_before_upload', '<p> <b> Veuillez effectuer une sauvegarde avant la mise à jour. </b> Un fichier zip mis à jour peut être fourni avec de nouveaux dossiers et mises à jour de fichiers. <b> Vos fichiers actuels seront remplacés par de nouveaux </b>. Ainsi, <b> si vous avez apporté des modifications aux fichiers de l\'application en cours, ce sera PERDU </b>. </p>\n <p> Si vous téléchargez directement depuis la zone de saisie de fichier ci-dessous, vos fichiers seront remplacés. Nous vous recommandons vivement de procéder au remplacement manuel des fichiers un par un ou de modifier les modifications en comparant votre fichier modifié actuel et les nouveaux fichiers mis à jour. </p>\n <p> Si vous avez encore de la confusion. S\'il vous plaît contactez-nous, nous vous guiderons pour mettre à jour votre application </p>', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6766, 0, 'fr', 'labels', 'backend.update.note_before_upload_title', 'Lire les notes suivantes avant la mise à jour', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6767, 0, 'fr', 'labels', 'backend.update.title', 'Thème de mise à jour', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6768, 0, 'fr', 'labels', 'backend.update.upload', 'Télécharger la nouvelle version <small> (update.zip) </small>', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6769, 0, 'fr', 'labels', 'backend.update.warning', '<b> AVERTISSEMENT: nous vous recommandons vivement de mettre à jour le thème par numéro de version </b>. <br> <b> Exemple: </b> update_v1.zip, update_v2.zip. S\'il vous plaît ne sautez pas le numéro de version. Si votre numéro de version est 1 et que vous souhaitez le mettre à jour, passez à la version 2. Ne mettez pas à jour directement à la version 3.', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6770, 0, 'fr', 'labels', 'backend.certificates.download', 'Télécharger', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6771, 0, 'fr', 'labels', 'backend.certificates.fields.action', 'action', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6772, 0, 'fr', 'labels', 'backend.certificates.fields.course_name', 'Nom du cours', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6773, 0, 'fr', 'labels', 'backend.certificates.fields.progress', 'Le progrès', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6774, 0, 'fr', 'labels', 'backend.certificates.title', 'Certificats', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6775, 0, 'fr', 'labels', 'backend.certificates.view', 'Vue', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6776, 0, 'fr', 'labels', 'backend.bundles.fields.slug', 'Limace', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6777, 0, 'fr', 'labels', 'backend.bundles.fields.status', 'Statut', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6778, 0, 'fr', 'labels', 'backend.bundles.fields.category', 'Catégorie', '2019-09-12 23:34:58', '2020-05-14 12:20:11'), (6779, 0, 'fr', 'labels', 'backend.bundles.fields.course', 'Cours', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6780, 0, 'fr', 'labels', 'backend.bundles.fields.course_image', 'Image du cours', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6781, 0, 'fr', 'labels', 'backend.bundles.fields.description', 'La description', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6782, 0, 'fr', 'labels', 'backend.bundles.fields.featured', 'En vedette', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6783, 0, 'fr', 'labels', 'backend.bundles.fields.lessons.add', 'Ajouter des leçons', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6784, 0, 'fr', 'labels', 'backend.bundles.fields.lessons.view', 'Voir les leçons', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6785, 0, 'fr', 'labels', 'backend.bundles.fields.meta_description', 'Meta Description', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6786, 0, 'fr', 'labels', 'backend.bundles.fields.meta_keywords', 'Méta Mots-clés', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6787, 0, 'fr', 'labels', 'backend.bundles.fields.meta_title', 'Meta Title', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6788, 0, 'fr', 'labels', 'backend.bundles.fields.popular', 'Populaire', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6789, 0, 'fr', 'labels', 'backend.bundles.fields.price', 'Prix', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6790, 0, 'fr', 'labels', 'backend.bundles.fields.published', 'Publié', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6791, 0, 'fr', 'labels', 'backend.bundles.fields.sidebar', 'Ajouter une barre latérale', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6792, 0, 'fr', 'labels', 'backend.bundles.fields.start_date', 'Date de début', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6793, 0, 'fr', 'labels', 'backend.bundles.fields.teachers', 'Enseignants', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6794, 0, 'fr', 'labels', 'backend.bundles.fields.title', 'Titre', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6795, 0, 'fr', 'labels', 'backend.bundles.fields.trending', 'Tendances', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6796, 0, 'fr', 'labels', 'backend.bundles.fields.courses', 'Cours', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6797, 0, 'fr', 'labels', 'backend.bundles.fields.free', 'Libre', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6798, 0, 'fr', 'labels', 'backend.bundles.add_categories', 'Ajouter des catégories', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6799, 0, 'fr', 'labels', 'backend.bundles.add_teachers', 'Ajouter des professeurs', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6800, 0, 'fr', 'labels', 'backend.bundles.category', 'Catégorie', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6801, 0, 'fr', 'labels', 'backend.bundles.course_timeline', 'Chronologie du cours', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6802, 0, 'fr', 'labels', 'backend.bundles.create', 'Créer un paquet', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6803, 0, 'fr', 'labels', 'backend.bundles.edit', 'Editer Bundle', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6804, 0, 'fr', 'labels', 'backend.bundles.lesson', 'Leçon', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6805, 0, 'fr', 'labels', 'backend.bundles.listing_note', 'Seuls les cours et tests publiés seront affichés et triés.', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6806, 0, 'fr', 'labels', 'backend.bundles.save_timeline', 'Enregistrer la chronologie', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6807, 0, 'fr', 'labels', 'backend.bundles.select_category', 'Choisir une catégorie', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6808, 0, 'fr', 'labels', 'backend.bundles.select_teachers', 'Sélectionner les enseignants', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6809, 0, 'fr', 'labels', 'backend.bundles.slug_placeholder', 'Slug d\'entrée ou il sera généré automatiquement', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6810, 0, 'fr', 'labels', 'backend.bundles.test', 'Tester', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6811, 0, 'fr', 'labels', 'backend.bundles.timeline_description', 'Faites glisser et modifier la séquence de leçons / tests pour le cours', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6812, 0, 'fr', 'labels', 'backend.bundles.title', 'Liasses', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6813, 0, 'fr', 'labels', 'backend.bundles.view', 'Voir les lots', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6814, 0, 'fr', 'labels', 'backend.bundles.add_courses', 'Ajouter des cours', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6815, 0, 'fr', 'labels', 'backend.bundles.select_courses', 'Sélectionnez des cours', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6816, 0, 'fr', 'labels', 'backend.reports.bundles', 'Liasses', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6817, 0, 'fr', 'labels', 'backend.reports.courses', 'Cours', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6818, 0, 'fr', 'labels', 'backend.reports.fields.bundle', 'Paquet', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6819, 0, 'fr', 'labels', 'backend.reports.fields.completed', 'Cours terminé', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6820, 0, 'fr', 'labels', 'backend.reports.fields.content', 'Contenu', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6821, 0, 'fr', 'labels', 'backend.reports.fields.course', 'Cours', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6822, 0, 'fr', 'labels', 'backend.reports.fields.earnings', 'Gains', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6823, 0, 'fr', 'labels', 'backend.reports.fields.name', 'prénom', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6824, 0, 'fr', 'labels', 'backend.reports.fields.orders', 'Ordres', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6825, 0, 'fr', 'labels', 'backend.reports.fields.students', 'Étudiants', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6826, 0, 'fr', 'labels', 'backend.reports.fields.time', 'Temps', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6827, 0, 'fr', 'labels', 'backend.reports.fields.user', 'Utilisateur', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6828, 0, 'fr', 'labels', 'backend.reports.sales_report', 'Rapport des ventes', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6829, 0, 'fr', 'labels', 'backend.reports.students_report', 'Rapport d\'étudiants', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6830, 0, 'fr', 'labels', 'backend.reports.title', 'Rapports', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6831, 0, 'fr', 'labels', 'backend.reports.total_earnings', 'Total des gains', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6832, 0, 'fr', 'labels', 'backend.reports.total_sales', 'Ventes totales', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6833, 0, 'fr', 'labels', 'backend.coupons.amount_note', 'Si <b> Taux de remise </b> est sélectionné, saisissez un taux de pourcentage. Si <b> Taux fixe </b> est sélectionné, indiquez le montant à déduire.', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6834, 0, 'fr', 'labels', 'backend.coupons.bundles', 'Liasses', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6835, 0, 'fr', 'labels', 'backend.coupons.courses', 'Cours', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6836, 0, 'fr', 'labels', 'backend.coupons.create', 'Créer un coupon', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6837, 0, 'fr', 'labels', 'backend.coupons.description', 'La description', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6838, 0, 'fr', 'labels', 'backend.coupons.discount_rate', 'Taux de remise', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6839, 0, 'fr', 'labels', 'backend.coupons.edit', 'Modifier le coupon', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6840, 0, 'fr', 'labels', 'backend.coupons.fields.amount', 'Montante', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6841, 0, 'fr', 'labels', 'backend.coupons.fields.code', 'Code', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6842, 0, 'fr', 'labels', 'backend.coupons.fields.description', 'La description', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6843, 0, 'fr', 'labels', 'backend.coupons.fields.expires_at', 'Expire le', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6844, 0, 'fr', 'labels', 'backend.coupons.fields.for', 'Pour', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6845, 0, 'fr', 'labels', 'backend.coupons.fields.min_price', 'Prix minimum de commande', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6846, 0, 'fr', 'labels', 'backend.coupons.fields.name', 'prénom', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6847, 0, 'fr', 'labels', 'backend.coupons.fields.per_user_limit', 'Limite par utilisateur', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6848, 0, 'fr', 'labels', 'backend.coupons.fields.status', 'Statut', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6849, 0, 'fr', 'labels', 'backend.coupons.fields.total', 'Totale', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6850, 0, 'fr', 'labels', 'backend.coupons.fields.type', 'Type', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6851, 0, 'fr', 'labels', 'backend.coupons.flat_rate', 'Forfait', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6852, 0, 'fr', 'labels', 'backend.coupons.off', 'De', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6853, 0, 'fr', 'labels', 'backend.coupons.on', 'Sur', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6854, 0, 'fr', 'labels', 'backend.coupons.per_user_limit_note', 'Spécifiez combien de fois un utilisateur unique peut utiliser ce coupon. Par défaut, une utilisation unique.', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6855, 0, 'fr', 'labels', 'backend.coupons.title', 'Coupons', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6856, 0, 'fr', 'labels', 'backend.coupons.total_note', 'Nombre de coupons à émettre', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6857, 0, 'fr', 'labels', 'backend.coupons.type_note', '<b> Taux de remise (%): </b> Si vous sélectionnez cette option, le taux appliqué sera en% du total des achats. Ex. Prix = 100 $ et le taux d\'escompte est de 10%, puis 10% de 100 $ seront déduits. <br> <b> Taux forfaitaire: </b> Si vous sélectionnez cette option, un montant particulier sera déduit du montant total de l\'achat. Ex. Prix = 100 $ et le forfait est de 25 $, puis 25 $ seront déduits de 100 $.', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6858, 0, 'fr', 'labels', 'backend.coupons.unlimited', 'Illimitée', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6859, 0, 'fr', 'labels', 'backend.coupons.view', 'Voir les coupons', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6860, 0, 'fr', 'labels', 'backend.sitemap.daily', 'du quotidien', '2019-09-12 23:34:59', '2020-05-14 12:20:11'), (6861, 0, 'fr', 'labels', 'backend.sitemap.generate', 'produire', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6862, 0, 'fr', 'labels', 'backend.sitemap.generated', 'Plan du site généré avec succès.', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6863, 0, 'fr', 'labels', 'backend.sitemap.monthly', 'Mensuelle', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6864, 0, 'fr', 'labels', 'backend.sitemap.records_note', 'Nombre d\'enregistrements par fichier.', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6865, 0, 'fr', 'labels', 'backend.sitemap.records_per_file', 'Records par fichier', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6866, 0, 'fr', 'labels', 'backend.sitemap.sitemap_note', 'Cet outil de plan du site générera un plan du site pour les cours, les ensembles et les blogs publiés.', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6867, 0, 'fr', 'labels', 'backend.sitemap.title', 'Plan du site', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6868, 0, 'fr', 'labels', 'backend.sitemap.weekly', 'Hebdomadaire', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6869, 0, 'fr', 'labels', 'backend.tax.create', 'Créer une taxe', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6870, 0, 'fr', 'labels', 'backend.tax.edit', 'Modifier la taxe', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6871, 0, 'fr', 'labels', 'backend.tax.fields.name', 'prénom', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6872, 0, 'fr', 'labels', 'backend.tax.fields.rate', 'Taux', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6873, 0, 'fr', 'labels', 'backend.tax.fields.status', 'Statut', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6874, 0, 'fr', 'labels', 'backend.tax.off', 'De', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6875, 0, 'fr', 'labels', 'backend.tax.on', 'Sur', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6876, 0, 'fr', 'labels', 'backend.tax.title', 'Impôt', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6877, 0, 'fr', 'labels', 'backend.tax.view', 'Voir les taxes', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6878, 0, 'fr', 'labels', 'backend.forum_category.create', 'Créer une catégorie de forum', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6879, 0, 'fr', 'labels', 'backend.forum_category.edit', 'Modifier la catégorie du forum', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6880, 0, 'fr', 'labels', 'backend.forum_category.fields.category', 'Catégorie', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6881, 0, 'fr', 'labels', 'backend.forum_category.fields.color', 'Couleur', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6882, 0, 'fr', 'labels', 'backend.forum_category.fields.order', 'Ordre', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6883, 0, 'fr', 'labels', 'backend.forum_category.fields.parent_category', 'Catégorie Parentale', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6884, 0, 'fr', 'labels', 'backend.forum_category.fields.status', 'Statut', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6885, 0, 'fr', 'labels', 'backend.forum_category.off', 'De', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6886, 0, 'fr', 'labels', 'backend.forum_category.on', 'Sur', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6887, 0, 'fr', 'labels', 'backend.forum_category.title', 'Catégories de forum', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6888, 0, 'fr', 'labels', 'backend.forum_category.view', 'Voir la catégorie du forum', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6889, 0, 'fr', 'labels', 'frontend.auth.login_box_title', 'Connexion', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6890, 0, 'fr', 'labels', 'frontend.auth.login_button', 'Entrer', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6891, 0, 'fr', 'labels', 'frontend.auth.login_with', 'Se connecter avec :social_media', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6892, 0, 'fr', 'labels', 'frontend.auth.register_box_title', 'S\'enregistrer', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6893, 0, 'fr', 'labels', 'frontend.auth.register_button', 'Créer le compte', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6894, 0, 'fr', 'labels', 'frontend.auth.remember_me', 'Se souvenir de moi', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6895, 0, 'fr', 'labels', 'frontend.contact.box_title', 'Nous contacter', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6896, 0, 'fr', 'labels', 'frontend.contact.button', 'Envoyer le message', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6897, 0, 'fr', 'labels', 'frontend.contact.keep_in_touch', 'Restez <span> en contact avec . </span>', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6898, 0, 'fr', 'labels', 'frontend.contact.message', 'Message', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6899, 0, 'fr', 'labels', 'frontend.contact.phone_number', 'Numéro de téléphone', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6900, 0, 'fr', 'labels', 'frontend.contact.send_email', 'Envoyer un email', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6901, 0, 'fr', 'labels', 'frontend.contact.send_message_now', 'Envoyer un message maintenant', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6902, 0, 'fr', 'labels', 'frontend.contact.send_us_a_message', 'Envoyez-nous un <span> message. </span>', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6903, 0, 'fr', 'labels', 'frontend.contact.title', 'Contact', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6904, 0, 'fr', 'labels', 'frontend.contact.your_email', 'Votre email', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6905, 0, 'fr', 'labels', 'frontend.contact.your_name', 'votre nom', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6906, 0, 'fr', 'labels', 'frontend.passwords.forgot_password', 'Avez-vous oublié votre mot de passe ?', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6907, 0, 'fr', 'labels', 'frontend.passwords.reset_password_box_title', 'Réinitialisation du mot de passe', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6908, 0, 'fr', 'labels', 'frontend.passwords.reset_password_button', 'Réinitialiser le mot de passe', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6909, 0, 'fr', 'labels', 'frontend.passwords.send_password_reset_link_button', 'Envoyer le lien de réinitialisation', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6910, 0, 'fr', 'labels', 'frontend.passwords.update_password_button', 'Mettre à jour le mot de passe', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6911, 0, 'fr', 'labels', 'frontend.passwords.expired_password_box_title', 'Votre mot de passe a expiré.', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6912, 0, 'fr', 'labels', 'frontend.user.passwords.change', 'Modifier le mot de passe', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6913, 0, 'fr', 'labels', 'frontend.user.profile.avatar', 'Avatar', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6914, 0, 'fr', 'labels', 'frontend.user.profile.created_at', 'Date de création', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6915, 0, 'fr', 'labels', 'frontend.user.profile.edit_information', 'Éditer les informations', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6916, 0, 'fr', 'labels', 'frontend.user.profile.email', 'Adresse email', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6917, 0, 'fr', 'labels', 'frontend.user.profile.last_updated', 'Date de mise à jour', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6918, 0, 'fr', 'labels', 'frontend.user.profile.name', 'Nom complet', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6919, 0, 'fr', 'labels', 'frontend.user.profile.first_name', 'Prénom', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6920, 0, 'fr', 'labels', 'frontend.user.profile.last_name', 'Nom', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6921, 0, 'fr', 'labels', 'frontend.user.profile.update_information', 'Mettre à jour les informations', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6922, 0, 'fr', 'labels', 'frontend.teacher.title', 'Retour...', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6923, 0, 'fr', 'labels', 'frontend.teacher.students', 'Étudiants', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6924, 0, 'fr', 'labels', 'frontend.teacher.send_now', 'Envoyer maintenant', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6925, 0, 'fr', 'labels', 'frontend.teacher.courses_by_teacher', 'Cours <span> Par enseignant. </Span>', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6926, 0, 'fr', 'labels', 'frontend.teacher.course_detail', 'Détail du cours', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6927, 0, 'fr', 'labels', 'frontend.search_result.trending', 'Tendances', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6928, 0, 'fr', 'labels', 'frontend.search_result.students', 'Étudiants', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6929, 0, 'fr', 'labels', 'frontend.search_result.starts', 'Étoiles', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6930, 0, 'fr', 'labels', 'frontend.search_result.blog', 'Blog', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6931, 0, 'fr', 'labels', 'frontend.search_result.course_detail', 'Détail du cours', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6932, 0, 'fr', 'labels', 'frontend.search_result.course_name', 'Nom du cours', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6933, 0, 'fr', 'labels', 'frontend.search_result.course_type', 'Type de cours', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6934, 0, 'fr', 'labels', 'frontend.search_result.featured', 'En vedette', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6935, 0, 'fr', 'labels', 'frontend.search_result.none', 'Aucun', '2019-09-12 23:35:00', '2020-05-14 12:20:11'), (6936, 0, 'fr', 'labels', 'frontend.search_result.popular', 'Populaire', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6937, 0, 'fr', 'labels', 'frontend.search_result.search_blog', 'Rechercher un blog', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6938, 0, 'fr', 'labels', 'frontend.search_result.sort_by', '<b> Trier </b> par', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6939, 0, 'fr', 'labels', 'frontend.badges.trending', 'Tendances', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6940, 0, 'fr', 'labels', 'frontend.blog.add_comment', 'Ajouter un commentaire', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6941, 0, 'fr', 'labels', 'frontend.blog.blog_categories', 'Blog <span> Catégories. </span>', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6942, 0, 'fr', 'labels', 'frontend.blog.by', 'Par', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6943, 0, 'fr', 'labels', 'frontend.blog.featured_course', '<span> cours présenté. </span>', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6944, 0, 'fr', 'labels', 'frontend.blog.login_to_post_comment', 'Connectez-vous pour poster un commentaire', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6945, 0, 'fr', 'labels', 'frontend.blog.no_comments_yet', 'Pas encore de commentaires, soyez le premier à commenter.', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6946, 0, 'fr', 'labels', 'frontend.blog.popular_tags', '<span> tags populaires. </span>', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6947, 0, 'fr', 'labels', 'frontend.blog.post_comments', 'Publiez <span> des commentaires </span>.', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6948, 0, 'fr', 'labels', 'frontend.blog.related_news', 'Actualités <span> associées </span>', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6949, 0, 'fr', 'labels', 'frontend.blog.search_blog', 'Rechercher un blog', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6950, 0, 'fr', 'labels', 'frontend.blog.share_this_news', 'Partager cette news', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6951, 0, 'fr', 'labels', 'frontend.blog.title', 'Blog', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6952, 0, 'fr', 'labels', 'frontend.blog.write_a_comment', 'Écrire un commentaire', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6953, 0, 'fr', 'labels', 'frontend.cart.card_number', 'Numéro de carte', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6954, 0, 'fr', 'labels', 'frontend.cart.card_number_placeholder', 'Entrez votre numéro de carte', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6955, 0, 'fr', 'labels', 'frontend.cart.cart', 'Chariot', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6956, 0, 'fr', 'labels', 'frontend.cart.checkout', 'Check-out', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6957, 0, 'fr', 'labels', 'frontend.cart.complete_your_purchases', 'Terminez <span> vos achats. </span>', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6958, 0, 'fr', 'labels', 'frontend.cart.confirmation_note', 'En confirmant cet achat, j\'accepte les <b> conditions d\'utilisation, la politique de remboursement </b> et la <b> politique de confidentialité </b>.', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6959, 0, 'fr', 'labels', 'frontend.cart.course_name', 'Nom du cours', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6960, 0, 'fr', 'labels', 'frontend.cart.course_type', 'Type de cours', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6961, 0, 'fr', 'labels', 'frontend.cart.cvv', 'CVV', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6962, 0, 'fr', 'labels', 'frontend.cart.empty_cart', 'Votre panier est vide', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6963, 0, 'fr', 'labels', 'frontend.cart.expiration_date', 'Date d\'expiration', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6964, 0, 'fr', 'labels', 'frontend.cart.go_back_to_cart', 'Retourner au panier', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6965, 0, 'fr', 'labels', 'frontend.cart.mm', 'MM', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6966, 0, 'fr', 'labels', 'frontend.cart.name_on_card', 'Nom sur carte', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6967, 0, 'fr', 'labels', 'frontend.cart.name_on_card_placeholder', 'Entrez le nom inscrit sur votre carte', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6968, 0, 'fr', 'labels', 'frontend.cart.no_payment_method', 'Aucun mode de paiement disponible pour le moment', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6969, 0, 'fr', 'labels', 'frontend.cart.offline_payment', 'Paiement hors ligne', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6970, 0, 'fr', 'labels', 'frontend.cart.offline_payment_note', 'Avec cette méthode de paiement, nos cadres vous contacteront pour vous donner des instructions concernant le paiement et l’achat de cours.', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6971, 0, 'fr', 'labels', 'frontend.cart.order_detail', 'Commandez <span> Détail. </span>', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6972, 0, 'fr', 'labels', 'frontend.cart.order_item', 'Commandez <span> un élément. </span>', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6973, 0, 'fr', 'labels', 'frontend.cart.order_payment', 'Commande <span> Paiement. </span>', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6974, 0, 'fr', 'labels', 'frontend.cart.pay_now', 'Payez maintenant', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6975, 0, 'fr', 'labels', 'frontend.cart.pay_securely_paypal', 'Payer en toute sécurité avec PayPal', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6976, 0, 'fr', 'labels', 'frontend.cart.payment_cards', 'Carte de crédit ou de débit', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6977, 0, 'fr', 'labels', 'frontend.cart.payment_status', 'Statut de paiement', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6978, 0, 'fr', 'labels', 'frontend.cart.paypal', 'PayPal', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6979, 0, 'fr', 'labels', 'frontend.cart.request_assistance', 'Demander de l\'aide', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6980, 0, 'fr', 'labels', 'frontend.cart.see_more_courses', 'Voir plus de cours', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6981, 0, 'fr', 'labels', 'frontend.cart.starts', 'Départs', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6982, 0, 'fr', 'labels', 'frontend.cart.stripe_error_message', 'Veuillez corriger les erreurs et réessayer.', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6983, 0, 'fr', 'labels', 'frontend.cart.success_message', 'Toutes nos félicitations. Profitez de votre cours', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6984, 0, 'fr', 'labels', 'frontend.cart.total', 'Total', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6985, 0, 'fr', 'labels', 'frontend.cart.your_payment_status', 'Votre <span> statut de paiement. </span>', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6986, 0, 'fr', 'labels', 'frontend.cart.your_shopping_cart', 'Votre Panier', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6987, 0, 'fr', 'labels', 'frontend.cart.yy', 'YY', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6988, 0, 'fr', 'labels', 'frontend.cart.product_name', 'Nom du produit', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6989, 0, 'fr', 'labels', 'frontend.cart.product_type', 'type de produit', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6990, 0, 'fr', 'labels', 'frontend.cart.connection_timeout', 'Délai de connection dépassé', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6991, 0, 'fr', 'labels', 'frontend.cart.offline_request', 'Demande reçue avec succès! vérifiez votre email enregistré pour plus de détails.', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6992, 0, 'fr', 'labels', 'frontend.cart.payment_done', 'Paiement effectué avec succès!', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6993, 0, 'fr', 'labels', 'frontend.cart.payment_failed', 'Erreur! Paiement échoué!', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6994, 0, 'fr', 'labels', 'frontend.cart.product_added', 'Produit ajouté au panier avec succès', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6995, 0, 'fr', 'labels', 'frontend.cart.try_again', 'Erreur! Veuillez réessayer.', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6996, 0, 'fr', 'labels', 'frontend.cart.unknown_error', 'Une erreur inconnue s\'est produite', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6997, 0, 'fr', 'labels', 'frontend.cart.purchase_successful', 'Toutes nos félicitations! Vous avez acheté ce cours.', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6998, 0, 'fr', 'labels', 'frontend.cart.amount', 'Montante', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (6999, 0, 'fr', 'labels', 'frontend.cart.apply', 'Appliquer', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (7000, 0, 'fr', 'labels', 'frontend.cart.empty_input', 'Écrivez le code de coupon avant de postuler', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (7001, 0, 'fr', 'labels', 'frontend.cart.invalid_coupon', 'Coupon invalide!', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (7002, 0, 'fr', 'labels', 'frontend.cart.item', 'article', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (7003, 0, 'fr', 'labels', 'frontend.cart.items', 'articles', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (7004, 0, 'fr', 'labels', 'frontend.cart.offers', 'Des offres', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (7005, 0, 'fr', 'labels', 'frontend.cart.price', 'Prix', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (7006, 0, 'fr', 'labels', 'frontend.cart.sub_total', 'Total partiel', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (7007, 0, 'fr', 'labels', 'frontend.cart.total_payable', 'Total à payer', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (7008, 0, 'fr', 'labels', 'frontend.course.add_review_now', 'Ajouter une révision maintenant', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (7009, 0, 'fr', 'labels', 'frontend.course.add_reviews', 'Ajoutez des <span> avis </span>.', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (7010, 0, 'fr', 'labels', 'frontend.course.add_to_cart', 'Ajouter au panier', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (7011, 0, 'fr', 'labels', 'frontend.course.added_to_cart', 'Ajouté au panier', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (7012, 0, 'fr', 'labels', 'frontend.course.author', 'Auteur', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (7013, 0, 'fr', 'labels', 'frontend.course.average_rating', 'Note moyenne', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (7014, 0, 'fr', 'labels', 'frontend.course.buy_note', 'Seuls les étudiants peuvent acheter un cours', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (7015, 0, 'fr', 'labels', 'frontend.course.buy_now', 'Acheter maintenant', '2019-09-12 23:35:01', '2020-05-14 12:20:11'), (7016, 0, 'fr', 'labels', 'frontend.course.by', 'Par', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7017, 0, 'fr', 'labels', 'frontend.course.category', 'Catégorie', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7018, 0, 'fr', 'labels', 'frontend.course.chapter_videos', 'Vidéos du chapitre', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7019, 0, 'fr', 'labels', 'frontend.course.chapters', 'Chapitres', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7020, 0, 'fr', 'labels', 'frontend.course.completed', 'Terminé', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7021, 0, 'fr', 'labels', 'frontend.course.continue_course', 'Continuer le cours', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7022, 0, 'fr', 'labels', 'frontend.course.course_detail', 'Détails du cours', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7023, 0, 'fr', 'labels', 'frontend.course.course_details', '<span>Détails du cours</span>', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7024, 0, 'fr', 'labels', 'frontend.course.course_name', 'Nom du cours', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7025, 0, 'fr', 'labels', 'frontend.course.course_reviews', '<span> avis de cours: </span>', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7026, 0, 'fr', 'labels', 'frontend.course.course_timeline', 'Cours <b> Chronologie: </b>', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7027, 0, 'fr', 'labels', 'frontend.course.course_type', 'Type de cours', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7028, 0, 'fr', 'labels', 'frontend.course.courses', 'Cours', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7029, 0, 'fr', 'labels', 'frontend.course.details', 'Détails', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7030, 0, 'fr', 'labels', 'frontend.course.download_files', 'Telecharger des fichiers', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7031, 0, 'fr', 'labels', 'frontend.course.enrolled', 'Inscrit', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7032, 0, 'fr', 'labels', 'frontend.course.featured', 'En vedette', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7033, 0, 'fr', 'labels', 'frontend.course.featured_course', 'Cours <span> en vedette </span>.', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7034, 0, 'fr', 'labels', 'frontend.course.find_courses', 'TROUVER DES COURS', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7035, 0, 'fr', 'labels', 'frontend.course.find_your_course', '<span> Trouvez </span> votre cours.', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7036, 0, 'fr', 'labels', 'frontend.course.full_text', 'TEXTE INTÉGRAL', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7037, 0, 'fr', 'labels', 'frontend.course.give_test_again', 'Refaire le test', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7038, 0, 'fr', 'labels', 'frontend.course.go', 'Aller', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7039, 0, 'fr', 'labels', 'frontend.course.mb', 'MB', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7040, 0, 'fr', 'labels', 'frontend.course.message', 'Message', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7041, 0, 'fr', 'labels', 'frontend.course.next', 'SUIVANT', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7042, 0, 'fr', 'labels', 'frontend.course.no_reviews_yet', 'Aucun avis pour le moment.', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7043, 0, 'fr', 'labels', 'frontend.course.none', 'Aucun', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7044, 0, 'fr', 'labels', 'frontend.course.popular', 'Populaire', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7045, 0, 'fr', 'labels', 'frontend.course.prev', 'PREV', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7046, 0, 'fr', 'labels', 'frontend.course.price', 'Prix', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7047, 0, 'fr', 'labels', 'frontend.course.progress', 'Le progrès', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7048, 0, 'fr', 'labels', 'frontend.course.ratings', 'Évaluations', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7049, 0, 'fr', 'labels', 'frontend.course.recent_news', '<span> Nouvelles </span> récentes.', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7050, 0, 'fr', 'labels', 'frontend.course.sort_by', '<b> Trier </b> par', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7051, 0, 'fr', 'labels', 'frontend.course.stars', 'Étoiles', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7052, 0, 'fr', 'labels', 'frontend.course.starts', 'Départs', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7053, 0, 'fr', 'labels', 'frontend.course.students', 'Étudiants', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7054, 0, 'fr', 'labels', 'frontend.course.submit_results', 'Soumettre les résultats', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7055, 0, 'fr', 'labels', 'frontend.course.test', 'Tester', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7056, 0, 'fr', 'labels', 'frontend.course.title', 'Cours', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7057, 0, 'fr', 'labels', 'frontend.course.trending', 'Tendances', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7058, 0, 'fr', 'labels', 'frontend.course.view_all_news', 'Voir toutes les nouvelles', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7059, 0, 'fr', 'labels', 'frontend.course.your_rating', 'Votre note', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7060, 0, 'fr', 'labels', 'frontend.course.your_test_score', 'Votre score de test', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7061, 0, 'fr', 'labels', 'frontend.course.certified', 'Vous êtes certifié pour ce cours', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7062, 0, 'fr', 'labels', 'frontend.course.finish_course', 'Cours de finition', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7063, 0, 'fr', 'labels', 'frontend.course.course', 'Cours', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7064, 0, 'fr', 'labels', 'frontend.course.bundle_detail', 'Détails du paquet', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7065, 0, 'fr', 'labels', 'frontend.course.bundle_reviews', 'Offre groupée <span> Commentaires: </ span>', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7066, 0, 'fr', 'labels', 'frontend.course.bundles', 'Liasses', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7067, 0, 'fr', 'labels', 'frontend.course.available_in_bundles', 'Aussi disponible en paquets', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7068, 0, 'fr', 'labels', 'frontend.course.complete_test', 'S\'il vous plaît compléter le test', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7069, 0, 'fr', 'labels', 'frontend.course.looking_for', 'À la recherche de?', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7070, 0, 'fr', 'labels', 'frontend.course.get_now', 'Maintenant obtenir', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7071, 0, 'fr', 'labels', 'frontend.course.explanation', 'Explication', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7072, 0, 'fr', 'labels', 'frontend.course.not_attempted', 'Pas tenté', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7073, 0, 'fr', 'labels', 'frontend.course.find_your_bundle', '<span> Trouvez </span> votre paquet', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7074, 0, 'fr', 'labels', 'frontend.course.select_category', 'Choisir une catégorie', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7075, 0, 'fr', 'labels', 'frontend.faq.contact_us', 'Contactez nous', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7076, 0, 'fr', 'labels', 'frontend.faq.find', 'Recherchez <span> vos questions et vos réponses </span>.', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7077, 0, 'fr', 'labels', 'frontend.faq.make_question', 'Faire une question', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7078, 0, 'fr', 'labels', 'frontend.faq.title', 'Foire aux <span> questions </span>', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7079, 0, 'fr', 'labels', 'frontend.home.all_teachers', 'Tous les enseignants', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7080, 0, 'fr', 'labels', 'frontend.home.learn_new_skills', 'Apprendre de nouvelles compétences', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7081, 0, 'fr', 'labels', 'frontend.home.online_available_courses', 'Cours disponibles en ligne', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7082, 0, 'fr', 'labels', 'frontend.home.our_professionals', 'Nos professionnels', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7083, 0, 'fr', 'labels', 'frontend.home.popular_teachers', 'Enseignants <span> populaires </span>', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7084, 0, 'fr', 'labels', 'frontend.home.search_course', 'Recherche cours', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7085, 0, 'fr', 'labels', 'frontend.home.search_course_placeholder', 'Tapez ce que vous voulez apprendre aujourd\'hui?', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7086, 0, 'fr', 'labels', 'frontend.home.search_courses', '<span> Rechercher </span> des cours.', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7087, 0, 'fr', 'labels', 'frontend.home.students_enrolled', 'Etudiants inscrits', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7088, 0, 'fr', 'labels', 'frontend.home.teachers', 'Enseignants', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7089, 0, 'fr', 'labels', 'frontend.home.title', 'Accueil', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7090, 0, 'fr', 'labels', 'frontend.home.what_they_say_about_us', 'Ce qu\'ils disent de nous', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7091, 0, 'fr', 'labels', 'frontend.layouts.partials.advantages', 'Avantages', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7092, 0, 'fr', 'labels', 'frontend.layouts.partials.browse_course_by_category', 'Parcourir les cours <span> Par catégorie. </span>', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7093, 0, 'fr', 'labels', 'frontend.layouts.partials.browse_featured_course', 'Parcourez notre <span> cours en vedette. </span>', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7094, 0, 'fr', 'labels', 'frontend.layouts.partials.call_us_registration', 'Appelez-nous pour une inscription gratuite', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7095, 0, 'fr', 'labels', 'frontend.layouts.partials.contact_us', 'Contactez nous', '2019-09-12 23:35:02', '2020-05-14 12:20:11'), (7096, 0, 'fr', 'labels', 'frontend.layouts.partials.course_detail', 'Détail du cours', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7097, 0, 'fr', 'labels', 'frontend.layouts.partials.courses_categories', 'Catégories de cours', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7098, 0, 'fr', 'labels', 'frontend.layouts.partials.days', 'Journées', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7099, 0, 'fr', 'labels', 'frontend.layouts.partials.email_address', 'Adresse électronique', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7100, 0, 'fr', 'labels', 'frontend.layouts.partials.email_registration', 'Envoyez-nous un email pour une inscription gratuite', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7101, 0, 'fr', 'labels', 'frontend.layouts.partials.faq', 'FAQ', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7102, 0, 'fr', 'labels', 'frontend.layouts.partials.faq_full', 'Foire aux <span> questions </span>', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7103, 0, 'fr', 'labels', 'frontend.layouts.partials.featured_course', 'Cours <span> en vedette </span>.', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7104, 0, 'fr', 'labels', 'frontend.layouts.partials.get_in_touch', 'Entrer en contact', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7105, 0, 'fr', 'labels', 'frontend.layouts.partials.hours', 'Heures', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7106, 0, 'fr', 'labels', 'frontend.layouts.partials.latest_news_blog', 'Dernier <span> blog d\'actualités </span>.', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7107, 0, 'fr', 'labels', 'frontend.layouts.partials.learn_new_skills', 'Apprendre de nouvelles compétences', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7108, 0, 'fr', 'labels', 'frontend.layouts.partials.minutes', 'Minutes', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7109, 0, 'fr', 'labels', 'frontend.layouts.partials.popular_courses', '<span> cours populaires </span>', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7110, 0, 'fr', 'labels', 'frontend.layouts.partials.primary', 'Primaire', '2019-09-12 23:35:03', '2020-05-14 12:20:11'); INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES (7111, 0, 'fr', 'labels', 'frontend.layouts.partials.recent_news', '<span> Nouvelles </span> récentes.', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7112, 0, 'fr', 'labels', 'frontend.layouts.partials.search_courses', 'Rechercher des cours', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7113, 0, 'fr', 'labels', 'frontend.layouts.partials.search_our_courses', 'RECHERCHER NOS COURS', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7114, 0, 'fr', 'labels', 'frontend.layouts.partials.search_placeholder', 'Tapez ce que vous voulez apprendre aujourd\'hui?', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7115, 0, 'fr', 'labels', 'frontend.layouts.partials.second', 'Second', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7116, 0, 'fr', 'labels', 'frontend.layouts.partials.seconds', 'Seconds', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7117, 0, 'fr', 'labels', 'frontend.layouts.partials.social_network', 'Réseau social', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7118, 0, 'fr', 'labels', 'frontend.layouts.partials.sponsors', 'Les sponsors.', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7119, 0, 'fr', 'labels', 'frontend.layouts.partials.students', 'Étudiants', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7120, 0, 'fr', 'labels', 'frontend.layouts.partials.students_testimonial', '<span> Témoignage des étudiants. </span>', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7121, 0, 'fr', 'labels', 'frontend.layouts.partials.subscribe_newsletter', 'Abonnez-vous à la newsletter', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7122, 0, 'fr', 'labels', 'frontend.layouts.partials.subscribe_now', 'Abonnez-vous maintenant', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7123, 0, 'fr', 'labels', 'frontend.layouts.partials.trending_courses', 'Tendances <span> Cours. </span>', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7124, 0, 'fr', 'labels', 'frontend.layouts.partials.view_all_news', 'Voir toutes les nouvelles', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7125, 0, 'fr', 'labels', 'frontend.layouts.partials.view_all_popular_courses', 'Voir tous les cours populaires', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7126, 0, 'fr', 'labels', 'frontend.layouts.partials.view_all_trending_courses', 'Voir tous les cours tendance', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7127, 0, 'fr', 'labels', 'frontend.layouts.partials.why_choose', 'Raison pour laquelle choisir', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7128, 0, 'fr', 'labels', 'frontend.layouts.partials.certificate_verification', 'Certificat de vérification', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7129, 0, 'fr', 'labels', 'frontend.layouts.partials.more_faqs', 'Plus de FAQ', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7130, 0, 'fr', 'labels', 'frontend.layouts.partials.offers', 'Des offres', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7131, 0, 'fr', 'labels', 'frontend.modal.already_user_note', 'Déjà un utilisateur? Connectez-vous ici', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7132, 0, 'fr', 'labels', 'frontend.modal.login_now', 'Connecte-toi maintenant', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7133, 0, 'fr', 'labels', 'frontend.modal.login_register', '<a href=\"#\" class=\"font-weight-bold go-login px-0\"> CONNEXION </a> sur notre site Web ou <a href = \"#\" class = \"font-weight-bold go- enregistrer px-0 \"id =\" \"> ENREGISTREZ-VOUS </a>', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7134, 0, 'fr', 'labels', 'frontend.modal.my_account', 'Mon compte', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7135, 0, 'fr', 'labels', 'frontend.modal.new_user_note', 'Nouvel utilisateur? Inscrivez-vous ici', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7136, 0, 'fr', 'labels', 'frontend.modal.register_now', 'Inscrire maintenant', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7137, 0, 'fr', 'labels', 'frontend.modal.registration_message', 'Inscription réussi. S\'il vous plaît connecter', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7138, 0, 'fr', 'labels', 'frontend.certificate_verification.date_on_certificate', 'Date sur le certificat. Ex. 2018-11-25', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7139, 0, 'fr', 'labels', 'frontend.certificate_verification.name_on_certificate', 'Nom sur le certificat. Ex. John', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7140, 0, 'fr', 'labels', 'frontend.certificate_verification.not_found', 'Aucun certificat trouvé pour les informations fournies.', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7141, 0, 'fr', 'labels', 'frontend.certificate_verification.title', 'Certificat de vérification', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7142, 0, 'fr', 'labels', 'frontend.certificate_verification.verify_now', 'Vérifiez maintenant', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7143, 0, 'fr', 'labels', 'frontend.footer.useful_links', 'Liens utiles', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7144, 0, 'fr', 'labels', 'frontend.footer.trending_courses', 'Cours tendance', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7145, 0, 'fr', 'labels', 'frontend.footer.popular_courses', 'Cours populaires', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7146, 0, 'fr', 'labels', 'frontend.footer.popular_categories', 'Catégories populaires', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7147, 0, 'fr', 'labels', 'frontend.footer.featured_courses', 'Cours en vedette', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7148, 0, 'fr', 'labels', 'frontend.offers.minimum_order_amount', 'Montant minimum de commande', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7149, 0, 'fr', 'labels', 'frontend.offers.no_offers', 'Aucune offre', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7150, 0, 'fr', 'labels', 'frontend.offers.per_user', 'Par utilisateur', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7151, 0, 'fr', 'labels', 'frontend.offers.title', 'Des offres', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7152, 0, 'fr', 'labels', 'frontend.offers.unlimited', 'Illimitée', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7153, 0, 'fr', 'labels', 'frontend.offers.usage', 'Usage', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7154, 0, 'fr', 'labels', 'frontend.offers.validity', 'Validité', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7155, 0, 'fr', 'labels', 'lang.sp', 'Español', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7156, 0, 'fr', 'labels', 'lang.fr', 'Français', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7157, 0, 'fr', 'labels', 'lang.en', 'Anglais', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7158, 0, 'fr', 'labels', 'lang.ar', 'arabe', '2019-09-12 23:35:03', '2020-05-14 12:20:11'), (7159, 0, 'fr', 'menus', 'backend.access.title', 'Accès', '2019-09-12 23:35:03', '2020-05-14 12:20:12'), (7160, 0, 'fr', 'menus', 'backend.access.roles.all', 'Tous les rôles', '2019-09-12 23:35:03', '2020-05-14 12:20:12'), (7161, 0, 'fr', 'menus', 'backend.access.roles.create', 'Créer un rôle', '2019-09-12 23:35:03', '2020-05-14 12:20:12'), (7162, 0, 'fr', 'menus', 'backend.access.roles.edit', 'Modifier le rôle', '2019-09-12 23:35:03', '2020-05-14 12:20:12'), (7163, 0, 'fr', 'menus', 'backend.access.roles.management', 'Gestion des rôles', '2019-09-12 23:35:03', '2020-05-14 12:20:12'), (7164, 0, 'fr', 'menus', 'backend.access.roles.main', 'Rôles', '2019-09-12 23:35:03', '2020-05-14 12:20:12'), (7165, 0, 'fr', 'menus', 'backend.access.users.all', 'Tous les utilisateurs', '2019-09-12 23:35:03', '2020-05-14 12:20:12'), (7166, 0, 'fr', 'menus', 'backend.access.users.change-password', 'Changer le mot de passe', '2019-09-12 23:35:03', '2020-05-14 12:20:12'), (7167, 0, 'fr', 'menus', 'backend.access.users.create', 'Créer un utilisateur', '2019-09-12 23:35:03', '2020-05-14 12:20:12'), (7168, 0, 'fr', 'menus', 'backend.access.users.deactivated', 'Utilisateurs désactivés', '2019-09-12 23:35:03', '2020-05-14 12:20:12'), (7169, 0, 'fr', 'menus', 'backend.access.users.deleted', 'Utilisateurs supprimés', '2019-09-12 23:35:03', '2020-05-14 12:20:12'), (7170, 0, 'fr', 'menus', 'backend.access.users.edit', 'Modifier l\'utilisateur', '2019-09-12 23:35:03', '2020-05-14 12:20:12'), (7171, 0, 'fr', 'menus', 'backend.access.users.main', 'Utilisateurs', '2019-09-12 23:35:03', '2020-05-14 12:20:12'), (7172, 0, 'fr', 'menus', 'backend.access.users.view', 'Voir l\'utilisateur', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7173, 0, 'fr', 'menus', 'backend.log-viewer.main', 'Journal Viewer', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7174, 0, 'fr', 'menus', 'backend.log-viewer.dashboard', 'Tableau de bord de débogage', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7175, 0, 'fr', 'menus', 'backend.log-viewer.logs', 'Les journaux', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7176, 0, 'fr', 'menus', 'backend.sidebar.dashboard', 'Tableau de bord', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7177, 0, 'fr', 'menus', 'backend.sidebar.general', 'Général', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7178, 0, 'fr', 'menus', 'backend.sidebar.history', 'L\'histoire', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7179, 0, 'fr', 'menus', 'backend.sidebar.system', 'Système', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7180, 0, 'fr', 'menus', 'backend.sidebar.account.title', 'Compte', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7181, 0, 'fr', 'menus', 'backend.sidebar.backup.title', 'Sauvegarde', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7182, 0, 'fr', 'menus', 'backend.sidebar.blogs.title', 'Blog', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7183, 0, 'fr', 'menus', 'backend.sidebar.categories.title', 'Les catégories', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7184, 0, 'fr', 'menus', 'backend.sidebar.change-password.title', 'Changer le mot de passe', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7185, 0, 'fr', 'menus', 'backend.sidebar.contact.title', 'Contact', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7186, 0, 'fr', 'menus', 'backend.sidebar.contacts.title', 'Pistes', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7187, 0, 'fr', 'menus', 'backend.sidebar.courses.manage', 'Gérer les cours', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7188, 0, 'fr', 'menus', 'backend.sidebar.courses.management', 'Gestion des cours', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7189, 0, 'fr', 'menus', 'backend.sidebar.courses.title', 'Cours', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7190, 0, 'fr', 'menus', 'backend.sidebar.debug-site.title', 'Site de débogage', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7191, 0, 'fr', 'menus', 'backend.sidebar.faqs.title', 'FAQ', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7192, 0, 'fr', 'menus', 'backend.sidebar.footer.title', 'Bas de page', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7193, 0, 'fr', 'menus', 'backend.sidebar.hero-slider.title', 'Héros Slider', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7194, 0, 'fr', 'menus', 'backend.sidebar.invoices.title', 'Factures', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7195, 0, 'fr', 'menus', 'backend.sidebar.lessons.title', 'Cours', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7196, 0, 'fr', 'menus', 'backend.sidebar.menu-manager.title', 'Gestionnaire de menu', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7197, 0, 'fr', 'menus', 'backend.sidebar.messages.title', 'messages', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7198, 0, 'fr', 'menus', 'backend.sidebar.newsletter-configuration.title', 'Configuration de la newsletter', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7199, 0, 'fr', 'menus', 'backend.sidebar.orders.title', 'Ordres', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7200, 0, 'fr', 'menus', 'backend.sidebar.pages.title', 'Gestionnaire de pages', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7201, 0, 'fr', 'menus', 'backend.sidebar.questions-options.title', 'Questions Options', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7202, 0, 'fr', 'menus', 'backend.sidebar.questions.title', 'Des questions', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7203, 0, 'fr', 'menus', 'backend.sidebar.reasons.title', 'Les raisons', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7204, 0, 'fr', 'menus', 'backend.sidebar.reviews.title', 'Avis', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7205, 0, 'fr', 'menus', 'backend.sidebar.settings.general', 'Général', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7206, 0, 'fr', 'menus', 'backend.sidebar.settings.social-login', 'Connexion sociale', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7207, 0, 'fr', 'menus', 'backend.sidebar.settings.title', 'Réglages', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7208, 0, 'fr', 'menus', 'backend.sidebar.site-management.title', 'Administration du site', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7209, 0, 'fr', 'menus', 'backend.sidebar.sponsors.title', 'Sponsors', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7210, 0, 'fr', 'menus', 'backend.sidebar.teachers.title', 'Enseignants', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7211, 0, 'fr', 'menus', 'backend.sidebar.testimonials.title', 'Témoignages', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7212, 0, 'fr', 'menus', 'backend.sidebar.tests.title', 'Des tests', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7213, 0, 'fr', 'menus', 'backend.sidebar.translations.title', 'Responsable de la traduction', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7214, 0, 'fr', 'menus', 'backend.sidebar.update.title', 'Mettre à jour', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7215, 0, 'fr', 'menus', 'backend.sidebar.certificates.title', 'Certificats', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7216, 0, 'fr', 'menus', 'backend.sidebar.bundles.title', 'Liasses', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7217, 0, 'fr', 'menus', 'backend.sidebar.reports.sales', 'Ventes', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7218, 0, 'fr', 'menus', 'backend.sidebar.reports.students', 'Étudiants', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7219, 0, 'fr', 'menus', 'backend.sidebar.reports.title', 'Rapports', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7220, 0, 'fr', 'menus', 'backend.sidebar.coupons.title', 'Coupons', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7221, 0, 'fr', 'menus', 'backend.sidebar.sitemap.title', 'خريطة الموقع', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7222, 0, 'fr', 'menus', 'backend.sidebar.tax.title', 'Impôt', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7223, 0, 'fr', 'menus', 'backend.sidebar.forums-category.title', 'Catégories de forums', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7224, 0, 'fr', 'menus', 'language-picker.language', 'La langue', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7225, 0, 'fr', 'menus', 'language-picker.langs.ar', 'arabe', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7226, 0, 'fr', 'menus', 'language-picker.langs.zh', 'chinois', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7227, 0, 'fr', 'menus', 'language-picker.langs.zh-TW', 'Chinois traditionnel', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7228, 0, 'fr', 'menus', 'language-picker.langs.da', 'danois', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7229, 0, 'fr', 'menus', 'language-picker.langs.de', 'allemand', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7230, 0, 'fr', 'menus', 'language-picker.langs.el', 'grec', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7231, 0, 'fr', 'menus', 'language-picker.langs.en', 'Anglais', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7232, 0, 'fr', 'menus', 'language-picker.langs.es', 'Espanol', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7233, 0, 'fr', 'menus', 'language-picker.langs.fa', 'persan', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7234, 0, 'fr', 'menus', 'language-picker.langs.fr', 'français', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7235, 0, 'fr', 'menus', 'language-picker.langs.he', 'hébreu', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7236, 0, 'fr', 'menus', 'language-picker.langs.id', 'indonésien', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7237, 0, 'fr', 'menus', 'language-picker.langs.it', 'italien', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7238, 0, 'fr', 'menus', 'language-picker.langs.ja', 'Japonais', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7239, 0, 'fr', 'menus', 'language-picker.langs.nl', 'néerlandais', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7240, 0, 'fr', 'menus', 'language-picker.langs.no', 'norvégien', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7241, 0, 'fr', 'menus', 'language-picker.langs.pt_BR', 'Portugais (Brésil)', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7242, 0, 'fr', 'menus', 'language-picker.langs.ru', 'russe', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7243, 0, 'fr', 'menus', 'language-picker.langs.sv', 'suédois', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7244, 0, 'fr', 'menus', 'language-picker.langs.th', 'thaïlandais', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7245, 0, 'fr', 'menus', 'language-picker.langs.tr', 'turc', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7246, 0, 'fr', 'menus', 'language-picker.langs.af', 'afrikaans', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7247, 0, 'fr', 'menus', 'language-picker.langs.ak', 'Akan', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7248, 0, 'fr', 'menus', 'language-picker.langs.sq_AL', 'Albanais (Albanie)', '2019-09-12 23:35:04', '2020-05-14 12:20:12'), (7249, 0, 'fr', 'menus', 'language-picker.langs.sq', 'albanais', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7250, 0, 'fr', 'menus', 'language-picker.langs.am_ET', 'Amharique (Ethiopie)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7251, 0, 'fr', 'menus', 'language-picker.langs.am', 'Amharique', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7252, 0, 'fr', 'menus', 'language-picker.langs.ar_DZ', 'Arabe (Algérie)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7253, 0, 'fr', 'menus', 'language-picker.langs.ar_BH', 'Arabe (Bahreïn)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7254, 0, 'fr', 'menus', 'language-picker.langs.ar_EG', 'Arabe (Egypte)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7255, 0, 'fr', 'menus', 'language-picker.langs.ar_IQ', 'Arabe (Irak)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7256, 0, 'fr', 'menus', 'language-picker.langs.ar_JO', 'Arabe (Jordanie)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7257, 0, 'fr', 'menus', 'language-picker.langs.ar_KW', 'Arabe (Koweït)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7258, 0, 'fr', 'menus', 'language-picker.langs.ar_LB', 'Arabe (Liban)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7259, 0, 'fr', 'menus', 'language-picker.langs.ar_LY', 'Arabe (Libye)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7260, 0, 'fr', 'menus', 'language-picker.langs.ar_MA', 'Arabe (maroc)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7261, 0, 'fr', 'menus', 'language-picker.langs.ar_OM', 'Arabe (Oman)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7262, 0, 'fr', 'menus', 'language-picker.langs.ar_QA', 'Arabe (Qatar)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7263, 0, 'fr', 'menus', 'language-picker.langs.ar_SA', 'Arabe (Arabie Saoudite)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7264, 0, 'fr', 'menus', 'language-picker.langs.ar_SD', 'Arabe (Soudan)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7265, 0, 'fr', 'menus', 'language-picker.langs.ar_SY', 'Arabe (Syrie)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7266, 0, 'fr', 'menus', 'language-picker.langs.ar_TN', 'Arabe (Tunisie)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7267, 0, 'fr', 'menus', 'language-picker.langs.ar_AE', 'Arabe (Emirats Arabes Unis)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7268, 0, 'fr', 'menus', 'language-picker.langs.ar_YE', 'Arabe (Yémen)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7269, 0, 'fr', 'menus', 'language-picker.langs.hy_AM', 'Arménien (Arménie)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7270, 0, 'fr', 'menus', 'language-picker.langs.hy', 'arménien', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7271, 0, 'fr', 'menus', 'language-picker.langs.as_IN', 'Assamais (Inde)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7272, 0, 'fr', 'menus', 'language-picker.langs.as', 'Assamais', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7273, 0, 'fr', 'menus', 'language-picker.langs.asa_TZ', 'Asu (Tanzanie)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7274, 0, 'fr', 'menus', 'language-picker.langs.asa', 'Asu', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7275, 0, 'fr', 'menus', 'language-picker.langs.az_Cyrl', 'Azerbaïdjanais (cyrillique)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7276, 0, 'fr', 'menus', 'language-picker.langs.az_Cyrl_AZ', 'Azerbaïdjanais (cyrillique, Azerbaïdjan)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7277, 0, 'fr', 'menus', 'language-picker.langs.az_Latn', 'Azéri (latin)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7278, 0, 'fr', 'menus', 'language-picker.langs.az_Latn_AZ', 'Azerbaïdjanais (latin, Azerbaïdjan)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7279, 0, 'fr', 'menus', 'language-picker.langs.az', 'azerbaïdjanais', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7280, 0, 'fr', 'menus', 'language-picker.langs.bm_ML', 'Bambara (Mali)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7281, 0, 'fr', 'menus', 'language-picker.langs.bm', 'Bambara', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7282, 0, 'fr', 'menus', 'language-picker.langs.eu_ES', 'Basque (Espagne)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7283, 0, 'fr', 'menus', 'language-picker.langs.eu', 'basque', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7284, 0, 'fr', 'menus', 'language-picker.langs.be_BY', 'Biélorusse (Belarus)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7285, 0, 'fr', 'menus', 'language-picker.langs.be', 'Biélorusse', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7286, 0, 'fr', 'menus', 'language-picker.langs.bem_ZM', 'Bemba (Zambie)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7287, 0, 'fr', 'menus', 'language-picker.langs.bem', 'Bemba', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7288, 0, 'fr', 'menus', 'language-picker.langs.bez_TZ', 'Bena (Tanzanie)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7289, 0, 'fr', 'menus', 'language-picker.langs.bez', 'Bena', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7290, 0, 'fr', 'menus', 'language-picker.langs.bn_BD', 'Bengali (Bangladesh)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7291, 0, 'fr', 'menus', 'language-picker.langs.bn_IN', 'Bengali (Inde)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7292, 0, 'fr', 'menus', 'language-picker.langs.bn', 'bengali', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7293, 0, 'fr', 'menus', 'language-picker.langs.bs_BA', 'Bosniaque (Bosnie-Herzégovine)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7294, 0, 'fr', 'menus', 'language-picker.langs.bs', 'Bosniaque', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7295, 0, 'fr', 'menus', 'language-picker.langs.bg_BG', 'Bulgare (Bulgarie)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7296, 0, 'fr', 'menus', 'language-picker.langs.bg', 'bulgare', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7297, 0, 'fr', 'menus', 'language-picker.langs.my_MM', 'Birman (Myanmar [Birmanie])', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7298, 0, 'fr', 'menus', 'language-picker.langs.my', 'birman', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7299, 0, 'fr', 'menus', 'language-picker.langs.yue_Hant_HK', 'Cantonais (traditionnel, RAS chinoise de Hong Kong)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7300, 0, 'fr', 'menus', 'language-picker.langs.ca_ES', 'Catalan (Espagne)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7301, 0, 'fr', 'menus', 'language-picker.langs.ca', 'catalan', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7302, 0, 'fr', 'menus', 'language-picker.langs.tzm_Latn', 'Maroc central Tamazight (latin)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7303, 0, 'fr', 'menus', 'language-picker.langs.tzm_Latn_MA', 'Centre du Maroc Tamazight (Latin, Maroc)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7304, 0, 'fr', 'menus', 'language-picker.langs.tzm', 'Maroc central Tamazight', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7305, 0, 'fr', 'menus', 'language-picker.langs.chr_US', 'Cherokee (États-Unis)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7306, 0, 'fr', 'menus', 'language-picker.langs.chr', 'Cherokee', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7307, 0, 'fr', 'menus', 'language-picker.langs.cgg_UG', 'Chiga (Ouganda)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7308, 0, 'fr', 'menus', 'language-picker.langs.cgg', 'Chiga', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7309, 0, 'fr', 'menus', 'language-picker.langs.zh_Hans', 'Chinois (Han simplifié)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7310, 0, 'fr', 'menus', 'language-picker.langs.zh_Hans_CN', 'Chinois (Han simplifié, Chine)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7311, 0, 'fr', 'menus', 'language-picker.langs.zh_Hans_HK', 'Chinois (Han simplifié, RAS chinoise de Hong Kong)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7312, 0, 'fr', 'menus', 'language-picker.langs.zh_Hans_MO', 'Chinois (Han simplifié, RAS de Macao Chine)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7313, 0, 'fr', 'menus', 'language-picker.langs.zh_Hans_SG', 'Chinois (Han simplifié, Singapour)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7314, 0, 'fr', 'menus', 'language-picker.langs.zh_Hant', 'Chinois (Han traditionnel)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7315, 0, 'fr', 'menus', 'language-picker.langs.zh_Hant_HK', 'Chinois (Han traditionnel, RAS chinoise de Hong Kong)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7316, 0, 'fr', 'menus', 'language-picker.langs.zh_Hant_MO', 'Chinois (Han traditionnel, RAS de Macao Chine)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7317, 0, 'fr', 'menus', 'language-picker.langs.zh_Hant_TW', 'Chinois (Han traditionnel, Taiwan)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7318, 0, 'fr', 'menus', 'language-picker.langs.kw_GB', 'Cornish (Royaume Uni)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7319, 0, 'fr', 'menus', 'language-picker.langs.kw', 'cornouaillais', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7320, 0, 'fr', 'menus', 'language-picker.langs.hr_HR', 'Croate (croate)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7321, 0, 'fr', 'menus', 'language-picker.langs.hr', 'croate', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7322, 0, 'fr', 'menus', 'language-picker.langs.cs_CZ', 'Tchèque (République Tchèque)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7323, 0, 'fr', 'menus', 'language-picker.langs.cs', 'tchèque', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7324, 0, 'fr', 'menus', 'language-picker.langs.da_DK', 'Danois (Danemark)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7325, 0, 'fr', 'menus', 'language-picker.langs.nl_BE', 'Néerlandais (Belgique)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7326, 0, 'fr', 'menus', 'language-picker.langs.nl_NL', 'Néerlandais (Pays-Bas)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7327, 0, 'fr', 'menus', 'language-picker.langs.ebu_KE', 'Embu (Kenya)', '2019-09-12 23:35:05', '2020-05-14 12:20:12'), (7328, 0, 'fr', 'menus', 'language-picker.langs.ebu', 'Embu', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7329, 0, 'fr', 'menus', 'language-picker.langs.en_AS', 'Anglais (Samoa américaines)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7330, 0, 'fr', 'menus', 'language-picker.langs.en_AU', 'Anglais (Australie)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7331, 0, 'fr', 'menus', 'language-picker.langs.en_BE', 'Anglais (Belgique)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7332, 0, 'fr', 'menus', 'language-picker.langs.en_BZ', 'Anglais (Belize)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7333, 0, 'fr', 'menus', 'language-picker.langs.en_BW', 'Anglais (Botswana)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7334, 0, 'fr', 'menus', 'language-picker.langs.en_CA', 'Anglais (Canada)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7335, 0, 'fr', 'menus', 'language-picker.langs.en_GU', 'Anglais (Guam)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7336, 0, 'fr', 'menus', 'language-picker.langs.en_HK', 'Anglais (RAS chinoise de Hong Kong)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7337, 0, 'fr', 'menus', 'language-picker.langs.en_IN', 'Anglais (Inde)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7338, 0, 'fr', 'menus', 'language-picker.langs.en_IE', 'Anglais (Irlande)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7339, 0, 'fr', 'menus', 'language-picker.langs.en_IL', 'Anglais (Israël)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7340, 0, 'fr', 'menus', 'language-picker.langs.en_JM', 'Anglais (Jamaïque)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7341, 0, 'fr', 'menus', 'language-picker.langs.en_MT', 'Anglais (Malte)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7342, 0, 'fr', 'menus', 'language-picker.langs.en_MH', 'Anglais (Îles Marshall)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7343, 0, 'fr', 'menus', 'language-picker.langs.en_MU', 'Anglais (Maurice)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7344, 0, 'fr', 'menus', 'language-picker.langs.en_NA', 'Anglais (Namibie)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7345, 0, 'fr', 'menus', 'language-picker.langs.en_NZ', 'Anglais (Nouvelle Zélande)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7346, 0, 'fr', 'menus', 'language-picker.langs.en_MP', 'Anglais (Îles Mariannes du Nord)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7347, 0, 'fr', 'menus', 'language-picker.langs.en_PK', 'Anglais (Pakistan)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7348, 0, 'fr', 'menus', 'language-picker.langs.en_PH', 'Anglais (Philippines)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7349, 0, 'fr', 'menus', 'language-picker.langs.en_SG', 'Anglais (Singapour)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7350, 0, 'fr', 'menus', 'language-picker.langs.en_ZA', 'Anglais (Afrique du Sud)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7351, 0, 'fr', 'menus', 'language-picker.langs.en_TT', 'Anglais (Trinité et Tobago)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7352, 0, 'fr', 'menus', 'language-picker.langs.en_UM', 'Anglais (îles mineures éloignées des États-Unis)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7353, 0, 'fr', 'menus', 'language-picker.langs.en_VI', 'Anglais (îles Vierges américaines)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7354, 0, 'fr', 'menus', 'language-picker.langs.en_GB', 'Royaume Uni Anglais)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7355, 0, 'fr', 'menus', 'language-picker.langs.en_US', 'États Unis Anglais)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7356, 0, 'fr', 'menus', 'language-picker.langs.en_ZW', 'Anglais (Zimbabwe)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7357, 0, 'fr', 'menus', 'language-picker.langs.eo', 'espéranto', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7358, 0, 'fr', 'menus', 'language-picker.langs.et_EE', 'Estonien (Estonie)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7359, 0, 'fr', 'menus', 'language-picker.langs.et', 'estonien', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7360, 0, 'fr', 'menus', 'language-picker.langs.ee_GH', 'Ewe (Ghana)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7361, 0, 'fr', 'menus', 'language-picker.langs.ee_TG', 'Éwé (Togo)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7362, 0, 'fr', 'menus', 'language-picker.langs.ee', 'Ewe', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7363, 0, 'fr', 'menus', 'language-picker.langs.fo_FO', 'Féroïen (îles Féroé)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7364, 0, 'fr', 'menus', 'language-picker.langs.fo', 'Féroïen', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7365, 0, 'fr', 'menus', 'language-picker.langs.fil_PH', 'Philippin (Philippines)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7366, 0, 'fr', 'menus', 'language-picker.langs.fil', 'Philippin', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7367, 0, 'fr', 'menus', 'language-picker.langs.fi_FI', 'Finlandais (Finlande)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7368, 0, 'fr', 'menus', 'language-picker.langs.fi', 'finlandais', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7369, 0, 'fr', 'menus', 'language-picker.langs.fr_BE', 'Français (Belgique)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7370, 0, 'fr', 'menus', 'language-picker.langs.fr_BJ', 'Français (Bénin)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7371, 0, 'fr', 'menus', 'language-picker.langs.fr_BF', 'Français (Burkina Faso)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7372, 0, 'fr', 'menus', 'language-picker.langs.fr_BI', 'Français (Burundi)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7373, 0, 'fr', 'menus', 'language-picker.langs.fr_CM', 'Français (Cameroun)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7374, 0, 'fr', 'menus', 'language-picker.langs.fr_CA', 'Français (Canada)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7375, 0, 'fr', 'menus', 'language-picker.langs.fr_CF', 'Français (République centrafricaine)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7376, 0, 'fr', 'menus', 'language-picker.langs.fr_TD', 'Français (Tchad)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7377, 0, 'fr', 'menus', 'language-picker.langs.fr_KM', 'Français (Comores)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7378, 0, 'fr', 'menus', 'language-picker.langs.fr_CG', 'Français (Congo - Brazzaville)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7379, 0, 'fr', 'menus', 'language-picker.langs.fr_CD', 'Français (Congo - Kinshasa)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7380, 0, 'fr', 'menus', 'language-picker.langs.fr_CI', 'Français (Côte d’Ivoire)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7381, 0, 'fr', 'menus', 'language-picker.langs.fr_DJ', 'Français (Djibouti)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7382, 0, 'fr', 'menus', 'language-picker.langs.fr_GQ', 'Français (Guinée équatoriale)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7383, 0, 'fr', 'menus', 'language-picker.langs.fr_FR', 'France francaise)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7384, 0, 'fr', 'menus', 'language-picker.langs.fr_GA', 'Français (Gabon)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7385, 0, 'fr', 'menus', 'language-picker.langs.fr_GP', 'Français (Guadeloupe)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7386, 0, 'fr', 'menus', 'language-picker.langs.fr_GN', 'Français (Guinée)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7387, 0, 'fr', 'menus', 'language-picker.langs.fr_LU', 'Français (Luxembourg)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7388, 0, 'fr', 'menus', 'language-picker.langs.fr_MG', 'Français (Madagascar)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7389, 0, 'fr', 'menus', 'language-picker.langs.fr_ML', 'Français (Mali)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7390, 0, 'fr', 'menus', 'language-picker.langs.fr_MQ', 'Français (martinique)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7391, 0, 'fr', 'menus', 'language-picker.langs.fr_MC', 'Français (Monaco)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7392, 0, 'fr', 'menus', 'language-picker.langs.fr_NE', 'Français (Niger)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7393, 0, 'fr', 'menus', 'language-picker.langs.fr_RW', 'Français (Rwanda)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7394, 0, 'fr', 'menus', 'language-picker.langs.fr_RE', 'Français (Réunion)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7395, 0, 'fr', 'menus', 'language-picker.langs.fr_BL', 'Français (Saint Barthélemy)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7396, 0, 'fr', 'menus', 'language-picker.langs.fr_MF', 'Français (Saint Martin)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7397, 0, 'fr', 'menus', 'language-picker.langs.fr_SN', 'Français (Sénégal)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7398, 0, 'fr', 'menus', 'language-picker.langs.fr_CH', 'Français (Suisse)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7399, 0, 'fr', 'menus', 'language-picker.langs.fr_TG', 'Français (Togo)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7400, 0, 'fr', 'menus', 'language-picker.langs.ff_SN', 'Fulah (Sénégal)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7401, 0, 'fr', 'menus', 'language-picker.langs.ff', 'Fulah', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7402, 0, 'fr', 'menus', 'language-picker.langs.gl_ES', 'Galicien (Espagne)', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7403, 0, 'fr', 'menus', 'language-picker.langs.gl', 'Galicien', '2019-09-12 23:35:06', '2020-05-14 12:20:12'), (7404, 0, 'fr', 'menus', 'language-picker.langs.lg_UG', 'Ganda (Ouganda)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7405, 0, 'fr', 'menus', 'language-picker.langs.lg', 'Ganda', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7406, 0, 'fr', 'menus', 'language-picker.langs.ka_GE', 'Géorgien (Géorgie)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7407, 0, 'fr', 'menus', 'language-picker.langs.ka', 'géorgien', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7408, 0, 'fr', 'menus', 'language-picker.langs.de_AT', 'Allemand (Autriche)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7409, 0, 'fr', 'menus', 'language-picker.langs.de_BE', 'Allemand (Belgique)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7410, 0, 'fr', 'menus', 'language-picker.langs.de_DE', 'Allemand Allemagne)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7411, 0, 'fr', 'menus', 'language-picker.langs.de_LI', 'Allemand (Liechtenstein)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7412, 0, 'fr', 'menus', 'language-picker.langs.de_LU', 'Allemand (Luxembourg)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7413, 0, 'fr', 'menus', 'language-picker.langs.de_CH', 'Allemand (Suisse)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7414, 0, 'fr', 'menus', 'language-picker.langs.el_CY', 'Grecque (Chypre)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7415, 0, 'fr', 'menus', 'language-picker.langs.el_GR', 'Grec (Grèce)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7416, 0, 'fr', 'menus', 'language-picker.langs.gu_IN', 'Gujarati (Inde)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7417, 0, 'fr', 'menus', 'language-picker.langs.gu', 'Gujarati', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7418, 0, 'fr', 'menus', 'language-picker.langs.guz_KE', 'Gusii (Kenya)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7419, 0, 'fr', 'menus', 'language-picker.langs.guz', 'Gusii', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7420, 0, 'fr', 'menus', 'language-picker.langs.ha_Latn', 'Hausa (latin)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7421, 0, 'fr', 'menus', 'language-picker.langs.ha_Latn_GH', 'Hausa (latin, Ghana)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7422, 0, 'fr', 'menus', 'language-picker.langs.ha_Latn_NE', 'Hausa (latin, Niger)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7423, 0, 'fr', 'menus', 'language-picker.langs.ha_Latn_NG', 'Hausa (latin, Nigeria)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7424, 0, 'fr', 'menus', 'language-picker.langs.ha', 'Hausa', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7425, 0, 'fr', 'menus', 'language-picker.langs.haw_US', 'Hawaiian (États-Unis)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7426, 0, 'fr', 'menus', 'language-picker.langs.haw', 'hawaïen', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7427, 0, 'fr', 'menus', 'language-picker.langs.he_IL', 'Hébreu (Israël)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7428, 0, 'fr', 'menus', 'language-picker.langs.hi_IN', 'Hindi (inde)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7429, 0, 'fr', 'menus', 'language-picker.langs.hi', 'hindi', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7430, 0, 'fr', 'menus', 'language-picker.langs.hu_HU', 'Hongrois (Hongrie)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7431, 0, 'fr', 'menus', 'language-picker.langs.hu', 'hongrois', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7432, 0, 'fr', 'menus', 'language-picker.langs.is_IS', 'Islandais (Islande)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7433, 0, 'fr', 'menus', 'language-picker.langs.is', 'islandais', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7434, 0, 'fr', 'menus', 'language-picker.langs.ig_NG', 'Igbo (Nigéria)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7435, 0, 'fr', 'menus', 'language-picker.langs.ig', 'Igbo', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7436, 0, 'fr', 'menus', 'language-picker.langs.id_ID', 'Indonésien (Indonésie)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7437, 0, 'fr', 'menus', 'language-picker.langs.ga_IE', 'Irlandais (Irlande)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7438, 0, 'fr', 'menus', 'language-picker.langs.ga', 'irlandais', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7439, 0, 'fr', 'menus', 'language-picker.langs.it_IT', 'Italien (Italie)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7440, 0, 'fr', 'menus', 'language-picker.langs.it_CH', 'Italien (Suisse)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7441, 0, 'fr', 'menus', 'language-picker.langs.ja_JP', 'Japonais (Japon)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7442, 0, 'fr', 'menus', 'language-picker.langs.kea_CV', 'Kabuverdianu (Cap Vert)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7443, 0, 'fr', 'menus', 'language-picker.langs.kea', 'Kabuverdianu', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7444, 0, 'fr', 'menus', 'language-picker.langs.kab_DZ', 'Kabyle (Algérie)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7445, 0, 'fr', 'menus', 'language-picker.langs.kab', 'Kabyle', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7446, 0, 'fr', 'menus', 'language-picker.langs.kl_GL', 'Kalaallisut (Groenland)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7447, 0, 'fr', 'menus', 'language-picker.langs.kl', 'Kalaallisut', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7448, 0, 'fr', 'menus', 'language-picker.langs.kln_KE', 'Kalenjin (Kenya)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7449, 0, 'fr', 'menus', 'language-picker.langs.kln', 'Kalenjin', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7450, 0, 'fr', 'menus', 'language-picker.langs.kam_KE', 'Kamba (Kenya)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7451, 0, 'fr', 'menus', 'language-picker.langs.kam', 'Kamba', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7452, 0, 'fr', 'menus', 'language-picker.langs.kn_IN', 'Kannada (Inde)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7453, 0, 'fr', 'menus', 'language-picker.langs.kn', 'Kannada', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7454, 0, 'fr', 'menus', 'language-picker.langs.kk_Cyrl', 'Kazakh (cyrillique)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7455, 0, 'fr', 'menus', 'language-picker.langs.kk_Cyrl_KZ', 'Kazakh (cyrillique, Kazakhstan)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7456, 0, 'fr', 'menus', 'language-picker.langs.kk', 'Kazakh', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7457, 0, 'fr', 'menus', 'language-picker.langs.km_KH', 'Khmer (Cambodge)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7458, 0, 'fr', 'menus', 'language-picker.langs.km', 'Khmer', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7459, 0, 'fr', 'menus', 'language-picker.langs.ki_KE', 'Kikuyu (Kenya)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7460, 0, 'fr', 'menus', 'language-picker.langs.ki', 'Kikuyu', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7461, 0, 'fr', 'menus', 'language-picker.langs.rw_RW', 'Kinyarwanda (Rwanda)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7462, 0, 'fr', 'menus', 'language-picker.langs.rw', 'Kinyarwanda', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7463, 0, 'fr', 'menus', 'language-picker.langs.kok_IN', 'Konkani (Inde)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7464, 0, 'fr', 'menus', 'language-picker.langs.kok', 'Konkani', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7465, 0, 'fr', 'menus', 'language-picker.langs.ko_KR', 'Coréen (Corée du Sud)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7466, 0, 'fr', 'menus', 'language-picker.langs.ko', 'coréen', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7467, 0, 'fr', 'menus', 'language-picker.langs.khq_ML', 'Koyra Chiini (Mali)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7468, 0, 'fr', 'menus', 'language-picker.langs.khq', 'Koyra Chiini', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7469, 0, 'fr', 'menus', 'language-picker.langs.ses_ML', 'Koyraboro Senni (Mali)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7470, 0, 'fr', 'menus', 'language-picker.langs.ses', 'Koyraboro Senni', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7471, 0, 'fr', 'menus', 'language-picker.langs.lag_TZ', 'Langi (Tanzanie)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7472, 0, 'fr', 'menus', 'language-picker.langs.lag', 'Langi', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7473, 0, 'fr', 'menus', 'language-picker.langs.lv_LV', 'Letton (Lettonie)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7474, 0, 'fr', 'menus', 'language-picker.langs.lv', 'letton', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7475, 0, 'fr', 'menus', 'language-picker.langs.lt_LT', 'Lituanien (Lituanie)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7476, 0, 'fr', 'menus', 'language-picker.langs.lt', 'lituanien', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7477, 0, 'fr', 'menus', 'language-picker.langs.luo_KE', 'Luo (Kenya)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7478, 0, 'fr', 'menus', 'language-picker.langs.luo', 'Luo', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7479, 0, 'fr', 'menus', 'language-picker.langs.luy_KE', 'Luyia (Kenya)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7480, 0, 'fr', 'menus', 'language-picker.langs.luy', 'Luyia', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7481, 0, 'fr', 'menus', 'language-picker.langs.mk_MK', 'Macédonien (Macédoine)', '2019-09-12 23:35:07', '2020-05-14 12:20:12'), (7482, 0, 'fr', 'menus', 'language-picker.langs.mk', 'Macédonien', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7483, 0, 'fr', 'menus', 'language-picker.langs.jmc_TZ', 'Machame (Tanzanie)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7484, 0, 'fr', 'menus', 'language-picker.langs.jmc', 'Machame', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7485, 0, 'fr', 'menus', 'language-picker.langs.kde_TZ', 'Makonde (Tanzanie)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7486, 0, 'fr', 'menus', 'language-picker.langs.kde', 'Makonde', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7487, 0, 'fr', 'menus', 'language-picker.langs.mg_MG', 'Malgache (Madagascar)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7488, 0, 'fr', 'menus', 'language-picker.langs.mg', 'malgache', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7489, 0, 'fr', 'menus', 'language-picker.langs.ms_BN', 'Malais (Brunei)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7490, 0, 'fr', 'menus', 'language-picker.langs.ms_MY', 'Malais (malaisie)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7491, 0, 'fr', 'menus', 'language-picker.langs.ms', 'malais', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7492, 0, 'fr', 'menus', 'language-picker.langs.ml_IN', 'Malayalam (inde)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7493, 0, 'fr', 'menus', 'language-picker.langs.ml', 'Malayalam', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7494, 0, 'fr', 'menus', 'language-picker.langs.mt_MT', 'Maltais (Malte)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7495, 0, 'fr', 'menus', 'language-picker.langs.mt', 'maltais', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7496, 0, 'fr', 'menus', 'language-picker.langs.gv_GB', 'Manx (Royaume-Uni)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7497, 0, 'fr', 'menus', 'language-picker.langs.gv', 'Mannois', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7498, 0, 'fr', 'menus', 'language-picker.langs.mr_IN', 'Marathi (inde)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7499, 0, 'fr', 'menus', 'language-picker.langs.mr', 'Marathi', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7500, 0, 'fr', 'menus', 'language-picker.langs.mas_KE', 'Masaï (Kenya)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7501, 0, 'fr', 'menus', 'language-picker.langs.mas_TZ', 'Masaï (Tanzanie)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7502, 0, 'fr', 'menus', 'language-picker.langs.mas', 'Masai', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7503, 0, 'fr', 'menus', 'language-picker.langs.mer_KE', 'Meru (Kenya)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7504, 0, 'fr', 'menus', 'language-picker.langs.mer', 'Meru', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7505, 0, 'fr', 'menus', 'language-picker.langs.mfe_MU', 'Morisyen (Maurice)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7506, 0, 'fr', 'menus', 'language-picker.langs.mfe', 'Morisyen', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7507, 0, 'fr', 'menus', 'language-picker.langs.naq_NA', 'Nama (Namibie)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7508, 0, 'fr', 'menus', 'language-picker.langs.naq', 'Nama', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7509, 0, 'fr', 'menus', 'language-picker.langs.ne_IN', 'Népalais (Inde)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7510, 0, 'fr', 'menus', 'language-picker.langs.ne_NP', 'Népalais (Népal)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7511, 0, 'fr', 'menus', 'language-picker.langs.ne', 'Népalais', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7512, 0, 'fr', 'menus', 'language-picker.langs.nd_ZW', 'Ndebele Nord (Zimbabwe)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7513, 0, 'fr', 'menus', 'language-picker.langs.nd', 'Ndebele Nord', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7514, 0, 'fr', 'menus', 'language-picker.langs.nb_NO', 'Norvégien Bokmål (Norvège)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7515, 0, 'fr', 'menus', 'language-picker.langs.nb', 'Bokmål Norvégien', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7516, 0, 'fr', 'menus', 'language-picker.langs.nn_NO', 'Nynorsk norvégien (Norvège)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7517, 0, 'fr', 'menus', 'language-picker.langs.nn', 'Nynorsk norvégien', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7518, 0, 'fr', 'menus', 'language-picker.langs.nyn_UG', 'Nyankole (Ouganda)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'); INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES (7519, 0, 'fr', 'menus', 'language-picker.langs.nyn', 'Nyankole', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7520, 0, 'fr', 'menus', 'language-picker.langs.or_IN', 'Oriya (Inde)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7521, 0, 'fr', 'menus', 'language-picker.langs.or', 'Oriya', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7522, 0, 'fr', 'menus', 'language-picker.langs.om_ET', 'Oromo (Ethiopie)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7523, 0, 'fr', 'menus', 'language-picker.langs.om_KE', 'Oromo (Kenya)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7524, 0, 'fr', 'menus', 'language-picker.langs.om', 'Oromo', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7525, 0, 'fr', 'menus', 'language-picker.langs.ps_AF', 'Pachtoune (Afghanistan)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7526, 0, 'fr', 'menus', 'language-picker.langs.ps', 'Pachto', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7527, 0, 'fr', 'menus', 'language-picker.langs.fa_AF', 'Persan (Afghanistan)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7528, 0, 'fr', 'menus', 'language-picker.langs.fa_IR', 'Persan (Iran)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7529, 0, 'fr', 'menus', 'language-picker.langs.pl_PL', 'Polonais (Pologne)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7530, 0, 'fr', 'menus', 'language-picker.langs.pl', 'polonais', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7531, 0, 'fr', 'menus', 'language-picker.langs.pt_GW', 'Portugais (Guinée-Bissau)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7532, 0, 'fr', 'menus', 'language-picker.langs.pt_MZ', 'Portugais (Mozambique)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7533, 0, 'fr', 'menus', 'language-picker.langs.pt_PT', 'Portugais (Portugal)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7534, 0, 'fr', 'menus', 'language-picker.langs.pt', 'Portugais', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7535, 0, 'fr', 'menus', 'language-picker.langs.pa_Arab', 'Punjabi (arabe)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7536, 0, 'fr', 'menus', 'language-picker.langs.pa_Arab_PK', 'Punjabi (arabe, pakistan)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7537, 0, 'fr', 'menus', 'language-picker.langs.pa_Guru', 'Punjabi (Gurmukhi)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7538, 0, 'fr', 'menus', 'language-picker.langs.pa_Guru_IN', 'Punjabi (Gurmukhi, Inde)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7539, 0, 'fr', 'menus', 'language-picker.langs.pa', 'Punjabi', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7540, 0, 'fr', 'menus', 'language-picker.langs.ro_MD', 'Roumain (Moldavie)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7541, 0, 'fr', 'menus', 'language-picker.langs.ro_RO', 'Roumain (Roumanie)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7542, 0, 'fr', 'menus', 'language-picker.langs.ro', 'roumain', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7543, 0, 'fr', 'menus', 'language-picker.langs.rm_CH', 'Romanche (Suisse)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7544, 0, 'fr', 'menus', 'language-picker.langs.rm', 'Le romanche', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7545, 0, 'fr', 'menus', 'language-picker.langs.rof_TZ', 'Rombo (Tanzanie)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7546, 0, 'fr', 'menus', 'language-picker.langs.rof', 'Rombo', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7547, 0, 'fr', 'menus', 'language-picker.langs.ru_MD', 'Russe (Moldavie)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7548, 0, 'fr', 'menus', 'language-picker.langs.ru_RU', 'Russe (Russie)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7549, 0, 'fr', 'menus', 'language-picker.langs.ru_UA', 'Russe (Ukraine)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7550, 0, 'fr', 'menus', 'language-picker.langs.rwk_TZ', 'Rwa (Tanzanie)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7551, 0, 'fr', 'menus', 'language-picker.langs.rwk', 'Rwa', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7552, 0, 'fr', 'menus', 'language-picker.langs.saq_KE', 'Samburu (Kenya)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7553, 0, 'fr', 'menus', 'language-picker.langs.saq', 'Samburu', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7554, 0, 'fr', 'menus', 'language-picker.langs.sg_CF', 'Sango (République centrafricaine)', '2019-09-12 23:35:08', '2020-05-14 12:20:12'), (7555, 0, 'fr', 'menus', 'language-picker.langs.sg', 'Sango', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7556, 0, 'fr', 'menus', 'language-picker.langs.seh_MZ', 'Sena (Mozambique)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7557, 0, 'fr', 'menus', 'language-picker.langs.seh', 'Sena', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7558, 0, 'fr', 'menus', 'language-picker.langs.sr_Cyrl', 'Serbe (cyrillique)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7559, 0, 'fr', 'menus', 'language-picker.langs.sr_Cyrl_BA', 'Serbe (cyrillique, Bosnie-Herzégovine)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7560, 0, 'fr', 'menus', 'language-picker.langs.sr_Cyrl_ME', 'Serbe (cyrillique, Monténégro)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7561, 0, 'fr', 'menus', 'language-picker.langs.sr_Cyrl_RS', 'Serbe (cyrillique, Serbie)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7562, 0, 'fr', 'menus', 'language-picker.langs.sr_Latn', 'Serbe (latin)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7563, 0, 'fr', 'menus', 'language-picker.langs.sr_Latn_BA', 'Serbe (latin, Bosnie-Herzégovine)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7564, 0, 'fr', 'menus', 'language-picker.langs.sr_Latn_ME', 'Serbe (latin, monténégro)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7565, 0, 'fr', 'menus', 'language-picker.langs.sr_Latn_RS', 'Serbe (latin, serbe)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7566, 0, 'fr', 'menus', 'language-picker.langs.sr', 'serbe', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7567, 0, 'fr', 'menus', 'language-picker.langs.sn_ZW', 'Shona (Zimbabwe)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7568, 0, 'fr', 'menus', 'language-picker.langs.sn', 'Shona', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7569, 0, 'fr', 'menus', 'language-picker.langs.ii_CN', 'Sichuan Yi (Chine)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7570, 0, 'fr', 'menus', 'language-picker.langs.ii', 'Sichuan Yi', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7571, 0, 'fr', 'menus', 'language-picker.langs.si_LK', 'Cinghalais (Sri Lanka)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7572, 0, 'fr', 'menus', 'language-picker.langs.si', 'Cinghalais', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7573, 0, 'fr', 'menus', 'language-picker.langs.sk_SK', 'Slovaque (Slovaquie)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7574, 0, 'fr', 'menus', 'language-picker.langs.sk', 'slovaque', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7575, 0, 'fr', 'menus', 'language-picker.langs.sl_SI', 'Slovène (Slovénie)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7576, 0, 'fr', 'menus', 'language-picker.langs.sl', 'slovène', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7577, 0, 'fr', 'menus', 'language-picker.langs.xog_UG', 'Soga (Ouganda)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7578, 0, 'fr', 'menus', 'language-picker.langs.xog', 'Soga', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7579, 0, 'fr', 'menus', 'language-picker.langs.so_DJ', 'Somali (Djibouti)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7580, 0, 'fr', 'menus', 'language-picker.langs.so_ET', 'Somali (Ethiopie)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7581, 0, 'fr', 'menus', 'language-picker.langs.so_KE', 'Somali (Kenya)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7582, 0, 'fr', 'menus', 'language-picker.langs.so_SO', 'Somali (Somalie)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7583, 0, 'fr', 'menus', 'language-picker.langs.so', 'somali', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7584, 0, 'fr', 'menus', 'language-picker.langs.es_AR', 'Espagnol (Argentine)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7585, 0, 'fr', 'menus', 'language-picker.langs.es_BO', 'Espagnol (Bolivie)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7586, 0, 'fr', 'menus', 'language-picker.langs.es_CL', 'Espagnol (Chili)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7587, 0, 'fr', 'menus', 'language-picker.langs.es_CO', 'Espagnol (Colombie)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7588, 0, 'fr', 'menus', 'language-picker.langs.es_CR', 'Espagnol (Costa Rica)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7589, 0, 'fr', 'menus', 'language-picker.langs.es_DO', 'Espagnol (République Dominicaine)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7590, 0, 'fr', 'menus', 'language-picker.langs.es_EC', 'Espagnol (Equateur)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7591, 0, 'fr', 'menus', 'language-picker.langs.es_SV', 'Espagnol (Salvador)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7592, 0, 'fr', 'menus', 'language-picker.langs.es_GQ', 'Espagnol (Guinée équatoriale)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7593, 0, 'fr', 'menus', 'language-picker.langs.es_GT', 'Espagnol (Guatemala)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7594, 0, 'fr', 'menus', 'language-picker.langs.es_HN', 'Espagnol (Honduras)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7595, 0, 'fr', 'menus', 'language-picker.langs.es_419', 'Espagnol (Amérique latine)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7596, 0, 'fr', 'menus', 'language-picker.langs.es_MX', 'Espagnol (Mexique)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7597, 0, 'fr', 'menus', 'language-picker.langs.es_NI', 'Espagnol (Nicaragua)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7598, 0, 'fr', 'menus', 'language-picker.langs.es_PA', 'Espagnol (Panama)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7599, 0, 'fr', 'menus', 'language-picker.langs.es_PY', 'Espagnol (Paraguay)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7600, 0, 'fr', 'menus', 'language-picker.langs.es_PE', 'Espagnol (Pérou)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7601, 0, 'fr', 'menus', 'language-picker.langs.es_PR', 'Espagnol (Porto Rico)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7602, 0, 'fr', 'menus', 'language-picker.langs.es_ES', 'Espagnol (Espagne)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7603, 0, 'fr', 'menus', 'language-picker.langs.es_US', 'Espagnol (États-Unis)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7604, 0, 'fr', 'menus', 'language-picker.langs.es_UY', 'Espagnol (Uruguay)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7605, 0, 'fr', 'menus', 'language-picker.langs.es_VE', 'Espagnol (Venezuela)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7606, 0, 'fr', 'menus', 'language-picker.langs.sw_KE', 'Swahili (Kenya)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7607, 0, 'fr', 'menus', 'language-picker.langs.sw_TZ', 'Swahili (Tanzanie)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7608, 0, 'fr', 'menus', 'language-picker.langs.sw', 'Swahili', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7609, 0, 'fr', 'menus', 'language-picker.langs.sv_FI', 'Suédois (Finlande)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7610, 0, 'fr', 'menus', 'language-picker.langs.sv_SE', 'Suédois (Suède)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7611, 0, 'fr', 'menus', 'language-picker.langs.gsw_CH', 'Suisse allemand (Suisse)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7612, 0, 'fr', 'menus', 'language-picker.langs.gsw', 'Suisse allemand', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7613, 0, 'fr', 'menus', 'language-picker.langs.shi_Latn', 'Tachelhit (latin)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7614, 0, 'fr', 'menus', 'language-picker.langs.shi_Latn_MA', 'Tachelhit (latin, maroc)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7615, 0, 'fr', 'menus', 'language-picker.langs.shi_Tfng', 'Tachelhit (Tifinagh)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7616, 0, 'fr', 'menus', 'language-picker.langs.shi_Tfng_MA', 'Tachelhit (Tifinagh, Maroc)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7617, 0, 'fr', 'menus', 'language-picker.langs.shi', 'Tachelhit', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7618, 0, 'fr', 'menus', 'language-picker.langs.dav_KE', 'Taita (Kenya)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7619, 0, 'fr', 'menus', 'language-picker.langs.dav', 'Taita', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7620, 0, 'fr', 'menus', 'language-picker.langs.ta_IN', 'Tamoul (Inde)', '2019-09-12 23:35:09', '2020-05-14 12:20:12'), (7621, 0, 'fr', 'menus', 'language-picker.langs.ta_LK', 'Tamil (Sri Lanka)', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7622, 0, 'fr', 'menus', 'language-picker.langs.ta', 'Tamil', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7623, 0, 'fr', 'menus', 'language-picker.langs.te_IN', 'Telugu (Inde)', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7624, 0, 'fr', 'menus', 'language-picker.langs.te', 'Telugu', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7625, 0, 'fr', 'menus', 'language-picker.langs.teo_KE', 'Teso (Kenya)', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7626, 0, 'fr', 'menus', 'language-picker.langs.teo_UG', 'Teso (Ouganda)', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7627, 0, 'fr', 'menus', 'language-picker.langs.teo', 'Teso', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7628, 0, 'fr', 'menus', 'language-picker.langs.th_TH', 'Thaïlandais (Thaïlande)', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7629, 0, 'fr', 'menus', 'language-picker.langs.bo_CN', 'Tibétain (Chine)', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7630, 0, 'fr', 'menus', 'language-picker.langs.bo_IN', 'Tibétain (Inde)', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7631, 0, 'fr', 'menus', 'language-picker.langs.bo', 'Tibétain', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7632, 0, 'fr', 'menus', 'language-picker.langs.ti_ER', 'Tigrinya (Érythrée)', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7633, 0, 'fr', 'menus', 'language-picker.langs.ti_ET', 'Tigrinya (Ethiopie)', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7634, 0, 'fr', 'menus', 'language-picker.langs.ti', 'Tigrinya', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7635, 0, 'fr', 'menus', 'language-picker.langs.to_TO', 'Tonga (Tonga)', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7636, 0, 'fr', 'menus', 'language-picker.langs.to', 'Tonga', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7637, 0, 'fr', 'menus', 'language-picker.langs.tr_TR', 'Turc (Turquie)', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7638, 0, 'fr', 'menus', 'language-picker.langs.uk_UA', 'Ukrainien (Ukraine)', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7639, 0, 'fr', 'menus', 'language-picker.langs.uk', 'ukrainien', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7640, 0, 'fr', 'menus', 'language-picker.langs.ur_IN', 'Urdu (Inde)', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7641, 0, 'fr', 'menus', 'language-picker.langs.ur_PK', 'Urdu (Pakistan)', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7642, 0, 'fr', 'menus', 'language-picker.langs.ur', 'Ourdou', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7643, 0, 'fr', 'menus', 'language-picker.langs.uz_Arab', 'Ouzbek (arabe)', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7644, 0, 'fr', 'menus', 'language-picker.langs.uz_Arab_AF', 'Ouzbek (arabe, Afghanistan)', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7645, 0, 'fr', 'menus', 'language-picker.langs.uz_Cyrl', 'Ouzbek (cyrillique)', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7646, 0, 'fr', 'menus', 'language-picker.langs.uz_Cyrl_UZ', 'Ouzbek (cyrillique, Ouzbékistan)', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7647, 0, 'fr', 'menus', 'language-picker.langs.uz_Latn', 'Ouzbek (latin)', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7648, 0, 'fr', 'menus', 'language-picker.langs.uz_Latn_UZ', 'Ouzbek (latin, Ouzbékistan)', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7649, 0, 'fr', 'menus', 'language-picker.langs.uz', 'Ouzbek', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7650, 0, 'fr', 'menus', 'language-picker.langs.vi_VN', 'Vietnamien (Vietnam)', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7651, 0, 'fr', 'menus', 'language-picker.langs.vi', 'vietnamien', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7652, 0, 'fr', 'menus', 'language-picker.langs.vun_TZ', 'Vunjo (Tanzanie)', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7653, 0, 'fr', 'menus', 'language-picker.langs.vun', 'Vunjo', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7654, 0, 'fr', 'menus', 'language-picker.langs.cy_GB', 'Gallois (Royaume-Uni)', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7655, 0, 'fr', 'menus', 'language-picker.langs.cy', 'gallois', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7656, 0, 'fr', 'menus', 'language-picker.langs.yo_NG', 'Yoruba (Nigéria)', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7657, 0, 'fr', 'menus', 'language-picker.langs.yo', 'Yoruba', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7658, 0, 'fr', 'menus', 'language-picker.langs.zu_ZA', 'Zoulou (Afrique du Sud)', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7659, 0, 'fr', 'menus', 'language-picker.langs.zu', 'zoulou', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7660, 0, 'fr', 'navs', 'general.home', 'Accueil', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7661, 0, 'fr', 'navs', 'general.logout', 'Connectez - Out', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7662, 0, 'fr', 'navs', 'general.login', 'S\'identifier', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7663, 0, 'fr', 'navs', 'general.account', 'Compte', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7664, 0, 'fr', 'navs', 'general.messages', 'messages', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7665, 0, 'fr', 'navs', 'general.no_messages', 'Pas de messages', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7666, 0, 'fr', 'navs', 'general.profile', 'Profil', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7667, 0, 'fr', 'navs', 'frontend.contact', 'Contact', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7668, 0, 'fr', 'navs', 'frontend.dashboard', 'Tableau de bord', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7669, 0, 'fr', 'navs', 'frontend.login', 'S\'identifier', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7670, 0, 'fr', 'navs', 'frontend.macros', 'Les macros', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7671, 0, 'fr', 'navs', 'frontend.register', 'registre', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7672, 0, 'fr', 'navs', 'frontend.user.account', 'Mon compte', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7673, 0, 'fr', 'navs', 'frontend.user.administration', 'Administration', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7674, 0, 'fr', 'navs', 'frontend.user.change_password', 'Changer le mot de passe', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7675, 0, 'fr', 'navs', 'frontend.user.my_information', 'Mon information', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7676, 0, 'fr', 'navs', 'frontend.user.profile', 'Profil', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7677, 0, 'fr', 'navs', 'frontend.forums', 'Les forums', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7678, 0, 'fr', 'navs', 'frontend.courses', 'Cours', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7679, 0, 'fr', 'pagination', 'previous', '& laquo; précédent', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7680, 0, 'fr', 'pagination', 'next', 'Suivant & raquo;', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7681, 0, 'fr', 'passwords', 'password', 'Les mots de passe doivent comporter au moins six caractères et correspondre à la confirmation.', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7682, 0, 'fr', 'passwords', 'reset', 'Votre mot de passe a été réinitialisé!', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7683, 0, 'fr', 'passwords', 'sent', 'Nous avons envoyé votre lien de réinitialisation de mot de passe par e-mail!', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7684, 0, 'fr', 'passwords', 'token', 'Ce jeton de réinitialisation de mot de passe n\'est pas valide.', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7685, 0, 'fr', 'passwords', 'user', 'Nous ne pouvons pas trouver un utilisateur avec cette adresse e-mail.', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7686, 0, 'fr', 'roles', 'administrator', 'Administrateur', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7687, 0, 'fr', 'roles', 'user', 'Utilisateur', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7688, 0, 'fr', 'strings', 'backend.access.users.delete_user_confirm', 'Êtes-vous sûr de vouloir supprimer cet utilisateur de manière permanente? Toute erreur dans l’application faisant référence à l’identifiant de cet utilisateur sera la plus probable. Procédez à vos risques et périls. Ça ne peut pas être annulé.', '2019-09-12 23:35:10', '2020-05-14 12:20:12'), (7689, 0, 'fr', 'strings', 'backend.access.users.if_confirmed_off', '(Si confirmé est éteint)', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7690, 0, 'fr', 'strings', 'backend.access.users.restore_user_confirm', 'Restaurer cet utilisateur à son état d\'origine?', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7691, 0, 'fr', 'strings', 'backend.access.users.no_deactivated', 'Il n\'y a pas d\'utilisateurs désactivés.', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7692, 0, 'fr', 'strings', 'backend.access.users.no_deleted', 'Il n\'y a pas d\'utilisateurs supprimés.', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7693, 0, 'fr', 'strings', 'backend.dashboard.title', 'Tableau de bord', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7694, 0, 'fr', 'strings', 'backend.dashboard.welcome', 'Bienvenue', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7695, 0, 'fr', 'strings', 'backend.dashboard.my_courses', 'Mes cours', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7696, 0, 'fr', 'strings', 'backend.general.all_rights_reserved', 'Tous les droits sont réservés.', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7697, 0, 'fr', 'strings', 'backend.general.are_you_sure', 'Es-tu sûr de vouloir faire ça?', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7698, 0, 'fr', 'strings', 'backend.general.boilerplate_link', 'JThemes Studio', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7699, 0, 'fr', 'strings', 'backend.general.continue', 'Continuer', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7700, 0, 'fr', 'strings', 'backend.general.member_since', 'Membre depuis', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7701, 0, 'fr', 'strings', 'backend.general.minutes', 'minutes', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7702, 0, 'fr', 'strings', 'backend.general.search_placeholder', 'Chercher...', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7703, 0, 'fr', 'strings', 'backend.general.timeout', 'Vous avez été automatiquement déconnecté pour des raisons de sécurité, car vous n’avez exercé aucune activité dans', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7704, 0, 'fr', 'strings', 'backend.general.see_all.messages', 'Voir tous les messages', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7705, 0, 'fr', 'strings', 'backend.general.see_all.notifications', 'Voir tout', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7706, 0, 'fr', 'strings', 'backend.general.see_all.tasks', 'Voir toutes les tâches', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7707, 0, 'fr', 'strings', 'backend.general.status.online', 'En ligne', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7708, 0, 'fr', 'strings', 'backend.general.status.offline', 'Hors ligne', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7709, 0, 'fr', 'strings', 'backend.general.you_have.messages', '{0} Vous n\'avez pas de message | {1} Vous avez 1 message | [2, Inf] Vous avez: nombre de messages', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7710, 0, 'fr', 'strings', 'backend.general.you_have.notifications', '{0} Vous n\'avez pas de notifications | {1} Vous avez 1 notification | [2, Inf] Vous avez: notifications de numéro', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7711, 0, 'fr', 'strings', 'backend.general.you_have.tasks', '{0} Vous n\'avez pas de tâches | {1} vous avez 1 tâche | [2, Inf] Vous avez: nombre de tâches', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7712, 0, 'fr', 'strings', 'backend.general.actions', 'actes', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7713, 0, 'fr', 'strings', 'backend.general.all', 'Tout', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7714, 0, 'fr', 'strings', 'backend.general.app_add', 'Ajouter', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7715, 0, 'fr', 'strings', 'backend.general.app_add_new', 'Ajouter un nouveau', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7716, 0, 'fr', 'strings', 'backend.general.app_are_you_sure', 'Êtes-vous sûr?', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7717, 0, 'fr', 'strings', 'backend.general.app_back_to_list', 'Retour à la liste', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7718, 0, 'fr', 'strings', 'backend.general.app_create', 'Créer', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7719, 0, 'fr', 'strings', 'backend.general.app_dashboard', 'Tableau de bord', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7720, 0, 'fr', 'strings', 'backend.general.app_delete', 'Effacer', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7721, 0, 'fr', 'strings', 'backend.general.app_edit', 'modifier', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7722, 0, 'fr', 'strings', 'backend.general.app_list', 'liste', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7723, 0, 'fr', 'strings', 'backend.general.app_logout', 'Connectez - Out', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7724, 0, 'fr', 'strings', 'backend.general.app_no_entries_in_table', 'Aucune entrée dans la table', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7725, 0, 'fr', 'strings', 'backend.general.app_permadel', 'Effacé définitivement', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7726, 0, 'fr', 'strings', 'backend.general.app_restore', 'Restaurer', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7727, 0, 'fr', 'strings', 'backend.general.app_save', 'sauvegarder', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7728, 0, 'fr', 'strings', 'backend.general.app_update', 'Mettre à jour', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7729, 0, 'fr', 'strings', 'backend.general.app_view', 'Vue', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7730, 0, 'fr', 'strings', 'backend.general.custom_controller_index', 'Index du contrôleur personnalisé.', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7731, 0, 'fr', 'strings', 'backend.general.trashed', 'Mis à la poubelle', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7732, 0, 'fr', 'strings', 'backend.search.empty', 'Veuillez entrer un terme de recherche.', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7733, 0, 'fr', 'strings', 'backend.search.incomplete', 'Vous devez écrire votre propre logique de recherche pour ce système.', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7734, 0, 'fr', 'strings', 'backend.search.title', 'Résultats de la recherche', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7735, 0, 'fr', 'strings', 'backend.search.results', 'Résultats de recherche pour: requête', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7736, 0, 'fr', 'strings', 'backend.welcome', 'Bienvenue sur le tableau de bord', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7737, 0, 'fr', 'strings', 'backend.menu_manager.Category', 'Catégorie', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7738, 0, 'fr', 'strings', 'backend.menu_manager.add_to_menu', 'Ajouter au menu', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7739, 0, 'fr', 'strings', 'backend.menu_manager.assigned_menu', 'Menu assigné', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7740, 0, 'fr', 'strings', 'backend.menu_manager.auto_add_pages', 'Ajout automatique de pages', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7741, 0, 'fr', 'strings', 'backend.menu_manager.cancel', 'Annuler', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7742, 0, 'fr', 'strings', 'backend.menu_manager.categories', 'Les catégories', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7743, 0, 'fr', 'strings', 'backend.menu_manager.choose', 'Choisir', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7744, 0, 'fr', 'strings', 'backend.menu_manager.class', 'Classe CSS (optionnel)', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7745, 0, 'fr', 'strings', 'backend.menu_manager.create_menu', 'Créer un menu', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7746, 0, 'fr', 'strings', 'backend.menu_manager.create_new', 'Créer un nouveau menu', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7747, 0, 'fr', 'strings', 'backend.menu_manager.currently', 'Actuellement réglé sur', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7748, 0, 'fr', 'strings', 'backend.menu_manager.custom_link', 'Lien personnalisé', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7749, 0, 'fr', 'strings', 'backend.menu_manager.delete', 'Effacer', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7750, 0, 'fr', 'strings', 'backend.menu_manager.delete_menu', 'Supprimer le menu', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7751, 0, 'fr', 'strings', 'backend.menu_manager.display', 'Afficher', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7752, 0, 'fr', 'strings', 'backend.menu_manager.drag_instruction_1', 'Placez chaque article dans l\'ordre que vous préférez. Cliquez sur la flèche à droite de l\'élément pour afficher plus d\'options de configuration.', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7753, 0, 'fr', 'strings', 'backend.menu_manager.drag_instruction_2', 'Veuillez entrer le nom et sélectionner le bouton \"Créer un menu\"', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7754, 0, 'fr', 'strings', 'backend.menu_manager.edit', 'modifier', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7755, 0, 'fr', 'strings', 'backend.menu_manager.edit_menus', 'Editer les menus', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7756, 0, 'fr', 'strings', 'backend.menu_manager.footer_menu', 'Menu de pied de page', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7757, 0, 'fr', 'strings', 'backend.menu_manager.label', 'Étiquette', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7758, 0, 'fr', 'strings', 'backend.menu_manager.link', 'Lien', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7759, 0, 'fr', 'strings', 'backend.menu_manager.locations', 'Emplacements', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7760, 0, 'fr', 'strings', 'backend.menu_manager.menu_creation', 'Création de menu', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7761, 0, 'fr', 'strings', 'backend.menu_manager.menu_settings', 'Paramètres du menu', '2019-09-12 23:35:11', '2020-05-14 12:20:12'), (7762, 0, 'fr', 'strings', 'backend.menu_manager.menu_structure', 'Structure du menu', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7763, 0, 'fr', 'strings', 'backend.menu_manager.move', 'Bouge toi', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7764, 0, 'fr', 'strings', 'backend.menu_manager.move_down', 'Descendre', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7765, 0, 'fr', 'strings', 'backend.menu_manager.move_left', 'Se déplacer à gauche', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7766, 0, 'fr', 'strings', 'backend.menu_manager.move_right', 'Déplacer vers la droite', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7767, 0, 'fr', 'strings', 'backend.menu_manager.move_up', 'Déplacer vers le haut', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7768, 0, 'fr', 'strings', 'backend.menu_manager.name', 'prénom', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7769, 0, 'fr', 'strings', 'backend.menu_manager.or', 'Ou', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7770, 0, 'fr', 'strings', 'backend.menu_manager.page', 'Page', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7771, 0, 'fr', 'strings', 'backend.menu_manager.pages', 'Des pages', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7772, 0, 'fr', 'strings', 'backend.menu_manager.post', 'Poster', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7773, 0, 'fr', 'strings', 'backend.menu_manager.posts', 'Des postes', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7774, 0, 'fr', 'strings', 'backend.menu_manager.save_changes', 'Sauvegarder les modifications', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7775, 0, 'fr', 'strings', 'backend.menu_manager.save_menu', 'Enregistrer le menu', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7776, 0, 'fr', 'strings', 'backend.menu_manager.screen_reader_text', 'Appuyez sur Entrée ou Entrée pour développer', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7777, 0, 'fr', 'strings', 'backend.menu_manager.select_all', 'Tout sélectionner', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7778, 0, 'fr', 'strings', 'backend.menu_manager.select_to_edit', 'Sélectionnez le menu que vous souhaitez éditer', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7779, 0, 'fr', 'strings', 'backend.menu_manager.sub_menu', 'Sous menu', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7780, 0, 'fr', 'strings', 'backend.menu_manager.theme_location', 'Lieu thématique', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7781, 0, 'fr', 'strings', 'backend.menu_manager.title', 'Gestionnaire de menu', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7782, 0, 'fr', 'strings', 'backend.menu_manager.top', 'Haut', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7783, 0, 'fr', 'strings', 'backend.menu_manager.top_menu', 'Menu principal', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7784, 0, 'fr', 'strings', 'backend.menu_manager.update_item', 'Mettre à jour l\'élément', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7785, 0, 'fr', 'strings', 'backend.menu_manager.url', 'URL', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7786, 0, 'fr', 'strings', 'backend.menu_manager.welcome', 'Bienvenue', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7787, 0, 'fr', 'strings', 'backend.menu_manager.auto_add_pages_desc', 'Ajouter automatiquement de nouvelles pages de premier niveau à ce menu', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7788, 0, 'fr', 'strings', 'emails.auth.account_confirmed', 'Votre compte a été confirmé.', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7789, 0, 'fr', 'strings', 'emails.auth.error', 'Oups!', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7790, 0, 'fr', 'strings', 'emails.auth.greeting', 'salut!', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7791, 0, 'fr', 'strings', 'emails.auth.regards', 'Cordialement,', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7792, 0, 'fr', 'strings', 'emails.auth.trouble_clicking_button', 'Si vous ne parvenez pas à cliquer sur le bouton \": action_text\", copiez et collez l’URL ci-dessous dans votre navigateur Web:', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7793, 0, 'fr', 'strings', 'emails.auth.thank_you_for_using_app', 'Merci d\'utiliser notre application!', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7794, 0, 'fr', 'strings', 'emails.auth.password_reset_subject', 'réinitialiser le mot de passe', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7795, 0, 'fr', 'strings', 'emails.auth.password_cause_of_email', 'Vous recevez cet email car nous avons reçu une demande de réinitialisation du mot de passe pour votre compte.', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7796, 0, 'fr', 'strings', 'emails.auth.password_if_not_requested', 'Si vous n\'avez pas demandé de réinitialisation de mot de passe, aucune autre action n\'est requise.', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7797, 0, 'fr', 'strings', 'emails.auth.reset_password', 'Cliquez ici pour réinitialiser votre mot de passe', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7798, 0, 'fr', 'strings', 'emails.auth.click_to_confirm', 'Cliquez ici pour confirmer votre compte:', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7799, 0, 'fr', 'strings', 'emails.contact.email_body_title', 'Vous avez une nouvelle demande de formulaire de contact: Voici les détails:', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7800, 0, 'fr', 'strings', 'emails.contact.subject', 'Une nouvelle soumission de formulaire de contact: app_name!', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7801, 0, 'fr', 'strings', 'emails.offline_order.subject', 'Concernant votre commande récente sur: app_name', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7802, 0, 'fr', 'strings', 'frontend.test', 'Tester', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7803, 0, 'fr', 'strings', 'frontend.tests.based_on.permission', 'Basé sur la permission -', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7804, 0, 'fr', 'strings', 'frontend.tests.based_on.role', 'Basé sur les rôles -', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7805, 0, 'fr', 'strings', 'frontend.tests.js_injected_from_controller', 'Javascript injecté à partir d\'un contrôleur', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7806, 0, 'fr', 'strings', 'frontend.tests.using_blade_extensions', 'Utilisation des extensions de lame', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7807, 0, 'fr', 'strings', 'frontend.tests.using_access_helper.array_permissions', 'Utilisation d\'Access Helper avec un tableau de noms de permission ou d\'identifiants où l\'utilisateur doit tout posséder.', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7808, 0, 'fr', 'strings', 'frontend.tests.using_access_helper.array_permissions_not', 'Utilisation d\'Access Helper avec un tableau de noms de permission ou d\'identifiants pour lesquels l\'utilisateur ne doit pas nécessairement tout posséder.', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7809, 0, 'fr', 'strings', 'frontend.tests.using_access_helper.array_roles', 'Utiliser Access Helper avec un tableau de noms de rôles ou d’ID où l’utilisateur doit tout posséder.', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7810, 0, 'fr', 'strings', 'frontend.tests.using_access_helper.array_roles_not', 'Utiliser Access Helper avec un tableau de noms de rôles ou d’ID où l’utilisateur n’a pas à tout posséder', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7811, 0, 'fr', 'strings', 'frontend.tests.using_access_helper.permission_id', 'Utilisation d\'Access Helper avec un ID de permission', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7812, 0, 'fr', 'strings', 'frontend.tests.using_access_helper.permission_name', 'Utilisation d\'Access Helper avec le nom de permission', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7813, 0, 'fr', 'strings', 'frontend.tests.using_access_helper.role_id', 'Utilisation d\'Access Helper avec l\'ID de rôle', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7814, 0, 'fr', 'strings', 'frontend.tests.using_access_helper.role_name', 'Utilisation d\'Access Helper avec un nom de rôle', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7815, 0, 'fr', 'strings', 'frontend.tests.view_console_it_works', 'Voir la console, vous devriez voir \'ça marche!\' qui vient de FrontendController @ index', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7816, 0, 'fr', 'strings', 'frontend.tests.you_can_see_because', 'Vous pouvez voir cela parce que vous avez le rôle de \': rôle\'!', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7817, 0, 'fr', 'strings', 'frontend.tests.you_can_see_because_permission', 'Vous pouvez voir cela parce que vous avez la permission de \': permission\'!', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7818, 0, 'fr', 'strings', 'frontend.general.joined', 'Rejoint', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7819, 0, 'fr', 'strings', 'frontend.user.change_email_notice', 'Si vous modifiez votre adresse e-mail, vous serez déconnecté jusqu\'à ce que vous confirmiez votre nouvelle adresse e-mail.', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7820, 0, 'fr', 'strings', 'frontend.user.email_changed_notice', 'Vous devez confirmer votre nouvelle adresse e-mail avant de pouvoir vous reconnecter.', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7821, 0, 'fr', 'strings', 'frontend.user.profile_updated', 'Profil mis à jour avec succès.', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7822, 0, 'fr', 'strings', 'frontend.user.password_updated', 'Mot de passe mis à jour avec succès.', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7823, 0, 'fr', 'strings', 'frontend.welcome_to', 'Bienvenue sur: place', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7824, 0, 'fr', 'validation', 'accepted', 'L\'attribut: doit être accepté.', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7825, 0, 'fr', 'validation', 'active_url', 'L\'attribut: n\'est pas une URL valide.', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7826, 0, 'fr', 'validation', 'after', 'L\'attribut: doit être une date après: date.', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7827, 0, 'fr', 'validation', 'after_or_equal', 'L\'attribut: doit être une date après ou égale à: date.', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7828, 0, 'fr', 'validation', 'alpha', 'L\'attribut: ne peut contenir que des lettres.', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7829, 0, 'fr', 'validation', 'alpha_dash', 'L\'attribut: ne peut contenir que des lettres, des chiffres, des tirets et des traits de soulignement.', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7830, 0, 'fr', 'validation', 'alpha_num', 'L\'attribut: ne peut contenir que des lettres et des chiffres.', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7831, 0, 'fr', 'validation', 'array', 'L\'attribut: doit être un tableau.', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7832, 0, 'fr', 'validation', 'before', 'L\'attribut: doit être une date antérieure à: date.', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7833, 0, 'fr', 'validation', 'before_or_equal', 'L\'attribut: doit être une date antérieure ou égale à: date.', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7834, 0, 'fr', 'validation', 'between.numeric', 'L\'attribut: doit être compris entre: min et: max.', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7835, 0, 'fr', 'validation', 'between.file', 'L\'attribut: doit être compris entre: min et: max kilo-octets.', '2019-09-12 23:35:12', '2020-05-14 12:20:12'), (7836, 0, 'fr', 'validation', 'between.string', 'L\'attribut: doit être compris entre: min et: max caractères.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7837, 0, 'fr', 'validation', 'between.array', 'L\'attribut: doit avoir entre: min et: max items.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7838, 0, 'fr', 'validation', 'boolean', 'Le champ d\'attribut: doit être vrai ou faux.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7839, 0, 'fr', 'validation', 'confirmed', 'La confirmation d\'attribut ne correspond pas.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7840, 0, 'fr', 'validation', 'date', 'L\'attribut: n\'est pas une date valide.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7841, 0, 'fr', 'validation', 'date_format', 'L\'attribut: ne correspond pas au format: format.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7842, 0, 'fr', 'validation', 'different', 'L\'attribut: et: autre doivent être différents.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7843, 0, 'fr', 'validation', 'digits', 'L\'attribut: doit être: digits digits.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7844, 0, 'fr', 'validation', 'digits_between', 'L\'attribut: doit être compris entre: min et: max digits.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7845, 0, 'fr', 'validation', 'dimensions', 'L\'attribut: a des dimensions d\'image non valides.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7846, 0, 'fr', 'validation', 'distinct', 'Le champ d\'attribut: a une valeur en double.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7847, 0, 'fr', 'validation', 'email', 'L\'attribut: doit être une adresse email valide.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7848, 0, 'fr', 'validation', 'exists', 'L\'attribut sélectionné: n\'est pas valide.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7849, 0, 'fr', 'validation', 'file', 'L\'attribut: doit être un fichier.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7850, 0, 'fr', 'validation', 'filled', 'Le champ d\'attribut: doit avoir une valeur.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7851, 0, 'fr', 'validation', 'gt.numeric', 'L\'attribut: doit être supérieur à: valeur.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7852, 0, 'fr', 'validation', 'gt.file', 'L\'attribut: doit être supérieur à: valeur kilo-octets.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7853, 0, 'fr', 'validation', 'gt.string', 'L\'attribut: doit être supérieur à: caractères de valeur.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7854, 0, 'fr', 'validation', 'gt.array', 'L\'attribut: doit avoir plus de: éléments de valeur.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7855, 0, 'fr', 'validation', 'gte.numeric', 'L\'attribut: doit être supérieur ou égal à: valeur.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7856, 0, 'fr', 'validation', 'gte.file', 'L\'attribut: doit être supérieur ou égal à: valeur en kilo-octets.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7857, 0, 'fr', 'validation', 'gte.string', 'L\'attribut: doit être supérieur ou égal à: caractères de valeur.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7858, 0, 'fr', 'validation', 'gte.array', 'L\'attribut: doit avoir: éléments de valeur ou plus.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7859, 0, 'fr', 'validation', 'image', 'L\'attribut: doit être une image.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7860, 0, 'fr', 'validation', 'in', 'L\'attribut sélectionné: n\'est pas valide.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7861, 0, 'fr', 'validation', 'in_array', 'Le champ: attribut n\'existe pas dans: autre.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7862, 0, 'fr', 'validation', 'integer', 'L\'attribut: doit être un entier.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7863, 0, 'fr', 'validation', 'ip', 'L\'attribut: doit être une adresse IP valide.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7864, 0, 'fr', 'validation', 'ipv4', 'L\'attribut: doit être une adresse IPv4 valide.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7865, 0, 'fr', 'validation', 'ipv6', 'L\'attribut: doit être une adresse IPv6 valide.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7866, 0, 'fr', 'validation', 'json', 'L\'attribut: doit être une chaîne JSON valide.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7867, 0, 'fr', 'validation', 'lt.numeric', 'L\'attribut: doit être inférieur à: valeur.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7868, 0, 'fr', 'validation', 'lt.file', 'L\'attribut: doit être inférieur à: valeur kilo-octets.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7869, 0, 'fr', 'validation', 'lt.string', 'L\'attribut: doit être inférieur à: caractères de valeur.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7870, 0, 'fr', 'validation', 'lt.array', 'L\'attribut: doit avoir moins de: éléments de valeur.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7871, 0, 'fr', 'validation', 'lte.numeric', 'L\'attribut: doit être inférieur ou égal à: valeur.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7872, 0, 'fr', 'validation', 'lte.file', 'L\'attribut: doit être inférieur ou égal à: valeur kilo-octets.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7873, 0, 'fr', 'validation', 'lte.string', 'L\'attribut: doit être inférieur ou égal à: caractères de valeur.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7874, 0, 'fr', 'validation', 'lte.array', 'L\'attribut: ne doit pas avoir plus de: éléments de valeur.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7875, 0, 'fr', 'validation', 'max.numeric', 'L\'attribut: ne peut pas être supérieur à: max.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7876, 0, 'fr', 'validation', 'max.file', 'L\'attribut: ne peut pas être supérieur à: max kilo-octets.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7877, 0, 'fr', 'validation', 'max.string', 'L\'attribut: ne peut pas être supérieur à: max caractères.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7878, 0, 'fr', 'validation', 'max.array', 'L\'attribut: ne peut avoir plus de: max articles.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7879, 0, 'fr', 'validation', 'mimes', 'L\'attribut: doit être un fichier de type:attribute valeurs.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7880, 0, 'fr', 'validation', 'mimetypes', 'L\'attribut: doit être un fichier de type:attribute valeurs.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7881, 0, 'fr', 'validation', 'min.numeric', 'L\'attribut: doit être au moins: min.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7882, 0, 'fr', 'validation', 'min.file', 'L\'attribut: doit être au moins: min kilo-octets.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7883, 0, 'fr', 'validation', 'min.string', 'L\'attribut: doit être au moins: min caractères.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7884, 0, 'fr', 'validation', 'min.array', 'L\'attribut: doit avoir au moins: min items.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7885, 0, 'fr', 'validation', 'not_in', 'L\'attribut sélectionné: n\'est pas valide.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7886, 0, 'fr', 'validation', 'not_regex', 'Le format d\'attribut est invalide.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7887, 0, 'fr', 'validation', 'numeric', 'L\'attribut: doit être un nombre.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7888, 0, 'fr', 'validation', 'present', 'Le champ d\'attribut: doit être présent.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7889, 0, 'fr', 'validation', 'regex', 'Le format d\'attribut est invalide.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7890, 0, 'fr', 'validation', 'required', 'Le champ d\'attribut: est requis.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7891, 0, 'fr', 'validation', 'required_if', 'Le champ d\'attribut: est requis lorsque: autre est: valeur.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7892, 0, 'fr', 'validation', 'required_unless', 'Le champ: attribut est obligatoire sauf si: autre est dans: valeurs.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7893, 0, 'fr', 'validation', 'required_with', 'Le champ: attribut est requis lorsque: values est présent.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7894, 0, 'fr', 'validation', 'required_with_all', 'Le champ: attribut est requis lorsque: des valeurs sont présentes.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'); INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES (7895, 0, 'fr', 'validation', 'required_without', 'Le champ: attribut est requis lorsque: values n\'est pas présent.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7896, 0, 'fr', 'validation', 'required_without_all', 'Le champ d\'attribut: est requis lorsqu\'aucune des valeurs suivantes n\'est présente.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7897, 0, 'fr', 'validation', 'same', 'L\'attribut: et: other doivent correspondre.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7898, 0, 'fr', 'validation', 'size.numeric', 'L\'attribut: doit être: taille.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7899, 0, 'fr', 'validation', 'size.file', 'L\'attribut: doit être: taille kilo-octets.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7900, 0, 'fr', 'validation', 'size.string', 'L\'attribut: doit être: caractères de taille.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7901, 0, 'fr', 'validation', 'size.array', 'L\'attribut: doit contenir: les éléments de taille.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7902, 0, 'fr', 'validation', 'string', 'L\'attribut: doit être une chaîne.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7903, 0, 'fr', 'validation', 'timezone', 'L\'attribut: doit être une zone valide.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7904, 0, 'fr', 'validation', 'unique', 'L\'attribut: a déjà été pris.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7905, 0, 'fr', 'validation', 'uploaded', 'L\'attribut: n\'a pas pu être téléchargé.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7906, 0, 'fr', 'validation', 'url', 'Le format d\'attribut est invalide.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7907, 0, 'fr', 'validation', 'uuid', 'L\'attribut: doit être un UUID valide.', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7908, 0, 'fr', 'validation', 'custom.attribute-name.rule-name', 'message personnalisé', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7909, 0, 'fr', 'validation', 'attributes.backend.access.permissions.associated_roles', 'Rôles associés', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7910, 0, 'fr', 'validation', 'attributes.backend.access.permissions.dependencies', 'Les dépendances', '2019-09-12 23:35:13', '2020-05-14 12:20:12'), (7911, 0, 'fr', 'validation', 'attributes.backend.access.permissions.display_name', 'Afficher un nom', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7912, 0, 'fr', 'validation', 'attributes.backend.access.permissions.group', 'Groupe', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7913, 0, 'fr', 'validation', 'attributes.backend.access.permissions.group_sort', 'Tri du groupe', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7914, 0, 'fr', 'validation', 'attributes.backend.access.permissions.groups.name', 'Nom de groupe', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7915, 0, 'fr', 'validation', 'attributes.backend.access.permissions.name', 'prénom', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7916, 0, 'fr', 'validation', 'attributes.backend.access.permissions.first_name', 'Prénom', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7917, 0, 'fr', 'validation', 'attributes.backend.access.permissions.last_name', 'Nom de famille', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7918, 0, 'fr', 'validation', 'attributes.backend.access.permissions.system', 'Système', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7919, 0, 'fr', 'validation', 'attributes.backend.access.roles.associated_permissions', 'Autorisations associées', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7920, 0, 'fr', 'validation', 'attributes.backend.access.roles.name', 'prénom', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7921, 0, 'fr', 'validation', 'attributes.backend.access.roles.sort', 'Trier', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7922, 0, 'fr', 'validation', 'attributes.backend.access.users.active', 'actif', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7923, 0, 'fr', 'validation', 'attributes.backend.access.users.associated_roles', 'Rôles associés', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7924, 0, 'fr', 'validation', 'attributes.backend.access.users.confirmed', 'Confirmé', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7925, 0, 'fr', 'validation', 'attributes.backend.access.users.email', 'Adresse électronique', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7926, 0, 'fr', 'validation', 'attributes.backend.access.users.name', 'prénom', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7927, 0, 'fr', 'validation', 'attributes.backend.access.users.first_name', 'Prénom', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7928, 0, 'fr', 'validation', 'attributes.backend.access.users.last_name', 'Nom de famille', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7929, 0, 'fr', 'validation', 'attributes.backend.access.users.other_permissions', 'Autres autorisations', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7930, 0, 'fr', 'validation', 'attributes.backend.access.users.password', 'Mot de passe', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7931, 0, 'fr', 'validation', 'attributes.backend.access.users.password_confirmation', 'Confirmation mot de passe', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7932, 0, 'fr', 'validation', 'attributes.backend.access.users.send_confirmation_email', 'Envoyer un e-mail de confirmation', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7933, 0, 'fr', 'validation', 'attributes.backend.access.users.language', 'La langue', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7934, 0, 'fr', 'validation', 'attributes.backend.access.users.timezone', 'Fuseau horaire', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7935, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.app_locale', 'App Locale', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7936, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.app_name', 'Nom de l\'application', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7937, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.app_timezone', 'Fuseau horaire de l\'application', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7938, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.app_url', 'URL de l\'application', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7939, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.change_email', 'Changer l\'e-mail', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7940, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.confirm_email', 'Confirmez votre e-mail', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7941, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.enable_registration', 'Activer l\'enregistrement', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7942, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.font_color', 'Couleur de la police', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7943, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.theme_layout', 'Mise en page du thème', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7944, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.requires_approval', 'Nécessite une approbation', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7945, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.password_history', 'Historique du mot de passe', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7946, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.password_expires_days', 'Mot de passe expire jours', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7947, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.mail_username', 'Mail Nom d\'utilisateur', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7948, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.mail_port', 'Port de messagerie', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7949, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.mail_password', 'Mot de passe mail', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7950, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.mail_host', 'Mail Host', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7951, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.mail_from_name', 'Mail De Nom', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7952, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.mail_from_address', 'Mail De Adresse', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7953, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.mail_driver', 'Pilote de courrier', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7954, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.layout_type', 'Type de disposition', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7955, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.homepage', 'Sélectionner la page d\'accueil', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7956, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.captcha_site_key', 'Captcha Key', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7957, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.captcha_site_secret', 'Captcha Secret', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7958, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.captcha_status', 'Statut Captcha', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7959, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.retest_status', 'Re-tester', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7960, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.google_analytics', 'Code Google Analytics', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7961, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.lesson_timer', 'Leçon Minuterie', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7962, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.one_signal_push_notification', 'Configuration OneSignal', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7963, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.onesignal_code', 'Collez le code de script OneSignal ici', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7964, 0, 'fr', 'validation', 'attributes.backend.settings.general_settings.show_offers', 'Afficher les offres', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7965, 0, 'fr', 'validation', 'attributes.backend.settings.social_settings.twitter.redirect', 'URL de redirection', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7966, 0, 'fr', 'validation', 'attributes.backend.settings.social_settings.twitter.label', 'État de connexion Twitter', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7967, 0, 'fr', 'validation', 'attributes.backend.settings.social_settings.twitter.client_secret', 'Secret du client', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7968, 0, 'fr', 'validation', 'attributes.backend.settings.social_settings.twitter.client_id', 'identité du client', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7969, 0, 'fr', 'validation', 'attributes.backend.settings.social_settings.linkedin.redirect', 'URL de redirection', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7970, 0, 'fr', 'validation', 'attributes.backend.settings.social_settings.linkedin.client_secret', 'Secret du client', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7971, 0, 'fr', 'validation', 'attributes.backend.settings.social_settings.linkedin.client_id', 'identité du client', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7972, 0, 'fr', 'validation', 'attributes.backend.settings.social_settings.linkedin.label', 'État de connexion LinkedIn', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7973, 0, 'fr', 'validation', 'attributes.backend.settings.social_settings.google.redirect', 'URL de redirection', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7974, 0, 'fr', 'validation', 'attributes.backend.settings.social_settings.google.label', 'État de connexion Google', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7975, 0, 'fr', 'validation', 'attributes.backend.settings.social_settings.google.client_secret', 'Secret du client', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7976, 0, 'fr', 'validation', 'attributes.backend.settings.social_settings.google.client_id', 'identité du client', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7977, 0, 'fr', 'validation', 'attributes.backend.settings.social_settings.github.client_secret', 'Secret du client', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7978, 0, 'fr', 'validation', 'attributes.backend.settings.social_settings.github.client_id', 'identité du client', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7979, 0, 'fr', 'validation', 'attributes.backend.settings.social_settings.github.redirect', 'URL de redirection', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7980, 0, 'fr', 'validation', 'attributes.backend.settings.social_settings.github.label', 'Statut de connexion Github', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7981, 0, 'fr', 'validation', 'attributes.backend.settings.social_settings.facebook.client_secret', 'Secret du client', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7982, 0, 'fr', 'validation', 'attributes.backend.settings.social_settings.facebook.client_id', 'identité du client', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7983, 0, 'fr', 'validation', 'attributes.backend.settings.social_settings.facebook.redirect', 'URL de redirection', '2019-09-12 23:35:14', '2020-05-14 12:20:12'), (7984, 0, 'fr', 'validation', 'attributes.backend.settings.social_settings.facebook.label', 'État de connexion Facebook', '2019-09-12 23:35:15', '2020-05-14 12:20:12'), (7985, 0, 'fr', 'validation', 'attributes.backend.settings.social_settings.bitbucket.redirect', 'URL de redirection', '2019-09-12 23:35:15', '2020-05-14 12:20:12'), (7986, 0, 'fr', 'validation', 'attributes.backend.settings.social_settings.bitbucket.client_secret', 'Secret du client', '2019-09-12 23:35:15', '2020-05-14 12:20:12'), (7987, 0, 'fr', 'validation', 'attributes.backend.settings.social_settings.bitbucket.client_id', 'identité du client', '2019-09-12 23:35:15', '2020-05-14 12:20:12'), (7988, 0, 'fr', 'validation', 'attributes.backend.settings.social_settings.bitbucket.label', 'État de connexion Bitbucket', '2019-09-12 23:35:15', '2020-05-14 12:20:12'), (7989, 0, 'fr', 'validation', 'attributes.frontend.avatar', 'Localisation de l\'avatar', '2019-09-12 23:35:15', '2020-05-14 12:20:12'), (7990, 0, 'fr', 'validation', 'attributes.frontend.email', 'Adresse électronique', '2019-09-12 23:35:15', '2020-05-14 12:20:12'), (7991, 0, 'fr', 'validation', 'attributes.frontend.last_name', 'Nom de famille', '2019-09-12 23:35:15', '2020-05-14 12:20:12'), (7992, 0, 'fr', 'validation', 'attributes.frontend.first_name', 'Prénom', '2019-09-12 23:35:15', '2020-05-14 12:20:12'), (7993, 0, 'fr', 'validation', 'attributes.frontend.name', 'Nom complet', '2019-09-12 23:35:15', '2020-05-14 12:20:12'), (7994, 0, 'fr', 'validation', 'attributes.frontend.password', 'Mot de passe', '2019-09-12 23:35:15', '2020-05-14 12:20:12'), (7995, 0, 'fr', 'validation', 'attributes.frontend.password_confirmation', 'Confirmation mot de passe', '2019-09-12 23:35:15', '2020-05-14 12:20:12'), (7996, 0, 'fr', 'validation', 'attributes.frontend.phone', 'Téléphone', '2019-09-12 23:35:15', '2020-05-14 12:20:12'), (7997, 0, 'fr', 'validation', 'attributes.frontend.message', 'Message', '2019-09-12 23:35:15', '2020-05-14 12:20:12'), (7998, 0, 'fr', 'validation', 'attributes.frontend.new_password', 'nouveau mot de passe', '2019-09-12 23:35:15', '2020-05-14 12:20:12'), (7999, 0, 'fr', 'validation', 'attributes.frontend.new_password_confirmation', 'Confirmation du nouveau mot de passe', '2019-09-12 23:35:15', '2020-05-14 12:20:12'), (8000, 0, 'fr', 'validation', 'attributes.frontend.old_password', 'ancien mot de passe', '2019-09-12 23:35:15', '2020-05-14 12:20:12'), (8001, 0, 'fr', 'validation', 'attributes.frontend.timezone', 'Fuseau horaire', '2019-09-12 23:35:15', '2020-05-14 12:20:12'), (8002, 0, 'fr', 'validation', 'attributes.frontend.upload', 'Télécharger', '2019-09-12 23:35:15', '2020-05-14 12:20:12'), (8003, 0, 'fr', 'validation', 'attributes.frontend.language', 'La langue', '2019-09-12 23:35:15', '2020-05-14 12:20:12'), (8004, 0, 'fr', 'validation', 'attributes.frontend.gravatar', 'Gravatar', '2019-09-12 23:35:15', '2020-05-14 12:20:12'), (8005, 0, 'fr', 'validation', 'attributes.frontend.captcha', 'Captcha requis', '2019-09-12 23:35:15', '2020-05-14 12:20:12'), (8006, 0, 'fr', 'validation', 'attributes.frontend.female', 'Femelle', '2019-09-12 23:35:15', '2020-05-14 12:20:12'), (8007, 0, 'fr', 'validation', 'attributes.frontend.male', 'Mâle', '2019-09-12 23:35:15', '2020-05-14 12:20:12'), (8008, 0, 'fr', 'validation', 'attributes.frontend.other', 'Autre', '2019-09-12 23:35:15', '2020-05-14 12:20:12'), (8009, 1, 'ar', 'vendor/backup', 'exception_message', 'رسالة استثناء: :message', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8010, 1, 'ar', 'vendor/backup', 'exception_trace', 'تتبع الاستثناء: :trace', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8011, 1, 'ar', 'vendor/backup', 'exception_message_title', 'رسالة استثناء', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8012, 1, 'ar', 'vendor/backup', 'exception_trace_title', 'تتبع استثناء', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8013, 1, 'ar', 'vendor/backup', 'backup_failed_subject', 'فشل النسخ الاحتياطي من application_name:', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8014, 1, 'ar', 'vendor/backup', 'backup_failed_body', 'Important: حدث خطأ أثناء النسخ الاحتياطي :application_name', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8015, 1, 'ar', 'vendor/backup', 'backup_successful_subject', 'نسخة احتياطية جديدة ناجحة من :application_name', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8016, 1, 'ar', 'vendor/backup', 'backup_successful_subject_title', 'نسخة احتياطية جديدة ناجحة!', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8017, 1, 'ar', 'vendor/backup', 'backup_successful_body', 'خبر رائع ، تم إنشاء نسخة احتياطية جديدة من application_name: بنجاح على القرص المسمى disk_name:.', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8018, 1, 'ar', 'vendor/backup', 'cleanup_failed_subject', 'فشل تنظيف النسخ الاحتياطية لـ :application_name.', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8019, 1, 'ar', 'vendor/backup', 'cleanup_failed_body', 'حدث خطأ أثناء تنظيف النسخ الاحتياطية لـ :application_name', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8020, 1, 'ar', 'vendor/backup', 'cleanup_successful_subject', 'تنظيف: النسخ الاحتياطية :application_name ناجحة', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8021, 1, 'ar', 'vendor/backup', 'cleanup_successful_subject_title', 'تنظيف النسخ الاحتياطية الناجحة!', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8022, 1, 'ar', 'vendor/backup', 'cleanup_successful_body', 'تم تنظيف النسخ الاحتياطية لـ :application_name على القرص المسمى :disk_name.', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8023, 1, 'ar', 'vendor/backup', 'healthy_backup_found_subject', 'النسخ الاحتياطية لـ :application_name على القرص :disk_name سليمة', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8024, 1, 'ar', 'vendor/backup', 'healthy_backup_found_subject_title', 'النسخ الاحتياطية لـ :application_name صحية', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8025, 1, 'ar', 'vendor/backup', 'healthy_backup_found_body', 'تعتبر النسخ الاحتياطية لـ :application_name صحية. عمل جيد!', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8026, 1, 'ar', 'vendor/backup', 'unhealthy_backup_found_subject', 'هام: النسخ الاحتياطية لـ :application_name غير صحية', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8027, 1, 'ar', 'vendor/backup', 'unhealthy_backup_found_subject_title', 'Important: النسخ الاحتياطية لـ :application_name غير صحية. : problem', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8028, 1, 'ar', 'vendor/backup', 'unhealthy_backup_found_body', 'النسخ الاحتياطية لـ :application_name على القرص :disk_name غير صحية.', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8029, 1, 'ar', 'vendor/backup', 'unhealthy_backup_found_not_reachable', 'لا يمكن الوصول إلى وجهة النسخ الاحتياطي. :error', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8030, 1, 'ar', 'vendor/backup', 'unhealthy_backup_found_empty', 'لا توجد نسخ احتياطية لهذا التطبيق على الإطلاق.', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8031, 1, 'ar', 'vendor/backup', 'unhealthy_backup_found_old', 'أحدث نسخة احتياطية صنعت في :date تعتبر قديمة جدًا.', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8032, 1, 'ar', 'vendor/backup', 'unhealthy_backup_found_unknown', 'آسف ، لا يمكن تحديد السبب الدقيق.', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8033, 1, 'ar', 'vendor/backup', 'unhealthy_backup_found_full', 'النسخ الاحتياطية تستخدم الكثير من التخزين. الاستخدام الحالي هو :disk_usage وهو أعلى من الحد المسموح به وهو :disk_limit.', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8034, 1, 'en', 'vendor/backup', 'exception_message', 'Exception message: :message', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8035, 1, 'en', 'vendor/backup', 'exception_trace', 'Exception trace: :trace', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8036, 1, 'en', 'vendor/backup', 'exception_message_title', 'Exception message', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8037, 1, 'en', 'vendor/backup', 'exception_trace_title', 'Exception trace', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8038, 1, 'en', 'vendor/backup', 'backup_failed_subject', 'Failed backup of :application_name', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8039, 1, 'en', 'vendor/backup', 'backup_failed_body', 'Important: An error occurred while backing up :application_name', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8040, 1, 'en', 'vendor/backup', 'backup_successful_subject', 'Successful new backup of :application_name', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8041, 1, 'en', 'vendor/backup', 'backup_successful_subject_title', 'Successful new backup!', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8042, 1, 'en', 'vendor/backup', 'backup_successful_body', 'Great news, a new backup of :application_name was successfully created on the disk named :disk_name.', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8043, 1, 'en', 'vendor/backup', 'cleanup_failed_subject', 'Cleaning up the backups of :application_name failed.', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8044, 1, 'en', 'vendor/backup', 'cleanup_failed_body', 'An error occurred while cleaning up the backups of :application_name', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8045, 1, 'en', 'vendor/backup', 'cleanup_successful_subject', 'Clean up of :application_name backups successful', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8046, 1, 'en', 'vendor/backup', 'cleanup_successful_subject_title', 'Clean up of backups successful!', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8047, 1, 'en', 'vendor/backup', 'cleanup_successful_body', 'The clean up of the :application_name backups on the disk named :disk_name was successful.', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8048, 1, 'en', 'vendor/backup', 'healthy_backup_found_subject', 'The backups for :application_name on disk :disk_name are healthy', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8049, 1, 'en', 'vendor/backup', 'healthy_backup_found_subject_title', 'The backups for :application_name are healthy', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8050, 1, 'en', 'vendor/backup', 'healthy_backup_found_body', 'The backups for :application_name are considered healthy. Good job!', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8051, 1, 'en', 'vendor/backup', 'unhealthy_backup_found_subject', 'Important: The backups for :application_name are unhealthy', '2019-09-12 23:35:15', '2019-09-12 23:35:15'), (8052, 1, 'en', 'vendor/backup', 'unhealthy_backup_found_subject_title', 'Important: The backups for :application_name are unhealthy. :problem', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8053, 1, 'en', 'vendor/backup', 'unhealthy_backup_found_body', 'The backups for :application_name on disk :disk_name are unhealthy.', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8054, 1, 'en', 'vendor/backup', 'unhealthy_backup_found_not_reachable', 'The backup destination cannot be reached. :error', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8055, 1, 'en', 'vendor/backup', 'unhealthy_backup_found_empty', 'There are no backups of this application at all.', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8056, 1, 'en', 'vendor/backup', 'unhealthy_backup_found_old', 'The latest backup made on :date is considered too old.', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8057, 1, 'en', 'vendor/backup', 'unhealthy_backup_found_unknown', 'Sorry, an exact reason cannot be determined.', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8058, 1, 'en', 'vendor/backup', 'unhealthy_backup_found_full', 'The backups are using too much storage. Current usage is :disk_usage which is higher than the allowed limit of :disk_limit.', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8059, 1, 'es', 'vendor/backup', 'exception_message', 'Mensaje de la excepción: :message', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8060, 1, 'es', 'vendor/backup', 'exception_trace', 'Traza de la excepción: :trace', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8061, 1, 'es', 'vendor/backup', 'exception_message_title', 'Mensaje de la excepción', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8062, 1, 'es', 'vendor/backup', 'exception_trace_title', 'Traza de la excepción', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8063, 1, 'es', 'vendor/backup', 'backup_failed_subject', 'Copia de seguridad de :application_name fallida', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8064, 1, 'es', 'vendor/backup', 'backup_failed_body', 'Importante: Ocurrió un error al realizar la copia de seguridad de :application_name', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8065, 1, 'es', 'vendor/backup', 'backup_successful_subject', 'Se completó con éxito la copia de seguridad de :application_name', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8066, 1, 'es', 'vendor/backup', 'backup_successful_subject_title', '¡Nueva copia de seguridad creada con éxito!', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8067, 1, 'es', 'vendor/backup', 'backup_successful_body', 'Buenas noticias, una nueva copia de seguridad de :application_name fue creada con éxito en el disco llamado :disk_name.', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8068, 1, 'es', 'vendor/backup', 'cleanup_failed_subject', 'La limpieza de copias de seguridad de :application_name falló.', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8069, 1, 'es', 'vendor/backup', 'cleanup_failed_body', 'Ocurrió un error mientras se realizaba la limpieza de copias de seguridad de :application_name', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8070, 1, 'es', 'vendor/backup', 'cleanup_successful_subject', 'La limpieza de copias de seguridad de :application_name se completó con éxito', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8071, 1, 'es', 'vendor/backup', 'cleanup_successful_subject_title', '!Limpieza de copias de seguridad completada con éxito!', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8072, 1, 'es', 'vendor/backup', 'cleanup_successful_body', 'La limpieza de copias de seguridad de :application_name en el disco llamado :disk_name se completo con éxito.', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8073, 1, 'es', 'vendor/backup', 'healthy_backup_found_subject', 'Las copias de seguridad de :application_name en el disco :disk_name están en buen estado', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8074, 1, 'es', 'vendor/backup', 'healthy_backup_found_subject_title', 'Las copias de seguridad de :application_name están en buen estado', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8075, 1, 'es', 'vendor/backup', 'healthy_backup_found_body', 'Las copias de seguridad de :application_name se consideran en buen estado. ¡Buen trabajo!', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8076, 1, 'es', 'vendor/backup', 'unhealthy_backup_found_subject', 'Importante: Las copias de seguridad de :application_name están en mal estado', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8077, 1, 'es', 'vendor/backup', 'unhealthy_backup_found_subject_title', 'Importante: Las copias de seguridad de :application_name están en mal estado. :problem', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8078, 1, 'es', 'vendor/backup', 'unhealthy_backup_found_body', 'Las copias de seguridad de :application_name en el disco :disk_name están en mal estado.', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8079, 1, 'es', 'vendor/backup', 'unhealthy_backup_found_not_reachable', 'No se puede acceder al destino de la copia de seguridad. :error', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8080, 1, 'es', 'vendor/backup', 'unhealthy_backup_found_empty', 'No existe ninguna copia de seguridad de esta aplicación.', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8081, 1, 'es', 'vendor/backup', 'unhealthy_backup_found_old', 'La última copia de seguriad hecha en :date es demasiado antigua.', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8082, 1, 'es', 'vendor/backup', 'unhealthy_backup_found_unknown', 'Lo siento, no es posible determinar la razón exacta.', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8083, 1, 'es', 'vendor/backup', 'unhealthy_backup_found_full', 'Las copias de seguridad están ocupando demasiado espacio. El espacio utilizado actualmente es :disk_usage el cual es mayor que el límite permitido de :disk_limit.', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8084, 1, 'fr', 'vendor/backup', 'exception_message', 'Message de l\'exception : :message', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8085, 1, 'fr', 'vendor/backup', 'exception_trace', 'Trace de l\'exception : :trace', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8086, 1, 'fr', 'vendor/backup', 'exception_message_title', 'Message de l\'exception', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8087, 1, 'fr', 'vendor/backup', 'exception_trace_title', 'Trace de l\'exception', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8088, 1, 'fr', 'vendor/backup', 'backup_failed_subject', 'Échec de la sauvegarde de :application_name', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8089, 1, 'fr', 'vendor/backup', 'backup_failed_body', 'Important : Une erreur est survenue lors de la sauvegarde de :application_name', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8090, 1, 'fr', 'vendor/backup', 'backup_successful_subject', 'Succès de la sauvegarde de :application_name', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8091, 1, 'fr', 'vendor/backup', 'backup_successful_subject_title', 'Sauvegarde créée avec succès !', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8092, 1, 'fr', 'vendor/backup', 'backup_successful_body', 'Bonne nouvelle, une nouvelle sauvegarde de :application_name a été créée avec succès sur le disque nommé :disk_name.', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8093, 1, 'fr', 'vendor/backup', 'cleanup_failed_subject', 'Le nettoyage des sauvegardes de :application_name a echoué.', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8094, 1, 'fr', 'vendor/backup', 'cleanup_failed_body', 'Une erreur est survenue lors du nettoyage des sauvegardes de :application_name', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8095, 1, 'fr', 'vendor/backup', 'cleanup_successful_subject', 'Succès du nettoyage des sauvegardes de :application_name', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8096, 1, 'fr', 'vendor/backup', 'cleanup_successful_subject_title', 'Sauvegardes nettoyées avec succès !', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8097, 1, 'fr', 'vendor/backup', 'cleanup_successful_body', 'Le nettoyage des sauvegardes de :application_name sur le disque nommé :disk_name a été effectué avec succès.', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8098, 1, 'fr', 'vendor/backup', 'healthy_backup_found_subject', 'Les sauvegardes pour :application_name sur le disque :disk_name sont saines', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8099, 1, 'fr', 'vendor/backup', 'healthy_backup_found_subject_title', 'Les sauvegardes pour :application_name sont saines', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8100, 1, 'fr', 'vendor/backup', 'healthy_backup_found_body', 'Les sauvegardes pour :application_name sont considérées saines. Bon travail !', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8101, 1, 'fr', 'vendor/backup', 'unhealthy_backup_found_subject', 'Important : Les sauvegardes pour :application_name sont corrompues', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8102, 1, 'fr', 'vendor/backup', 'unhealthy_backup_found_subject_title', 'Important : Les sauvegardes pour :application_name sont corrompues. :problem', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8103, 1, 'fr', 'vendor/backup', 'unhealthy_backup_found_body', 'Les sauvegardes pour :application_name sur le disque :disk_name sont corrompues.', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8104, 1, 'fr', 'vendor/backup', 'unhealthy_backup_found_not_reachable', 'La destination de la sauvegarde n\'est pas accessible. :error', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8105, 1, 'fr', 'vendor/backup', 'unhealthy_backup_found_empty', 'Il n\'y a aucune sauvegarde pour cette application.', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8106, 1, 'fr', 'vendor/backup', 'unhealthy_backup_found_old', 'La dernière sauvegarde du :date est considérée trop vieille.', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8107, 1, 'fr', 'vendor/backup', 'unhealthy_backup_found_unknown', 'Désolé, une raison exacte ne peut être déterminée.', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8108, 1, 'fr', 'vendor/backup', 'unhealthy_backup_found_full', 'Les sauvegardes utilisent trop d\'espace disque. L\'utilisation actuelle est de :disk_usage alors que la limite autorisée est de :disk_limit.', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8109, 1, 'ar', 'vendor/chatter', 'success.title', 'أحسنت!', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8110, 1, 'ar', 'vendor/chatter', 'success.reason.submitted_to_post', 'تم تقديم الرد بنجاح للمناقشة. discussion', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8111, 1, 'ar', 'vendor/chatter', 'success.reason.updated_post', 'Discussion تم تحديث المناقشة بنجاح.', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8112, 1, 'ar', 'vendor/chatter', 'success.reason.destroy_post', 'تم حذف الرد والمناقشة بنجاح. discussion', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8113, 1, 'ar', 'vendor/chatter', 'success.reason.destroy_from_discussion', 'تم حذف الرد بنجاح من المناقشة. discussion', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8114, 1, 'ar', 'vendor/chatter', 'success.reason.created_discussion', 'تم إنشاء مناقشة جديدة بنجاح. discussion', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8115, 1, 'ar', 'vendor/chatter', 'info.title', 'انتباه!', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8116, 1, 'ar', 'vendor/chatter', 'warning.title', 'ووه أوه!', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8117, 1, 'ar', 'vendor/chatter', 'danger.title', 'يا سناب!', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8118, 1, 'ar', 'vendor/chatter', 'danger.reason.errors', 'يرجى تصحيح الأخطاء التالية:', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8119, 1, 'ar', 'vendor/chatter', 'danger.reason.prevent_spam', 'لمنع البريد العشوائي ، يرجى السماح على الأقل :minutes بين إرسال المحتوى.', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8120, 1, 'ar', 'vendor/chatter', 'danger.reason.trouble', 'عذرًا ، يبدو أنه كانت هناك مشكلة في إرسال ردك.', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8121, 1, 'ar', 'vendor/chatter', 'danger.reason.update_post', 'آه آه آه ... لا يمكن تحديث ردكم. تأكد من أنك لا تفعل أي شيء شادي.', '2019-09-12 23:35:16', '2019-09-12 23:35:16'), (8122, 1, 'ar', 'vendor/chatter', 'danger.reason.destroy_post', 'آه آه آه ... لا يمكن حذف الرد. تأكد من أنك لا تفعل أي شيء شادي.', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8123, 1, 'ar', 'vendor/chatter', 'danger.reason.create_discussion', 'عفوًا :( يبدو أن هناك مشكلة في إنشاء مناقشتك. discussion. :(', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8124, 1, 'ar', 'vendor/chatter', 'danger.reason.title_required', 'يرجى كتابة العنوان', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8125, 1, 'ar', 'vendor/chatter', 'danger.reason.title_min', 'يجب أن يكون العنوان على الأقل: أحرف :min.', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8126, 1, 'ar', 'vendor/chatter', 'danger.reason.title_max', 'يجب ألا يزيد العنوان عن: أحرف :max.', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8127, 1, 'ar', 'vendor/chatter', 'danger.reason.content_required', 'يرجى كتابة بعض المحتوى', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8128, 1, 'ar', 'vendor/chatter', 'danger.reason.content_min', 'يجب أن يحتوي المحتوى على الأقل: أحرف :min', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8129, 1, 'ar', 'vendor/chatter', 'danger.reason.category_required', 'يرجى اختيار فئة', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8130, 1, 'ar', 'vendor/chatter', 'preheader', 'أردت فقط أن أخبرك أن شخصًا ما قد استجاب لنشر منتدى.', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8131, 1, 'ar', 'vendor/chatter', 'greeting', 'مرحبا،,', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8132, 1, 'ar', 'vendor/chatter', 'body', 'أردت فقط أن أخبركم بأن شخصًا ما قد استجاب لنشر منتدى في discussion', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8133, 1, 'ar', 'vendor/chatter', 'view_discussion', 'عرض المناقشة. discussion', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8134, 1, 'ar', 'vendor/chatter', 'farewell', 'أتمنى لك يوما عظيما!.', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8135, 1, 'ar', 'vendor/chatter', 'unsuscribe.message', 'إذا لم تعد ترغب في أن يتم إعلامك عندما يستجيب شخص ما لهذا المنشور ، فتأكد من إلغاء تحديد إعداد الإشعارات في أسفل الصفحة :)', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8136, 1, 'ar', 'vendor/chatter', 'unsuscribe.action', 'لا أحب هذه رسائل البريد الإلكتروني؟', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8137, 1, 'ar', 'vendor/chatter', 'unsuscribe.link', 'إلغاء الاشتراك في هذه المناقشة. discussion', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8138, 1, 'ar', 'vendor/chatter', 'titles.discussion', 'نقاش', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8139, 1, 'ar', 'vendor/chatter', 'titles.discussions', 'مناقشات', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8140, 1, 'ar', 'vendor/chatter', 'headline', 'مرحبا بكم في الثرثرة', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8141, 1, 'ar', 'vendor/chatter', 'description', 'حزمة منتدى بسيطة لتطبيق Laravel الخاص بك.', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8142, 1, 'ar', 'vendor/chatter', 'words.cancel', 'إلغاء', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8143, 1, 'ar', 'vendor/chatter', 'words.delete', 'حذف', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8144, 1, 'ar', 'vendor/chatter', 'words.edit', 'تصحيح', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8145, 1, 'ar', 'vendor/chatter', 'words.yes', 'نعم فعلا', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8146, 1, 'ar', 'vendor/chatter', 'words.no', 'لا', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8147, 1, 'ar', 'vendor/chatter', 'words.minutes', '1 دقيقة | :count دقيقة', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8148, 1, 'ar', 'vendor/chatter', 'discussion.new', 'مناقشة جديدة discussion', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8149, 1, 'ar', 'vendor/chatter', 'discussion.all', 'كل مناقشة discussions', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8150, 1, 'ar', 'vendor/chatter', 'discussion.create', 'إنشاء مناقشة discussion', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8151, 1, 'ar', 'vendor/chatter', 'discussion.posted_by', 'منشور من طرف', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8152, 1, 'ar', 'vendor/chatter', 'discussion.head_details', 'نشر في الفئة', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8153, 1, 'ar', 'vendor/chatter', 'response.confirm', 'هل أنت متأكد أنك تريد حذف هذا الرد؟', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8154, 1, 'ar', 'vendor/chatter', 'response.yes_confirm', 'نعم احذفها', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8155, 1, 'ar', 'vendor/chatter', 'response.no_confirm', 'لا شكرا', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8156, 1, 'ar', 'vendor/chatter', 'response.submit', 'إرسال الرد', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8157, 1, 'ar', 'vendor/chatter', 'response.update', 'تحديث الرد', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8158, 1, 'ar', 'vendor/chatter', 'editor.title', 'عنوان المناقشةdiscussion', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8159, 1, 'ar', 'vendor/chatter', 'editor.select', 'اختر تصنيف', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8160, 1, 'ar', 'vendor/chatter', 'editor.tinymce_placeholder', 'اكتب محادثتك هنا ... discussion', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8161, 1, 'ar', 'vendor/chatter', 'editor.select_color_text', 'اختر لونًا لهذه المناقشة (اختياري) discussion', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8162, 1, 'ar', 'vendor/chatter', 'email.notify', 'أعلمني عندما يرد شخص ما discussion', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8163, 1, 'ar', 'vendor/chatter', 'auth', 'يرجى <a href=\"/:home/login\"> تسجيل الدخول </a>\n أو <a href=\"/:home/register\"> التسجيل </a>\n لترك الرد.', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8164, 1, 'en', 'vendor/chatter', 'success.title', 'Well done!', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8165, 1, 'en', 'vendor/chatter', 'success.reason.submitted_to_post', 'Response successfully submitted to discussion.', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8166, 1, 'en', 'vendor/chatter', 'success.reason.updated_post', 'Successfully updated the discussion.', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8167, 1, 'en', 'vendor/chatter', 'success.reason.destroy_post', 'Successfully deleted the response and discussion.', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8168, 1, 'en', 'vendor/chatter', 'success.reason.destroy_from_discussion', 'Successfully deleted the response from the discussion.', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8169, 1, 'en', 'vendor/chatter', 'success.reason.created_discussion', 'Successfully created a new discussion.', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8170, 1, 'en', 'vendor/chatter', 'info.title', 'Heads Up!', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8171, 1, 'en', 'vendor/chatter', 'warning.title', 'Wuh Oh!', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8172, 1, 'en', 'vendor/chatter', 'danger.title', 'Oh Snap!', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8173, 1, 'en', 'vendor/chatter', 'danger.reason.errors', 'Please fix the following errors:', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8174, 1, 'en', 'vendor/chatter', 'danger.reason.prevent_spam', 'In order to prevent spam, please allow at least :minutes in between submitting content.', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8175, 1, 'en', 'vendor/chatter', 'danger.reason.trouble', 'Sorry, there seems to have been a problem submitting your response.', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8176, 1, 'en', 'vendor/chatter', 'danger.reason.update_post', 'Nah ah ah... Could not update your response. Make sure you\'re not doing anything shady.', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8177, 1, 'en', 'vendor/chatter', 'danger.reason.destroy_post', 'Nah ah ah... Could not delete the response. Make sure you\'re not doing anything shady.', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8178, 1, 'en', 'vendor/chatter', 'danger.reason.create_discussion', 'Whoops :( There seems to be a problem creating your discussion.', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8179, 1, 'en', 'vendor/chatter', 'danger.reason.title_required', 'Please write a title', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8180, 1, 'en', 'vendor/chatter', 'danger.reason.title_min', 'The title has to have at least :min characters.', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8181, 1, 'en', 'vendor/chatter', 'danger.reason.title_max', 'The title has to have no more than :max characters.', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8182, 1, 'en', 'vendor/chatter', 'danger.reason.content_required', 'Please write some content', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8183, 1, 'en', 'vendor/chatter', 'danger.reason.content_min', 'The content has to have at least :min characters', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8184, 1, 'en', 'vendor/chatter', 'danger.reason.category_required', 'Please choose a category', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8185, 1, 'en', 'vendor/chatter', 'preheader', 'Just wanted to let you know that someone has responded to a forum post.', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8186, 1, 'en', 'vendor/chatter', 'greeting', 'Hi there,', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8187, 1, 'en', 'vendor/chatter', 'body', 'Just wanted to let you know that someone has responded to a forum post at', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8188, 1, 'en', 'vendor/chatter', 'view_discussion', 'View the discussion.', '2019-09-12 23:35:17', '2019-09-12 23:35:17'), (8189, 1, 'en', 'vendor/chatter', 'farewell', 'Have a great day!', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8190, 1, 'en', 'vendor/chatter', 'unsuscribe.message', 'If you no longer wish to be notified when someone responds to this form post be sure to uncheck the notification setting at the bottom of the page :)', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8191, 1, 'en', 'vendor/chatter', 'unsuscribe.action', 'Don\'t like these emails?', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8192, 1, 'en', 'vendor/chatter', 'unsuscribe.link', 'Unsubscribe to this discussion.', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8193, 1, 'en', 'vendor/chatter', 'titles.discussion', 'Discussion', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8194, 1, 'en', 'vendor/chatter', 'titles.discussions', 'Discussions', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8195, 1, 'en', 'vendor/chatter', 'headline', 'Welcome to Chatter', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8196, 1, 'en', 'vendor/chatter', 'description', 'A simple forum package for your Laravel app.', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8197, 1, 'en', 'vendor/chatter', 'words.cancel', 'Cancel', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8198, 1, 'en', 'vendor/chatter', 'words.delete', 'Delete', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8199, 1, 'en', 'vendor/chatter', 'words.edit', 'Edit', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8200, 1, 'en', 'vendor/chatter', 'words.yes', 'Yes', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8201, 1, 'en', 'vendor/chatter', 'words.no', 'No', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8202, 1, 'en', 'vendor/chatter', 'words.minutes', '1 minute| :count minutes', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8203, 1, 'en', 'vendor/chatter', 'discussion.new', 'New Discussion', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8204, 1, 'en', 'vendor/chatter', 'discussion.all', 'All Discussion', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8205, 1, 'en', 'vendor/chatter', 'discussion.create', 'Create Discussion', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8206, 1, 'en', 'vendor/chatter', 'discussion.posted_by', 'Posted by', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8207, 1, 'en', 'vendor/chatter', 'discussion.head_details', 'Posted in Category', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8208, 1, 'en', 'vendor/chatter', 'response.confirm', 'Are you sure you want to delete this response?', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8209, 1, 'en', 'vendor/chatter', 'response.yes_confirm', 'Yes Delete It', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8210, 1, 'en', 'vendor/chatter', 'response.no_confirm', 'No Thanks', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8211, 1, 'en', 'vendor/chatter', 'response.submit', 'Submit response', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8212, 1, 'en', 'vendor/chatter', 'response.update', 'Update Response', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8213, 1, 'en', 'vendor/chatter', 'editor.title', 'Title of Discussion', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8214, 1, 'en', 'vendor/chatter', 'editor.select', 'Select a Category', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8215, 1, 'en', 'vendor/chatter', 'editor.tinymce_placeholder', 'Type Your Discussion Here...', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8216, 1, 'en', 'vendor/chatter', 'editor.select_color_text', 'Select a Color for this Discussion (optional)', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8217, 1, 'en', 'vendor/chatter', 'email.notify', 'Notify me when someone replies', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8218, 1, 'en', 'vendor/chatter', 'auth', 'Please <a href=\"/:home/login\">login</a>\n or <a href=\"/:home/register\">register</a>\n to leave a response.', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8219, 1, 'es', 'vendor/chatter', 'success.title', '¡Bien hecho!', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8220, 1, 'es', 'vendor/chatter', 'success.reason.submitted_to_post', 'Respuesta enviada correctamente a la discussion', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8221, 1, 'es', 'vendor/chatter', 'success.reason.updated_post', 'Discussion actualizada correctamente.', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8222, 1, 'es', 'vendor/chatter', 'success.reason.destroy_post', 'Se ha borrado correctamente la respuesta y la discussion', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8223, 1, 'es', 'vendor/chatter', 'success.reason.destroy_from_discussion', 'Se ha borrado correctamente la respuesta de la discussion', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8224, 1, 'es', 'vendor/chatter', 'success.reason.created_discussion', 'Se ha creado correctamente una nueva discussion', '2019-09-12 23:35:18', '2019-09-12 23:35:18'); INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES (8225, 1, 'es', 'vendor/chatter', 'info.title', '¡Aviso!', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8226, 1, 'es', 'vendor/chatter', 'warning.title', '¡Precaución!', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8227, 1, 'es', 'vendor/chatter', 'danger.title', '¡Ha ocurrido un error!', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8228, 1, 'es', 'vendor/chatter', 'danger.reason.errors', 'Por favor corrige los siguientes errores:', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8229, 1, 'es', 'vendor/chatter', 'danger.reason.prevent_spam', 'Con el fin de prevenir el SPAM, podrás volver a enviar el contenido nuevamente en :minutes', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8230, 1, 'es', 'vendor/chatter', 'danger.reason.trouble', 'Parece que ha ocurrido un problema al intentar enviar la respuesta, vuelve a intentarlo más tarde.', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8231, 1, 'es', 'vendor/chatter', 'danger.reason.update_post', '¡Oh! No se ha podido actualizar la respuesta.', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8232, 1, 'es', 'vendor/chatter', 'danger.reason.destroy_post', '¡Oh! No se ha podido borrar la respuesta.', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8233, 1, 'es', 'vendor/chatter', 'danger.reason.create_discussion', '¡Ups! Parece que hay un problema al crear la discussion. :(', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8234, 1, 'es', 'vendor/chatter', 'danger.reason.title_required', 'Por favor escribe un título', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8235, 1, 'es', 'vendor/chatter', 'danger.reason.title_min', 'El título debe tener al menos :min caracteres.', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8236, 1, 'es', 'vendor/chatter', 'danger.reason.title_max', 'El título no debe superar los :max caracteres.', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8237, 1, 'es', 'vendor/chatter', 'danger.reason.content_required', 'Es necesario escribir algo en el contenido', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8238, 1, 'es', 'vendor/chatter', 'danger.reason.content_min', 'El contenido debe tener al menos :min caracteres', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8239, 1, 'es', 'vendor/chatter', 'danger.reason.category_required', 'Por favor selecciona una categoría', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8240, 1, 'es', 'vendor/chatter', 'preheader', 'Este texto es como un encabezado. Algunos clientes muestran este texto como una vista previa.', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8241, 1, 'es', 'vendor/chatter', 'greeting', 'Hola,', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8242, 1, 'es', 'vendor/chatter', 'body', 'Te informamos que alguien ha respondido a una discussion publicada en', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8243, 1, 'es', 'vendor/chatter', 'view_discussion', 'Ver la discussion', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8244, 1, 'es', 'vendor/chatter', 'farewell', 'Que tengas un buen día.', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8245, 1, 'es', 'vendor/chatter', 'unsuscribe.message', 'Si ya no deseas ser notificado cuando alguien más responda, asegurate de desmarcar la configuración de notificación al final de la página :)', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8246, 1, 'es', 'vendor/chatter', 'unsuscribe.action', '¿No le gustan estos correos electrónicos?', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8247, 1, 'es', 'vendor/chatter', 'unsuscribe.link', 'Anular la suscripción a la discussion', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8248, 1, 'es', 'vendor/chatter', 'titles.discussion', 'Discusión', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8249, 1, 'es', 'vendor/chatter', 'titles.discussions', 'Discusiones', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8250, 1, 'es', 'vendor/chatter', 'headline', 'Bienvenidos a Chatter', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8251, 1, 'es', 'vendor/chatter', 'description', 'Un foro con un simple librería para Laravel', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8252, 1, 'es', 'vendor/chatter', 'words.cancel', 'Cancelar', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8253, 1, 'es', 'vendor/chatter', 'words.delete', 'Borrar', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8254, 1, 'es', 'vendor/chatter', 'words.edit', 'Editar', '2019-09-12 23:35:18', '2019-09-12 23:35:18'), (8255, 1, 'es', 'vendor/chatter', 'words.yes', 'Si', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8256, 1, 'es', 'vendor/chatter', 'words.no', 'No', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8257, 1, 'es', 'vendor/chatter', 'words.minutes', '1 minuto| :count minutos', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8258, 1, 'es', 'vendor/chatter', 'discussion.new', 'Nueva discussion', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8259, 1, 'es', 'vendor/chatter', 'discussion.all', 'Todas las discussions', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8260, 1, 'es', 'vendor/chatter', 'discussion.create', 'Crear una discussion', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8261, 1, 'es', 'vendor/chatter', 'discussion.posted_by', 'Publicado por', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8262, 1, 'es', 'vendor/chatter', 'discussion.head_details', 'Publicado en categoria', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8263, 1, 'es', 'vendor/chatter', 'response.confirm', '¿Estás seguro de que quieres borrar la respuesta?', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8264, 1, 'es', 'vendor/chatter', 'response.yes_confirm', 'Si, borrar', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8265, 1, 'es', 'vendor/chatter', 'response.no_confirm', 'No gracias', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8266, 1, 'es', 'vendor/chatter', 'response.submit', 'Enviar respuesta', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8267, 1, 'es', 'vendor/chatter', 'response.update', 'Actualizar respuesta', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8268, 1, 'es', 'vendor/chatter', 'editor.title', 'Titulo de la discussion', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8269, 1, 'es', 'vendor/chatter', 'editor.select', 'Selecciona una categoria', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8270, 1, 'es', 'vendor/chatter', 'editor.tinymce_placeholder', 'Agrega el contenido para la discussion aquí...', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8271, 1, 'es', 'vendor/chatter', 'editor.select_color_text', 'Selecciona un color para la discussion (opcional)', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8272, 1, 'es', 'vendor/chatter', 'email.notify', 'Notificarme cuando alguien conteste en la discussion', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8273, 1, 'es', 'vendor/chatter', 'auth', 'Por favor <a href=\"/:home/login\">Inicia sesión</a>\n o <a href=\"/:home/register\">Regístrate</a>\n para dejar una respuesta.', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8274, 1, 'fr', 'vendor/chatter', 'success.title', '¡Bien hecho!', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8275, 1, 'fr', 'vendor/chatter', 'success.reason.submitted_to_post', 'Respuesta enviada correctamente a la discussion', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8276, 1, 'fr', 'vendor/chatter', 'success.reason.updated_post', 'Discussion actualizada correctamente.', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8277, 1, 'fr', 'vendor/chatter', 'success.reason.destroy_post', 'Se ha borrado correctamente la respuesta y la discussion', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8278, 1, 'fr', 'vendor/chatter', 'success.reason.destroy_from_discussion', 'Se ha borrado correctamente la respuesta de la discussion', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8279, 1, 'fr', 'vendor/chatter', 'success.reason.created_discussion', 'Se ha creado correctamente una nueva discussion', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8280, 1, 'fr', 'vendor/chatter', 'info.title', '¡Aviso!', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8281, 1, 'fr', 'vendor/chatter', 'warning.title', '¡Precaución!', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8282, 1, 'fr', 'vendor/chatter', 'danger.title', '¡Ha ocurrido un error!', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8283, 1, 'fr', 'vendor/chatter', 'danger.reason.errors', 'Por favor corrige los siguientes errores:', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8284, 1, 'fr', 'vendor/chatter', 'danger.reason.prevent_spam', 'Con el fin de prevenir el SPAM, podrás volver a enviar el contenido nuevamente en :minutes', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8285, 1, 'fr', 'vendor/chatter', 'danger.reason.trouble', 'Parece que ha ocurrido un problema al intentar enviar la respuesta, vuelve a intentarlo más tarde.', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8286, 1, 'fr', 'vendor/chatter', 'danger.reason.update_post', '¡Oh! No se ha podido actualizar la respuesta.', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8287, 1, 'fr', 'vendor/chatter', 'danger.reason.destroy_post', '¡Oh! No se ha podido borrar la respuesta.', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8288, 1, 'fr', 'vendor/chatter', 'danger.reason.create_discussion', '¡Ups! Parece que hay un problema al crear la discussion. :(', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8289, 1, 'fr', 'vendor/chatter', 'danger.reason.title_required', 'Por favor escribe un título', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8290, 1, 'fr', 'vendor/chatter', 'danger.reason.title_min', 'El título debe tener al menos :min caracteres.', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8291, 1, 'fr', 'vendor/chatter', 'danger.reason.title_max', 'El título no debe superar los :max caracteres.', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8292, 1, 'fr', 'vendor/chatter', 'danger.reason.content_required', 'Es necesario escribir algo en el contenido', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8293, 1, 'fr', 'vendor/chatter', 'danger.reason.content_min', 'El contenido debe tener al menos :min caracteres', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8294, 1, 'fr', 'vendor/chatter', 'danger.reason.category_required', 'Por favor selecciona una categoría', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8295, 1, 'fr', 'vendor/chatter', 'preheader', 'Este texto es como un encabezado. Algunos clientes muestran este texto como una vista previa.', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8296, 1, 'fr', 'vendor/chatter', 'greeting', 'Hola,', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8297, 1, 'fr', 'vendor/chatter', 'body', 'Te informamos que alguien ha respondido a una discussion publicada en', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8298, 1, 'fr', 'vendor/chatter', 'view_discussion', 'Ver la discussion', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8299, 1, 'fr', 'vendor/chatter', 'farewell', 'Que tengas un buen día.', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8300, 1, 'fr', 'vendor/chatter', 'unsuscribe.message', 'Si ya no deseas ser notificado cuando alguien más responda, asegurate de desmarcar la configuración de notificación al final de la página :)', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8301, 1, 'fr', 'vendor/chatter', 'unsuscribe.action', '¿No le gustan estos correos electrónicos?', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8302, 1, 'fr', 'vendor/chatter', 'unsuscribe.link', 'Anular la suscripción a la discussion', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8303, 1, 'fr', 'vendor/chatter', 'titles.discussion', 'Discusión', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8304, 1, 'fr', 'vendor/chatter', 'titles.discussions', 'Discusiones', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8305, 1, 'fr', 'vendor/chatter', 'headline', 'Bienvenidos a Chatter', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8306, 1, 'fr', 'vendor/chatter', 'description', 'Un foro con un simple librería para Laravel', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8307, 1, 'fr', 'vendor/chatter', 'words.cancel', 'Cancelar', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8308, 1, 'fr', 'vendor/chatter', 'words.delete', 'Borrar', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8309, 1, 'fr', 'vendor/chatter', 'words.edit', 'Editar', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8310, 1, 'fr', 'vendor/chatter', 'words.yes', 'Si', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8311, 1, 'fr', 'vendor/chatter', 'words.no', 'No', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8312, 1, 'fr', 'vendor/chatter', 'words.minutes', '1 minuto| :count minutos', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8313, 1, 'fr', 'vendor/chatter', 'discussion.new', 'Nueva discussion', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8314, 1, 'fr', 'vendor/chatter', 'discussion.all', 'Todas las discussions', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8315, 1, 'fr', 'vendor/chatter', 'discussion.create', 'Crear una discussion', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8316, 1, 'fr', 'vendor/chatter', 'discussion.posted_by', 'Publicado por', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8317, 1, 'fr', 'vendor/chatter', 'discussion.head_details', 'Publicado en categoria', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8318, 1, 'fr', 'vendor/chatter', 'response.confirm', '¿Estás seguro de que quieres borrar la respuesta?', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8319, 1, 'fr', 'vendor/chatter', 'response.yes_confirm', 'Si, borrar', '2019-09-12 23:35:19', '2019-09-12 23:35:19'), (8320, 1, 'fr', 'vendor/chatter', 'response.no_confirm', 'No gracias', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8321, 1, 'fr', 'vendor/chatter', 'response.submit', 'Enviar respuesta', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8322, 1, 'fr', 'vendor/chatter', 'response.update', 'Actualizar respuesta', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8323, 1, 'fr', 'vendor/chatter', 'editor.title', 'Titulo de la discussion', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8324, 1, 'fr', 'vendor/chatter', 'editor.select', 'Selecciona una categoria', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8325, 1, 'fr', 'vendor/chatter', 'editor.tinymce_placeholder', 'Agrega el contenido para la discussion aquí...', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8326, 1, 'fr', 'vendor/chatter', 'editor.select_color_text', 'Selecciona un color para la discussion (opcional)', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8327, 1, 'fr', 'vendor/chatter', 'email.notify', 'Notificarme cuando alguien conteste en la discussion', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8328, 1, 'fr', 'vendor/chatter', 'auth', 'Por favor <a href=\"/:home/login\">Inicia sesión</a>\n o <a href=\"/:home/register\">Regístrate</a>\n para dejar una respuesta.', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8329, 1, 'ar', 'vendor/cookieConsent', 'message', 'سيتم تحسين تجربتك في هذا الموقع من خلال السماح بملفات تعريف الارتباط.', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8330, 1, 'ar', 'vendor/cookieConsent', 'agree', 'السماح للكوكيز', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8331, 1, 'en', 'vendor/cookieConsent', 'message', 'Your experience on this site will be improved by allowing cookies.', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8332, 1, 'en', 'vendor/cookieConsent', 'agree', 'Allow cookies', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8333, 1, 'es', 'vendor/cookieConsent', 'message', 'Su experiencia en este sitio será mejorada con el uso de cookies.', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8334, 1, 'es', 'vendor/cookieConsent', 'agree', 'Aceptar', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8335, 1, 'fr', 'vendor/cookieConsent', 'message', 'Ce site nécessite l\'autorisation de cookies pour fonctionner correctement.', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8336, 1, 'fr', 'vendor/cookieConsent', 'agree', 'Accepter', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8337, 0, 'ar', 'vendor/log-viewer', 'all', 'الكل', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8338, 1, 'ar', 'vendor/log-viewer', 'date', 'تاريخ', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8339, 1, 'ar', 'vendor/log-viewer', 'emergency', 'حالة طوارئ', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8340, 1, 'ar', 'vendor/log-viewer', 'alert', 'محزر', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8341, 1, 'ar', 'vendor/log-viewer', 'critical', 'حرج', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8342, 1, 'ar', 'vendor/log-viewer', 'error', 'خطأ', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8343, 1, 'ar', 'vendor/log-viewer', 'warning', 'تحذير', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8344, 1, 'ar', 'vendor/log-viewer', 'notice', 'تنويه', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8345, 1, 'ar', 'vendor/log-viewer', 'info', 'معلومات', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8346, 1, 'ar', 'vendor/log-viewer', 'debug', 'التصحيح', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8347, 0, 'en', 'vendor/log-viewer', 'all', 'All', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8348, 1, 'en', 'vendor/log-viewer', 'date', 'Date', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8349, 1, 'en', 'vendor/log-viewer', 'emergency', 'Emergency', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8350, 1, 'en', 'vendor/log-viewer', 'alert', 'Alert', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8351, 1, 'en', 'vendor/log-viewer', 'critical', 'Critical', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8352, 1, 'en', 'vendor/log-viewer', 'error', 'Error', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8353, 1, 'en', 'vendor/log-viewer', 'warning', 'Warning', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8354, 1, 'en', 'vendor/log-viewer', 'notice', 'Notice', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8355, 1, 'en', 'vendor/log-viewer', 'info', 'Info', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8356, 1, 'en', 'vendor/log-viewer', 'debug', 'Debug', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8357, 0, 'es', 'vendor/log-viewer', 'all', 'Todos', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8358, 1, 'es', 'vendor/log-viewer', 'date', 'Fecha', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8359, 1, 'es', 'vendor/log-viewer', 'emergency', 'Emergencia', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8360, 1, 'es', 'vendor/log-viewer', 'alert', 'Alerta', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8361, 1, 'es', 'vendor/log-viewer', 'critical', 'Criticos', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8362, 1, 'es', 'vendor/log-viewer', 'error', 'Errores', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8363, 1, 'es', 'vendor/log-viewer', 'warning', 'Advertencia', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8364, 1, 'es', 'vendor/log-viewer', 'notice', 'Aviso', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8365, 1, 'es', 'vendor/log-viewer', 'info', 'Info', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8366, 1, 'es', 'vendor/log-viewer', 'debug', 'Debug', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8367, 1, 'fr', 'vendor/log-viewer', 'all', 'Tous', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8368, 1, 'fr', 'vendor/log-viewer', 'date', 'Date', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8369, 1, 'fr', 'vendor/log-viewer', 'emergency', 'Urgence', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8370, 1, 'fr', 'vendor/log-viewer', 'alert', 'Alerte', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8371, 1, 'fr', 'vendor/log-viewer', 'critical', 'Critique', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8372, 1, 'fr', 'vendor/log-viewer', 'error', 'Erreur', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8373, 1, 'fr', 'vendor/log-viewer', 'warning', 'Avertissement', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8374, 1, 'fr', 'vendor/log-viewer', 'notice', 'Notice', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8375, 1, 'fr', 'vendor/log-viewer', 'info', 'Info', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8376, 1, 'fr', 'vendor/log-viewer', 'debug', 'Debug', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8377, 1, 'ar', 'vendor/read-time', 'reads_left_to_right', '1', '2019-09-12 23:35:20', '2019-09-12 23:35:20'), (8378, 1, 'ar', 'vendor/read-time', 'min', 'دقيقة', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8379, 1, 'ar', 'vendor/read-time', 'minute', 'اللحظة', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8380, 1, 'ar', 'vendor/read-time', 'sec', 'ثانية', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8381, 1, 'ar', 'vendor/read-time', 'second', 'ثانيا', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8382, 1, 'ar', 'vendor/read-time', 'read', 'اقرأ', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8383, 1, 'en', 'vendor/read-time', 'reads_left_to_right', '1', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8384, 1, 'en', 'vendor/read-time', 'min', 'min', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8385, 1, 'en', 'vendor/read-time', 'minute', 'minute', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8386, 1, 'en', 'vendor/read-time', 'sec', 'sec', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8387, 1, 'en', 'vendor/read-time', 'second', 'second', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8388, 1, 'en', 'vendor/read-time', 'read', 'read', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8389, 1, 'es', 'vendor/read-time', 'reads_left_to_right', '1', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8390, 1, 'es', 'vendor/read-time', 'min', 'min', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8391, 1, 'es', 'vendor/read-time', 'minute', 'minuto', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8392, 1, 'es', 'vendor/read-time', 'sec', 'seg', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8393, 1, 'es', 'vendor/read-time', 'second', 'segundo', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8394, 1, 'es', 'vendor/read-time', 'read', 'leer', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8395, 1, 'fr', 'vendor/read-time', 'reads_left_to_right', '1', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8396, 1, 'fr', 'vendor/read-time', 'min', 'min', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8397, 1, 'fr', 'vendor/read-time', 'minute', 'minute', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8398, 1, 'fr', 'vendor/read-time', 'sec', 'sec', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8399, 1, 'fr', 'vendor/read-time', 'second', 'seconde', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8400, 1, 'fr', 'vendor/read-time', 'read', 'lire', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8401, 1, 'en', 'vendor/self-diagnosis', 'app_key_is_set.message', 'The application key is not set. Call \"php artisan key:generate\" to create and set one.', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8402, 1, 'en', 'vendor/self-diagnosis', 'app_key_is_set.name', 'App key is set', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8403, 1, 'en', 'vendor/self-diagnosis', 'composer_with_dev_dependencies_is_up_to_date.message', 'Your composer dependencies are not up to date. Call \"composer install\" to update them. :more', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8404, 1, 'en', 'vendor/self-diagnosis', 'composer_with_dev_dependencies_is_up_to_date.name', 'Composer dependencies (including dev) are up to date', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8405, 1, 'en', 'vendor/self-diagnosis', 'composer_without_dev_dependencies_is_up_to_date.message', 'Your composer dependencies are not up to date. Call \"composer install\" to update them. :more', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8406, 1, 'en', 'vendor/self-diagnosis', 'composer_without_dev_dependencies_is_up_to_date.name', 'Composer dependencies (without dev) are up to date', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8407, 1, 'en', 'vendor/self-diagnosis', 'configuration_is_cached.message', 'Your configuration should be cached in production for better performance. Call \"php artisan config:cache\" to create the configuration cache.', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8408, 1, 'en', 'vendor/self-diagnosis', 'configuration_is_cached.name', 'Configuration is cached', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8409, 1, 'en', 'vendor/self-diagnosis', 'configuration_is_not_cached.message', 'Your configuration files should not be cached during development. Call \"php artisan config:clear\" to clear the configuration cache.', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8410, 1, 'en', 'vendor/self-diagnosis', 'configuration_is_not_cached.name', 'Configuration is not cached', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8411, 1, 'en', 'vendor/self-diagnosis', 'correct_php_version_is_installed.message', 'You do not have the required PHP version installed.\nRequired: :required\nUsed: :used', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8412, 1, 'en', 'vendor/self-diagnosis', 'correct_php_version_is_installed.name', 'The correct PHP version is installed', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8413, 1, 'en', 'vendor/self-diagnosis', 'database_can_be_accessed.message', 'The database can not be accessed: :error', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8414, 1, 'en', 'vendor/self-diagnosis', 'database_can_be_accessed.name', 'The database can be accessed', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8415, 1, 'en', 'vendor/self-diagnosis', 'debug_mode_is_not_enabled.message', 'You should not use debug mode in production. Set \"APP_DEBUG\" in the .env file to \"false\".', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8416, 1, 'en', 'vendor/self-diagnosis', 'debug_mode_is_not_enabled.name', 'Debug mode is not enabled', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8417, 1, 'en', 'vendor/self-diagnosis', 'directories_have_correct_permissions.message', 'The following directories are not writable:\n:directories', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8418, 1, 'en', 'vendor/self-diagnosis', 'directories_have_correct_permissions.name', 'All directories have the correct permissions', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8419, 1, 'en', 'vendor/self-diagnosis', 'env_file_exists.message', 'The .env file does not exist. Please copy your .env.example file as .env and adjust accordingly.', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8420, 1, 'en', 'vendor/self-diagnosis', 'env_file_exists.name', 'The environment file exists', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8421, 1, 'en', 'vendor/self-diagnosis', 'example_environment_variables_are_set.message', 'These environment variables are missing in your .env file, but are defined in your .env.example:\n:variables', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8422, 1, 'en', 'vendor/self-diagnosis', 'example_environment_variables_are_set.name', 'The example environment variables are set', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8423, 1, 'en', 'vendor/self-diagnosis', 'migrations_are_up_to_date.message.need_to_migrate', 'You need to update your database. Call \"php artisan migrate\" to run migrations.', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8424, 1, 'en', 'vendor/self-diagnosis', 'migrations_are_up_to_date.message.unable_to_check', 'Unable to check for migrations: :reason', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8425, 1, 'en', 'vendor/self-diagnosis', 'migrations_are_up_to_date.name', 'The migrations are up to date', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8426, 1, 'en', 'vendor/self-diagnosis', 'php_extensions_are_disabled.message', 'The following extensions are still enabled:\n:extensions', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8427, 1, 'en', 'vendor/self-diagnosis', 'php_extensions_are_disabled.name', 'Unwanted PHP extensions are disabled', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8428, 1, 'en', 'vendor/self-diagnosis', 'php_extensions_are_installed.message', 'The following extensions are missing:\n:extensions', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8429, 1, 'en', 'vendor/self-diagnosis', 'php_extensions_are_installed.name', 'The required PHP extensions are installed', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8430, 1, 'en', 'vendor/self-diagnosis', 'routes_are_cached.message', 'Your routes should be cached in production for better performance. Call \"php artisan route:cache\" to create the route cache.', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8431, 1, 'en', 'vendor/self-diagnosis', 'routes_are_cached.name', 'Routes are cached', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8432, 1, 'en', 'vendor/self-diagnosis', 'routes_are_not_cached.message', 'Your routes should not be cached during development. Call \"php artisan route:clear\" to clear the route cache.', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8433, 1, 'en', 'vendor/self-diagnosis', 'routes_are_not_cached.name', 'Routes are not cached', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8434, 1, 'en', 'vendor/self-diagnosis', 'storage_directory_is_linked.message', 'The storage directory is not linked. Use \"php artisan storage:link\" to create a symbolic link.', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8435, 1, 'en', 'vendor/self-diagnosis', 'storage_directory_is_linked.name', 'The storage directory is linked', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8436, 1, 'en', 'vendor/self-diagnosis', 'self_diagnosis.common_checks', 'Common Checks', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8437, 1, 'en', 'vendor/self-diagnosis', 'self_diagnosis.environment_specific_checks', 'Environment Specific Checks (:environment)', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8438, 1, 'en', 'vendor/self-diagnosis', 'self_diagnosis.failed_checks', 'The following checks failed:', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8439, 1, 'en', 'vendor/self-diagnosis', 'self_diagnosis.running_check', '<fg=yellow>Running check :current/:max:</fg=yellow> :name... ', '2019-09-12 23:35:21', '2019-09-12 23:35:21'), (8440, 1, 'en', 'vendor/self-diagnosis', 'self_diagnosis.success', 'Good job, looks like you are all set up!', '2019-09-12 23:35:21', '2019-09-12 23:35:21'); -- -------------------------------------------------------- -- -- Table structure for table `media` -- CREATE TABLE `media` ( `id` int(10) UNSIGNED NOT NULL, `model_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `model_id` bigint(20) UNSIGNED DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `url` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `file_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `size` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `media` -- INSERT INTO `media` (`id`, `model_type`, `model_id`, `name`, `url`, `type`, `file_name`, `size`, `created_at`, `updated_at`) VALUES (5, 'App\\Models\\Lesson', 501, 'Getting Started - video', 'https://youtu.be/nhBVL41-_Cw', 'youtube', 'nhBVL41-_Cw', 0, '2020-05-14 12:58:35', '2020-05-14 13:05:18'), (6, 'App\\Models\\Lesson', 502, 'Routes - video', 'https://youtu.be/EU7PRmCpx-0', 'youtube', 'EU7PRmCpx-0', 0, '2020-05-15 14:08:21', '2020-05-15 14:11:35'), (7, 'App\\Models\\Course', 52, 'PHP with Laravel - video', 'https://youtu.be/M0X0a23QDi8', 'youtube', 'M0X0a23QDi8', 0, '2020-05-16 06:08:31', '2020-05-16 06:08:31'), (9, 'App\\Models\\Lesson', 505, 'Introduction - video', '<div style=\"width:100%;height:0px;position:relative;padding-bottom:56.250%;\"><iframe src=\"https://streamable.com/e/nacnow\" frameborder=\"0\" width=\"100%\" height=\"100%\" allowfullscreen style=\"width:100%;height:100%;position:absolute;left:0px;top:0px;overflow:hidden;\"></iframe></div>', 'embed', '', 0, '2020-05-16 06:47:21', '2020-06-22 08:45:18'), (10, 'App\\Models\\Lesson', 506, 'Versi Laravel - video', 'https://youtu.be/M0X0a23QDi8', 'youtube', 'M0X0a23QDi8', 0, '2020-05-16 06:50:19', '2020-05-16 06:50:19'), (11, 'App\\Models\\Lesson', 507, 'Instalasi Local Development Environment - video', 'https://youtu.be/M0X0a23QDi8', 'youtube', 'M0X0a23QDi8', 0, '2020-05-16 06:50:54', '2020-05-16 06:50:54'), (12, 'App\\Models\\Lesson', 508, 'Instalasi Composer dan Laravel Installer - video', 'https://youtu.be/M0X0a23QDi8', 'youtube', 'M0X0a23QDi8', 0, '2020-05-16 06:51:57', '2020-05-16 06:51:57'), (13, 'App\\Models\\Lesson', 509, 'Membuat Aplikasi Kontak Menejer - video', 'https://youtu.be/M0X0a23QDi8', 'youtube', 'M0X0a23QDi8', 0, '2020-05-16 06:53:58', '2020-05-16 06:53:58'), (14, 'App\\Models\\Course', 54, 'Basics Laravel - video', '<div style=\"width:100%;height:0px;position:relative;padding-bottom:56.250%;\"><iframe src=\"https://streamable.com/e/nacnow\" frameborder=\"0\" width=\"100%\" height=\"100%\" allowfullscreen style=\"width:100%;height:100%;position:absolute;left:0px;top:0px;overflow:hidden;\"></iframe></div>', 'embed', '', 0, '2020-06-22 08:39:22', '2020-06-22 08:39:22'); -- -------------------------------------------------------- -- -- Table structure for table `messages` -- CREATE TABLE `messages` ( `id` int(10) UNSIGNED NOT NULL, `thread_id` int(10) UNSIGNED NOT NULL, `sender_id` int(10) UNSIGNED NOT NULL, `body` text COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `messages` -- INSERT INTO `messages` (`id`, `thread_id`, `sender_id`, `body`, `created_at`) VALUES (1, 1, 3, 'test', '2020-08-12 09:30:46'), (2, 2, 24, 'Hy', '2022-01-16 04:11:00'); -- -------------------------------------------------------- -- -- Table structure for table `message_threads` -- CREATE TABLE `message_threads` ( `id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `message_threads` -- INSERT INTO `message_threads` (`id`) VALUES (1), (2); -- -------------------------------------------------------- -- -- Table structure for table `message_thread_participants` -- CREATE TABLE `message_thread_participants` ( `id` int(10) UNSIGNED NOT NULL, `thread_id` int(10) UNSIGNED NOT NULL, `user_id` int(10) UNSIGNED NOT NULL, `last_read` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `message_thread_participants` -- INSERT INTO `message_thread_participants` (`id`, `thread_id`, `user_id`, `last_read`, `deleted_at`) VALUES (1, 1, 3, '2020-08-12 09:30:47', NULL), (2, 1, 6, '2020-08-12 09:30:54', NULL), (3, 2, 24, '2022-01-16 04:11:06', NULL), (4, 2, 6, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (76, '2014_04_02_193005_create_translations_table', 1), (77, '2014_10_12_000000_create_users_table', 1), (78, '2014_10_12_100000_create_password_resets_table', 1), (79, '2016_06_01_000001_create_oauth_auth_codes_table', 1), (80, '2016_06_01_000002_create_oauth_access_tokens_table', 1), (81, '2016_06_01_000003_create_oauth_refresh_tokens_table', 1), (82, '2016_06_01_000004_create_oauth_clients_table', 1), (83, '2016_06_01_000005_create_oauth_personal_access_clients_table', 1), (84, '2016_07_27_052049_create_messages_table', 1), (85, '2016_07_29_171118_create_chatter_categories_table', 1), (86, '2016_07_29_171118_create_chatter_discussion_table', 1), (87, '2016_07_29_171118_create_chatter_post_table', 1), (88, '2016_07_29_171128_create_foreign_keys', 1), (89, '2016_07_31_215110_create_message_threads_table', 1), (90, '2016_07_31_215345_create_message_thread_participants', 1), (91, '2016_08_02_183143_add_slug_field_for_discussions', 1), (92, '2016_08_03_121747_add_color_row_to_chatter_discussions', 1), (93, '2017_01_16_121747_add_markdown_and_lock_to_chatter_posts', 1), (94, '2017_01_16_121747_create_chatter_user_discussion_pivot_table', 1), (95, '2017_05_28_062751_create_categories_table', 1), (96, '2017_07_19_082347_create_1500441827_courses_table', 1), (97, '2017_07_19_082723_create_1500442043_lessons_table', 1), (98, '2017_07_19_082929_create_1500442169_questions_table', 1), (99, '2017_07_19_083047_create_1500442247_questions_options_table', 1), (100, '2017_07_19_083236_create_1500442356_tests_table', 1), (101, '2017_07_19_120808_create_596eece522a6e_course_user_table', 1), (102, '2017_07_19_121657_create_596eeef709839_question_test_table', 1), (103, '2017_08_07_165345_add_chatter_soft_deletes', 1), (104, '2017_08_11_073824_create_menus_wp_table', 1), (105, '2017_08_11_074006_create_menu_items_wp_table', 1), (106, '2017_08_14_085956_create_course_students_table', 1), (107, '2017_08_17_051131_create_tests_results_table', 1), (108, '2017_08_17_051254_create_tests_results_answers_table', 1), (109, '2017_08_18_060324_add_rating_to_course_student_table', 1), (110, '2017_09_03_144628_create_permission_tables', 1), (111, '2017_09_11_174816_create_social_accounts_table', 1), (112, '2017_09_26_140332_create_cache_table', 1), (113, '2017_09_26_140528_create_sessions_table', 1), (114, '2017_09_26_140609_create_jobs_table', 1), (115, '2017_10_10_221227_add_chatter_last_reply_at_discussion', 1), (116, '2018_04_08_033256_create_password_histories_table', 1), (117, '2018_06_27_072626_create_blog_module', 1), (118, '2019_01_15_103052_create_media_table', 1), (119, '2019_01_16_105633_create_video_progresses_table', 1), (120, '2019_01_24_113831_create_invoices_table', 1), (121, '2019_01_24_115120_create_cart_storage_table', 1), (122, '2019_01_24_120730_create_orders_table', 1), (123, '2019_01_24_120745_create_order_items_table', 1), (124, '2019_01_29_052953_create_configs_table', 1), (125, '2019_02_06_115555_create_course_timeline_table', 1), (126, '2019_02_08_052619_create_sliders_table', 1), (127, '2019_02_12_051827_create_sponsors_table', 1), (128, '2019_02_12_101125_create_testimonials_table', 1), (129, '2019_02_13_111625_create_faqs_table', 1), (130, '2019_02_15_115610_create_reviews_table', 1), (131, '2019_02_19_061120_create_reasons_table', 1), (132, '2019_03_01_055054_create_chapter_students_table', 1), (133, '2019_03_06_093703_create_contacts_table', 1), (134, '2019_03_07_043443_create_pages_table', 1), (135, '2019_04_25_095421_create_locales_table', 1), (136, '2019_05_08_053815_create_certificates_table', 1), (137, '2019_05_30_044853_create_bundles_table', 1), (138, '2019_05_30_090702_create_bundle_courses_table', 1), (139, '2019_05_31_055427_create_bundle_student_table', 1), (140, '2019_05_31_120554_update_order_items_with_morph', 1), (141, '2019_06_03_074229_add_foreign_key_to_courses', 1), (142, '2019_06_03_074251_add_foreign_key_to_faqs', 1), (143, '2019_06_03_074323_add_foreign_key_to_blogs', 1), (144, '2019_06_07_073739_add_columns_in_users_table', 1), (145, '2019_07_22_105142_add_free_column_in_courses', 1), (146, '2019_07_22_105658_add_free_column_in_bundles', 1), (147, '2019_07_30_055917_create_coupons_table', 1), (148, '2019_07_30_061713_create_taxes_table', 1), (149, '2019_07_30_063204_add_coupon_tax_id_in_orders_table', 1), (150, '2019_08_19_054926_add_explanation_column_in_question_options', 1), (151, '2019_09_10_061608_add_remarks_in_orders_table', 1); -- -------------------------------------------------------- -- -- Table structure for table `model_has_permissions` -- CREATE TABLE `model_has_permissions` ( `permission_id` int(10) UNSIGNED NOT NULL, `model_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `model_id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `model_has_roles` -- CREATE TABLE `model_has_roles` ( `role_id` int(10) UNSIGNED NOT NULL, `model_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `model_id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `model_has_roles` -- INSERT INTO `model_has_roles` (`role_id`, `model_type`, `model_id`) VALUES (1, 'App\\Models\\Auth\\User', 1), (2, 'App\\Models\\Auth\\User', 2), (2, 'App\\Models\\Auth\\User', 6), (2, 'App\\Models\\Auth\\User', 7), (2, 'App\\Models\\Auth\\User', 8), (2, 'App\\Models\\Auth\\User', 9), (2, 'App\\Models\\Auth\\User', 10), (2, 'App\\Models\\Auth\\User', 11), (2, 'App\\Models\\Auth\\User', 12), (2, 'App\\Models\\Auth\\User', 21), (2, 'App\\Models\\Auth\\User', 26), (3, 'App\\Models\\Auth\\User', 3), (3, 'App\\Models\\Auth\\User', 4), (3, 'App\\Models\\Auth\\User', 5), (3, 'App\\Models\\Auth\\User', 13), (3, 'App\\Models\\Auth\\User', 14), (3, 'App\\Models\\Auth\\User', 15), (3, 'App\\Models\\Auth\\User', 16), (3, 'App\\Models\\Auth\\User', 18), (3, 'App\\Models\\Auth\\User', 22), (3, 'App\\Models\\Auth\\User', 23), (3, 'App\\Models\\Auth\\User', 24), (3, 'App\\Models\\Auth\\User', 25), (3, 'App\\Models\\Auth\\User', 27); -- -------------------------------------------------------- -- -- Table structure for table `oauth_access_tokens` -- CREATE TABLE `oauth_access_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` int(11) DEFAULT NULL, `client_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `scopes` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_auth_codes` -- CREATE TABLE `oauth_auth_codes` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` int(11) NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `scopes` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_clients` -- CREATE TABLE `oauth_clients` ( `id` int(10) UNSIGNED NOT NULL, `user_id` int(11) DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `redirect` text COLLATE utf8mb4_unicode_ci NOT NULL, `personal_access_client` tinyint(1) NOT NULL, `password_client` tinyint(1) NOT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_personal_access_clients` -- CREATE TABLE `oauth_personal_access_clients` ( `id` int(10) UNSIGNED NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_refresh_tokens` -- CREATE TABLE `oauth_refresh_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` int(10) UNSIGNED NOT NULL, `user_id` int(10) UNSIGNED NOT NULL, `reference_no` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `amount` double(8,2) NOT NULL, `payment_type` int(11) NOT NULL DEFAULT 0 COMMENT '1-stripe/card, 2 - Paypal, 3 - Offline', `status` int(11) NOT NULL DEFAULT 0 COMMENT '0 - in progress, 1 - Completed', `transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `remarks` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `coupon_id` int(11) DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `orders` -- INSERT INTO `orders` (`id`, `user_id`, `reference_no`, `amount`, `payment_type`, `status`, `transaction_id`, `remarks`, `created_at`, `updated_at`, `coupon_id`) VALUES (9, 3, '90maL7NG', 0.00, 0, 1, NULL, NULL, '2020-05-16 07:39:19', '2020-05-16 07:39:19', 0), (10, 13, '75MMYmdy', 0.00, 0, 1, NULL, NULL, '2020-10-12 23:35:56', '2020-10-12 23:35:56', 0), (11, 15, '3fdTaZPJ', 0.00, 0, 1, NULL, NULL, '2021-07-07 20:16:01', '2021-07-07 20:16:01', 0), (12, 18, 'R3Ao71Gn', 0.00, 0, 1, NULL, NULL, '2021-09-23 09:48:15', '2021-09-23 09:48:15', 0), (13, 27, 'sUcPi2Gh', 0.00, 0, 1, NULL, NULL, '2022-03-22 19:49:50', '2022-03-22 19:49:50', 0), (14, 27, 'EY6fTBas', 0.00, 0, 1, NULL, NULL, '2022-03-22 19:53:04', '2022-03-22 19:53:04', 0); -- -------------------------------------------------------- -- -- Table structure for table `order_items` -- CREATE TABLE `order_items` ( `id` int(10) UNSIGNED NOT NULL, `order_id` int(11) NOT NULL, `item_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `item_id` int(11) NOT NULL, `price` double(8,2) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `order_items` -- INSERT INTO `order_items` (`id`, `order_id`, `item_type`, `item_id`, `price`, `created_at`, `updated_at`) VALUES (1, 1, 'App\\Models\\Course', 1, 156.67, '2019-09-12 23:38:15', '2019-09-12 23:38:15'), (2, 2, 'App\\Models\\Course', 2, 17.04, '2019-09-12 23:38:22', '2019-09-12 23:38:22'), (3, 3, 'App\\Models\\Course', 3, 66.97, '2019-09-12 23:38:28', '2019-09-12 23:38:28'), (4, 4, 'App\\Models\\Bundle', 1, 35.96, '2019-09-12 23:38:33', '2019-09-12 23:38:33'), (5, 5, 'App\\Models\\Bundle', 2, 117.00, '2019-09-12 23:38:37', '2019-09-12 23:38:37'), (6, 6, 'App\\Models\\Course', 9, 177.07, '2020-05-14 11:19:29', '2020-05-14 11:19:29'), (8, 8, 'App\\Models\\Course', 52, 0.00, '2020-05-14 14:10:55', '2020-05-14 14:10:55'), (9, 9, 'App\\Models\\Course', 54, 0.00, '2020-05-16 07:39:19', '2020-05-16 07:39:19'), (10, 10, 'App\\Models\\Course', 54, 0.00, '2020-10-12 23:35:56', '2020-10-12 23:35:56'), (11, 11, 'App\\Models\\Course', 54, 0.00, '2021-07-07 20:16:01', '2021-07-07 20:16:01'), (12, 12, 'App\\Models\\Course', 54, 0.00, '2021-09-23 09:48:15', '2021-09-23 09:48:15'), (13, 13, 'App\\Models\\Course', 54, 0.00, '2022-03-22 19:49:50', '2022-03-22 19:49:50'), (14, 14, 'App\\Models\\Course', 57, 0.00, '2022-03-22 19:53:04', '2022-03-22 19:53:04'); -- -------------------------------------------------------- -- -- Table structure for table `pages` -- CREATE TABLE `pages` ( `id` int(10) UNSIGNED NOT NULL, `user_id` int(10) UNSIGNED NOT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sidebar` int(11) NOT NULL DEFAULT 0, `meta_title` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_keywords` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `published` tinyint(4) DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `pages` -- INSERT INTO `pages` (`id`, `user_id`, `title`, `slug`, `content`, `image`, `sidebar`, `meta_title`, `meta_keywords`, `meta_description`, `published`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 1, 'About Us', 'about-us', '<p>Pusat Inovasi STMIK Sumedang sebagai salah satu organisasi non struktural memiliki peran melaksanaan pelayanan, pengembangan dan peningkatan kerja-kerja bidang teknologi informasi dan komunikasi. Berikut fungsi Pusat Inovasi STMIK Sumedang:<p><strong>Pelatihan dan sertifikasi;</strong></p><p>Sebagai bagian dari sarana penunjang pendidikan, Pusat Inovasi STMIK Sumedang juga menjalankan fungsi kepelatihan (workshop, training) dan sertifikasi keahlian-keahlian tertentu di bidang teknologi informasi dan komunikasi. Proses pelaksanaannya dapat melibatkan praktisi dan akademisi yang bergerak di bidangnya, dengan manyasar pada pelajar, mahasiswa, tenaga teknis teknis lainnya yang memerlukan sertifikasi bidang teknologi informasi dan komunikasi.</p><p><strong>Pelayanan teknologi informasi dan komunikasi (<em>ICT services</em>);</strong></p><p>Produk karya-cipta bidang teknologi informasi dan komunikasi benyak mendukung kerja sehari-hari, baik pada bidang pemerintahan, pendidikan, kesehatan, pertahanan dan aspek lainnya. Tren dan kesempatan tersebut menjadi peluang Pusat Inovasi STMIK Sumedang dalam memberikan pelayanan teknologi informasi. Pelayanan tersebut dapat ditunjang dengan berbagai fasilitas yang dimiliki, seperti laboratorium, sarana riset dan pengembangan (<em>research and development</em>), multimedia dan data center.</p><p><strong>Pengembangan teknologi informasi dan komunikasi (<em>ICT development</em>).</strong></p><p>Fasilitas lengkap dan memadai yang dimiliki oleh Pusat Inovasi STMIK Sumedang dinilai sangat bermanfaat bagi pengembangan dan peningkatan kajian dan penerapan teknologi informasi dan komunikasi. Pemanfaatan tersebut dapat dilaksanakan secara non profit, maupun berbasis profit (komersil) melalui mekanisme penyewaan atau penggunaan berbayar dengan peraturan/ ketentuan tertentu yang mengatur tertib penggunaan dan pemanfaatan fasilitas yang dimiliki untuk pengembangan dimaksud. Pengembangan tersebut dapat berupa kerja-kerja penelitian, karya-cipta, dan inovasi yang berhak paten (hak kekayaan intelektual), yang selain memberikan dampak profit, juga memberikan dampak perubahan kemudahan dan peningkatan peran teknologi informasi dalam mendukung kemudahan dan efektivitas berbagai aspek.</p><p><strong>Pelayanan <em>data center</em> atau <em>cloud computer</em>.</strong></p><p>Dewasa ini, penyimpanan data atau jamak disebut <em>cloud</em> (awan) menjadi kebutuhan banyak kalangan. Kebutuhan penyimpanan data berbasis virtual semakin tinggi penggunaannya mengingat pentingnya penyimpanan data secara online, yang dapat diakses dari mana pun dan kapan pun. Pelayanan data center dapat diperankan oleh Pusat Inovasi STMIK Sumedang, baik bagi sivitas akademika STMIK Sumedang maupun masyaraat luas.</p><p><strong><em>Technopreneurship.</em></strong></p><p>Technopreneurship merupakan sebuah pengembangan dan penggabungan antara konsep kewirausahaan (entrepreneurship) dan teknologi. Dalam mencapai tujuan pengembangan technopreneurship, sekurang-kurangnya melibatkan beberapa prinsip: a) <em>internalization</em>, sebuah usaha menemukan pola minat wirausaha; b) <em>paradigma alteration</em>, menunjukkan bahwa usaha pengembangan technopreneurship memiliki semangat perubahan yang memberikan dampak positif; c) <em>initiation</em>, sebagai semangat bahwa usaha yang dijalankan menjadi penggerak-inisiator; d) <em>competition</em>, merupakan pemahaman terhadap bentuk-bentuk persaingan yang sehat.</p><p>Realisasi fungsi technopreneurship dapat dilaksanakan dengan memberikan <em>support</em> atau dukungan pengembangan <em>start up</em> (usaha rintisan) di bidang digital yang selain dapat meningkatkan angka wirausaha di Indonesia secara umum, dan sivitas akademika STMIK Sumedang secara khusus. Support tersebut dapat diwujudkan dalam penyediaan kerjasama data center, kepelatihan, penelitian dan pengembangan usaha rintisan di bidang digital.</p><p> </p><p> </p></p>\n', '1589483298-banner-stmik.jpg', 0, 'pusat inovasi stmik sumedang', 'pusat inovasi stmik sumedang', 'Pusat Inovasi STMIK Sumedang sebagai salah satu organisasi non struktural memiliki peran melaksanaan pelayanan, pengembangan dan peningkatan kerja-kerja bidang teknologi informasi dan komunikasi. Berikut fungsi Pusat Inovasi STMIK Sumedang:', 1, '2019-09-12 23:33:57', '2020-05-18 09:40:35', NULL), (2, 1, 'Privacy Policy', 'privacy-policy', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed et urna eu risus ultrices sagittis. In tortor turpis, lobortis a tincidunt non, congue a lorem. Quisque imperdiet congue blandit. Cras quis tortor quis nunc porttitor pulvinar id id lacus. Curabitur dapibus augue orci. Praesent varius, dolor ut ultricies faucibus, ante nunc fringilla nulla, vitae egestas lorem erat eu libero. Praesent cursus tortor non gravida elementum. Praesent et arcu molestie, faucibus ligula sed, euismod urna. Praesent vitae orci metus. Nulla varius diam nec iaculis pulvinar. Sed mi enim, cursus nec urna a, interdum lobortis nisi.<br><br>\n\nMauris posuere sem at arcu commodo lobortis. Suspendisse sollicitudin dapibus congue. Etiam sit amet lacinia eros. In dictum lacinia tortor, nec mattis eros vulputate vel. Interdum et malesuada fames ac ante ipsum primis in faucibus. Donec posuere odio eget risus aliquam, quis ornare urna bibendum. Integer iaculis massa magna, et vehicula dui placerat a. Vestibulum ultricies mauris nunc, ut facilisis orci lobortis nec. Fusce cursus eget quam in elementum. Donec ipsum dui, semper ut commodo in, congue in urna.<br><br>\nimperdiet congue blandit. Cras quis tortor quis nunc porttitor pulvinar id id lacus. Curabitur dapibus augue orci. Praesent varius, dolor ut ultricies faucibus, ante nunc fringilla nulla, vitae egestas lorem erat eu libero. Praesent cursus tortor non gravida elementum. Praesent et arcu molestie, faucibus ligula sed, euismod urna. Praesent vitae orci metus. Nulla varius diam nec iaculis pulvinar. Sed mi enim, cursus nec urna a, interdum lobortis nisi.', NULL, 1, NULL, NULL, NULL, 1, '2019-09-12 23:33:57', '2019-09-12 23:33:57', NULL); -- -------------------------------------------------------- -- -- Table structure for table `password_histories` -- CREATE TABLE `password_histories` ( `id` int(10) UNSIGNED NOT NULL, `user_id` int(10) UNSIGNED NOT NULL, `password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `password_histories` -- INSERT INTO `password_histories` (`id`, `user_id`, `password`, `created_at`, `updated_at`) VALUES (1, 1, '$2y$10$SEt1jjhW7JCCY0KBMOrA2uki1Pk5gijlbPPZ2YC.pOxlLMUAt62bK', '2019-09-12 23:33:53', '2019-09-12 23:33:53'), (3, 3, '$2y$10$J9dS2xK3HS.NH5KMsE59qe2xoH04gm45sW.4fQGNT0GasEjjqhoum', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (6, 6, '$2y$10$/q3STcR.YEN70A.T9338WOPz3Khn8H0v4orlrepGQGBZSK2YQyVxa', '2020-05-14 11:42:44', '2020-05-14 11:42:44'), (7, 7, '$2y$10$93/bOZFySco2l/mcJEUY8.hR4evYSwBPZ7lUZoSNVGtI2xi9lS2.G', '2020-05-15 11:47:13', '2020-05-15 11:47:13'), (8, 6, '$2y$10$V8HuZRHJRx2Rqlpfzoup/OR6s.QYlA5vg.Y1qDjUxzBYpsrforYtO', '2020-05-15 12:18:35', '2020-05-15 12:18:35'), (9, 6, '$2y$10$dqp/wFGTWnrsDrHDgwu91.ubnIj86EtMO5MW.xzUSRiJWlel39eX.', '2020-05-15 12:19:49', '2020-05-15 12:19:49'), (10, 8, '$2y$10$Bk2xw/5HZ/1DLCehfdUvMODVJkhZVKXplGVQb.H0RCDaa1qdW9CcG', '2020-05-15 12:22:18', '2020-05-15 12:22:18'), (11, 9, '$2y$10$y5CGyzUiE1F8iXv1DZMu0epQX7vuAIHSCWcNpuVmVZo93HiGDpOce', '2020-05-15 12:24:37', '2020-05-15 12:24:37'), (12, 10, '$2y$10$lrD09EloSGaykxzOxNEDjusvbzSJqn0J2i3aajLif0NhWNJhtiQPe', '2020-05-15 12:31:28', '2020-05-15 12:31:28'), (13, 11, '$2y$10$946UIvpvEa8x9rMK/6hJ/epuPT9rnQyWW1Sbfl0vV955I3b9Iu2Xe', '2020-05-15 12:33:15', '2020-05-15 12:33:15'), (14, 6, '$2y$10$dg123d0AYPppmxa8T75jY.XxY2VVWZyUFEPgywHmR2INydID14MGq', '2020-05-15 12:45:22', '2020-05-15 12:45:22'), (15, 6, '$2y$10$XmUfAGgCQD0Wh8eigieBu.ECFW/H72NjB1AUASLIg2tKEhdgh0dHy', '2020-05-16 06:06:11', '2020-05-16 06:06:11'), (16, 6, '$2y$10$7R8MyP3JabFDyyjQafl4H.QhfFEvM6tKyW2aiIksdlBBEk3.VC2V6', '2020-05-16 06:07:15', '2020-05-16 06:07:15'), (17, 6, '$2y$10$p13PSHjaZvlDFTylyR10pOkktgjSRjvUUWd855Y1Nsy/iqH.qG79q', '2020-05-16 10:03:32', '2020-05-16 10:03:32'), (18, 6, '$2y$10$ZZSsJScWLFtszJI.E10eqe1kBalGPOBqvV2ekRLAnpHUIuhEo62bK', '2020-05-16 10:11:32', '2020-05-16 10:11:32'), (19, 6, '$2y$10$q.YG4v4vRu3dBn84.tSGdOudgTblenZldiNoc4VQoLTP7G2udTHvu', '2020-05-16 10:26:22', '2020-05-16 10:26:22'), (20, 12, '$2y$10$tpELgY2UqdwfbTkSPJlMHe0.EM3kNEtiszvzSpFKVswUeHR19Afuq', '2020-05-16 10:51:34', '2020-05-16 10:51:34'), (21, 6, '$2y$10$t9wqfOtBcetdUVm8reJaROY02Jg2P.HbJFqGhtmPjaSs4cYzgCaGK', '2020-05-16 11:15:14', '2020-05-16 11:15:14'), (22, 6, '$2y$10$WRMe4xVLWWx32c65L.AZs.UieEDbK0hLmxlhSeyJ3ZNvRYexdPKa.', '2020-05-16 11:18:09', '2020-05-16 11:18:09'), (23, 6, '$2y$10$3gAYqLNwvqaSqcbn7bMl/uYocpRJuy0CxN9TK6NoqwHGOfaQdxGbu', '2020-05-16 13:44:19', '2020-05-16 13:44:19'), (24, 7, '$2y$10$3xRjxybPG9qE3PRCf4NvK.y4MIxpLxJWE3uTHCuy0WD87kyJV56GS', '2020-05-16 13:45:14', '2020-05-16 13:45:14'), (25, 12, '$2y$10$d7gRZ/ytjhugPFozlH38su0G7vAj0qCenHSwNrtM2zBcI4Q37kvge', '2020-05-16 13:45:58', '2020-05-16 13:45:58'), (26, 6, '$2y$10$nc1faa8/yV9L4yZK5GpDDOUjjf602DqcBuLObCQVsluYB6xhG/yx2', '2020-05-16 13:49:05', '2020-05-16 13:49:05'), (27, 7, '$2y$10$vDIpqo7THZkmsVH7mgaHWOa2ZhuWqmkmXJwFmlixLbmaUvGAv3bz2', '2020-05-16 14:04:56', '2020-05-16 14:04:56'), (28, 13, '$2y$10$JlqwMdwEukj1ebzZwhIlY.oGA8L3OAJML9XaCjO1RmFn3NeD8NEVe', '2020-10-12 23:35:29', '2020-10-12 23:35:29'), (29, 14, '$2y$10$3ecxHGsba3MCSSxJxuIoA.rqr9wHn.sEfySaco2Vve46SNtH0C70a', '2021-06-13 05:55:47', '2021-06-13 05:55:47'), (30, 15, '$2y$10$T6AzLixx/FkIiA509BOy3es5vNcEnBcnGPOuc2vzMpA0QbNY2r9oi', '2021-07-07 20:06:55', '2021-07-07 20:06:55'), (31, 16, '$2y$10$CNoSpojigw2PkPj0Kuh9b.HK2GB6MkaAl0pIqY.ncbr6wx8DFF48O', '2021-08-25 00:24:54', '2021-08-25 00:24:54'), (32, 18, '$2y$10$SQIJkxzvWcncxJNDlwaUHenqMD9WZijz7Zvuexwpq0BE86elIuQ9q', '2021-09-23 09:47:59', '2021-09-23 09:47:59'), (33, 21, '$2y$10$mc.3m9LcyD1bmnefQK9E1.epJAfU/pNJy15HT0FuPqIlVxTvVNN.S', '2021-09-28 07:12:41', '2021-09-28 07:12:41'), (34, 22, '$2y$10$Trv1BNXsk3sGx5Ro/oqrW.CJE.14cQqN6xrAqCoZ0QM8OcS9PJvoK', '2021-09-28 07:37:32', '2021-09-28 07:37:32'), (35, 23, '$2y$10$GBUxBjlNfdoeahYK0yGqwO8QHPR0Uu3V3JKjQ7DH0P0XkyrvkR22e', '2021-10-12 05:23:55', '2021-10-12 05:23:55'), (36, 24, '$2y$10$ATuYfVxE8eZJt6Q01O1uQe2MBkuA9bJ02EzRerOoN3JihBpjzYbWG', '2022-01-16 04:08:08', '2022-01-16 04:08:08'), (37, 25, '$2y$10$3K6WoVMMlRLLdYqFsi.D5uSc1EFUg5XS9Sf4K1z4xcwM069D2Xray', '2022-02-17 21:39:51', '2022-02-17 21:39:51'), (38, 26, '$2y$10$tUyl8TJ7lynLwe0tga/Ld.D6ps3CJHqd3qB2NSDOPzYqycdArigRe', '2022-02-18 00:41:39', '2022-02-18 00:41:39'), (39, 27, '$2y$10$6qE2bTSheueqH5a4waHPqOJE7e4m7CzvxKiFxwVYpu4Gg70AjC9oC', '2022-03-22 19:49:28', '2022-03-22 19:49:28'); -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `password_resets` -- INSERT INTO `password_resets` (`email`, `token`, `created_at`) VALUES ('duart0@stmik-sumedang.ac.id', '$2y$10$l41yeFD00x/fAtpNQc3gkud6VIZR1ZyNe3IkHSNscBzHGWN2mvNjC', '2020-09-18 22:06:59'), ('yanyan@stmik-sumedang.ac.id', '$2y$10$.zcL8FcQH6V4KbE5P2aMLOMe5IhrpkzwB6qyEcy2JIqKTW82bP38a', '2021-03-09 02:52:20'); -- -------------------------------------------------------- -- -- Table structure for table `permissions` -- CREATE TABLE `permissions` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `guard_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `permissions` -- INSERT INTO `permissions` (`id`, `name`, `guard_name`, `created_at`, `updated_at`) VALUES (1, 'user_management_access', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (2, 'user_management_create', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (3, 'user_management_edit', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (4, 'user_management_view', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (5, 'user_management_delete', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (6, 'permission_access', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (7, 'permission_create', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (8, 'permission_edit', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (9, 'permission_view', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (10, 'permission_delete', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (11, 'role_access', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (12, 'role_create', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (13, 'role_edit', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (14, 'role_view', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (15, 'role_delete', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (16, 'user_access', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (17, 'user_create', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (18, 'user_edit', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (19, 'user_view', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (20, 'user_delete', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (21, 'course_access', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (22, 'course_create', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (23, 'course_edit', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (24, 'course_view', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (25, 'course_delete', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (26, 'lesson_access', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (27, 'lesson_create', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (28, 'lesson_edit', 'web', '2019-09-12 23:33:55', '2019-09-12 23:33:55'), (29, 'lesson_view', 'web', '2019-09-12 23:33:55', '2019-09-12 23:33:55'), (30, 'lesson_delete', 'web', '2019-09-12 23:33:55', '2019-09-12 23:33:55'), (31, 'question_access', 'web', '2019-09-12 23:33:55', '2019-09-12 23:33:55'), (32, 'question_create', 'web', '2019-09-12 23:33:55', '2019-09-12 23:33:55'), (33, 'question_edit', 'web', '2019-09-12 23:33:55', '2019-09-12 23:33:55'), (34, 'question_view', 'web', '2019-09-12 23:33:55', '2019-09-12 23:33:55'), (35, 'question_delete', 'web', '2019-09-12 23:33:55', '2019-09-12 23:33:55'), (36, 'questions_option_access', 'web', '2019-09-12 23:33:55', '2019-09-12 23:33:55'), (37, 'questions_option_create', 'web', '2019-09-12 23:33:55', '2019-09-12 23:33:55'), (38, 'questions_option_edit', 'web', '2019-09-12 23:33:55', '2019-09-12 23:33:55'), (39, 'questions_option_view', 'web', '2019-09-12 23:33:55', '2019-09-12 23:33:55'), (40, 'questions_option_delete', 'web', '2019-09-12 23:33:55', '2019-09-12 23:33:55'), (41, 'test_access', 'web', '2019-09-12 23:33:55', '2019-09-12 23:33:55'), (42, 'test_create', 'web', '2019-09-12 23:33:55', '2019-09-12 23:33:55'), (43, 'test_edit', 'web', '2019-09-12 23:33:55', '2019-09-12 23:33:55'), (44, 'test_view', 'web', '2019-09-12 23:33:55', '2019-09-12 23:33:55'), (45, 'test_delete', 'web', '2019-09-12 23:33:55', '2019-09-12 23:33:55'), (46, 'order_access', 'web', '2019-09-12 23:33:55', '2019-09-12 23:33:55'), (47, 'view backend', 'web', '2019-09-12 23:33:55', '2019-09-12 23:33:55'), (48, 'category_access', 'web', '2019-09-12 23:33:55', '2019-09-12 23:33:55'), (49, 'category_create', 'web', '2019-09-12 23:33:55', '2019-09-12 23:33:55'), (50, 'category_edit', 'web', '2019-09-12 23:33:55', '2019-09-12 23:33:55'), (51, 'category_view', 'web', '2019-09-12 23:33:55', '2019-09-12 23:33:55'), (52, 'category_delete', 'web', '2019-09-12 23:33:55', '2019-09-12 23:33:55'), (53, 'blog_access', 'web', '2019-09-12 23:33:55', '2019-09-12 23:33:55'), (54, 'blog_create', 'web', '2019-09-12 23:33:55', '2019-09-12 23:33:55'), (55, 'blog_edit', 'web', '2019-09-12 23:33:56', '2019-09-12 23:33:56'), (56, 'blog_view', 'web', '2019-09-12 23:33:56', '2019-09-12 23:33:56'), (57, 'blog_delete', 'web', '2019-09-12 23:33:56', '2019-09-12 23:33:56'), (58, 'reason_access', 'web', '2019-09-12 23:33:56', '2019-09-12 23:33:56'), (59, 'reason_create', 'web', '2019-09-12 23:33:56', '2019-09-12 23:33:56'), (60, 'reason_edit', 'web', '2019-09-12 23:33:56', '2019-09-12 23:33:56'), (61, 'reason_view', 'web', '2019-09-12 23:33:56', '2019-09-12 23:33:56'), (62, 'reason_delete', 'web', '2019-09-12 23:33:56', '2019-09-12 23:33:56'), (63, 'page_access', 'web', '2019-09-12 23:33:56', '2019-09-12 23:33:56'), (64, 'page_create', 'web', '2019-09-12 23:33:56', '2019-09-12 23:33:56'), (65, 'page_edit', 'web', '2019-09-12 23:33:56', '2019-09-12 23:33:56'), (66, 'page_view', 'web', '2019-09-12 23:33:56', '2019-09-12 23:33:56'), (67, 'page_delete', 'web', '2019-09-12 23:33:56', '2019-09-12 23:33:56'), (68, 'bundle_access', 'web', '2019-09-12 23:33:56', '2019-09-12 23:33:56'), (69, 'bundle_create', 'web', '2019-09-12 23:33:56', '2019-09-12 23:33:56'), (70, 'bundle_edit', 'web', '2019-09-12 23:33:56', '2019-09-12 23:33:56'), (71, 'bundle_view', 'web', '2019-09-12 23:33:56', '2019-09-12 23:33:56'), (72, 'bundle_delete', 'web', '2019-09-12 23:33:56', '2019-09-12 23:33:56'); -- -------------------------------------------------------- -- -- Table structure for table `questions` -- CREATE TABLE `questions` ( `id` int(10) UNSIGNED NOT NULL, `question` text COLLATE utf8mb4_unicode_ci NOT NULL, `question_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `score` int(11) DEFAULT NULL, `user_id` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `questions` -- INSERT INTO `questions` (`id`, `question`, `question_image`, `score`, `user_id`, `created_at`, `updated_at`, `deleted_at`) VALUES (501, 'fghfghfghfgh', '1589491021-1-ozqgznbyxjfblvgp5gqlyq.jpeg', 50, 1, '2020-05-14 14:17:01', '2020-05-14 14:17:01', NULL), (502, 'Which artisan command is used to remove the compiled class file.', '1589638829-laravel.jpg', 10, 6, '2020-05-16 07:20:29', '2020-05-16 07:20:29', NULL); -- -------------------------------------------------------- -- -- Table structure for table `questions_options` -- CREATE TABLE `questions_options` ( `id` int(10) UNSIGNED NOT NULL, `question_id` int(10) UNSIGNED DEFAULT NULL, `option_text` text COLLATE utf8mb4_unicode_ci NOT NULL, `explanation` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `correct` tinyint(4) DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `questions_options` -- INSERT INTO `questions_options` (`id`, `question_id`, `option_text`, `explanation`, `correct`, `created_at`, `updated_at`, `deleted_at`) VALUES (2001, 501, 'hfhfgh', 'fghfghf', 1, '2020-05-14 14:17:01', '2020-05-14 14:17:01', NULL), (2002, 501, 'fghfghfgh', 'fghfgh', 0, '2020-05-14 14:17:01', '2020-05-14 14:17:01', NULL), (2003, 501, 'fghfghfg', 'fghfgh', 0, '2020-05-14 14:17:01', '2020-05-14 14:17:01', NULL), (2004, 501, 'fghfhfhf', 'fghfghfgh', 0, '2020-05-14 14:17:01', '2020-05-14 14:17:01', NULL), (2005, 502, 'clear-compiled', 'Syntax:\r\nphp artisan clear-compiled', 1, '2020-05-16 07:20:29', '2020-05-16 07:20:29', NULL), (2006, 502, 'clear compiled', NULL, 0, '2020-05-16 07:20:29', '2020-05-16 07:22:07', NULL), (2007, 502, 'compiled:clear', NULL, 0, '2020-05-16 07:20:29', '2020-05-16 07:22:07', NULL), (2008, 502, 'compiled:clear', NULL, 0, '2020-05-16 07:20:29', '2020-05-16 07:22:07', NULL); -- -------------------------------------------------------- -- -- Table structure for table `question_test` -- CREATE TABLE `question_test` ( `question_id` int(10) UNSIGNED DEFAULT NULL, `test_id` int(10) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `question_test` -- INSERT INTO `question_test` (`question_id`, `test_id`) VALUES (502, 102); -- -------------------------------------------------------- -- -- Table structure for table `reasons` -- CREATE TABLE `reasons` ( `id` int(10) UNSIGNED NOT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `content` text COLLATE utf8mb4_unicode_ci NOT NULL, `icon` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` int(11) NOT NULL DEFAULT 1 COMMENT '0 - disabled, 1 - enabled', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `reviews` -- CREATE TABLE `reviews` ( `id` int(10) UNSIGNED NOT NULL, `user_id` int(10) UNSIGNED NOT NULL, `reviewable_id` int(11) NOT NULL, `reviewable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `rating` int(11) DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `reviews` -- INSERT INTO `reviews` (`id`, `user_id`, `reviewable_id`, `reviewable_type`, `rating`, `content`, `created_at`, `updated_at`) VALUES (3, 3, 54, 'App\\Models\\Course', 5, 'nice!', '2021-03-09 02:59:17', '2021-03-09 02:59:17'); -- -------------------------------------------------------- -- -- Table structure for table `roles` -- CREATE TABLE `roles` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `guard_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `roles` -- INSERT INTO `roles` (`id`, `name`, `guard_name`, `created_at`, `updated_at`) VALUES (1, 'administrator', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (2, 'teacher', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (3, 'student', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'), (4, 'user', 'web', '2019-09-12 23:33:54', '2019-09-12 23:33:54'); -- -------------------------------------------------------- -- -- Table structure for table `role_has_permissions` -- CREATE TABLE `role_has_permissions` ( `permission_id` int(10) UNSIGNED NOT NULL, `role_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `role_has_permissions` -- INSERT INTO `role_has_permissions` (`permission_id`, `role_id`) VALUES (1, 1), (1, 2), (1, 3), (2, 1), (3, 1), (4, 1), (5, 1), (6, 1), (7, 1), (8, 1), (9, 1), (10, 1), (11, 1), (12, 1), (13, 1), (14, 1), (15, 1), (16, 1), (17, 1), (18, 1), (19, 1), (20, 1), (21, 1), (21, 2), (21, 3), (22, 1), (22, 2), (23, 1), (23, 2), (24, 1), (24, 2), (24, 3), (25, 1), (25, 2), (26, 1), (26, 2), (26, 3), (27, 1), (27, 2), (28, 1), (28, 2), (29, 1), (29, 2), (29, 3), (30, 1), (30, 2), (31, 1), (31, 2), (31, 3), (32, 1), (32, 2), (33, 1), (33, 2), (34, 1), (34, 2), (34, 3), (35, 1), (35, 2), (36, 1), (36, 2), (36, 3), (37, 1), (37, 2), (37, 3), (38, 1), (38, 2), (38, 3), (39, 1), (39, 2), (39, 3), (40, 1), (40, 2), (40, 3), (41, 1), (41, 2), (41, 3), (42, 1), (42, 2), (43, 1), (43, 2), (44, 1), (44, 2), (44, 3), (45, 1), (45, 2), (46, 1), (47, 1), (47, 2), (47, 3), (48, 1), (48, 2), (49, 1), (49, 2), (50, 1), (51, 1), (51, 2), (52, 1), (53, 1), (54, 1), (55, 1), (56, 1), (57, 1), (58, 1), (59, 1), (60, 1), (61, 1), (62, 1), (63, 1), (64, 1), (65, 1), (66, 1), (67, 1), (68, 1), (68, 2), (68, 3), (69, 1), (69, 2), (70, 1), (70, 2), (71, 1), (71, 2), (71, 3), (72, 1), (72, 2); -- -------------------------------------------------------- -- -- Table structure for table `sessions` -- CREATE TABLE `sessions` ( `id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` int(10) UNSIGNED DEFAULT NULL, `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_agent` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payload` text COLLATE utf8mb4_unicode_ci NOT NULL, `last_activity` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `sliders` -- CREATE TABLE `sliders` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `content` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `bg_image` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `overlay` int(11) DEFAULT 0, `sequence` int(11) NOT NULL, `status` int(11) NOT NULL DEFAULT 1 COMMENT '1 - enabled, 0 - disabled', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `sliders` -- INSERT INTO `sliders` (`id`, `name`, `content`, `bg_image`, `overlay`, `sequence`, `status`, `created_at`, `updated_at`) VALUES (3, 'Slide 1', '{\"hero_text\":\"berpengeTAHUan Course\",\"sub_text\":\"Pusat Inovasi dan Inkubator Bisnis\",\"buttons\":[{\"label\":\"View courses\",\"link\":\"http://dev.stmiksumedang.ac.id/courses\"}]}', '1589821195-hero-0.jpeg', 1, 1, 1, '2019-09-12 23:33:58', '2020-05-19 05:27:07'); -- -------------------------------------------------------- -- -- Table structure for table `social_accounts` -- CREATE TABLE `social_accounts` ( `id` int(10) UNSIGNED NOT NULL, `user_id` int(10) UNSIGNED NOT NULL, `provider` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL, `provider_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `avatar` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `social_accounts` -- INSERT INTO `social_accounts` (`id`, `user_id`, `provider`, `provider_id`, `token`, `avatar`, `created_at`, `updated_at`) VALUES (1, 22, 'google', '100402026810948062584', 'ya29.a0ARrdaM8_TKtLSaH2cY1rcJG5VvE1kLSH08b8Z03bZcT5k_hdKbke996qYTpzubu2gizmwOZbOfm1TuHLDxovjC1LgSuNF_8Y0WLSNlfMH-QsHGW2Mi_6JvXaN9RB216HxSQPCagKcmtXSDmpfHethGiAIzeKqMmGESoN-g4wUw', 'https://lh3.googleusercontent.com/a/AATXAJwM_ODl02JmOnw5f8KPYoPzycBww5XTO2tlOwcd=s96-c', '2021-09-28 07:37:32', '2021-09-29 07:05:45'), (2, 25, 'google', '109294073292398454669', 'ya29.A0ARrdaM80VI2F-vVKZNkcDiKKzyeLwt-VNaYFZMsFOhsk7KH_MJJP9FrpzMzjl3JgAtfAkl91BAJxr42TiF_knldIdZohX5d0Jum8tLXavAX92O52viR4PMX3YsT75M99B8Ah3FL2d2es_PI5Jnv-imx0hWQs', 'https://lh3.googleusercontent.com/a-/AOh14GhhZVimJ0V1t0rgHgvs1s_2mFAS09H1dBw5Mug3Iw=s96-c', '2022-02-17 21:39:51', '2022-02-17 21:39:51'), (3, 27, 'google', '117268015327633134702', 'ya29.A0ARrdaM81UX5s-sfhYL4Sh9Ka3DxGAwCbYKT3UieaqhpIwhGWsMqp-1QxAFlQbpHkPNk_V_khogikAXgh7IEKlMU4utDgvjgvMqdhT7l0XKRyrP4eSVjUf85Ji7C_eZZ8PGS5DfCnZi6sy9qrnt7Mxta8j-AE', 'https://lh3.googleusercontent.com/a/AATXAJyA95O4r27criV0T7tPbSBSYj0UyS33w3eubnOs=s96-c', '2022-03-22 19:49:28', '2022-03-22 19:49:28'); -- -------------------------------------------------------- -- -- Table structure for table `sponsors` -- CREATE TABLE `sponsors` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `logo` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `link` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` int(11) NOT NULL DEFAULT 1 COMMENT '0 - disabled, 1 - enabled', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `sponsors` -- INSERT INTO `sponsors` (`id`, `name`, `logo`, `link`, `status`, `created_at`, `updated_at`) VALUES (1, 'Dummy 1', '1589572075-google-transparent-logo-2.png', '#', 1, NULL, '2020-05-15 12:47:55'), (7, 'dumy2', '1589572536-sponsor.png', '#', 1, '2020-05-15 12:55:36', '2020-05-15 12:55:36'), (8, 'dumy3', '1589572844-aptikom2.png', '#', 1, '2020-05-15 12:57:31', '2020-05-15 13:00:44'); -- -------------------------------------------------------- -- -- Table structure for table `taggables` -- CREATE TABLE `taggables` ( `tag_id` int(11) NOT NULL, `taggable_id` int(11) NOT NULL, `taggable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `taggables` -- INSERT INTO `taggables` (`tag_id`, `taggable_id`, `taggable_type`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 1, 'App\\Models\\Blog', NULL, NULL, NULL), (2, 1, 'App\\Models\\Blog', NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `tags` -- CREATE TABLE `tags` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `tags` -- INSERT INTO `tags` (`id`, `name`, `slug`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 'Current Issues', 'current-issues', '2020-05-15 11:22:52', '2020-05-15 11:22:52', NULL), (2, ' Learning', 'learning', '2020-05-15 11:22:52', '2020-05-15 11:22:52', NULL); -- -------------------------------------------------------- -- -- Table structure for table `taxes` -- CREATE TABLE `taxes` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `rate` double(8,2) NOT NULL, `status` tinyint(4) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `testimonials` -- CREATE TABLE `testimonials` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `occupation` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci NOT NULL, `status` int(11) NOT NULL DEFAULT 1 COMMENT '0 - disabled, 1 - enabled', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `testimonials` -- INSERT INTO `testimonials` (`id`, `name`, `occupation`, `content`, `status`, `created_at`, `updated_at`) VALUES (6, 'Lisette Goyette', 'Programmers', '\"Penjelasan setiap materi step by step mudah ditangkap ilmunya, enak didengar.\"', 1, '2019-09-12 23:39:00', '2020-05-15 13:37:28'); -- -------------------------------------------------------- -- -- Table structure for table `tests` -- CREATE TABLE `tests` ( `id` int(10) UNSIGNED NOT NULL, `course_id` int(10) UNSIGNED DEFAULT NULL, `lesson_id` int(10) UNSIGNED DEFAULT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `published` tinyint(4) DEFAULT 0, `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `tests` -- INSERT INTO `tests` (`id`, `course_id`, `lesson_id`, `title`, `description`, `published`, `slug`, `created_at`, `updated_at`, `deleted_at`) VALUES (102, 54, NULL, 'Laravel Quiz Basics Level', 'This test allows you to evaluate your knowledge of Laravel (versions 5.6 to 6.0). Topics: Laravel Architecture, Standardization, Controllers, Eloquent, Routing, Templating with Blade, Data Validation, Dependency Injection, Security, Tests, Miscellaneous.', 1, 'laravel-quiz-basics-level', '2020-05-16 07:08:50', '2020-05-16 07:08:50', NULL); -- -------------------------------------------------------- -- -- Table structure for table `tests_results` -- CREATE TABLE `tests_results` ( `id` int(10) UNSIGNED NOT NULL, `test_id` int(10) UNSIGNED DEFAULT NULL, `user_id` int(10) UNSIGNED DEFAULT NULL, `test_result` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `tests_results` -- INSERT INTO `tests_results` (`id`, `test_id`, `user_id`, `test_result`, `created_at`, `updated_at`) VALUES (2, 102, 3, 10, '2020-08-12 09:29:32', '2020-08-12 09:29:32'), (3, 102, 13, 10, '2020-10-12 23:36:48', '2020-10-12 23:36:48'); -- -------------------------------------------------------- -- -- Table structure for table `tests_results_answers` -- CREATE TABLE `tests_results_answers` ( `id` int(10) UNSIGNED NOT NULL, `tests_result_id` int(10) UNSIGNED DEFAULT NULL, `question_id` int(10) UNSIGNED DEFAULT NULL, `option_id` int(10) UNSIGNED DEFAULT NULL, `correct` tinyint(4) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `tests_results_answers` -- INSERT INTO `tests_results_answers` (`id`, `tests_result_id`, `question_id`, `option_id`, `correct`, `created_at`, `updated_at`) VALUES (2, 2, 502, 2005, 1, '2020-08-12 09:29:32', '2020-08-12 09:29:32'), (3, 3, 502, 2005, 1, '2020-10-12 23:36:48', '2020-10-12 23:36:48'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` int(10) UNSIGNED NOT NULL, `uuid` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `first_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `last_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `dob` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `gender` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pincode` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `avatar_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'gravatar', `avatar_location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password_changed_at` timestamp NULL DEFAULT NULL, `active` tinyint(3) UNSIGNED NOT NULL DEFAULT 1, `confirmation_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `confirmed` tinyint(1) NOT NULL DEFAULT 0, `timezone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `last_login_at` timestamp NULL DEFAULT NULL, `last_login_ip` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `uuid`, `first_name`, `last_name`, `email`, `dob`, `phone`, `gender`, `address`, `city`, `pincode`, `state`, `country`, `avatar_type`, `avatar_location`, `password`, `password_changed_at`, `active`, `confirmation_code`, `confirmed`, `timezone`, `last_login_at`, `last_login_ip`, `remember_token`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 'a90f7ced-f30b-43bc-a118-40aa9624ffd7', 'Admin', 'Istrator', 'admin@lms.com', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'gravatar', NULL, '$2y$10$SEt1jjhW7JCCY0KBMOrA2uki1Pk5gijlbPPZ2YC.pOxlLMUAt62bK', NULL, 1, 'abfa07596ad7390a3e45bd888403a35e', 1, NULL, NULL, NULL, 'esAnRDZ1enEP2Lnp0xF5g5OBXdAzbIDf8AbxWc7vqMxEFk5VoHl20HSKa3wV', '2019-09-12 23:33:53', '2020-05-16 10:16:27', NULL), (3, '9e2b6f22-5679-43d1-9417-1d39cba70486', 'Student', 'User', 'student@stmik.com', NULL, '00000', NULL, NULL, NULL, NULL, NULL, NULL, 'gravatar', NULL, '$2y$10$J9dS2xK3HS.NH5KMsE59qe2xoH04gm45sW.4fQGNT0GasEjjqhoum', NULL, 1, 'fbc8e3622597993e1efa22210dc321b9', 1, NULL, NULL, NULL, 'nmTkVun02sV32wz73nMMHWPRokmoQN9CiglWTpsIWYYxRZ5CPZTKfeOPa42K', '2020-05-15 23:33:54', '2020-05-16 07:34:27', NULL), (6, 'a51c6104-88c1-41a4-8bad-89f0953d628f', 'Yanyan', 'Sofiyan', 'yanyan@stmik-sumedang.ac.id', NULL, '085696371900', NULL, NULL, NULL, NULL, NULL, NULL, 'storage', 'avatars/18gz3Qr8rMmO5JayutdPsG483z8ChVlO9Uu5Agrl.jpeg', '$2y$10$nc1faa8/yV9L4yZK5GpDDOUjjf602DqcBuLObCQVsluYB6xhG/yx2', NULL, 1, NULL, 1, NULL, NULL, NULL, '8ckzqUASNha4ikWqGrjIetdge0506UUvOkhFjmK49VIyND8hVGJYMJBya8OE', '2020-05-14 11:42:44', '2020-05-16 13:49:05', NULL), (7, '1cbb2adb-f541-4a96-9e09-f36ae78fd8d8', 'Dani', 'Indra Junaedi', 'dani@stmik-sumedang.ac.id', NULL, '0000', NULL, NULL, NULL, NULL, NULL, NULL, 'storage', 'avatars/V8wXx5q5D9GlxEaRLdwPqB12FWo4jTH8qXqi4p7B.jpeg', '$2y$10$vDIpqo7THZkmsVH7mgaHWOa2ZhuWqmkmXJwFmlixLbmaUvGAv3bz2', NULL, 1, NULL, 1, NULL, NULL, NULL, 'CC2awdm5ok6AwEUaGkY724nlvYA4G5h7EMJinIERfUD0XktmM4Suf55bKaEL', '2020-05-15 11:47:13', '2020-05-16 14:04:56', NULL), (8, '4fee02a5-2ea0-4434-83e7-fe4451ba7356', 'Irfan', 'Fadil', 'fadilirfan@stmik-sumedang.ac.id', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'storage', 'avatars/dEBvV6A8JcUOeZWmLYXMjrLXeUP76OYFKAhiphqF.jpeg', '$2y$10$Bk2xw/5HZ/1DLCehfdUvMODVJkhZVKXplGVQb.H0RCDaa1qdW9CcG', NULL, 1, NULL, 1, NULL, NULL, NULL, 'VtmYROmtewGP8ICRggXmT0pWNMQJo1ZM1qhVT4FgA9owqteWAJlFSPoUNm3M', '2020-05-15 12:22:18', '2020-05-15 12:22:18', NULL), (9, 'e76e57df-4e67-43c0-a5c7-4fbd724ab8f1', 'Esa', 'Firmansyah', 'esa@stmik-sumedang.ac.id', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'storage', 'avatars/AyGzoI30WkRheWqKISxCvY7h6KYs8Wad95hMG9qn.jpeg', '$2y$10$y5CGyzUiE1F8iXv1DZMu0epQX7vuAIHSCWcNpuVmVZo93HiGDpOce', NULL, 1, NULL, 1, NULL, NULL, NULL, 'iVotQAGbdYTuh5tv0YZRA0KhVPXpmeRkso22KHZNvNwWDKemmN2SsWk9JjRV', '2020-05-15 12:24:37', '2020-05-15 12:24:37', NULL), (10, '58c40e97-e4f0-4f16-b5bc-53be287b1ba7', 'Dwi', 'Yuniarto', 'duart0@stmik-sumedang.ac.id', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'storage', 'avatars/Qz4MKLMz3ib2c7eIiPBQEezt49ZsSbqCujG52zkA.jpeg', '$2y$10$lrD09EloSGaykxzOxNEDjusvbzSJqn0J2i3aajLif0NhWNJhtiQPe', NULL, 1, NULL, 1, NULL, NULL, NULL, 'iskyrEao4zZXEhDHxZjn79z71hPRxhwPsZgUJf0jsN0WzZ1IEFEvFmR05SJ8', '2020-05-15 12:31:28', '2020-05-15 12:31:28', NULL), (11, 'e2947cbc-64b7-430c-9a2c-98be3860d7af', 'Muhammad Agreindra', 'Helmiawan', 'agreindra@stmik-sumedang.ac.id', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'storage', 'avatars/uptA0OGoT7o11TGN7r4Pz2iQJ7loBrqqFSXySXOn.jpeg', '$2y$10$946UIvpvEa8x9rMK/6hJ/epuPT9rnQyWW1Sbfl0vV955I3b9Iu2Xe', NULL, 1, NULL, 1, NULL, NULL, NULL, 'lfMGeGLimj4IBSPFUCG5XJm4Hd6bzbRd3Uhbtvhr0qvin9t6Unk0KX5kooO6', '2020-05-15 12:33:15', '2020-05-15 12:33:15', NULL), (12, 'a98c482e-a430-4868-8cf3-226df06b9bf3', 'Dody', 'Herdiana', 'dody@stmik-sumedang.ac.id', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'storage', 'avatars/s9KrOQRqOZfEetLtaFbDVYAacU8UvyJf09sNBwPX.jpeg', '$2y$10$d7gRZ/ytjhugPFozlH38su0G7vAj0qCenHSwNrtM2zBcI4Q37kvge', NULL, 1, NULL, 1, NULL, NULL, NULL, NULL, '2020-05-16 10:51:34', '2020-05-16 13:45:58', NULL), (13, 'ee768d1e-4d25-4e08-8496-9f3ab7a238a1', 'coba', 'coba', 'yanyansofiyan@gmail.com', NULL, '085696371900', NULL, NULL, NULL, NULL, NULL, NULL, 'gravatar', NULL, '$2y$10$JlqwMdwEukj1ebzZwhIlY.oGA8L3OAJML9XaCjO1RmFn3NeD8NEVe', NULL, 1, NULL, 1, NULL, NULL, NULL, 'hmwR2E0bTSmutAg7FOBNfSWIn2v0fLmjhWAVKBJXqKWJjvQEfABLhwezHVbG', '2020-10-12 23:35:29', '2020-10-12 23:35:29', NULL), (14, 'e36d37d2-41c5-4aeb-bae5-f65672d8aa63', 'Annisa', 'Alfi', 'a2.1700062@mhs.stmik-sumedang.com', NULL, '0895372077403', NULL, NULL, NULL, NULL, NULL, NULL, 'gravatar', NULL, '$2y$10$3ecxHGsba3MCSSxJxuIoA.rqr9wHn.sEfySaco2Vve46SNtH0C70a', NULL, 1, NULL, 1, NULL, NULL, NULL, NULL, '2021-06-13 05:55:47', '2021-06-13 05:55:47', NULL), (15, 'dfbe1f8b-7811-48c5-8ac4-02e035843c32', 'Riki', 'Gunawan', 'rikigunawan698@gmail.com', NULL, '081387789689', NULL, NULL, NULL, NULL, NULL, NULL, 'gravatar', NULL, '$2y$10$T6AzLixx/FkIiA509BOy3es5vNcEnBcnGPOuc2vzMpA0QbNY2r9oi', NULL, 1, NULL, 1, NULL, NULL, NULL, '9n7ePYrSqUAipQ4Kc7EwYPG9gbhS0TGIn9ZHB8QACvjbV7nU0jWsgEr8SJLT', '2021-07-07 20:06:55', '2021-07-07 20:06:55', NULL), (16, '7c7bb3fb-7fa2-4328-8cfa-03c0eb583e62', 'Combet', '618462836283', 'mr.combetohct@gmail.com', NULL, '081366763639', NULL, NULL, 'Admin', NULL, NULL, NULL, 'storage', 'avatars/vfgc8rXRQ8g63jD6oprgMiADyuIGIYj3lgN6bTJo.jpeg', '$2y$10$CNoSpojigw2PkPj0Kuh9b.HK2GB6MkaAl0pIqY.ncbr6wx8DFF48O', NULL, 1, NULL, 1, NULL, NULL, NULL, NULL, '2021-08-25 00:24:54', '2021-11-06 04:45:41', NULL), (18, 'f74045e6-36c9-4a25-96e2-a066cb5adb2c', 'IIP', 'SUDRAJAT', 'a22100061@mhs.stmik-sumedang.ac.id', NULL, '085723977288', NULL, NULL, NULL, NULL, NULL, NULL, 'gravatar', NULL, '$2y$10$SQIJkxzvWcncxJNDlwaUHenqMD9WZijz7Zvuexwpq0BE86elIuQ9q', NULL, 1, NULL, 1, NULL, NULL, NULL, NULL, '2021-09-23 09:47:59', '2021-09-23 09:47:59', NULL), (21, '0a2ae095-9df8-4aa7-86e1-534adb7b4754', 'hasirama', 'senju', 'aninomus.ani@gmail.com', NULL, '085696371900', NULL, NULL, 'Bandung', NULL, NULL, NULL, 'gravatar', NULL, '$2y$10$mc.3m9LcyD1bmnefQK9E1.epJAfU/pNJy15HT0FuPqIlVxTvVNN.S', NULL, 1, NULL, 1, NULL, NULL, NULL, 'GNWU96hxdDV0NeJSpX16mtD7CJdPhmpcQx8UelRxOs4IwGJaURXFIC7OoekN', '2021-09-28 07:12:41', '2021-09-28 07:12:41', NULL), (22, 'd4979a80-dbec-4249-8d43-19c0680fcba4', 'jhon', 'doe', 'doe202687@gmail.com', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'google', NULL, '$2y$10$Trv1BNXsk3sGx5Ro/oqrW.CJE.14cQqN6xrAqCoZ0QM8OcS9PJvoK', NULL, 1, NULL, 1, 'Asia/Jakarta', '2021-09-29 07:05:45', '125.164.16.163', '6LffJdWuYLwrYVIAqSqKpJY2Ehm61iVE0KMccm7uqc1rQjJiVuScNbIdbjad', '2021-09-28 07:37:32', '2021-09-29 07:05:46', NULL), (23, 'ff698d7c-6f57-4a88-808b-9a1c568107d9', 'Muhamad Luthfi', 'Assidiq', 'a2.2000066@mhs.stmik-sumedang.ac.id', NULL, '085156464016', NULL, NULL, 'Sumedang', NULL, NULL, NULL, 'gravatar', NULL, '$2y$10$GBUxBjlNfdoeahYK0yGqwO8QHPR0Uu3V3JKjQ7DH0P0XkyrvkR22e', NULL, 1, NULL, 1, NULL, NULL, NULL, NULL, '2021-10-12 05:23:55', '2021-10-23 09:54:11', NULL), (24, '83b148ae-5f7e-41f6-a354-12987ada0ff4', 'Combet', 'Ohct', 'combetohct@yahoo.com', NULL, '01912345678', NULL, NULL, 'Washington', NULL, NULL, NULL, 'storage', 'avatars/rB92BKREsrKu6LJEUcjcuu6AYZGQe3BLN2TDyZII.jpeg', '$2y$10$ATuYfVxE8eZJt6Q01O1uQe2MBkuA9bJ02EzRerOoN3JihBpjzYbWG', NULL, 1, NULL, 1, NULL, NULL, NULL, NULL, '2022-01-16 04:08:08', '2022-01-16 04:10:24', NULL), (25, 'd621bb77-6d6d-4f7b-b62e-7eb48a80b12e', 'yy', 'sofiyan', 'yanyansofiyan89@gmail.com', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'google', NULL, '$2y$10$3K6WoVMMlRLLdYqFsi.D5uSc1EFUg5XS9Sf4K1z4xcwM069D2Xray', NULL, 1, NULL, 1, 'Asia/Jakarta', '2022-02-17 21:39:51', '125.164.16.93', 'Xg4PTXh3d7ObCJclKQfFjblr9D1SLdGfYFSsdPWpFJu6dCc8DrKh4280a5lP', '2022-02-17 21:39:51', '2022-02-17 21:39:51', NULL), (26, 'b18f1126-8bbb-41f1-885c-7b2c7d9c40be', 'Dani', 'BKDSDM', 'akudanisetiawan@gmail.com', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'gravatar', NULL, '$2y$10$tUyl8TJ7lynLwe0tga/Ld.D6ps3CJHqd3qB2NSDOPzYqycdArigRe', NULL, 1, '488e65d5d36faf34aecee5f49c61a70c', 1, NULL, NULL, NULL, NULL, '2022-02-18 00:41:39', '2022-02-18 00:41:39', NULL), (27, 'fbeccf0a-2707-4d1d-9370-2b1453b0cccd', 'Rangga', 'Meinandi', 'a2.1900141@mhs.stmik-sumedang.ac.id', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'google', NULL, '$2y$10$6qE2bTSheueqH5a4waHPqOJE7e4m7CzvxKiFxwVYpu4Gg70AjC9oC', NULL, 1, NULL, 1, 'Asia/Jakarta', '2022-03-22 19:49:28', '118.96.234.126', 'roRQ6mN8dstpeTdwoYWQHdajHFGIWnz2176WEpVeKkUmZm4RguaJ0djq9dBI', '2022-03-22 19:49:28', '2022-03-22 19:49:29', NULL); -- -------------------------------------------------------- -- -- Table structure for table `video_progresses` -- CREATE TABLE `video_progresses` ( `id` int(10) UNSIGNED NOT NULL, `media_id` int(10) UNSIGNED NOT NULL, `user_id` int(10) UNSIGNED NOT NULL, `duration` double(8,2) NOT NULL, `progress` double(8,2) NOT NULL, `complete` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0.Pending 1.Complete', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `video_progresses` -- INSERT INTO `video_progresses` (`id`, `media_id`, `user_id`, `duration`, `progress`, `complete`, `created_at`, `updated_at`) VALUES (2, 9, 3, 309.00, 0.00, 0, '2020-05-16 07:39:41', '2020-06-18 00:43:26'), (3, 13, 3, 309.00, 302.00, 0, '2020-05-16 07:41:31', '2020-05-16 07:42:31'), (4, 12, 3, 309.00, 0.00, 0, '2020-06-18 00:44:26', '2020-06-18 00:44:26'); -- -- Indexes for dumped tables -- -- -- Indexes for table `admin_menus` -- ALTER TABLE `admin_menus` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_menu_items` -- ALTER TABLE `admin_menu_items` ADD PRIMARY KEY (`id`), ADD KEY `admin_menu_items_menu_foreign` (`menu`); -- -- Indexes for table `blogs` -- ALTER TABLE `blogs` ADD PRIMARY KEY (`id`), ADD KEY `blogs_category_id_foreign` (`category_id`); -- -- Indexes for table `blog_comments` -- ALTER TABLE `blog_comments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `bundles` -- ALTER TABLE `bundles` ADD PRIMARY KEY (`id`), ADD KEY `bundles_user_id_foreign` (`user_id`), ADD KEY `bundles_deleted_at_index` (`deleted_at`); -- -- Indexes for table `bundle_courses` -- ALTER TABLE `bundle_courses` ADD KEY `bundle_courses_bundle_id_foreign` (`bundle_id`), ADD KEY `bundle_courses_course_id_foreign` (`course_id`); -- -- Indexes for table `bundle_student` -- ALTER TABLE `bundle_student` ADD KEY `bundle_student_bundle_id_foreign` (`bundle_id`), ADD KEY `bundle_student_user_id_foreign` (`user_id`); -- -- Indexes for table `cache` -- ALTER TABLE `cache` ADD UNIQUE KEY `cache_key_unique` (`key`); -- -- Indexes for table `cart_storage` -- ALTER TABLE `cart_storage` ADD PRIMARY KEY (`id`), ADD KEY `cart_storage_id_index` (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `certificates` -- ALTER TABLE `certificates` ADD PRIMARY KEY (`id`), ADD KEY `certificates_user_id_foreign` (`user_id`), ADD KEY `certificates_course_id_foreign` (`course_id`); -- -- Indexes for table `chapter_students` -- ALTER TABLE `chapter_students` ADD PRIMARY KEY (`id`), ADD KEY `chapter_students_model_type_model_id_index` (`model_type`,`model_id`), ADD KEY `chapter_students_user_id_foreign` (`user_id`), ADD KEY `chapter_students_course_id_foreign` (`course_id`); -- -- Indexes for table `chatter_categories` -- ALTER TABLE `chatter_categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chatter_discussion` -- ALTER TABLE `chatter_discussion` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `chatter_discussion_slug_unique` (`slug`), ADD KEY `chatter_discussion_chatter_category_id_foreign` (`chatter_category_id`), ADD KEY `chatter_discussion_user_id_foreign` (`user_id`); -- -- Indexes for table `chatter_post` -- ALTER TABLE `chatter_post` ADD PRIMARY KEY (`id`), ADD KEY `chatter_post_chatter_discussion_id_foreign` (`chatter_discussion_id`), ADD KEY `chatter_post_user_id_foreign` (`user_id`); -- -- Indexes for table `chatter_user_discussion` -- ALTER TABLE `chatter_user_discussion` ADD PRIMARY KEY (`user_id`,`discussion_id`), ADD KEY `chatter_user_discussion_user_id_index` (`user_id`), ADD KEY `chatter_user_discussion_discussion_id_index` (`discussion_id`); -- -- Indexes for table `configs` -- ALTER TABLE `configs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `contacts` -- ALTER TABLE `contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `coupons` -- ALTER TABLE `coupons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `courses` -- ALTER TABLE `courses` ADD PRIMARY KEY (`id`), ADD KEY `courses_deleted_at_index` (`deleted_at`), ADD KEY `courses_category_id_foreign` (`category_id`); -- -- Indexes for table `course_student` -- ALTER TABLE `course_student` ADD KEY `course_student_course_id_foreign` (`course_id`), ADD KEY `course_student_user_id_foreign` (`user_id`); -- -- Indexes for table `course_timeline` -- ALTER TABLE `course_timeline` ADD PRIMARY KEY (`id`), ADD KEY `course_timeline_model_type_model_id_index` (`model_type`,`model_id`); -- -- Indexes for table `course_user` -- ALTER TABLE `course_user` ADD KEY `fk_p_54418_54417_user_cou_596eece522b73` (`course_id`), ADD KEY `fk_p_54417_54418_course_u_596eece522bee` (`user_id`); -- -- Indexes for table `faqs` -- ALTER TABLE `faqs` ADD PRIMARY KEY (`id`), ADD KEY `faqs_category_id_foreign` (`category_id`); -- -- Indexes for table `invoices` -- ALTER TABLE `invoices` ADD PRIMARY KEY (`id`); -- -- Indexes for table `jobs` -- ALTER TABLE `jobs` ADD PRIMARY KEY (`id`), ADD KEY `jobs_queue_index` (`queue`); -- -- Indexes for table `lessons` -- ALTER TABLE `lessons` ADD PRIMARY KEY (`id`), ADD KEY `54419_596eedbb6686e` (`course_id`), ADD KEY `lessons_deleted_at_index` (`deleted_at`); -- -- Indexes for table `locales` -- ALTER TABLE `locales` ADD PRIMARY KEY (`id`); -- -- Indexes for table `ltm_translations` -- ALTER TABLE `ltm_translations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `media` -- ALTER TABLE `media` ADD PRIMARY KEY (`id`), ADD KEY `media_model_type_model_id_index` (`model_type`,`model_id`); -- -- Indexes for table `messages` -- ALTER TABLE `messages` ADD PRIMARY KEY (`id`), ADD KEY `messages_sender_id_foreign` (`sender_id`), ADD KEY `messages_thread_id_foreign` (`thread_id`); -- -- Indexes for table `message_threads` -- ALTER TABLE `message_threads` ADD PRIMARY KEY (`id`); -- -- Indexes for table `message_thread_participants` -- ALTER TABLE `message_thread_participants` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `message_thread_participants_thread_id_user_id_unique` (`thread_id`,`user_id`), ADD KEY `message_thread_participants_user_id_foreign` (`user_id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `model_has_permissions` -- ALTER TABLE `model_has_permissions` ADD PRIMARY KEY (`permission_id`,`model_id`,`model_type`), ADD KEY `model_has_permissions_model_type_model_id_index` (`model_type`,`model_id`); -- -- Indexes for table `model_has_roles` -- ALTER TABLE `model_has_roles` ADD PRIMARY KEY (`role_id`,`model_id`,`model_type`), ADD KEY `model_has_roles_model_type_model_id_index` (`model_type`,`model_id`); -- -- Indexes for table `oauth_access_tokens` -- ALTER TABLE `oauth_access_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_access_tokens_user_id_index` (`user_id`); -- -- Indexes for table `oauth_auth_codes` -- ALTER TABLE `oauth_auth_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_clients` -- ALTER TABLE `oauth_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_clients_user_id_index` (`user_id`); -- -- Indexes for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_personal_access_clients_client_id_index` (`client_id`); -- -- Indexes for table `oauth_refresh_tokens` -- ALTER TABLE `oauth_refresh_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_items` -- ALTER TABLE `order_items` ADD PRIMARY KEY (`id`); -- -- Indexes for table `pages` -- ALTER TABLE `pages` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `pages_slug_unique` (`slug`), ADD KEY `pages_user_id_foreign` (`user_id`); -- -- Indexes for table `password_histories` -- ALTER TABLE `password_histories` ADD PRIMARY KEY (`id`), ADD KEY `password_histories_user_id_foreign` (`user_id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`email`); -- -- Indexes for table `permissions` -- ALTER TABLE `permissions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `questions` -- ALTER TABLE `questions` ADD PRIMARY KEY (`id`), ADD KEY `questions_user_id_foreign` (`user_id`), ADD KEY `questions_deleted_at_index` (`deleted_at`); -- -- Indexes for table `questions_options` -- ALTER TABLE `questions_options` ADD PRIMARY KEY (`id`), ADD KEY `54421_596eee8745a1e` (`question_id`), ADD KEY `questions_options_deleted_at_index` (`deleted_at`); -- -- Indexes for table `question_test` -- ALTER TABLE `question_test` ADD KEY `fk_p_54420_54422_test_que_596eeef70992f` (`question_id`), ADD KEY `fk_p_54422_54420_question_596eeef7099af` (`test_id`); -- -- Indexes for table `reasons` -- ALTER TABLE `reasons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `reviews` -- ALTER TABLE `reviews` ADD PRIMARY KEY (`id`), ADD KEY `reviews_user_id_foreign` (`user_id`); -- -- Indexes for table `roles` -- ALTER TABLE `roles` ADD PRIMARY KEY (`id`), ADD KEY `roles_name_index` (`name`); -- -- Indexes for table `role_has_permissions` -- ALTER TABLE `role_has_permissions` ADD PRIMARY KEY (`permission_id`,`role_id`), ADD KEY `role_has_permissions_role_id_foreign` (`role_id`); -- -- Indexes for table `sessions` -- ALTER TABLE `sessions` ADD UNIQUE KEY `sessions_id_unique` (`id`); -- -- Indexes for table `sliders` -- ALTER TABLE `sliders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `social_accounts` -- ALTER TABLE `social_accounts` ADD PRIMARY KEY (`id`), ADD KEY `social_accounts_user_id_foreign` (`user_id`); -- -- Indexes for table `sponsors` -- ALTER TABLE `sponsors` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tags` -- ALTER TABLE `tags` ADD PRIMARY KEY (`id`); -- -- Indexes for table `taxes` -- ALTER TABLE `taxes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `testimonials` -- ALTER TABLE `testimonials` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tests` -- ALTER TABLE `tests` ADD PRIMARY KEY (`id`), ADD KEY `54422_596eeef514d00` (`course_id`), ADD KEY `54422_596eeef53411a` (`lesson_id`), ADD KEY `tests_deleted_at_index` (`deleted_at`); -- -- Indexes for table `tests_results` -- ALTER TABLE `tests_results` ADD PRIMARY KEY (`id`), ADD KEY `tests_results_test_id_foreign` (`test_id`), ADD KEY `tests_results_user_id_foreign` (`user_id`); -- -- Indexes for table `tests_results_answers` -- ALTER TABLE `tests_results_answers` ADD PRIMARY KEY (`id`), ADD KEY `tests_results_answers_tests_result_id_foreign` (`tests_result_id`), ADD KEY `tests_results_answers_question_id_foreign` (`question_id`), ADD KEY `tests_results_answers_option_id_foreign` (`option_id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `video_progresses` -- ALTER TABLE `video_progresses` ADD PRIMARY KEY (`id`), ADD KEY `video_progresses_media_id_foreign` (`media_id`), ADD KEY `video_progresses_user_id_foreign` (`user_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `admin_menus` -- ALTER TABLE `admin_menus` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `admin_menu_items` -- ALTER TABLE `admin_menu_items` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `blogs` -- ALTER TABLE `blogs` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `blog_comments` -- ALTER TABLE `blog_comments` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `bundles` -- ALTER TABLE `bundles` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22; -- -- AUTO_INCREMENT for table `certificates` -- ALTER TABLE `certificates` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `chapter_students` -- ALTER TABLE `chapter_students` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25; -- -- AUTO_INCREMENT for table `chatter_categories` -- ALTER TABLE `chatter_categories` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `chatter_discussion` -- ALTER TABLE `chatter_discussion` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `chatter_post` -- ALTER TABLE `chatter_post` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `configs` -- ALTER TABLE `configs` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=79; -- -- AUTO_INCREMENT for table `contacts` -- ALTER TABLE `contacts` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `coupons` -- ALTER TABLE `coupons` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `courses` -- ALTER TABLE `courses` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=58; -- -- AUTO_INCREMENT for table `course_timeline` -- ALTER TABLE `course_timeline` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=377; -- -- AUTO_INCREMENT for table `faqs` -- ALTER TABLE `faqs` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `invoices` -- ALTER TABLE `invoices` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `jobs` -- ALTER TABLE `jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `lessons` -- ALTER TABLE `lessons` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=510; -- -- AUTO_INCREMENT for table `locales` -- ALTER TABLE `locales` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `ltm_translations` -- ALTER TABLE `ltm_translations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8441; -- -- AUTO_INCREMENT for table `media` -- ALTER TABLE `media` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15; -- -- AUTO_INCREMENT for table `messages` -- ALTER TABLE `messages` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `message_threads` -- ALTER TABLE `message_threads` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `message_thread_participants` -- ALTER TABLE `message_thread_participants` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=152; -- -- AUTO_INCREMENT for table `oauth_clients` -- ALTER TABLE `oauth_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15; -- -- AUTO_INCREMENT for table `order_items` -- ALTER TABLE `order_items` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15; -- -- AUTO_INCREMENT for table `pages` -- ALTER TABLE `pages` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `password_histories` -- ALTER TABLE `password_histories` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=40; -- -- AUTO_INCREMENT for table `permissions` -- ALTER TABLE `permissions` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=73; -- -- AUTO_INCREMENT for table `questions` -- ALTER TABLE `questions` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=503; -- -- AUTO_INCREMENT for table `questions_options` -- ALTER TABLE `questions_options` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2009; -- -- AUTO_INCREMENT for table `reasons` -- ALTER TABLE `reasons` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `reviews` -- ALTER TABLE `reviews` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `roles` -- ALTER TABLE `roles` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `sliders` -- ALTER TABLE `sliders` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `social_accounts` -- ALTER TABLE `social_accounts` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `sponsors` -- ALTER TABLE `sponsors` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `tags` -- ALTER TABLE `tags` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `taxes` -- ALTER TABLE `taxes` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `testimonials` -- ALTER TABLE `testimonials` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `tests` -- ALTER TABLE `tests` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=103; -- -- AUTO_INCREMENT for table `tests_results` -- ALTER TABLE `tests_results` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `tests_results_answers` -- ALTER TABLE `tests_results_answers` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=28; -- -- AUTO_INCREMENT for table `video_progresses` -- ALTER TABLE `video_progresses` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- Constraints for dumped tables -- -- -- Constraints for table `admin_menu_items` -- ALTER TABLE `admin_menu_items` ADD CONSTRAINT `admin_menu_items_menu_foreign` FOREIGN KEY (`menu`) REFERENCES `admin_menus` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `blogs` -- ALTER TABLE `blogs` ADD CONSTRAINT `blogs_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE CASCADE; -- -- Constraints for table `bundles` -- ALTER TABLE `bundles` ADD CONSTRAINT `bundles_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `bundle_courses` -- ALTER TABLE `bundle_courses` ADD CONSTRAINT `bundle_courses_bundle_id_foreign` FOREIGN KEY (`bundle_id`) REFERENCES `bundles` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `bundle_courses_course_id_foreign` FOREIGN KEY (`course_id`) REFERENCES `courses` (`id`) ON DELETE CASCADE; -- -- Constraints for table `bundle_student` -- ALTER TABLE `bundle_student` ADD CONSTRAINT `bundle_student_bundle_id_foreign` FOREIGN KEY (`bundle_id`) REFERENCES `bundles` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `bundle_student_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `certificates` -- ALTER TABLE `certificates` ADD CONSTRAINT `certificates_course_id_foreign` FOREIGN KEY (`course_id`) REFERENCES `courses` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `certificates_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `chapter_students` -- ALTER TABLE `chapter_students` ADD CONSTRAINT `chapter_students_course_id_foreign` FOREIGN KEY (`course_id`) REFERENCES `courses` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `chapter_students_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `chatter_discussion` -- ALTER TABLE `chatter_discussion` ADD CONSTRAINT `chatter_discussion_chatter_category_id_foreign` FOREIGN KEY (`chatter_category_id`) REFERENCES `chatter_categories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `chatter_discussion_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `chatter_post` -- ALTER TABLE `chatter_post` ADD CONSTRAINT `chatter_post_chatter_discussion_id_foreign` FOREIGN KEY (`chatter_discussion_id`) REFERENCES `chatter_discussion` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `chatter_post_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `chatter_user_discussion` -- ALTER TABLE `chatter_user_discussion` ADD CONSTRAINT `chatter_user_discussion_discussion_id_foreign` FOREIGN KEY (`discussion_id`) REFERENCES `chatter_discussion` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `chatter_user_discussion_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `courses` -- ALTER TABLE `courses` ADD CONSTRAINT `courses_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE CASCADE; -- -- Constraints for table `course_student` -- ALTER TABLE `course_student` ADD CONSTRAINT `course_student_course_id_foreign` FOREIGN KEY (`course_id`) REFERENCES `courses` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `course_student_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `course_user` -- ALTER TABLE `course_user` ADD CONSTRAINT `fk_p_54417_54418_course_u_596eece522bee` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `fk_p_54418_54417_user_cou_596eece522b73` FOREIGN KEY (`course_id`) REFERENCES `courses` (`id`) ON DELETE CASCADE; -- -- Constraints for table `faqs` -- ALTER TABLE `faqs` ADD CONSTRAINT `faqs_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE CASCADE; -- -- Constraints for table `lessons` -- ALTER TABLE `lessons` ADD CONSTRAINT `54419_596eedbb6686e` FOREIGN KEY (`course_id`) REFERENCES `courses` (`id`) ON DELETE CASCADE; -- -- Constraints for table `messages` -- ALTER TABLE `messages` ADD CONSTRAINT `messages_sender_id_foreign` FOREIGN KEY (`sender_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `messages_thread_id_foreign` FOREIGN KEY (`thread_id`) REFERENCES `message_threads` (`id`) ON DELETE CASCADE; -- -- Constraints for table `message_thread_participants` -- ALTER TABLE `message_thread_participants` ADD CONSTRAINT `message_thread_participants_thread_id_foreign` FOREIGN KEY (`thread_id`) REFERENCES `message_threads` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `message_thread_participants_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `model_has_permissions` -- ALTER TABLE `model_has_permissions` ADD CONSTRAINT `model_has_permissions_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE; -- -- Constraints for table `model_has_roles` -- ALTER TABLE `model_has_roles` ADD CONSTRAINT `model_has_roles_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE; -- -- Constraints for table `pages` -- ALTER TABLE `pages` ADD CONSTRAINT `pages_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `password_histories` -- ALTER TABLE `password_histories` ADD CONSTRAINT `password_histories_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `questions` -- ALTER TABLE `questions` ADD CONSTRAINT `questions_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `questions_options` -- ALTER TABLE `questions_options` ADD CONSTRAINT `54421_596eee8745a1e` FOREIGN KEY (`question_id`) REFERENCES `questions` (`id`) ON DELETE CASCADE; -- -- Constraints for table `question_test` -- ALTER TABLE `question_test` ADD CONSTRAINT `fk_p_54420_54422_test_que_596eeef70992f` FOREIGN KEY (`question_id`) REFERENCES `questions` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `fk_p_54422_54420_question_596eeef7099af` FOREIGN KEY (`test_id`) REFERENCES `tests` (`id`) ON DELETE CASCADE; -- -- Constraints for table `reviews` -- ALTER TABLE `reviews` ADD CONSTRAINT `reviews_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `role_has_permissions` -- ALTER TABLE `role_has_permissions` ADD CONSTRAINT `role_has_permissions_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `role_has_permissions_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE; -- -- Constraints for table `social_accounts` -- ALTER TABLE `social_accounts` ADD CONSTRAINT `social_accounts_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`); -- -- Constraints for table `tests` -- ALTER TABLE `tests` ADD CONSTRAINT `54422_596eeef514d00` FOREIGN KEY (`course_id`) REFERENCES `courses` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `54422_596eeef53411a` FOREIGN KEY (`lesson_id`) REFERENCES `lessons` (`id`) ON DELETE CASCADE; -- -- Constraints for table `tests_results` -- ALTER TABLE `tests_results` ADD CONSTRAINT `tests_results_test_id_foreign` FOREIGN KEY (`test_id`) REFERENCES `tests` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `tests_results_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `tests_results_answers` -- ALTER TABLE `tests_results_answers` ADD CONSTRAINT `tests_results_answers_option_id_foreign` FOREIGN KEY (`option_id`) REFERENCES `questions_options` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `tests_results_answers_question_id_foreign` FOREIGN KEY (`question_id`) REFERENCES `questions` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `tests_results_answers_tests_result_id_foreign` FOREIGN KEY (`tests_result_id`) REFERENCES `tests_results` (`id`) ON DELETE CASCADE; -- -- Constraints for table `video_progresses` -- ALTER TABLE `video_progresses` ADD CONSTRAINT `video_progresses_media_id_foreign` FOREIGN KEY (`media_id`) REFERENCES `media` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `video_progresses_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; COMMIT; /*!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 */;