-- phpMyAdmin SQL Dump
-- version 5.0.3
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Sep 25, 2021 at 01:13 PM
-- Server version: 10.5.8-MariaDB-log
-- PHP Version: 7.4.11

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
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: `picoqr_v2_7`
--

-- --------------------------------------------------------

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

CREATE TABLE `categories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` enum('active','inactive') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'active',
  `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 `custom_menus`
--

CREATE TABLE `custom_menus` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `restaurant_id` int(10) UNSIGNED NOT NULL,
  `category_id` int(10) UNSIGNED NOT NULL,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `image` 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;

-- --------------------------------------------------------

--
-- Table structure for table `email_templates`
--

CREATE TABLE `email_templates` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `body` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` enum('active','inactive') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'active',
  `type` 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;

-- --------------------------------------------------------

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

CREATE TABLE `failed_jobs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `uuid` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `failed_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `items`
--

CREATE TABLE `items` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL COMMENT 'who created the item',
  `restaurant_id` int(10) UNSIGNED NOT NULL COMMENT 'item belongs to which restaurant',
  `category_id` int(10) UNSIGNED NOT NULL,
  `tax_id` int(10) UNSIGNED DEFAULT NULL,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `details` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `price` double NOT NULL DEFAULT 0,
  `discount` double NOT NULL DEFAULT 0,
  `discount_type` enum('flat','percent') COLLATE utf8mb4_unicode_ci NOT NULL,
  `discount_to` enum('everyone','premium') COLLATE utf8mb4_unicode_ci NOT NULL,
  `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` enum('active','inactive') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'active',
  `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 `item_extras`
--

CREATE TABLE `item_extras` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `item_id` int(10) UNSIGNED NOT NULL,
  `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `price` double NOT NULL,
  `status` enum('active','inactive') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'active',
  `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 `ltm_translations`
--

CREATE TABLE `ltm_translations` (
  `id` bigint(20) 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, 1, 'ar', 'auth', 'failed', 'أوراق الاعتماد هذه لا تتطابق مع سجلاتنا.', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(2, 1, 'ar', 'auth', 'throttle', 'محاولات تسجيل دخول كثيرة جدًا. يرجى المحاولة مرة أخرى خلال: ثواني.', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(3, 1, 'ar', 'auth', 'sign_up_title', 'سجل حسابك', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(4, 1, 'ar', 'auth', 'name', 'الاسم', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(5, 1, 'ar', 'auth', 'email', 'البريد الإلكتروني', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(6, 1, 'ar', 'auth', 'password', 'كلمه السر', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(7, 1, 'ar', 'auth', 'name_ex', 'مثال: John Doe', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(8, 1, 'ar', 'auth', 'email_ex', 'مثال: hello@example.com', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(9, 1, 'ar', 'auth', 'sign_up_btn', 'تسجيل', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(10, 1, 'ar', 'auth', 'allready_sign_in', 'لديك حساب مسجل بالفعل', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(11, 1, 'ar', 'auth', 'sign_in_attr', 'تسجيل الدخول', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(12, 1, 'ar', 'auth', 'reg', 'التسجيل', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(13, 1, 'ar', 'auth', 'agreement', 'بالنقر فوق تسجيل ، فإنك توافق على', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(14, 1, 'ar', 'auth', 'terms_condition', 'الشروط والأحكام', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(15, 1, 'ar', 'auth', 'privacy_policy', 'سياسة خاصة', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(16, 1, 'ar', 'auth', 'and', 'و', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(17, 1, 'ar', 'auth', 'login_title', 'تسجيل الدخول في حسابك', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(18, 1, 'ar', 'auth', 'remember_pass', 'تذكرنى', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(19, 1, 'ar', 'auth', 'forget_pass', 'هل نسيت كلمة المرور', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(20, 1, 'ar', 'auth', 'sign_in', 'سجل دخولي', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(21, 1, 'ar', 'auth', 'haven\'t_account', 'ليس لديك حساب؟', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(22, 1, 'ar', 'auth', 'sign_up', 'سجل', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(23, 1, 'ar', 'auth', 'submit', 'إرسال', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(24, 1, 'ar', 'auth', 'new_password', 'كلمة سر جديدة', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(25, 1, 'ar', 'auth', 'old_password', 'كلمة المرور القديمة', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(26, 1, 'ar', 'auth', 'con_password', 'تأكيد كلمة المرور', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(27, 1, 'ar', 'layout', 'home', 'الصفحة الرئيسية', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(28, 1, 'ar', 'layout', 'restaurant', 'مطعم', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(29, 1, 'ar', 'layout', 'restaurant_list', 'قائمة المطاعم', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(30, 1, 'ar', 'layout', 'restaurant_create', 'تم إنشاء المطعم بنجاح', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(31, 1, 'ar', 'layout', 'restaurant_edit', 'تعديل بيانات المطعم', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(32, 1, 'ar', 'layout', 'restaurants', 'مطاعم', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(33, 1, 'ar', 'layout', 'list', 'قائمة', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(34, 1, 'ar', 'layout', 'create', 'انشاء', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(35, 1, 'ar', 'layout', 'your_restaurant', 'المطعم الخاص بك', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(36, 1, 'ar', 'layout', 'name', 'الاسم', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(37, 1, 'ar', 'layout', 'timing', 'التوقيت', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(38, 1, 'ar', 'layout', 'email', 'البريد الإلكتروني', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(39, 1, 'ar', 'layout', 'phone_number', 'رقم الهاتف', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(40, 1, 'ar', 'layout', 'currency', 'العملة', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(41, 1, 'ar', 'layout', 'type', 'اكتب', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(42, 1, 'ar', 'layout', 'description', 'الوصف', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(43, 1, 'ar', 'layout', 'location', 'الموقع', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(44, 1, 'ar', 'layout', 'cover', 'التغطية', '2021-09-25 07:11:47', '2021-09-25 07:11:47'),
(45, 1, 'ar', 'layout', 'profile', 'الملف الشخصي', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(46, 1, 'ar', 'layout', 'image', 'صورة', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(47, 1, 'ar', 'layout', 'status', 'الحالة', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(48, 1, 'ar', 'layout', 'total_item', 'الاجمالى', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(49, 1, 'ar', 'layout', 'active', 'نشيط', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(50, 1, 'ar', 'layout', 'inactive', 'غير نشط', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(51, 1, 'ar', 'layout', 'edit', 'تعديل', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(52, 1, 'ar', 'layout', 'preview', 'معاينة', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(53, 1, 'ar', 'layout', 'delete', 'حذف', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(54, 1, 'ar', 'layout', 'general_info', 'معلومات عامة', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(55, 1, 'ar', 'layout', 'image_upload', 'رفع الصور', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(56, 1, 'ar', 'layout', 'item_list', 'قائمة العناصر', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(57, 1, 'ar', 'layout', 'item', 'عنصر', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(58, 1, 'ar', 'layout', 'item_create', 'تم إنشاء العنصر بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(59, 1, 'ar', 'layout', 'item_edit', 'تعديل بيانات العنصر', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(60, 1, 'ar', 'layout', 'items', 'العناصر', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(61, 1, 'ar', 'layout', 'item_name', 'اسم العنصر', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(62, 1, 'ar', 'layout', 'item_details', 'تفاصيل العنصر', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(63, 1, 'ar', 'layout', 'your_item', 'العنصر الخاص بك', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(64, 1, 'ar', 'layout', 'title', 'العنوان', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(65, 1, 'ar', 'layout', 'details', 'التفاصيل', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(66, 1, 'ar', 'layout', 'price', 'السعر', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(67, 1, 'ar', 'layout', 'category', 'الفئة', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(68, 1, 'ar', 'layout', 'discount', 'خصم', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(69, 1, 'ar', 'layout', 'discount_type', 'نوع الخصم', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(70, 1, 'ar', 'layout', 'discount_to', 'خصم ل', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(71, 1, 'ar', 'layout', 'item_image', 'صورة العنصر', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(72, 1, 'ar', 'layout', 'choose', 'أختر', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(73, 1, 'ar', 'layout', 'confirmation', 'التأكيد', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(74, 1, 'ar', 'layout', 'confirm', 'تأكيد', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(75, 1, 'ar', 'layout', 'cancel', 'إلغاء', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(76, 1, 'ar', 'layout', 'logout', 'تسجيل خروج', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(77, 1, 'ar', 'layout', 'dashboard', 'اللوحة الرئيسية', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(78, 1, 'ar', 'layout', 'hello', 'مرحبا،', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(79, 1, 'ar', 'layout', 'all_notification', 'إظهار كافة الاشعارات', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(80, 1, 'ar', 'layout', 'order_list', 'لائحة الطلبات', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(81, 1, 'ar', 'layout', 'order', 'طلب', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(82, 1, 'ar', 'layout', 'orders', 'الطلبات', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(83, 1, 'ar', 'layout', 'your_order', 'الطلب الخاص بك', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(84, 1, 'ar', 'layout', 'table', 'الطاولة', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(85, 1, 'ar', 'layout', 'payment_status', 'حالة السداد', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(86, 1, 'ar', 'layout', 'comment', 'تعليق', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(87, 1, 'ar', 'layout', 'delivered_within', 'التسليم خلال', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(88, 1, 'ar', 'layout', 'paid', 'تم الدفع', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(89, 1, 'ar', 'layout', 'unpaid', 'لم يتم الدفع', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(90, 1, 'ar', 'layout', 'pending', 'قيد الانتظار', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(91, 1, 'ar', 'layout', 'delivered', 'تم التوصيل', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(92, 1, 'ar', 'layout', 'approved', 'تمت الموافقة', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(93, 1, 'ar', 'layout', 'rejected', 'تم الرفض', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(94, 1, 'ar', 'layout', 'processing', 'قيد التنفيذ', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(95, 1, 'ar', 'layout', 'ready_for_delivery', 'جاهز للتوصيل', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(96, 1, 'ar', 'layout', 'on_the_way', 'فى الطريق اليك', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(97, 1, 'ar', 'layout', 'approve', 'موافقة', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(98, 1, 'ar', 'layout', 'total_price', 'السعر الاجمالى', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(99, 1, 'ar', 'layout', 'amount', 'كمية', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(100, 1, 'ar', 'layout', 'within', 'في غضون', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(101, 1, 'ar', 'layout', 'time', 'الوقت', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(102, 1, 'ar', 'layout', 'minutes', 'دقائق', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(103, 1, 'ar', 'layout', 'hours', 'ساعات', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(104, 1, 'ar', 'layout', 'days', 'أيام', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(105, 1, 'ar', 'layout', 'check_new_order', 'تحقق من طلب جديد', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(106, 1, 'ar', 'layout', 'customer', 'العميل', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(107, 1, 'ar', 'layout', 'quantity', 'كمية', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(108, 1, 'ar', 'layout', 'total', 'مجموع', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(109, 1, 'ar', 'layout', 'grand_total', 'المجموع الكلي', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(110, 1, 'ar', 'layout', 'total_discount', 'إجمالي الخصم', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(111, 1, 'ar', 'layout', 'invoice_by', 'فاتورة من', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(112, 1, 'ar', 'layout', 'invoice_to', 'فاتورة إلى', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(113, 1, 'ar', 'layout', 'order_details', 'تفاصيل الطلب', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(114, 1, 'ar', 'layout', 'message.item_create', 'تم إنشاء العنصر بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(115, 1, 'ar', 'layout', 'message.order_create', 'تم إنشاء الطلب بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(116, 1, 'ar', 'layout', 'message.order_placed', 'تم تنفيذ طلبك بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(117, 1, 'ar', 'layout', 'message.restaurant_create', 'تم إنشاء المطعم بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(118, 1, 'ar', 'layout', 'message.item_update', 'تم تحديث العنصر بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(119, 1, 'ar', 'layout', 'message.order_update', 'تم تحديث الطلب بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(120, 1, 'ar', 'layout', 'message.restaurant_update', 'تم تحديث المطعم بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(121, 1, 'ar', 'layout', 'message.order_status_update', 'تم تحديث حالة الطلب بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(122, 1, 'ar', 'layout', 'message.order_not_found', 'الطلب غير موجود', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(123, 1, 'ar', 'layout', 'message.restaurant_not_found', 'المطعم غير موجود', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(124, 1, 'ar', 'layout', 'message.order_status_warning', 'هل أنت متأكد من تغيير الحالة إلى <b class = \"text-red\"> :status </b>؟', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(125, 1, 'ar', 'layout', 'message.item_delete', 'تم حذف العنصر بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(126, 1, 'ar', 'layout', 'message.order_delete', 'تم حذف الطلب بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(127, 1, 'ar', 'layout', 'message.restaurant_delete', 'تم حذف المطعم بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(128, 1, 'ar', 'layout', 'message.item_delete_warning', 'هل أنت متأكد أنك تريد حذف هذا العنصر؟', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(129, 1, 'ar', 'layout', 'message.order_delete_warning', 'هل أنت متأكد أنك تريد حذف هذا الطلب؟', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(130, 1, 'ar', 'layout', 'message.restaurant_delete_warning', 'هل أنت متأكد أنك تريد حذف هذا المطعم؟', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(131, 1, 'ar', 'layout', 'message.plan_update', 'تم تحديث الباقة بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(132, 1, 'ar', 'layout', 'message.play_change_success', 'تهنئة! لقد قمت بتغيير باقتك بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(133, 1, 'ar', 'layout', 'message.invalid_payment', 'طلب دفع غير صالح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(134, 1, 'ar', 'layout', 'message.userplan_approve_success', 'تم الموافقة على باقة المستخدم بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(135, 1, 'ar', 'layout', 'message.userplan_reject_success', 'تم رفض باقة المستخدم بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(136, 1, 'ar', 'layout', 'message.userplan_status_change_msg', 'تم تغيير باقة المستخدم بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(137, 1, 'ar', 'layout', 'message.userplan_approve_warning', 'هل أنت متأكد أنك تريد الموافقة على هذه الباقة؟', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(138, 1, 'ar', 'layout', 'message.userplan_reject_warning', 'هل أنت متأكد أنك تريد رفض هذه الباقة؟', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(139, 1, 'ar', 'layout', 'message.change_user_plan_warning', 'هل أنت متأكد من تغيير حالة باقة المستخدم؟', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(140, 1, 'ar', 'layout', 'message.category_update_message', 'تم تحديث الفئة بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(141, 1, 'ar', 'layout', 'message.category_store_msg', 'متجر الفئة بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(142, 1, 'ar', 'layout', 'message.setting_update', 'تم تحديث الإعدادات بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(143, 1, 'ar', 'layout', 'message.registration_success', 'تهانينا! لقد أرسلنا لك بريد تأكيد', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(144, 1, 'ar', 'layout', 'message.verify', 'تم التحقق من البريد الإلكتروني بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(145, 1, 'ar', 'layout', 'message.verify_resend', 'تم إرسال رابط التحقق مرة أخرى', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(146, 1, 'ar', 'layout', 'message.verify_text', 'يرجى التحقق من بريدك الإلكتروني أولا. يمكنك إعادة إرسال رابط التحقق الخاص بك', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(147, 1, 'ar', 'layout', 'message.user_not_found', 'المستخدم ليس موجود. حاول باستخدام بريد إلكتروني صالح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(148, 1, 'ar', 'layout', 'message.reset_link_send', 'تم إرسال تعليمات إلى بريدك الإلكتروني', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(149, 1, 'ar', 'layout', 'message.token_expired', 'انتهت صلاحية الرمز المميز أو تم استخدامه', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(150, 1, 'ar', 'layout', 'message.reset_successful', 'تم إعادة تعيين كلمة المرور بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(151, 1, 'ar', 'layout', 'message.category_delete_warning', 'هل أنت متأكد من حذف هذه الفئة؟', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(152, 1, 'ar', 'layout', 'message.category_delete', 'تم حذف الفئة بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(153, 1, 'ar', 'layout', 'message.plan_delete_warning', 'هل أنت متأكد من حذف هذه الباقة؟', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(154, 1, 'ar', 'layout', 'message.plan_delete_msg', 'تم حذف الباقة بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(155, 1, 'ar', 'layout', 'message.table_delete_msg', 'تم حذف الطاولة بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(156, 1, 'ar', 'layout', 'message.table_delete_warning', 'هل أنت متأكد من حذف هذا الطاولة؟', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(157, 1, 'ar', 'layout', 'message.table_not_delete', 'وجه الفتاة! الطاولة قيد الاستخدام بالفعل', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(158, 1, 'ar', 'layout', 'message.category_not_delete', 'وجه الفتاة! الفئة قيد الاستخدام بالفعل', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(159, 1, 'ar', 'layout', 'message.item_not_delete', 'وجه الفتاة! العنصر قيد الاستخدام بالفعل', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(160, 1, 'ar', 'layout', 'message.plan_not_delete', 'وجه الفتاة! الباقة قيد الاستخدام بالفعل', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(161, 1, 'ar', 'layout', 'message.restaurant_not_delete', 'وجه الفتاة! المطعم قيد الاستخدام بالفعل', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(162, 1, 'ar', 'layout', 'message.pending_configuration', 'تحتاج إلى تكوين إعداداتك أولاً', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(163, 1, 'ar', 'layout', 'message.invalid_request', 'طلب غير صالح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(164, 1, 'ar', 'layout', 'message.upgrade_notification', 'انتهت خطتك ، يرجى الترقية', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(165, 1, 'ar', 'layout', 'message.request_received', 'لقد تلقينا طلبك. سوف نتصل بك قريبا', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(166, 1, 'ar', 'layout', 'message.cancel_payment', 'تم إلغاء الدفع', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(167, 1, 'ar', 'layout', 'message.upload_success', 'تم تحميل الصورة بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(168, 1, 'ar', 'layout', 'message.update_failed', 'عفوًا! فشل التحديث', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(169, 1, 'ar', 'layout', 'message.tax_delete_warning', 'هل أنت متأكد من حذف هذه الضريبة؟', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(170, 1, 'ar', 'layout', 'message.table_success_msg', 'تم إنشاء الطاولة بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(171, 1, 'ar', 'layout', 'message.table_update_msg', 'تم تحديث الطاولة بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(172, 1, 'ar', 'layout', 'message.tax_success_msg', 'تم إنشاء الضريبة بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(173, 1, 'ar', 'layout', 'message.tax_update_msg', 'تم تحديث الضريبة بنجاح', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(174, 1, 'ar', 'layout', 'settings_title', 'إعدادات العنوان ', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(175, 1, 'ar', 'layout', 'general_settings', 'الاعدادات العامة', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(176, 1, 'ar', 'layout', 'general', 'عام', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(177, 1, 'ar', 'layout', 'password_change', 'تغيير كلمة السر', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(178, 1, 'ar', 'layout', 'email_settings', 'إعدادات البريد الإلكتروني', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(179, 1, 'ar', 'layout', 'site_settings', 'إعدادات الموقع', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(180, 1, 'ar', 'layout', 'local_settings', 'الإعدادات المحلية', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(181, 1, 'ar', 'layout', 'email_template', 'نموذج البريد الإلكتروني', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(182, 1, 'ar', 'layout', 'picture', 'صورة', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(183, 1, 'ar', 'layout', 'submit', 'إرسال', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(184, 1, 'ar', 'layout', 'old_password', 'كلمة المرور القديمة', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(185, 1, 'ar', 'layout', 'new_password', 'كلمة السر الجديدة', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(186, 1, 'ar', 'layout', 'confirm_password', 'تأكيد كلمة المرور', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(187, 1, 'ar', 'layout', 'host', 'مضيف', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(188, 1, 'ar', 'layout', 'password', 'كلمه السر', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(189, 1, 'ar', 'layout', 'port', 'المنفذ', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(190, 1, 'ar', 'layout', 'username', 'اسم المستخدم', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(191, 1, 'ar', 'layout', 'encrypt_type', 'نوع التشفير', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(192, 1, 'ar', 'layout', 'registration', 'التسجيل', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(193, 1, 'ar', 'layout', 'forget_password', 'نسيت كلمة المرور', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(194, 1, 'ar', 'layout', 'order_placed', 'تم الطلب', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(195, 1, 'ar', 'layout', 'order_status', 'حالة الطلب', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(196, 1, 'ar', 'layout', 'email_subject', 'موضوع البريد الإلكتروني', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(197, 1, 'ar', 'layout', 'email_body', 'هيئة البريد الإلكتروني', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(198, 1, 'ar', 'layout', 'email_from', 'البريد الإلكتروني من', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(199, 1, 'ar', 'layout', 'plan_request', 'طلب باقة', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(200, 1, 'ar', 'layout', 'plan_accept', 'تم قبول الباقة', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(201, 1, 'ar', 'layout', 'plan_expire', 'انتهت الباقة', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(202, 1, 'ar', 'layout', 'payment_gateway', 'بوابة الدفع', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(203, 1, 'ar', 'layout', 'sms_gateway', 'بوابة الرسائل القصيرة', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(204, 1, 'ar', 'layout', 'stripe', 'شريط', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(205, 1, 'ar', 'layout', 'offline', 'غير متصل على الانترنت', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(206, 1, 'ar', 'layout', 'bank_name', 'اسم البنك', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(207, 1, 'ar', 'layout', 'bank_branch', 'فرع بنك', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(208, 1, 'ar', 'layout', 'account_name', 'أسم الحساب', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(209, 1, 'ar', 'layout', 'account_number', 'رقم الحساب', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(210, 1, 'ar', 'layout', 'transaction_id', 'رقم المعاملة', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(211, 1, 'ar', 'layout', 'reference', 'مرجع', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(212, 1, 'ar', 'layout', 'client_id_key', 'مفتاح ClientID', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(213, 1, 'ar', 'layout', 'client_secret_key', 'مفتاح سر العميل', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(214, 1, 'ar', 'layout', 'publish_key', 'مفتاح قابل للنشر', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(215, 1, 'ar', 'layout', 'secret_key', 'المفتاح السري', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(216, 1, 'ar', 'layout', 'twilio', 'Twilio', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(217, 1, 'ar', 'layout', 'voyager', 'Voyager', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(218, 1, 'ar', 'layout', 'signalwire', 'Signalwire', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(219, 1, 'ar', 'layout', 'sid', 'Sid', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(220, 1, 'ar', 'layout', 'token', 'Token', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(221, 1, 'ar', 'layout', 'project_id', 'رقم المشروع', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(222, 1, 'ar', 'layout', 'space_url', 'مساحة URL', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(223, 1, 'ar', 'layout', 'api_key', 'مفتاح API', '2021-09-25 07:11:48', '2021-09-25 07:11:48'),
(224, 1, 'ar', 'layout', 'api_secret', 'سر Api', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(225, 1, 'ar', 'layout', 'plan_title', 'قائمة الخطط', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(226, 1, 'ar', 'layout', 'plan', 'الخطط', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(227, 1, 'ar', 'layout', 'cost', 'كلفة', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(228, 1, 'ar', 'layout', 'recurring_type', 'النوع المتكرر', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(229, 1, 'ar', 'layout', 'table_limit', 'اقصى عدد من الطاولات', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(230, 1, 'ar', 'layout', 'restaurant_limit', 'اقصى عدد من المطاعم', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(231, 1, 'ar', 'layout', 'item_limit', 'اقصى عدد من العناصر', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(232, 1, 'ar', 'layout', 'unlimited_support', 'دعم غير محدود', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(233, 1, 'ar', 'layout', 'action', 'عمل', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(234, 1, 'ar', 'layout', 'onetime', 'مره واحده', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(235, 1, 'ar', 'layout', 'weekly', 'أسبوعي', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(236, 1, 'ar', 'layout', 'monthly', 'شهريا', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(237, 1, 'ar', 'layout', 'yearly', 'سنوي', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(238, 1, 'ar', 'layout', 'plan_edit', 'تعديل الباقة', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(239, 1, 'ar', 'layout', 'no_of_capacity', 'السعة الاستيعابية', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(240, 1, 'ar', 'layout', 'position', 'موضع', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(241, 1, 'ar', 'layout', 'payment_title', 'دفع', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(242, 1, 'ar', 'layout', 'payment_method', 'طريقة الدفع او السداد', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(243, 1, 'ar', 'layout', 'card_name', 'الاسم على البطاقة', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(244, 1, 'ar', 'layout', 'card_number', 'رقم البطاقة', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(245, 1, 'ar', 'layout', 'cvc', 'رمز التحقق من البطاقة (CVC)', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(246, 1, 'ar', 'layout', 'expiration', 'انتهاء الصلاحية', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(247, 1, 'ar', 'layout', 'pay_plan_title', 'عنوان الباقة', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(248, 1, 'ar', 'layout', 'start_date', 'تاريخ البدء', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(249, 1, 'ar', 'layout', 'expiry_date', 'تاريخ انتهاء الصلاحية', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(250, 1, 'ar', 'layout', 'other_info', 'معلومات اخرى', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(251, 1, 'ar', 'layout', 'total_cost', 'التكلفة الإجمالية', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(252, 1, 'ar', 'layout', 'lifetime', 'العمر الافتراضى', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(253, 1, 'ar', 'layout', 'pay_now', 'Pay Now', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(254, 1, 'ar', 'layout', 'credit_or_debit', 'بطاقة الائتمان أو الخصم', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(255, 1, 'ar', 'layout', 'restaurant_extends', 'تم تمديد حدود المطعم أو انتهاء صلاحيته. الرجاء ترقية خطتك', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(256, 1, 'ar', 'layout', 'table_extends', 'تم تمديد أو انتهاء سعة االطاولة. الرجاء ترقية باقتك', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(257, 1, 'ar', 'layout', 'item_extends', 'تم تمديد حد العنصر أو انتهاء صلاحيته. الرجاء ترقية باقتك', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(258, 1, 'ar', 'layout', 'user_plan_title', 'باقة المستخدم', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(259, 1, 'ar', 'layout', 'user_plan', 'باقة المستخدم', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(260, 1, 'ar', 'layout', 'plan_name', 'عنوان الباقة', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(261, 1, 'ar', 'layout', 'reject', 'رفض', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(262, 1, 'ar', 'layout', 'demo', 'تجريبي', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(263, 1, 'ar', 'layout', 'pricing', 'السعر', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(264, 1, 'ar', 'layout', 'join', 'انضم', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(265, 1, 'ar', 'layout', 'signup', 'تسجيل', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(266, 1, 'ar', 'layout', 'total_restaurant', 'اجمالى عدد المطاعم', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(267, 1, 'ar', 'layout', 'total_order_amount', 'إجمالي مبلغ الطلبات', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(268, 1, 'ar', 'layout', 'total_income', 'إجمالي الدخل', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(269, 1, 'ar', 'layout', 'pending_order', 'الطلبات المعلقة', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(270, 1, 'ar', 'layout', 'pending_plan', 'باقة معلقة', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(271, 1, 'ar', 'layout', 'category_create_title', 'انشاء عنوان الفئة', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(272, 1, 'ar', 'layout', 'category_create', 'إنشاء فئة', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(273, 1, 'ar', 'layout', 'category_edit_title', 'تعديل العنوان', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(274, 1, 'ar', 'layout', 'category_edit', 'تعديل الفئة', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(275, 1, 'ar', 'layout', 'qr_maker', ' اظهار  QR', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(276, 1, 'ar', 'layout', 'settings', 'إعدادات', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(277, 1, 'ar', 'layout', 'generate', 'انشاء', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(278, 1, 'ar', 'layout', 'restaurant_select', 'اختر المطعم', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(279, 1, 'ar', 'layout', 'table_select', 'حدد الطاولة', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(280, 1, 'ar', 'layout', 'fill_color', 'لون التعبئة', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(281, 1, 'ar', 'layout', 'bg_color', 'لون الخلفية', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(282, 1, 'ar', 'layout', 'text_color', 'لون الخط', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(283, 1, 'ar', 'layout', 'mode', 'الوضع', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(284, 1, 'ar', 'layout', 'design_type', 'نوع التصميم', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(285, 1, 'ar', 'layout', 'normal', 'عادي', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(286, 1, 'ar', 'layout', 'text_strip', 'قطاع النص', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(287, 1, 'ar', 'layout', 'image_strip', 'قطاع الصورة', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(288, 1, 'ar', 'layout', 'text', 'نص', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(289, 1, 'ar', 'layout', 'size', 'بحجم', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(290, 1, 'ar', 'layout', 'pos_x', 'PosX', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(291, 1, 'ar', 'layout', 'pos_y', 'PosY', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(292, 1, 'ar', 'layout', 'role_permission', 'الإذن', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(293, 1, 'ar', 'layout', 'verify_email', 'قم بتأكيد بريدك الألكتروني', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(294, 1, 'ar', 'layout', 'enter_code', 'ادخل رمزك', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(295, 1, 'ar', 'layout', 'verify', 'تحقق', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(296, 1, 'ar', 'layout', 'resend', 'إعادة إرسال', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(297, 1, 'ar', 'layout', 'billings', 'بيلينغز', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(298, 1, 'ar', 'layout', 'download', 'تحميل', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(299, 1, 'ar', 'layout', 'my_order', 'طلباتي', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(300, 1, 'ar', 'layout', 'add', 'أضف', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(301, 1, 'ar', 'layout', 'overview', 'نظرة عامة', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(302, 1, 'ar', 'layout', 'payment', 'دفع', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(303, 1, 'ar', 'layout', 'place_order', 'مكان الامر', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(304, 1, 'ar', 'layout', 'upgrade', 'تطوير', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(305, 1, 'ar', 'layout', 'login', 'تسجيل الدخول', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(306, 1, 'ar', 'layout', 'date_time_format', 'تنسيق التاريخ والوقت', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(307, 1, 'ar', 'layout', 'date_time_separator', 'فاصل التاريخ والوقت', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(308, 1, 'ar', 'layout', 'timezone', 'وحدة زمنية', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(309, 1, 'ar', 'layout', 'decimal_format', 'تنسيق عشري', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(310, 1, 'ar', 'layout', 'language', 'لغة', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(311, 1, 'ar', 'layout', 'currency_symbol', 'رمز العملة', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(312, 1, 'ar', 'layout', 'currency_symbol_position', 'موقف الرمز', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(313, 1, 'ar', 'layout', 'before', 'قبل', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(314, 1, 'ar', 'layout', 'after', 'بعد', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(315, 1, 'ar', 'layout', 'bengali', 'বাংলা', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(316, 1, 'ar', 'layout', 'english', 'English', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(317, 1, 'ar', 'layout', 'arabic', 'عربى', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(318, 1, 'ar', 'layout', 'hindi', 'हिंदी', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(319, 1, 'ar', 'layout', 'spanish', 'Español', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(320, 1, 'ar', 'layout', 'japanese', '日本人', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(321, 1, 'ar', 'layout', 'portuguese', 'Português', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(322, 1, 'ar', 'layout', 'thousand_separator', 'ألف فاصل', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(323, 1, 'ar', 'layout', 'decimals', 'الكسور العشرية', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(324, 1, 'ar', 'layout', 'decimal_point', 'العلامة العشرية', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(325, 1, 'ar', 'layout', 'all_right_reserved', 'كل الحقوق محفوظة', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(326, 1, 'ar', 'layout', 'copyright_footer', 'جميع الحقوق محفوظة © تصميم وتطوير', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(327, 1, 'ar', 'layout', 'click_here', 'انقر هنا', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(328, 1, 'ar', 'layout', 'pay_on_table', 'الدفع على الطاولة', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(329, 1, 'ar', 'layout', 'currency_code', 'رمز العملة', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(330, 1, 'ar', 'layout', 'paytm', 'Paytm', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(331, 1, 'ar', 'layout', 'find_yours', 'اعثر على الكود الخاص بك', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(332, 1, 'ar', 'layout', 'pay_with_paytm', 'الدفع باستخدام Paytm', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(333, 1, 'ar', 'layout', 'paypal_des', 'الدفع بواسط باى بال', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(334, 1, 'ar', 'layout', 'paypal', 'Paypal', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(335, 1, 'ar', 'layout', 'paytm_environment', 'البيئة', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(336, 1, 'ar', 'layout', 'paytm_mid', 'معرّف التاجر', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(337, 1, 'ar', 'layout', 'paytm_secret_key', 'المفتاح السري', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(338, 1, 'ar', 'layout', 'paytm_website', 'موقع الويب', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(339, 1, 'ar', 'layout', 'paytm_txn_url', 'عنوان URL للمعاملة', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(340, 1, 'ar', 'layout', 'choose_template', 'اختر نموذجًا', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(341, 1, 'ar', 'layout', 'classic', 'كلاسيكي', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(342, 1, 'ar', 'layout', 'modern', 'حديث', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(343, 1, 'ar', 'layout', 'flipbook', 'FlipBook', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(344, 1, 'ar', 'layout', 'custom', 'مخصص', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(345, 1, 'ar', 'layout', 'custom_menu', 'قائمة مخصصة', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(346, 1, 'ar', 'layout', 'add_menu', 'إضافة قائمة', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(347, 1, 'ar', 'layout', 'enter_name', 'أدخل الاسم', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(348, 1, 'ar', 'layout', 'header', 'Header', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(349, 1, 'ar', 'layout', 'enter_header', 'أدخل العنوان', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(350, 1, 'ar', 'layout', 'footer', 'Footer', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(351, 1, 'ar', 'layout', 'enter_footer', 'أدخل التذييل', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(352, 1, 'ar', 'layout', 'enter_description', 'أدخل الوصف', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(353, 1, 'ar', 'layout', 'enter_title', 'أدخل العنوان', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(354, 1, 'ar', 'layout', 'basic', 'أساسي', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(355, 1, 'ar', 'layout', 'extra', 'إضافي', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(356, 1, 'ar', 'layout', 'add_extra', 'إضافة إضافي', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(357, 1, 'ar', 'layout', 'add_extra_name', 'أدخل اسمًا إضافيًا', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(358, 1, 'ar', 'layout', 'enter_price', 'أدخل السعر', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(359, 1, 'ar', 'layout', 'item_extra', 'عنصر إضافي', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(360, 1, 'ar', 'layout', 'process', 'عملية', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(361, 1, 'ar', 'layout', 'phone', 'Phone', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(362, 1, 'ar', 'layout', 'address', 'العنوان', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(363, 1, 'ar', 'layout', 'is_unlimited', 'غير محدود؟', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(364, 1, 'ar', 'layout', 'unlimited', 'غير محدود', '2021-09-25 07:11:49', '2021-09-25 07:11:49'),
(365, 1, 'ar', 'layout', 'tax', 'الضرائب', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(366, 1, 'ar', 'layout', 'tax_create', 'ضريبة إنشاء', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(367, 1, 'ar', 'layout', 'tax_edit', 'تعديل الضرائب', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(368, 1, 'ar', 'layout', 'taxes', 'الضرائب', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(369, 1, 'ar', 'layout', 'tax_title', 'عنوان الضريبة', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(370, 1, 'ar', 'layout', 'flat', 'شقة', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(371, 1, 'ar', 'layout', 'percentage', 'النسبة المئوية', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(372, 1, 'ar', 'layout', 'print', 'طباعة', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(373, 1, 'ar', 'layout', 'pdf', 'PDF', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(374, 1, 'ar', 'layout', 'total_tax', 'إجمالي الضرائب', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(375, 1, 'ar', 'layout', 'view_basket', 'عرض السلة', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(376, 1, 'ar', 'layout', 'all_categories', 'كل الفئات', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(377, 1, 'ar', 'layout', 'germany', 'Deutsch', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(378, 1, 'ar', 'layout', 'select_delivery_type', 'Select Delivery Type', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(379, 1, 'ar', 'layout', 'modal_title', 'Modal title', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(380, 1, 'ar', 'layout', 'close', 'Close', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(381, 1, 'ar', 'layout', 'cash_on_delivery', 'Cash on Delivery', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(382, 1, 'ar', 'layout', 'delivery_address', 'Delivery address', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(383, 1, 'ar', 'layout', 'ex_2806_montague_rd_bC_canada', 'Ex: 2806 Montague Rd, BC, Canada', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(384, 1, 'ar', 'layout', 'view_order', 'View Order', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(385, 1, 'ar', 'layout', 'credit_or_debit_card', 'Credit or Debit card', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(386, 1, 'ar', 'layout', 'order_overview', 'Order  overview', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(387, 1, 'ar', 'layout', 'payment_type', 'Payment Type', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(388, 1, 'ar', 'layout', 'select_a_payment_type', 'Select a payment type', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(389, 1, 'ar', 'layout', 'pay_in_cash', 'Pay in cash', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(390, 1, 'ar', 'layout', 'pay_in_paytm', 'Pay in paytm', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(391, 1, 'ar', 'layout', 'cash', 'Cash', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(392, 1, 'ar', 'layout', 'ex_Need_extra_spoon', 'Ex: Need extra spoon', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(393, 1, 'ar', 'layout', 'ex_example_mail_com', 'Ex: example@mail.com', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(394, 1, 'ar', 'layout', 'ex_number', 'Ex: +140139485764', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(395, 1, 'ar', 'layout', 'ex_jone_doe', 'Ex: Jone Doe', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(396, 1, 'ar', 'pagination', 'previous', '&laquo; Previous', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(397, 1, 'ar', 'pagination', 'next', 'Next &raquo;', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(398, 1, 'ar', 'passwords', 'reset', 'Your password has been reset!', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(399, 1, 'ar', 'passwords', 'sent', 'We have emailed your password reset link!', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(400, 1, 'ar', 'passwords', 'throttled', 'Please wait before retrying.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(401, 1, 'ar', 'passwords', 'token', 'This password reset token is invalid.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(402, 1, 'ar', 'passwords', 'user', 'We can\'t find a user with that email address.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(403, 1, 'ar', 'validation', 'accepted', 'The :attribute must be accepted.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(404, 1, 'ar', 'validation', 'active_url', 'The :attribute is not a valid URL.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(405, 1, 'ar', 'validation', 'after', 'The :attribute must be a date after :date.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(406, 1, 'ar', 'validation', 'after_or_equal', 'The :attribute must be a date after or equal to :date.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(407, 1, 'ar', 'validation', 'alpha', 'The :attribute may only contain letters.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(408, 1, 'ar', 'validation', 'alpha_dash', 'The :attribute may only contain letters, numbers, dashes and underscores.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(409, 1, 'ar', 'validation', 'alpha_num', 'The :attribute may only contain letters and numbers.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(410, 1, 'ar', 'validation', 'array', 'The :attribute must be an array.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(411, 1, 'ar', 'validation', 'before', 'The :attribute must be a date before :date.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(412, 1, 'ar', 'validation', 'before_or_equal', 'The :attribute must be a date before or equal to :date.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(413, 1, 'ar', 'validation', 'between.numeric', 'The :attribute must be between :min and :max.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(414, 1, 'ar', 'validation', 'between.file', 'The :attribute must be between :min and :max kilobytes.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(415, 1, 'ar', 'validation', 'between.string', 'The :attribute must be between :min and :max characters.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(416, 1, 'ar', 'validation', 'between.array', 'The :attribute must have between :min and :max items.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(417, 1, 'ar', 'validation', 'boolean', 'The :attribute field must be true or false.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(418, 1, 'ar', 'validation', 'confirmed', 'The :attribute confirmation does not match.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(419, 1, 'ar', 'validation', 'date', 'The :attribute is not a valid date.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(420, 1, 'ar', 'validation', 'date_equals', 'The :attribute must be a date equal to :date.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(421, 1, 'ar', 'validation', 'date_format', 'The :attribute does not match the format :format.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(422, 1, 'ar', 'validation', 'different', 'The :attribute and :other must be different.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(423, 1, 'ar', 'validation', 'digits', 'The :attribute must be :digits digits.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(424, 1, 'ar', 'validation', 'digits_between', 'The :attribute must be between :min and :max digits.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(425, 1, 'ar', 'validation', 'dimensions', 'The :attribute has invalid image dimensions.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(426, 1, 'ar', 'validation', 'distinct', 'The :attribute field has a duplicate value.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(427, 1, 'ar', 'validation', 'email', 'The :attribute must be a valid email address.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(428, 1, 'ar', 'validation', 'ends_with', 'The :attribute must end with one of the following: :values.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(429, 1, 'ar', 'validation', 'exists', 'The selected :attribute is invalid.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(430, 1, 'ar', 'validation', 'file', 'The :attribute must be a file.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(431, 1, 'ar', 'validation', 'filled', 'The :attribute field must have a value.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(432, 1, 'ar', 'validation', 'gt.numeric', 'The :attribute must be greater than :value.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(433, 1, 'ar', 'validation', 'gt.file', 'The :attribute must be greater than :value kilobytes.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(434, 1, 'ar', 'validation', 'gt.string', 'The :attribute must be greater than :value characters.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(435, 1, 'ar', 'validation', 'gt.array', 'The :attribute must have more than :value items.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(436, 1, 'ar', 'validation', 'gte.numeric', 'The :attribute must be greater than or equal :value.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(437, 1, 'ar', 'validation', 'gte.file', 'The :attribute must be greater than or equal :value kilobytes.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(438, 1, 'ar', 'validation', 'gte.string', 'The :attribute must be greater than or equal :value characters.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(439, 1, 'ar', 'validation', 'gte.array', 'The :attribute must have :value items or more.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(440, 1, 'ar', 'validation', 'image', 'The :attribute must be an image.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(441, 1, 'ar', 'validation', 'in', 'The selected :attribute is invalid.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(442, 1, 'ar', 'validation', 'in_array', 'The :attribute field does not exist in :other.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(443, 1, 'ar', 'validation', 'integer', 'The :attribute must be an integer.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(444, 1, 'ar', 'validation', 'ip', 'The :attribute must be a valid IP address.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(445, 1, 'ar', 'validation', 'ipv4', 'The :attribute must be a valid IPv4 address.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(446, 1, 'ar', 'validation', 'ipv6', 'The :attribute must be a valid IPv6 address.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(447, 1, 'ar', 'validation', 'json', 'The :attribute must be a valid JSON string.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(448, 1, 'ar', 'validation', 'lt.numeric', 'The :attribute must be less than :value.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(449, 1, 'ar', 'validation', 'lt.file', 'The :attribute must be less than :value kilobytes.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(450, 1, 'ar', 'validation', 'lt.string', 'The :attribute must be less than :value characters.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(451, 1, 'ar', 'validation', 'lt.array', 'The :attribute must have less than :value items.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(452, 1, 'ar', 'validation', 'lte.numeric', 'The :attribute must be less than or equal :value.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(453, 1, 'ar', 'validation', 'lte.file', 'The :attribute must be less than or equal :value kilobytes.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(454, 1, 'ar', 'validation', 'lte.string', 'The :attribute must be less than or equal :value characters.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(455, 1, 'ar', 'validation', 'lte.array', 'The :attribute must not have more than :value items.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(456, 1, 'ar', 'validation', 'max.numeric', 'The :attribute may not be greater than :max.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(457, 1, 'ar', 'validation', 'max.file', 'The :attribute may not be greater than :max kilobytes.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(458, 1, 'ar', 'validation', 'max.string', 'The :attribute may not be greater than :max characters.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(459, 1, 'ar', 'validation', 'max.array', 'The :attribute may not have more than :max items.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(460, 1, 'ar', 'validation', 'mimes', 'The :attribute must be a file of type: :values.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(461, 1, 'ar', 'validation', 'mimetypes', 'The :attribute must be a file of type: :values.', '2021-09-25 07:11:50', '2021-09-25 07:11:50');
INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES
(462, 1, 'ar', 'validation', 'min.numeric', 'The :attribute must be at least :min.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(463, 1, 'ar', 'validation', 'min.file', 'The :attribute must be at least :min kilobytes.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(464, 1, 'ar', 'validation', 'min.string', 'The :attribute must be at least :min characters.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(465, 1, 'ar', 'validation', 'min.array', 'The :attribute must have at least :min items.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(466, 1, 'ar', 'validation', 'multiple_of', 'The :attribute must be a multiple of :value', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(467, 1, 'ar', 'validation', 'not_in', 'The selected :attribute is invalid.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(468, 1, 'ar', 'validation', 'not_regex', 'The :attribute format is invalid.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(469, 1, 'ar', 'validation', 'numeric', 'The :attribute must be a number.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(470, 1, 'ar', 'validation', 'password', 'The password is incorrect.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(471, 1, 'ar', 'validation', 'present', 'The :attribute field must be present.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(472, 1, 'ar', 'validation', 'regex', 'The :attribute format is invalid.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(473, 1, 'ar', 'validation', 'required', 'The :attribute field is required.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(474, 1, 'ar', 'validation', 'required_if', 'The :attribute field is required when :other is :value.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(475, 1, 'ar', 'validation', 'required_unless', 'The :attribute field is required unless :other is in :values.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(476, 1, 'ar', 'validation', 'required_with', 'The :attribute field is required when :values is present.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(477, 1, 'ar', 'validation', 'required_with_all', 'The :attribute field is required when :values are present.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(478, 1, 'ar', 'validation', 'required_without', 'The :attribute field is required when :values is not present.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(479, 1, 'ar', 'validation', 'required_without_all', 'The :attribute field is required when none of :values are present.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(480, 1, 'ar', 'validation', 'same', 'The :attribute and :other must match.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(481, 1, 'ar', 'validation', 'size.numeric', 'The :attribute must be :size.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(482, 1, 'ar', 'validation', 'size.file', 'The :attribute must be :size kilobytes.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(483, 1, 'ar', 'validation', 'size.string', 'The :attribute must be :size characters.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(484, 1, 'ar', 'validation', 'size.array', 'The :attribute must contain :size items.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(485, 1, 'ar', 'validation', 'starts_with', 'The :attribute must start with one of the following: :values.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(486, 1, 'ar', 'validation', 'string', 'The :attribute must be a string.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(487, 1, 'ar', 'validation', 'timezone', 'The :attribute must be a valid zone.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(488, 1, 'ar', 'validation', 'unique', 'The :attribute has already been taken.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(489, 1, 'ar', 'validation', 'uploaded', 'The :attribute failed to upload.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(490, 1, 'ar', 'validation', 'url', 'The :attribute format is invalid.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(491, 1, 'ar', 'validation', 'uuid', 'The :attribute must be a valid UUID.', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(492, 1, 'ar', 'validation', 'custom.attribute-name.rule-name', 'custom-message', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(493, 1, 'bn', 'auth', 'failed', 'এই শংসাপত্রগুলি আমাদের রেকর্ডগুলির সাথে মেলে না।', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(494, 1, 'bn', 'auth', 'throttle', 'অনেক বেশি লগইন প্রচেষ্টা। দয়া করে আবার চেষ্টা করুন: সেকেন্ড সেকেন্ডে।', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(495, 1, 'bn', 'auth', 'sign_up_title', 'আপনার অ্যাকাউন্টে সাইন আপ করুন', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(496, 1, 'bn', 'auth', 'name', 'নাম', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(497, 1, 'bn', 'auth', 'email', 'ইমেল', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(498, 1, 'bn', 'auth', 'password', 'পাসওয়ার্ড', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(499, 1, 'bn', 'auth', 'name_ex', 'উদাহরণ: জন ডো', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(500, 1, 'bn', 'auth', 'email_ex', 'উদাহরণ: হ্যালো@example.com', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(501, 1, 'bn', 'auth', 'sign_up_btn', 'নিবন্ধন করুন', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(502, 1, 'bn', 'auth', 'allready_sign_in', 'ইতিমধ্যে একটি সদস্যপদ আছে?', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(503, 1, 'bn', 'auth', 'sign_in_attr', 'প্রবেশ করুন', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(504, 1, 'bn', 'auth', 'reg', 'নিবন্ধন', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(505, 1, 'bn', 'auth', 'agreement', 'সাইন আপ ক্লিক করে, আপনি আমাদের সাথে সম্মত হন', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(506, 1, 'bn', 'auth', 'terms_condition', 'বিধি - নিষেধ এবং শর্তাবলী', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(507, 1, 'bn', 'auth', 'privacy_policy', 'গোপনীয়তা নীতি', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(508, 1, 'bn', 'auth', 'and', 'এবং', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(509, 1, 'bn', 'auth', 'login_title', 'আপনার অ্যাকাউন্টে লগইন করুন', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(510, 1, 'bn', 'auth', 'remember_pass', 'আমাকে মনে রাখুন', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(511, 1, 'bn', 'auth', 'forget_pass', 'পাসওয়ার্ড ভুলে গেছেন', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(512, 1, 'bn', 'auth', 'sign_in', 'সাইন ইন করতে দিন', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(513, 1, 'bn', 'auth', 'haven\'t_account', 'কোন অ্যাকাউন্ট নেই?', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(514, 1, 'bn', 'auth', 'sign_up', 'নিবন্ধন করুন', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(515, 1, 'bn', 'auth', 'submit', 'জমা দিন', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(516, 1, 'bn', 'auth', 'new_password', 'নতুন পাসওয়ার্ড', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(517, 1, 'bn', 'auth', 'old_password', 'পুরানো পাসওয়ার্ড', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(518, 1, 'bn', 'auth', 'con_password', 'পাসওয়ার্ড নিশ্চিত করুন', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(519, 1, 'bn', 'layout', 'home', 'বাড়ি', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(520, 1, 'bn', 'layout', 'restaurant', 'রেঁস্তোরা', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(521, 1, 'bn', 'layout', 'restaurant_list', 'রেস্তোঁরা তালিকা', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(522, 1, 'bn', 'layout', 'restaurant_create', 'রেস্তোঁরা তৈরি', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(523, 1, 'bn', 'layout', 'restaurant_edit', 'রেস্তোঁরা সম্পাদনা', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(524, 1, 'bn', 'layout', 'restaurants', 'রেস্তোঁরা সমূহ', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(525, 1, 'bn', 'layout', 'list', 'তালিকা', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(526, 1, 'bn', 'layout', 'create', 'সৃষ্টি', '2021-09-25 07:11:50', '2021-09-25 07:11:50'),
(527, 1, 'bn', 'layout', 'your_restaurant', 'আপনার রেস্তোঁরা ব্যবসা', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(528, 1, 'bn', 'layout', 'name', 'নাম', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(529, 1, 'bn', 'layout', 'timing', 'সময়', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(530, 1, 'bn', 'layout', 'email', 'ইমেল', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(531, 1, 'bn', 'layout', 'phone_number', 'ফোন নম্বর', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(532, 1, 'bn', 'layout', 'currency', 'মুদ্রা', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(533, 1, 'bn', 'layout', 'type', 'প্রকার', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(534, 1, 'bn', 'layout', 'description', 'বর্ণনা', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(535, 1, 'bn', 'layout', 'location', 'অবস্থান', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(536, 1, 'bn', 'layout', 'cover', 'আবরণ', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(537, 1, 'bn', 'layout', 'profile', 'প্রোফাইল', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(538, 1, 'bn', 'layout', 'image', 'চিত্র', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(539, 1, 'bn', 'layout', 'status', 'স্থিতি', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(540, 1, 'bn', 'layout', 'total_item', 'মোট আইটেম', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(541, 1, 'bn', 'layout', 'active', 'সক্রিয়', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(542, 1, 'bn', 'layout', 'inactive', 'নিষ্ক্রিয়', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(543, 1, 'bn', 'layout', 'edit', 'সম্পাদনা করুন', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(544, 1, 'bn', 'layout', 'preview', 'পূর্বরূপ', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(545, 1, 'bn', 'layout', 'delete', 'মুছে ফেলা', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(546, 1, 'bn', 'layout', 'general_info', 'সাধারণ তথ্য', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(547, 1, 'bn', 'layout', 'image_upload', 'চিত্র আপলোড', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(548, 1, 'bn', 'layout', 'item_list', 'উপকরণ তালিকা', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(549, 1, 'bn', 'layout', 'item', 'আইটেম', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(550, 1, 'bn', 'layout', 'item_create', 'আইটেম তৈরি', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(551, 1, 'bn', 'layout', 'item_edit', 'আইটেম সম্পাদনা', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(552, 1, 'bn', 'layout', 'items', 'আইটেম', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(553, 1, 'bn', 'layout', 'item_name', 'আইটেম নাম', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(554, 1, 'bn', 'layout', 'item_details', 'আইটেমের বিশদ', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(555, 1, 'bn', 'layout', 'your_item', 'আপনার আইটেম', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(556, 1, 'bn', 'layout', 'title', 'শিরোনাম', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(557, 1, 'bn', 'layout', 'details', 'বিশদ', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(558, 1, 'bn', 'layout', 'price', 'দাম', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(559, 1, 'bn', 'layout', 'category', 'ক্যাটাগরি', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(560, 1, 'bn', 'layout', 'discount', 'ছাড়', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(561, 1, 'bn', 'layout', 'discount_type', 'ছাড়ের ধরণ', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(562, 1, 'bn', 'layout', 'discount_to', 'ছাড়', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(563, 1, 'bn', 'layout', 'item_image', 'আইটেম ইমেজ চয়ন করুন', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(564, 1, 'bn', 'layout', 'choose', 'পছন্দ করা', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(565, 1, 'bn', 'layout', 'confirmation', 'নিশ্চিতকরণ', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(566, 1, 'bn', 'layout', 'confirm', 'কনফার্ম', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(567, 1, 'bn', 'layout', 'cancel', 'বাতিল', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(568, 1, 'bn', 'layout', 'logout', 'প্রস্থান', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(569, 1, 'bn', 'layout', 'dashboard', 'ড্যাশবোর্ড', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(570, 1, 'bn', 'layout', 'hello', 'হ্যালো,', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(571, 1, 'bn', 'layout', 'all_notification', 'সমস্ত বিজ্ঞপ্তি প্রদর্শন করুন', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(572, 1, 'bn', 'layout', 'order_list', 'অর্ডার তালিকা', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(573, 1, 'bn', 'layout', 'order', 'অর্ডার', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(574, 1, 'bn', 'layout', 'orders', 'অর্ডার', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(575, 1, 'bn', 'layout', 'your_order', 'তোমার আদেশ', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(576, 1, 'bn', 'layout', 'table', 'টেবিল', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(577, 1, 'bn', 'layout', 'payment_status', 'লেনদেনের অবস্থা', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(578, 1, 'bn', 'layout', 'comment', 'মন্তব্য', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(579, 1, 'bn', 'layout', 'delivered_within', 'মধ্যে বিতরণ করা হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(580, 1, 'bn', 'layout', 'paid', 'প্রদত্ত', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(581, 1, 'bn', 'layout', 'unpaid', 'বিনা বেতনের', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(582, 1, 'bn', 'layout', 'pending', 'বিচারাধীন', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(583, 1, 'bn', 'layout', 'delivered', 'বিতরণ', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(584, 1, 'bn', 'layout', 'approved', 'অনুমোদিত', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(585, 1, 'bn', 'layout', 'rejected', 'প্রত্যাখ্যাত', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(586, 1, 'bn', 'layout', 'processing', 'প্রক্রিয়াজাতকরণ', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(587, 1, 'bn', 'layout', 'ready_for_delivery', 'সরবরাহের জন্য প্রস্তুত', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(588, 1, 'bn', 'layout', 'on_the_way', 'পথে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(589, 1, 'bn', 'layout', 'approve', 'অনুমোদন', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(590, 1, 'bn', 'layout', 'total_price', 'মোট দাম', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(591, 1, 'bn', 'layout', 'amount', 'পরিমাণ', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(592, 1, 'bn', 'layout', 'within', 'মধ্যে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(593, 1, 'bn', 'layout', 'time', 'সময়', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(594, 1, 'bn', 'layout', 'minutes', 'মিনিট', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(595, 1, 'bn', 'layout', 'hours', 'ঘন্টার', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(596, 1, 'bn', 'layout', 'days', 'দিনগুলি', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(597, 1, 'bn', 'layout', 'check_new_order', 'নতুন অর্ডার পরীক্ষা করুন', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(598, 1, 'bn', 'layout', 'customer', 'ক্রেতা', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(599, 1, 'bn', 'layout', 'quantity', 'পরিমাণ', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(600, 1, 'bn', 'layout', 'total', 'মোট', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(601, 1, 'bn', 'layout', 'grand_total', 'সর্বমোট', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(602, 1, 'bn', 'layout', 'total_discount', 'মোট ছাড়', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(603, 1, 'bn', 'layout', 'invoice_by', 'চালান দ্বারা', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(604, 1, 'bn', 'layout', 'invoice_to', 'চালান', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(605, 1, 'bn', 'layout', 'order_details', 'আদেশ বিবরণী', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(606, 1, 'bn', 'layout', 'message.item_create', 'আইটেমটি সফলভাবে তৈরি হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(607, 1, 'bn', 'layout', 'message.order_create', 'অর্ডার সফলভাবে তৈরি হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(608, 1, 'bn', 'layout', 'message.order_placed', 'আপনার অর্ডার সফলভাবে স্থাপন করা হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(609, 1, 'bn', 'layout', 'message.restaurant_create', 'রেস্তোঁরা সফলভাবে তৈরি করা হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(610, 1, 'bn', 'layout', 'message.item_update', 'আইটেমটি সফলভাবে আপডেট হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(611, 1, 'bn', 'layout', 'message.order_update', 'অর্ডার সফলভাবে আপডেট হয়েছে updated', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(612, 1, 'bn', 'layout', 'message.restaurant_update', 'রেস্তোঁরা সফলভাবে আপডেট হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(613, 1, 'bn', 'layout', 'message.order_status_update', 'অর্ডার স্থিতি সফলভাবে আপডেট হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(614, 1, 'bn', 'layout', 'message.order_not_found', 'অর্ডার পাওয়া যায় নি', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(615, 1, 'bn', 'layout', 'message.restaurant_not_found', 'রেস্তোঁরা খুঁজে পাওয়া যায়নি', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(616, 1, 'bn', 'layout', 'message.order_status_warning', 'আপনি কি এই স্ট্যাটাসটি <b class = \"text-red\"> :status </b> তে পরিবর্তন করবেন?', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(617, 1, 'bn', 'layout', 'message.item_delete', 'আইটেমটি সফলভাবে মোছা হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(618, 1, 'bn', 'layout', 'message.order_delete', 'অর্ডার সফলভাবে মোছা হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(619, 1, 'bn', 'layout', 'message.restaurant_delete', 'রেস্তোঁরা সফলভাবে মোছা হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(620, 1, 'bn', 'layout', 'message.item_delete_warning', 'আপনি এই আইটেমটি মুছে ফেলতে চান আপনি কি নিশ্চিত?', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(621, 1, 'bn', 'layout', 'message.order_delete_warning', 'আপনি কি নিশ্চিত যে আপনি এই অর্ডারটি মুছতে চান?', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(622, 1, 'bn', 'layout', 'message.restaurant_delete_warning', 'আপনি কি নিশ্চিত যে আপনি এই রেস্তোঁরাটি মুছতে চান?', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(623, 1, 'bn', 'layout', 'message.plan_update', 'পরিকল্পনা সফলভাবে আপডেট হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(624, 1, 'bn', 'layout', 'message.play_change_success', 'অভিনন্দন! আপনি সফলভাবে আপনার পরিকল্পনা পরিবর্তন করেছেন', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(625, 1, 'bn', 'layout', 'message.invalid_payment', 'উফফফফ! অবৈধ অর্থ প্রদানের অনুরোধ', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(626, 1, 'bn', 'layout', 'message.userplan_approve_success', 'ব্যবহারকারীর পরিকল্পনা সফলভাবে অনুমোদিত হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(627, 1, 'bn', 'layout', 'message.userplan_reject_success', 'ব্যবহারকারী পরিকল্পনা সফলভাবে প্রত্যাখ্যান', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(628, 1, 'bn', 'layout', 'message.userplan_status_change_msg', 'ব্যবহারকারীর পরিকল্পনার স্থিতি সফলভাবে পরিবর্তন', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(629, 1, 'bn', 'layout', 'message.userplan_approve_warning', 'আপনি কি নিশ্চিত যে আপনি এই পরিকল্পনাটি অনুমোদন করতে চান?', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(630, 1, 'bn', 'layout', 'message.userplan_reject_warning', 'আপনি কি নিশ্চিত যে আপনি এই পরিকল্পনাটি প্রত্যাখ্যান করতে চান?', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(631, 1, 'bn', 'layout', 'message.change_user_plan_warning', 'আপনি কি ব্যবহারকারী পরিকল্পনার স্থিতি পরিবর্তন করতে নিশ্চিত?', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(632, 1, 'bn', 'layout', 'message.category_update_message', 'বিভাগ আপডেট সফলভাবে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(633, 1, 'bn', 'layout', 'message.category_store_msg', 'বিভাগ সফলভাবে সঞ্চয় করা হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(634, 1, 'bn', 'layout', 'message.setting_update', 'সেটিং সফলভাবে আপডেট হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(635, 1, 'bn', 'layout', 'message.registration_success', 'অভিনন্দন! আমরা আপনাকে একটি নিশ্চিতকরণ মেইল ​​প্রেরণ করেছি', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(636, 1, 'bn', 'layout', 'message.verify', 'ইমেল সফলভাবে যাচাই করা হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(637, 1, 'bn', 'layout', 'message.verify_resend', 'যাচাইয়ের লিঙ্কটি আবার পাঠানো হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(638, 1, 'bn', 'layout', 'message.verify_text', 'প্রথমে আপনার ইমেলটি যাচাই করুন। আপনি আপনার যাচাইয়ের লিঙ্কটি আবার পাঠাতে পারেন', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(639, 1, 'bn', 'layout', 'message.user_not_found', 'ব্যবহারকারী খুঁজে পাওয়া যায় না. বৈধ ইমেল দিয়ে চেষ্টা করুন', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(640, 1, 'bn', 'layout', 'message.reset_link_send', 'আপনার ইমেলটিতে একটি নির্দেশনা প্রেরণ করা হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(641, 1, 'bn', 'layout', 'message.token_expired', 'টোকেনের মেয়াদ শেষ হয়ে গেছে বা ব্যবহার করা হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(642, 1, 'bn', 'layout', 'message.reset_successful', 'পাসওয়ার্ড সফলভাবে পুনরায় সেট করা হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(643, 1, 'bn', 'layout', 'message.category_delete_warning', 'আপনি কি এই বিভাগটি মুছে ফেলার বিষয়ে নিশ্চিত?', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(644, 1, 'bn', 'layout', 'message.category_delete', 'বিভাগ সফলভাবে মোছা হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(645, 1, 'bn', 'layout', 'message.plan_delete_warning', 'আপনি কি এই পরিকল্পনাটি মুছে ফেলার বিষয়ে নিশ্চিত?', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(646, 1, 'bn', 'layout', 'message.plan_delete_msg', 'পরিকল্পনা সফলভাবে মোছা হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(647, 1, 'bn', 'layout', 'message.table_delete_msg', 'সারণি সফলভাবে মোছা হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(648, 1, 'bn', 'layout', 'message.table_delete_warning', 'আপনি কি এই টেবিলটি মুছে ফেলার বিষয়ে নিশ্চিত?', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(649, 1, 'bn', 'layout', 'message.table_not_delete', 'উফফফফ! সারণী ইতিমধ্যে ব্যবহার করা হয়', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(650, 1, 'bn', 'layout', 'message.category_not_delete', 'উফফফফ! বিভাগ ইতিমধ্যে ব্যবহার করা হয়', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(651, 1, 'bn', 'layout', 'message.item_not_delete', 'উফফফফ! আইটেম ইতিমধ্যে ব্যবহার করা হয়', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(652, 1, 'bn', 'layout', 'message.plan_not_delete', 'উফফফফ! পরিকল্পনা ইতিমধ্যে ব্যবহার করা হয়', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(653, 1, 'bn', 'layout', 'message.restaurant_not_delete', 'উফফফফ! রেস্তোঁরাটি ইতিমধ্যে ব্যবহৃত', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(654, 1, 'bn', 'layout', 'message.pending_configuration', 'আপনাকে প্রথমে আপনার সেটিংস কনফিগার করতে হবে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(655, 1, 'bn', 'layout', 'message.invalid_request', 'অনুরোধ অগ্রহণযোগ্য', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(656, 1, 'bn', 'layout', 'message.upgrade_notification', 'আপনার পরিকল্পনার মেয়াদ শেষ হয়ে গেছে দয়া করে আপগ্রেড করুন', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(657, 1, 'bn', 'layout', 'message.request_received', 'আমরা আপনার অনুরোধ পেয়েছি। আমরা খুব শীঘ্রই আপনি সাথে যোগাযোগ করবে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(658, 1, 'bn', 'layout', 'message.cancel_payment', 'অর্থ প্রদান বাতিল করা হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(659, 1, 'bn', 'layout', 'message.upload_success', 'চিত্র সফলভাবে আপলোড হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(660, 1, 'bn', 'layout', 'message.update_failed', 'উফ! হালনাগাদ ব্যর্থ হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(661, 1, 'bn', 'layout', 'message.tax_delete_warning', 'আপনি কি এই কর মুছে ফেলার বিষয়ে নিশ্চিত?', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(662, 1, 'bn', 'layout', 'message.table_success_msg', 'সারণি সফলভাবে তৈরি করা হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(663, 1, 'bn', 'layout', 'message.table_update_msg', 'সারণি সফলভাবে আপডেট হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(664, 1, 'bn', 'layout', 'message.tax_success_msg', 'ট্যাক্স সফলভাবে তৈরি করা হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(665, 1, 'bn', 'layout', 'message.tax_update_msg', 'ট্যাক্স সফলভাবে আপডেট হয়েছে', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(666, 1, 'bn', 'layout', 'settings_title', 'সেটিংস', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(667, 1, 'bn', 'layout', 'general_settings', 'সাধারণ সেটিংস', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(668, 1, 'bn', 'layout', 'general', 'সাধারণ', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(669, 1, 'bn', 'layout', 'password_change', 'পাসওয়ার্ড পরিবর্তন করুন', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(670, 1, 'bn', 'layout', 'email_settings', 'ইমেল সেটিংস', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(671, 1, 'bn', 'layout', 'site_settings', 'সাইট সেটিংস', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(672, 1, 'bn', 'layout', 'local_settings', 'স্থানীয় সেটিংস', '2021-09-25 07:11:51', '2021-09-25 07:11:51'),
(673, 1, 'bn', 'layout', 'email_template', 'ইমেল টেম্পলেট', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(674, 1, 'bn', 'layout', 'picture', 'ছবি', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(675, 1, 'bn', 'layout', 'submit', 'জমা দিন', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(676, 1, 'bn', 'layout', 'old_password', 'পুরানো পাসওয়ার্ড', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(677, 1, 'bn', 'layout', 'new_password', 'নতুন পাসওয়ার্ড', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(678, 1, 'bn', 'layout', 'confirm_password', 'পাসওয়ার্ড নিশ্চিত করুন', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(679, 1, 'bn', 'layout', 'host', 'হোস্ট', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(680, 1, 'bn', 'layout', 'password', 'পাসওয়ার্ড', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(681, 1, 'bn', 'layout', 'port', 'বন্দর', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(682, 1, 'bn', 'layout', 'username', 'ব্যবহারকারীর নাম', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(683, 1, 'bn', 'layout', 'encrypt_type', 'এনক্রিপশন টাইপ', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(684, 1, 'bn', 'layout', 'registration', 'নিবন্ধন', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(685, 1, 'bn', 'layout', 'forget_password', 'পাসওয়ার্ড ভুলে গেছেন', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(686, 1, 'bn', 'layout', 'order_placed', 'আদেশ স্থাপন', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(687, 1, 'bn', 'layout', 'order_status', 'অর্ডারের অবস্থা', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(688, 1, 'bn', 'layout', 'email_subject', 'ইমেইল বিষয়', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(689, 1, 'bn', 'layout', 'email_body', 'ইমেল বডি', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(690, 1, 'bn', 'layout', 'email_from', 'থেকে ইমেল', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(691, 1, 'bn', 'layout', 'plan_request', 'পরিকল্পনা অনুরোধ', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(692, 1, 'bn', 'layout', 'plan_accept', 'পরিকল্পনা গৃহীত হয়েছে', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(693, 1, 'bn', 'layout', 'plan_expire', 'পরিকল্পনা সমাপ্ত', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(694, 1, 'bn', 'layout', 'payment_gateway', 'পেমেন্ট গেটওয়ে', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(695, 1, 'bn', 'layout', 'sms_gateway', 'এসএমএস গেটওয়ে', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(696, 1, 'bn', 'layout', 'stripe', 'ডোরা', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(697, 1, 'bn', 'layout', 'offline', 'অফলাইন', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(698, 1, 'bn', 'layout', 'bank_name', 'ব্যাংকের নাম', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(699, 1, 'bn', 'layout', 'bank_branch', 'ব্যাংকের শাখা', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(700, 1, 'bn', 'layout', 'account_name', 'হিসাবের নাম', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(701, 1, 'bn', 'layout', 'account_number', 'হিসাব নাম্বার', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(702, 1, 'bn', 'layout', 'transaction_id', 'লেনদেন নাম্বার', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(703, 1, 'bn', 'layout', 'reference', 'রেফারেন্স', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(704, 1, 'bn', 'layout', 'client_id_key', 'ক্লায়েন্টআইডি কী', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(705, 1, 'bn', 'layout', 'client_secret_key', 'ক্লায়েন্ট সিক্রেট কী', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(706, 1, 'bn', 'layout', 'publish_key', 'প্রকাশযোগ্য কী', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(707, 1, 'bn', 'layout', 'secret_key', 'গোপন চাবি', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(708, 1, 'bn', 'layout', 'twilio', 'টিভিলিও', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(709, 1, 'bn', 'layout', 'voyager', 'ভ্রমণ', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(710, 1, 'bn', 'layout', 'signalwire', 'সিগন্যাল', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(711, 1, 'bn', 'layout', 'sid', 'এসআইডি', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(712, 1, 'bn', 'layout', 'token', 'টোকেন', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(713, 1, 'bn', 'layout', 'project_id', 'প্রকল্পের আইডি', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(714, 1, 'bn', 'layout', 'space_url', 'স্পেস ইউআরএল', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(715, 1, 'bn', 'layout', 'api_key', 'অপি কীয়', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(716, 1, 'bn', 'layout', 'api_secret', 'অপি গোপন', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(717, 1, 'bn', 'layout', 'plan_title', 'পরিকল্পনা তালিকা', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(718, 1, 'bn', 'layout', 'plan', 'পরিকল্পনা সমূহ', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(719, 1, 'bn', 'layout', 'cost', 'ব্যয়', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(720, 1, 'bn', 'layout', 'recurring_type', 'পুনরাবৃত্তি টাইপ', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(721, 1, 'bn', 'layout', 'table_limit', 'সারণির সীমা', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(722, 1, 'bn', 'layout', 'restaurant_limit', 'রেস্তোঁরা সীমা', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(723, 1, 'bn', 'layout', 'item_limit', 'আইটেম সীমা', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(724, 1, 'bn', 'layout', 'unlimited_support', 'সীমাহীন সমর্থন', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(725, 1, 'bn', 'layout', 'action', 'কর্ম', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(726, 1, 'bn', 'layout', 'onetime', 'একবার', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(727, 1, 'bn', 'layout', 'weekly', 'সাপ্তাহিক', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(728, 1, 'bn', 'layout', 'monthly', 'মাসিক', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(729, 1, 'bn', 'layout', 'yearly', 'বার্ষিক', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(730, 1, 'bn', 'layout', 'plan_edit', 'পরিকল্পনা সম্পাদনা করুন', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(731, 1, 'bn', 'layout', 'no_of_capacity', 'সক্ষমতা নেই', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(732, 1, 'bn', 'layout', 'position', 'অবস্থান', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(733, 1, 'bn', 'layout', 'payment_title', 'পেমেন্ট', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(734, 1, 'bn', 'layout', 'payment_method', 'মূল্যপরিশোধ পদ্ধতি', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(735, 1, 'bn', 'layout', 'card_name', 'কার্ডের ওপর নাম', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(736, 1, 'bn', 'layout', 'card_number', 'কার্ড নম্বর', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(737, 1, 'bn', 'layout', 'cvc', 'সিভিসি', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(738, 1, 'bn', 'layout', 'expiration', 'মেয়াদোত্তীর্ণতা', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(739, 1, 'bn', 'layout', 'pay_plan_title', 'পরিকল্পনা শিরোনাম', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(740, 1, 'bn', 'layout', 'start_date', 'শুরুর তারিখ', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(741, 1, 'bn', 'layout', 'expiry_date', 'সমাপ্তির তারিখ', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(742, 1, 'bn', 'layout', 'other_info', 'অন্যান্য তথ্য', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(743, 1, 'bn', 'layout', 'total_cost', 'মোট খরচ', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(744, 1, 'bn', 'layout', 'lifetime', 'লাইফটাইম', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(745, 1, 'bn', 'layout', 'pay_now', 'Pay Now', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(746, 1, 'bn', 'layout', 'credit_or_debit', 'ক্রেডিট অথবা ডেবিট কার্ড', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(747, 1, 'bn', 'layout', 'restaurant_extends', 'রেস্তোঁরা সীমা প্রসারিত বা মেয়াদোত্তীর্ণ। আপনার পরিকল্পনা আপগ্রেড করুন', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(748, 1, 'bn', 'layout', 'table_extends', 'সারণির সীমা প্রসারিত বা মেয়াদোত্তীর্ণ। আপনার পরিকল্পনা আপগ্রেড করুন', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(749, 1, 'bn', 'layout', 'item_extends', 'আইটেম সীমা প্রসারিত বা মেয়াদোত্তীর্ণ। আপনার পরিকল্পনা আপগ্রেড করুন', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(750, 1, 'bn', 'layout', 'user_plan_title', 'ব্যবহারকারী পরিকল্পনা', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(751, 1, 'bn', 'layout', 'user_plan', 'ব্যবহারকারী পরিকল্পনা', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(752, 1, 'bn', 'layout', 'plan_name', 'পরিকল্পনা শিরোনাম', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(753, 1, 'bn', 'layout', 'reject', 'প্রত্যাখ্যান', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(754, 1, 'bn', 'layout', 'demo', 'ডেমো', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(755, 1, 'bn', 'layout', 'pricing', 'মূল্য নির্ধারণ', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(756, 1, 'bn', 'layout', 'join', 'যোগদান', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(757, 1, 'bn', 'layout', 'signup', 'নিবন্ধন করুন', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(758, 1, 'bn', 'layout', 'total_restaurant', 'মোট রেস্তোঁরা', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(759, 1, 'bn', 'layout', 'total_order_amount', 'মোট অর্ডার পরিমাণ', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(760, 1, 'bn', 'layout', 'total_income', 'মোট আয়', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(761, 1, 'bn', 'layout', 'pending_order', 'মুলতুবি আদেশ', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(762, 1, 'bn', 'layout', 'pending_plan', 'মুলতুবি পরিকল্পনা', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(763, 1, 'bn', 'layout', 'category_create_title', 'বিভাগ-তৈরি', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(764, 1, 'bn', 'layout', 'category_create', 'বিভাগ তৈরি', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(765, 1, 'bn', 'layout', 'category_edit_title', 'বিভাগ-সম্পাদনা', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(766, 1, 'bn', 'layout', 'category_edit', 'বিভাগ সম্পাদনা', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(767, 1, 'bn', 'layout', 'qr_maker', 'কিউআর মেকার', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(768, 1, 'bn', 'layout', 'settings', 'সেটিংস', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(769, 1, 'bn', 'layout', 'generate', 'উত্পন্ন', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(770, 1, 'bn', 'layout', 'restaurant_select', 'রেস্তোঁরা নির্বাচন করুন', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(771, 1, 'bn', 'layout', 'table_select', 'টেবিল নির্বাচন করুন', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(772, 1, 'bn', 'layout', 'fill_color', 'রঙ পূরণ করুন', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(773, 1, 'bn', 'layout', 'bg_color', 'পেছনের রঙ', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(774, 1, 'bn', 'layout', 'text_color', 'লেখার রঙ', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(775, 1, 'bn', 'layout', 'mode', 'মোড', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(776, 1, 'bn', 'layout', 'design_type', 'ডিজাইনের ধরণ', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(777, 1, 'bn', 'layout', 'normal', 'সাধারণ', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(778, 1, 'bn', 'layout', 'text_strip', 'পাঠ্য স্ট্রিপ', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(779, 1, 'bn', 'layout', 'image_strip', 'চিত্র স্ট্রিপ', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(780, 1, 'bn', 'layout', 'text', 'পাঠ্য', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(781, 1, 'bn', 'layout', 'size', 'আকার', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(782, 1, 'bn', 'layout', 'pos_x', 'পোস্টএক্স', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(783, 1, 'bn', 'layout', 'pos_y', 'শুভ', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(784, 1, 'bn', 'layout', 'role_permission', 'অনুমতি', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(785, 1, 'bn', 'layout', 'verify_email', 'আপনার ইমেইল যাচাই করুন', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(786, 1, 'bn', 'layout', 'enter_code', 'আপনার কোড লিখুন', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(787, 1, 'bn', 'layout', 'verify', 'যাচাই করুন', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(788, 1, 'bn', 'layout', 'resend', 'পুনরায় পাঠান', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(789, 1, 'bn', 'layout', 'billings', 'বিলিংস', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(790, 1, 'bn', 'layout', 'download', 'ডাউনলোড করুন', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(791, 1, 'bn', 'layout', 'my_order', 'আমার নির্দেশনা', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(792, 1, 'bn', 'layout', 'add', 'অ্যাড', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(793, 1, 'bn', 'layout', 'overview', 'ওভারভিউ', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(794, 1, 'bn', 'layout', 'payment', 'পেমেন্ট', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(795, 1, 'bn', 'layout', 'place_order', 'স্থান অর্ডার', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(796, 1, 'bn', 'layout', 'upgrade', 'আপগ্রেড', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(797, 1, 'bn', 'layout', 'login', 'প্রবেশ করুন', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(798, 1, 'bn', 'layout', 'date_time_format', 'ডেটটাইম ফর্ম্যাট', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(799, 1, 'bn', 'layout', 'date_time_separator', 'ডেটটাইম বিভাজনকারী', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(800, 1, 'bn', 'layout', 'timezone', 'সময় অঞ্চল', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(801, 1, 'bn', 'layout', 'decimal_format', 'দশমিক ফর্ম্যাট', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(802, 1, 'bn', 'layout', 'language', 'ভাষা', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(803, 1, 'bn', 'layout', 'currency_symbol', 'মুদ্রার প্রতীক', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(804, 1, 'bn', 'layout', 'currency_symbol_position', 'প্রতীক অবস্থান', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(805, 1, 'bn', 'layout', 'before', 'আগে', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(806, 1, 'bn', 'layout', 'after', 'পরে', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(807, 1, 'bn', 'layout', 'bengali', 'বাংলা', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(808, 1, 'bn', 'layout', 'english', 'English', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(809, 1, 'bn', 'layout', 'arabic', 'عربى', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(810, 1, 'bn', 'layout', 'hindi', 'हिंदी', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(811, 1, 'bn', 'layout', 'spanish', 'Español', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(812, 1, 'bn', 'layout', 'japanese', '日本人', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(813, 1, 'bn', 'layout', 'portuguese', 'Português', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(814, 1, 'bn', 'layout', 'thousand_separator', 'হাজার বিভাজক', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(815, 1, 'bn', 'layout', 'decimals', 'দশমিক', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(816, 1, 'bn', 'layout', 'decimal_point', 'দশমিক বিন্দু', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(817, 1, 'bn', 'layout', 'all_right_reserved', 'সমস্ত অধিকার সংরক্ষিত', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(818, 1, 'bn', 'layout', 'copyright_footer', 'কপিরাইট © ডিজাইন এবং ডেভেলপ  করেছেন', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(819, 1, 'bn', 'layout', 'click_here', 'এখানে ক্লিক করুন', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(820, 1, 'bn', 'layout', 'pay_on_table', 'টেবিলের উপর অর্থ প্রদান করুন', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(821, 1, 'bn', 'layout', 'currency_code', 'মুদ্রা কোড', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(822, 1, 'bn', 'layout', 'paytm', 'পেইটিএম', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(823, 1, 'bn', 'layout', 'find_yours', 'আপনার কোডটি সন্ধান করুন', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(824, 1, 'bn', 'layout', 'pay_with_paytm', 'পেইটিএম সহ পে', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(825, 1, 'bn', 'layout', 'paypal_des', 'পগ কম পেপাল', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(826, 1, 'bn', 'layout', 'paypal', 'পেপাল', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(827, 1, 'bn', 'layout', 'paytm_environment', 'পরিবেশ', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(828, 1, 'bn', 'layout', 'paytm_mid', 'মার্চেন্ট আইডি', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(829, 1, 'bn', 'layout', 'paytm_secret_key', 'গোপন কী', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(830, 1, 'bn', 'layout', 'paytm_website', 'ওয়েবসাইট', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(831, 1, 'bn', 'layout', 'paytm_txn_url', 'লেনদেনের URL', '2021-09-25 07:11:52', '2021-09-25 07:11:52'),
(832, 1, 'bn', 'layout', 'choose_template', 'টেম্পলেট চয়ন করুন', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(833, 1, 'bn', 'layout', 'classic', 'ক্লাসিক', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(834, 1, 'bn', 'layout', 'modern', 'আধুনিক', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(835, 1, 'bn', 'layout', 'flipbook', 'ফ্লিপবুক', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(836, 1, 'bn', 'layout', 'custom', 'কাস্টম', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(837, 1, 'bn', 'layout', 'custom_menu', 'কাস্টম মেনু', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(838, 1, 'bn', 'layout', 'add_menu', 'মেনু যুক্ত করুন', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(839, 1, 'bn', 'layout', 'enter_name', 'নাম লিখুন', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(840, 1, 'bn', 'layout', 'header', 'শিরোনাম', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(841, 1, 'bn', 'layout', 'enter_header', 'শিরোনাম প্রবেশ করুন', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(842, 1, 'bn', 'layout', 'footer', 'পাদলেখ', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(843, 1, 'bn', 'layout', 'enter_footer', 'পাদলেখ প্রবেশ করুন', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(844, 1, 'bn', 'layout', 'enter_description', 'বর্ণনা লিখুন', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(845, 1, 'bn', 'layout', 'enter_title', 'শিরোনাম লিখুন', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(846, 1, 'bn', 'layout', 'basic', 'বেসিক', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(847, 1, 'bn', 'layout', 'extra', 'অতিরিক্ত', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(848, 1, 'bn', 'layout', 'add_extra', 'অতিরিক্ত যুক্ত করুন', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(849, 1, 'bn', 'layout', 'add_extra_name', 'অতিরিক্ত নাম লিখুন', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(850, 1, 'bn', 'layout', 'enter_price', 'দাম দিন', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(851, 1, 'bn', 'layout', 'item_extra', 'আইটেম\'র অতিরিক্ত', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(852, 1, 'bn', 'layout', 'process', 'প্রক্রিয়া', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(853, 1, 'bn', 'layout', 'phone', 'ফোন', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(854, 1, 'bn', 'layout', 'address', 'ঠিকানা', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(855, 1, 'bn', 'layout', 'is_unlimited', 'কি সীমাহীন?', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(856, 1, 'bn', 'layout', 'unlimited', 'আনলিমিটেড', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(857, 1, 'bn', 'layout', 'tax', 'কর', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(858, 1, 'bn', 'layout', 'tax_create', 'কর তৈরি করুন', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(859, 1, 'bn', 'layout', 'tax_edit', 'কর সম্পাদনা', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(860, 1, 'bn', 'layout', 'taxes', 'কর', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(861, 1, 'bn', 'layout', 'tax_title', 'শিরোনাম', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(862, 1, 'bn', 'layout', 'flat', 'ফ্ল্যাট', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(863, 1, 'bn', 'layout', 'percentage', 'শতাংশ', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(864, 1, 'bn', 'layout', 'print', 'মুদ্রণ', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(865, 1, 'bn', 'layout', 'pdf', 'পিডিএফ', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(866, 1, 'bn', 'layout', 'total_tax', 'মোট কর', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(867, 1, 'bn', 'layout', 'view_basket', 'ঝুড়ি দেখুন', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(868, 1, 'bn', 'layout', 'all_categories', 'সমস্ত বিভাগ', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(869, 1, 'bn', 'layout', 'germany', 'Deutsch', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(870, 1, 'bn', 'layout', 'select_delivery_type', 'Select Delivery Type', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(871, 1, 'bn', 'layout', 'modal_title', 'Modal title', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(872, 1, 'bn', 'layout', 'close', 'Close', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(873, 1, 'bn', 'layout', 'cash_on_delivery', 'Cash on Delivery', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(874, 1, 'bn', 'layout', 'delivery_address', 'Delivery address', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(875, 1, 'bn', 'layout', 'ex_2806_montague_rd_bC_canada', 'Ex: 2806 Montague Rd, BC, Canada', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(876, 1, 'bn', 'layout', 'view_order', 'View Order', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(877, 1, 'bn', 'layout', 'credit_or_debit_card', 'Credit or Debit card', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(878, 1, 'bn', 'layout', 'order_overview', 'Order  overview', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(879, 1, 'bn', 'layout', 'payment_type', 'Payment Type', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(880, 1, 'bn', 'layout', 'select_a_payment_type', 'Select a payment type', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(881, 1, 'bn', 'layout', 'pay_in_cash', 'Pay in cash', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(882, 1, 'bn', 'layout', 'pay_in_paytm', 'Pay in paytm', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(883, 1, 'bn', 'layout', 'cash', 'Cash', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(884, 1, 'bn', 'layout', 'ex_Need_extra_spoon', 'Ex: Need extra spoon', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(885, 1, 'bn', 'layout', 'ex_example_mail_com', 'Ex: example@mail.com', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(886, 1, 'bn', 'layout', 'ex_number', 'Ex: +140139485764', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(887, 1, 'bn', 'layout', 'ex_jone_doe', 'Ex: Jone Doe', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(888, 1, 'bn', 'pagination', 'previous', '&laquo; Previous', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(889, 1, 'bn', 'pagination', 'next', 'Next &raquo;', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(890, 1, 'bn', 'passwords', 'reset', 'Your password has been reset!', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(891, 1, 'bn', 'passwords', 'sent', 'We have emailed your password reset link!', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(892, 1, 'bn', 'passwords', 'throttled', 'Please wait before retrying.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(893, 1, 'bn', 'passwords', 'token', 'This password reset token is invalid.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(894, 1, 'bn', 'passwords', 'user', 'We can\'t find a user with that email address.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(895, 1, 'bn', 'validation', 'accepted', 'The :attribute must be accepted.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(896, 1, 'bn', 'validation', 'active_url', 'The :attribute is not a valid URL.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(897, 1, 'bn', 'validation', 'after', 'The :attribute must be a date after :date.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(898, 1, 'bn', 'validation', 'after_or_equal', 'The :attribute must be a date after or equal to :date.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(899, 1, 'bn', 'validation', 'alpha', 'The :attribute may only contain letters.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(900, 1, 'bn', 'validation', 'alpha_dash', 'The :attribute may only contain letters, numbers, dashes and underscores.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(901, 1, 'bn', 'validation', 'alpha_num', 'The :attribute may only contain letters and numbers.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(902, 1, 'bn', 'validation', 'array', 'The :attribute must be an array.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(903, 1, 'bn', 'validation', 'before', 'The :attribute must be a date before :date.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(904, 1, 'bn', 'validation', 'before_or_equal', 'The :attribute must be a date before or equal to :date.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(905, 1, 'bn', 'validation', 'between.numeric', 'The :attribute must be between :min and :max.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(906, 1, 'bn', 'validation', 'between.file', 'The :attribute must be between :min and :max kilobytes.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(907, 1, 'bn', 'validation', 'between.string', 'The :attribute must be between :min and :max characters.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(908, 1, 'bn', 'validation', 'between.array', 'The :attribute must have between :min and :max items.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(909, 1, 'bn', 'validation', 'boolean', 'The :attribute field must be true or false.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(910, 1, 'bn', 'validation', 'confirmed', 'The :attribute confirmation does not match.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(911, 1, 'bn', 'validation', 'date', 'The :attribute is not a valid date.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(912, 1, 'bn', 'validation', 'date_equals', 'The :attribute must be a date equal to :date.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(913, 1, 'bn', 'validation', 'date_format', 'The :attribute does not match the format :format.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(914, 1, 'bn', 'validation', 'different', 'The :attribute and :other must be different.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(915, 1, 'bn', 'validation', 'digits', 'The :attribute must be :digits digits.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(916, 1, 'bn', 'validation', 'digits_between', 'The :attribute must be between :min and :max digits.', '2021-09-25 07:11:53', '2021-09-25 07:11:53');
INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES
(917, 1, 'bn', 'validation', 'dimensions', 'The :attribute has invalid image dimensions.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(918, 1, 'bn', 'validation', 'distinct', 'The :attribute field has a duplicate value.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(919, 1, 'bn', 'validation', 'email', 'The :attribute must be a valid email address.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(920, 1, 'bn', 'validation', 'ends_with', 'The :attribute must end with one of the following: :values.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(921, 1, 'bn', 'validation', 'exists', 'The selected :attribute is invalid.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(922, 1, 'bn', 'validation', 'file', 'The :attribute must be a file.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(923, 1, 'bn', 'validation', 'filled', 'The :attribute field must have a value.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(924, 1, 'bn', 'validation', 'gt.numeric', 'The :attribute must be greater than :value.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(925, 1, 'bn', 'validation', 'gt.file', 'The :attribute must be greater than :value kilobytes.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(926, 1, 'bn', 'validation', 'gt.string', 'The :attribute must be greater than :value characters.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(927, 1, 'bn', 'validation', 'gt.array', 'The :attribute must have more than :value items.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(928, 1, 'bn', 'validation', 'gte.numeric', 'The :attribute must be greater than or equal :value.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(929, 1, 'bn', 'validation', 'gte.file', 'The :attribute must be greater than or equal :value kilobytes.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(930, 1, 'bn', 'validation', 'gte.string', 'The :attribute must be greater than or equal :value characters.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(931, 1, 'bn', 'validation', 'gte.array', 'The :attribute must have :value items or more.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(932, 1, 'bn', 'validation', 'image', 'The :attribute must be an image.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(933, 1, 'bn', 'validation', 'in', 'The selected :attribute is invalid.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(934, 1, 'bn', 'validation', 'in_array', 'The :attribute field does not exist in :other.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(935, 1, 'bn', 'validation', 'integer', 'The :attribute must be an integer.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(936, 1, 'bn', 'validation', 'ip', 'The :attribute must be a valid IP address.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(937, 1, 'bn', 'validation', 'ipv4', 'The :attribute must be a valid IPv4 address.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(938, 1, 'bn', 'validation', 'ipv6', 'The :attribute must be a valid IPv6 address.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(939, 1, 'bn', 'validation', 'json', 'The :attribute must be a valid JSON string.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(940, 1, 'bn', 'validation', 'lt.numeric', 'The :attribute must be less than :value.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(941, 1, 'bn', 'validation', 'lt.file', 'The :attribute must be less than :value kilobytes.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(942, 1, 'bn', 'validation', 'lt.string', 'The :attribute must be less than :value characters.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(943, 1, 'bn', 'validation', 'lt.array', 'The :attribute must have less than :value items.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(944, 1, 'bn', 'validation', 'lte.numeric', 'The :attribute must be less than or equal :value.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(945, 1, 'bn', 'validation', 'lte.file', 'The :attribute must be less than or equal :value kilobytes.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(946, 1, 'bn', 'validation', 'lte.string', 'The :attribute must be less than or equal :value characters.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(947, 1, 'bn', 'validation', 'lte.array', 'The :attribute must not have more than :value items.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(948, 1, 'bn', 'validation', 'max.numeric', 'The :attribute may not be greater than :max.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(949, 1, 'bn', 'validation', 'max.file', 'The :attribute may not be greater than :max kilobytes.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(950, 1, 'bn', 'validation', 'max.string', 'The :attribute may not be greater than :max characters.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(951, 1, 'bn', 'validation', 'max.array', 'The :attribute may not have more than :max items.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(952, 1, 'bn', 'validation', 'mimes', 'The :attribute must be a file of type: :values.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(953, 1, 'bn', 'validation', 'mimetypes', 'The :attribute must be a file of type: :values.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(954, 1, 'bn', 'validation', 'min.numeric', 'The :attribute must be at least :min.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(955, 1, 'bn', 'validation', 'min.file', 'The :attribute must be at least :min kilobytes.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(956, 1, 'bn', 'validation', 'min.string', 'The :attribute must be at least :min characters.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(957, 1, 'bn', 'validation', 'min.array', 'The :attribute must have at least :min items.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(958, 1, 'bn', 'validation', 'multiple_of', 'The :attribute must be a multiple of :value', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(959, 1, 'bn', 'validation', 'not_in', 'The selected :attribute is invalid.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(960, 1, 'bn', 'validation', 'not_regex', 'The :attribute format is invalid.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(961, 1, 'bn', 'validation', 'numeric', 'The :attribute must be a number.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(962, 1, 'bn', 'validation', 'password', 'The password is incorrect.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(963, 1, 'bn', 'validation', 'present', 'The :attribute field must be present.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(964, 1, 'bn', 'validation', 'regex', 'The :attribute format is invalid.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(965, 1, 'bn', 'validation', 'required', 'The :attribute field is required.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(966, 1, 'bn', 'validation', 'required_if', 'The :attribute field is required when :other is :value.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(967, 1, 'bn', 'validation', 'required_unless', 'The :attribute field is required unless :other is in :values.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(968, 1, 'bn', 'validation', 'required_with', 'The :attribute field is required when :values is present.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(969, 1, 'bn', 'validation', 'required_with_all', 'The :attribute field is required when :values are present.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(970, 1, 'bn', 'validation', 'required_without', 'The :attribute field is required when :values is not present.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(971, 1, 'bn', 'validation', 'required_without_all', 'The :attribute field is required when none of :values are present.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(972, 1, 'bn', 'validation', 'same', 'The :attribute and :other must match.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(973, 1, 'bn', 'validation', 'size.numeric', 'The :attribute must be :size.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(974, 1, 'bn', 'validation', 'size.file', 'The :attribute must be :size kilobytes.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(975, 1, 'bn', 'validation', 'size.string', 'The :attribute must be :size characters.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(976, 1, 'bn', 'validation', 'size.array', 'The :attribute must contain :size items.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(977, 1, 'bn', 'validation', 'starts_with', 'The :attribute must start with one of the following: :values.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(978, 1, 'bn', 'validation', 'string', 'The :attribute must be a string.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(979, 1, 'bn', 'validation', 'timezone', 'The :attribute must be a valid zone.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(980, 1, 'bn', 'validation', 'unique', 'The :attribute has already been taken.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(981, 1, 'bn', 'validation', 'uploaded', 'The :attribute failed to upload.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(982, 1, 'bn', 'validation', 'url', 'The :attribute format is invalid.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(983, 1, 'bn', 'validation', 'uuid', 'The :attribute must be a valid UUID.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(984, 1, 'bn', 'validation', 'custom.attribute-name.rule-name', 'custom-message', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(985, 1, 'en', 'auth', 'failed', 'These credentials do not match our records.', '2021-09-25 07:11:53', '2021-09-25 07:11:53'),
(986, 1, 'en', 'auth', 'throttle', 'Too many login attempts. Please try again in :seconds seconds.', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(987, 1, 'en', 'auth', 'sign_up_title', 'Sign up your account', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(988, 1, 'en', 'auth', 'name', 'Name', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(989, 1, 'en', 'auth', 'email', 'Email', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(990, 1, 'en', 'auth', 'password', 'Password', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(991, 1, 'en', 'auth', 'name_ex', 'Ex: John Doe', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(992, 1, 'en', 'auth', 'email_ex', 'Ex: hello@example.com', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(993, 1, 'en', 'auth', 'sign_up_btn', 'Sign up', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(994, 1, 'en', 'auth', 'allready_sign_in', 'Already have an account?', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(995, 1, 'en', 'auth', 'sign_in_attr', 'Log in', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(996, 1, 'en', 'auth', 'reg', 'Registration', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(997, 1, 'en', 'auth', 'agreement', 'By clicking Sign Up, you agree to our', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(998, 1, 'en', 'auth', 'terms_condition', 'Terms & Condition', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(999, 1, 'en', 'auth', 'privacy_policy', 'Privacy Policy', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1000, 1, 'en', 'auth', 'and', 'and', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1001, 1, 'en', 'auth', 'login_title', 'Login in your account', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1002, 1, 'en', 'auth', 'remember_pass', 'Remember me', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1003, 1, 'en', 'auth', 'forget_pass', 'Forgot Password', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1004, 1, 'en', 'auth', 'sign_in', 'Sign Me In', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1005, 1, 'en', 'auth', 'haven\'t_account', 'Don\'t have an account?', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1006, 1, 'en', 'auth', 'sign_up', 'Sign up', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1007, 1, 'en', 'auth', 'submit', 'SUBMIT', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1008, 1, 'en', 'auth', 'new_password', 'New password', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1009, 1, 'en', 'auth', 'old_password', 'Old password', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1010, 1, 'en', 'auth', 'con_password', 'Confirm password', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1011, 1, 'en', 'layout', 'home', 'Home', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1012, 1, 'en', 'layout', 'restaurant', 'Restaurant', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1013, 1, 'en', 'layout', 'restaurant_list', 'Restaurant list', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1014, 1, 'en', 'layout', 'restaurant_create', 'Restaurant create', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1015, 1, 'en', 'layout', 'restaurant_edit', 'Restaurant edit', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1016, 1, 'en', 'layout', 'restaurants', 'Restaurants', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1017, 1, 'en', 'layout', 'list', 'List', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1018, 1, 'en', 'layout', 'create', 'Create', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1019, 1, 'en', 'layout', 'your_restaurant', 'Your restaurant business', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1020, 1, 'en', 'layout', 'name', 'Name', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1021, 1, 'en', 'layout', 'timing', 'Timing', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1022, 1, 'en', 'layout', 'email', 'Email', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1023, 1, 'en', 'layout', 'phone_number', 'Phone Number', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1024, 1, 'en', 'layout', 'currency', 'Currency', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1025, 1, 'en', 'layout', 'type', 'Type', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1026, 1, 'en', 'layout', 'description', 'Description', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1027, 1, 'en', 'layout', 'location', 'Location', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1028, 1, 'en', 'layout', 'cover', 'Cover', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1029, 1, 'en', 'layout', 'profile', 'Profile', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1030, 1, 'en', 'layout', 'image', 'Image', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1031, 1, 'en', 'layout', 'status', 'Status', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1032, 1, 'en', 'layout', 'total_item', 'Total Item', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1033, 1, 'en', 'layout', 'active', 'Active', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1034, 1, 'en', 'layout', 'inactive', 'Inactive', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1035, 1, 'en', 'layout', 'edit', 'Edit', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1036, 1, 'en', 'layout', 'preview', 'Preview', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1037, 1, 'en', 'layout', 'delete', 'Delete', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1038, 1, 'en', 'layout', 'general_info', 'General Info', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1039, 1, 'en', 'layout', 'image_upload', 'Image Upload', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1040, 1, 'en', 'layout', 'item_list', 'Item List', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1041, 1, 'en', 'layout', 'item', 'Item', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1042, 1, 'en', 'layout', 'item_create', 'Item create', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1043, 1, 'en', 'layout', 'item_edit', 'Item edit', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1044, 1, 'en', 'layout', 'items', 'Items', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1045, 1, 'en', 'layout', 'item_name', 'Item name', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1046, 1, 'en', 'layout', 'item_details', 'Item details', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1047, 1, 'en', 'layout', 'your_item', 'Your Items', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1048, 1, 'en', 'layout', 'title', 'Title', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1049, 1, 'en', 'layout', 'details', 'Details', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1050, 1, 'en', 'layout', 'price', 'Price', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1051, 1, 'en', 'layout', 'category', 'Category', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1052, 1, 'en', 'layout', 'discount', 'Discount', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1053, 1, 'en', 'layout', 'discount_type', 'Discount Type', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1054, 1, 'en', 'layout', 'discount_to', 'Discount To', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1055, 1, 'en', 'layout', 'item_image', 'Choose item image', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1056, 1, 'en', 'layout', 'choose', 'Choose', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1057, 1, 'en', 'layout', 'confirmation', 'Confirmation', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1058, 1, 'en', 'layout', 'confirm', 'Confirm', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1059, 1, 'en', 'layout', 'cancel', 'Cancel', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1060, 1, 'en', 'layout', 'logout', 'Logout', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1061, 1, 'en', 'layout', 'dashboard', 'Dashboard', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1062, 1, 'en', 'layout', 'hello', 'Hello,', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1063, 1, 'en', 'layout', 'all_notification', 'Show all notifications', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1064, 1, 'en', 'layout', 'order_list', 'Order list', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1065, 1, 'en', 'layout', 'order', 'Order', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1066, 1, 'en', 'layout', 'orders', 'Orders', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1067, 1, 'en', 'layout', 'your_order', 'Your orders', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1068, 1, 'en', 'layout', 'table', 'Table', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1069, 1, 'en', 'layout', 'payment_status', 'Payment status', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1070, 1, 'en', 'layout', 'comment', 'Comment', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1071, 1, 'en', 'layout', 'delivered_within', 'Delivered within', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1072, 1, 'en', 'layout', 'paid', 'Paid', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1073, 1, 'en', 'layout', 'unpaid', 'Unpaid', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1074, 1, 'en', 'layout', 'pending', 'Pending', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1075, 1, 'en', 'layout', 'delivered', 'Delivered', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1076, 1, 'en', 'layout', 'approved', 'Approved', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1077, 1, 'en', 'layout', 'rejected', 'Rejected', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1078, 1, 'en', 'layout', 'processing', 'Processing', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1079, 1, 'en', 'layout', 'ready_for_delivery', 'Ready for delivery', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1080, 1, 'en', 'layout', 'on_the_way', 'On the way', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1081, 1, 'en', 'layout', 'approve', 'Approve', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1082, 1, 'en', 'layout', 'total_price', 'Total Price', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1083, 1, 'en', 'layout', 'amount', 'Amount', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1084, 1, 'en', 'layout', 'within', 'Within', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1085, 1, 'en', 'layout', 'time', 'Time', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1086, 1, 'en', 'layout', 'minutes', 'Minutes', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1087, 1, 'en', 'layout', 'hours', 'Hours', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1088, 1, 'en', 'layout', 'days', 'Days', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1089, 1, 'en', 'layout', 'check_new_order', 'Check new order', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1090, 1, 'en', 'layout', 'users', 'Users', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1091, 1, 'en', 'layout', 'customer', 'Customer', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1092, 1, 'en', 'layout', 'quantity', 'Quantity', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1093, 1, 'en', 'layout', 'total', 'Total', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1094, 1, 'en', 'layout', 'grand_total', 'Grand Total', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1095, 1, 'en', 'layout', 'total_discount', 'Total Discount', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1096, 1, 'en', 'layout', 'invoice_by', 'Invoice By', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1097, 1, 'en', 'layout', 'invoice_to', 'Invoice To', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1098, 1, 'en', 'layout', 'order_details', 'Order details', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1099, 1, 'en', 'layout', 'message.item_create', 'Item created successfully', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1100, 1, 'en', 'layout', 'message.order_create', 'Order created successfully', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1101, 1, 'en', 'layout', 'message.order_placed', 'Your order successfully placed', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1102, 1, 'en', 'layout', 'message.restaurant_create', 'Restaurant created successfully', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1103, 1, 'en', 'layout', 'message.item_update', 'Item updated successfully', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1104, 1, 'en', 'layout', 'message.order_update', 'Order updated successfully', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1105, 1, 'en', 'layout', 'message.restaurant_update', 'Restaurant updated successfully', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1106, 1, 'en', 'layout', 'message.order_status_update', 'Order status updated successfully', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1107, 1, 'en', 'layout', 'message.order_not_found', 'Order not found', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1108, 1, 'en', 'layout', 'message.restaurant_not_found', 'Restaurant not found', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1109, 1, 'en', 'layout', 'message.order_status_warning', 'Are you sure you to change the status to <b class=\"text-red\"> :status </b>?', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1110, 1, 'en', 'layout', 'message.item_delete', 'Item deleted successfully', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1111, 1, 'en', 'layout', 'message.order_delete', 'Order deleted successfully', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1112, 1, 'en', 'layout', 'message.restaurant_delete', 'Restaurant deleted successfully', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1113, 1, 'en', 'layout', 'message.item_delete_warning', 'Are you sure you want to delete this item?', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1114, 1, 'en', 'layout', 'message.order_delete_warning', 'Are you sure you want to delete this order?', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1115, 1, 'en', 'layout', 'message.restaurant_delete_warning', 'Are you sure you want to delete this restaurant?', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1116, 1, 'en', 'layout', 'message.plan_update', 'Plan updated successfully', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1117, 1, 'en', 'layout', 'message.play_change_success', 'Congratulation! You have changed your plan successfully', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1118, 1, 'en', 'layout', 'message.invalid_payment', 'Oops! Invalid payment request', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1119, 1, 'en', 'layout', 'message.userplan_approve_success', 'User plan approved successfully', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1120, 1, 'en', 'layout', 'message.userplan_reject_success', 'User plan rejected successfully', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1121, 1, 'en', 'layout', 'message.userplan_status_change_msg', 'User plan status changed successfully', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1122, 1, 'en', 'layout', 'message.userplan_approve_warning', 'Are you sure you want to approve this plan?', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1123, 1, 'en', 'layout', 'message.userplan_reject_warning', 'Are you sure you want to reject this plan?', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1124, 1, 'en', 'layout', 'message.change_user_plan_warning', 'Are you sure to change user plan status?', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1125, 1, 'en', 'layout', 'message.category_update_message', 'Category updated successfully', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1126, 1, 'en', 'layout', 'message.category_store_msg', 'Category stored successfully', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1127, 1, 'en', 'layout', 'message.setting_update', 'Setting updated successfully', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1128, 1, 'en', 'layout', 'message.registration_success', 'Congratulations! We have send you an confirmation mail', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1129, 1, 'en', 'layout', 'message.verify', 'Email verified successfully', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1130, 1, 'en', 'layout', 'message.verify_resend', 'Verification link sent again', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1131, 1, 'en', 'layout', 'message.verify_text', 'Please verify your email first. You can resend your verification link', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1132, 1, 'en', 'layout', 'message.user_not_found', 'User not found. Try with valid email', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1133, 1, 'en', 'layout', 'message.reset_link_send', 'An instruction has been sent to your email', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1134, 1, 'en', 'layout', 'message.token_expired', 'Token has been expired or used', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1135, 1, 'en', 'layout', 'message.reset_successful', 'Password has been reset successfully', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1136, 1, 'en', 'layout', 'message.category_delete_warning', 'Are you sure to delete this category?', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1137, 1, 'en', 'layout', 'message.category_delete', 'Category deleted successfully', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1138, 1, 'en', 'layout', 'message.plan_delete_warning', 'Are you sure to delete this plan?', '2021-09-25 07:11:54', '2021-09-25 07:11:54'),
(1139, 1, 'en', 'layout', 'message.plan_delete_msg', 'Plan deleted Successfully', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1140, 1, 'en', 'layout', 'message.table_delete_msg', 'Table deleted Successfully', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1141, 1, 'en', 'layout', 'message.table_delete_warning', 'Are you sure to delete this table?', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1142, 1, 'en', 'layout', 'message.table_not_delete', 'Oops! Table already is use', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1143, 1, 'en', 'layout', 'message.category_not_delete', 'Oops! Category already is use', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1144, 1, 'en', 'layout', 'message.item_not_delete', 'Oops! Item already is use', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1145, 1, 'en', 'layout', 'message.plan_not_delete', 'Oops! Plan already is use', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1146, 1, 'en', 'layout', 'message.restaurant_not_delete', 'Oops! Restaurant already is use', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1147, 1, 'en', 'layout', 'message.pending_configuration', 'You need to configure your settings first', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1148, 1, 'en', 'layout', 'message.invalid_request', 'Invalid request', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1149, 1, 'en', 'layout', 'message.upgrade_notification', 'Your plan has been expired please upgrade', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1150, 1, 'en', 'layout', 'message.request_received', 'We have received your request. We will contact you shortly', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1151, 1, 'en', 'layout', 'message.cancel_payment', 'Payment has been cancelled', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1152, 1, 'en', 'layout', 'message.upload_success', 'Image uploaded successfully', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1153, 1, 'en', 'layout', 'message.update_failed', 'Oops! Update failed', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1154, 1, 'en', 'layout', 'message.tax_delete_warning', 'Are you sure to delete this tax?', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1155, 1, 'en', 'layout', 'message.table_success_msg', 'Table created successfully', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1156, 1, 'en', 'layout', 'message.table_update_msg', 'Table updated successfully', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1157, 1, 'en', 'layout', 'message.tax_success_msg', 'Tax created successfully', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1158, 1, 'en', 'layout', 'message.tax_update_msg', 'Tax updated successfully', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1159, 1, 'en', 'layout', 'message.login_as', 'You are now logged as restaurant owner', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1160, 1, 'en', 'layout', 'message.login_as_warning', 'You will be logged out and logged in as a restaurant owner', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1161, 1, 'en', 'layout', 'message.customer_not_found', 'You can not delete this customer at this moment', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1162, 1, 'en', 'layout', 'message.customer_deleted', 'Customer deleted successfully', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1163, 1, 'en', 'layout', 'message.pdf_deleted', 'PDF delete successfully', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1164, 1, 'en', 'layout', 'message.customer_delete_warning', 'Are you sure to delete this customer?', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1165, 1, 'en', 'layout', 'message.restaurant_owner_created', 'Restaurant owner created successfully', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1166, 1, 'en', 'layout', 'message.role_added', 'Role added successfully', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1167, 1, 'en', 'layout', 'message.permission_update', 'User permission successfully updated', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1168, 1, 'en', 'layout', 'message.plan_update_first', 'Please upgrade your plan', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1169, 1, 'en', 'layout', 'message.select_a_table', 'Please select a table', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1170, 1, 'en', 'layout', 'message.select_payment_method', 'Please select  payment option first', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1171, 1, 'en', 'layout', 'settings_title', 'Settings', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1172, 1, 'en', 'layout', 'general_settings', 'General Settings', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1173, 1, 'en', 'layout', 'general', 'General', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1174, 1, 'en', 'layout', 'password_change', 'Change Password', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1175, 1, 'en', 'layout', 'email_settings', 'Email Settings', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1176, 1, 'en', 'layout', 'site_settings', 'Site Settings', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1177, 1, 'en', 'layout', 'local_settings', 'Local Settings', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1178, 1, 'en', 'layout', 'email_template', 'Email Template', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1179, 1, 'en', 'layout', 'picture', 'Picture', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1180, 1, 'en', 'layout', 'submit', 'Submit', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1181, 1, 'en', 'layout', 'old_password', 'Old Password', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1182, 1, 'en', 'layout', 'new_password', 'New Password', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1183, 1, 'en', 'layout', 'confirm_password', 'Confirm Password', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1184, 1, 'en', 'layout', 'host', 'Host', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1185, 1, 'en', 'layout', 'password', 'Password', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1186, 1, 'en', 'layout', 'port', 'Port', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1187, 1, 'en', 'layout', 'username', 'Username', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1188, 1, 'en', 'layout', 'encrypt_type', 'Encryption Type', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1189, 1, 'en', 'layout', 'registration', 'Registration', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1190, 1, 'en', 'layout', 'forget_password', 'Forget Password', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1191, 1, 'en', 'layout', 'order_placed', 'Order Placed', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1192, 1, 'en', 'layout', 'order_status', 'Order Status', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1193, 1, 'en', 'layout', 'email_subject', 'Email Subject', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1194, 1, 'en', 'layout', 'email_body', 'Email Body', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1195, 1, 'en', 'layout', 'email_from', 'Email From', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1196, 1, 'en', 'layout', 'plan_request', 'Plan request', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1197, 1, 'en', 'layout', 'plan_accept', 'Plan accepted', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1198, 1, 'en', 'layout', 'plan_expire', 'Plan Expired', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1199, 1, 'en', 'layout', 'payment_gateway', 'Payment gateway', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1200, 1, 'en', 'layout', 'sms_gateway', 'Sms gateway', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1201, 1, 'en', 'layout', 'stripe', 'Stripe', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1202, 1, 'en', 'layout', 'offline', 'Offline', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1203, 1, 'en', 'layout', 'bank_name', 'Bank name', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1204, 1, 'en', 'layout', 'bank_branch', 'Bank Branch', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1205, 1, 'en', 'layout', 'account_name', 'Account Name', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1206, 1, 'en', 'layout', 'account_number', 'Account Number', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1207, 1, 'en', 'layout', 'transaction_id', 'Transaction ID', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1208, 1, 'en', 'layout', 'reference', 'Reference', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1209, 1, 'en', 'layout', 'client_id_key', 'ClientID key', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1210, 1, 'en', 'layout', 'client_secret_key', 'Client Secret key', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1211, 1, 'en', 'layout', 'publish_key', 'Publishable key', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1212, 1, 'en', 'layout', 'secret_key', 'Secret key', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1213, 1, 'en', 'layout', 'twilio', 'Twilio', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1214, 1, 'en', 'layout', 'voyager', 'Voyager', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1215, 1, 'en', 'layout', 'signalwire', 'Signalwire', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1216, 1, 'en', 'layout', 'sid', 'SID', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1217, 1, 'en', 'layout', 'token', 'Token', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1218, 1, 'en', 'layout', 'project_id', 'Project ID', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1219, 1, 'en', 'layout', 'space_url', 'Space URL', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1220, 1, 'en', 'layout', 'api_key', 'Api key', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1221, 1, 'en', 'layout', 'api_secret', 'Api secret', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1222, 1, 'en', 'layout', 'plan_title', 'Plans List', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1223, 1, 'en', 'layout', 'plan', 'Plans', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1224, 1, 'en', 'layout', 'cost', 'Cost', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1225, 1, 'en', 'layout', 'recurring_type', 'Recurring type', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1226, 1, 'en', 'layout', 'table_limit', 'Table limit', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1227, 1, 'en', 'layout', 'restaurant_limit', 'Restaurant limit', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1228, 1, 'en', 'layout', 'item_limit', 'Item limit', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1229, 1, 'en', 'layout', 'unlimited_support', 'Unlimited support', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1230, 1, 'en', 'layout', 'action', 'Action', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1231, 1, 'en', 'layout', 'onetime', 'One time', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1232, 1, 'en', 'layout', 'weekly', 'Weekly', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1233, 1, 'en', 'layout', 'monthly', 'Monthly', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1234, 1, 'en', 'layout', 'yearly', 'Yearly', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1235, 1, 'en', 'layout', 'plan_edit', 'Plan edit', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1236, 1, 'en', 'layout', 'no_of_capacity', 'No of capacity', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1237, 1, 'en', 'layout', 'position', 'Position', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1238, 1, 'en', 'layout', 'payment_title', 'Payment', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1239, 1, 'en', 'layout', 'payment_method', 'Payment method', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1240, 1, 'en', 'layout', 'card_name', 'Name on card', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1241, 1, 'en', 'layout', 'card_number', 'Card number', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1242, 1, 'en', 'layout', 'cvc', 'CVC', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1243, 1, 'en', 'layout', 'expiration', 'Expiration', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1244, 1, 'en', 'layout', 'pay_plan_title', 'Plan Title', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1245, 1, 'en', 'layout', 'start_date', 'Start Date', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1246, 1, 'en', 'layout', 'expiry_date', 'Expiry Date', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1247, 1, 'en', 'layout', 'other_info', 'Other Info', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1248, 1, 'en', 'layout', 'total_cost', 'Total Cost', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1249, 1, 'en', 'layout', 'lifetime', 'Lifetime', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1250, 1, 'en', 'layout', 'pay_now', 'Pay Now', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1251, 1, 'en', 'layout', 'credit_or_debit', 'Credit or debit card', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1252, 1, 'en', 'layout', 'restaurant_extends', 'Restaurant limit extended or expired. Please upgrade your plan', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1253, 1, 'en', 'layout', 'table_extends', 'Table limit extended or expired. Please upgrade your plan', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1254, 1, 'en', 'layout', 'item_extends', 'Item limit extended or expired. Please upgrade your plan', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1255, 1, 'en', 'layout', 'user_plan_title', 'User Plan', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1256, 1, 'en', 'layout', 'user_plan', 'User plan', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1257, 1, 'en', 'layout', 'plan_name', 'Plan title', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1258, 1, 'en', 'layout', 'reject', 'Reject', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1259, 1, 'en', 'layout', 'demo', 'Demo', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1260, 1, 'en', 'layout', 'pricing', 'Pricing', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1261, 1, 'en', 'layout', 'join', 'Join', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1262, 1, 'en', 'layout', 'signup', 'Sign up', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1263, 1, 'en', 'layout', 'total_restaurant', 'Total Restaurant', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1264, 1, 'en', 'layout', 'total_order_amount', 'Total Order Amount', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1265, 1, 'en', 'layout', 'total_income', 'Total Income', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1266, 1, 'en', 'layout', 'pending_order', 'Pending Orders', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1267, 1, 'en', 'layout', 'pending_plan', 'Pending Plan', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1268, 1, 'en', 'layout', 'category_create_title', 'category-create', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1269, 1, 'en', 'layout', 'category_create', 'Category create', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1270, 1, 'en', 'layout', 'category_edit_title', 'category-edit', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1271, 1, 'en', 'layout', 'category_edit', 'Category edit', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1272, 1, 'en', 'layout', 'qr_maker', 'QR Maker', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1273, 1, 'en', 'layout', 'settings', 'Settings', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1274, 1, 'en', 'layout', 'generate', 'Generate', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1275, 1, 'en', 'layout', 'restaurant_select', 'Select restaurant', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1276, 1, 'en', 'layout', 'table_select', 'Select table', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1277, 1, 'en', 'layout', 'fill_color', 'Fill color', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1278, 1, 'en', 'layout', 'bg_color', 'Background color', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1279, 1, 'en', 'layout', 'text_color', 'Text color', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1280, 1, 'en', 'layout', 'mode', 'Mode', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1281, 1, 'en', 'layout', 'design_type', 'Design Type', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1282, 1, 'en', 'layout', 'normal', 'Normal', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1283, 1, 'en', 'layout', 'text_strip', 'Text Strip', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1284, 1, 'en', 'layout', 'image_strip', 'Image Strip', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1285, 1, 'en', 'layout', 'text', 'Text', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1286, 1, 'en', 'layout', 'size', 'Size', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1287, 1, 'en', 'layout', 'pos_x', 'PosX', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1288, 1, 'en', 'layout', 'pos_y', 'PosY', '2021-09-25 07:11:55', '2021-09-25 07:11:55'),
(1289, 1, 'en', 'layout', 'role_permission', 'Permission', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1290, 1, 'en', 'layout', 'verify_email', 'Verify your email', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1291, 1, 'en', 'layout', 'enter_code', 'Enter your code', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1292, 1, 'en', 'layout', 'verify', 'Verify', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1293, 1, 'en', 'layout', 'resend', 'Resend', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1294, 1, 'en', 'layout', 'billings', 'Billings', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1295, 1, 'en', 'layout', 'download', 'Download', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1296, 1, 'en', 'layout', 'my_order', 'My Orders', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1297, 1, 'en', 'layout', 'add', 'Add', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1298, 1, 'en', 'layout', 'overview', 'Overview', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1299, 1, 'en', 'layout', 'payment', 'Payment', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1300, 1, 'en', 'layout', 'place_order', 'Place order', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1301, 1, 'en', 'layout', 'upgrade', 'Upgrade', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1302, 1, 'en', 'layout', 'login', 'Login', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1303, 1, 'en', 'layout', 'date_time_format', 'Datetime Format', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1304, 1, 'en', 'layout', 'date_time_separator', 'Datetime Separator', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1305, 1, 'en', 'layout', 'timezone', 'Timezone', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1306, 1, 'en', 'layout', 'decimal_format', 'Decimal Format', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1307, 1, 'en', 'layout', 'language', 'Language', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1308, 1, 'en', 'layout', 'currency_symbol', 'Currency Symbol', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1309, 1, 'en', 'layout', 'currency_symbol_position', 'Symbol Position', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1310, 1, 'en', 'layout', 'before', 'Before', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1311, 1, 'en', 'layout', 'after', 'After', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1312, 1, 'en', 'layout', 'bengali', 'বাংলা', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1313, 1, 'en', 'layout', 'english', 'English', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1314, 1, 'en', 'layout', 'arabic', 'عربى', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1315, 1, 'en', 'layout', 'hindi', 'हिंदी', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1316, 1, 'en', 'layout', 'spanish', 'Español', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1317, 1, 'en', 'layout', 'japanese', '日本人', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1318, 1, 'en', 'layout', 'portuguese', 'Português', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1319, 1, 'en', 'layout', 'thousand_separator', 'Thousand Separator', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1320, 1, 'en', 'layout', 'decimals', 'Decimals', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1321, 1, 'en', 'layout', 'decimal_point', 'Decimal Point', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1322, 1, 'en', 'layout', 'all_right_reserved', 'All Rights Reserved', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1323, 1, 'en', 'layout', 'copyright_footer', 'Copyright © Designed & Developed by', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1324, 1, 'en', 'layout', 'click_here', 'Click Here', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1325, 1, 'en', 'layout', 'pay_on_table', 'Pay on table', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1326, 1, 'en', 'layout', 'currency_code', 'Currency Code', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1327, 1, 'en', 'layout', 'paytm', 'Paytm', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1328, 1, 'en', 'layout', 'find_yours', 'Find your code', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1329, 1, 'en', 'layout', 'pay_with_paytm', 'Pay with Paytm', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1330, 1, 'en', 'layout', 'paypal_des', 'Pay with Paypal', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1331, 1, 'en', 'layout', 'paypal', 'Paypal', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1332, 1, 'en', 'layout', 'paytm_environment', 'Environment', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1333, 1, 'en', 'layout', 'paytm_mid', 'Merchant ID', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1334, 1, 'en', 'layout', 'paytm_secret_key', 'Secret Key', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1335, 1, 'en', 'layout', 'paytm_website', 'Website', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1336, 1, 'en', 'layout', 'paytm_txn_url', 'Transaction URL', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1337, 1, 'en', 'layout', 'choose_template', 'Choose Template', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1338, 1, 'en', 'layout', 'classic', 'Classic', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1339, 1, 'en', 'layout', 'modern', 'Modern', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1340, 1, 'en', 'layout', 'flipbook', 'FlipBook', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1341, 1, 'en', 'layout', 'custom', 'Custom', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1342, 1, 'en', 'layout', 'custom_menu', 'Custom Menu', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1343, 1, 'en', 'layout', 'add_menu', 'Add Menu', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1344, 1, 'en', 'layout', 'enter_name', 'Enter name', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1345, 1, 'en', 'layout', 'header', 'Header', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1346, 1, 'en', 'layout', 'enter_header', 'Enter Header', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1347, 1, 'en', 'layout', 'footer', 'Footer', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1348, 1, 'en', 'layout', 'enter_footer', 'Enter Footer', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1349, 1, 'en', 'layout', 'enter_description', 'Enter Description', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1350, 1, 'en', 'layout', 'enter_title', 'Enter Title', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1351, 1, 'en', 'layout', 'basic', 'Basic', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1352, 1, 'en', 'layout', 'extra', 'Extra', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1353, 1, 'en', 'layout', 'add_extra', 'Add Extra', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1354, 1, 'en', 'layout', 'add_extra_name', 'Enter extra name', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1355, 1, 'en', 'layout', 'enter_price', 'Enter Price', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1356, 1, 'en', 'layout', 'item_extra', 'Item\'s Extra', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1357, 1, 'en', 'layout', 'process', 'Process', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1358, 1, 'en', 'layout', 'phone', 'Phone', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1359, 1, 'en', 'layout', 'address', 'Address', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1360, 1, 'en', 'layout', 'is_unlimited', 'Is Unlimited?', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1361, 1, 'en', 'layout', 'unlimited', 'Unlimited', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1362, 1, 'en', 'layout', 'tax', 'Tax', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1363, 1, 'en', 'layout', 'tax_create', 'Tax create', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1364, 1, 'en', 'layout', 'tax_edit', 'Tax edit', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1365, 1, 'en', 'layout', 'taxes', 'Taxes', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1366, 1, 'en', 'layout', 'tax_title', 'Tax title', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1367, 1, 'en', 'layout', 'flat', 'Flat', '2021-09-25 07:11:56', '2021-09-25 07:11:56');
INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES
(1368, 1, 'en', 'layout', 'percentage', 'Percentage', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1369, 1, 'en', 'layout', 'print', 'Print', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1370, 1, 'en', 'layout', 'pdf', 'PDF', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1371, 1, 'en', 'layout', 'total_tax', 'Total Tax', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1372, 1, 'en', 'layout', 'view_basket', 'View Basket', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1373, 1, 'en', 'layout', 'all_categories', 'All Categories', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1374, 1, 'en', 'layout', 'germany', 'Deutsch', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1375, 1, 'en', 'layout', 'choose_plan', 'Choose Plan', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1376, 1, 'en', 'layout', 'mollie', 'Mollie', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1377, 1, 'en', 'layout', 'pay_with_mollie', 'Pay with Mollie', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1378, 1, 'en', 'layout', 'all', 'All', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1379, 1, 'en', 'layout', 'login_as', 'Login As', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1380, 1, 'en', 'layout', 'paystack', 'PayStack', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1381, 1, 'en', 'layout', 'pay_with_paystack', 'Pay with PayStack', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1382, 1, 'en', 'layout', 'public_key', 'Public Key', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1383, 1, 'en', 'layout', 'payment_url', 'Payment URL', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1384, 1, 'en', 'layout', 'merchant_email', 'Merchant Email', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1385, 1, 'en', 'layout', 'optional', 'Optional', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1386, 1, 'en', 'layout', 'enable', 'Enable', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1387, 1, 'en', 'layout', 'disable', 'Disable', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1388, 1, 'en', 'layout', 'translation', 'Translation', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1389, 1, 'en', 'layout', 'takeaway', 'Takeaway', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1390, 1, 'en', 'layout', 'direction', 'Direction', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1391, 1, 'en', 'layout', 'report', 'Report', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1392, 1, 'en', 'layout', 'accepted', 'Accepted', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1393, 1, 'en', 'layout', 'select_status', 'Select status', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1394, 1, 'en', 'layout', 'select_plan', 'Select plan', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1395, 1, 'en', 'layout', 'select_customer', 'Select customer', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1396, 1, 'en', 'layout', 'restaurant_owner_create', 'Create Restaurant Owner', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1397, 1, 'en', 'layout', 'restaurant_owner', 'Restaurant Owner', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1398, 1, 'en', 'layout', 'edit_restaurant_owner', 'Edit Restaurant Owner', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1399, 1, 'en', 'layout', 'show_earning', 'Show Earning Report', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1400, 1, 'en', 'layout', 'created_at', 'Created At', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1401, 1, 'en', 'layout', 'select_type', 'Select Type', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1402, 1, 'en', 'layout', 'show_plan_report', 'Show Plan Report', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1403, 1, 'en', 'layout', 'instruction', 'Instructions', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1404, 1, 'en', 'layout', 'unlimited_items', 'Unlimited Items', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1405, 1, 'en', 'layout', 'unlimited_tables', 'Unlimited Tables', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1406, 1, 'en', 'layout', 'unlimited_restaurants', 'Unlimited Restaurants', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1407, 1, 'en', 'layout', 'plan_list', 'Plan', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1408, 1, 'en', 'layout', 'staff', 'Staff', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1409, 1, 'en', 'layout', 'billing_status', 'Billing Status', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1410, 1, 'en', 'layout', 'save_change', 'Update', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1411, 1, 'en', 'layout', 'review', 'Review', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1412, 1, 'en', 'layout', 'role', 'Role', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1413, 1, 'en', 'layout', 'currency_setting', 'Currency Setting', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1414, 1, 'en', 'layout', 'add_new_item', 'New Item', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1415, 1, 'en', 'layout', 'null', 'null', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1416, 1, 'en', 'layout', 'select_delivery_type', 'Select Delivery Type', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1417, 1, 'en', 'layout', 'modal_title', 'Modal title', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1418, 1, 'en', 'layout', 'close', 'Close', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1419, 1, 'en', 'layout', 'cash_on_delivery', 'Cash on Delivery', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1420, 1, 'en', 'layout', 'delivery_address', 'Delivery address', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1421, 1, 'en', 'layout', 'ex_2806_montague_rd_bC_canada', 'Ex: 2806 Montague Rd, BC, Canada', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1422, 1, 'en', 'layout', 'view_order', 'View Order', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1423, 1, 'en', 'layout', 'credit_or_debit_card', 'Credit or Debit card', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1424, 1, 'en', 'layout', 'order_overview', 'Order  overview', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1425, 1, 'en', 'layout', 'payment_type', 'Payment Type', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1426, 1, 'en', 'layout', 'select_a_payment_type', 'Select a payment type', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1427, 1, 'en', 'layout', 'pay_in_cash', 'Pay in cash', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1428, 1, 'en', 'layout', 'pay_in_paytm', 'Pay in paytm', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1429, 1, 'en', 'layout', 'cash', 'Cash', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1430, 1, 'en', 'layout', 'ex_Need_extra_spoon', 'Ex: Need extra spoon', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1431, 1, 'en', 'layout', 'ex_example_mail_com', 'Ex: example@mail.com', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1432, 1, 'en', 'layout', 'ex_number', 'Ex: +140139485764', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1433, 1, 'en', 'layout', 'ex_jone_doe', 'Ex: Jone Doe', '2021-09-25 07:11:56', '2021-09-25 07:11:56'),
(1434, 1, 'en', 'pagination', 'previous', '&laquo; Previous', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1435, 1, 'en', 'pagination', 'next', 'Next &raquo;', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1436, 1, 'en', 'passwords', 'reset', 'Your password has been reset!', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1437, 1, 'en', 'passwords', 'sent', 'We have emailed your password reset link!', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1438, 1, 'en', 'passwords', 'throttled', 'Please wait before retrying.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1439, 1, 'en', 'passwords', 'token', 'This password reset token is invalid.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1440, 1, 'en', 'passwords', 'user', 'We can\'t find a user with that email address.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1441, 1, 'en', 'validation', 'accepted', 'The :attribute must be accepted.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1442, 1, 'en', 'validation', 'active_url', 'The :attribute is not a valid URL.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1443, 1, 'en', 'validation', 'after', 'The :attribute must be a date after :date.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1444, 1, 'en', 'validation', 'after_or_equal', 'The :attribute must be a date after or equal to :date.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1445, 1, 'en', 'validation', 'alpha', 'The :attribute may only contain letters.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1446, 1, 'en', 'validation', 'alpha_dash', 'The :attribute may only contain letters, numbers, dashes and underscores.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1447, 1, 'en', 'validation', 'alpha_num', 'The :attribute may only contain letters and numbers.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1448, 1, 'en', 'validation', 'array', 'The :attribute must be an array.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1449, 1, 'en', 'validation', 'before', 'The :attribute must be a date before :date.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1450, 1, 'en', 'validation', 'before_or_equal', 'The :attribute must be a date before or equal to :date.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1451, 1, 'en', 'validation', 'between.numeric', 'The :attribute must be between :min and :max.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1452, 1, 'en', 'validation', 'between.file', 'The :attribute must be between :min and :max kilobytes.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1453, 1, 'en', 'validation', 'between.string', 'The :attribute must be between :min and :max characters.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1454, 1, 'en', 'validation', 'between.array', 'The :attribute must have between :min and :max items.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1455, 1, 'en', 'validation', 'boolean', 'The :attribute field must be true or false.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1456, 1, 'en', 'validation', 'confirmed', 'The :attribute confirmation does not match.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1457, 1, 'en', 'validation', 'date', 'The :attribute is not a valid date.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1458, 1, 'en', 'validation', 'date_equals', 'The :attribute must be a date equal to :date.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1459, 1, 'en', 'validation', 'date_format', 'The :attribute does not match the format :format.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1460, 1, 'en', 'validation', 'different', 'The :attribute and :other must be different.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1461, 1, 'en', 'validation', 'digits', 'The :attribute must be :digits digits.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1462, 1, 'en', 'validation', 'digits_between', 'The :attribute must be between :min and :max digits.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1463, 1, 'en', 'validation', 'dimensions', 'The :attribute has invalid image dimensions.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1464, 1, 'en', 'validation', 'distinct', 'The :attribute field has a duplicate value.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1465, 1, 'en', 'validation', 'email', 'The :attribute must be a valid email address.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1466, 1, 'en', 'validation', 'ends_with', 'The :attribute must end with one of the following: :values.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1467, 1, 'en', 'validation', 'exists', 'The selected :attribute is invalid.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1468, 1, 'en', 'validation', 'file', 'The :attribute must be a file.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1469, 1, 'en', 'validation', 'filled', 'The :attribute field must have a value.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1470, 1, 'en', 'validation', 'gt.numeric', 'The :attribute must be greater than :value.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1471, 1, 'en', 'validation', 'gt.file', 'The :attribute must be greater than :value kilobytes.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1472, 1, 'en', 'validation', 'gt.string', 'The :attribute must be greater than :value characters.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1473, 1, 'en', 'validation', 'gt.array', 'The :attribute must have more than :value items.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1474, 1, 'en', 'validation', 'gte.numeric', 'The :attribute must be greater than or equal :value.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1475, 1, 'en', 'validation', 'gte.file', 'The :attribute must be greater than or equal :value kilobytes.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1476, 1, 'en', 'validation', 'gte.string', 'The :attribute must be greater than or equal :value characters.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1477, 1, 'en', 'validation', 'gte.array', 'The :attribute must have :value items or more.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1478, 1, 'en', 'validation', 'image', 'The :attribute must be an image.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1479, 1, 'en', 'validation', 'in', 'The selected :attribute is invalid.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1480, 1, 'en', 'validation', 'in_array', 'The :attribute field does not exist in :other.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1481, 1, 'en', 'validation', 'integer', 'The :attribute must be an integer.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1482, 1, 'en', 'validation', 'ip', 'The :attribute must be a valid IP address.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1483, 1, 'en', 'validation', 'ipv4', 'The :attribute must be a valid IPv4 address.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1484, 1, 'en', 'validation', 'ipv6', 'The :attribute must be a valid IPv6 address.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1485, 1, 'en', 'validation', 'json', 'The :attribute must be a valid JSON string.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1486, 1, 'en', 'validation', 'lt.numeric', 'The :attribute must be less than :value.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1487, 1, 'en', 'validation', 'lt.file', 'The :attribute must be less than :value kilobytes.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1488, 1, 'en', 'validation', 'lt.string', 'The :attribute must be less than :value characters.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1489, 1, 'en', 'validation', 'lt.array', 'The :attribute must have less than :value items.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1490, 1, 'en', 'validation', 'lte.numeric', 'The :attribute must be less than or equal :value.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1491, 1, 'en', 'validation', 'lte.file', 'The :attribute must be less than or equal :value kilobytes.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1492, 1, 'en', 'validation', 'lte.string', 'The :attribute must be less than or equal :value characters.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1493, 1, 'en', 'validation', 'lte.array', 'The :attribute must not have more than :value items.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1494, 1, 'en', 'validation', 'max.numeric', 'The :attribute may not be greater than :max.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1495, 1, 'en', 'validation', 'max.file', 'The :attribute may not be greater than :max kilobytes.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1496, 1, 'en', 'validation', 'max.string', 'The :attribute may not be greater than :max characters.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1497, 1, 'en', 'validation', 'max.array', 'The :attribute may not have more than :max items.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1498, 1, 'en', 'validation', 'mimes', 'The :attribute must be a file of type: :values.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1499, 1, 'en', 'validation', 'mimetypes', 'The :attribute must be a file of type: :values.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1500, 1, 'en', 'validation', 'min.numeric', 'The :attribute must be at least :min.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1501, 1, 'en', 'validation', 'min.file', 'The :attribute must be at least :min kilobytes.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1502, 1, 'en', 'validation', 'min.string', 'The :attribute must be at least :min characters.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1503, 1, 'en', 'validation', 'min.array', 'The :attribute must have at least :min items.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1504, 1, 'en', 'validation', 'multiple_of', 'The :attribute must be a multiple of :value', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1505, 1, 'en', 'validation', 'not_in', 'The selected :attribute is invalid.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1506, 1, 'en', 'validation', 'not_regex', 'The :attribute format is invalid.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1507, 1, 'en', 'validation', 'numeric', 'The :attribute must be a number.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1508, 1, 'en', 'validation', 'password', 'The password is incorrect.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1509, 1, 'en', 'validation', 'present', 'The :attribute field must be present.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1510, 1, 'en', 'validation', 'regex', 'The :attribute format is invalid.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1511, 1, 'en', 'validation', 'required', 'The :attribute field is required.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1512, 1, 'en', 'validation', 'required_if', 'The :attribute field is required when :other is :value.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1513, 1, 'en', 'validation', 'required_unless', 'The :attribute field is required unless :other is in :values.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1514, 1, 'en', 'validation', 'required_with', 'The :attribute field is required when :values is present.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1515, 1, 'en', 'validation', 'required_with_all', 'The :attribute field is required when :values are present.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1516, 1, 'en', 'validation', 'required_without', 'The :attribute field is required when :values is not present.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1517, 1, 'en', 'validation', 'required_without_all', 'The :attribute field is required when none of :values are present.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1518, 1, 'en', 'validation', 'same', 'The :attribute and :other must match.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1519, 1, 'en', 'validation', 'size.numeric', 'The :attribute must be :size.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1520, 1, 'en', 'validation', 'size.file', 'The :attribute must be :size kilobytes.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1521, 1, 'en', 'validation', 'size.string', 'The :attribute must be :size characters.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1522, 1, 'en', 'validation', 'size.array', 'The :attribute must contain :size items.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1523, 1, 'en', 'validation', 'starts_with', 'The :attribute must start with one of the following: :values.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1524, 1, 'en', 'validation', 'string', 'The :attribute must be a string.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1525, 1, 'en', 'validation', 'timezone', 'The :attribute must be a valid zone.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1526, 1, 'en', 'validation', 'unique', 'The :attribute has already been taken.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1527, 1, 'en', 'validation', 'uploaded', 'The :attribute failed to upload.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1528, 1, 'en', 'validation', 'url', 'The :attribute format is invalid.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1529, 1, 'en', 'validation', 'uuid', 'The :attribute must be a valid UUID.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1530, 1, 'en', 'validation', 'custom.attribute-name.rule-name', 'custom-message', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1531, 1, 'es', 'auth', 'failed', 'These credentials do not match our records.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1532, 1, 'es', 'auth', 'throttle', 'Too many login attempts. Please try again in :seconds seconds.', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1533, 1, 'es', 'auth', 'sign_up_title', 'Sign up your account', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1534, 1, 'es', 'auth', 'name', 'Name', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1535, 1, 'es', 'auth', 'email', 'Email', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1536, 1, 'es', 'auth', 'password', 'Password', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1537, 1, 'es', 'auth', 'name_ex', 'Ex: John Doe', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1538, 1, 'es', 'auth', 'email_ex', 'Ex: hello@example.com', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1539, 1, 'es', 'auth', 'sign_up_btn', 'Sign up', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1540, 1, 'es', 'auth', 'allready_sign_in', 'Already have an account?', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1541, 1, 'es', 'auth', 'sign_in_attr', 'Log in', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1542, 1, 'es', 'auth', 'reg', 'Registration', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1543, 1, 'es', 'auth', 'agreement', 'By clicking Sign Up, you agree to our', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1544, 1, 'es', 'auth', 'terms_condition', 'Terms & Condition', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1545, 1, 'es', 'auth', 'privacy_policy', 'Privacy Policy', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1546, 1, 'es', 'auth', 'and', 'and', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1547, 1, 'es', 'auth', 'login_title', 'Login in your account', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1548, 1, 'es', 'auth', 'remember_pass', 'Remember me', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1549, 1, 'es', 'auth', 'forget_pass', 'Forgot Password', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1550, 1, 'es', 'auth', 'sign_in', 'Sign Me In', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1551, 1, 'es', 'auth', 'haven\'t_account', 'Don\'t have an account?', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1552, 1, 'es', 'auth', 'sign_up', 'Sign up', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1553, 1, 'es', 'auth', 'submit', 'SUBMIT', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1554, 1, 'es', 'auth', 'new_password', 'New password', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1555, 1, 'es', 'auth', 'old_password', 'Old password', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1556, 1, 'es', 'auth', 'con_password', 'Confirm password', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1557, 1, 'es', 'layout', 'home', 'Hogar', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1558, 1, 'es', 'layout', 'restaurant', 'Restaurante', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1559, 1, 'es', 'layout', 'restaurant_list', 'Lista de restaurantes', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1560, 1, 'es', 'layout', 'restaurant_create', 'Restaurante creado con éxito', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1561, 1, 'es', 'layout', 'restaurant_edit', 'Restaurante editar', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1562, 1, 'es', 'layout', 'restaurants', 'Restaurantes', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1563, 1, 'es', 'layout', 'list', 'Lista', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1564, 1, 'es', 'layout', 'create', 'Crear', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1565, 1, 'es', 'layout', 'your_restaurant', 'Tu negocio de restauración', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1566, 1, 'es', 'layout', 'name', 'Nombre', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1567, 1, 'es', 'layout', 'timing', 'Sincronización', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1568, 1, 'es', 'layout', 'email', 'Correo electrónico', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1569, 1, 'es', 'layout', 'phone_number', 'Número de teléfono', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1570, 1, 'es', 'layout', 'currency', 'Moneda', '2021-09-25 07:11:57', '2021-09-25 07:11:57'),
(1571, 1, 'es', 'layout', 'type', 'Tipo', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1572, 1, 'es', 'layout', 'description', 'Descripción', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1573, 1, 'es', 'layout', 'location', 'Ubicación', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1574, 1, 'es', 'layout', 'cover', 'Cubrir', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1575, 1, 'es', 'layout', 'profile', 'Perfil', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1576, 1, 'es', 'layout', 'image', 'Imagen', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1577, 1, 'es', 'layout', 'status', 'Estado', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1578, 1, 'es', 'layout', 'total_item', 'Artículo total', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1579, 1, 'es', 'layout', 'active', 'Activo', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1580, 1, 'es', 'layout', 'inactive', 'Inactivo', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1581, 1, 'es', 'layout', 'edit', 'Editar', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1582, 1, 'es', 'layout', 'preview', 'Avance', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1583, 1, 'es', 'layout', 'delete', 'Eliminar', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1584, 1, 'es', 'layout', 'general_info', 'Información general', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1585, 1, 'es', 'layout', 'image_upload', 'Subir imagen', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1586, 1, 'es', 'layout', 'item_list', 'Lista de articulos', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1587, 1, 'es', 'layout', 'item', 'Articulo', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1588, 1, 'es', 'layout', 'item_create', 'Elemento creado con éxito', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1589, 1, 'es', 'layout', 'item_edit', 'Elemento editar', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1590, 1, 'es', 'layout', 'items', 'Artículos', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1591, 1, 'es', 'layout', 'item_name', 'Nombre del árticulo', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1592, 1, 'es', 'layout', 'item_details', 'Detalles del artículo', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1593, 1, 'es', 'layout', 'your_item', 'Tus cosas', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1594, 1, 'es', 'layout', 'title', 'Título', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1595, 1, 'es', 'layout', 'details', 'Detalles', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1596, 1, 'es', 'layout', 'price', 'Precio', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1597, 1, 'es', 'layout', 'category', 'Categoría', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1598, 1, 'es', 'layout', 'discount', 'Descuento', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1599, 1, 'es', 'layout', 'discount_type', 'Tipo de descuento', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1600, 1, 'es', 'layout', 'discount_to', 'Descuento para', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1601, 1, 'es', 'layout', 'item_image', 'Elija la imagen del artículo', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1602, 1, 'es', 'layout', 'choose', 'Escoger', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1603, 1, 'es', 'layout', 'confirmation', 'Confirmación', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1604, 1, 'es', 'layout', 'confirm', 'Confirmar', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1605, 1, 'es', 'layout', 'cancel', 'Cancelar', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1606, 1, 'es', 'layout', 'logout', 'Cerrar sesión', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1607, 1, 'es', 'layout', 'dashboard', 'Tablero', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1608, 1, 'es', 'layout', 'hello', 'Hola,', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1609, 1, 'es', 'layout', 'all_notification', 'Mostrar todas las notificaciones', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1610, 1, 'es', 'layout', 'order_list', 'Lista de orden', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1611, 1, 'es', 'layout', 'order', 'Orden', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1612, 1, 'es', 'layout', 'orders', 'Pedidos', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1613, 1, 'es', 'layout', 'your_order', 'Tus ordenes', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1614, 1, 'es', 'layout', 'table', 'Mesa', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1615, 1, 'es', 'layout', 'payment_status', 'Estado de pago', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1616, 1, 'es', 'layout', 'comment', 'Comentario', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1617, 1, 'es', 'layout', 'delivered_within', 'Entregado dentro', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1618, 1, 'es', 'layout', 'paid', 'Pagado', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1619, 1, 'es', 'layout', 'unpaid', 'No pagado', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1620, 1, 'es', 'layout', 'pending', 'Pendiente', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1621, 1, 'es', 'layout', 'delivered', 'Entregado', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1622, 1, 'es', 'layout', 'approved', 'Aprobado', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1623, 1, 'es', 'layout', 'rejected', 'Rechazado', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1624, 1, 'es', 'layout', 'processing', 'Procesando', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1625, 1, 'es', 'layout', 'ready_for_delivery', 'Listo para la entrega', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1626, 1, 'es', 'layout', 'on_the_way', 'En camino', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1627, 1, 'es', 'layout', 'approve', 'Aprobar', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1628, 1, 'es', 'layout', 'total_price', 'Precio total', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1629, 1, 'es', 'layout', 'amount', 'Cantidad', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1630, 1, 'es', 'layout', 'within', 'Dentro', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1631, 1, 'es', 'layout', 'time', 'Hora', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1632, 1, 'es', 'layout', 'minutes', 'Minutos', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1633, 1, 'es', 'layout', 'hours', 'Horas', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1634, 1, 'es', 'layout', 'days', 'Dias', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1635, 1, 'es', 'layout', 'check_new_order', 'Ver pedido nuevo', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1636, 1, 'es', 'layout', 'users', 'Usuarios', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1637, 1, 'es', 'layout', 'customer', 'Cliente', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1638, 1, 'es', 'layout', 'quantity', 'Cantidad', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1639, 1, 'es', 'layout', 'total', 'Total', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1640, 1, 'es', 'layout', 'grand_total', 'Gran total', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1641, 1, 'es', 'layout', 'total_discount', 'Descuento total', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1642, 1, 'es', 'layout', 'invoice_by', 'Factura por', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1643, 1, 'es', 'layout', 'invoice_to', 'Factura a', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1644, 1, 'es', 'layout', 'order_details', 'Detalles del pedido', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1645, 1, 'es', 'layout', 'message.item_create', 'Elemento creado con éxito', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1646, 1, 'es', 'layout', 'message.order_create', 'Pedido creado con éxito', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1647, 1, 'es', 'layout', 'message.order_placed', 'Tu pedido se realizó con éxito', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1648, 1, 'es', 'layout', 'message.restaurant_create', 'Restaurante creado con éxito', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1649, 1, 'es', 'layout', 'message.item_update', 'Elemento actualizado correctamente', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1650, 1, 'es', 'layout', 'message.order_update', 'Pedido actualizado correctamente', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1651, 1, 'es', 'layout', 'message.restaurant_update', 'Restaurante actualizado con éxito', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1652, 1, 'es', 'layout', 'message.order_status_update', 'El estado del pedido se actualizó correctamente', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1653, 1, 'es', 'layout', 'message.order_not_found', 'Pedido no encontrado', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1654, 1, 'es', 'layout', 'message.restaurant_not_found', 'Restaurante no encontrado', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1655, 1, 'es', 'layout', 'message.order_status_warning', '¿Está seguro de cambiar el estado a <b class = \"text-red\"> :status </b> ?', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1656, 1, 'es', 'layout', 'message.item_delete', 'Elemento eliminado correctamente', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1657, 1, 'es', 'layout', 'message.order_delete', 'Pedido eliminado correctamente', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1658, 1, 'es', 'layout', 'message.restaurant_delete', 'Restaurante eliminado correctamente', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1659, 1, 'es', 'layout', 'message.item_delete_warning', '¿Está seguro de que desea eliminar este elemento?', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1660, 1, 'es', 'layout', 'message.order_delete_warning', '¿Está seguro de que desea eliminar este pedido?', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1661, 1, 'es', 'layout', 'message.restaurant_delete_warning', '¿Estás seguro de que deseas eliminar este restaurante?', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1662, 1, 'es', 'layout', 'message.plan_update', 'Plan actualizado correctamente', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1663, 1, 'es', 'layout', 'message.play_change_success', 'Enhorabuena Has cambiado tu plan con éxito', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1664, 1, 'es', 'layout', 'message.invalid_payment', '¡Ups! Solicitud de pago no válida', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1665, 1, 'es', 'layout', 'message.userplan_approve_success', 'El plan de usuario se aprueba correctamente', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1666, 1, 'es', 'layout', 'message.userplan_reject_success', 'Plan de usuario rechazado correctamente', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1667, 1, 'es', 'layout', 'message.userplan_status_change_msg', 'El estado del plan de usuario cambió correctamente', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1668, 1, 'es', 'layout', 'message.userplan_approve_warning', '¿Está seguro de que desea aprobar este plan?', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1669, 1, 'es', 'layout', 'message.userplan_reject_warning', '¿Estás seguro de que deseas rechazar este plan?', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1670, 1, 'es', 'layout', 'message.change_user_plan_warning', '¿Está seguro de cambiar el estado del plan de usuario?', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1671, 1, 'es', 'layout', 'message.category_update_message', 'Actualización de categoría con éxito', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1672, 1, 'es', 'layout', 'message.category_store_msg', 'Guardar categoría correctamente', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1673, 1, 'es', 'layout', 'message.setting_update', 'Configuración actualizada correctamente', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1674, 1, 'es', 'layout', 'message.registration_success', '¡Felicidades! Le hemos enviado un correo de confirmación', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1675, 1, 'es', 'layout', 'message.verify', 'Correo electrónico verificado correctamente', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1676, 1, 'es', 'layout', 'message.verify_resend', 'Vínculo de verificación enviado nuevamente', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1677, 1, 'es', 'layout', 'message.verify_text', 'Primero verifique su correo electrónico. Puedes reenviar tu enlace de verificación', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1678, 1, 'es', 'layout', 'message.user_not_found', 'Usuario no encontrado. Prueba con un correo electrónico válido', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1679, 1, 'es', 'layout', 'message.reset_link_send', 'Se ha enviado una instrucción a su correo electrónico', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1680, 1, 'es', 'layout', 'message.token_expired', 'El token ha caducado o se ha utilizado', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1681, 1, 'es', 'layout', 'message.reset_successful', 'La contraseña se ha restablecido correctamente', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1682, 1, 'es', 'layout', 'message.category_delete_warning', '¿Está seguro de eliminar esta categoría?', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1683, 1, 'es', 'layout', 'message.category_delete', 'Categoría eliminada correctamente', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1684, 1, 'es', 'layout', 'message.plan_delete_warning', '¿Estás seguro de eliminar este plan?', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1685, 1, 'es', 'layout', 'message.plan_delete_msg', 'Plan eliminado correctamente', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1686, 1, 'es', 'layout', 'message.table_delete_msg', 'Tabla eliminada con éxito', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1687, 1, 'es', 'layout', 'message.table_delete_warning', '¿Está seguro de eliminar esta tabla?', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1688, 1, 'es', 'layout', 'message.table_not_delete', '¡Ups! La mesa ya está en uso', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1689, 1, 'es', 'layout', 'message.category_not_delete', '¡Ups! La categoría ya está en uso', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1690, 1, 'es', 'layout', 'message.item_not_delete', '¡Ups! El artículo ya está en uso', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1691, 1, 'es', 'layout', 'message.plan_not_delete', '¡Ups! El plan ya está en uso', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1692, 1, 'es', 'layout', 'message.restaurant_not_delete', '¡Ups! El restaurante ya está en uso', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1693, 1, 'es', 'layout', 'message.pending_configuration', 'Primero debe configurar sus ajustes', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1694, 1, 'es', 'layout', 'message.invalid_request', 'Solicitud no válida', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1695, 1, 'es', 'layout', 'message.upgrade_notification', 'Su plan ha caducado, actualice', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1696, 1, 'es', 'layout', 'message.request_received', 'Hemos recibido su petición. Te contactaremos a la brevedad', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1697, 1, 'es', 'layout', 'message.cancel_payment', 'El pago ha sido cancelado', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1698, 1, 'es', 'layout', 'message.upload_success', 'Imagen cargada correctamente', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1699, 1, 'es', 'layout', 'message.update_failed', '¡Ups! Actualización fallida ', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1700, 1, 'es', 'layout', 'message.tax_delete_warning', '¿Está seguro de eliminar este impuesto?', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1701, 1, 'es', 'layout', 'message.table_success_msg', 'Tabla creada correctamente', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1702, 1, 'es', 'layout', 'message.table_update_msg', 'Tabla actualizada correctamente', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1703, 1, 'es', 'layout', 'message.tax_success_msg', 'Impuesto creado correctamente', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1704, 1, 'es', 'layout', 'message.tax_update_msg', 'Impuesto actualizado correctamente', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1705, 1, 'es', 'layout', 'settings_title', 'Configuraciones', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1706, 1, 'es', 'layout', 'general_settings', 'Configuración general', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1707, 1, 'es', 'layout', 'general', 'General', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1708, 1, 'es', 'layout', 'password_change', 'Cambia la contraseña', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1709, 1, 'es', 'layout', 'email_settings', 'Ajustes del correo electrónico', '2021-09-25 07:11:58', '2021-09-25 07:11:58'),
(1710, 1, 'es', 'layout', 'site_settings', 'Configuración del sitio', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1711, 1, 'es', 'layout', 'local_settings', 'Configuraciones locales', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1712, 1, 'es', 'layout', 'email_template', 'Plantilla de correo electrónico', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1713, 1, 'es', 'layout', 'picture', 'Imagen', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1714, 1, 'es', 'layout', 'submit', 'Enviar', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1715, 1, 'es', 'layout', 'old_password', 'Contraseña anterior', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1716, 1, 'es', 'layout', 'new_password', 'Nueva contraseña', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1717, 1, 'es', 'layout', 'confirm_password', 'Confirmar contraseña', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1718, 1, 'es', 'layout', 'host', 'Anfitrión', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1719, 1, 'es', 'layout', 'password', 'Contraseña', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1720, 1, 'es', 'layout', 'port', 'Puerto', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1721, 1, 'es', 'layout', 'username', 'Nombre de usuario', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1722, 1, 'es', 'layout', 'encrypt_type', 'Tipo de cifrado', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1723, 1, 'es', 'layout', 'registration', 'Registro', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1724, 1, 'es', 'layout', 'forget_password', 'Contraseña olvidada', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1725, 1, 'es', 'layout', 'order_placed', 'Pedido realizado', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1726, 1, 'es', 'layout', 'order_status', 'Estado del pedido', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1727, 1, 'es', 'layout', 'email_subject', 'Asunto del email', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1728, 1, 'es', 'layout', 'email_body', 'Cuerpo del correo electronico', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1729, 1, 'es', 'layout', 'email_from', 'Email de', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1730, 1, 'es', 'layout', 'plan_request', 'Solicitud de plan', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1731, 1, 'es', 'layout', 'plan_accept', 'Plan aceptado', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1732, 1, 'es', 'layout', 'plan_expire', 'Plan caducado', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1733, 1, 'es', 'layout', 'payment_gateway', 'Pasarela de pago', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1734, 1, 'es', 'layout', 'sms_gateway', 'Puerta de enlace de SMS', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1735, 1, 'es', 'layout', 'stripe', 'Raya', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1736, 1, 'es', 'layout', 'offline', 'Desconectado', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1737, 1, 'es', 'layout', 'bank_name', 'Nombre del banco', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1738, 1, 'es', 'layout', 'bank_branch', 'Sucursal bancaria', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1739, 1, 'es', 'layout', 'account_name', 'Nombre de la cuenta', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1740, 1, 'es', 'layout', 'account_number', 'Número de cuenta', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1741, 1, 'es', 'layout', 'transaction_id', 'ID de transacción', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1742, 1, 'es', 'layout', 'reference', 'Referencia', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1743, 1, 'es', 'layout', 'client_id_key', 'Clave ClientID', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1744, 1, 'es', 'layout', 'client_secret_key', 'Clave secreta del cliente', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1745, 1, 'es', 'layout', 'publish_key', 'Clave publicable', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1746, 1, 'es', 'layout', 'secret_key', 'Llave secreta', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1747, 1, 'es', 'layout', 'twilio', 'Twilio', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1748, 1, 'es', 'layout', 'voyager', 'Voyager', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1749, 1, 'es', 'layout', 'signalwire', 'Signalwire', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1750, 1, 'es', 'layout', 'sid', 'SID', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1751, 1, 'es', 'layout', 'token', 'Simbólico', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1752, 1, 'es', 'layout', 'project_id', 'Projecto ID', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1753, 1, 'es', 'layout', 'space_url', 'URL del espacio', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1754, 1, 'es', 'layout', 'api_key', 'Clave API', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1755, 1, 'es', 'layout', 'api_secret', 'Api secreto', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1756, 1, 'es', 'layout', 'plan_title', 'Lista de planes', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1757, 1, 'es', 'layout', 'plan', 'Planes', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1758, 1, 'es', 'layout', 'cost', 'Costo', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1759, 1, 'es', 'layout', 'recurring_type', 'Tipo recurrente', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1760, 1, 'es', 'layout', 'table_limit', 'Límite de mesa', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1761, 1, 'es', 'layout', 'restaurant_limit', 'Límite de restaurante', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1762, 1, 'es', 'layout', 'item_limit', 'Límite de artículos', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1763, 1, 'es', 'layout', 'unlimited_support', 'Soporte ilimitado', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1764, 1, 'es', 'layout', 'action', 'Acción', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1765, 1, 'es', 'layout', 'onetime', 'Una vez', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1766, 1, 'es', 'layout', 'weekly', 'Semanal', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1767, 1, 'es', 'layout', 'monthly', 'Mensual', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1768, 1, 'es', 'layout', 'yearly', 'Anual', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1769, 1, 'es', 'layout', 'plan_edit', 'Plan editar', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1770, 1, 'es', 'layout', 'no_of_capacity', 'No de capacidad', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1771, 1, 'es', 'layout', 'position', 'Posición', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1772, 1, 'es', 'layout', 'payment_title', 'Pago', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1773, 1, 'es', 'layout', 'payment_method', 'Método de pago', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1774, 1, 'es', 'layout', 'card_name', 'Nombre en la tarjeta', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1775, 1, 'es', 'layout', 'card_number', 'Número de tarjeta', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1776, 1, 'es', 'layout', 'cvc', 'CVC', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1777, 1, 'es', 'layout', 'expiration', 'Vencimiento', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1778, 1, 'es', 'layout', 'pay_plan_title', 'Título del plan', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1779, 1, 'es', 'layout', 'start_date', 'Fecha de inicio', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1780, 1, 'es', 'layout', 'expiry_date', 'Fecha de caducidad', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1781, 1, 'es', 'layout', 'other_info', 'Otra información', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1782, 1, 'es', 'layout', 'total_cost', 'Coste total', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1783, 1, 'es', 'layout', 'lifetime', 'Toda la vida', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1784, 1, 'es', 'layout', 'pay_now', 'Pay Now', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1785, 1, 'es', 'layout', 'credit_or_debit', 'Tarjeta de crédito o débito', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1786, 1, 'es', 'layout', 'restaurant_extends', 'Límite de restaurante extendido o vencido. Actualice su plan', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1787, 1, 'es', 'layout', 'table_extends', 'Límite de mesa extendido o vencido. Actualice su plan', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1788, 1, 'es', 'layout', 'item_extends', 'Límite de artículos extendido o vencido. Actualice su plan', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1789, 1, 'es', 'layout', 'user_plan_title', 'Plan de usuario', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1790, 1, 'es', 'layout', 'user_plan', 'Plan de usuario', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1791, 1, 'es', 'layout', 'plan_name', 'Título del plan', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1792, 1, 'es', 'layout', 'reject', 'Rechazar', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1793, 1, 'es', 'layout', 'demo', 'Manifestación', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1794, 1, 'es', 'layout', 'pricing', 'Precios', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1795, 1, 'es', 'layout', 'join', 'Unirse', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1796, 1, 'es', 'layout', 'signup', 'Regístrate', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1797, 1, 'es', 'layout', 'total_restaurant', 'Restaurante Total', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1798, 1, 'es', 'layout', 'total_order_amount', 'Monto total del pedido', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1799, 1, 'es', 'layout', 'total_income', 'Ingresos totales', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1800, 1, 'es', 'layout', 'pending_order', 'Ordenes pendientes', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1801, 1, 'es', 'layout', 'pending_plan', 'Plan pendiente', '2021-09-25 07:11:59', '2021-09-25 07:11:59');
INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES
(1802, 1, 'es', 'layout', 'category_create_title', 'categoría-crear', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1803, 1, 'es', 'layout', 'category_create', 'Crear categoría', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1804, 1, 'es', 'layout', 'category_edit_title', 'categoría-editar', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1805, 1, 'es', 'layout', 'category_edit', 'Categoría editar', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1806, 1, 'es', 'layout', 'qr_maker', 'Creador de QR', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1807, 1, 'es', 'layout', 'settings', 'Configuraciones', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1808, 1, 'es', 'layout', 'generate', 'Generar', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1809, 1, 'es', 'layout', 'restaurant_select', 'Seleccionar restaurante', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1810, 1, 'es', 'layout', 'table_select', 'Seleccionar mesa', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1811, 1, 'es', 'layout', 'fill_color', 'Color de relleno', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1812, 1, 'es', 'layout', 'bg_color', 'Color de fondo', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1813, 1, 'es', 'layout', 'text_color', 'Color de texto', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1814, 1, 'es', 'layout', 'mode', 'Modo', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1815, 1, 'es', 'layout', 'design_type', 'Tipo de diseño', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1816, 1, 'es', 'layout', 'normal', 'Normal', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1817, 1, 'es', 'layout', 'text_strip', 'Tira de texto', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1818, 1, 'es', 'layout', 'image_strip', 'Tira de imágenes', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1819, 1, 'es', 'layout', 'text', 'Texto', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1820, 1, 'es', 'layout', 'size', 'Talla', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1821, 1, 'es', 'layout', 'pos_x', 'PosX', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1822, 1, 'es', 'layout', 'pos_y', 'Ramillete de flores', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1823, 1, 'es', 'layout', 'role_permission', 'Permiso', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1824, 1, 'es', 'layout', 'verify_email', 'verifica tu correo electrónico', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1825, 1, 'es', 'layout', 'enter_code', 'Ingrese su código', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1826, 1, 'es', 'layout', 'verify', 'Verificar', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1827, 1, 'es', 'layout', 'resend', 'Reenviar', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1828, 1, 'es', 'layout', 'billings', 'Billings', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1829, 1, 'es', 'layout', 'download', 'Descargar', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1830, 1, 'es', 'layout', 'my_order', 'Mis ordenes', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1831, 1, 'es', 'layout', 'add', 'Añadir', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1832, 1, 'es', 'layout', 'overview', 'Visión general', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1833, 1, 'es', 'layout', 'payment', 'Pago', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1834, 1, 'es', 'layout', 'place_order', 'Realizar pedido', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1835, 1, 'es', 'layout', 'upgrade', 'Potenciar', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1836, 1, 'es', 'layout', 'login', 'Iniciar sesión', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1837, 1, 'es', 'layout', 'date_time_format', 'Formato de fecha y hora', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1838, 1, 'es', 'layout', 'date_time_separator', 'Separador de fecha y hora', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1839, 1, 'es', 'layout', 'timezone', 'Zona horaria', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1840, 1, 'es', 'layout', 'decimal_format', 'Formato decimal', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1841, 1, 'es', 'layout', 'language', 'Idioma', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1842, 1, 'es', 'layout', 'currency_symbol', 'Símbolo de moneda', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1843, 1, 'es', 'layout', 'currency_symbol_position', 'Posición del símbolo', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1844, 1, 'es', 'layout', 'before', 'antes de', '2021-09-25 07:11:59', '2021-09-25 07:11:59'),
(1845, 1, 'es', 'layout', 'after', 'Después', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1846, 1, 'es', 'layout', 'bengali', 'বাংলা', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1847, 1, 'es', 'layout', 'english', 'English', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1848, 1, 'es', 'layout', 'arabic', 'عربى', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1849, 1, 'es', 'layout', 'hindi', 'हिंदी', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1850, 1, 'es', 'layout', 'spanish', 'Español', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1851, 1, 'es', 'layout', 'japanese', '日本人', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1852, 1, 'es', 'layout', 'portuguese', 'Português', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1853, 1, 'es', 'layout', 'thousand_separator', 'Separador de mil', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1854, 1, 'es', 'layout', 'decimals', 'Decimales', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1855, 1, 'es', 'layout', 'decimal_point', 'Punto decimal', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1856, 1, 'es', 'layout', 'all_right_reserved', 'Todos los derechos reservados', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1857, 1, 'es', 'layout', 'copyright_footer', 'Copyright © Diseñado y desarrollado por', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1858, 1, 'es', 'layout', 'click_here', 'Haga clic aquí', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1859, 1, 'es', 'layout', 'pay_on_table', 'Paga en la mesa', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1860, 1, 'es', 'layout', 'currency_code', 'Código de moneda', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1861, 1, 'es', 'layout', 'paytm', 'Paytm', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1862, 1, 'es', 'layout', 'find_yours', 'Encuentra tu código', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1863, 1, 'es', 'layout', 'pay_with_paytm', 'Pagar con Paytm', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1864, 1, 'es', 'layout', 'paypal_des', 'Pague com Paypal', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1865, 1, 'es', 'layout', 'paypal', 'Paypal', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1866, 1, 'es', 'layout', 'paytm_environment', 'Entorno', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1867, 1, 'es', 'layout', 'paytm_mid', 'ID de comerciante', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1868, 1, 'es', 'layout', 'paytm_secret_key', 'Clave secreta', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1869, 1, 'es', 'layout', 'paytm_website', 'Sitio web', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1870, 1, 'es', 'layout', 'paytm_txn_url', 'URL de transacción', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1871, 1, 'es', 'layout', 'choose_template', 'Elegir plantilla', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1872, 1, 'es', 'layout', 'classic', 'Clásico', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1873, 1, 'es', 'layout', 'modern', 'Moderno', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1874, 1, 'es', 'layout', 'flipbook', 'FlipBook', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1875, 1, 'es', 'layout', 'custom', 'Personalizado', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1876, 1, 'es', 'layout', 'custom_menu', 'Menú personalizado', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1877, 1, 'es', 'layout', 'add_menu', 'Agregar menú', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1878, 1, 'es', 'layout', 'enter_name', 'Ingresar nombre', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1879, 1, 'es', 'layout', 'header', 'Encabezado', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1880, 1, 'es', 'layout', 'enter_header', 'Ingresar encabezado', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1881, 1, 'es', 'layout', 'footer', 'Pie de página', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1882, 1, 'es', 'layout', 'enter_footer', 'Ingresar pie de página', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1883, 1, 'es', 'layout', 'enter_description', 'Ingresar descripción', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1884, 1, 'es', 'layout', 'enter_title', 'Ingresar título', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1885, 1, 'es', 'layout', 'basic', 'Básico', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1886, 1, 'es', 'layout', 'extra', 'Extra', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1887, 1, 'es', 'layout', 'add_extra', 'Agregar extra', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1888, 1, 'es', 'layout', 'add_extra_name', 'Ingrese un nombre adicional', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1889, 1, 'es', 'layout', 'enter_price', 'Ingresar precio', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1890, 1, 'es', 'layout', 'item_extra', 'Artículo \' s extra ', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1891, 1, 'es', 'layout', 'process', 'Proceso', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1892, 1, 'es', 'layout', 'phone', 'Teléfono', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1893, 1, 'es', 'layout', 'address', 'Dirección', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1894, 1, 'es', 'layout', 'is_unlimited', '¿Es ilimitado?', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1895, 1, 'es', 'layout', 'unlimited', 'Ilimitado', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1896, 1, 'es', 'layout', 'tax', 'Impuestos', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1897, 1, 'es', 'layout', 'tax_create', 'Crear impuesto', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1898, 1, 'es', 'layout', 'tax_edit', 'Edición de impuestos', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1899, 1, 'es', 'layout', 'taxes', 'Impuestos', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1900, 1, 'es', 'layout', 'tax_title', 'Título fiscal', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1901, 1, 'es', 'layout', 'flat', 'Plano', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1902, 1, 'es', 'layout', 'print', 'Imprimir', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1903, 1, 'es', 'layout', 'pdf', 'PDF', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1904, 1, 'es', 'layout', 'total_tax', 'Impuesto total', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1905, 1, 'es', 'layout', 'view_basket', 'Ver cesta', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1906, 1, 'es', 'layout', 'all_categories', 'Todas las categorías', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1907, 1, 'es', 'layout', 'germany', 'Deutsch', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1908, 1, 'es', 'layout', 'percentage', 'Porcentaje', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1909, 1, 'es', 'layout', 'select_delivery_type', 'Select Delivery Type', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1910, 1, 'es', 'layout', 'modal_title', 'Modal title', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1911, 1, 'es', 'layout', 'close', 'Close', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1912, 1, 'es', 'layout', 'cash_on_delivery', 'Cash on Delivery', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1913, 1, 'es', 'layout', 'delivery_address', 'Delivery address', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1914, 1, 'es', 'layout', 'ex_2806_montague_rd_bC_canada', 'Ex: 2806 Montague Rd, BC, Canada', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1915, 1, 'es', 'layout', 'view_order', 'View Order', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1916, 1, 'es', 'layout', 'credit_or_debit_card', 'Credit or Debit card', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1917, 1, 'es', 'layout', 'order_overview', 'Order  overview', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1918, 1, 'es', 'layout', 'payment_type', 'Payment Type', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1919, 1, 'es', 'layout', 'select_a_payment_type', 'Select a payment type', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1920, 1, 'es', 'layout', 'pay_in_cash', 'Pay in cash', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1921, 1, 'es', 'layout', 'pay_in_paytm', 'Pay in paytm', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1922, 1, 'es', 'layout', 'cash', 'Cash', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1923, 1, 'es', 'layout', 'ex_Need_extra_spoon', 'Ex: Need extra spoon', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1924, 1, 'es', 'layout', 'ex_example_mail_com', 'Ex: example@mail.com', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1925, 1, 'es', 'layout', 'ex_number', 'Ex: +140139485764', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1926, 1, 'es', 'layout', 'ex_jone_doe', 'Ex: Jone Doe', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1927, 1, 'es', 'pagination', 'previous', '&laquo; Previous', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1928, 1, 'es', 'pagination', 'next', 'Next &raquo;', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1929, 1, 'es', 'passwords', 'reset', 'Your password has been reset!', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1930, 1, 'es', 'passwords', 'sent', 'We have emailed your password reset link!', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1931, 1, 'es', 'passwords', 'throttled', 'Please wait before retrying.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1932, 1, 'es', 'passwords', 'token', 'This password reset token is invalid.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1933, 1, 'es', 'passwords', 'user', 'We can\'t find a user with that email address.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1934, 1, 'es', 'validation', 'accepted', 'The :attribute must be accepted.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1935, 1, 'es', 'validation', 'active_url', 'The :attribute is not a valid URL.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1936, 1, 'es', 'validation', 'after', 'The :attribute must be a date after :date.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1937, 1, 'es', 'validation', 'after_or_equal', 'The :attribute must be a date after or equal to :date.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1938, 1, 'es', 'validation', 'alpha', 'The :attribute may only contain letters.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1939, 1, 'es', 'validation', 'alpha_dash', 'The :attribute may only contain letters, numbers, dashes and underscores.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1940, 1, 'es', 'validation', 'alpha_num', 'The :attribute may only contain letters and numbers.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1941, 1, 'es', 'validation', 'array', 'The :attribute must be an array.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1942, 1, 'es', 'validation', 'before', 'The :attribute must be a date before :date.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1943, 1, 'es', 'validation', 'before_or_equal', 'The :attribute must be a date before or equal to :date.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1944, 1, 'es', 'validation', 'between.numeric', 'The :attribute must be between :min and :max.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1945, 1, 'es', 'validation', 'between.file', 'The :attribute must be between :min and :max kilobytes.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1946, 1, 'es', 'validation', 'between.string', 'The :attribute must be between :min and :max characters.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1947, 1, 'es', 'validation', 'between.array', 'The :attribute must have between :min and :max items.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1948, 1, 'es', 'validation', 'boolean', 'The :attribute field must be true or false.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1949, 1, 'es', 'validation', 'confirmed', 'The :attribute confirmation does not match.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1950, 1, 'es', 'validation', 'date', 'The :attribute is not a valid date.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1951, 1, 'es', 'validation', 'date_equals', 'The :attribute must be a date equal to :date.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1952, 1, 'es', 'validation', 'date_format', 'The :attribute does not match the format :format.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1953, 1, 'es', 'validation', 'different', 'The :attribute and :other must be different.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1954, 1, 'es', 'validation', 'digits', 'The :attribute must be :digits digits.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1955, 1, 'es', 'validation', 'digits_between', 'The :attribute must be between :min and :max digits.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1956, 1, 'es', 'validation', 'dimensions', 'The :attribute has invalid image dimensions.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1957, 1, 'es', 'validation', 'distinct', 'The :attribute field has a duplicate value.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1958, 1, 'es', 'validation', 'email', 'The :attribute must be a valid email address.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1959, 1, 'es', 'validation', 'ends_with', 'The :attribute must end with one of the following: :values.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1960, 1, 'es', 'validation', 'exists', 'The selected :attribute is invalid.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1961, 1, 'es', 'validation', 'file', 'The :attribute must be a file.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1962, 1, 'es', 'validation', 'filled', 'The :attribute field must have a value.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1963, 1, 'es', 'validation', 'gt.numeric', 'The :attribute must be greater than :value.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1964, 1, 'es', 'validation', 'gt.file', 'The :attribute must be greater than :value kilobytes.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1965, 1, 'es', 'validation', 'gt.string', 'The :attribute must be greater than :value characters.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1966, 1, 'es', 'validation', 'gt.array', 'The :attribute must have more than :value items.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1967, 1, 'es', 'validation', 'gte.numeric', 'The :attribute must be greater than or equal :value.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1968, 1, 'es', 'validation', 'gte.file', 'The :attribute must be greater than or equal :value kilobytes.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1969, 1, 'es', 'validation', 'gte.string', 'The :attribute must be greater than or equal :value characters.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1970, 1, 'es', 'validation', 'gte.array', 'The :attribute must have :value items or more.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1971, 1, 'es', 'validation', 'image', 'The :attribute must be an image.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1972, 1, 'es', 'validation', 'in', 'The selected :attribute is invalid.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1973, 1, 'es', 'validation', 'in_array', 'The :attribute field does not exist in :other.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1974, 1, 'es', 'validation', 'integer', 'The :attribute must be an integer.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1975, 1, 'es', 'validation', 'ip', 'The :attribute must be a valid IP address.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1976, 1, 'es', 'validation', 'ipv4', 'The :attribute must be a valid IPv4 address.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1977, 1, 'es', 'validation', 'ipv6', 'The :attribute must be a valid IPv6 address.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1978, 1, 'es', 'validation', 'json', 'The :attribute must be a valid JSON string.', '2021-09-25 07:12:00', '2021-09-25 07:12:00'),
(1979, 1, 'es', 'validation', 'lt.numeric', 'The :attribute must be less than :value.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(1980, 1, 'es', 'validation', 'lt.file', 'The :attribute must be less than :value kilobytes.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(1981, 1, 'es', 'validation', 'lt.string', 'The :attribute must be less than :value characters.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(1982, 1, 'es', 'validation', 'lt.array', 'The :attribute must have less than :value items.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(1983, 1, 'es', 'validation', 'lte.numeric', 'The :attribute must be less than or equal :value.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(1984, 1, 'es', 'validation', 'lte.file', 'The :attribute must be less than or equal :value kilobytes.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(1985, 1, 'es', 'validation', 'lte.string', 'The :attribute must be less than or equal :value characters.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(1986, 1, 'es', 'validation', 'lte.array', 'The :attribute must not have more than :value items.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(1987, 1, 'es', 'validation', 'max.numeric', 'The :attribute may not be greater than :max.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(1988, 1, 'es', 'validation', 'max.file', 'The :attribute may not be greater than :max kilobytes.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(1989, 1, 'es', 'validation', 'max.string', 'The :attribute may not be greater than :max characters.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(1990, 1, 'es', 'validation', 'max.array', 'The :attribute may not have more than :max items.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(1991, 1, 'es', 'validation', 'mimes', 'The :attribute must be a file of type: :values.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(1992, 1, 'es', 'validation', 'mimetypes', 'The :attribute must be a file of type: :values.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(1993, 1, 'es', 'validation', 'min.numeric', 'The :attribute must be at least :min.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(1994, 1, 'es', 'validation', 'min.file', 'The :attribute must be at least :min kilobytes.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(1995, 1, 'es', 'validation', 'min.string', 'The :attribute must be at least :min characters.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(1996, 1, 'es', 'validation', 'min.array', 'The :attribute must have at least :min items.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(1997, 1, 'es', 'validation', 'multiple_of', 'The :attribute must be a multiple of :value', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(1998, 1, 'es', 'validation', 'not_in', 'The selected :attribute is invalid.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(1999, 1, 'es', 'validation', 'not_regex', 'The :attribute format is invalid.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2000, 1, 'es', 'validation', 'numeric', 'The :attribute must be a number.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2001, 1, 'es', 'validation', 'password', 'The password is incorrect.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2002, 1, 'es', 'validation', 'present', 'The :attribute field must be present.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2003, 1, 'es', 'validation', 'regex', 'The :attribute format is invalid.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2004, 1, 'es', 'validation', 'required', 'The :attribute field is required.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2005, 1, 'es', 'validation', 'required_if', 'The :attribute field is required when :other is :value.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2006, 1, 'es', 'validation', 'required_unless', 'The :attribute field is required unless :other is in :values.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2007, 1, 'es', 'validation', 'required_with', 'The :attribute field is required when :values is present.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2008, 1, 'es', 'validation', 'required_with_all', 'The :attribute field is required when :values are present.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2009, 1, 'es', 'validation', 'required_without', 'The :attribute field is required when :values is not present.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2010, 1, 'es', 'validation', 'required_without_all', 'The :attribute field is required when none of :values are present.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2011, 1, 'es', 'validation', 'same', 'The :attribute and :other must match.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2012, 1, 'es', 'validation', 'size.numeric', 'The :attribute must be :size.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2013, 1, 'es', 'validation', 'size.file', 'The :attribute must be :size kilobytes.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2014, 1, 'es', 'validation', 'size.string', 'The :attribute must be :size characters.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2015, 1, 'es', 'validation', 'size.array', 'The :attribute must contain :size items.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2016, 1, 'es', 'validation', 'starts_with', 'The :attribute must start with one of the following: :values.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2017, 1, 'es', 'validation', 'string', 'The :attribute must be a string.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2018, 1, 'es', 'validation', 'timezone', 'The :attribute must be a valid zone.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2019, 1, 'es', 'validation', 'unique', 'The :attribute has already been taken.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2020, 1, 'es', 'validation', 'uploaded', 'The :attribute failed to upload.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2021, 1, 'es', 'validation', 'url', 'The :attribute format is invalid.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2022, 1, 'es', 'validation', 'uuid', 'The :attribute must be a valid UUID.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2023, 1, 'es', 'validation', 'custom.attribute-name.rule-name', 'custom-message', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2024, 1, 'gr', 'auth', 'failed', 'These credentials do not match our records.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2025, 1, 'gr', 'auth', 'throttle', 'Too many login attempts. Please try again in :seconds seconds.', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2026, 1, 'gr', 'auth', 'sign_up_title', 'Sign up your account', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2027, 1, 'gr', 'auth', 'name', 'Name', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2028, 1, 'gr', 'auth', 'email', 'Email', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2029, 1, 'gr', 'auth', 'password', 'Password', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2030, 1, 'gr', 'auth', 'name_ex', 'Ex: John Doe', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2031, 1, 'gr', 'auth', 'email_ex', 'Ex: hello@example.com', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2032, 1, 'gr', 'auth', 'sign_up_btn', 'Sign up', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2033, 1, 'gr', 'auth', 'allready_sign_in', 'Already have an account?', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2034, 1, 'gr', 'auth', 'sign_in_attr', 'Log in', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2035, 1, 'gr', 'auth', 'reg', 'Registration', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2036, 1, 'gr', 'auth', 'agreement', 'By clicking Sign Up, you agree to our', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2037, 1, 'gr', 'auth', 'terms_condition', 'Terms & Condition', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2038, 1, 'gr', 'auth', 'privacy_policy', 'Privacy Policy', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2039, 1, 'gr', 'auth', 'and', 'and', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2040, 1, 'gr', 'auth', 'login_title', 'Login in your account', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2041, 1, 'gr', 'auth', 'remember_pass', 'Remember me', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2042, 1, 'gr', 'auth', 'forget_pass', 'Forgot Password', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2043, 1, 'gr', 'auth', 'sign_in', 'Sign Me In', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2044, 1, 'gr', 'auth', 'haven\'t_account', 'Don\'t have an account?', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2045, 1, 'gr', 'auth', 'sign_up', 'Sign up', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2046, 1, 'gr', 'auth', 'submit', 'SUBMIT', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2047, 1, 'gr', 'auth', 'new_password', 'New password', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2048, 1, 'gr', 'auth', 'old_password', 'Old password', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2049, 1, 'gr', 'auth', 'con_password', 'Confirm password', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2050, 1, 'gr', 'layout', 'home', 'Home', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2051, 1, 'gr', 'layout', 'restaurant', 'Restaurant', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2052, 1, 'gr', 'layout', 'restaurant_list', 'Restaurant Liste', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2053, 1, 'gr', 'layout', 'restaurant_create', 'Restaurant erstellen', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2054, 1, 'gr', 'layout', 'restaurant_edit', 'Restaurant bearbeiten', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2055, 1, 'gr', 'layout', 'restaurants', 'Restaurants', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2056, 1, 'gr', 'layout', 'list', 'Liste', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2057, 1, 'gr', 'layout', 'create', 'Erstellen', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2058, 1, 'gr', 'layout', 'your_restaurant', 'Dein Restaurant', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2059, 1, 'gr', 'layout', 'name', 'Name', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2060, 1, 'gr', 'layout', 'timing', 'Öffnungszeiten', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2061, 1, 'gr', 'layout', 'email', 'E-mail', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2062, 1, 'gr', 'layout', 'phone_number', 'Telefonnummer', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2063, 1, 'gr', 'layout', 'currency', 'Währung', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2064, 1, 'gr', 'layout', 'type', 'Type', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2065, 1, 'gr', 'layout', 'description', 'Beschreibung', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2066, 1, 'gr', 'layout', 'location', 'Adresse', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2067, 1, 'gr', 'layout', 'cover', 'Cover', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2068, 1, 'gr', 'layout', 'profile', 'Profil', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2069, 1, 'gr', 'layout', 'image', 'Bild', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2070, 1, 'gr', 'layout', 'status', 'Status', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2071, 1, 'gr', 'layout', 'total_item', 'Total Gerichte', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2072, 1, 'gr', 'layout', 'active', 'Aktiv', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2073, 1, 'gr', 'layout', 'inactive', 'Inaktiv', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2074, 1, 'gr', 'layout', 'edit', 'bearbeiten', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2075, 1, 'gr', 'layout', 'preview', 'Vorschau', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2076, 1, 'gr', 'layout', 'delete', 'Löschen', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2077, 1, 'gr', 'layout', 'general_info', 'Generelle Informationen', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2078, 1, 'gr', 'layout', 'image_upload', 'Bild hochladen', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2079, 1, 'gr', 'layout', 'item_list', 'Liste der Gerichte', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2080, 1, 'gr', 'layout', 'item', 'Gerichte', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2081, 1, 'gr', 'layout', 'item_create', 'Gericht erstellen', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2082, 1, 'gr', 'layout', 'item_edit', 'Gericht bearbeiten', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2083, 1, 'gr', 'layout', 'items', 'Gericht', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2084, 1, 'gr', 'layout', 'item_name', 'Name des Gerichts', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2085, 1, 'gr', 'layout', 'item_details', 'Details zum Gericht', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2086, 1, 'gr', 'layout', 'your_item', 'Dein Gericht', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2087, 1, 'gr', 'layout', 'title', 'Titel', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2088, 1, 'gr', 'layout', 'details', 'Details', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2089, 1, 'gr', 'layout', 'price', 'Preis', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2090, 1, 'gr', 'layout', 'category', 'Menükategorie', '2021-09-25 07:12:01', '2021-09-25 07:12:01'),
(2091, 1, 'gr', 'layout', 'discount', 'Rabatt', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2092, 1, 'gr', 'layout', 'discount_type', 'Rabattart', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2093, 1, 'gr', 'layout', 'discount_to', 'Rabatt für', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2094, 1, 'gr', 'layout', 'item_image', 'Wähle ein Bild für dein Gericht aus', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2095, 1, 'gr', 'layout', 'choose', 'auswählen', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2096, 1, 'gr', 'layout', 'confirmation', 'Bestätigung', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2097, 1, 'gr', 'layout', 'confirm', 'bestätigen', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2098, 1, 'gr', 'layout', 'cancel', 'abbrechen', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2099, 1, 'gr', 'layout', 'logout', 'Logout', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2100, 1, 'gr', 'layout', 'dashboard', 'Dashboard', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2101, 1, 'gr', 'layout', 'hello', 'Hallo,', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2102, 1, 'gr', 'layout', 'all_notification', 'Zeige alle Benachrichtigungen', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2103, 1, 'gr', 'layout', 'order_list', 'Bestellliste', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2104, 1, 'gr', 'layout', 'order', 'Bestellung', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2105, 1, 'gr', 'layout', 'orders', 'Bestellungen', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2106, 1, 'gr', 'layout', 'your_order', 'Deine Bestellungen', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2107, 1, 'gr', 'layout', 'table', 'Tisch', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2108, 1, 'gr', 'layout', 'payment_status', 'Bezahlstatus', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2109, 1, 'gr', 'layout', 'comment', 'Kommentar', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2110, 1, 'gr', 'layout', 'delivered_within', 'Lieferzeit', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2111, 1, 'gr', 'layout', 'paid', 'bezahlt', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2112, 1, 'gr', 'layout', 'unpaid', 'nicht bezahl', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2113, 1, 'gr', 'layout', 'pending', 'ausstehend', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2114, 1, 'gr', 'layout', 'delivered', 'geliefert', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2115, 1, 'gr', 'layout', 'approved', 'bestätigt', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2116, 1, 'gr', 'layout', 'rejected', 'abgelehnt', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2117, 1, 'gr', 'layout', 'processing', 'In Bearbeitung', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2118, 1, 'gr', 'layout', 'ready_for_delivery', 'Bereit zur Lieferung', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2119, 1, 'gr', 'layout', 'on_the_way', 'unterwegs', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2120, 1, 'gr', 'layout', 'approve', 'bestätigen', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2121, 1, 'gr', 'layout', 'total_price', 'Total', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2122, 1, 'gr', 'layout', 'amount', 'Menge', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2123, 1, 'gr', 'layout', 'within', 'innerhalb', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2124, 1, 'gr', 'layout', 'time', 'Zeit', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2125, 1, 'gr', 'layout', 'minutes', 'Minuten', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2126, 1, 'gr', 'layout', 'hours', 'Stunden', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2127, 1, 'gr', 'layout', 'days', 'Tage', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2128, 1, 'gr', 'layout', 'check_new_order', 'Neue Bestellungen prüfen', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2129, 1, 'gr', 'layout', 'users', 'χρήστες', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2130, 1, 'gr', 'layout', 'customer', 'Kunde', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2131, 1, 'gr', 'layout', 'quantity', 'Menge', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2132, 1, 'gr', 'layout', 'total', 'Total', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2133, 1, 'gr', 'layout', 'grand_total', 'Total', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2134, 1, 'gr', 'layout', 'total_discount', 'Total Rabatt', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2135, 1, 'gr', 'layout', 'invoice_by', 'Rechnung von', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2136, 1, 'gr', 'layout', 'invoice_to', 'Rechnung an', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2137, 1, 'gr', 'layout', 'order_details', 'Bestelldetails', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2138, 1, 'gr', 'layout', 'message.item_create', 'Gericht wurde erstellt', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2139, 1, 'gr', 'layout', 'message.order_create', 'Bestellung wurde erstellt', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2140, 1, 'gr', 'layout', 'message.order_placed', 'Deine Bestellung wurde aufgenommen', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2141, 1, 'gr', 'layout', 'message.restaurant_create', 'Restaurant wurde erstellt', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2142, 1, 'gr', 'layout', 'message.item_update', 'Gericht wurde aktualisiert', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2143, 1, 'gr', 'layout', 'message.order_update', 'Bestellungen wurde aktualisiert', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2144, 1, 'gr', 'layout', 'message.restaurant_update', 'Restaurant wurde aktualisiert', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2145, 1, 'gr', 'layout', 'message.order_status_update', 'Bestellstatus wurde aktualisiert', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2146, 1, 'gr', 'layout', 'message.order_not_found', 'Bestellung wurde nicht gefunden', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2147, 1, 'gr', 'layout', 'message.restaurant_not_found', 'Restaurant wurde nicht gefunden', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2148, 1, 'gr', 'layout', 'message.order_status_warning', 'Willst du den Status wirklich zu <b class=\"text-red\"> :status </b> ändern?', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2149, 1, 'gr', 'layout', 'message.item_delete', 'Gericht wurde gelöscht', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2150, 1, 'gr', 'layout', 'message.order_delete', 'Bestellung wurde gelöscht', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2151, 1, 'gr', 'layout', 'message.restaurant_delete', 'Restaurant wurde gelöscht', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2152, 1, 'gr', 'layout', 'message.item_delete_warning', 'Bist du sicher, dass du dieses Gericht löschen möchtest?', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2153, 1, 'gr', 'layout', 'message.order_delete_warning', 'Bist du sicher, dass du diese Bestellung löschen möchtest?', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2154, 1, 'gr', 'layout', 'message.restaurant_delete_warning', 'Bist du sicher, dass du dieses Restaurant löschen möchtest?', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2155, 1, 'gr', 'layout', 'message.plan_update', 'Der Plan wurde aktualisiert', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2156, 1, 'gr', 'layout', 'message.play_change_success', 'Gratuliere! Du hast deinen Plan aktualisiert.', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2157, 1, 'gr', 'layout', 'message.invalid_payment', 'Oops! Ungültige Zahlung', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2158, 1, 'gr', 'layout', 'message.userplan_approve_success', 'User-Plan wurde genehmigt', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2159, 1, 'gr', 'layout', 'message.userplan_reject_success', 'User-Plan wurde abgelehnt', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2160, 1, 'gr', 'layout', 'message.userplan_status_change_msg', 'User-Plan Status wurde geändert', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2161, 1, 'gr', 'layout', 'message.userplan_approve_warning', 'Bist du sicher, dass du diesen Plan genehmigen möchtest?', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2162, 1, 'gr', 'layout', 'message.userplan_reject_warning', 'Bist du sicher, dass du diesen Plan ablehnen möchtest?', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2163, 1, 'gr', 'layout', 'message.change_user_plan_warning', 'Bist du sicher, dass du den Status ändern möchtest?', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2164, 1, 'gr', 'layout', 'message.category_update_message', 'Menükategorie wurde aktualisiert', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2165, 1, 'gr', 'layout', 'message.category_store_msg', 'Category stored successfully', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2166, 1, 'gr', 'layout', 'message.setting_update', 'Einstellungen wurden aktualisiert', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2167, 1, 'gr', 'layout', 'message.registration_success', 'Gratulation! Wir haben dir eine Bestätigungsmail gesendet', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2168, 1, 'gr', 'layout', 'message.verify', 'Deine E-Mail wurde erfolgreich verifiziert', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2169, 1, 'gr', 'layout', 'message.verify_resend', 'Verfikations-Link wurde erneut gesendet', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2170, 1, 'gr', 'layout', 'message.verify_text', 'Bitte verifiziere zuerst deine E-Mail Adresse. Du kannst dir den Verifikations-Link jederzeit wieder zukommen lassen.', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2171, 1, 'gr', 'layout', 'message.user_not_found', 'User konnte nicht gefunden werde. Nutze eine gültige E-Mail Adresse.', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2172, 1, 'gr', 'layout', 'message.reset_link_send', 'Eine E-Mail wurde an deine Adresse versendet', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2173, 1, 'gr', 'layout', 'message.token_expired', 'Der Token ist abgelaufen oder wurde bereits verwendet', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2174, 1, 'gr', 'layout', 'message.reset_successful', 'Dein Passwort wurde erfolgreich zurückgesetzt', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2175, 1, 'gr', 'layout', 'message.category_delete_warning', 'Diese Menükategorie wirklich löschen?', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2176, 1, 'gr', 'layout', 'message.category_delete', 'Menükategorie wurde gelöscht', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2177, 1, 'gr', 'layout', 'message.plan_delete_warning', 'Diesen Plan wirklich löschen?', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2178, 1, 'gr', 'layout', 'message.plan_delete_msg', 'Der Plan wurde gelöscht', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2179, 1, 'gr', 'layout', 'message.table_delete_msg', 'Der Tisch wurde gelöscht', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2180, 1, 'gr', 'layout', 'message.table_delete_warning', 'Diesen Tisch wirklich löschen?', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2181, 1, 'gr', 'layout', 'message.table_not_delete', 'Oops! Dieser Tisch wird bereits verwendet', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2182, 1, 'gr', 'layout', 'message.category_not_delete', 'Oops! Diese Menükategorie wird bereits verwendet', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2183, 1, 'gr', 'layout', 'message.item_not_delete', 'Oops! Diese Gericht wird bereits verwendet', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2184, 1, 'gr', 'layout', 'message.plan_not_delete', 'Oops! Dieser Plan wird bereits verwendet', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2185, 1, 'gr', 'layout', 'message.restaurant_not_delete', 'Oops! Dieses Restaurant wird bereits verwendet', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2186, 1, 'gr', 'layout', 'message.pending_configuration', 'Du musst zuerst deine Einstellungen einrichten', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2187, 1, 'gr', 'layout', 'message.invalid_request', 'Ungültige Anfrage', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2188, 1, 'gr', 'layout', 'message.upgrade_notification', 'Dein Plan ist abgelaufen, bitte aktualisieren ihn.', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2189, 1, 'gr', 'layout', 'message.request_received', 'Wir haben deine Anfrage erhalten und werden dich in Kürze kontaktieren', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2190, 1, 'gr', 'layout', 'message.cancel_payment', 'Bezahlung wurde abgebrochen', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2191, 1, 'gr', 'layout', 'message.upload_success', 'Bild erfolgreich hochgeladen', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2192, 1, 'gr', 'layout', 'message.update_failed', 'Ups! Update fehlgeschlagen', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2193, 1, 'gr', 'layout', 'message.tax_delete_warning', 'Sind Sie sicher, diese Steuer zu löschen?', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2194, 1, 'gr', 'layout', 'message.table_success_msg', 'Tabelle erfolgreich erstellt', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2195, 1, 'gr', 'layout', 'message.table_update_msg', 'Tabelle erfolgreich aktualisiert', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2196, 1, 'gr', 'layout', 'message.tax_success_msg', 'Steuer erfolgreich erstellt', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2197, 1, 'gr', 'layout', 'message.tax_update_msg', 'Steuer erfolgreich aktualisiert', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2198, 1, 'gr', 'layout', 'settings_title', 'Einstellungen', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2199, 1, 'gr', 'layout', 'general_settings', 'Allgemeines', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2200, 1, 'gr', 'layout', 'general', 'Allgemein', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2201, 1, 'gr', 'layout', 'password_change', 'Passwort ändern', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2202, 1, 'gr', 'layout', 'email_settings', 'E-Mail Einstellungen', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2203, 1, 'gr', 'layout', 'site_settings', 'Seiten Einstellungen', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2204, 1, 'gr', 'layout', 'local_settings', 'Lokale Einstellungen', '2021-09-25 07:12:02', '2021-09-25 07:12:02'),
(2205, 1, 'gr', 'layout', 'email_template', 'E-Mail Template', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2206, 1, 'gr', 'layout', 'picture', 'Bild', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2207, 1, 'gr', 'layout', 'submit', 'senden', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2208, 1, 'gr', 'layout', 'old_password', 'Altes Passwort', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2209, 1, 'gr', 'layout', 'new_password', 'Neues Passwort', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2210, 1, 'gr', 'layout', 'confirm_password', 'Passwort bestätigen', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2211, 1, 'gr', 'layout', 'host', 'Host', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2212, 1, 'gr', 'layout', 'password', 'Passwort', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2213, 1, 'gr', 'layout', 'port', 'Port', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2214, 1, 'gr', 'layout', 'username', 'Username', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2215, 1, 'gr', 'layout', 'encrypt_type', 'Encryption Type', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2216, 1, 'gr', 'layout', 'registration', 'Registrierung', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2217, 1, 'gr', 'layout', 'forget_password', 'Passwort vergessen', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2218, 1, 'gr', 'layout', 'order_placed', 'Bestellung aufgegeben', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2219, 1, 'gr', 'layout', 'order_status', 'Bestellstatus', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2220, 1, 'gr', 'layout', 'email_subject', 'E-Mail Betreff', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2221, 1, 'gr', 'layout', 'email_body', 'E-Mail Inhalt', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2222, 1, 'gr', 'layout', 'email_from', 'E-Mail von', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2223, 1, 'gr', 'layout', 'plan_request', 'Plan-Anfrage', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2224, 1, 'gr', 'layout', 'plan_accept', 'Plan wurde akzeptiert', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2225, 1, 'gr', 'layout', 'plan_expire', 'Plan ausgelaufen', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2226, 1, 'gr', 'layout', 'payment_gateway', 'Payment gateway', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2227, 1, 'gr', 'layout', 'sms_gateway', 'Sms gateway', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2228, 1, 'gr', 'layout', 'stripe', 'Stripe', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2229, 1, 'gr', 'layout', 'offline', 'Offline', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2230, 1, 'gr', 'layout', 'bank_name', 'Bankname', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2231, 1, 'gr', 'layout', 'bank_branch', 'Bank Branch', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2232, 1, 'gr', 'layout', 'account_name', 'Name des Kontoinhabers', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2233, 1, 'gr', 'layout', 'account_number', 'Konto Nummer', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2234, 1, 'gr', 'layout', 'transaction_id', 'Transaktions ID', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2235, 1, 'gr', 'layout', 'reference', 'Referenz', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2236, 1, 'gr', 'layout', 'client_id_key', 'ClientID key', '2021-09-25 07:12:03', '2021-09-25 07:12:03');
INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES
(2237, 1, 'gr', 'layout', 'client_secret_key', 'Client Secret key', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2238, 1, 'gr', 'layout', 'publish_key', 'Publishable key', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2239, 1, 'gr', 'layout', 'secret_key', 'Secret key', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2240, 1, 'gr', 'layout', 'twilio', 'Twilio', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2241, 1, 'gr', 'layout', 'voyager', 'Voyager', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2242, 1, 'gr', 'layout', 'signalwire', 'Signalwire', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2243, 1, 'gr', 'layout', 'sid', 'SID', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2244, 1, 'gr', 'layout', 'token', 'Token', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2245, 1, 'gr', 'layout', 'project_id', 'Project ID', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2246, 1, 'gr', 'layout', 'space_url', 'Space URL', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2247, 1, 'gr', 'layout', 'api_key', 'Api key', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2248, 1, 'gr', 'layout', 'api_secret', 'Api secret', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2249, 1, 'gr', 'layout', 'plan_title', 'Plan Liste', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2250, 1, 'gr', 'layout', 'plan', 'Pläne', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2251, 1, 'gr', 'layout', 'cost', 'Kosten', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2252, 1, 'gr', 'layout', 'recurring_type', 'Recurring type', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2253, 1, 'gr', 'layout', 'table_limit', 'Maximale Anzahl Tische', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2254, 1, 'gr', 'layout', 'restaurant_limit', 'Maximale Anzahl Restaurants', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2255, 1, 'gr', 'layout', 'item_limit', 'Maximale Anzahl Gerichte', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2256, 1, 'gr', 'layout', 'unlimited_support', 'Unlimitierter Support', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2257, 1, 'gr', 'layout', 'action', 'Aktion', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2258, 1, 'gr', 'layout', 'onetime', 'Einmal', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2259, 1, 'gr', 'layout', 'weekly', 'wöchentlich', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2260, 1, 'gr', 'layout', 'monthly', 'monatlich', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2261, 1, 'gr', 'layout', 'yearly', 'jährlich', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2262, 1, 'gr', 'layout', 'plan_edit', 'Plan bearbeiten', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2263, 1, 'gr', 'layout', 'no_of_capacity', 'Anzahl Gäste pro Tisch', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2264, 1, 'gr', 'layout', 'position', 'Ort des Tisches (z.B. Mitte, Eingang etc.)', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2265, 1, 'gr', 'layout', 'payment_title', 'Zahlung', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2266, 1, 'gr', 'layout', 'payment_method', 'Zahlungsmethode', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2267, 1, 'gr', 'layout', 'card_name', 'Karteninhaber', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2268, 1, 'gr', 'layout', 'card_number', 'Kartennummer', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2269, 1, 'gr', 'layout', 'cvc', 'CVC', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2270, 1, 'gr', 'layout', 'expiration', 'Ablaufdatum', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2271, 1, 'gr', 'layout', 'pay_plan_title', 'Plan Titel', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2272, 1, 'gr', 'layout', 'start_date', 'Startdatum', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2273, 1, 'gr', 'layout', 'expiry_date', 'Ablaufdatum', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2274, 1, 'gr', 'layout', 'other_info', 'Andere Informationen', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2275, 1, 'gr', 'layout', 'total_cost', 'Totale Kosten', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2276, 1, 'gr', 'layout', 'lifetime', 'Lifetime', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2277, 1, 'gr', 'layout', 'pay_now', 'Pay Now', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2278, 1, 'gr', 'layout', 'credit_or_debit', 'Kredit- oder Debitkarte', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2279, 1, 'gr', 'layout', 'restaurant_extends', 'Limit der Anzahl Restaurants erreicht oder Abo abgelaufen. Bitte den Plan updaten oder upgraden um mehr Restaurants zu erfassen', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2280, 1, 'gr', 'layout', 'table_extends', 'Limit der Anzahl Tische erreicht oder Abo abgelaufen. Bitte den Plan updaten oder upgraden um mehr Restaurants zu erfassen', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2281, 1, 'gr', 'layout', 'item_extends', 'Limit der Anzahl Gerichte erreicht oder Abo abgelaufen. Bitte den Plan updaten oder upgraden um mehr Restaurants zu erfassen', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2282, 1, 'gr', 'layout', 'user_plan_title', 'User Plan', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2283, 1, 'gr', 'layout', 'user_plan', 'User plan', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2284, 1, 'gr', 'layout', 'plan_name', 'Plan Titel', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2285, 1, 'gr', 'layout', 'reject', 'Ablehnen', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2286, 1, 'gr', 'layout', 'demo', 'Demo', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2287, 1, 'gr', 'layout', 'pricing', 'Preise', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2288, 1, 'gr', 'layout', 'join', 'Anmelden', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2289, 1, 'gr', 'layout', 'signup', 'Anmelden', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2290, 1, 'gr', 'layout', 'total_restaurant', 'Anzahl Restaurants', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2291, 1, 'gr', 'layout', 'total_order_amount', 'Anzahl Bestellungen', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2292, 1, 'gr', 'layout', 'total_income', 'Umsatz', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2293, 1, 'gr', 'layout', 'pending_order', 'Offene Bestellungen', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2294, 1, 'gr', 'layout', 'pending_plan', 'Nicht bestätigte Pläne', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2295, 1, 'gr', 'layout', 'category_create_title', 'Kategorie erstellen', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2296, 1, 'gr', 'layout', 'category_create', 'Kategorie erstellen', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2297, 1, 'gr', 'layout', 'category_edit_title', 'Kategorie bearbeiten', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2298, 1, 'gr', 'layout', 'category_edit', 'Kategorie bearbeiten', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2299, 1, 'gr', 'layout', 'qr_maker', 'QR Code generieren', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2300, 1, 'gr', 'layout', 'settings', 'Einstellungen', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2301, 1, 'gr', 'layout', 'generate', 'Erstellen', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2302, 1, 'gr', 'layout', 'restaurant_select', 'Restaurant', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2303, 1, 'gr', 'layout', 'table_select', 'Tisch', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2304, 1, 'gr', 'layout', 'fill_color', 'Code Farbe', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2305, 1, 'gr', 'layout', 'bg_color', 'Hintergrundfarbe', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2306, 1, 'gr', 'layout', 'text_color', 'Schriftfarbe', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2307, 1, 'gr', 'layout', 'mode', 'Mode', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2308, 1, 'gr', 'layout', 'design_type', 'QR-Code Design', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2309, 1, 'gr', 'layout', 'normal', 'Normal', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2310, 1, 'gr', 'layout', 'text_strip', 'Text durchgezogen', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2311, 1, 'gr', 'layout', 'image_strip', 'Bild durchgezogen', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2312, 1, 'gr', 'layout', 'text', 'Text in der Mitte', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2313, 1, 'gr', 'layout', 'size', 'Grösse', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2314, 1, 'gr', 'layout', 'pos_x', 'X-Achse', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2315, 1, 'gr', 'layout', 'pos_y', 'Y-Achse', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2316, 1, 'gr', 'layout', 'role_permission', 'Berechtigungen', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2317, 1, 'gr', 'layout', 'verify_email', 'E-Mail Bestätigen', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2318, 1, 'gr', 'layout', 'enter_code', 'Code eingeben', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2319, 1, 'gr', 'layout', 'verify', 'Bestätigen', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2320, 1, 'gr', 'layout', 'resend', 'Erneut senden', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2321, 1, 'gr', 'layout', 'billings', 'Rechnungen', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2322, 1, 'gr', 'layout', 'download', 'Download', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2323, 1, 'gr', 'layout', 'my_order', 'Meine Bestellungen', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2324, 1, 'gr', 'layout', 'add', 'hinzufügen', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2325, 1, 'gr', 'layout', 'overview', 'Übersicht', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2326, 1, 'gr', 'layout', 'payment', 'Bezahlung', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2327, 1, 'gr', 'layout', 'place_order', 'bestellen', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2328, 1, 'gr', 'layout', 'upgrade', 'Upgrade', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2329, 1, 'gr', 'layout', 'login', 'Login', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2330, 1, 'gr', 'layout', 'date_time_format', 'Datumsformat', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2331, 1, 'gr', 'layout', 'date_time_separator', 'Datumsformat Trennzeichen', '2021-09-25 07:12:03', '2021-09-25 07:12:03'),
(2332, 1, 'gr', 'layout', 'timezone', 'Zeitzone', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2333, 1, 'gr', 'layout', 'decimal_format', 'Dezimalformat', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2334, 1, 'gr', 'layout', 'language', 'Sprache', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2335, 1, 'gr', 'layout', 'currency_symbol', 'Währungssymbol', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2336, 1, 'gr', 'layout', 'currency_symbol_position', 'Position Währungssymbol', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2337, 1, 'gr', 'layout', 'before', 'vorher', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2338, 1, 'gr', 'layout', 'after', 'nachher', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2339, 1, 'gr', 'layout', 'bengali', 'বাংলা', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2340, 1, 'gr', 'layout', 'english', 'English', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2341, 1, 'gr', 'layout', 'arabic', 'عربى', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2342, 1, 'gr', 'layout', 'hindi', 'हिंदी', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2343, 1, 'gr', 'layout', 'spanish', 'Español', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2344, 1, 'gr', 'layout', 'japanese', '日本人', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2345, 1, 'gr', 'layout', 'portuguese', 'Português', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2346, 1, 'gr', 'layout', 'thousand_separator', 'Tausender Trennzeichen', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2347, 1, 'gr', 'layout', 'decimals', 'Dezimal', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2348, 1, 'gr', 'layout', 'decimal_point', 'Dezimalpunkt', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2349, 1, 'gr', 'layout', 'all_right_reserved', 'All Rights Reserved', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2350, 1, 'gr', 'layout', 'copyright_footer', 'Copyright © ordery', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2351, 1, 'gr', 'layout', 'click_here', 'Hier klicken', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2352, 1, 'gr', 'layout', 'pay_on_table', 'Am Tisch zahlen', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2353, 1, 'gr', 'layout', 'currency_code', 'Währungscode', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2354, 1, 'gr', 'layout', 'paytm', 'Paytm', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2355, 1, 'gr', 'layout', 'find_yours', 'Deinen Code finden', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2356, 1, 'gr', 'layout', 'pay_with_paytm', 'Mit Paytm zahlen', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2357, 1, 'gr', 'layout', 'paypal_des', 'Mit Paypal zahlen', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2358, 1, 'gr', 'layout', 'paypal', 'Paypal', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2359, 1, 'gr', 'layout', 'paytm_environment', 'Environment', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2360, 1, 'gr', 'layout', 'paytm_mid', 'Merchant ID', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2361, 1, 'gr', 'layout', 'paytm_secret_key', 'Secret Key', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2362, 1, 'gr', 'layout', 'paytm_website', 'Website', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2363, 1, 'gr', 'layout', 'paytm_txn_url', 'Transaction URL', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2364, 1, 'gr', 'layout', 'choose_template', 'Choose Template', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2365, 1, 'gr', 'layout', 'classic', 'Classic', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2366, 1, 'gr', 'layout', 'modern', 'Modern', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2367, 1, 'gr', 'layout', 'flipbook', 'FlipBook', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2368, 1, 'gr', 'layout', 'custom', 'Custom', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2369, 1, 'gr', 'layout', 'custom_menu', 'Benutzerdefiniertes Menü', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2370, 1, 'gr', 'layout', 'add_menu', 'Add Menu', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2371, 1, 'gr', 'layout', 'enter_name', 'enter name', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2372, 1, 'gr', 'layout', 'header', 'Header', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2373, 1, 'gr', 'layout', 'enter_header', 'Enter Header', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2374, 1, 'gr', 'layout', 'footer', 'Fußzeile', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2375, 1, 'gr', 'layout', 'enter_footer', 'Enter Footer', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2376, 1, 'gr', 'layout', 'enter_description', 'Beschreibung eingeben', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2377, 1, 'gr', 'layout', 'enter_title', 'Titel eingeben', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2378, 1, 'gr', 'layout', 'basic', 'Basic', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2379, 1, 'gr', 'layout', 'extra', 'Extra', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2380, 1, 'gr', 'layout', 'add_extra', 'Add Extra', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2381, 1, 'gr', 'layout', 'add_extra_name', 'Extra name eingeben', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2382, 1, 'gr', 'layout', 'enter_price', 'Preis eingeben', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2383, 1, 'gr', 'layout', 'item_extra', 'Item \' s Extra ', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2384, 1, 'gr', 'layout', 'process', 'Process', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2385, 1, 'gr', 'layout', 'phone', 'Telefon', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2386, 1, 'gr', 'layout', 'address', 'Adresse', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2387, 1, 'gr', 'layout', 'is_unlimited', 'Is Unlimited?', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2388, 1, 'gr', 'layout', 'unlimited', 'unbegrenzt', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2389, 1, 'gr', 'layout', 'tax', 'Steuer', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2390, 1, 'gr', 'layout', 'tax_create', 'Tax create', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2391, 1, 'gr', 'layout', 'tax_edit', 'Tax edit', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2392, 1, 'gr', 'layout', 'taxes', 'Steuern', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2393, 1, 'gr', 'layout', 'tax_title', 'Steuertitel', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2394, 1, 'gr', 'layout', 'flat', 'Flat', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2395, 1, 'gr', 'layout', 'percentage', 'Prozentsatz', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2396, 1, 'gr', 'layout', 'print', 'Print', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2397, 1, 'gr', 'layout', 'pdf', 'PDF', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2398, 1, 'gr', 'layout', 'total_tax', 'Gesamtsteuer', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2399, 1, 'gr', 'layout', 'view_basket', 'View Basket', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2400, 1, 'gr', 'layout', 'all_categories', 'Alle Kategorien', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2401, 1, 'gr', 'layout', 'germany', 'Deutsch', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2402, 1, 'gr', 'layout', 'select_delivery_type', 'Select Delivery Type', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2403, 1, 'gr', 'layout', 'modal_title', 'Modal title', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2404, 1, 'gr', 'layout', 'close', 'Close', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2405, 1, 'gr', 'layout', 'cash_on_delivery', 'Cash on Delivery', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2406, 1, 'gr', 'layout', 'delivery_address', 'Delivery address', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2407, 1, 'gr', 'layout', 'ex_2806_montague_rd_bC_canada', 'Ex: 2806 Montague Rd, BC, Canada', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2408, 1, 'gr', 'layout', 'view_order', 'View Order', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2409, 1, 'gr', 'layout', 'credit_or_debit_card', 'Credit or Debit card', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2410, 1, 'gr', 'layout', 'order_overview', 'Order  overview', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2411, 1, 'gr', 'layout', 'payment_type', 'Payment Type', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2412, 1, 'gr', 'layout', 'select_a_payment_type', 'Select a payment type', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2413, 1, 'gr', 'layout', 'pay_in_cash', 'Pay in cash', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2414, 1, 'gr', 'layout', 'pay_in_paytm', 'Pay in paytm', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2415, 1, 'gr', 'layout', 'cash', 'Cash', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2416, 1, 'gr', 'layout', 'ex_Need_extra_spoon', 'Ex: Need extra spoon', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2417, 1, 'gr', 'layout', 'ex_example_mail_com', 'Ex: example@mail.com', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2418, 1, 'gr', 'layout', 'ex_number', 'Ex: +140139485764', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2419, 1, 'gr', 'layout', 'ex_jone_doe', 'Ex: Jone Doe', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2420, 1, 'gr', 'pagination', 'previous', '&laquo; Previous', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2421, 1, 'gr', 'pagination', 'next', 'Next &raquo;', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2422, 1, 'gr', 'passwords', 'reset', 'Your password has been reset!', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2423, 1, 'gr', 'passwords', 'sent', 'We have emailed your password reset link!', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2424, 1, 'gr', 'passwords', 'throttled', 'Please wait before retrying.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2425, 1, 'gr', 'passwords', 'token', 'This password reset token is invalid.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2426, 1, 'gr', 'passwords', 'user', 'We can\'t find a user with that email address.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2427, 1, 'gr', 'validation', 'accepted', 'The :attribute must be accepted.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2428, 1, 'gr', 'validation', 'active_url', 'The :attribute is not a valid URL.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2429, 1, 'gr', 'validation', 'after', 'The :attribute must be a date after :date.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2430, 1, 'gr', 'validation', 'after_or_equal', 'The :attribute must be a date after or equal to :date.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2431, 1, 'gr', 'validation', 'alpha', 'The :attribute may only contain letters.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2432, 1, 'gr', 'validation', 'alpha_dash', 'The :attribute may only contain letters, numbers, dashes and underscores.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2433, 1, 'gr', 'validation', 'alpha_num', 'The :attribute may only contain letters and numbers.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2434, 1, 'gr', 'validation', 'array', 'The :attribute must be an array.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2435, 1, 'gr', 'validation', 'before', 'The :attribute must be a date before :date.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2436, 1, 'gr', 'validation', 'before_or_equal', 'The :attribute must be a date before or equal to :date.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2437, 1, 'gr', 'validation', 'between.numeric', 'The :attribute must be between :min and :max.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2438, 1, 'gr', 'validation', 'between.file', 'The :attribute must be between :min and :max kilobytes.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2439, 1, 'gr', 'validation', 'between.string', 'The :attribute must be between :min and :max characters.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2440, 1, 'gr', 'validation', 'between.array', 'The :attribute must have between :min and :max items.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2441, 1, 'gr', 'validation', 'boolean', 'The :attribute field must be true or false.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2442, 1, 'gr', 'validation', 'confirmed', 'The :attribute confirmation does not match.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2443, 1, 'gr', 'validation', 'date', 'The :attribute is not a valid date.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2444, 1, 'gr', 'validation', 'date_equals', 'The :attribute must be a date equal to :date.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2445, 1, 'gr', 'validation', 'date_format', 'The :attribute does not match the format :format.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2446, 1, 'gr', 'validation', 'different', 'The :attribute and :other must be different.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2447, 1, 'gr', 'validation', 'digits', 'The :attribute must be :digits digits.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2448, 1, 'gr', 'validation', 'digits_between', 'The :attribute must be between :min and :max digits.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2449, 1, 'gr', 'validation', 'dimensions', 'The :attribute has invalid image dimensions.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2450, 1, 'gr', 'validation', 'distinct', 'The :attribute field has a duplicate value.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2451, 1, 'gr', 'validation', 'email', 'The :attribute must be a valid email address.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2452, 1, 'gr', 'validation', 'ends_with', 'The :attribute must end with one of the following: :values.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2453, 1, 'gr', 'validation', 'exists', 'The selected :attribute is invalid.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2454, 1, 'gr', 'validation', 'file', 'The :attribute must be a file.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2455, 1, 'gr', 'validation', 'filled', 'The :attribute field must have a value.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2456, 1, 'gr', 'validation', 'gt.numeric', 'The :attribute must be greater than :value.', '2021-09-25 07:12:04', '2021-09-25 07:12:04'),
(2457, 1, 'gr', 'validation', 'gt.file', 'The :attribute must be greater than :value kilobytes.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2458, 1, 'gr', 'validation', 'gt.string', 'The :attribute must be greater than :value characters.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2459, 1, 'gr', 'validation', 'gt.array', 'The :attribute must have more than :value items.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2460, 1, 'gr', 'validation', 'gte.numeric', 'The :attribute must be greater than or equal :value.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2461, 1, 'gr', 'validation', 'gte.file', 'The :attribute must be greater than or equal :value kilobytes.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2462, 1, 'gr', 'validation', 'gte.string', 'The :attribute must be greater than or equal :value characters.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2463, 1, 'gr', 'validation', 'gte.array', 'The :attribute must have :value items or more.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2464, 1, 'gr', 'validation', 'image', 'The :attribute must be an image.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2465, 1, 'gr', 'validation', 'in', 'The selected :attribute is invalid.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2466, 1, 'gr', 'validation', 'in_array', 'The :attribute field does not exist in :other.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2467, 1, 'gr', 'validation', 'integer', 'The :attribute must be an integer.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2468, 1, 'gr', 'validation', 'ip', 'The :attribute must be a valid IP address.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2469, 1, 'gr', 'validation', 'ipv4', 'The :attribute must be a valid IPv4 address.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2470, 1, 'gr', 'validation', 'ipv6', 'The :attribute must be a valid IPv6 address.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2471, 1, 'gr', 'validation', 'json', 'The :attribute must be a valid JSON string.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2472, 1, 'gr', 'validation', 'lt.numeric', 'The :attribute must be less than :value.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2473, 1, 'gr', 'validation', 'lt.file', 'The :attribute must be less than :value kilobytes.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2474, 1, 'gr', 'validation', 'lt.string', 'The :attribute must be less than :value characters.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2475, 1, 'gr', 'validation', 'lt.array', 'The :attribute must have less than :value items.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2476, 1, 'gr', 'validation', 'lte.numeric', 'The :attribute must be less than or equal :value.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2477, 1, 'gr', 'validation', 'lte.file', 'The :attribute must be less than or equal :value kilobytes.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2478, 1, 'gr', 'validation', 'lte.string', 'The :attribute must be less than or equal :value characters.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2479, 1, 'gr', 'validation', 'lte.array', 'The :attribute must not have more than :value items.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2480, 1, 'gr', 'validation', 'max.numeric', 'The :attribute may not be greater than :max.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2481, 1, 'gr', 'validation', 'max.file', 'The :attribute may not be greater than :max kilobytes.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2482, 1, 'gr', 'validation', 'max.string', 'The :attribute may not be greater than :max characters.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2483, 1, 'gr', 'validation', 'max.array', 'The :attribute may not have more than :max items.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2484, 1, 'gr', 'validation', 'mimes', 'The :attribute must be a file of type: :values.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2485, 1, 'gr', 'validation', 'mimetypes', 'The :attribute must be a file of type: :values.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2486, 1, 'gr', 'validation', 'min.numeric', 'The :attribute must be at least :min.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2487, 1, 'gr', 'validation', 'min.file', 'The :attribute must be at least :min kilobytes.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2488, 1, 'gr', 'validation', 'min.string', 'The :attribute must be at least :min characters.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2489, 1, 'gr', 'validation', 'min.array', 'The :attribute must have at least :min items.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2490, 1, 'gr', 'validation', 'multiple_of', 'The :attribute must be a multiple of :value', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2491, 1, 'gr', 'validation', 'not_in', 'The selected :attribute is invalid.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2492, 1, 'gr', 'validation', 'not_regex', 'The :attribute format is invalid.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2493, 1, 'gr', 'validation', 'numeric', 'The :attribute must be a number.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2494, 1, 'gr', 'validation', 'password', 'The password is incorrect.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2495, 1, 'gr', 'validation', 'present', 'The :attribute field must be present.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2496, 1, 'gr', 'validation', 'regex', 'The :attribute format is invalid.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2497, 1, 'gr', 'validation', 'required', 'The :attribute field is required.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2498, 1, 'gr', 'validation', 'required_if', 'The :attribute field is required when :other is :value.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2499, 1, 'gr', 'validation', 'required_unless', 'The :attribute field is required unless :other is in :values.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2500, 1, 'gr', 'validation', 'required_with', 'The :attribute field is required when :values is present.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2501, 1, 'gr', 'validation', 'required_with_all', 'The :attribute field is required when :values are present.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2502, 1, 'gr', 'validation', 'required_without', 'The :attribute field is required when :values is not present.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2503, 1, 'gr', 'validation', 'required_without_all', 'The :attribute field is required when none of :values are present.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2504, 1, 'gr', 'validation', 'same', 'The :attribute and :other must match.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2505, 1, 'gr', 'validation', 'size.numeric', 'The :attribute must be :size.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2506, 1, 'gr', 'validation', 'size.file', 'The :attribute must be :size kilobytes.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2507, 1, 'gr', 'validation', 'size.string', 'The :attribute must be :size characters.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2508, 1, 'gr', 'validation', 'size.array', 'The :attribute must contain :size items.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2509, 1, 'gr', 'validation', 'starts_with', 'The :attribute must start with one of the following: :values.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2510, 1, 'gr', 'validation', 'string', 'The :attribute must be a string.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2511, 1, 'gr', 'validation', 'timezone', 'The :attribute must be a valid zone.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2512, 1, 'gr', 'validation', 'unique', 'The :attribute has already been taken.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2513, 1, 'gr', 'validation', 'uploaded', 'The :attribute failed to upload.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2514, 1, 'gr', 'validation', 'url', 'The :attribute format is invalid.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2515, 1, 'gr', 'validation', 'uuid', 'The :attribute must be a valid UUID.', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2516, 1, 'gr', 'validation', 'custom.attribute-name.rule-name', 'custom-message', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2517, 1, 'hi', 'auth', 'failed', 'ये प्रमाण हमारे रिकॉर्ड से मेल नहीं खाते हैं।', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2518, 1, 'hi', 'auth', 'throttle', 'बहुत सारे लॉगिन प्रयास। कृपया फिर से प्रयास करें: सेकंड सेकंड।', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2519, 1, 'hi', 'auth', 'sign_up_title', 'अपना खाता साइन अप करें', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2520, 1, 'hi', 'auth', 'name', 'नाम', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2521, 1, 'hi', 'auth', 'email', 'ईमेल', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2522, 1, 'hi', 'auth', 'password', 'कुंजिका', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2523, 1, 'hi', 'auth', 'name_ex', 'उदाहरण: जॉन डो', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2524, 1, 'hi', 'auth', 'email_ex', 'उदाहरण: hello@example.com', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2525, 1, 'hi', 'auth', 'sign_up_btn', 'साइन अप करें', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2526, 1, 'hi', 'auth', 'allready_sign_in', 'पहले से ही एक खाता है?', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2527, 1, 'hi', 'auth', 'sign_in_attr', 'लॉग इन करें', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2528, 1, 'hi', 'auth', 'reg', 'पंजीकरण', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2529, 1, 'hi', 'auth', 'agreement', 'साइन अप पर क्लिक करके, आप हमारे लिए सहमत हैं', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2530, 1, 'hi', 'auth', 'terms_condition', 'नियम व शर्त', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2531, 1, 'hi', 'auth', 'privacy_policy', 'गोपनीयता नीति', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2532, 1, 'hi', 'auth', 'and', 'तथा', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2533, 1, 'hi', 'auth', 'login_title', 'अपने खाते में लॉगिन करें', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2534, 1, 'hi', 'auth', 'remember_pass', 'मुझे याद रखना', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2535, 1, 'hi', 'auth', 'forget_pass', 'पासवर्ड भूल गए', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2536, 1, 'hi', 'auth', 'sign_in', 'मुझे भाग दिलाएं', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2537, 1, 'hi', 'auth', 'haven\'t_account', 'खाता नहीं है?', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2538, 1, 'hi', 'auth', 'sign_up', 'साइन अप करें', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2539, 1, 'hi', 'auth', 'submit', 'प्रस्तुत', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2540, 1, 'hi', 'auth', 'new_password', 'नया पासवर्ड', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2541, 1, 'hi', 'auth', 'old_password', 'पुराना पासवर्ड', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2542, 1, 'hi', 'auth', 'con_password', 'पासवर्ड की पुष्टि कीजिये', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2543, 1, 'hi', 'layout', 'home', 'घर', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2544, 1, 'hi', 'layout', 'restaurant', 'खाने की दुकान', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2545, 1, 'hi', 'layout', 'restaurant_list', 'रेस्तरां की सूची', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2546, 1, 'hi', 'layout', 'restaurant_create', 'रेस्तरां सफलतापूर्वक बनाया गया', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2547, 1, 'hi', 'layout', 'restaurant_edit', 'रेस्तरां संपादित करें', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2548, 1, 'hi', 'layout', 'restaurants', 'रेस्टोरेंट', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2549, 1, 'hi', 'layout', 'list', 'सूची', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2550, 1, 'hi', 'layout', 'create', 'सृजन करना', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2551, 1, 'hi', 'layout', 'your_restaurant', 'आपका रेस्तरां व्यवसाय', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2552, 1, 'hi', 'layout', 'name', 'नाम', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2553, 1, 'hi', 'layout', 'timing', 'समय', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2554, 1, 'hi', 'layout', 'email', 'ईमेल', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2555, 1, 'hi', 'layout', 'phone_number', 'फ़ोन नंबर', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2556, 1, 'hi', 'layout', 'currency', 'मुद्रा', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2557, 1, 'hi', 'layout', 'type', 'प्रकार', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2558, 1, 'hi', 'layout', 'description', 'विवरण', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2559, 1, 'hi', 'layout', 'location', 'स्थान', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2560, 1, 'hi', 'layout', 'cover', 'आवरण', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2561, 1, 'hi', 'layout', 'profile', 'प्रोफ़ाइल', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2562, 1, 'hi', 'layout', 'image', 'छवि', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2563, 1, 'hi', 'layout', 'status', 'स्थिति', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2564, 1, 'hi', 'layout', 'total_item', 'कुल आइटम', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2565, 1, 'hi', 'layout', 'active', 'सक्रिय', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2566, 1, 'hi', 'layout', 'inactive', 'निष्क्रिय', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2567, 1, 'hi', 'layout', 'edit', 'संपादित करें', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2568, 1, 'hi', 'layout', 'preview', 'पूर्वावलोकन', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2569, 1, 'hi', 'layout', 'delete', 'हटाएं', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2570, 1, 'hi', 'layout', 'general_info', 'सामान्य जानकारी', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2571, 1, 'hi', 'layout', 'image_upload', 'छवि अपलोड', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2572, 1, 'hi', 'layout', 'item_list', 'सामान की सूची', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2573, 1, 'hi', 'layout', 'item', 'मद', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2574, 1, 'hi', 'layout', 'item_create', 'आइटम सफलतापूर्वक बनाया गया', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2575, 1, 'hi', 'layout', 'item_edit', 'आइटम संपादित करें', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2576, 1, 'hi', 'layout', 'items', 'आइटम', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2577, 1, 'hi', 'layout', 'item_name', 'वस्तु का नाम', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2578, 1, 'hi', 'layout', 'item_details', 'आइटम विवरण', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2579, 1, 'hi', 'layout', 'your_item', 'आपके आइटम', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2580, 1, 'hi', 'layout', 'title', 'शीर्षक', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2581, 1, 'hi', 'layout', 'details', 'विवरण', '2021-09-25 07:12:05', '2021-09-25 07:12:05'),
(2582, 1, 'hi', 'layout', 'price', 'कीमत', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2583, 1, 'hi', 'layout', 'category', 'वर्ग', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2584, 1, 'hi', 'layout', 'discount', 'छूट', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2585, 1, 'hi', 'layout', 'discount_type', 'डिस्काउंट प्रकार', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2586, 1, 'hi', 'layout', 'discount_to', 'डिस्काउंट करने के लिए', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2587, 1, 'hi', 'layout', 'item_image', 'आइटम छवि चुनें', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2588, 1, 'hi', 'layout', 'choose', 'चुनें', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2589, 1, 'hi', 'layout', 'confirmation', 'पुष्टीकरण', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2590, 1, 'hi', 'layout', 'confirm', 'पुष्टि करें', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2591, 1, 'hi', 'layout', 'cancel', 'रद्द करना', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2592, 1, 'hi', 'layout', 'logout', 'लॉग आउट', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2593, 1, 'hi', 'layout', 'dashboard', 'डैशबोर्ड', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2594, 1, 'hi', 'layout', 'hello', 'नमस्कार,', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2595, 1, 'hi', 'layout', 'all_notification', 'सभी सूचनाएं दिखाएं', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2596, 1, 'hi', 'layout', 'order_list', 'आदेश सूची', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2597, 1, 'hi', 'layout', 'order', 'गण', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2598, 1, 'hi', 'layout', 'orders', 'आदेश', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2599, 1, 'hi', 'layout', 'your_order', 'तुम्हारे ऑर्डर', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2600, 1, 'hi', 'layout', 'table', 'तालिका', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2601, 1, 'hi', 'layout', 'payment_status', 'भुगतान की स्थिति', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2602, 1, 'hi', 'layout', 'comment', 'टिप्पणी', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2603, 1, 'hi', 'layout', 'delivered_within', 'भीतर पहुंचा दिया', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2604, 1, 'hi', 'layout', 'paid', 'भुगतान किया है', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2605, 1, 'hi', 'layout', 'unpaid', 'अवैतनिक', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2606, 1, 'hi', 'layout', 'pending', 'विचाराधीन', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2607, 1, 'hi', 'layout', 'delivered', 'पहुंचा दिया', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2608, 1, 'hi', 'layout', 'approved', 'मंजूर की', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2609, 1, 'hi', 'layout', 'rejected', 'अस्वीकृत', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2610, 1, 'hi', 'layout', 'processing', 'प्रसंस्करण', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2611, 1, 'hi', 'layout', 'ready_for_delivery', 'पहुँचाने के लिए तैयार', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2612, 1, 'hi', 'layout', 'on_the_way', 'रास्ते में', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2613, 1, 'hi', 'layout', 'approve', 'मंजूर', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2614, 1, 'hi', 'layout', 'total_price', 'कुल कीमत', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2615, 1, 'hi', 'layout', 'amount', 'रकम', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2616, 1, 'hi', 'layout', 'within', 'अंदर', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2617, 1, 'hi', 'layout', 'time', 'समय', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2618, 1, 'hi', 'layout', 'minutes', 'मिनट', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2619, 1, 'hi', 'layout', 'hours', 'घंटे', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2620, 1, 'hi', 'layout', 'days', 'दिन', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2621, 1, 'hi', 'layout', 'check_new_order', 'नए आदेश की जाँच करें', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2622, 1, 'hi', 'layout', 'users', 'उपयोगकर्ताओं', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2623, 1, 'hi', 'layout', 'customer', 'ग्राहक', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2624, 1, 'hi', 'layout', 'quantity', 'मात्रा', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2625, 1, 'hi', 'layout', 'total', 'संपूर्ण', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2626, 1, 'hi', 'layout', 'grand_total', 'कुल योग', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2627, 1, 'hi', 'layout', 'total_discount', 'कुल छूट', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2628, 1, 'hi', 'layout', 'invoice_by', 'द्वारा चालान', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2629, 1, 'hi', 'layout', 'invoice_to', 'इसके लिए इनवॉइस', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2630, 1, 'hi', 'layout', 'order_details', 'ऑर्डर का विवरण', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2631, 1, 'hi', 'layout', 'message.item_create', 'आइटम सफलतापूर्वक बनाया गया', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2632, 1, 'hi', 'layout', 'message.order_create', 'आदेश सफलतापूर्वक बनाया गया', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2633, 1, 'hi', 'layout', 'message.order_placed', 'आपका आदेश सफलतापूर्वक रखा गया', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2634, 1, 'hi', 'layout', 'message.restaurant_create', 'रेस्तरां सफलतापूर्वक बनाया गया', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2635, 1, 'hi', 'layout', 'message.item_update', 'आइटम सफलतापूर्वक अपडेट किया गया', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2636, 1, 'hi', 'layout', 'message.order_update', 'आदेश सफलतापूर्वक अपडेट किया गया', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2637, 1, 'hi', 'layout', 'message.restaurant_update', 'रेस्तरां सफलतापूर्वक अपडेट किया गया', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2638, 1, 'hi', 'layout', 'message.order_status_update', 'आदेश स्थिति सफलतापूर्वक अपडेट की गई', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2639, 1, 'hi', 'layout', 'message.order_not_found', 'आदेश नहीं मिला', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2640, 1, 'hi', 'layout', 'message.restaurant_not_found', 'भोजनालय नहीं मिला', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2641, 1, 'hi', 'layout', 'message.order_status_warning', 'क्या आप वाकई <b class = \"text-red\"> :status </b> का दर्जा बदलना चाहते हैं?', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2642, 1, 'hi', 'layout', 'message.item_delete', 'आइटम सफलतापूर्वक हटा दिया गया', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2643, 1, 'hi', 'layout', 'message.order_delete', 'आदेश सफलतापूर्वक हटा दिया गया', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2644, 1, 'hi', 'layout', 'message.restaurant_delete', 'रेस्तरां को सफलतापूर्वक हटा दिया गया', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2645, 1, 'hi', 'layout', 'message.item_delete_warning', 'क्या आप सुनिश्चित रूप से इस आइटम को मिटाना चाहते हैं?', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2646, 1, 'hi', 'layout', 'message.order_delete_warning', 'क्या आप वाकई इस आदेश को हटाना चाहते हैं?', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2647, 1, 'hi', 'layout', 'message.restaurant_delete_warning', 'क्या आप वाकई इस रेस्तरां को हटाना चाहते हैं?', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2648, 1, 'hi', 'layout', 'message.plan_update', 'योजना सफलतापूर्वक अपडेट की गई', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2649, 1, 'hi', 'layout', 'message.play_change_success', 'बधाई हो! आपने अपनी योजना को सफलतापूर्वक बदल दिया है', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2650, 1, 'hi', 'layout', 'message.invalid_payment', 'ऊप्स! अमान्य भुगतान अनुरोध', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2651, 1, 'hi', 'layout', 'message.userplan_approve_success', 'उपयोगकर्ता योजना सफलतापूर्वक स्वीकृत हुई', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2652, 1, 'hi', 'layout', 'message.userplan_reject_success', 'उपयोगकर्ता योजना सफलतापूर्वक अस्वीकार', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2653, 1, 'hi', 'layout', 'message.userplan_status_change_msg', 'उपयोगकर्ता योजना की स्थिति सफलतापूर्वक बदल जाती है', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2654, 1, 'hi', 'layout', 'message.userplan_approve_warning', 'क्या आप वाकई इस योजना को अनुमोदित करना चाहते हैं?', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2655, 1, 'hi', 'layout', 'message.userplan_reject_warning', 'क्या आप वाकई इस योजना को अस्वीकार करना चाहते हैं?', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2656, 1, 'hi', 'layout', 'message.change_user_plan_warning', 'क्या आप उपयोगकर्ता योजना की स्थिति बदलना चाहते हैं?', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2657, 1, 'hi', 'layout', 'message.category_update_message', 'श्रेणी अद्यतन सफलतापूर्वक', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2658, 1, 'hi', 'layout', 'message.category_store_msg', 'श्रेणी की दुकान सफलतापूर्वक', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2659, 1, 'hi', 'layout', 'message.setting_update', 'सेटिंग सफलतापूर्वक अपडेट की गई', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2660, 1, 'hi', 'layout', 'message.registration_success', 'बधाई हो! हमने आपको एक पुष्टिकरण मेल भेजा है', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2661, 1, 'hi', 'layout', 'message.verify', 'ईमेल सफलतापूर्वक सत्यापित किया गया', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2662, 1, 'hi', 'layout', 'message.verify_resend', 'सत्यापन लिंक फिर से भेजा गया', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2663, 1, 'hi', 'layout', 'message.verify_text', 'कृपया पहले अपना ईमेल सत्यापित करें। आप अपने सत्यापन लिंक को फिर से भेज सकते हैं', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2664, 1, 'hi', 'layout', 'message.user_not_found', 'उपयोगकर्ता नहीं मिला। वैध ईमेल के साथ प्रयास करें', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2665, 1, 'hi', 'layout', 'message.reset_link_send', 'आपके ईमेल पर एक निर्देश भेजा गया है', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2666, 1, 'hi', 'layout', 'message.token_expired', 'टोकन की समय सीमा समाप्त हो गई है या उपयोग किया गया है', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2667, 1, 'hi', 'layout', 'message.reset_successful', 'पासवर्ड सफलतापूर्वक रीसेट कर दिया गया है', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2668, 1, 'hi', 'layout', 'message.category_delete_warning', 'क्या आप इस श्रेणी को हटाना सुनिश्चित कर रहे हैं?', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2669, 1, 'hi', 'layout', 'message.category_delete', 'श्रेणी को सफलतापूर्वक हटा दिया गया', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2670, 1, 'hi', 'layout', 'message.plan_delete_warning', 'क्या आप इस योजना को हटाना सुनिश्चित कर रहे हैं?', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2671, 1, 'hi', 'layout', 'message.plan_delete_msg', 'योजना को सफलतापूर्वक हटा दिया गया', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2672, 1, 'hi', 'layout', 'message.table_delete_msg', 'तालिका को सफलतापूर्वक हटा दिया गया', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2673, 1, 'hi', 'layout', 'message.table_delete_warning', 'क्या आप इस तालिका को हटाना सुनिश्चित कर रहे हैं?', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2674, 1, 'hi', 'layout', 'message.table_not_delete', 'ऊप्स! तालिका पहले से ही उपयोग है', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2675, 1, 'hi', 'layout', 'message.category_not_delete', 'ऊप्स! श्रेणी पहले से ही उपयोग है', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2676, 1, 'hi', 'layout', 'message.item_not_delete', 'ऊप्स! आइटम पहले से ही उपयोग है', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2677, 1, 'hi', 'layout', 'message.plan_not_delete', 'ऊप्स! योजना पहले से ही उपयोग है', '2021-09-25 07:12:06', '2021-09-25 07:12:06');
INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES
(2678, 1, 'hi', 'layout', 'message.restaurant_not_delete', 'ऊप्स! रेस्तरां पहले से ही उपयोग है', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2679, 1, 'hi', 'layout', 'message.pending_configuration', 'आपको पहले अपनी सेटिंग्स को कॉन्फ़िगर करना होगा', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2680, 1, 'hi', 'layout', 'message.invalid_request', 'अमान्य अनुरोध', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2681, 1, 'hi', 'layout', 'message.upgrade_notification', 'आपकी योजना समाप्त हो गई है कृपया अपग्रेड करें', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2682, 1, 'hi', 'layout', 'message.request_received', 'हमें आपका अनुरोध मिल गया है। हम आपसे शीघ्र ही संपर्क करेंगे', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2683, 1, 'hi', 'layout', 'message.cancel_payment', 'भुगतान रद्द कर दिया गया है', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2684, 1, 'hi', 'layout', 'message.upload_success', 'चित्र सफलतापूर्वक अपलोड किया गया', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2685, 1, 'hi', 'layout', 'message.update_failed', 'उफ़! अपडेट विफल हुआ', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2686, 1, 'hi', 'layout', 'message.tax_delete_warning', 'क्या आप इस कर को हटाना सुनिश्चित कर रहे हैं?', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2687, 1, 'hi', 'layout', 'message.table_success_msg', 'तालिका सफलतापूर्वक बनाई गई', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2688, 1, 'hi', 'layout', 'message.table_update_msg', 'तालिका सफलतापूर्वक अपडेट की गई', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2689, 1, 'hi', 'layout', 'message.tax_success_msg', 'सफलतापूर्वक बनाया गया कर', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2690, 1, 'hi', 'layout', 'message.tax_update_msg', 'टैक्स अपडेट सफलतापूर्वक', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2691, 1, 'hi', 'layout', 'settings_title', 'समायोजन', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2692, 1, 'hi', 'layout', 'general_settings', 'सामान्य सेटिंग्स', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2693, 1, 'hi', 'layout', 'general', 'सामान्य', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2694, 1, 'hi', 'layout', 'password_change', 'पासवर्ड बदलें', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2695, 1, 'hi', 'layout', 'email_settings', 'ईमेल सेटिंग', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2696, 1, 'hi', 'layout', 'site_settings', 'साइट सेटिंग्स', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2697, 1, 'hi', 'layout', 'local_settings', 'स्थानीय सेटिंग्स', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2698, 1, 'hi', 'layout', 'email_template', 'ईमेल टेम्पलेट', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2699, 1, 'hi', 'layout', 'picture', 'चित्र', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2700, 1, 'hi', 'layout', 'submit', 'प्रस्तुत', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2701, 1, 'hi', 'layout', 'old_password', 'पुराना पासवर्ड', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2702, 1, 'hi', 'layout', 'new_password', 'नया पासवर्ड', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2703, 1, 'hi', 'layout', 'confirm_password', 'पासवर्ड की पुष्टि कीजिये', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2704, 1, 'hi', 'layout', 'host', 'मेज़बान', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2705, 1, 'hi', 'layout', 'password', 'कुंजिका', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2706, 1, 'hi', 'layout', 'port', 'बंदरगाह', '2021-09-25 07:12:06', '2021-09-25 07:12:06'),
(2707, 1, 'hi', 'layout', 'username', 'उपयोगकर्ता नाम', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2708, 1, 'hi', 'layout', 'encrypt_type', 'एन्क्रिप्शन प्रकार', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2709, 1, 'hi', 'layout', 'registration', 'पंजीकरण', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2710, 1, 'hi', 'layout', 'forget_password', 'पासवर्ड भूल गए', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2711, 1, 'hi', 'layout', 'order_placed', 'आदेश रखा', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2712, 1, 'hi', 'layout', 'order_status', 'आदेश की स्थिति', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2713, 1, 'hi', 'layout', 'email_subject', 'ईमेल विषय', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2714, 1, 'hi', 'layout', 'email_body', 'ईमेल बॉडी', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2715, 1, 'hi', 'layout', 'email_from', 'की ओर से ईमेल', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2716, 1, 'hi', 'layout', 'plan_request', 'योजना का अनुरोध', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2717, 1, 'hi', 'layout', 'plan_accept', 'योजना स्वीकार की गई', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2718, 1, 'hi', 'layout', 'plan_expire', 'योजना समाप्त हुई', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2719, 1, 'hi', 'layout', 'payment_gateway', 'अदायगी रास्ता', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2720, 1, 'hi', 'layout', 'sms_gateway', 'एस एम एस गेटवे', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2721, 1, 'hi', 'layout', 'stripe', 'Stripe', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2722, 1, 'hi', 'layout', 'offline', 'ऑफलाइन', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2723, 1, 'hi', 'layout', 'bank_name', 'बैंक का नाम', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2724, 1, 'hi', 'layout', 'bank_branch', 'बैंक शाखा', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2725, 1, 'hi', 'layout', 'account_name', 'खाते का नाम', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2726, 1, 'hi', 'layout', 'account_number', 'खाता संख्या', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2727, 1, 'hi', 'layout', 'transaction_id', 'लेनदेन आईडी', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2728, 1, 'hi', 'layout', 'reference', 'संदर्भ', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2729, 1, 'hi', 'layout', 'client_id_key', 'ClientID कुंजी', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2730, 1, 'hi', 'layout', 'client_secret_key', 'ग्राहक गुप्त कुंजी', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2731, 1, 'hi', 'layout', 'publish_key', 'प्रकाशित करने योग्य कुंजी', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2732, 1, 'hi', 'layout', 'secret_key', 'गुप्त कुंजी', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2733, 1, 'hi', 'layout', 'twilio', 'Twilio', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2734, 1, 'hi', 'layout', 'voyager', 'Voyager', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2735, 1, 'hi', 'layout', 'signalwire', 'Signalwire', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2736, 1, 'hi', 'layout', 'sid', 'सिड', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2737, 1, 'hi', 'layout', 'token', 'टोकन', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2738, 1, 'hi', 'layout', 'project_id', 'प्रोजेक्ट आईडी', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2739, 1, 'hi', 'layout', 'space_url', 'अंतरिक्ष यूआरएल', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2740, 1, 'hi', 'layout', 'api_key', 'एपीआई कुंजी', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2741, 1, 'hi', 'layout', 'api_secret', 'आपी का रहस्य', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2742, 1, 'hi', 'layout', 'plan_title', 'योजना सूची', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2743, 1, 'hi', 'layout', 'plan', 'योजनाओं', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2744, 1, 'hi', 'layout', 'cost', 'लागत', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2745, 1, 'hi', 'layout', 'recurring_type', 'आवर्ती प्रकार', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2746, 1, 'hi', 'layout', 'table_limit', 'टेबल की सीमा', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2747, 1, 'hi', 'layout', 'restaurant_limit', 'रेस्तरां की सीमा', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2748, 1, 'hi', 'layout', 'item_limit', 'आइटम सीमा', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2749, 1, 'hi', 'layout', 'unlimited_support', 'असीमित समर्थन', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2750, 1, 'hi', 'layout', 'action', 'कार्य', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2751, 1, 'hi', 'layout', 'onetime', 'एक बार', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2752, 1, 'hi', 'layout', 'weekly', 'साप्ताहिक', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2753, 1, 'hi', 'layout', 'monthly', 'महीने के', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2754, 1, 'hi', 'layout', 'yearly', 'सालाना', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2755, 1, 'hi', 'layout', 'plan_edit', 'योजना संपादित करें', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2756, 1, 'hi', 'layout', 'no_of_capacity', 'क्षमता की नहीं', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2757, 1, 'hi', 'layout', 'position', 'पद', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2758, 1, 'hi', 'layout', 'payment_title', 'भुगतान', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2759, 1, 'hi', 'layout', 'payment_method', 'भुगतान का तरीका', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2760, 1, 'hi', 'layout', 'card_name', 'कार्ड पर नाम', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2761, 1, 'hi', 'layout', 'card_number', 'कार्ड नंबर', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2762, 1, 'hi', 'layout', 'cvc', 'कवक', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2763, 1, 'hi', 'layout', 'expiration', 'समय सीमा समाप्ति', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2764, 1, 'hi', 'layout', 'pay_plan_title', 'योजना का शीर्षक', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2765, 1, 'hi', 'layout', 'start_date', 'आरंभ करने की तिथि', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2766, 1, 'hi', 'layout', 'expiry_date', 'समाप्ति तिथि', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2767, 1, 'hi', 'layout', 'other_info', 'अन्य सूचना', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2768, 1, 'hi', 'layout', 'total_cost', 'कुल लागत', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2769, 1, 'hi', 'layout', 'lifetime', 'जीवन काल', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2770, 1, 'hi', 'layout', 'pay_now', 'Pay Now', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2771, 1, 'hi', 'layout', 'credit_or_debit', 'क्रेडिट या डेबिट कार्ड', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2772, 1, 'hi', 'layout', 'restaurant_extends', 'रेस्तरां की सीमा बढ़ाई गई या समाप्त हो गई। कृपया अपनी योजना को अपग्रेड करें', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2773, 1, 'hi', 'layout', 'table_extends', 'तालिका की सीमा बढ़ाई गई या समाप्त हो गई। कृपया अपनी योजना को अपग्रेड करें', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2774, 1, 'hi', 'layout', 'item_extends', 'आइटम सीमा विस्तारित या समाप्त हो गई। कृपया अपनी योजना को अपग्रेड करें', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2775, 1, 'hi', 'layout', 'user_plan_title', 'उपयोगकर्ता योजना', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2776, 1, 'hi', 'layout', 'user_plan', 'उपयोगकर्ता योजना', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2777, 1, 'hi', 'layout', 'plan_name', 'योजना का शीर्षक', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2778, 1, 'hi', 'layout', 'reject', 'अस्वीकार', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2779, 1, 'hi', 'layout', 'demo', 'डेमो', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2780, 1, 'hi', 'layout', 'pricing', 'मूल्य निर्धारण', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2781, 1, 'hi', 'layout', 'join', 'शामिल हों', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2782, 1, 'hi', 'layout', 'signup', 'साइन अप करें', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2783, 1, 'hi', 'layout', 'total_restaurant', 'कुल रेस्तरां', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2784, 1, 'hi', 'layout', 'total_order_amount', 'कुल आदेश राशि', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2785, 1, 'hi', 'layout', 'total_income', 'कुल आय', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2786, 1, 'hi', 'layout', 'pending_order', 'विचारधीन आदेश', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2787, 1, 'hi', 'layout', 'pending_plan', 'लंबित योजना', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2788, 1, 'hi', 'layout', 'category_create_title', 'श्रेणी: बना', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2789, 1, 'hi', 'layout', 'category_create', 'श्रेणी बनाएं', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2790, 1, 'hi', 'layout', 'category_edit_title', 'श्रेणी संपादित', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2791, 1, 'hi', 'layout', 'category_edit', 'श्रेणी संपादित करें', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2792, 1, 'hi', 'layout', 'qr_maker', 'क्यूआर निर्माता', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2793, 1, 'hi', 'layout', 'settings', 'समायोजन', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2794, 1, 'hi', 'layout', 'generate', 'उत्पन्न', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2795, 1, 'hi', 'layout', 'restaurant_select', 'रेस्तरां का चयन करें', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2796, 1, 'hi', 'layout', 'table_select', 'तालिका का चयन करें', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2797, 1, 'hi', 'layout', 'fill_color', 'रंग भरें', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2798, 1, 'hi', 'layout', 'bg_color', 'पीछे का रंग', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2799, 1, 'hi', 'layout', 'text_color', 'लिखावट का रंग', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2800, 1, 'hi', 'layout', 'mode', 'मोड', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2801, 1, 'hi', 'layout', 'design_type', 'डिजाइन प्रकार', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2802, 1, 'hi', 'layout', 'normal', 'साधारण', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2803, 1, 'hi', 'layout', 'text_strip', 'पाठ की पट्टी', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2804, 1, 'hi', 'layout', 'image_strip', 'छवि पट्टी', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2805, 1, 'hi', 'layout', 'text', 'टेक्स्ट', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2806, 1, 'hi', 'layout', 'size', 'आकार', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2807, 1, 'hi', 'layout', 'pos_x', 'PosX', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2808, 1, 'hi', 'layout', 'pos_y', 'कहावत', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2809, 1, 'hi', 'layout', 'role_permission', 'अनुमति', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2810, 1, 'hi', 'layout', 'verify_email', 'अपना ई मेल सत्यापित करें', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2811, 1, 'hi', 'layout', 'enter_code', 'अपना कोड दर्ज करे', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2812, 1, 'hi', 'layout', 'verify', 'सत्यापित करें', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2813, 1, 'hi', 'layout', 'resend', 'पुन: भेजें', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2814, 1, 'hi', 'layout', 'billings', 'बिलिंग्स', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2815, 1, 'hi', 'layout', 'download', 'डाउनलोड', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2816, 1, 'hi', 'layout', 'my_order', 'मेरे आदेश', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2817, 1, 'hi', 'layout', 'add', 'जोड़ना', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2818, 1, 'hi', 'layout', 'overview', 'अवलोकन', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2819, 1, 'hi', 'layout', 'payment', 'भुगतान', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2820, 1, 'hi', 'layout', 'place_order', 'आदेश देना', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2821, 1, 'hi', 'layout', 'upgrade', 'अपग्रेड', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2822, 1, 'hi', 'layout', 'login', 'लॉग इन करें', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2823, 1, 'hi', 'layout', 'date_time_format', 'आजीवन प्रारूप', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2824, 1, 'hi', 'layout', 'date_time_separator', 'डेटाइम सेपरेटर', '2021-09-25 07:12:07', '2021-09-25 07:12:07'),
(2825, 1, 'hi', 'layout', 'timezone', 'समय क्षेत्र', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2826, 1, 'hi', 'layout', 'decimal_format', 'दशमलव स्वरूप', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2827, 1, 'hi', 'layout', 'language', 'भाषा: हिन्दी', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2828, 1, 'hi', 'layout', 'currency_symbol', 'मुद्रा चिन्ह', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2829, 1, 'hi', 'layout', 'currency_symbol_position', 'प्रतीक की स्थिति', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2830, 1, 'hi', 'layout', 'before', 'इससे पहले', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2831, 1, 'hi', 'layout', 'after', 'उपरांत', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2832, 1, 'hi', 'layout', 'bengali', 'বাংলা', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2833, 1, 'hi', 'layout', 'english', 'English', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2834, 1, 'hi', 'layout', 'arabic', 'عربى', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2835, 1, 'hi', 'layout', 'hindi', 'हिंदी', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2836, 1, 'hi', 'layout', 'spanish', 'Español', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2837, 1, 'hi', 'layout', 'japanese', '日本人', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2838, 1, 'hi', 'layout', 'portuguese', 'Português', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2839, 1, 'hi', 'layout', 'thousand_separator', 'हजार विभाजक', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2840, 1, 'hi', 'layout', 'decimals', 'दशमलव', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2841, 1, 'hi', 'layout', 'decimal_point', 'दशमलव बिंदु', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2842, 1, 'hi', 'layout', 'all_right_reserved', 'सभी अधिकार सुरक्षित', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2843, 1, 'hi', 'layout', 'copyright_footer', 'कॉपीराइट © द्वारा डिज़ाइन और विकसित', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2844, 1, 'hi', 'layout', 'click_here', 'यहां क्लिक करें', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2845, 1, 'hi', 'layout', 'pay_on_table', 'टेबल पर भुगतान', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2846, 1, 'hi', 'layout', 'currency_code', 'मुद्रा कोड', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2847, 1, 'hi', 'layout', 'paytm', 'Paytm', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2848, 1, 'hi', 'layout', 'find_yours', 'अपना कोड ढूंढें', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2849, 1, 'hi', 'layout', 'pay_with_paytm', 'Paytm के साथ भुगतान करें', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2850, 1, 'hi', 'layout', 'paypal_des', 'पेग कॉम पेपल', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2851, 1, 'hi', 'layout', 'paypal', 'पेपैल', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2852, 1, 'hi', 'layout', 'paytm_environment', 'पर्यावरण', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2853, 1, 'hi', 'layout', 'paytm_mid', 'मर्चेंट आईडी', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2854, 1, 'hi', 'layout', 'paytm_secret_key', 'गुप्त कुंजी', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2855, 1, 'hi', 'layout', 'paytm_txn_url', 'लेनदेन URL', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2856, 1, 'hi', 'layout', 'choose_template', 'टेम्प्लेट चुनें', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2857, 1, 'hi', 'layout', 'classic', 'क्लासिक', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2858, 1, 'hi', 'layout', 'modern', 'आधुनिक', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2859, 1, 'hi', 'layout', 'flipbook', 'फ्लिपबुक', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2860, 1, 'hi', 'layout', 'custom', 'कस्टम', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2861, 1, 'hi', 'layout', 'custom_menu', 'कस्टम मेनू', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2862, 1, 'hi', 'layout', 'add_menu', 'मेनू जोड़ें', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2863, 1, 'hi', 'layout', 'enter_name', 'Enter name', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2864, 1, 'hi', 'layout', 'header', 'हैडर', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2865, 1, 'hi', 'layout', 'enter_header', 'हैडर दर्ज करें', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2866, 1, 'hi', 'layout', 'footer', 'पाद', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2867, 1, 'hi', 'layout', 'enter_footer', 'Enter Footer', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2868, 1, 'hi', 'layout', 'enter_description', 'विवरण दर्ज करें', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2869, 1, 'hi', 'layout', 'enter_title', 'शीर्षक दर्ज करें', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2870, 1, 'hi', 'layout', 'basic', 'मूल', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2871, 1, 'hi', 'layout', 'extra', 'अतिरिक्त', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2872, 1, 'hi', 'layout', 'add_extra', 'अतिरिक्त जोड़ें', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2873, 1, 'hi', 'layout', 'add_extra_name', 'अतिरिक्त नाम दर्ज करें', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2874, 1, 'hi', 'layout', 'enter_price', 'मूल्य दर्ज करें', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2875, 1, 'hi', 'layout', 'item_extra', 'Item \' का Extra ', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2876, 1, 'hi', 'layout', 'process', 'प्रक्रिया', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2877, 1, 'hi', 'layout', 'phone', 'फ़ोन', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2878, 1, 'hi', 'layout', 'address', 'पता', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2879, 1, 'hi', 'layout', 'is_unlimited', 'क्या असीमित है?', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2880, 1, 'hi', 'layout', 'unlimited', 'असीमित', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2881, 1, 'hi', 'layout', 'tax', 'कर', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2882, 1, 'hi', 'layout', 'tax_create', 'कर बनाएँ', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2883, 1, 'hi', 'layout', 'tax_edit', 'कर संपादित करें', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2884, 1, 'hi', 'layout', 'taxes', 'कर', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2885, 1, 'hi', 'layout', 'tax_title', 'कर शीर्षक', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2886, 1, 'hi', 'layout', 'flat', 'फ्लैट', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2887, 1, 'hi', 'layout', 'percentage', 'प्रतिशत', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2888, 1, 'hi', 'layout', 'print', 'प्रिंट', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2889, 1, 'hi', 'layout', 'pdf', 'पीडीएफ', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2890, 1, 'hi', 'layout', 'total_tax', 'कुल कर', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2891, 1, 'hi', 'layout', 'view_basket', 'टोकरी देखें', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2892, 1, 'hi', 'layout', 'all_categories', 'All Categories', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2893, 1, 'hi', 'layout', 'germany', 'Deutsch', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2894, 1, 'hi', 'layout', 'select_delivery_type', 'Select Delivery Type', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2895, 1, 'hi', 'layout', 'modal_title', 'Modal title', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2896, 1, 'hi', 'layout', 'close', 'Close', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2897, 1, 'hi', 'layout', 'cash_on_delivery', 'Cash on Delivery', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2898, 1, 'hi', 'layout', 'delivery_address', 'Delivery address', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2899, 1, 'hi', 'layout', 'ex_2806_montague_rd_bC_canada', 'Ex: 2806 Montague Rd, BC, Canada', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2900, 1, 'hi', 'layout', 'view_order', 'View Order', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2901, 1, 'hi', 'layout', 'credit_or_debit_card', 'Credit or Debit card', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2902, 1, 'hi', 'layout', 'order_overview', 'Order  overview', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2903, 1, 'hi', 'layout', 'payment_type', 'Payment Type', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2904, 1, 'hi', 'layout', 'select_a_payment_type', 'Select a payment type', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2905, 1, 'hi', 'layout', 'pay_in_cash', 'Pay in cash', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2906, 1, 'hi', 'layout', 'pay_in_paytm', 'Pay in paytm', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2907, 1, 'hi', 'layout', 'cash', 'Cash', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2908, 1, 'hi', 'layout', 'ex_Need_extra_spoon', 'Ex: Need extra spoon', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2909, 1, 'hi', 'layout', 'ex_example_mail_com', 'Ex: example@mail.com', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2910, 1, 'hi', 'layout', 'ex_number', 'Ex: +140139485764', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2911, 1, 'hi', 'layout', 'ex_jone_doe', 'Ex: Jone Doe', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2912, 1, 'hi', 'pagination', 'previous', '&laquo; Previous', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2913, 1, 'hi', 'pagination', 'next', 'Next &raquo;', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2914, 1, 'hi', 'passwords', 'reset', 'Your password has been reset!', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2915, 1, 'hi', 'passwords', 'sent', 'We have emailed your password reset link!', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2916, 1, 'hi', 'passwords', 'throttled', 'Please wait before retrying.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2917, 1, 'hi', 'passwords', 'token', 'This password reset token is invalid.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2918, 1, 'hi', 'passwords', 'user', 'We can\'t find a user with that email address.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2919, 1, 'hi', 'validation', 'accepted', 'The :attribute must be accepted.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2920, 1, 'hi', 'validation', 'active_url', 'The :attribute is not a valid URL.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2921, 1, 'hi', 'validation', 'after', 'The :attribute must be a date after :date.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2922, 1, 'hi', 'validation', 'after_or_equal', 'The :attribute must be a date after or equal to :date.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2923, 1, 'hi', 'validation', 'alpha', 'The :attribute may only contain letters.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2924, 1, 'hi', 'validation', 'alpha_dash', 'The :attribute may only contain letters, numbers, dashes and underscores.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2925, 1, 'hi', 'validation', 'alpha_num', 'The :attribute may only contain letters and numbers.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2926, 1, 'hi', 'validation', 'array', 'The :attribute must be an array.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2927, 1, 'hi', 'validation', 'before', 'The :attribute must be a date before :date.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2928, 1, 'hi', 'validation', 'before_or_equal', 'The :attribute must be a date before or equal to :date.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2929, 1, 'hi', 'validation', 'between.numeric', 'The :attribute must be between :min and :max.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2930, 1, 'hi', 'validation', 'between.file', 'The :attribute must be between :min and :max kilobytes.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2931, 1, 'hi', 'validation', 'between.string', 'The :attribute must be between :min and :max characters.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2932, 1, 'hi', 'validation', 'between.array', 'The :attribute must have between :min and :max items.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2933, 1, 'hi', 'validation', 'boolean', 'The :attribute field must be true or false.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2934, 1, 'hi', 'validation', 'confirmed', 'The :attribute confirmation does not match.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2935, 1, 'hi', 'validation', 'date', 'The :attribute is not a valid date.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2936, 1, 'hi', 'validation', 'date_equals', 'The :attribute must be a date equal to :date.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2937, 1, 'hi', 'validation', 'date_format', 'The :attribute does not match the format :format.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2938, 1, 'hi', 'validation', 'different', 'The :attribute and :other must be different.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2939, 1, 'hi', 'validation', 'digits', 'The :attribute must be :digits digits.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2940, 1, 'hi', 'validation', 'digits_between', 'The :attribute must be between :min and :max digits.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2941, 1, 'hi', 'validation', 'dimensions', 'The :attribute has invalid image dimensions.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2942, 1, 'hi', 'validation', 'distinct', 'The :attribute field has a duplicate value.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2943, 1, 'hi', 'validation', 'email', 'The :attribute must be a valid email address.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2944, 1, 'hi', 'validation', 'ends_with', 'The :attribute must end with one of the following: :values.', '2021-09-25 07:12:08', '2021-09-25 07:12:08'),
(2945, 1, 'hi', 'validation', 'exists', 'The selected :attribute is invalid.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2946, 1, 'hi', 'validation', 'file', 'The :attribute must be a file.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2947, 1, 'hi', 'validation', 'filled', 'The :attribute field must have a value.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2948, 1, 'hi', 'validation', 'gt.numeric', 'The :attribute must be greater than :value.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2949, 1, 'hi', 'validation', 'gt.file', 'The :attribute must be greater than :value kilobytes.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2950, 1, 'hi', 'validation', 'gt.string', 'The :attribute must be greater than :value characters.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2951, 1, 'hi', 'validation', 'gt.array', 'The :attribute must have more than :value items.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2952, 1, 'hi', 'validation', 'gte.numeric', 'The :attribute must be greater than or equal :value.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2953, 1, 'hi', 'validation', 'gte.file', 'The :attribute must be greater than or equal :value kilobytes.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2954, 1, 'hi', 'validation', 'gte.string', 'The :attribute must be greater than or equal :value characters.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2955, 1, 'hi', 'validation', 'gte.array', 'The :attribute must have :value items or more.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2956, 1, 'hi', 'validation', 'image', 'The :attribute must be an image.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2957, 1, 'hi', 'validation', 'in', 'The selected :attribute is invalid.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2958, 1, 'hi', 'validation', 'in_array', 'The :attribute field does not exist in :other.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2959, 1, 'hi', 'validation', 'integer', 'The :attribute must be an integer.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2960, 1, 'hi', 'validation', 'ip', 'The :attribute must be a valid IP address.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2961, 1, 'hi', 'validation', 'ipv4', 'The :attribute must be a valid IPv4 address.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2962, 1, 'hi', 'validation', 'ipv6', 'The :attribute must be a valid IPv6 address.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2963, 1, 'hi', 'validation', 'json', 'The :attribute must be a valid JSON string.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2964, 1, 'hi', 'validation', 'lt.numeric', 'The :attribute must be less than :value.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2965, 1, 'hi', 'validation', 'lt.file', 'The :attribute must be less than :value kilobytes.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2966, 1, 'hi', 'validation', 'lt.string', 'The :attribute must be less than :value characters.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2967, 1, 'hi', 'validation', 'lt.array', 'The :attribute must have less than :value items.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2968, 1, 'hi', 'validation', 'lte.numeric', 'The :attribute must be less than or equal :value.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2969, 1, 'hi', 'validation', 'lte.file', 'The :attribute must be less than or equal :value kilobytes.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2970, 1, 'hi', 'validation', 'lte.string', 'The :attribute must be less than or equal :value characters.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2971, 1, 'hi', 'validation', 'lte.array', 'The :attribute must not have more than :value items.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2972, 1, 'hi', 'validation', 'max.numeric', 'The :attribute may not be greater than :max.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2973, 1, 'hi', 'validation', 'max.file', 'The :attribute may not be greater than :max kilobytes.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2974, 1, 'hi', 'validation', 'max.string', 'The :attribute may not be greater than :max characters.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2975, 1, 'hi', 'validation', 'max.array', 'The :attribute may not have more than :max items.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2976, 1, 'hi', 'validation', 'mimes', 'The :attribute must be a file of type: :values.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2977, 1, 'hi', 'validation', 'mimetypes', 'The :attribute must be a file of type: :values.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2978, 1, 'hi', 'validation', 'min.numeric', 'The :attribute must be at least :min.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2979, 1, 'hi', 'validation', 'min.file', 'The :attribute must be at least :min kilobytes.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2980, 1, 'hi', 'validation', 'min.string', 'The :attribute must be at least :min characters.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2981, 1, 'hi', 'validation', 'min.array', 'The :attribute must have at least :min items.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2982, 1, 'hi', 'validation', 'multiple_of', 'The :attribute must be a multiple of :value', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2983, 1, 'hi', 'validation', 'not_in', 'The selected :attribute is invalid.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2984, 1, 'hi', 'validation', 'not_regex', 'The :attribute format is invalid.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2985, 1, 'hi', 'validation', 'numeric', 'The :attribute must be a number.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2986, 1, 'hi', 'validation', 'password', 'The password is incorrect.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2987, 1, 'hi', 'validation', 'present', 'The :attribute field must be present.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2988, 1, 'hi', 'validation', 'regex', 'The :attribute format is invalid.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2989, 1, 'hi', 'validation', 'required', 'The :attribute field is required.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2990, 1, 'hi', 'validation', 'required_if', 'The :attribute field is required when :other is :value.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2991, 1, 'hi', 'validation', 'required_unless', 'The :attribute field is required unless :other is in :values.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2992, 1, 'hi', 'validation', 'required_with', 'The :attribute field is required when :values is present.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2993, 1, 'hi', 'validation', 'required_with_all', 'The :attribute field is required when :values are present.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2994, 1, 'hi', 'validation', 'required_without', 'The :attribute field is required when :values is not present.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2995, 1, 'hi', 'validation', 'required_without_all', 'The :attribute field is required when none of :values are present.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2996, 1, 'hi', 'validation', 'same', 'The :attribute and :other must match.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2997, 1, 'hi', 'validation', 'size.numeric', 'The :attribute must be :size.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2998, 1, 'hi', 'validation', 'size.file', 'The :attribute must be :size kilobytes.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(2999, 1, 'hi', 'validation', 'size.string', 'The :attribute must be :size characters.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3000, 1, 'hi', 'validation', 'size.array', 'The :attribute must contain :size items.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3001, 1, 'hi', 'validation', 'starts_with', 'The :attribute must start with one of the following: :values.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3002, 1, 'hi', 'validation', 'string', 'The :attribute must be a string.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3003, 1, 'hi', 'validation', 'timezone', 'The :attribute must be a valid zone.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3004, 1, 'hi', 'validation', 'unique', 'The :attribute has already been taken.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3005, 1, 'hi', 'validation', 'uploaded', 'The :attribute failed to upload.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3006, 1, 'hi', 'validation', 'url', 'The :attribute format is invalid.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3007, 1, 'hi', 'validation', 'uuid', 'The :attribute must be a valid UUID.', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3008, 1, 'hi', 'validation', 'custom.attribute-name.rule-name', 'custom-message', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3009, 1, 'jp', 'auth', 'failed', 'これらの資格情報は、当社の記録と一致しません。', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3010, 1, 'jp', 'auth', 'throttle', 'ログイン試行回数が多すぎます。 ：seconds秒後に再試行してください。', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3011, 1, 'jp', 'auth', 'sign_up_title', 'アカウントにサインアップする', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3012, 1, 'jp', 'auth', 'name', '名前', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3013, 1, 'jp', 'auth', 'email', 'Eメール', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3014, 1, 'jp', 'auth', 'password', 'パスワード', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3015, 1, 'jp', 'auth', 'name_ex', '例：John Doe', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3016, 1, 'jp', 'auth', 'email_ex', '例：hello@example.com', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3017, 1, 'jp', 'auth', 'sign_up_btn', 'サインアップ', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3018, 1, 'jp', 'auth', 'allready_sign_in', 'すでにアカウントをお持ちですか？', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3019, 1, 'jp', 'auth', 'sign_in_attr', 'ログインする', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3020, 1, 'jp', 'auth', 'reg', '登録', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3021, 1, 'jp', 'auth', 'agreement', '[サインアップ]をクリックすると、', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3022, 1, 'jp', 'auth', 'terms_condition', '利用規約', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3023, 1, 'jp', 'auth', 'privacy_policy', '個人情報保護方針', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3024, 1, 'jp', 'auth', 'and', 'そして', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3025, 1, 'jp', 'auth', 'login_title', 'アカウントにログインします', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3026, 1, 'jp', 'auth', 'remember_pass', '私を覚えてますか', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3027, 1, 'jp', 'auth', 'forget_pass', 'パスワードをお忘れですか', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3028, 1, 'jp', 'auth', 'sign_in', 'サインイン', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3029, 1, 'jp', 'auth', 'haven\'t_account', 'アカウントをお持ちではありませんか？', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3030, 1, 'jp', 'auth', 'sign_up', 'サインアップ', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3031, 1, 'jp', 'auth', 'submit', '参加する', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3032, 1, 'jp', 'auth', 'new_password', '新しいパスワード', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3033, 1, 'jp', 'auth', 'old_password', '以前のパスワード', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3034, 1, 'jp', 'auth', 'con_password', 'パスワードを認証する', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3035, 1, 'jp', 'layout', 'home', 'ホーム', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3036, 1, 'jp', 'layout', 'restaurant', 'レストラン', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3037, 1, 'jp', 'layout', 'restaurant_list', 'レストランリスト', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3038, 1, 'jp', 'layout', 'restaurant_create', 'レストランが正常に作成されました', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3039, 1, 'jp', 'layout', 'restaurant_edit', 'レストラン編集', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3040, 1, 'jp', 'layout', 'restaurants', 'レストラン', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3041, 1, 'jp', 'layout', 'list', 'リスト', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3042, 1, 'jp', 'layout', 'create', '作成する', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3043, 1, 'jp', 'layout', 'your_restaurant', 'あなたのレストランビジネス', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3044, 1, 'jp', 'layout', 'name', '名前', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3045, 1, 'jp', 'layout', 'timing', 'タイミング', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3046, 1, 'jp', 'layout', 'email', 'Eメール', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3047, 1, 'jp', 'layout', 'phone_number', '電話番号', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3048, 1, 'jp', 'layout', 'currency', '通貨', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3049, 1, 'jp', 'layout', 'type', 'タイプ', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3050, 1, 'jp', 'layout', 'description', '説明', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3051, 1, 'jp', 'layout', 'location', 'ロケーション', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3052, 1, 'jp', 'layout', 'cover', 'カバー', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3053, 1, 'jp', 'layout', 'profile', 'プロフィール', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3054, 1, 'jp', 'layout', 'image', '画像', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3055, 1, 'jp', 'layout', 'status', '状態', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3056, 1, 'jp', 'layout', 'total_item', '総アイテム', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3057, 1, 'jp', 'layout', 'active', 'アクティブ', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3058, 1, 'jp', 'layout', 'inactive', '非活性', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3059, 1, 'jp', 'layout', 'edit', '編集', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3060, 1, 'jp', 'layout', 'preview', 'プレビュー', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3061, 1, 'jp', 'layout', 'delete', '削除', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3062, 1, 'jp', 'layout', 'general_info', '一般的な情報', '2021-09-25 07:12:09', '2021-09-25 07:12:09'),
(3063, 1, 'jp', 'layout', 'image_upload', '画像のアップロード', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3064, 1, 'jp', 'layout', 'item_list', 'アイテムリスト', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3065, 1, 'jp', 'layout', 'item', '項目', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3066, 1, 'jp', 'layout', 'item_create', 'アイテムが正常に作成されました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3067, 1, 'jp', 'layout', 'item_edit', 'アイテム編集', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3068, 1, 'jp', 'layout', 'items', 'アイテム', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3069, 1, 'jp', 'layout', 'item_name', '項目名', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3070, 1, 'jp', 'layout', 'item_details', 'アイテム詳細', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3071, 1, 'jp', 'layout', 'your_item', 'あなたのアイテム', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3072, 1, 'jp', 'layout', 'title', '題名', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3073, 1, 'jp', 'layout', 'details', '詳細', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3074, 1, 'jp', 'layout', 'price', '価格', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3075, 1, 'jp', 'layout', 'category', 'カテゴリー', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3076, 1, 'jp', 'layout', 'discount', 'ディスカウント', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3077, 1, 'jp', 'layout', 'discount_type', '割引タイプ', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3078, 1, 'jp', 'layout', 'discount_to', '割引先', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3079, 1, 'jp', 'layout', 'item_image', 'アイテムの画像を選択', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3080, 1, 'jp', 'layout', 'choose', '選択', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3081, 1, 'jp', 'layout', 'confirmation', '確認', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3082, 1, 'jp', 'layout', 'confirm', '確認', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3083, 1, 'jp', 'layout', 'cancel', 'キャンセル', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3084, 1, 'jp', 'layout', 'logout', 'ログアウト', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3085, 1, 'jp', 'layout', 'dashboard', 'ダッシュボード', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3086, 1, 'jp', 'layout', 'hello', 'こんにちは、', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3087, 1, 'jp', 'layout', 'all_notification', 'すべての通知を表示する', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3088, 1, 'jp', 'layout', 'order_list', 'オーダーリスト', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3089, 1, 'jp', 'layout', 'order', '注文', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3090, 1, 'jp', 'layout', 'orders', '注文', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3091, 1, 'jp', 'layout', 'your_order', 'ご注文', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3092, 1, 'jp', 'layout', 'table', 'テーブル', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3093, 1, 'jp', 'layout', 'payment_status', '支払い状況', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3094, 1, 'jp', 'layout', 'comment', 'コメント', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3095, 1, 'jp', 'layout', 'delivered_within', '内で配信', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3096, 1, 'jp', 'layout', 'paid', '有料', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3097, 1, 'jp', 'layout', 'unpaid', '未払い', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3098, 1, 'jp', 'layout', 'pending', '保留中', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3099, 1, 'jp', 'layout', 'delivered', '配信済み', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3100, 1, 'jp', 'layout', 'approved', '承認済み', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3101, 1, 'jp', 'layout', 'rejected', '拒否されました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3102, 1, 'jp', 'layout', 'processing', '処理', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3103, 1, 'jp', 'layout', 'ready_for_delivery', '配達の準備ができました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3104, 1, 'jp', 'layout', 'on_the_way', '途中', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3105, 1, 'jp', 'layout', 'approve', '承認する', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3106, 1, 'jp', 'layout', 'total_price', '合計金額', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3107, 1, 'jp', 'layout', 'amount', '量', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3108, 1, 'jp', 'layout', 'within', '以内に', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3109, 1, 'jp', 'layout', 'time', '時間', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3110, 1, 'jp', 'layout', 'minutes', '議事録', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3111, 1, 'jp', 'layout', 'hours', '時間', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3112, 1, 'jp', 'layout', 'days', '日々', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3113, 1, 'jp', 'layout', 'check_new_order', '新しい注文を確認する', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3114, 1, 'jp', 'layout', 'users', 'ユーザー', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3115, 1, 'jp', 'layout', 'customer', 'お客様', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3116, 1, 'jp', 'layout', 'quantity', '量', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3117, 1, 'jp', 'layout', 'total', '合計', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3118, 1, 'jp', 'layout', 'grand_total', '総計', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3119, 1, 'jp', 'layout', 'total_discount', '合計割引', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3120, 1, 'jp', 'layout', 'invoice_by', '請求者', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3121, 1, 'jp', 'layout', 'invoice_to', '請求先', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3122, 1, 'jp', 'layout', 'order_details', '注文詳細', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3123, 1, 'jp', 'layout', 'message.item_create', 'アイテムが正常に作成されました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3124, 1, 'jp', 'layout', 'message.order_create', '注文が正常に作成されました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3125, 1, 'jp', 'layout', 'message.order_placed', 'ご注文は正常に行われました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3126, 1, 'jp', 'layout', 'message.restaurant_create', 'レストランが正常に作成されました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3127, 1, 'jp', 'layout', 'message.item_update', 'アイテムが正常に更新されました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3128, 1, 'jp', 'layout', 'message.order_update', '注文が正常に更新されました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3129, 1, 'jp', 'layout', 'message.restaurant_update', 'レストランが正常に更新されました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3130, 1, 'jp', 'layout', 'message.order_status_update', '注文ステータスが正常に更新されました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3131, 1, 'jp', 'layout', 'message.order_not_found', '注文が見つかりません', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3132, 1, 'jp', 'layout', 'message.restaurant_not_found', 'レストランが見つかりません', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3133, 1, 'jp', 'layout', 'message.order_status_warning', 'ステータスを <b class = \"text-red\"> :status </b> に変更してもよろしいですか？', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3134, 1, 'jp', 'layout', 'message.item_delete', 'アイテムが正常に削除されました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3135, 1, 'jp', 'layout', 'message.order_delete', '注文が正常に削除されました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3136, 1, 'jp', 'layout', 'message.restaurant_delete', 'レストランが正常に削除されました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3137, 1, 'jp', 'layout', 'message.item_delete_warning', 'このアイテムを削除してもよろしいですか？', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3138, 1, 'jp', 'layout', 'message.order_delete_warning', 'この注文を削除してもよろしいですか？', '2021-09-25 07:12:10', '2021-09-25 07:12:10');
INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES
(3139, 1, 'jp', 'layout', 'message.restaurant_delete_warning', 'このレストランを削除してもよろしいですか？', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3140, 1, 'jp', 'layout', 'message.plan_update', '計画が正常に更新されました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3141, 1, 'jp', 'layout', 'message.play_change_success', 'おめでとうございます！計画を正常に変更しました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3142, 1, 'jp', 'layout', 'message.invalid_payment', 'おっと！無効な支払い要求', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3143, 1, 'jp', 'layout', 'message.userplan_approve_success', 'ユーザープランが正常に承認される', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3144, 1, 'jp', 'layout', 'message.userplan_reject_success', 'ユーザープランが正常に拒否されました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3145, 1, 'jp', 'layout', 'message.userplan_status_change_msg', 'ユーザープランのステータスが正常に変更されました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3146, 1, 'jp', 'layout', 'message.userplan_approve_warning', 'この計画を承認してもよろしいですか？', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3147, 1, 'jp', 'layout', 'message.userplan_reject_warning', 'この計画を拒否してもよろしいですか？', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3148, 1, 'jp', 'layout', 'message.change_user_plan_warning', 'ユーザープランのステータスを変更してもよろしいですか？', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3149, 1, 'jp', 'layout', 'message.category_update_message', 'カテゴリの更新に成功', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3150, 1, 'jp', 'layout', 'message.category_store_msg', 'カテゴリストアに成功', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3151, 1, 'jp', 'layout', 'message.setting_update', '設定が正常に更新されました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3152, 1, 'jp', 'layout', 'message.registration_success', 'おめでとう！確認メールをお送りしました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3153, 1, 'jp', 'layout', 'message.verify', 'メールが正常に確認されました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3154, 1, 'jp', 'layout', 'message.verify_resend', '確認リンクが再度送信されました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3155, 1, 'jp', 'layout', 'message.verify_text', '最初にメールアドレスを確認してください。確認リンクを再送できます', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3156, 1, 'jp', 'layout', 'message.user_not_found', 'ユーザーが見つかりません。有効なメールでお試しください', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3157, 1, 'jp', 'layout', 'message.reset_link_send', '指示があなたの電子メールに送信されました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3158, 1, 'jp', 'layout', 'message.token_expired', 'トークンの有効期限が切れているか、使用されています', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3159, 1, 'jp', 'layout', 'message.reset_successful', 'パスワードは正常にリセットされました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3160, 1, 'jp', 'layout', 'message.category_delete_warning', 'このカテゴリを削除してもよろしいですか？', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3161, 1, 'jp', 'layout', 'message.category_delete', 'カテゴリが正常に削除されました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3162, 1, 'jp', 'layout', 'message.plan_delete_warning', 'このプランを削除してもよろしいですか？', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3163, 1, 'jp', 'layout', 'message.plan_delete_msg', 'プランが正常に削除されました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3164, 1, 'jp', 'layout', 'message.table_delete_msg', 'テーブルが正常に削除されました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3165, 1, 'jp', 'layout', 'message.table_delete_warning', 'このテーブルを削除してもよろしいですか？', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3166, 1, 'jp', 'layout', 'message.table_not_delete', 'おっと！テーブルはすでに使用されています', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3167, 1, 'jp', 'layout', 'message.category_not_delete', 'おっと！カテゴリはすでに使用されています', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3168, 1, 'jp', 'layout', 'message.item_not_delete', 'おっと！アイテムはすでに使用されています', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3169, 1, 'jp', 'layout', 'message.plan_not_delete', 'おっと！プランはすでに使用されています', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3170, 1, 'jp', 'layout', 'message.restaurant_not_delete', 'おっと！レストランはすでに使用されています', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3171, 1, 'jp', 'layout', 'message.pending_configuration', '最初に設定を構成する必要があります', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3172, 1, 'jp', 'layout', 'message.invalid_request', '無効なリクエスト', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3173, 1, 'jp', 'layout', 'message.upgrade_notification', 'プランの有効期限が切れていますアップグレードしてください', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3174, 1, 'jp', 'layout', 'message.request_received', 'リクエストをいただきました。間もなくご連絡いたします', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3175, 1, 'jp', 'layout', 'message.cancel_payment', '支払いはキャンセルされました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3176, 1, 'jp', 'layout', 'message.upload_success', '画像が正常にアップロードされました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3177, 1, 'jp', 'layout', 'message.update_failed', 'おっと！ 更新失敗', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3178, 1, 'jp', 'layout', 'message.tax_delete_warning', 'この税金を削除してもよろしいですか？', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3179, 1, 'jp', 'layout', 'message.table_success_msg', 'テーブルが正常に作成されました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3180, 1, 'jp', 'layout', 'message.table_update_msg', 'テーブルが正常に更新されました', '2021-09-25 07:12:10', '2021-09-25 07:12:10'),
(3181, 1, 'jp', 'layout', 'message.tax_success_msg', '税金が正常に作成されました', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3182, 1, 'jp', 'layout', 'message.tax_update_msg', '税金が正常に更新されました', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3183, 1, 'jp', 'layout', 'settings_title', '設定', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3184, 1, 'jp', 'layout', 'general_settings', '一般設定', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3185, 1, 'jp', 'layout', 'general', '一般', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3186, 1, 'jp', 'layout', 'password_change', 'パスワードを変更する', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3187, 1, 'jp', 'layout', 'email_settings', 'メール設定', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3188, 1, 'jp', 'layout', 'site_settings', 'サイト設定', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3189, 1, 'jp', 'layout', 'local_settings', 'ローカル設定', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3190, 1, 'jp', 'layout', 'email_template', 'メールテンプレート', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3191, 1, 'jp', 'layout', 'picture', '画像', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3192, 1, 'jp', 'layout', 'submit', '参加する', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3193, 1, 'jp', 'layout', 'old_password', '以前のパスワード', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3194, 1, 'jp', 'layout', 'new_password', '新しいパスワード', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3195, 1, 'jp', 'layout', 'confirm_password', 'パスワードを認証する', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3196, 1, 'jp', 'layout', 'host', 'ホスト', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3197, 1, 'jp', 'layout', 'password', 'パスワード', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3198, 1, 'jp', 'layout', 'port', 'ポート', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3199, 1, 'jp', 'layout', 'username', 'ユーザー名', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3200, 1, 'jp', 'layout', 'encrypt_type', '暗号化の種類', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3201, 1, 'jp', 'layout', 'registration', '登録', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3202, 1, 'jp', 'layout', 'forget_password', 'パスワードを忘れる', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3203, 1, 'jp', 'layout', 'order_placed', '注文済み', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3204, 1, 'jp', 'layout', 'order_status', '注文の状況', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3205, 1, 'jp', 'layout', 'email_subject', 'メールの件名', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3206, 1, 'jp', 'layout', 'email_body', 'メール本文', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3207, 1, 'jp', 'layout', 'email_from', 'からのメール', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3208, 1, 'jp', 'layout', 'plan_request', 'プランリクエスト', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3209, 1, 'jp', 'layout', 'plan_accept', '計画が承認されました', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3210, 1, 'jp', 'layout', 'plan_expire', 'プランの有効期限が切れました', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3211, 1, 'jp', 'layout', 'payment_gateway', '支払いゲートウェイ', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3212, 1, 'jp', 'layout', 'sms_gateway', 'SMSゲートウェイ', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3213, 1, 'jp', 'layout', 'stripe', '縞', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3214, 1, 'jp', 'layout', 'offline', 'オフライン', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3215, 1, 'jp', 'layout', 'bank_name', '銀行名', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3216, 1, 'jp', 'layout', 'bank_branch', '銀行支店', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3217, 1, 'jp', 'layout', 'account_name', 'アカウント名', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3218, 1, 'jp', 'layout', 'account_number', '口座番号', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3219, 1, 'jp', 'layout', 'transaction_id', 'トランザクションID', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3220, 1, 'jp', 'layout', 'reference', '参照', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3221, 1, 'jp', 'layout', 'client_id_key', 'ClientIDキー', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3222, 1, 'jp', 'layout', 'client_secret_key', 'クライアントシークレットキー', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3223, 1, 'jp', 'layout', 'publish_key', '公開可能なキー', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3224, 1, 'jp', 'layout', 'secret_key', '秘密鍵', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3225, 1, 'jp', 'layout', 'twilio', 'Twilio', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3226, 1, 'jp', 'layout', 'voyager', 'トラベル', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3227, 1, 'jp', 'layout', 'signalwire', 'Signalwire', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3228, 1, 'jp', 'layout', 'sid', 'SID', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3229, 1, 'jp', 'layout', 'token', '都県', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3230, 1, 'jp', 'layout', 'project_id', 'プロジェクトID', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3231, 1, 'jp', 'layout', 'space_url', 'スペースURL', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3232, 1, 'jp', 'layout', 'api_key', 'Apiキー', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3233, 1, 'jp', 'layout', 'api_secret', 'APIシークレット', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3234, 1, 'jp', 'layout', 'plan_title', 'プランリスト', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3235, 1, 'jp', 'layout', 'plan', '予定', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3236, 1, 'jp', 'layout', 'cost', '費用', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3237, 1, 'jp', 'layout', 'recurring_type', '繰り返しタイプ', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3238, 1, 'jp', 'layout', 'table_limit', 'テーブル制限', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3239, 1, 'jp', 'layout', 'restaurant_limit', 'レストランの制限', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3240, 1, 'jp', 'layout', 'item_limit', 'アイテム制限', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3241, 1, 'jp', 'layout', 'unlimited_support', '無制限のサポート', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3242, 1, 'jp', 'layout', 'action', 'アクション', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3243, 1, 'jp', 'layout', 'onetime', '一度', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3244, 1, 'jp', 'layout', 'weekly', '毎週', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3245, 1, 'jp', 'layout', 'monthly', '毎月', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3246, 1, 'jp', 'layout', 'yearly', '毎年', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3247, 1, 'jp', 'layout', 'plan_edit', '計画編集', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3248, 1, 'jp', 'layout', 'no_of_capacity', '容量なし', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3249, 1, 'jp', 'layout', 'position', 'ポジション', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3250, 1, 'jp', 'layout', 'payment_title', '支払い', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3251, 1, 'jp', 'layout', 'payment_method', '支払方法', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3252, 1, 'jp', 'layout', 'card_name', 'カードの名前', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3253, 1, 'jp', 'layout', 'card_number', 'カード番号', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3254, 1, 'jp', 'layout', 'cvc', 'CVC', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3255, 1, 'jp', 'layout', 'expiration', '有効期限', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3256, 1, 'jp', 'layout', 'pay_plan_title', 'プランタイトル', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3257, 1, 'jp', 'layout', 'start_date', '開始日', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3258, 1, 'jp', 'layout', 'expiry_date', '有効期限', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3259, 1, 'jp', 'layout', 'other_info', '他の情報', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3260, 1, 'jp', 'layout', 'total_cost', '総費用', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3261, 1, 'jp', 'layout', 'lifetime', '一生', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3262, 1, 'jp', 'layout', 'pay_now', 'Pay Now', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3263, 1, 'jp', 'layout', 'credit_or_debit', 'クレジットカードまたはデビットカード', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3264, 1, 'jp', 'layout', 'restaurant_extends', 'レストランの制限が延長または期限切れになりました。プランをアップグレードしてください', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3265, 1, 'jp', 'layout', 'table_extends', 'テーブル制限が延長または期限切れになりました。プランをアップグレードしてください', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3266, 1, 'jp', 'layout', 'item_extends', 'アイテム制限が延長または期限切れになりました。プランをアップグレードしてください', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3267, 1, 'jp', 'layout', 'user_plan_title', 'ユーザープラン', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3268, 1, 'jp', 'layout', 'user_plan', 'ユーザープラン', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3269, 1, 'jp', 'layout', 'plan_name', 'プランタイトル', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3270, 1, 'jp', 'layout', 'reject', '拒否する', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3271, 1, 'jp', 'layout', 'demo', 'でも', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3272, 1, 'jp', 'layout', 'pricing', '価格設定', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3273, 1, 'jp', 'layout', 'join', '参加する', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3274, 1, 'jp', 'layout', 'signup', 'サインアップ', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3275, 1, 'jp', 'layout', 'total_restaurant', 'トータルレストラン', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3276, 1, 'jp', 'layout', 'total_order_amount', '合計注文額', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3277, 1, 'jp', 'layout', 'total_income', '総収入', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3278, 1, 'jp', 'layout', 'pending_order', '保留中の注文', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3279, 1, 'jp', 'layout', 'pending_plan', '保留中の計画', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3280, 1, 'jp', 'layout', 'category_create_title', 'カテゴリ作成', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3281, 1, 'jp', 'layout', 'category_create', 'カテゴリ作成', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3282, 1, 'jp', 'layout', 'category_edit_title', 'カテゴリ編集', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3283, 1, 'jp', 'layout', 'category_edit', 'カテゴリ編集', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3284, 1, 'jp', 'layout', 'qr_maker', 'QRメーカー', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3285, 1, 'jp', 'layout', 'settings', '設定', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3286, 1, 'jp', 'layout', 'generate', '生む', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3287, 1, 'jp', 'layout', 'restaurant_select', 'セレクトレストラン', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3288, 1, 'jp', 'layout', 'table_select', 'テーブルを選択', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3289, 1, 'jp', 'layout', 'fill_color', '塗りつぶしの色', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3290, 1, 'jp', 'layout', 'bg_color', '背景色', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3291, 1, 'jp', 'layout', 'text_color', 'テキストの色', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3292, 1, 'jp', 'layout', 'mode', 'モード', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3293, 1, 'jp', 'layout', 'design_type', 'デザインタイプ', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3294, 1, 'jp', 'layout', 'normal', '正常', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3295, 1, 'jp', 'layout', 'text_strip', 'テキストストリップ', '2021-09-25 07:12:11', '2021-09-25 07:12:11'),
(3296, 1, 'jp', 'layout', 'image_strip', 'イメージストリップ', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3297, 1, 'jp', 'layout', 'text', 'テキスト', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3298, 1, 'jp', 'layout', 'size', 'サイズ', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3299, 1, 'jp', 'layout', 'pos_x', 'PosX', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3300, 1, 'jp', 'layout', 'pos_y', 'PosY', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3301, 1, 'jp', 'layout', 'role_permission', '許可', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3302, 1, 'jp', 'layout', 'verify_email', 'あなたの電子メールを確認します', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3303, 1, 'jp', 'layout', 'enter_code', 'コードを入力してください', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3304, 1, 'jp', 'layout', 'verify', '確認', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3305, 1, 'jp', 'layout', 'resend', '再送', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3306, 1, 'jp', 'layout', 'billings', 'ビリング', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3307, 1, 'jp', 'layout', 'download', 'ダウンロード', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3308, 1, 'jp', 'layout', 'my_order', '私の注文', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3309, 1, 'jp', 'layout', 'add', '追加', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3310, 1, 'jp', 'layout', 'overview', '概要概要', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3311, 1, 'jp', 'layout', 'payment', '支払い', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3312, 1, 'jp', 'layout', 'place_order', '注文する', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3313, 1, 'jp', 'layout', 'upgrade', 'アップグレード', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3314, 1, 'jp', 'layout', 'login', 'ログインする', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3315, 1, 'jp', 'layout', 'date_time_format', '日時形式', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3316, 1, 'jp', 'layout', 'date_time_separator', '日時セパレーター', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3317, 1, 'jp', 'layout', 'timezone', 'タイムゾーン', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3318, 1, 'jp', 'layout', 'decimal_format', '10進形式', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3319, 1, 'jp', 'layout', 'language', '言語', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3320, 1, 'jp', 'layout', 'currency_symbol', '通貨記号', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3321, 1, 'jp', 'layout', 'currency_symbol_position', 'シンボル位置', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3322, 1, 'jp', 'layout', 'before', '前', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3323, 1, 'jp', 'layout', 'after', '後', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3324, 1, 'jp', 'layout', 'bengali', 'বাংলা', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3325, 1, 'jp', 'layout', 'english', 'English', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3326, 1, 'jp', 'layout', 'arabic', 'عربى', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3327, 1, 'jp', 'layout', 'hindi', 'हिंदी', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3328, 1, 'jp', 'layout', 'spanish', 'Español', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3329, 1, 'jp', 'layout', 'japanese', '日本人', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3330, 1, 'jp', 'layout', 'portuguese', 'Português', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3331, 1, 'jp', 'layout', 'thousand_separator', 'サウザンドセパレーター', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3332, 1, 'jp', 'layout', 'decimals', '小数', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3333, 1, 'jp', 'layout', 'decimal_point', '小数点', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3334, 1, 'jp', 'layout', 'all_right_reserved', '全著作権所有', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3335, 1, 'jp', 'layout', 'copyright_footer', '著作権 © 設計 & によって開発された', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3336, 1, 'jp', 'layout', 'click_here', 'ここをクリック', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3337, 1, 'jp', 'layout', 'pay_on_table', 'テーブルで支払う', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3338, 1, 'jp', 'layout', 'currency_code', '通貨コード', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3339, 1, 'jp', 'layout', 'paytm', 'Paytm', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3340, 1, 'jp', 'layout', 'find_yours', 'コードを検索', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3341, 1, 'jp', 'layout', 'pay_with_paytm', 'Pay with Paytm', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3342, 1, 'jp', 'layout', 'paypal_des', 'Pague com Paypal', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3343, 1, 'jp', 'layout', 'paypal', 'Paypal', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3344, 1, 'jp', 'layout', 'paytm_environment', '環境', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3345, 1, 'jp', 'layout', 'paytm_mid', 'マーチャントID', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3346, 1, 'jp', 'layout', 'paytm_secret_key', '秘密鍵', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3347, 1, 'jp', 'layout', 'paytm_website', 'ウェブサイト', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3348, 1, 'jp', 'layout', 'paytm_txn_url', 'トランザクションURL', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3349, 1, 'jp', 'layout', 'choose_template', 'テンプレートの選択', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3350, 1, 'jp', 'layout', 'classic', 'クラシック', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3351, 1, 'jp', 'layout', 'modern', 'Modern', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3352, 1, 'jp', 'layout', 'flipbook', 'FlipBook', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3353, 1, 'jp', 'layout', 'custom', 'カスタム', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3354, 1, 'jp', 'layout', 'custom_menu', 'カスタムメニュー', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3355, 1, 'jp', 'layout', 'add_menu', 'メニューの追加', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3356, 1, 'jp', 'layout', 'enter_name', '名前を入力', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3357, 1, 'jp', 'layout', 'header', 'Header', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3358, 1, 'jp', 'layout', 'enter_header', 'ヘッダーを入力', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3359, 1, 'jp', 'layout', 'footer', 'Footer', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3360, 1, 'jp', 'layout', 'enter_footer', 'Enter Footer', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3361, 1, 'jp', 'layout', 'enter_description', '説明を入力', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3362, 1, 'jp', 'layout', 'enter_title', 'タイトルを入力', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3363, 1, 'jp', 'layout', 'basic', 'Basic', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3364, 1, 'jp', 'layout', 'extra', 'Extra', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3365, 1, 'jp', 'layout', 'add_extra', '追加', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3366, 1, 'jp', 'layout', 'add_extra_name', '追加の名前を入力してください', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3367, 1, 'jp', 'layout', 'enter_price', '価格を入力', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3368, 1, 'jp', 'layout', 'item_extra', 'Item \' s Extra ', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3369, 1, 'jp', 'layout', 'process', 'プロセス', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3370, 1, 'jp', 'layout', 'phone', 'Phone', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3371, 1, 'jp', 'layout', 'address', 'アドレス', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3372, 1, 'jp', 'layout', 'is_unlimited', 'Is Unlimited？', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3373, 1, 'jp', 'layout', 'unlimited', '無制限', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3374, 1, 'jp', 'layout', 'tax', 'Tax', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3375, 1, 'jp', 'layout', 'tax_create', 'Tax create', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3376, 1, 'jp', 'layout', 'tax_edit', '税編集', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3377, 1, 'jp', 'layout', 'taxes', 'Taxes', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3378, 1, 'jp', 'layout', 'tax_title', '税務タイトル', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3379, 1, 'jp', 'layout', 'flat', 'フラット', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3380, 1, 'jp', 'layout', 'percentage', 'Percentage', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3381, 1, 'jp', 'layout', 'print', 'Print', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3382, 1, 'jp', 'layout', 'pdf', 'PDF', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3383, 1, 'jp', 'layout', 'total_tax', '合計税', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3384, 1, 'jp', 'layout', 'view_basket', 'バスケットを表示', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3385, 1, 'jp', 'layout', 'all_categories', 'すべてのカテゴリ', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3386, 1, 'jp', 'layout', 'germany', 'Deutsch', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3387, 1, 'jp', 'layout', 'select_delivery_type', 'Select Delivery Type', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3388, 1, 'jp', 'layout', 'modal_title', 'Modal title', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3389, 1, 'jp', 'layout', 'close', 'Close', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3390, 1, 'jp', 'layout', 'cash_on_delivery', 'Cash on Delivery', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3391, 1, 'jp', 'layout', 'delivery_address', 'Delivery address', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3392, 1, 'jp', 'layout', 'ex_2806_montague_rd_bC_canada', 'Ex: 2806 Montague Rd, BC, Canada', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3393, 1, 'jp', 'layout', 'view_order', 'View Order', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3394, 1, 'jp', 'layout', 'credit_or_debit_card', 'Credit or Debit card', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3395, 1, 'jp', 'layout', 'order_overview', 'Order  overview', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3396, 1, 'jp', 'layout', 'payment_type', 'Payment Type', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3397, 1, 'jp', 'layout', 'select_a_payment_type', 'Select a payment type', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3398, 1, 'jp', 'layout', 'pay_in_cash', 'Pay in cash', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3399, 1, 'jp', 'layout', 'pay_in_paytm', 'Pay in paytm', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3400, 1, 'jp', 'layout', 'cash', 'Cash', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3401, 1, 'jp', 'layout', 'ex_Need_extra_spoon', 'Ex: Need extra spoon', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3402, 1, 'jp', 'layout', 'ex_example_mail_com', 'Ex: example@mail.com', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3403, 1, 'jp', 'layout', 'ex_number', 'Ex: +140139485764', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3404, 1, 'jp', 'layout', 'ex_jone_doe', 'Ex: Jone Doe', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3405, 1, 'jp', 'pagination', 'previous', '&laquo; Previous', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3406, 1, 'jp', 'pagination', 'next', 'Next &raquo;', '2021-09-25 07:12:12', '2021-09-25 07:12:12'),
(3407, 1, 'jp', 'passwords', 'reset', 'Your password has been reset!', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3408, 1, 'jp', 'passwords', 'sent', 'We have emailed your password reset link!', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3409, 1, 'jp', 'passwords', 'throttled', 'Please wait before retrying.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3410, 1, 'jp', 'passwords', 'token', 'This password reset token is invalid.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3411, 1, 'jp', 'passwords', 'user', 'We can\'t find a user with that email address.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3412, 1, 'jp', 'validation', 'accepted', 'The :attribute must be accepted.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3413, 1, 'jp', 'validation', 'active_url', 'The :attribute is not a valid URL.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3414, 1, 'jp', 'validation', 'after', 'The :attribute must be a date after :date.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3415, 1, 'jp', 'validation', 'after_or_equal', 'The :attribute must be a date after or equal to :date.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3416, 1, 'jp', 'validation', 'alpha', 'The :attribute may only contain letters.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3417, 1, 'jp', 'validation', 'alpha_dash', 'The :attribute may only contain letters, numbers, dashes and underscores.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3418, 1, 'jp', 'validation', 'alpha_num', 'The :attribute may only contain letters and numbers.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3419, 1, 'jp', 'validation', 'array', 'The :attribute must be an array.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3420, 1, 'jp', 'validation', 'before', 'The :attribute must be a date before :date.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3421, 1, 'jp', 'validation', 'before_or_equal', 'The :attribute must be a date before or equal to :date.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3422, 1, 'jp', 'validation', 'between.numeric', 'The :attribute must be between :min and :max.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3423, 1, 'jp', 'validation', 'between.file', 'The :attribute must be between :min and :max kilobytes.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3424, 1, 'jp', 'validation', 'between.string', 'The :attribute must be between :min and :max characters.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3425, 1, 'jp', 'validation', 'between.array', 'The :attribute must have between :min and :max items.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3426, 1, 'jp', 'validation', 'boolean', 'The :attribute field must be true or false.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3427, 1, 'jp', 'validation', 'confirmed', 'The :attribute confirmation does not match.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3428, 1, 'jp', 'validation', 'date', 'The :attribute is not a valid date.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3429, 1, 'jp', 'validation', 'date_equals', 'The :attribute must be a date equal to :date.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3430, 1, 'jp', 'validation', 'date_format', 'The :attribute does not match the format :format.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3431, 1, 'jp', 'validation', 'different', 'The :attribute and :other must be different.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3432, 1, 'jp', 'validation', 'digits', 'The :attribute must be :digits digits.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3433, 1, 'jp', 'validation', 'digits_between', 'The :attribute must be between :min and :max digits.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3434, 1, 'jp', 'validation', 'dimensions', 'The :attribute has invalid image dimensions.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3435, 1, 'jp', 'validation', 'distinct', 'The :attribute field has a duplicate value.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3436, 1, 'jp', 'validation', 'email', 'The :attribute must be a valid email address.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3437, 1, 'jp', 'validation', 'ends_with', 'The :attribute must end with one of the following: :values.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3438, 1, 'jp', 'validation', 'exists', 'The selected :attribute is invalid.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3439, 1, 'jp', 'validation', 'file', 'The :attribute must be a file.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3440, 1, 'jp', 'validation', 'filled', 'The :attribute field must have a value.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3441, 1, 'jp', 'validation', 'gt.numeric', 'The :attribute must be greater than :value.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3442, 1, 'jp', 'validation', 'gt.file', 'The :attribute must be greater than :value kilobytes.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3443, 1, 'jp', 'validation', 'gt.string', 'The :attribute must be greater than :value characters.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3444, 1, 'jp', 'validation', 'gt.array', 'The :attribute must have more than :value items.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3445, 1, 'jp', 'validation', 'gte.numeric', 'The :attribute must be greater than or equal :value.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3446, 1, 'jp', 'validation', 'gte.file', 'The :attribute must be greater than or equal :value kilobytes.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3447, 1, 'jp', 'validation', 'gte.string', 'The :attribute must be greater than or equal :value characters.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3448, 1, 'jp', 'validation', 'gte.array', 'The :attribute must have :value items or more.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3449, 1, 'jp', 'validation', 'image', 'The :attribute must be an image.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3450, 1, 'jp', 'validation', 'in', 'The selected :attribute is invalid.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3451, 1, 'jp', 'validation', 'in_array', 'The :attribute field does not exist in :other.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3452, 1, 'jp', 'validation', 'integer', 'The :attribute must be an integer.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3453, 1, 'jp', 'validation', 'ip', 'The :attribute must be a valid IP address.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3454, 1, 'jp', 'validation', 'ipv4', 'The :attribute must be a valid IPv4 address.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3455, 1, 'jp', 'validation', 'ipv6', 'The :attribute must be a valid IPv6 address.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3456, 1, 'jp', 'validation', 'json', 'The :attribute must be a valid JSON string.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3457, 1, 'jp', 'validation', 'lt.numeric', 'The :attribute must be less than :value.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3458, 1, 'jp', 'validation', 'lt.file', 'The :attribute must be less than :value kilobytes.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3459, 1, 'jp', 'validation', 'lt.string', 'The :attribute must be less than :value characters.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3460, 1, 'jp', 'validation', 'lt.array', 'The :attribute must have less than :value items.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3461, 1, 'jp', 'validation', 'lte.numeric', 'The :attribute must be less than or equal :value.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3462, 1, 'jp', 'validation', 'lte.file', 'The :attribute must be less than or equal :value kilobytes.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3463, 1, 'jp', 'validation', 'lte.string', 'The :attribute must be less than or equal :value characters.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3464, 1, 'jp', 'validation', 'lte.array', 'The :attribute must not have more than :value items.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3465, 1, 'jp', 'validation', 'max.numeric', 'The :attribute may not be greater than :max.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3466, 1, 'jp', 'validation', 'max.file', 'The :attribute may not be greater than :max kilobytes.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3467, 1, 'jp', 'validation', 'max.string', 'The :attribute may not be greater than :max characters.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3468, 1, 'jp', 'validation', 'max.array', 'The :attribute may not have more than :max items.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3469, 1, 'jp', 'validation', 'mimes', 'The :attribute must be a file of type: :values.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3470, 1, 'jp', 'validation', 'mimetypes', 'The :attribute must be a file of type: :values.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3471, 1, 'jp', 'validation', 'min.numeric', 'The :attribute must be at least :min.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3472, 1, 'jp', 'validation', 'min.file', 'The :attribute must be at least :min kilobytes.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3473, 1, 'jp', 'validation', 'min.string', 'The :attribute must be at least :min characters.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3474, 1, 'jp', 'validation', 'min.array', 'The :attribute must have at least :min items.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3475, 1, 'jp', 'validation', 'multiple_of', 'The :attribute must be a multiple of :value', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3476, 1, 'jp', 'validation', 'not_in', 'The selected :attribute is invalid.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3477, 1, 'jp', 'validation', 'not_regex', 'The :attribute format is invalid.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3478, 1, 'jp', 'validation', 'numeric', 'The :attribute must be a number.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3479, 1, 'jp', 'validation', 'password', 'The password is incorrect.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3480, 1, 'jp', 'validation', 'present', 'The :attribute field must be present.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3481, 1, 'jp', 'validation', 'regex', 'The :attribute format is invalid.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3482, 1, 'jp', 'validation', 'required', 'The :attribute field is required.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3483, 1, 'jp', 'validation', 'required_if', 'The :attribute field is required when :other is :value.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3484, 1, 'jp', 'validation', 'required_unless', 'The :attribute field is required unless :other is in :values.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3485, 1, 'jp', 'validation', 'required_with', 'The :attribute field is required when :values is present.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3486, 1, 'jp', 'validation', 'required_with_all', 'The :attribute field is required when :values are present.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3487, 1, 'jp', 'validation', 'required_without', 'The :attribute field is required when :values is not present.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3488, 1, 'jp', 'validation', 'required_without_all', 'The :attribute field is required when none of :values are present.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3489, 1, 'jp', 'validation', 'same', 'The :attribute and :other must match.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3490, 1, 'jp', 'validation', 'size.numeric', 'The :attribute must be :size.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3491, 1, 'jp', 'validation', 'size.file', 'The :attribute must be :size kilobytes.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3492, 1, 'jp', 'validation', 'size.string', 'The :attribute must be :size characters.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3493, 1, 'jp', 'validation', 'size.array', 'The :attribute must contain :size items.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3494, 1, 'jp', 'validation', 'starts_with', 'The :attribute must start with one of the following: :values.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3495, 1, 'jp', 'validation', 'string', 'The :attribute must be a string.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3496, 1, 'jp', 'validation', 'timezone', 'The :attribute must be a valid zone.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3497, 1, 'jp', 'validation', 'unique', 'The :attribute has already been taken.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3498, 1, 'jp', 'validation', 'uploaded', 'The :attribute failed to upload.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3499, 1, 'jp', 'validation', 'url', 'The :attribute format is invalid.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3500, 1, 'jp', 'validation', 'uuid', 'The :attribute must be a valid UUID.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3501, 1, 'jp', 'validation', 'custom.attribute-name.rule-name', 'custom-message', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3502, 1, 'pt', 'auth', 'failed', 'Essas credenciais não correspondem aos nossos registros.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3503, 1, 'pt', 'auth', 'throttle', 'Muitas tentativas de login. Tente novamente em: segundos segundos.', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3504, 1, 'pt', 'auth', 'sign_up_title', 'Cadastre sua conta', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3505, 1, 'pt', 'auth', 'name', 'Nome', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3506, 1, 'pt', 'auth', 'email', 'O email', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3507, 1, 'pt', 'auth', 'password', 'Senha', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3508, 1, 'pt', 'auth', 'name_ex', 'Ex: John Doe', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3509, 1, 'pt', 'auth', 'email_ex', 'Ex: hello@example.com', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3510, 1, 'pt', 'auth', 'sign_up_btn', 'inscrever-se', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3511, 1, 'pt', 'auth', 'allready_sign_in', 'já tem uma conta?', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3512, 1, 'pt', 'auth', 'sign_in_attr', 'Conecte-se', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3513, 1, 'pt', 'auth', 'reg', 'Cadastro', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3514, 1, 'pt', 'auth', 'agreement', 'Ao clicar em Inscrever-se, você concorda com nossos', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3515, 1, 'pt', 'auth', 'terms_condition', 'Termos e Condições', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3516, 1, 'pt', 'auth', 'privacy_policy', 'Política de Privacidade', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3517, 1, 'pt', 'auth', 'and', 'e', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3518, 1, 'pt', 'auth', 'login_title', 'Faça login na sua conta', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3519, 1, 'pt', 'auth', 'remember_pass', 'Lembre de mim', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3520, 1, 'pt', 'auth', 'forget_pass', 'Esqueceu a senha', '2021-09-25 07:12:13', '2021-09-25 07:12:13'),
(3521, 1, 'pt', 'auth', 'sign_in', 'Inscrever-me', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3522, 1, 'pt', 'auth', 'haven\'t_account', 'Não tem conta?', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3523, 1, 'pt', 'auth', 'sign_up', 'inscrever-se', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3524, 1, 'pt', 'auth', 'submit', 'ENVIAR', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3525, 1, 'pt', 'auth', 'new_password', 'Nova senha', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3526, 1, 'pt', 'auth', 'old_password', 'Senha Antiga', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3527, 1, 'pt', 'auth', 'con_password', 'Confirme a Senha', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3528, 1, 'pt', 'layout', 'home', 'Casa', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3529, 1, 'pt', 'layout', 'restaurant', 'Restaurante', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3530, 1, 'pt', 'layout', 'restaurant_list', 'Lista de restaurantes', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3531, 1, 'pt', 'layout', 'restaurant_create', 'Restaurante criado com sucesso', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3532, 1, 'pt', 'layout', 'restaurant_edit', 'Editar restaurante', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3533, 1, 'pt', 'layout', 'restaurants', 'Restaurantes', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3534, 1, 'pt', 'layout', 'list', 'Lista', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3535, 1, 'pt', 'layout', 'create', 'Crio', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3536, 1, 'pt', 'layout', 'your_restaurant', 'Seu negócio de restaurantes', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3537, 1, 'pt', 'layout', 'name', 'Nome', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3538, 1, 'pt', 'layout', 'timing', 'Cronometragem', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3539, 1, 'pt', 'layout', 'email', 'O email', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3540, 1, 'pt', 'layout', 'phone_number', 'Número de telefone', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3541, 1, 'pt', 'layout', 'currency', 'Moeda', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3542, 1, 'pt', 'layout', 'type', 'Tipo', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3543, 1, 'pt', 'layout', 'description', 'Descrição', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3544, 1, 'pt', 'layout', 'location', 'Localização', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3545, 1, 'pt', 'layout', 'cover', 'Cobrir', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3546, 1, 'pt', 'layout', 'profile', 'Perfil', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3547, 1, 'pt', 'layout', 'image', 'Imagem', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3548, 1, 'pt', 'layout', 'status', 'Status', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3549, 1, 'pt', 'layout', 'total_item', 'Artigo Total', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3550, 1, 'pt', 'layout', 'active', 'Ativo', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3551, 1, 'pt', 'layout', 'inactive', 'Inativo', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3552, 1, 'pt', 'layout', 'edit', 'Editar', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3553, 1, 'pt', 'layout', 'preview', 'Antevisão', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3554, 1, 'pt', 'layout', 'delete', 'Excluir', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3555, 1, 'pt', 'layout', 'general_info', 'Informações gerais', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3556, 1, 'pt', 'layout', 'image_upload', 'Upload de imagem', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3557, 1, 'pt', 'layout', 'item_list', 'Item da lista', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3558, 1, 'pt', 'layout', 'item', 'Item', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3559, 1, 'pt', 'layout', 'item_create', 'Item criado com sucesso', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3560, 1, 'pt', 'layout', 'item_edit', 'Edição de item', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3561, 1, 'pt', 'layout', 'items', 'Itens', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3562, 1, 'pt', 'layout', 'item_name', 'Nome do item', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3563, 1, 'pt', 'layout', 'item_details', 'Detalhes do item', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3564, 1, 'pt', 'layout', 'your_item', 'Seus Itens', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3565, 1, 'pt', 'layout', 'title', 'Título', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3566, 1, 'pt', 'layout', 'details', 'Detalhes', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3567, 1, 'pt', 'layout', 'price', 'Preço', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3568, 1, 'pt', 'layout', 'category', 'Categoria', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3569, 1, 'pt', 'layout', 'discount', 'Desconto', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3570, 1, 'pt', 'layout', 'discount_type', 'Tipo de Desconto', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3571, 1, 'pt', 'layout', 'discount_to', 'Desconto para', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3572, 1, 'pt', 'layout', 'item_image', 'Escolha a imagem do item', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3573, 1, 'pt', 'layout', 'choose', 'Escolher', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3574, 1, 'pt', 'layout', 'confirmation', 'Confirmação', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3575, 1, 'pt', 'layout', 'confirm', 'confirme', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3576, 1, 'pt', 'layout', 'cancel', 'Cancelar', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3577, 1, 'pt', 'layout', 'logout', 'Sair', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3578, 1, 'pt', 'layout', 'dashboard', 'painel de controle', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3579, 1, 'pt', 'layout', 'hello', 'Olá,', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3580, 1, 'pt', 'layout', 'all_notification', 'Mostrar todas as notificações', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3581, 1, 'pt', 'layout', 'order_list', 'Lista de pedidos', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3582, 1, 'pt', 'layout', 'order', 'Ordem', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3583, 1, 'pt', 'layout', 'orders', 'Pedidos', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3584, 1, 'pt', 'layout', 'your_order', 'Seus pedidos', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3585, 1, 'pt', 'layout', 'table', 'Tabela', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3586, 1, 'pt', 'layout', 'payment_status', 'Status do pagamento', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3587, 1, 'pt', 'layout', 'comment', 'Comente', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3588, 1, 'pt', 'layout', 'delivered_within', 'Entregue em', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3589, 1, 'pt', 'layout', 'paid', 'Pago', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3590, 1, 'pt', 'layout', 'unpaid', 'Não pago', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3591, 1, 'pt', 'layout', 'pending', 'Pendente', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3592, 1, 'pt', 'layout', 'delivered', 'Entregue', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3593, 1, 'pt', 'layout', 'approved', 'Aprovado', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3594, 1, 'pt', 'layout', 'rejected', 'Rejeitado', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3595, 1, 'pt', 'layout', 'processing', 'Em processamento', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3596, 1, 'pt', 'layout', 'ready_for_delivery', 'Pronto para entrega', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3597, 1, 'pt', 'layout', 'on_the_way', 'A caminho', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3598, 1, 'pt', 'layout', 'approve', 'Aprovar', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3599, 1, 'pt', 'layout', 'total_price', 'Preço total', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3600, 1, 'pt', 'layout', 'amount', 'Montante', '2021-09-25 07:12:14', '2021-09-25 07:12:14');
INSERT INTO `ltm_translations` (`id`, `status`, `locale`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES
(3601, 1, 'pt', 'layout', 'within', 'Dentro', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3602, 1, 'pt', 'layout', 'time', 'Tempo', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3603, 1, 'pt', 'layout', 'minutes', 'Minutos', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3604, 1, 'pt', 'layout', 'hours', 'Horas', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3605, 1, 'pt', 'layout', 'days', 'Dias', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3606, 1, 'pt', 'layout', 'check_new_order', 'Verificar novo pedido', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3607, 1, 'pt', 'layout', 'users', 'Comercial', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3608, 1, 'pt', 'layout', 'customer', 'Cliente', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3609, 1, 'pt', 'layout', 'quantity', 'Quantidade', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3610, 1, 'pt', 'layout', 'total', 'Total', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3611, 1, 'pt', 'layout', 'grand_total', 'Grand Total', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3612, 1, 'pt', 'layout', 'total_discount', 'Desconto Total', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3613, 1, 'pt', 'layout', 'invoice_by', 'Fatura por', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3614, 1, 'pt', 'layout', 'invoice_to', 'Fatura para', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3615, 1, 'pt', 'layout', 'order_details', 'Detalhes do pedido', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3616, 1, 'pt', 'layout', 'message.item_create', 'Item criado com sucesso', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3617, 1, 'pt', 'layout', 'message.order_create', 'Pedido criado com sucesso', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3618, 1, 'pt', 'layout', 'message.order_placed', 'Seu pedido foi feito com sucesso', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3619, 1, 'pt', 'layout', 'message.restaurant_create', 'Restaurante criado com sucesso', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3620, 1, 'pt', 'layout', 'message.item_update', 'Item atualizado com sucesso', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3621, 1, 'pt', 'layout', 'message.order_update', 'Pedido atualizado com sucesso', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3622, 1, 'pt', 'layout', 'message.restaurant_update', 'Restaurante atualizado com sucesso', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3623, 1, 'pt', 'layout', 'message.order_status_update', 'Status do pedido atualizado com sucesso', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3624, 1, 'pt', 'layout', 'message.order_not_found', 'Pedido não encontrado', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3625, 1, 'pt', 'layout', 'message.restaurant_not_found', 'Restaurante não encontrado', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3626, 1, 'pt', 'layout', 'message.order_status_warning', 'Tem certeza de que deseja alterar o status para <b class= \"text-red \"> :status </b>?', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3627, 1, 'pt', 'layout', 'message.item_delete', 'Item excluído com sucesso', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3628, 1, 'pt', 'layout', 'message.order_delete', 'Pedido excluído com sucesso', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3629, 1, 'pt', 'layout', 'message.restaurant_delete', 'Restaurante excluído com sucesso', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3630, 1, 'pt', 'layout', 'message.item_delete_warning', 'Tem certeza de que deseja excluir este item?', '2021-09-25 07:12:14', '2021-09-25 07:12:14'),
(3631, 1, 'pt', 'layout', 'message.order_delete_warning', 'Tem certeza de que deseja excluir este pedido?', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3632, 1, 'pt', 'layout', 'message.restaurant_delete_warning', 'Tem certeza de que deseja excluir este restaurante?', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3633, 1, 'pt', 'layout', 'message.plan_update', 'Plano atualizado com sucesso', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3634, 1, 'pt', 'layout', 'message.play_change_success', 'Parabéns! Você mudou seu plano com sucesso', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3635, 1, 'pt', 'layout', 'message.invalid_payment', 'Ops! Pedido de pagamento inválido', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3636, 1, 'pt', 'layout', 'message.userplan_approve_success', 'Plano de usuário aprovado com sucesso', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3637, 1, 'pt', 'layout', 'message.userplan_reject_success', 'Plano do usuário rejeitado com sucesso', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3638, 1, 'pt', 'layout', 'message.userplan_status_change_msg', 'Alteração do status do plano do usuário com sucesso', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3639, 1, 'pt', 'layout', 'message.userplan_approve_warning', 'Tem certeza de que deseja aprovar este plano?', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3640, 1, 'pt', 'layout', 'message.userplan_reject_warning', 'Tem certeza de que deseja rejeitar este plano?', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3641, 1, 'pt', 'layout', 'message.change_user_plan_warning', 'Tem certeza de que deseja alterar o status do plano do usuário?', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3642, 1, 'pt', 'layout', 'message.category_update_message', 'Atualização de categoria com sucesso', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3643, 1, 'pt', 'layout', 'message.category_store_msg', 'Loja de categoria com sucesso', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3644, 1, 'pt', 'layout', 'message.setting_update', 'Configuração atualizada com sucesso', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3645, 1, 'pt', 'layout', 'message.registration_success', 'Parabéns! Enviamos um e-mail de confirmação para você', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3646, 1, 'pt', 'layout', 'message.verify', 'Email verified successfully', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3647, 1, 'pt', 'layout', 'message.verify_resend', 'Link de verificação enviado novamente', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3648, 1, 'pt', 'layout', 'message.verify_text', 'Por favor, verifique seu e-mail primeiro. Você pode reenviar seu link de verificação', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3649, 1, 'pt', 'layout', 'message.user_not_found', 'Usuário não encontrado. Tente com e-mail válido', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3650, 1, 'pt', 'layout', 'message.reset_link_send', 'Uma instrução foi enviada para o seu e-mail', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3651, 1, 'pt', 'layout', 'message.token_expired', 'O token expirou ou foi usado', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3652, 1, 'pt', 'layout', 'message.reset_successful', 'A senha foi redefinida com sucesso', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3653, 1, 'pt', 'layout', 'message.category_delete_warning', 'Tem certeza que deseja deletar esta categoria?', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3654, 1, 'pt', 'layout', 'message.category_delete', 'Categoria excluída com sucesso', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3655, 1, 'pt', 'layout', 'message.plan_delete_warning', 'Tem certeza que deseja deletar este plano?', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3656, 1, 'pt', 'layout', 'message.plan_delete_msg', 'Plano excluído com sucesso', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3657, 1, 'pt', 'layout', 'message.table_delete_msg', 'Tabela excluída com sucesso', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3658, 1, 'pt', 'layout', 'message.table_delete_warning', 'Tem certeza que deseja excluir esta tabela?', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3659, 1, 'pt', 'layout', 'message.table_not_delete', 'Ops! A mesa já está em uso', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3660, 1, 'pt', 'layout', 'message.category_not_delete', 'Ops! Categoria já está em uso', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3661, 1, 'pt', 'layout', 'message.item_not_delete', 'Ops! Item já está em uso', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3662, 1, 'pt', 'layout', 'message.plan_not_delete', 'Ops! O plano já está em uso', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3663, 1, 'pt', 'layout', 'message.restaurant_not_delete', 'Ops! Restaurante já está em uso', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3664, 1, 'pt', 'layout', 'message.pending_configuration', 'Você precisa definir suas configurações primeiro', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3665, 1, 'pt', 'layout', 'message.invalid_request', 'Pedido inválido', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3666, 1, 'pt', 'layout', 'message.upgrade_notification', 'Seu plano expirou, atualize', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3667, 1, 'pt', 'layout', 'message.request_received', 'Nós recebemos o seu pedido. Entraremos em contato em breve', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3668, 1, 'pt', 'layout', 'message.cancel_payment', 'O pagamento foi cancelado', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3669, 1, 'pt', 'layout', 'message.upload_success', 'Imagem enviada com sucesso', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3670, 1, 'pt', 'layout', 'message.update_failed', 'Ops! Atualização falhou', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3671, 1, 'pt', 'layout', 'message.tax_delete_warning', 'Tem certeza que deseja excluir este imposto?', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3672, 1, 'pt', 'layout', 'message.table_success_msg', 'Tabela criada com sucesso', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3673, 1, 'pt', 'layout', 'message.table_update_msg', 'Tabela atualizada com sucesso', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3674, 1, 'pt', 'layout', 'message.tax_success_msg', 'Imposto criado com sucesso', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3675, 1, 'pt', 'layout', 'message.tax_update_msg', 'Imposto atualizado com sucesso', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3676, 1, 'pt', 'layout', 'settings_title', 'Definições', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3677, 1, 'pt', 'layout', 'general_settings', 'Configurações Gerais', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3678, 1, 'pt', 'layout', 'general', 'Geral', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3679, 1, 'pt', 'layout', 'password_change', 'Mudar senha', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3680, 1, 'pt', 'layout', 'email_settings', 'Configurações de e-mail', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3681, 1, 'pt', 'layout', 'site_settings', 'Configurações do site', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3682, 1, 'pt', 'layout', 'local_settings', 'Configurações locais', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3683, 1, 'pt', 'layout', 'email_template', 'Modelo de Email', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3684, 1, 'pt', 'layout', 'picture', 'Cenário', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3685, 1, 'pt', 'layout', 'submit', 'Enviar', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3686, 1, 'pt', 'layout', 'old_password', 'Senha Antiga', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3687, 1, 'pt', 'layout', 'new_password', 'Nova senha', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3688, 1, 'pt', 'layout', 'confirm_password', 'Confirme a Senha', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3689, 1, 'pt', 'layout', 'host', 'Hospedeiro', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3690, 1, 'pt', 'layout', 'password', 'Senha', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3691, 1, 'pt', 'layout', 'port', 'Porta', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3692, 1, 'pt', 'layout', 'username', 'Nome do usuário', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3693, 1, 'pt', 'layout', 'encrypt_type', 'Tipo de encriptação', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3694, 1, 'pt', 'layout', 'registration', 'Cadastro', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3695, 1, 'pt', 'layout', 'forget_password', 'Esqueceu a senha', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3696, 1, 'pt', 'layout', 'order_placed', 'Pedido feito', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3697, 1, 'pt', 'layout', 'order_status', 'Status do pedido', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3698, 1, 'pt', 'layout', 'email_subject', 'Assunto do email', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3699, 1, 'pt', 'layout', 'email_body', 'Corpo do e-mail', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3700, 1, 'pt', 'layout', 'email_from', 'E-mail de', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3701, 1, 'pt', 'layout', 'plan_request', 'Pedido de plano', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3702, 1, 'pt', 'layout', 'plan_accept', 'Plano aceito', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3703, 1, 'pt', 'layout', 'plan_expire', 'Plano Expirado', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3704, 1, 'pt', 'layout', 'payment_gateway', 'Gateway de pagamento', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3705, 1, 'pt', 'layout', 'sms_gateway', 'Gateway de SMS', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3706, 1, 'pt', 'layout', 'stripe', 'Listra', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3707, 1, 'pt', 'layout', 'offline', 'desligada', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3708, 1, 'pt', 'layout', 'bank_name', 'nome do banco', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3709, 1, 'pt', 'layout', 'bank_branch', 'Agência Bancária', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3710, 1, 'pt', 'layout', 'account_name', 'Nome da conta', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3711, 1, 'pt', 'layout', 'account_number', 'Número da conta', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3712, 1, 'pt', 'layout', 'transaction_id', 'ID de transação', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3713, 1, 'pt', 'layout', 'reference', 'Referência', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3714, 1, 'pt', 'layout', 'client_id_key', 'Chave ClientID', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3715, 1, 'pt', 'layout', 'client_secret_key', 'Chave secreta do cliente', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3716, 1, 'pt', 'layout', 'publish_key', 'Chave publicável', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3717, 1, 'pt', 'layout', 'secret_key', 'Chave secreta', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3718, 1, 'pt', 'layout', 'twilio', 'Twilio', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3719, 1, 'pt', 'layout', 'voyager', 'Viagem', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3720, 1, 'pt', 'layout', 'signalwire', 'Signalvir', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3721, 1, 'pt', 'layout', 'sid', 'SID', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3722, 1, 'pt', 'layout', 'token', 'Símbolo', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3723, 1, 'pt', 'layout', 'project_id', 'ID do projeto', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3724, 1, 'pt', 'layout', 'space_url', 'URL do espaço', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3725, 1, 'pt', 'layout', 'api_key', 'Chave API', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3726, 1, 'pt', 'layout', 'api_secret', 'Segredo de API', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3727, 1, 'pt', 'layout', 'plan_title', 'Lista de Planos', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3728, 1, 'pt', 'layout', 'plan', 'Planos', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3729, 1, 'pt', 'layout', 'cost', 'Custo', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3730, 1, 'pt', 'layout', 'recurring_type', 'Tipo recorrente', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3731, 1, 'pt', 'layout', 'table_limit', 'Limite de mesa', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3732, 1, 'pt', 'layout', 'restaurant_limit', 'Limite de restaurante', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3733, 1, 'pt', 'layout', 'item_limit', 'Limite de item', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3734, 1, 'pt', 'layout', 'unlimited_support', 'Suporte ilimitado', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3735, 1, 'pt', 'layout', 'action', 'Açao', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3736, 1, 'pt', 'layout', 'onetime', 'Um tempo', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3737, 1, 'pt', 'layout', 'weekly', 'Semanal', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3738, 1, 'pt', 'layout', 'monthly', 'Por mês', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3739, 1, 'pt', 'layout', 'yearly', 'Anual', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3740, 1, 'pt', 'layout', 'plan_edit', 'Edição do plano', '2021-09-25 07:12:15', '2021-09-25 07:12:15'),
(3741, 1, 'pt', 'layout', 'no_of_capacity', 'Nº de capacidade', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3742, 1, 'pt', 'layout', 'position', 'Posição', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3743, 1, 'pt', 'layout', 'payment_title', 'Forma de pagamento', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3744, 1, 'pt', 'layout', 'payment_method', 'Forma de pagamento', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3745, 1, 'pt', 'layout', 'card_name', 'Nome no cartão', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3746, 1, 'pt', 'layout', 'card_number', 'Número do cartão', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3747, 1, 'pt', 'layout', 'cvc', 'CVC', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3748, 1, 'pt', 'layout', 'expiration', 'Vencimento', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3749, 1, 'pt', 'layout', 'pay_plan_title', 'Título do Plano', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3750, 1, 'pt', 'layout', 'start_date', 'Data de início', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3751, 1, 'pt', 'layout', 'expiry_date', 'Data de validade', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3752, 1, 'pt', 'layout', 'other_info', 'Outras informações', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3753, 1, 'pt', 'layout', 'total_cost', 'Custo total', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3754, 1, 'pt', 'layout', 'lifetime', 'Tempo de vida', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3755, 1, 'pt', 'layout', 'pay_now', 'Pay Now', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3756, 1, 'pt', 'layout', 'credit_or_debit', 'Cartão de crédito ou débito', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3757, 1, 'pt', 'layout', 'restaurant_extends', 'Limite do restaurante estendido ou expirado. Atualize seu plano', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3758, 1, 'pt', 'layout', 'table_extends', 'Limite de mesa estendido ou expirado. Atualize seu plano', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3759, 1, 'pt', 'layout', 'item_extends', 'Limite de itens estendido ou expirado. Atualize seu plano', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3760, 1, 'pt', 'layout', 'user_plan_title', 'Plano do Usuário', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3761, 1, 'pt', 'layout', 'user_plan', 'Plano de usuário', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3762, 1, 'pt', 'layout', 'plan_name', 'Título do plano', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3763, 1, 'pt', 'layout', 'reject', 'Rejeitar', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3764, 1, 'pt', 'layout', 'demo', 'Demo', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3765, 1, 'pt', 'layout', 'pricing', 'Preços', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3766, 1, 'pt', 'layout', 'join', 'Junte-se', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3767, 1, 'pt', 'layout', 'signup', 'inscrever-se', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3768, 1, 'pt', 'layout', 'total_restaurant', 'Total Restaurant', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3769, 1, 'pt', 'layout', 'total_order_amount', 'Valor total do pedido', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3770, 1, 'pt', 'layout', 'total_income', 'Total Income', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3771, 1, 'pt', 'layout', 'pending_order', 'Ordens pendentes', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3772, 1, 'pt', 'layout', 'pending_plan', 'Plano Pendente', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3773, 1, 'pt', 'layout', 'category_create_title', 'criar categoria', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3774, 1, 'pt', 'layout', 'category_create', 'Criação de categoria', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3775, 1, 'pt', 'layout', 'category_edit_title', 'edição de categoria', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3776, 1, 'pt', 'layout', 'category_edit', 'Edição de categoria', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3777, 1, 'pt', 'layout', 'qr_maker', 'QR Maker', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3778, 1, 'pt', 'layout', 'settings', 'Definições', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3779, 1, 'pt', 'layout', 'generate', 'Gerar', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3780, 1, 'pt', 'layout', 'restaurant_select', 'Selecione o restaurante', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3781, 1, 'pt', 'layout', 'table_select', 'Selecione a mesa', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3782, 1, 'pt', 'layout', 'fill_color', 'Cor de preenchimento', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3783, 1, 'pt', 'layout', 'bg_color', 'Cor de fundo', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3784, 1, 'pt', 'layout', 'text_color', 'Cor do texto', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3785, 1, 'pt', 'layout', 'mode', 'Modo', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3786, 1, 'pt', 'layout', 'design_type', 'Tipo de Design', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3787, 1, 'pt', 'layout', 'normal', 'Normal', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3788, 1, 'pt', 'layout', 'text_strip', 'Faixa de Texto', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3789, 1, 'pt', 'layout', 'image_strip', 'Faixa de imagem', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3790, 1, 'pt', 'layout', 'text', 'Texto', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3791, 1, 'pt', 'layout', 'size', 'Tamanho', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3792, 1, 'pt', 'layout', 'pos_x', 'PosX', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3793, 1, 'pt', 'layout', 'pos_y', 'PosY', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3794, 1, 'pt', 'layout', 'role_permission', 'Permissão', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3795, 1, 'pt', 'layout', 'verify_email', 'Verifique seu e-mail', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3796, 1, 'pt', 'layout', 'enter_code', 'Insira seu código', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3797, 1, 'pt', 'layout', 'verify', 'Verificar', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3798, 1, 'pt', 'layout', 'resend', 'Reenviar', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3799, 1, 'pt', 'layout', 'billings', 'Billings', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3800, 1, 'pt', 'layout', 'download', 'Baixar', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3801, 1, 'pt', 'layout', 'my_order', 'minhas ordens', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3802, 1, 'pt', 'layout', 'add', 'Adicionar', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3803, 1, 'pt', 'layout', 'overview', 'visão global', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3804, 1, 'pt', 'layout', 'payment', 'Forma de pagamento', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3805, 1, 'pt', 'layout', 'place_order', 'Faça a encomenda', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3806, 1, 'pt', 'layout', 'upgrade', 'Melhoria', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3807, 1, 'pt', 'layout', 'login', 'Login', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3808, 1, 'pt', 'layout', 'date_time_format', 'Formato Datetime', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3809, 1, 'pt', 'layout', 'date_time_separator', 'Separador de data e hora', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3810, 1, 'pt', 'layout', 'timezone', 'Fuso horário', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3811, 1, 'pt', 'layout', 'decimal_format', 'Formato Decimal', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3812, 1, 'pt', 'layout', 'language', 'Língua', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3813, 1, 'pt', 'layout', 'currency_symbol', 'Símbolo da Moeda', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3814, 1, 'pt', 'layout', 'currency_symbol_position', 'Posição do Símbolo', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3815, 1, 'pt', 'layout', 'before', 'Antes', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3816, 1, 'pt', 'layout', 'after', 'Depois de', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3817, 1, 'pt', 'layout', 'bengali', 'বাংলা', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3818, 1, 'pt', 'layout', 'english', 'English', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3819, 1, 'pt', 'layout', 'arabic', 'عربى', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3820, 1, 'pt', 'layout', 'hindi', 'हिंदी', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3821, 1, 'pt', 'layout', 'spanish', 'Español', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3822, 1, 'pt', 'layout', 'japanese', '日本人', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3823, 1, 'pt', 'layout', 'portuguese', 'Português', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3824, 1, 'pt', 'layout', 'thousand_separator', 'Separador de Milhares', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3825, 1, 'pt', 'layout', 'decimals', 'Decimais', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3826, 1, 'pt', 'layout', 'decimal_point', 'Ponto decimal', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3827, 1, 'pt', 'layout', 'all_right_reserved', 'Todos os direitos reservados', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3828, 1, 'pt', 'layout', 'copyright_footer', 'Copyright © projetado e desenvolvido por', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3829, 1, 'pt', 'layout', 'click_here', 'Clique aqui', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3830, 1, 'pt', 'layout', 'pay_on_table', 'Pagamento na mesa', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3831, 1, 'pt', 'layout', 'currency_code', 'Código da moeda', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3832, 1, 'pt', 'layout', 'paytm', 'Paytm', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3833, 1, 'pt', 'layout', 'find_yours', 'Encontre seu código', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3834, 1, 'pt', 'layout', 'pay_with_paytm', 'Pague com Paytm', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3835, 1, 'pt', 'layout', 'paypal_des', 'Pague com Paypal', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3836, 1, 'pt', 'layout', 'paypal', 'Paypal', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3837, 1, 'pt', 'layout', 'paytm_environment', 'Ambiente', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3838, 1, 'pt', 'layout', 'paytm_mid', 'ID do comerciante', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3839, 1, 'pt', 'layout', 'paytm_secret_key', 'Chave secreta', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3840, 1, 'pt', 'layout', 'paytm_website', 'Site', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3841, 1, 'pt', 'layout', 'paytm_txn_url', 'URL de transação', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3842, 1, 'pt', 'layout', 'choose_template', 'Escolha o modelo', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3843, 1, 'pt', 'layout', 'classic', 'Clássico', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3844, 1, 'pt', 'layout', 'modern', 'Moderno', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3845, 1, 'pt', 'layout', 'flipbook', 'FlipBook', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3846, 1, 'pt', 'layout', 'custom', 'Custom', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3847, 1, 'pt', 'layout', 'custom_menu', 'Menu personalizado', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3848, 1, 'pt', 'layout', 'add_menu', 'Adicionar Menu', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3849, 1, 'pt', 'layout', 'enter_name', 'Digite o nome', '2021-09-25 07:12:16', '2021-09-25 07:12:16'),
(3850, 1, 'pt', 'layout', 'header', 'Cabeçalho', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3851, 1, 'pt', 'layout', 'enter_header', 'Digite o cabeçalho', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3852, 1, 'pt', 'layout', 'footer', 'Rodapé', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3853, 1, 'pt', 'layout', 'enter_footer', 'Inserir rodapé', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3854, 1, 'pt', 'layout', 'enter_description', 'Insira a descrição', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3855, 1, 'pt', 'layout', 'enter_title', 'Digite o título', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3856, 1, 'pt', 'layout', 'basic', 'Básico', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3857, 1, 'pt', 'layout', 'extra', 'Extra', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3858, 1, 'pt', 'layout', 'add_extra', 'Adicionar Extra', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3859, 1, 'pt', 'layout', 'add_extra_name', 'Digite o nome extra', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3860, 1, 'pt', 'layout', 'enter_price', 'Insira o preço', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3861, 1, 'pt', 'layout', 'item_extra', 'Extra do item', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3862, 1, 'pt', 'layout', 'process', 'Processo', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3863, 1, 'pt', 'layout', 'phone', 'Telefone', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3864, 1, 'pt', 'layout', 'address', 'Endereço', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3865, 1, 'pt', 'layout', 'is_unlimited', 'Is Unlimited?', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3866, 1, 'pt', 'layout', 'unlimited', 'Ilimitado', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3867, 1, 'pt', 'layout', 'tax', 'Imposto', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3868, 1, 'pt', 'layout', 'tax_create', 'Criar imposto', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3869, 1, 'pt', 'layout', 'tax_edit', 'Edição de impostos', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3870, 1, 'pt', 'layout', 'taxes', 'Impostos', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3871, 1, 'pt', 'layout', 'tax_title', 'Título fiscal', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3872, 1, 'pt', 'layout', 'flat', 'Flat', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3873, 1, 'pt', 'layout', 'percentage', 'Porcentagem', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3874, 1, 'pt', 'layout', 'print', 'Imprimir', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3875, 1, 'pt', 'layout', 'pdf', 'PDF', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3876, 1, 'pt', 'layout', 'total_tax', 'Total de impostos', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3877, 1, 'pt', 'layout', 'view_basket', 'Ver cesta', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3878, 1, 'pt', 'layout', 'all_categories', 'Todas as categorias', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3879, 1, 'pt', 'layout', 'germany', 'Deutsch', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3880, 1, 'pt', 'layout', 'select_delivery_type', 'Select Delivery Type', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3881, 1, 'pt', 'layout', 'modal_title', 'Modal title', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3882, 1, 'pt', 'layout', 'close', 'Close', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3883, 1, 'pt', 'layout', 'cash_on_delivery', 'Cash on Delivery', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3884, 1, 'pt', 'layout', 'delivery_address', 'Delivery address', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3885, 1, 'pt', 'layout', 'ex_2806_montague_rd_bC_canada', 'Ex: 2806 Montague Rd, BC, Canada', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3886, 1, 'pt', 'layout', 'view_order', 'View Order', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3887, 1, 'pt', 'layout', 'credit_or_debit_card', 'Credit or Debit card', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3888, 1, 'pt', 'layout', 'order_overview', 'Order  overview', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3889, 1, 'pt', 'layout', 'payment_type', 'Payment Type', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3890, 1, 'pt', 'layout', 'select_a_payment_type', 'Select a payment type', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3891, 1, 'pt', 'layout', 'pay_in_cash', 'Pay in cash', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3892, 1, 'pt', 'layout', 'pay_in_paytm', 'Pay in paytm', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3893, 1, 'pt', 'layout', 'cash', 'Cash', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3894, 1, 'pt', 'layout', 'ex_Need_extra_spoon', 'Ex: Need extra spoon', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3895, 1, 'pt', 'layout', 'ex_example_mail_com', 'Ex: example@mail.com', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3896, 1, 'pt', 'layout', 'ex_number', 'Ex: +140139485764', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3897, 1, 'pt', 'layout', 'ex_jone_doe', 'Ex: Jone Doe', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3898, 1, 'pt', 'pagination', 'previous', '&laquo; Previous', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3899, 1, 'pt', 'pagination', 'next', 'Next &raquo;', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3900, 1, 'pt', 'passwords', 'reset', 'Your password has been reset!', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3901, 1, 'pt', 'passwords', 'sent', 'We have emailed your password reset link!', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3902, 1, 'pt', 'passwords', 'throttled', 'Please wait before retrying.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3903, 1, 'pt', 'passwords', 'token', 'This password reset token is invalid.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3904, 1, 'pt', 'passwords', 'user', 'We can\'t find a user with that email address.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3905, 1, 'pt', 'validation', 'accepted', 'The :attribute must be accepted.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3906, 1, 'pt', 'validation', 'active_url', 'The :attribute is not a valid URL.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3907, 1, 'pt', 'validation', 'after', 'The :attribute must be a date after :date.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3908, 1, 'pt', 'validation', 'after_or_equal', 'The :attribute must be a date after or equal to :date.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3909, 1, 'pt', 'validation', 'alpha', 'The :attribute may only contain letters.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3910, 1, 'pt', 'validation', 'alpha_dash', 'The :attribute may only contain letters, numbers, dashes and underscores.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3911, 1, 'pt', 'validation', 'alpha_num', 'The :attribute may only contain letters and numbers.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3912, 1, 'pt', 'validation', 'array', 'The :attribute must be an array.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3913, 1, 'pt', 'validation', 'before', 'The :attribute must be a date before :date.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3914, 1, 'pt', 'validation', 'before_or_equal', 'The :attribute must be a date before or equal to :date.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3915, 1, 'pt', 'validation', 'between.numeric', 'The :attribute must be between :min and :max.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3916, 1, 'pt', 'validation', 'between.file', 'The :attribute must be between :min and :max kilobytes.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3917, 1, 'pt', 'validation', 'between.string', 'The :attribute must be between :min and :max characters.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3918, 1, 'pt', 'validation', 'between.array', 'The :attribute must have between :min and :max items.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3919, 1, 'pt', 'validation', 'boolean', 'The :attribute field must be true or false.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3920, 1, 'pt', 'validation', 'confirmed', 'The :attribute confirmation does not match.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3921, 1, 'pt', 'validation', 'date', 'The :attribute is not a valid date.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3922, 1, 'pt', 'validation', 'date_equals', 'The :attribute must be a date equal to :date.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3923, 1, 'pt', 'validation', 'date_format', 'The :attribute does not match the format :format.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3924, 1, 'pt', 'validation', 'different', 'The :attribute and :other must be different.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3925, 1, 'pt', 'validation', 'digits', 'The :attribute must be :digits digits.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3926, 1, 'pt', 'validation', 'digits_between', 'The :attribute must be between :min and :max digits.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3927, 1, 'pt', 'validation', 'dimensions', 'The :attribute has invalid image dimensions.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3928, 1, 'pt', 'validation', 'distinct', 'The :attribute field has a duplicate value.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3929, 1, 'pt', 'validation', 'email', 'The :attribute must be a valid email address.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3930, 1, 'pt', 'validation', 'ends_with', 'The :attribute must end with one of the following: :values.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3931, 1, 'pt', 'validation', 'exists', 'The selected :attribute is invalid.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3932, 1, 'pt', 'validation', 'file', 'The :attribute must be a file.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3933, 1, 'pt', 'validation', 'filled', 'The :attribute field must have a value.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3934, 1, 'pt', 'validation', 'gt.numeric', 'The :attribute must be greater than :value.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3935, 1, 'pt', 'validation', 'gt.file', 'The :attribute must be greater than :value kilobytes.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3936, 1, 'pt', 'validation', 'gt.string', 'The :attribute must be greater than :value characters.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3937, 1, 'pt', 'validation', 'gt.array', 'The :attribute must have more than :value items.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3938, 1, 'pt', 'validation', 'gte.numeric', 'The :attribute must be greater than or equal :value.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3939, 1, 'pt', 'validation', 'gte.file', 'The :attribute must be greater than or equal :value kilobytes.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3940, 1, 'pt', 'validation', 'gte.string', 'The :attribute must be greater than or equal :value characters.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3941, 1, 'pt', 'validation', 'gte.array', 'The :attribute must have :value items or more.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3942, 1, 'pt', 'validation', 'image', 'The :attribute must be an image.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3943, 1, 'pt', 'validation', 'in', 'The selected :attribute is invalid.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3944, 1, 'pt', 'validation', 'in_array', 'The :attribute field does not exist in :other.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3945, 1, 'pt', 'validation', 'integer', 'The :attribute must be an integer.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3946, 1, 'pt', 'validation', 'ip', 'The :attribute must be a valid IP address.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3947, 1, 'pt', 'validation', 'ipv4', 'The :attribute must be a valid IPv4 address.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3948, 1, 'pt', 'validation', 'ipv6', 'The :attribute must be a valid IPv6 address.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3949, 1, 'pt', 'validation', 'json', 'The :attribute must be a valid JSON string.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3950, 1, 'pt', 'validation', 'lt.numeric', 'The :attribute must be less than :value.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3951, 1, 'pt', 'validation', 'lt.file', 'The :attribute must be less than :value kilobytes.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3952, 1, 'pt', 'validation', 'lt.string', 'The :attribute must be less than :value characters.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3953, 1, 'pt', 'validation', 'lt.array', 'The :attribute must have less than :value items.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3954, 1, 'pt', 'validation', 'lte.numeric', 'The :attribute must be less than or equal :value.', '2021-09-25 07:12:17', '2021-09-25 07:12:17'),
(3955, 1, 'pt', 'validation', 'lte.file', 'The :attribute must be less than or equal :value kilobytes.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3956, 1, 'pt', 'validation', 'lte.string', 'The :attribute must be less than or equal :value characters.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3957, 1, 'pt', 'validation', 'lte.array', 'The :attribute must not have more than :value items.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3958, 1, 'pt', 'validation', 'max.numeric', 'The :attribute may not be greater than :max.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3959, 1, 'pt', 'validation', 'max.file', 'The :attribute may not be greater than :max kilobytes.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3960, 1, 'pt', 'validation', 'max.string', 'The :attribute may not be greater than :max characters.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3961, 1, 'pt', 'validation', 'max.array', 'The :attribute may not have more than :max items.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3962, 1, 'pt', 'validation', 'mimes', 'The :attribute must be a file of type: :values.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3963, 1, 'pt', 'validation', 'mimetypes', 'The :attribute must be a file of type: :values.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3964, 1, 'pt', 'validation', 'min.numeric', 'The :attribute must be at least :min.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3965, 1, 'pt', 'validation', 'min.file', 'The :attribute must be at least :min kilobytes.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3966, 1, 'pt', 'validation', 'min.string', 'The :attribute must be at least :min characters.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3967, 1, 'pt', 'validation', 'min.array', 'The :attribute must have at least :min items.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3968, 1, 'pt', 'validation', 'multiple_of', 'The :attribute must be a multiple of :value', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3969, 1, 'pt', 'validation', 'not_in', 'The selected :attribute is invalid.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3970, 1, 'pt', 'validation', 'not_regex', 'The :attribute format is invalid.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3971, 1, 'pt', 'validation', 'numeric', 'The :attribute must be a number.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3972, 1, 'pt', 'validation', 'password', 'The password is incorrect.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3973, 1, 'pt', 'validation', 'present', 'The :attribute field must be present.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3974, 1, 'pt', 'validation', 'regex', 'The :attribute format is invalid.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3975, 1, 'pt', 'validation', 'required', 'The :attribute field is required.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3976, 1, 'pt', 'validation', 'required_if', 'The :attribute field is required when :other is :value.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3977, 1, 'pt', 'validation', 'required_unless', 'The :attribute field is required unless :other is in :values.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3978, 1, 'pt', 'validation', 'required_with', 'The :attribute field is required when :values is present.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3979, 1, 'pt', 'validation', 'required_with_all', 'The :attribute field is required when :values are present.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3980, 1, 'pt', 'validation', 'required_without', 'The :attribute field is required when :values is not present.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3981, 1, 'pt', 'validation', 'required_without_all', 'The :attribute field is required when none of :values are present.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3982, 1, 'pt', 'validation', 'same', 'The :attribute and :other must match.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3983, 1, 'pt', 'validation', 'size.numeric', 'The :attribute must be :size.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3984, 1, 'pt', 'validation', 'size.file', 'The :attribute must be :size kilobytes.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3985, 1, 'pt', 'validation', 'size.string', 'The :attribute must be :size characters.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3986, 1, 'pt', 'validation', 'size.array', 'The :attribute must contain :size items.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3987, 1, 'pt', 'validation', 'starts_with', 'The :attribute must start with one of the following: :values.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3988, 1, 'pt', 'validation', 'string', 'The :attribute must be a string.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3989, 1, 'pt', 'validation', 'timezone', 'The :attribute must be a valid zone.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3990, 1, 'pt', 'validation', 'unique', 'The :attribute has already been taken.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3991, 1, 'pt', 'validation', 'uploaded', 'The :attribute failed to upload.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3992, 1, 'pt', 'validation', 'url', 'The :attribute format is invalid.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3993, 1, 'pt', 'validation', 'uuid', 'The :attribute must be a valid UUID.', '2021-09-25 07:12:18', '2021-09-25 07:12:18'),
(3994, 1, 'pt', 'validation', 'custom.attribute-name.rule-name', 'custom-message', '2021-09-25 07:12:18', '2021-09-25 07:12:18');

-- --------------------------------------------------------

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

CREATE TABLE `menus` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `url` 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;

-- --------------------------------------------------------

--
-- 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
(26, '2014_04_02_193005_create_translations_table', 1),
(27, '2014_10_12_000000_create_users_table', 1),
(28, '2014_10_12_100000_create_password_resets_table', 1),
(29, '2019_08_19_000000_create_failed_jobs_table', 1),
(30, '2020_11_01_055546_create_restaurants_table', 1),
(31, '2020_11_01_061413_create_categories_table', 1),
(32, '2020_11_01_061535_create_items_table', 1),
(33, '2020_11_01_064036_create_tables_table', 1),
(34, '2020_11_01_064037_create_orders_table', 1),
(35, '2020_11_01_064933_create_order_details_table', 1),
(36, '2020_11_01_070144_create_plans_table', 1),
(37, '2020_11_01_070407_create_user_plans_table', 1),
(38, '2020_11_02_050637_create_email_templates_table', 1),
(39, '2020_11_02_055046_create_settings_table', 1),
(40, '2020_11_02_062239_create_permission_tables', 1),
(41, '2020_11_11_101341_create_notifications_table', 1),
(42, '2020_12_09_053608_create_restaurant_payment_gateways_table', 1),
(43, '2020_12_26_094529_create_custom_menus_table', 1),
(44, '2021_01_06_101059_create_item_extras_table', 1),
(45, '2021_01_14_125749_create_order_extras_table', 1),
(46, '2021_01_16_125630_create_taxes_table', 1),
(47, '2021_04_18_085415_create_jobs_table', 1),
(48, '2021_06_18_132920_create_menus_table', 1),
(49, '2021_09_05_200009_new_orders_input', 1),
(50, '2021_09_09_005038_after_role', 1);

-- --------------------------------------------------------

--
-- Table structure for table `model_has_permissions`
--

CREATE TABLE `model_has_permissions` (
  `permission_id` bigint(20) 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` bigint(20) 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\\User', 1);

-- --------------------------------------------------------

--
-- Table structure for table `notifications`
--

CREATE TABLE `notifications` (
  `id` int(10) UNSIGNED NOT NULL,
  `type` enum('order','plan') COLLATE utf8mb4_unicode_ci NOT NULL,
  `ref_id` int(10) UNSIGNED NOT NULL,
  `to_user_id` int(10) UNSIGNED NOT NULL,
  `message` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `read` enum('yes','no') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'no',
  `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 `orders`
--

CREATE TABLE `orders` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED DEFAULT NULL COMMENT 'which customer created this order',
  `table_id` int(10) UNSIGNED DEFAULT NULL,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `phone_number` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `restaurant_id` int(10) UNSIGNED NOT NULL,
  `transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `time` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `total_price` double NOT NULL DEFAULT 0,
  `status` enum('pending','approved','ready_for_delivery','delivered','rejected') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `type` enum('pay_on_table','pay_now','takeaway','delivery') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pay_on_table',
  `payment_status` enum('paid','unpaid','review') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid',
  `delivered_within` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'format 5_minutes',
  `comment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Customer will specify if they need anything extra',
  `approved_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `address` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `order_details`
--

CREATE TABLE `order_details` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `order_id` int(10) UNSIGNED NOT NULL,
  `item_id` int(10) UNSIGNED NOT NULL,
  `price` double NOT NULL DEFAULT 0,
  `quantity` double NOT NULL DEFAULT 0,
  `total` double NOT NULL DEFAULT 0,
  `status` enum('pending','approved','ready_for_delivery','delivered','rejected') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `discount` double NOT NULL DEFAULT 0 COMMENT 'calculated in amount',
  `tax_amount` double NOT NULL DEFAULT 0 COMMENT 'calculated total tax',
  `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 `order_extras`
--

CREATE TABLE `order_extras` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `order_id` int(10) UNSIGNED NOT NULL,
  `item_id` int(10) UNSIGNED NOT NULL,
  `item_extra_id` int(10) UNSIGNED NOT NULL,
  `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `price` double NOT NULL,
  `quantity` double 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 `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;

-- --------------------------------------------------------

--
-- Table structure for table `permissions`
--

CREATE TABLE `permissions` (
  `id` bigint(20) 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, 'order_approved', 'web', '2021-09-25 07:08:39', '2021-09-25 07:08:39'),
(2, 'ready_for_delivery', 'web', '2021-09-25 07:08:39', '2021-09-25 07:08:39'),
(3, 'delivered', 'web', '2021-09-25 07:08:39', '2021-09-25 07:08:39'),
(4, 'order_list', 'web', '2021-09-25 07:08:39', '2021-09-25 07:08:39'),
(5, 'order_payment_status_change', 'web', '2021-09-25 07:08:39', '2021-09-25 07:08:39'),
(6, 'restaurant_manage', 'web', '2021-09-25 07:08:39', '2021-09-25 07:08:39'),
(7, 'order_manage', 'web', '2021-09-25 07:08:39', '2021-09-25 07:08:39'),
(8, 'item_manage', 'web', '2021-09-25 07:08:39', '2021-09-25 07:08:39'),
(9, 'table_manage', 'web', '2021-09-25 07:08:39', '2021-09-25 07:08:39'),
(10, 'dashboard', 'web', '2021-09-25 07:08:39', '2021-09-25 07:08:39'),
(11, 'general_setting', 'web', '2021-09-25 07:08:39', '2021-09-25 07:08:39'),
(12, 'change_password', 'web', '2021-09-25 07:08:39', '2021-09-25 07:08:39'),
(13, 'billing', 'web', '2021-09-25 07:08:39', '2021-09-25 07:08:39'),
(14, 'plan_list', 'web', '2021-09-25 07:08:39', '2021-09-25 07:08:39'),
(15, 'manage_user', 'web', '2021-09-25 07:08:40', '2021-09-25 07:08:40'),
(16, 'category_manage', 'web', '2021-09-25 07:08:40', '2021-09-25 07:08:40'),
(17, 'qr_manage', 'web', '2021-09-25 07:08:40', '2021-09-25 07:08:40'),
(18, 'payment_gateway_setting', 'web', '2021-09-25 07:08:40', '2021-09-25 07:08:40'),
(19, 'tax_manage', 'web', '2021-09-25 07:08:40', '2021-09-25 07:08:40'),
(20, 'report', 'web', '2021-09-25 07:08:40', '2021-09-25 07:08:40'),
(21, 'role_permission', 'web', '2021-09-25 07:08:40', '2021-09-25 07:08:40'),
(22, 'plan_manage', 'web', '2021-09-25 07:08:40', '2021-09-25 07:08:40'),
(23, 'site_setting', 'web', '2021-09-25 07:08:40', '2021-09-25 07:08:40'),
(24, 'email_setting', 'web', '2021-09-25 07:08:40', '2021-09-25 07:08:40'),
(25, 'email_template_setting', 'web', '2021-09-25 07:08:40', '2021-09-25 07:08:40'),
(26, 'sms_gateway_setting', 'web', '2021-09-25 07:08:40', '2021-09-25 07:08:40'),
(27, 'user_plan_change', 'web', '2021-09-25 07:08:40', '2021-09-25 07:08:40'),
(28, 'local_setting', 'web', '2021-09-25 07:08:40', '2021-09-25 07:08:40'),
(29, 'user_permission', 'web', '2021-09-25 07:08:41', '2021-09-25 07:08:41');

-- --------------------------------------------------------

--
-- Table structure for table `plans`
--

CREATE TABLE `plans` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `cost` double NOT NULL DEFAULT 0,
  `recurring_type` enum('onetime','monthly','weekly','yearly') COLLATE utf8mb4_unicode_ci NOT NULL,
  `table_limit` int(11) NOT NULL DEFAULT 0,
  `restaurant_limit` int(11) NOT NULL DEFAULT 0,
  `item_limit` int(11) NOT NULL DEFAULT 0,
  `status` enum('active','inactive') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'active',
  `item_unlimited` enum('yes','no') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'no',
  `restaurant_unlimited` enum('yes','no') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'no',
  `table_unlimited` enum('yes','no') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'no',
  `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 `plans`
--

INSERT INTO `plans` (`id`, `title`, `cost`, `recurring_type`, `table_limit`, `restaurant_limit`, `item_limit`, `status`, `item_unlimited`, `restaurant_unlimited`, `table_unlimited`, `created_at`, `updated_at`) VALUES
(1, 'default', 0, 'onetime', 0, 0, 0, 'inactive', 'no', 'no', 'no', '2021-09-25 07:08:39', '2021-09-25 07:08:39');

-- --------------------------------------------------------

--
-- Table structure for table `restaurants`
--

CREATE TABLE `restaurants` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `timing` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone_number` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `template` enum('classic','modern','flipbook','custom') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'classic',
  `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `currency_symbol` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `currency_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `profile_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `cover_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` enum('active','inactive') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'active',
  `order_status` enum('enable','disable') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'disable',
  `footer` 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;

-- --------------------------------------------------------

--
-- Table structure for table `restaurant_payment_gateways`
--

CREATE TABLE `restaurant_payment_gateways` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `value` 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;

-- --------------------------------------------------------

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

CREATE TABLE `roles` (
  `id` bigint(20) 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,
  `restaurant_id` int(11) 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`, `restaurant_id`) VALUES
(1, 'admin', 'web', '2021-09-25 07:08:39', '2021-09-25 07:08:39', NULL),
(2, 'user', 'web', '2021-09-25 07:08:39', '2021-09-25 07:08:39', NULL),
(3, 'restaurant_owner', 'web', '2021-09-25 07:08:39', '2021-09-25 07:08:39', NULL),
(4, 'customer', 'web', '2021-09-25 07:08:40', '2021-09-25 07:08:40', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `role_has_permissions`
--

CREATE TABLE `role_has_permissions` (
  `permission_id` bigint(20) UNSIGNED NOT NULL,
  `role_id` bigint(20) 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, 2),
(1, 3),
(2, 2),
(2, 3),
(3, 2),
(3, 3),
(4, 2),
(4, 3),
(4, 4),
(5, 2),
(5, 3),
(6, 1),
(6, 3),
(7, 3),
(8, 3),
(9, 3),
(10, 1),
(10, 3),
(11, 1),
(11, 3),
(11, 4),
(12, 1),
(12, 3),
(12, 4),
(13, 3),
(14, 3),
(15, 1),
(15, 3),
(16, 3),
(17, 3),
(18, 1),
(18, 3),
(19, 3),
(20, 1),
(20, 3),
(21, 1),
(21, 3),
(22, 1),
(23, 1),
(24, 1),
(25, 1),
(26, 1),
(27, 1),
(28, 1),
(29, 1);

-- --------------------------------------------------------

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

CREATE TABLE `settings` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` 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 `settings`
--

INSERT INTO `settings` (`id`, `name`, `value`, `created_at`, `updated_at`) VALUES
(1, 'payment_gateway', '{\"paypal_client_id\":\"\",\"paypal_secret_key\":\"\",\"stripe_publish_key\":\"\",\"stripe_secret_key\":\"\"}', NULL, NULL),
(2, 'site_setting', '{\"name\":\"Restogeni\",\"live_notification\":\"enable\",\"cookie_consent\":\"enable\",\"favicon\":\"\",\"logo\":\"\"}', NULL, '2021-09-25 07:09:45'),
(3, 'email_setting', '{\"host\":\"\",\"username\":\"demo@picotech.app\",\"email_from\":\"demo@picotech.app\",\"name\":\"Picotech Demo\",\"password\":\"88888\",\"port\":\"985\",\"encryption_type\":\"ssl\"}', NULL, NULL),
(4, 'local_setting', '{\"thousand_separator\":\",\",\"decimals\":\"2\",\"language\":\"en\",\"date_time_format\":\"d m Y\",\"date_time_separator\":\"-\",\"timezone\":\"Africa\\/Abidjan\",\"decimal_format\":\",\",\"currency_symbol\":\"$\",\"currency_code\":\"USD\",\"currency_symbol_position\":\"after\",\"direction\":\"ltr\"}', '2021-09-25 07:13:01', '2021-09-25 07:13:01');

-- --------------------------------------------------------

--
-- Table structure for table `tables`
--

CREATE TABLE `tables` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `restaurant_id` int(10) UNSIGNED NOT NULL,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `no_of_capacity` tinyint(4) NOT NULL,
  `position` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` enum('active','inactive') 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 `taxes`
--

CREATE TABLE `taxes` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `amount` double NOT NULL,
  `type` enum('flat','percentage') COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` enum('active','inactive') 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 `users`
--

CREATE TABLE `users` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email_verified_at` timestamp NULL DEFAULT NULL,
  `password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `phone_number` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `currency` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `restaurant_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `type` enum('customer','restaurant_owner','admin','user') COLLATE utf8mb4_unicode_ci NOT NULL,
  `picture` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default_profile.png',
  `role` 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
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `phone_number`, `currency`, `restaurant_id`, `type`, `picture`, `role`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, 'Trisha Koelpin', 'admin@demo.com', '2021-09-25 07:08:39', '$2y$10$S6bxsqUmJGulYb69ub3tAOASkZN3D0k8MYuLHMDIMT9H67iSbIXVO', '+1-272-971-6278', 'USD', NULL, 'admin', 'default_profile.png', NULL, 'mJCnMOuSsi', '2021-09-25 07:08:39', '2021-09-25 07:08:39'),
(2, 'Megane Kuvalis', 'hkuvalis@example.com', '2021-09-25 07:08:39', '$2y$10$uN/P3NJVC8kgbJTIEfZ7wOtkHvLKlIINfuQw8ooIdaprIwMO0PV6.', '+1 (515) 576-6848', 'USD', NULL, 'admin', 'default_profile.png', NULL, 'tzhSNPQTur', '2021-09-25 07:08:39', '2021-09-25 07:08:39');

-- --------------------------------------------------------

--
-- Table structure for table `user_plans`
--

CREATE TABLE `user_plans` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `plan_id` int(10) UNSIGNED NOT NULL,
  `start_date` datetime NOT NULL,
  `expired_date` datetime DEFAULT NULL,
  `is_current` enum('yes','no') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'no',
  `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `other_info` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `cost` double NOT NULL DEFAULT 0,
  `recurring_type` enum('onetime','monthly','weekly','yearly') COLLATE utf8mb4_unicode_ci NOT NULL,
  `table_limit` int(11) NOT NULL DEFAULT 0,
  `restaurant_limit` int(11) NOT NULL DEFAULT 0,
  `item_limit` int(11) NOT NULL DEFAULT 0,
  `status` enum('pending','approved','rejected') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `item_unlimited` enum('yes','no') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'no',
  `restaurant_unlimited` enum('yes','no') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'no',
  `table_unlimited` enum('yes','no') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'no',
  `subscription_id` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payment_type` enum('stripe','paytm') 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;

--
-- Indexes for dumped tables
--

--
-- Indexes for table `categories`
--
ALTER TABLE `categories`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `custom_menus`
--
ALTER TABLE `custom_menus`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `email_templates`
--
ALTER TABLE `email_templates`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`);

--
-- Indexes for table `items`
--
ALTER TABLE `items`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `item_extras`
--
ALTER TABLE `item_extras`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `jobs`
--
ALTER TABLE `jobs`
  ADD PRIMARY KEY (`id`),
  ADD KEY `jobs_queue_index` (`queue`);

--
-- Indexes for table `ltm_translations`
--
ALTER TABLE `ltm_translations`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `menus`
--
ALTER TABLE `menus`
  ADD PRIMARY KEY (`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_id_model_type_index` (`model_id`,`model_type`);

--
-- 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_id_model_type_index` (`model_id`,`model_type`);

--
-- Indexes for table `notifications`
--
ALTER TABLE `notifications`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `orders`
--
ALTER TABLE `orders`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `order_details`
--
ALTER TABLE `order_details`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `order_extras`
--
ALTER TABLE `order_extras`
  ADD PRIMARY KEY (`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 `plans`
--
ALTER TABLE `plans`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `restaurants`
--
ALTER TABLE `restaurants`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `restaurant_payment_gateways`
--
ALTER TABLE `restaurant_payment_gateways`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `roles`
--
ALTER TABLE `roles`
  ADD PRIMARY KEY (`id`);

--
-- 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 `settings`
--
ALTER TABLE `settings`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `tables`
--
ALTER TABLE `tables`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `taxes`
--
ALTER TABLE `taxes`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `users`
--
ALTER TABLE `users`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `users_email_unique` (`email`);

--
-- Indexes for table `user_plans`
--
ALTER TABLE `user_plans`
  ADD PRIMARY KEY (`id`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `categories`
--
ALTER TABLE `categories`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `custom_menus`
--
ALTER TABLE `custom_menus`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `email_templates`
--
ALTER TABLE `email_templates`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `items`
--
ALTER TABLE `items`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `item_extras`
--
ALTER TABLE `item_extras`
  MODIFY `id` bigint(20) 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 `ltm_translations`
--
ALTER TABLE `ltm_translations`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3995;

--
-- AUTO_INCREMENT for table `menus`
--
ALTER TABLE `menus`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51;

--
-- AUTO_INCREMENT for table `notifications`
--
ALTER TABLE `notifications`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `orders`
--
ALTER TABLE `orders`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `order_details`
--
ALTER TABLE `order_details`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `order_extras`
--
ALTER TABLE `order_extras`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `permissions`
--
ALTER TABLE `permissions`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=30;

--
-- AUTO_INCREMENT for table `plans`
--
ALTER TABLE `plans`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `restaurants`
--
ALTER TABLE `restaurants`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `restaurant_payment_gateways`
--
ALTER TABLE `restaurant_payment_gateways`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `roles`
--
ALTER TABLE `roles`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `settings`
--
ALTER TABLE `settings`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `tables`
--
ALTER TABLE `tables`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `taxes`
--
ALTER TABLE `taxes`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `user_plans`
--
ALTER TABLE `user_plans`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- Constraints for dumped tables
--

--
-- 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 `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;
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 */;
