-- phpMyAdmin SQL Dump
-- version 5.0.2
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Jul 14, 2021 at 11:45 AM
-- Server version: 10.4.14-MariaDB
-- PHP Version: 7.4.9
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: `pelatihan_gtfw_session1`
--
-- --------------------------------------------------------
--
-- Table structure for table `comp_email_history`
--
CREATE TABLE `comp_email_history` (
`emailhis_id` bigint(20) NOT NULL,
`emailhis_subject` varchar(255) DEFAULT NULL,
`emailhis_to` text DEFAULT NULL,
`emailhis_from` varchar(255) DEFAULT NULL,
`emailhis_body` longtext DEFAULT NULL,
`emailhis_status` tinyint(1) DEFAULT 0,
`emailhis_desc` text DEFAULT NULL,
`emailhis_is_locked` tinyint(1) DEFAULT 0,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`unit_id` smallint(6) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `comp_email_template`
--
CREATE TABLE `comp_email_template` (
`emailtmpl_id` smallint(6) NOT NULL,
`emailtmpl_purpose` varchar(255) DEFAULT NULL,
`emailtmpl_subject` varchar(255) DEFAULT NULL,
`emailtmpl_from` varchar(255) DEFAULT NULL,
`emailtmpl_from_name` varchar(255) DEFAULT NULL,
`emailtmpl_body` text DEFAULT NULL,
`emailtmpl_altbody` text DEFAULT NULL,
`emailtmpl_attachment` text DEFAULT NULL,
`emailtmpl_param` text DEFAULT NULL,
`emailtmpl_status` tinyint(1) DEFAULT 0,
`emailtmpl_desc` text DEFAULT NULL,
`emailtmpl_is_locked` tinyint(1) DEFAULT 0,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`unit_id` smallint(6) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `comp_email_template_text`
--
CREATE TABLE `comp_email_template_text` (
`emailtmpltext_emailtmpl_id` smallint(6) NOT NULL COMMENT 'refer to comp_email_template.emailtmpl_id',
`emailtmpltext_lang_code` varchar(5) NOT NULL COMMENT 'refer to gtfw_lang.lang_code',
`emailtmpltext_body` text DEFAULT NULL,
`emailtmpltext_altbody` text DEFAULT NULL,
`emailtmpltext_status` tinyint(1) DEFAULT 0,
`emailtmpltext_desc` text DEFAULT NULL,
`emailtmpltext_is_locked` tinyint(1) DEFAULT 0,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`unit_id` smallint(6) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `comp_message_blacklist`
--
CREATE TABLE `comp_message_blacklist` (
`blacklist_id` bigint(20) NOT NULL,
`blacklist_owner_id` bigint(20) DEFAULT NULL COMMENT 'refer to gtfw_user.user_id (owner / sender)',
`blacklist_owner_name` varchar(255) DEFAULT NULL,
`blacklist_user_id` bigint(20) DEFAULT NULL COMMENT 'refer to gtfw_user.user_id (receiver)',
`blacklist_user_name` varchar(255) DEFAULT NULL,
`blacklist_status` tinyint(1) DEFAULT 0,
`blacklist_desc` text DEFAULT NULL,
`blacklist_is_locked` tinyint(1) DEFAULT 0,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`unit_id` smallint(6) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `comp_message_content`
--
CREATE TABLE `comp_message_content` (
`msg_id` bigint(20) NOT NULL,
`msg_owner_id` bigint(20) DEFAULT NULL COMMENT 'refer to gtfw_user.user_id (owner)',
`msg_owner_name` varchar(255) DEFAULT NULL,
`msg_subject` varchar(255) DEFAULT NULL,
`msg_content` text DEFAULT NULL,
`msg_in_reply_to` bigint(20) DEFAULT NULL COMMENT 'refer to gtfw_user.user_id (in reply to)',
`msg_status` tinyint(1) DEFAULT 0,
`msg_desc` text DEFAULT NULL,
`msg_is_locked` tinyint(1) DEFAULT 0,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`unit_id` smallint(6) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `comp_message_control`
--
CREATE TABLE `comp_message_control` (
`ctrl_id` bigint(20) NOT NULL,
`ctrl_msg_id` bigint(20) DEFAULT NULL COMMENT 'refer to comp_message_content.msg_id',
`ctrl_user_id` bigint(20) DEFAULT NULL COMMENT 'refer to gtfw_user.user_id (receiver)',
`ctrl_user_name` varchar(255) DEFAULT NULL,
`ctrl_type` enum('in','out','draft') DEFAULT NULL,
`ctrl_folder_id` int(11) DEFAULT NULL COMMENT 'refer to comp_message_folder.folder_id',
`ctrl_sent_date` datetime DEFAULT NULL,
`ctrl_read_date` datetime DEFAULT NULL,
`ctrl_is_read` tinyint(1) DEFAULT 0,
`ctrl_status` tinyint(1) DEFAULT 0,
`ctrl_desc` text DEFAULT NULL,
`ctrl_is_locked` tinyint(1) DEFAULT 0,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`unit_id` smallint(6) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `comp_message_file`
--
CREATE TABLE `comp_message_file` (
`file_id` bigint(20) NOT NULL,
`file_msg_id` bigint(20) DEFAULT NULL COMMENT 'refer to comp_message.msg_id',
`file_name` varchar(255) DEFAULT NULL,
`file_origin` varchar(255) DEFAULT NULL,
`file_path` varchar(255) DEFAULT NULL,
`file_type` varchar(50) DEFAULT NULL,
`file_size` int(11) DEFAULT NULL,
`file_status` tinyint(1) DEFAULT 0,
`file_desc` text DEFAULT NULL,
`file_is_locked` tinyint(1) DEFAULT 0,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`unit_id` smallint(6) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `comp_message_folder`
--
CREATE TABLE `comp_message_folder` (
`folder_id` bigint(20) NOT NULL,
`folder_name` varchar(255) DEFAULT NULL,
`folder_owner_id` bigint(20) DEFAULT NULL COMMENT 'refer to gtfw_user.user_id (owner)',
`folder_owner_name` varchar(255) DEFAULT NULL,
`folder_status` tinyint(1) DEFAULT 0,
`folder_desc` text DEFAULT NULL,
`folder_is_locked` tinyint(1) DEFAULT 0,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`unit_id` smallint(6) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `comp_message_folder`
--
INSERT INTO `comp_message_folder` (`folder_id`, `folder_name`, `folder_owner_id`, `folder_owner_name`, `folder_status`, `folder_desc`, `folder_is_locked`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`, `unit_id`) VALUES
(1, 'Inbox', NULL, 'SYSTEM', 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00', NULL),
(2, 'Sent', NULL, 'SYSTEM', 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00', NULL),
(3, 'Draft', NULL, 'SYSTEM', 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00', NULL),
(4, 'Trash', NULL, 'SYSTEM', 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `comp_notification_content`
--
CREATE TABLE `comp_notification_content` (
`notif_id` bigint(20) NOT NULL,
`notif_title` varchar(100) DEFAULT NULL,
`notif_content` text DEFAULT NULL,
`notif_duration` smallint(6) DEFAULT NULL COMMENT 'duration in seconds',
`notif_url` varchar(255) DEFAULT NULL COMMENT 'format : module|submodule|action|type|param. for ex : hr.leave|approval|view|html|id=1&source=notif',
`notif_status` tinyint(1) DEFAULT 0,
`notif_desc` text DEFAULT NULL,
`notif_is_locked` tinyint(1) DEFAULT 0,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`unit_id` smallint(6) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `comp_notification_template`
--
CREATE TABLE `comp_notification_template` (
`notiftmpl_id` smallint(6) NOT NULL,
`notiftmpl_purpose` varchar(255) DEFAULT NULL,
`notiftmpl_subject` varchar(255) DEFAULT NULL,
`notiftmpl_param` text DEFAULT NULL,
`notiftmpl_url` varchar(255) DEFAULT NULL,
`notiftmpl_status` tinyint(1) DEFAULT 0,
`notiftmpl_desc` text DEFAULT NULL,
`notiftmpl_is_locked` tinyint(1) DEFAULT 0,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`unit_id` smallint(6) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `comp_notification_template_text`
--
CREATE TABLE `comp_notification_template_text` (
`notiftmpltext_notiftmpl_id` smallint(6) NOT NULL COMMENT 'refer to comp_notification_template.notiftmpl_id',
`notiftmpltext_lang_code` varchar(5) NOT NULL COMMENT 'refer to gtfw_lang.lang_code',
`notiftmpltext_body` text DEFAULT NULL,
`notiftmpltext_altbody` text DEFAULT NULL,
`notiftmpltext_status` tinyint(1) DEFAULT 0,
`notiftmpltext_desc` text DEFAULT NULL,
`notiftmpltext_is_locked` tinyint(1) DEFAULT 0,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`unit_id` smallint(6) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `comp_notification_user`
--
CREATE TABLE `comp_notification_user` (
`notif_id` bigint(20) DEFAULT NULL,
`notif_user_id` bigint(20) DEFAULT NULL COMMENT 'refer to gtfw_user.user_id',
`notif_user_name` varchar(255) DEFAULT NULL,
`notif_is_read` tinyint(1) DEFAULT 0,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '0000-00-00 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '0000-00-00 00:00:00',
`unit_id` smallint(6) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `comp_sms_history`
--
CREATE TABLE `comp_sms_history` (
`smshis_id` bigint(20) NOT NULL COMMENT 'id sms history',
`smshis_mailbox_id` bigint(20) DEFAULT NULL COMMENT 'id mailbox (from sms gateway)',
`smshis_msisdn` varchar(50) DEFAULT NULL COMMENT 'MSISDN (phone number)',
`smshis_message` varchar(255) DEFAULT NULL COMMENT 'message',
`smshis_date` datetime DEFAULT NULL COMMENT 'date',
`smshis_status` tinyint(1) DEFAULT 0 COMMENT 'status',
`smshis_desc` text DEFAULT NULL COMMENT 'desc',
`smshis_is_locked` tinyint(1) DEFAULT 0 COMMENT 'is locked',
`insert_user_id` bigint(20) DEFAULT NULL COMMENT 'user submit',
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00' COMMENT 'date submit',
`update_user_id` bigint(20) DEFAULT NULL COMMENT 'user modified',
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00' COMMENT 'date modified',
`unit_id` smallint(6) DEFAULT NULL COMMENT 'unit'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `comp_sms_template`
--
CREATE TABLE `comp_sms_template` (
`smstmpl_id` smallint(6) NOT NULL COMMENT 'id sms template',
`smstmpl_purpose` varchar(255) DEFAULT NULL COMMENT 'purpose',
`smstmpl_subject` varchar(255) DEFAULT NULL COMMENT 'subject',
`smstmpl_param` text DEFAULT NULL COMMENT 'param',
`smstmpl_url` varchar(255) DEFAULT NULL COMMENT 'url',
`smstmpl_status` tinyint(1) DEFAULT 0 COMMENT 'status',
`smstmpl_desc` text DEFAULT NULL COMMENT 'desc',
`smstmpl_is_locked` tinyint(1) DEFAULT 0 COMMENT 'is locked',
`insert_user_id` bigint(20) DEFAULT NULL COMMENT 'user submit',
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00' COMMENT 'date submit',
`update_user_id` bigint(20) DEFAULT NULL COMMENT 'user modified',
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00' COMMENT 'date modified',
`unit_id` smallint(6) DEFAULT NULL COMMENT 'unit'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `comp_sms_template_text`
--
CREATE TABLE `comp_sms_template_text` (
`smstmpltext_smstmpl_id` smallint(6) NOT NULL COMMENT 'id sms template text',
`smstmpltext_lang_code` varchar(5) NOT NULL COMMENT 'language code',
`smstmpltext_body` text DEFAULT NULL COMMENT 'body',
`smstmpltext_status` tinyint(1) DEFAULT 0 COMMENT 'status',
`smstmpltext_desc` text DEFAULT NULL COMMENT 'desc',
`smstmpltext_is_locked` tinyint(1) DEFAULT 0 COMMENT 'is locked',
`insert_user_id` bigint(20) DEFAULT NULL COMMENT 'user submit',
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00' COMMENT 'date submit',
`update_user_id` bigint(20) DEFAULT NULL COMMENT 'user modified',
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00' COMMENT 'date modified',
`unit_id` smallint(6) DEFAULT NULL COMMENT 'unit'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `comp_vcard`
--
CREATE TABLE `comp_vcard` (
`vcard_id` bigint(20) NOT NULL,
`vcard_version` enum('2.1','3.0','4.0') DEFAULT NULL COMMENT 'vCard Version',
`vcard_source` tinyint(1) DEFAULT 0 COMMENT '1=employee, 2=contact, 3=lead, 4=target',
`vcard_user_id` bigint(20) DEFAULT NULL COMMENT 'refer to gtfw_user.user_id',
`vcard_prefix` varchar(50) DEFAULT NULL,
`vcard_first_name` varchar(100) DEFAULT NULL,
`vcard_middle_name` varchar(100) DEFAULT NULL,
`vcard_last_name` varchar(100) DEFAULT NULL,
`vcard_sufix` varchar(50) DEFAULT NULL,
`vcard_fullname` varchar(255) DEFAULT NULL,
`vcard_nickname` varchar(50) DEFAULT NULL,
`vcard_org` varchar(255) DEFAULT NULL,
`vcard_title` varchar(255) DEFAULT NULL,
`vcard_department` varchar(255) DEFAULT NULL,
`vcard_company` varchar(255) DEFAULT NULL,
`vcard_emailpref` varchar(255) DEFAULT NULL,
`vcard_emailtlx` varchar(255) DEFAULT NULL,
`vcard_urlwork` varchar(255) DEFAULT NULL,
`vcard_tel_workvoice` varchar(20) DEFAULT NULL,
`vcard_tel_homevoice` varchar(20) DEFAULT NULL,
`vcard_tel_cellvoice` varchar(20) DEFAULT NULL,
`vcard_tel_carvoice` varchar(20) DEFAULT NULL,
`vcard_tel_voice` varchar(20) DEFAULT NULL,
`vcard_tel_pagervoice` varchar(20) DEFAULT NULL,
`vcard_tel_workfax` varchar(20) DEFAULT NULL,
`vcard_tel_homefax` varchar(20) DEFAULT NULL,
`vcard_tel_home` varchar(20) DEFAULT NULL,
`vcard_tel_isdn` varchar(20) DEFAULT NULL,
`vcard_tel_pref` varchar(20) DEFAULT NULL,
`vcard_addr_work_street` varchar(255) DEFAULT NULL,
`vcard_addr_work_country` varchar(100) DEFAULT NULL,
`vcard_addr_work_region` varchar(100) DEFAULT NULL,
`vcard_addr_work_city` varchar(100) DEFAULT NULL,
`vcard_addr_work_zip` varchar(10) DEFAULT NULL,
`vcard_addr_home_street` varchar(255) DEFAULT NULL,
`vcard_addr_home_country` varchar(100) DEFAULT NULL,
`vcard_addr_home_region` varchar(100) DEFAULT NULL,
`vcard_addr_home_city` varchar(100) DEFAULT NULL,
`vcard_addr_home_zip` varchar(10) DEFAULT NULL,
`vcard_addr_postal_street` varchar(255) DEFAULT NULL,
`vcard_addr_postal_country` varchar(100) DEFAULT NULL,
`vcard_addr_postal_region` varchar(100) DEFAULT NULL,
`vcard_addr_postal_city` varchar(100) DEFAULT NULL,
`vcard_addr_postal_zip` varchar(10) DEFAULT NULL,
`vcard_role` varchar(255) DEFAULT NULL,
`vcard_bday` varchar(50) DEFAULT NULL,
`vcard_note` text DEFAULT NULL,
`vcard_rev` varchar(100) DEFAULT NULL,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`unit_id` smallint(6) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `emp_email`
--
CREATE TABLE `emp_email` (
`email_id` bigint(20) NOT NULL COMMENT 'id email',
`email_emp_id` bigint(20) NOT NULL COMMENT 'refer to emp_employee.emp_id',
`email_emailtype_id` tinyint(3) NOT NULL COMMENT 'refer to ref_email_type.emailtype_id',
`email_email` varchar(255) DEFAULT NULL COMMENT 'email',
`email_status` tinyint(1) DEFAULT 0 COMMENT 'status',
`email_desc` text DEFAULT NULL COMMENT 'desc',
`email_is_default` enum('1') DEFAULT NULL COMMENT 'is default',
`email_is_locked` tinyint(1) DEFAULT 0 COMMENT 'is locked',
`email_is_ess` tinyint(1) DEFAULT 0 COMMENT 'is employee self-service',
`insert_user_id` bigint(20) DEFAULT NULL COMMENT 'user submit',
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00' COMMENT 'date submit',
`update_user_id` bigint(20) DEFAULT NULL COMMENT 'user modified',
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00' COMMENT 'date modified',
`unit_id` smallint(6) DEFAULT NULL COMMENT 'unit'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `emp_employee`
--
CREATE TABLE `emp_employee` (
`emp_id` bigint(20) NOT NULL COMMENT 'id',
`emp_number` varchar(50) DEFAULT NULL COMMENT 'number',
`emp_system_code` varchar(100) DEFAULT NULL COMMENT 'system code',
`emp_access_code` varchar(100) DEFAULT NULL COMMENT 'employee access code (ex. dooraccess, gateaccess)',
`emp_name` varchar(255) DEFAULT NULL COMMENT 'full name',
`emp_first_name` varchar(100) DEFAULT NULL COMMENT 'first name',
`emp_middle_name` varchar(100) DEFAULT NULL COMMENT 'middle name',
`emp_last_name` varchar(100) DEFAULT NULL COMMENT 'last name',
`emp_nick_name` varchar(50) DEFAULT NULL COMMENT 'nick name',
`emp_official_name` varchar(255) DEFAULT NULL COMMENT 'official name',
`emp_salutation_id` tinyint(3) DEFAULT NULL COMMENT 'refer to ref_salution.salution_id',
`emp_title_prefix` varchar(50) DEFAULT NULL COMMENT 'prefix title',
`emp_title_sufix` varchar(50) DEFAULT NULL COMMENT 'sufix title',
`emp_birth_place` varchar(100) DEFAULT NULL COMMENT 'birth place',
`emp_birth_date` date DEFAULT '1900-01-01' COMMENT 'birth date',
`emp_gender` enum('m','f') DEFAULT NULL COMMENT 'gender',
`emp_religion_id` smallint(6) DEFAULT NULL COMMENT 'refer to ref_religion.religion_id',
`emp_belief` varchar(255) DEFAULT NULL COMMENT 'belief',
`emp_nationality_status` enum('local','expat') DEFAULT NULL COMMENT 'nationality status',
`emp_country_id` smallint(6) DEFAULT NULL COMMENT 'refer to ref_country.country_id (nationality : singular and plural)',
`emp_ethnic` varchar(255) DEFAULT NULL COMMENT 'ethnic',
`emp_dialect` varchar(255) DEFAULT NULL COMMENT 'dialect',
`emp_bloodtype_id` tinyint(3) DEFAULT NULL COMMENT 'refer to ref_blood_type.bloodtype_id',
`emp_weight` varchar(20) DEFAULT NULL COMMENT 'weight',
`emp_height` varchar(20) DEFAULT NULL COMMENT 'height',
`emp_head_size` varchar(20) DEFAULT NULL COMMENT 'head size',
`emp_clothes_size` enum('s','m','l','xl','xxl','xxxl') DEFAULT NULL COMMENT 'clothes size',
`emp_pants_size` varchar(20) DEFAULT NULL COMMENT 'pants size',
`emp_shoe_size` varchar(20) DEFAULT NULL COMMENT 'shoe size',
`emp_skin_color` varchar(100) DEFAULT NULL COMMENT 'skin color',
`emp_hair_color` varchar(100) DEFAULT NULL COMMENT 'hair color',
`emp_face_shape` varchar(100) DEFAULT NULL COMMENT 'face shape',
`emp_typical` varchar(255) DEFAULT NULL COMMENT 'typical',
`emp_disabilitytype_id` smallint(6) DEFAULT NULL COMMENT 'refer to emp_ref_disability_type.disabilitytype_id',
`emp_disability` varchar(255) DEFAULT NULL COMMENT 'disability',
`emp_disease` varchar(255) DEFAULT NULL COMMENT 'disease',
`emp_alergy` varchar(255) DEFAULT NULL COMMENT 'alergy',
`emp_medical_check_status` enum('pass','failed') DEFAULT NULL COMMENT 'medical check status',
`emp_medical_check_reason` text DEFAULT NULL COMMENT 'medical check reason',
`emp_hobby` varchar(255) DEFAULT NULL COMMENT 'hobby',
`emp_pension_age` int(3) DEFAULT NULL COMMENT 'pension age',
`emp_strength` text DEFAULT NULL COMMENT 'strength',
`emp_weakness` text DEFAULT NULL COMMENT 'weakness',
`emp_spare_time` text DEFAULT NULL COMMENT 'spare time',
`emp_reasons_to_join` text DEFAULT NULL COMMENT 'reasons to join',
`emp_is_applicant` tinyint(1) DEFAULT 0 COMMENT 'is applicant',
`emp_workpertype_id` tinyint(3) DEFAULT NULL COMMENT 'refer to emp_ref_work_period_type.workpertype_id',
`emp_train_date` date DEFAULT '1900-01-01' COMMENT 'training or probation date',
`emp_join_date` date DEFAULT '1900-01-01' COMMENT 'join date',
`emp_quit_date` date DEFAULT '1900-01-01' COMMENT 'quit date',
`emp_employtype_id` tinyint(3) DEFAULT NULL COMMENT 'refer to emp_ref_employment_type.employtype_id',
`emp_workhour_id` tinyint(3) DEFAULT NULL COMMENT 'refer to emp_ref_work_hour.workhour_id',
`emp_child_count` smallint(6) DEFAULT 0 COMMENT 'child count',
`emp_relative_count` smallint(6) DEFAULT 0 COMMENT 'relative count',
`emp_assigned_year` varchar(5) DEFAULT NULL COMMENT 'assigned year',
`emp_contract_status` varchar(5) DEFAULT NULL COMMENT 'contract status',
`emp_work_period` varchar(5) DEFAULT NULL COMMENT 'work period',
`emp_npwp_status` tinyint(1) DEFAULT 0 COMMENT 'NPWP status',
`emp_jms_status` tinyint(1) DEFAULT 0 COMMENT 'Jamsostek status',
`emp_healthins_status` tinyint(1) DEFAULT 0 COMMENT 'health insurance status',
`emp_intins_status` tinyint(1) DEFAULT 0 COMMENT 'internal insurance status',
`emp_extins_status` tinyint(1) DEFAULT 0 COMMENT 'external insurance status',
`emp_is_vendor` tinyint(1) DEFAULT 0 COMMENT 'is vendor',
`emp_is_customer` tinyint(1) DEFAULT 0 COMMENT 'is customer',
`emp_status` tinyint(1) DEFAULT 0 COMMENT 'status',
`emp_desc` text DEFAULT NULL COMMENT 'description',
`emp_empstat_id` smallint(6) DEFAULT NULL COMMENT 'refer to emp_ref_employee_status.empstat_id',
`emp_is_locked` tinyint(1) DEFAULT 0 COMMENT 'is locked',
`emp_is_deleted` tinyint(1) DEFAULT 0 COMMENT 'is deleted',
`emp_delete_date` datetime DEFAULT NULL COMMENT 'delete date',
`emp_delete_notes` text DEFAULT NULL COMMENT 'delete notes',
`emp_is_ess` tinyint(1) DEFAULT 0 COMMENT 'is employee self-service',
`insert_user_id` bigint(20) DEFAULT NULL COMMENT 'submitted user',
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00' COMMENT 'submitted timestamp',
`update_user_id` bigint(20) DEFAULT NULL COMMENT 'updated user',
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00' COMMENT 'updated timestamp',
`unit_id` smallint(6) DEFAULT NULL COMMENT 'unit'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `emp_employee_status`
--
CREATE TABLE `emp_employee_status` (
`empstatus_id` bigint(20) NOT NULL COMMENT 'id employee status',
`empstatus_emp_id` bigint(20) DEFAULT NULL COMMENT 'refer to emp_employee.emp_id',
`empstatus_empstat_id` smallint(6) DEFAULT NULL COMMENT 'refer to emp_ref_employee_status.empstat_id',
`empstatus_start` date DEFAULT '1900-01-01' COMMENT 'start',
`empstatus_end` date DEFAULT '9999-12-31' COMMENT 'end',
`empstatus_decree_number` varchar(50) DEFAULT NULL COMMENT 'decree number',
`empstatus_decree_date` date DEFAULT '1900-01-01' COMMENT 'decree date',
`empstatus_decree_emp_id` bigint(20) DEFAULT NULL COMMENT 'refer to emp_employee.emp_id (decree official)',
`empstatus_decree_official` varchar(255) DEFAULT NULL COMMENT 'decree official',
`empstatus_decree_position` varchar(255) DEFAULT NULL COMMENT 'decree position',
`empstatus_decree_file` varchar(255) DEFAULT NULL COMMENT 'decree file',
`empstatus_decree_file_origin` varchar(255) DEFAULT NULL COMMENT 'decree file origin',
`empstatus_decree_file_path` varchar(255) DEFAULT NULL COMMENT 'decree file path',
`empstatus_decree_file_type` varchar(50) DEFAULT NULL COMMENT 'decree file type',
`empstatus_decree_file_size` int(11) DEFAULT NULL COMMENT 'decree file size',
`empstatus_status` tinyint(1) DEFAULT 0 COMMENT 'status',
`empstatus_desc` text DEFAULT NULL COMMENT 'desc',
`empstatus_is_default` enum('1') DEFAULT NULL COMMENT 'is default',
`empstatus_is_locked` tinyint(1) DEFAULT 0 COMMENT 'is locked',
`empstatus_is_ess` tinyint(1) DEFAULT 0 COMMENT 'is employee self-service',
`insert_user_id` bigint(20) DEFAULT NULL COMMENT 'user submit',
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00' COMMENT 'date submit',
`update_user_id` bigint(20) DEFAULT NULL COMMENT 'user modified',
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00' COMMENT 'date modified',
`unit_id` smallint(6) DEFAULT NULL COMMENT 'unit'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `emp_employee_type`
--
CREATE TABLE `emp_employee_type` (
`emptype_id` bigint(20) NOT NULL COMMENT 'id employee unit',
`emptype_emp_id` bigint(20) DEFAULT NULL COMMENT 'refer to emp_employee.emp_id',
`emptype_emptype_id` smallint(6) DEFAULT NULL COMMENT 'refer to emp_ref_employee_type.emptype_id',
`emptype_start` date DEFAULT '1900-01-01' COMMENT 'start',
`emptype_end` date DEFAULT '9999-12-31' COMMENT 'end',
`emptype_decree_number` varchar(50) DEFAULT NULL COMMENT 'decree number',
`emptype_decree_date` date DEFAULT '1900-01-01' COMMENT 'decree date',
`emptype_decree_emp_id` bigint(20) DEFAULT NULL COMMENT 'refer to emp_employee.emp_id (decree official)',
`emptype_decree_official` varchar(255) DEFAULT NULL COMMENT 'decree official',
`emptype_decree_position` varchar(255) DEFAULT NULL COMMENT 'decree position',
`emptype_decree_file` varchar(255) DEFAULT NULL COMMENT 'decree file',
`emptype_decree_file_origin` varchar(255) DEFAULT NULL COMMENT 'decree file origin',
`emptype_decree_file_path` varchar(255) DEFAULT NULL COMMENT 'decree file path',
`emptype_decree_file_type` varchar(50) DEFAULT NULL COMMENT 'decree file type',
`emptype_decree_file_size` int(11) DEFAULT NULL COMMENT 'decree file size',
`emptype_status` tinyint(1) DEFAULT 0 COMMENT 'status',
`emptype_desc` text DEFAULT NULL COMMENT 'desc',
`emptype_is_default` enum('1') DEFAULT NULL COMMENT 'is default',
`emptype_is_locked` tinyint(1) DEFAULT 0 COMMENT 'is locked',
`emptype_is_ess` tinyint(1) DEFAULT 0 COMMENT 'is employee self-service',
`insert_user_id` bigint(20) DEFAULT NULL COMMENT 'user submit',
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00' COMMENT 'date submit',
`update_user_id` bigint(20) DEFAULT NULL COMMENT 'user modified',
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00' COMMENT 'date modified',
`unit_id` smallint(6) DEFAULT NULL COMMENT 'unit'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `emp_employee_unit`
--
CREATE TABLE `emp_employee_unit` (
`empunit_id` bigint(20) NOT NULL COMMENT 'id employee unit',
`empunit_emp_id` bigint(20) DEFAULT NULL COMMENT 'refer to emp_employee.emp_id',
`empunit_company_id` bigint(20) DEFAULT NULL COMMENT 'refer to gtfw_company.company_id',
`empunit_unit_id` smallint(6) DEFAULT NULL COMMENT 'refer to gtfw_unit.unit_id',
`empunit_start` date DEFAULT '1900-01-01' COMMENT 'start',
`empunit_end` date DEFAULT '9999-12-31' COMMENT 'end',
`empunit_is_auto` tinyint(1) DEFAULT 0 COMMENT 'is auto',
`empunit_decree_number` varchar(50) DEFAULT NULL COMMENT 'decree number',
`empunit_decree_date` date DEFAULT '1900-01-01' COMMENT 'decree date',
`empunit_decree_emp_id` bigint(20) DEFAULT NULL COMMENT 'refer to emp_employee.emp_id (decree official)',
`empunit_decree_official` varchar(255) DEFAULT NULL COMMENT 'decree official',
`empunit_decree_position` varchar(255) DEFAULT NULL COMMENT 'decree position',
`empunit_decree_file` varchar(255) DEFAULT NULL COMMENT 'decree file',
`empunit_decree_file_origin` varchar(255) DEFAULT NULL COMMENT 'decree file origin',
`empunit_decree_file_path` varchar(255) DEFAULT NULL COMMENT 'decree file path',
`empunit_decree_file_type` varchar(50) DEFAULT NULL COMMENT 'decree file type',
`empunit_decree_file_size` int(11) DEFAULT NULL COMMENT 'decree file size',
`empunit_status` tinyint(1) DEFAULT 0 COMMENT 'status',
`empunit_desc` text DEFAULT NULL COMMENT 'desc',
`empunit_is_default` enum('1') DEFAULT NULL COMMENT 'is default',
`empunit_is_locked` tinyint(1) DEFAULT 0 COMMENT 'is locked',
`empunit_is_ess` tinyint(1) DEFAULT 0 COMMENT 'is employee self-service',
`insert_user_id` bigint(20) DEFAULT NULL COMMENT 'user submit',
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00' COMMENT 'date submit',
`update_user_id` bigint(20) DEFAULT NULL COMMENT 'user modified',
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00' COMMENT 'date modified',
`unit_id` smallint(6) DEFAULT NULL COMMENT 'unit'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `emp_employee_user`
--
CREATE TABLE `emp_employee_user` (
`empuser_id` bigint(20) NOT NULL COMMENT 'id employee user',
`empuser_emp_id` bigint(20) DEFAULT NULL COMMENT 'refer to emp_employee.emp_id',
`empuser_user_id` bigint(20) DEFAULT NULL COMMENT 'refer to gtfw_user.user_id',
`empuser_is_logged_on` tinyint(1) DEFAULT 0 COMMENT 'is logged on in another session',
`empuser_status` tinyint(1) DEFAULT 0 COMMENT 'status',
`empuser_desc` text DEFAULT NULL COMMENT 'desc',
`empuser_is_locked` tinyint(1) DEFAULT 0 COMMENT 'is locked',
`insert_user_id` bigint(20) DEFAULT NULL COMMENT 'user submit',
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00' COMMENT 'date submit',
`update_user_id` bigint(20) DEFAULT NULL COMMENT 'user modified',
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00' COMMENT 'date modified',
`unit_id` smallint(6) DEFAULT NULL COMMENT 'unit'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `emp_photo`
--
CREATE TABLE `emp_photo` (
`photo_id` bigint(20) NOT NULL COMMENT 'id photo',
`photo_emp_id` bigint(20) NOT NULL COMMENT 'refer to emp_employee.emp_id',
`photo_phototype_id` tinyint(3) DEFAULT NULL COMMENT 'refer to emp_ref_photo_type.phototype_id',
`photo_file` varchar(255) DEFAULT NULL COMMENT 'file',
`photo_origin` varchar(255) DEFAULT NULL COMMENT 'origin',
`photo_path` varchar(255) DEFAULT NULL COMMENT 'path',
`photo_type` varchar(50) DEFAULT NULL COMMENT 'type',
`photo_size` int(11) DEFAULT NULL COMMENT 'size',
`photo_status` tinyint(1) DEFAULT 0 COMMENT 'status',
`photo_desc` text DEFAULT NULL COMMENT 'desc',
`photo_is_default` enum('1') DEFAULT NULL COMMENT 'is default',
`photo_is_locked` tinyint(1) DEFAULT 0 COMMENT 'is locked',
`photo_is_ess` tinyint(1) DEFAULT 0 COMMENT 'is employee self-service',
`insert_user_id` bigint(20) DEFAULT NULL COMMENT 'user submit',
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00' COMMENT 'date submit',
`update_user_id` bigint(20) DEFAULT NULL COMMENT 'user modified',
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00' COMMENT 'date modified',
`unit_id` smallint(6) DEFAULT NULL COMMENT 'unit'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `emp_ref_employee_status`
--
CREATE TABLE `emp_ref_employee_status` (
`empstat_id` smallint(6) NOT NULL,
`empstat_name` varchar(100) DEFAULT NULL,
`empstat_is_active` tinyint(1) DEFAULT 0,
`empstat_order` smallint(6) DEFAULT NULL,
`empstat_status` tinyint(1) DEFAULT 0,
`empstat_desc` text DEFAULT NULL,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '0000-00-00 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '0000-00-00 00:00:00',
`unit_id` smallint(6) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `emp_ref_employee_status`
--
INSERT INTO `emp_ref_employee_status` (`empstat_id`, `empstat_name`, `empstat_is_active`, `empstat_order`, `empstat_status`, `empstat_desc`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`, `unit_id`) VALUES
(1, 'AKTIF', 1, 1, 1, 'Description', 1, '2012-07-12 09:12:37', 1, '2012-10-29 09:40:45', NULL),
(2, 'TIDAK AKTIF', 0, 2, 1, 'Desc', 1, '2012-07-12 09:13:43', 1, '2012-07-16 11:31:54', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `emp_ref_employee_type`
--
CREATE TABLE `emp_ref_employee_type` (
`emptype_id` smallint(6) NOT NULL,
`emptype_name` varchar(100) DEFAULT NULL,
`emptype_is_permanent` tinyint(1) DEFAULT 0,
`emptype_order` smallint(6) DEFAULT NULL,
`emptype_status` tinyint(1) DEFAULT 0,
`emptype_desc` text DEFAULT NULL,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '0000-00-00 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '0000-00-00 00:00:00',
`unit_id` smallint(6) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `emp_ref_employee_type`
--
INSERT INTO `emp_ref_employee_type` (`emptype_id`, `emptype_name`, `emptype_is_permanent`, `emptype_order`, `emptype_status`, `emptype_desc`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`, `unit_id`) VALUES
(1, 'Tetap', 1, 1, 1, 'Desc', 1, '2012-07-12 09:33:28', 1, '2012-07-17 09:36:28', NULL),
(2, 'Kontrak', 0, 2, 1, 'Desc', 1, '2012-07-12 09:33:44', 1, '2012-07-12 09:34:29', NULL),
(3, 'Magang', 0, 3, 1, 'Desc', 1, '2012-07-24 08:55:48', NULL, '0000-00-00 00:00:00', NULL),
(4, 'Outsource', 0, 4, 1, 'Desc', 1, '2012-07-24 08:56:04', NULL, '0000-00-00 00:00:00', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `emp_structural_position`
--
CREATE TABLE `emp_structural_position` (
`strucpos_id` bigint(20) NOT NULL COMMENT 'id structural position',
`strucpos_emp_id` bigint(20) DEFAULT NULL COMMENT 'refer to emp_employee.emp_id',
`strucpos_strucpostype_id` smallint(6) DEFAULT NULL COMMENT 'refer to ref_structural_position_type.strucpostype_id',
`strucpos_start` date DEFAULT '1900-01-01' COMMENT 'start',
`strucpos_end` date DEFAULT '9999-12-31' COMMENT 'end',
`strucpos_decree_number` varchar(50) DEFAULT NULL COMMENT 'decree number',
`strucpos_decree_date` date DEFAULT '1900-01-01' COMMENT 'decree date',
`strucpos_decree_emp_id` bigint(20) DEFAULT NULL COMMENT 'refer to emp_employee.emp_id (decree official)',
`strucpos_decree_official` varchar(255) DEFAULT NULL COMMENT 'decree official',
`strucpos_decree_position` varchar(255) DEFAULT NULL COMMENT 'decree position',
`strucpos_decree_file` varchar(255) DEFAULT NULL COMMENT 'decree file',
`strucpos_decree_file_origin` varchar(255) DEFAULT NULL COMMENT 'decree file origin',
`strucpos_decree_file_path` varchar(255) DEFAULT NULL COMMENT 'decree file path',
`strucpos_decree_file_type` varchar(50) DEFAULT NULL COMMENT 'decree file type',
`strucpos_decree_file_size` int(11) DEFAULT NULL COMMENT 'decree file size',
`strucpos_status` tinyint(1) DEFAULT 0 COMMENT 'status',
`strucpos_desc` text DEFAULT NULL COMMENT 'desc',
`strucpos_is_default` enum('1') DEFAULT NULL COMMENT 'is default',
`strucpos_is_locked` tinyint(1) DEFAULT 0 COMMENT 'is locked',
`strucpos_is_ess` tinyint(1) DEFAULT 0 COMMENT 'is employee self-service',
`insert_user_id` bigint(20) DEFAULT NULL COMMENT 'user submit',
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00' COMMENT 'date submit',
`update_user_id` bigint(20) DEFAULT NULL COMMENT 'user modified',
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00' COMMENT 'date modified',
`unit_id` smallint(6) DEFAULT NULL COMMENT 'unit'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `gtfw_action`
--
CREATE TABLE `gtfw_action` (
`action_id` smallint(6) NOT NULL,
`action_code` varchar(20) DEFAULT NULL,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '0000-00-00 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `gtfw_action`
--
INSERT INTO `gtfw_action` (`action_id`, `action_code`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`) VALUES
(1, 'view', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(2, 'add', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(3, 'update', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(4, 'delete', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(5, 'print_html', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(6, 'print_xls', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(7, 'print_pdf', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(8, 'approve', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(9, 'flush', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(10, 'urgent', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(11, 'activate', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(12, 'receive', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(13, 'accept_koli', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(14, 'create_user', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(15, 'reset_password', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(16, 'convert_lead', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(17, 'duplicate_lead', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(18, 'export_vcard', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(19, 'backup_to_vcard', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(20, 'assignment', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(21, 'cancel_request', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(22, 'remove', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(23, 'confirmation', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(24, 'import', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00');
-- --------------------------------------------------------
--
-- Table structure for table `gtfw_action_text`
--
CREATE TABLE `gtfw_action_text` (
`actiontext_action_id` smallint(6) NOT NULL COMMENT 'refer to gtfw_action.action_id',
`actiontext_lang_code` varchar(5) NOT NULL COMMENT 'refer to gtfw_lang.lang_code',
`actiontext_action_label` varchar(50) NOT NULL,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '0000-00-00 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `gtfw_action_text`
--
INSERT INTO `gtfw_action_text` (`actiontext_action_id`, `actiontext_lang_code`, `actiontext_action_label`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`) VALUES
(1, 'id', 'Lihat', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(1, 'en', 'View', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(2, 'id', 'Tambah', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(2, 'en', 'Add', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(3, 'id', 'Update', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(3, 'en', 'Update', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(4, 'id', 'Hapus', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(4, 'en', 'Delete', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(5, 'id', 'Print', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(5, 'en', 'Print', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(6, 'id', 'Excel', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(6, 'en', 'Excel', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(7, 'id', 'PDF', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(7, 'en', 'PDF', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(8, 'id', 'Persetujuan', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(8, 'en', 'Approval', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(9, 'id', 'Flush', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(9, 'en', 'Flush', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(10, 'id', 'Urgent', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(10, 'en', 'Urgent', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(11, 'id', 'Pengaktifan', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(11, 'en', 'Activate', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(12, 'id', 'Penerimaan', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(12, 'en', 'Receive', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(13, 'id', 'Penerimaan Koli', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(13, 'en', 'Accept Koli', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(14, 'id', 'Buat Pengguna', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(14, 'en', 'Create User', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(15, 'id', 'Set Ulang Kata Sandi', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(15, 'en', 'Reset Password', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(16, 'id', 'Konversi', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(16, 'en', 'Converts', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(17, 'id', 'Duplikat', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(17, 'en', 'Duplicates', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(18, 'id', 'Export vCard', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(18, 'en', 'Export vCard', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(19, 'id', 'Backup to vCard', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(19, 'en', 'Backup to vCard', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(20, 'id', 'Penugasan', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(20, 'en', 'Assignment', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(21, 'id', 'Batal Request', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(21, 'en', 'Cancel Request', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(22, 'id', 'Pemusnahan', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(22, 'en', 'Remove', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(23, 'id', 'Konfirmasi', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(23, 'en', 'Confirmation', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(24, 'id', 'Import', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(24, 'en', 'Import', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00');
-- --------------------------------------------------------
--
-- Table structure for table `gtfw_application`
--
CREATE TABLE `gtfw_application` (
`application_id` int(11) NOT NULL COMMENT 'application id',
`application_name` varchar(255) DEFAULT NULL COMMENT 'name',
`application_status` tinyint(1) DEFAULT 0 COMMENT 'status',
`application_desc` text DEFAULT NULL COMMENT 'desc',
`insert_user_id` bigint(20) DEFAULT NULL COMMENT 'user submit',
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00' COMMENT 'date submit',
`update_user_id` bigint(20) DEFAULT NULL COMMENT 'user modified',
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00' COMMENT 'date modified'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `gtfw_application`
--
INSERT INTO `gtfw_application` (`application_id`, `application_name`, `application_status`, `application_desc`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`) VALUES
(1, 'gtERP (Enterprise Resource Planning)', 1, NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(2, 'gtESS (Employee Self-Service)', 1, NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(3, 'gtRec (Online Recruitment)', 0, NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(4, 'gtPOS (Point of Sales)', 0, NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(5, 'gtProc (Online Procurement)', 0, NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(6, 'gtBI (Business Intelligence)', 1, NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(7, 'gtDashboard', 1, NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(8, 'gtDC (Display Center)', 0, NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(9, 'gtKiosk', 0, NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(10, 'gtSFA (Sales Force Automation) Mobile Version', 1, NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(11, 'gtCommerce (e-Commerce)', 0, NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(12, 'gtTracker', 0, NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00');
-- --------------------------------------------------------
--
-- Table structure for table `gtfw_company`
--
CREATE TABLE `gtfw_company` (
`company_id` bigint(20) NOT NULL,
`company_name` varchar(255) DEFAULT NULL,
`company_address` text DEFAULT NULL,
`company_country_id` smallint(6) DEFAULT NULL COMMENT 'refer to ref_country.country_id',
`company_state_id` mediumint(9) DEFAULT NULL COMMENT 'refer to ref_state.state_id',
`company_city_id` mediumint(9) DEFAULT NULL COMMENT 'refer to ref_city.city_id',
`company_postal_code` varchar(20) DEFAULT NULL,
`company_phone` varchar(50) DEFAULT NULL,
`company_fax` varchar(50) DEFAULT NULL,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `gtfw_company_logo`
--
CREATE TABLE `gtfw_company_logo` (
`logo_id` bigint(20) NOT NULL,
`logo_company_id` bigint(20) DEFAULT NULL COMMENT 'refer to gtfw_company.company_id',
`logo_phototype_id` tinyint(3) DEFAULT NULL COMMENT 'refer to ref_photo_type.phototype_id',
`logo_file` varchar(255) DEFAULT NULL,
`logo_file_path` varchar(255) DEFAULT NULL,
`logo_file_type` varchar(50) DEFAULT NULL,
`logo_file_size` int(11) DEFAULT NULL,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `gtfw_group`
--
CREATE TABLE `gtfw_group` (
`group_id` bigint(20) NOT NULL,
`group_name` varchar(255) DEFAULT NULL,
`group_desc` text DEFAULT NULL,
`group_application_id` int(11) DEFAULT NULL COMMENT 'refer to gtfw_application.application_id',
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '0000-00-00 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `gtfw_group`
--
INSERT INTO `gtfw_group` (`group_id`, `group_name`, `group_desc`, `group_application_id`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`) VALUES
(1, 'Administrator (Root)', '', 1, NULL, '0000-00-00 00:00:00', 1, '2021-07-14 16:40:46');
-- --------------------------------------------------------
--
-- Table structure for table `gtfw_group_menu`
--
CREATE TABLE `gtfw_group_menu` (
`groupmenu_menu_id` bigint(20) NOT NULL COMMENT 'refer to gtfw_menu.menu_id',
`groupmenu_group_id` bigint(20) NOT NULL COMMENT 'refer to gtfw_group.group_id'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `gtfw_group_menu`
--
INSERT INTO `gtfw_group_menu` (`groupmenu_menu_id`, `groupmenu_group_id`) VALUES
(0, 1),
(1, 1),
(2, 1),
(3, 1),
(4, 1),
(5, 1),
(6, 1),
(7, 1),
(8, 1),
(9, 1),
(10, 1),
(11, 1),
(12, 1),
(13, 1),
(14, 1),
(15, 1),
(16, 1),
(17, 1),
(18, 1),
(19, 1),
(20, 1),
(21, 1),
(22, 1),
(23, 1),
(24, 1),
(25, 1),
(26, 1),
(27, 1),
(28, 1),
(29, 1),
(30, 1),
(31, 1),
(32, 1),
(33, 1),
(34, 1),
(35, 1),
(36, 1),
(37, 1),
(38, 1),
(41, 1),
(42, 1),
(43, 1);
-- --------------------------------------------------------
--
-- Table structure for table `gtfw_group_module`
--
CREATE TABLE `gtfw_group_module` (
`groupmodule_group_id` bigint(20) NOT NULL COMMENT 'refer to gtfw_group.group_id',
`groupmodule_module_id` bigint(20) NOT NULL COMMENT 'refer to gtfw_module.module_id'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `gtfw_group_module`
--
INSERT INTO `gtfw_group_module` (`groupmodule_group_id`, `groupmodule_module_id`) VALUES
(1, 0),
(1, 1),
(1, 2),
(1, 3),
(1, 4),
(1, 5),
(1, 6),
(1, 7),
(1, 8),
(1, 9),
(1, 10),
(1, 11),
(1, 12),
(1, 13),
(1, 14),
(1, 15),
(1, 16),
(1, 17),
(1, 18),
(1, 19),
(1, 20),
(1, 21),
(1, 22),
(1, 23),
(1, 24),
(1, 25),
(1, 26),
(1, 27),
(1, 28),
(1, 29),
(1, 30),
(1, 31),
(1, 32),
(1, 33),
(1, 34),
(1, 35),
(1, 36),
(1, 37),
(1, 38),
(1, 39),
(1, 40),
(1, 41),
(1, 42),
(1, 43),
(1, 44),
(1, 45),
(1, 46),
(1, 50),
(1, 51),
(1, 52),
(1, 53),
(1, 54),
(1, 57),
(1, 58),
(1, 59),
(1, 60),
(1, 61),
(1, 62),
(1, 63),
(1, 64),
(1, 72),
(1, 73),
(1, 74),
(1, 75),
(1, 76),
(1, 77),
(1, 78),
(1, 79),
(1, 80),
(1, 81),
(1, 87),
(1, 88),
(1, 89),
(1, 90),
(1, 91),
(1, 92),
(1, 93),
(1, 94),
(1, 95),
(1, 96),
(1, 97),
(1, 98),
(1, 99),
(1, 100),
(1, 101),
(1, 102),
(1, 103),
(1, 104),
(1, 109),
(1, 110),
(1, 111),
(1, 112),
(1, 113),
(1, 114),
(1, 115),
(1, 116),
(1, 124),
(1, 125),
(1, 126),
(1, 127),
(1, 128),
(1, 129),
(1, 130),
(1, 131),
(1, 132),
(1, 133),
(1, 134),
(1, 135),
(1, 136),
(1, 137),
(1, 138),
(1, 146),
(1, 147),
(1, 148),
(1, 149),
(1, 150),
(1, 151),
(1, 152),
(1, 153),
(1, 154),
(1, 155),
(1, 156),
(1, 157),
(1, 158),
(1, 159),
(1, 160),
(1, 161),
(1, 164),
(1, 165),
(1, 166),
(1, 167),
(1, 168),
(1, 169),
(1, 170),
(1, 171),
(1, 172),
(1, 179),
(1, 180),
(1, 181),
(1, 182),
(1, 183),
(1, 184),
(1, 185),
(1, 186),
(1, 187),
(1, 188),
(1, 189),
(1, 190),
(1, 191),
(1, 192),
(1, 193),
(1, 194),
(1, 195),
(1, 196),
(1, 197),
(1, 198),
(1, 199),
(1, 200),
(1, 201),
(1, 202),
(1, 203),
(1, 204),
(1, 205),
(1, 206),
(1, 214),
(1, 215),
(1, 216),
(1, 217),
(1, 218),
(1, 219),
(1, 220),
(1, 221),
(1, 229),
(1, 230),
(1, 231),
(1, 232),
(1, 233),
(1, 234),
(1, 235),
(1, 236),
(1, 244),
(1, 245),
(1, 246),
(1, 247),
(1, 248),
(1, 249),
(1, 250),
(1, 251),
(1, 259),
(1, 260),
(1, 261),
(1, 262),
(1, 263),
(1, 264),
(1, 265),
(1, 266),
(1, 267),
(1, 268),
(1, 269),
(1, 270),
(1, 271),
(1, 272),
(1, 273),
(1, 274),
(1, 275),
(1, 290),
(1, 291),
(1, 292),
(1, 293),
(1, 294),
(1, 295),
(1, 296),
(1, 297),
(1, 298),
(1, 299),
(1, 300),
(1, 301),
(1, 302),
(1, 303),
(1, 304),
(1, 305),
(1, 321),
(1, 322),
(1, 323),
(1, 324),
(1, 325),
(1, 326),
(1, 327),
(1, 328),
(1, 329),
(1, 330),
(1, 331),
(1, 332),
(1, 333),
(1, 334),
(1, 335),
(1, 336),
(1, 352),
(1, 353),
(1, 354),
(1, 355),
(1, 356),
(1, 357),
(1, 358),
(1, 359),
(1, 360),
(1, 367),
(1, 368),
(1, 369),
(1, 370),
(1, 371),
(1, 372),
(1, 373),
(1, 374),
(1, 382),
(1, 383),
(1, 384),
(1, 385),
(1, 386),
(1, 387),
(1, 388),
(1, 389),
(1, 397),
(1, 398),
(1, 399),
(1, 400),
(1, 401),
(1, 402),
(1, 403),
(1, 404),
(1, 412),
(1, 413),
(1, 414),
(1, 415),
(1, 416),
(1, 417),
(1, 418),
(1, 419),
(1, 420),
(1, 421),
(1, 422),
(1, 423),
(1, 424),
(1, 425),
(1, 426),
(1, 427),
(1, 428),
(1, 429),
(1, 430),
(1, 431),
(1, 432),
(1, 440),
(1, 441),
(1, 442),
(1, 443),
(1, 444),
(1, 445),
(1, 446),
(1, 447),
(1, 448),
(1, 449),
(1, 450),
(1, 451),
(1, 452),
(1, 453),
(1, 454),
(1, 455),
(1, 456),
(1, 457),
(1, 458),
(1, 459),
(1, 460),
(1, 461),
(1, 462);
-- --------------------------------------------------------
--
-- Table structure for table `gtfw_key`
--
CREATE TABLE `gtfw_key` (
`key_id` bigint(20) NOT NULL,
`key_code` varchar(255) NOT NULL DEFAULT '',
`key_desc` text DEFAULT NULL,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '0000-00-00 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `gtfw_key`
--
INSERT INTO `gtfw_key` (`key_id`, `key_code`, `key_desc`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`) VALUES
(1, 'title_login', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(2, 'hello', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(3, 'username', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(4, 'password', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(5, 'login', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(6, 'logout', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(7, 'keyword', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(8, 'searching', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(9, 'code', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(10, 'enter_keyword', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(11, 'search', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(12, 'language', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(13, 'add', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(14, 'add_data', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(15, 'action', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(16, 'name', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(17, 'data_not_found', NULL, NULL, '0000-00-00 00:00:00', 9, '2012-10-03 11:23:37'),
(18, 'icon', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(19, 'detail', NULL, NULL, '0000-00-00 00:00:00', 1, '2012-08-14 13:35:31'),
(20, 'key', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(21, 'alert_login_expired', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(22, 'msg_add_success', NULL, 1, '2012-06-18 16:15:15', 1, '2013-07-09 10:36:40'),
(23, 'msg_add_fail', NULL, 1, '2012-06-18 16:16:29', 1, '2013-07-09 10:36:58'),
(24, 'msg_update_success', NULL, 1, '2012-06-18 16:17:00', 1, '2013-05-21 13:30:54'),
(25, 'msg_update_fail', NULL, 1, '2012-06-18 16:17:26', 1, '2013-07-09 10:39:26'),
(26, 'of', NULL, 1, '2012-06-18 19:44:06', NULL, '0000-00-00 00:00:00'),
(27, 'edit', NULL, 1, '2012-06-18 22:13:41', 1, '2012-11-07 13:15:27'),
(28, 'msg_delete_success', NULL, 1, '2012-06-19 07:47:02', 1, '2013-05-21 13:28:37'),
(29, 'msg_delete_fail', NULL, 1, '2012-06-19 07:47:40', 1, '2013-07-09 10:39:00'),
(30, 'msg_confirm_delete', NULL, 1, '2012-06-20 09:25:11', 1, '2013-07-09 10:37:30'),
(31, 'title_confirm_delete', NULL, 1, '2012-06-20 09:25:36', 1, '2013-07-09 10:41:05'),
(32, 'no_data', NULL, 1, '2012-06-20 23:17:11', NULL, '0000-00-00 00:00:00'),
(33, 'blood_type', NULL, 1, '2012-06-21 14:04:00', 1, '2012-06-21 14:10:29'),
(34, 'address_type', NULL, 1, '2012-06-21 14:15:22', NULL, '0000-00-00 00:00:00'),
(35, 'email_type', NULL, 1, '2012-06-21 14:31:41', NULL, '0000-00-00 00:00:00'),
(36, 'active', NULL, 1, '2012-06-21 14:33:33', 1, '2012-07-05 14:10:54'),
(37, 'not_active', NULL, 1, '2012-06-21 14:33:54', NULL, '0000-00-00 00:00:00'),
(38, 'desc', NULL, 1, '2012-06-21 14:37:37', 1, '2013-05-02 15:56:17'),
(39, 'last_modified', NULL, 1, '2012-06-21 14:39:21', 1, '2012-06-21 14:39:40'),
(40, 'category', NULL, 1, '2012-06-21 14:41:12', NULL, '0000-00-00 00:00:00'),
(41, 'status', NULL, 1, '2012-06-21 14:42:25', NULL, '0000-00-00 00:00:00'),
(42, 'submitted', NULL, 1, '2012-06-21 14:47:05', 1, '2012-09-28 15:04:02'),
(43, 'modified', NULL, 1, '2012-06-21 14:47:39', NULL, '0000-00-00 00:00:00'),
(44, 'last_option', NULL, 1, '2012-06-21 14:52:15', NULL, '0000-00-00 00:00:00'),
(45, 'business_sector', NULL, 1, '2012-06-21 15:42:18', NULL, '0000-00-00 00:00:00'),
(46, 'driving_license_type', NULL, 1, '2012-06-21 16:19:45', NULL, '0000-00-00 00:00:00'),
(47, 'funding_source', NULL, 1, '2012-06-21 16:52:21', 1, '2012-09-28 18:14:38'),
(48, 'hotel_type', NULL, 1, '2012-06-22 08:02:55', NULL, '0000-00-00 00:00:00'),
(49, 'identity_type', NULL, 1, '2012-06-22 08:22:34', NULL, '0000-00-00 00:00:00'),
(50, 'other_identity_type', NULL, 1, '2012-06-22 08:59:46', NULL, '0000-00-00 00:00:00'),
(51, 'bank_type', NULL, 1, '2012-06-22 09:46:09', NULL, '0000-00-00 00:00:00'),
(52, 'phone', NULL, 1, '2012-06-22 10:04:32', NULL, '0000-00-00 00:00:00'),
(53, 'address', NULL, 1, '2012-06-22 10:05:38', NULL, '0000-00-00 00:00:00'),
(54, 'Fax', NULL, 1, '2012-06-22 10:06:57', NULL, '0000-00-00 00:00:00'),
(55, 'country', NULL, 1, '2012-06-22 11:20:05', NULL, '0000-00-00 00:00:00'),
(56, 'capital', NULL, 1, '2012-06-22 11:21:04', NULL, '0000-00-00 00:00:00'),
(57, 'map', NULL, 1, '2012-06-22 11:22:02', 8, '2012-11-07 14:02:05'),
(58, 'nat_singular', NULL, 1, '2012-06-22 11:22:34', 1, '2012-11-07 12:08:27'),
(59, 'nat_plural', NULL, 1, '2012-06-22 11:23:11', 1, '2012-11-07 12:08:10'),
(60, 'currency', NULL, 1, '2012-06-22 11:23:29', NULL, '0000-00-00 00:00:00'),
(61, 'currency_code', NULL, 1, '2012-06-22 11:23:57', NULL, '0000-00-00 00:00:00'),
(62, 'state', NULL, 1, '2012-06-22 13:42:27', NULL, '0000-00-00 00:00:00'),
(63, 'bank', NULL, 1, '2012-06-23 08:08:23', NULL, '0000-00-00 00:00:00'),
(64, 'company', NULL, 1, '2012-06-23 08:11:56', NULL, '0000-00-00 00:00:00'),
(65, 'city', NULL, 1, '2012-06-23 08:19:31', 8, '2012-11-07 15:31:11'),
(66, 'latitude', NULL, 1, '2012-06-23 08:20:32', NULL, '0000-00-00 00:00:00'),
(67, 'longitude', NULL, 1, '2012-06-23 08:21:01', NULL, '0000-00-00 00:00:00'),
(68, 'timezone', NULL, 1, '2012-06-23 08:21:39', 1, '2012-06-23 08:22:22'),
(69, 'sub_district', NULL, 1, '2012-06-23 08:31:29', NULL, '0000-00-00 00:00:00'),
(70, 'instant_messaging_type', NULL, 1, '2012-06-23 08:42:27', NULL, '0000-00-00 00:00:00'),
(71, 'icon_path', NULL, 1, '2012-06-23 08:43:18', 1, '2012-06-23 08:43:38'),
(72, 'icon_type', NULL, 1, '2012-06-23 08:43:55', NULL, '0000-00-00 00:00:00'),
(73, 'icon_size', NULL, 1, '2012-06-23 08:44:15', NULL, '0000-00-00 00:00:00'),
(74, 'parent', NULL, 1, '2012-06-23 09:24:04', NULL, '0000-00-00 00:00:00'),
(75, 'kbli', NULL, 1, '2012-06-23 09:31:52', NULL, '0000-00-00 00:00:00'),
(77, 'marital_code', NULL, 1, '2012-06-23 10:44:13', NULL, '0000-00-00 00:00:00'),
(78, 'ownership', NULL, 1, '2012-06-23 12:40:08', NULL, '0000-00-00 00:00:00'),
(79, 'phone_type', NULL, 1, '2012-06-23 12:59:57', NULL, '0000-00-00 00:00:00'),
(80, 'photo_type', NULL, 1, '2012-06-23 13:16:11', NULL, '0000-00-00 00:00:00'),
(81, 'religion', NULL, 1, '2012-06-23 13:26:25', NULL, '0000-00-00 00:00:00'),
(82, 'unit', NULL, 1, '2012-06-23 13:33:36', 1, '2012-10-11 14:25:38'),
(83, 'units', NULL, 1, '2012-06-23 13:33:51', NULL, '0000-00-00 00:00:00'),
(84, 'salutation', NULL, 1, '2012-06-23 18:36:26', NULL, '0000-00-00 00:00:00'),
(85, 'social_media_type', NULL, 1, '2012-06-23 18:52:35', 1, '2012-09-28 15:27:58'),
(86, 'area', NULL, 1, '2012-06-25 10:48:54', 1, '2012-08-15 13:37:15'),
(87, 'code_name_plu', NULL, 1, '2012-06-25 10:49:33', NULL, '0000-00-00 00:00:00'),
(88, 'transportation_type', NULL, 1, '2012-06-25 11:43:52', NULL, '0000-00-00 00:00:00'),
(89, 'ext_code', NULL, 1, '2012-06-25 14:10:12', 1, '2012-09-25 14:04:48'),
(90, 'formal_education_type', NULL, 1, '2012-06-25 14:11:22', NULL, '0000-00-00 00:00:00'),
(91, 'is_grade', NULL, 1, '2012-06-25 14:11:46', 1, '2013-04-24 22:15:20'),
(92, 'order', NULL, 1, '2012-06-25 14:12:05', NULL, '0000-00-00 00:00:00'),
(93, 'ext_name', NULL, 1, '2012-06-25 14:14:33', 1, '2012-09-25 14:05:14'),
(94, 'function', NULL, 1, '2012-06-25 14:15:48', NULL, '0000-00-00 00:00:00'),
(95, 'formal_education_level', NULL, 1, '2012-06-25 14:37:45', NULL, '0000-00-00 00:00:00'),
(96, 'formal_education_grade', NULL, 1, '2012-06-25 15:22:49', NULL, '0000-00-00 00:00:00'),
(97, 'informal_education_type', NULL, 1, '2012-06-25 16:05:08', NULL, '0000-00-00 00:00:00'),
(98, 'min_order', NULL, 1, '2012-06-25 16:35:22', 1, '2012-09-21 08:16:18'),
(99, 'min_stock', NULL, 1, '2012-06-25 16:35:59', 1, '2013-06-12 10:58:28'),
(100, 'over_stock', NULL, 1, '2012-06-25 16:37:00', NULL, '0000-00-00 00:00:00'),
(101, 'sell_margin', NULL, 1, '2012-06-25 16:38:48', NULL, '0000-00-00 00:00:00'),
(102, 'tax_status_goods', NULL, 1, '2012-06-25 16:39:35', 1, '2012-09-21 08:19:51'),
(103, 'discount_status_goods', NULL, 1, '2012-06-25 16:40:18', 1, '2012-09-21 08:31:47'),
(104, 'warehouse_units', NULL, 1, '2012-06-25 16:41:29', NULL, '0000-00-00 00:00:00'),
(105, 'supplier_units', NULL, 1, '2012-06-25 16:42:19', 1, '2012-09-25 14:20:00'),
(106, 'conversion', NULL, 1, '2012-06-25 16:42:46', NULL, '0000-00-00 00:00:00'),
(107, 'brand', NULL, 1, '2012-06-25 16:44:35', NULL, '0000-00-00 00:00:00'),
(108, 'size', NULL, 1, '2012-06-25 16:45:01', NULL, '0000-00-00 00:00:00'),
(110, 'colour', NULL, 1, '2012-06-25 16:45:17', NULL, '0000-00-00 00:00:00'),
(111, 'dosageform', NULL, 1, '2012-06-25 16:46:33', NULL, '0000-00-00 00:00:00'),
(112, 'default_price', NULL, 1, '2012-06-25 16:47:21', NULL, '0000-00-00 00:00:00'),
(113, 'vendor', NULL, 1, '2012-06-26 08:18:52', NULL, '0000-00-00 00:00:00'),
(114, 'sell_price', NULL, 1, '2012-06-26 08:22:27', NULL, '0000-00-00 00:00:00'),
(115, 'internal_price', NULL, 1, '2012-06-26 08:23:44', NULL, '0000-00-00 00:00:00'),
(116, 'warehouse_price', NULL, 1, '2012-06-26 08:24:22', NULL, '0000-00-00 00:00:00'),
(118, 'packet_type', NULL, 1, '2012-06-26 08:25:40', NULL, '0000-00-00 00:00:00'),
(119, 'yes', NULL, 1, '2012-06-26 08:26:32', NULL, '0000-00-00 00:00:00'),
(120, 'no', NULL, 1, '2012-06-26 08:26:43', NULL, '0000-00-00 00:00:00'),
(121, 'component', NULL, 1, '2012-06-26 08:27:15', NULL, '0000-00-00 00:00:00'),
(122, 'amount', NULL, 1, '2012-06-26 08:27:48', NULL, '0000-00-00 00:00:00'),
(123, 'plu', NULL, 1, '2012-06-26 08:34:28', 1, '2012-09-21 08:11:54'),
(124, 'warehouse_conversion', NULL, 1, '2012-06-26 08:44:52', NULL, '0000-00-00 00:00:00'),
(125, 'supplier_conversion', NULL, 1, '2012-06-26 08:46:17', NULL, '0000-00-00 00:00:00'),
(126, 'packet', NULL, 1, '2012-06-26 08:48:12', 1, '2012-06-26 08:48:18'),
(127, 'package', NULL, 1, '2012-06-26 10:10:06', NULL, '0000-00-00 00:00:00'),
(128, 'testing', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(129, 'branch', NULL, 1, '2012-06-26 13:56:06', NULL, '0000-00-00 00:00:00'),
(130, 'from', NULL, 1, '2012-06-26 14:04:21', NULL, '0000-00-00 00:00:00'),
(131, 'to', NULL, 1, '2012-06-26 14:04:31', NULL, '0000-00-00 00:00:00'),
(132, 'goods', NULL, 1, '2012-06-26 14:04:50', NULL, '0000-00-00 00:00:00'),
(133, 'date', NULL, 1, '2012-06-26 14:05:09', NULL, '0000-00-00 00:00:00'),
(134, 'remarks', NULL, 1, '2012-06-26 14:07:20', NULL, '0000-00-00 00:00:00'),
(135, 'stock', NULL, 1, '2012-06-26 14:10:07', NULL, '0000-00-00 00:00:00'),
(136, 'send_date', NULL, 1, '2012-06-26 14:11:12', NULL, '0000-00-00 00:00:00'),
(137, 'request', NULL, 1, '2012-06-26 14:12:07', NULL, '0000-00-00 00:00:00'),
(138, 'discount', NULL, 1, '2012-06-26 14:12:59', NULL, '0000-00-00 00:00:00'),
(139, 'total', NULL, 1, '2012-06-26 14:13:12', NULL, '0000-00-00 00:00:00'),
(140, 'vat', NULL, 1, '2012-06-26 14:58:28', NULL, '0000-00-00 00:00:00'),
(141, 'informal_education_organizer', NULL, 1, '2012-06-27 08:30:42', NULL, '0000-00-00 00:00:00'),
(142, 'nonformal_education_type', NULL, 1, '2012-06-27 08:50:36', NULL, '0000-00-00 00:00:00'),
(143, 'nonformal_education_organizer', NULL, 1, '2012-06-27 10:09:35', NULL, '0000-00-00 00:00:00'),
(144, 'organization_type', NULL, 1, '2012-06-27 10:31:27', NULL, '0000-00-00 00:00:00'),
(145, 'organization_level', NULL, 1, '2012-06-27 11:18:50', NULL, '0000-00-00 00:00:00'),
(146, 'referral_type', NULL, 1, '2012-06-27 13:52:02', NULL, '0000-00-00 00:00:00'),
(147, 'language_type', NULL, 1, '2012-06-27 14:05:41', NULL, '0000-00-00 00:00:00'),
(148, 'language_fluent_type', NULL, 1, '2012-06-27 14:19:28', NULL, '0000-00-00 00:00:00'),
(149, 'language_quality_type', NULL, 1, '2012-06-27 14:29:07', NULL, '0000-00-00 00:00:00'),
(150, 'language_certificate_type', NULL, 1, '2012-06-27 14:50:10', NULL, '0000-00-00 00:00:00'),
(151, 'technical_type', NULL, 1, '2012-06-27 15:09:26', NULL, '0000-00-00 00:00:00'),
(152, 'technical_quality_type', NULL, 1, '2012-06-27 15:17:26', NULL, '0000-00-00 00:00:00'),
(153, 'structural_position_type', NULL, 1, '2012-06-27 15:30:42', NULL, '0000-00-00 00:00:00'),
(154, 'goods_category', NULL, 1, '2012-06-28 10:14:18', 1, '2012-10-01 10:05:07'),
(155, 'purchase_status', NULL, 1, '2012-06-28 10:18:25', NULL, '0000-00-00 00:00:00'),
(156, 'medic_status', NULL, 1, '2012-06-28 10:19:26', NULL, '0000-00-00 00:00:00'),
(157, 'functional_position_type', NULL, 1, '2012-06-28 14:01:38', NULL, '0000-00-00 00:00:00'),
(158, 'symbol', NULL, 1, '2012-06-28 16:13:55', NULL, '0000-00-00 00:00:00'),
(159, 'currency_has_been_entered', NULL, 1, '2012-06-29 08:31:51', NULL, '0000-00-00 00:00:00'),
(160, 'exchange_source', NULL, 1, '2012-06-29 09:00:03', NULL, '0000-00-00 00:00:00'),
(161, 'begin_date', NULL, 1, '2012-06-29 09:34:54', NULL, '0000-00-00 00:00:00'),
(162, 'end_date', NULL, 1, '2012-06-29 09:35:12', NULL, '0000-00-00 00:00:00'),
(163, 'exchange_rate', NULL, 1, '2012-06-29 09:35:40', NULL, '0000-00-00 00:00:00'),
(164, 'buy', NULL, 1, '2012-06-29 09:36:02', NULL, '0000-00-00 00:00:00'),
(165, 'sell', NULL, 1, '2012-06-29 09:36:13', NULL, '0000-00-00 00:00:00'),
(166, 'period', NULL, 1, '2012-06-29 09:36:58', NULL, '0000-00-00 00:00:00'),
(167, 'update_kurs_currency', NULL, 1, '2012-06-29 10:27:52', 1, '2012-06-29 10:28:54'),
(168, 'need_to_be_updated', NULL, 1, '2012-06-29 11:29:57', NULL, '0000-00-00 00:00:00'),
(169, 'updated', NULL, 1, '2012-06-29 11:33:44', 1, '2012-09-28 15:02:09'),
(170, 'activated_the_currency_data', NULL, 1, '2012-06-29 13:52:11', NULL, '0000-00-00 00:00:00'),
(171, 'source', NULL, 1, '2012-06-29 14:04:35', NULL, '0000-00-00 00:00:00'),
(172, 'draft_qty', NULL, 1, '2012-06-30 12:20:42', 1, '2012-10-01 10:03:48'),
(173, 'master', NULL, 1, '2012-07-02 08:14:02', NULL, '0000-00-00 00:00:00'),
(174, 'passport_type', NULL, 1, '2012-07-02 08:23:03', NULL, '0000-00-00 00:00:00'),
(175, 'project_type', NULL, 1, '2012-07-02 08:29:01', NULL, '0000-00-00 00:00:00'),
(176, 'training_approach', NULL, 1, '2012-07-02 08:33:59', NULL, '0000-00-00 00:00:00'),
(177, 'training_needs', NULL, 1, '2012-07-02 08:43:22', NULL, '0000-00-00 00:00:00'),
(178, 'history_rate', NULL, 1, '2012-07-02 08:59:05', NULL, '0000-00-00 00:00:00'),
(179, 'rate', NULL, 1, '2012-07-02 08:59:30', NULL, '0000-00-00 00:00:00'),
(181, 'history', NULL, 1, '2012-07-02 08:59:54', NULL, '0000-00-00 00:00:00'),
(182, 'seminar_level', NULL, 1, '2012-07-02 09:03:45', NULL, '0000-00-00 00:00:00'),
(183, 'certification_field', NULL, 1, '2012-07-02 09:15:50', NULL, '0000-00-00 00:00:00'),
(184, 'health_insurance_member_status', NULL, 1, '2012-07-02 09:23:08', 1, '2012-07-02 09:25:11'),
(185, 'internal_insurance_category', NULL, 1, '2012-07-02 10:57:08', NULL, '0000-00-00 00:00:00'),
(187, 'internal_insurance_type', NULL, 1, '2012-07-02 10:59:02', NULL, '0000-00-00 00:00:00'),
(188, 'internal_insurance_product', NULL, 1, '2012-07-02 11:20:39', NULL, '0000-00-00 00:00:00'),
(189, 'internal_insurance_class', NULL, 1, '2012-07-02 11:59:40', NULL, '0000-00-00 00:00:00'),
(190, 'internal_insurance_plafon', NULL, 1, '2012-07-02 13:34:10', NULL, '0000-00-00 00:00:00'),
(191, 'internal_insurance_reference_type', NULL, 1, '2012-07-02 13:53:30', NULL, '0000-00-00 00:00:00'),
(192, 'external_insurance_category', NULL, 1, '2012-07-02 15:38:52', NULL, '0000-00-00 00:00:00'),
(194, 'external_insurance_type', NULL, 1, '2012-07-02 16:13:36', NULL, '0000-00-00 00:00:00'),
(195, 'is_locked', NULL, 1, '2012-07-03 08:34:44', NULL, '0000-00-00 00:00:00'),
(196, 'validation_required', NULL, 1, '2012-07-03 09:43:11', NULL, '0000-00-00 00:00:00'),
(197, 'validation_isset', NULL, 1, '2012-07-03 09:43:40', NULL, '0000-00-00 00:00:00'),
(198, 'validation_valid_email', NULL, 1, '2012-07-03 09:44:04', NULL, '0000-00-00 00:00:00'),
(199, 'validation_valid_emails', NULL, 1, '2012-07-03 09:44:31', NULL, '0000-00-00 00:00:00'),
(200, 'validation_valid_url', NULL, 1, '2012-07-03 09:44:59', NULL, '0000-00-00 00:00:00'),
(201, 'validation_valid_ip', NULL, 1, '2012-07-03 10:07:51', NULL, '0000-00-00 00:00:00'),
(202, 'validation_min_length', NULL, 1, '2012-07-03 10:08:13', NULL, '0000-00-00 00:00:00'),
(203, 'validation_max_length', NULL, 1, '2012-07-03 10:08:35', 1, '2012-07-03 10:08:50'),
(204, 'validation_exact_length', NULL, 1, '2012-07-03 10:09:20', NULL, '0000-00-00 00:00:00'),
(205, 'validation_alpha', NULL, 1, '2012-07-03 10:09:39', NULL, '0000-00-00 00:00:00'),
(206, 'validation_alpha_numeric', NULL, 1, '2012-07-03 10:09:59', NULL, '0000-00-00 00:00:00'),
(207, 'validation_alpha_dash', NULL, 1, '2012-07-03 10:10:32', NULL, '0000-00-00 00:00:00'),
(208, 'validation_numeric', NULL, 1, '2012-07-03 10:11:27', NULL, '0000-00-00 00:00:00'),
(209, 'validation_is_numeric', NULL, 1, '2012-07-03 10:13:19', NULL, '0000-00-00 00:00:00'),
(210, 'validation_integer', NULL, 1, '2012-07-03 10:15:14', NULL, '0000-00-00 00:00:00'),
(211, 'validation_regex_match', NULL, 1, '2012-07-03 10:19:02', NULL, '0000-00-00 00:00:00'),
(212, 'validation_matches', NULL, 1, '2012-07-03 10:20:27', NULL, '0000-00-00 00:00:00'),
(213, 'validation_is_natural', NULL, 1, '2012-07-03 10:22:42', NULL, '0000-00-00 00:00:00'),
(214, 'validation_is_natural_no_zero', NULL, 1, '2012-07-03 10:23:06', NULL, '0000-00-00 00:00:00'),
(215, 'select', NULL, 1, '2012-07-03 15:02:08', NULL, '0000-00-00 00:00:00'),
(216, 'district', NULL, 1, '2012-07-03 16:25:36', 8, '2012-11-07 16:19:09'),
(217, 'custom_validation_cek_kode', NULL, 1, '2012-07-04 09:45:44', 1, '2012-07-04 09:46:46'),
(218, 'bank_branch', NULL, 1, '2012-07-04 14:18:54', NULL, '0000-00-00 00:00:00'),
(219, 'achievement_level', NULL, 1, '2012-07-04 14:52:23', NULL, '0000-00-00 00:00:00'),
(220, 'type_short', NULL, 1, '2012-07-05 08:35:51', NULL, '0000-00-00 00:00:00'),
(222, 'file_type', NULL, 1, '2012-07-05 08:37:21', NULL, '0000-00-00 00:00:00'),
(224, 'internal_reference_type', NULL, 1, '2012-07-05 08:54:53', NULL, '0000-00-00 00:00:00'),
(225, 'internal_insurance_reference', NULL, 1, '2012-07-05 10:49:58', NULL, '0000-00-00 00:00:00'),
(226, 'locked', NULL, 1, '2012-07-05 14:05:30', NULL, '0000-00-00 00:00:00'),
(227, 'unlocked', NULL, 1, '2012-07-05 14:05:43', NULL, '0000-00-00 00:00:00'),
(228, 'icon_now', NULL, 1, '2012-07-06 14:11:17', NULL, '0000-00-00 00:00:00'),
(229, 'there_is_no_current_file', NULL, 1, '2012-07-06 14:48:58', NULL, '0000-00-00 00:00:00'),
(230, 'employee_status', NULL, 1, '2012-07-12 08:59:29', NULL, '0000-00-00 00:00:00'),
(231, 'is_active', NULL, 1, '2012-07-12 09:00:35', 1, '2013-09-04 08:26:27'),
(232, 'is_permanent', NULL, 1, '2012-07-12 09:20:43', 1, '2013-09-04 08:25:14'),
(233, 'employee_type', NULL, 1, '2012-07-12 09:22:16', NULL, '0000-00-00 00:00:00'),
(234, 'further_education_file_type', NULL, 1, '2012-07-12 09:42:15', NULL, '0000-00-00 00:00:00'),
(235, 'grade_type', NULL, 1, '2012-07-12 09:58:19', NULL, '0000-00-00 00:00:00'),
(236, 'service_determination', NULL, 1, '2012-07-12 10:17:14', NULL, '0000-00-00 00:00:00'),
(237, 'work_period_type', NULL, 1, '2012-07-12 10:30:39', NULL, '0000-00-00 00:00:00'),
(238, 'relationship_type', NULL, 1, '2012-07-12 11:43:02', NULL, '0000-00-00 00:00:00'),
(239, 'insurance_is_covered', NULL, 1, '2012-07-12 11:54:47', NULL, '0000-00-00 00:00:00'),
(240, 'payroll_is_covered', NULL, 1, '2012-07-12 11:56:38', NULL, '0000-00-00 00:00:00'),
(241, 'has_order', NULL, 1, '2012-07-12 13:17:47', NULL, '0000-00-00 00:00:00'),
(242, 'relationship_status', NULL, 1, '2012-07-12 13:59:36', NULL, '0000-00-00 00:00:00'),
(243, 'employee_form_wizard', NULL, 1, '2012-07-12 15:47:34', 1, '2012-07-12 15:48:02'),
(244, 'show_history', NULL, 1, '2012-07-12 15:50:02', NULL, '0000-00-00 00:00:00'),
(245, 'update_kurs', NULL, 1, '2012-07-12 15:50:31', NULL, '0000-00-00 00:00:00'),
(246, 'employee_name', NULL, 1, '2012-07-12 15:57:41', 1, '2012-07-12 16:04:56'),
(248, 'number', NULL, 1, '2012-07-12 16:02:44', 1, '2013-11-19 15:06:14'),
(249, 'full_name', NULL, 1, '2012-07-13 08:15:16', NULL, '0000-00-00 00:00:00'),
(250, 'nick_name', NULL, 1, '2012-07-13 08:15:32', NULL, '0000-00-00 00:00:00'),
(252, 'title_prefix', NULL, 1, '2012-07-13 08:18:27', 1, '2012-07-13 08:36:59'),
(253, 'title_sufix', NULL, 1, '2012-07-13 08:19:44', 1, '2012-07-13 08:37:10'),
(254, 'parent_number', NULL, 1, '2012-07-13 08:21:49', 1, '2013-11-28 10:40:37'),
(255, 'presence_number', NULL, 1, '2012-07-13 08:22:52', NULL, '0000-00-00 00:00:00'),
(256, 'access_code', NULL, 1, '2012-07-13 08:25:21', NULL, '0000-00-00 00:00:00'),
(257, 'place_of_birth', NULL, 1, '2012-07-13 08:26:07', 1, '2012-07-25 11:16:57'),
(258, 'date_of_birth', NULL, 1, '2012-07-13 08:28:34', 1, '2012-07-25 11:16:45'),
(259, 'male', NULL, 1, '2012-07-13 08:30:05', NULL, '0000-00-00 00:00:00'),
(260, 'female', NULL, 1, '2012-07-13 08:30:31', NULL, '0000-00-00 00:00:00'),
(261, 'gender', NULL, 1, '2012-07-13 08:31:48', NULL, '0000-00-00 00:00:00'),
(262, 'belief', NULL, 1, '2012-07-13 08:35:03', 1, '2012-07-13 08:40:13'),
(263, 'custom_validation_cek_request_empty', NULL, 1, '2012-07-13 08:50:04', NULL, '0000-00-00 00:00:00'),
(264, 'employee_photo', NULL, 1, '2012-07-13 08:51:48', NULL, '0000-00-00 00:00:00'),
(265, 'preview', NULL, 1, '2012-07-13 08:53:19', 1, '2012-11-07 13:52:28'),
(266, 'attachment', NULL, 1, '2012-07-13 08:54:13', NULL, '0000-00-00 00:00:00'),
(267, 'special_set_other_master_date', NULL, 1, '2012-07-13 08:58:14', NULL, '0000-00-00 00:00:00'),
(268, 'set_as_vendor', NULL, 1, '2012-07-13 09:03:51', NULL, '0000-00-00 00:00:00'),
(269, 'set_as_customer', NULL, 1, '2012-07-13 09:04:16', NULL, '0000-00-00 00:00:00'),
(270, 'employee_data', NULL, 1, '2012-07-13 09:09:45', NULL, '0000-00-00 00:00:00'),
(271, 'no_data_photo_type', NULL, 1, '2012-07-13 10:44:45', NULL, '0000-00-00 00:00:00'),
(272, 'nationality_status', NULL, 1, '2012-07-16 07:58:03', NULL, '0000-00-00 00:00:00'),
(273, 'expat', NULL, 1, '2012-07-16 07:58:26', NULL, '0000-00-00 00:00:00'),
(274, 'local', NULL, 1, '2012-07-16 07:58:39', NULL, '0000-00-00 00:00:00'),
(275, 'position', NULL, 1, '2012-07-16 13:05:18', NULL, '0000-00-00 00:00:00'),
(276, 'work_unit', NULL, 1, '2012-07-16 13:06:06', NULL, '0000-00-00 00:00:00'),
(277, 'usage_type', NULL, 1, '2012-07-17 13:20:08', 1, '2012-09-26 14:00:47'),
(278, 'relocation_reason', NULL, 1, '2012-07-17 13:27:02', NULL, '0000-00-00 00:00:00'),
(279, 'mutation_reason', NULL, 1, '2012-07-17 13:46:58', 1, '2012-09-30 15:31:21'),
(280, 'family_data', NULL, 1, '2012-07-17 14:40:16', NULL, '0000-00-00 00:00:00'),
(281, 'family_list', NULL, 1, '2012-07-17 14:40:37', NULL, '0000-00-00 00:00:00'),
(282, 'relative_status', NULL, 1, '2012-07-17 15:03:44', 1, '2012-08-15 08:24:13'),
(283, 'personal_data', NULL, 1, '2012-07-17 15:56:13', NULL, '0000-00-00 00:00:00'),
(284, 'save', NULL, 1, '2012-07-17 16:24:44', NULL, '0000-00-00 00:00:00'),
(285, 'reset', NULL, 1, '2012-07-17 16:25:22', NULL, '0000-00-00 00:00:00'),
(286, 'cancel', NULL, 1, '2012-07-17 16:25:44', NULL, '0000-00-00 00:00:00'),
(287, 'citizenship', NULL, 1, '2012-07-18 07:56:34', NULL, '0000-00-00 00:00:00'),
(288, 'mobile_phone_number', NULL, 1, '2012-07-18 08:09:42', NULL, '0000-00-00 00:00:00'),
(289, 'phone_number', NULL, 1, '2012-07-18 08:10:03', 1, '2013-11-06 08:59:36'),
(290, 'identity_number', NULL, 1, '2012-07-18 08:15:42', NULL, '0000-00-00 00:00:00'),
(291, 'other_identity_number', NULL, 1, '2012-07-18 08:16:40', NULL, '0000-00-00 00:00:00'),
(292, 'extension', NULL, 1, '2012-07-18 08:24:59', NULL, '0000-00-00 00:00:00'),
(293, 'old_photo', NULL, 1, '2012-07-18 08:25:54', NULL, '0000-00-00 00:00:00'),
(294, 'or', NULL, 1, '2012-07-18 08:31:31', NULL, '0000-00-00 00:00:00'),
(295, 'email', NULL, 1, '2012-07-18 08:37:47', NULL, '0000-00-00 00:00:00'),
(296, 'photo', NULL, 1, '2012-07-18 08:38:11', NULL, '0000-00-00 00:00:00'),
(297, 'family', NULL, 1, '2012-07-18 08:38:48', NULL, '0000-00-00 00:00:00'),
(298, 'until', NULL, 1, '2012-07-18 10:03:58', 1, '2013-11-06 16:23:05'),
(299, 'po_supplier', NULL, 1, '2012-07-18 10:04:39', 1, '2012-10-01 05:10:22'),
(300, 'request_detail', NULL, 1, '2012-07-18 10:12:36', NULL, '0000-00-00 00:00:00'),
(301, 'receive_detail', NULL, 1, '2012-07-18 10:13:04', NULL, '0000-00-00 00:00:00'),
(302, 'delivery_order', NULL, 1, '2012-07-18 10:13:40', NULL, '0000-00-00 00:00:00'),
(303, 'do_number', NULL, 1, '2012-07-18 10:14:06', NULL, '0000-00-00 00:00:00'),
(304, 'history_data', NULL, 1, '2012-07-18 10:29:53', NULL, '0000-00-00 00:00:00'),
(305, 'marital_date', NULL, 1, '2012-07-18 10:43:56', 1, '2012-08-13 12:53:51'),
(306, 'pass_away_date', NULL, 1, '2012-07-18 11:01:58', 1, '2012-07-18 11:12:59'),
(307, 'pass_away_status', NULL, 1, '2012-07-18 11:02:32', 1, '2012-07-18 11:13:12'),
(308, 'done', NULL, 1, '2012-07-18 11:05:05', 1, '2012-07-18 11:08:25'),
(309, 'is_study', NULL, 1, '2012-07-18 11:17:33', NULL, '0000-00-00 00:00:00'),
(310, 'is_married', NULL, 1, '2012-07-18 11:50:50', NULL, '0000-00-00 00:00:00'),
(311, 'institutions', NULL, 1, '2012-07-18 14:00:51', NULL, '0000-00-00 00:00:00'),
(312, 'school_name', NULL, 1, '2012-07-18 14:01:07', NULL, '0000-00-00 00:00:00'),
(313, 'faculty', NULL, 1, '2012-07-18 14:04:03', NULL, '0000-00-00 00:00:00'),
(314, 'program_study', NULL, 1, '2012-07-18 14:05:46', 1, '2012-07-18 14:17:29'),
(315, 'concentration', NULL, 1, '2012-07-18 14:08:04', NULL, '0000-00-00 00:00:00'),
(316, 'year_pass', NULL, 1, '2012-07-18 14:18:51', NULL, '0000-00-00 00:00:00'),
(317, 'working_status', NULL, 1, '2012-07-18 14:22:20', 1, '2012-07-18 14:41:05'),
(318, 'work_place', NULL, 1, '2012-07-18 14:43:14', NULL, '0000-00-00 00:00:00'),
(319, 'work', NULL, 1, '2012-07-18 14:43:32', NULL, '0000-00-00 00:00:00'),
(320, 'salary', NULL, 1, '2012-07-18 14:44:19', NULL, '0000-00-00 00:00:00'),
(321, 'income_amount', NULL, 1, '2012-07-18 14:44:49', NULL, '0000-00-00 00:00:00'),
(322, 'is_tax_free', NULL, 1, '2012-07-18 14:56:43', 1, '2013-09-04 08:25:39'),
(323, 'tax_free_period_from', NULL, 1, '2012-07-18 14:57:26', 1, '2012-07-18 15:22:28'),
(324, 'desc_for_tax_free', NULL, 1, '2012-07-18 15:00:53', 1, '2012-07-18 15:20:04'),
(325, 'npwp_ownership_status', NULL, 1, '2012-07-18 15:27:45', NULL, '0000-00-00 00:00:00'),
(326, 'is_npwp', NULL, 1, '2012-07-18 15:30:03', NULL, '0000-00-00 00:00:00'),
(327, 'npwp_registered_number', NULL, 1, '2012-07-18 15:30:48', NULL, '0000-00-00 00:00:00'),
(328, 'npwp_registered_name', NULL, 1, '2012-07-18 15:31:46', NULL, '0000-00-00 00:00:00'),
(329, 'npwp_registered_date', NULL, 1, '2012-07-18 15:32:30', NULL, '0000-00-00 00:00:00'),
(330, 'npwp_address', NULL, 1, '2012-07-18 15:33:01', NULL, '0000-00-00 00:00:00'),
(331, 'is_covered', NULL, 1, '2012-07-18 15:56:54', 1, '2013-09-04 08:24:29'),
(332, 'is_jamsostek', NULL, 1, '2012-07-18 16:00:27', NULL, '0000-00-00 00:00:00'),
(333, 'jms_registered_number', NULL, 1, '2012-07-18 16:03:44', NULL, '0000-00-00 00:00:00'),
(334, 'jms_registered_name', NULL, 1, '2012-07-18 16:04:42', NULL, '0000-00-00 00:00:00'),
(335, 'period_of_validity', NULL, 1, '2012-07-18 16:06:05', NULL, '0000-00-00 00:00:00'),
(336, 'have', NULL, 1, '2012-07-18 16:09:11', NULL, '0000-00-00 00:00:00'),
(337, 'is_health_insurance', NULL, 1, '2012-07-18 16:11:40', NULL, '0000-00-00 00:00:00'),
(338, 'healthins_registered_name', NULL, 1, '2012-07-18 16:13:48', NULL, '0000-00-00 00:00:00'),
(340, 'healthins_registered_number', NULL, 1, '2012-07-18 16:16:14', NULL, '0000-00-00 00:00:00'),
(341, 'is_internal_insurance', NULL, 1, '2012-07-18 16:16:59', 1, '2013-09-04 08:24:45'),
(342, 'join', NULL, 1, '2012-07-18 16:19:46', NULL, '0000-00-00 00:00:00'),
(343, 'registered_number', NULL, 1, '2012-07-18 16:21:48', NULL, '0000-00-00 00:00:00'),
(344, 'registered_name', NULL, 1, '2012-07-18 16:22:09', NULL, '0000-00-00 00:00:00'),
(345, 'is_external_insurance', NULL, 1, '2012-07-18 16:28:46', NULL, '0000-00-00 00:00:00'),
(346, 'status_data', NULL, 1, '2012-07-18 16:35:13', NULL, '0000-00-00 00:00:00'),
(347, 'default', NULL, 1, '2012-07-18 16:39:21', NULL, '0000-00-00 00:00:00'),
(348, 'file', NULL, 1, '2012-07-18 16:43:35', 1, '2012-11-08 13:47:55'),
(349, 'modify', NULL, 1, '2012-07-19 14:01:53', NULL, '0000-00-00 00:00:00'),
(350, 'insert', NULL, 1, '2012-07-19 14:02:14', NULL, '0000-00-00 00:00:00'),
(351, 'next', NULL, 1, '2012-07-19 14:42:30', NULL, '0000-00-00 00:00:00'),
(352, 'previous', NULL, 1, '2012-07-19 14:43:41', NULL, '0000-00-00 00:00:00'),
(354, 'not_default', NULL, 1, '2012-07-19 15:00:28', NULL, '0000-00-00 00:00:00'),
(355, 'condition', NULL, 1, '2012-07-19 15:23:53', NULL, '0000-00-00 00:00:00'),
(356, 'insert_by_bo', NULL, 1, '2012-07-19 15:26:39', 1, '2012-07-19 15:28:30'),
(357, 'insert_by_emp', NULL, 1, '2012-07-19 15:28:11', NULL, '0000-00-00 00:00:00'),
(358, 'health', NULL, 1, '2012-07-20 08:06:38', NULL, '0000-00-00 00:00:00'),
(359, 'weight', NULL, 1, '2012-07-20 08:08:34', NULL, '0000-00-00 00:00:00'),
(360, 'height', NULL, 1, '2012-07-20 08:08:46', 1, '2013-05-03 16:12:09'),
(361, 'skin_color', NULL, 1, '2012-07-20 08:09:41', NULL, '0000-00-00 00:00:00'),
(362, 'hair_color', NULL, 1, '2012-07-20 08:10:00', NULL, '0000-00-00 00:00:00'),
(363, 'face_shape', NULL, 1, '2012-07-20 08:10:59', NULL, '0000-00-00 00:00:00'),
(364, 'typical', NULL, 1, '2012-07-20 08:11:25', NULL, '0000-00-00 00:00:00'),
(365, 'disability', NULL, 1, '2012-07-20 08:11:52', 1, '2013-11-19 16:19:41'),
(366, 'disease', NULL, 1, '2012-07-20 08:12:16', NULL, '0000-00-00 00:00:00'),
(367, 'alergy', NULL, 1, '2012-07-20 08:12:35', NULL, '0000-00-00 00:00:00'),
(368, 'employment', NULL, 1, '2012-07-20 08:34:47', NULL, '0000-00-00 00:00:00'),
(369, 'in_kg', NULL, 1, '2012-07-20 08:35:49', NULL, '0000-00-00 00:00:00'),
(370, 'in_cm', NULL, 1, '2012-07-20 08:36:09', NULL, '0000-00-00 00:00:00'),
(371, 'ethnic', NULL, 1, '2012-07-20 08:50:10', NULL, '0000-00-00 00:00:00'),
(372, 'first_name', NULL, 1, '2012-07-20 09:00:35', NULL, '0000-00-00 00:00:00'),
(373, 'last_name', NULL, 1, '2012-07-20 09:01:48', NULL, '0000-00-00 00:00:00'),
(374, 'middle_name', NULL, 1, '2012-07-20 09:02:10', NULL, '0000-00-00 00:00:00'),
(375, 'work_unit_list', NULL, 1, '2012-07-23 08:12:03', NULL, '0000-00-00 00:00:00'),
(376, 'valid_from', NULL, 1, '2012-07-23 08:12:28', NULL, '0000-00-00 00:00:00'),
(377, 'valid_until', NULL, 1, '2012-07-23 08:12:44', NULL, '0000-00-00 00:00:00'),
(378, 'decree', NULL, 1, '2012-07-23 08:13:33', NULL, '0000-00-00 00:00:00'),
(379, 'decree_number', NULL, 1, '2012-07-23 08:14:17', NULL, '0000-00-00 00:00:00'),
(380, 'decree_date', NULL, 1, '2012-07-23 08:15:22', NULL, '0000-00-00 00:00:00'),
(381, 'old_file', NULL, 1, '2012-07-23 08:17:51', NULL, '0000-00-00 00:00:00'),
(382, 'department', NULL, 1, '2012-07-23 08:18:59', NULL, '0000-00-00 00:00:00'),
(383, 'structural_position_list', NULL, 1, '2012-07-23 08:20:13', 1, '2012-07-23 08:21:01'),
(384, 'structural_position', NULL, 1, '2012-07-23 08:20:46', NULL, '0000-00-00 00:00:00'),
(385, 'employee_status_list', NULL, 1, '2012-07-23 08:41:23', NULL, '0000-00-00 00:00:00'),
(386, 'custom_validation_blood_type_name_not_available', NULL, 1, '2012-07-23 09:06:10', NULL, '0000-00-00 00:00:00'),
(387, 'custom_validation_email_type_name_not_available', NULL, 1, '2012-07-23 10:00:01', NULL, '0000-00-00 00:00:00'),
(388, 'custom_validation_business_sector_name_not_available', NULL, 1, '2012-07-23 10:11:02', NULL, '0000-00-00 00:00:00'),
(389, 'custom_validation_driving_license_type_name_not_available', NULL, 1, '2012-07-23 10:20:53', NULL, '0000-00-00 00:00:00'),
(390, 'custom_validation_funding_source_name_not_available', NULL, 1, '2012-07-23 10:29:07', NULL, '0000-00-00 00:00:00'),
(391, 'custom_validation_funding_source_code_not_available', NULL, 1, '2012-07-23 10:35:59', NULL, '0000-00-00 00:00:00'),
(392, 'custom_validation_hotel_type_name_not_available', NULL, 1, '2012-07-23 10:39:08', NULL, '0000-00-00 00:00:00'),
(393, 'custom_validation_identity_type_name_not_available', NULL, 1, '2012-07-23 10:45:33', NULL, '0000-00-00 00:00:00'),
(394, 'custom_validation_other_identity_type_name_not_available', NULL, 1, '2012-07-23 10:50:04', 1, '2012-07-23 10:53:19'),
(395, 'custom_validation_bank_type_name_not_available', NULL, 1, '2012-07-23 10:56:28', NULL, '0000-00-00 00:00:00'),
(396, 'custom_validation_bank_branch_name_not_available', NULL, 1, '2012-07-23 11:01:53', NULL, '0000-00-00 00:00:00'),
(397, 'custom_validation_bank_branch_code_not_available', NULL, 1, '2012-07-23 11:10:20', NULL, '0000-00-00 00:00:00'),
(398, 'custom_validation_country_name_not_available', NULL, 1, '2012-07-23 11:18:45', NULL, '0000-00-00 00:00:00'),
(399, 'custom_validation_country_code_not_available', NULL, 1, '2012-07-23 11:20:43', 1, '2012-07-23 11:21:47'),
(400, 'custom_validation_state_code_not_available', NULL, 1, '2012-07-23 11:46:40', NULL, '0000-00-00 00:00:00'),
(401, 'custom_validation_state_name_not_available', NULL, 1, '2012-07-23 11:47:43', NULL, '0000-00-00 00:00:00'),
(402, 'custom_validation_city_code_not_available', NULL, 1, '2012-07-23 11:55:57', 1, '2012-07-23 11:56:22'),
(403, 'custom_validation_city_name_not_available', NULL, 1, '2012-07-23 11:56:52', NULL, '0000-00-00 00:00:00'),
(404, 'custom_validation_im_name_not_available', NULL, 1, '2012-07-23 12:15:10', NULL, '0000-00-00 00:00:00'),
(405, 'custom_validation_kbli_name_not_available', NULL, 1, '2012-07-23 12:35:42', NULL, '0000-00-00 00:00:00'),
(406, 'custom_validation_kbli_code_not_available', NULL, 1, '2012-07-23 12:36:12', NULL, '0000-00-00 00:00:00'),
(407, 'custom_validation_structural_position_name_not_available', NULL, 1, '2012-07-23 13:10:42', NULL, '0000-00-00 00:00:00'),
(408, 'custom_validation_structural_position_code_not_available', NULL, 1, '2012-07-23 13:11:36', NULL, '0000-00-00 00:00:00'),
(409, 'train_date', NULL, 1, '2012-07-23 13:26:24', 1, '2012-07-23 13:30:08'),
(410, 'join_date', NULL, 1, '2012-07-23 13:30:38', NULL, '0000-00-00 00:00:00'),
(411, 'quit_date', NULL, 1, '2012-07-23 13:31:00', NULL, '0000-00-00 00:00:00'),
(412, 'approved_by', NULL, 1, '2012-07-23 15:03:31', 1, '2012-07-23 15:05:06'),
(413, 'employee_contract ', NULL, 1, '2012-07-24 08:43:26', NULL, '0000-00-00 00:00:00'),
(414, 'employee_contract_list', NULL, 1, '2012-07-24 08:43:50', NULL, '0000-00-00 00:00:00'),
(415, 'empty_field_if_no_changes', NULL, 1, '2012-07-24 10:08:34', NULL, '0000-00-00 00:00:00'),
(416, 'one_month_before_expired', NULL, 1, '2012-07-24 10:09:36', NULL, '0000-00-00 00:00:00'),
(417, 'two_weeks_before_expired', NULL, 1, '2012-07-24 10:10:50', NULL, '0000-00-00 00:00:00'),
(418, 'one_week_before_expired', NULL, 1, '2012-07-24 10:11:32', NULL, '0000-00-00 00:00:00'),
(419, 'one_day_before_expired', NULL, 1, '2012-07-24 10:12:11', NULL, '0000-00-00 00:00:00'),
(420, 'reminder_1st', NULL, 1, '2012-07-24 10:13:43', 1, '2012-07-24 10:14:41'),
(421, 'reminder_2st', NULL, 1, '2012-07-24 10:14:04', 1, '2012-07-24 10:14:34'),
(422, 'reminder_3st', NULL, 1, '2012-07-24 10:15:37', NULL, '0000-00-00 00:00:00'),
(423, 'final_reminder', NULL, 1, '2012-07-24 10:16:44', NULL, '0000-00-00 00:00:00'),
(424, 'month', NULL, 1, '2012-07-24 10:24:45', NULL, '0000-00-00 00:00:00'),
(425, 'year', NULL, 1, '2012-07-24 10:24:54', NULL, '0000-00-00 00:00:00'),
(426, 'identity', NULL, 1, '2012-07-24 12:58:24', 1, '2013-11-06 09:19:12'),
(427, 'identity_list', NULL, 1, '2012-07-24 12:58:42', NULL, '0000-00-00 00:00:00'),
(428, 'wok_period_type', NULL, 1, '2012-07-24 13:07:29', NULL, '0000-00-00 00:00:00'),
(429, 'status_change', NULL, 1, '2012-07-24 13:29:59', NULL, '0000-00-00 00:00:00'),
(430, 'by_employee', NULL, 1, '2012-07-24 13:30:16', NULL, '0000-00-00 00:00:00'),
(431, 'identity_card', NULL, 1, '2012-07-24 13:33:03', 1, '2012-07-24 13:38:54'),
(432, 'employee_detail', NULL, 1, '2012-07-25 08:02:07', NULL, '0000-00-00 00:00:00'),
(433, 'employee', NULL, 1, '2012-07-25 08:04:06', NULL, '0000-00-00 00:00:00'),
(434, 'driving_license', NULL, 1, '2012-07-25 08:20:03', 1, '2012-07-25 08:41:00'),
(435, 'driving_license_list', NULL, 1, '2012-07-25 08:20:29', NULL, '0000-00-00 00:00:00'),
(436, 'occupation', NULL, 1, '2012-07-25 08:41:13', NULL, '0000-00-00 00:00:00'),
(437, 'valid_date', NULL, 1, '2012-07-25 08:57:38', NULL, '0000-00-00 00:00:00'),
(438, 'passport', NULL, 1, '2012-07-25 10:28:09', NULL, '0000-00-00 00:00:00'),
(439, 'passport_list', NULL, 1, '2012-07-25 10:28:39', NULL, '0000-00-00 00:00:00'),
(440, 'date_of_issue', NULL, 1, '2012-07-25 10:32:16', 1, '2012-07-25 11:21:08'),
(441, 'date_of_expired', NULL, 1, '2012-07-25 10:32:43', 1, '2012-07-25 11:20:53'),
(442, 'country_code', NULL, 1, '2012-07-25 10:34:07', NULL, '0000-00-00 00:00:00'),
(443, 'passport_no', NULL, 1, '2012-07-25 10:51:10', 1, '2012-07-25 10:54:08'),
(444, 'nationality', NULL, 1, '2012-07-25 11:13:22', NULL, '0000-00-00 00:00:00'),
(445, 'issuing_office', NULL, 1, '2012-07-25 11:23:14', NULL, '0000-00-00 00:00:00'),
(446, 'status_input_from', NULL, 1, '2012-07-25 12:37:28', NULL, '0000-00-00 00:00:00'),
(447, 'back_office', NULL, 1, '2012-07-25 12:42:50', NULL, '0000-00-00 00:00:00'),
(448, 'visa', NULL, 1, '2012-07-25 13:04:35', NULL, '0000-00-00 00:00:00'),
(449, 'visa_list', NULL, 1, '2012-07-25 13:04:52', NULL, '0000-00-00 00:00:00'),
(450, 'visa_type', NULL, 1, '2012-07-25 13:07:19', NULL, '0000-00-00 00:00:00'),
(451, 'visa_no', NULL, 1, '2012-07-25 13:18:10', NULL, '0000-00-00 00:00:00'),
(452, 'entry_code', NULL, 1, '2012-07-25 13:20:08', NULL, '0000-00-00 00:00:00'),
(453, 'max_stay', NULL, 1, '2012-07-25 13:23:04', NULL, '0000-00-00 00:00:00'),
(454, 'in_days', NULL, 1, '2012-07-25 13:23:24', NULL, '0000-00-00 00:00:00'),
(455, 'other_identity', NULL, 1, '2012-07-25 14:41:52', 1, '2012-07-25 14:42:37'),
(456, 'other_identity_list', NULL, 1, '2012-07-25 14:43:00', NULL, '0000-00-00 00:00:00'),
(457, 'address_list', NULL, 1, '2012-07-26 08:39:26', NULL, '0000-00-00 00:00:00'),
(458, 'address_category', NULL, 1, '2012-07-26 08:42:45', NULL, '0000-00-00 00:00:00'),
(459, 'village', NULL, 1, '2012-07-26 09:14:43', NULL, '0000-00-00 00:00:00'),
(460, 'postal_code', NULL, 1, '2012-07-26 09:21:31', NULL, '0000-00-00 00:00:00'),
(461, 'fax_number', NULL, 1, '2012-07-26 09:33:09', NULL, '0000-00-00 00:00:00'),
(462, 'area_code', NULL, 1, '2012-07-26 10:45:48', NULL, '0000-00-00 00:00:00'),
(463, 'phone_list', NULL, 1, '2012-07-26 10:48:37', NULL, '0000-00-00 00:00:00'),
(464, 'example ', NULL, 1, '2012-07-26 11:07:58', NULL, '0000-00-00 00:00:00'),
(465, 'street', NULL, 1, '2012-07-26 11:25:42', NULL, '0000-00-00 00:00:00'),
(466, 'email_list', NULL, 1, '2012-07-26 11:37:36', NULL, '0000-00-00 00:00:00'),
(467, 'im', NULL, 1, '2012-07-26 13:19:46', NULL, '0000-00-00 00:00:00'),
(468, 'im_list', NULL, 1, '2012-07-26 13:20:38', NULL, '0000-00-00 00:00:00'),
(469, 'im_client', NULL, 1, '2012-07-26 13:22:43', NULL, '0000-00-00 00:00:00'),
(470, 'im_icon', NULL, 1, '2012-07-26 13:23:37', NULL, '0000-00-00 00:00:00'),
(471, 'pin', NULL, 1, '2012-07-26 13:23:46', NULL, '0000-00-00 00:00:00'),
(472, 'social_media', NULL, 1, '2012-07-26 15:19:12', NULL, '0000-00-00 00:00:00'),
(473, 'social_media_list', NULL, 1, '2012-07-26 15:19:33', NULL, '0000-00-00 00:00:00'),
(474, 'website', NULL, 1, '2012-07-27 08:19:17', NULL, '0000-00-00 00:00:00'),
(475, 'website_list', NULL, 1, '2012-07-27 08:19:38', NULL, '0000-00-00 00:00:00'),
(476, 'relation', NULL, 1, '2012-07-27 08:52:39', NULL, '0000-00-00 00:00:00'),
(477, 'referral', NULL, 1, '2012-07-27 08:53:03', NULL, '0000-00-00 00:00:00'),
(478, 'referral_list', NULL, 1, '2012-07-27 08:54:17', NULL, '0000-00-00 00:00:00'),
(479, 'mobile', NULL, 1, '2012-07-27 09:14:56', NULL, '0000-00-00 00:00:00'),
(480, 'period_of_study', NULL, 1, '2012-07-27 10:53:59', NULL, '0000-00-00 00:00:00'),
(481, 'length_of_study', NULL, 1, '2012-07-27 10:54:24', NULL, '0000-00-00 00:00:00'),
(482, 'formal_education', NULL, 1, '2012-07-27 10:54:49', NULL, '0000-00-00 00:00:00'),
(483, 'formal_education_list', NULL, 1, '2012-07-27 10:55:16', NULL, '0000-00-00 00:00:00'),
(484, 'level', NULL, 1, '2012-07-27 11:00:34', NULL, '0000-00-00 00:00:00'),
(485, 'education', NULL, 1, '2012-07-27 11:05:26', NULL, '0000-00-00 00:00:00'),
(486, 'definition', NULL, 1, '2012-07-27 11:08:04', 1, '2013-11-06 09:43:55'),
(487, 'akademik_degree', NULL, 1, '2012-07-27 12:54:36', NULL, '0000-00-00 00:00:00'),
(488, 'prefix', NULL, 1, '2012-07-27 12:55:22', 1, '2012-07-27 12:56:08'),
(489, 'sufix', NULL, 1, '2012-07-27 12:55:34', NULL, '0000-00-00 00:00:00'),
(491, 'total_semester', NULL, 1, '2012-07-27 13:32:52', NULL, '0000-00-00 00:00:00'),
(492, 'in_year', NULL, 1, '2012-07-27 13:33:12', NULL, '0000-00-00 00:00:00'),
(493, 'in_semester', NULL, 1, '2012-07-27 13:33:31', NULL, '0000-00-00 00:00:00'),
(494, 'ipk', NULL, 1, '2012-07-27 13:34:54', NULL, '0000-00-00 00:00:00'),
(495, 'diploma_number', NULL, 1, '2012-07-27 13:36:29', NULL, '0000-00-00 00:00:00'),
(496, 'diploma_legalized_date', NULL, 1, '2012-07-27 13:38:11', NULL, '0000-00-00 00:00:00'),
(497, 'certificate_year', NULL, 1, '2012-07-30 10:02:11', 1, '2012-07-30 11:14:50'),
(498, 'seminar', NULL, 1, '2012-07-30 10:20:10', NULL, '0000-00-00 00:00:00'),
(499, 'seminar_list', NULL, 1, '2012-07-30 10:20:30', NULL, '0000-00-00 00:00:00'),
(500, 'workshop', NULL, 1, '2012-07-30 10:21:11', 1, '2012-07-30 11:11:45'),
(501, 'workshop_list', NULL, 1, '2012-07-30 10:21:41', NULL, '0000-00-00 00:00:00'),
(502, 'theme', NULL, 1, '2012-07-30 11:12:09', NULL, '0000-00-00 00:00:00'),
(503, 'background', NULL, 1, '2012-07-30 11:12:28', NULL, '0000-00-00 00:00:00'),
(504, 'seminar_name', NULL, 1, '2012-07-30 11:12:45', NULL, '0000-00-00 00:00:00'),
(505, 'role', NULL, 1, '2012-07-30 11:12:57', NULL, '0000-00-00 00:00:00'),
(506, 'info', NULL, 1, '2012-07-30 11:13:17', NULL, '0000-00-00 00:00:00'),
(507, 'trainer', NULL, 1, '2012-07-30 11:13:43', NULL, '0000-00-00 00:00:00'),
(508, 'trainer_profile', NULL, 1, '2012-07-30 11:13:57', NULL, '0000-00-00 00:00:00'),
(509, 'duration', NULL, 1, '2012-07-30 11:15:34', NULL, '0000-00-00 00:00:00'),
(510, 'date_of_implementation', NULL, 1, '2012-07-30 11:15:58', NULL, '0000-00-00 00:00:00'),
(511, 'organizer', NULL, 1, '2012-07-30 11:16:16', NULL, '0000-00-00 00:00:00'),
(512, 'workshop_name', NULL, 1, '2012-07-30 11:16:39', NULL, '0000-00-00 00:00:00'),
(513, 'session', NULL, 1, '2012-07-30 11:16:53', NULL, '0000-00-00 00:00:00'),
(514, 'place', NULL, 1, '2012-07-30 11:17:17', NULL, '0000-00-00 00:00:00'),
(515, 'building', NULL, 1, '2012-07-30 11:17:33', NULL, '0000-00-00 00:00:00'),
(516, 'start', NULL, 1, '2012-07-30 11:17:54', NULL, '0000-00-00 00:00:00'),
(517, 'end', NULL, 1, '2012-07-30 11:18:02', NULL, '0000-00-00 00:00:00'),
(518, 'in_hour', NULL, 1, '2012-07-30 11:19:28', NULL, '0000-00-00 00:00:00'),
(519, 'work_period', NULL, 1, '2012-07-30 11:33:59', 1, '2012-07-30 11:34:19'),
(520, 'work_experience ', NULL, 1, '2012-07-30 11:35:03', NULL, '0000-00-00 00:00:00'),
(521, 'work_experience_list', NULL, 1, '2012-07-30 11:35:23', NULL, '0000-00-00 00:00:00'),
(522, 'company_information', NULL, 1, '2012-07-30 11:47:11', NULL, '0000-00-00 00:00:00'),
(523, 'work_reference', NULL, 1, '2012-07-30 11:57:48', NULL, '0000-00-00 00:00:00'),
(524, 'start_date', NULL, 1, '2012-07-30 12:00:57', NULL, '0000-00-00 00:00:00'),
(525, 'contact_no', NULL, 1, '2012-07-30 12:01:11', NULL, '0000-00-00 00:00:00'),
(526, 'work_referral', NULL, 1, '2012-07-30 12:02:04', NULL, '0000-00-00 00:00:00'),
(527, 'semester', NULL, 1, '2012-07-30 15:28:16', NULL, '0000-00-00 00:00:00'),
(528, 'project_name', NULL, 1, '2012-07-31 08:23:11', NULL, '0000-00-00 00:00:00'),
(529, 'contract', NULL, 1, '2012-07-31 08:23:22', NULL, '0000-00-00 00:00:00'),
(530, 'service_users', NULL, 1, '2012-07-31 08:24:33', NULL, '0000-00-00 00:00:00'),
(531, 'client', NULL, 1, '2012-07-31 08:24:49', NULL, '0000-00-00 00:00:00'),
(532, 'project_year', NULL, 1, '2012-07-31 08:26:25', NULL, '0000-00-00 00:00:00'),
(533, 'project_experience', NULL, 1, '2012-07-31 08:27:09', NULL, '0000-00-00 00:00:00'),
(534, 'project_experience_list', NULL, 1, '2012-07-31 08:27:28', NULL, '0000-00-00 00:00:00'),
(535, 'project_location', NULL, 1, '2012-07-31 08:40:56', NULL, '0000-00-00 00:00:00'),
(536, 'project_desc', NULL, 1, '2012-07-31 08:41:18', NULL, '0000-00-00 00:00:00'),
(537, 'on_behalf_the_company', NULL, 1, '2012-07-31 08:41:51', NULL, '0000-00-00 00:00:00'),
(538, 'job_desc', NULL, 1, '2012-07-31 08:48:53', NULL, '0000-00-00 00:00:00'),
(539, 'project_period', NULL, 1, '2012-07-31 08:49:21', 1, '2012-07-31 08:49:38'),
(540, 'reference_letter', NULL, 1, '2012-07-31 08:50:16', 1, '2012-07-31 08:50:47'),
(541, 'task_desc', NULL, 1, '2012-07-31 09:52:04', 1, '2012-07-31 09:56:41'),
(542, 'organization_experience', NULL, 1, '2012-07-31 10:11:14', NULL, '0000-00-00 00:00:00'),
(543, 'organization_experience_list', NULL, 1, '2012-07-31 10:11:34', NULL, '0000-00-00 00:00:00'),
(544, 'organization_name', NULL, 1, '2012-07-31 10:17:35', 1, '2012-07-31 10:26:45'),
(545, 'organization_period', NULL, 1, '2012-07-31 10:31:11', NULL, '0000-00-00 00:00:00'),
(546, 'role_desc', NULL, 1, '2012-07-31 10:31:35', NULL, '0000-00-00 00:00:00'),
(547, 'achievement_experience', NULL, 1, '2012-07-31 11:19:57', NULL, '0000-00-00 00:00:00'),
(548, 'achievement_experience_list', NULL, 1, '2012-07-31 11:20:19', NULL, '0000-00-00 00:00:00'),
(549, 'achievement_name', NULL, 1, '2012-07-31 11:22:04', NULL, '0000-00-00 00:00:00'),
(550, 'achievement_desc', NULL, 1, '2012-07-31 11:26:14', 1, '2013-05-02 15:57:55'),
(551, 'achievement_year', NULL, 1, '2012-07-31 11:28:49', NULL, '0000-00-00 00:00:00'),
(553, 'pic_name', NULL, 1, '2012-07-31 12:53:40', 1, '2012-09-28 16:15:59'),
(554, 'batchcode', NULL, 1, '2012-07-31 12:53:54', 1, '2012-08-14 09:49:33'),
(555, 'expired', NULL, 1, '2012-07-31 12:54:17', NULL, '0000-00-00 00:00:00'),
(556, 'certification', NULL, 1, '2012-07-31 12:54:31', 1, '2012-07-31 12:55:14'),
(557, 'certification_list', NULL, 1, '2012-07-31 12:55:31', NULL, '0000-00-00 00:00:00'),
(558, 'certification_name', NULL, 1, '2012-07-31 12:56:03', NULL, '0000-00-00 00:00:00'),
(559, 'service_provider', NULL, 1, '2012-07-31 13:06:17', NULL, '0000-00-00 00:00:00'),
(560, 'quotation_date', NULL, 1, '2012-07-31 13:10:04', NULL, '0000-00-00 00:00:00'),
(561, 'result', NULL, 1, '2012-07-31 13:14:33', 1, '2012-11-23 08:28:47'),
(562, 'official_name', NULL, 1, '2012-07-31 13:14:51', NULL, '0000-00-00 00:00:00'),
(563, 'official_position', NULL, 1, '2012-07-31 13:15:10', NULL, '0000-00-00 00:00:00'),
(564, 'if_there_is', NULL, 1, '2012-07-31 13:15:29', NULL, '0000-00-00 00:00:00'),
(565, 'all', NULL, 1, '2012-07-31 13:20:06', NULL, '0000-00-00 00:00:00'),
(566, 'supervisor', NULL, 1, '2012-07-31 14:29:57', 1, '2012-07-31 14:30:29'),
(567, 'medical_record_type', NULL, 1, '2012-07-31 14:35:04', NULL, '0000-00-00 00:00:00'),
(568, 'supervision', NULL, 1, '2012-07-31 15:00:23', 1, '2012-07-31 15:00:46'),
(569, 'supervision_list', NULL, 1, '2012-07-31 15:01:12', NULL, '0000-00-00 00:00:00'),
(570, 'functional_position', NULL, 1, '2012-08-01 09:41:42', NULL, '0000-00-00 00:00:00'),
(571, 'functional_position_list', NULL, 1, '2012-08-01 09:42:12', NULL, '0000-00-00 00:00:00'),
(572, 'grade', NULL, 1, '2012-08-01 10:36:29', NULL, '0000-00-00 00:00:00'),
(573, 'grade_list', NULL, 1, '2012-08-01 10:36:45', NULL, '0000-00-00 00:00:00'),
(574, 'marital_status', NULL, 1, '2012-08-01 12:35:19', NULL, '0000-00-00 00:00:00'),
(575, 'marital_status_list', NULL, 1, '2012-08-01 12:35:38', NULL, '0000-00-00 00:00:00'),
(576, 'marriage_date', NULL, 1, '2012-08-01 12:55:11', NULL, '0000-00-00 00:00:00'),
(577, 'salary_amount', NULL, 1, '2012-08-01 15:30:06', NULL, '0000-00-00 00:00:00'),
(578, 'basic_salary', NULL, 1, '2012-08-01 15:31:31', NULL, '0000-00-00 00:00:00'),
(579, 'basic_salary_list', NULL, 1, '2012-08-01 15:31:53', NULL, '0000-00-00 00:00:00'),
(580, 'punishment_type', NULL, 1, '2012-08-01 15:59:15', NULL, '0000-00-00 00:00:00'),
(581, 'punishment_level', NULL, 1, '2012-08-02 08:20:23', 1, '2012-08-02 08:20:57'),
(582, 'punishment', NULL, 1, '2012-08-02 08:36:51', NULL, '0000-00-00 00:00:00'),
(583, 'punishment_list', NULL, 1, '2012-08-02 08:37:16', NULL, '0000-00-00 00:00:00'),
(584, 'work_service_adjusment', NULL, 1, '2012-08-02 09:57:33', NULL, '0000-00-00 00:00:00'),
(585, 'work_service_adjusment_list', NULL, 1, '2012-08-02 09:57:53', NULL, '0000-00-00 00:00:00'),
(586, 'start_period', NULL, 1, '2012-08-02 10:01:17', NULL, '0000-00-00 00:00:00'),
(587, 'january', NULL, 1, '2012-08-02 11:35:55', NULL, '0000-00-00 00:00:00'),
(588, 'february', NULL, 1, '2012-08-02 11:36:14', NULL, '0000-00-00 00:00:00'),
(589, 'march', NULL, 1, '2012-08-02 11:36:25', NULL, '0000-00-00 00:00:00'),
(590, 'april', NULL, 1, '2012-08-02 11:36:39', NULL, '0000-00-00 00:00:00'),
(591, 'may', NULL, 1, '2012-08-02 11:36:52', NULL, '0000-00-00 00:00:00'),
(592, 'june', NULL, 1, '2012-08-02 11:37:18', NULL, '0000-00-00 00:00:00'),
(593, 'july', NULL, 1, '2012-08-02 11:37:40', NULL, '0000-00-00 00:00:00'),
(594, 'august', NULL, 1, '2012-08-02 11:37:55', NULL, '0000-00-00 00:00:00'),
(595, 'september', NULL, 1, '2012-08-02 11:38:13', NULL, '0000-00-00 00:00:00'),
(596, 'october', NULL, 1, '2012-08-02 11:38:25', NULL, '0000-00-00 00:00:00'),
(597, 'november', NULL, 1, '2012-08-02 11:38:45', NULL, '0000-00-00 00:00:00'),
(598, 'december', NULL, 1, '2012-08-02 11:39:09', NULL, '0000-00-00 00:00:00'),
(599, 'service_duty', NULL, 1, '2012-08-02 12:07:28', NULL, '0000-00-00 00:00:00'),
(600, 'service_duty_list', NULL, 1, '2012-08-02 12:07:44', 1, '2012-08-02 12:09:10'),
(601, 'service_duty_period', NULL, 1, '2012-08-02 12:08:02', NULL, '0000-00-00 00:00:00'),
(602, 'informal_education', NULL, 1, '2012-08-02 13:01:57', NULL, '0000-00-00 00:00:00'),
(603, 'informal_education_list', NULL, 1, '2012-08-02 13:03:02', NULL, '0000-00-00 00:00:00'),
(604, 'nonformal_education', NULL, 1, '2012-08-02 13:05:59', NULL, '0000-00-00 00:00:00'),
(605, 'nonformal_education_list', NULL, 1, '2012-08-02 13:07:15', NULL, '0000-00-00 00:00:00'),
(606, 'instant_messaging', NULL, 1, '2012-08-02 15:40:35', NULL, '0000-00-00 00:00:00'),
(607, 'biodata', NULL, 1, '2012-08-02 15:53:43', NULL, '0000-00-00 00:00:00'),
(608, 'contacts', NULL, 1, '2012-08-02 15:53:58', NULL, '0000-00-00 00:00:00'),
(609, 'personal_information', NULL, 1, '2012-08-03 08:03:43', NULL, '0000-00-00 00:00:00'),
(610, 'medical_history', NULL, 1, '2012-08-03 08:39:42', NULL, '0000-00-00 00:00:00'),
(611, 'medical_history_list', NULL, 1, '2012-08-03 08:40:10', NULL, '0000-00-00 00:00:00'),
(612, 'disease_name', NULL, 1, '2012-08-03 09:45:20', NULL, '0000-00-00 00:00:00'),
(613, 'medical_action', NULL, 1, '2012-08-03 09:46:45', NULL, '0000-00-00 00:00:00'),
(614, 'action_date', NULL, 1, '2012-08-03 09:47:28', NULL, '0000-00-00 00:00:00');
INSERT INTO `gtfw_key` (`key_id`, `key_code`, `key_desc`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`) VALUES
(615, 'time_period', NULL, 1, '2012-08-03 09:48:34', NULL, '0000-00-00 00:00:00'),
(616, 'had_surgery', NULL, 1, '2012-08-03 10:22:10', NULL, '0000-00-00 00:00:00'),
(617, 'disease_who_had_suffered', NULL, 1, '2012-08-03 10:23:37', NULL, '0000-00-00 00:00:00'),
(618, 'age_at_illness', NULL, 1, '2012-08-03 10:32:01', NULL, '0000-00-00 00:00:00'),
(619, 'day', NULL, 1, '2012-08-03 10:34:25', NULL, '0000-00-00 00:00:00'),
(620, 'specialization', NULL, 1, '2012-08-03 10:39:04', NULL, '0000-00-00 00:00:00'),
(621, 'type', NULL, 1, '2012-08-03 10:39:26', NULL, '0000-00-00 00:00:00'),
(622, 'doctor_contact', NULL, 1, '2012-08-03 10:42:11', NULL, '0000-00-00 00:00:00'),
(623, 'hospital', NULL, 1, '2012-08-03 10:42:48', NULL, '0000-00-00 00:00:00'),
(624, 'hospital_address', NULL, 1, '2012-08-03 10:46:03', NULL, '0000-00-00 00:00:00'),
(625, 'clinic', NULL, 1, '2012-08-03 10:47:16', NULL, '0000-00-00 00:00:00'),
(626, 'doctor', NULL, 1, '2012-08-03 10:47:43', NULL, '0000-00-00 00:00:00'),
(627, 'week', NULL, 1, '2012-08-03 10:49:49', 1, '2012-08-03 11:08:50'),
(628, 'medical_diagnosis', NULL, 1, '2012-08-03 13:03:18', NULL, '0000-00-00 00:00:00'),
(629, 'medical_diagnosis_list', NULL, 1, '2012-08-03 13:04:16', NULL, '0000-00-00 00:00:00'),
(630, 'diagnosis', NULL, 1, '2012-08-03 13:14:29', 1, '2012-08-03 13:14:46'),
(631, 'diagnosis_of_disease', NULL, 1, '2012-08-03 13:29:37', NULL, '0000-00-00 00:00:00'),
(632, 'symptom', NULL, 1, '2012-08-03 13:36:24', NULL, '0000-00-00 00:00:00'),
(633, 'personal_action', NULL, 1, '2012-08-03 13:38:50', NULL, '0000-00-00 00:00:00'),
(634, 'drug', NULL, 1, '2012-08-03 13:41:58', NULL, '0000-00-00 00:00:00'),
(635, 'drug_reaction', NULL, 1, '2012-08-03 13:43:46', NULL, '0000-00-00 00:00:00'),
(636, 'drug_time_period', NULL, 1, '2012-08-03 13:45:55', NULL, '0000-00-00 00:00:00'),
(637, 'complication', NULL, 1, '2012-08-03 13:46:41', NULL, '0000-00-00 00:00:00'),
(638, 'medical_record', NULL, 1, '2012-08-03 14:49:48', NULL, '0000-00-00 00:00:00'),
(639, 'medical_record_list', NULL, 1, '2012-08-03 14:50:08', NULL, '0000-00-00 00:00:00'),
(640, 'medical_record_documents', NULL, 1, '2012-08-03 14:53:11', NULL, '0000-00-00 00:00:00'),
(641, 'document_name', NULL, 1, '2012-08-03 14:53:53', NULL, '0000-00-00 00:00:00'),
(642, 'education_history', NULL, 1, '2012-08-05 09:22:12', NULL, '0000-00-00 00:00:00'),
(643, 'competence', NULL, 1, '2012-08-05 09:51:21', 1, '2012-08-05 09:51:42'),
(644, 'you_can_add_more_than_one', NULL, 1, '2012-08-06 08:47:04', NULL, '0000-00-00 00:00:00'),
(645, 'select_language', NULL, 1, '2012-08-06 08:47:44', NULL, '0000-00-00 00:00:00'),
(646, 'select_language_fluent_type', NULL, 1, '2012-08-06 08:48:15', NULL, '0000-00-00 00:00:00'),
(647, 'select_language_quality_type', NULL, 1, '2012-08-06 08:48:49', NULL, '0000-00-00 00:00:00'),
(648, 'fluent', NULL, 1, '2012-08-06 08:50:02', NULL, '0000-00-00 00:00:00'),
(649, 'quality', NULL, 1, '2012-08-06 08:50:13', NULL, '0000-00-00 00:00:00'),
(650, 'language_competence', NULL, 1, '2012-08-06 08:50:49', NULL, '0000-00-00 00:00:00'),
(651, 'language_competence_list', NULL, 1, '2012-08-06 08:51:09', NULL, '0000-00-00 00:00:00'),
(652, 'language_certificate', NULL, 1, '2012-08-06 08:59:16', 1, '2012-08-06 08:59:36'),
(653, 'score', NULL, 1, '2012-08-06 08:59:49', NULL, '0000-00-00 00:00:00'),
(654, 'certificate', NULL, 1, '2012-08-06 09:11:19', NULL, '0000-00-00 00:00:00'),
(655, 'account_type', NULL, 1, '2012-08-07 08:40:08', NULL, '0000-00-00 00:00:00'),
(656, 'account_segment', NULL, 1, '2012-08-07 08:47:50', NULL, '0000-00-00 00:00:00'),
(657, 'bussiness_model', NULL, 1, '2012-08-07 09:17:37', NULL, '0000-00-00 00:00:00'),
(658, 'confidence_level', NULL, 1, '2012-08-07 11:19:44', 1, '2013-07-16 13:42:25'),
(659, 'is_end', NULL, 1, '2012-08-07 11:34:11', 1, '2013-09-04 08:24:21'),
(660, 'prospect_stage', NULL, 1, '2012-08-07 11:34:53', 1, '2012-08-07 11:36:24'),
(661, 'priority_level', NULL, 1, '2012-08-07 11:50:38', 1, '2012-08-07 11:59:23'),
(662, 'lead_source', NULL, 1, '2012-08-07 12:37:06', 1, '2012-09-28 18:15:03'),
(663, 'opportunity_file_type', NULL, 1, '2012-08-07 12:56:47', 1, '2012-09-28 15:15:13'),
(664, 'population', NULL, 1, '2012-08-09 10:57:13', NULL, '0000-00-00 00:00:00'),
(665, 'transaction', NULL, 1, '2012-08-09 14:23:46', 1, '2012-08-09 14:25:11'),
(666, 'technical_competence', NULL, 1, '2012-08-13 10:58:24', NULL, '0000-00-00 00:00:00'),
(667, 'health_information', NULL, 1, '2012-08-13 11:01:16', NULL, '0000-00-00 00:00:00'),
(668, 'work_service_adjustment', NULL, 1, '2012-08-13 11:14:10', NULL, '0000-00-00 00:00:00'),
(669, 'employee_unit', NULL, 1, '2012-08-13 11:16:44', NULL, '0000-00-00 00:00:00'),
(670, 'bank_account', NULL, 1, '2012-08-13 11:23:00', NULL, '0000-00-00 00:00:00'),
(671, 'account_no', NULL, 1, '2012-08-13 11:24:23', NULL, '0000-00-00 00:00:00'),
(672, 'card_holder', NULL, 1, '2012-08-13 11:30:34', NULL, '0000-00-00 00:00:00'),
(673, 'npwp', NULL, 1, '2012-08-13 11:38:08', NULL, '0000-00-00 00:00:00'),
(674, 'npwp_no', NULL, 1, '2012-08-13 11:38:46', NULL, '0000-00-00 00:00:00'),
(675, 'registered_date', NULL, 1, '2012-08-13 11:39:17', NULL, '0000-00-00 00:00:00'),
(676, 'jamsostek', NULL, 1, '2012-08-13 11:46:34', NULL, '0000-00-00 00:00:00'),
(677, 'kpj_no', NULL, 1, '2012-08-13 11:47:11', NULL, '0000-00-00 00:00:00'),
(678, 'use_of_basic_salary', NULL, 1, '2012-08-13 11:52:02', NULL, '0000-00-00 00:00:00'),
(679, 'birth_date', NULL, 1, '2012-08-13 11:57:33', NULL, '0000-00-00 00:00:00'),
(680, 'health_insurance', NULL, 1, '2012-08-13 11:59:38', NULL, '0000-00-00 00:00:00'),
(681, 'askes', NULL, 1, '2012-08-13 12:00:09', NULL, '0000-00-00 00:00:00'),
(682, 'askes_no', NULL, 1, '2012-08-13 12:01:38', NULL, '0000-00-00 00:00:00'),
(683, 'registered_address', NULL, 1, '2012-08-13 12:02:22', NULL, '0000-00-00 00:00:00'),
(684, 'health_insurance_askes', NULL, 1, '2012-08-13 12:48:38', NULL, '0000-00-00 00:00:00'),
(685, 'external_insurance', NULL, 1, '2012-08-13 12:52:57', NULL, '0000-00-00 00:00:00'),
(686, 'internal_insurance', NULL, 1, '2012-08-13 13:04:06', NULL, '0000-00-00 00:00:00'),
(687, 'vendor_address', NULL, 1, '2012-08-13 14:14:40', NULL, '0000-00-00 00:00:00'),
(688, 'vendor_email', NULL, 1, '2012-08-13 14:15:11', NULL, '0000-00-00 00:00:00'),
(689, 'vendor_phone', NULL, 1, '2012-08-13 14:15:56', NULL, '0000-00-00 00:00:00'),
(690, 'vendor_fax', NULL, 1, '2012-08-13 14:16:17', NULL, '0000-00-00 00:00:00'),
(691, 'print_html', NULL, 1, '2012-08-13 14:26:09', 1, '2012-10-01 09:50:06'),
(692, 'flush', NULL, 1, '2012-08-13 14:31:04', NULL, '0000-00-00 00:00:00'),
(693, 'menu', NULL, 1, '2012-08-13 14:41:09', NULL, '0000-00-00 00:00:00'),
(694, 'module', NULL, 1, '2012-08-13 14:41:25', NULL, '0000-00-00 00:00:00'),
(695, 'description', NULL, 1, '2012-08-13 14:41:49', 1, '2013-05-02 15:56:27'),
(696, 'table', NULL, 1, '2012-08-13 14:42:16', NULL, '0000-00-00 00:00:00'),
(697, 'real_name', NULL, 1, '2012-08-13 14:42:24', NULL, '0000-00-00 00:00:00'),
(698, 'kurs', NULL, 1, '2012-08-13 14:49:26', NULL, '0000-00-00 00:00:00'),
(699, 'received', NULL, 1, '2012-08-13 14:59:54', NULL, '0000-00-00 00:00:00'),
(700, 'good', NULL, 1, '2012-08-13 15:00:22', NULL, '0000-00-00 00:00:00'),
(701, 'broken', NULL, 1, '2012-08-13 15:00:48', NULL, '0000-00-00 00:00:00'),
(702, 'missing', NULL, 1, '2012-08-13 15:01:09', NULL, '0000-00-00 00:00:00'),
(703, 'group', NULL, 1, '2012-08-13 15:01:35', NULL, '0000-00-00 00:00:00'),
(707, 'menu_name', NULL, 1, '2012-08-13 15:16:58', NULL, '0000-00-00 00:00:00'),
(708, 'retur', NULL, 1, '2012-08-13 15:17:58', NULL, '0000-00-00 00:00:00'),
(709, 'export', NULL, 1, '2012-08-13 15:18:51', 1, '2012-08-13 15:42:47'),
(710, 'module_name', NULL, 1, '2012-08-13 15:19:16', NULL, '0000-00-00 00:00:00'),
(711, 'documentation', NULL, 1, '2012-08-13 15:24:50', NULL, '0000-00-00 00:00:00'),
(712, 'approve', NULL, 1, '2012-08-13 15:25:03', NULL, '0000-00-00 00:00:00'),
(713, 'confirm_password', NULL, 1, '2012-08-13 15:31:44', NULL, '0000-00-00 00:00:00'),
(714, 'sample_data', NULL, 1, '2012-08-13 15:37:05', NULL, '0000-00-00 00:00:00'),
(715, 'dependency_source', NULL, 1, '2012-08-13 15:41:26', NULL, '0000-00-00 00:00:00'),
(716, 'dependency_target', NULL, 1, '2012-08-13 15:45:38', 1, '2012-08-14 08:34:25'),
(717, 'recruitment_information', NULL, 1, '2012-08-14 08:02:18', NULL, '0000-00-00 00:00:00'),
(718, 'task_status', NULL, 1, '2012-08-14 08:21:01', 1, '2013-09-23 09:17:06'),
(719, 'milt', NULL, 1, '2012-08-14 08:22:42', 1, '2012-08-14 12:36:30'),
(720, 'grand_total', NULL, 1, '2012-08-14 08:24:22', NULL, '0000-00-00 00:00:00'),
(721, 'po_number', NULL, 1, '2012-08-14 08:38:17', NULL, '0000-00-00 00:00:00'),
(722, 'receive_by', NULL, 1, '2012-08-14 08:38:39', NULL, '0000-00-00 00:00:00'),
(723, 'made_by', NULL, 1, '2012-08-14 08:42:05', NULL, '0000-00-00 00:00:00'),
(724, 'create_new_do', NULL, 1, '2012-08-14 08:43:19', NULL, '0000-00-00 00:00:00'),
(725, 'activity_type', NULL, 1, '2012-08-14 08:43:55', NULL, '0000-00-00 00:00:00'),
(726, 'related_to', NULL, 1, '2012-08-14 08:55:00', NULL, '0000-00-00 00:00:00'),
(727, 'receive_date', NULL, 1, '2012-08-14 08:59:54', 1, '2012-11-05 08:54:12'),
(728, 'factur_number', NULL, 1, '2012-08-14 09:00:20', NULL, '0000-00-00 00:00:00'),
(729, 'order_date', NULL, 1, '2012-08-14 09:00:44', NULL, '0000-00-00 00:00:00'),
(730, 'accept_date', NULL, 1, '2012-08-14 09:01:39', 8, '2012-08-15 15:07:17'),
(732, 'gr_supplier', NULL, 1, '2012-08-14 09:05:25', NULL, '0000-00-00 00:00:00'),
(733, 'parsial_update', NULL, 1, '2012-08-14 09:06:23', NULL, '0000-00-00 00:00:00'),
(737, 'jasmsostek_calc_adjust_type', NULL, 1, '2012-08-14 09:12:09', 1, '2012-08-14 09:14:40'),
(738, 'unit_id', NULL, 1, '2012-08-14 09:18:08', 8, '2012-08-16 08:34:44'),
(739, 'ceo', NULL, 1, '2012-08-14 09:19:33', NULL, '0000-00-00 00:00:00'),
(740, 'buy_area_id', NULL, 1, '2012-08-14 09:21:25', NULL, '0000-00-00 00:00:00'),
(741, 'sell_area_id', NULL, 1, '2012-08-14 09:21:52', NULL, '0000-00-00 00:00:00'),
(742, 'ownership_id', NULL, 1, '2012-08-14 09:22:40', NULL, '0000-00-00 00:00:00'),
(743, 'manage_unit_id', NULL, 1, '2012-08-14 09:23:32', NULL, '0000-00-00 00:00:00'),
(744, 'last_medic_number', NULL, 1, '2012-08-14 09:24:18', NULL, '0000-00-00 00:00:00'),
(745, 'last_invoice_number', NULL, 1, '2012-08-14 09:24:49', NULL, '0000-00-00 00:00:00'),
(746, 'is_po_target', NULL, 1, '2012-08-14 09:25:12', NULL, '0000-00-00 00:00:00'),
(747, 'accept', NULL, 1, '2012-08-14 09:27:46', 8, '2012-08-15 14:45:31'),
(748, 'call_status', NULL, 1, '2012-08-14 09:30:30', 1, '2013-09-23 09:15:14'),
(749, 'field', NULL, 1, '2012-08-14 09:31:50', NULL, '0000-00-00 00:00:00'),
(750, 'null', NULL, 1, '2012-08-14 09:32:10', NULL, '0000-00-00 00:00:00'),
(751, 'extra', NULL, 1, '2012-08-14 09:32:33', NULL, '0000-00-00 00:00:00'),
(752, 'comment', NULL, 1, '2012-08-14 09:32:57', NULL, '0000-00-00 00:00:00'),
(753, 'responsible_person', NULL, 1, '2012-08-14 09:37:26', 8, '2012-08-14 15:05:51'),
(754, 'due_date', NULL, 1, '2012-08-14 09:37:58', NULL, '0000-00-00 00:00:00'),
(755, 'sender', NULL, 1, '2012-08-14 09:38:23', NULL, '0000-00-00 00:00:00'),
(756, 'cabang_tujuan', NULL, 1, '2012-08-14 09:39:57', 8, '2012-08-15 15:27:18'),
(757, 'mode', NULL, 1, '2012-08-14 09:40:16', NULL, '0000-00-00 00:00:00'),
(758, 'simple', NULL, 1, '2012-08-14 09:40:51', 1, '2012-09-21 08:22:14'),
(759, 'case_file_type', NULL, 1, '2012-08-14 09:41:14', NULL, '0000-00-00 00:00:00'),
(760, 'lost', NULL, 1, '2012-08-14 09:41:56', NULL, '0000-00-00 00:00:00'),
(761, 'kurang', NULL, 1, '2012-08-14 09:42:17', 1, '2012-08-14 12:36:17'),
(762, 'bonus', NULL, 1, '2012-08-14 09:42:51', NULL, '0000-00-00 00:00:00'),
(763, 'total_price', NULL, 1, '2012-08-14 09:45:59', NULL, '0000-00-00 00:00:00'),
(764, 'history_kurs_currency', NULL, 1, '2012-08-14 09:46:15', 1, '2012-08-14 09:58:05'),
(765, 'total_vat', NULL, 1, '2012-08-14 09:47:02', NULL, '0000-00-00 00:00:00'),
(766, 'Update', NULL, 1, '2012-08-14 09:47:27', NULL, '0000-00-00 00:00:00'),
(767, 'box', NULL, 1, '2012-08-14 09:47:33', NULL, '0000-00-00 00:00:00'),
(768, 'koli', NULL, 1, '2012-08-14 09:48:15', 1, '2012-08-14 13:14:38'),
(769, 'case_status', NULL, 1, '2012-08-14 10:01:45', NULL, '0000-00-00 00:00:00'),
(770, 'retur_supplier', NULL, 1, '2012-08-14 11:03:47', NULL, '0000-00-00 00:00:00'),
(771, 'case_type', NULL, 1, '2012-08-14 11:06:53', NULL, '0000-00-00 00:00:00'),
(772, 'input', NULL, 1, '2012-08-14 11:08:55', NULL, '0000-00-00 00:00:00'),
(773, 'faktur', NULL, 1, '2012-08-14 11:09:25', NULL, '0000-00-00 00:00:00'),
(774, 'supplier', NULL, 1, '2012-08-14 11:11:07', NULL, '0000-00-00 00:00:00'),
(775, 'receive', NULL, 1, '2012-08-14 11:14:14', NULL, '0000-00-00 00:00:00'),
(776, 'contract_file_type', NULL, 1, '2012-08-14 11:16:22', NULL, '0000-00-00 00:00:00'),
(777, 'delete', NULL, 1, '2012-08-14 11:23:44', NULL, '0000-00-00 00:00:00'),
(778, 'duration_time_type', NULL, 1, '2012-08-14 11:33:09', NULL, '0000-00-00 00:00:00'),
(779, 'value', NULL, 1, '2012-08-14 11:33:24', 1, '2012-08-14 11:40:10'),
(780, 'destination', NULL, 1, '2012-08-14 11:39:30', 8, '2012-08-15 10:46:53'),
(781, 'time', NULL, 1, '2012-08-14 11:39:40', NULL, '0000-00-00 00:00:00'),
(782, 'destination_unit_id', NULL, 1, '2012-08-14 11:40:08', 8, '2012-08-15 15:28:06'),
(783, 'internal', NULL, 1, '2012-08-14 11:43:39', 1, '2013-10-21 14:39:02'),
(784, 'meeting_status', NULL, 1, '2012-08-14 11:53:54', 1, '2013-09-23 09:15:00'),
(785, 'po_internal', NULL, 1, '2012-08-14 11:57:49', 1, '2012-10-01 05:10:49'),
(786, 'urgent', NULL, 1, '2012-08-14 12:19:09', 8, '2012-08-15 09:27:38'),
(787, 'is_urgent', NULL, 1, '2012-08-14 12:21:20', 1, '2013-09-04 08:25:57'),
(788, 'normal', NULL, 1, '2012-08-14 12:21:34', NULL, '0000-00-00 00:00:00'),
(789, 'periods', NULL, 1, '2012-08-14 12:23:01', NULL, '0000-00-00 00:00:00'),
(790, 'qty_po', NULL, 1, '2012-08-14 12:28:16', 8, '2012-08-15 10:33:37'),
(791, 'do_draft', NULL, 1, '2012-08-14 12:32:26', NULL, '0000-00-00 00:00:00'),
(792, 'sent', NULL, 1, '2012-08-14 12:32:43', 1, '2012-08-14 12:59:49'),
(794, 'deficient', NULL, 1, '2012-08-14 12:35:55', NULL, '0000-00-00 00:00:00'),
(795, 'units_mode', NULL, 1, '2012-08-14 12:36:16', 1, '2012-09-25 08:23:51'),
(796, 'external_price', NULL, 1, '2012-08-14 12:37:02', NULL, '0000-00-00 00:00:00'),
(797, 'unflush', NULL, 1, '2012-08-14 12:37:38', NULL, '0000-00-00 00:00:00'),
(798, 'po', NULL, 1, '2012-08-14 12:38:15', NULL, '0000-00-00 00:00:00'),
(799, 'Flushed', NULL, 1, '2012-08-14 12:39:21', NULL, '0000-00-00 00:00:00'),
(800, 'advanced', NULL, 1, '2012-08-14 12:41:03', 1, '2012-09-21 08:22:51'),
(801, 'reminder_time_type', NULL, 1, '2012-08-14 12:43:11', NULL, '0000-00-00 00:00:00'),
(802, 'goods_detail', NULL, 1, '2012-08-14 12:43:58', NULL, '0000-00-00 00:00:00'),
(803, 'otorasasi', NULL, 1, '2012-08-14 12:45:38', NULL, '0000-00-00 00:00:00'),
(804, 'related_do', NULL, 1, '2012-08-14 12:46:10', NULL, '0000-00-00 00:00:00'),
(805, 'create', NULL, 1, '2012-08-14 12:47:53', NULL, '0000-00-00 00:00:00'),
(806, 'do', NULL, 1, '2012-08-14 12:48:04', NULL, '0000-00-00 00:00:00'),
(807, 'units_used_for', NULL, 1, '2012-08-14 12:49:23', 1, '2012-09-25 08:41:39'),
(808, 'selling', NULL, 1, '2012-08-14 12:49:44', NULL, '0000-00-00 00:00:00'),
(809, 'smallest_units', NULL, 1, '2012-08-14 12:50:09', 1, '2012-09-25 08:44:20'),
(810, 'do_internal', NULL, 1, '2012-08-14 12:53:35', NULL, '0000-00-00 00:00:00'),
(811, 'auto', NULL, 1, '2012-08-14 12:53:54', NULL, '0000-00-00 00:00:00'),
(812, 'manual', NULL, 1, '2012-08-14 12:54:05', NULL, '0000-00-00 00:00:00'),
(813, 'outstanding', NULL, 1, '2012-08-14 12:54:22', NULL, '0000-00-00 00:00:00'),
(814, 'margin', NULL, 1, '2012-08-14 12:57:33', NULL, '0000-00-00 00:00:00'),
(815, 'send_qty', NULL, 1, '2012-08-14 12:59:29', 1, '2012-08-14 13:47:00'),
(816, 'document_category', NULL, 1, '2012-08-14 13:05:25', NULL, '0000-00-00 00:00:00'),
(817, 'bale_qty', NULL, 1, '2012-08-14 13:14:18', NULL, '0000-00-00 00:00:00'),
(820, 'checker', NULL, 1, '2012-08-14 13:17:56', NULL, '0000-00-00 00:00:00'),
(821, 'packer', NULL, 1, '2012-08-14 13:18:10', NULL, '0000-00-00 00:00:00'),
(824, 'document_status', NULL, 1, '2012-08-14 13:22:46', 1, '2012-08-14 13:23:31'),
(825, 'price', NULL, 1, '2012-08-14 13:23:47', NULL, '0000-00-00 00:00:00'),
(826, 'document_type', NULL, 1, '2012-08-14 13:37:44', NULL, '0000-00-00 00:00:00'),
(827, 'gr_internal', NULL, 1, '2012-08-14 13:43:05', NULL, '0000-00-00 00:00:00'),
(828, 'qty', NULL, 1, '2012-08-14 13:47:16', NULL, '0000-00-00 00:00:00'),
(829, 'lead_status', NULL, 1, '2012-08-14 14:00:12', 1, '2012-09-28 18:18:51'),
(830, 'master_type', NULL, 1, '2012-08-14 14:17:41', NULL, '0000-00-00 00:00:00'),
(832, 'retur_internal', NULL, 8, '2012-08-14 14:30:35', 8, '2012-08-14 14:31:06'),
(833, 'date_send', NULL, 1, '2012-08-14 14:39:09', 8, '2012-08-15 14:49:50'),
(834, 'goods_name', NULL, 8, '2012-08-14 15:11:33', NULL, '0000-00-00 00:00:00'),
(835, 'pic_id', NULL, 8, '2012-08-14 15:12:03', NULL, '0000-00-00 00:00:00'),
(836, 'usage', NULL, 8, '2012-08-14 15:13:56', NULL, '0000-00-00 00:00:00'),
(837, 'deskripsi', NULL, 8, '2012-08-14 15:14:31', NULL, '0000-00-00 00:00:00'),
(839, 'usage_number', NULL, 8, '2012-08-14 15:16:00', NULL, '0000-00-00 00:00:00'),
(840, 'no_resep', NULL, 8, '2012-08-14 15:17:49', NULL, '0000-00-00 00:00:00'),
(841, 'usgtype_id', NULL, 8, '2012-08-14 15:23:13', NULL, '0000-00-00 00:00:00'),
(842, 'opname', NULL, 8, '2012-08-14 15:26:59', NULL, '0000-00-00 00:00:00'),
(843, 'mutation', NULL, 8, '2012-08-14 15:33:26', 1, '2012-09-30 15:30:25'),
(844, 'unit_destination_id', NULL, 8, '2012-08-14 15:35:24', 8, '2012-08-15 15:26:45'),
(845, 'mutationstatus_id', NULL, 8, '2012-08-14 15:37:20', NULL, '0000-00-00 00:00:00'),
(846, 'goods_function', NULL, 1, '2012-08-15 08:01:07', NULL, '0000-00-00 00:00:00'),
(847, 'health_insurance_status', NULL, 8, '2012-08-15 08:17:51', NULL, '0000-00-00 00:00:00'),
(848, 'askses_status', NULL, 8, '2012-08-15 08:19:11', 8, '2012-08-15 08:20:43'),
(849, 'cancel_receive', NULL, 1, '2012-08-15 08:23:35', NULL, '0000-00-00 00:00:00'),
(851, 'assignor', NULL, 1, '2012-08-15 09:34:17', NULL, '0000-00-00 00:00:00'),
(852, 'officer', NULL, 1, '2012-08-15 09:41:02', 1, '2013-06-17 09:12:17'),
(853, 'main_data', NULL, 1, '2012-08-15 09:45:10', NULL, '0000-00-00 00:00:00'),
(854, 'area_data', NULL, 1, '2012-08-15 09:53:25', NULL, '0000-00-00 00:00:00'),
(855, 'general_information', NULL, 1, '2012-08-15 09:54:01', NULL, '0000-00-00 00:00:00'),
(856, 'msg_approve_success', NULL, 1, '2012-08-15 10:11:32', 1, '2012-08-15 10:24:35'),
(857, 'msg_unapprove_success', NULL, 1, '2012-08-15 10:12:23', 1, '2012-09-25 10:42:25'),
(858, 'msg_urgent_success', NULL, 1, '2012-08-15 10:14:49', 1, '2012-08-15 10:25:08'),
(859, 'msg_flush_success', NULL, 1, '2012-08-15 10:24:18', 1, '2012-08-15 10:25:24'),
(860, 'msg_unflush_success', NULL, 1, '2012-08-15 10:26:23', NULL, '0000-00-00 00:00:00'),
(861, 'msg_create_new_do_success', NULL, 1, '2012-08-15 10:28:59', 1, '2013-05-21 13:30:26'),
(862, 'unit_from', NULL, 8, '2012-08-15 10:32:10', NULL, '0000-00-00 00:00:00'),
(863, 'msg_cancel_accept_success', NULL, 1, '2012-08-15 10:47:16', 8, '2012-08-15 14:47:01'),
(864, 'msg_accept_success', NULL, 1, '2012-08-15 10:48:20', 8, '2012-08-15 14:46:20'),
(865, 'msg_receive_success', NULL, 1, '2012-08-15 11:00:15', 1, '2013-05-21 13:29:37'),
(866, 'goods_code', NULL, 1, '2012-08-15 11:05:28', 1, '2013-05-10 14:01:07'),
(867, 'in', NULL, 1, '2012-08-15 11:06:52', NULL, '0000-00-00 00:00:00'),
(868, 'out', NULL, 1, '2012-08-15 11:07:14', NULL, '0000-00-00 00:00:00'),
(869, 'gr_number', NULL, 1, '2012-08-15 11:10:23', NULL, '0000-00-00 00:00:00'),
(870, 'balance', NULL, 1, '2012-08-15 12:49:31', 1, '2013-04-25 11:26:22'),
(871, 'ref', NULL, 1, '2012-08-15 12:49:59', NULL, '0000-00-00 00:00:00'),
(872, 'transtype_id', NULL, 1, '2012-08-15 12:50:45', NULL, '0000-00-00 00:00:00'),
(873, 'qty_plus', NULL, 1, '2012-08-15 12:52:14', NULL, '0000-00-00 00:00:00'),
(874, 'qty_minus', NULL, 1, '2012-08-15 12:52:31', NULL, '0000-00-00 00:00:00'),
(875, 'custom_validation_cek_area_empty', NULL, 1, '2012-08-15 14:12:59', 1, '2012-11-08 10:02:02'),
(876, 'msg_cancel_gr_success', NULL, 8, '2012-08-15 15:34:16', 1, '2013-07-09 10:38:40'),
(877, 'msg_unapprove_fail', NULL, 8, '2012-08-15 15:45:43', NULL, '0000-00-00 00:00:00'),
(878, 'msg_approve_fail', NULL, 8, '2012-08-15 15:46:35', NULL, '0000-00-00 00:00:00'),
(879, 'msg_cancel_receive_success', NULL, 8, '2012-08-15 15:50:47', 1, '2013-05-21 13:27:18'),
(880, 'msg_receive_fail', NULL, 1, '2012-08-16 08:21:34', 1, '2012-08-16 11:28:55'),
(881, 'msg_cancel_receive_fail', NULL, 1, '2012-08-16 08:22:23', 1, '2013-07-09 10:38:23'),
(882, 'mutation_direction', NULL, 8, '2012-08-16 08:23:18', 1, '2012-09-30 15:32:08'),
(883, 'doctor_reference', NULL, 1, '2012-08-24 11:00:27', NULL, '0000-00-00 00:00:00'),
(885, 'internal_insurance_list', NULL, 1, '2012-08-24 11:01:10', NULL, '0000-00-00 00:00:00'),
(886, 'bank_account_list', NULL, 1, '2012-08-24 11:03:17', 1, '2012-08-24 11:03:47'),
(887, 'external_insurance_list', NULL, 1, '2012-08-24 11:07:01', 1, '2012-08-24 11:07:09'),
(888, 'askes_list', NULL, 1, '2012-08-24 11:07:41', 1, '2012-08-24 11:08:28'),
(889, 'npwp_list', NULL, 1, '2012-08-24 11:09:09', NULL, '0000-00-00 00:00:00'),
(890, 'jamsostek_list', NULL, 1, '2012-08-24 11:09:57', NULL, '0000-00-00 00:00:00'),
(891, 'cancel_approve', NULL, 1, '2012-08-29 10:28:16', 1, '2012-08-29 10:29:39'),
(892, 'cancel_accept', NULL, 1, '2012-08-29 10:28:48', 1, '2012-09-19 14:24:15'),
(893, 'cancel_urgent', NULL, 1, '2012-08-29 10:30:15', NULL, '0000-00-00 00:00:00'),
(894, 'only_in_stock', NULL, 1, '2012-08-29 10:54:03', 1, '2012-08-29 10:55:37'),
(895, 'relocation', NULL, 8, '2012-08-29 16:12:44', NULL, '0000-00-00 00:00:00'),
(896, 'relstatus_id', NULL, 8, '2012-08-29 16:13:37', NULL, '0000-00-00 00:00:00'),
(897, 'cancel_delivery', NULL, 8, '2012-08-29 16:42:00', NULL, '0000-00-00 00:00:00'),
(898, 'delivery', NULL, 8, '2012-08-29 16:43:37', 1, '2013-05-15 10:40:53'),
(899, 'area_value', NULL, 1, '2012-08-29 16:43:56', NULL, '0000-00-00 00:00:00'),
(900, 'msg_cancel_delivery_success', NULL, 8, '2012-08-29 16:46:30', 1, '2013-05-21 13:26:58'),
(901, 'msg_deliver_success', NULL, 8, '2012-08-29 16:47:37', 1, '2013-05-21 13:29:00'),
(902, 'goods_master', NULL, 1, '2012-08-30 08:06:06', NULL, '0000-00-00 00:00:00'),
(903, 'custom_validation_cek_empty_usage', NULL, 8, '2012-08-30 08:40:22', 8, '2012-08-30 08:42:48'),
(904, 'account_form_wizard', NULL, 1, '2012-08-30 09:47:30', 1, '2012-09-28 15:19:39'),
(905, 'account', NULL, 1, '2012-08-30 09:54:42', 1, '2012-09-28 15:18:30'),
(906, 'additional', NULL, 1, '2012-08-30 09:55:13', NULL, '0000-00-00 00:00:00'),
(907, 'rating', NULL, 1, '2012-08-30 16:10:24', NULL, '0000-00-00 00:00:00'),
(908, 'brand_name', NULL, 1, '2012-08-30 16:10:46', NULL, '0000-00-00 00:00:00'),
(909, 'company_registered_number', NULL, 1, '2012-08-30 16:11:30', 1, '2012-09-28 15:16:21'),
(910, 'account_registered_date', NULL, 1, '2012-08-30 16:13:10', NULL, '0000-00-00 00:00:00'),
(911, 'company_logo', NULL, 1, '2012-08-30 16:14:24', NULL, '0000-00-00 00:00:00'),
(912, 'other_information', NULL, 1, '2012-08-30 16:14:54', NULL, '0000-00-00 00:00:00'),
(913, 'annual_revenue', NULL, 1, '2012-08-30 16:15:27', NULL, '0000-00-00 00:00:00'),
(914, 'members_of', NULL, 1, '2012-08-30 16:17:56', NULL, '0000-00-00 00:00:00'),
(915, 'parent_company', NULL, 1, '2012-08-30 16:19:37', NULL, '0000-00-00 00:00:00'),
(916, 'employees', NULL, 1, '2012-08-30 16:20:08', NULL, '0000-00-00 00:00:00'),
(917, 'assign_status', NULL, 1, '2012-08-30 16:22:01', NULL, '0000-00-00 00:00:00'),
(918, 'manage_themselves', NULL, 1, '2012-08-30 16:22:26', 1, '2012-10-10 10:28:43'),
(919, 'switch_to_subordinat', NULL, 1, '2012-08-30 16:23:57', 1, '2012-10-10 10:28:24'),
(920, 'billing_address', NULL, 1, '2012-08-30 16:24:25', 9, '2012-10-04 18:10:51'),
(921, 'shipping_address', NULL, 1, '2012-08-30 16:24:50', NULL, '0000-00-00 00:00:00'),
(922, 'email_data', NULL, 1, '2012-08-30 16:25:07', NULL, '0000-00-00 00:00:00'),
(923, 'website_data', NULL, 1, '2012-08-30 16:25:23', NULL, '0000-00-00 00:00:00'),
(924, 'business_data', NULL, 1, '2012-08-30 16:26:12', NULL, '0000-00-00 00:00:00'),
(925, 'product_segment_data', NULL, 1, '2012-08-30 16:26:52', NULL, '0000-00-00 00:00:00'),
(926, 'business', NULL, 1, '2012-08-30 16:27:41', NULL, '0000-00-00 00:00:00'),
(927, 'product_segment', NULL, 1, '2012-08-30 16:28:20', 1, '2012-08-30 16:34:24'),
(928, 'person', NULL, 1, '2012-08-30 16:29:50', NULL, '0000-00-00 00:00:00'),
(929, 'phone_data', NULL, 1, '2012-08-30 16:30:05', NULL, '0000-00-00 00:00:00'),
(930, 'assignor_officer', NULL, 1, '2012-08-30 16:32:01', 1, '2013-06-17 09:12:41'),
(931, 'date_mutation', NULL, 1, '2012-09-03 09:26:06', 1, '2012-09-30 15:30:48'),
(932, 'msg_cancel_urgent_success', NULL, 1, '2012-09-03 15:01:16', 1, '2013-05-21 13:28:14'),
(933, 'overstock_report', NULL, 1, '2012-09-05 08:14:51', NULL, '0000-00-00 00:00:00'),
(934, 'lessstock_report', NULL, 1, '2012-09-05 09:10:31', NULL, '0000-00-00 00:00:00'),
(935, 'expired_report', NULL, 1, '2012-09-05 09:10:57', NULL, '0000-00-00 00:00:00'),
(936, 'retur_from', NULL, 1, '2012-09-07 09:02:12', NULL, '0000-00-00 00:00:00'),
(937, 'trans_no', NULL, 1, '2012-09-07 09:02:26', NULL, '0000-00-00 00:00:00'),
(938, 'retur_number', NULL, 1, '2012-09-07 09:02:41', NULL, '0000-00-00 00:00:00'),
(939, 'currency_rate', NULL, 1, '2012-09-07 09:03:08', NULL, '0000-00-00 00:00:00'),
(940, 'created_by', NULL, 1, '2012-09-07 09:03:25', NULL, '0000-00-00 00:00:00'),
(941, 'prepared_by', NULL, 1, '2012-09-07 09:03:42', NULL, '0000-00-00 00:00:00'),
(942, 'business_partner', NULL, 1, '2012-09-07 09:04:02', NULL, '0000-00-00 00:00:00'),
(943, 'receiver', NULL, 1, '2012-09-07 10:47:17', 1, '2012-09-07 10:49:22'),
(944, 'stock_card', NULL, 1, '2012-09-10 14:39:11', NULL, '0000-00-00 00:00:00'),
(945, 'class_style', NULL, 1, '2012-09-12 15:27:03', NULL, '0000-00-00 00:00:00'),
(946, 'stock_goods_stock', NULL, 1, '2012-09-20 19:43:59', NULL, '0000-00-00 00:00:00'),
(947, 'stock_only_available', NULL, 1, '2012-09-20 19:44:23', NULL, '0000-00-00 00:00:00'),
(948, 'stock_for', NULL, 1, '2012-09-20 19:44:38', NULL, '0000-00-00 00:00:00'),
(949, 'stock_needed', NULL, 1, '2012-09-20 19:44:58', NULL, '0000-00-00 00:00:00'),
(950, 'not_packet', NULL, 1, '2012-09-21 08:29:25', NULL, '0000-00-00 00:00:00'),
(951, 'units_small_sell', NULL, 1, '2012-09-21 08:33:11', NULL, '0000-00-00 00:00:00'),
(952, 'packet_type_goods', NULL, 1, '2012-09-21 08:35:44', NULL, '0000-00-00 00:00:00'),
(953, 'default_price_supplier', NULL, 1, '2012-09-21 08:37:01', NULL, '0000-00-00 00:00:00'),
(954, 'unit_dept', NULL, 1, '2012-09-21 15:41:00', 1, '2012-09-21 15:41:24'),
(955, 'unit_address', NULL, 1, '2012-09-21 15:42:07', NULL, '0000-00-00 00:00:00'),
(956, 'po_supplier_goods', NULL, 1, '2012-09-25 08:42:29', NULL, '0000-00-00 00:00:00'),
(957, 'po_internal_goods', NULL, 1, '2012-09-25 08:43:53', 1, '2012-10-01 05:11:25'),
(958, 'refer_to', NULL, 1, '2012-09-25 08:56:14', NULL, '0000-00-00 00:00:00'),
(959, 'sell_unit', NULL, 1, '2012-09-25 14:53:56', NULL, '0000-00-00 00:00:00'),
(960, 'tax_status', NULL, 1, '2012-09-25 15:55:09', NULL, '0000-00-00 00:00:00'),
(961, 'discount_status', NULL, 1, '2012-09-25 15:55:57', NULL, '0000-00-00 00:00:00'),
(962, 'no_stock_available_for', NULL, 1, '2012-09-26 08:19:30', NULL, '0000-00-00 00:00:00'),
(963, 'goods_code_search', NULL, 1, '2012-09-26 11:01:27', NULL, '0000-00-00 00:00:00'),
(964, 'goods_price', NULL, 1, '2012-09-26 13:34:14', NULL, '0000-00-00 00:00:00'),
(965, 'usage_for', NULL, 1, '2012-09-26 14:01:07', NULL, '0000-00-00 00:00:00'),
(966, 'nrp', NULL, 1, '2012-09-28 14:46:57', NULL, '0000-00-00 00:00:00'),
(967, 'attachment_name', NULL, 1, '2012-09-28 14:47:54', 1, '2012-09-28 14:48:52'),
(968, 'attachment_info', NULL, 1, '2012-09-28 14:48:19', NULL, '0000-00-00 00:00:00'),
(969, 'information', NULL, 1, '2012-09-28 14:49:17', NULL, '0000-00-00 00:00:00'),
(970, 'clear', NULL, 1, '2012-09-28 14:50:01', NULL, '0000-00-00 00:00:00'),
(971, 'transactional', NULL, 1, '2012-09-28 14:50:37', NULL, '0000-00-00 00:00:00'),
(972, 'account_detail', NULL, 1, '2012-09-28 14:51:29', NULL, '0000-00-00 00:00:00'),
(973, 'business_model', NULL, 1, '2012-09-28 14:52:09', NULL, '0000-00-00 00:00:00'),
(974, 'opportunity_name', NULL, 1, '2012-09-28 14:52:37', NULL, '0000-00-00 00:00:00'),
(976, 'opportunity', NULL, 1, '2012-09-28 14:54:55', NULL, '0000-00-00 00:00:00'),
(977, 'revenue', NULL, 1, '2012-09-28 14:55:21', 1, '2012-09-28 14:57:05'),
(978, 'gross_profit', NULL, 1, '2012-09-28 14:56:50', 1, '2012-09-28 18:00:35'),
(979, 'next_step', NULL, 1, '2012-09-28 14:57:47', NULL, '0000-00-00 00:00:00'),
(980, 'additional_information', NULL, 1, '2012-09-28 14:58:10', NULL, '0000-00-00 00:00:00'),
(981, 'is_prospect_start', NULL, 1, '2012-09-28 14:58:47', NULL, '0000-00-00 00:00:00'),
(982, 'not_started', NULL, 1, '2012-09-28 14:59:56', 1, '2012-09-28 15:01:04'),
(983, 'already_started', NULL, 1, '2012-09-28 15:00:51', NULL, '0000-00-00 00:00:00'),
(984, 'transaction_log', NULL, 1, '2012-09-28 15:01:23', NULL, '0000-00-00 00:00:00'),
(985, 'view_log', NULL, 1, '2012-09-28 15:01:42', NULL, '0000-00-00 00:00:00'),
(986, 'nominal_revenue', NULL, 1, '2012-09-28 15:04:58', 1, '2012-09-28 17:59:05'),
(987, 'contact', NULL, 1, '2012-09-28 15:05:33', NULL, '0000-00-00 00:00:00'),
(988, 'contact_data', NULL, 1, '2012-09-28 15:05:59', NULL, '0000-00-00 00:00:00'),
(989, 'attachment_data', NULL, 1, '2012-09-28 15:06:26', NULL, '0000-00-00 00:00:00'),
(990, 'bussiness_data', NULL, 1, '2012-09-28 15:08:29', NULL, '0000-00-00 00:00:00'),
(991, 'contact_name', NULL, 1, '2012-09-28 15:09:40', NULL, '0000-00-00 00:00:00'),
(993, 'opportunity_form_wizard', NULL, 1, '2012-09-28 15:19:23', NULL, '0000-00-00 00:00:00'),
(994, 'contact_form_wizard', NULL, 1, '2012-09-28 15:20:42', NULL, '0000-00-00 00:00:00'),
(995, 'do_not_call', NULL, 1, '2012-09-28 15:23:02', 1, '2012-09-28 18:22:35'),
(996, 'outlook_sync', NULL, 1, '2012-09-28 15:23:28', NULL, '0000-00-00 00:00:00'),
(997, 'from_contact', NULL, 1, '2012-09-28 15:23:51', NULL, '0000-00-00 00:00:00'),
(998, 'main_address', NULL, 1, '2012-09-28 15:24:26', 9, '2012-10-04 18:10:27'),
(999, 'other_address', NULL, 1, '2012-09-28 15:24:48', NULL, '0000-00-00 00:00:00'),
(1000, 'instant_messaging_data', NULL, 1, '2012-09-28 15:25:52', NULL, '0000-00-00 00:00:00'),
(1001, 'social_media_data', NULL, 1, '2012-09-28 15:26:20', NULL, '0000-00-00 00:00:00'),
(1002, 'im_type', NULL, 1, '2012-09-28 15:27:11', NULL, '0000-00-00 00:00:00'),
(1003, 'set_as_primary', NULL, 1, '2012-09-28 15:41:21', NULL, '0000-00-00 00:00:00'),
(1004, 'target_form_wizard', NULL, 1, '2012-09-28 16:10:56', NULL, '0000-00-00 00:00:00'),
(1005, 'reference_number', NULL, 1, '2012-09-28 16:19:15', NULL, '0000-00-00 00:00:00'),
(1006, 'media_type', NULL, 9, '2012-09-28 17:38:37', NULL, '0000-00-00 00:00:00'),
(1007, 'contact_detail', NULL, 9, '2012-09-28 17:39:08', NULL, '0000-00-00 00:00:00'),
(1008, 'lead_form_wizard', NULL, 1, '2012-09-28 18:06:45', 1, '2012-09-28 18:14:53'),
(1009, 'lead_status_desc', NULL, 1, '2012-09-28 18:08:50', 1, '2012-09-28 18:09:22'),
(1010, 'lead_source_desc', NULL, 1, '2012-09-28 18:09:44', 1, '2012-09-28 18:15:11'),
(1011, 'nominal_opportunity', NULL, 1, '2012-09-28 18:21:19', 1, '2012-10-04 18:57:35'),
(1012, 'units_name', NULL, 1, '2012-09-30 11:19:14', NULL, '0000-00-00 00:00:00'),
(1013, 'action_name', NULL, 1, '2012-09-30 11:20:08', NULL, '0000-00-00 00:00:00'),
(1014, 'stock_start', NULL, 1, '2012-09-30 13:42:08', 1, '2012-09-30 13:45:26'),
(1015, 'stock_end', NULL, 1, '2012-09-30 13:42:27', 1, '2012-09-30 13:45:41'),
(1016, 'sender_name', NULL, 1, '2012-09-30 15:29:43', NULL, '0000-00-00 00:00:00'),
(1017, 'receiver_name', NULL, 1, '2012-09-30 15:30:01', NULL, '0000-00-00 00:00:00'),
(1018, 'relocation_direction', NULL, 1, '2012-09-30 16:14:02', NULL, '0000-00-00 00:00:00'),
(1019, 'relocation_submitter', NULL, 1, '2012-09-30 16:18:03', 1, '2012-09-30 16:20:50'),
(1020, 'relocation_sender', NULL, 1, '2012-09-30 16:18:40', NULL, '0000-00-00 00:00:00'),
(1021, 'from_name', NULL, 1, '2012-09-30 16:21:46', 37, '2013-05-15 09:45:28'),
(1022, 'to_name', NULL, 1, '2012-09-30 16:22:02', NULL, '0000-00-00 00:00:00'),
(1023, 'batchcode_mode', NULL, 1, '2012-09-30 18:33:19', NULL, '0000-00-00 00:00:00'),
(1024, 'no_stock', NULL, 1, '2012-09-30 19:23:15', NULL, '0000-00-00 00:00:00'),
(1025, 'category_name', NULL, 1, '2012-10-01 09:49:15', NULL, '0000-00-00 00:00:00'),
(1026, 'print_excel', NULL, 1, '2012-10-01 09:49:56', NULL, '0000-00-00 00:00:00'),
(1027, 'detail_name', NULL, 1, '2012-10-01 09:52:38', NULL, '0000-00-00 00:00:00'),
(1028, 'entry_date', NULL, 1, '2012-10-01 09:54:23', NULL, '0000-00-00 00:00:00'),
(1029, 'entry_time', NULL, 1, '2012-10-01 09:54:40', NULL, '0000-00-00 00:00:00'),
(1030, 'qty_name', NULL, 1, '2012-10-01 10:02:52', NULL, '0000-00-00 00:00:00'),
(1031, 'current_stock', NULL, 1, '2012-10-01 13:49:32', NULL, '0000-00-00 00:00:00'),
(1032, 'new_message_notification', NULL, 4, '2012-10-02 10:31:36', NULL, '0000-00-00 00:00:00'),
(1033, 'message_send_fail', NULL, 4, '2012-10-02 10:32:34', NULL, '0000-00-00 00:00:00'),
(1034, 'new_message', NULL, 4, '2012-10-02 10:33:49', NULL, '0000-00-00 00:00:00'),
(1035, 'message_saved', NULL, 4, '2012-10-02 10:34:49', 4, '2012-10-02 13:12:36'),
(1036, 'message_sent', NULL, 4, '2012-10-02 10:35:12', NULL, '0000-00-00 00:00:00'),
(1037, 'no_message', NULL, 4, '2012-10-02 10:36:41', NULL, '0000-00-00 00:00:00'),
(1038, 'received_message', NULL, 4, '2012-10-02 10:38:11', NULL, '0000-00-00 00:00:00'),
(1039, 'sent_message', NULL, 4, '2012-10-02 10:39:01', NULL, '0000-00-00 00:00:00'),
(1040, 'saved_message', NULL, 4, '2012-10-02 10:39:34', NULL, '0000-00-00 00:00:00'),
(1041, 'message_confirm_permanent_delete', NULL, 4, '2012-10-02 13:08:33', NULL, '0000-00-00 00:00:00'),
(1042, 'message_successfully', NULL, 4, '2012-10-02 13:11:21', NULL, '0000-00-00 00:00:00'),
(1043, 'message_folder_delete_success', NULL, 4, '2012-10-03 09:52:38', 4, '2012-10-03 09:59:21'),
(1044, 'message_folder_rename_fail', NULL, 4, '2012-10-03 09:54:00', NULL, '0000-00-00 00:00:00'),
(1045, 'message_folder_rename_success', NULL, 4, '2012-10-03 09:56:12', 4, '2012-10-03 09:59:01'),
(1046, 'message_folder_create_fail', NULL, 4, '2012-10-03 09:57:15', NULL, '0000-00-00 00:00:00'),
(1047, 'message_folder_create_success', NULL, 4, '2012-10-03 09:58:32', NULL, '0000-00-00 00:00:00'),
(1048, 'blaclist_update_success', NULL, 4, '2012-10-03 10:00:00', NULL, '0000-00-00 00:00:00'),
(1049, 'blacklist_update_fail', NULL, 4, '2012-10-03 10:00:36', NULL, '0000-00-00 00:00:00'),
(1050, 'message_folder_delete_confirm', NULL, 4, '2012-10-03 10:06:44', NULL, '0000-00-00 00:00:00'),
(1051, 'notification', NULL, 9, '2012-10-03 11:14:03', NULL, '0000-00-00 00:00:00'),
(1052, 'view_notification_list', NULL, 9, '2012-10-03 11:14:30', NULL, '0000-00-00 00:00:00'),
(1053, 'messaging', NULL, 9, '2012-10-03 11:14:53', NULL, '0000-00-00 00:00:00'),
(1054, 'subject', NULL, 9, '2012-10-03 11:15:17', NULL, '0000-00-00 00:00:00'),
(1055, 'select_all', NULL, 9, '2012-10-03 11:15:36', NULL, '0000-00-00 00:00:00'),
(1056, 'un_select_all', NULL, 9, '2012-10-03 11:16:12', NULL, '0000-00-00 00:00:00'),
(1057, 'select_inverse', NULL, 9, '2012-10-03 11:17:51', NULL, '0000-00-00 00:00:00'),
(1058, 'move_to', NULL, 9, '2012-10-03 11:18:16', NULL, '0000-00-00 00:00:00'),
(1059, 'mark_as_unread', NULL, 9, '2012-10-03 11:18:50', NULL, '0000-00-00 00:00:00'),
(1060, 'sent_to_email', NULL, 9, '2012-10-03 11:19:09', 9, '2012-10-03 11:22:37'),
(1061, 'save_change', NULL, 9, '2012-10-03 11:19:29', NULL, '0000-00-00 00:00:00'),
(1062, 'saved', NULL, 9, '2012-10-03 11:20:36', 1, '2013-11-14 10:45:10'),
(1063, 'new', NULL, 9, '2012-10-03 11:20:52', NULL, '0000-00-00 00:00:00'),
(1064, 'refresh', NULL, 9, '2012-10-03 11:21:11', NULL, '0000-00-00 00:00:00'),
(1065, 'setting', NULL, 9, '2012-10-03 11:21:28', 9, '2012-10-03 11:21:58'),
(1066, 'send_to', NULL, 9, '2012-10-03 11:24:13', NULL, '0000-00-00 00:00:00'),
(1067, 'message', NULL, 9, '2012-10-03 11:24:28', NULL, '0000-00-00 00:00:00'),
(1068, 'send', NULL, 9, '2012-10-03 11:24:40', NULL, '0000-00-00 00:00:00'),
(1069, 'folder', NULL, 9, '2012-10-03 11:25:05', NULL, '0000-00-00 00:00:00'),
(1070, 'blacklist', NULL, 9, '2012-10-03 11:25:23', NULL, '0000-00-00 00:00:00'),
(1071, 'blacklisted User', NULL, 9, '2012-10-03 11:25:56', NULL, '0000-00-00 00:00:00'),
(1072, 'read', NULL, 9, '2012-10-03 11:27:15', NULL, '0000-00-00 00:00:00'),
(1073, 'reply', NULL, 9, '2012-10-03 11:27:31', NULL, '0000-00-00 00:00:00'),
(1074, 'forward', NULL, 9, '2012-10-03 11:27:59', NULL, '0000-00-00 00:00:00'),
(1075, 'select_recipient', NULL, 1, '2012-10-03 13:26:56', NULL, '0000-00-00 00:00:00'),
(1076, 'subject_empty', NULL, 1, '2012-10-03 13:27:56', 1, '2012-10-03 13:28:57'),
(1077, 'goods_promotion', NULL, 1, '2012-10-03 13:57:46', 1, '2012-10-03 13:59:05'),
(1078, 'make_retur', NULL, 1, '2012-10-03 15:34:29', NULL, '0000-00-00 00:00:00'),
(1079, 'subordinat', NULL, 1, '2012-10-04 16:34:11', NULL, '0000-00-00 00:00:00'),
(1080, 'contract_number', NULL, 1, '2012-10-04 16:35:18', 1, '2012-10-04 16:35:53'),
(1081, 'contract_name', NULL, 1, '2012-10-04 16:36:11', NULL, '0000-00-00 00:00:00'),
(1082, 'contract_form_wizard', NULL, 1, '2012-10-04 16:36:36', NULL, '0000-00-00 00:00:00'),
(1083, 'projected_revenue', NULL, 1, '2012-10-04 16:38:49', 1, '2012-10-04 16:39:47'),
(1084, 'projected_gross_profit', NULL, 1, '2012-10-04 16:39:17', 1, '2012-10-04 16:40:00'),
(1085, 'nominal_contract', NULL, 1, '2012-10-04 16:41:30', NULL, '0000-00-00 00:00:00'),
(1086, 'contract_detail', NULL, 1, '2012-10-04 16:43:21', NULL, '0000-00-00 00:00:00'),
(1087, 'main_country', NULL, 1, '2012-10-04 17:14:35', 9, '2012-10-04 18:06:10'),
(1088, 'billing_country', NULL, 1, '2012-10-04 17:24:01', 9, '2012-10-04 17:41:10'),
(1089, 'billing_state', NULL, 1, '2012-10-04 17:24:50', 9, '2012-10-04 17:41:51'),
(1090, 'billing_city', NULL, 1, '2012-10-04 17:25:22', 9, '2012-10-04 17:41:02'),
(1091, 'billing_sub_district', NULL, 1, '2012-10-04 17:25:54', 9, '2012-10-04 17:42:06'),
(1092, 'billing_village', NULL, 1, '2012-10-04 17:26:19', 9, '2012-10-04 17:42:17'),
(1093, 'billing_postal_code', NULL, 1, '2012-10-04 17:26:46', 9, '2012-10-04 17:41:41'),
(1094, 'billing_phone_number', NULL, 1, '2012-10-04 17:27:12', 9, '2012-10-04 17:41:31'),
(1095, 'billing_fax_number', NULL, 1, '2012-10-04 17:27:39', 9, '2012-10-04 17:41:20'),
(1096, 'shiping_address', NULL, 1, '2012-10-04 17:28:05', NULL, '0000-00-00 00:00:00'),
(1097, 'shiping_country', NULL, 1, '2012-10-04 17:28:37', NULL, '0000-00-00 00:00:00'),
(1098, 'shiping_state', NULL, 1, '2012-10-04 17:29:04', NULL, '0000-00-00 00:00:00'),
(1099, 'shiping_city', NULL, 1, '2012-10-04 17:29:25', NULL, '0000-00-00 00:00:00'),
(1100, 'shiping_sub_district', NULL, 1, '2012-10-04 17:29:55', 1, '2012-10-04 17:30:20'),
(1101, 'shiping_village', NULL, 1, '2012-10-04 17:30:36', NULL, '0000-00-00 00:00:00'),
(1102, 'shiping_postal_code', NULL, 1, '2012-10-04 17:30:59', NULL, '0000-00-00 00:00:00'),
(1103, 'shiping_phone_number', NULL, 1, '2012-10-04 17:31:35', NULL, '0000-00-00 00:00:00'),
(1104, 'shiping_fax_number', NULL, 1, '2012-10-04 17:32:00', NULL, '0000-00-00 00:00:00'),
(1105, 'custom_validation_cek_email_empty', NULL, 9, '2012-10-04 17:37:48', 9, '2012-10-04 17:39:11'),
(1106, 'segment_data', NULL, 9, '2012-10-04 17:40:12', 9, '2012-10-04 17:43:23'),
(1107, 'main_state', NULL, 9, '2012-10-04 18:06:39', NULL, '0000-00-00 00:00:00'),
(1108, 'main_city', NULL, 9, '2012-10-04 18:07:00', NULL, '0000-00-00 00:00:00'),
(1109, 'main_sub_district', NULL, 9, '2012-10-04 18:07:24', NULL, '0000-00-00 00:00:00'),
(1110, 'main_village', NULL, 9, '2012-10-04 18:07:56', NULL, '0000-00-00 00:00:00'),
(1111, 'main_postal_code', NULL, 9, '2012-10-04 18:08:18', NULL, '0000-00-00 00:00:00'),
(1112, 'main_phone_number', NULL, 9, '2012-10-04 18:08:40', NULL, '0000-00-00 00:00:00'),
(1113, 'main_fax_number', NULL, 9, '2012-10-04 18:09:01', NULL, '0000-00-00 00:00:00'),
(1114, 'other_country', NULL, 9, '2012-10-04 18:11:31', NULL, '0000-00-00 00:00:00'),
(1115, 'other_state', NULL, 9, '2012-10-04 18:12:00', NULL, '0000-00-00 00:00:00'),
(1116, 'other_city', NULL, 9, '2012-10-04 18:12:26', NULL, '0000-00-00 00:00:00'),
(1117, 'other_sub_district', NULL, 9, '2012-10-04 18:12:52', NULL, '0000-00-00 00:00:00'),
(1118, 'other_village', NULL, 9, '2012-10-04 18:13:57', NULL, '0000-00-00 00:00:00'),
(1119, 'other_postal_code', NULL, 9, '2012-10-04 18:14:38', NULL, '0000-00-00 00:00:00'),
(1120, 'other_phone_number', NULL, 9, '2012-10-04 18:15:07', NULL, '0000-00-00 00:00:00'),
(1121, 'other_fax_number', NULL, 9, '2012-10-04 18:15:35', NULL, '0000-00-00 00:00:00'),
(1122, 'im_data', NULL, 9, '2012-10-04 18:16:32', NULL, '0000-00-00 00:00:00'),
(1123, 'warning', NULL, 9, '2012-10-04 18:17:41', NULL, '0000-00-00 00:00:00'),
(1124, 'attachment_name_field_is_required', NULL, 9, '2012-10-04 18:18:24', NULL, '0000-00-00 00:00:00'),
(1125, 'contact_name_field_is_required', NULL, 9, '2012-10-04 18:19:18', NULL, '0000-00-00 00:00:00'),
(1126, 'lead', NULL, 1, '2012-10-04 18:36:51', NULL, '0000-00-00 00:00:00'),
(1127, 'case_form_wizard', NULL, 1, '2012-10-04 19:03:32', NULL, '0000-00-00 00:00:00'),
(1128, 'main_information', NULL, 1, '2012-10-04 19:04:56', NULL, '0000-00-00 00:00:00'),
(1129, 'resolution', NULL, 1, '2012-10-04 19:05:23', NULL, '0000-00-00 00:00:00'),
(1130, 'dependencies', NULL, 1, '2012-10-04 19:05:58', NULL, '0000-00-00 00:00:00'),
(1131, 'case', NULL, 1, '2012-10-04 19:06:19', NULL, '0000-00-00 00:00:00'),
(1132, 'duplication', NULL, 1, '2012-10-04 19:06:46', NULL, '0000-00-00 00:00:00'),
(1133, 'tag', NULL, 1, '2012-10-04 19:07:04', NULL, '0000-00-00 00:00:00'),
(1134, 'separated_by_commas', NULL, 1, '2012-10-04 19:07:32', NULL, '0000-00-00 00:00:00'),
(1135, 'follow_up', NULL, 1, '2012-10-04 19:08:08', NULL, '0000-00-00 00:00:00'),
(1136, 'case_number', NULL, 1, '2012-10-04 19:08:25', NULL, '0000-00-00 00:00:00'),
(1137, 'case_transaction_log', NULL, 1, '2012-10-04 19:08:52', NULL, '0000-00-00 00:00:00'),
(1138, 'title', NULL, 9, '2012-10-05 11:20:06', NULL, '0000-00-00 00:00:00'),
(1139, 'content', NULL, 9, '2012-10-05 11:20:27', NULL, '0000-00-00 00:00:00'),
(1140, 'case_field_is_required', NULL, 1, '2012-10-05 13:55:48', 1, '2012-10-05 14:27:43'),
(1141, 'follow_up_field_is_required', NULL, 1, '2012-10-05 14:21:16', 1, '2012-10-05 14:21:59'),
(1142, 'search_periode', NULL, 1, '2012-10-06 16:38:48', NULL, '0000-00-00 00:00:00'),
(1143, 'date_range', NULL, 1, '2012-10-06 16:40:16', NULL, '0000-00-00 00:00:00'),
(1144, 'month_range', NULL, 1, '2012-10-06 16:40:58', 1, '2012-10-06 16:41:40'),
(1145, 'weekly_name', NULL, 1, '2012-10-06 16:47:20', NULL, '0000-00-00 00:00:00'),
(1146, 'monthly_name', NULL, 1, '2012-10-06 16:47:33', NULL, '0000-00-00 00:00:00'),
(1147, 'goods_forecast_stock', NULL, 1, '2012-10-07 07:21:10', NULL, '0000-00-00 00:00:00'),
(1148, 'week_label', NULL, 1, '2012-10-07 07:24:05', NULL, '0000-00-00 00:00:00'),
(1149, 'column', NULL, 23, '2012-10-09 08:20:12', 23, '2012-10-09 08:20:44'),
(1151, 'prospect_status', NULL, 1, '2012-10-10 09:46:38', NULL, '0000-00-00 00:00:00'),
(1152, 'period_type', NULL, 1, '2012-10-10 09:46:59', NULL, '0000-00-00 00:00:00'),
(1153, 'ongoing', NULL, 1, '2012-10-10 09:47:23', NULL, '0000-00-00 00:00:00'),
(1154, 'deal', NULL, 1, '2012-10-10 09:47:47', 1, '2012-10-10 09:54:32'),
(1155, 'failed', NULL, 1, '2012-10-10 09:48:09', NULL, '0000-00-00 00:00:00'),
(1156, 'monthly', NULL, 1, '2012-10-10 09:48:27', NULL, '0000-00-00 00:00:00'),
(1157, 'yearly', NULL, 1, '2012-10-10 09:48:45', NULL, '0000-00-00 00:00:00'),
(1158, 'range', NULL, 1, '2012-10-10 09:48:59', NULL, '0000-00-00 00:00:00'),
(1159, 'ongoing_prospect', NULL, 1, '2012-10-10 09:49:28', NULL, '0000-00-00 00:00:00'),
(1160, 'deal_prospect', NULL, 1, '2012-10-10 09:53:26', NULL, '0000-00-00 00:00:00'),
(1161, 'failed_prospect', NULL, 1, '2012-10-10 09:54:02', NULL, '0000-00-00 00:00:00'),
(1162, 'monthly_period', NULL, 1, '2012-10-10 09:55:08', NULL, '0000-00-00 00:00:00'),
(1163, 'yearly_period', NULL, 1, '2012-10-10 09:55:30', NULL, '0000-00-00 00:00:00'),
(1164, 'tabel', NULL, 1, '2012-10-10 09:56:01', NULL, '0000-00-00 00:00:00'),
(1165, 'graphic', NULL, 1, '2012-10-10 09:57:10', NULL, '0000-00-00 00:00:00'),
(1166, 'sub_total', NULL, 1, '2012-10-10 09:57:35', NULL, '0000-00-00 00:00:00'),
(1167, 'jan', NULL, 1, '2012-10-10 09:57:48', NULL, '0000-00-00 00:00:00'),
(1168, 'feb', NULL, 1, '2012-10-10 09:58:06', NULL, '0000-00-00 00:00:00'),
(1169, 'mar', NULL, 1, '2012-10-10 09:58:22', NULL, '0000-00-00 00:00:00'),
(1170, 'apr', NULL, 1, '2012-10-10 09:58:34', NULL, '0000-00-00 00:00:00'),
(1171, 'jun', NULL, 1, '2012-10-10 09:58:49', NULL, '0000-00-00 00:00:00'),
(1172, 'jul', NULL, 1, '2012-10-10 09:59:01', NULL, '0000-00-00 00:00:00'),
(1173, 'aug', NULL, 1, '2012-10-10 09:59:22', NULL, '0000-00-00 00:00:00'),
(1174, 'sep', NULL, 1, '2012-10-10 09:59:37', NULL, '0000-00-00 00:00:00'),
(1175, 'oct', NULL, 1, '2012-10-10 09:59:53', NULL, '0000-00-00 00:00:00'),
(1176, 'nov', NULL, 1, '2012-10-10 10:00:11', NULL, '0000-00-00 00:00:00'),
(1177, 'dec', NULL, 1, '2012-10-10 10:00:24', NULL, '0000-00-00 00:00:00'),
(1178, 'crmtask', NULL, 1, '2012-10-10 10:25:51', 1, '2013-09-23 08:54:54'),
(1179, 'self_manage', NULL, 1, '2012-10-10 10:27:47', 1, '2012-10-10 10:28:51'),
(1180, 'delegate_to_subordinate', NULL, 1, '2012-10-10 10:29:08', NULL, '0000-00-00 00:00:00'),
(1181, 'pop_up', NULL, 1, '2012-10-10 10:29:37', NULL, '0000-00-00 00:00:00'),
(1182, 'related_to_empty', NULL, 1, '2012-10-10 10:32:47', 1, '2012-10-10 10:33:18'),
(1183, 'data', NULL, 1, '2012-10-10 10:38:34', NULL, '0000-00-00 00:00:00'),
(1184, 'crmnote', NULL, 1, '2012-10-10 10:42:30', NULL, '0000-00-00 00:00:00'),
(1185, 'profile', NULL, 1, '2012-10-11 06:24:58', NULL, '0000-00-00 00:00:00'),
(1186, 'change_password', NULL, 1, '2012-10-11 06:25:21', NULL, '0000-00-00 00:00:00'),
(1187, 'old_password', NULL, 1, '2012-10-11 07:55:41', NULL, '0000-00-00 00:00:00'),
(1188, 'new_password', NULL, 1, '2012-10-11 07:55:59', NULL, '0000-00-00 00:00:00'),
(1189, 'confirm_new_password', NULL, 1, '2012-10-11 07:56:30', NULL, '0000-00-00 00:00:00'),
(1190, 'custom_validation_wrong_old_password', NULL, 1, '2012-10-11 07:57:10', NULL, '0000-00-00 00:00:00'),
(1191, 'change_password_success', NULL, 1, '2012-10-11 08:10:21', NULL, '0000-00-00 00:00:00'),
(1192, 'change_password_fail', NULL, 1, '2012-10-11 08:10:45', NULL, '0000-00-00 00:00:00'),
(1193, 'contract_transaction_log', NULL, 1, '2012-10-11 11:27:09', NULL, '0000-00-00 00:00:00'),
(1194, 'opportunity_transaction_log', NULL, 1, '2012-10-11 11:28:12', NULL, '0000-00-00 00:00:00'),
(1195, 'group_used', NULL, 1, '2012-10-11 12:34:57', NULL, '0000-00-00 00:00:00'),
(1196, 'company_form_wizard', NULL, 1, '2012-10-11 12:44:29', NULL, '0000-00-00 00:00:00'),
(1197, 'softwarerelease', NULL, 1, '2012-10-11 13:13:56', NULL, '0000-00-00 00:00:00'),
(1198, 'custom_validation_name_not_available', NULL, 1, '2012-10-11 13:33:16', NULL, '0000-00-00 00:00:00'),
(1199, 'all_unit', NULL, 1, '2012-10-11 14:25:24', NULL, '0000-00-00 00:00:00'),
(1200, 'contract_nominal', NULL, 1, '2012-10-11 14:26:31', NULL, '0000-00-00 00:00:00'),
(1201, 'crmmeeting', NULL, 1, '2012-10-11 14:29:38', NULL, '0000-00-00 00:00:00'),
(1202, 'invitee', NULL, 1, '2012-10-11 14:30:51', NULL, '0000-00-00 00:00:00'),
(1203, 'location', NULL, 1, '2012-10-11 14:31:09', NULL, '0000-00-00 00:00:00'),
(1204, 'reminder', NULL, 1, '2012-10-11 14:31:24', NULL, '0000-00-00 00:00:00'),
(1205, 'lead_data', NULL, 1, '2012-10-11 14:32:02', NULL, '0000-00-00 00:00:00'),
(1206, 'target_data', NULL, 1, '2012-10-11 14:32:20', NULL, '0000-00-00 00:00:00'),
(1207, 'target', NULL, 1, '2012-10-11 14:32:36', NULL, '0000-00-00 00:00:00'),
(1208, 'officer_data', NULL, 1, '2012-10-11 14:32:55', 1, '2013-06-17 09:12:05'),
(1209, 'crmcall', NULL, 1, '2012-10-11 14:34:20', NULL, '0000-00-00 00:00:00'),
(1210, 'direction', NULL, 1, '2012-10-11 14:34:36', NULL, '0000-00-00 00:00:00'),
(1211, 'customer', NULL, 1, '2012-10-11 15:22:07', NULL, '0000-00-00 00:00:00'),
(1212, 'draft', NULL, 1, '2012-10-11 15:22:44', NULL, '0000-00-00 00:00:00'),
(1213, 'approved', NULL, 1, '2012-10-11 15:23:01', NULL, '0000-00-00 00:00:00'),
(1214, 'incomplete', NULL, 1, '2012-10-11 15:23:24', NULL, '0000-00-00 00:00:00'),
(1215, 'completed', NULL, 1, '2012-10-11 15:23:51', NULL, '0000-00-00 00:00:00'),
(1216, 'verified', NULL, 1, '2012-10-11 15:24:31', 1, '2012-10-11 15:26:10'),
(1217, 'units_price', NULL, 1, '2012-10-11 15:27:34', NULL, '0000-00-00 00:00:00'),
(1218, 'discount_percent', NULL, 1, '2012-10-11 15:27:55', NULL, '0000-00-00 00:00:00'),
(1219, 'discount_nominal', NULL, 1, '2012-10-11 15:28:22', NULL, '0000-00-00 00:00:00'),
(1220, 'goods_bonus', NULL, 1, '2012-10-11 15:28:51', NULL, '0000-00-00 00:00:00'),
(1221, 'sales_canvas', NULL, 1, '2012-10-11 15:35:40', NULL, '0000-00-00 00:00:00'),
(1222, 'van', NULL, 1, '2012-10-11 15:36:25', NULL, '0000-00-00 00:00:00'),
(1223, 'sales_type', NULL, 1, '2012-10-11 19:06:09', NULL, '0000-00-00 00:00:00'),
(1224, 'general_commision', NULL, 1, '2012-10-12 04:43:36', NULL, '0000-00-00 00:00:00'),
(1225, 'commision_type', NULL, 1, '2012-10-12 04:44:21', NULL, '0000-00-00 00:00:00'),
(1226, 'commision', NULL, 1, '2012-10-12 04:44:45', NULL, '0000-00-00 00:00:00'),
(1227, 'ref_value', NULL, 1, '2012-10-12 04:45:24', NULL, '0000-00-00 00:00:00'),
(1228, 'commision_value', NULL, 1, '2012-10-12 04:45:54', NULL, '0000-00-00 00:00:00'),
(1229, 'per_goods_commision', NULL, 1, '2012-10-12 05:06:50', NULL, '0000-00-00 00:00:00'),
(1230, 'received_units', NULL, 1, '2012-10-12 15:25:58', NULL, '0000-00-00 00:00:00'),
(1231, 'retur_units', NULL, 1, '2012-10-12 15:26:10', NULL, '0000-00-00 00:00:00'),
(1232, 'custom_validation_lang_key_name_been_used', NULL, 1, '2012-10-17 09:04:57', 1, '2012-10-17 09:05:10'),
(1233, 'discount_type', NULL, 20, '2012-10-17 09:08:04', NULL, '0000-00-00 00:00:00'),
(1234, 'is_public', NULL, 1, '2012-10-17 09:09:22', 1, '2013-06-25 08:27:07'),
(1235, 'discount_value', NULL, 20, '2012-10-17 09:11:49', NULL, '0000-00-00 00:00:00'),
(1236, 'discount_goods', NULL, 20, '2012-10-17 09:13:21', NULL, '0000-00-00 00:00:00'),
(1237, 'commisiongoods', NULL, 20, '2012-10-17 09:14:54', NULL, '0000-00-00 00:00:00'),
(1238, 'pcs_discount', NULL, 20, '2012-10-17 09:17:15', NULL, '0000-00-00 00:00:00'),
(1239, 'start_periode', NULL, 20, '2012-10-17 09:31:09', NULL, '0000-00-00 00:00:00');
INSERT INTO `gtfw_key` (`key_id`, `key_code`, `key_desc`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`) VALUES
(1240, 'end_periode', NULL, 20, '2012-10-17 09:31:29', NULL, '0000-00-00 00:00:00'),
(1241, 'goods_id', NULL, 20, '2012-10-17 09:35:55', NULL, '0000-00-00 00:00:00'),
(1242, 'sales_position', NULL, 20, '2012-10-17 09:39:41', NULL, '0000-00-00 00:00:00'),
(1243, 'emp_number', NULL, 20, '2012-10-17 09:49:49', NULL, '0000-00-00 00:00:00'),
(1244, 'emp_name', NULL, 20, '2012-10-17 09:50:16', NULL, '0000-00-00 00:00:00'),
(1245, 'company_type', NULL, 8, '2012-10-18 11:34:13', NULL, '0000-00-00 00:00:00'),
(1246, 'company_detail', NULL, 8, '2012-10-18 13:39:44', NULL, '0000-00-00 00:00:00'),
(1248, 'sales_transaction', NULL, 1, '2012-10-19 10:50:41', NULL, '0000-00-00 00:00:00'),
(1249, 'payment_terms', NULL, 1, '2012-10-19 10:51:09', 1, '2012-10-19 10:52:03'),
(1250, 'taking_order', NULL, 1, '2012-10-19 10:52:36', NULL, '0000-00-00 00:00:00'),
(1251, 'delivery_date', NULL, 1, '2012-10-19 10:53:59', NULL, '0000-00-00 00:00:00'),
(1252, 'down_payment', NULL, 1, '2012-10-19 10:54:23', NULL, '0000-00-00 00:00:00'),
(1253, 'businessstatus', NULL, 24, '2012-10-23 11:15:22', NULL, '0000-00-00 00:00:00'),
(1254, 'capitalstatus', NULL, 24, '2012-10-23 14:12:48', NULL, '0000-00-00 00:00:00'),
(1255, 'sales_verification', NULL, 1, '2012-10-24 14:22:08', 1, '2012-10-24 14:22:35'),
(1256, 'formula_number', NULL, 1, '2012-10-29 08:48:47', NULL, '0000-00-00 00:00:00'),
(1257, 'formula', NULL, 1, '2012-10-29 08:58:32', NULL, '0000-00-00 00:00:00'),
(1258, 'sample', NULL, 1, '2012-10-29 08:58:52', NULL, '0000-00-00 00:00:00'),
(1259, 'digit', NULL, 1, '2012-10-29 09:20:05', NULL, '0000-00-00 00:00:00'),
(1260, 'restart', NULL, 1, '2012-10-29 09:23:57', NULL, '0000-00-00 00:00:00'),
(1261, 'is_query', NULL, 1, '2012-10-29 09:24:24', 1, '2013-09-04 08:25:31'),
(1262, 'user_profile', NULL, 1, '2012-10-29 11:16:13', NULL, '0000-00-00 00:00:00'),
(1263, 'lang', NULL, 1, '2012-10-29 11:16:31', NULL, '0000-00-00 00:00:00'),
(1264, 'custom_validation_order_name_not_available', NULL, 1, '2012-10-29 11:37:02', 1, '2012-10-29 13:15:52'),
(1265, 'commision_exist_in', NULL, 1, '2012-10-29 13:06:17', NULL, '0000-00-00 00:00:00'),
(1266, 'msg_save_commision_success', NULL, 1, '2012-10-29 13:06:29', 1, '2013-05-21 13:30:01'),
(1267, 'no_commision', NULL, 1, '2012-10-29 13:06:49', NULL, '0000-00-00 00:00:00'),
(1268, 'reset_commision', NULL, 1, '2012-10-29 13:07:04', NULL, '0000-00-00 00:00:00'),
(1269, 'this_link', NULL, 1, '2012-10-29 13:07:18', NULL, '0000-00-00 00:00:00'),
(1270, 'recap_customerorder', NULL, 1, '2012-10-29 13:07:59', NULL, '0000-00-00 00:00:00'),
(1271, 'weekly', NULL, 1, '2012-10-29 13:13:11', NULL, '0000-00-00 00:00:00'),
(1272, 'custom_validation_phone_type_name_not_available', NULL, 1, '2012-10-29 14:18:15', NULL, '0000-00-00 00:00:00'),
(1273, 'custom_validation_photo_type_name_not_available', NULL, 1, '2012-10-29 14:24:12', NULL, '0000-00-00 00:00:00'),
(1274, 'prioritylevel', NULL, 1, '2012-10-29 15:18:02', NULL, '0000-00-00 00:00:00'),
(1275, 'purposestatus', NULL, 1, '2012-10-29 15:50:57', NULL, '0000-00-00 00:00:00'),
(1276, 'bugresolution', NULL, 1, '2012-10-29 16:51:48', 1, '2013-09-23 15:36:18'),
(1277, 'bugsource', NULL, 1, '2012-10-30 08:51:07', 1, '2012-11-01 10:44:06'),
(1278, 'bugstatus', NULL, 24, '2012-10-30 09:40:23', 1, '2013-09-23 15:35:40'),
(1279, 'bugtype', NULL, 1, '2012-10-30 09:43:33', 1, '2013-09-23 15:35:49'),
(1280, 'unit_option', NULL, 1, '2012-10-30 09:44:12', NULL, '0000-00-00 00:00:00'),
(1281, 'use_unit_as_working_unit', NULL, 1, '2012-10-30 09:49:27', NULL, '0000-00-00 00:00:00'),
(1282, 'use_employee_unit_as_working_unit', NULL, 1, '2012-10-30 09:50:01', NULL, '0000-00-00 00:00:00'),
(1283, 'access_right', NULL, 1, '2012-10-30 13:40:40', NULL, '0000-00-00 00:00:00'),
(1284, 'category_access', NULL, 1, '2012-10-30 13:41:09', NULL, '0000-00-00 00:00:00'),
(1285, 'show_po_price', NULL, 1, '2012-10-30 13:42:16', 1, '2012-10-30 13:44:21'),
(1286, 'show_do_price', NULL, 1, '2012-10-30 13:43:40', NULL, '0000-00-00 00:00:00'),
(1287, 'show_gr_price', NULL, 1, '2012-10-30 13:44:03', NULL, '0000-00-00 00:00:00'),
(1288, 'deposit_amount', NULL, 1, '2012-10-30 13:58:07', NULL, '0000-00-00 00:00:00'),
(1289, 'sales_canvas_report', NULL, 1, '2012-10-30 14:08:45', NULL, '0000-00-00 00:00:00'),
(1290, 'retur_customer_report', NULL, 1, '2012-10-31 07:30:52', NULL, '0000-00-00 00:00:00'),
(1291, 'daily_sales_report', NULL, 1, '2012-10-31 11:45:23', NULL, '0000-00-00 00:00:00'),
(1292, 'remaining', NULL, 1, '2012-10-31 11:51:48', NULL, '0000-00-00 00:00:00'),
(1293, 'payment_due', NULL, 1, '2012-10-31 13:35:48', NULL, '0000-00-00 00:00:00'),
(1294, 'invoice_date', NULL, 1, '2012-10-31 13:36:05', NULL, '0000-00-00 00:00:00'),
(1295, 'percentage', NULL, 1, '2012-10-31 13:36:26', NULL, '0000-00-00 00:00:00'),
(1296, 'payment_condition', NULL, 1, '2012-10-31 13:38:06', NULL, '0000-00-00 00:00:00'),
(1297, 'subtotal', NULL, 1, '2012-10-31 13:38:25', NULL, '0000-00-00 00:00:00'),
(1298, 'discount_and_fine', NULL, 1, '2012-10-31 13:39:22', NULL, '0000-00-00 00:00:00'),
(1299, 'days', NULL, 1, '2012-10-31 13:39:35', NULL, '0000-00-00 00:00:00'),
(1300, 'sale_remarks', NULL, 1, '2012-10-31 14:14:31', NULL, '0000-00-00 00:00:00'),
(1301, 'nominal', NULL, 1, '2012-10-31 14:16:37', NULL, '0000-00-00 00:00:00'),
(1302, 'goods_income_report', NULL, 1, '2012-11-01 10:12:51', NULL, '0000-00-00 00:00:00'),
(1303, 'goods_outcome_report', NULL, 1, '2012-11-01 13:54:02', NULL, '0000-00-00 00:00:00'),
(1304, 'addition', NULL, 1, '2012-11-01 14:30:02', NULL, '0000-00-00 00:00:00'),
(1305, 'reduction', NULL, 1, '2012-11-01 14:30:19', NULL, '0000-00-00 00:00:00'),
(1306, 'stock_opname_report', NULL, 1, '2012-11-01 14:32:15', NULL, '0000-00-00 00:00:00'),
(1307, 'waretype_id', NULL, 1, '2012-11-05 09:22:04', NULL, '0000-00-00 00:00:00'),
(1308, 'usage_recap', NULL, 1, '2012-11-06 10:50:22', NULL, '0000-00-00 00:00:00'),
(1309, 'Tuesday', NULL, 1, '2012-11-06 13:30:54', NULL, '0000-00-00 00:00:00'),
(1310, 'Monday', NULL, 1, '2012-11-06 13:31:07', NULL, '0000-00-00 00:00:00'),
(1311, 'Wednesday', NULL, 1, '2012-11-06 13:31:18', NULL, '0000-00-00 00:00:00'),
(1312, 'Thursday', NULL, 1, '2012-11-06 13:31:26', NULL, '0000-00-00 00:00:00'),
(1313, 'Friday', NULL, 1, '2012-11-06 13:31:39', 1, '2012-11-06 13:32:14'),
(1314, 'Saturday', NULL, 1, '2012-11-06 13:31:58', NULL, '0000-00-00 00:00:00'),
(1315, 'Sunday', NULL, 1, '2012-11-06 13:32:09', NULL, '0000-00-00 00:00:00'),
(1316, 'about', NULL, 1, '2012-11-07 09:47:59', NULL, '0000-00-00 00:00:00'),
(1317, 'legal_notice', NULL, 1, '2012-11-07 09:48:12', NULL, '0000-00-00 00:00:00'),
(1318, 'home', NULL, 1, '2012-11-07 09:48:31', NULL, '0000-00-00 00:00:00'),
(1319, 'scroll_up', NULL, 1, '2012-11-07 09:48:55', NULL, '0000-00-00 00:00:00'),
(1320, 'scroll_down', NULL, 1, '2012-11-07 09:49:12', NULL, '0000-00-00 00:00:00'),
(1321, 'advance_search', NULL, 1, '2012-11-07 09:53:31', NULL, '0000-00-00 00:00:00'),
(1322, 'basic_search', NULL, 1, '2012-11-07 09:53:55', 1, '2012-11-07 13:35:29'),
(1323, 'msg_cancel_success', NULL, 1, '2012-11-07 10:02:37', 1, '2013-05-21 13:27:50'),
(1324, 'account_logo', NULL, 1, '2012-11-07 10:22:14', NULL, '0000-00-00 00:00:00'),
(1325, 'logo', NULL, 1, '2012-11-07 10:22:23', NULL, '0000-00-00 00:00:00'),
(1326, 'retur_item_empty', NULL, 1, '2012-11-07 11:42:05', NULL, '0000-00-00 00:00:00'),
(1327, 'country_capital', NULL, 1, '2012-11-07 11:56:53', NULL, '0000-00-00 00:00:00'),
(1328, 'region', NULL, 1, '2012-11-07 12:48:35', NULL, '0000-00-00 00:00:00'),
(1329, 'bank_account_data', NULL, 1, '2012-11-07 12:57:59', NULL, '0000-00-00 00:00:00'),
(1330, 'npwp_data', NULL, 1, '2012-11-07 12:58:17', NULL, '0000-00-00 00:00:00'),
(1331, 'billing_address_data', NULL, 1, '2012-11-07 13:00:37', NULL, '0000-00-00 00:00:00'),
(1332, 'shipping_address_data', NULL, 1, '2012-11-07 13:01:05', NULL, '0000-00-00 00:00:00'),
(1333, 'logo_data', NULL, 1, '2012-11-07 13:01:25', NULL, '0000-00-00 00:00:00'),
(1334, 'basic_search_title', NULL, 1, '2012-11-07 13:34:31', 1, '2012-11-07 13:35:16'),
(1335, 'advance_search_title', NULL, 1, '2012-11-07 13:36:08', 1, '2012-11-07 13:38:14'),
(1336, 'logo_type', NULL, 1, '2012-11-07 13:49:19', NULL, '0000-00-00 00:00:00'),
(1337, 'meeting', NULL, 1, '2012-11-07 19:10:00', NULL, '0000-00-00 00:00:00'),
(1338, 'call', NULL, 1, '2012-11-07 19:10:14', NULL, '0000-00-00 00:00:00'),
(1339, 'task', NULL, 1, '2012-11-07 19:10:34', 1, '2013-09-23 08:54:48'),
(1340, 'note', NULL, 1, '2012-11-07 19:10:51', NULL, '0000-00-00 00:00:00'),
(1341, 'account_data', NULL, 1, '2012-11-07 19:45:31', NULL, '0000-00-00 00:00:00'),
(1342, 'business_address_data', NULL, 1, '2012-11-07 19:53:19', 9, '2012-11-11 23:32:19'),
(1343, 'home_address_data', NULL, 1, '2012-11-07 19:53:46', NULL, '0000-00-00 00:00:00'),
(1344, 'converts', NULL, 1, '2012-11-08 08:50:05', NULL, '0000-00-00 00:00:00'),
(1345, 'current_photo', NULL, 1, '2012-11-08 09:31:22', NULL, '0000-00-00 00:00:00'),
(1346, 'photo_preview', NULL, 1, '2012-11-08 09:31:51', NULL, '0000-00-00 00:00:00'),
(1347, 'custom_validation_cek_phone_empty', NULL, 1, '2012-11-08 10:01:50', NULL, '0000-00-00 00:00:00'),
(1348, 'custom_validation_religion_name_already_exists', NULL, 4, '2012-11-08 10:38:33', NULL, '0000-00-00 00:00:00'),
(1349, 'file_name', NULL, 1, '2012-11-08 10:57:04', NULL, '0000-00-00 00:00:00'),
(1350, 'custom_validation_salutation_name_already_exists', NULL, 24, '2012-11-08 11:06:07', NULL, '0000-00-00 00:00:00'),
(1351, 'custom_validation_functional_position_name_not_available', NULL, 24, '2012-11-08 13:48:13', NULL, '0000-00-00 00:00:00'),
(1352, 'custom_validation_functional_position_code_not_available', NULL, 24, '2012-11-08 13:50:22', NULL, '0000-00-00 00:00:00'),
(1353, 'leader', NULL, 1, '2012-11-08 13:54:27', NULL, '0000-00-00 00:00:00'),
(1354, 'custom_validation_colour_name_already_exists', NULL, 24, '2012-11-08 15:45:00', NULL, '0000-00-00 00:00:00'),
(1355, 'custom_validation_currency_name_already_exists', NULL, 24, '2012-11-08 16:20:42', NULL, '0000-00-00 00:00:00'),
(1356, 'this_link_allows_you_to_download', NULL, 37, '2012-11-09 10:29:06', NULL, '0000-00-00 00:00:00'),
(1357, 'you_can_download_the_vcard_file_directly_here', NULL, 37, '2012-11-09 10:29:32', 1, '2012-11-22 21:33:03'),
(1358, 'this_is_your_business_card_qrcode', NULL, 37, '2012-11-09 10:30:03', NULL, '0000-00-00 00:00:00'),
(1359, 'the_data_you_have_filled_in_has_generated', NULL, 37, '2012-11-09 10:30:30', NULL, '0000-00-00 00:00:00'),
(1360, 'download', NULL, 37, '2012-11-09 10:43:10', NULL, '0000-00-00 00:00:00'),
(1361, 'scan', NULL, 37, '2012-11-09 10:43:23', NULL, '0000-00-00 00:00:00'),
(1362, 'you_can_download_the_image_directly_here', NULL, 37, '2012-11-09 11:17:46', 1, '2012-11-22 21:32:50'),
(1363, 'msg_export_success', NULL, 37, '2012-11-09 11:18:44', 1, '2013-05-21 13:29:21'),
(1364, 'custom_validation_prioritylevel_name_already_exists', NULL, 24, '2012-11-09 14:18:51', NULL, '0000-00-00 00:00:00'),
(1365, 'custom_validation_prioritylevel_level_already_exists', NULL, 24, '2012-11-09 14:24:34', NULL, '0000-00-00 00:00:00'),
(1366, 'custom_validation_prioritylevel_order_already_exists', NULL, 24, '2012-11-09 14:29:56', NULL, '0000-00-00 00:00:00'),
(1367, 'custom_validation_bugtype_name_already_exists', NULL, 24, '2012-11-09 14:48:44', 1, '2013-09-23 16:23:45'),
(1368, 'custom_validation_bugstatus_name_already_exists', NULL, 24, '2012-11-09 15:27:11', 1, '2013-09-23 16:22:17'),
(1369, 'custom_validation_bugstatus_order_already_exists', NULL, 24, '2012-11-09 15:31:38', 1, '2013-09-23 16:23:07'),
(1370, 'custom_validation_bugsource_name_already_exists', NULL, 24, '2012-11-09 15:54:38', 1, '2013-09-23 16:21:30'),
(1371, 'priority', NULL, 24, '2012-11-09 16:15:22', NULL, '0000-00-00 00:00:00'),
(1372, 'customertype', NULL, 24, '2012-11-09 16:16:12', NULL, '0000-00-00 00:00:00'),
(1373, 'export_vcard', NULL, 9, '2012-11-09 16:33:10', NULL, '0000-00-00 00:00:00'),
(1374, 'lead_conversion_form', NULL, 9, '2012-11-09 16:34:26', NULL, '0000-00-00 00:00:00'),
(1375, 'contact_form', NULL, 9, '2012-11-11 23:30:37', NULL, '0000-00-00 00:00:00'),
(1376, 'company_org', NULL, 9, '2012-11-11 23:31:02', NULL, '0000-00-00 00:00:00'),
(1377, 'job_title', NULL, 9, '2012-11-11 23:31:18', NULL, '0000-00-00 00:00:00'),
(1378, 'building_name', NULL, 9, '2012-11-11 23:31:36', NULL, '0000-00-00 00:00:00'),
(1379, 'business_address', NULL, 9, '2012-11-11 23:32:03', NULL, '0000-00-00 00:00:00'),
(1380, 'home_address', NULL, 9, '2012-11-11 23:32:37', NULL, '0000-00-00 00:00:00'),
(1381, 'generate', NULL, 9, '2012-11-11 23:33:03', NULL, '0000-00-00 00:00:00'),
(1382, '2_1_version', NULL, 9, '2012-11-11 23:33:25', 52, '2013-09-13 11:06:55'),
(1383, '3_0_version', NULL, 9, '2012-11-11 23:33:42', NULL, '0000-00-00 00:00:00'),
(1384, '4_0_version', NULL, 9, '2012-11-11 23:34:03', NULL, '0000-00-00 00:00:00'),
(1385, 'standard_format', NULL, 9, '2012-11-11 23:35:36', NULL, '0000-00-00 00:00:00'),
(1386, 'email_and_website', NULL, 9, '2012-11-11 23:37:09', NULL, '0000-00-00 00:00:00'),
(1387, 'preferred_email', NULL, 9, '2012-11-11 23:37:32', 1, '2012-11-22 21:30:14'),
(1388, 'alternative_email', NULL, 9, '2012-11-11 23:38:14', NULL, '0000-00-00 00:00:00'),
(1389, 'work_website', NULL, 9, '2012-11-11 23:38:29', NULL, '0000-00-00 00:00:00'),
(1390, 'business_phone', NULL, 9, '2012-11-11 23:38:50', NULL, '0000-00-00 00:00:00'),
(1391, 'business_fax', NULL, 9, '2012-11-11 23:39:08', NULL, '0000-00-00 00:00:00'),
(1392, 'mobile_phone', NULL, 9, '2012-11-11 23:39:28', NULL, '0000-00-00 00:00:00'),
(1393, 'home_phone', NULL, 9, '2012-11-11 23:39:46', NULL, '0000-00-00 00:00:00'),
(1394, 'ok', NULL, 1, '2012-11-12 06:36:09', NULL, '0000-00-00 00:00:00'),
(1395, 'confirm_delete', NULL, 1, '2012-11-12 06:37:45', NULL, '0000-00-00 00:00:00'),
(1396, 'message_delete', NULL, 1, '2012-11-12 06:38:16', NULL, '0000-00-00 00:00:00'),
(1397, 'alert', NULL, 1, '2012-11-12 06:39:18', NULL, '0000-00-00 00:00:00'),
(1398, 'confirm', NULL, 1, '2012-11-12 06:39:42', NULL, '0000-00-00 00:00:00'),
(1399, 'prompt', NULL, 1, '2012-11-12 06:40:31', NULL, '0000-00-00 00:00:00'),
(1400, 'wrong_url', NULL, 1, '2012-11-12 06:40:54', NULL, '0000-00-00 00:00:00'),
(1401, 'maximum_file_size', NULL, 1, '2012-11-12 06:57:16', NULL, '0000-00-00 00:00:00'),
(1402, 'forbidden_filetype', NULL, 1, '2012-11-12 06:57:47', NULL, '0000-00-00 00:00:00'),
(1403, 'progress', NULL, 1, '2012-11-12 06:58:28', NULL, '0000-00-00 00:00:00'),
(1404, 'remove', NULL, 1, '2012-11-12 06:59:12', NULL, '0000-00-00 00:00:00'),
(1405, 'upload_canceled', NULL, 1, '2012-11-12 06:59:39', NULL, '0000-00-00 00:00:00'),
(1406, 'aborting', NULL, 1, '2012-11-12 06:59:56', NULL, '0000-00-00 00:00:00'),
(1407, 'image_preview', NULL, 1, '2012-11-12 07:00:38', NULL, '0000-00-00 00:00:00'),
(1408, 'select_file', NULL, 1, '2012-11-12 07:00:56', 1, '2013-06-26 14:36:44'),
(1409, 'unable_to_compute', NULL, 1, '2012-11-12 07:01:16', NULL, '0000-00-00 00:00:00'),
(1410, 'good_discount', NULL, 24, '2012-11-12 08:47:50', NULL, '0000-00-00 00:00:00'),
(1411, 'treatment_discount', NULL, 24, '2012-11-12 08:48:19', NULL, '0000-00-00 00:00:00'),
(1412, 'goods_discount', NULL, 24, '2012-11-12 08:49:58', NULL, '0000-00-00 00:00:00'),
(1414, 'simple_search', NULL, 24, '2012-11-14 10:25:03', 1, '2013-07-25 09:23:06'),
(1415, 'custom_validation_code_already_exists', NULL, 1, '2012-11-14 11:20:16', 1, '2012-11-14 15:34:58'),
(1416, 'custom_validation_name_already_exists', NULL, 1, '2012-11-14 11:20:41', 1, '2012-11-14 15:34:30'),
(1417, 'custom_validation_is_bank_code_avalilable', NULL, 24, '2012-11-14 15:18:51', NULL, '0000-00-00 00:00:00'),
(1418, 'backup_to_vcard', NULL, 37, '2012-11-19 10:32:34', NULL, '0000-00-00 00:00:00'),
(1419, 'synchronization', NULL, 37, '2012-11-19 15:01:34', NULL, '0000-00-00 00:00:00'),
(1420, 'assignment', NULL, 37, '2012-11-20 09:36:24', NULL, '0000-00-00 00:00:00'),
(1421, 'account_assignment', NULL, 37, '2012-11-20 09:37:28', 1, '2013-11-04 08:49:40'),
(1422, 'ecs_module', NULL, 1, '2012-11-20 10:53:37', NULL, '0000-00-00 00:00:00'),
(1423, 'finance_module', NULL, 1, '2012-11-20 10:53:49', NULL, '0000-00-00 00:00:00'),
(1424, 'informal_education_level', NULL, 1, '2012-11-20 11:18:23', NULL, '0000-00-00 00:00:00'),
(1425, 'custom_validation_order_already_exists', NULL, 1, '2012-11-21 08:46:31', NULL, '0000-00-00 00:00:00'),
(1426, 'employee_and_officer_should_not_be_the_same', NULL, 37, '2012-11-22 14:58:42', 1, '2013-06-17 09:13:41'),
(1427, 'lead_assignment', NULL, 1, '2012-11-22 21:29:24', 1, '2013-11-04 08:48:27'),
(1428, 'email_alternative', NULL, 1, '2012-11-22 21:29:56', NULL, '0000-00-00 00:00:00'),
(1429, 'email_this', NULL, 1, '2012-11-22 21:30:48', NULL, '0000-00-00 00:00:00'),
(1430, 'download_file', NULL, 1, '2012-11-22 21:31:09', 1, '2012-11-22 21:33:23'),
(1431, 'detail_transaction', NULL, 37, '2012-11-23 09:02:57', NULL, '0000-00-00 00:00:00'),
(1432, 'ownerstatus', NULL, 1, '2012-11-23 09:16:58', NULL, '0000-00-00 00:00:00'),
(1433, 'contract_summary', NULL, 37, '2012-11-23 14:18:01', NULL, '0000-00-00 00:00:00'),
(1434, 'custom_validation_level_already_exists', NULL, 1, '2012-11-28 10:50:08', NULL, '0000-00-00 00:00:00'),
(1435, 'set_as_account', NULL, 41, '2012-11-30 08:56:07', NULL, '0000-00-00 00:00:00'),
(1436, 'set_other_master_data', NULL, 41, '2012-11-30 08:57:30', NULL, '0000-00-00 00:00:00'),
(1437, 'do_no_more_goods', NULL, 1, '2012-11-30 10:30:15', NULL, '0000-00-00 00:00:00'),
(1438, 'custom_validation_username_already_exists', NULL, 1, '2012-11-30 14:03:10', NULL, '0000-00-00 00:00:00'),
(1439, 'employee_area', NULL, 1, '2012-11-30 16:28:30', NULL, '0000-00-00 00:00:00'),
(1440, 'msg_total_percent_over', NULL, 1, '2012-12-03 09:03:44', NULL, '0000-00-00 00:00:00'),
(1441, 'msg_total_nominal_over', NULL, 1, '2012-12-03 09:06:08', 1, '2012-12-03 09:10:59'),
(1442, 'unit_name', NULL, 1, '2012-12-04 08:50:04', NULL, '0000-00-00 00:00:00'),
(1443, 'unit_profit_centre', NULL, 1, '2012-12-04 09:18:19', 1, '2012-12-04 09:19:25'),
(1444, 'partial_update', NULL, 1, '2012-12-04 18:21:23', NULL, '0000-00-00 00:00:00'),
(1445, 'message_error_mutation_input', NULL, 10, '2012-12-08 16:09:35', NULL, '0000-00-00 00:00:00'),
(1446, 'bug_category', NULL, 1, '2012-12-13 10:18:35', 1, '2013-09-23 15:35:58'),
(1447, 'crm.ref.software.release', NULL, 1, '2012-12-18 10:45:56', NULL, '0000-00-00 00:00:00'),
(1448, 'in_thousands', NULL, 1, '2012-12-18 15:28:40', NULL, '0000-00-00 00:00:00'),
(1449, 'address_and_contact', NULL, 1, '2012-12-28 14:31:48', NULL, '0000-00-00 00:00:00'),
(1450, 'add_other_goods', NULL, 1, '2012-12-28 15:12:02', NULL, '0000-00-00 00:00:00'),
(1451, 'ware_type', NULL, 1, '2013-01-16 14:10:23', NULL, '0000-00-00 00:00:00'),
(1452, 'buy_area', NULL, 1, '2013-01-16 14:15:13', NULL, '0000-00-00 00:00:00'),
(1453, 'sell_area', NULL, 1, '2013-01-16 14:16:07', NULL, '0000-00-00 00:00:00'),
(1454, 'to_go', NULL, 1, '2013-01-23 12:44:54', NULL, '0000-00-00 00:00:00'),
(1455, 'ago', NULL, 1, '2013-01-23 12:45:05', 1, '2013-01-23 12:47:50'),
(1456, 'second', NULL, 1, '2013-01-23 12:45:19', NULL, '0000-00-00 00:00:00'),
(1457, 'minute', NULL, 1, '2013-01-23 12:45:53', NULL, '0000-00-00 00:00:00'),
(1458, 'hour', NULL, 1, '2013-01-23 12:46:10', NULL, '0000-00-00 00:00:00'),
(1459, 'decade', NULL, 1, '2013-01-23 12:46:54', NULL, '0000-00-00 00:00:00'),
(1460, 'show', NULL, 1, '2013-01-25 09:35:10', 1, '2013-05-08 22:00:29'),
(1461, 'floor', NULL, 1, '2013-03-22 09:32:48', NULL, '0000-00-00 00:00:00'),
(1462, 'fxa_floor', NULL, 1, '2013-03-22 09:33:34', NULL, '0000-00-00 00:00:00'),
(1463, 'view', NULL, 1, '2013-03-22 09:34:03', NULL, '0000-00-00 00:00:00'),
(1464, 'building_ownership', NULL, 1, '2013-03-25 11:10:52', NULL, '0000-00-00 00:00:00'),
(1465, 'building_control', NULL, 1, '2013-03-25 11:11:12', NULL, '0000-00-00 00:00:00'),
(1466, 'building_condition', NULL, 1, '2013-03-25 11:11:34', NULL, '0000-00-00 00:00:00'),
(1467, 'building_char_type', NULL, 1, '2013-03-25 11:14:41', NULL, '0000-00-00 00:00:00'),
(1468, 'please_select_the_type_of_assets', NULL, 1, '2013-04-15 10:03:04', 1, '2013-04-15 10:06:04'),
(1469, 'popup_fixed_asset_type', NULL, 1, '2013-04-15 10:05:09', NULL, '0000-00-00 00:00:00'),
(1470, 'account_report', NULL, 1, '2013-04-16 14:43:07', 1, '2013-04-16 14:50:56'),
(1471, 'quantity', NULL, 1, '2013-04-22 16:51:18', 1, '2013-04-22 16:51:43'),
(1472, 'asset_name', NULL, 1, '2013-04-23 10:03:40', NULL, '0000-00-00 00:00:00'),
(1473, 'asset_short_name', NULL, 1, '2013-04-23 10:04:08', NULL, '0000-00-00 00:00:00'),
(1474, 'asset_code', NULL, 1, '2013-04-23 10:04:30', NULL, '0000-00-00 00:00:00'),
(1475, 'bmn_code', NULL, 1, '2013-04-23 10:04:44', NULL, '0000-00-00 00:00:00'),
(1476, 'reg_code', NULL, 1, '2013-04-23 10:05:00', NULL, '0000-00-00 00:00:00'),
(1477, 'asset_type', NULL, 1, '2013-04-23 10:05:32', NULL, '0000-00-00 00:00:00'),
(1478, 'depreciation_type', NULL, 1, '2013-04-23 10:05:51', NULL, '0000-00-00 00:00:00'),
(1479, 'command_unit', NULL, 1, '2013-04-23 11:46:39', NULL, '0000-00-00 00:00:00'),
(1480, 'view_all_data', NULL, 1, '2013-04-24 21:03:22', NULL, '0000-00-00 00:00:00'),
(1481, 'officer_is_admin', NULL, 1, '2013-04-24 21:03:43', NULL, '0000-00-00 00:00:00'),
(1482, 'length', NULL, 1, '2013-04-24 21:04:21', NULL, '0000-00-00 00:00:00'),
(1483, 'width', NULL, 1, '2013-04-24 21:04:33', NULL, '0000-00-00 00:00:00'),
(1484, 'volume', NULL, 1, '2013-04-24 21:04:48', NULL, '0000-00-00 00:00:00'),
(1485, 'land_size', NULL, 1, '2013-04-24 21:05:25', 1, '2013-04-24 22:38:57'),
(1486, 'economical_age', NULL, 1, '2013-04-24 21:05:45', NULL, '0000-00-00 00:00:00'),
(1487, 'technical_age', NULL, 1, '2013-04-24 21:06:08', NULL, '0000-00-00 00:00:00'),
(1488, 'in_month', NULL, 1, '2013-04-24 21:06:23', NULL, '0000-00-00 00:00:00'),
(1489, 'facility', NULL, 1, '2013-04-24 21:06:36', NULL, '0000-00-00 00:00:00'),
(1490, 'facility_type', NULL, 1, '2013-04-24 21:06:56', NULL, '0000-00-00 00:00:00'),
(1491, 'count', NULL, 1, '2013-04-24 21:07:11', NULL, '0000-00-00 00:00:00'),
(1492, 'has_permit', NULL, 1, '2013-04-24 21:07:37', NULL, '0000-00-00 00:00:00'),
(1493, 'building_character', NULL, 1, '2013-04-24 21:08:18', NULL, '0000-00-00 00:00:00'),
(1494, 'sketch', NULL, 1, '2013-04-24 21:08:53', NULL, '0000-00-00 00:00:00'),
(1495, 'process', NULL, 1, '2013-04-24 21:10:27', NULL, '0000-00-00 00:00:00'),
(1496, 'bmn_asset_code', NULL, 1, '2013-04-24 21:11:07', NULL, '0000-00-00 00:00:00'),
(1497, 'class', NULL, 1, '2013-04-24 21:11:21', NULL, '0000-00-00 00:00:00'),
(1498, 'asset_field', NULL, 1, '2013-04-24 21:11:36', NULL, '0000-00-00 00:00:00'),
(1499, 'asset_group', NULL, 1, '2013-04-24 21:12:01', NULL, '0000-00-00 00:00:00'),
(1500, 'asset_subgroup', NULL, 1, '2013-04-24 21:14:15', NULL, '0000-00-00 00:00:00'),
(1501, 'asset_sub_subgroup', NULL, 1, '2013-04-24 21:14:31', NULL, '0000-00-00 00:00:00'),
(1502, 'registration_code', NULL, 1, '2013-04-24 21:14:54', NULL, '0000-00-00 00:00:00'),
(1503, 'predefined_barcode', NULL, 1, '2013-04-24 21:15:12', NULL, '0000-00-00 00:00:00'),
(1504, 'buying_information', NULL, 1, '2013-04-24 21:15:46', NULL, '0000-00-00 00:00:00'),
(1505, 'asset_based', NULL, 1, '2013-04-24 21:16:02', NULL, '0000-00-00 00:00:00'),
(1506, 'is_automatic_po', NULL, 1, '2013-04-24 21:16:29', NULL, '0000-00-00 00:00:00'),
(1507, 'purchase_start_date', NULL, 1, '2013-04-24 21:17:12', NULL, '0000-00-00 00:00:00'),
(1508, 'warranty_start_date', NULL, 1, '2013-04-24 21:17:30', NULL, '0000-00-00 00:00:00'),
(1509, 'warranty_end_date', NULL, 1, '2013-04-24 21:17:49', NULL, '0000-00-00 00:00:00'),
(1510, 'old', NULL, 1, '2013-04-24 21:23:16', NULL, '0000-00-00 00:00:00'),
(1511, 'is_duplicate', NULL, 1, '2013-04-24 21:23:33', 1, '2013-09-04 08:24:37'),
(1512, 'account_information', NULL, 1, '2013-04-24 21:23:54', NULL, '0000-00-00 00:00:00'),
(1513, 'room', NULL, 1, '2013-04-24 21:24:08', NULL, '0000-00-00 00:00:00'),
(1514, 'quantity_of_assets', NULL, 1, '2013-04-24 21:24:40', NULL, '0000-00-00 00:00:00'),
(1515, 'acquisition', NULL, 1, '2013-04-24 21:24:56', NULL, '0000-00-00 00:00:00'),
(1516, 'fund_source', NULL, 1, '2013-04-24 21:25:11', NULL, '0000-00-00 00:00:00'),
(1517, 'asset_value_information', NULL, 1, '2013-04-24 21:25:34', NULL, '0000-00-00 00:00:00'),
(1518, 'cost', NULL, 1, '2013-04-24 21:25:45', NULL, '0000-00-00 00:00:00'),
(1519, 'total_cost', NULL, 1, '2013-04-24 21:25:58', NULL, '0000-00-00 00:00:00'),
(1520, 'lifetime', NULL, 1, '2013-04-24 21:26:10', NULL, '0000-00-00 00:00:00'),
(1521, 'stock_data', NULL, 1, '2013-04-24 21:26:29', NULL, '0000-00-00 00:00:00'),
(1522, 'varian_type', NULL, 1, '2013-04-24 21:28:38', NULL, '0000-00-00 00:00:00'),
(1523, 'stock_type', NULL, 1, '2013-04-24 21:28:59', NULL, '0000-00-00 00:00:00'),
(1524, 'color', NULL, 1, '2013-04-24 21:29:10', NULL, '0000-00-00 00:00:00'),
(1525, 'dimension', NULL, 1, '2013-04-24 21:29:26', NULL, '0000-00-00 00:00:00'),
(1526, 'material', NULL, 1, '2013-04-24 21:29:49', NULL, '0000-00-00 00:00:00'),
(1527, 'purchase_price', NULL, 1, '2013-04-24 21:30:45', NULL, '0000-00-00 00:00:00'),
(1528, 'purchase_date', NULL, 1, '2013-04-24 21:31:03', NULL, '0000-00-00 00:00:00'),
(1529, 'specification', NULL, 1, '2013-04-24 21:31:17', NULL, '0000-00-00 00:00:00'),
(1530, 'land_data', NULL, 1, '2013-04-24 21:32:37', NULL, '0000-00-00 00:00:00'),
(1531, 'procurement_year', NULL, 1, '2013-04-24 21:32:53', NULL, '0000-00-00 00:00:00'),
(1532, 'land_authorization', NULL, 1, '2013-04-24 21:33:14', NULL, '0000-00-00 00:00:00'),
(1533, 'certificate_number', NULL, 1, '2013-04-24 21:33:40', NULL, '0000-00-00 00:00:00'),
(1534, 'certificate_date', NULL, 1, '2013-04-24 21:33:57', NULL, '0000-00-00 00:00:00'),
(1535, 'certificate_file', NULL, 1, '2013-04-24 21:34:17', 1, '2013-04-24 21:34:32'),
(1536, 'toolmach_data', NULL, 1, '2013-04-24 21:35:35', NULL, '0000-00-00 00:00:00'),
(1537, 'owner_name', NULL, 1, '2013-04-24 21:35:51', NULL, '0000-00-00 00:00:00'),
(1538, 'owner_address', NULL, 1, '2013-04-24 21:36:03', NULL, '0000-00-00 00:00:00'),
(1539, 'tool_machine_type', NULL, 1, '2013-04-24 21:36:21', NULL, '0000-00-00 00:00:00'),
(1540, 'assembly_year', NULL, 1, '2013-04-24 21:36:35', NULL, '0000-00-00 00:00:00'),
(1541, 'own_status', NULL, 1, '2013-04-24 21:36:53', NULL, '0000-00-00 00:00:00'),
(1542, 'vehicle_special_data', NULL, 1, '2013-04-24 21:37:33', NULL, '0000-00-00 00:00:00'),
(1543, 'fabric_number', NULL, 1, '2013-04-24 21:37:55', NULL, '0000-00-00 00:00:00'),
(1544, 'machine_number', NULL, 1, '2013-04-24 21:38:11', NULL, '0000-00-00 00:00:00'),
(1545, 'plat_number', NULL, 1, '2013-04-24 21:38:36', NULL, '0000-00-00 00:00:00'),
(1546, 'bpkb_number', NULL, 1, '2013-04-24 21:39:02', NULL, '0000-00-00 00:00:00'),
(1547, 'bpkb_valid_date', NULL, 1, '2013-04-24 21:39:24', NULL, '0000-00-00 00:00:00'),
(1548, 'fuel_type', NULL, 1, '2013-04-24 21:39:37', NULL, '0000-00-00 00:00:00'),
(1549, 'plat_color_type', NULL, 1, '2013-04-24 21:40:23', NULL, '0000-00-00 00:00:00'),
(1550, 'dealer', NULL, 1, '2013-04-24 21:40:34', NULL, '0000-00-00 00:00:00'),
(1551, 'building_data', NULL, 1, '2013-04-24 22:14:01', NULL, '0000-00-00 00:00:00'),
(1552, 'is_concrete', NULL, 1, '2013-04-24 22:14:38', 1, '2013-04-24 22:15:03'),
(1553, 'floor_size', NULL, 1, '2013-04-24 22:32:53', 1, '2013-04-24 22:39:15'),
(1554, 'land_certificate_number', NULL, 1, '2013-04-24 22:33:10', NULL, '0000-00-00 00:00:00'),
(1555, 'roadnet_data', NULL, 1, '2013-04-24 22:34:34', NULL, '0000-00-00 00:00:00'),
(1556, 'construction', NULL, 1, '2013-04-24 22:34:52', NULL, '0000-00-00 00:00:00'),
(1557, 'wide', NULL, 1, '2013-04-24 22:37:44', 1, '2013-04-24 22:39:08'),
(1558, 'other_data', NULL, 1, '2013-04-24 22:42:53', NULL, '0000-00-00 00:00:00'),
(1559, 'book_library', NULL, 1, '2013-04-24 22:43:20', NULL, '0000-00-00 00:00:00'),
(1560, 'library_name', NULL, 1, '2013-04-24 22:45:06', NULL, '0000-00-00 00:00:00'),
(1561, 'asset_specification', NULL, 1, '2013-04-24 22:45:36', NULL, '0000-00-00 00:00:00'),
(1562, 'art_data', NULL, 1, '2013-04-24 22:46:38', 1, '2013-04-24 22:47:00'),
(1563, 'art_origin', NULL, 1, '2013-04-24 22:47:26', NULL, '0000-00-00 00:00:00'),
(1564, 'art_creator', NULL, 1, '2013-04-24 22:47:47', NULL, '0000-00-00 00:00:00'),
(1565, 'art_material', NULL, 1, '2013-04-24 22:48:01', NULL, '0000-00-00 00:00:00'),
(1566, 'aniplant_data', NULL, 1, '2013-04-24 22:48:37', NULL, '0000-00-00 00:00:00'),
(1567, 'aniplant_name', NULL, 1, '2013-04-24 22:49:24', NULL, '0000-00-00 00:00:00'),
(1568, 'aniplant_size', NULL, 1, '2013-04-24 22:49:40', NULL, '0000-00-00 00:00:00'),
(1569, 'aniplant_amount', NULL, 1, '2013-04-24 22:49:51', NULL, '0000-00-00 00:00:00'),
(1570, 'purchase_year', NULL, 1, '2013-04-24 22:50:08', NULL, '0000-00-00 00:00:00'),
(1571, 'constprog_data', NULL, 1, '2013-04-24 22:57:51', NULL, '0000-00-00 00:00:00'),
(1572, 'intangible_data', NULL, 1, '2013-04-24 22:58:45', NULL, '0000-00-00 00:00:00'),
(1573, 'intangible_type', NULL, 1, '2013-04-24 22:59:05', NULL, '0000-00-00 00:00:00'),
(1574, 'creator', NULL, 1, '2013-04-24 22:59:33', NULL, '0000-00-00 00:00:00'),
(1575, 'residual_salvage', NULL, 1, '2013-04-25 11:22:59', NULL, '0000-00-00 00:00:00'),
(1576, 'acquired_date', NULL, 1, '2013-04-25 11:23:33', NULL, '0000-00-00 00:00:00'),
(1577, 'balance_depreciation', NULL, 1, '2013-04-25 11:24:46', 1, '2013-04-25 11:26:14'),
(1578, 'total_depreciation', NULL, 1, '2013-04-25 11:25:09', NULL, '0000-00-00 00:00:00'),
(1579, 'balance_now', NULL, 1, '2013-04-25 11:26:01', NULL, '0000-00-00 00:00:00'),
(1580, 'depreciation_start_date', NULL, 1, '2013-04-25 11:27:01', NULL, '0000-00-00 00:00:00'),
(1581, 'purchase', NULL, 1, '2013-04-25 11:46:58', 1, '2013-04-25 11:47:10'),
(1582, 'project', NULL, 1, '2013-04-25 11:47:24', NULL, '0000-00-00 00:00:00'),
(1583, 'po_date', NULL, 1, '2013-04-25 11:48:16', NULL, '0000-00-00 00:00:00'),
(1584, 'floor_code', NULL, 1, '2013-04-29 15:56:13', NULL, '0000-00-00 00:00:00'),
(1585, 'floor_name', NULL, 1, '2013-04-29 15:56:29', NULL, '0000-00-00 00:00:00'),
(1586, 'asset', NULL, 1, '2013-05-01 11:21:17', NULL, '0000-00-00 00:00:00'),
(1587, 'floor_and_room', NULL, 1, '2013-05-02 16:12:02', NULL, '0000-00-00 00:00:00'),
(1588, 'room_code', NULL, 1, '2013-05-03 08:51:42', NULL, '0000-00-00 00:00:00'),
(1589, 'room_name', NULL, 1, '2013-05-03 08:51:55', NULL, '0000-00-00 00:00:00'),
(1590, 'room_type', NULL, 1, '2013-05-03 08:52:12', NULL, '0000-00-00 00:00:00'),
(1591, 'capacity', NULL, 1, '2013-05-03 08:52:23', NULL, '0000-00-00 00:00:00'),
(1592, 'room_officer', NULL, 1, '2013-05-03 08:52:41', 1, '2013-06-17 09:13:02'),
(1593, 'asset_varian_data', NULL, 1, '2013-05-03 09:44:46', NULL, '0000-00-00 00:00:00'),
(1594, 'sales_summary_am', NULL, 1, '2013-05-03 11:15:24', NULL, '0000-00-00 00:00:00'),
(1595, 'prospect', NULL, 1, '2013-05-03 11:15:44', NULL, '0000-00-00 00:00:00'),
(1596, 'sales', NULL, 1, '2013-05-03 11:16:06', NULL, '0000-00-00 00:00:00'),
(1597, 'statistic', NULL, 1, '2013-05-03 11:16:22', NULL, '0000-00-00 00:00:00'),
(1598, 'percent_goal', NULL, 1, '2013-05-03 11:16:47', NULL, '0000-00-00 00:00:00'),
(1599, 'segment', NULL, 1, '2013-05-03 11:17:01', NULL, '0000-00-00 00:00:00'),
(1600, 'model', NULL, 1, '2013-05-03 11:17:12', NULL, '0000-00-00 00:00:00'),
(1601, 'overflow', NULL, 1, '2013-05-03 11:17:51', NULL, '0000-00-00 00:00:00'),
(1602, 'province', NULL, 1, '2013-05-03 11:18:08', NULL, '0000-00-00 00:00:00'),
(1603, 'estimation', NULL, 1, '2013-05-03 11:18:26', NULL, '0000-00-00 00:00:00'),
(1604, 'summary', NULL, 1, '2013-05-03 11:18:47', NULL, '0000-00-00 00:00:00'),
(1605, 'new_vs_old_client_summary', NULL, 1, '2013-05-03 11:19:37', NULL, '0000-00-00 00:00:00'),
(1606, 'percent', NULL, 1, '2013-05-03 11:19:57', NULL, '0000-00-00 00:00:00'),
(1607, 'business_model_summary', NULL, 1, '2013-05-03 11:21:10', NULL, '0000-00-00 00:00:00'),
(1608, 'by', NULL, 1, '2013-05-03 11:21:20', NULL, '0000-00-00 00:00:00'),
(1609, 'segment_product_summary', NULL, 1, '2013-05-03 11:22:01', NULL, '0000-00-00 00:00:00'),
(1610, 'provincial_distribution_summary', NULL, 1, '2013-05-03 11:22:45', NULL, '0000-00-00 00:00:00'),
(1611, 'contract_summary_by_month', NULL, 1, '2013-05-03 11:23:26', NULL, '0000-00-00 00:00:00'),
(1612, 'duplicates', NULL, 1, '2013-05-03 11:24:05', NULL, '0000-00-00 00:00:00'),
(1613, 'closing_deal', NULL, 1, '2013-05-03 11:26:03', NULL, '0000-00-00 00:00:00'),
(1614, 'closing_fail', NULL, 1, '2013-05-03 11:26:21', NULL, '0000-00-00 00:00:00'),
(1615, 'curr', NULL, 1, '2013-05-03 11:26:48', NULL, '0000-00-00 00:00:00'),
(1616, 'account_condition', NULL, 1, '2013-05-03 11:28:23', NULL, '0000-00-00 00:00:00'),
(1617, 'is_late', NULL, 1, '2013-05-03 11:30:12', NULL, '0000-00-00 00:00:00'),
(1618, 'realization_year', NULL, 1, '2013-05-03 11:30:36', NULL, '0000-00-00 00:00:00'),
(1619, 'real_amount_from_job_order', NULL, 1, '2013-05-03 11:31:53', NULL, '0000-00-00 00:00:00'),
(1620, 'sales_summary', NULL, 1, '2013-05-03 11:33:09', NULL, '0000-00-00 00:00:00'),
(1621, 'opportunity_assignment', NULL, 1, '2013-05-03 11:36:08', 1, '2013-11-04 08:52:00'),
(1622, 'no_data_officer', NULL, 1, '2013-05-03 14:52:00', 1, '2013-06-17 09:13:29'),
(1623, 'asset_varian', NULL, 1, '2013-05-03 16:04:16', NULL, '0000-00-00 00:00:00'),
(1624, 'asset_common_name', NULL, 1, '2013-05-03 16:05:04', NULL, '0000-00-00 00:00:00'),
(1625, 'floor_officer', NULL, 1, '2013-05-03 16:06:02', NULL, '0000-00-00 00:00:00'),
(1626, 'ratio', NULL, 1, '2013-05-03 16:06:56', NULL, '0000-00-00 00:00:00'),
(1627, 'color_brand', NULL, 1, '2013-05-03 16:07:24', 1, '2013-05-03 16:08:41'),
(1628, 'color_number', NULL, 1, '2013-05-03 16:08:56', NULL, '0000-00-00 00:00:00'),
(1629, 'room_condition', NULL, 1, '2013-05-03 16:09:14', NULL, '0000-00-00 00:00:00'),
(1630, 'manage_unit', NULL, 1, '2013-05-03 16:10:05', NULL, '0000-00-00 00:00:00'),
(1631, 'construction_part', NULL, 1, '2013-05-03 16:10:38', NULL, '0000-00-00 00:00:00'),
(1632, 'construction_type', NULL, 1, '2013-05-03 16:10:58', NULL, '0000-00-00 00:00:00'),
(1633, 'purpose', NULL, 1, '2013-05-03 16:11:53', NULL, '0000-00-00 00:00:00'),
(1634, 'param', NULL, 1, '2013-05-03 16:12:29', NULL, '0000-00-00 00:00:00'),
(1635, 'body', NULL, 1, '2013-05-03 16:12:50', NULL, '0000-00-00 00:00:00'),
(1636, 'altbody', NULL, 1, '2013-05-03 16:13:22', NULL, '0000-00-00 00:00:00'),
(1637, 'officer_summary', NULL, 1, '2013-05-03 16:16:37', NULL, '0000-00-00 00:00:00'),
(1638, 'new_client', NULL, 1, '2013-05-03 16:17:36', NULL, '0000-00-00 00:00:00'),
(1639, 'old_client', NULL, 1, '2013-05-03 16:17:53', NULL, '0000-00-00 00:00:00'),
(1640, 'profit', NULL, 1, '2013-05-03 16:48:19', NULL, '0000-00-00 00:00:00'),
(1641, 'asset_related', NULL, 1, '2013-05-03 19:12:41', NULL, '0000-00-00 00:00:00'),
(1642, 'invitees_data', NULL, 37, '2013-05-06 09:28:24', 1, '2013-11-15 17:13:10'),
(1643, 'participant', NULL, 37, '2013-05-06 09:28:52', NULL, '0000-00-00 00:00:00'),
(1644, 'asset_usage', NULL, 37, '2013-05-06 09:30:18', NULL, '0000-00-00 00:00:00'),
(1645, 'asset_common_name_data', NULL, 37, '2013-05-06 11:04:15', NULL, '0000-00-00 00:00:00'),
(1646, 'check', NULL, 37, '2013-05-06 15:05:14', NULL, '0000-00-00 00:00:00'),
(1647, 'check_availability', NULL, 37, '2013-05-06 15:05:37', NULL, '0000-00-00 00:00:00'),
(1648, 'activity', NULL, 37, '2013-05-06 16:27:24', NULL, '0000-00-00 00:00:00'),
(1649, 'msg_assignment_fail', NULL, 1, '2013-05-08 10:54:12', 1, '2013-09-23 09:05:44'),
(1650, 'msg_assignment_success', NULL, 9, '2013-05-08 11:09:13', 1, '2013-09-23 09:05:52'),
(1651, 'user', NULL, 9, '2013-05-08 11:12:11', NULL, '0000-00-00 00:00:00'),
(1652, 'en', NULL, 9, '2013-05-08 11:12:24', NULL, '0000-00-00 00:00:00'),
(1653, 'id', NULL, 9, '2013-05-08 11:12:31', NULL, '0000-00-00 00:00:00'),
(1654, 'application', NULL, 9, '2013-05-08 11:13:25', NULL, '0000-00-00 00:00:00'),
(1655, 'title_confirm_reset', NULL, 9, '2013-05-08 11:14:15', NULL, '0000-00-00 00:00:00'),
(1656, 'employee_password', NULL, 9, '2013-05-08 11:14:47', NULL, '0000-00-00 00:00:00'),
(1657, 'msg_confirm_reset', NULL, 9, '2013-05-08 11:15:23', 1, '2013-07-09 10:42:06'),
(1658, 'crud', NULL, 1, '2013-05-08 21:30:23', NULL, '0000-00-00 00:00:00'),
(1659, 'actions', NULL, 1, '2013-05-08 21:44:20', NULL, '0000-00-00 00:00:00'),
(1660, 'alpaanddot', NULL, 1, '2013-05-08 21:44:39', NULL, '0000-00-00 00:00:00'),
(1661, 'combobox', NULL, 1, '2013-05-08 21:44:54', NULL, '0000-00-00 00:00:00'),
(1662, 'icon_small', NULL, 1, '2013-05-08 21:59:39', 1, '2013-05-08 22:00:46'),
(1663, 'icon_medium', NULL, 1, '2013-05-08 22:00:06', NULL, '0000-00-00 00:00:00'),
(1664, 'icon_large', NULL, 1, '2013-05-08 22:00:18', NULL, '0000-00-00 00:00:00'),
(1665, 'user_data', NULL, 1, '2013-05-10 08:59:28', NULL, '0000-00-00 00:00:00'),
(1666, 'group_data', NULL, 1, '2013-05-10 08:59:45', NULL, '0000-00-00 00:00:00'),
(1667, 'last_logged_in', NULL, 1, '2013-05-10 09:02:20', NULL, '0000-00-00 00:00:00'),
(1668, 'available', NULL, 37, '2013-05-10 09:13:24', NULL, '0000-00-00 00:00:00'),
(1669, 'branch_status', NULL, 1, '2013-05-10 09:13:52', NULL, '0000-00-00 00:00:00'),
(1670, 'group_fin', NULL, 1, '2013-05-10 09:48:51', NULL, '0000-00-00 00:00:00'),
(1671, 'translation', NULL, 1, '2013-05-10 10:04:45', NULL, '0000-00-00 00:00:00'),
(1672, 'table_documentation_data', NULL, 1, '2013-05-10 10:21:15', NULL, '0000-00-00 00:00:00'),
(1673, 'max_photo_upload', NULL, 1, '2013-05-10 10:33:01', NULL, '0000-00-00 00:00:00'),
(1674, 'company_data', NULL, 1, '2013-05-10 10:33:50', NULL, '0000-00-00 00:00:00'),
(1675, 'email_template_data', NULL, 1, '2013-05-10 10:41:26', NULL, '0000-00-00 00:00:00'),
(1676, 'goods_data', NULL, 1, '2013-05-10 10:50:30', NULL, '0000-00-00 00:00:00'),
(1677, 'vendor_data', NULL, 1, '2013-05-10 10:53:02', NULL, '0000-00-00 00:00:00'),
(1678, 'price_data', NULL, 1, '2013-05-10 10:53:16', NULL, '0000-00-00 00:00:00'),
(1679, 'component_data', NULL, 1, '2013-05-10 10:53:54', NULL, '0000-00-00 00:00:00'),
(1680, 'goods_price_data', NULL, 1, '2013-05-10 13:59:52', NULL, '0000-00-00 00:00:00'),
(1681, 'stock_usage_data', NULL, 9, '2013-05-10 14:34:21', 9, '2013-05-10 14:36:00'),
(1682, 'stock_opname_data', NULL, 9, '2013-05-10 14:54:54', NULL, '0000-00-00 00:00:00'),
(1683, 'print', NULL, 9, '2013-05-10 14:57:06', NULL, '0000-00-00 00:00:00'),
(1684, 'mutation_data', NULL, 9, '2013-05-10 15:08:47', NULL, '0000-00-00 00:00:00'),
(1685, 'order_to', NULL, 9, '2013-05-10 15:17:15', NULL, '0000-00-00 00:00:00'),
(1686, 'request_from', NULL, 9, '2013-05-10 15:17:41', NULL, '0000-00-00 00:00:00'),
(1687, 'relocation_data', NULL, 9, '2013-05-10 15:22:47', NULL, '0000-00-00 00:00:00'),
(1688, 'transaction_number', NULL, 9, '2013-05-10 16:06:41', NULL, '0000-00-00 00:00:00'),
(1689, 'sales_canvas_data', NULL, 9, '2013-05-10 16:18:19', NULL, '0000-00-00 00:00:00'),
(1690, 'save_and_submit', NULL, 37, '2013-05-13 09:57:41', 37, '2013-05-13 11:29:13'),
(1691, 'sales_verification_data', NULL, 1, '2013-05-13 18:22:08', NULL, '0000-00-00 00:00:00'),
(1692, 'customer_order_data', NULL, 1, '2013-05-13 19:32:41', NULL, '0000-00-00 00:00:00'),
(1693, 'promotion_goods', NULL, 1, '2013-05-13 20:33:50', NULL, '0000-00-00 00:00:00'),
(1694, 'delivery_order_data', NULL, 1, '2013-05-13 20:35:55', 1, '2013-05-13 20:36:37'),
(1695, 'already_checked', NULL, 37, '2013-05-15 08:54:12', NULL, '0000-00-00 00:00:00'),
(1696, 'gr_customer', NULL, 1, '2013-05-15 09:46:28', NULL, '0000-00-00 00:00:00'),
(1697, 'gr_customer_data', NULL, 1, '2013-05-15 09:50:05', NULL, '0000-00-00 00:00:00'),
(1698, 'promotion', NULL, 1, '2013-05-15 09:50:19', NULL, '0000-00-00 00:00:00'),
(1699, 'receive_qty', NULL, 1, '2013-05-15 09:51:27', NULL, '0000-00-00 00:00:00'),
(1700, 'receiving', NULL, 1, '2013-05-15 10:03:34', NULL, '0000-00-00 00:00:00'),
(1701, 'no_retur', NULL, 1, '2013-05-15 10:05:18', NULL, '0000-00-00 00:00:00'),
(1702, 'delivered', NULL, 1, '2013-05-15 10:05:33', NULL, '0000-00-00 00:00:00'),
(1703, 'retur_customer_data', NULL, 1, '2013-05-15 10:37:45', NULL, '0000-00-00 00:00:00'),
(1704, 'reset_password_success', NULL, 1, '2013-05-15 11:09:34', NULL, '0000-00-00 00:00:00'),
(1705, 'message_error_qty', NULL, 1, '2013-05-15 11:25:40', NULL, '0000-00-00 00:00:00'),
(1706, 'msg_delivery_success', NULL, 1, '2013-05-15 11:26:41', NULL, '0000-00-00 00:00:00'),
(1707, 'cancel_deliver', NULL, 1, '2013-05-15 11:27:16', NULL, '0000-00-00 00:00:00'),
(1708, 'msg_cancel_deliver_success', NULL, 1, '2013-05-15 11:38:28', NULL, '0000-00-00 00:00:00'),
(1709, 'recap', NULL, 1, '2013-05-15 13:20:41', NULL, '0000-00-00 00:00:00'),
(1710, 'employee_number', NULL, 1, '2013-05-15 13:21:24', NULL, '0000-00-00 00:00:00'),
(1711, 'employeecommision', NULL, 1, '2013-05-15 13:25:22', NULL, '0000-00-00 00:00:00'),
(1712, 'meal_cost', NULL, 1, '2013-05-15 13:48:03', NULL, '0000-00-00 00:00:00'),
(1713, 'parking_cost', NULL, 1, '2013-05-15 13:48:19', NULL, '0000-00-00 00:00:00'),
(1714, 'other_cost', NULL, 1, '2013-05-15 13:48:42', NULL, '0000-00-00 00:00:00'),
(1715, 'sales_operational_cost_data', NULL, 1, '2013-05-15 13:58:23', NULL, '0000-00-00 00:00:00'),
(1716, 'po_supplier_data', NULL, 1, '2013-05-15 17:33:18', NULL, '0000-00-00 00:00:00'),
(1717, 'another_goods', NULL, 1, '2013-05-15 18:08:46', NULL, '0000-00-00 00:00:00'),
(1718, 'gr_supplier_data', NULL, 9, '2013-05-15 19:05:50', NULL, '0000-00-00 00:00:00'),
(1719, 'goods_description', NULL, 9, '2013-05-15 19:08:31', NULL, '0000-00-00 00:00:00'),
(1720, 'mode_batch_coli', NULL, 9, '2013-05-15 19:17:47', NULL, '0000-00-00 00:00:00'),
(1721, 'auto_batch_coli', NULL, 9, '2013-05-15 19:18:13', NULL, '0000-00-00 00:00:00'),
(1722, 'manual_batch_coli', NULL, 9, '2013-05-15 19:18:34', NULL, '0000-00-00 00:00:00'),
(1723, 'retur_date', NULL, 9, '2013-05-15 19:24:57', NULL, '0000-00-00 00:00:00'),
(1724, 'retur_supplier_data', NULL, 9, '2013-05-15 19:59:24', NULL, '0000-00-00 00:00:00'),
(1725, 'retur_supplier_receiving_data', NULL, 9, '2013-05-15 20:07:31', NULL, '0000-00-00 00:00:00'),
(1726, 'mass_sales_verification_data', NULL, 9, '2013-05-15 21:20:25', NULL, '0000-00-00 00:00:00'),
(1727, 'initial_stock', NULL, 9, '2013-05-15 21:20:41', 9, '2013-05-15 21:21:43'),
(1728, 'load', NULL, 9, '2013-05-15 21:21:00', NULL, '0000-00-00 00:00:00'),
(1729, 'total_stock', NULL, 9, '2013-05-15 21:21:20', 9, '2013-05-15 21:21:32'),
(1730, 'po_internal_data', NULL, 9, '2013-05-15 22:02:33', NULL, '0000-00-00 00:00:00'),
(1731, 'unit_order_data', NULL, 1, '2013-05-16 09:57:41', 1, '2013-05-16 09:58:12'),
(1732, 'authorization', NULL, 1, '2013-05-16 10:01:23', NULL, '0000-00-00 00:00:00'),
(1733, 'gr_internal_data', NULL, 9, '2013-05-16 10:57:08', NULL, '0000-00-00 00:00:00'),
(1734, 'retur_internal_data', NULL, 1, '2013-05-16 11:26:29', NULL, '0000-00-00 00:00:00'),
(1735, 'account_distribution', NULL, 37, '2013-05-17 15:55:53', NULL, '0000-00-00 00:00:00'),
(1736, 'data_list', NULL, 1, '2013-05-20 07:29:50', NULL, '0000-00-00 00:00:00'),
(1737, 'graph', NULL, 1, '2013-05-20 07:30:02', NULL, '0000-00-00 00:00:00'),
(1738, 'opportunity_distribution', NULL, 1, '2013-05-20 07:30:41', NULL, '0000-00-00 00:00:00'),
(1739, 'contract_distribution', NULL, 1, '2013-05-20 07:31:02', NULL, '0000-00-00 00:00:00'),
(1740, 'chart', NULL, 1, '2013-05-20 07:32:32', NULL, '0000-00-00 00:00:00'),
(1741, 'realization', NULL, 37, '2013-05-20 11:32:27', NULL, '0000-00-00 00:00:00'),
(1742, 'request_date', NULL, 37, '2013-05-20 11:33:09', NULL, '0000-00-00 00:00:00'),
(1743, 'invitees', NULL, 37, '2013-05-20 11:33:28', NULL, '0000-00-00 00:00:00'),
(1744, 'view_map', NULL, 37, '2013-05-20 12:12:19', NULL, '0000-00-00 00:00:00'),
(1745, 'opportunity_report', NULL, 1, '2013-05-20 15:01:45', NULL, '0000-00-00 00:00:00'),
(1746, 'contract_report', NULL, 1, '2013-05-20 15:02:29', NULL, '0000-00-00 00:00:00'),
(1747, 'msg_email_send_success', NULL, 1, '2013-05-21 13:24:57', NULL, '0000-00-00 00:00:00'),
(1748, 'msg_duplicate_success', NULL, 1, '2013-05-21 14:15:20', NULL, '0000-00-00 00:00:00'),
(1749, 'duplicate', NULL, 1, '2013-05-21 14:16:07', NULL, '0000-00-00 00:00:00'),
(1750, 'contact_assignment', NULL, 1, '2013-05-29 16:25:57', 1, '2013-11-04 08:50:37'),
(1751, 'goods_group', NULL, 1, '2013-06-12 09:00:56', NULL, '0000-00-00 00:00:00'),
(1752, 'goods_item', NULL, 1, '2013-06-12 09:01:09', NULL, '0000-00-00 00:00:00'),
(1753, 'goods_size', NULL, 1, '2013-06-12 09:01:22', NULL, '0000-00-00 00:00:00'),
(1754, 'goods_color', NULL, 1, '2013-06-12 09:01:38', NULL, '0000-00-00 00:00:00'),
(1755, 'goods_detail_info', NULL, 1, '2013-06-12 09:02:07', NULL, '0000-00-00 00:00:00'),
(1756, 'max_qty', NULL, 1, '2013-06-12 09:02:54', NULL, '0000-00-00 00:00:00'),
(1757, 'min_qty', NULL, 1, '2013-06-12 09:03:11', NULL, '0000-00-00 00:00:00'),
(1758, 'stock_unit_info', NULL, 1, '2013-06-12 09:03:40', 1, '2013-06-12 09:04:29'),
(1759, 'stock_unit', NULL, 1, '2013-06-12 09:04:06', NULL, '0000-00-00 00:00:00'),
(1760, 'max_stock', NULL, 1, '2013-06-12 10:58:49', NULL, '0000-00-00 00:00:00'),
(1761, 'system_code', NULL, 1, '2013-06-12 10:59:27', NULL, '0000-00-00 00:00:00'),
(1762, 'driver_number', NULL, 1, '2013-06-12 11:00:14', 1, '2013-06-12 11:01:27'),
(1763, 'active_date', NULL, 1, '2013-06-12 11:00:34', NULL, '0000-00-00 00:00:00'),
(1764, 'driver_name', NULL, 1, '2013-06-12 11:01:06', NULL, '0000-00-00 00:00:00'),
(1765, 'vehicle_number', NULL, 1, '2013-06-12 11:01:55', NULL, '0000-00-00 00:00:00'),
(1766, 'driver', NULL, 1, '2013-06-12 11:02:11', NULL, '0000-00-00 00:00:00'),
(1767, 'vehicle_information', NULL, 1, '2013-06-12 11:02:35', NULL, '0000-00-00 00:00:00'),
(1768, 'last_odo', NULL, 1, '2013-06-12 11:03:05', NULL, '0000-00-00 00:00:00'),
(1769, 'co_emission', NULL, 1, '2013-06-12 11:03:22', NULL, '0000-00-00 00:00:00'),
(1770, 'horsepower', NULL, 1, '2013-06-12 11:03:47', NULL, '0000-00-00 00:00:00'),
(1771, 'horsepower_taxation', NULL, 1, '2013-06-12 11:04:26', NULL, '0000-00-00 00:00:00'),
(1772, 'km', NULL, 1, '2013-06-12 11:04:45', NULL, '0000-00-00 00:00:00'),
(1773, 'mile', NULL, 1, '2013-06-12 11:05:07', NULL, '0000-00-00 00:00:00'),
(1774, 'vehicle_name', NULL, 1, '2013-06-12 12:51:51', NULL, '0000-00-00 00:00:00'),
(1775, 'asset_common', NULL, 1, '2013-06-12 12:52:20', NULL, '0000-00-00 00:00:00'),
(1776, 'revised', NULL, 1, '2013-06-12 13:44:03', NULL, '0000-00-00 00:00:00'),
(1777, 'confirmation', NULL, 1, '2013-06-12 13:44:27', NULL, '0000-00-00 00:00:00'),
(1778, 'are_you_sure_to_submit_this_usage_request_data', NULL, 1, '2013-06-14 10:37:56', 1, '2013-06-14 10:38:43'),
(1779, 'submit', NULL, 1, '2013-06-14 10:40:22', NULL, '0000-00-00 00:00:00'),
(1780, 'usage_request', NULL, 1, '2013-06-14 10:40:50', NULL, '0000-00-00 00:00:00'),
(1781, 'confirm_status', NULL, 1, '2013-06-14 11:22:56', NULL, '0000-00-00 00:00:00'),
(1782, 'owner', NULL, 1, '2013-06-17 08:10:34', NULL, '0000-00-00 00:00:00'),
(1783, 'vehicle_type', NULL, 1, '2013-06-17 08:10:53', NULL, '0000-00-00 00:00:00'),
(1784, 'chassis_number', NULL, 1, '2013-06-17 08:11:09', NULL, '0000-00-00 00:00:00'),
(1785, 'plate_number', NULL, 1, '2013-06-17 08:11:24', NULL, '0000-00-00 00:00:00'),
(1786, 'personal_vehicle', NULL, 1, '2013-06-17 08:12:01', NULL, '0000-00-00 00:00:00'),
(1787, 'status_information', NULL, 1, '2013-06-17 09:08:23', NULL, '0000-00-00 00:00:00'),
(1788, 'status_officer', NULL, 1, '2013-06-17 09:09:13', 1, '2013-06-17 09:11:15'),
(1789, 'status_date', NULL, 1, '2013-06-17 09:09:31', NULL, '0000-00-00 00:00:00'),
(1790, 'status_notes', NULL, 1, '2013-06-17 09:09:45', NULL, '0000-00-00 00:00:00'),
(1791, 'cancel_notes', NULL, 1, '2013-06-17 09:10:00', NULL, '0000-00-00 00:00:00'),
(1792, 'personal_vehicle_status', NULL, 1, '2013-06-17 09:14:12', NULL, '0000-00-00 00:00:00'),
(1793, 'canceled', NULL, 1, '2013-06-17 09:14:48', NULL, '0000-00-00 00:00:00'),
(1794, 'bpkb', NULL, 1, '2013-06-17 09:16:00', NULL, '0000-00-00 00:00:00'),
(1795, 'approval', NULL, 37, '2013-06-17 11:15:21', NULL, '0000-00-00 00:00:00'),
(1796, 'removal', NULL, 1, '2013-06-17 14:57:42', NULL, '0000-00-00 00:00:00'),
(1797, 'drag_markers_to_pick_color', NULL, 1, '2013-06-24 12:12:01', 1, '2013-06-24 12:17:01'),
(1798, 'connection', NULL, 1, '2013-06-24 22:10:31', NULL, '0000-00-00 00:00:00'),
(1799, 'connect', NULL, 1, '2013-06-24 22:12:26', NULL, '0000-00-00 00:00:00'),
(1800, 'db_name', NULL, 1, '2013-06-24 22:18:36', NULL, '0000-00-00 00:00:00'),
(1801, 'pass', NULL, 1, '2013-06-24 22:24:22', NULL, '0000-00-00 00:00:00'),
(1802, 'host', NULL, 1, '2013-06-25 08:10:01', NULL, '0000-00-00 00:00:00'),
(1803, 'port', NULL, 1, '2013-06-25 08:10:22', NULL, '0000-00-00 00:00:00'),
(1804, 'join_table', NULL, 1, '2013-06-25 08:11:37', NULL, '0000-00-00 00:00:00'),
(1805, 'filter', NULL, 1, '2013-06-25 08:11:52', NULL, '0000-00-00 00:00:00'),
(1806, 'add_join', NULL, 1, '2013-06-25 08:12:09', NULL, '0000-00-00 00:00:00'),
(1807, 'add_filter', NULL, 1, '2013-06-25 08:12:21', NULL, '0000-00-00 00:00:00'),
(1808, 'report_type', NULL, 1, '2013-06-25 08:23:34', NULL, '0000-00-00 00:00:00'),
(1809, 'connection_name', NULL, 1, '2013-06-25 08:24:01', NULL, '0000-00-00 00:00:00'),
(1810, 'report', NULL, 1, '2013-06-25 08:24:16', NULL, '0000-00-00 00:00:00'),
(1811, 'query', NULL, 1, '2013-06-25 08:24:27', NULL, '0000-00-00 00:00:00'),
(1812, 'series', NULL, 1, '2013-06-25 08:25:21', NULL, '0000-00-00 00:00:00'),
(1813, 'values', NULL, 1, '2013-06-25 08:25:33', NULL, '0000-00-00 00:00:00'),
(1814, 'report_model', NULL, 1, '2013-06-25 08:25:59', NULL, '0000-00-00 00:00:00'),
(1815, 'is_publish', NULL, 1, '2013-06-25 08:26:18', NULL, '0000-00-00 00:00:00'),
(1816, 'report_management', NULL, 1, '2013-06-25 08:27:35', NULL, '0000-00-00 00:00:00'),
(1817, 'alt_name', NULL, 1, '2013-06-25 08:27:53', NULL, '0000-00-00 00:00:00'),
(1818, 'config', NULL, 1, '2013-06-25 08:28:04', NULL, '0000-00-00 00:00:00'),
(1819, 'empty_database_or_there_is_no_connection_to_database', NULL, 1, '2013-06-25 08:29:15', NULL, '0000-00-00 00:00:00'),
(1820, 'chosen_table', NULL, 1, '2013-06-25 08:29:34', NULL, '0000-00-00 00:00:00'),
(1821, 'chosen_column', NULL, 1, '2013-06-25 08:29:56', NULL, '0000-00-00 00:00:00'),
(1822, 'alias', NULL, 1, '2013-06-25 08:37:36', NULL, '0000-00-00 00:00:00'),
(1823, 'aggregate', NULL, 1, '2013-06-25 08:37:51', NULL, '0000-00-00 00:00:00'),
(1824, 'group_by', NULL, 1, '2013-06-25 08:38:08', NULL, '0000-00-00 00:00:00'),
(1825, 'sort', NULL, 1, '2013-06-25 08:38:19', NULL, '0000-00-00 00:00:00'),
(1826, 'origin_table', NULL, 1, '2013-06-25 08:48:57', NULL, '0000-00-00 00:00:00'),
(1827, 'origin_column', NULL, 1, '2013-06-25 08:49:12', NULL, '0000-00-00 00:00:00'),
(1828, 'target_table', NULL, 1, '2013-06-25 08:49:29', NULL, '0000-00-00 00:00:00'),
(1829, 'target_column', NULL, 1, '2013-06-25 08:49:56', NULL, '0000-00-00 00:00:00');
INSERT INTO `gtfw_key` (`key_id`, `key_code`, `key_desc`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`) VALUES
(1830, 'there_is_no_join_table', NULL, 1, '2013-06-25 08:50:26', NULL, '0000-00-00 00:00:00'),
(1831, 'operand', NULL, 1, '2013-06-25 08:50:53', NULL, '0000-00-00 00:00:00'),
(1832, 'criteria', NULL, 1, '2013-06-25 08:51:07', NULL, '0000-00-00 00:00:00'),
(1833, 'there_is_no_filter', NULL, 1, '2013-06-25 08:51:35', NULL, '0000-00-00 00:00:00'),
(1834, 'result_preview', NULL, 1, '2013-06-25 08:51:56', NULL, '0000-00-00 00:00:00'),
(1835, 'click_here_to_view_result_preview', NULL, 1, '2013-06-25 08:52:50', NULL, '0000-00-00 00:00:00'),
(1836, 'joining_table', NULL, 1, '2013-06-25 08:53:31', NULL, '0000-00-00 00:00:00'),
(1837, 'choose_column', NULL, 1, '2013-06-25 08:53:49', NULL, '0000-00-00 00:00:00'),
(1838, 'choose_operand', NULL, 1, '2013-06-25 08:54:57', NULL, '0000-00-00 00:00:00'),
(1839, 'saving', NULL, 1, '2013-06-25 09:06:25', NULL, '0000-00-00 00:00:00'),
(1840, 'please_choose_column', NULL, 1, '2013-06-25 09:15:54', NULL, '0000-00-00 00:00:00'),
(1841, 'reload', NULL, 1, '2013-06-25 11:27:35', NULL, '0000-00-00 00:00:00'),
(1842, 'select_color', NULL, 1, '2013-06-26 14:37:11', 1, '2013-06-26 14:38:27'),
(1843, 'sign_in', NULL, 1, '2013-06-28 11:18:25', NULL, '0000-00-00 00:00:00'),
(1844, 'public', NULL, 1, '2013-06-28 11:18:49', NULL, '0000-00-00 00:00:00'),
(1845, 'publish', NULL, 1, '2013-06-28 11:19:05', NULL, '0000-00-00 00:00:00'),
(1846, 'set_home', NULL, 1, '2013-06-28 11:19:40', NULL, '0000-00-00 00:00:00'),
(1847, 'sketch_color', NULL, 1, '2013-06-28 15:30:20', NULL, '0000-00-00 00:00:00'),
(1848, 'building_room', NULL, 1, '2013-06-28 15:30:52', NULL, '0000-00-00 00:00:00'),
(1849, 'msg_add_room_map_success', NULL, 1, '2013-06-28 15:32:49', NULL, '0000-00-00 00:00:00'),
(1850, 'current_sketch', NULL, 1, '2013-06-28 15:33:41', NULL, '0000-00-00 00:00:00'),
(1851, 'sketch_preview', NULL, 1, '2013-06-28 15:34:01', NULL, '0000-00-00 00:00:00'),
(1852, 'building_map', NULL, 1, '2013-06-28 15:34:51', NULL, '0000-00-00 00:00:00'),
(1853, 'msg_add_building_map_success', NULL, 1, '2013-06-28 15:35:23', NULL, '0000-00-00 00:00:00'),
(1854, 'building_location', NULL, 1, '2013-06-28 16:07:29', NULL, '0000-00-00 00:00:00'),
(1855, 'data_report_is_not_found', NULL, 1, '2013-07-01 13:38:06', NULL, '0000-00-00 00:00:00'),
(1856, 'chosen_report', NULL, 1, '2013-07-01 13:38:27', NULL, '0000-00-00 00:00:00'),
(1857, 'select_report', NULL, 1, '2013-07-01 13:38:45', NULL, '0000-00-00 00:00:00'),
(1858, 'left', NULL, 1, '2013-07-02 11:33:24', NULL, '0000-00-00 00:00:00'),
(1859, 'right', NULL, 1, '2013-07-02 11:33:35', NULL, '0000-00-00 00:00:00'),
(1860, 'in_center', NULL, 1, '2013-07-02 11:33:46', NULL, '0000-00-00 00:00:00'),
(1861, 'justify', NULL, 1, '2013-07-02 11:34:01', NULL, '0000-00-00 00:00:00'),
(1862, 'taxi_provider', NULL, 1, '2013-07-09 10:29:32', NULL, '0000-00-00 00:00:00'),
(1863, 'voucher_number', NULL, 1, '2013-07-09 10:29:48', NULL, '0000-00-00 00:00:00'),
(1864, 'released_status', NULL, 1, '2013-07-09 10:30:06', NULL, '0000-00-00 00:00:00'),
(1865, 'requested_status', NULL, 1, '2013-07-09 10:30:24', NULL, '0000-00-00 00:00:00'),
(1866, 'used_status', NULL, 1, '2013-07-09 10:30:40', NULL, '0000-00-00 00:00:00'),
(1867, 'expired_status', NULL, 1, '2013-07-09 10:30:58', NULL, '0000-00-00 00:00:00'),
(1868, 'has_been_released', NULL, 1, '2013-07-09 10:31:15', NULL, '0000-00-00 00:00:00'),
(1869, 'not_yet_released', NULL, 1, '2013-07-09 10:31:33', NULL, '0000-00-00 00:00:00'),
(1870, 'has_been_requested', NULL, 1, '2013-07-09 10:31:50', NULL, '0000-00-00 00:00:00'),
(1871, 'not_yet_requested', NULL, 1, '2013-07-09 10:32:11', NULL, '0000-00-00 00:00:00'),
(1872, 'has_been_used', NULL, 1, '2013-07-09 10:32:26', NULL, '0000-00-00 00:00:00'),
(1873, 'not_yet_used', NULL, 1, '2013-07-09 10:32:45', NULL, '0000-00-00 00:00:00'),
(1874, 'not_expired', NULL, 1, '2013-07-09 10:33:22', NULL, '0000-00-00 00:00:00'),
(1875, 'taxi_voucher_number', NULL, 1, '2013-07-09 10:33:40', NULL, '0000-00-00 00:00:00'),
(1876, 'number_start', NULL, 1, '2013-07-09 10:34:05', NULL, '0000-00-00 00:00:00'),
(1877, 'number_end', NULL, 1, '2013-07-09 10:34:20', NULL, '0000-00-00 00:00:00'),
(1878, 'number_start_is_required', NULL, 1, '2013-07-09 10:34:44', NULL, '0000-00-00 00:00:00'),
(1879, 'posibility_number_alreay_exist', NULL, 1, '2013-07-09 10:35:11', NULL, '0000-00-00 00:00:00'),
(1880, 'but_fail_to_insert_number', NULL, 1, '2013-07-09 10:36:15', NULL, '0000-00-00 00:00:00'),
(1881, 'release', NULL, 1, '2013-07-09 10:40:25', NULL, '0000-00-00 00:00:00'),
(1882, 'title_confirm_release', NULL, 1, '2013-07-09 10:41:28', NULL, '0000-00-00 00:00:00'),
(1883, 'msg_confirm_release', NULL, 1, '2013-07-09 10:42:43', NULL, '0000-00-00 00:00:00'),
(1884, 'information_data', NULL, 1, '2013-07-09 10:43:38', NULL, '0000-00-00 00:00:00'),
(1885, 'are_you_sure_to_remove_this_data', NULL, 1, '2013-07-09 10:44:10', NULL, '0000-00-00 00:00:00'),
(1886, 'asset_to_use', NULL, 1, '2013-07-11 10:43:02', NULL, '0000-00-00 00:00:00'),
(1887, 'unit_department', NULL, 1, '2013-07-16 13:43:52', NULL, '0000-00-00 00:00:00'),
(1888, 'document_number_type', NULL, 1, '2013-07-18 09:50:38', NULL, '0000-00-00 00:00:00'),
(1889, 'document_number', NULL, 1, '2013-07-18 09:51:18', 1, '2013-07-19 21:43:58'),
(1890, 'delivery_category', NULL, 1, '2013-07-19 21:09:45', NULL, '0000-00-00 00:00:00'),
(1891, 'requestor', NULL, 1, '2013-07-19 21:10:00', NULL, '0000-00-00 00:00:00'),
(1892, 'courier', NULL, 1, '2013-07-19 21:10:17', NULL, '0000-00-00 00:00:00'),
(1893, 'packet_information', NULL, 1, '2013-07-19 21:10:33', NULL, '0000-00-00 00:00:00'),
(1894, 'delivery_type', NULL, 1, '2013-07-19 21:10:53', NULL, '0000-00-00 00:00:00'),
(1895, 'delivery_other_type', NULL, 1, '2013-07-19 21:11:32', NULL, '0000-00-00 00:00:00'),
(1896, 'delivery_subject', NULL, 1, '2013-07-19 21:11:49', NULL, '0000-00-00 00:00:00'),
(1897, 'delivery_content', NULL, 1, '2013-07-19 21:12:01', NULL, '0000-00-00 00:00:00'),
(1898, 'delivery_attention', NULL, 1, '2013-07-19 21:12:15', NULL, '0000-00-00 00:00:00'),
(1899, 'delivery_info', NULL, 1, '2013-07-19 21:12:26', NULL, '0000-00-00 00:00:00'),
(1900, 'delivery_desc', NULL, 1, '2013-07-19 21:12:42', NULL, '0000-00-00 00:00:00'),
(1901, 'international', NULL, 1, '2013-07-19 21:13:16', NULL, '0000-00-00 00:00:00'),
(1902, 'national', NULL, 1, '2013-07-19 21:13:29', NULL, '0000-00-00 00:00:00'),
(1903, 'mail_delivery_request', NULL, 1, '2013-07-19 21:14:39', NULL, '0000-00-00 00:00:00'),
(1904, 'msg_cancel_request_success', NULL, 1, '2013-07-19 21:15:26', NULL, '0000-00-00 00:00:00'),
(1905, 'mail_delivery_costing', NULL, 1, '2013-07-19 21:19:36', NULL, '0000-00-00 00:00:00'),
(1906, 'delivery_cost', NULL, 1, '2013-07-19 21:20:12', NULL, '0000-00-00 00:00:00'),
(1907, 'mail_number', NULL, 1, '2013-07-19 21:21:37', NULL, '0000-00-00 00:00:00'),
(1908, 'mail_number_type', NULL, 1, '2013-07-19 21:21:53', NULL, '0000-00-00 00:00:00'),
(1909, 'mail_information', NULL, 1, '2013-07-19 21:22:12', NULL, '0000-00-00 00:00:00'),
(1910, 'mail_date', NULL, 1, '2013-07-19 21:22:25', NULL, '0000-00-00 00:00:00'),
(1911, 'set_manual_number', NULL, 1, '2013-07-19 21:23:35', 1, '2013-07-19 21:24:08'),
(1912, 'mail_to', NULL, 1, '2013-07-19 21:24:47', NULL, '0000-00-00 00:00:00'),
(1913, 'document_information', NULL, 1, '2013-07-19 21:38:36', NULL, '0000-00-00 00:00:00'),
(1914, 'docnum_category', NULL, 1, '2013-07-19 21:38:55', NULL, '0000-00-00 00:00:00'),
(1915, 'docnum_type', NULL, 1, '2013-07-19 21:39:13', NULL, '0000-00-00 00:00:00'),
(1916, 'document_date', NULL, 1, '2013-07-19 21:39:27', NULL, '0000-00-00 00:00:00'),
(1917, 'document_title', NULL, 1, '2013-07-19 21:39:49', NULL, '0000-00-00 00:00:00'),
(1918, 'manual_number', NULL, 1, '2013-07-19 21:40:47', NULL, '0000-00-00 00:00:00'),
(1919, 'recruitment_city', NULL, 1, '2013-07-19 21:45:37', NULL, '0000-00-00 00:00:00'),
(1920, 'applicant_status', NULL, 1, '2013-07-19 21:46:10', NULL, '0000-00-00 00:00:00'),
(1921, 'is_export', NULL, 1, '2013-07-19 21:46:31', 1, '2013-09-04 08:24:10'),
(1922, 'applicant_type', NULL, 1, '2013-07-19 21:48:03', NULL, '0000-00-00 00:00:00'),
(1923, 'building_owner_status', NULL, 1, '2013-07-19 21:48:29', NULL, '0000-00-00 00:00:00'),
(1924, 'residency_status', NULL, 1, '2013-07-19 21:49:06', NULL, '0000-00-00 00:00:00'),
(1925, 'addrtype_id', NULL, 1, '2013-07-19 21:49:28', NULL, '0000-00-00 00:00:00'),
(1926, 'buildownstat_id', NULL, 1, '2013-07-19 21:49:42', NULL, '0000-00-00 00:00:00'),
(1927, 'residencystat_id', NULL, 1, '2013-07-19 21:49:57', NULL, '0000-00-00 00:00:00'),
(1928, 'areacode', NULL, 1, '2013-07-19 21:50:21', NULL, '0000-00-00 00:00:00'),
(1929, 'rec_email', NULL, 1, '2013-07-19 21:51:11', NULL, '0000-00-00 00:00:00'),
(1930, 'reference', NULL, 1, '2013-07-19 21:52:26', NULL, '0000-00-00 00:00:00'),
(1931, 'institution', NULL, 1, '2013-07-19 21:52:43', NULL, '0000-00-00 00:00:00'),
(1932, 'emp_id', NULL, 1, '2013-07-19 21:53:24', NULL, '0000-00-00 00:00:00'),
(1933, 'testimony', NULL, 1, '2013-07-19 21:53:56', NULL, '0000-00-00 00:00:00'),
(1934, 'achievlvl_id', NULL, 1, '2013-07-19 21:55:47', NULL, '0000-00-00 00:00:00'),
(1935, 'interest_type', NULL, 1, '2013-07-19 21:57:15', NULL, '0000-00-00 00:00:00'),
(1936, 'interest_quality_type', NULL, 1, '2013-07-19 21:57:27', NULL, '0000-00-00 00:00:00'),
(1937, 'interest_information', NULL, 1, '2013-07-19 21:57:48', NULL, '0000-00-00 00:00:00'),
(1938, 'interest', NULL, 1, '2013-07-19 21:58:01', NULL, '0000-00-00 00:00:00'),
(1939, 'job_interest_type', NULL, 1, '2013-07-19 21:58:31', NULL, '0000-00-00 00:00:00'),
(1940, 'job_interest_type_id', NULL, 1, '2013-07-19 21:58:57', NULL, '0000-00-00 00:00:00'),
(1941, 'application_form_file_type', NULL, 1, '2013-07-19 21:59:30', NULL, '0000-00-00 00:00:00'),
(1942, 'form_file', NULL, 1, '2013-07-19 21:59:58', NULL, '0000-00-00 00:00:00'),
(1943, 'pieces', NULL, 1, '2013-07-25 14:10:42', NULL, '0000-00-00 00:00:00'),
(1944, 'stamp', NULL, 1, '2013-07-25 14:16:19', NULL, '0000-00-00 00:00:00'),
(1945, 'stamp_information', NULL, 1, '2013-07-29 10:36:41', NULL, '0000-00-00 00:00:00'),
(1946, 'stamp_type', NULL, 1, '2013-07-29 10:36:58', NULL, '0000-00-00 00:00:00'),
(1947, 'stamp_type_data', NULL, 1, '2013-07-29 10:37:21', NULL, '0000-00-00 00:00:00'),
(1948, 'one_of_quantity_is_empty', NULL, 1, '2013-07-29 10:39:57', NULL, '0000-00-00 00:00:00'),
(1949, 'technical_competence_type', NULL, 1, '2013-07-29 10:57:30', NULL, '0000-00-00 00:00:00'),
(1950, 'technical_quality', NULL, 1, '2013-07-29 10:57:46', NULL, '0000-00-00 00:00:00'),
(1951, 'workexperience', NULL, 1, '2013-07-29 10:59:22', NULL, '0000-00-00 00:00:00'),
(1952, 'division', NULL, 1, '2013-07-29 10:59:39', NULL, '0000-00-00 00:00:00'),
(1953, 'job_description', NULL, 1, '2013-07-29 10:59:56', NULL, '0000-00-00 00:00:00'),
(1954, 'achievement', NULL, 1, '2013-07-29 11:00:12', NULL, '0000-00-00 00:00:00'),
(1955, 'salary_information', NULL, 1, '2013-07-29 11:00:28', NULL, '0000-00-00 00:00:00'),
(1956, 'terminate-reason_type', NULL, 1, '2013-07-29 11:01:06', NULL, '0000-00-00 00:00:00'),
(1957, 'terminate-reason_note', NULL, 1, '2013-07-29 11:01:46', NULL, '0000-00-00 00:00:00'),
(1958, 'job_interest', NULL, 1, '2013-07-29 11:03:26', NULL, '0000-00-00 00:00:00'),
(1959, 'quality_type', NULL, 1, '2013-07-29 11:05:22', NULL, '0000-00-00 00:00:00'),
(1960, 'test_type', NULL, 1, '2013-07-29 11:05:48', NULL, '0000-00-00 00:00:00'),
(1961, 'reference_number_information', NULL, 1, '2013-07-30 08:55:19', NULL, '0000-00-00 00:00:00'),
(1962, 'confirm_date', NULL, 1, '2013-07-30 08:55:39', NULL, '0000-00-00 00:00:00'),
(1963, 'confirm_notes', NULL, 1, '2013-07-30 08:55:58', NULL, '0000-00-00 00:00:00'),
(1964, 'stamp_duty_costing', NULL, 1, '2013-07-30 08:56:32', NULL, '0000-00-00 00:00:00'),
(1965, 'stamp_duty', NULL, 1, '2013-07-30 08:57:00', NULL, '0000-00-00 00:00:00'),
(1966, 'efective_date', NULL, 1, '2013-08-01 09:13:52', NULL, '0000-00-00 00:00:00'),
(1967, 'employee_work_unit', NULL, 1, '2013-08-01 09:14:31', NULL, '0000-00-00 00:00:00'),
(1968, 'employee_structural_position', NULL, 1, '2013-08-01 09:15:00', NULL, '0000-00-00 00:00:00'),
(1969, 'kg', NULL, 1, '2013-08-01 09:15:38', NULL, '0000-00-00 00:00:00'),
(1970, 'cm', NULL, 1, '2013-08-01 09:15:55', NULL, '0000-00-00 00:00:00'),
(1971, 'regcity_id', NULL, 1, '2013-08-01 09:19:50', NULL, '0000-00-00 00:00:00'),
(1972, 'salutation_id', NULL, 1, '2013-08-01 09:20:04', NULL, '0000-00-00 00:00:00'),
(1973, 'birth_place', NULL, 1, '2013-08-01 09:20:22', NULL, '0000-00-00 00:00:00'),
(1974, 'mrtstatus_id', NULL, 1, '2013-08-01 09:20:39', NULL, '0000-00-00 00:00:00'),
(1975, 'mrtcode_id', NULL, 1, '2013-08-01 09:20:52', NULL, '0000-00-00 00:00:00'),
(1976, 'child_count', NULL, 1, '2013-08-01 09:21:06', NULL, '0000-00-00 00:00:00'),
(1977, 'last_child_age', NULL, 1, '2013-08-01 09:21:23', 1, '2013-08-01 09:22:03'),
(1978, 'religion_id', NULL, 1, '2013-08-01 09:22:18', NULL, '0000-00-00 00:00:00'),
(1979, 'nationality_country_id', NULL, 1, '2013-08-01 09:22:43', NULL, '0000-00-00 00:00:00'),
(1980, 'dialect', NULL, 1, '2013-08-01 09:22:59', NULL, '0000-00-00 00:00:00'),
(1981, 'bloodtype_id', NULL, 1, '2013-08-01 09:24:09', NULL, '0000-00-00 00:00:00'),
(1982, 'head_size', NULL, 1, '2013-08-01 09:24:24', NULL, '0000-00-00 00:00:00'),
(1983, 'clothes_size', NULL, 1, '2013-08-01 09:24:42', NULL, '0000-00-00 00:00:00'),
(1984, 's', NULL, 1, '2013-08-01 09:24:48', NULL, '0000-00-00 00:00:00'),
(1985, 'm', NULL, 1, '2013-08-01 09:24:55', NULL, '0000-00-00 00:00:00'),
(1986, 'l', NULL, 1, '2013-08-01 09:25:07', NULL, '0000-00-00 00:00:00'),
(1987, 'xl', NULL, 1, '2013-08-01 09:25:15', NULL, '0000-00-00 00:00:00'),
(1988, 'xxl', NULL, 1, '2013-08-01 09:25:23', NULL, '0000-00-00 00:00:00'),
(1989, 'xxxl', NULL, 1, '2013-08-01 09:25:33', NULL, '0000-00-00 00:00:00'),
(1990, 'recapplicant', NULL, 1, '2013-08-01 09:25:59', 1, '2013-08-01 09:26:12'),
(1991, 'pants_size', NULL, 1, '2013-08-01 09:26:32', NULL, '0000-00-00 00:00:00'),
(1992, 'shoe_size', NULL, 1, '2013-08-01 09:26:48', NULL, '0000-00-00 00:00:00'),
(1993, 'disabilitytype_id', NULL, 1, '2013-08-01 09:27:42', NULL, '0000-00-00 00:00:00'),
(1994, 'hobby', NULL, 1, '2013-08-01 09:29:56', NULL, '0000-00-00 00:00:00'),
(1995, 'strength', NULL, 1, '2013-08-01 09:30:27', NULL, '0000-00-00 00:00:00'),
(1996, 'weakness', NULL, 1, '2013-08-01 09:30:39', NULL, '0000-00-00 00:00:00'),
(1997, 'handle_weakness', NULL, 1, '2013-08-01 09:31:17', 1, '2013-08-01 09:36:29'),
(1998, 'prefer_work_type', NULL, 1, '2013-08-01 09:35:53', NULL, '0000-00-00 00:00:00'),
(1999, 'not_prefer_work_type', NULL, 1, '2013-08-01 09:37:04', NULL, '0000-00-00 00:00:00'),
(2000, 'before_join_salary', NULL, 1, '2013-08-01 09:38:05', NULL, '0000-00-00 00:00:00'),
(2001, 'prefer_salary', NULL, 1, '2013-08-01 09:38:31', NULL, '0000-00-00 00:00:00'),
(2002, 'reasons_to_quit', NULL, 1, '2013-08-01 09:39:51', NULL, '0000-00-00 00:00:00'),
(2003, 'apply_motivation', NULL, 1, '2013-08-01 09:40:39', NULL, '0000-00-00 00:00:00'),
(2004, 'placement_reason', NULL, 1, '2013-08-01 09:41:26', NULL, '0000-00-00 00:00:00'),
(2005, 'prefer_position', NULL, 1, '2013-08-01 09:42:06', NULL, '0000-00-00 00:00:00'),
(2006, 'workplace_info', NULL, 1, '2013-08-01 09:43:27', NULL, '0000-00-00 00:00:00'),
(2007, 'job_desc_when_accepted', NULL, 1, '2013-08-01 09:45:18', 1, '2013-08-01 09:49:21'),
(2008, 'tri_dharma_implementation', NULL, 1, '2013-08-01 09:45:51', NULL, '0000-00-00 00:00:00'),
(2009, 'suggestion', NULL, 1, '2013-08-01 09:47:51', NULL, '0000-00-00 00:00:00'),
(2010, 'spare_time', NULL, 1, '2013-08-01 09:49:05', NULL, '0000-00-00 00:00:00'),
(2011, 'reasons_to_join', NULL, 1, '2013-08-01 09:49:59', NULL, '0000-00-00 00:00:00'),
(2012, 'exchange_rate_info', NULL, 1, '2013-08-12 14:36:49', NULL, '0000-00-00 00:00:00'),
(2013, 'claim', NULL, 1, '2013-08-12 15:57:00', NULL, '0000-00-00 00:00:00'),
(2014, 'total_approved', NULL, 1, '2013-08-12 15:57:43', NULL, '0000-00-00 00:00:00'),
(2015, 'park_date', NULL, 1, '2013-08-12 15:59:00', NULL, '0000-00-00 00:00:00'),
(2016, 'fuel_date', NULL, 1, '2013-08-12 15:59:20', NULL, '0000-00-00 00:00:00'),
(2017, 'toll_date', NULL, 1, '2013-08-12 15:59:33', NULL, '0000-00-00 00:00:00'),
(2018, 'toll_reimbursement_information', NULL, 1, '2013-08-12 16:01:06', NULL, '0000-00-00 00:00:00'),
(2019, 'parking_reimbursement_information', NULL, 1, '2013-08-12 16:01:24', 1, '2013-08-12 16:02:25'),
(2020, 'fuel_reimbursement_information', NULL, 1, '2013-08-12 16:01:43', 1, '2013-08-12 16:01:52'),
(2021, 'msisdn', NULL, 1, '2013-08-16 18:40:20', NULL, '0000-00-00 00:00:00'),
(2022, 'imei', NULL, 1, '2013-08-16 18:40:39', NULL, '0000-00-00 00:00:00'),
(2023, 'unique_id', NULL, 1, '2013-08-16 18:41:02', NULL, '0000-00-00 00:00:00'),
(2024, 'start_salary_amount', NULL, 1, '2013-08-19 11:24:42', NULL, '0000-00-00 00:00:00'),
(2025, 'start_salary_payment_type', NULL, 1, '2013-08-19 11:25:06', NULL, '0000-00-00 00:00:00'),
(2026, 'last_salary_amount', NULL, 1, '2013-08-19 11:26:02', NULL, '0000-00-00 00:00:00'),
(2027, 'last_salary_payment_type', NULL, 1, '2013-08-19 11:26:29', NULL, '0000-00-00 00:00:00'),
(2028, 'work_period_information', NULL, 1, '2013-08-19 11:29:21', NULL, '0000-00-00 00:00:00'),
(2029, 'terminate_reason_type', NULL, 1, '2013-08-19 11:29:50', NULL, '0000-00-00 00:00:00'),
(2030, 'gps_device', NULL, 1, '2013-08-21 10:01:25', NULL, '0000-00-00 00:00:00'),
(2031, 'sos_msisdn_1', NULL, 1, '2013-08-21 10:01:43', NULL, '0000-00-00 00:00:00'),
(2032, 'sos_msisdn_2', NULL, 1, '2013-08-21 10:02:38', NULL, '0000-00-00 00:00:00'),
(2033, 'sos_msisdn_3', NULL, 1, '2013-08-21 10:02:51', NULL, '0000-00-00 00:00:00'),
(2034, 'gps_icon', NULL, 1, '2013-08-21 10:36:00', NULL, '0000-00-00 00:00:00'),
(2035, 'vehicle', NULL, 1, '2013-08-21 10:36:25', NULL, '0000-00-00 00:00:00'),
(2036, 'operational_vehicle', NULL, 1, '2013-08-21 10:36:51', NULL, '0000-00-00 00:00:00'),
(2037, 'assign', NULL, 1, '2013-08-21 10:37:53', NULL, '0000-00-00 00:00:00'),
(2038, 'other_vehicle', NULL, 1, '2013-08-21 10:38:13', NULL, '0000-00-00 00:00:00'),
(2039, 'realization_status', NULL, 1, '2013-08-21 10:40:57', NULL, '0000-00-00 00:00:00'),
(2040, 'charge_information', NULL, 1, '2013-08-21 10:42:07', NULL, '0000-00-00 00:00:00'),
(2041, 'charge_to', NULL, 1, '2013-08-21 10:42:27', NULL, '0000-00-00 00:00:00'),
(2042, 'other', NULL, 1, '2013-08-21 10:42:42', NULL, '0000-00-00 00:00:00'),
(2043, 'charge_other', NULL, 1, '2013-08-21 10:43:18', NULL, '0000-00-00 00:00:00'),
(2044, 'taxi_voucher_information', NULL, 1, '2013-08-21 10:43:38', NULL, '0000-00-00 00:00:00'),
(2045, 'usage_date', NULL, 1, '2013-08-21 10:43:56', NULL, '0000-00-00 00:00:00'),
(2046, 'dest_from', NULL, 1, '2013-08-21 10:44:22', NULL, '0000-00-00 00:00:00'),
(2047, 'dest_to', NULL, 1, '2013-08-21 10:44:35', NULL, '0000-00-00 00:00:00'),
(2048, 'one_of_usage_date_is_empty', NULL, 1, '2013-08-21 10:45:25', NULL, '0000-00-00 00:00:00'),
(2049, 'taxi_voucher', NULL, 1, '2013-08-21 10:45:55', NULL, '0000-00-00 00:00:00'),
(2050, 'cancel_date', NULL, 1, '2013-08-21 10:46:32', NULL, '0000-00-00 00:00:00'),
(2051, 'one_of_detail_status_is_empty', NULL, 1, '2013-08-21 10:47:21', NULL, '0000-00-00 00:00:00'),
(2052, 'taxi_voucher_request_information', NULL, 1, '2013-08-26 14:52:36', NULL, '0000-00-00 00:00:00'),
(2053, 'taxi_voucher_realization_information', NULL, 1, '2013-08-26 14:53:21', NULL, '0000-00-00 00:00:00'),
(2054, 'depart_date', NULL, 1, '2013-08-26 14:53:58', NULL, '0000-00-00 00:00:00'),
(2055, 'arrival_date', NULL, 1, '2013-08-26 14:54:18', NULL, '0000-00-00 00:00:00'),
(2056, 'one_of_departure_date_is_empty', NULL, 1, '2013-08-26 14:55:19', NULL, '0000-00-00 00:00:00'),
(2057, 'one_of_arrival_date_is_empty', NULL, 1, '2013-08-26 14:55:55', NULL, '0000-00-00 00:00:00'),
(2058, 'one_of_nominal_is_empty', NULL, 1, '2013-08-26 14:56:48', NULL, '0000-00-00 00:00:00'),
(2059, 'realization_status_information', NULL, 1, '2013-08-26 14:58:08', NULL, '0000-00-00 00:00:00'),
(2060, 'realization_status_officer', NULL, 1, '2013-08-26 14:58:49', 1, '2013-08-26 14:59:21'),
(2061, 'realization_status_date', NULL, 1, '2013-08-26 15:00:34', NULL, '0000-00-00 00:00:00'),
(2062, 'realization_status_notes', NULL, 1, '2013-08-26 15:01:45', NULL, '0000-00-00 00:00:00'),
(2063, 'fuel_type_data', NULL, 1, '2013-08-26 15:15:36', NULL, '0000-00-00 00:00:00'),
(2064, 'price_per_liter', NULL, 1, '2013-08-26 15:16:01', NULL, '0000-00-00 00:00:00'),
(2065, 'request_number', NULL, 1, '2013-08-26 16:24:40', NULL, '0000-00-00 00:00:00'),
(2066, 'coa', NULL, 1, '2013-09-04 08:14:50', NULL, '0000-00-00 00:00:00'),
(2067, 'coa_group', NULL, 1, '2013-09-04 08:15:06', NULL, '0000-00-00 00:00:00'),
(2068, 'currency_default', NULL, 1, '2013-09-04 08:15:27', 1, '2013-09-04 08:20:28'),
(2069, 'is_cash', NULL, 1, '2013-09-04 08:17:07', 1, '2013-09-04 08:26:19'),
(2070, 'is_current_year_income_statement', NULL, 1, '2013-09-04 08:17:39', 1, '2013-09-04 08:23:54'),
(2071, 'normal_balance', NULL, 1, '2013-09-04 08:18:06', NULL, '0000-00-00 00:00:00'),
(2072, 'parent_coa', NULL, 1, '2013-09-04 08:18:31', NULL, '0000-00-00 00:00:00'),
(2073, 'debit', NULL, 1, '2013-09-04 08:18:45', NULL, '0000-00-00 00:00:00'),
(2074, 'credit', NULL, 1, '2013-09-04 08:18:54', NULL, '0000-00-00 00:00:00'),
(2075, 'coa_code', NULL, 1, '2013-09-04 08:19:21', NULL, '0000-00-00 00:00:00'),
(2076, 'coa_name', NULL, 1, '2013-09-04 08:19:36', NULL, '0000-00-00 00:00:00'),
(2077, 'default_currency', NULL, 1, '2013-09-04 08:20:09', NULL, '0000-00-00 00:00:00'),
(2078, 'cost_type', NULL, 1, '2013-09-04 08:22:31', NULL, '0000-00-00 00:00:00'),
(2079, 'is_lumpsum', NULL, 1, '2013-09-04 08:26:46', NULL, '0000-00-00 00:00:00'),
(2080, 'is_at_cost', NULL, 1, '2013-09-04 08:27:07', NULL, '0000-00-00 00:00:00'),
(2081, 'is_dynamic', NULL, 1, '2013-09-04 08:28:08', NULL, '0000-00-00 00:00:00'),
(2082, 'is_manual', NULL, 1, '2013-09-04 08:28:25', NULL, '0000-00-00 00:00:00'),
(2083, 'is_mainland', NULL, 1, '2013-09-04 08:29:30', NULL, '0000-00-00 00:00:00'),
(2084, 'destination_type', NULL, 1, '2013-09-04 08:49:03', 1, '2013-09-04 08:49:23'),
(2085, 'destination_region', NULL, 1, '2013-09-04 08:49:58', NULL, '0000-00-00 00:00:00'),
(2086, 'rate_group', NULL, 1, '2013-09-04 08:50:29', NULL, '0000-00-00 00:00:00'),
(2087, 'group_grade', NULL, 1, '2013-09-04 08:51:33', NULL, '0000-00-00 00:00:00'),
(2088, 'travel_plan_status', NULL, 1, '2013-09-04 08:52:17', NULL, '0000-00-00 00:00:00'),
(2089, 'chart_of_account', NULL, 1, '2013-09-10 11:05:21', NULL, '0000-00-00 00:00:00'),
(2090, 'collapse_all', NULL, 1, '2013-09-10 11:05:41', NULL, '0000-00-00 00:00:00'),
(2091, 'expand_all', NULL, 1, '2013-09-10 11:05:55', NULL, '0000-00-00 00:00:00'),
(2092, 'treeview', NULL, 1, '2013-09-10 11:06:11', NULL, '0000-00-00 00:00:00'),
(2093, 'dest_type', NULL, 1, '2013-09-12 13:51:13', NULL, '0000-00-00 00:00:00'),
(2094, 'dest_region', NULL, 1, '2013-09-12 13:51:33', NULL, '0000-00-00 00:00:00'),
(2095, 'is_stayed', NULL, 1, '2013-09-12 13:52:59', NULL, '0000-00-00 00:00:00'),
(2096, 'policy_cost', NULL, 1, '2013-09-12 13:53:45', NULL, '0000-00-00 00:00:00'),
(2097, 'for_functional_position', NULL, 1, '2013-09-12 13:56:50', NULL, '0000-00-00 00:00:00'),
(2098, 'unit_color', NULL, 1, '2013-09-12 14:00:27', NULL, '0000-00-00 00:00:00'),
(2099, 'unit_pic', NULL, 1, '2013-09-12 14:00:54', NULL, '0000-00-00 00:00:00'),
(2100, 'task_number', NULL, 1, '2013-09-23 08:54:20', NULL, '0000-00-00 00:00:00'),
(2101, 'task_category', NULL, 1, '2013-09-23 08:55:22', NULL, '0000-00-00 00:00:00'),
(2102, 'task_assignment', NULL, 1, '2013-09-23 08:56:20', 1, '2013-11-04 08:53:07'),
(2103, 'finish', NULL, 1, '2013-09-23 08:56:44', NULL, '0000-00-00 00:00:00'),
(2104, 'task_date', NULL, 1, '2013-09-23 08:57:31', NULL, '0000-00-00 00:00:00'),
(2105, 'title_confirm_finish', NULL, 1, '2013-09-23 08:58:50', 1, '2013-09-23 09:01:11'),
(2106, 'msg_confirm_finish', NULL, 1, '2013-09-23 09:00:50', 1, '2013-10-21 13:22:08'),
(2107, 'note_number', NULL, 1, '2013-09-23 09:01:48', NULL, '0000-00-00 00:00:00'),
(2108, 'task_information', NULL, 1, '2013-09-23 09:02:47', NULL, '0000-00-00 00:00:00'),
(2109, 'task_subject', NULL, 1, '2013-09-23 09:03:32', NULL, '0000-00-00 00:00:00'),
(2110, 'note_information', NULL, 1, '2013-09-23 09:03:47', NULL, '0000-00-00 00:00:00'),
(2111, 'realization_date', NULL, 1, '2013-09-23 09:04:10', NULL, '0000-00-00 00:00:00'),
(2112, 'note_assignment', NULL, 1, '2013-09-23 09:04:45', 1, '2013-11-04 08:51:17'),
(2113, 'call_number', NULL, 1, '2013-09-23 09:07:17', 1, '2013-09-23 09:16:43'),
(2114, 'call_information', NULL, 1, '2013-09-23 09:07:56', 1, '2013-09-23 09:16:39'),
(2115, 'call_assignment', NULL, 1, '2013-09-23 09:08:19', 1, '2013-11-04 08:50:18'),
(2116, 'inbound', NULL, 1, '2013-09-23 09:08:39', NULL, '0000-00-00 00:00:00'),
(2117, 'outbound', NULL, 1, '2013-09-23 09:08:56', NULL, '0000-00-00 00:00:00'),
(2118, 'meeting_number', NULL, 1, '2013-09-23 09:12:06', 1, '2013-09-23 09:16:20'),
(2119, 'meeting_information', NULL, 1, '2013-09-23 09:12:34', 1, '2013-09-23 09:16:02'),
(2120, 'meeting_assignment', NULL, 1, '2013-09-23 09:13:01', 1, '2013-11-04 08:50:59'),
(2121, 'work_number', NULL, 1, '2013-09-23 09:14:02', NULL, '0000-00-00 00:00:00'),
(2122, 'work_status', NULL, 1, '2013-09-23 09:14:25', 1, '2013-09-23 09:14:44'),
(2123, 'office_work', NULL, 1, '2013-09-23 09:17:35', NULL, '0000-00-00 00:00:00'),
(2124, 'office_work_status', NULL, 1, '2013-09-23 09:17:50', NULL, '0000-00-00 00:00:00'),
(2125, 'office_work_information', NULL, 1, '2013-09-23 09:18:38', NULL, '0000-00-00 00:00:00'),
(2126, 'visit_status', NULL, 1, '2013-09-23 09:19:28', NULL, '0000-00-00 00:00:00'),
(2127, 'visit', NULL, 1, '2013-09-23 09:19:55', NULL, '0000-00-00 00:00:00'),
(2128, 'visit_information', NULL, 1, '2013-09-23 09:20:18', NULL, '0000-00-00 00:00:00'),
(2129, 'bug', NULL, 1, '2013-09-23 16:24:02', NULL, '0000-00-00 00:00:00'),
(2130, 'reporter_data', NULL, 1, '2013-09-23 16:24:24', NULL, '0000-00-00 00:00:00'),
(2131, 'delivery_status', NULL, 1, '2013-09-23 16:24:43', NULL, '0000-00-00 00:00:00'),
(2132, 'general', NULL, 1, '2013-09-23 16:24:56', NULL, '0000-00-00 00:00:00'),
(2133, 'reporter', NULL, 1, '2013-09-23 16:25:12', NULL, '0000-00-00 00:00:00'),
(2134, 'bug_priority_level', NULL, 1, '2013-09-23 16:25:33', NULL, '0000-00-00 00:00:00'),
(2135, 'bug_source', NULL, 1, '2013-09-23 16:26:10', NULL, '0000-00-00 00:00:00'),
(2136, 'bug_type', NULL, 1, '2013-09-23 16:26:28', NULL, '0000-00-00 00:00:00'),
(2137, 'found_date', NULL, 1, '2013-09-23 16:26:59', NULL, '0000-00-00 00:00:00'),
(2138, 'found_software_release', NULL, 1, '2013-09-23 16:27:54', 1, '2013-09-23 16:29:06'),
(2139, 'fixed_date', NULL, 1, '2013-09-23 16:28:14', NULL, '0000-00-00 00:00:00'),
(2140, 'fixed_software_release', NULL, 1, '2013-09-23 16:28:41', NULL, '0000-00-00 00:00:00'),
(2141, 'percent_completed', NULL, 1, '2013-09-23 16:29:29', 1, '2013-09-23 16:29:43'),
(2142, 'estimated_effort', NULL, 1, '2013-09-23 16:30:15', NULL, '0000-00-00 00:00:00'),
(2143, 'bug_status', NULL, 1, '2013-09-23 16:30:35', NULL, '0000-00-00 00:00:00'),
(2144, 'bug_resolution', NULL, 1, '2013-09-23 16:30:57', NULL, '0000-00-00 00:00:00'),
(2145, 'work_log', NULL, 1, '2013-09-23 16:31:14', NULL, '0000-00-00 00:00:00'),
(2146, 'dependency_data', NULL, 1, '2013-09-23 16:31:53', NULL, '0000-00-00 00:00:00'),
(2147, 'bug_tracker', NULL, 1, '2013-09-23 16:32:32', NULL, '0000-00-00 00:00:00'),
(2148, 'bug_number', NULL, 1, '2013-09-23 16:32:54', NULL, '0000-00-00 00:00:00'),
(2149, 'duplication_data', NULL, 1, '2013-09-23 16:33:12', NULL, '0000-00-00 00:00:00'),
(2150, 'bug_field_is_required', NULL, 1, '2013-09-23 16:34:02', NULL, '0000-00-00 00:00:00'),
(2151, 'tag_data', NULL, 1, '2013-09-23 16:34:36', NULL, '0000-00-00 00:00:00'),
(2152, 'keywords', NULL, 1, '2013-09-23 16:34:53', NULL, '0000-00-00 00:00:00'),
(2153, 'report_contact', NULL, 1, '2013-09-23 16:35:14', NULL, '0000-00-00 00:00:00'),
(2154, 'report_name', NULL, 1, '2013-09-23 16:41:42', NULL, '0000-00-00 00:00:00'),
(2155, 'report_company', NULL, 1, '2013-09-23 16:42:00', NULL, '0000-00-00 00:00:00'),
(2156, 'report_email', NULL, 1, '2013-09-23 16:42:13', NULL, '0000-00-00 00:00:00'),
(2157, 'report_phone', NULL, 1, '2013-09-23 16:42:29', NULL, '0000-00-00 00:00:00'),
(2158, 'bug_assignment', NULL, 1, '2013-09-23 16:44:25', 1, '2013-11-04 08:49:55'),
(2159, 'real_revenue', NULL, 1, '2013-09-25 10:46:27', 1, '2013-09-25 11:10:54'),
(2160, 'real_nett_profit', NULL, 1, '2013-09-25 10:48:02', 1, '2013-09-25 11:10:41'),
(2161, 'for_contract_summary', NULL, 1, '2013-09-25 10:52:30', NULL, '0000-00-00 00:00:00'),
(2162, 'for_realization_year', NULL, 1, '2013-09-25 10:52:53', NULL, '0000-00-00 00:00:00'),
(2163, 'real_estimation', NULL, 1, '2013-09-25 10:55:42', NULL, '0000-00-00 00:00:00'),
(2164, 'nett_profit', NULL, 1, '2013-09-25 11:10:31', NULL, '0000-00-00 00:00:00'),
(2165, 'view_profile', NULL, 1, '2013-09-26 11:20:24', NULL, '0000-00-00 00:00:00'),
(2166, 'sales_performance', NULL, 1, '2013-09-27 11:26:37', NULL, '0000-00-00 00:00:00'),
(2167, 'activity_report', NULL, 1, '2013-09-27 13:19:52', NULL, '0000-00-00 00:00:00'),
(2168, 'minimum_wage', NULL, 1, '2013-09-30 10:07:35', NULL, '0000-00-00 00:00:00'),
(2169, 'end_period', NULL, 1, '2013-09-30 10:07:50', NULL, '0000-00-00 00:00:00'),
(2170, 'minimum_wage_state', NULL, 1, '2013-09-30 10:09:18', NULL, '0000-00-00 00:00:00'),
(2171, 'minimum_wage_city', NULL, 1, '2013-09-30 10:09:54', NULL, '0000-00-00 00:00:00'),
(2172, 'increment', NULL, 1, '2013-09-30 10:10:32', 1, '2013-09-30 10:13:41'),
(2173, 'official', NULL, 1, '2013-09-30 10:10:49', NULL, '0000-00-00 00:00:00'),
(2174, 'increment_percent', NULL, 1, '2013-09-30 10:11:21', NULL, '0000-00-00 00:00:00'),
(2175, 'decree_employee', NULL, 1, '2013-09-30 10:12:30', NULL, '0000-00-00 00:00:00'),
(2176, 'decree_official', NULL, 1, '2013-09-30 10:12:42', NULL, '0000-00-00 00:00:00'),
(2177, 'decree_position', NULL, 1, '2013-09-30 10:12:59', NULL, '0000-00-00 00:00:00'),
(2178, 'increment_amount', NULL, 1, '2013-09-30 10:13:25', NULL, '0000-00-00 00:00:00'),
(2179, 'from_last_year', NULL, 1, '2013-09-30 10:14:03', NULL, '0000-00-00 00:00:00'),
(2180, 'minimumwage', NULL, 1, '2013-09-30 10:15:12', NULL, '0000-00-00 00:00:00'),
(2181, 'decree_offical', NULL, 1, '2013-09-30 10:16:03', NULL, '0000-00-00 00:00:00'),
(2182, 'task_realization', NULL, 1, '2013-09-30 10:32:49', NULL, '0000-00-00 00:00:00'),
(2183, 'visit_number', NULL, 1, '2013-09-30 10:34:39', 1, '2013-09-30 10:34:54'),
(2184, 'visit_assignment', NULL, 1, '2013-09-30 10:35:41', 1, '2013-11-04 08:52:42'),
(2185, 'office_work_assignment', NULL, 1, '2013-09-30 10:37:21', 1, '2013-11-04 08:51:43'),
(2186, 'task_completed', NULL, 1, '2013-10-01 09:10:40', NULL, '0000-00-00 00:00:00'),
(2187, 'officer_is_sales', NULL, 1, '2013-10-01 15:13:40', NULL, '0000-00-00 00:00:00'),
(2188, 'display_thumbnail', NULL, 1, '2013-10-01 15:16:24', NULL, '0000-00-00 00:00:00'),
(2189, 'display_table', NULL, 1, '2013-10-01 15:17:00', NULL, '0000-00-00 00:00:00'),
(2190, 'task_completion_overall', NULL, 1, '2013-10-02 12:03:37', NULL, '0000-00-00 00:00:00'),
(2191, 'activity_summary', NULL, 1, '2013-10-02 12:04:09', NULL, '0000-00-00 00:00:00'),
(2192, 'hours', NULL, 1, '2013-10-02 12:04:26', NULL, '0000-00-00 00:00:00'),
(2193, 'task_completion_of', NULL, 1, '2013-10-02 12:05:12', NULL, '0000-00-00 00:00:00'),
(2194, 'activity_report_by', NULL, 1, '2013-10-02 12:05:38', NULL, '0000-00-00 00:00:00'),
(2195, 'hrs', NULL, 1, '2013-10-02 12:05:50', NULL, '0000-00-00 00:00:00'),
(2196, 'in_hours', NULL, 1, '2013-10-02 12:06:08', NULL, '0000-00-00 00:00:00'),
(2197, 'msg_finsih_success', NULL, 1, '2013-10-02 16:01:40', NULL, '0000-00-00 00:00:00'),
(2198, 'activity_completed', NULL, 1, '2013-10-02 16:12:51', NULL, '0000-00-00 00:00:00'),
(2199, 'is_all', NULL, 1, '2013-10-03 10:29:35', NULL, '0000-00-00 00:00:00'),
(2200, 'is_admin', NULL, 1, '2013-10-03 10:29:54', 1, '2013-10-03 10:30:08'),
(2201, 'duplicate_lead', NULL, 1, '2013-10-03 11:07:39', NULL, '0000-00-00 00:00:00'),
(2202, 'vcard', NULL, 1, '2013-10-03 11:24:33', NULL, '0000-00-00 00:00:00'),
(2203, 'employee_transfer', NULL, 1, '2013-10-08 08:31:38', 1, '2013-10-08 08:31:56'),
(2204, 'search_data', NULL, 1, '2013-10-18 16:37:04', NULL, '0000-00-00 00:00:00'),
(2205, 'more_results', NULL, 1, '2013-10-18 16:38:29', NULL, '0000-00-00 00:00:00'),
(2206, 'search_results', NULL, 1, '2013-10-18 16:38:58', NULL, '0000-00-00 00:00:00'),
(2207, 'vehicle_contract_info', NULL, 1, '2013-10-21 11:26:15', 1, '2013-10-21 13:33:31'),
(2208, 'contract_reference', NULL, 1, '2013-10-21 11:26:32', NULL, '0000-00-00 00:00:00'),
(2209, 'contract_start', NULL, 1, '2013-10-21 11:26:57', NULL, '0000-00-00 00:00:00'),
(2210, 'contract_end', NULL, 1, '2013-10-21 11:27:12', NULL, '0000-00-00 00:00:00'),
(2211, 'cost_category', NULL, 1, '2013-10-21 11:27:29', NULL, '0000-00-00 00:00:00'),
(2212, 'vehicle_cost_type', NULL, 1, '2013-10-21 11:27:44', NULL, '0000-00-00 00:00:00'),
(2213, 'cost_amount', NULL, 1, '2013-10-21 11:27:59', NULL, '0000-00-00 00:00:00'),
(2214, 'recurring_cost_amount', NULL, 1, '2013-10-21 11:28:52', 1, '2013-10-21 11:39:35'),
(2215, 'odometer_info', NULL, 1, '2013-10-21 11:29:08', NULL, '0000-00-00 00:00:00'),
(2216, 'odometer_value', NULL, 1, '2013-10-21 11:29:29', NULL, '0000-00-00 00:00:00'),
(2217, 'daily', NULL, 1, '2013-10-21 11:29:52', NULL, '0000-00-00 00:00:00'),
(2218, 'finance_trans_info', NULL, 1, '2013-10-21 11:30:17', NULL, '0000-00-00 00:00:00'),
(2219, 'invoice_number', NULL, 1, '2013-10-21 11:30:34', NULL, '0000-00-00 00:00:00'),
(2220, 'services_included_into_contract', NULL, 1, '2013-10-21 11:32:12', 1, '2013-10-21 13:44:16'),
(2221, 'service', NULL, 1, '2013-10-21 11:32:28', NULL, '0000-00-00 00:00:00'),
(2222, 'cost_type_data', NULL, 1, '2013-10-21 11:33:13', NULL, '0000-00-00 00:00:00'),
(2223, 'generated_cost', NULL, 1, '2013-10-21 11:34:25', 1, '2013-10-21 11:47:03'),
(2224, 'activation_cost', NULL, 1, '2013-10-21 11:39:51', NULL, '0000-00-00 00:00:00'),
(2225, 'service_data', NULL, 1, '2013-10-21 11:46:27', 1, '2013-10-21 13:44:27'),
(2226, 'other_contract_data', NULL, 1, '2013-10-21 11:46:56', NULL, '0000-00-00 00:00:00'),
(2227, 'vehicle_contract', NULL, 1, '2013-10-21 11:47:37', 1, '2013-10-21 13:34:20'),
(2228, 'transaction_date', NULL, 1, '2013-10-21 13:17:47', NULL, '0000-00-00 00:00:00'),
(2229, 'odo_value', NULL, 1, '2013-10-21 13:18:49', NULL, '0000-00-00 00:00:00'),
(2230, 'odo_units', NULL, 1, '2013-10-21 13:19:05', NULL, '0000-00-00 00:00:00'),
(2231, 'external_vehicle_cost_info', NULL, 1, '2013-10-21 13:19:44', NULL, '0000-00-00 00:00:00'),
(2232, 'title_confirm_remove', NULL, 1, '2013-10-21 13:20:29', NULL, '0000-00-00 00:00:00'),
(2233, 'vehicle_odometer', NULL, 1, '2013-10-21 13:20:47', NULL, '0000-00-00 00:00:00'),
(2234, 'msg_confirm_remove', NULL, 1, '2013-10-21 13:21:43', NULL, '0000-00-00 00:00:00'),
(2235, 'vehicle_fuel_claim_info', NULL, 1, '2013-10-21 13:24:39', 1, '2013-10-21 13:33:05'),
(2236, 'fuel_liter', NULL, 1, '2013-10-21 13:25:45', NULL, '0000-00-00 00:00:00'),
(2237, 'in_liter', NULL, 1, '2013-10-21 13:25:59', NULL, '0000-00-00 00:00:00'),
(2238, 'vehicle_fuel', NULL, 1, '2013-10-21 13:26:53', 1, '2013-10-21 13:32:52'),
(2239, 'vehicle_service_info', NULL, 1, '2013-10-21 13:32:27', NULL, '0000-00-00 00:00:00'),
(2240, 'other_services_included', NULL, 1, '2013-10-21 13:35:31', NULL, '0000-00-00 00:00:00'),
(2241, 'one_of_service_type_is_empty', NULL, 1, '2013-10-21 13:36:38', 1, '2013-10-21 13:43:52'),
(2242, 'one_of_other_contract_date_is_empty', NULL, 1, '2013-10-21 13:37:38', NULL, '0000-00-00 00:00:00'),
(2243, 'vehicle_service', NULL, 1, '2013-10-21 13:43:36', NULL, '0000-00-00 00:00:00'),
(2244, 'is_effective', NULL, 1, '2013-10-21 14:34:00', 1, '2013-10-21 14:34:24'),
(2245, 'parent_cost', NULL, 1, '2013-10-21 14:35:13', NULL, '0000-00-00 00:00:00'),
(2246, 'vehicle_cost_info', NULL, 1, '2013-10-21 14:35:51', NULL, '0000-00-00 00:00:00'),
(2247, 'vehicle_cost', NULL, 1, '2013-10-21 14:37:25', NULL, '0000-00-00 00:00:00'),
(2248, 'external', NULL, 1, '2013-10-21 14:40:02', NULL, '0000-00-00 00:00:00'),
(2249, 'from_internal_submission', NULL, 1, '2013-10-21 15:15:33', NULL, '0000-00-00 00:00:00'),
(2250, 'from_external_submission', NULL, 1, '2013-10-21 15:15:57', NULL, '0000-00-00 00:00:00'),
(2251, 'menu_desc', NULL, 1, '2013-10-21 16:13:39', NULL, '0000-00-00 00:00:00'),
(2252, 'view_model', NULL, 1, '2013-10-21 16:13:57', NULL, '0000-00-00 00:00:00'),
(2253, 'set_as_grid', NULL, 1, '2013-10-21 16:14:13', NULL, '0000-00-00 00:00:00'),
(2254, 'set_as_content_menu', NULL, 1, '2013-10-21 16:14:31', NULL, '0000-00-00 00:00:00'),
(2255, 'is_system_menu', NULL, 1, '2013-10-21 16:14:49', NULL, '0000-00-00 00:00:00'),
(2256, 'doc_type', NULL, 1, '2013-10-22 14:55:56', 1, '2013-10-22 14:56:51'),
(2257, 'doc_status', NULL, 1, '2013-10-22 14:56:25', NULL, '0000-00-00 00:00:00'),
(2258, 'doc_category', NULL, 1, '2013-10-22 14:57:16', NULL, '0000-00-00 00:00:00'),
(2259, 'document', NULL, 1, '2013-10-22 14:57:52', NULL, '0000-00-00 00:00:00'),
(2260, 'publish_date', NULL, 1, '2013-10-22 14:58:13', NULL, '0000-00-00 00:00:00'),
(2261, 'expiration_date', NULL, 1, '2013-10-22 14:58:46', NULL, '0000-00-00 00:00:00'),
(2262, 'revision', NULL, 1, '2013-10-22 14:58:58', NULL, '0000-00-00 00:00:00'),
(2263, 'related_document', NULL, 1, '2013-10-22 14:59:39', NULL, '0000-00-00 00:00:00'),
(2264, 'further_education', NULL, 1, '2013-10-28 08:01:01', NULL, '0000-00-00 00:00:00'),
(2265, 'emptype_name', NULL, 1, '2013-10-28 08:01:22', NULL, '0000-00-00 00:00:00'),
(2266, 'from_email', NULL, 1, '2013-10-31 10:37:15', NULL, '0000-00-00 00:00:00'),
(2267, 'select_document', NULL, 1, '2013-10-31 10:38:02', NULL, '0000-00-00 00:00:00'),
(2268, 'list_type', NULL, 1, '2013-10-31 10:39:18', NULL, '0000-00-00 00:00:00'),
(2269, 'list_status', NULL, 1, '2013-10-31 10:39:32', NULL, '0000-00-00 00:00:00'),
(2270, 'target_list', NULL, 1, '2013-10-31 10:39:48', NULL, '0000-00-00 00:00:00'),
(2271, 'domain_name', NULL, 1, '2013-10-31 10:40:24', NULL, '0000-00-00 00:00:00'),
(2272, 'are_you_sure_want_to_create_this_officer', NULL, 1, '2013-10-31 10:59:41', NULL, '0000-00-00 00:00:00'),
(2273, 'parent_information', NULL, 1, '2013-11-04 08:26:45', NULL, '0000-00-00 00:00:00'),
(2274, 'is_finance', NULL, 1, '2013-11-04 08:27:07', 1, '2013-11-04 08:27:54'),
(2275, 'is_accounting', NULL, 1, '2013-11-04 08:27:37', NULL, '0000-00-00 00:00:00'),
(2276, 'personel', NULL, 1, '2013-11-04 08:35:29', NULL, '0000-00-00 00:00:00'),
(2277, 'target_assignment', NULL, 1, '2013-11-04 08:47:39', 1, '2013-11-04 08:48:37'),
(2278, 'case_assignment', NULL, 1, '2013-11-04 08:53:50', NULL, '0000-00-00 00:00:00'),
(2279, 'referral_emergency_contact', NULL, 1, '2013-11-06 09:29:45', NULL, '0000-00-00 00:00:00'),
(2280, 'competence_type', NULL, 1, '2013-11-06 10:21:23', NULL, '0000-00-00 00:00:00'),
(2281, 'keynote', NULL, 1, '2013-11-06 11:21:52', NULL, '0000-00-00 00:00:00'),
(2282, 'keynote_seminar', NULL, 1, '2013-11-06 11:22:32', NULL, '0000-00-00 00:00:00'),
(2283, 'topic', NULL, 1, '2013-11-06 11:22:46', NULL, '0000-00-00 00:00:00'),
(2284, 'Speaker', NULL, 1, '2013-11-06 11:23:13', NULL, '0000-00-00 00:00:00'),
(2285, 'speaker_profile', NULL, 1, '2013-11-06 11:23:29', NULL, '0000-00-00 00:00:00'),
(2286, 'parameter', NULL, 1, '2013-11-06 12:58:26', NULL, '0000-00-00 00:00:00'),
(2287, 'session_workshop', NULL, 1, '2013-11-06 13:21:17', NULL, '0000-00-00 00:00:00'),
(2288, 'experience', NULL, 1, '2013-11-07 08:35:07', NULL, '0000-00-00 00:00:00'),
(2289, 'driving_license_number', NULL, 1, '2013-11-08 14:47:48', NULL, '0000-00-00 00:00:00'),
(2290, 'blog_web_address', NULL, 1, '2013-11-08 15:29:55', 1, '2013-11-08 15:32:08'),
(2291, 'blog', NULL, 1, '2013-11-08 15:33:15', NULL, '0000-00-00 00:00:00'),
(2292, 'psychology_test', NULL, 1, '2013-11-11 08:45:07', NULL, '0000-00-00 00:00:00'),
(2293, 'final_result', NULL, 1, '2013-11-11 08:45:23', NULL, '0000-00-00 00:00:00'),
(2294, 'psychology_test_type', NULL, 1, '2013-11-11 08:49:00', 1, '2013-11-11 09:05:46'),
(2295, 'lower_result', NULL, 1, '2013-11-11 08:49:50', NULL, '0000-00-00 00:00:00'),
(2296, 'higher_result', NULL, 1, '2013-11-11 08:50:08', NULL, '0000-00-00 00:00:00'),
(2297, 'conclusion', NULL, 1, '2013-11-11 08:50:27', NULL, '0000-00-00 00:00:00'),
(2298, 'result_recommendation', NULL, 1, '2013-11-11 08:50:54', NULL, '0000-00-00 00:00:00'),
(2299, 'psychology_test_name', NULL, 1, '2013-11-11 09:06:48', NULL, '0000-00-00 00:00:00'),
(2300, 'psychology_test_number', NULL, 1, '2013-11-11 09:07:06', NULL, '0000-00-00 00:00:00'),
(2301, 'insurance', NULL, 1, '2013-11-11 10:02:34', NULL, '0000-00-00 00:00:00'),
(2302, 'mobile_number', NULL, 1, '2013-11-11 11:44:02', NULL, '0000-00-00 00:00:00'),
(2303, 'asset_usage_request', NULL, 1, '2013-11-12 09:47:50', NULL, '0000-00-00 00:00:00'),
(2304, 'start_date_is_required', NULL, 1, '2013-11-12 09:48:21', NULL, '0000-00-00 00:00:00'),
(2305, 'search_menu', NULL, 1, '2013-11-12 11:18:39', NULL, '0000-00-00 00:00:00'),
(2306, 'welcome', NULL, 1, '2013-11-12 17:03:01', NULL, '0000-00-00 00:00:00'),
(2307, 'upload_image', NULL, 1, '2013-11-12 17:03:17', NULL, '0000-00-00 00:00:00'),
(2308, 'edit_profile', NULL, 1, '2013-11-12 17:03:34', NULL, '0000-00-00 00:00:00'),
(2309, 'first_reminder', NULL, 1, '2013-11-13 15:51:51', NULL, '0000-00-00 00:00:00'),
(2310, 'second_reminder', NULL, 1, '2013-11-13 15:52:07', NULL, '0000-00-00 00:00:00'),
(2311, 'third_reminder', NULL, 1, '2013-11-13 15:52:27', NULL, '0000-00-00 00:00:00'),
(2312, 'moved', NULL, 1, '2013-11-14 10:31:16', 1, '2013-11-14 10:45:27'),
(2313, 'deleted', NULL, 1, '2013-11-14 10:45:37', NULL, '0000-00-00 00:00:00'),
(2314, 'broadcast', NULL, 1, '2013-11-14 11:25:34', NULL, '0000-00-00 00:00:00'),
(2315, 'input_folder_name', NULL, 1, '2013-11-14 11:33:24', NULL, '0000-00-00 00:00:00'),
(2316, 'backlisted_user', NULL, 1, '2013-11-14 11:33:51', NULL, '0000-00-00 00:00:00'),
(2317, 'messages', NULL, 1, '2013-11-14 11:38:03', NULL, '0000-00-00 00:00:00'),
(2318, 'input_user_name', NULL, 1, '2013-11-14 11:38:36', NULL, '0000-00-00 00:00:00'),
(2319, 'other_disability', NULL, 1, '2013-11-19 16:19:35', NULL, '0000-00-00 00:00:00'),
(2320, 'medical_check_status', NULL, 1, '2013-11-19 16:20:05', 1, '2013-11-19 16:20:50'),
(2321, 'medical_check_reason', NULL, 1, '2013-11-19 16:20:35', NULL, '0000-00-00 00:00:00'),
(2322, 'main_identity', NULL, 1, '2013-11-20 10:39:06', NULL, '0000-00-00 00:00:00'),
(2323, 'employment_type', NULL, 1, '2013-11-20 13:50:56', NULL, '0000-00-00 00:00:00'),
(2324, 'work_hour_type', NULL, 1, '2013-11-20 13:51:16', NULL, '0000-00-00 00:00:00'),
(2325, 'pension_age', NULL, 1, '2013-11-20 13:51:48', NULL, '0000-00-00 00:00:00'),
(2326, 'strength_advantages', NULL, 1, '2013-11-20 13:52:09', NULL, '0000-00-00 00:00:00'),
(2327, 'weakness_disadvantages', NULL, 1, '2013-11-20 13:52:32', NULL, '0000-00-00 00:00:00'),
(2328, 'activities_during_break_times', NULL, 1, '2013-11-20 13:54:00', NULL, '0000-00-00 00:00:00'),
(2329, 'periodically_salary_raise', NULL, 1, '2013-11-20 15:54:13', NULL, '0000-00-00 00:00:00'),
(2330, 'enter_comment_here', NULL, 1, '2013-11-21 10:39:01', NULL, '0000-00-00 00:00:00'),
(2331, 'feedback', NULL, 1, '2013-11-21 12:34:46', NULL, '0000-00-00 00:00:00'),
(2332, 'msg_add_feedback_success', NULL, 1, '2013-11-21 12:37:00', 1, '2013-11-21 12:38:19'),
(2333, 'family_name', NULL, 1, '2013-11-26 09:10:10', NULL, '0000-00-00 00:00:00'),
(2334, 'ess', NULL, 1, '2013-11-26 10:25:12', NULL, '0000-00-00 00:00:00'),
(2335, 'posted_by', NULL, 1, '2013-11-27 13:51:33', NULL, '0000-00-00 00:00:00'),
(2336, 'upcoming_event', NULL, 1, '2013-12-04 09:41:38', 1, '2013-12-11 14:12:17'),
(2337, 'view_full_data', NULL, 1, '2013-12-04 09:45:50', NULL, '0000-00-00 00:00:00'),
(2338, 'view_status', NULL, 1, '2013-12-04 09:47:51', NULL, '0000-00-00 00:00:00'),
(2339, 'is_sticky', NULL, 1, '2013-12-04 09:48:08', NULL, '0000-00-00 00:00:00'),
(2340, 'bbm', NULL, 1, '2013-12-04 09:48:44', NULL, '0000-00-00 00:00:00'),
(2341, 'facebook', NULL, 1, '2013-12-04 09:48:56', NULL, '0000-00-00 00:00:00'),
(2342, 'twitter', NULL, 1, '2013-12-04 09:49:11', NULL, '0000-00-00 00:00:00'),
(2343, 'tumblr', NULL, 1, '2013-12-04 09:49:22', NULL, '0000-00-00 00:00:00'),
(2344, 'linkedin', NULL, 1, '2013-12-04 09:49:39', NULL, '0000-00-00 00:00:00'),
(2345, 'ym', NULL, 1, '2013-12-04 09:49:54', NULL, '0000-00-00 00:00:00'),
(2346, 'youtube', NULL, 1, '2013-12-04 09:50:07', NULL, '0000-00-00 00:00:00'),
(2347, 'flickr', NULL, 1, '2013-12-04 09:50:22', NULL, '0000-00-00 00:00:00'),
(2348, 'googleplus', NULL, 1, '2013-12-04 09:50:36', NULL, '0000-00-00 00:00:00'),
(2349, 'instagram', NULL, 1, '2013-12-04 09:50:49', NULL, '0000-00-00 00:00:00'),
(2350, 'slug', NULL, 1, '2013-12-04 09:53:40', NULL, '0000-00-00 00:00:00'),
(2351, 'private', NULL, 1, '2013-12-04 09:54:15', NULL, '0000-00-00 00:00:00'),
(2352, 'news_category', NULL, 1, '2013-12-04 09:55:58', NULL, '0000-00-00 00:00:00'),
(2353, 'one_of_name_is_empty', NULL, 1, '2013-12-04 09:57:10', NULL, '0000-00-00 00:00:00'),
(2354, 'one_of_info_is_empty', NULL, 1, '2013-12-04 09:57:48', NULL, '0000-00-00 00:00:00'),
(2355, 'thumb_caption', NULL, 1, '2013-12-04 09:58:26', 1, '2013-12-04 09:59:10'),
(2356, 'snippet', NULL, 1, '2013-12-04 09:58:43', NULL, '0000-00-00 00:00:00'),
(2357, 'thumb', NULL, 1, '2013-12-04 09:59:00', NULL, '0000-00-00 00:00:00'),
(2358, 'external_link', NULL, 1, '2013-12-04 09:59:33', NULL, '0000-00-00 00:00:00'),
(2359, 'one_of_title_is_empty', NULL, 1, '2013-12-04 10:00:09', NULL, '0000-00-00 00:00:00'),
(2360, 'one_of_content_is_empty', NULL, 1, '2013-12-04 10:00:28', NULL, '0000-00-00 00:00:00'),
(2361, 'one_of_snippet_is_empty', NULL, 1, '2013-12-04 10:00:47', NULL, '0000-00-00 00:00:00'),
(2362, 'event_category', NULL, 1, '2013-12-04 10:01:31', 1, '2013-12-11 14:12:03'),
(2363, 'contact_person', NULL, 1, '2013-12-04 10:02:26', NULL, '0000-00-00 00:00:00'),
(2364, 'contact_phone', NULL, 1, '2013-12-04 10:02:50', NULL, '0000-00-00 00:00:00'),
(2365, 'contact_email', NULL, 1, '2013-12-04 10:03:05', NULL, '0000-00-00 00:00:00'),
(2366, 'contact_website', NULL, 1, '2013-12-04 10:03:17', NULL, '0000-00-00 00:00:00'),
(2367, 'policy_category', NULL, 1, '2013-12-04 10:04:00', NULL, '0000-00-00 00:00:00'),
(2368, 'is_downloadable', NULL, 1, '2013-12-04 10:04:49', NULL, '0000-00-00 00:00:00'),
(2369, 'response', NULL, 1, '2013-12-04 10:06:00', NULL, '0000-00-00 00:00:00'),
(2370, 'vote', NULL, 1, '2013-12-04 10:06:13', NULL, '0000-00-00 00:00:00'),
(2371, 'flag_as_inappropriate', NULL, 1, '2013-12-04 10:07:12', NULL, '0000-00-00 00:00:00'),
(2372, 'replied', NULL, 1, '2013-12-04 10:07:43', NULL, '0000-00-00 00:00:00'),
(2373, 'enter_response_here', NULL, 1, '2013-12-04 10:08:33', NULL, '0000-00-00 00:00:00'),
(2374, 'thumb_status', NULL, 1, '2013-12-04 10:09:15', NULL, '0000-00-00 00:00:00'),
(2375, 'from_gallery', NULL, 1, '2013-12-04 10:10:33', NULL, '0000-00-00 00:00:00'),
(2376, 'from_thumbnail', NULL, 1, '2013-12-04 10:10:54', NULL, '0000-00-00 00:00:00'),
(2377, 'album', NULL, 1, '2013-12-04 10:11:15', NULL, '0000-00-00 00:00:00'),
(2378, 'images', NULL, 1, '2013-12-04 10:12:18', NULL, '0000-00-00 00:00:00'),
(2379, 'url', NULL, 1, '2013-12-04 10:40:52', NULL, '0000-00-00 00:00:00'),
(2380, 'links', NULL, 1, '2013-12-06 08:50:20', 1, '2013-12-11 11:11:42'),
(2381, 'contact_us', NULL, 1, '2013-12-06 10:31:36', NULL, '0000-00-00 00:00:00'),
(2382, 'view_full_calendar', NULL, 1, '2013-12-10 08:40:05', NULL, '0000-00-00 00:00:00'),
(2383, 'manpower', NULL, 1, '2013-12-10 13:08:49', NULL, '0000-00-00 00:00:00'),
(2384, 'file_size', NULL, 1, '2013-12-10 14:12:00', NULL, '0000-00-00 00:00:00'),
(2385, 'policy', NULL, 1, '2013-12-10 14:12:29', NULL, '0000-00-00 00:00:00'),
(2386, 'copyright', NULL, 1, '2013-12-10 14:43:00', NULL, '0000-00-00 00:00:00'),
(2387, 'frequently_asked_question', NULL, 1, '2013-12-10 14:44:06', NULL, '0000-00-00 00:00:00'),
(2388, 'privacy_policy', NULL, 1, '2013-12-10 14:44:39', NULL, '0000-00-00 00:00:00'),
(2389, 'terms_and_conditions', NULL, 1, '2013-12-10 14:44:59', NULL, '0000-00-00 00:00:00'),
(2390, 'changelog', NULL, 1, '2013-12-10 14:45:18', NULL, '0000-00-00 00:00:00'),
(2391, 'give_us_feedback', NULL, 1, '2013-12-10 14:45:45', NULL, '0000-00-00 00:00:00'),
(2392, 'support', NULL, 1, '2013-12-10 14:47:07', NULL, '0000-00-00 00:00:00'),
(2393, 'update_photo_profile', NULL, 1, '2013-12-10 15:17:01', NULL, '0000-00-00 00:00:00'),
(2394, 'complete_your_profile', NULL, 1, '2013-12-10 15:17:52', NULL, '0000-00-00 00:00:00'),
(2395, 'personal_history', NULL, 1, '2013-12-10 15:18:13', NULL, '0000-00-00 00:00:00'),
(2396, 'medical_information', NULL, 1, '2013-12-10 15:18:33', NULL, '0000-00-00 00:00:00'),
(2397, 'news', NULL, 1, '2013-12-10 20:48:20', NULL, '0000-00-00 00:00:00'),
(2398, 'policy_and_regulation', NULL, 1, '2013-12-10 20:51:19', NULL, '0000-00-00 00:00:00'),
(2399, 'picture_gallery', NULL, 1, '2013-12-10 20:58:51', NULL, '0000-00-00 00:00:00'),
(2400, 'multimedia_gallery', NULL, 1, '2013-12-10 21:05:16', NULL, '0000-00-00 00:00:00'),
(2401, 'banners', NULL, 1, '2013-12-11 11:15:07', NULL, '0000-00-00 00:00:00'),
(2402, 'events', NULL, 1, '2013-12-11 14:11:51', NULL, '0000-00-00 00:00:00'),
(2403, 'venue', NULL, 1, '2013-12-11 14:12:35', NULL, '0000-00-00 00:00:00'),
(2404, 'delegate_fee', NULL, 1, '2013-12-11 14:12:52', NULL, '0000-00-00 00:00:00'),
(2405, 'email_address', NULL, 1, '2013-12-11 14:13:08', NULL, '0000-00-00 00:00:00'),
(2406, 'websites', NULL, 1, '2013-12-11 14:13:26', NULL, '0000-00-00 00:00:00'),
(2407, 'event_detail', NULL, 1, '2013-12-11 14:13:45', NULL, '0000-00-00 00:00:00'),
(2408, 'faq', NULL, 1, '2013-12-12 11:10:05', NULL, '0000-00-00 00:00:00'),
(2409, 'enlarge_map', NULL, 1, '2013-12-12 11:16:02', NULL, '0000-00-00 00:00:00'),
(2410, 'chat_room', NULL, 1, '2013-12-13 16:02:03', NULL, '0000-00-00 00:00:00'),
(2411, 'detail_account', NULL, 1, '2013-12-16 08:42:17', NULL, '0000-00-00 00:00:00'),
(2412, 'company_profile', NULL, 1, '2013-12-17 11:00:51', NULL, '0000-00-00 00:00:00'),
(2413, 'cmsprivacy', NULL, 1, '2013-12-17 11:04:31', NULL, '0000-00-00 00:00:00'),
(2414, 'cmsterm', NULL, 1, '2013-12-17 11:04:57', NULL, '0000-00-00 00:00:00'),
(2415, 'event', NULL, 1, '2013-12-17 11:10:46', NULL, '0000-00-00 00:00:00'),
(2416, 'announcement', NULL, 1, '2013-12-17 11:12:08', NULL, '0000-00-00 00:00:00'),
(2417, 'question', NULL, 1, '2013-12-17 11:12:37', NULL, '0000-00-00 00:00:00'),
(2418, 'answer', NULL, 1, '2013-12-17 11:12:55', NULL, '0000-00-00 00:00:00'),
(2419, 'cmsfaq', NULL, 1, '2013-12-17 11:13:45', NULL, '0000-00-00 00:00:00');
INSERT INTO `gtfw_key` (`key_id`, `key_code`, `key_desc`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`) VALUES
(2420, 'cmslink', NULL, 1, '2013-12-17 11:14:08', NULL, '0000-00-00 00:00:00'),
(2421, 'profile_art', NULL, 1, '2013-12-17 11:16:12', NULL, '0000-00-00 00:00:00'),
(2422, 'gallery', NULL, 1, '2013-12-17 11:17:44', NULL, '0000-00-00 00:00:00'),
(2423, 'multimedia_album', NULL, 1, '2013-12-17 11:18:33', NULL, '0000-00-00 00:00:00'),
(2424, 'multimedia', NULL, 1, '2013-12-17 11:19:01', NULL, '0000-00-00 00:00:00'),
(2425, 'multimedia_type', NULL, 1, '2013-12-17 11:19:24', NULL, '0000-00-00 00:00:00'),
(2426, 'video_code', NULL, 1, '2013-12-17 11:19:53', NULL, '0000-00-00 00:00:00'),
(2427, 'banner', NULL, 1, '2013-12-17 11:20:17', NULL, '0000-00-00 00:00:00'),
(2428, 'splash', NULL, 1, '2013-12-17 11:21:14', NULL, '0000-00-00 00:00:00'),
(2429, 'slide_show', NULL, 1, '2013-12-17 11:22:13', NULL, '0000-00-00 00:00:00'),
(2430, 'relatedto', NULL, 1, '2013-12-17 11:24:30', NULL, '0000-00-00 00:00:00'),
(2431, 'post', NULL, 1, '2013-12-17 11:24:44', NULL, '0000-00-00 00:00:00'),
(2432, 'weakness_disadventages', NULL, 1, '2013-12-17 14:47:25', NULL, '0000-00-00 00:00:00'),
(2433, 'view_poll', NULL, 1, '2013-12-23 09:53:49', NULL, '0000-00-00 00:00:00'),
(2434, 'poll', NULL, 1, '2013-12-23 09:54:29', NULL, '0000-00-00 00:00:00'),
(2435, 'preferences', NULL, 1, '2013-12-30 08:14:18', NULL, '0000-00-00 00:00:00'),
(2436, 'view_result', NULL, 1, '2013-12-30 09:16:11', NULL, '0000-00-00 00:00:00'),
(2437, 'polling_info', NULL, 1, '2013-12-30 09:19:06', NULL, '0000-00-00 00:00:00'),
(2438, 'submit_poll', NULL, 1, '2013-12-30 09:20:35', 1, '2013-12-30 14:16:06'),
(2439, 'polling', NULL, 1, '2013-12-30 14:56:12', NULL, '0000-00-00 00:00:00'),
(2440, 'import', NULL, 1, '2014-02-04 08:54:06', NULL, '0000-00-00 00:00:00');
-- --------------------------------------------------------
--
-- Table structure for table `gtfw_key_text`
--
CREATE TABLE `gtfw_key_text` (
`key_text_key_id` bigint(20) NOT NULL COMMENT 'refer to gtfw_key.key_id',
`key_text_lang_code` varchar(5) NOT NULL COMMENT 'refer to gtfw_lang.lang_code',
`key_text_key_text` text DEFAULT NULL,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '0000-00-00 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `gtfw_key_text`
--
INSERT INTO `gtfw_key_text` (`key_text_key_id`, `key_text_lang_code`, `key_text_key_text`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`) VALUES
(1, 'en', 'Login Admin Area', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(1, 'id', 'Masuk Halaman Administrasi', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(2, 'en', 'Hello', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(2, 'id', 'Halo', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(3, 'en', 'Username', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(3, 'id', 'Nama Pengguna', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(4, 'en', 'Password', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(4, 'id', 'Kata Sandi', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(5, 'en', 'Login', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(5, 'id', 'Masuk', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(6, 'en', 'Logout', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(6, 'id', 'Keluar', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(7, 'en', 'Keyword', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(7, 'id', 'Kata Kunci', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(8, 'en', 'Searching', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(8, 'id', 'Pencarian', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(9, 'en', 'Code', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(9, 'id', 'Kode', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(10, 'en', 'Enter Keyword', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(10, 'id', 'Masukan Kata Kunci', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(11, 'en', 'Search', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(11, 'id', 'Cari', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(12, 'en', 'Language', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(12, 'id', 'Bahasa', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(13, 'en', 'Add', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(13, 'id', 'Tambah', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(14, 'en', 'Add Data', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(14, 'id', 'Tambah Data', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(15, 'en', 'Action', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(15, 'id', 'Aksi', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(16, 'en', 'Name', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(16, 'id', 'Nama', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(17, 'en', 'Data Not Found', 9, '2012-10-03 11:23:37', NULL, '0000-00-00 00:00:00'),
(17, 'id', 'Data Tidak Ditemukan', 9, '2012-10-03 11:23:37', NULL, '0000-00-00 00:00:00'),
(18, 'en', 'Icon', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(18, 'id', 'Ikon', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(19, 'en', 'Detail', 1, '2012-08-14 13:35:31', NULL, '0000-00-00 00:00:00'),
(19, 'id', 'Detail', 1, '2012-08-14 13:35:31', NULL, '0000-00-00 00:00:00'),
(20, 'en', 'Key', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(20, 'id', 'Kunci', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(21, 'en', 'Session Expired !!', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(21, 'id', 'Session Login Anda Expired..
Silakan Login Kembali', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(22, 'en', 'Data Added Successfully', 1, '2013-07-09 10:36:40', NULL, '0000-00-00 00:00:00'),
(22, 'id', 'Penambahan Data Berhasil', 1, '2013-07-09 10:36:40', NULL, '0000-00-00 00:00:00'),
(23, 'en', 'Data Addition Failed', 1, '2013-07-09 10:36:58', NULL, '0000-00-00 00:00:00'),
(23, 'id', 'Penambahan Data Gagal', 1, '2013-07-09 10:36:58', NULL, '0000-00-00 00:00:00'),
(24, 'en', 'Data Updated Successfully', 1, '2013-05-21 13:30:54', NULL, '0000-00-00 00:00:00'),
(24, 'id', 'Pengubahan Data Berhasil', 1, '2013-05-21 13:30:54', NULL, '0000-00-00 00:00:00'),
(25, 'en', 'Data Update Failed', 1, '2013-07-09 10:39:26', NULL, '0000-00-00 00:00:00'),
(25, 'id', 'Pengubahan Data Gagal', 1, '2013-07-09 10:39:26', NULL, '0000-00-00 00:00:00'),
(26, 'en', 'of', 1, '2012-06-18 19:44:06', NULL, '0000-00-00 00:00:00'),
(26, 'id', 'dari', 1, '2012-06-18 19:44:06', NULL, '0000-00-00 00:00:00'),
(27, 'en', 'Edit', 1, '2012-11-07 13:15:27', NULL, '0000-00-00 00:00:00'),
(27, 'id', 'Edit', 1, '2012-11-07 13:15:27', NULL, '0000-00-00 00:00:00'),
(28, 'en', 'Data Deleted Successfully', 1, '2013-05-21 13:28:37', NULL, '0000-00-00 00:00:00'),
(28, 'id', 'Penghapusan Data Berhasil', 1, '2013-05-21 13:28:37', NULL, '0000-00-00 00:00:00'),
(29, 'en', 'Data Deletion Failed', 1, '2013-07-09 10:39:00', NULL, '0000-00-00 00:00:00'),
(29, 'id', 'Penghapusan Data Gagal', 1, '2013-07-09 10:39:00', NULL, '0000-00-00 00:00:00'),
(30, 'en', 'Are You Sure Want To Delete Data', 1, '2013-07-09 10:37:30', NULL, '0000-00-00 00:00:00'),
(30, 'id', 'Anda Yakin Ingin Menghapus Data', 1, '2013-07-09 10:37:30', NULL, '0000-00-00 00:00:00'),
(31, 'en', 'Delete Confirmation', 1, '2013-07-09 10:41:05', NULL, '0000-00-00 00:00:00'),
(31, 'id', 'Konfirmasi Hapus', 1, '2013-07-09 10:41:05', NULL, '0000-00-00 00:00:00'),
(32, 'en', 'Data not found', 1, '2012-06-20 23:17:11', NULL, '0000-00-00 00:00:00'),
(32, 'id', 'Data tidak ditemukan', 1, '2012-06-20 23:17:11', NULL, '0000-00-00 00:00:00'),
(33, 'en', 'Blood Type', 1, '2012-06-21 14:10:29', NULL, '0000-00-00 00:00:00'),
(33, 'id', 'Golongan Darah', 1, '2012-06-21 14:10:29', NULL, '0000-00-00 00:00:00'),
(34, 'en', 'Address Type', 1, '2012-06-21 14:15:22', NULL, '0000-00-00 00:00:00'),
(34, 'id', 'Tipe Alamat', 1, '2012-06-21 14:15:22', NULL, '0000-00-00 00:00:00'),
(35, 'en', 'Email Type', 1, '2012-06-21 14:31:41', NULL, '0000-00-00 00:00:00'),
(35, 'id', 'Tipe Email', 1, '2012-06-21 14:31:41', NULL, '0000-00-00 00:00:00'),
(36, 'en', 'Active', 1, '2012-07-05 14:10:54', NULL, '0000-00-00 00:00:00'),
(36, 'id', 'Aktif', 1, '2012-07-05 14:10:54', NULL, '0000-00-00 00:00:00'),
(37, 'en', 'Not Active', 1, '2012-06-21 14:33:54', NULL, '0000-00-00 00:00:00'),
(37, 'id', 'Tidak Aktif', 1, '2012-06-21 14:33:54', NULL, '0000-00-00 00:00:00'),
(38, 'en', 'Description', 1, '2013-05-02 15:56:17', NULL, '0000-00-00 00:00:00'),
(38, 'id', 'Keterangan', 1, '2013-05-02 15:56:17', NULL, '0000-00-00 00:00:00'),
(39, 'en', 'Last Modified', 1, '2012-06-21 14:39:40', NULL, '0000-00-00 00:00:00'),
(39, 'id', 'Update Terakhir', 1, '2012-06-21 14:39:40', NULL, '0000-00-00 00:00:00'),
(40, 'en', 'Category', 1, '2012-06-21 14:41:12', NULL, '0000-00-00 00:00:00'),
(40, 'id', 'Kategori', 1, '2012-06-21 14:41:12', NULL, '0000-00-00 00:00:00'),
(41, 'en', 'Status', 1, '2012-06-21 14:42:25', NULL, '0000-00-00 00:00:00'),
(41, 'id', 'Status', 1, '2012-06-21 14:42:25', NULL, '0000-00-00 00:00:00'),
(42, 'en', 'Submitted', 1, '2012-09-28 15:04:02', NULL, '0000-00-00 00:00:00'),
(42, 'id', 'Awal Input', 1, '2012-09-28 15:04:02', NULL, '0000-00-00 00:00:00'),
(43, 'en', 'Modified', 1, '2012-06-21 14:47:39', NULL, '0000-00-00 00:00:00'),
(43, 'id', 'Ubah', 1, '2012-06-21 14:47:39', NULL, '0000-00-00 00:00:00'),
(44, 'en', 'Last Option', 1, '2012-06-21 14:52:15', NULL, '0000-00-00 00:00:00'),
(44, 'id', 'Pilihan Terakhir', 1, '2012-06-21 14:52:15', NULL, '0000-00-00 00:00:00'),
(45, 'en', 'Business Sector', 1, '2012-06-21 15:42:18', NULL, '0000-00-00 00:00:00'),
(45, 'id', 'Sektor Usaha', 1, '2012-06-21 15:42:18', NULL, '0000-00-00 00:00:00'),
(46, 'en', 'Driving License Type', 1, '2012-06-21 16:19:45', NULL, '0000-00-00 00:00:00'),
(46, 'id', 'Jenis SIM', 1, '2012-06-21 16:19:45', NULL, '0000-00-00 00:00:00'),
(47, 'en', 'Funds', 1, '2012-09-28 18:14:38', NULL, '0000-00-00 00:00:00'),
(47, 'id', 'Sumber Dana', 1, '2012-09-28 18:14:38', NULL, '0000-00-00 00:00:00'),
(48, 'en', 'Hotel Type', 1, '2012-06-22 08:02:55', NULL, '0000-00-00 00:00:00'),
(48, 'id', 'Jenis Hotel', 1, '2012-06-22 08:02:55', NULL, '0000-00-00 00:00:00'),
(49, 'en', 'Identity Type', 1, '2012-06-22 08:22:34', NULL, '0000-00-00 00:00:00'),
(49, 'id', 'Jenis Identitas', 1, '2012-06-22 08:22:34', NULL, '0000-00-00 00:00:00'),
(50, 'en', 'Other Identity Type', 1, '2012-06-22 08:59:46', NULL, '0000-00-00 00:00:00'),
(50, 'id', 'Jenis Identitas Lain', 1, '2012-06-22 08:59:46', NULL, '0000-00-00 00:00:00'),
(51, 'en', 'Bank Type', 1, '2012-06-22 09:46:09', NULL, '0000-00-00 00:00:00'),
(51, 'id', 'Jenis Bank', 1, '2012-06-22 09:46:09', NULL, '0000-00-00 00:00:00'),
(52, 'en', 'Phone', 1, '2012-06-22 10:04:32', NULL, '0000-00-00 00:00:00'),
(52, 'id', 'Telepon', 1, '2012-06-22 10:04:32', NULL, '0000-00-00 00:00:00'),
(53, 'en', 'Address', 1, '2012-06-22 10:05:38', NULL, '0000-00-00 00:00:00'),
(53, 'id', 'Alamat', 1, '2012-06-22 10:05:38', NULL, '0000-00-00 00:00:00'),
(54, 'en', 'Faximile', 1, '2012-06-22 10:06:57', NULL, '0000-00-00 00:00:00'),
(54, 'id', 'Faksimili', 1, '2012-06-22 10:06:57', NULL, '0000-00-00 00:00:00'),
(55, 'en', 'Country', 1, '2012-06-22 11:20:05', NULL, '0000-00-00 00:00:00'),
(55, 'id', 'Negara', 1, '2012-06-22 11:20:05', NULL, '0000-00-00 00:00:00'),
(56, 'en', 'Capital', 1, '2012-06-22 11:21:04', NULL, '0000-00-00 00:00:00'),
(56, 'id', 'Modal', 1, '2012-06-22 11:21:04', NULL, '0000-00-00 00:00:00'),
(57, 'en', 'Region', 8, '2012-11-07 14:02:05', NULL, '0000-00-00 00:00:00'),
(57, 'id', 'Region', 8, '2012-11-07 14:02:05', NULL, '0000-00-00 00:00:00'),
(58, 'en', 'Nationality (Singular)', 1, '2012-11-07 12:08:27', NULL, '0000-00-00 00:00:00'),
(58, 'id', 'Kewarganegaraan (Tunggal)', 1, '2012-11-07 12:08:27', NULL, '0000-00-00 00:00:00'),
(59, 'en', 'Nationality (Plural)', 1, '2012-11-07 12:08:10', NULL, '0000-00-00 00:00:00'),
(59, 'id', 'Kewarganegaraan (Jamak)', 1, '2012-11-07 12:08:10', NULL, '0000-00-00 00:00:00'),
(60, 'en', 'Currency', 1, '2012-06-22 11:23:29', NULL, '0000-00-00 00:00:00'),
(60, 'id', 'Mata Uang', 1, '2012-06-22 11:23:29', NULL, '0000-00-00 00:00:00'),
(61, 'en', 'Currency Code', 1, '2012-06-22 11:23:57', NULL, '0000-00-00 00:00:00'),
(61, 'id', 'Kode Mata Uang', 1, '2012-06-22 11:23:57', NULL, '0000-00-00 00:00:00'),
(62, 'en', 'State', 1, '2012-06-22 13:42:27', NULL, '0000-00-00 00:00:00'),
(62, 'id', 'Propinsi/Negara Bagian', 1, '2012-06-22 13:42:27', NULL, '0000-00-00 00:00:00'),
(63, 'en', 'Bank', 1, '2012-06-23 08:08:23', NULL, '0000-00-00 00:00:00'),
(63, 'id', 'Bank', 1, '2012-06-23 08:08:23', NULL, '0000-00-00 00:00:00'),
(64, 'en', 'Company', 1, '2012-06-23 08:11:56', NULL, '0000-00-00 00:00:00'),
(64, 'id', 'Perusahaan', 1, '2012-06-23 08:11:56', NULL, '0000-00-00 00:00:00'),
(65, 'en', 'City', 8, '2012-11-07 15:31:11', NULL, '0000-00-00 00:00:00'),
(65, 'id', 'Kota/Kabupaten', 8, '2012-11-07 15:31:11', NULL, '0000-00-00 00:00:00'),
(66, 'en', 'Latitude', 1, '2012-06-23 08:20:32', NULL, '0000-00-00 00:00:00'),
(66, 'id', 'Lintang', 1, '2012-06-23 08:20:32', NULL, '0000-00-00 00:00:00'),
(67, 'en', 'Longitude', 1, '2012-06-23 08:21:01', NULL, '0000-00-00 00:00:00'),
(67, 'id', 'Garis Bujur', 1, '2012-06-23 08:21:01', NULL, '0000-00-00 00:00:00'),
(68, 'en', 'Timezone', 1, '2012-06-23 08:22:22', NULL, '0000-00-00 00:00:00'),
(68, 'id', 'Zona Waktu', 1, '2012-06-23 08:22:22', NULL, '0000-00-00 00:00:00'),
(69, 'en', 'Sub District', 1, '2012-06-23 08:31:29', NULL, '0000-00-00 00:00:00'),
(69, 'id', 'Kecamatan', 1, '2012-06-23 08:31:29', NULL, '0000-00-00 00:00:00'),
(70, 'en', 'Instant Messaging Type', 1, '2012-06-23 08:42:27', NULL, '0000-00-00 00:00:00'),
(70, 'id', 'Jenis Instant Messaging', 1, '2012-06-23 08:42:27', NULL, '0000-00-00 00:00:00'),
(71, 'en', 'Icon Path', 1, '2012-06-23 08:43:38', NULL, '0000-00-00 00:00:00'),
(71, 'id', 'Path Ikon', 1, '2012-06-23 08:43:38', NULL, '0000-00-00 00:00:00'),
(72, 'en', 'Icon Type', 1, '2012-06-23 08:43:55', NULL, '0000-00-00 00:00:00'),
(72, 'id', 'Jenis Ikon', 1, '2012-06-23 08:43:55', NULL, '0000-00-00 00:00:00'),
(73, 'en', 'Icon Size', 1, '2012-06-23 08:44:15', NULL, '0000-00-00 00:00:00'),
(73, 'id', 'Ukuran Ikon', 1, '2012-06-23 08:44:15', NULL, '0000-00-00 00:00:00'),
(74, 'en', 'Parent', 1, '2012-06-23 09:24:04', NULL, '0000-00-00 00:00:00'),
(74, 'id', 'Induk', 1, '2012-06-23 09:24:04', NULL, '0000-00-00 00:00:00'),
(75, 'en', 'KBLI', 1, '2012-06-23 09:31:52', NULL, '0000-00-00 00:00:00'),
(75, 'id', 'KBLI', 1, '2012-06-23 09:31:52', NULL, '0000-00-00 00:00:00'),
(77, 'en', 'Marital Code', 1, '2012-06-23 10:44:13', NULL, '0000-00-00 00:00:00'),
(77, 'id', 'Kode Nikah', 1, '2012-06-23 10:44:13', NULL, '0000-00-00 00:00:00'),
(78, 'en', 'Ownership', 1, '2012-06-23 12:40:08', NULL, '0000-00-00 00:00:00'),
(78, 'id', 'Kepemilikan', 1, '2012-06-23 12:40:08', NULL, '0000-00-00 00:00:00'),
(79, 'en', 'Phone Type', 1, '2012-06-23 12:59:57', NULL, '0000-00-00 00:00:00'),
(79, 'id', 'Jenis Komunikasi', 1, '2012-06-23 12:59:57', NULL, '0000-00-00 00:00:00'),
(80, 'en', 'Photo Type', 1, '2012-06-23 13:16:11', NULL, '0000-00-00 00:00:00'),
(80, 'id', 'Jenis Foto', 1, '2012-06-23 13:16:11', NULL, '0000-00-00 00:00:00'),
(81, 'en', 'Religion', 1, '2012-06-23 13:26:25', NULL, '0000-00-00 00:00:00'),
(81, 'id', 'Agama', 1, '2012-06-23 13:26:25', NULL, '0000-00-00 00:00:00'),
(82, 'en', 'Unit', 1, '2012-10-11 14:25:38', NULL, '0000-00-00 00:00:00'),
(82, 'id', 'Unit', 1, '2012-10-11 14:25:39', NULL, '0000-00-00 00:00:00'),
(83, 'en', 'Units', 1, '2012-06-23 13:33:51', NULL, '0000-00-00 00:00:00'),
(83, 'id', 'Satuan', 1, '2012-06-23 13:33:51', NULL, '0000-00-00 00:00:00'),
(84, 'en', 'Salutation', 1, '2012-06-23 18:36:26', NULL, '0000-00-00 00:00:00'),
(84, 'id', 'Sapaan', 1, '2012-06-23 18:36:26', NULL, '0000-00-00 00:00:00'),
(85, 'en', 'Social Media Account', 1, '2012-09-28 15:27:58', NULL, '0000-00-00 00:00:00'),
(85, 'id', 'Akun Jejaring Sosial', 1, '2012-09-28 15:27:58', NULL, '0000-00-00 00:00:00'),
(86, 'en', 'Area', 1, '2012-08-15 13:37:15', NULL, '0000-00-00 00:00:00'),
(86, 'id', 'Area/Wilayah', 1, '2012-08-15 13:37:15', NULL, '0000-00-00 00:00:00'),
(87, 'en', 'Code/Name/Barcode', 1, '2012-06-25 10:49:33', NULL, '0000-00-00 00:00:00'),
(87, 'id', 'Kode/Nama/Barcode', 1, '2012-06-25 10:49:33', NULL, '0000-00-00 00:00:00'),
(88, 'en', 'Transportation Type', 1, '2012-06-25 11:43:52', NULL, '0000-00-00 00:00:00'),
(88, 'id', 'Jenis Transportasi', 1, '2012-06-25 11:43:52', NULL, '0000-00-00 00:00:00'),
(89, 'en', 'External Code', 1, '2012-09-25 14:04:49', NULL, '0000-00-00 00:00:00'),
(89, 'id', 'Kode Pemesanan Ke Supplier', 1, '2012-09-25 14:04:49', NULL, '0000-00-00 00:00:00'),
(90, 'en', 'Formal Education Type', 1, '2012-06-25 14:11:22', NULL, '0000-00-00 00:00:00'),
(90, 'id', 'Jenis Pendidikan Formal', 1, '2012-06-25 14:11:22', NULL, '0000-00-00 00:00:00'),
(91, 'en', 'Is Grade', 1, '2013-04-24 22:15:20', NULL, '0000-00-00 00:00:00'),
(91, 'id', 'Status Bertingkat / Berjenjang', 1, '2013-04-24 22:15:20', NULL, '0000-00-00 00:00:00'),
(92, 'en', 'Order', 1, '2012-06-25 14:12:05', NULL, '0000-00-00 00:00:00'),
(92, 'id', 'Urutan', 1, '2012-06-25 14:12:05', NULL, '0000-00-00 00:00:00'),
(93, 'en', 'External Name', 1, '2012-09-25 14:05:14', NULL, '0000-00-00 00:00:00'),
(93, 'id', 'Nama Pemesanan Ke Supplier', 1, '2012-09-25 14:05:14', NULL, '0000-00-00 00:00:00'),
(94, 'en', 'Function', 1, '2012-06-25 14:15:48', NULL, '0000-00-00 00:00:00'),
(94, 'id', 'Fungsi', 1, '2012-06-25 14:15:48', NULL, '0000-00-00 00:00:00'),
(95, 'en', 'Formal Education Level', 1, '2012-06-25 14:37:45', NULL, '0000-00-00 00:00:00'),
(95, 'id', 'Tingkat Pendidikan Formal', 1, '2012-06-25 14:37:45', NULL, '0000-00-00 00:00:00'),
(96, 'en', 'Formal Education Grade', 1, '2012-06-25 15:22:49', NULL, '0000-00-00 00:00:00'),
(96, 'id', 'Jenjang Pendidikan Formal', 1, '2012-06-25 15:22:50', NULL, '0000-00-00 00:00:00'),
(97, 'en', 'Informal Education Type', 1, '2012-06-25 16:05:08', NULL, '0000-00-00 00:00:00'),
(97, 'id', 'Jenis Pendidikan Informal', 1, '2012-06-25 16:05:08', NULL, '0000-00-00 00:00:00'),
(98, 'en', 'Minimal Order TO Supplier', 1, '2012-09-21 08:16:18', NULL, '0000-00-00 00:00:00'),
(98, 'id', 'Minimal Pemesanan Ke Supplier', 1, '2012-09-21 08:16:18', NULL, '0000-00-00 00:00:00'),
(99, 'en', 'Minimum Stock', 1, '2013-06-12 10:58:28', NULL, '0000-00-00 00:00:00'),
(99, 'id', 'Stok Minimum', 1, '2013-06-12 10:58:28', NULL, '0000-00-00 00:00:00'),
(100, 'en', 'Over Stock', 1, '2012-06-25 16:37:00', NULL, '0000-00-00 00:00:00'),
(100, 'id', 'Batas Maksimal Stok', 1, '2012-06-25 16:37:00', NULL, '0000-00-00 00:00:00'),
(101, 'en', 'Sell Margin', 1, '2012-06-25 16:38:48', NULL, '0000-00-00 00:00:00'),
(101, 'id', 'Keuntungan Jual', 1, '2012-06-25 16:38:48', NULL, '0000-00-00 00:00:00'),
(102, 'en', 'Taxable Goods', 1, '2012-09-21 08:19:51', NULL, '0000-00-00 00:00:00'),
(102, 'id', 'Barang Kena Pajak', 1, '2012-09-21 08:19:51', NULL, '0000-00-00 00:00:00'),
(103, 'en', 'Goods Can Be Discounted', 1, '2012-09-21 08:31:47', NULL, '0000-00-00 00:00:00'),
(103, 'id', 'Barang Bisa Didiskon', 1, '2012-09-21 08:31:47', NULL, '0000-00-00 00:00:00'),
(104, 'en', 'Warehouse Units', 1, '2012-06-25 16:41:29', NULL, '0000-00-00 00:00:00'),
(104, 'id', 'Satuan Gudang', 1, '2012-06-25 16:41:29', NULL, '0000-00-00 00:00:00'),
(105, 'en', 'Supplier Unit', 1, '2012-09-25 14:20:00', NULL, '0000-00-00 00:00:00'),
(105, 'id', 'Satuan Pembelian Ke Supplier', 1, '2012-09-25 14:20:00', NULL, '0000-00-00 00:00:00'),
(106, 'en', 'Conversion', 1, '2012-06-25 16:42:46', NULL, '0000-00-00 00:00:00'),
(106, 'id', 'Konversi', 1, '2012-06-25 16:42:46', NULL, '0000-00-00 00:00:00'),
(107, 'en', 'Brand', 1, '2012-06-25 16:44:35', NULL, '0000-00-00 00:00:00'),
(107, 'id', 'Merk', 1, '2012-06-25 16:44:35', NULL, '0000-00-00 00:00:00'),
(108, 'en', 'Size', 1, '2012-06-25 16:45:01', NULL, '0000-00-00 00:00:00'),
(108, 'id', 'Ukuran', 1, '2012-06-25 16:45:01', NULL, '0000-00-00 00:00:00'),
(110, 'en', 'Colour', 1, '2012-06-25 16:45:17', NULL, '0000-00-00 00:00:00'),
(110, 'id', 'Warna', 1, '2012-06-25 16:45:17', NULL, '0000-00-00 00:00:00'),
(111, 'en', 'Dosage Form', 1, '2012-06-25 16:46:33', NULL, '0000-00-00 00:00:00'),
(111, 'id', 'Jenis Sediaan', 1, '2012-06-25 16:46:33', NULL, '0000-00-00 00:00:00'),
(112, 'en', 'Default Price', 1, '2012-06-25 16:47:21', NULL, '0000-00-00 00:00:00'),
(112, 'id', 'Harga Default', 1, '2012-06-25 16:47:21', NULL, '0000-00-00 00:00:00'),
(113, 'en', 'Vendor', 1, '2012-06-26 08:18:52', NULL, '0000-00-00 00:00:00'),
(113, 'id', 'Vendor', 1, '2012-06-26 08:18:52', NULL, '0000-00-00 00:00:00'),
(114, 'en', 'Sell Price', 1, '2012-06-26 08:22:27', NULL, '0000-00-00 00:00:00'),
(114, 'id', 'Harga Jual', 1, '2012-06-26 08:22:27', NULL, '0000-00-00 00:00:00'),
(115, 'en', 'Internal Price', 1, '2012-06-26 08:23:44', NULL, '0000-00-00 00:00:00'),
(115, 'id', 'Harga Internal', 1, '2012-06-26 08:23:44', NULL, '0000-00-00 00:00:00'),
(116, 'en', 'Warehouse Price', 1, '2012-06-26 08:24:22', NULL, '0000-00-00 00:00:00'),
(116, 'id', 'Harga Gudang', 1, '2012-06-26 08:24:22', NULL, '0000-00-00 00:00:00'),
(118, 'en', 'Packet Type', 1, '2012-06-26 08:25:40', NULL, '0000-00-00 00:00:00'),
(118, 'id', 'Tipe Paket', 1, '2012-06-26 08:25:40', NULL, '0000-00-00 00:00:00'),
(119, 'en', 'Yes', 1, '2012-06-26 08:26:32', NULL, '0000-00-00 00:00:00'),
(119, 'id', 'Ya', 1, '2012-06-26 08:26:32', NULL, '0000-00-00 00:00:00'),
(120, 'en', 'No', 1, '2012-06-26 08:26:43', NULL, '0000-00-00 00:00:00'),
(120, 'id', 'Tidak', 1, '2012-06-26 08:26:43', NULL, '0000-00-00 00:00:00'),
(121, 'en', 'Component', 1, '2012-06-26 08:27:15', NULL, '0000-00-00 00:00:00'),
(121, 'id', 'Komponen', 1, '2012-06-26 08:27:15', NULL, '0000-00-00 00:00:00'),
(122, 'en', 'Amount', 1, '2012-06-26 08:27:48', NULL, '0000-00-00 00:00:00'),
(122, 'id', 'Jumlah', 1, '2012-06-26 08:27:48', NULL, '0000-00-00 00:00:00'),
(123, 'en', 'PLU/Barcode', 1, '2012-09-21 08:11:54', NULL, '0000-00-00 00:00:00'),
(123, 'id', 'PLU/Barcode', 1, '2012-09-21 08:11:54', NULL, '0000-00-00 00:00:00'),
(124, 'en', 'Warehouse Conversion', 1, '2012-06-26 08:44:52', NULL, '0000-00-00 00:00:00'),
(124, 'id', 'Konversi Gudang', 1, '2012-06-26 08:44:52', NULL, '0000-00-00 00:00:00'),
(125, 'en', 'Supplier Conversion', 1, '2012-06-26 08:46:17', NULL, '0000-00-00 00:00:00'),
(125, 'id', 'Konversi Supplier', 1, '2012-06-26 08:46:17', NULL, '0000-00-00 00:00:00'),
(126, 'en', 'Packet', 1, '2012-06-26 08:48:18', NULL, '0000-00-00 00:00:00'),
(126, 'id', 'Paket', 1, '2012-06-26 08:48:18', NULL, '0000-00-00 00:00:00'),
(127, 'en', 'Package', 1, '2012-06-26 10:10:06', NULL, '0000-00-00 00:00:00'),
(127, 'id', 'Paket', 1, '2012-06-26 10:10:06', NULL, '0000-00-00 00:00:00'),
(128, 'en', 'halo %s', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(128, 'id', 'halo %s', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(129, 'en', 'Branch', 1, '2012-06-26 13:56:06', NULL, '0000-00-00 00:00:00'),
(129, 'id', 'Cabang', 1, '2012-06-26 13:56:06', NULL, '0000-00-00 00:00:00'),
(130, 'en', 'From', 1, '2012-06-26 14:04:21', NULL, '0000-00-00 00:00:00'),
(130, 'id', 'Dari', 1, '2012-06-26 14:04:21', NULL, '0000-00-00 00:00:00'),
(131, 'en', 'To', 1, '2012-06-26 14:04:31', NULL, '0000-00-00 00:00:00'),
(131, 'id', 'Kepada', 1, '2012-06-26 14:04:31', NULL, '0000-00-00 00:00:00'),
(132, 'en', 'Goods', 1, '2012-06-26 14:04:50', NULL, '0000-00-00 00:00:00'),
(132, 'id', 'Barang', 1, '2012-06-26 14:04:50', NULL, '0000-00-00 00:00:00'),
(133, 'en', 'Date', 1, '2012-06-26 14:05:09', NULL, '0000-00-00 00:00:00'),
(133, 'id', 'Tanggal', 1, '2012-06-26 14:05:09', NULL, '0000-00-00 00:00:00'),
(134, 'en', 'Remarks', 1, '2012-06-26 14:07:20', NULL, '0000-00-00 00:00:00'),
(134, 'id', 'Keterangan', 1, '2012-06-26 14:07:20', NULL, '0000-00-00 00:00:00'),
(135, 'en', 'Stock', 1, '2012-06-26 14:10:07', NULL, '0000-00-00 00:00:00'),
(135, 'id', 'Stok', 1, '2012-06-26 14:10:07', NULL, '0000-00-00 00:00:00'),
(136, 'en', 'Send Date', 1, '2012-06-26 14:11:12', NULL, '0000-00-00 00:00:00'),
(136, 'id', 'Tanggal Kirim', 1, '2012-06-26 14:11:12', NULL, '0000-00-00 00:00:00'),
(137, 'en', 'Request', 1, '2012-06-26 14:12:07', NULL, '0000-00-00 00:00:00'),
(137, 'id', 'Permintaan', 1, '2012-06-26 14:12:07', NULL, '0000-00-00 00:00:00'),
(138, 'en', 'Discount', 1, '2012-06-26 14:12:59', NULL, '0000-00-00 00:00:00'),
(138, 'id', 'Diskon', 1, '2012-06-26 14:12:59', NULL, '0000-00-00 00:00:00'),
(139, 'en', 'Total', 1, '2012-06-26 14:13:12', NULL, '0000-00-00 00:00:00'),
(139, 'id', 'Total', 1, '2012-06-26 14:13:12', NULL, '0000-00-00 00:00:00'),
(140, 'en', 'VAT', 1, '2012-06-26 14:58:28', NULL, '0000-00-00 00:00:00'),
(140, 'id', 'VAT', 1, '2012-06-26 14:58:28', NULL, '0000-00-00 00:00:00'),
(141, 'en', 'Informal Education Organizer', 1, '2012-06-27 08:30:42', NULL, '0000-00-00 00:00:00'),
(141, 'id', 'Penyelenggara Pendidikan Informal', 1, '2012-06-27 08:30:42', NULL, '0000-00-00 00:00:00'),
(142, 'en', 'Nonformal Education Type', 1, '2012-06-27 08:50:36', NULL, '0000-00-00 00:00:00'),
(142, 'id', 'Jenis Pendidikan Nonformal', 1, '2012-06-27 08:50:36', NULL, '0000-00-00 00:00:00'),
(143, 'en', 'Nonformal Education Organizer', 1, '2012-06-27 10:09:35', NULL, '0000-00-00 00:00:00'),
(143, 'id', 'Penyelenggara Pendidikan Nonformal', 1, '2012-06-27 10:09:35', NULL, '0000-00-00 00:00:00'),
(144, 'en', 'Organization Type', 1, '2012-06-27 10:31:27', NULL, '0000-00-00 00:00:00'),
(144, 'id', 'Jenis Organisasi', 1, '2012-06-27 10:31:27', NULL, '0000-00-00 00:00:00'),
(145, 'en', 'Organization Level', 1, '2012-06-27 11:18:50', NULL, '0000-00-00 00:00:00'),
(145, 'id', 'Tingkat Organisasi', 1, '2012-06-27 11:18:50', NULL, '0000-00-00 00:00:00'),
(146, 'en', 'Referral Type', 1, '2012-06-27 13:52:02', NULL, '0000-00-00 00:00:00'),
(146, 'id', 'Jenis Relasi', 1, '2012-06-27 13:52:02', NULL, '0000-00-00 00:00:00'),
(147, 'en', 'Language Type', 1, '2012-06-27 14:05:41', NULL, '0000-00-00 00:00:00'),
(147, 'id', 'Jenis Bahasa', 1, '2012-06-27 14:05:41', NULL, '0000-00-00 00:00:00'),
(148, 'en', 'Language Fluent Type', 1, '2012-06-27 14:19:28', NULL, '0000-00-00 00:00:00'),
(148, 'id', 'Jenis Kefasihan Bahasa', 1, '2012-06-27 14:19:28', NULL, '0000-00-00 00:00:00'),
(149, 'en', 'Language Quality Type', 1, '2012-06-27 14:29:07', NULL, '0000-00-00 00:00:00'),
(149, 'id', 'Jenis Kualitas Bahasa', 1, '2012-06-27 14:29:07', NULL, '0000-00-00 00:00:00'),
(150, 'en', 'Language Certificate Type', 1, '2012-06-27 14:50:10', NULL, '0000-00-00 00:00:00'),
(150, 'id', 'Jenis Sertifikat Bahasa', 1, '2012-06-27 14:50:10', NULL, '0000-00-00 00:00:00'),
(151, 'en', 'Technical Type', 1, '2012-06-27 15:09:26', NULL, '0000-00-00 00:00:00'),
(151, 'id', 'Jenis Teknis', 1, '2012-06-27 15:09:26', NULL, '0000-00-00 00:00:00'),
(152, 'en', 'Technical Quality Type', 1, '2012-06-27 15:17:26', NULL, '0000-00-00 00:00:00'),
(152, 'id', 'Jenis Kualitas Teknis', 1, '2012-06-27 15:17:26', NULL, '0000-00-00 00:00:00'),
(153, 'en', 'Structural Position Type', 1, '2012-06-27 15:30:42', NULL, '0000-00-00 00:00:00'),
(153, 'id', 'Jenis Jabatan Struktural', 1, '2012-06-27 15:30:42', NULL, '0000-00-00 00:00:00'),
(154, 'en', 'Goods Category ', 1, '2012-10-01 10:05:07', NULL, '0000-00-00 00:00:00'),
(154, 'id', 'Kategori Barang', 1, '2012-10-01 10:05:07', NULL, '0000-00-00 00:00:00'),
(155, 'en', 'Purchase Status', 1, '2012-06-28 10:18:25', NULL, '0000-00-00 00:00:00'),
(155, 'id', 'Status Pembelian', 1, '2012-06-28 10:18:25', NULL, '0000-00-00 00:00:00'),
(156, 'en', 'Medic Status', 1, '2012-06-28 10:19:26', NULL, '0000-00-00 00:00:00'),
(156, 'id', 'Status Medis', 1, '2012-06-28 10:19:26', NULL, '0000-00-00 00:00:00'),
(157, 'en', 'Functional Position Type', 1, '2012-06-28 14:01:38', NULL, '0000-00-00 00:00:00'),
(157, 'id', 'Jenis Jabatan Fungsional', 1, '2012-06-28 14:01:38', NULL, '0000-00-00 00:00:00'),
(158, 'en', 'Symbol', 1, '2012-06-28 16:13:55', NULL, '0000-00-00 00:00:00'),
(158, 'id', 'Simbol', 1, '2012-06-28 16:13:55', NULL, '0000-00-00 00:00:00'),
(159, 'en', 'Currency has been entered', 1, '2012-06-29 08:31:51', NULL, '0000-00-00 00:00:00'),
(159, 'id', 'Mata Uang sudah pernah dimasukkan', 1, '2012-06-29 08:31:51', NULL, '0000-00-00 00:00:00'),
(160, 'en', 'Exchange Source', 1, '2012-06-29 09:00:03', NULL, '0000-00-00 00:00:00'),
(160, 'id', 'Sumber Kurs', 1, '2012-06-29 09:00:03', NULL, '0000-00-00 00:00:00'),
(161, 'en', 'Begin Date', 1, '2012-06-29 09:34:54', NULL, '0000-00-00 00:00:00'),
(161, 'id', 'Tanggal Mulai', 1, '2012-06-29 09:34:54', NULL, '0000-00-00 00:00:00'),
(162, 'en', 'End Date', 1, '2012-06-29 09:35:12', NULL, '0000-00-00 00:00:00'),
(162, 'id', 'Tanggal Akhir', 1, '2012-06-29 09:35:12', NULL, '0000-00-00 00:00:00'),
(163, 'en', 'Exchange Rate', 1, '2012-06-29 09:35:40', NULL, '0000-00-00 00:00:00'),
(163, 'id', 'Tarif Kurs', 1, '2012-06-29 09:35:40', NULL, '0000-00-00 00:00:00'),
(164, 'en', 'Buy', 1, '2012-06-29 09:36:02', NULL, '0000-00-00 00:00:00'),
(164, 'id', 'Beli', 1, '2012-06-29 09:36:02', NULL, '0000-00-00 00:00:00'),
(165, 'en', 'Sell', 1, '2012-06-29 09:36:13', NULL, '0000-00-00 00:00:00'),
(165, 'id', 'Jual', 1, '2012-06-29 09:36:13', NULL, '0000-00-00 00:00:00'),
(166, 'en', 'Period', 1, '2012-06-29 09:36:58', NULL, '0000-00-00 00:00:00'),
(166, 'id', 'Periode', 1, '2012-06-29 09:36:58', NULL, '0000-00-00 00:00:00'),
(167, 'en', 'Update Kurs Currency', 1, '2012-06-29 10:28:54', NULL, '0000-00-00 00:00:00'),
(167, 'id', 'Perbarui Kurs Mata Uang', 1, '2012-06-29 10:28:54', NULL, '0000-00-00 00:00:00'),
(168, 'en', 'Need to be Updated', 1, '2012-06-29 11:29:57', NULL, '0000-00-00 00:00:00'),
(168, 'id', 'Perlu diperbarui', 1, '2012-06-29 11:29:57', NULL, '0000-00-00 00:00:00'),
(169, 'en', 'Last Modified', 1, '2012-09-28 15:02:09', NULL, '0000-00-00 00:00:00'),
(169, 'id', 'Ubahan Terakhir', 1, '2012-09-28 15:02:09', NULL, '0000-00-00 00:00:00'),
(170, 'en', 'Activated the currency data', 1, '2012-06-29 13:52:11', NULL, '0000-00-00 00:00:00'),
(170, 'id', 'Aktifkan data Mata Uang', 1, '2012-06-29 13:52:11', NULL, '0000-00-00 00:00:00'),
(171, 'en', 'Source', 1, '2012-06-29 14:04:35', NULL, '0000-00-00 00:00:00'),
(171, 'id', 'Sumber', 1, '2012-06-29 14:04:35', NULL, '0000-00-00 00:00:00'),
(172, 'en', 'Draft Qty', 1, '2012-10-01 10:03:48', NULL, '0000-00-00 00:00:00'),
(172, 'id', 'Jumlah Draft', 1, '2012-10-01 10:03:48', NULL, '0000-00-00 00:00:00'),
(173, 'en', 'Master', 1, '2012-07-02 08:14:02', NULL, '0000-00-00 00:00:00'),
(173, 'id', 'Master', 1, '2012-07-02 08:14:02', NULL, '0000-00-00 00:00:00'),
(174, 'en', 'Passport Type', 1, '2012-07-02 08:23:03', NULL, '0000-00-00 00:00:00'),
(174, 'id', 'Jenis Passport', 1, '2012-07-02 08:23:03', NULL, '0000-00-00 00:00:00'),
(175, 'en', 'Project Type', 1, '2012-07-02 08:29:01', NULL, '0000-00-00 00:00:00'),
(175, 'id', 'Jenis Proyek', 1, '2012-07-02 08:29:01', NULL, '0000-00-00 00:00:00'),
(176, 'en', 'Training Approach', 1, '2012-07-02 08:33:59', NULL, '0000-00-00 00:00:00'),
(176, 'id', 'Pendekatan Pelatihan', 1, '2012-07-02 08:33:59', NULL, '0000-00-00 00:00:00'),
(177, 'en', 'Training Needs', 1, '2012-07-02 08:43:22', NULL, '0000-00-00 00:00:00'),
(177, 'id', 'Kebutuhan Pelatihan', 1, '2012-07-02 08:43:22', NULL, '0000-00-00 00:00:00'),
(178, 'en', 'History Rate', 1, '2012-07-02 08:59:05', NULL, '0000-00-00 00:00:00'),
(178, 'id', 'Riwayat Kurs', 1, '2012-07-02 08:59:05', NULL, '0000-00-00 00:00:00'),
(179, 'en', 'Rate', 1, '2012-07-02 08:59:30', NULL, '0000-00-00 00:00:00'),
(179, 'id', 'Harga', 1, '2012-07-02 08:59:30', NULL, '0000-00-00 00:00:00'),
(181, 'en', 'History', 1, '2012-07-02 08:59:54', NULL, '0000-00-00 00:00:00'),
(181, 'id', 'Riwayat', 1, '2012-07-02 08:59:54', NULL, '0000-00-00 00:00:00'),
(182, 'en', 'Seminar Level', 1, '2012-07-02 09:03:45', NULL, '0000-00-00 00:00:00'),
(182, 'id', 'Tingkat Seminar', 1, '2012-07-02 09:03:45', NULL, '0000-00-00 00:00:00'),
(183, 'en', 'Certification Field', 1, '2012-07-02 09:15:50', NULL, '0000-00-00 00:00:00'),
(183, 'id', 'Bidang Sertifikasi', 1, '2012-07-02 09:15:50', NULL, '0000-00-00 00:00:00'),
(184, 'en', 'Health Insurance Member Status', 1, '2012-07-02 09:25:13', NULL, '0000-00-00 00:00:00'),
(184, 'id', 'Status Anggota Asuransi Kesehatan', 1, '2012-07-02 09:25:13', NULL, '0000-00-00 00:00:00'),
(185, 'en', 'Internal Insurance Category', 1, '2012-07-02 10:57:08', NULL, '0000-00-00 00:00:00'),
(185, 'id', 'Kategori Asuransi Internal', 1, '2012-07-02 10:57:08', NULL, '0000-00-00 00:00:00'),
(187, 'en', 'Internal Insurance Type', 1, '2012-07-02 10:59:02', NULL, '0000-00-00 00:00:00'),
(187, 'id', 'Jenis Asuransi Internal', 1, '2012-07-02 10:59:02', NULL, '0000-00-00 00:00:00'),
(188, 'en', 'Internal Insurance Product', 1, '2012-07-02 11:20:39', NULL, '0000-00-00 00:00:00'),
(188, 'id', 'Produk Asuransi Internal', 1, '2012-07-02 11:20:39', NULL, '0000-00-00 00:00:00'),
(189, 'en', 'Internal Insurance Class', 1, '2012-07-02 11:59:40', NULL, '0000-00-00 00:00:00'),
(189, 'id', 'Kelas Asuransi Internal', 1, '2012-07-02 11:59:40', NULL, '0000-00-00 00:00:00'),
(190, 'en', 'Internal Insurance Plafon', 1, '2012-07-02 13:34:10', NULL, '0000-00-00 00:00:00'),
(190, 'id', 'Plafon Asuransi Internal', 1, '2012-07-02 13:34:10', NULL, '0000-00-00 00:00:00'),
(191, 'en', 'Internal Insurance Reference Type', 1, '2012-07-02 13:53:30', NULL, '0000-00-00 00:00:00'),
(191, 'id', 'Jenis Referensi Asuransi Internal', 1, '2012-07-02 13:53:30', NULL, '0000-00-00 00:00:00'),
(192, 'en', 'External Insurance Category', 1, '2012-07-02 15:38:52', NULL, '0000-00-00 00:00:00'),
(192, 'id', 'Kategori Asuransi Eksternal', 1, '2012-07-02 15:38:52', NULL, '0000-00-00 00:00:00'),
(194, 'en', 'External Insurance Type', 1, '2012-07-02 16:13:36', NULL, '0000-00-00 00:00:00'),
(194, 'id', 'Jenis Asuransi Eksternal', 1, '2012-07-02 16:13:36', NULL, '0000-00-00 00:00:00'),
(195, 'en', 'Is Locked', 1, '2012-07-03 08:34:44', NULL, '0000-00-00 00:00:00'),
(195, 'id', 'Terkunci', 1, '2012-07-03 08:34:44', NULL, '0000-00-00 00:00:00'),
(196, 'en', 'The %s field is required.', 1, '2012-07-03 09:43:11', NULL, '0000-00-00 00:00:00'),
(196, 'id', 'Field %s harus diisi.', 1, '2012-07-03 09:43:11', NULL, '0000-00-00 00:00:00'),
(197, 'en', 'The %s field must have a value.', 1, '2012-07-03 09:43:40', NULL, '0000-00-00 00:00:00'),
(197, 'id', 'Field %s harus dipilih.', 1, '2012-07-03 09:43:40', NULL, '0000-00-00 00:00:00'),
(198, 'en', 'The %s field must contain a valid email address.', 1, '2012-07-03 09:44:04', NULL, '0000-00-00 00:00:00'),
(198, 'id', 'Field %s harus diisi dengan alamat email yang benar.', 1, '2012-07-03 09:44:04', NULL, '0000-00-00 00:00:00'),
(199, 'en', 'The %s field must contain all valid email addresses.', 1, '2012-07-03 09:44:31', NULL, '0000-00-00 00:00:00'),
(199, 'id', 'Field %s harus diisi dengan alamat-alamat email yang benar.', 1, '2012-07-03 09:44:31', NULL, '0000-00-00 00:00:00'),
(200, 'en', 'The %s field must contain a valid URL.', 1, '2012-07-03 09:44:59', NULL, '0000-00-00 00:00:00'),
(200, 'id', 'Field %s harus diisi dengan URL yang benar.', 1, '2012-07-03 09:44:59', NULL, '0000-00-00 00:00:00'),
(201, 'en', 'The %s field must contain a valid IP.', 1, '2012-07-03 10:07:51', NULL, '0000-00-00 00:00:00'),
(201, 'id', 'Field %s harus diisi dengan IP yang benar.', 1, '2012-07-03 10:07:51', NULL, '0000-00-00 00:00:00'),
(202, 'en', 'The %s field must be at least %s characters in length.', 1, '2012-07-03 10:08:13', NULL, '0000-00-00 00:00:00'),
(202, 'id', 'Field %s harus diisi dengan sedikitnya %s karakter.', 1, '2012-07-03 10:08:13', NULL, '0000-00-00 00:00:00'),
(203, 'en', 'The %s field can not exceed %s characters in length.', 1, '2012-07-03 10:08:50', NULL, '0000-00-00 00:00:00'),
(203, 'id', 'Field %s tidak boleh lebih dari %s karakter.', 1, '2012-07-03 10:08:50', NULL, '0000-00-00 00:00:00'),
(204, 'en', 'The %s field must be exactly %s characters in length.', 1, '2012-07-03 10:09:20', NULL, '0000-00-00 00:00:00'),
(204, 'id', 'Field %s harus diisi dengan %s karakter.', 1, '2012-07-03 10:09:20', NULL, '0000-00-00 00:00:00'),
(205, 'en', 'The %s field may only contain alphabetical characters.', 1, '2012-07-03 10:09:39', NULL, '0000-00-00 00:00:00'),
(205, 'id', 'Field %s hanya boleh diisi dengan karakter alfabet.', 1, '2012-07-03 10:09:39', NULL, '0000-00-00 00:00:00'),
(206, 'en', 'The %s field may only contain alpha-numeric characters.', 1, '2012-07-03 10:09:59', NULL, '0000-00-00 00:00:00'),
(206, 'id', 'Field %s hanya boleh diisi dengan karakter alpha-numeric.', 1, '2012-07-03 10:09:59', NULL, '0000-00-00 00:00:00'),
(207, 'en', 'The %s field may only contain alpha-numeric characters, underscores, and dashes.', 1, '2012-07-03 10:10:32', NULL, '0000-00-00 00:00:00'),
(207, 'id', 'Field %s hanya boleh diisi dengan karakter alpha-numeric, garis bawah, dan tanda pisah (-).', 1, '2012-07-03 10:10:32', NULL, '0000-00-00 00:00:00'),
(208, 'en', 'The %s field must contain only numbers.', 1, '2012-07-03 10:11:27', NULL, '0000-00-00 00:00:00'),
(208, 'id', 'Field %s hanya boleh diisi dengan angka.', 1, '2012-07-03 10:11:27', NULL, '0000-00-00 00:00:00'),
(209, 'en', 'The %s field must contain only numeric characters.', 1, '2012-07-03 10:13:19', NULL, '0000-00-00 00:00:00'),
(209, 'id', 'Field %s hanya boleh diisi dengan karakter angka.', 1, '2012-07-03 10:13:19', NULL, '0000-00-00 00:00:00'),
(210, 'en', 'The %s field must contain an integer.', 1, '2012-07-03 10:15:14', NULL, '0000-00-00 00:00:00'),
(210, 'id', 'Field %s harus diisi dengan bilangan bulat.', 1, '2012-07-03 10:15:14', NULL, '0000-00-00 00:00:00'),
(211, 'en', 'The %s field is not in the correct format.', 1, '2012-07-03 10:19:02', NULL, '0000-00-00 00:00:00'),
(211, 'id', 'Field %s harus diisi dengan pola yang benar.', 1, '2012-07-03 10:19:02', NULL, '0000-00-00 00:00:00'),
(212, 'en', 'The %s field does not match the %s field.', 1, '2012-07-03 10:20:27', NULL, '0000-00-00 00:00:00'),
(212, 'id', 'Field %s tidak sesuai dengan field %s.', 1, '2012-07-03 10:20:27', NULL, '0000-00-00 00:00:00'),
(213, 'en', 'The %s field must contain only positive numbers.', 1, '2012-07-03 10:22:42', NULL, '0000-00-00 00:00:00'),
(213, 'id', 'Field %s harus diisi dengan bilangan positif.', 1, '2012-07-03 10:22:42', NULL, '0000-00-00 00:00:00'),
(214, 'en', 'The %s field must contain a number greater than zero.', 1, '2012-07-03 10:23:06', NULL, '0000-00-00 00:00:00'),
(214, 'id', 'Field %s harus diisi dengan angka lebih besar nol.', 1, '2012-07-03 10:23:06', NULL, '0000-00-00 00:00:00'),
(215, 'en', 'Select', 1, '2012-07-03 15:02:08', NULL, '0000-00-00 00:00:00'),
(215, 'id', 'Pilih', 1, '2012-07-03 15:02:08', NULL, '0000-00-00 00:00:00'),
(216, 'en', 'District', 8, '2012-11-07 16:19:09', NULL, '0000-00-00 00:00:00'),
(216, 'id', 'Kota/Kabupaten', 8, '2012-11-07 16:19:09', NULL, '0000-00-00 00:00:00'),
(217, 'en', 'Code %s is not available', 1, '2012-07-04 09:46:46', NULL, '0000-00-00 00:00:00'),
(217, 'id', 'Kode sudah dipakai', 1, '2012-07-04 09:46:46', NULL, '0000-00-00 00:00:00'),
(218, 'en', 'Bank Branch', 1, '2012-07-04 14:18:54', NULL, '0000-00-00 00:00:00'),
(218, 'id', 'Bank Cabang', 1, '2012-07-04 14:18:54', NULL, '0000-00-00 00:00:00'),
(219, 'en', 'Achievement Level', 1, '2012-07-04 14:52:23', NULL, '0000-00-00 00:00:00'),
(219, 'id', 'Tingkat Penghargaan', 1, '2012-07-04 14:52:23', NULL, '0000-00-00 00:00:00'),
(220, 'en', 'Type Short', 1, '2012-07-05 08:35:51', NULL, '0000-00-00 00:00:00'),
(220, 'id', 'Singkatan', 1, '2012-07-05 08:35:51', NULL, '0000-00-00 00:00:00'),
(222, 'en', 'File Type', 1, '2012-07-05 08:37:21', NULL, '0000-00-00 00:00:00'),
(222, 'id', 'Jenis File', 1, '2012-07-05 08:37:21', NULL, '0000-00-00 00:00:00'),
(224, 'en', 'Internal Reference Type', 1, '2012-07-05 08:54:53', NULL, '0000-00-00 00:00:00'),
(224, 'id', 'Jenis Referensi Internal', 1, '2012-07-05 08:54:53', NULL, '0000-00-00 00:00:00'),
(225, 'en', 'Internal Insurance Reference', 1, '2012-07-05 10:49:58', NULL, '0000-00-00 00:00:00'),
(225, 'id', 'Referensi Asuransi Internal', 1, '2012-07-05 10:49:58', NULL, '0000-00-00 00:00:00'),
(226, 'en', 'Locked', 1, '2012-07-05 14:05:30', NULL, '0000-00-00 00:00:00'),
(226, 'id', 'Terkunci', 1, '2012-07-05 14:05:30', NULL, '0000-00-00 00:00:00'),
(227, 'en', 'Unlocked', 1, '2012-07-05 14:05:43', NULL, '0000-00-00 00:00:00'),
(227, 'id', 'Tidak Terkunci', 1, '2012-07-05 14:05:43', NULL, '0000-00-00 00:00:00'),
(228, 'en', 'Icon Now', 1, '2012-07-06 14:11:17', NULL, '0000-00-00 00:00:00'),
(228, 'id', 'Ikon Sekarang', 1, '2012-07-06 14:11:17', NULL, '0000-00-00 00:00:00'),
(229, 'en', 'There is No current file', 1, '2012-07-06 14:48:58', NULL, '0000-00-00 00:00:00'),
(229, 'id', 'Belum ada file', 1, '2012-07-06 14:48:58', NULL, '0000-00-00 00:00:00'),
(230, 'en', 'Employee Status', 1, '2012-07-12 08:59:29', NULL, '0000-00-00 00:00:00'),
(230, 'id', 'Status Pegawai', 1, '2012-07-12 08:59:29', NULL, '0000-00-00 00:00:00'),
(231, 'en', 'Is Active', 1, '2013-09-04 08:26:27', NULL, '0000-00-00 00:00:00'),
(231, 'id', 'Status Aktif', 1, '2013-09-04 08:26:27', NULL, '0000-00-00 00:00:00'),
(232, 'en', 'Is Permanent', 1, '2013-09-04 08:25:14', NULL, '0000-00-00 00:00:00'),
(232, 'id', 'Status Tetap / Permanen', 1, '2013-09-04 08:25:14', NULL, '0000-00-00 00:00:00'),
(233, 'en', 'Employee Type', 1, '2012-07-12 09:22:16', NULL, '0000-00-00 00:00:00'),
(233, 'id', 'Jenis Pegawai', 1, '2012-07-12 09:22:16', NULL, '0000-00-00 00:00:00'),
(234, 'en', 'Further Education File Type', 1, '2012-07-12 09:42:15', NULL, '0000-00-00 00:00:00'),
(234, 'id', 'Jenis File Pendidikan Lanjutan', 1, '2012-07-12 09:42:15', NULL, '0000-00-00 00:00:00'),
(235, 'en', 'Grade Type', 1, '2012-07-12 09:58:19', NULL, '0000-00-00 00:00:00'),
(235, 'id', 'Jenis Golongan', 1, '2012-07-12 09:58:19', NULL, '0000-00-00 00:00:00'),
(236, 'en', 'Service Determination', 1, '2012-07-12 10:17:14', NULL, '0000-00-00 00:00:00'),
(236, 'id', 'Penetapan Masa Kerja', 1, '2012-07-12 10:17:14', NULL, '0000-00-00 00:00:00'),
(237, 'en', 'Work Period Type', 1, '2012-07-12 10:30:39', NULL, '0000-00-00 00:00:00'),
(237, 'id', 'Jenis Periode Kerja', 1, '2012-07-12 10:30:39', NULL, '0000-00-00 00:00:00'),
(238, 'en', 'Relationship Type', 1, '2012-07-12 11:43:02', NULL, '0000-00-00 00:00:00'),
(238, 'id', 'Jenis Hubungan Keluarga', 1, '2012-07-12 11:43:02', NULL, '0000-00-00 00:00:00'),
(239, 'en', 'Insurance is Covered', 1, '2012-07-12 11:54:47', NULL, '0000-00-00 00:00:00'),
(239, 'id', 'Ditanggung Asuransi', 1, '2012-07-12 11:54:47', NULL, '0000-00-00 00:00:00'),
(240, 'en', 'Payroll is Covered', 1, '2012-07-12 11:56:38', NULL, '0000-00-00 00:00:00'),
(240, 'id', 'Ditanggung Gaji', 1, '2012-07-12 11:56:38', NULL, '0000-00-00 00:00:00'),
(241, 'en', 'Has Order', 1, '2012-07-12 13:17:47', NULL, '0000-00-00 00:00:00'),
(241, 'id', 'Diurutkan', 1, '2012-07-12 13:17:47', NULL, '0000-00-00 00:00:00'),
(242, 'en', 'Relationship Status', 1, '2012-07-12 13:59:36', NULL, '0000-00-00 00:00:00'),
(242, 'id', 'Status Hubungan Keluarga', 1, '2012-07-12 13:59:36', NULL, '0000-00-00 00:00:00'),
(243, 'en', 'Employee Form Wizard', 1, '2012-07-12 15:48:02', NULL, '0000-00-00 00:00:00'),
(243, 'id', 'Penambahan Pegawai', 1, '2012-07-12 15:48:02', NULL, '0000-00-00 00:00:00'),
(244, 'en', 'Show History', 1, '2012-07-12 15:50:02', NULL, '0000-00-00 00:00:00'),
(244, 'id', 'Lihat Riwayat', 1, '2012-07-12 15:50:02', NULL, '0000-00-00 00:00:00'),
(245, 'en', 'Update Kurs', 1, '2012-07-12 15:50:31', NULL, '0000-00-00 00:00:00'),
(245, 'id', 'Perbaharui Kurs', 1, '2012-07-12 15:50:31', NULL, '0000-00-00 00:00:00'),
(246, 'en', 'Employee Name', 1, '2012-07-12 16:04:56', NULL, '0000-00-00 00:00:00'),
(246, 'id', 'Nama Pegawai', 1, '2012-07-12 16:04:56', NULL, '0000-00-00 00:00:00'),
(248, 'en', 'Number', 1, '2013-11-19 15:06:14', NULL, '0000-00-00 00:00:00'),
(248, 'id', 'Nomor', 1, '2013-11-19 15:06:14', NULL, '0000-00-00 00:00:00'),
(249, 'en', 'Full Name', 1, '2012-07-13 08:15:16', NULL, '0000-00-00 00:00:00'),
(249, 'id', 'Nama Lengkap', 1, '2012-07-13 08:15:16', NULL, '0000-00-00 00:00:00'),
(250, 'en', 'Nick Name', 1, '2012-07-13 08:15:32', NULL, '0000-00-00 00:00:00'),
(250, 'id', 'Nama Panggilan', 1, '2012-07-13 08:15:32', NULL, '0000-00-00 00:00:00'),
(252, 'en', 'Title (Prefix)', 1, '2012-07-13 08:36:59', NULL, '0000-00-00 00:00:00'),
(252, 'id', 'Gelar (Depan)', 1, '2012-07-13 08:36:59', NULL, '0000-00-00 00:00:00'),
(253, 'en', 'Title (Sufix)', 1, '2012-07-13 08:37:10', NULL, '0000-00-00 00:00:00'),
(253, 'id', 'Gelar (Belakang)', 1, '2012-07-13 08:37:10', NULL, '0000-00-00 00:00:00'),
(254, 'en', 'Personal ID', 1, '2013-11-28 10:40:37', NULL, '0000-00-00 00:00:00'),
(254, 'id', ' Nomor Induk', 1, '2013-11-28 10:40:37', NULL, '0000-00-00 00:00:00'),
(255, 'en', 'Presence Number', 1, '2012-07-13 08:22:52', NULL, '0000-00-00 00:00:00'),
(255, 'id', 'Nomor Presensi', 1, '2012-07-13 08:22:52', NULL, '0000-00-00 00:00:00'),
(256, 'en', 'Access Code', 1, '2012-07-13 08:25:21', NULL, '0000-00-00 00:00:00'),
(256, 'id', 'Kode Akses', 1, '2012-07-13 08:25:21', NULL, '0000-00-00 00:00:00'),
(257, 'en', 'Place of Birth', 1, '2012-07-25 11:16:57', NULL, '0000-00-00 00:00:00'),
(257, 'id', 'Tempat Lahir', 1, '2012-07-25 11:16:57', NULL, '0000-00-00 00:00:00'),
(258, 'en', 'Date of Birth ', 1, '2012-07-25 11:16:45', NULL, '0000-00-00 00:00:00'),
(258, 'id', 'Tanggal Lahir', 1, '2012-07-25 11:16:45', NULL, '0000-00-00 00:00:00'),
(259, 'en', 'Male', 1, '2012-07-13 08:30:05', NULL, '0000-00-00 00:00:00'),
(259, 'id', 'Pria', 1, '2012-07-13 08:30:05', NULL, '0000-00-00 00:00:00'),
(260, 'en', 'Female', 1, '2012-07-13 08:30:31', NULL, '0000-00-00 00:00:00'),
(260, 'id', 'Wanita', 1, '2012-07-13 08:30:31', NULL, '0000-00-00 00:00:00'),
(261, 'en', 'Gender', 1, '2012-07-13 08:31:48', NULL, '0000-00-00 00:00:00'),
(261, 'id', 'Jenis Kelamin', 1, '2012-07-13 08:31:48', NULL, '0000-00-00 00:00:00'),
(262, 'en', 'Belief', 1, '2012-07-13 08:40:13', NULL, '0000-00-00 00:00:00'),
(262, 'id', 'Kepercayaan', 1, '2012-07-13 08:40:13', NULL, '0000-00-00 00:00:00'),
(263, 'en', 'Input on request field cannot zero', 1, '2012-07-13 08:50:04', NULL, '0000-00-00 00:00:00'),
(263, 'id', 'Nilai input pada kolom permintaan tidak boleh 0', 1, '2012-07-13 08:50:04', NULL, '0000-00-00 00:00:00'),
(264, 'en', 'Employee Photo', 1, '2012-07-13 08:51:48', NULL, '0000-00-00 00:00:00'),
(264, 'id', 'Foto Pegawai', 1, '2012-07-13 08:51:48', NULL, '0000-00-00 00:00:00'),
(265, 'en', 'Preview', 1, '2012-11-07 13:52:28', NULL, '0000-00-00 00:00:00'),
(265, 'id', 'Preview', 1, '2012-11-07 13:52:28', NULL, '0000-00-00 00:00:00'),
(266, 'en', 'Attachment', 1, '2012-07-13 08:54:13', NULL, '0000-00-00 00:00:00'),
(266, 'id', 'Lampiran', 1, '2012-07-13 08:54:13', NULL, '0000-00-00 00:00:00'),
(267, 'en', 'Special Set other Master Data', 1, '2012-07-13 08:58:14', NULL, '0000-00-00 00:00:00'),
(267, 'id', 'Pengaturan Khusus Data Master Lainnya', 1, '2012-07-13 08:58:14', NULL, '0000-00-00 00:00:00'),
(268, 'en', 'Set as Vendor', 1, '2012-07-13 09:03:51', NULL, '0000-00-00 00:00:00'),
(268, 'id', 'Set sebagai Vendor', 1, '2012-07-13 09:03:51', NULL, '0000-00-00 00:00:00'),
(269, 'en', 'Set as Customer', 1, '2012-07-13 09:04:16', NULL, '0000-00-00 00:00:00'),
(269, 'id', 'Set Sebagai Pelanggan', 1, '2012-07-13 09:04:16', NULL, '0000-00-00 00:00:00'),
(270, 'en', 'Employee Data', 1, '2012-07-13 09:09:45', NULL, '0000-00-00 00:00:00'),
(270, 'id', 'Data Pegawai', 1, '2012-07-13 09:09:45', NULL, '0000-00-00 00:00:00'),
(271, 'en', 'Photo Type not Found', 1, '2012-07-13 10:44:45', NULL, '0000-00-00 00:00:00'),
(271, 'id', 'Data Jenis Foto tidak ditemukan', 1, '2012-07-13 10:44:45', NULL, '0000-00-00 00:00:00'),
(272, 'en', 'Nationality Status', 1, '2012-07-16 07:58:03', NULL, '0000-00-00 00:00:00'),
(272, 'id', 'Status Nasionalisme', 1, '2012-07-16 07:58:03', NULL, '0000-00-00 00:00:00'),
(273, 'en', 'Expatriat', 1, '2012-07-16 07:58:26', NULL, '0000-00-00 00:00:00'),
(273, 'id', 'Ekspatriat', 1, '2012-07-16 07:58:26', NULL, '0000-00-00 00:00:00'),
(274, 'en', 'Local', 1, '2012-07-16 07:58:39', NULL, '0000-00-00 00:00:00'),
(274, 'id', 'Pribumi', 1, '2012-07-16 07:58:39', NULL, '0000-00-00 00:00:00'),
(275, 'en', 'Position', 1, '2012-07-16 13:05:18', NULL, '0000-00-00 00:00:00'),
(275, 'id', 'Jabatan', 1, '2012-07-16 13:05:18', NULL, '0000-00-00 00:00:00'),
(276, 'en', 'Work Unit', 1, '2012-07-16 13:06:06', NULL, '0000-00-00 00:00:00'),
(276, 'id', 'Unit Kerja', 1, '2012-07-16 13:06:06', NULL, '0000-00-00 00:00:00'),
(277, 'en', 'Usage Type', 1, '2012-09-26 14:00:47', NULL, '0000-00-00 00:00:00'),
(277, 'id', 'Jenis Penggunaan', 1, '2012-09-26 14:00:47', NULL, '0000-00-00 00:00:00'),
(278, 'en', 'Relocation Reason', 1, '2012-07-17 13:27:02', NULL, '0000-00-00 00:00:00'),
(278, 'id', 'Alasan Relokasi', 1, '2012-07-17 13:27:02', NULL, '0000-00-00 00:00:00'),
(279, 'en', 'Reason', 1, '2012-09-30 15:31:21', NULL, '0000-00-00 00:00:00'),
(279, 'id', 'Alasan', 1, '2012-09-30 15:31:21', NULL, '0000-00-00 00:00:00'),
(280, 'en', 'Family Data', 1, '2012-07-17 14:40:16', NULL, '0000-00-00 00:00:00'),
(280, 'id', 'Data Keluarga', 1, '2012-07-17 14:40:16', NULL, '0000-00-00 00:00:00'),
(281, 'en', 'Family List', 1, '2012-07-17 14:40:37', NULL, '0000-00-00 00:00:00'),
(281, 'id', 'Daftar Keluarga', 1, '2012-07-17 14:40:37', NULL, '0000-00-00 00:00:00'),
(282, 'en', 'Relative Status', 1, '2012-08-15 08:24:13', NULL, '0000-00-00 00:00:00'),
(282, 'id', 'Status Keluarga', 1, '2012-08-15 08:24:13', NULL, '0000-00-00 00:00:00'),
(283, 'en', 'Personal Data', 1, '2012-07-17 15:56:13', NULL, '0000-00-00 00:00:00'),
(283, 'id', 'Data Pribadi', 1, '2012-07-17 15:56:13', NULL, '0000-00-00 00:00:00'),
(284, 'en', 'Save', 1, '2012-07-17 16:24:44', NULL, '0000-00-00 00:00:00'),
(284, 'id', 'Simpan', 1, '2012-07-17 16:24:44', NULL, '0000-00-00 00:00:00'),
(285, 'en', 'Reset', 1, '2012-07-17 16:25:22', NULL, '0000-00-00 00:00:00'),
(285, 'id', 'Reset', 1, '2012-07-17 16:25:22', NULL, '0000-00-00 00:00:00'),
(286, 'en', 'Cancel', 1, '2012-07-17 16:25:44', NULL, '0000-00-00 00:00:00'),
(286, 'id', 'Batal', 1, '2012-07-17 16:25:44', NULL, '0000-00-00 00:00:00'),
(287, 'en', 'Citizenship', 1, '2012-07-18 07:56:34', NULL, '0000-00-00 00:00:00'),
(287, 'id', 'Kewarganegaraan', 1, '2012-07-18 07:56:34', NULL, '0000-00-00 00:00:00'),
(288, 'en', 'Mobile Phone Number', 1, '2012-07-18 08:09:42', NULL, '0000-00-00 00:00:00'),
(288, 'id', 'Nomor Handphone', 1, '2012-07-18 08:09:42', NULL, '0000-00-00 00:00:00'),
(289, 'en', 'Phone Number', 1, '2013-11-06 08:59:36', NULL, '0000-00-00 00:00:00'),
(289, 'id', 'Nomor Telepon', 1, '2013-11-06 08:59:36', NULL, '0000-00-00 00:00:00'),
(290, 'en', 'Identity Number', 1, '2012-07-18 08:15:42', NULL, '0000-00-00 00:00:00'),
(290, 'id', 'Nomor Identitas', 1, '2012-07-18 08:15:42', NULL, '0000-00-00 00:00:00'),
(291, 'en', 'Other Identity Number', 1, '2012-07-18 08:16:40', NULL, '0000-00-00 00:00:00'),
(291, 'id', 'Nomor Identitas Lainnya', 1, '2012-07-18 08:16:40', NULL, '0000-00-00 00:00:00'),
(292, 'en', 'Extension', 1, '2012-07-18 08:24:59', NULL, '0000-00-00 00:00:00'),
(292, 'id', 'Ekstensi', 1, '2012-07-18 08:24:59', NULL, '0000-00-00 00:00:00'),
(293, 'en', 'Old Photo', 1, '2012-07-18 08:25:54', NULL, '0000-00-00 00:00:00'),
(293, 'id', 'Foto Lama', 1, '2012-07-18 08:25:54', NULL, '0000-00-00 00:00:00'),
(294, 'en', 'Or', 1, '2012-07-18 08:31:31', NULL, '0000-00-00 00:00:00'),
(294, 'id', 'Atau', 1, '2012-07-18 08:31:31', NULL, '0000-00-00 00:00:00'),
(295, 'en', 'Email', 1, '2012-07-18 08:37:47', NULL, '0000-00-00 00:00:00'),
(295, 'id', 'Email', 1, '2012-07-18 08:37:47', NULL, '0000-00-00 00:00:00'),
(296, 'en', 'Photo', 1, '2012-07-18 08:38:11', NULL, '0000-00-00 00:00:00'),
(296, 'id', 'Foto', 1, '2012-07-18 08:38:11', NULL, '0000-00-00 00:00:00'),
(297, 'en', 'Family', 1, '2012-07-18 08:38:48', NULL, '0000-00-00 00:00:00'),
(297, 'id', 'Keluarga', 1, '2012-07-18 08:38:48', NULL, '0000-00-00 00:00:00'),
(298, 'en', 'until', 1, '2013-11-06 16:23:05', NULL, '0000-00-00 00:00:00'),
(298, 'id', 's.d', 1, '2013-11-06 16:23:05', NULL, '0000-00-00 00:00:00'),
(299, 'en', 'Purchase Order Supplier', 1, '2012-10-01 05:10:22', NULL, '0000-00-00 00:00:00'),
(299, 'id', 'Purchase Order Supplier', 1, '2012-10-01 05:10:22', NULL, '0000-00-00 00:00:00'),
(300, 'en', 'Detail Request', 1, '2012-07-18 10:12:36', NULL, '0000-00-00 00:00:00'),
(300, 'id', 'Detail Permintaan', 1, '2012-07-18 10:12:36', NULL, '0000-00-00 00:00:00'),
(301, 'en', 'Detail Receive', 1, '2012-07-18 10:13:04', NULL, '0000-00-00 00:00:00'),
(301, 'id', 'Detail Penerimaan', 1, '2012-07-18 10:13:04', NULL, '0000-00-00 00:00:00'),
(302, 'en', 'Delivery Order', 1, '2012-07-18 10:13:40', NULL, '0000-00-00 00:00:00'),
(302, 'id', 'Pengiriman', 1, '2012-07-18 10:13:40', NULL, '0000-00-00 00:00:00'),
(303, 'en', 'DO Number', 1, '2012-07-18 10:14:06', NULL, '0000-00-00 00:00:00');
INSERT INTO `gtfw_key_text` (`key_text_key_id`, `key_text_lang_code`, `key_text_key_text`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`) VALUES
(303, 'id', 'Nomor DO', 1, '2012-07-18 10:14:06', NULL, '0000-00-00 00:00:00'),
(304, 'en', 'History Data', 1, '2012-07-18 10:29:53', NULL, '0000-00-00 00:00:00'),
(304, 'id', 'Data Riwayat', 1, '2012-07-18 10:29:53', NULL, '0000-00-00 00:00:00'),
(305, 'en', 'Marriage Date', 1, '2012-08-13 12:53:51', NULL, '0000-00-00 00:00:00'),
(305, 'id', 'Tanggal Menikah', 1, '2012-08-13 12:53:51', NULL, '0000-00-00 00:00:00'),
(306, 'en', 'Pass Away Date', 1, '2012-07-18 11:12:59', NULL, '0000-00-00 00:00:00'),
(306, 'id', 'Tanggal Meninggal', 1, '2012-07-18 11:12:59', NULL, '0000-00-00 00:00:00'),
(307, 'en', 'Pass Away Status', 1, '2012-07-18 11:13:12', NULL, '0000-00-00 00:00:00'),
(307, 'id', 'Status Meninggal', 1, '2012-07-18 11:13:12', NULL, '0000-00-00 00:00:00'),
(308, 'en', 'Done', 1, '2012-07-18 11:08:25', NULL, '0000-00-00 00:00:00'),
(308, 'id', 'Sudah', 1, '2012-07-18 11:08:25', NULL, '0000-00-00 00:00:00'),
(309, 'en', 'Is Study', 1, '2012-07-18 11:17:33', NULL, '0000-00-00 00:00:00'),
(309, 'id', 'Masih Study', 1, '2012-07-18 11:17:33', NULL, '0000-00-00 00:00:00'),
(310, 'en', 'Is Married', 1, '2012-07-18 11:50:50', NULL, '0000-00-00 00:00:00'),
(310, 'id', 'Sudah Menikah', 1, '2012-07-18 11:50:50', NULL, '0000-00-00 00:00:00'),
(311, 'en', 'Institutions', 1, '2012-07-18 14:00:51', NULL, '0000-00-00 00:00:00'),
(311, 'id', 'Institusi', 1, '2012-07-18 14:00:51', NULL, '0000-00-00 00:00:00'),
(312, 'en', 'School Name', 1, '2012-07-18 14:01:07', NULL, '0000-00-00 00:00:00'),
(312, 'id', 'Nama Sekolah', 1, '2012-07-18 14:01:07', NULL, '0000-00-00 00:00:00'),
(313, 'en', 'Faculty', 1, '2012-07-18 14:04:03', NULL, '0000-00-00 00:00:00'),
(313, 'id', 'Fakultas', 1, '2012-07-18 14:04:03', NULL, '0000-00-00 00:00:00'),
(314, 'en', 'Study Of Program ', 1, '2012-07-18 14:17:29', NULL, '0000-00-00 00:00:00'),
(314, 'id', 'Program Studi', 1, '2012-07-18 14:17:29', NULL, '0000-00-00 00:00:00'),
(315, 'en', 'Concentration', 1, '2012-07-18 14:08:04', NULL, '0000-00-00 00:00:00'),
(315, 'id', 'Konsentrasi', 1, '2012-07-18 14:08:04', NULL, '0000-00-00 00:00:00'),
(316, 'en', 'Year Pass', 1, '2012-07-18 14:18:51', NULL, '0000-00-00 00:00:00'),
(316, 'id', 'Tahun Lulus', 1, '2012-07-18 14:18:51', NULL, '0000-00-00 00:00:00'),
(317, 'en', 'Working Status', 1, '2012-07-18 14:41:05', NULL, '0000-00-00 00:00:00'),
(317, 'id', 'Status Sudah Bekerja', 1, '2012-07-18 14:41:05', NULL, '0000-00-00 00:00:00'),
(318, 'en', 'Work Place', 1, '2012-07-18 14:43:14', NULL, '0000-00-00 00:00:00'),
(318, 'id', 'Tempat Bekerja', 1, '2012-07-18 14:43:14', NULL, '0000-00-00 00:00:00'),
(319, 'en', 'Work', 1, '2012-07-18 14:43:32', NULL, '0000-00-00 00:00:00'),
(319, 'id', 'Pekerjaan', 1, '2012-07-18 14:43:32', NULL, '0000-00-00 00:00:00'),
(320, 'en', 'Salary', 1, '2012-07-18 14:44:19', NULL, '0000-00-00 00:00:00'),
(320, 'id', 'Gaji', 1, '2012-07-18 14:44:19', NULL, '0000-00-00 00:00:00'),
(321, 'en', 'Income Amount', 1, '2012-07-18 14:44:49', NULL, '0000-00-00 00:00:00'),
(321, 'id', 'Penghasilan', 1, '2012-07-18 14:44:49', NULL, '0000-00-00 00:00:00'),
(322, 'en', 'Is Tax Free', 1, '2013-09-04 08:25:39', NULL, '0000-00-00 00:00:00'),
(322, 'id', 'Status Tanggungan PTKP', 1, '2013-09-04 08:25:39', NULL, '0000-00-00 00:00:00'),
(323, 'en', 'Tax Free Period From', 1, '2012-07-18 15:22:28', NULL, '0000-00-00 00:00:00'),
(323, 'id', 'Periode Mulai PTKP', 1, '2012-07-18 15:22:28', NULL, '0000-00-00 00:00:00'),
(324, 'en', 'Desc for Tax Free', 1, '2012-07-18 15:20:05', NULL, '0000-00-00 00:00:00'),
(324, 'id', 'Info Tanggungan PTKP', 1, '2012-07-18 15:20:05', NULL, '0000-00-00 00:00:00'),
(325, 'en', 'NPWP Ownership Status', 1, '2012-07-18 15:27:45', NULL, '0000-00-00 00:00:00'),
(325, 'id', 'Status Kepemilikan NPWP', 1, '2012-07-18 15:27:45', NULL, '0000-00-00 00:00:00'),
(326, 'en', 'Is NPWP', 1, '2012-07-18 15:30:03', NULL, '0000-00-00 00:00:00'),
(326, 'id', 'Status Kepemilikan NPWP', 1, '2012-07-18 15:30:04', NULL, '0000-00-00 00:00:00'),
(327, 'en', 'NPWP Registered Number', 1, '2012-07-18 15:30:48', NULL, '0000-00-00 00:00:00'),
(327, 'id', 'Nomor NPWP Terdaftar', 1, '2012-07-18 15:30:49', NULL, '0000-00-00 00:00:00'),
(328, 'en', 'NPWP Registered Name', 1, '2012-07-18 15:31:46', NULL, '0000-00-00 00:00:00'),
(328, 'id', 'Nama NPWP Terdaftar', 1, '2012-07-18 15:31:46', NULL, '0000-00-00 00:00:00'),
(329, 'en', 'NPWP Registered Date', 1, '2012-07-18 15:32:30', NULL, '0000-00-00 00:00:00'),
(329, 'id', 'Tanggal Terdaftar NPWP', 1, '2012-07-18 15:32:30', NULL, '0000-00-00 00:00:00'),
(330, 'en', 'NPWP Address', 1, '2012-07-18 15:33:01', NULL, '0000-00-00 00:00:00'),
(330, 'id', 'Alamat NPWP', 1, '2012-07-18 15:33:02', NULL, '0000-00-00 00:00:00'),
(331, 'en', 'Is Covered', 1, '2013-09-04 08:24:29', NULL, '0000-00-00 00:00:00'),
(331, 'id', 'Status Ditanggung', 1, '2013-09-04 08:24:29', NULL, '0000-00-00 00:00:00'),
(332, 'en', 'Is Jamsostek', 1, '2012-07-18 16:00:27', NULL, '0000-00-00 00:00:00'),
(332, 'id', 'Status Kepemilikan Jamsostek', 1, '2012-07-18 16:00:27', NULL, '0000-00-00 00:00:00'),
(333, 'en', 'Jamsostek Number', 1, '2012-07-18 16:03:44', NULL, '0000-00-00 00:00:00'),
(333, 'id', 'Nomor Jamsostek', 1, '2012-07-18 16:03:44', NULL, '0000-00-00 00:00:00'),
(334, 'en', 'Jamsostek Registered Name ', 1, '2012-07-18 16:04:42', NULL, '0000-00-00 00:00:00'),
(334, 'id', 'Nama Jamsostek Terdaftar', 1, '2012-07-18 16:04:42', NULL, '0000-00-00 00:00:00'),
(335, 'en', 'Period of Validity', 1, '2012-07-18 16:06:06', NULL, '0000-00-00 00:00:00'),
(335, 'id', 'Masa Berlaku', 1, '2012-07-18 16:06:06', NULL, '0000-00-00 00:00:00'),
(336, 'en', 'Have', 1, '2012-07-18 16:09:11', NULL, '0000-00-00 00:00:00'),
(336, 'id', 'Punya', 1, '2012-07-18 16:09:11', NULL, '0000-00-00 00:00:00'),
(337, 'en', 'Is Health Insurance', 1, '2012-07-18 16:11:40', NULL, '0000-00-00 00:00:00'),
(337, 'id', 'Status ASKES', 1, '2012-07-18 16:11:40', NULL, '0000-00-00 00:00:00'),
(338, 'en', 'Health Insurance Number', 1, '2012-07-18 16:13:48', NULL, '0000-00-00 00:00:00'),
(338, 'id', 'Nomor ASKES Terdaftar', 1, '2012-07-18 16:13:48', NULL, '0000-00-00 00:00:00'),
(340, 'en', 'Health Insurance Number', 1, '2012-07-18 16:16:14', NULL, '0000-00-00 00:00:00'),
(340, 'id', 'Nomor ASKES Terdaftar', 1, '2012-07-18 16:16:14', NULL, '0000-00-00 00:00:00'),
(341, 'en', 'Is Internal Insurance', 1, '2013-09-04 08:24:45', NULL, '0000-00-00 00:00:00'),
(341, 'id', 'Status Gabung Asuransi Internal', 1, '2013-09-04 08:24:45', NULL, '0000-00-00 00:00:00'),
(342, 'en', 'Join', 1, '2012-07-18 16:19:46', NULL, '0000-00-00 00:00:00'),
(342, 'id', 'Gabung', 1, '2012-07-18 16:19:46', NULL, '0000-00-00 00:00:00'),
(343, 'en', 'Registered Number', 1, '2012-07-18 16:21:48', NULL, '0000-00-00 00:00:00'),
(343, 'id', 'Nomor Terdaftar', 1, '2012-07-18 16:21:48', NULL, '0000-00-00 00:00:00'),
(344, 'en', 'Registered Name', 1, '2012-07-18 16:22:09', NULL, '0000-00-00 00:00:00'),
(344, 'id', 'Nama Terdaftar', 1, '2012-07-18 16:22:10', NULL, '0000-00-00 00:00:00'),
(345, 'en', 'Is External Insurance', 1, '2012-07-18 16:28:46', NULL, '0000-00-00 00:00:00'),
(345, 'id', 'Status Asuransi Lainnya', 1, '2012-07-18 16:28:46', NULL, '0000-00-00 00:00:00'),
(346, 'en', 'Status Data', 1, '2012-07-18 16:35:13', NULL, '0000-00-00 00:00:00'),
(346, 'id', 'Data Status', 1, '2012-07-18 16:35:13', NULL, '0000-00-00 00:00:00'),
(347, 'en', 'Default', 1, '2012-07-18 16:39:21', NULL, '0000-00-00 00:00:00'),
(347, 'id', 'Standar', 1, '2012-07-18 16:39:21', NULL, '0000-00-00 00:00:00'),
(348, 'en', 'File', 1, '2012-11-08 13:47:55', NULL, '0000-00-00 00:00:00'),
(348, 'id', 'File', 1, '2012-11-08 13:47:55', NULL, '0000-00-00 00:00:00'),
(349, 'en', 'Modify', 1, '2012-07-19 14:01:53', NULL, '0000-00-00 00:00:00'),
(349, 'id', 'Ubah', 1, '2012-07-19 14:01:53', NULL, '0000-00-00 00:00:00'),
(350, 'en', 'Insert', 1, '2012-07-19 14:02:14', NULL, '0000-00-00 00:00:00'),
(350, 'id', 'Input', 1, '2012-07-19 14:02:14', NULL, '0000-00-00 00:00:00'),
(351, 'en', 'Next', 1, '2012-07-19 14:42:30', NULL, '0000-00-00 00:00:00'),
(351, 'id', 'Selanjutnya', 1, '2012-07-19 14:42:30', NULL, '0000-00-00 00:00:00'),
(352, 'en', 'Previous', 1, '2012-07-19 14:43:41', NULL, '0000-00-00 00:00:00'),
(352, 'id', 'Sebelumnya', 1, '2012-07-19 14:43:41', NULL, '0000-00-00 00:00:00'),
(354, 'en', 'Not Default', 1, '2012-07-19 15:00:28', NULL, '0000-00-00 00:00:00'),
(354, 'id', 'Tidak Standar', 1, '2012-07-19 15:00:28', NULL, '0000-00-00 00:00:00'),
(355, 'en', 'Condition', 1, '2012-07-19 15:23:53', NULL, '0000-00-00 00:00:00'),
(355, 'id', 'Kondisi', 1, '2012-07-19 15:23:53', NULL, '0000-00-00 00:00:00'),
(356, 'en', 'Insert By Backoffice', 1, '2012-07-19 15:28:30', NULL, '0000-00-00 00:00:00'),
(356, 'id', 'Input Oleh Backoffice', 1, '2012-07-19 15:28:30', NULL, '0000-00-00 00:00:00'),
(357, 'en', 'Insert By Employee', 1, '2012-07-19 15:28:11', NULL, '0000-00-00 00:00:00'),
(357, 'id', 'Input oleh Pegawai', 1, '2012-07-19 15:28:11', NULL, '0000-00-00 00:00:00'),
(358, 'en', 'Health', 1, '2012-07-20 08:06:38', NULL, '0000-00-00 00:00:00'),
(358, 'id', 'Kesehatan', 1, '2012-07-20 08:06:38', NULL, '0000-00-00 00:00:00'),
(359, 'en', 'Weight', 1, '2012-07-20 08:08:34', NULL, '0000-00-00 00:00:00'),
(359, 'id', 'Berat Badan', 1, '2012-07-20 08:08:34', NULL, '0000-00-00 00:00:00'),
(360, 'en', 'Height', 1, '2013-05-03 16:12:09', NULL, '0000-00-00 00:00:00'),
(360, 'id', 'Tinggi', 1, '2013-05-03 16:12:09', NULL, '0000-00-00 00:00:00'),
(361, 'en', 'Skin Color', 1, '2012-07-20 08:09:41', NULL, '0000-00-00 00:00:00'),
(361, 'id', 'Warna Kulit', 1, '2012-07-20 08:09:41', NULL, '0000-00-00 00:00:00'),
(362, 'en', 'Hair Color', 1, '2012-07-20 08:10:00', NULL, '0000-00-00 00:00:00'),
(362, 'id', 'Warna Rambut', 1, '2012-07-20 08:10:00', NULL, '0000-00-00 00:00:00'),
(363, 'en', 'Face Shape', 1, '2012-07-20 08:10:59', NULL, '0000-00-00 00:00:00'),
(363, 'id', 'Bentuk Wajah', 1, '2012-07-20 08:10:59', NULL, '0000-00-00 00:00:00'),
(364, 'en', 'Typical', 1, '2012-07-20 08:11:25', NULL, '0000-00-00 00:00:00'),
(364, 'id', 'Ciri Fisik', 1, '2012-07-20 08:11:25', NULL, '0000-00-00 00:00:00'),
(365, 'en', 'Disability', 1, '2013-11-19 16:19:41', NULL, '0000-00-00 00:00:00'),
(365, 'id', 'Kekurangan / Cacat Fisik', 1, '2013-11-19 16:19:41', NULL, '0000-00-00 00:00:00'),
(366, 'en', 'Disease', 1, '2012-07-20 08:12:16', NULL, '0000-00-00 00:00:00'),
(366, 'id', 'Penyakit Kronis', 1, '2012-07-20 08:12:16', NULL, '0000-00-00 00:00:00'),
(367, 'en', 'Alergy', 1, '2012-07-20 08:12:35', NULL, '0000-00-00 00:00:00'),
(367, 'id', 'Alergi', 1, '2012-07-20 08:12:35', NULL, '0000-00-00 00:00:00'),
(368, 'en', 'Employment', 1, '2012-07-20 08:34:47', NULL, '0000-00-00 00:00:00'),
(368, 'id', 'Kepegawaian', 1, '2012-07-20 08:34:48', NULL, '0000-00-00 00:00:00'),
(369, 'en', 'In Kg', 1, '2012-07-20 08:35:49', NULL, '0000-00-00 00:00:00'),
(369, 'id', 'Dalam Kg', 1, '2012-07-20 08:35:49', NULL, '0000-00-00 00:00:00'),
(370, 'en', 'In Cm', 1, '2012-07-20 08:36:09', NULL, '0000-00-00 00:00:00'),
(370, 'id', 'Dalam Cm', 1, '2012-07-20 08:36:10', NULL, '0000-00-00 00:00:00'),
(371, 'en', 'Ethnic', 1, '2012-07-20 08:50:10', NULL, '0000-00-00 00:00:00'),
(371, 'id', 'Suku', 1, '2012-07-20 08:50:10', NULL, '0000-00-00 00:00:00'),
(372, 'en', 'First Name', 1, '2012-07-20 09:00:35', NULL, '0000-00-00 00:00:00'),
(372, 'id', 'Nama Depan', 1, '2012-07-20 09:00:35', NULL, '0000-00-00 00:00:00'),
(373, 'en', 'Last Name', 1, '2012-07-20 09:01:48', NULL, '0000-00-00 00:00:00'),
(373, 'id', 'Nama Belakang', 1, '2012-07-20 09:01:48', NULL, '0000-00-00 00:00:00'),
(374, 'en', 'Middle Name', 1, '2012-07-20 09:02:10', NULL, '0000-00-00 00:00:00'),
(374, 'id', 'Nama Tengah', 1, '2012-07-20 09:02:10', NULL, '0000-00-00 00:00:00'),
(375, 'en', 'Work Unit List', 1, '2012-07-23 08:12:03', NULL, '0000-00-00 00:00:00'),
(375, 'id', 'Daftar Satuan Kerja', 1, '2012-07-23 08:12:03', NULL, '0000-00-00 00:00:00'),
(376, 'en', 'Valid From', 1, '2012-07-23 08:12:28', NULL, '0000-00-00 00:00:00'),
(376, 'id', 'Berlaku Sejak', 1, '2012-07-23 08:12:28', NULL, '0000-00-00 00:00:00'),
(377, 'en', 'Valid Until', 1, '2012-07-23 08:12:44', NULL, '0000-00-00 00:00:00'),
(377, 'id', 'Berlaku Sampai', 1, '2012-07-23 08:12:44', NULL, '0000-00-00 00:00:00'),
(378, 'en', 'Decree', 1, '2012-07-23 08:13:33', NULL, '0000-00-00 00:00:00'),
(378, 'id', 'Surat Keputusan', 1, '2012-07-23 08:13:33', NULL, '0000-00-00 00:00:00'),
(379, 'en', 'Decree Number', 1, '2012-07-23 08:14:17', NULL, '0000-00-00 00:00:00'),
(379, 'id', 'Nomor SK', 1, '2012-07-23 08:14:17', NULL, '0000-00-00 00:00:00'),
(380, 'en', 'Decree Date', 1, '2012-07-23 08:15:22', NULL, '0000-00-00 00:00:00'),
(380, 'id', 'Tanggal Pengesahan', 1, '2012-07-23 08:15:22', NULL, '0000-00-00 00:00:00'),
(381, 'en', 'Old File ', 1, '2012-07-23 08:17:51', NULL, '0000-00-00 00:00:00'),
(381, 'id', 'File Lama', 1, '2012-07-23 08:17:51', NULL, '0000-00-00 00:00:00'),
(382, 'en', 'Department', 1, '2012-07-23 08:18:59', NULL, '0000-00-00 00:00:00'),
(382, 'id', 'Departemen', 1, '2012-07-23 08:18:59', NULL, '0000-00-00 00:00:00'),
(383, 'en', 'Structural Position List', 1, '2012-07-23 08:21:01', NULL, '0000-00-00 00:00:00'),
(383, 'id', 'Daftar Jabatan Struktural', 1, '2012-07-23 08:21:01', NULL, '0000-00-00 00:00:00'),
(384, 'en', 'Structural Position', 1, '2012-07-23 08:20:46', NULL, '0000-00-00 00:00:00'),
(384, 'id', 'Jabatan Struktural', 1, '2012-07-23 08:20:46', NULL, '0000-00-00 00:00:00'),
(385, 'en', 'Employee Status List', 1, '2012-07-23 08:41:23', NULL, '0000-00-00 00:00:00'),
(385, 'id', 'Daftar Status Pegawai', 1, '2012-07-23 08:41:23', NULL, '0000-00-00 00:00:00'),
(386, 'en', 'Blood type name already used', 1, '2012-07-23 09:06:10', NULL, '0000-00-00 00:00:00'),
(386, 'id', 'Nama gologan darah sudah ada', 1, '2012-07-23 09:06:10', NULL, '0000-00-00 00:00:00'),
(387, 'en', 'Email type name already used', 1, '2012-07-23 10:00:01', NULL, '0000-00-00 00:00:00'),
(387, 'id', 'Nama Email sudah ada', 1, '2012-07-23 10:00:01', NULL, '0000-00-00 00:00:00'),
(388, 'en', 'Bussiness Sector name already used', 1, '2012-07-23 10:11:02', NULL, '0000-00-00 00:00:00'),
(388, 'id', 'Nama Sektor Bisnis sudah ada', 1, '2012-07-23 10:11:02', NULL, '0000-00-00 00:00:00'),
(389, 'en', 'Driving License Type name already used', 1, '2012-07-23 10:20:53', NULL, '0000-00-00 00:00:00'),
(389, 'id', 'Nama Surat Ijin Mengemudi sudah ada', 1, '2012-07-23 10:20:53', NULL, '0000-00-00 00:00:00'),
(390, 'en', 'Funding Source name already used', 1, '2012-07-23 10:29:07', NULL, '0000-00-00 00:00:00'),
(390, 'id', 'Nama Asal Dana sudah ada', 1, '2012-07-23 10:29:07', NULL, '0000-00-00 00:00:00'),
(391, 'en', 'Funding Source Code already used', 1, '2012-07-23 10:35:59', NULL, '0000-00-00 00:00:00'),
(391, 'id', 'Kode Asal Dana sudah ada', 1, '2012-07-23 10:35:59', NULL, '0000-00-00 00:00:00'),
(392, 'en', ' Hotel type name already used', 1, '2012-07-23 10:39:08', NULL, '0000-00-00 00:00:00'),
(392, 'id', 'Nama Hotel sudah ada', 1, '2012-07-23 10:39:08', NULL, '0000-00-00 00:00:00'),
(393, 'en', 'Identity Type name already used', 1, '2012-07-23 10:45:33', NULL, '0000-00-00 00:00:00'),
(393, 'id', ' Nama Jenis Identitas sudah ada', 1, '2012-07-23 10:45:33', NULL, '0000-00-00 00:00:00'),
(394, 'en', 'Other Identity Type name already used', 1, '2012-07-23 10:53:19', NULL, '0000-00-00 00:00:00'),
(394, 'id', 'Nama Jenis Identitas lain sudah ada', 1, '2012-07-23 10:53:19', NULL, '0000-00-00 00:00:00'),
(395, 'en', 'Bank Type name already used', 1, '2012-07-23 10:56:28', NULL, '0000-00-00 00:00:00'),
(395, 'id', 'Nama Jenis Bank sudah ada', 1, '2012-07-23 10:56:28', NULL, '0000-00-00 00:00:00'),
(396, 'en', 'Bank Branch name already used', 1, '2012-07-23 11:01:53', NULL, '0000-00-00 00:00:00'),
(396, 'id', 'Nama Bank Cabang sudah ada', 1, '2012-07-23 11:01:53', NULL, '0000-00-00 00:00:00'),
(397, 'en', 'Bank Branch Code already used', 1, '2012-07-23 11:10:20', NULL, '0000-00-00 00:00:00'),
(397, 'id', 'Kode Bank Cabang sudah ada', 1, '2012-07-23 11:10:20', NULL, '0000-00-00 00:00:00'),
(398, 'en', 'Country name already used', 1, '2012-07-23 11:18:45', NULL, '0000-00-00 00:00:00'),
(398, 'id', 'Nama Negara sudah ada', 1, '2012-07-23 11:18:45', NULL, '0000-00-00 00:00:00'),
(399, 'en', 'Country Code already used', 1, '2012-07-23 11:21:47', NULL, '0000-00-00 00:00:00'),
(399, 'id', 'Kode Negara sudah ada', 1, '2012-07-23 11:21:47', NULL, '0000-00-00 00:00:00'),
(400, 'en', 'State Code already used', 1, '2012-07-23 11:46:40', NULL, '0000-00-00 00:00:00'),
(400, 'id', 'Kode Propinsi sudah ada', 1, '2012-07-23 11:46:40', NULL, '0000-00-00 00:00:00'),
(401, 'en', 'State Name already used', 1, '2012-07-23 11:47:44', NULL, '0000-00-00 00:00:00'),
(401, 'id', 'Nama Propinsi sudah ada', 1, '2012-07-23 11:47:44', NULL, '0000-00-00 00:00:00'),
(402, 'en', 'City Code already used', 1, '2012-07-23 11:56:22', NULL, '0000-00-00 00:00:00'),
(402, 'id', 'Kode Kota/ Kabupaten sudah ada', 1, '2012-07-23 11:56:22', NULL, '0000-00-00 00:00:00'),
(403, 'en', 'City Name already used', 1, '2012-07-23 11:56:52', NULL, '0000-00-00 00:00:00'),
(403, 'id', ' Nama Kota/ Kabupaten sudah ada', 1, '2012-07-23 11:56:53', NULL, '0000-00-00 00:00:00'),
(404, 'en', 'Instant Messaging name already used', 1, '2012-07-23 12:15:10', NULL, '0000-00-00 00:00:00'),
(404, 'id', 'Nama Instant Messaging sudah ada', 1, '2012-07-23 12:15:10', NULL, '0000-00-00 00:00:00'),
(405, 'en', 'KBLI name already used', 1, '2012-07-23 12:35:42', NULL, '0000-00-00 00:00:00'),
(405, 'id', 'Nama KBLI sudah ada', 1, '2012-07-23 12:35:42', NULL, '0000-00-00 00:00:00'),
(406, 'en', 'KBLI Code already used', 1, '2012-07-23 12:36:12', NULL, '0000-00-00 00:00:00'),
(406, 'id', 'Kode KBLI sudah ada', 1, '2012-07-23 12:36:12', NULL, '0000-00-00 00:00:00'),
(407, 'en', 'Structural Position name already used', 1, '2012-07-23 13:10:42', NULL, '0000-00-00 00:00:00'),
(407, 'id', 'Nama Jabatan Struktural sudah ada', 1, '2012-07-23 13:10:42', NULL, '0000-00-00 00:00:00'),
(408, 'en', 'Structural Position Code already used', 1, '2012-07-23 13:11:36', NULL, '0000-00-00 00:00:00'),
(408, 'id', 'Kode Jabatan Struktural sudah ada', 1, '2012-07-23 13:11:36', NULL, '0000-00-00 00:00:00'),
(409, 'en', 'Train Date', 1, '2012-07-23 13:30:09', NULL, '0000-00-00 00:00:00'),
(409, 'id', 'Tanggal Masa Percobaan', 1, '2012-07-23 13:30:09', NULL, '0000-00-00 00:00:00'),
(410, 'en', 'Join Date', 1, '2012-07-23 13:30:38', NULL, '0000-00-00 00:00:00'),
(410, 'id', 'Tanggal Bergabung Institusi', 1, '2012-07-23 13:30:38', NULL, '0000-00-00 00:00:00'),
(411, 'en', 'Quit Date', 1, '2012-07-23 13:31:00', NULL, '0000-00-00 00:00:00'),
(411, 'id', 'Tanggal Keluar Institusi', 1, '2012-07-23 13:31:00', NULL, '0000-00-00 00:00:00'),
(412, 'en', 'Approved By', 1, '2012-07-23 15:05:06', NULL, '0000-00-00 00:00:00'),
(412, 'id', 'Di Setujui Oleh', 1, '2012-07-23 15:05:06', NULL, '0000-00-00 00:00:00'),
(413, 'en', 'Employee Contract', 1, '2012-07-24 08:43:26', NULL, '0000-00-00 00:00:00'),
(413, 'id', 'Kontrak Kerja Pegawai', 1, '2012-07-24 08:43:26', NULL, '0000-00-00 00:00:00'),
(414, 'en', 'Employee Contract List', 1, '2012-07-24 08:43:50', NULL, '0000-00-00 00:00:00'),
(414, 'id', 'Daftar Kontrak Kerja Pegawai', 1, '2012-07-24 08:43:50', NULL, '0000-00-00 00:00:00'),
(415, 'en', 'Empty field if no changes', 1, '2012-07-24 10:08:34', NULL, '0000-00-00 00:00:00'),
(415, 'id', 'Tanpa diisi jika belum ada perubahan', 1, '2012-07-24 10:08:34', NULL, '0000-00-00 00:00:00'),
(416, 'en', 'One month before Expired', 1, '2012-07-24 10:09:36', NULL, '0000-00-00 00:00:00'),
(416, 'id', 'Satu Bulan sebelum masa habis', 1, '2012-07-24 10:09:36', NULL, '0000-00-00 00:00:00'),
(417, 'en', 'Two Weeks before Expired', 1, '2012-07-24 10:10:50', NULL, '0000-00-00 00:00:00'),
(417, 'id', 'Dua Minggu sebelum masa habis', 1, '2012-07-24 10:10:50', NULL, '0000-00-00 00:00:00'),
(418, 'en', 'One Week before Expired', 1, '2012-07-24 10:11:32', NULL, '0000-00-00 00:00:00'),
(418, 'id', 'Satu Minggu sebelum masa habis', 1, '2012-07-24 10:11:32', NULL, '0000-00-00 00:00:00'),
(419, 'en', 'One Day before Expired', 1, '2012-07-24 10:12:11', NULL, '0000-00-00 00:00:00'),
(419, 'id', 'Satu Hari sebelum masa habis', 1, '2012-07-24 10:12:11', NULL, '0000-00-00 00:00:00'),
(420, 'en', 'Reminder 1st', 1, '2012-07-24 10:14:41', NULL, '0000-00-00 00:00:00'),
(420, 'id', 'Pengingat I', 1, '2012-07-24 10:14:41', NULL, '0000-00-00 00:00:00'),
(421, 'en', 'Reminder 2st', 1, '2012-07-24 10:14:34', NULL, '0000-00-00 00:00:00'),
(421, 'id', 'Pengingat II', 1, '2012-07-24 10:14:34', NULL, '0000-00-00 00:00:00'),
(422, 'en', 'Reminder 3st', 1, '2012-07-24 10:15:37', NULL, '0000-00-00 00:00:00'),
(422, 'id', 'Pengingat III', 1, '2012-07-24 10:15:37', NULL, '0000-00-00 00:00:00'),
(423, 'en', 'Final Reminder', 1, '2012-07-24 10:16:44', NULL, '0000-00-00 00:00:00'),
(423, 'id', 'Pengingat Akhir', 1, '2012-07-24 10:16:44', NULL, '0000-00-00 00:00:00'),
(424, 'en', 'Month', 1, '2012-07-24 10:24:45', NULL, '0000-00-00 00:00:00'),
(424, 'id', 'Bulan', 1, '2012-07-24 10:24:45', NULL, '0000-00-00 00:00:00'),
(425, 'en', 'Year', 1, '2012-07-24 10:24:54', NULL, '0000-00-00 00:00:00'),
(425, 'id', 'Tahun', 1, '2012-07-24 10:24:54', NULL, '0000-00-00 00:00:00'),
(426, 'en', 'Identity', 1, '2013-11-06 09:19:12', NULL, '0000-00-00 00:00:00'),
(426, 'id', 'Identitas', 1, '2013-11-06 09:19:12', NULL, '0000-00-00 00:00:00'),
(427, 'en', 'Identity List', 1, '2012-07-24 12:58:42', NULL, '0000-00-00 00:00:00'),
(427, 'id', 'Daftar Identitas Utama', 1, '2012-07-24 12:58:42', NULL, '0000-00-00 00:00:00'),
(428, 'en', 'Work Period Type', 1, '2012-07-24 13:07:29', NULL, '0000-00-00 00:00:00'),
(428, 'id', 'Jenis Periode Kerja', 1, '2012-07-24 13:07:29', NULL, '0000-00-00 00:00:00'),
(429, 'en', 'Status Change', 1, '2012-07-24 13:29:59', NULL, '0000-00-00 00:00:00'),
(429, 'id', 'Status Ubah', 1, '2012-07-24 13:29:59', NULL, '0000-00-00 00:00:00'),
(430, 'en', 'By Employee', 1, '2012-07-24 13:30:16', NULL, '0000-00-00 00:00:00'),
(430, 'id', 'Oleh Pegawai', 1, '2012-07-24 13:30:16', NULL, '0000-00-00 00:00:00'),
(431, 'en', 'Identity Card', 1, '2012-07-24 13:38:54', NULL, '0000-00-00 00:00:00'),
(431, 'id', 'Kartu Identitas', 1, '2012-07-24 13:38:54', NULL, '0000-00-00 00:00:00'),
(432, 'en', 'Employee Detail', 1, '2012-07-25 08:02:08', NULL, '0000-00-00 00:00:00'),
(432, 'id', 'Detail Pegawai', 1, '2012-07-25 08:02:08', NULL, '0000-00-00 00:00:00'),
(433, 'en', 'Employee', 1, '2012-07-25 08:04:06', NULL, '0000-00-00 00:00:00'),
(433, 'id', 'Pegawai', 1, '2012-07-25 08:04:06', NULL, '0000-00-00 00:00:00'),
(434, 'en', 'Driving License', 1, '2012-07-25 08:41:00', NULL, '0000-00-00 00:00:00'),
(434, 'id', 'Surat Ijin Mengemudi (SIM)', 1, '2012-07-25 08:41:00', NULL, '0000-00-00 00:00:00'),
(435, 'en', 'Driving License List', 1, '2012-07-25 08:20:29', NULL, '0000-00-00 00:00:00'),
(435, 'id', 'Daftar Surat Ijin Mengemudi', 1, '2012-07-25 08:20:29', NULL, '0000-00-00 00:00:00'),
(436, 'en', 'Occupation', 1, '2012-07-25 08:41:13', NULL, '0000-00-00 00:00:00'),
(436, 'id', 'Pekerjaan', 1, '2012-07-25 08:41:13', NULL, '0000-00-00 00:00:00'),
(437, 'en', 'Valid Date', 1, '2012-07-25 08:57:38', NULL, '0000-00-00 00:00:00'),
(437, 'id', 'Tanggal Berlaku', 1, '2012-07-25 08:57:38', NULL, '0000-00-00 00:00:00'),
(438, 'en', 'Passport', 1, '2012-07-25 10:28:09', NULL, '0000-00-00 00:00:00'),
(438, 'id', 'Passport', 1, '2012-07-25 10:28:09', NULL, '0000-00-00 00:00:00'),
(439, 'en', 'Passport List', 1, '2012-07-25 10:28:39', NULL, '0000-00-00 00:00:00'),
(439, 'id', 'Daftar Passport', 1, '2012-07-25 10:28:39', NULL, '0000-00-00 00:00:00'),
(440, 'en', 'Date of Issue', 1, '2012-07-25 11:21:08', NULL, '0000-00-00 00:00:00'),
(440, 'id', 'Tanggal Pengeluaran', 1, '2012-07-25 11:21:08', NULL, '0000-00-00 00:00:00'),
(441, 'en', 'Date of Expired', 1, '2012-07-25 11:20:53', NULL, '0000-00-00 00:00:00'),
(441, 'id', 'Tanggal Habis Masa Berlaku', 1, '2012-07-25 11:20:53', NULL, '0000-00-00 00:00:00'),
(442, 'en', 'Country Code', 1, '2012-07-25 10:34:07', NULL, '0000-00-00 00:00:00'),
(442, 'id', 'Kode Negara', 1, '2012-07-25 10:34:07', NULL, '0000-00-00 00:00:00'),
(443, 'en', 'Passport No', 1, '2012-07-25 10:54:08', NULL, '0000-00-00 00:00:00'),
(443, 'id', 'No Passport', 1, '2012-07-25 10:54:08', NULL, '0000-00-00 00:00:00'),
(444, 'en', 'Nationality', 1, '2012-07-25 11:13:22', NULL, '0000-00-00 00:00:00'),
(444, 'id', 'Kewarganegaraan', 1, '2012-07-25 11:13:22', NULL, '0000-00-00 00:00:00'),
(445, 'en', 'Issuing Office', 1, '2012-07-25 11:23:14', NULL, '0000-00-00 00:00:00'),
(445, 'id', 'Kantor yang Mengeluarkan', 1, '2012-07-25 11:23:14', NULL, '0000-00-00 00:00:00'),
(446, 'en', 'Status Input From', 1, '2012-07-25 12:37:28', NULL, '0000-00-00 00:00:00'),
(446, 'id', 'Status Asal Input', 1, '2012-07-25 12:37:28', NULL, '0000-00-00 00:00:00'),
(447, 'en', 'Back Office', 1, '2012-07-25 12:42:50', NULL, '0000-00-00 00:00:00'),
(447, 'id', 'Back Office', 1, '2012-07-25 12:42:50', NULL, '0000-00-00 00:00:00'),
(448, 'en', 'Visa', 1, '2012-07-25 13:04:35', NULL, '0000-00-00 00:00:00'),
(448, 'id', 'Visa', 1, '2012-07-25 13:04:35', NULL, '0000-00-00 00:00:00'),
(449, 'en', 'Visa List', 1, '2012-07-25 13:04:53', NULL, '0000-00-00 00:00:00'),
(449, 'id', 'Daftar Visa', 1, '2012-07-25 13:04:53', NULL, '0000-00-00 00:00:00'),
(450, 'en', 'Visa Type', 1, '2012-07-25 13:07:20', NULL, '0000-00-00 00:00:00'),
(450, 'id', 'Jenis Visa', 1, '2012-07-25 13:07:20', NULL, '0000-00-00 00:00:00'),
(451, 'en', 'Visa No', 1, '2012-07-25 13:18:10', NULL, '0000-00-00 00:00:00'),
(451, 'id', 'No Visa', 1, '2012-07-25 13:18:10', NULL, '0000-00-00 00:00:00'),
(452, 'en', 'Entry Code', 1, '2012-07-25 13:20:08', NULL, '0000-00-00 00:00:00'),
(452, 'id', 'Kode Entry', 1, '2012-07-25 13:20:08', NULL, '0000-00-00 00:00:00'),
(453, 'en', 'Maximum Stay', 1, '2012-07-25 13:23:04', NULL, '0000-00-00 00:00:00'),
(453, 'id', 'Maksimal Hari Tinggal', 1, '2012-07-25 13:23:04', NULL, '0000-00-00 00:00:00'),
(454, 'en', 'In Days', 1, '2012-07-25 13:23:24', NULL, '0000-00-00 00:00:00'),
(454, 'id', 'Dalam Hari', 1, '2012-07-25 13:23:24', NULL, '0000-00-00 00:00:00'),
(455, 'en', 'Other Identity', 1, '2012-07-25 14:42:37', NULL, '0000-00-00 00:00:00'),
(455, 'id', 'Identitas Lain', 1, '2012-07-25 14:42:38', NULL, '0000-00-00 00:00:00'),
(456, 'en', 'Other Identity List', 1, '2012-07-25 14:43:00', NULL, '0000-00-00 00:00:00'),
(456, 'id', 'Daftar Identitas Lain', 1, '2012-07-25 14:43:00', NULL, '0000-00-00 00:00:00'),
(457, 'en', 'Address List', 1, '2012-07-26 08:39:26', NULL, '0000-00-00 00:00:00'),
(457, 'id', 'Daftar Alamat', 1, '2012-07-26 08:39:26', NULL, '0000-00-00 00:00:00'),
(458, 'en', 'Address Category', 1, '2012-07-26 08:42:45', NULL, '0000-00-00 00:00:00'),
(458, 'id', 'Kategori Alamat', 1, '2012-07-26 08:42:45', NULL, '0000-00-00 00:00:00'),
(459, 'en', 'Village', 1, '2012-07-26 09:14:43', NULL, '0000-00-00 00:00:00'),
(459, 'id', 'Kelurahan', 1, '2012-07-26 09:14:43', NULL, '0000-00-00 00:00:00'),
(460, 'en', 'Postal Code', 1, '2012-07-26 09:21:31', NULL, '0000-00-00 00:00:00'),
(460, 'id', 'Kode Pos', 1, '2012-07-26 09:21:31', NULL, '0000-00-00 00:00:00'),
(461, 'en', 'Fax No', 1, '2012-07-26 09:33:09', NULL, '0000-00-00 00:00:00'),
(461, 'id', 'No Fax', 1, '2012-07-26 09:33:09', NULL, '0000-00-00 00:00:00'),
(462, 'en', 'Area Code', 1, '2012-07-26 10:45:48', NULL, '0000-00-00 00:00:00'),
(462, 'id', 'Kode Area', 1, '2012-07-26 10:45:48', NULL, '0000-00-00 00:00:00'),
(463, 'en', 'Phone List', 1, '2012-07-26 10:48:37', NULL, '0000-00-00 00:00:00'),
(463, 'id', 'Daftar Telepon', 1, '2012-07-26 10:48:37', NULL, '0000-00-00 00:00:00'),
(464, 'en', 'Example', 1, '2012-07-26 11:07:58', NULL, '0000-00-00 00:00:00'),
(464, 'id', 'Contoh', 1, '2012-07-26 11:07:59', NULL, '0000-00-00 00:00:00'),
(465, 'en', 'Street', 1, '2012-07-26 11:25:42', NULL, '0000-00-00 00:00:00'),
(465, 'id', 'Alamat', 1, '2012-07-26 11:25:42', NULL, '0000-00-00 00:00:00'),
(466, 'en', 'Email List', 1, '2012-07-26 11:37:36', NULL, '0000-00-00 00:00:00'),
(466, 'id', 'Daftar Email', 1, '2012-07-26 11:37:36', NULL, '0000-00-00 00:00:00'),
(467, 'en', 'Instant Messaging (IM)', 1, '2012-07-26 13:19:46', NULL, '0000-00-00 00:00:00'),
(467, 'id', 'Instant Messaging (IM)', 1, '2012-07-26 13:19:46', NULL, '0000-00-00 00:00:00'),
(468, 'en', 'Instant Messaging (IM) List', 1, '2012-07-26 13:20:38', NULL, '0000-00-00 00:00:00'),
(468, 'id', 'Daftar Instant Messaging (IM)', 1, '2012-07-26 13:20:38', NULL, '0000-00-00 00:00:00'),
(469, 'en', 'IM Client', 1, '2012-07-26 13:22:43', NULL, '0000-00-00 00:00:00'),
(469, 'id', 'IM Client', 1, '2012-07-26 13:22:43', NULL, '0000-00-00 00:00:00'),
(470, 'en', 'IM Icon', 1, '2012-07-26 13:23:37', NULL, '0000-00-00 00:00:00'),
(470, 'id', 'IM Icon', 1, '2012-07-26 13:23:37', NULL, '0000-00-00 00:00:00'),
(471, 'en', 'PIN', 1, '2012-07-26 13:23:46', NULL, '0000-00-00 00:00:00'),
(471, 'id', 'PIN', 1, '2012-07-26 13:23:46', NULL, '0000-00-00 00:00:00'),
(472, 'en', 'Social Media', 1, '2012-07-26 15:19:12', NULL, '0000-00-00 00:00:00'),
(472, 'id', 'Jejaring Sosial', 1, '2012-07-26 15:19:12', NULL, '0000-00-00 00:00:00'),
(473, 'en', 'Social Media List', 1, '2012-07-26 15:19:33', NULL, '0000-00-00 00:00:00'),
(473, 'id', 'Daftar Jejaring Sosial', 1, '2012-07-26 15:19:33', NULL, '0000-00-00 00:00:00'),
(474, 'en', 'Website', 1, '2012-07-27 08:19:17', NULL, '0000-00-00 00:00:00'),
(474, 'id', 'Website', 1, '2012-07-27 08:19:17', NULL, '0000-00-00 00:00:00'),
(475, 'en', 'Website List', 1, '2012-07-27 08:19:38', NULL, '0000-00-00 00:00:00'),
(475, 'id', 'Daftar Website', 1, '2012-07-27 08:19:38', NULL, '0000-00-00 00:00:00'),
(476, 'en', 'Relation', 1, '2012-07-27 08:52:39', NULL, '0000-00-00 00:00:00'),
(476, 'id', 'Hubungan', 1, '2012-07-27 08:52:39', NULL, '0000-00-00 00:00:00'),
(477, 'en', 'Referral', 1, '2012-07-27 08:53:03', NULL, '0000-00-00 00:00:00'),
(477, 'id', 'Kontak Orang Terdekat', 1, '2012-07-27 08:53:03', NULL, '0000-00-00 00:00:00'),
(478, 'en', 'Referral List', 1, '2012-07-27 08:54:17', NULL, '0000-00-00 00:00:00'),
(478, 'id', 'Daftar Kontak Orang Terdekat', 1, '2012-07-27 08:54:17', NULL, '0000-00-00 00:00:00'),
(479, 'en', 'Mobile', 1, '2012-07-27 09:14:56', NULL, '0000-00-00 00:00:00'),
(479, 'id', 'No Handphone', 1, '2012-07-27 09:14:56', NULL, '0000-00-00 00:00:00'),
(480, 'en', 'Period of Study', 1, '2012-07-27 10:53:59', NULL, '0000-00-00 00:00:00'),
(480, 'id', 'Masa Studi', 1, '2012-07-27 10:53:59', NULL, '0000-00-00 00:00:00'),
(481, 'en', 'Length of Study', 1, '2012-07-27 10:54:24', NULL, '0000-00-00 00:00:00'),
(481, 'id', 'Lama Studi', 1, '2012-07-27 10:54:25', NULL, '0000-00-00 00:00:00'),
(482, 'en', 'Formal Education', 1, '2012-07-27 10:54:49', NULL, '0000-00-00 00:00:00'),
(482, 'id', 'Pendidikan Formal', 1, '2012-07-27 10:54:49', NULL, '0000-00-00 00:00:00'),
(483, 'en', 'Formal Education List', 1, '2012-07-27 10:55:16', NULL, '0000-00-00 00:00:00'),
(483, 'id', 'Daftar Pendidikan Formal', 1, '2012-07-27 10:55:16', NULL, '0000-00-00 00:00:00'),
(484, 'en', 'Level', 1, '2012-07-27 11:00:34', NULL, '0000-00-00 00:00:00'),
(484, 'id', 'Tingkat', 1, '2012-07-27 11:00:34', NULL, '0000-00-00 00:00:00'),
(485, 'en', 'Education', 1, '2012-07-27 11:05:26', NULL, '0000-00-00 00:00:00'),
(485, 'id', 'Pendidikan', 1, '2012-07-27 11:05:26', NULL, '0000-00-00 00:00:00'),
(486, 'en', 'Definition', 1, '2013-11-06 09:43:55', NULL, '0000-00-00 00:00:00'),
(486, 'id', 'Definisi', 1, '2013-11-06 09:43:55', NULL, '0000-00-00 00:00:00'),
(487, 'en', 'Akademik Degree', 1, '2012-07-27 12:54:36', NULL, '0000-00-00 00:00:00'),
(487, 'id', 'Gelar Akademik', 1, '2012-07-27 12:54:36', NULL, '0000-00-00 00:00:00'),
(488, 'en', 'Prefix', 1, '2012-07-27 12:56:08', NULL, '0000-00-00 00:00:00'),
(488, 'id', 'Depan', 1, '2012-07-27 12:56:08', NULL, '0000-00-00 00:00:00'),
(489, 'en', 'Sufix', 1, '2012-07-27 12:55:34', NULL, '0000-00-00 00:00:00'),
(489, 'id', 'Belakang', 1, '2012-07-27 12:55:34', NULL, '0000-00-00 00:00:00'),
(491, 'en', 'Total Semester', 1, '2012-07-27 13:32:52', NULL, '0000-00-00 00:00:00'),
(491, 'id', 'Total Semester', 1, '2012-07-27 13:32:52', NULL, '0000-00-00 00:00:00'),
(492, 'en', 'In Year', 1, '2012-07-27 13:33:12', NULL, '0000-00-00 00:00:00'),
(492, 'id', 'Dalam Tahun', 1, '2012-07-27 13:33:12', NULL, '0000-00-00 00:00:00'),
(493, 'en', 'In Semester', 1, '2012-07-27 13:33:31', NULL, '0000-00-00 00:00:00'),
(493, 'id', 'Dalam Semester', 1, '2012-07-27 13:33:31', NULL, '0000-00-00 00:00:00'),
(494, 'en', 'IPK', 1, '2012-07-27 13:34:54', NULL, '0000-00-00 00:00:00'),
(494, 'id', 'IPK', 1, '2012-07-27 13:34:54', NULL, '0000-00-00 00:00:00'),
(495, 'en', 'Diploma No', 1, '2012-07-27 13:36:29', NULL, '0000-00-00 00:00:00'),
(495, 'id', 'No Ijazah', 1, '2012-07-27 13:36:29', NULL, '0000-00-00 00:00:00'),
(496, 'en', 'Legalized Date', 1, '2012-07-27 13:38:11', NULL, '0000-00-00 00:00:00'),
(496, 'id', 'Tanggal Legalisir Ijazah', 1, '2012-07-27 13:38:11', NULL, '0000-00-00 00:00:00'),
(497, 'en', 'Ceritificate Year', 1, '2012-07-30 11:14:50', NULL, '0000-00-00 00:00:00'),
(497, 'id', 'Tahun Sertifikasi', 1, '2012-07-30 11:14:50', NULL, '0000-00-00 00:00:00'),
(498, 'en', 'Seminar', 1, '2012-07-30 10:20:10', NULL, '0000-00-00 00:00:00'),
(498, 'id', 'Seminar', 1, '2012-07-30 10:20:10', NULL, '0000-00-00 00:00:00'),
(499, 'en', 'Seminar List', 1, '2012-07-30 10:20:30', NULL, '0000-00-00 00:00:00'),
(499, 'id', 'Daftar Seminar', 1, '2012-07-30 10:20:30', NULL, '0000-00-00 00:00:00'),
(500, 'en', 'Workshop', 1, '2012-07-30 11:11:45', NULL, '0000-00-00 00:00:00'),
(500, 'id', 'Workshop / Pelatihan', 1, '2012-07-30 11:11:45', NULL, '0000-00-00 00:00:00'),
(501, 'en', 'Workshop List', 1, '2012-07-30 10:21:41', NULL, '0000-00-00 00:00:00'),
(501, 'id', 'Daftar Workshop / Pelatihan', 1, '2012-07-30 10:21:41', NULL, '0000-00-00 00:00:00'),
(502, 'en', 'Theme', 1, '2012-07-30 11:12:09', NULL, '0000-00-00 00:00:00'),
(502, 'id', 'Tema', 1, '2012-07-30 11:12:09', NULL, '0000-00-00 00:00:00'),
(503, 'en', 'Background', 1, '2012-07-30 11:12:28', NULL, '0000-00-00 00:00:00'),
(503, 'id', 'Latar Belakang', 1, '2012-07-30 11:12:28', NULL, '0000-00-00 00:00:00'),
(504, 'en', 'Seminar Name', 1, '2012-07-30 11:12:45', NULL, '0000-00-00 00:00:00'),
(504, 'id', 'Nama Seminar', 1, '2012-07-30 11:12:45', NULL, '0000-00-00 00:00:00'),
(505, 'en', 'Role', 1, '2012-07-30 11:12:57', NULL, '0000-00-00 00:00:00'),
(505, 'id', 'Keperluan', 1, '2012-07-30 11:12:57', NULL, '0000-00-00 00:00:00'),
(506, 'en', 'Information', 1, '2012-07-30 11:13:17', NULL, '0000-00-00 00:00:00'),
(506, 'id', 'Informasi', 1, '2012-07-30 11:13:17', NULL, '0000-00-00 00:00:00'),
(507, 'en', 'Trainer', 1, '2012-07-30 11:13:43', NULL, '0000-00-00 00:00:00'),
(507, 'id', 'Pelatih', 1, '2012-07-30 11:13:43', NULL, '0000-00-00 00:00:00'),
(508, 'en', 'Trainer Profile ', 1, '2012-07-30 11:13:57', NULL, '0000-00-00 00:00:00'),
(508, 'id', 'Profil Pelatih', 1, '2012-07-30 11:13:57', NULL, '0000-00-00 00:00:00'),
(509, 'en', 'Duration', 1, '2012-07-30 11:15:34', NULL, '0000-00-00 00:00:00'),
(509, 'id', 'Durasi', 1, '2012-07-30 11:15:34', NULL, '0000-00-00 00:00:00'),
(510, 'en', 'Date of Implementation', 1, '2012-07-30 11:15:58', NULL, '0000-00-00 00:00:00'),
(510, 'id', 'Tanggal Pelaksanaan', 1, '2012-07-30 11:15:58', NULL, '0000-00-00 00:00:00'),
(511, 'en', 'Organizer', 1, '2012-07-30 11:16:16', NULL, '0000-00-00 00:00:00'),
(511, 'id', 'Penyelenggara', 1, '2012-07-30 11:16:16', NULL, '0000-00-00 00:00:00'),
(512, 'en', 'Workshop Name', 1, '2012-07-30 11:16:39', NULL, '0000-00-00 00:00:00'),
(512, 'id', 'Nama Pelatihan', 1, '2012-07-30 11:16:39', NULL, '0000-00-00 00:00:00'),
(513, 'en', 'Session', 1, '2012-07-30 11:16:53', NULL, '0000-00-00 00:00:00'),
(513, 'id', 'Sesi', 1, '2012-07-30 11:16:54', NULL, '0000-00-00 00:00:00'),
(514, 'en', 'Place', 1, '2012-07-30 11:17:17', NULL, '0000-00-00 00:00:00'),
(514, 'id', 'Tempat', 1, '2012-07-30 11:17:17', NULL, '0000-00-00 00:00:00'),
(515, 'en', 'Building', 1, '2012-07-30 11:17:33', NULL, '0000-00-00 00:00:00'),
(515, 'id', 'Gedung', 1, '2012-07-30 11:17:33', NULL, '0000-00-00 00:00:00'),
(516, 'en', 'Start', 1, '2012-07-30 11:17:54', NULL, '0000-00-00 00:00:00'),
(516, 'id', 'Mulai', 1, '2012-07-30 11:17:54', NULL, '0000-00-00 00:00:00'),
(517, 'en', 'End', 1, '2012-07-30 11:18:02', NULL, '0000-00-00 00:00:00'),
(517, 'id', 'Selesai', 1, '2012-07-30 11:18:02', NULL, '0000-00-00 00:00:00'),
(518, 'en', 'In Hour', 1, '2012-07-30 11:19:28', NULL, '0000-00-00 00:00:00'),
(518, 'id', 'Dalam Jam', 1, '2012-07-30 11:19:28', NULL, '0000-00-00 00:00:00'),
(519, 'en', 'Work Period', 1, '2012-07-30 11:34:19', NULL, '0000-00-00 00:00:00'),
(519, 'id', 'Masa Kerja', 1, '2012-07-30 11:34:19', NULL, '0000-00-00 00:00:00'),
(520, 'en', 'Work Experience', 1, '2012-07-30 11:35:03', NULL, '0000-00-00 00:00:00'),
(520, 'id', 'Pengalaman Kerja', 1, '2012-07-30 11:35:03', NULL, '0000-00-00 00:00:00'),
(521, 'en', 'Work Experience List', 1, '2012-07-30 11:35:23', NULL, '0000-00-00 00:00:00'),
(521, 'id', 'Daftar Pengalaman Kerja', 1, '2012-07-30 11:35:23', NULL, '0000-00-00 00:00:00'),
(522, 'en', 'Company Information', 1, '2012-07-30 11:47:11', NULL, '0000-00-00 00:00:00'),
(522, 'id', 'Informasi Perusahaan', 1, '2012-07-30 11:47:11', NULL, '0000-00-00 00:00:00'),
(523, 'en', 'Work Reference', 1, '2012-07-30 11:57:48', NULL, '0000-00-00 00:00:00'),
(523, 'id', 'Referensi Kerja', 1, '2012-07-30 11:57:48', NULL, '0000-00-00 00:00:00'),
(524, 'en', 'Start Date', 1, '2012-07-30 12:00:57', NULL, '0000-00-00 00:00:00'),
(524, 'id', 'Tanggal Mulai', 1, '2012-07-30 12:00:57', NULL, '0000-00-00 00:00:00'),
(525, 'en', 'Contact No', 1, '2012-07-30 12:01:11', NULL, '0000-00-00 00:00:00'),
(525, 'id', 'No Kontak', 1, '2012-07-30 12:01:11', NULL, '0000-00-00 00:00:00'),
(526, 'en', 'Work Referral', 1, '2012-07-30 12:02:04', NULL, '0000-00-00 00:00:00'),
(526, 'id', 'Referensi Kerja', 1, '2012-07-30 12:02:04', NULL, '0000-00-00 00:00:00'),
(527, 'en', 'Semester', 1, '2012-07-30 15:28:16', NULL, '0000-00-00 00:00:00'),
(527, 'id', 'Semester', 1, '2012-07-30 15:28:16', NULL, '0000-00-00 00:00:00'),
(528, 'en', 'Project Name', 1, '2012-07-31 08:23:11', NULL, '0000-00-00 00:00:00'),
(528, 'id', 'Nama Proyek', 1, '2012-07-31 08:23:12', NULL, '0000-00-00 00:00:00'),
(529, 'en', 'Contract', 1, '2012-07-31 08:23:22', NULL, '0000-00-00 00:00:00'),
(529, 'id', 'Kontrak', 1, '2012-07-31 08:23:22', NULL, '0000-00-00 00:00:00'),
(530, 'en', 'Service Users', 1, '2012-07-31 08:24:33', NULL, '0000-00-00 00:00:00'),
(530, 'id', 'Pengguna Jasa', 1, '2012-07-31 08:24:33', NULL, '0000-00-00 00:00:00'),
(531, 'en', 'Client', 1, '2012-07-31 08:24:49', NULL, '0000-00-00 00:00:00'),
(531, 'id', 'Pemberi Kerja', 1, '2012-07-31 08:24:49', NULL, '0000-00-00 00:00:00'),
(532, 'en', 'Project Year', 1, '2012-07-31 08:26:25', NULL, '0000-00-00 00:00:00'),
(532, 'id', 'Tahun Proyek', 1, '2012-07-31 08:26:25', NULL, '0000-00-00 00:00:00'),
(533, 'en', 'Project Experience', 1, '2012-07-31 08:27:09', NULL, '0000-00-00 00:00:00'),
(533, 'id', 'Pengalaman Proyek', 1, '2012-07-31 08:27:09', NULL, '0000-00-00 00:00:00'),
(534, 'en', 'Project Experience List', 1, '2012-07-31 08:27:28', NULL, '0000-00-00 00:00:00'),
(534, 'id', 'Daftar Pengalaman Proyek', 1, '2012-07-31 08:27:28', NULL, '0000-00-00 00:00:00'),
(535, 'en', 'Project Location', 1, '2012-07-31 08:40:56', NULL, '0000-00-00 00:00:00'),
(535, 'id', 'Lokasi Proyek', 1, '2012-07-31 08:40:56', NULL, '0000-00-00 00:00:00'),
(536, 'en', 'Project Description', 1, '2012-07-31 08:41:18', NULL, '0000-00-00 00:00:00'),
(536, 'id', 'Deskripsi Proyek', 1, '2012-07-31 08:41:18', NULL, '0000-00-00 00:00:00'),
(537, 'en', 'On Behalf The Company', 1, '2012-07-31 08:41:51', NULL, '0000-00-00 00:00:00'),
(537, 'id', 'Atas Nama Perusahaan', 1, '2012-07-31 08:41:51', NULL, '0000-00-00 00:00:00'),
(538, 'en', 'Job Desc', 1, '2012-07-31 08:48:53', NULL, '0000-00-00 00:00:00'),
(538, 'id', 'Deskripsi Tugas', 1, '2012-07-31 08:48:53', NULL, '0000-00-00 00:00:00'),
(539, 'en', 'Project Period / Contract', 1, '2012-07-31 08:49:38', NULL, '0000-00-00 00:00:00'),
(539, 'id', 'Masa Proyek / Kontrak', 1, '2012-07-31 08:49:38', NULL, '0000-00-00 00:00:00'),
(540, 'en', 'Reference Letter From Client', 1, '2012-07-31 08:50:47', NULL, '0000-00-00 00:00:00'),
(540, 'id', 'Surat Referensi Dari Pengguna Jasa', 1, '2012-07-31 08:50:47', NULL, '0000-00-00 00:00:00'),
(541, 'en', 'Task Desc', 1, '2012-07-31 09:56:41', NULL, '0000-00-00 00:00:00'),
(541, 'id', 'Deskripsi Tugas', 1, '2012-07-31 09:56:41', NULL, '0000-00-00 00:00:00'),
(542, 'en', 'Organization Experience', 1, '2012-07-31 10:11:14', NULL, '0000-00-00 00:00:00'),
(542, 'id', 'Pengalaman Organisasi', 1, '2012-07-31 10:11:14', NULL, '0000-00-00 00:00:00'),
(543, 'en', 'Organization Experience List', 1, '2012-07-31 10:11:34', NULL, '0000-00-00 00:00:00'),
(543, 'id', 'Daftar Pengalaman Organisasi', 1, '2012-07-31 10:11:34', NULL, '0000-00-00 00:00:00'),
(544, 'en', 'Organization Name', 1, '2012-07-31 10:26:45', NULL, '0000-00-00 00:00:00'),
(544, 'id', 'Nama Organisasi', 1, '2012-07-31 10:26:45', NULL, '0000-00-00 00:00:00'),
(545, 'en', 'Organization Period', 1, '2012-07-31 10:31:11', NULL, '0000-00-00 00:00:00'),
(545, 'id', 'Periode Organisasi', 1, '2012-07-31 10:31:11', NULL, '0000-00-00 00:00:00'),
(546, 'en', 'Role Description', 1, '2012-07-31 10:31:35', NULL, '0000-00-00 00:00:00'),
(546, 'id', 'Deskripsi Peranan', 1, '2012-07-31 10:31:35', NULL, '0000-00-00 00:00:00'),
(547, 'en', 'Achievement Experience', 1, '2012-07-31 11:19:57', NULL, '0000-00-00 00:00:00'),
(547, 'id', 'Pengalaman Penghargaan', 1, '2012-07-31 11:19:57', NULL, '0000-00-00 00:00:00'),
(548, 'en', 'Achievement Experience List', 1, '2012-07-31 11:20:19', NULL, '0000-00-00 00:00:00'),
(548, 'id', 'Daftar Pengalaman Penghargaan', 1, '2012-07-31 11:20:19', NULL, '0000-00-00 00:00:00'),
(549, 'en', 'Achievement Name', 1, '2012-07-31 11:22:04', NULL, '0000-00-00 00:00:00'),
(549, 'id', 'Nama Penghargaan', 1, '2012-07-31 11:22:04', NULL, '0000-00-00 00:00:00'),
(550, 'en', 'Achievement Description', 1, '2013-05-02 15:57:55', NULL, '0000-00-00 00:00:00'),
(550, 'id', 'Deskripsi Penghargaan', 1, '2013-05-02 15:57:55', NULL, '0000-00-00 00:00:00'),
(551, 'en', 'Achievement Year', 1, '2012-07-31 11:28:49', NULL, '0000-00-00 00:00:00'),
(551, 'id', 'Tahun Penghargaan', 1, '2012-07-31 11:28:49', NULL, '0000-00-00 00:00:00'),
(553, 'en', 'PIC', 1, '2012-09-28 16:15:59', NULL, '0000-00-00 00:00:00'),
(553, 'id', 'Penanggung Jawab', 1, '2012-09-28 16:15:59', NULL, '0000-00-00 00:00:00'),
(554, 'en', 'Batchcode', 1, '2012-08-14 09:49:33', NULL, '0000-00-00 00:00:00'),
(554, 'id', 'Batchcode', 1, '2012-08-14 09:49:33', NULL, '0000-00-00 00:00:00'),
(555, 'en', 'Expired', 1, '2012-07-31 12:54:17', NULL, '0000-00-00 00:00:00'),
(555, 'id', 'Kadaluarsa', 1, '2012-07-31 12:54:17', NULL, '0000-00-00 00:00:00'),
(556, 'en', 'Certification', 1, '2012-07-31 12:55:14', NULL, '0000-00-00 00:00:00'),
(556, 'id', 'Sertifikasi', 1, '2012-07-31 12:55:14', NULL, '0000-00-00 00:00:00'),
(557, 'en', 'Certification List', 1, '2012-07-31 12:55:31', NULL, '0000-00-00 00:00:00'),
(557, 'id', 'Daftar Sertifikasi', 1, '2012-07-31 12:55:31', NULL, '0000-00-00 00:00:00'),
(558, 'en', 'Certification Name', 1, '2012-07-31 12:56:03', NULL, '0000-00-00 00:00:00'),
(558, 'id', 'Nama Sertifikasi', 1, '2012-07-31 12:56:03', NULL, '0000-00-00 00:00:00'),
(559, 'en', 'Service Provider', 1, '2012-07-31 13:06:17', NULL, '0000-00-00 00:00:00'),
(559, 'id', 'Penyedia Layanan', 1, '2012-07-31 13:06:17', NULL, '0000-00-00 00:00:00'),
(560, 'en', 'Quotation Date', 1, '2012-07-31 13:10:04', NULL, '0000-00-00 00:00:00'),
(560, 'id', 'Tanggal Penetapan', 1, '2012-07-31 13:10:04', NULL, '0000-00-00 00:00:00'),
(561, 'en', 'Result', 1, '2012-11-23 08:28:47', NULL, '0000-00-00 00:00:00'),
(561, 'id', 'Hasil', 1, '2012-11-23 08:28:47', NULL, '0000-00-00 00:00:00'),
(562, 'en', 'Official Name', 1, '2012-07-31 13:14:51', NULL, '0000-00-00 00:00:00'),
(562, 'id', 'Nama Pengesah', 1, '2012-07-31 13:14:51', NULL, '0000-00-00 00:00:00'),
(563, 'en', 'Official Position', 1, '2012-07-31 13:15:10', NULL, '0000-00-00 00:00:00'),
(563, 'id', 'Jabatan Pengesah', 1, '2012-07-31 13:15:10', NULL, '0000-00-00 00:00:00'),
(564, 'en', 'If There is', 1, '2012-07-31 13:15:29', NULL, '0000-00-00 00:00:00'),
(564, 'id', 'Jika Ada', 1, '2012-07-31 13:15:29', NULL, '0000-00-00 00:00:00'),
(565, 'en', 'All', 1, '2012-07-31 13:20:06', NULL, '0000-00-00 00:00:00'),
(565, 'id', 'Semua', 1, '2012-07-31 13:20:06', NULL, '0000-00-00 00:00:00'),
(566, 'en', 'Supervisor', 1, '2012-07-31 14:30:29', NULL, '0000-00-00 00:00:00'),
(566, 'id', 'Supervisor', 1, '2012-07-31 14:30:29', NULL, '0000-00-00 00:00:00'),
(567, 'en', 'Medical Record Type', 1, '2012-07-31 14:35:04', NULL, '0000-00-00 00:00:00'),
(567, 'id', 'Jenis Rekam Medis', 1, '2012-07-31 14:35:04', NULL, '0000-00-00 00:00:00'),
(568, 'en', 'Supervision', 1, '2012-07-31 15:00:46', NULL, '0000-00-00 00:00:00'),
(568, 'id', 'Pengawasan / Supervisi', 1, '2012-07-31 15:00:46', NULL, '0000-00-00 00:00:00'),
(569, 'en', 'Supervision List', 1, '2012-07-31 15:01:12', NULL, '0000-00-00 00:00:00'),
(569, 'id', 'Daftar Pengawasan', 1, '2012-07-31 15:01:12', NULL, '0000-00-00 00:00:00'),
(570, 'en', 'Functional Position', 1, '2012-08-01 09:41:42', NULL, '0000-00-00 00:00:00'),
(570, 'id', 'Jabatan Fungsional', 1, '2012-08-01 09:41:42', NULL, '0000-00-00 00:00:00'),
(571, 'en', 'Functional Position List ', 1, '2012-08-01 09:42:12', NULL, '0000-00-00 00:00:00'),
(571, 'id', 'Daftar Jabatan Fungsional', 1, '2012-08-01 09:42:12', NULL, '0000-00-00 00:00:00'),
(572, 'en', 'Grade', 1, '2012-08-01 10:36:29', NULL, '0000-00-00 00:00:00'),
(572, 'id', 'Pangkat Golongan', 1, '2012-08-01 10:36:29', NULL, '0000-00-00 00:00:00'),
(573, 'en', 'Grade List', 1, '2012-08-01 10:36:45', NULL, '0000-00-00 00:00:00'),
(573, 'id', 'Daftar Pangkat Golongan', 1, '2012-08-01 10:36:45', NULL, '0000-00-00 00:00:00'),
(574, 'en', 'Marital Status', 1, '2012-08-01 12:35:19', NULL, '0000-00-00 00:00:00'),
(574, 'id', 'Status Pernikahan', 1, '2012-08-01 12:35:19', NULL, '0000-00-00 00:00:00'),
(575, 'en', 'Marital Status List', 1, '2012-08-01 12:35:38', NULL, '0000-00-00 00:00:00'),
(575, 'id', 'Daftar Status Pernikahan', 1, '2012-08-01 12:35:38', NULL, '0000-00-00 00:00:00'),
(576, 'en', 'Marriage Date', 1, '2012-08-01 12:55:11', NULL, '0000-00-00 00:00:00'),
(576, 'id', 'Tanggal Menikah', 1, '2012-08-01 12:55:11', NULL, '0000-00-00 00:00:00'),
(577, 'en', 'Salary Amount', 1, '2012-08-01 15:30:06', NULL, '0000-00-00 00:00:00'),
(577, 'id', 'Nominal Gaji', 1, '2012-08-01 15:30:06', NULL, '0000-00-00 00:00:00'),
(578, 'en', 'Basic Salary', 1, '2012-08-01 15:31:31', NULL, '0000-00-00 00:00:00'),
(578, 'id', 'Gaji Pokok', 1, '2012-08-01 15:31:31', NULL, '0000-00-00 00:00:00'),
(579, 'en', 'Basic Salary List', 1, '2012-08-01 15:31:53', NULL, '0000-00-00 00:00:00'),
(579, 'id', 'Daftar Gaji Pokok', 1, '2012-08-01 15:31:53', NULL, '0000-00-00 00:00:00'),
(580, 'en', ' Punishment Type', 1, '2012-08-01 15:59:15', NULL, '0000-00-00 00:00:00'),
(580, 'id', 'Jenis Hukuman', 1, '2012-08-01 15:59:15', NULL, '0000-00-00 00:00:00'),
(581, 'en', 'Punishment Level', 1, '2012-08-02 08:20:57', NULL, '0000-00-00 00:00:00'),
(581, 'id', 'Tingkat Hukuman', 1, '2012-08-02 08:20:57', NULL, '0000-00-00 00:00:00'),
(582, 'en', 'Punishment', 1, '2012-08-02 08:36:52', NULL, '0000-00-00 00:00:00'),
(582, 'id', 'Hukuman', 1, '2012-08-02 08:36:52', NULL, '0000-00-00 00:00:00'),
(583, 'en', 'Punishment List', 1, '2012-08-02 08:37:16', NULL, '0000-00-00 00:00:00'),
(583, 'id', 'Daftar Hukuman', 1, '2012-08-02 08:37:16', NULL, '0000-00-00 00:00:00'),
(584, 'en', 'Work Service Adjusment', 1, '2012-08-02 09:57:33', NULL, '0000-00-00 00:00:00'),
(584, 'id', 'Penyesuaian Masa Kerja', 1, '2012-08-02 09:57:33', NULL, '0000-00-00 00:00:00'),
(585, 'en', 'Work Service Adjusment List', 1, '2012-08-02 09:57:53', NULL, '0000-00-00 00:00:00'),
(585, 'id', 'Daftar Penyesuaian Masa Kerja', 1, '2012-08-02 09:57:53', NULL, '0000-00-00 00:00:00'),
(586, 'en', 'Start Period', 1, '2012-08-02 10:01:17', NULL, '0000-00-00 00:00:00'),
(586, 'id', 'Awal Masa Kerja', 1, '2012-08-02 10:01:17', NULL, '0000-00-00 00:00:00'),
(587, 'en', 'January', 1, '2012-08-02 11:35:55', NULL, '0000-00-00 00:00:00'),
(587, 'id', 'Januari', 1, '2012-08-02 11:35:55', NULL, '0000-00-00 00:00:00'),
(588, 'en', 'February', 1, '2012-08-02 11:36:14', NULL, '0000-00-00 00:00:00'),
(588, 'id', 'Februari', 1, '2012-08-02 11:36:14', NULL, '0000-00-00 00:00:00'),
(589, 'en', 'March', 1, '2012-08-02 11:36:25', NULL, '0000-00-00 00:00:00'),
(589, 'id', 'Maret', 1, '2012-08-02 11:36:25', NULL, '0000-00-00 00:00:00'),
(590, 'en', 'April', 1, '2012-08-02 11:36:39', NULL, '0000-00-00 00:00:00'),
(590, 'id', 'April', 1, '2012-08-02 11:36:39', NULL, '0000-00-00 00:00:00'),
(591, 'en', 'May', 1, '2012-08-02 11:36:52', NULL, '0000-00-00 00:00:00'),
(591, 'id', 'Mei', 1, '2012-08-02 11:36:53', NULL, '0000-00-00 00:00:00'),
(592, 'en', 'June', 1, '2012-08-02 11:37:18', NULL, '0000-00-00 00:00:00'),
(592, 'id', 'Juni', 1, '2012-08-02 11:37:18', NULL, '0000-00-00 00:00:00'),
(593, 'en', 'July', 1, '2012-08-02 11:37:40', NULL, '0000-00-00 00:00:00'),
(593, 'id', 'Juli', 1, '2012-08-02 11:37:40', NULL, '0000-00-00 00:00:00'),
(594, 'en', 'August', 1, '2012-08-02 11:37:55', NULL, '0000-00-00 00:00:00'),
(594, 'id', 'Agustus', 1, '2012-08-02 11:37:55', NULL, '0000-00-00 00:00:00'),
(595, 'en', 'September', 1, '2012-08-02 11:38:13', NULL, '0000-00-00 00:00:00'),
(595, 'id', 'September', 1, '2012-08-02 11:38:13', NULL, '0000-00-00 00:00:00'),
(596, 'en', 'October', 1, '2012-08-02 11:38:25', NULL, '0000-00-00 00:00:00'),
(596, 'id', 'Oktober', 1, '2012-08-02 11:38:25', NULL, '0000-00-00 00:00:00'),
(597, 'en', 'November', 1, '2012-08-02 11:38:45', NULL, '0000-00-00 00:00:00'),
(597, 'id', 'November', 1, '2012-08-02 11:38:45', NULL, '0000-00-00 00:00:00'),
(598, 'en', 'December', 1, '2012-08-02 11:39:09', NULL, '0000-00-00 00:00:00'),
(598, 'id', 'Desember', 1, '2012-08-02 11:39:09', NULL, '0000-00-00 00:00:00'),
(599, 'en', 'Service Duty', 1, '2012-08-02 12:07:28', NULL, '0000-00-00 00:00:00'),
(599, 'id', 'Ikatan Dinas', 1, '2012-08-02 12:07:28', NULL, '0000-00-00 00:00:00'),
(600, 'en', 'Service Duty List', 1, '2012-08-02 12:09:10', NULL, '0000-00-00 00:00:00'),
(600, 'id', 'Daftar Ikatan Dinas', 1, '2012-08-02 12:09:10', NULL, '0000-00-00 00:00:00'),
(601, 'en', 'Service Duty Period', 1, '2012-08-02 12:08:02', NULL, '0000-00-00 00:00:00'),
(601, 'id', 'Masa Ikatan Dinas', 1, '2012-08-02 12:08:02', NULL, '0000-00-00 00:00:00'),
(602, 'en', 'Informal Education', 1, '2012-08-02 13:01:57', NULL, '0000-00-00 00:00:00');
INSERT INTO `gtfw_key_text` (`key_text_key_id`, `key_text_lang_code`, `key_text_key_text`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`) VALUES
(602, 'id', 'Pendidikan Informal', 1, '2012-08-02 13:01:57', NULL, '0000-00-00 00:00:00'),
(603, 'en', 'Informal Education List', 1, '2012-08-02 13:03:03', NULL, '0000-00-00 00:00:00'),
(603, 'id', 'Daftar Pendidikan Informal', 1, '2012-08-02 13:03:04', NULL, '0000-00-00 00:00:00'),
(604, 'en', 'Nonformal Education', 1, '2012-08-02 13:05:59', NULL, '0000-00-00 00:00:00'),
(604, 'id', 'Pendidikan Nonformal', 1, '2012-08-02 13:06:01', NULL, '0000-00-00 00:00:00'),
(605, 'en', 'Nonformal Education List', 1, '2012-08-02 13:07:15', NULL, '0000-00-00 00:00:00'),
(605, 'id', 'Daftar Pendidikan Nonformal', 1, '2012-08-02 13:07:15', NULL, '0000-00-00 00:00:00'),
(606, 'en', 'Instant Messaging (IM)', 1, '2012-08-02 15:40:35', NULL, '0000-00-00 00:00:00'),
(606, 'id', 'Instant Messaging (IM)', 1, '2012-08-02 15:40:35', NULL, '0000-00-00 00:00:00'),
(607, 'en', 'Biodata', 1, '2012-08-02 15:53:43', NULL, '0000-00-00 00:00:00'),
(607, 'id', 'Biodata', 1, '2012-08-02 15:53:43', NULL, '0000-00-00 00:00:00'),
(608, 'en', 'Contacts', 1, '2012-08-02 15:53:58', NULL, '0000-00-00 00:00:00'),
(608, 'id', 'Kontak', 1, '2012-08-02 15:53:58', NULL, '0000-00-00 00:00:00'),
(609, 'en', 'Personal Information', 1, '2012-08-03 08:03:43', NULL, '0000-00-00 00:00:00'),
(609, 'id', 'Informasi Pribadi', 1, '2012-08-03 08:03:43', NULL, '0000-00-00 00:00:00'),
(610, 'en', 'Medical History', 1, '2012-08-03 08:39:42', NULL, '0000-00-00 00:00:00'),
(610, 'id', 'Riwayat Kesehatan', 1, '2012-08-03 08:39:42', NULL, '0000-00-00 00:00:00'),
(611, 'en', 'Medical History List', 1, '2012-08-03 08:40:10', NULL, '0000-00-00 00:00:00'),
(611, 'id', 'Daftar Riwayat Kesehatan', 1, '2012-08-03 08:40:10', NULL, '0000-00-00 00:00:00'),
(612, 'en', 'Disease Name', 1, '2012-08-03 09:45:20', NULL, '0000-00-00 00:00:00'),
(612, 'id', 'Nama Penyakit', 1, '2012-08-03 09:45:20', NULL, '0000-00-00 00:00:00'),
(613, 'en', 'Medical Action', 1, '2012-08-03 09:46:46', NULL, '0000-00-00 00:00:00'),
(613, 'id', 'Tindakan Medis', 1, '2012-08-03 09:46:46', NULL, '0000-00-00 00:00:00'),
(614, 'en', 'Action Date', 1, '2012-08-03 09:47:28', NULL, '0000-00-00 00:00:00'),
(614, 'id', 'Tanggal Kejadian', 1, '2012-08-03 09:47:28', NULL, '0000-00-00 00:00:00'),
(615, 'en', 'Time Period', 1, '2012-08-03 09:48:34', NULL, '0000-00-00 00:00:00'),
(615, 'id', 'Lama Kejadian', 1, '2012-08-03 09:48:34', NULL, '0000-00-00 00:00:00'),
(616, 'en', 'Had Surgery', 1, '2012-08-03 10:22:10', NULL, '0000-00-00 00:00:00'),
(616, 'id', 'Pernah Operasi', 1, '2012-08-03 10:22:10', NULL, '0000-00-00 00:00:00'),
(617, 'en', 'Disease who had suffered', 1, '2012-08-03 10:23:37', NULL, '0000-00-00 00:00:00'),
(617, 'id', 'Penyakit yang pernah diderita', 1, '2012-08-03 10:23:37', NULL, '0000-00-00 00:00:00'),
(618, 'en', 'Age at illness', 1, '2012-08-03 10:32:01', NULL, '0000-00-00 00:00:00'),
(618, 'id', 'Umur saat Sakit', 1, '2012-08-03 10:32:01', NULL, '0000-00-00 00:00:00'),
(619, 'en', 'Day', 1, '2012-08-03 10:34:25', NULL, '0000-00-00 00:00:00'),
(619, 'id', 'Hari', 1, '2012-08-03 10:34:25', NULL, '0000-00-00 00:00:00'),
(620, 'en', 'Specialization', 1, '2012-08-03 10:39:04', NULL, '0000-00-00 00:00:00'),
(620, 'id', 'Spesialisasi', 1, '2012-08-03 10:39:04', NULL, '0000-00-00 00:00:00'),
(621, 'en', 'Type', 1, '2012-08-03 10:39:27', NULL, '0000-00-00 00:00:00'),
(621, 'id', 'Jenis', 1, '2012-08-03 10:39:27', NULL, '0000-00-00 00:00:00'),
(622, 'en', 'Doctor Contact', 1, '2012-08-03 10:42:12', NULL, '0000-00-00 00:00:00'),
(622, 'id', 'No. Kontak Dokter', 1, '2012-08-03 10:42:12', NULL, '0000-00-00 00:00:00'),
(623, 'en', 'Hospital', 1, '2012-08-03 10:42:49', NULL, '0000-00-00 00:00:00'),
(623, 'id', 'Rumah Sakit', 1, '2012-08-03 10:42:49', NULL, '0000-00-00 00:00:00'),
(624, 'en', 'Hospital Address', 1, '2012-08-03 10:46:03', NULL, '0000-00-00 00:00:00'),
(624, 'id', 'Alamat Rumah Sakit', 1, '2012-08-03 10:46:03', NULL, '0000-00-00 00:00:00'),
(625, 'en', 'Clinic', 1, '2012-08-03 10:47:16', NULL, '0000-00-00 00:00:00'),
(625, 'id', 'Klinik', 1, '2012-08-03 10:47:16', NULL, '0000-00-00 00:00:00'),
(626, 'en', 'Doctor', 1, '2012-08-03 10:47:43', NULL, '0000-00-00 00:00:00'),
(626, 'id', 'Dokter', 1, '2012-08-03 10:47:43', NULL, '0000-00-00 00:00:00'),
(627, 'en', 'Week', 1, '2012-08-03 11:08:50', NULL, '0000-00-00 00:00:00'),
(627, 'id', 'Minggu', 1, '2012-08-03 11:08:50', NULL, '0000-00-00 00:00:00'),
(628, 'en', 'Medical Diagnosis', 1, '2012-08-03 13:03:18', NULL, '0000-00-00 00:00:00'),
(628, 'id', 'Diagnosis Penyakit', 1, '2012-08-03 13:03:18', NULL, '0000-00-00 00:00:00'),
(629, 'en', 'Medical Diagnosis List', 1, '2012-08-03 13:04:16', NULL, '0000-00-00 00:00:00'),
(629, 'id', 'Daftar Diagnosis Penyakit', 1, '2012-08-03 13:04:16', NULL, '0000-00-00 00:00:00'),
(630, 'en', 'Diagnosis', 1, '2012-08-03 13:14:46', NULL, '0000-00-00 00:00:00'),
(630, 'id', 'Diagnosis', 1, '2012-08-03 13:14:46', NULL, '0000-00-00 00:00:00'),
(631, 'en', 'Diagnosis of Disease', 1, '2012-08-03 13:29:37', NULL, '0000-00-00 00:00:00'),
(631, 'id', 'Diagnosis Penyakit yang diderita', 1, '2012-08-03 13:29:37', NULL, '0000-00-00 00:00:00'),
(632, 'en', 'Symptom', 1, '2012-08-03 13:36:24', NULL, '0000-00-00 00:00:00'),
(632, 'id', 'Gejala - gejala', 1, '2012-08-03 13:36:24', NULL, '0000-00-00 00:00:00'),
(633, 'en', 'Personal Action', 1, '2012-08-03 13:38:50', NULL, '0000-00-00 00:00:00'),
(633, 'id', 'Penanganan / Perawatan Sendiri', 1, '2012-08-03 13:38:50', NULL, '0000-00-00 00:00:00'),
(634, 'en', 'Drug', 1, '2012-08-03 13:41:58', NULL, '0000-00-00 00:00:00'),
(634, 'id', 'Obat - obatan', 1, '2012-08-03 13:41:58', NULL, '0000-00-00 00:00:00'),
(635, 'en', 'Drug Reaction', 1, '2012-08-03 13:43:46', NULL, '0000-00-00 00:00:00'),
(635, 'id', 'Reaksi Terhadap Obat', 1, '2012-08-03 13:43:46', NULL, '0000-00-00 00:00:00'),
(636, 'en', 'Drug Time Period', 1, '2012-08-03 13:45:55', NULL, '0000-00-00 00:00:00'),
(636, 'id', 'Masa Pengobatan', 1, '2012-08-03 13:45:55', NULL, '0000-00-00 00:00:00'),
(637, 'en', 'Complication', 1, '2012-08-03 13:46:41', NULL, '0000-00-00 00:00:00'),
(637, 'id', 'Komplikasi', 1, '2012-08-03 13:46:41', NULL, '0000-00-00 00:00:00'),
(638, 'en', 'Medical Record', 1, '2012-08-03 14:49:48', NULL, '0000-00-00 00:00:00'),
(638, 'id', 'Rekam Medis', 1, '2012-08-03 14:49:48', NULL, '0000-00-00 00:00:00'),
(639, 'en', 'Medical Record List', 1, '2012-08-03 14:50:08', NULL, '0000-00-00 00:00:00'),
(639, 'id', 'Daftar Rekam Medis', 1, '2012-08-03 14:50:08', NULL, '0000-00-00 00:00:00'),
(640, 'en', 'Medical Record Documents', 1, '2012-08-03 14:53:11', NULL, '0000-00-00 00:00:00'),
(640, 'id', 'Dokumen Rekam Medis', 1, '2012-08-03 14:53:11', NULL, '0000-00-00 00:00:00'),
(641, 'en', 'Document Name', 1, '2012-08-03 14:53:53', NULL, '0000-00-00 00:00:00'),
(641, 'id', 'Nama Dokumen', 1, '2012-08-03 14:53:53', NULL, '0000-00-00 00:00:00'),
(642, 'en', 'Education History', 1, '2012-08-05 09:22:12', NULL, '0000-00-00 00:00:00'),
(642, 'id', 'Riwayat Pendidikan', 1, '2012-08-05 09:22:12', NULL, '0000-00-00 00:00:00'),
(643, 'en', 'Competence', 1, '2012-08-05 09:51:42', NULL, '0000-00-00 00:00:00'),
(643, 'id', 'Kompetensi', 1, '2012-08-05 09:51:42', NULL, '0000-00-00 00:00:00'),
(644, 'en', 'You can Add more than One', 1, '2012-08-06 08:47:04', NULL, '0000-00-00 00:00:00'),
(644, 'id', 'Anda bisa menambah lebih dari satu', 1, '2012-08-06 08:47:04', NULL, '0000-00-00 00:00:00'),
(645, 'en', 'Select Language', 1, '2012-08-06 08:47:44', NULL, '0000-00-00 00:00:00'),
(645, 'id', 'Pilih Bahasa', 1, '2012-08-06 08:47:44', NULL, '0000-00-00 00:00:00'),
(646, 'en', 'Select Language Fluent Type', 1, '2012-08-06 08:48:15', NULL, '0000-00-00 00:00:00'),
(646, 'id', 'Pilih Kefasihan Bahasa', 1, '2012-08-06 08:48:15', NULL, '0000-00-00 00:00:00'),
(647, 'en', 'Select Language Quality Type', 1, '2012-08-06 08:48:49', NULL, '0000-00-00 00:00:00'),
(647, 'id', 'Pilih Jenis Kualitas', 1, '2012-08-06 08:48:49', NULL, '0000-00-00 00:00:00'),
(648, 'en', 'Fluent', 1, '2012-08-06 08:50:02', NULL, '0000-00-00 00:00:00'),
(648, 'id', 'Kefasihan', 1, '2012-08-06 08:50:02', NULL, '0000-00-00 00:00:00'),
(649, 'en', 'Quality', 1, '2012-08-06 08:50:13', NULL, '0000-00-00 00:00:00'),
(649, 'id', 'Kualitas', 1, '2012-08-06 08:50:13', NULL, '0000-00-00 00:00:00'),
(650, 'en', 'Language Competence', 1, '2012-08-06 08:50:49', NULL, '0000-00-00 00:00:00'),
(650, 'id', 'Kompetensi Bahasa', 1, '2012-08-06 08:50:49', NULL, '0000-00-00 00:00:00'),
(651, 'en', 'Language Competence List', 1, '2012-08-06 08:51:09', NULL, '0000-00-00 00:00:00'),
(651, 'id', 'Daftar Kompetensi Bahasa', 1, '2012-08-06 08:51:09', NULL, '0000-00-00 00:00:00'),
(652, 'en', 'Language Certificate', 1, '2012-08-06 08:59:36', NULL, '0000-00-00 00:00:00'),
(652, 'id', 'Sertifikasi Bahasa', 1, '2012-08-06 08:59:36', NULL, '0000-00-00 00:00:00'),
(653, 'en', 'Score', 1, '2012-08-06 08:59:50', NULL, '0000-00-00 00:00:00'),
(653, 'id', 'Skor', 1, '2012-08-06 08:59:50', NULL, '0000-00-00 00:00:00'),
(654, 'en', 'Certificate', 1, '2012-08-06 09:11:19', NULL, '0000-00-00 00:00:00'),
(654, 'id', 'Sertifikat', 1, '2012-08-06 09:11:19', NULL, '0000-00-00 00:00:00'),
(655, 'en', 'Account Type', 1, '2012-08-07 08:40:08', NULL, '0000-00-00 00:00:00'),
(655, 'id', 'Jenis Akun', 1, '2012-08-07 08:40:08', NULL, '0000-00-00 00:00:00'),
(656, 'en', 'Account Segment', 1, '2012-08-07 08:47:51', NULL, '0000-00-00 00:00:00'),
(656, 'id', 'Segmen Akun / Perusahaan', 1, '2012-08-07 08:47:51', NULL, '0000-00-00 00:00:00'),
(657, 'en', 'Bussiness Model', 1, '2012-08-07 09:17:37', NULL, '0000-00-00 00:00:00'),
(657, 'id', 'Model Bisnis Akun/Perusahaan', 1, '2012-08-07 09:17:37', NULL, '0000-00-00 00:00:00'),
(658, 'en', 'Confidence', 1, '2013-07-16 13:42:25', NULL, '0000-00-00 00:00:00'),
(658, 'id', 'Tingkat Kepercayaan', 1, '2013-07-16 13:42:25', NULL, '0000-00-00 00:00:00'),
(659, 'en', 'Is End', 1, '2013-09-04 08:24:21', NULL, '0000-00-00 00:00:00'),
(659, 'id', 'Status Berakhir', 1, '2013-09-04 08:24:21', NULL, '0000-00-00 00:00:00'),
(660, 'en', 'Prospect Stage', 1, '2012-08-07 11:36:24', NULL, '0000-00-00 00:00:00'),
(660, 'id', 'Tahapan Prospek', 1, '2012-08-07 11:36:24', NULL, '0000-00-00 00:00:00'),
(661, 'en', 'Priority Level', 1, '2012-08-07 11:59:23', NULL, '0000-00-00 00:00:00'),
(661, 'id', 'Tingkat Prioritas', 1, '2012-08-07 11:59:23', NULL, '0000-00-00 00:00:00'),
(662, 'en', 'Lead Source', 1, '2012-09-28 18:15:03', NULL, '0000-00-00 00:00:00'),
(662, 'id', 'Sumber', 1, '2012-09-28 18:15:03', NULL, '0000-00-00 00:00:00'),
(663, 'en', 'File Type', 1, '2012-09-28 15:15:13', NULL, '0000-00-00 00:00:00'),
(663, 'id', 'Jenis File', 1, '2012-09-28 15:15:13', NULL, '0000-00-00 00:00:00'),
(664, 'en', 'Identity', 1, '2012-08-09 10:57:13', NULL, '0000-00-00 00:00:00'),
(664, 'id', 'Identitas', 1, '2012-08-09 10:57:13', NULL, '0000-00-00 00:00:00'),
(665, 'en', 'Transaction', 1, '2012-08-09 14:25:11', NULL, '0000-00-00 00:00:00'),
(665, 'id', 'Transaksi', 1, '2012-08-09 14:25:11', NULL, '0000-00-00 00:00:00'),
(666, 'en', 'Technical Competence', 1, '2012-08-13 10:58:24', NULL, '0000-00-00 00:00:00'),
(666, 'id', 'Kompetensi Teknis', 1, '2012-08-13 10:58:24', NULL, '0000-00-00 00:00:00'),
(667, 'en', 'Health Information', 1, '2012-08-13 11:01:16', NULL, '0000-00-00 00:00:00'),
(667, 'id', 'Data Kesehatan', 1, '2012-08-13 11:01:16', NULL, '0000-00-00 00:00:00'),
(668, 'en', 'Work Service Adjustment', 1, '2012-08-13 11:14:10', NULL, '0000-00-00 00:00:00'),
(668, 'id', 'Penyesuaian Masa Kerja', 1, '2012-08-13 11:14:10', NULL, '0000-00-00 00:00:00'),
(669, 'en', 'Work Unit', 1, '2012-08-13 11:16:44', NULL, '0000-00-00 00:00:00'),
(669, 'id', 'Satuan Kerja', 1, '2012-08-13 11:16:44', NULL, '0000-00-00 00:00:00'),
(670, 'en', 'Bank Account', 1, '2012-08-13 11:23:00', NULL, '0000-00-00 00:00:00'),
(670, 'id', 'Rekening Bank', 1, '2012-08-13 11:23:00', NULL, '0000-00-00 00:00:00'),
(671, 'en', 'Account Number', 1, '2012-08-13 11:24:23', NULL, '0000-00-00 00:00:00'),
(671, 'id', 'Nomor Rekening', 1, '2012-08-13 11:24:23', NULL, '0000-00-00 00:00:00'),
(672, 'en', 'Account Holder Name', 1, '2012-08-13 11:30:34', NULL, '0000-00-00 00:00:00'),
(672, 'id', 'Nama Pemegang Rekening', 1, '2012-08-13 11:30:34', NULL, '0000-00-00 00:00:00'),
(673, 'en', 'NPWP', 1, '2012-08-13 11:38:08', NULL, '0000-00-00 00:00:00'),
(673, 'id', 'NPWP', 1, '2012-08-13 11:38:08', NULL, '0000-00-00 00:00:00'),
(674, 'en', 'NPWP Number', 1, '2012-08-13 11:38:46', NULL, '0000-00-00 00:00:00'),
(674, 'id', 'Nomor NPWP', 1, '2012-08-13 11:38:46', NULL, '0000-00-00 00:00:00'),
(675, 'en', 'Registered Date', 1, '2012-08-13 11:39:17', NULL, '0000-00-00 00:00:00'),
(675, 'id', 'Tanggal Terdaftar', 1, '2012-08-13 11:39:17', NULL, '0000-00-00 00:00:00'),
(676, 'en', 'Jamsostek', 1, '2012-08-13 11:46:34', NULL, '0000-00-00 00:00:00'),
(676, 'id', 'Jamsostek', 1, '2012-08-13 11:46:34', NULL, '0000-00-00 00:00:00'),
(677, 'en', 'KPJ Number', 1, '2012-08-13 11:47:11', NULL, '0000-00-00 00:00:00'),
(677, 'id', 'Nomor KPJ', 1, '2012-08-13 11:47:11', NULL, '0000-00-00 00:00:00'),
(678, 'en', 'Basic Salary Use', 1, '2012-08-13 11:52:02', NULL, '0000-00-00 00:00:00'),
(678, 'id', 'Penggunaan Gaji Pokok', 1, '2012-08-13 11:52:02', NULL, '0000-00-00 00:00:00'),
(679, 'en', 'Birth Date', 1, '2012-08-13 11:57:33', NULL, '0000-00-00 00:00:00'),
(679, 'id', 'Tanggal Lahir', 1, '2012-08-13 11:57:33', NULL, '0000-00-00 00:00:00'),
(680, 'en', 'Health Insurance', 1, '2012-08-13 11:59:38', NULL, '0000-00-00 00:00:00'),
(680, 'id', 'Asuransi Kesehatan', 1, '2012-08-13 11:59:38', NULL, '0000-00-00 00:00:00'),
(681, 'en', 'Health Insurance', 1, '2012-08-13 12:00:09', NULL, '0000-00-00 00:00:00'),
(681, 'id', 'Asuransi Kesehatan', 1, '2012-08-13 12:00:09', NULL, '0000-00-00 00:00:00'),
(682, 'en', 'Registration Number', 1, '2012-08-13 12:01:38', NULL, '0000-00-00 00:00:00'),
(682, 'id', 'Nomor Registrasi', 1, '2012-08-13 12:01:38', NULL, '0000-00-00 00:00:00'),
(683, 'en', 'Registered Address', 1, '2012-08-13 12:02:22', NULL, '0000-00-00 00:00:00'),
(683, 'id', 'Alamat Terdaftar', 1, '2012-08-13 12:02:22', NULL, '0000-00-00 00:00:00'),
(684, 'en', 'Health Insurance', 1, '2012-08-13 12:48:38', NULL, '0000-00-00 00:00:00'),
(684, 'id', 'Asuransi Kesehatan', 1, '2012-08-13 12:48:38', NULL, '0000-00-00 00:00:00'),
(685, 'en', 'External Insurance', 1, '2012-08-13 12:52:57', NULL, '0000-00-00 00:00:00'),
(685, 'id', 'Asuransi Eksternal', 1, '2012-08-13 12:52:57', NULL, '0000-00-00 00:00:00'),
(686, 'en', 'Internal Insurance', 1, '2012-08-13 13:04:06', NULL, '0000-00-00 00:00:00'),
(686, 'id', 'Asuransi Internal', 1, '2012-08-13 13:04:06', NULL, '0000-00-00 00:00:00'),
(687, 'en', 'Vendor Address', 1, '2012-08-13 14:14:40', NULL, '0000-00-00 00:00:00'),
(687, 'id', 'Alamat Vendor', 1, '2012-08-13 14:14:40', NULL, '0000-00-00 00:00:00'),
(688, 'en', 'Vendor Email', 1, '2012-08-13 14:15:11', NULL, '0000-00-00 00:00:00'),
(688, 'id', 'Email Vendor', 1, '2012-08-13 14:15:11', NULL, '0000-00-00 00:00:00'),
(689, 'en', 'Vendor Phone Number', 1, '2012-08-13 14:15:56', NULL, '0000-00-00 00:00:00'),
(689, 'id', 'Nomor Telp Vendor', 1, '2012-08-13 14:15:56', NULL, '0000-00-00 00:00:00'),
(690, 'en', 'Vendor Fax Number', 1, '2012-08-13 14:16:17', NULL, '0000-00-00 00:00:00'),
(690, 'id', 'Nomor Fax Vendor', 1, '2012-08-13 14:16:17', NULL, '0000-00-00 00:00:00'),
(691, 'en', 'Print', 1, '2012-10-01 09:50:06', NULL, '0000-00-00 00:00:00'),
(691, 'id', 'Cetak', 1, '2012-10-01 09:50:06', NULL, '0000-00-00 00:00:00'),
(692, 'en', 'Flush', 1, '2012-08-13 14:31:04', NULL, '0000-00-00 00:00:00'),
(692, 'id', 'Flush', 1, '2012-08-13 14:31:04', NULL, '0000-00-00 00:00:00'),
(693, 'en', 'Menu', 1, '2012-08-13 14:41:09', NULL, '0000-00-00 00:00:00'),
(693, 'id', 'Menu', 1, '2012-08-13 14:41:09', NULL, '0000-00-00 00:00:00'),
(694, 'en', 'Module', 1, '2012-08-13 14:41:25', NULL, '0000-00-00 00:00:00'),
(694, 'id', 'Modul', 1, '2012-08-13 14:41:25', NULL, '0000-00-00 00:00:00'),
(695, 'en', 'Description', 1, '2013-05-02 15:56:27', NULL, '0000-00-00 00:00:00'),
(695, 'id', 'Deskripsi', 1, '2013-05-02 15:56:27', NULL, '0000-00-00 00:00:00'),
(696, 'en', 'Table', 1, '2012-08-13 14:42:16', NULL, '0000-00-00 00:00:00'),
(696, 'id', 'Tabel', 1, '2012-08-13 14:42:16', NULL, '0000-00-00 00:00:00'),
(697, 'en', 'Real Name', 1, '2012-08-13 14:42:24', NULL, '0000-00-00 00:00:00'),
(697, 'id', 'Nama Asli', 1, '2012-08-13 14:42:24', NULL, '0000-00-00 00:00:00'),
(698, 'en', 'Exchange Rate', 1, '2012-08-13 14:49:26', NULL, '0000-00-00 00:00:00'),
(698, 'id', 'Tarif Kurs', 1, '2012-08-13 14:49:26', NULL, '0000-00-00 00:00:00'),
(699, 'en', 'Received', 1, '2012-08-13 14:59:54', NULL, '0000-00-00 00:00:00'),
(699, 'id', 'Diterima', 1, '2012-08-13 14:59:54', NULL, '0000-00-00 00:00:00'),
(700, 'en', 'Good', 1, '2012-08-13 15:00:22', NULL, '0000-00-00 00:00:00'),
(700, 'id', 'Baik', 1, '2012-08-13 15:00:22', NULL, '0000-00-00 00:00:00'),
(701, 'en', 'Broken', 1, '2012-08-13 15:00:48', NULL, '0000-00-00 00:00:00'),
(701, 'id', 'Rusak', 1, '2012-08-13 15:00:48', NULL, '0000-00-00 00:00:00'),
(702, 'en', 'Missing', 1, '2012-08-13 15:01:09', NULL, '0000-00-00 00:00:00'),
(702, 'id', 'Hilang', 1, '2012-08-13 15:01:09', NULL, '0000-00-00 00:00:00'),
(703, 'en', 'Group', 1, '2012-08-13 15:01:35', NULL, '0000-00-00 00:00:00'),
(703, 'id', 'Grup', 1, '2012-08-13 15:01:35', NULL, '0000-00-00 00:00:00'),
(707, 'en', 'Menu Name', 1, '2012-08-13 15:16:58', NULL, '0000-00-00 00:00:00'),
(707, 'id', 'Nama Menu', 1, '2012-08-13 15:16:58', NULL, '0000-00-00 00:00:00'),
(708, 'en', 'Return', 1, '2012-08-13 15:17:58', NULL, '0000-00-00 00:00:00'),
(708, 'id', 'Retur', 1, '2012-08-13 15:17:58', NULL, '0000-00-00 00:00:00'),
(709, 'en', 'Export', 1, '2012-08-13 15:42:47', NULL, '0000-00-00 00:00:00'),
(709, 'id', 'Ekspor', 1, '2012-08-13 15:42:47', NULL, '0000-00-00 00:00:00'),
(710, 'en', 'Modul Name', 1, '2012-08-13 15:19:16', NULL, '0000-00-00 00:00:00'),
(710, 'id', 'Nama Modul', 1, '2012-08-13 15:19:16', NULL, '0000-00-00 00:00:00'),
(711, 'en', 'Documentation', 1, '2012-08-13 15:24:50', NULL, '0000-00-00 00:00:00'),
(711, 'id', 'Dokumentasi', 1, '2012-08-13 15:24:50', NULL, '0000-00-00 00:00:00'),
(712, 'en', 'Approve', 1, '2012-08-13 15:25:03', NULL, '0000-00-00 00:00:00'),
(712, 'id', 'Setujui', 1, '2012-08-13 15:25:03', NULL, '0000-00-00 00:00:00'),
(713, 'en', 'Confirm Password', 1, '2012-08-13 15:31:44', NULL, '0000-00-00 00:00:00'),
(713, 'id', 'Konfirmasi Password', 1, '2012-08-13 15:31:44', NULL, '0000-00-00 00:00:00'),
(714, 'en', 'Sample Data', 1, '2012-08-13 15:37:05', NULL, '0000-00-00 00:00:00'),
(714, 'id', 'Data Sample', 1, '2012-08-13 15:37:05', NULL, '0000-00-00 00:00:00'),
(715, 'en', 'Source Dependency', 1, '2012-08-13 15:41:26', NULL, '0000-00-00 00:00:00'),
(715, 'id', 'Dependansi Source', 1, '2012-08-13 15:41:26', NULL, '0000-00-00 00:00:00'),
(716, 'en', 'Dependency Target', 1, '2012-08-14 08:34:25', NULL, '0000-00-00 00:00:00'),
(716, 'id', 'Target Dependansi', 1, '2012-08-14 08:34:25', NULL, '0000-00-00 00:00:00'),
(717, 'en', 'Recruitment Information', 1, '2012-08-14 08:02:18', NULL, '0000-00-00 00:00:00'),
(717, 'id', 'Informasi Penerimaan', 1, '2012-08-14 08:02:18', NULL, '0000-00-00 00:00:00'),
(718, 'en', 'Task Status', 1, '2013-09-23 09:17:06', NULL, '0000-00-00 00:00:00'),
(718, 'id', 'Status', 1, '2013-09-23 09:17:06', NULL, '0000-00-00 00:00:00'),
(719, 'en', 'Milt', 1, '2012-08-14 12:36:30', NULL, '0000-00-00 00:00:00'),
(719, 'id', 'Kekurangan', 1, '2012-08-14 12:36:30', NULL, '0000-00-00 00:00:00'),
(720, 'en', 'Grand Total', 1, '2012-08-14 08:24:22', NULL, '0000-00-00 00:00:00'),
(720, 'id', 'Grand Total', 1, '2012-08-14 08:24:22', NULL, '0000-00-00 00:00:00'),
(721, 'en', 'PO Number', 1, '2012-08-14 08:38:17', NULL, '0000-00-00 00:00:00'),
(721, 'id', 'Nomor PO', 1, '2012-08-14 08:38:17', NULL, '0000-00-00 00:00:00'),
(722, 'en', 'Received By', 1, '2012-08-14 08:38:39', NULL, '0000-00-00 00:00:00'),
(722, 'id', 'Diterima Oleh', 1, '2012-08-14 08:38:39', NULL, '0000-00-00 00:00:00'),
(723, 'en', 'Created By', 1, '2012-08-14 08:42:05', NULL, '0000-00-00 00:00:00'),
(723, 'id', 'Dibuat Oleh', 1, '2012-08-14 08:42:05', NULL, '0000-00-00 00:00:00'),
(724, 'en', 'Create New DO', 1, '2012-08-14 08:43:19', NULL, '0000-00-00 00:00:00'),
(724, 'id', 'Buat DO Baru', 1, '2012-08-14 08:43:19', NULL, '0000-00-00 00:00:00'),
(725, 'en', 'Activity Type', 1, '2012-08-14 08:43:55', NULL, '0000-00-00 00:00:00'),
(725, 'id', 'Jenis Aktivitas', 1, '2012-08-14 08:43:55', NULL, '0000-00-00 00:00:00'),
(726, 'en', 'Related To', 1, '2012-08-14 08:55:00', NULL, '0000-00-00 00:00:00'),
(726, 'id', 'Hubungan Aksi Aktivitas', 1, '2012-08-14 08:55:00', NULL, '0000-00-00 00:00:00'),
(727, 'en', 'Receive Date', 1, '2012-11-05 08:54:12', NULL, '0000-00-00 00:00:00'),
(727, 'id', 'Tanggal Penerimaan', 1, '2012-11-05 08:54:12', NULL, '0000-00-00 00:00:00'),
(728, 'en', 'Invoice Number', 1, '2012-08-14 09:00:20', NULL, '0000-00-00 00:00:00'),
(728, 'id', 'Nomor Faktur', 1, '2012-08-14 09:00:20', NULL, '0000-00-00 00:00:00'),
(729, 'en', 'Order Date', 1, '2012-08-14 09:00:44', NULL, '0000-00-00 00:00:00'),
(729, 'id', 'Tanggal Order', 1, '2012-08-14 09:00:44', NULL, '0000-00-00 00:00:00'),
(730, 'en', 'Date Accepted', 8, '2012-08-15 15:07:17', NULL, '0000-00-00 00:00:00'),
(730, 'id', 'Tanggal Terima', 8, '2012-08-15 15:07:17', NULL, '0000-00-00 00:00:00'),
(732, 'en', 'GR Supplier', 1, '2012-08-14 09:05:25', NULL, '0000-00-00 00:00:00'),
(732, 'id', 'GR Supplier', 1, '2012-08-14 09:05:25', NULL, '0000-00-00 00:00:00'),
(733, 'en', 'Partial Update', 1, '2012-08-14 09:06:23', NULL, '0000-00-00 00:00:00'),
(733, 'id', 'Update Parsial', 1, '2012-08-14 09:06:23', NULL, '0000-00-00 00:00:00'),
(737, 'en', 'Jamsostek Calculation Adjustment Type', 1, '2012-08-14 09:14:40', NULL, '0000-00-00 00:00:00'),
(737, 'id', 'Jenis Penyesuaian Perhitungan Jamsostek', 1, '2012-08-14 09:14:40', NULL, '0000-00-00 00:00:00'),
(738, 'en', 'Delivered from', 8, '2012-08-16 08:34:44', NULL, '0000-00-00 00:00:00'),
(738, 'id', 'Cabang Asal', 8, '2012-08-16 08:34:44', NULL, '0000-00-00 00:00:00'),
(739, 'en', 'Responsible Person', 1, '2012-08-14 09:19:33', NULL, '0000-00-00 00:00:00'),
(739, 'id', 'Penanggung Jawab', 1, '2012-08-14 09:19:33', NULL, '0000-00-00 00:00:00'),
(740, 'en', 'Buy Area ID', 1, '2012-08-14 09:21:25', NULL, '0000-00-00 00:00:00'),
(740, 'id', 'ID Area Pembelian', 1, '2012-08-14 09:21:25', NULL, '0000-00-00 00:00:00'),
(741, 'en', 'Sell Area ID', 1, '2012-08-14 09:21:52', NULL, '0000-00-00 00:00:00'),
(741, 'id', 'ID Area Penjualan', 1, '2012-08-14 09:21:52', NULL, '0000-00-00 00:00:00'),
(742, 'en', 'Ownership ID', 1, '2012-08-14 09:22:40', NULL, '0000-00-00 00:00:00'),
(742, 'id', 'ID Kepemilikan', 1, '2012-08-14 09:22:40', NULL, '0000-00-00 00:00:00'),
(743, 'en', 'Manage Unit ID', 1, '2012-08-14 09:23:32', NULL, '0000-00-00 00:00:00'),
(743, 'id', 'Mengelola ID Unit', 1, '2012-08-14 09:23:32', NULL, '0000-00-00 00:00:00'),
(744, 'en', 'Last Medic Number', 1, '2012-08-14 09:24:18', NULL, '0000-00-00 00:00:00'),
(744, 'id', 'Nomor Medis Terakhir', 1, '2012-08-14 09:24:18', NULL, '0000-00-00 00:00:00'),
(745, 'en', 'Last Invoice Number', 1, '2012-08-14 09:24:49', NULL, '0000-00-00 00:00:00'),
(745, 'id', 'Nomor Invoice Terakhir', 1, '2012-08-14 09:24:49', NULL, '0000-00-00 00:00:00'),
(746, 'en', 'PO Target', 1, '2012-08-14 09:25:12', NULL, '0000-00-00 00:00:00'),
(746, 'id', 'Target PO', 1, '2012-08-14 09:25:12', NULL, '0000-00-00 00:00:00'),
(747, 'en', 'Bale Accepted', 8, '2012-08-15 14:45:31', NULL, '0000-00-00 00:00:00'),
(747, 'id', 'Accept Koli', 8, '2012-08-15 14:45:31', NULL, '0000-00-00 00:00:00'),
(748, 'en', 'Status', 1, '2013-09-23 09:15:14', NULL, '0000-00-00 00:00:00'),
(748, 'id', 'Status', 1, '2013-09-23 09:15:14', NULL, '0000-00-00 00:00:00'),
(749, 'en', 'Field', 1, '2012-08-14 09:31:50', NULL, '0000-00-00 00:00:00'),
(749, 'id', 'Tabel', 1, '2012-08-14 09:31:50', NULL, '0000-00-00 00:00:00'),
(750, 'en', 'Null', 1, '2012-08-14 09:32:10', NULL, '0000-00-00 00:00:00'),
(750, 'id', 'Null', 1, '2012-08-14 09:32:10', NULL, '0000-00-00 00:00:00'),
(751, 'en', 'Extra', 1, '2012-08-14 09:32:33', NULL, '0000-00-00 00:00:00'),
(751, 'id', 'Extra', 1, '2012-08-14 09:32:33', NULL, '0000-00-00 00:00:00'),
(752, 'en', 'Comment', 1, '2012-08-14 09:32:57', NULL, '0000-00-00 00:00:00'),
(752, 'id', 'Komentar', 1, '2012-08-14 09:32:57', NULL, '0000-00-00 00:00:00'),
(753, 'en', 'PIC', 8, '2012-08-14 15:05:51', NULL, '0000-00-00 00:00:00'),
(753, 'id', 'PIC', 8, '2012-08-14 15:05:51', NULL, '0000-00-00 00:00:00'),
(754, 'en', 'Due Date', 1, '2012-08-14 09:37:58', NULL, '0000-00-00 00:00:00'),
(754, 'id', 'Tanggal Jatuh Tempo', 1, '2012-08-14 09:37:58', NULL, '0000-00-00 00:00:00'),
(755, 'en', 'Sender', 1, '2012-08-14 09:38:23', NULL, '0000-00-00 00:00:00'),
(755, 'id', 'Pengirim', 1, '2012-08-14 09:38:23', NULL, '0000-00-00 00:00:00'),
(756, 'en', 'Delivered to', 8, '2012-08-15 15:27:18', NULL, '0000-00-00 00:00:00'),
(756, 'id', 'Cabang Tujuan', 8, '2012-08-15 15:27:18', NULL, '0000-00-00 00:00:00'),
(757, 'en', 'Mode', 1, '2012-08-14 09:40:16', NULL, '0000-00-00 00:00:00'),
(757, 'id', 'Mode', 1, '2012-08-14 09:40:16', NULL, '0000-00-00 00:00:00'),
(758, 'en', 'Simple', 1, '2012-09-21 08:22:14', NULL, '0000-00-00 00:00:00'),
(758, 'id', 'Ringkas', 1, '2012-09-21 08:22:14', NULL, '0000-00-00 00:00:00'),
(759, 'en', 'Case File Type', 1, '2012-08-14 09:41:14', NULL, '0000-00-00 00:00:00'),
(759, 'id', 'Jenis File Kasus / Case', 1, '2012-08-14 09:41:14', NULL, '0000-00-00 00:00:00'),
(760, 'en', 'Lost', 1, '2012-08-14 09:41:56', NULL, '0000-00-00 00:00:00'),
(760, 'id', 'Hilang', 1, '2012-08-14 09:41:56', NULL, '0000-00-00 00:00:00'),
(761, 'en', 'Milt', 1, '2012-08-14 12:36:17', NULL, '0000-00-00 00:00:00'),
(761, 'id', 'Kekurangan', 1, '2012-08-14 12:36:17', NULL, '0000-00-00 00:00:00'),
(762, 'en', 'Bonus', 1, '2012-08-14 09:42:51', NULL, '0000-00-00 00:00:00'),
(762, 'id', 'Bonus', 1, '2012-08-14 09:42:51', NULL, '0000-00-00 00:00:00'),
(763, 'en', 'Total Price', 1, '2012-08-14 09:45:59', NULL, '0000-00-00 00:00:00'),
(763, 'id', 'Total Harga', 1, '2012-08-14 09:45:59', NULL, '0000-00-00 00:00:00'),
(764, 'en', 'History Kurs Currency', 1, '2012-08-14 09:58:05', NULL, '0000-00-00 00:00:00'),
(764, 'id', 'Riwayat Mata Uang', 1, '2012-08-14 09:58:05', NULL, '0000-00-00 00:00:00'),
(765, 'en', 'Total VAT', 1, '2012-08-14 09:47:02', NULL, '0000-00-00 00:00:00'),
(765, 'id', 'Total VAT', 1, '2012-08-14 09:47:02', NULL, '0000-00-00 00:00:00'),
(766, 'en', 'Update', 1, '2012-08-14 09:47:27', NULL, '0000-00-00 00:00:00'),
(766, 'id', 'Perbaharui', 1, '2012-08-14 09:47:27', NULL, '0000-00-00 00:00:00'),
(767, 'en', 'Box', 1, '2012-08-14 09:47:33', NULL, '0000-00-00 00:00:00'),
(767, 'id', 'Box', 1, '2012-08-14 09:47:33', NULL, '0000-00-00 00:00:00'),
(768, 'en', 'Bale', 1, '2012-08-14 13:14:38', NULL, '0000-00-00 00:00:00'),
(768, 'id', 'Koli', 1, '2012-08-14 13:14:38', NULL, '0000-00-00 00:00:00'),
(769, 'en', 'Case Status', 1, '2012-08-14 10:01:45', NULL, '0000-00-00 00:00:00'),
(769, 'id', 'Status Kasus / Case', 1, '2012-08-14 10:01:45', NULL, '0000-00-00 00:00:00'),
(770, 'en', 'Retur Supplier', 1, '2012-08-14 11:03:47', NULL, '0000-00-00 00:00:00'),
(770, 'id', 'Retur Supplier', 1, '2012-08-14 11:03:47', NULL, '0000-00-00 00:00:00'),
(771, 'en', 'Case Type', 1, '2012-08-14 11:06:53', NULL, '0000-00-00 00:00:00'),
(771, 'id', 'Jenis Kasus / Case', 1, '2012-08-14 11:06:53', NULL, '0000-00-00 00:00:00'),
(772, 'en', 'Input', 1, '2012-08-14 11:08:55', NULL, '0000-00-00 00:00:00'),
(772, 'id', 'Input', 1, '2012-08-14 11:08:55', NULL, '0000-00-00 00:00:00'),
(773, 'en', 'Invoice Number', 1, '2012-08-14 11:09:25', NULL, '0000-00-00 00:00:00'),
(773, 'id', 'Nomor Faktur', 1, '2012-08-14 11:09:25', NULL, '0000-00-00 00:00:00'),
(774, 'en', 'Retur Supplier', 1, '2012-08-14 11:11:07', NULL, '0000-00-00 00:00:00'),
(774, 'id', 'Retur Supplier', 1, '2012-08-14 11:11:07', NULL, '0000-00-00 00:00:00'),
(775, 'en', 'Receive', 1, '2012-08-14 11:14:14', NULL, '0000-00-00 00:00:00'),
(775, 'id', 'Terima', 1, '2012-08-14 11:14:14', NULL, '0000-00-00 00:00:00'),
(776, 'en', 'Contract File Type', 1, '2012-08-14 11:16:22', NULL, '0000-00-00 00:00:00'),
(776, 'id', 'Jenis File Kontrak', 1, '2012-08-14 11:16:22', NULL, '0000-00-00 00:00:00'),
(777, 'en', 'Delete', 1, '2012-08-14 11:23:44', NULL, '0000-00-00 00:00:00'),
(777, 'id', 'Hapus', 1, '2012-08-14 11:23:44', NULL, '0000-00-00 00:00:00'),
(778, 'en', 'Duration Time Type', 1, '2012-08-14 11:33:09', NULL, '0000-00-00 00:00:00'),
(778, 'id', 'Jenis Waktu Durasi', 1, '2012-08-14 11:33:09', NULL, '0000-00-00 00:00:00'),
(779, 'en', 'Value', 1, '2012-08-14 11:40:10', NULL, '0000-00-00 00:00:00'),
(779, 'id', 'Nilai', 1, '2012-08-14 11:40:10', NULL, '0000-00-00 00:00:00'),
(780, 'en', 'Destination', 8, '2012-08-15 10:46:53', NULL, '0000-00-00 00:00:00'),
(780, 'id', 'Tujuan', 8, '2012-08-15 10:46:53', NULL, '0000-00-00 00:00:00'),
(781, 'en', 'Time', 1, '2012-08-14 11:39:40', NULL, '0000-00-00 00:00:00'),
(781, 'id', 'Jam', 1, '2012-08-14 11:39:40', NULL, '0000-00-00 00:00:00'),
(782, 'en', 'Destination', 8, '2012-08-15 15:28:06', NULL, '0000-00-00 00:00:00'),
(782, 'id', 'Cabang Tujuan', 8, '2012-08-15 15:28:06', NULL, '0000-00-00 00:00:00'),
(783, 'en', 'Internal', 1, '2013-10-21 14:39:02', NULL, '0000-00-00 00:00:00'),
(783, 'id', 'Internal', 1, '2013-10-21 14:39:02', NULL, '0000-00-00 00:00:00'),
(784, 'en', 'Status', 1, '2013-09-23 09:15:00', NULL, '0000-00-00 00:00:00'),
(784, 'id', 'Status', 1, '2013-09-23 09:15:00', NULL, '0000-00-00 00:00:00'),
(785, 'en', 'Purchase Order Internal', 1, '2012-10-01 05:10:49', NULL, '0000-00-00 00:00:00'),
(785, 'id', 'Purchase Order Antar Unit', 1, '2012-10-01 05:10:49', NULL, '0000-00-00 00:00:00'),
(786, 'en', 'Set Urgent', 8, '2012-08-15 09:27:38', NULL, '0000-00-00 00:00:00'),
(786, 'id', 'Set Urgen', 8, '2012-08-15 09:27:38', NULL, '0000-00-00 00:00:00'),
(787, 'en', 'Is Urgent', 1, '2013-09-04 08:25:57', NULL, '0000-00-00 00:00:00'),
(787, 'id', 'Status Urgensi', 1, '2013-09-04 08:25:57', NULL, '0000-00-00 00:00:00'),
(788, 'en', 'Normal', 1, '2012-08-14 12:21:34', NULL, '0000-00-00 00:00:00'),
(788, 'id', 'Normal', 1, '2012-08-14 12:21:34', NULL, '0000-00-00 00:00:00'),
(789, 'en', 'Period', 1, '2012-08-14 12:23:01', NULL, '0000-00-00 00:00:00'),
(789, 'id', 'Periode', 1, '2012-08-14 12:23:01', NULL, '0000-00-00 00:00:00'),
(790, 'en', 'PO Qty', 8, '2012-08-15 10:33:37', NULL, '0000-00-00 00:00:00'),
(790, 'id', 'Jumlah PO', 8, '2012-08-15 10:33:37', NULL, '0000-00-00 00:00:00'),
(791, 'en', 'DO Draft', 1, '2012-08-14 12:32:26', NULL, '0000-00-00 00:00:00'),
(791, 'id', 'DO Draft', 1, '2012-08-14 12:32:26', NULL, '0000-00-00 00:00:00'),
(792, 'en', 'Delivered', 1, '2012-08-14 12:59:49', NULL, '0000-00-00 00:00:00'),
(792, 'id', 'Terkirim', 1, '2012-08-14 12:59:49', NULL, '0000-00-00 00:00:00'),
(794, 'en', 'Milt', 1, '2012-08-14 12:35:55', NULL, '0000-00-00 00:00:00'),
(794, 'id', 'Kekurangan', 1, '2012-08-14 12:35:55', NULL, '0000-00-00 00:00:00'),
(795, 'en', 'Unit Mode', 1, '2012-09-25 08:23:51', NULL, '0000-00-00 00:00:00'),
(795, 'id', 'Pengaturan Satuan', 1, '2012-09-25 08:23:51', NULL, '0000-00-00 00:00:00'),
(796, 'en', 'External Price', 1, '2012-08-14 12:37:02', NULL, '0000-00-00 00:00:00'),
(796, 'id', 'Harga External', 1, '2012-08-14 12:37:02', NULL, '0000-00-00 00:00:00'),
(797, 'en', 'Unflush', 1, '2012-08-14 12:37:38', NULL, '0000-00-00 00:00:00'),
(797, 'id', 'Unflush', 1, '2012-08-14 12:37:38', NULL, '0000-00-00 00:00:00'),
(798, 'en', 'PO Internal', 1, '2012-08-14 12:38:15', NULL, '0000-00-00 00:00:00'),
(798, 'id', 'PO Internal', 1, '2012-08-14 12:38:15', NULL, '0000-00-00 00:00:00'),
(799, 'en', 'Flushed', 1, '2012-08-14 12:39:21', NULL, '0000-00-00 00:00:00'),
(799, 'id', 'Flushed', 1, '2012-08-14 12:39:21', NULL, '0000-00-00 00:00:00'),
(800, 'en', 'Advanced', 1, '2012-09-21 08:22:51', NULL, '0000-00-00 00:00:00'),
(800, 'id', 'Pengaturan Dinamis', 1, '2012-09-21 08:22:51', NULL, '0000-00-00 00:00:00'),
(801, 'en', 'Reminder Time Type', 1, '2012-08-14 12:43:11', NULL, '0000-00-00 00:00:00'),
(801, 'id', 'Jenis Waktu Pengingat / Reminder', 1, '2012-08-14 12:43:11', NULL, '0000-00-00 00:00:00'),
(802, 'en', 'Goods Detail', 1, '2012-08-14 12:43:58', NULL, '0000-00-00 00:00:00'),
(802, 'id', 'Detail Barang', 1, '2012-08-14 12:43:58', NULL, '0000-00-00 00:00:00'),
(803, 'en', 'Authorization', 1, '2012-08-14 12:45:38', NULL, '0000-00-00 00:00:00'),
(803, 'id', 'Otorisasi', 1, '2012-08-14 12:45:38', NULL, '0000-00-00 00:00:00'),
(804, 'en', 'Related DO', 1, '2012-08-14 12:46:10', NULL, '0000-00-00 00:00:00'),
(804, 'id', 'DO Terkait', 1, '2012-08-14 12:46:10', NULL, '0000-00-00 00:00:00'),
(805, 'en', 'Create', 1, '2012-08-14 12:47:53', NULL, '0000-00-00 00:00:00'),
(805, 'id', 'Buat', 1, '2012-08-14 12:47:53', NULL, '0000-00-00 00:00:00'),
(806, 'en', 'DO', 1, '2012-08-14 12:48:04', NULL, '0000-00-00 00:00:00'),
(806, 'id', 'DO', 1, '2012-08-14 12:48:04', NULL, '0000-00-00 00:00:00'),
(807, 'en', 'Unit Used for', 1, '2012-09-25 08:41:39', NULL, '0000-00-00 00:00:00'),
(807, 'id', 'Satuan Digunakan Untuk', 1, '2012-09-25 08:41:39', NULL, '0000-00-00 00:00:00'),
(808, 'en', 'Selling', 1, '2012-08-14 12:49:44', NULL, '0000-00-00 00:00:00'),
(808, 'id', 'Penjualan', 1, '2012-08-14 12:49:44', NULL, '0000-00-00 00:00:00'),
(809, 'en', 'Smallest Units', 1, '2012-09-25 08:44:20', NULL, '0000-00-00 00:00:00'),
(809, 'id', 'Satuan Terkecil', 1, '2012-09-25 08:44:20', NULL, '0000-00-00 00:00:00'),
(810, 'en', 'DO Internal', 1, '2012-08-14 12:53:35', NULL, '0000-00-00 00:00:00'),
(810, 'id', 'DO Internal', 1, '2012-08-14 12:53:35', NULL, '0000-00-00 00:00:00'),
(811, 'en', 'Auto', 1, '2012-08-14 12:53:54', NULL, '0000-00-00 00:00:00'),
(811, 'id', 'Auto', 1, '2012-08-14 12:53:54', NULL, '0000-00-00 00:00:00'),
(812, 'en', 'Manual', 1, '2012-08-14 12:54:05', NULL, '0000-00-00 00:00:00'),
(812, 'id', 'Manual', 1, '2012-08-14 12:54:05', NULL, '0000-00-00 00:00:00'),
(813, 'en', 'Outstanding', 1, '2012-08-14 12:54:22', NULL, '0000-00-00 00:00:00'),
(813, 'id', 'Outstanding', 1, '2012-08-14 12:54:22', NULL, '0000-00-00 00:00:00'),
(814, 'en', 'Margin', 1, '2012-08-14 12:57:33', NULL, '0000-00-00 00:00:00'),
(814, 'id', 'Margin', 1, '2012-08-14 12:57:33', NULL, '0000-00-00 00:00:00'),
(815, 'en', 'Delivered Qty', 1, '2012-08-14 13:47:00', NULL, '0000-00-00 00:00:00'),
(815, 'id', 'Jumlah Kirim', 1, '2012-08-14 13:47:00', NULL, '0000-00-00 00:00:00'),
(816, 'en', 'Document Category', 1, '2012-08-14 13:05:25', NULL, '0000-00-00 00:00:00'),
(816, 'id', 'Kategori Dokumen', 1, '2012-08-14 13:05:25', NULL, '0000-00-00 00:00:00'),
(817, 'en', 'Bale Quantity', 1, '2012-08-14 13:14:18', NULL, '0000-00-00 00:00:00'),
(817, 'id', 'Jumlah Koli', 1, '2012-08-14 13:14:18', NULL, '0000-00-00 00:00:00'),
(820, 'en', 'Checker', 1, '2012-08-14 13:17:56', NULL, '0000-00-00 00:00:00'),
(820, 'id', 'Checker', 1, '2012-08-14 13:17:56', NULL, '0000-00-00 00:00:00'),
(821, 'en', 'Packer', 1, '2012-08-14 13:18:10', NULL, '0000-00-00 00:00:00'),
(821, 'id', 'Packer', 1, '2012-08-14 13:18:10', NULL, '0000-00-00 00:00:00'),
(824, 'en', 'Document Status', 1, '2012-08-14 13:23:31', NULL, '0000-00-00 00:00:00'),
(824, 'id', 'Status Dokumen', 1, '2012-08-14 13:23:31', NULL, '0000-00-00 00:00:00'),
(825, 'en', 'Price', 1, '2012-08-14 13:23:47', NULL, '0000-00-00 00:00:00'),
(825, 'id', 'Harga', 1, '2012-08-14 13:23:47', NULL, '0000-00-00 00:00:00'),
(826, 'en', 'Document Type', 1, '2012-08-14 13:37:44', NULL, '0000-00-00 00:00:00'),
(826, 'id', 'Jenis Dokumen', 1, '2012-08-14 13:37:44', NULL, '0000-00-00 00:00:00'),
(827, 'en', 'GR Internal', 1, '2012-08-14 13:43:05', NULL, '0000-00-00 00:00:00'),
(827, 'id', 'GR Internal', 1, '2012-08-14 13:43:05', NULL, '0000-00-00 00:00:00'),
(828, 'en', 'Qty', 1, '2012-08-14 13:47:16', NULL, '0000-00-00 00:00:00'),
(828, 'id', 'Jumlah', 1, '2012-08-14 13:47:16', NULL, '0000-00-00 00:00:00'),
(829, 'en', 'Status', 1, '2012-09-28 18:18:51', NULL, '0000-00-00 00:00:00'),
(829, 'id', 'Status', 1, '2012-09-28 18:18:51', NULL, '0000-00-00 00:00:00'),
(830, 'en', 'Master Type', 1, '2012-08-14 14:17:41', NULL, '0000-00-00 00:00:00'),
(830, 'id', 'Jenis Master', 1, '2012-08-14 14:17:43', NULL, '0000-00-00 00:00:00'),
(832, 'en', 'Retur Internal', 8, '2012-08-14 14:31:06', NULL, '0000-00-00 00:00:00'),
(832, 'id', 'Retur Internal', 8, '2012-08-14 14:31:06', NULL, '0000-00-00 00:00:00'),
(833, 'en', 'Goods Received Date', 8, '2012-08-15 14:49:50', NULL, '0000-00-00 00:00:00'),
(833, 'id', 'Tanggal Goods Received', 8, '2012-08-15 14:49:50', NULL, '0000-00-00 00:00:00'),
(834, 'en', 'Goods Name', 8, '2012-08-14 15:11:33', NULL, '0000-00-00 00:00:00'),
(834, 'id', 'Nama Barang', 8, '2012-08-14 15:11:33', NULL, '0000-00-00 00:00:00'),
(835, 'en', 'PIC', 8, '2012-08-14 15:12:03', NULL, '0000-00-00 00:00:00'),
(835, 'id', 'PIC', 8, '2012-08-14 15:12:03', NULL, '0000-00-00 00:00:00'),
(836, 'en', 'Usage', 8, '2012-08-14 15:13:56', NULL, '0000-00-00 00:00:00'),
(836, 'id', 'Penggunaan', 8, '2012-08-14 15:13:56', NULL, '0000-00-00 00:00:00'),
(837, 'en', 'Description', 8, '2012-08-14 15:14:31', NULL, '0000-00-00 00:00:00'),
(837, 'id', 'Deskripsi', 8, '2012-08-14 15:14:31', NULL, '0000-00-00 00:00:00'),
(839, 'en', 'Usage Number', 8, '2012-08-14 15:16:00', NULL, '0000-00-00 00:00:00'),
(839, 'id', 'Nomor Penggunaan', 8, '2012-08-14 15:16:00', NULL, '0000-00-00 00:00:00'),
(840, 'en', 'Formula Number', 8, '2012-08-14 15:17:49', NULL, '0000-00-00 00:00:00'),
(840, 'id', 'Nomor Resep', 8, '2012-08-14 15:17:49', NULL, '0000-00-00 00:00:00'),
(841, 'en', 'Usage Type', 8, '2012-08-14 15:23:13', NULL, '0000-00-00 00:00:00'),
(841, 'id', 'Jenis Penggunaan', 8, '2012-08-14 15:23:13', NULL, '0000-00-00 00:00:00'),
(842, 'en', 'Stock Opname', 8, '2012-08-14 15:26:59', NULL, '0000-00-00 00:00:00'),
(842, 'id', 'Stock Opname', 8, '2012-08-14 15:26:59', NULL, '0000-00-00 00:00:00'),
(843, 'en', 'Moving Order', 1, '2012-09-30 15:30:25', NULL, '0000-00-00 00:00:00'),
(843, 'id', 'Mutasi', 1, '2012-09-30 15:30:25', NULL, '0000-00-00 00:00:00'),
(844, 'en', 'Delivered to', 8, '2012-08-15 15:26:45', NULL, '0000-00-00 00:00:00'),
(844, 'id', 'Cabang Tujuan', 8, '2012-08-15 15:26:45', NULL, '0000-00-00 00:00:00'),
(845, 'en', 'Status', 8, '2012-08-14 15:37:20', NULL, '0000-00-00 00:00:00'),
(845, 'id', 'Status', 8, '2012-08-14 15:37:20', NULL, '0000-00-00 00:00:00'),
(846, 'en', 'Goods Function', 1, '2012-08-15 08:01:07', NULL, '0000-00-00 00:00:00'),
(846, 'id', 'Fungsi Barang', 1, '2012-08-15 08:01:07', NULL, '0000-00-00 00:00:00'),
(847, 'en', 'Membership Status', 8, '2012-08-15 08:17:51', NULL, '0000-00-00 00:00:00'),
(847, 'id', 'Status Peserta', 8, '2012-08-15 08:17:51', NULL, '0000-00-00 00:00:00'),
(848, 'en', 'Membership Status', 8, '2012-08-15 08:20:43', NULL, '0000-00-00 00:00:00'),
(848, 'id', 'Status Peserta', 8, '2012-08-15 08:20:43', NULL, '0000-00-00 00:00:00'),
(849, 'en', 'Cancel Receive', 1, '2012-08-15 08:23:35', NULL, '0000-00-00 00:00:00'),
(849, 'id', 'Batal Terima', 1, '2012-08-15 08:23:35', NULL, '0000-00-00 00:00:00'),
(851, 'en', 'Assignor', 1, '2012-08-15 09:34:17', NULL, '0000-00-00 00:00:00'),
(851, 'id', 'Pemberi Tugas', 1, '2012-08-15 09:34:17', NULL, '0000-00-00 00:00:00'),
(852, 'en', 'Officer', 1, '2013-06-17 09:12:17', NULL, '0000-00-00 00:00:00'),
(852, 'id', 'Officer / Petugas', 1, '2013-06-17 09:12:17', NULL, '0000-00-00 00:00:00'),
(853, 'en', 'Main Data', 1, '2012-08-15 09:45:10', NULL, '0000-00-00 00:00:00'),
(853, 'id', 'Data Utama', 1, '2012-08-15 09:45:13', NULL, '0000-00-00 00:00:00'),
(854, 'en', 'Area Data', 1, '2012-08-15 09:53:25', NULL, '0000-00-00 00:00:00'),
(854, 'id', 'Data Area / Wilayah', 1, '2012-08-15 09:53:25', NULL, '0000-00-00 00:00:00'),
(855, 'en', 'General Information', 1, '2012-08-15 09:54:01', NULL, '0000-00-00 00:00:00'),
(855, 'id', 'Informasi Umum', 1, '2012-08-15 09:54:01', NULL, '0000-00-00 00:00:00'),
(856, 'en', 'Approve Success', 1, '2012-08-15 10:24:35', NULL, '0000-00-00 00:00:00'),
(856, 'id', 'Persetujuan Berhasil', 1, '2012-08-15 10:24:35', NULL, '0000-00-00 00:00:00'),
(857, 'en', 'Unapprove Success', 1, '2012-09-25 10:42:25', NULL, '0000-00-00 00:00:00'),
(857, 'id', 'Pembatalan Persetujuan Berhasil', 1, '2012-09-25 10:42:25', NULL, '0000-00-00 00:00:00'),
(858, 'en', 'Success change status to \"Urgent\"', 1, '2012-08-15 10:25:08', NULL, '0000-00-00 00:00:00'),
(858, 'id', 'Pengubahan status \"Urgent\" berhasil', 1, '2012-08-15 10:25:08', NULL, '0000-00-00 00:00:00'),
(859, 'en', 'Flush Success', 1, '2012-08-15 10:25:24', NULL, '0000-00-00 00:00:00'),
(859, 'id', 'Flush Berhasil', 1, '2012-08-15 10:25:24', NULL, '0000-00-00 00:00:00'),
(860, 'en', 'Unflush Success', 1, '2012-08-15 10:26:23', NULL, '0000-00-00 00:00:00'),
(860, 'id', 'Unflush Berhasil', 1, '2012-08-15 10:26:23', NULL, '0000-00-00 00:00:00'),
(861, 'en', 'Success Create New DO', 1, '2013-05-21 13:30:26', NULL, '0000-00-00 00:00:00'),
(861, 'id', 'Pembuatan DO Berhasil', 1, '2013-05-21 13:30:26', NULL, '0000-00-00 00:00:00'),
(862, 'en', 'Delivered from', 8, '2012-08-15 10:32:10', NULL, '0000-00-00 00:00:00'),
(862, 'id', 'Cabang Asal', 8, '2012-08-15 10:32:10', NULL, '0000-00-00 00:00:00'),
(863, 'en', 'Bale acceptance cancelation success', 8, '2012-08-15 14:47:01', NULL, '0000-00-00 00:00:00'),
(863, 'id', 'Pembatalan accept koli berhasil', 8, '2012-08-15 14:47:01', NULL, '0000-00-00 00:00:00'),
(864, 'en', 'Bale acceptance success', 8, '2012-08-15 14:46:20', NULL, '0000-00-00 00:00:00'),
(864, 'id', 'Accept koli berhasil', 8, '2012-08-15 14:46:20', NULL, '0000-00-00 00:00:00'),
(865, 'en', 'Receiving Success', 1, '2013-05-21 13:29:37', NULL, '0000-00-00 00:00:00'),
(865, 'id', 'Penerimaan Berhasil', 1, '2013-05-21 13:29:37', NULL, '0000-00-00 00:00:00'),
(866, 'en', 'Goods Code', 1, '2013-05-10 14:01:07', NULL, '0000-00-00 00:00:00'),
(866, 'id', 'Kode Barang', 1, '2013-05-10 14:01:07', NULL, '0000-00-00 00:00:00'),
(867, 'en', 'In', 1, '2012-08-15 11:06:52', NULL, '0000-00-00 00:00:00'),
(867, 'id', 'Masuk', 1, '2012-08-15 11:06:52', NULL, '0000-00-00 00:00:00'),
(868, 'en', 'Out', 1, '2012-08-15 11:07:14', NULL, '0000-00-00 00:00:00'),
(868, 'id', 'Keluar', 1, '2012-08-15 11:07:14', NULL, '0000-00-00 00:00:00'),
(869, 'en', 'Goods Number', 1, '2012-08-15 11:10:23', NULL, '0000-00-00 00:00:00'),
(869, 'id', 'Nomor Barang', 1, '2012-08-15 11:10:23', NULL, '0000-00-00 00:00:00'),
(870, 'en', 'Balance', 1, '2013-04-25 11:26:22', NULL, '0000-00-00 00:00:00'),
(870, 'id', 'Saldo', 1, '2013-04-25 11:26:22', NULL, '0000-00-00 00:00:00'),
(871, 'en', 'Vendor', 1, '2012-08-15 12:49:59', NULL, '0000-00-00 00:00:00'),
(871, 'id', 'Vendor', 1, '2012-08-15 12:49:59', NULL, '0000-00-00 00:00:00'),
(872, 'en', 'Transaction Type', 1, '2012-08-15 12:50:45', NULL, '0000-00-00 00:00:00'),
(872, 'id', 'Tipe Transaksi', 1, '2012-08-15 12:50:45', NULL, '0000-00-00 00:00:00'),
(873, 'en', 'Before', 1, '2012-08-15 12:52:14', NULL, '0000-00-00 00:00:00'),
(873, 'id', 'Sebelum', 1, '2012-08-15 12:52:14', NULL, '0000-00-00 00:00:00'),
(874, 'en', 'After', 1, '2012-08-15 12:52:31', NULL, '0000-00-00 00:00:00'),
(874, 'id', 'Sesudah', 1, '2012-08-15 12:52:31', NULL, '0000-00-00 00:00:00'),
(875, 'en', 'Area Data can not be empty', 1, '2012-11-08 10:02:02', NULL, '0000-00-00 00:00:00'),
(875, 'id', 'Data Area / Wilayah Tidak boleh kosong', 1, '2012-11-08 10:02:02', NULL, '0000-00-00 00:00:00'),
(876, 'en', 'Good Receive Successfully Canceled', 1, '2013-07-09 10:38:40', NULL, '0000-00-00 00:00:00'),
(876, 'id', 'Pembatalan Good Received Berhasil', 1, '2013-07-09 10:38:40', NULL, '0000-00-00 00:00:00'),
(877, 'en', 'Unapprove failed', 8, '2012-08-15 15:45:43', NULL, '0000-00-00 00:00:00'),
(877, 'id', 'Pembatalan persetujuan gagal', 8, '2012-08-15 15:45:43', NULL, '0000-00-00 00:00:00'),
(878, 'en', 'Approval failed', 8, '2012-08-15 15:46:35', NULL, '0000-00-00 00:00:00'),
(878, 'id', 'Persetujuan gagal', 8, '2012-08-15 15:46:35', NULL, '0000-00-00 00:00:00'),
(879, 'en', 'Receiving Successfully Canceled', 1, '2013-05-21 13:27:18', NULL, '0000-00-00 00:00:00'),
(879, 'id', 'Pembatalan Penerimaan Berhasil', 1, '2013-05-21 13:27:18', NULL, '0000-00-00 00:00:00'),
(880, 'en', 'Receiving failed', 1, '2012-08-16 11:28:55', NULL, '0000-00-00 00:00:00'),
(880, 'id', 'Penerimaan Gagal', 1, '2012-08-16 11:28:55', NULL, '0000-00-00 00:00:00'),
(881, 'en', 'Cancel Receive Failed', 1, '2013-07-09 10:38:23', NULL, '0000-00-00 00:00:00'),
(881, 'id', 'Pembatalan Penerimaan Gagal', 1, '2013-07-09 10:38:23', NULL, '0000-00-00 00:00:00'),
(882, 'en', 'Direction', 1, '2012-09-30 15:32:08', NULL, '0000-00-00 00:00:00'),
(882, 'id', 'Arah Mutasi', 1, '2012-09-30 15:32:08', NULL, '0000-00-00 00:00:00'),
(883, 'en', 'Doctor Reference / Clinic', 1, '2012-08-24 11:00:28', NULL, '0000-00-00 00:00:00'),
(883, 'id', 'Referensi Dokter / Klinik', 1, '2012-08-24 11:00:28', NULL, '0000-00-00 00:00:00'),
(885, 'en', 'Internal Insurace List', 1, '2012-08-24 11:01:10', NULL, '0000-00-00 00:00:00'),
(885, 'id', 'Daftar Asuransi Internal', 1, '2012-08-24 11:01:10', NULL, '0000-00-00 00:00:00'),
(886, 'en', 'Bank Account List', 1, '2012-08-24 11:03:47', NULL, '0000-00-00 00:00:00'),
(886, 'id', 'Daftar Rekening Bank', 1, '2012-08-24 11:03:47', NULL, '0000-00-00 00:00:00'),
(887, 'en', 'External Insurance List', 1, '2012-08-24 11:07:09', NULL, '0000-00-00 00:00:00'),
(887, 'id', 'Daftar Asuransi Eksternal', 1, '2012-08-24 11:07:09', NULL, '0000-00-00 00:00:00'),
(888, 'en', 'Askes List', 1, '2012-08-24 11:08:28', NULL, '0000-00-00 00:00:00'),
(888, 'id', 'Daftar Asuransi Kesehatan', 1, '2012-08-24 11:08:28', NULL, '0000-00-00 00:00:00'),
(889, 'en', 'NPWP List', 1, '2012-08-24 11:09:09', NULL, '0000-00-00 00:00:00'),
(889, 'id', 'Daftar NPWP', 1, '2012-08-24 11:09:09', NULL, '0000-00-00 00:00:00'),
(890, 'en', 'Jamsostek List', 1, '2012-08-24 11:09:57', NULL, '0000-00-00 00:00:00'),
(890, 'id', 'Daftar Jamsostek', 1, '2012-08-24 11:09:57', NULL, '0000-00-00 00:00:00'),
(891, 'en', 'Cancel Approve', 1, '2012-08-29 10:29:39', NULL, '0000-00-00 00:00:00'),
(891, 'id', 'Batal Setujui', 1, '2012-08-29 10:29:39', NULL, '0000-00-00 00:00:00'),
(892, 'en', 'Cancel Accept', 1, '2012-09-19 14:24:15', NULL, '0000-00-00 00:00:00'),
(892, 'id', 'Batal Accept Koli', 1, '2012-09-19 14:24:15', NULL, '0000-00-00 00:00:00'),
(893, 'en', 'Cancel Urgent', 1, '2012-08-29 10:30:15', NULL, '0000-00-00 00:00:00'),
(893, 'id', 'Batal Urgent', 1, '2012-08-29 10:30:15', NULL, '0000-00-00 00:00:00'),
(894, 'en', 'Only if the Stock Available', 1, '2012-08-29 10:55:37', NULL, '0000-00-00 00:00:00'),
(894, 'id', 'Hanya yang ada Stok', 1, '2012-08-29 10:55:37', NULL, '0000-00-00 00:00:00'),
(895, 'en', 'Relocation', 8, '2012-08-29 16:12:44', NULL, '0000-00-00 00:00:00'),
(895, 'id', 'Relokasi', 8, '2012-08-29 16:12:44', NULL, '0000-00-00 00:00:00'),
(896, 'en', 'Status', 8, '2012-08-29 16:13:37', NULL, '0000-00-00 00:00:00'),
(896, 'id', 'Status', 8, '2012-08-29 16:13:37', NULL, '0000-00-00 00:00:00'),
(897, 'en', 'Cancel Delivery', 8, '2012-08-29 16:42:00', NULL, '0000-00-00 00:00:00'),
(897, 'id', 'Batalkan Pengiriman', 8, '2012-08-29 16:42:00', NULL, '0000-00-00 00:00:00'),
(898, 'en', 'Deliver', 1, '2013-05-15 10:40:53', NULL, '0000-00-00 00:00:00'),
(898, 'id', 'Kirim', 1, '2013-05-15 10:40:53', NULL, '0000-00-00 00:00:00'),
(899, 'en', 'Area', 1, '2012-08-29 16:43:56', NULL, '0000-00-00 00:00:00'),
(899, 'id', 'Wilayah', 1, '2012-08-29 16:43:56', NULL, '0000-00-00 00:00:00'),
(900, 'en', 'Delivery is Successfully Canceled ', 1, '2013-05-21 13:26:58', NULL, '0000-00-00 00:00:00'),
(900, 'id', 'Pembatalan Pengiriman Berhasil', 1, '2013-05-21 13:26:58', NULL, '0000-00-00 00:00:00'),
(901, 'en', 'Goods Delivery is Success', 1, '2013-05-21 13:29:00', NULL, '0000-00-00 00:00:00'),
(901, 'id', 'Pengiriman Berhasil', 1, '2013-05-21 13:29:00', NULL, '0000-00-00 00:00:00'),
(902, 'en', 'Goods', 1, '2012-08-30 08:06:06', NULL, '0000-00-00 00:00:00'),
(902, 'id', 'Master Barang', 1, '2012-08-30 08:06:06', NULL, '0000-00-00 00:00:00'),
(903, 'en', 'The Goods field is required.', 8, '2012-08-30 08:42:48', NULL, '0000-00-00 00:00:00'),
(903, 'id', 'Field barang harus diisi.', 8, '2012-08-30 08:42:48', NULL, '0000-00-00 00:00:00'),
(904, 'en', 'Add Account', 1, '2012-09-28 15:19:39', NULL, '0000-00-00 00:00:00'),
(904, 'id', 'Tambah Akun', 1, '2012-09-28 15:19:39', NULL, '0000-00-00 00:00:00'),
(905, 'en', 'Account', 1, '2012-09-28 15:18:30', NULL, '0000-00-00 00:00:00'),
(905, 'id', 'Akun', 1, '2012-09-28 15:18:30', NULL, '0000-00-00 00:00:00'),
(906, 'en', 'Additional', 1, '2012-08-30 09:55:13', NULL, '0000-00-00 00:00:00'),
(906, 'id', 'Tambahan', 1, '2012-08-30 09:55:13', NULL, '0000-00-00 00:00:00'),
(907, 'en', 'Rating', 1, '2012-08-30 16:10:24', NULL, '0000-00-00 00:00:00'),
(907, 'id', 'Rating', 1, '2012-08-30 16:10:24', NULL, '0000-00-00 00:00:00'),
(908, 'en', 'Brand Name', 1, '2012-08-30 16:10:46', NULL, '0000-00-00 00:00:00'),
(908, 'id', 'Nama Brand', 1, '2012-08-30 16:10:46', NULL, '0000-00-00 00:00:00'),
(909, 'en', 'Registered Number', 1, '2012-09-28 15:16:21', NULL, '0000-00-00 00:00:00'),
(909, 'id', 'Nomor Registrasi', 1, '2012-09-28 15:16:21', NULL, '0000-00-00 00:00:00'),
(910, 'en', 'Account Registered Date', 1, '2012-08-30 16:13:10', NULL, '0000-00-00 00:00:00'),
(910, 'id', 'Tanggal Berdiri Perusahaan', 1, '2012-08-30 16:13:10', NULL, '0000-00-00 00:00:00'),
(911, 'en', 'Company Logo', 1, '2012-08-30 16:14:24', NULL, '0000-00-00 00:00:00'),
(911, 'id', 'Logo Perusahaan', 1, '2012-08-30 16:14:24', NULL, '0000-00-00 00:00:00'),
(912, 'en', 'Other Information', 1, '2012-08-30 16:14:54', NULL, '0000-00-00 00:00:00'),
(912, 'id', 'Informasi Lainnya', 1, '2012-08-30 16:14:54', NULL, '0000-00-00 00:00:00'),
(913, 'en', 'Annual Revenue', 1, '2012-08-30 16:15:27', NULL, '0000-00-00 00:00:00'),
(913, 'id', 'Pendapatan Tahunan', 1, '2012-08-30 16:15:27', NULL, '0000-00-00 00:00:00'),
(914, 'en', 'Members Of', 1, '2012-08-30 16:17:56', NULL, '0000-00-00 00:00:00'),
(914, 'id', 'Anggota Dari', 1, '2012-08-30 16:17:56', NULL, '0000-00-00 00:00:00'),
(915, 'en', 'Parent Company', 1, '2012-08-30 16:19:37', NULL, '0000-00-00 00:00:00'),
(915, 'id', 'Induk Perusahaan', 1, '2012-08-30 16:19:37', NULL, '0000-00-00 00:00:00'),
(916, 'en', 'Employees', 1, '2012-08-30 16:20:08', NULL, '0000-00-00 00:00:00'),
(916, 'id', 'Jumlah Pegawai', 1, '2012-08-30 16:20:08', NULL, '0000-00-00 00:00:00'),
(917, 'en', 'Assign Status', 1, '2012-08-30 16:22:01', NULL, '0000-00-00 00:00:00'),
(917, 'id', 'Penetapan Petugas', 1, '2012-08-30 16:22:01', NULL, '0000-00-00 00:00:00'),
(918, 'en', 'Self Manage', 1, '2012-10-10 10:28:43', NULL, '0000-00-00 00:00:00');
INSERT INTO `gtfw_key_text` (`key_text_key_id`, `key_text_lang_code`, `key_text_key_text`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`) VALUES
(918, 'id', 'Kelola Sendiri', 1, '2012-10-10 10:28:43', NULL, '0000-00-00 00:00:00'),
(919, 'en', 'Delegate to Subordinate', 1, '2012-10-10 10:28:24', NULL, '0000-00-00 00:00:00'),
(919, 'id', 'Alihkan ke Petugas Bawahan Anda', 1, '2012-10-10 10:28:24', NULL, '0000-00-00 00:00:00'),
(920, 'en', 'Billing Address', 9, '2012-10-04 18:10:51', NULL, '0000-00-00 00:00:00'),
(920, 'id', 'Alamat Billing', 9, '2012-10-04 18:10:51', NULL, '0000-00-00 00:00:00'),
(921, 'en', 'Shipping Address', 1, '2012-08-30 16:24:50', NULL, '0000-00-00 00:00:00'),
(921, 'id', 'Alamat Shipping', 1, '2012-08-30 16:24:50', NULL, '0000-00-00 00:00:00'),
(922, 'en', 'Email Data', 1, '2012-08-30 16:25:07', NULL, '0000-00-00 00:00:00'),
(922, 'id', 'Data Email', 1, '2012-08-30 16:25:07', NULL, '0000-00-00 00:00:00'),
(923, 'en', 'Website Data', 1, '2012-08-30 16:25:23', NULL, '0000-00-00 00:00:00'),
(923, 'id', 'Data Website', 1, '2012-08-30 16:25:23', NULL, '0000-00-00 00:00:00'),
(924, 'en', 'Business Data', 1, '2012-08-30 16:26:12', NULL, '0000-00-00 00:00:00'),
(924, 'id', 'Data Bisnis Usaha', 1, '2012-08-30 16:26:12', NULL, '0000-00-00 00:00:00'),
(925, 'en', 'Product Segment Data', 1, '2012-08-30 16:26:52', NULL, '0000-00-00 00:00:00'),
(925, 'id', 'Data Segmentasi Produk', 1, '2012-08-30 16:26:52', NULL, '0000-00-00 00:00:00'),
(926, 'en', 'Business', 1, '2012-08-30 16:27:41', NULL, '0000-00-00 00:00:00'),
(926, 'id', 'Bisnis', 1, '2012-08-30 16:27:41', NULL, '0000-00-00 00:00:00'),
(927, 'en', 'Product Segment', 1, '2012-08-30 16:34:24', NULL, '0000-00-00 00:00:00'),
(927, 'id', 'Segmen Produk', 1, '2012-08-30 16:34:24', NULL, '0000-00-00 00:00:00'),
(928, 'en', 'Person', 1, '2012-08-30 16:29:50', NULL, '0000-00-00 00:00:00'),
(928, 'id', 'Orang', 1, '2012-08-30 16:29:50', NULL, '0000-00-00 00:00:00'),
(929, 'en', 'Phone Data', 1, '2012-08-30 16:30:05', NULL, '0000-00-00 00:00:00'),
(929, 'id', 'Data Telepon', 1, '2012-08-30 16:30:05', NULL, '0000-00-00 00:00:00'),
(930, 'en', 'Assignor Officer', 1, '2013-06-17 09:12:41', NULL, '0000-00-00 00:00:00'),
(930, 'id', 'Atasan Officer / Petugas', 1, '2013-06-17 09:12:41', NULL, '0000-00-00 00:00:00'),
(931, 'en', 'Date', 1, '2012-09-30 15:30:48', NULL, '0000-00-00 00:00:00'),
(931, 'id', 'Tanggal', 1, '2012-09-30 15:30:48', NULL, '0000-00-00 00:00:00'),
(932, 'en', 'Urgent status is successfully canceled', 1, '2013-05-21 13:28:14', NULL, '0000-00-00 00:00:00'),
(932, 'id', 'Pembatalan Status Urgen Berhasil', 1, '2013-05-21 13:28:14', NULL, '0000-00-00 00:00:00'),
(933, 'en', 'Overstock Report', 1, '2012-09-05 08:14:51', NULL, '0000-00-00 00:00:00'),
(933, 'id', 'Laporan Kelebihan Stok', 1, '2012-09-05 08:14:51', NULL, '0000-00-00 00:00:00'),
(934, 'en', 'Less Stock Report', 1, '2012-09-05 09:10:31', NULL, '0000-00-00 00:00:00'),
(934, 'id', 'Laporan Kekurangan Stok', 1, '2012-09-05 09:10:31', NULL, '0000-00-00 00:00:00'),
(935, 'en', 'Stock Expired Report', 1, '2012-09-05 09:10:57', NULL, '0000-00-00 00:00:00'),
(935, 'id', 'Laporan Stok Expired', 1, '2012-09-05 09:10:57', NULL, '0000-00-00 00:00:00'),
(936, 'en', 'Retur From', 1, '2012-09-07 09:02:12', NULL, '0000-00-00 00:00:00'),
(936, 'id', 'Retur Dari', 1, '2012-09-07 09:02:12', NULL, '0000-00-00 00:00:00'),
(937, 'en', 'Transaction Number', 1, '2012-09-07 09:02:26', NULL, '0000-00-00 00:00:00'),
(937, 'id', 'Nomor Transaksi', 1, '2012-09-07 09:02:26', NULL, '0000-00-00 00:00:00'),
(938, 'en', 'Retur Number', 1, '2012-09-07 09:02:41', NULL, '0000-00-00 00:00:00'),
(938, 'id', 'Nomor Retur', 1, '2012-09-07 09:02:41', NULL, '0000-00-00 00:00:00'),
(939, 'en', 'Currency Rate', 1, '2012-09-07 09:03:08', NULL, '0000-00-00 00:00:00'),
(939, 'id', 'Kurs', 1, '2012-09-07 09:03:08', NULL, '0000-00-00 00:00:00'),
(940, 'en', 'Created By', 1, '2012-09-07 09:03:25', NULL, '0000-00-00 00:00:00'),
(940, 'id', 'Dibuat Oleh', 1, '2012-09-07 09:03:25', NULL, '0000-00-00 00:00:00'),
(941, 'en', 'Prepared By', 1, '2012-09-07 09:03:42', NULL, '0000-00-00 00:00:00'),
(941, 'id', 'Disiapkan Oleh', 1, '2012-09-07 09:03:42', NULL, '0000-00-00 00:00:00'),
(942, 'en', 'Business Partner', 1, '2012-09-07 09:04:02', NULL, '0000-00-00 00:00:00'),
(942, 'id', 'Business Partner', 1, '2012-09-07 09:04:02', NULL, '0000-00-00 00:00:00'),
(943, 'en', 'Receiver', 1, '2012-09-07 10:49:22', NULL, '0000-00-00 00:00:00'),
(943, 'id', 'Penerima', 1, '2012-09-07 10:49:22', NULL, '0000-00-00 00:00:00'),
(944, 'en', 'Stock Card', 1, '2012-09-10 14:39:11', NULL, '0000-00-00 00:00:00'),
(944, 'id', 'Kartu Stok', 1, '2012-09-10 14:39:11', NULL, '0000-00-00 00:00:00'),
(945, 'en', 'Class Style', 1, '2012-09-12 15:27:03', NULL, '0000-00-00 00:00:00'),
(945, 'id', 'Style Class', 1, '2012-09-12 15:27:03', NULL, '0000-00-00 00:00:00'),
(946, 'en', 'Stock for', 1, '2012-09-20 19:43:59', NULL, '0000-00-00 00:00:00'),
(946, 'id', 'Stock barang', 1, '2012-09-20 19:43:59', NULL, '0000-00-00 00:00:00'),
(947, 'en', 'only available', 1, '2012-09-20 19:44:23', NULL, '0000-00-00 00:00:00'),
(947, 'id', 'hanya tersedia', 1, '2012-09-20 19:44:23', NULL, '0000-00-00 00:00:00'),
(948, 'en', 'for', 1, '2012-09-20 19:44:38', NULL, '0000-00-00 00:00:00'),
(948, 'id', 'untuk', 1, '2012-09-20 19:44:38', NULL, '0000-00-00 00:00:00'),
(949, 'en', 'needed', 1, '2012-09-20 19:44:58', NULL, '0000-00-00 00:00:00'),
(949, 'id', 'yang diperlukan', 1, '2012-09-20 19:44:58', NULL, '0000-00-00 00:00:00'),
(950, 'en', 'Not Packet', 1, '2012-09-21 08:29:25', NULL, '0000-00-00 00:00:00'),
(950, 'id', 'Bukan Paket', 1, '2012-09-21 08:29:25', NULL, '0000-00-00 00:00:00'),
(951, 'en', 'Smallest Units/Sell Units', 1, '2012-09-21 08:33:11', NULL, '0000-00-00 00:00:00'),
(951, 'id', 'Satuan Jual/Terkecil', 1, '2012-09-21 08:33:11', NULL, '0000-00-00 00:00:00'),
(952, 'en', 'Goods Is Packet', 1, '2012-09-21 08:35:44', NULL, '0000-00-00 00:00:00'),
(952, 'id', 'Barang Paket', 1, '2012-09-21 08:35:44', NULL, '0000-00-00 00:00:00'),
(953, 'en', 'Buy Price To Supplier', 1, '2012-09-21 08:37:01', NULL, '0000-00-00 00:00:00'),
(953, 'id', 'Harga Beli Ke Supplier', 1, '2012-09-21 08:37:01', NULL, '0000-00-00 00:00:00'),
(954, 'en', 'Department / Unit', 1, '2012-09-21 15:41:24', NULL, '0000-00-00 00:00:00'),
(954, 'id', 'Departemen / Unit', 1, '2012-09-21 15:41:24', NULL, '0000-00-00 00:00:00'),
(955, 'en', 'Unit Address', 1, '2012-09-21 15:42:07', NULL, '0000-00-00 00:00:00'),
(955, 'id', 'Alamat Departemen/Unit', 1, '2012-09-21 15:42:07', NULL, '0000-00-00 00:00:00'),
(956, 'en', 'External Purchasing', 1, '2012-09-25 08:42:29', NULL, '0000-00-00 00:00:00'),
(956, 'id', 'Pemesanan Barang Ke Supplier', 1, '2012-09-25 08:42:29', NULL, '0000-00-00 00:00:00'),
(957, 'en', 'PO Internal', 1, '2012-10-01 05:11:25', NULL, '0000-00-00 00:00:00'),
(957, 'id', 'Pembelian Antar Unit', 1, '2012-10-01 05:11:25', NULL, '0000-00-00 00:00:00'),
(958, 'en', 'Refer To', 1, '2012-09-25 08:56:14', NULL, '0000-00-00 00:00:00'),
(958, 'id', 'Acuan', 1, '2012-09-25 08:56:14', NULL, '0000-00-00 00:00:00'),
(959, 'en', 'Sell Unit', 1, '2012-09-25 14:53:56', NULL, '0000-00-00 00:00:00'),
(959, 'id', 'Satuan Jual', 1, '2012-09-25 14:53:56', NULL, '0000-00-00 00:00:00'),
(960, 'en', 'Tax Status', 1, '2012-09-25 15:55:09', NULL, '0000-00-00 00:00:00'),
(960, 'id', 'Status Pajak', 1, '2012-09-25 15:55:09', NULL, '0000-00-00 00:00:00'),
(961, 'en', 'Discount Status', 1, '2012-09-25 15:55:57', NULL, '0000-00-00 00:00:00'),
(961, 'id', 'Status Diskon', 1, '2012-09-25 15:55:57', NULL, '0000-00-00 00:00:00'),
(962, 'en', 'No stock availabel for goods', 1, '2012-09-26 08:19:30', NULL, '0000-00-00 00:00:00'),
(962, 'id', 'Tak ada stock tersedia untuk barang', 1, '2012-09-26 08:19:30', NULL, '0000-00-00 00:00:00'),
(963, 'en', 'Code/Name/Barcode', 1, '2012-09-26 11:01:27', NULL, '0000-00-00 00:00:00'),
(963, 'id', 'Kode/Nama/Barcode', 1, '2012-09-26 11:01:27', NULL, '0000-00-00 00:00:00'),
(964, 'en', 'Goods Price', 1, '2012-09-26 13:34:14', NULL, '0000-00-00 00:00:00'),
(964, 'id', 'Harga Barang', 1, '2012-09-26 13:34:14', NULL, '0000-00-00 00:00:00'),
(965, 'en', 'Usage For', 1, '2012-09-26 14:01:07', NULL, '0000-00-00 00:00:00'),
(965, 'id', 'Digunakan Untuk', 1, '2012-09-26 14:01:07', NULL, '0000-00-00 00:00:00'),
(966, 'en', 'Registered Number', 1, '2012-09-28 14:46:57', NULL, '0000-00-00 00:00:00'),
(966, 'id', 'Nomor Registrasi', 1, '2012-09-28 14:46:57', NULL, '0000-00-00 00:00:00'),
(967, 'en', 'Name', 1, '2012-09-28 14:48:52', NULL, '0000-00-00 00:00:00'),
(967, 'id', 'Nama', 1, '2012-09-28 14:48:52', NULL, '0000-00-00 00:00:00'),
(968, 'en', 'Information', 1, '2012-09-28 14:48:19', NULL, '0000-00-00 00:00:00'),
(968, 'id', 'Informasi', 1, '2012-09-28 14:48:19', NULL, '0000-00-00 00:00:00'),
(969, 'en', 'Information', 1, '2012-09-28 14:49:17', NULL, '0000-00-00 00:00:00'),
(969, 'id', 'Informasi', 1, '2012-09-28 14:49:17', NULL, '0000-00-00 00:00:00'),
(970, 'en', 'Clear', 1, '2012-09-28 14:50:01', NULL, '0000-00-00 00:00:00'),
(970, 'id', 'Hapus', 1, '2012-09-28 14:50:01', NULL, '0000-00-00 00:00:00'),
(971, 'en', 'Transactional', 1, '2012-09-28 14:50:37', NULL, '0000-00-00 00:00:00'),
(971, 'id', 'Transaksional', 1, '2012-09-28 14:50:37', NULL, '0000-00-00 00:00:00'),
(972, 'en', 'Detail', 1, '2012-09-28 14:51:29', NULL, '0000-00-00 00:00:00'),
(972, 'id', 'Detail', 1, '2012-09-28 14:51:29', NULL, '0000-00-00 00:00:00'),
(973, 'en', 'Business Model', 1, '2012-09-28 14:52:09', NULL, '0000-00-00 00:00:00'),
(973, 'id', 'Model Bisnis', 1, '2012-09-28 14:52:09', NULL, '0000-00-00 00:00:00'),
(974, 'en', 'Opportunity Name', 1, '2012-09-28 14:52:37', NULL, '0000-00-00 00:00:00'),
(974, 'id', 'Nama Peluang', 1, '2012-09-28 14:52:37', NULL, '0000-00-00 00:00:00'),
(976, 'en', 'Opportunity', 1, '2012-09-28 14:54:55', NULL, '0000-00-00 00:00:00'),
(976, 'id', 'Peluang', 1, '2012-09-28 14:54:55', NULL, '0000-00-00 00:00:00'),
(977, 'en', 'Revenue', 1, '2012-09-28 14:57:05', NULL, '0000-00-00 00:00:00'),
(977, 'id', 'Pendapatan', 1, '2012-09-28 14:57:05', NULL, '0000-00-00 00:00:00'),
(978, 'en', 'Gross Profit', 1, '2012-09-28 18:00:35', NULL, '0000-00-00 00:00:00'),
(978, 'id', 'Laba Bruto', 1, '2012-09-28 18:00:35', NULL, '0000-00-00 00:00:00'),
(979, 'en', 'Next Step', 1, '2012-09-28 14:57:47', NULL, '0000-00-00 00:00:00'),
(979, 'id', 'Langkah Selanjutnya', 1, '2012-09-28 14:57:47', NULL, '0000-00-00 00:00:00'),
(980, 'en', 'Additional Information', 1, '2012-09-28 14:58:10', NULL, '0000-00-00 00:00:00'),
(980, 'id', 'Informasi Tambahan', 1, '2012-09-28 14:58:10', NULL, '0000-00-00 00:00:00'),
(981, 'en', 'Prospect Start Status', 1, '2012-09-28 14:58:48', NULL, '0000-00-00 00:00:00'),
(981, 'id', 'Status Berjalannya Prospek', 1, '2012-09-28 14:58:48', NULL, '0000-00-00 00:00:00'),
(982, 'en', 'Not Started', 1, '2012-09-28 15:01:04', NULL, '0000-00-00 00:00:00'),
(982, 'id', 'Belum Berjalan', 1, '2012-09-28 15:01:04', NULL, '0000-00-00 00:00:00'),
(983, 'en', 'Already Started', 1, '2012-09-28 15:00:51', NULL, '0000-00-00 00:00:00'),
(983, 'id', 'Sudah Berjalan', 1, '2012-09-28 15:00:51', NULL, '0000-00-00 00:00:00'),
(984, 'en', 'Transaction Log', 1, '2012-09-28 15:01:23', NULL, '0000-00-00 00:00:00'),
(984, 'id', 'Log Transaksi', 1, '2012-09-28 15:01:23', NULL, '0000-00-00 00:00:00'),
(985, 'en', 'View Log', 1, '2012-09-28 15:01:42', NULL, '0000-00-00 00:00:00'),
(985, 'id', 'Lihat Log', 1, '2012-09-28 15:01:42', NULL, '0000-00-00 00:00:00'),
(986, 'en', 'Revenue', 1, '2012-09-28 17:59:05', NULL, '0000-00-00 00:00:00'),
(986, 'id', 'Pendapatan', 1, '2012-09-28 17:59:05', NULL, '0000-00-00 00:00:00'),
(987, 'en', 'Contact', 1, '2012-09-28 15:05:33', NULL, '0000-00-00 00:00:00'),
(987, 'id', 'Kontak', 1, '2012-09-28 15:05:33', NULL, '0000-00-00 00:00:00'),
(988, 'en', 'Contact Data', 1, '2012-09-28 15:05:59', NULL, '0000-00-00 00:00:00'),
(988, 'id', 'Data Kontak', 1, '2012-09-28 15:05:59', NULL, '0000-00-00 00:00:00'),
(989, 'en', 'Attachment Data', 1, '2012-09-28 15:06:26', NULL, '0000-00-00 00:00:00'),
(989, 'id', 'Data Lampiran', 1, '2012-09-28 15:06:26', NULL, '0000-00-00 00:00:00'),
(990, 'en', 'Business Sector Data', 1, '2012-09-28 15:08:29', NULL, '0000-00-00 00:00:00'),
(990, 'id', 'Data Sektor Usaha', 1, '2012-09-28 15:08:29', NULL, '0000-00-00 00:00:00'),
(991, 'en', 'Name', 1, '2012-09-28 15:09:40', NULL, '0000-00-00 00:00:00'),
(991, 'id', 'Nama', 1, '2012-09-28 15:09:40', NULL, '0000-00-00 00:00:00'),
(993, 'en', 'Add Opportunity', 1, '2012-09-28 15:19:23', NULL, '0000-00-00 00:00:00'),
(993, 'id', 'Tambah Peluang', 1, '2012-09-28 15:19:23', NULL, '0000-00-00 00:00:00'),
(994, 'en', 'Add Contact', 1, '2012-09-28 15:20:42', NULL, '0000-00-00 00:00:00'),
(994, 'id', 'Tambah Kontak', 1, '2012-09-28 15:20:42', NULL, '0000-00-00 00:00:00'),
(995, 'en', 'Do Not Call', 1, '2012-09-28 18:22:35', NULL, '0000-00-00 00:00:00'),
(995, 'id', 'Tidak Dapat Dihubungi', 1, '2012-09-28 18:22:35', NULL, '0000-00-00 00:00:00'),
(996, 'en', 'Outlook Sync', 1, '2012-09-28 15:23:28', NULL, '0000-00-00 00:00:00'),
(996, 'id', 'Sinkronisasi dengan Outlook', 1, '2012-09-28 15:23:28', NULL, '0000-00-00 00:00:00'),
(997, 'en', 'From Contact', 1, '2012-09-28 15:23:51', NULL, '0000-00-00 00:00:00'),
(997, 'id', 'Dari Kontak', 1, '2012-09-28 15:23:51', NULL, '0000-00-00 00:00:00'),
(998, 'en', 'Main Address', 9, '2012-10-04 18:10:27', NULL, '0000-00-00 00:00:00'),
(998, 'id', 'Alamat Utama', 9, '2012-10-04 18:10:27', NULL, '0000-00-00 00:00:00'),
(999, 'en', 'Alternative Address', 1, '2012-09-28 15:24:48', NULL, '0000-00-00 00:00:00'),
(999, 'id', 'Alamat Alternatif', 1, '2012-09-28 15:24:48', NULL, '0000-00-00 00:00:00'),
(1000, 'en', 'Instant Message (IM) Data', 1, '2012-09-28 15:25:52', NULL, '0000-00-00 00:00:00'),
(1000, 'id', 'Data Instant Messaging (IM)', 1, '2012-09-28 15:25:52', NULL, '0000-00-00 00:00:00'),
(1001, 'en', 'Social Media Data', 1, '2012-09-28 15:26:20', NULL, '0000-00-00 00:00:00'),
(1001, 'id', 'Data Jejaring Sosial', 1, '2012-09-28 15:26:20', NULL, '0000-00-00 00:00:00'),
(1002, 'en', 'IM Client', 1, '2012-09-28 15:27:11', NULL, '0000-00-00 00:00:00'),
(1002, 'id', 'Klien IM', 1, '2012-09-28 15:27:11', NULL, '0000-00-00 00:00:00'),
(1003, 'en', 'Set As Primary', 1, '2012-09-28 15:41:21', NULL, '0000-00-00 00:00:00'),
(1003, 'id', 'Set Sebagai Utama', 1, '2012-09-28 15:41:21', NULL, '0000-00-00 00:00:00'),
(1004, 'en', 'Add Target', 1, '2012-09-28 16:10:56', NULL, '0000-00-00 00:00:00'),
(1004, 'id', 'Tambah Target', 1, '2012-09-28 16:10:56', NULL, '0000-00-00 00:00:00'),
(1005, 'en', 'Reference Number', 1, '2012-09-28 16:19:15', NULL, '0000-00-00 00:00:00'),
(1005, 'id', 'Nomor Referensi', 1, '2012-09-28 16:19:15', NULL, '0000-00-00 00:00:00'),
(1006, 'en', 'Social Media Account', 9, '2012-09-28 17:38:37', NULL, '0000-00-00 00:00:00'),
(1006, 'id', 'Akun Jejaring Sosial', 9, '2012-09-28 17:38:37', NULL, '0000-00-00 00:00:00'),
(1007, 'en', 'Detail', 9, '2012-09-28 17:39:08', NULL, '0000-00-00 00:00:00'),
(1007, 'id', 'Detail', 9, '2012-09-28 17:39:08', NULL, '0000-00-00 00:00:00'),
(1008, 'en', 'Add Lead', 1, '2012-09-28 18:14:53', NULL, '0000-00-00 00:00:00'),
(1008, 'id', 'Tambah Narasumber', 1, '2012-09-28 18:14:53', NULL, '0000-00-00 00:00:00'),
(1009, 'en', 'Status Notes', 1, '2012-09-28 18:09:22', NULL, '0000-00-00 00:00:00'),
(1009, 'id', 'Keterangan Status', 1, '2012-09-28 18:09:22', NULL, '0000-00-00 00:00:00'),
(1010, 'en', 'Lead Source Notes', 1, '2012-09-28 18:15:11', NULL, '0000-00-00 00:00:00'),
(1010, 'id', 'Keterangan Sumber', 1, '2012-09-28 18:15:11', NULL, '0000-00-00 00:00:00'),
(1011, 'en', 'Estimated Amount', 1, '2012-10-04 18:57:35', NULL, '0000-00-00 00:00:00'),
(1011, 'id', 'Nominal Perkiraan', 1, '2012-10-04 18:57:35', NULL, '0000-00-00 00:00:00'),
(1012, 'en', 'Units', 1, '2012-09-30 11:19:14', NULL, '0000-00-00 00:00:00'),
(1012, 'id', 'Satuan', 1, '2012-09-30 11:19:14', NULL, '0000-00-00 00:00:00'),
(1013, 'en', 'Action', 1, '2012-09-30 11:20:08', NULL, '0000-00-00 00:00:00'),
(1013, 'id', 'Aksi', 1, '2012-09-30 11:20:08', NULL, '0000-00-00 00:00:00'),
(1014, 'en', 'Stock Before', 1, '2012-09-30 13:45:26', NULL, '0000-00-00 00:00:00'),
(1014, 'id', 'Stock Sebelumnya', 1, '2012-09-30 13:45:26', NULL, '0000-00-00 00:00:00'),
(1015, 'en', 'Stock Opname', 1, '2012-09-30 13:45:41', NULL, '0000-00-00 00:00:00'),
(1015, 'id', 'Stock Opname', 1, '2012-09-30 13:45:41', NULL, '0000-00-00 00:00:00'),
(1016, 'en', 'Sender', 1, '2012-09-30 15:29:43', NULL, '0000-00-00 00:00:00'),
(1016, 'id', 'Pengirim', 1, '2012-09-30 15:29:43', NULL, '0000-00-00 00:00:00'),
(1017, 'en', 'Receiver', 1, '2012-09-30 15:30:01', NULL, '0000-00-00 00:00:00'),
(1017, 'id', 'Penerima', 1, '2012-09-30 15:30:01', NULL, '0000-00-00 00:00:00'),
(1018, 'en', 'Relocation Direction', 1, '2012-09-30 16:14:02', NULL, '0000-00-00 00:00:00'),
(1018, 'id', 'Arah Relokasi', 1, '2012-09-30 16:14:02', NULL, '0000-00-00 00:00:00'),
(1019, 'en', 'Requestor', 1, '2012-09-30 16:20:50', NULL, '0000-00-00 00:00:00'),
(1019, 'id', 'Peminta Relokasi', 1, '2012-09-30 16:20:50', NULL, '0000-00-00 00:00:00'),
(1020, 'en', 'Sender', 1, '2012-09-30 16:18:40', NULL, '0000-00-00 00:00:00'),
(1020, 'id', 'Pengirim', 1, '2012-09-30 16:18:40', NULL, '0000-00-00 00:00:00'),
(1021, 'en', 'From Name', 37, '2013-05-15 09:45:28', NULL, '0000-00-00 00:00:00'),
(1021, 'id', 'Dari (Nama)', 37, '2013-05-15 09:45:28', NULL, '0000-00-00 00:00:00'),
(1022, 'en', 'To', 1, '2012-09-30 16:22:02', NULL, '0000-00-00 00:00:00'),
(1022, 'id', 'Kepada', 1, '2012-09-30 16:22:02', NULL, '0000-00-00 00:00:00'),
(1023, 'en', 'Batchcode Method', 1, '2012-09-30 18:33:19', NULL, '0000-00-00 00:00:00'),
(1023, 'id', 'Metode Pengambilan Batchcode', 1, '2012-09-30 18:33:19', NULL, '0000-00-00 00:00:00'),
(1024, 'en', 'No stock available', 1, '2012-09-30 19:23:15', NULL, '0000-00-00 00:00:00'),
(1024, 'id', 'Stok tidak tersedia', 1, '2012-09-30 19:23:15', NULL, '0000-00-00 00:00:00'),
(1025, 'en', 'Category', 1, '2012-10-01 09:49:15', NULL, '0000-00-00 00:00:00'),
(1025, 'id', 'Kategori', 1, '2012-10-01 09:49:15', NULL, '0000-00-00 00:00:00'),
(1026, 'en', 'Excel', 1, '2012-10-01 09:49:56', NULL, '0000-00-00 00:00:00'),
(1026, 'id', 'Excel', 1, '2012-10-01 09:49:56', NULL, '0000-00-00 00:00:00'),
(1027, 'en', 'Detail', 1, '2012-10-01 09:52:38', NULL, '0000-00-00 00:00:00'),
(1027, 'id', 'Detail', 1, '2012-10-01 09:52:38', NULL, '0000-00-00 00:00:00'),
(1028, 'en', 'Entry Date', 1, '2012-10-01 09:54:23', NULL, '0000-00-00 00:00:00'),
(1028, 'id', 'Tanggal Masuk', 1, '2012-10-01 09:54:23', NULL, '0000-00-00 00:00:00'),
(1029, 'en', 'Entry Time', 1, '2012-10-01 09:54:40', NULL, '0000-00-00 00:00:00'),
(1029, 'id', 'Jam Masuk', 1, '2012-10-01 09:54:40', NULL, '0000-00-00 00:00:00'),
(1030, 'en', 'Qty', 1, '2012-10-01 10:02:52', NULL, '0000-00-00 00:00:00'),
(1030, 'id', 'Jumlah', 1, '2012-10-01 10:02:52', NULL, '0000-00-00 00:00:00'),
(1031, 'en', 'Current Stock', 1, '2012-10-01 13:49:32', NULL, '0000-00-00 00:00:00'),
(1031, 'id', 'Stok Terkini', 1, '2012-10-01 13:49:32', NULL, '0000-00-00 00:00:00'),
(1032, 'en', 'You get a message from %s with subject %s', 4, '2012-10-02 10:31:36', NULL, '0000-00-00 00:00:00'),
(1032, 'id', 'Anda mendapat pesan dari %s dengan subject %s', 4, '2012-10-02 10:31:36', NULL, '0000-00-00 00:00:00'),
(1033, 'en', 'Failed to send message', 4, '2012-10-02 10:32:34', NULL, '0000-00-00 00:00:00'),
(1033, 'id', 'Gagal mengirim pesan', 4, '2012-10-02 10:32:34', NULL, '0000-00-00 00:00:00'),
(1034, 'en', 'New Message', 4, '2012-10-02 10:33:49', NULL, '0000-00-00 00:00:00'),
(1034, 'id', 'Pesan Baru', 4, '2012-10-02 10:33:49', NULL, '0000-00-00 00:00:00'),
(1035, 'en', 'Message saved', 4, '2012-10-02 13:12:36', NULL, '0000-00-00 00:00:00'),
(1035, 'id', 'Pesan tersimpan', 4, '2012-10-02 13:12:36', NULL, '0000-00-00 00:00:00'),
(1036, 'en', 'Message sent', 4, '2012-10-02 10:35:12', NULL, '0000-00-00 00:00:00'),
(1036, 'id', 'Pesan terkirim', 4, '2012-10-02 10:35:12', NULL, '0000-00-00 00:00:00'),
(1037, 'en', 'No message', 4, '2012-10-02 10:36:41', NULL, '0000-00-00 00:00:00'),
(1037, 'id', 'Tidak ada pesan', 4, '2012-10-02 10:36:41', NULL, '0000-00-00 00:00:00'),
(1038, 'en', 'Received Message', 4, '2012-10-02 10:38:11', NULL, '0000-00-00 00:00:00'),
(1038, 'id', 'Pesan Masuk', 4, '2012-10-02 10:38:11', NULL, '0000-00-00 00:00:00'),
(1039, 'en', 'Sent Message', 4, '2012-10-02 10:39:01', NULL, '0000-00-00 00:00:00'),
(1039, 'id', 'Pesan Terkirim', 4, '2012-10-02 10:39:01', NULL, '0000-00-00 00:00:00'),
(1040, 'en', 'Saved Message', 4, '2012-10-02 10:39:34', NULL, '0000-00-00 00:00:00'),
(1040, 'id', 'Pesan Tersimpan', 4, '2012-10-02 10:39:34', NULL, '0000-00-00 00:00:00'),
(1041, 'en', 'Message will be deleted permanently.\\nDo you want to continue?', 4, '2012-10-02 13:08:33', NULL, '0000-00-00 00:00:00'),
(1041, 'id', 'Pesan akan dihapus secara permanen.\\nApakah dilanjutkan?', 4, '2012-10-02 13:08:33', NULL, '0000-00-00 00:00:00'),
(1042, 'en', 'message successfully', 4, '2012-10-02 13:11:21', NULL, '0000-00-00 00:00:00'),
(1042, 'id', 'pesan berhasil', 4, '2012-10-02 13:11:21', NULL, '0000-00-00 00:00:00'),
(1043, 'en', 'Folder %s deleted', 4, '2012-10-03 09:59:21', NULL, '0000-00-00 00:00:00'),
(1043, 'id', 'Folder %d berhasil dihapus', 4, '2012-10-03 09:59:21', NULL, '0000-00-00 00:00:00'),
(1044, 'en', 'Fail to rename folder', 4, '2012-10-03 09:54:00', NULL, '0000-00-00 00:00:00'),
(1044, 'id', 'Gagal mengubah nama folder', 4, '2012-10-03 09:54:00', NULL, '0000-00-00 00:00:00'),
(1045, 'en', 'Successfully rename folder to %s', 4, '2012-10-03 09:59:01', NULL, '0000-00-00 00:00:00'),
(1045, 'id', 'Nama folder berhasil diubah menjadi %s', 4, '2012-10-03 09:59:01', NULL, '0000-00-00 00:00:00'),
(1046, 'en', 'Fail to create folder %s', 4, '2012-10-03 09:57:15', NULL, '0000-00-00 00:00:00'),
(1046, 'id', 'Gagal membuat folder %s', 4, '2012-10-03 09:57:15', NULL, '0000-00-00 00:00:00'),
(1047, 'en', 'Folder %s created successfully', 4, '2012-10-03 09:58:32', NULL, '0000-00-00 00:00:00'),
(1047, 'id', 'Folder %s berhasil dibuat', 4, '2012-10-03 09:58:32', NULL, '0000-00-00 00:00:00'),
(1048, 'en', 'Blaclist updated', 4, '2012-10-03 10:00:00', NULL, '0000-00-00 00:00:00'),
(1048, 'id', 'Blacklist terupdate', 4, '2012-10-03 10:00:00', NULL, '0000-00-00 00:00:00'),
(1049, 'en', 'Blasklist update fail', 4, '2012-10-03 10:00:36', NULL, '0000-00-00 00:00:00'),
(1049, 'id', 'Gagal mengupdate blacklist', 4, '2012-10-03 10:00:36', NULL, '0000-00-00 00:00:00'),
(1050, 'en', 'Are you sure want to delete this folder? \\nMessages in this folder will also be deleted', 4, '2012-10-03 10:06:44', NULL, '0000-00-00 00:00:00'),
(1050, 'id', 'Anda yakin akan menghapus folder ini? \\nPesan di nya juga akan terhapus', 4, '2012-10-03 10:06:44', NULL, '0000-00-00 00:00:00'),
(1051, 'en', 'Notification', 9, '2012-10-03 11:14:03', NULL, '0000-00-00 00:00:00'),
(1051, 'id', 'Notifikasi', 9, '2012-10-03 11:14:03', NULL, '0000-00-00 00:00:00'),
(1052, 'en', 'View Notification List', 9, '2012-10-03 11:14:30', NULL, '0000-00-00 00:00:00'),
(1052, 'id', 'Lihat Daftar Notifikasi', 9, '2012-10-03 11:14:30', NULL, '0000-00-00 00:00:00'),
(1053, 'en', 'Messaging', 9, '2012-10-03 11:14:53', NULL, '0000-00-00 00:00:00'),
(1053, 'id', 'Pesan', 9, '2012-10-03 11:14:53', NULL, '0000-00-00 00:00:00'),
(1054, 'en', 'Subject', 9, '2012-10-03 11:15:17', NULL, '0000-00-00 00:00:00'),
(1054, 'id', 'Subyek', 9, '2012-10-03 11:15:17', NULL, '0000-00-00 00:00:00'),
(1055, 'en', 'Select All', 9, '2012-10-03 11:15:36', NULL, '0000-00-00 00:00:00'),
(1055, 'id', 'Pilih Semua', 9, '2012-10-03 11:15:36', NULL, '0000-00-00 00:00:00'),
(1056, 'en', 'Unselect All', 9, '2012-10-03 11:16:12', NULL, '0000-00-00 00:00:00'),
(1056, 'id', 'Tidak Pilih Semua', 9, '2012-10-03 11:16:12', NULL, '0000-00-00 00:00:00'),
(1057, 'en', 'Select Inverse', 9, '2012-10-03 11:17:51', NULL, '0000-00-00 00:00:00'),
(1057, 'id', 'Pilih Kebalikan', 9, '2012-10-03 11:17:51', NULL, '0000-00-00 00:00:00'),
(1058, 'en', 'Move To', 9, '2012-10-03 11:18:16', NULL, '0000-00-00 00:00:00'),
(1058, 'id', 'Pindah Ke', 9, '2012-10-03 11:18:16', NULL, '0000-00-00 00:00:00'),
(1059, 'en', 'Mark As Unread', 9, '2012-10-03 11:18:50', NULL, '0000-00-00 00:00:00'),
(1059, 'id', 'Tandai Belum Dibaca', 9, '2012-10-03 11:18:50', NULL, '0000-00-00 00:00:00'),
(1060, 'en', 'Send To Email', 9, '2012-10-03 11:22:37', NULL, '0000-00-00 00:00:00'),
(1060, 'id', 'Kirim Ke Email', 9, '2012-10-03 11:22:37', NULL, '0000-00-00 00:00:00'),
(1061, 'en', 'Save Change', 9, '2012-10-03 11:19:29', NULL, '0000-00-00 00:00:00'),
(1061, 'id', 'Simpan Perubahan', 9, '2012-10-03 11:19:29', NULL, '0000-00-00 00:00:00'),
(1062, 'en', 'saved', 1, '2013-11-14 10:45:10', NULL, '0000-00-00 00:00:00'),
(1062, 'id', 'tersimpan', 1, '2013-11-14 10:45:10', NULL, '0000-00-00 00:00:00'),
(1063, 'en', 'New', 9, '2012-10-03 11:20:52', NULL, '0000-00-00 00:00:00'),
(1063, 'id', 'Baru', 9, '2012-10-03 11:20:52', NULL, '0000-00-00 00:00:00'),
(1064, 'en', 'Refresh', 9, '2012-10-03 11:21:11', NULL, '0000-00-00 00:00:00'),
(1064, 'id', 'Muat Kembali', 9, '2012-10-03 11:21:11', NULL, '0000-00-00 00:00:00'),
(1065, 'en', 'Setting', 9, '2012-10-03 11:21:58', NULL, '0000-00-00 00:00:00'),
(1065, 'id', 'Pengaturan', 9, '2012-10-03 11:21:58', NULL, '0000-00-00 00:00:00'),
(1066, 'en', 'Send To', 9, '2012-10-03 11:24:13', NULL, '0000-00-00 00:00:00'),
(1066, 'id', 'Kirim Ke', 9, '2012-10-03 11:24:13', NULL, '0000-00-00 00:00:00'),
(1067, 'en', 'Message', 9, '2012-10-03 11:24:28', NULL, '0000-00-00 00:00:00'),
(1067, 'id', 'Pesan', 9, '2012-10-03 11:24:28', NULL, '0000-00-00 00:00:00'),
(1068, 'en', 'Send', 9, '2012-10-03 11:24:40', NULL, '0000-00-00 00:00:00'),
(1068, 'id', 'Kirim', 9, '2012-10-03 11:24:40', NULL, '0000-00-00 00:00:00'),
(1069, 'en', 'Folder', 9, '2012-10-03 11:25:05', NULL, '0000-00-00 00:00:00'),
(1069, 'id', 'Berkas', 9, '2012-10-03 11:25:05', NULL, '0000-00-00 00:00:00'),
(1070, 'en', 'Blacklist', 9, '2012-10-03 11:25:23', NULL, '0000-00-00 00:00:00'),
(1070, 'id', 'Daftar Hitam', 9, '2012-10-03 11:25:23', NULL, '0000-00-00 00:00:00'),
(1071, 'en', 'Blacklisted User', 9, '2012-10-03 11:25:56', NULL, '0000-00-00 00:00:00'),
(1071, 'id', 'Pengguna Masuk Daftar Hitam', 9, '2012-10-03 11:25:56', NULL, '0000-00-00 00:00:00'),
(1072, 'en', 'Read', 9, '2012-10-03 11:27:15', NULL, '0000-00-00 00:00:00'),
(1072, 'id', 'Baca', 9, '2012-10-03 11:27:15', NULL, '0000-00-00 00:00:00'),
(1073, 'en', 'Reply', 9, '2012-10-03 11:27:31', NULL, '0000-00-00 00:00:00'),
(1073, 'id', 'Balas', 9, '2012-10-03 11:27:31', NULL, '0000-00-00 00:00:00'),
(1074, 'en', 'Forward', 9, '2012-10-03 11:27:59', NULL, '0000-00-00 00:00:00'),
(1074, 'id', 'Teruskan', 9, '2012-10-03 11:27:59', NULL, '0000-00-00 00:00:00'),
(1075, 'en', 'Please Select User First', 1, '2012-10-03 13:26:56', NULL, '0000-00-00 00:00:00'),
(1075, 'id', 'Silahkan Pilih Pengguna Terlebih Dahulu', 1, '2012-10-03 13:26:56', NULL, '0000-00-00 00:00:00'),
(1076, 'en', 'Please Fill The Subject\'s Field', 1, '2012-10-03 13:28:57', NULL, '0000-00-00 00:00:00'),
(1076, 'id', 'Silahkan Isi Kolom Subyek', 1, '2012-10-03 13:28:57', NULL, '0000-00-00 00:00:00'),
(1077, 'en', 'Promotion Goods/Other Bonus', 1, '2012-10-03 13:59:05', NULL, '0000-00-00 00:00:00'),
(1077, 'id', 'Barang Promosi/Bonus Lain', 1, '2012-10-03 13:59:05', NULL, '0000-00-00 00:00:00'),
(1078, 'en', 'Create Retur', 1, '2012-10-03 15:34:29', NULL, '0000-00-00 00:00:00'),
(1078, 'id', 'Tambah Retur', 1, '2012-10-03 15:34:29', NULL, '0000-00-00 00:00:00'),
(1079, 'en', 'Subordinate', 1, '2012-10-04 16:34:11', NULL, '0000-00-00 00:00:00'),
(1079, 'id', 'Petugas Bawahan', 1, '2012-10-04 16:34:11', NULL, '0000-00-00 00:00:00'),
(1080, 'en', 'Contract Number', 1, '2012-10-04 16:35:53', NULL, '0000-00-00 00:00:00'),
(1080, 'id', 'Nomor Kontrak', 1, '2012-10-04 16:35:53', NULL, '0000-00-00 00:00:00'),
(1081, 'en', 'Contract Name', 1, '2012-10-04 16:36:11', NULL, '0000-00-00 00:00:00'),
(1081, 'id', 'Nama Kontrak', 1, '2012-10-04 16:36:11', NULL, '0000-00-00 00:00:00'),
(1082, 'en', 'Add Contract', 1, '2012-10-04 16:36:36', NULL, '0000-00-00 00:00:00'),
(1082, 'id', 'Tambah Kontrak', 1, '2012-10-04 16:36:36', NULL, '0000-00-00 00:00:00'),
(1083, 'en', 'Projected Revenue', 1, '2012-10-04 16:39:47', NULL, '0000-00-00 00:00:00'),
(1083, 'id', 'Proyeksi Pendapatan', 1, '2012-10-04 16:39:47', NULL, '0000-00-00 00:00:00'),
(1084, 'en', 'Projected Gross Profit', 1, '2012-10-04 16:40:00', NULL, '0000-00-00 00:00:00'),
(1084, 'id', 'Proyeksi Laba Kotor', 1, '2012-10-04 16:40:00', NULL, '0000-00-00 00:00:00'),
(1085, 'en', 'Amount', 1, '2012-10-04 16:41:30', NULL, '0000-00-00 00:00:00'),
(1085, 'id', 'Nominal', 1, '2012-10-04 16:41:30', NULL, '0000-00-00 00:00:00'),
(1086, 'en', 'Detail', 1, '2012-10-04 16:43:21', NULL, '0000-00-00 00:00:00'),
(1086, 'id', 'Detail', 1, '2012-10-04 16:43:21', NULL, '0000-00-00 00:00:00'),
(1087, 'en', 'Main Address Country\'s', 9, '2012-10-04 18:06:10', NULL, '0000-00-00 00:00:00'),
(1087, 'id', 'Negara pada Alamat Utama', 9, '2012-10-04 18:06:10', NULL, '0000-00-00 00:00:00'),
(1088, 'en', 'Billing Address Country\'s', 9, '2012-10-04 17:41:10', NULL, '0000-00-00 00:00:00'),
(1088, 'id', 'Negara pada Alamat Billing', 9, '2012-10-04 17:41:10', NULL, '0000-00-00 00:00:00'),
(1089, 'en', 'Billing Address State\'s', 9, '2012-10-04 17:41:51', NULL, '0000-00-00 00:00:00'),
(1089, 'id', 'Propinsi/Negara Bagian pada Alamat Billing', 9, '2012-10-04 17:41:51', NULL, '0000-00-00 00:00:00'),
(1090, 'en', 'Billing Address City\'s', 9, '2012-10-04 17:41:02', NULL, '0000-00-00 00:00:00'),
(1090, 'id', 'Kota/Kabupaten pada Alamat Billing', 9, '2012-10-04 17:41:02', NULL, '0000-00-00 00:00:00'),
(1091, 'en', 'Billing Address Sub District\'s', 9, '2012-10-04 17:42:06', NULL, '0000-00-00 00:00:00'),
(1091, 'id', 'Kecamatan pada Alamat Billing', 9, '2012-10-04 17:42:06', NULL, '0000-00-00 00:00:00'),
(1092, 'en', 'Billing Address Village\'s', 9, '2012-10-04 17:42:17', NULL, '0000-00-00 00:00:00'),
(1092, 'id', 'Kelurahan pada Alamat Billing', 9, '2012-10-04 17:42:17', NULL, '0000-00-00 00:00:00'),
(1093, 'en', 'Billing Address Postal Code\'s', 9, '2012-10-04 17:41:41', NULL, '0000-00-00 00:00:00'),
(1093, 'id', 'Kodepos pada Alamat Billing', 9, '2012-10-04 17:41:41', NULL, '0000-00-00 00:00:00'),
(1094, 'en', 'Billing Address Phone Number\'s', 9, '2012-10-04 17:41:31', NULL, '0000-00-00 00:00:00'),
(1094, 'id', 'Nomor Telepon pada Alamat Billing', 9, '2012-10-04 17:41:31', NULL, '0000-00-00 00:00:00'),
(1095, 'en', 'Billing Address Fax Number\'s', 9, '2012-10-04 17:41:20', NULL, '0000-00-00 00:00:00'),
(1095, 'id', 'Nomor Fax pada Alamat Billing', 9, '2012-10-04 17:41:20', NULL, '0000-00-00 00:00:00'),
(1096, 'en', 'Shipping Address', 1, '2012-10-04 17:28:05', NULL, '0000-00-00 00:00:00'),
(1096, 'id', 'Alamat Shipping', 1, '2012-10-04 17:28:05', NULL, '0000-00-00 00:00:00'),
(1097, 'en', 'Shipping Address\'s Country', 1, '2012-10-04 17:28:37', NULL, '0000-00-00 00:00:00'),
(1097, 'id', 'Negara pada Alamat Shipping', 1, '2012-10-04 17:28:37', NULL, '0000-00-00 00:00:00'),
(1098, 'en', 'Shipping Address\'s State', 1, '2012-10-04 17:29:04', NULL, '0000-00-00 00:00:00'),
(1098, 'id', 'Propinsi/Negara Bagian pada Alamat Shipping', 1, '2012-10-04 17:29:04', NULL, '0000-00-00 00:00:00'),
(1099, 'en', 'Shipping Address\'s City', 1, '2012-10-04 17:29:25', NULL, '0000-00-00 00:00:00'),
(1099, 'id', 'Kota/Kabupaten pada Alamat Shipping', 1, '2012-10-04 17:29:25', NULL, '0000-00-00 00:00:00'),
(1100, 'en', 'Shipping Address\'s Sub District', 1, '2012-10-04 17:30:20', NULL, '0000-00-00 00:00:00'),
(1100, 'id', 'Kecamatan pada Alamat Shipping', 1, '2012-10-04 17:30:20', NULL, '0000-00-00 00:00:00'),
(1101, 'en', 'Shipping Address\'s Village', 1, '2012-10-04 17:30:36', NULL, '0000-00-00 00:00:00'),
(1101, 'id', 'Kelurahan pada Alamat Shipping', 1, '2012-10-04 17:30:36', NULL, '0000-00-00 00:00:00'),
(1102, 'en', 'Shipping Address\'s Postal Code', 1, '2012-10-04 17:30:59', NULL, '0000-00-00 00:00:00'),
(1102, 'id', 'Kodepos pada Alamat Shipping', 1, '2012-10-04 17:30:59', NULL, '0000-00-00 00:00:00'),
(1103, 'en', 'Shipping Address\'s Phone Number', 1, '2012-10-04 17:31:35', NULL, '0000-00-00 00:00:00'),
(1103, 'id', 'Nomor Telepon pada Alamat Shipping', 1, '2012-10-04 17:31:35', NULL, '0000-00-00 00:00:00'),
(1104, 'en', 'Shipping Address\'s Fax Number', 1, '2012-10-04 17:32:00', NULL, '0000-00-00 00:00:00'),
(1104, 'id', 'Nomor Fax pada Alamat Shipping', 1, '2012-10-04 17:32:00', NULL, '0000-00-00 00:00:00'),
(1105, 'en', 'Both of the email fields is required.', 9, '2012-10-04 17:39:11', NULL, '0000-00-00 00:00:00'),
(1105, 'id', 'Kedua field email harus diisi.', 9, '2012-10-04 17:39:11', NULL, '0000-00-00 00:00:00'),
(1106, 'en', 'Product Segment Data\'s', 9, '2012-10-04 17:43:23', NULL, '0000-00-00 00:00:00'),
(1106, 'id', 'Data Segmentasi Produk', 9, '2012-10-04 17:43:23', NULL, '0000-00-00 00:00:00'),
(1107, 'en', 'Main Address State\'s', 9, '2012-10-04 18:06:39', NULL, '0000-00-00 00:00:00'),
(1107, 'id', 'Propinsi/Negara Bagian pada Alamat Utama', 9, '2012-10-04 18:06:39', NULL, '0000-00-00 00:00:00'),
(1108, 'en', 'Main Address City\'s', 9, '2012-10-04 18:07:00', NULL, '0000-00-00 00:00:00'),
(1108, 'id', 'Kota/Kabupaten pada Alamat Utama', 9, '2012-10-04 18:07:00', NULL, '0000-00-00 00:00:00'),
(1109, 'en', 'Main Address Sub District\'s', 9, '2012-10-04 18:07:24', NULL, '0000-00-00 00:00:00'),
(1109, 'id', 'Kecamatan pada Alamat Utama', 9, '2012-10-04 18:07:24', NULL, '0000-00-00 00:00:00'),
(1110, 'en', 'Main Address Village\'s', 9, '2012-10-04 18:07:56', NULL, '0000-00-00 00:00:00'),
(1110, 'id', 'Kelurahan pada Alamat Utama', 9, '2012-10-04 18:07:56', NULL, '0000-00-00 00:00:00'),
(1111, 'en', 'Main Address Postal Code\'s', 9, '2012-10-04 18:08:18', NULL, '0000-00-00 00:00:00'),
(1111, 'id', 'Kodepos pada Alamat Utama', 9, '2012-10-04 18:08:18', NULL, '0000-00-00 00:00:00'),
(1112, 'en', 'Main Address Phone Number\'s', 9, '2012-10-04 18:08:40', NULL, '0000-00-00 00:00:00'),
(1112, 'id', 'Nomor Telepon pada Alamat Utama', 9, '2012-10-04 18:08:40', NULL, '0000-00-00 00:00:00'),
(1113, 'en', 'Main Address Fax Number\'s', 9, '2012-10-04 18:09:01', NULL, '0000-00-00 00:00:00'),
(1113, 'id', 'Nomor Fax pada Alamat Utama', 9, '2012-10-04 18:09:01', NULL, '0000-00-00 00:00:00'),
(1114, 'en', 'Alternative Address Country\'s', 9, '2012-10-04 18:11:31', NULL, '0000-00-00 00:00:00'),
(1114, 'id', 'Negara pada Alamat Alternatif', 9, '2012-10-04 18:11:31', NULL, '0000-00-00 00:00:00'),
(1115, 'en', 'Alternative Address State\'s', 9, '2012-10-04 18:12:00', NULL, '0000-00-00 00:00:00'),
(1115, 'id', 'Propinsi/Negara Bagian pada Alamat Alternatif', 9, '2012-10-04 18:12:01', NULL, '0000-00-00 00:00:00'),
(1116, 'en', 'Alternative Address City\'s', 9, '2012-10-04 18:12:26', NULL, '0000-00-00 00:00:00'),
(1116, 'id', 'Kota/Kabupaten pada Alamat Alternatif', 9, '2012-10-04 18:12:26', NULL, '0000-00-00 00:00:00'),
(1117, 'en', 'Alternative Address Sub District\'s', 9, '2012-10-04 18:12:52', NULL, '0000-00-00 00:00:00'),
(1117, 'id', 'Kecamatan pada Alamat Alternatif', 9, '2012-10-04 18:12:52', NULL, '0000-00-00 00:00:00'),
(1118, 'en', 'Alternative Address Village\'s', 9, '2012-10-04 18:13:57', NULL, '0000-00-00 00:00:00'),
(1118, 'id', 'Kelurahan pada Alamat Alternatif', 9, '2012-10-04 18:13:57', NULL, '0000-00-00 00:00:00'),
(1119, 'en', 'Alternative Address Postal Code\'s', 9, '2012-10-04 18:14:38', NULL, '0000-00-00 00:00:00'),
(1119, 'id', 'Kodepos pada Alamat Alternatif', 9, '2012-10-04 18:14:38', NULL, '0000-00-00 00:00:00'),
(1120, 'en', 'Alternative Address Phone Number\'s', 9, '2012-10-04 18:15:07', NULL, '0000-00-00 00:00:00'),
(1120, 'id', 'Nomor Telepon pada Alamat Alternatif', 9, '2012-10-04 18:15:07', NULL, '0000-00-00 00:00:00'),
(1121, 'en', 'Alternative Address Fax Number\'s', 9, '2012-10-04 18:15:35', NULL, '0000-00-00 00:00:00'),
(1121, 'id', 'Nomor Fax pada Alamat Alternatif', 9, '2012-10-04 18:15:35', NULL, '0000-00-00 00:00:00'),
(1122, 'en', 'Instant Message (IM) Data', 9, '2012-10-04 18:16:32', NULL, '0000-00-00 00:00:00'),
(1122, 'id', 'Data Instant Messaging (IM)', 9, '2012-10-04 18:16:32', NULL, '0000-00-00 00:00:00'),
(1123, 'en', 'Warning', 9, '2012-10-04 18:17:41', NULL, '0000-00-00 00:00:00'),
(1123, 'id', 'Peringatan', 9, '2012-10-04 18:17:41', NULL, '0000-00-00 00:00:00'),
(1124, 'en', 'The Attachment\'s field is required.', 9, '2012-10-04 18:18:24', NULL, '0000-00-00 00:00:00'),
(1124, 'id', 'Field Lampiran harus diisi.', 9, '2012-10-04 18:18:24', NULL, '0000-00-00 00:00:00'),
(1125, 'en', 'The Contact Name\'s field is required.', 9, '2012-10-04 18:19:18', NULL, '0000-00-00 00:00:00'),
(1125, 'id', 'Field Nama Kontak harus diisi.', 9, '2012-10-04 18:19:18', NULL, '0000-00-00 00:00:00'),
(1126, 'en', 'Lead', 1, '2012-10-04 18:36:51', NULL, '0000-00-00 00:00:00'),
(1126, 'id', 'Narasumber', 1, '2012-10-04 18:36:51', NULL, '0000-00-00 00:00:00'),
(1127, 'en', 'Add Case', 1, '2012-10-04 19:03:32', NULL, '0000-00-00 00:00:00'),
(1127, 'id', 'Tambah Kasus', 1, '2012-10-04 19:03:32', NULL, '0000-00-00 00:00:00'),
(1128, 'en', 'Main Information', 1, '2012-10-04 19:04:56', NULL, '0000-00-00 00:00:00'),
(1128, 'id', 'Informasi Utama', 1, '2012-10-04 19:04:56', NULL, '0000-00-00 00:00:00'),
(1129, 'en', 'Resolution', 1, '2012-10-04 19:05:23', NULL, '0000-00-00 00:00:00'),
(1129, 'id', 'Resolusi', 1, '2012-10-04 19:05:23', NULL, '0000-00-00 00:00:00'),
(1130, 'en', 'Dependencies', 1, '2012-10-04 19:05:58', NULL, '0000-00-00 00:00:00'),
(1130, 'id', 'Dependensi', 1, '2012-10-04 19:05:58', NULL, '0000-00-00 00:00:00'),
(1131, 'en', 'Case', 1, '2012-10-04 19:06:19', NULL, '0000-00-00 00:00:00'),
(1131, 'id', 'Kasus', 1, '2012-10-04 19:06:19', NULL, '0000-00-00 00:00:00'),
(1132, 'en', 'Duplication', 1, '2012-10-04 19:06:46', NULL, '0000-00-00 00:00:00'),
(1132, 'id', 'Duplikasi', 1, '2012-10-04 19:06:46', NULL, '0000-00-00 00:00:00'),
(1133, 'en', 'Tag', 1, '2012-10-04 19:07:04', NULL, '0000-00-00 00:00:00'),
(1133, 'id', 'Tag', 1, '2012-10-04 19:07:04', NULL, '0000-00-00 00:00:00'),
(1134, 'en', 'Separated By Commas', 1, '2012-10-04 19:07:32', NULL, '0000-00-00 00:00:00'),
(1134, 'id', 'Dipisahkan dengan Tanda Koma', 1, '2012-10-04 19:07:32', NULL, '0000-00-00 00:00:00'),
(1135, 'en', 'Follow Up', 1, '2012-10-04 19:08:08', NULL, '0000-00-00 00:00:00'),
(1135, 'id', 'Follow Up', 1, '2012-10-04 19:08:08', NULL, '0000-00-00 00:00:00'),
(1136, 'en', 'Case Number', 1, '2012-10-04 19:08:25', NULL, '0000-00-00 00:00:00'),
(1136, 'id', 'Nomor Kasus', 1, '2012-10-04 19:08:25', NULL, '0000-00-00 00:00:00'),
(1137, 'en', 'Case Transaction Log', 1, '2012-10-04 19:08:53', NULL, '0000-00-00 00:00:00'),
(1137, 'id', 'Log Transaksi Kasus', 1, '2012-10-04 19:08:53', NULL, '0000-00-00 00:00:00'),
(1138, 'en', 'Title', 9, '2012-10-05 11:20:06', NULL, '0000-00-00 00:00:00'),
(1138, 'id', 'Judul', 9, '2012-10-05 11:20:06', NULL, '0000-00-00 00:00:00'),
(1139, 'en', 'Content', 9, '2012-10-05 11:20:27', NULL, '0000-00-00 00:00:00'),
(1139, 'id', 'Konten', 9, '2012-10-05 11:20:27', NULL, '0000-00-00 00:00:00'),
(1140, 'en', 'The Case\'s field is required.', 1, '2012-10-05 14:27:43', NULL, '0000-00-00 00:00:00'),
(1140, 'id', 'Field Kasus harus diisi.', 1, '2012-10-05 14:27:43', NULL, '0000-00-00 00:00:00'),
(1141, 'en', 'The Follow Up\'s field is required.', 1, '2012-10-05 14:21:59', NULL, '0000-00-00 00:00:00'),
(1141, 'id', 'Field Follow Up harus diisi.', 1, '2012-10-05 14:21:59', NULL, '0000-00-00 00:00:00'),
(1142, 'en', 'Search Period', 1, '2012-10-06 16:38:48', NULL, '0000-00-00 00:00:00'),
(1142, 'id', 'Periode Pencarian', 1, '2012-10-06 16:38:48', NULL, '0000-00-00 00:00:00'),
(1143, 'en', 'Date Range', 1, '2012-10-06 16:40:16', NULL, '0000-00-00 00:00:00'),
(1143, 'id', 'Rentang Tanggal', 1, '2012-10-06 16:40:16', NULL, '0000-00-00 00:00:00'),
(1144, 'en', 'Month Range', 1, '2012-10-06 16:41:40', NULL, '0000-00-00 00:00:00'),
(1144, 'id', 'Rentang Bulan', 1, '2012-10-06 16:41:40', NULL, '0000-00-00 00:00:00'),
(1145, 'en', 'Weekly', 1, '2012-10-06 16:47:20', NULL, '0000-00-00 00:00:00'),
(1145, 'id', 'Mingguan', 1, '2012-10-06 16:47:20', NULL, '0000-00-00 00:00:00'),
(1146, 'en', 'Monthly', 1, '2012-10-06 16:47:33', NULL, '0000-00-00 00:00:00'),
(1146, 'id', 'Bulanan', 1, '2012-10-06 16:47:33', NULL, '0000-00-00 00:00:00'),
(1147, 'en', 'Stock Forecast', 1, '2012-10-07 07:21:10', NULL, '0000-00-00 00:00:00'),
(1147, 'id', 'Perkiraan Kebutuhan Stock', 1, '2012-10-07 07:21:10', NULL, '0000-00-00 00:00:00'),
(1148, 'en', 'Week', 1, '2012-10-07 07:24:05', NULL, '0000-00-00 00:00:00'),
(1148, 'id', 'Minggu Ke', 1, '2012-10-07 07:24:05', NULL, '0000-00-00 00:00:00'),
(1149, 'en', 'Column', 23, '2012-10-09 08:20:44', NULL, '0000-00-00 00:00:00'),
(1149, 'id', 'Kolom', 23, '2012-10-09 08:20:44', NULL, '0000-00-00 00:00:00'),
(1151, 'en', 'Prospect Status', 1, '2012-10-10 09:46:38', NULL, '0000-00-00 00:00:00'),
(1151, 'id', 'Status Prospek', 1, '2012-10-10 09:46:38', NULL, '0000-00-00 00:00:00'),
(1152, 'en', 'Period Type', 1, '2012-10-10 09:46:59', NULL, '0000-00-00 00:00:00'),
(1152, 'id', 'Jenis Periode', 1, '2012-10-10 09:46:59', NULL, '0000-00-00 00:00:00'),
(1153, 'en', 'Ongoing', 1, '2012-10-10 09:47:23', NULL, '0000-00-00 00:00:00'),
(1153, 'id', 'Masih Berjalan', 1, '2012-10-10 09:47:23', NULL, '0000-00-00 00:00:00'),
(1154, 'en', 'Deal', 1, '2012-10-10 09:54:32', NULL, '0000-00-00 00:00:00'),
(1154, 'id', 'Sudah Sepakat', 1, '2012-10-10 09:54:32', NULL, '0000-00-00 00:00:00'),
(1155, 'en', 'Failed', 1, '2012-10-10 09:48:09', NULL, '0000-00-00 00:00:00'),
(1155, 'id', 'Gagal', 1, '2012-10-10 09:48:09', NULL, '0000-00-00 00:00:00'),
(1156, 'en', 'Monthly', 1, '2012-10-10 09:48:27', NULL, '0000-00-00 00:00:00'),
(1156, 'id', 'Bulanan', 1, '2012-10-10 09:48:27', NULL, '0000-00-00 00:00:00'),
(1157, 'en', 'Yearly', 1, '2012-10-10 09:48:45', NULL, '0000-00-00 00:00:00'),
(1157, 'id', 'Tahunan', 1, '2012-10-10 09:48:45', NULL, '0000-00-00 00:00:00'),
(1158, 'en', 'Range', 1, '2012-10-10 09:48:59', NULL, '0000-00-00 00:00:00'),
(1158, 'id', 'Range', 1, '2012-10-10 09:48:59', NULL, '0000-00-00 00:00:00'),
(1159, 'en', 'Ongoing Prospect', 1, '2012-10-10 09:49:28', NULL, '0000-00-00 00:00:00'),
(1159, 'id', 'Prospek Masih Berjalan', 1, '2012-10-10 09:49:28', NULL, '0000-00-00 00:00:00'),
(1160, 'en', 'Deal Prospect', 1, '2012-10-10 09:53:26', NULL, '0000-00-00 00:00:00'),
(1160, 'id', 'Prospek Sudah Sepakat', 1, '2012-10-10 09:53:26', NULL, '0000-00-00 00:00:00'),
(1161, 'en', 'Failed Prospect', 1, '2012-10-10 09:54:02', NULL, '0000-00-00 00:00:00'),
(1161, 'id', 'Prospek Gagal', 1, '2012-10-10 09:54:02', NULL, '0000-00-00 00:00:00'),
(1162, 'en', 'Monthly Period', 1, '2012-10-10 09:55:08', NULL, '0000-00-00 00:00:00'),
(1162, 'id', 'Periode Bulanan', 1, '2012-10-10 09:55:08', NULL, '0000-00-00 00:00:00'),
(1163, 'en', 'Yearly Period', 1, '2012-10-10 09:55:30', NULL, '0000-00-00 00:00:00'),
(1163, 'id', 'Periode Tahunan', 1, '2012-10-10 09:55:30', NULL, '0000-00-00 00:00:00'),
(1164, 'en', 'Table', 1, '2012-10-10 09:56:01', NULL, '0000-00-00 00:00:00'),
(1164, 'id', 'Tabel', 1, '2012-10-10 09:56:01', NULL, '0000-00-00 00:00:00'),
(1165, 'en', 'Graphic', 1, '2012-10-10 09:57:10', NULL, '0000-00-00 00:00:00'),
(1165, 'id', 'Grafik', 1, '2012-10-10 09:57:10', NULL, '0000-00-00 00:00:00'),
(1166, 'en', 'Sub Total', 1, '2012-10-10 09:57:35', NULL, '0000-00-00 00:00:00'),
(1166, 'id', 'Sub Total', 1, '2012-10-10 09:57:35', NULL, '0000-00-00 00:00:00'),
(1167, 'en', 'Jan', 1, '2012-10-10 09:57:48', NULL, '0000-00-00 00:00:00'),
(1167, 'id', 'Jan', 1, '2012-10-10 09:57:48', NULL, '0000-00-00 00:00:00'),
(1168, 'en', 'Feb', 1, '2012-10-10 09:58:06', NULL, '0000-00-00 00:00:00'),
(1168, 'id', 'Feb', 1, '2012-10-10 09:58:06', NULL, '0000-00-00 00:00:00'),
(1169, 'en', 'Mar', 1, '2012-10-10 09:58:22', NULL, '0000-00-00 00:00:00'),
(1169, 'id', 'Mar', 1, '2012-10-10 09:58:22', NULL, '0000-00-00 00:00:00'),
(1170, 'en', 'Apr', 1, '2012-10-10 09:58:34', NULL, '0000-00-00 00:00:00'),
(1170, 'id', 'Apr', 1, '2012-10-10 09:58:34', NULL, '0000-00-00 00:00:00'),
(1171, 'en', 'Jun', 1, '2012-10-10 09:58:49', NULL, '0000-00-00 00:00:00'),
(1171, 'id', 'Jun', 1, '2012-10-10 09:58:49', NULL, '0000-00-00 00:00:00'),
(1172, 'en', 'Jul', 1, '2012-10-10 09:59:01', NULL, '0000-00-00 00:00:00'),
(1172, 'id', 'Jul', 1, '2012-10-10 09:59:01', NULL, '0000-00-00 00:00:00'),
(1173, 'en', 'Aug', 1, '2012-10-10 09:59:22', NULL, '0000-00-00 00:00:00'),
(1173, 'id', 'Agu', 1, '2012-10-10 09:59:22', NULL, '0000-00-00 00:00:00'),
(1174, 'en', 'Sep', 1, '2012-10-10 09:59:37', NULL, '0000-00-00 00:00:00'),
(1174, 'id', 'Sep', 1, '2012-10-10 09:59:37', NULL, '0000-00-00 00:00:00'),
(1175, 'en', 'Oct', 1, '2012-10-10 09:59:53', NULL, '0000-00-00 00:00:00'),
(1175, 'id', 'Okt', 1, '2012-10-10 09:59:53', NULL, '0000-00-00 00:00:00'),
(1176, 'en', 'Nov', 1, '2012-10-10 10:00:11', NULL, '0000-00-00 00:00:00'),
(1176, 'id', 'Nov', 1, '2012-10-10 10:00:11', NULL, '0000-00-00 00:00:00'),
(1177, 'en', 'Dec', 1, '2012-10-10 10:00:24', NULL, '0000-00-00 00:00:00'),
(1177, 'id', 'Des', 1, '2012-10-10 10:00:24', NULL, '0000-00-00 00:00:00'),
(1178, 'en', 'Task', 1, '2013-09-23 08:54:54', NULL, '0000-00-00 00:00:00'),
(1178, 'id', 'Tugas', 1, '2013-09-23 08:54:54', NULL, '0000-00-00 00:00:00'),
(1179, 'en', 'Self Manage', 1, '2012-10-10 10:28:51', NULL, '0000-00-00 00:00:00'),
(1179, 'id', 'Kelola Sendiri', 1, '2012-10-10 10:28:51', NULL, '0000-00-00 00:00:00'),
(1180, 'en', 'Delegate to Subordinate', 1, '2012-10-10 10:29:08', NULL, '0000-00-00 00:00:00'),
(1180, 'id', 'Alihkan ke Petugas Bawahan Anda', 1, '2012-10-10 10:29:08', NULL, '0000-00-00 00:00:00'),
(1181, 'en', 'Choose', 1, '2012-10-10 10:29:37', NULL, '0000-00-00 00:00:00'),
(1181, 'id', 'Pilih', 1, '2012-10-10 10:29:37', NULL, '0000-00-00 00:00:00'),
(1182, 'en', 'Please Select Related To\'s Data First', 1, '2012-10-10 10:33:18', NULL, '0000-00-00 00:00:00'),
(1182, 'id', 'Silahkan Pilih Data Hubungan Aksi Aktivitas Terlebih Dahulu', 1, '2012-10-10 10:33:18', NULL, '0000-00-00 00:00:00'),
(1183, 'en', 'Data', 1, '2012-10-10 10:38:34', NULL, '0000-00-00 00:00:00'),
(1183, 'id', 'Data', 1, '2012-10-10 10:38:34', NULL, '0000-00-00 00:00:00'),
(1184, 'en', 'Note', 1, '2012-10-10 10:42:30', NULL, '0000-00-00 00:00:00'),
(1184, 'id', 'Catatan', 1, '2012-10-10 10:42:30', NULL, '0000-00-00 00:00:00'),
(1185, 'en', 'Profile', 1, '2012-10-11 06:24:58', NULL, '0000-00-00 00:00:00'),
(1185, 'id', 'Profil', 1, '2012-10-11 06:24:58', NULL, '0000-00-00 00:00:00'),
(1186, 'en', 'Change Pasword', 1, '2012-10-11 06:25:21', NULL, '0000-00-00 00:00:00'),
(1186, 'id', 'Ubah Password', 1, '2012-10-11 06:25:21', NULL, '0000-00-00 00:00:00'),
(1187, 'en', 'Old Password', 1, '2012-10-11 07:55:41', NULL, '0000-00-00 00:00:00'),
(1187, 'id', 'Password Lama', 1, '2012-10-11 07:55:41', NULL, '0000-00-00 00:00:00'),
(1188, 'en', 'New Password', 1, '2012-10-11 07:55:59', NULL, '0000-00-00 00:00:00'),
(1188, 'id', 'Password Baru', 1, '2012-10-11 07:55:59', NULL, '0000-00-00 00:00:00'),
(1189, 'en', 'Confirm New Password', 1, '2012-10-11 07:56:30', NULL, '0000-00-00 00:00:00'),
(1189, 'id', 'Konfirmasi Password Baru', 1, '2012-10-11 07:56:30', NULL, '0000-00-00 00:00:00'),
(1190, 'en', 'Wrong old Password', 1, '2012-10-11 07:57:10', NULL, '0000-00-00 00:00:00'),
(1190, 'id', 'Password lama salah', 1, '2012-10-11 07:57:10', NULL, '0000-00-00 00:00:00'),
(1191, 'en', 'Change password success', 1, '2012-10-11 08:10:21', NULL, '0000-00-00 00:00:00'),
(1191, 'id', 'Pengubahan password berhasil', 1, '2012-10-11 08:10:21', NULL, '0000-00-00 00:00:00'),
(1192, 'en', 'Change password fail', 1, '2012-10-11 08:10:45', NULL, '0000-00-00 00:00:00'),
(1192, 'id', 'Pengubahan password gagal', 1, '2012-10-11 08:10:45', NULL, '0000-00-00 00:00:00'),
(1193, 'en', 'Contract Transaction Log', 1, '2012-10-11 11:27:09', NULL, '0000-00-00 00:00:00'),
(1193, 'id', 'Log Transaksi Kontrak', 1, '2012-10-11 11:27:10', NULL, '0000-00-00 00:00:00'),
(1194, 'en', 'Opportunity Transaction Log', 1, '2012-10-11 11:28:12', NULL, '0000-00-00 00:00:00'),
(1194, 'id', 'Log Transaksi Peluang', 1, '2012-10-11 11:28:12', NULL, '0000-00-00 00:00:00'),
(1195, 'en', 'Group used by other data', 1, '2012-10-11 12:34:57', NULL, '0000-00-00 00:00:00'),
(1195, 'id', 'Data grup digunakan oleh data lain', 1, '2012-10-11 12:34:57', NULL, '0000-00-00 00:00:00'),
(1196, 'en', 'Company form wizard', 1, '2012-10-11 12:44:29', NULL, '0000-00-00 00:00:00'),
(1196, 'id', 'Form tambah perusahaan', 1, '2012-10-11 12:44:29', NULL, '0000-00-00 00:00:00'),
(1197, 'en', 'Software Release', 1, '2012-10-11 13:13:56', NULL, '0000-00-00 00:00:00'),
(1197, 'id', 'Rilis Perangkat Lunak', 1, '2012-10-11 13:13:56', NULL, '0000-00-00 00:00:00'),
(1198, 'en', 'Name already used by other data', 1, '2012-10-11 13:33:16', NULL, '0000-00-00 00:00:00'),
(1198, 'id', 'Nama sudah dipakai oleh data lain', 1, '2012-10-11 13:33:16', NULL, '0000-00-00 00:00:00'),
(1199, 'en', 'All Unit', 1, '2012-10-11 14:25:24', NULL, '0000-00-00 00:00:00'),
(1199, 'id', 'Semua Unit', 1, '2012-10-11 14:25:24', NULL, '0000-00-00 00:00:00'),
(1200, 'en', 'Contract Amount', 1, '2012-10-11 14:26:31', NULL, '0000-00-00 00:00:00'),
(1200, 'id', 'Nominal Kontrak', 1, '2012-10-11 14:26:31', NULL, '0000-00-00 00:00:00'),
(1201, 'en', 'Meeting', 1, '2012-10-11 14:29:38', NULL, '0000-00-00 00:00:00'),
(1201, 'id', 'Pertemuan', 1, '2012-10-11 14:29:38', NULL, '0000-00-00 00:00:00'),
(1202, 'en', 'Invitee', 1, '2012-10-11 14:30:51', NULL, '0000-00-00 00:00:00'),
(1202, 'id', 'Undangan', 1, '2012-10-11 14:30:51', NULL, '0000-00-00 00:00:00'),
(1203, 'en', 'Location', 1, '2012-10-11 14:31:09', NULL, '0000-00-00 00:00:00'),
(1203, 'id', 'Tempat / Lokasi', 1, '2012-10-11 14:31:09', NULL, '0000-00-00 00:00:00'),
(1204, 'en', 'Reminder', 1, '2012-10-11 14:31:24', NULL, '0000-00-00 00:00:00'),
(1204, 'id', 'Pengingat', 1, '2012-10-11 14:31:24', NULL, '0000-00-00 00:00:00'),
(1205, 'en', 'Lead Data', 1, '2012-10-11 14:32:02', NULL, '0000-00-00 00:00:00'),
(1205, 'id', 'Data Narasumber', 1, '2012-10-11 14:32:02', NULL, '0000-00-00 00:00:00'),
(1206, 'en', 'Target Data', 1, '2012-10-11 14:32:20', NULL, '0000-00-00 00:00:00'),
(1206, 'id', 'Data Target', 1, '2012-10-11 14:32:20', NULL, '0000-00-00 00:00:00'),
(1207, 'en', 'Target', 1, '2012-10-11 14:32:36', NULL, '0000-00-00 00:00:00'),
(1207, 'id', 'Target', 1, '2012-10-11 14:32:36', NULL, '0000-00-00 00:00:00'),
(1208, 'en', 'Officer Data', 1, '2013-06-17 09:12:05', NULL, '0000-00-00 00:00:00'),
(1208, 'id', 'Data Officer / Petugas', 1, '2013-06-17 09:12:05', NULL, '0000-00-00 00:00:00'),
(1209, 'en', 'Call', 1, '2012-10-11 14:34:20', NULL, '0000-00-00 00:00:00'),
(1209, 'id', 'Panggilan', 1, '2012-10-11 14:34:20', NULL, '0000-00-00 00:00:00');
INSERT INTO `gtfw_key_text` (`key_text_key_id`, `key_text_lang_code`, `key_text_key_text`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`) VALUES
(1210, 'en', 'Direction', 1, '2012-10-11 14:34:36', NULL, '0000-00-00 00:00:00'),
(1210, 'id', 'Arahan', 1, '2012-10-11 14:34:36', NULL, '0000-00-00 00:00:00'),
(1211, 'en', 'Customer', 1, '2012-10-11 15:22:07', NULL, '0000-00-00 00:00:00'),
(1211, 'id', 'Pelanggan', 1, '2012-10-11 15:22:07', NULL, '0000-00-00 00:00:00'),
(1212, 'en', 'Draft', 1, '2012-10-11 15:22:44', NULL, '0000-00-00 00:00:00'),
(1212, 'id', 'Draft', 1, '2012-10-11 15:22:44', NULL, '0000-00-00 00:00:00'),
(1213, 'en', 'Approved', 1, '2012-10-11 15:23:01', NULL, '0000-00-00 00:00:00'),
(1213, 'id', 'Disetujui', 1, '2012-10-11 15:23:01', NULL, '0000-00-00 00:00:00'),
(1214, 'en', 'Incomplete', 1, '2012-10-11 15:23:24', NULL, '0000-00-00 00:00:00'),
(1214, 'id', 'Belum Lengkap', 1, '2012-10-11 15:23:24', NULL, '0000-00-00 00:00:00'),
(1215, 'en', 'Completed', 1, '2012-10-11 15:23:51', NULL, '0000-00-00 00:00:00'),
(1215, 'id', 'Lengkap', 1, '2012-10-11 15:23:51', NULL, '0000-00-00 00:00:00'),
(1216, 'en', 'Verfied', 1, '2012-10-11 15:26:10', NULL, '0000-00-00 00:00:00'),
(1216, 'id', 'Terverfikasi', 1, '2012-10-11 15:26:10', NULL, '0000-00-00 00:00:00'),
(1217, 'en', 'Price Per Unit', 1, '2012-10-11 15:27:34', NULL, '0000-00-00 00:00:00'),
(1217, 'id', 'Harga Satuan', 1, '2012-10-11 15:27:34', NULL, '0000-00-00 00:00:00'),
(1218, 'en', 'Percent Discount', 1, '2012-10-11 15:27:55', NULL, '0000-00-00 00:00:00'),
(1218, 'id', 'Persen Diskon', 1, '2012-10-11 15:27:55', NULL, '0000-00-00 00:00:00'),
(1219, 'en', 'Nominal Discount', 1, '2012-10-11 15:28:22', NULL, '0000-00-00 00:00:00'),
(1219, 'id', 'Nominal Diskon', 1, '2012-10-11 15:28:22', NULL, '0000-00-00 00:00:00'),
(1220, 'en', 'Bonus Goods', 1, '2012-10-11 15:28:51', NULL, '0000-00-00 00:00:00'),
(1220, 'id', 'Bonus Barang', 1, '2012-10-11 15:28:51', NULL, '0000-00-00 00:00:00'),
(1221, 'en', 'Sales Canvas', 1, '2012-10-11 15:35:40', NULL, '0000-00-00 00:00:00'),
(1221, 'id', 'Sales Canvas', 1, '2012-10-11 15:35:40', NULL, '0000-00-00 00:00:00'),
(1222, 'en', 'Van', 1, '2012-10-11 15:36:25', NULL, '0000-00-00 00:00:00'),
(1222, 'id', 'Van', 1, '2012-10-11 15:36:25', NULL, '0000-00-00 00:00:00'),
(1223, 'en', 'Sales Type', 1, '2012-10-11 19:06:09', NULL, '0000-00-00 00:00:00'),
(1223, 'id', 'Tipe Sales', 1, '2012-10-11 19:06:09', NULL, '0000-00-00 00:00:00'),
(1224, 'en', 'General Commision', 1, '2012-10-12 04:43:36', NULL, '0000-00-00 00:00:00'),
(1224, 'id', 'Komisi Umum', 1, '2012-10-12 04:43:36', NULL, '0000-00-00 00:00:00'),
(1225, 'en', 'Commision Type', 1, '2012-10-12 04:44:21', NULL, '0000-00-00 00:00:00'),
(1225, 'id', 'Jenis Komisi', 1, '2012-10-12 04:44:21', NULL, '0000-00-00 00:00:00'),
(1226, 'en', 'Commision', 1, '2012-10-12 04:44:45', NULL, '0000-00-00 00:00:00'),
(1226, 'id', 'Nominal Komisi', 1, '2012-10-12 04:44:45', NULL, '0000-00-00 00:00:00'),
(1227, 'en', 'Reference Value', 1, '2012-10-12 04:45:24', NULL, '0000-00-00 00:00:00'),
(1227, 'id', 'Nilai Acuan', 1, '2012-10-12 04:45:24', NULL, '0000-00-00 00:00:00'),
(1228, 'en', 'Nominal Commision', 1, '2012-10-12 04:45:54', NULL, '0000-00-00 00:00:00'),
(1228, 'id', 'Nominal Komisi', 1, '2012-10-12 04:45:54', NULL, '0000-00-00 00:00:00'),
(1229, 'en', 'Per Goods Commision', 1, '2012-10-12 05:06:50', NULL, '0000-00-00 00:00:00'),
(1229, 'id', 'Komisi Per Barang', 1, '2012-10-12 05:06:50', NULL, '0000-00-00 00:00:00'),
(1230, 'en', 'Units Receiving', 1, '2012-10-12 15:25:58', NULL, '0000-00-00 00:00:00'),
(1230, 'id', 'Satuan Penerimaan', 1, '2012-10-12 15:25:58', NULL, '0000-00-00 00:00:00'),
(1231, 'en', 'Retur Units', 1, '2012-10-12 15:26:11', NULL, '0000-00-00 00:00:00'),
(1231, 'id', 'Satuan Retur', 1, '2012-10-12 15:26:11', NULL, '0000-00-00 00:00:00'),
(1232, 'en', 'Key code has been used', 1, '2012-10-17 09:05:10', NULL, '0000-00-00 00:00:00'),
(1232, 'id', 'Kode sudah ada', 1, '2012-10-17 09:05:10', NULL, '0000-00-00 00:00:00'),
(1233, 'en', 'Discount Type', 20, '2012-10-17 09:08:04', NULL, '0000-00-00 00:00:00'),
(1233, 'id', 'Tipe Diskon', 20, '2012-10-17 09:08:04', NULL, '0000-00-00 00:00:00'),
(1234, 'en', 'View By Public Status', 1, '2013-06-25 08:27:07', NULL, '0000-00-00 00:00:00'),
(1234, 'id', 'Status Lihat Oleh Publik', 1, '2013-06-25 08:27:07', NULL, '0000-00-00 00:00:00'),
(1235, 'en', 'Discount Value', 20, '2012-10-17 09:11:49', NULL, '0000-00-00 00:00:00'),
(1235, 'id', 'Nilai Diskon', 20, '2012-10-17 09:11:49', NULL, '0000-00-00 00:00:00'),
(1236, 'en', 'Purchasing Discount By Goods', 20, '2012-10-17 09:13:21', NULL, '0000-00-00 00:00:00'),
(1236, 'id', 'Diskon Pembelian Per Barang', 20, '2012-10-17 09:13:21', NULL, '0000-00-00 00:00:00'),
(1237, 'en', 'Goods Sales Comission', 20, '2012-10-17 09:14:54', NULL, '0000-00-00 00:00:00'),
(1237, 'id', 'Komisi Per Barang', 20, '2012-10-17 09:14:54', NULL, '0000-00-00 00:00:00'),
(1238, 'en', 'Purchasing Discount', 20, '2012-10-17 09:17:15', NULL, '0000-00-00 00:00:00'),
(1238, 'id', 'Diskon Pembelian', 20, '2012-10-17 09:17:15', NULL, '0000-00-00 00:00:00'),
(1239, 'en', 'Start Periode', 20, '2012-10-17 09:31:09', NULL, '0000-00-00 00:00:00'),
(1239, 'id', 'Periode Awal', 20, '2012-10-17 09:31:09', NULL, '0000-00-00 00:00:00'),
(1240, 'en', 'End Periode', 20, '2012-10-17 09:31:29', NULL, '0000-00-00 00:00:00'),
(1240, 'id', 'Periode Akhir', 20, '2012-10-17 09:31:29', NULL, '0000-00-00 00:00:00'),
(1241, 'en', 'Goods', 20, '2012-10-17 09:35:55', NULL, '0000-00-00 00:00:00'),
(1241, 'id', 'Barang', 20, '2012-10-17 09:35:55', NULL, '0000-00-00 00:00:00'),
(1242, 'en', 'Sales Position', 20, '2012-10-17 09:39:41', NULL, '0000-00-00 00:00:00'),
(1242, 'id', 'Jabatan Sales', 20, '2012-10-17 09:39:41', NULL, '0000-00-00 00:00:00'),
(1243, 'en', 'Employee Number', 20, '2012-10-17 09:49:49', NULL, '0000-00-00 00:00:00'),
(1243, 'id', 'Nomor Pegawai', 20, '2012-10-17 09:49:49', NULL, '0000-00-00 00:00:00'),
(1244, 'en', 'Employee Name', 20, '2012-10-17 09:50:16', NULL, '0000-00-00 00:00:00'),
(1244, 'id', 'Nama Pegawai', 20, '2012-10-17 09:50:16', NULL, '0000-00-00 00:00:00'),
(1245, 'en', 'Company Type', 8, '2012-10-18 11:34:13', NULL, '0000-00-00 00:00:00'),
(1245, 'id', 'Jenis Perusahaan', 8, '2012-10-18 11:34:13', NULL, '0000-00-00 00:00:00'),
(1246, 'en', 'Company Detail', 8, '2012-10-18 13:39:44', NULL, '0000-00-00 00:00:00'),
(1246, 'id', 'Detail Perusahaan', 8, '2012-10-18 13:39:44', NULL, '0000-00-00 00:00:00'),
(1248, 'en', 'Sale Transaction', 1, '2012-10-19 10:50:41', NULL, '0000-00-00 00:00:00'),
(1248, 'id', 'Transaksi Penjualan', 1, '2012-10-19 10:50:41', NULL, '0000-00-00 00:00:00'),
(1249, 'en', 'Payment Term', 1, '2012-10-19 10:52:03', NULL, '0000-00-00 00:00:00'),
(1249, 'id', 'Termin Pembayaran', 1, '2012-10-19 10:52:03', NULL, '0000-00-00 00:00:00'),
(1250, 'en', 'Taking Order', 1, '2012-10-19 10:52:36', NULL, '0000-00-00 00:00:00'),
(1250, 'id', 'Taking Order', 1, '2012-10-19 10:52:36', NULL, '0000-00-00 00:00:00'),
(1251, 'en', 'Delivery Date', 1, '2012-10-19 10:53:59', NULL, '0000-00-00 00:00:00'),
(1251, 'id', 'Tanggal Pengiriman', 1, '2012-10-19 10:53:59', NULL, '0000-00-00 00:00:00'),
(1252, 'en', 'Down Payment', 1, '2012-10-19 10:54:23', NULL, '0000-00-00 00:00:00'),
(1252, 'id', 'Uang Muka', 1, '2012-10-19 10:54:23', NULL, '0000-00-00 00:00:00'),
(1253, 'en', 'Business Status', 24, '2012-10-23 11:15:22', NULL, '0000-00-00 00:00:00'),
(1253, 'id', 'Status Bisnis', 24, '2012-10-23 11:15:22', NULL, '0000-00-00 00:00:00'),
(1254, 'en', 'Capital Status', 24, '2012-10-23 14:12:48', NULL, '0000-00-00 00:00:00'),
(1254, 'id', 'Status Modal', 24, '2012-10-23 14:12:48', NULL, '0000-00-00 00:00:00'),
(1255, 'en', 'Sales Verification', 1, '2012-10-24 14:22:35', NULL, '0000-00-00 00:00:00'),
(1255, 'id', 'Verifikasi Penjualan', 1, '2012-10-24 14:22:35', NULL, '0000-00-00 00:00:00'),
(1256, 'en', 'Formula Number', 1, '2012-10-29 08:48:47', NULL, '0000-00-00 00:00:00'),
(1256, 'id', 'Formula Nomor', 1, '2012-10-29 08:48:47', NULL, '0000-00-00 00:00:00'),
(1257, 'en', 'Formula', 1, '2012-10-29 08:58:32', NULL, '0000-00-00 00:00:00'),
(1257, 'id', 'Rumus', 1, '2012-10-29 08:58:32', NULL, '0000-00-00 00:00:00'),
(1258, 'en', 'Sample', 1, '2012-10-29 08:58:53', NULL, '0000-00-00 00:00:00'),
(1258, 'id', 'Contoh', 1, '2012-10-29 08:58:53', NULL, '0000-00-00 00:00:00'),
(1259, 'en', 'Digit', 1, '2012-10-29 09:20:05', NULL, '0000-00-00 00:00:00'),
(1259, 'id', 'Digit', 1, '2012-10-29 09:20:05', NULL, '0000-00-00 00:00:00'),
(1260, 'en', 'Restart', 1, '2012-10-29 09:23:57', NULL, '0000-00-00 00:00:00'),
(1260, 'id', 'Restart', 1, '2012-10-29 09:23:57', NULL, '0000-00-00 00:00:00'),
(1261, 'en', 'Is_query', 1, '2013-09-04 08:25:31', NULL, '0000-00-00 00:00:00'),
(1261, 'id', 'Status Query', 1, '2013-09-04 08:25:31', NULL, '0000-00-00 00:00:00'),
(1262, 'en', 'User Profile', 1, '2012-10-29 11:16:13', NULL, '0000-00-00 00:00:00'),
(1262, 'id', 'Profil Pengguna', 1, '2012-10-29 11:16:13', NULL, '0000-00-00 00:00:00'),
(1263, 'en', 'Language', 1, '2012-10-29 11:16:31', NULL, '0000-00-00 00:00:00'),
(1263, 'id', 'Bahasa', 1, '2012-10-29 11:16:31', NULL, '0000-00-00 00:00:00'),
(1264, 'en', 'The same order number is still exist', 1, '2012-10-29 13:15:52', NULL, '0000-00-00 00:00:00'),
(1264, 'id', 'Urutan yang sama sudah ada', 1, '2012-10-29 13:15:52', NULL, '0000-00-00 00:00:00'),
(1265, 'en', 'Commision Recap already made in date between', 1, '2012-10-29 13:06:17', NULL, '0000-00-00 00:00:00'),
(1265, 'id', 'Rekap Komisi telah dilakukan pada tanggal', 1, '2012-10-29 13:06:17', NULL, '0000-00-00 00:00:00'),
(1266, 'en', 'Success Recaping the Commision', 1, '2013-05-21 13:30:01', NULL, '0000-00-00 00:00:00'),
(1266, 'id', 'Berhasil Melakukan Rekap Komisi', 1, '2013-05-21 13:30:01', NULL, '0000-00-00 00:00:00'),
(1267, 'en', 'No commision between the date', 1, '2012-10-29 13:06:49', NULL, '0000-00-00 00:00:00'),
(1267, 'id', 'Tidak ada komisi diantara tanggal tersebut', 1, '2012-10-29 13:06:49', NULL, '0000-00-00 00:00:00'),
(1268, 'en', 'If you want to save it anyway, you must delete commision recap between the date, with clicking ', 1, '2012-10-29 13:07:04', NULL, '0000-00-00 00:00:00'),
(1268, 'id', 'Jika ingin tetap menyimpan data rekap ini, anda harus menghapus data tanggal tersebut, dengan mengklik ', 1, '2012-10-29 13:07:04', NULL, '0000-00-00 00:00:00'),
(1269, 'en', 'This Link', 1, '2012-10-29 13:07:18', NULL, '0000-00-00 00:00:00'),
(1269, 'id', 'Link ini', 1, '2012-10-29 13:07:18', NULL, '0000-00-00 00:00:00'),
(1270, 'en', 'Recap Customer Order', 1, '2012-10-29 13:07:59', NULL, '0000-00-00 00:00:00'),
(1270, 'id', 'Rekap Pemesanan Barang Pelanggan', 1, '2012-10-29 13:07:59', NULL, '0000-00-00 00:00:00'),
(1271, 'en', 'Weekly', 1, '2012-10-29 13:13:11', NULL, '0000-00-00 00:00:00'),
(1271, 'id', 'Mingguan', 1, '2012-10-29 13:13:11', NULL, '0000-00-00 00:00:00'),
(1272, 'en', 'Telephone type is still exist', 1, '2012-10-29 14:18:15', NULL, '0000-00-00 00:00:00'),
(1272, 'id', 'Nama jenis telepon sudah ada', 1, '2012-10-29 14:18:15', NULL, '0000-00-00 00:00:00'),
(1273, 'en', 'Photo type is still exist', 1, '2012-10-29 14:24:12', NULL, '0000-00-00 00:00:00'),
(1273, 'id', 'Nama jenis foto sudah ada', 1, '2012-10-29 14:24:12', NULL, '0000-00-00 00:00:00'),
(1274, 'en', 'Priority Level', 1, '2012-10-29 15:18:02', NULL, '0000-00-00 00:00:00'),
(1274, 'id', 'Tingkat Prioritas', 1, '2012-10-29 15:18:02', NULL, '0000-00-00 00:00:00'),
(1275, 'en', 'Purpose Status', 1, '2012-10-29 15:50:57', NULL, '0000-00-00 00:00:00'),
(1275, 'id', 'Status Pemanfaatan', 1, '2012-10-29 15:50:57', NULL, '0000-00-00 00:00:00'),
(1276, 'en', 'Bug Resolution', 1, '2013-09-23 15:36:18', NULL, '0000-00-00 00:00:00'),
(1276, 'id', 'Resolusi Bug / Cacat Produk', 1, '2013-09-23 15:36:18', NULL, '0000-00-00 00:00:00'),
(1277, 'en', 'Information Source', 1, '2012-11-01 10:44:06', NULL, '0000-00-00 00:00:00'),
(1277, 'id', 'Asal Informasi', 1, '2012-11-01 10:44:06', NULL, '0000-00-00 00:00:00'),
(1278, 'en', 'Status', 1, '2013-09-23 15:35:40', NULL, '0000-00-00 00:00:00'),
(1278, 'id', 'Status', 1, '2013-09-23 15:35:40', NULL, '0000-00-00 00:00:00'),
(1279, 'en', 'Product Bug Type', 1, '2013-09-23 15:35:49', NULL, '0000-00-00 00:00:00'),
(1279, 'id', 'Jenis Bug / Cacat Produk', 1, '2013-09-23 15:35:49', NULL, '0000-00-00 00:00:00'),
(1280, 'en', 'Unit Choice Option', 1, '2012-10-30 09:44:12', NULL, '0000-00-00 00:00:00'),
(1280, 'id', 'Opsi Pemilihan Unit', 1, '2012-10-30 09:44:12', NULL, '0000-00-00 00:00:00'),
(1281, 'en', 'Use Unit As Working Unit', 1, '2012-10-30 09:49:27', NULL, '0000-00-00 00:00:00'),
(1281, 'id', 'Gunakan Unit Kerja Sebagai Hak Akses Unit', 1, '2012-10-30 09:49:27', NULL, '0000-00-00 00:00:00'),
(1282, 'en', 'Use Employee Unit As Working Unit', 1, '2012-10-30 09:50:01', NULL, '0000-00-00 00:00:00'),
(1282, 'id', 'Gunakan Unit Kerja Pegawai Sebagai Hak Akses Unit', 1, '2012-10-30 09:50:01', NULL, '0000-00-00 00:00:00'),
(1283, 'en', 'Access Right', 1, '2012-10-30 13:40:40', NULL, '0000-00-00 00:00:00'),
(1283, 'id', 'Hak Akses', 1, '2012-10-30 13:40:40', NULL, '0000-00-00 00:00:00'),
(1284, 'en', 'Goods Category Right', 1, '2012-10-30 13:41:09', NULL, '0000-00-00 00:00:00'),
(1284, 'id', 'Akses Kategori Barang', 1, '2012-10-30 13:41:09', NULL, '0000-00-00 00:00:00'),
(1285, 'en', 'Show Po Price', 1, '2012-10-30 13:44:21', NULL, '0000-00-00 00:00:00'),
(1285, 'id', 'Tampilkan Harga Saat PO', 1, '2012-10-30 13:44:21', NULL, '0000-00-00 00:00:00'),
(1286, 'en', 'Show Price On Delivery', 1, '2012-10-30 13:43:40', NULL, '0000-00-00 00:00:00'),
(1286, 'id', 'Tampilkan Harga Saat Pengiriman', 1, '2012-10-30 13:43:40', NULL, '0000-00-00 00:00:00'),
(1287, 'en', 'Show Price On Receiving', 1, '2012-10-30 13:44:03', NULL, '0000-00-00 00:00:00'),
(1287, 'id', 'Tampilkan Harga Saat Penerimaan', 1, '2012-10-30 13:44:03', NULL, '0000-00-00 00:00:00'),
(1288, 'en', 'Deposit Amount', 1, '2012-10-30 13:58:07', NULL, '0000-00-00 00:00:00'),
(1288, 'id', 'Jumlah Setoran', 1, '2012-10-30 13:58:07', NULL, '0000-00-00 00:00:00'),
(1289, 'en', 'Sales Canvas Report', 1, '2012-10-30 14:08:45', NULL, '0000-00-00 00:00:00'),
(1289, 'id', 'Laporan Sales Canvas', 1, '2012-10-30 14:08:45', NULL, '0000-00-00 00:00:00'),
(1290, 'en', 'Retur Customer Report', 1, '2012-10-31 07:30:52', NULL, '0000-00-00 00:00:00'),
(1290, 'id', 'Laporan Retur Pelanggan', 1, '2012-10-31 07:30:52', NULL, '0000-00-00 00:00:00'),
(1291, 'en', 'Daily Sales Report', 1, '2012-10-31 11:45:23', NULL, '0000-00-00 00:00:00'),
(1291, 'id', 'Laporan Penjualan Harian', 1, '2012-10-31 11:45:23', NULL, '0000-00-00 00:00:00'),
(1292, 'en', 'Remaining', 1, '2012-10-31 11:51:48', NULL, '0000-00-00 00:00:00'),
(1292, 'id', 'Sisa', 1, '2012-10-31 11:51:48', NULL, '0000-00-00 00:00:00'),
(1293, 'en', 'Payment Due Date', 1, '2012-10-31 13:35:48', NULL, '0000-00-00 00:00:00'),
(1293, 'id', 'Jatuh Tempo Pembayaran', 1, '2012-10-31 13:35:48', NULL, '0000-00-00 00:00:00'),
(1294, 'en', 'Invoice Date', 1, '2012-10-31 13:36:05', NULL, '0000-00-00 00:00:00'),
(1294, 'id', 'Tanggal Invoice', 1, '2012-10-31 13:36:05', NULL, '0000-00-00 00:00:00'),
(1295, 'en', 'Percentage', 1, '2012-10-31 13:36:26', NULL, '0000-00-00 00:00:00'),
(1295, 'id', 'Persen', 1, '2012-10-31 13:36:26', NULL, '0000-00-00 00:00:00'),
(1296, 'en', 'Payment Condition', 1, '2012-10-31 13:38:06', NULL, '0000-00-00 00:00:00'),
(1296, 'id', 'Syarat Pembayaran', 1, '2012-10-31 13:38:06', NULL, '0000-00-00 00:00:00'),
(1297, 'en', 'Subtotal', 1, '2012-10-31 13:38:25', NULL, '0000-00-00 00:00:00'),
(1297, 'id', 'Subtotal', 1, '2012-10-31 13:38:25', NULL, '0000-00-00 00:00:00'),
(1298, 'en', 'Discount/Fines Percentage', 1, '2012-10-31 13:39:22', NULL, '0000-00-00 00:00:00'),
(1298, 'id', 'Persen Diskon/Denda', 1, '2012-10-31 13:39:22', NULL, '0000-00-00 00:00:00'),
(1299, 'en', 'Days', 1, '2012-10-31 13:39:35', NULL, '0000-00-00 00:00:00'),
(1299, 'id', 'Lama Hari', 1, '2012-10-31 13:39:35', NULL, '0000-00-00 00:00:00'),
(1300, 'en', 'Sales Remark', 1, '2012-10-31 14:14:31', NULL, '0000-00-00 00:00:00'),
(1300, 'id', 'Keterangan Sales', 1, '2012-10-31 14:14:31', NULL, '0000-00-00 00:00:00'),
(1301, 'en', 'Nominal', 1, '2012-10-31 14:16:37', NULL, '0000-00-00 00:00:00'),
(1301, 'id', 'Nominal', 1, '2012-10-31 14:16:37', NULL, '0000-00-00 00:00:00'),
(1302, 'en', 'Goods Income Report', 1, '2012-11-01 10:12:51', NULL, '0000-00-00 00:00:00'),
(1302, 'id', 'Laporan Pemasukan Barang', 1, '2012-11-01 10:12:51', NULL, '0000-00-00 00:00:00'),
(1303, 'en', 'Goods Outcome Report', 1, '2012-11-01 13:54:02', NULL, '0000-00-00 00:00:00'),
(1303, 'id', 'Laporan Pengeluaran Barang', 1, '2012-11-01 13:54:02', NULL, '0000-00-00 00:00:00'),
(1304, 'en', 'Addition', 1, '2012-11-01 14:30:02', NULL, '0000-00-00 00:00:00'),
(1304, 'id', 'Penambahan', 1, '2012-11-01 14:30:02', NULL, '0000-00-00 00:00:00'),
(1305, 'en', 'Reduction', 1, '2012-11-01 14:30:19', NULL, '0000-00-00 00:00:00'),
(1305, 'id', 'Pengurangan', 1, '2012-11-01 14:30:19', NULL, '0000-00-00 00:00:00'),
(1306, 'en', 'Stock Opname Report', 1, '2012-11-01 14:32:15', NULL, '0000-00-00 00:00:00'),
(1306, 'id', 'Laporan Stok Opname', 1, '2012-11-01 14:32:15', NULL, '0000-00-00 00:00:00'),
(1307, 'en', 'Warehouse Type', 1, '2012-11-05 09:22:04', NULL, '0000-00-00 00:00:00'),
(1307, 'id', 'Tipe Gudang', 1, '2012-11-05 09:22:04', NULL, '0000-00-00 00:00:00'),
(1308, 'en', 'Goods Usage Recap', 1, '2012-11-06 10:50:22', NULL, '0000-00-00 00:00:00'),
(1308, 'id', 'Rekap Penggunaan Barang', 1, '2012-11-06 10:50:22', NULL, '0000-00-00 00:00:00'),
(1309, 'en', 'Tuesday', 1, '2012-11-06 13:30:54', NULL, '0000-00-00 00:00:00'),
(1309, 'id', 'Selasa', 1, '2012-11-06 13:30:54', NULL, '0000-00-00 00:00:00'),
(1310, 'en', 'Monday', 1, '2012-11-06 13:31:07', NULL, '0000-00-00 00:00:00'),
(1310, 'id', 'Senin', 1, '2012-11-06 13:31:07', NULL, '0000-00-00 00:00:00'),
(1311, 'en', 'Wednesday', 1, '2012-11-06 13:31:18', NULL, '0000-00-00 00:00:00'),
(1311, 'id', 'Rabu', 1, '2012-11-06 13:31:18', NULL, '0000-00-00 00:00:00'),
(1312, 'en', 'Thursday', 1, '2012-11-06 13:31:26', NULL, '0000-00-00 00:00:00'),
(1312, 'id', 'Kamis', 1, '2012-11-06 13:31:26', NULL, '0000-00-00 00:00:00'),
(1313, 'en', 'Friday', 1, '2012-11-06 13:32:14', NULL, '0000-00-00 00:00:00'),
(1313, 'id', 'Jumat', 1, '2012-11-06 13:32:14', NULL, '0000-00-00 00:00:00'),
(1314, 'en', 'Saturday', 1, '2012-11-06 13:31:58', NULL, '0000-00-00 00:00:00'),
(1314, 'id', 'Sabtu', 1, '2012-11-06 13:31:58', NULL, '0000-00-00 00:00:00'),
(1315, 'en', 'Sunday', 1, '2012-11-06 13:32:09', NULL, '0000-00-00 00:00:00'),
(1315, 'id', 'Minggu', 1, '2012-11-06 13:32:09', NULL, '0000-00-00 00:00:00'),
(1316, 'en', 'About', 1, '2012-11-07 09:47:59', NULL, '0000-00-00 00:00:00'),
(1316, 'id', 'About', 1, '2012-11-07 09:47:59', NULL, '0000-00-00 00:00:00'),
(1317, 'en', 'Legal Notice', 1, '2012-11-07 09:48:12', NULL, '0000-00-00 00:00:00'),
(1317, 'id', 'Legal Notice', 1, '2012-11-07 09:48:12', NULL, '0000-00-00 00:00:00'),
(1318, 'en', 'Home', 1, '2012-11-07 09:48:31', NULL, '0000-00-00 00:00:00'),
(1318, 'id', 'Beranda', 1, '2012-11-07 09:48:31', NULL, '0000-00-00 00:00:00'),
(1319, 'en', 'Scroll Up', 1, '2012-11-07 09:48:55', NULL, '0000-00-00 00:00:00'),
(1319, 'id', 'Geser Atas', 1, '2012-11-07 09:48:55', NULL, '0000-00-00 00:00:00'),
(1320, 'en', 'Scroll Down', 1, '2012-11-07 09:49:12', NULL, '0000-00-00 00:00:00'),
(1320, 'id', 'Geser Bawah', 1, '2012-11-07 09:49:12', NULL, '0000-00-00 00:00:00'),
(1321, 'en', 'advance', 1, '2012-11-07 09:53:31', NULL, '0000-00-00 00:00:00'),
(1321, 'id', 'lebih lanjut', 1, '2012-11-07 09:53:31', NULL, '0000-00-00 00:00:00'),
(1322, 'en', 'basic', 1, '2012-11-07 13:35:29', NULL, '0000-00-00 00:00:00'),
(1322, 'id', 'sederhana', 1, '2012-11-07 13:35:29', NULL, '0000-00-00 00:00:00'),
(1323, 'en', 'Cancel Success', 1, '2013-05-21 13:27:50', NULL, '0000-00-00 00:00:00'),
(1323, 'id', 'Pembatalan Berhasil', 1, '2013-05-21 13:27:50', NULL, '0000-00-00 00:00:00'),
(1324, 'en', 'Account Logo Data', 1, '2012-11-07 10:22:14', NULL, '0000-00-00 00:00:00'),
(1324, 'id', 'Data Logo Akun', 1, '2012-11-07 10:22:14', NULL, '0000-00-00 00:00:00'),
(1325, 'en', 'Logo', 1, '2012-11-07 10:22:23', NULL, '0000-00-00 00:00:00'),
(1325, 'id', 'Logo', 1, '2012-11-07 10:22:23', NULL, '0000-00-00 00:00:00'),
(1326, 'en', 'All Retur item is empty or zero value', 1, '2012-11-07 11:42:05', NULL, '0000-00-00 00:00:00'),
(1326, 'id', 'Jumlah semua yang di retur kosong atau bernilai 0', 1, '2012-11-07 11:42:05', NULL, '0000-00-00 00:00:00'),
(1327, 'en', 'Capital', 1, '2012-11-07 11:56:53', NULL, '0000-00-00 00:00:00'),
(1327, 'id', 'Ibukota Negara', 1, '2012-11-07 11:56:53', NULL, '0000-00-00 00:00:00'),
(1328, 'en', 'Region', 1, '2012-11-07 12:48:35', NULL, '0000-00-00 00:00:00'),
(1328, 'id', 'Region', 1, '2012-11-07 12:48:35', NULL, '0000-00-00 00:00:00'),
(1329, 'en', 'Bank Account Data', 1, '2012-11-07 12:57:59', NULL, '0000-00-00 00:00:00'),
(1329, 'id', 'Data Rekening Bank', 1, '2012-11-07 12:57:59', NULL, '0000-00-00 00:00:00'),
(1330, 'en', 'NPWP Data', 1, '2012-11-07 12:58:17', NULL, '0000-00-00 00:00:00'),
(1330, 'id', 'Data NPWP', 1, '2012-11-07 12:58:17', NULL, '0000-00-00 00:00:00'),
(1331, 'en', 'Billing Address Data', 1, '2012-11-07 13:00:37', NULL, '0000-00-00 00:00:00'),
(1331, 'id', 'Data Alamat Penagihan (Billing)', 1, '2012-11-07 13:00:37', NULL, '0000-00-00 00:00:00'),
(1332, 'en', 'Shipping Address Data', 1, '2012-11-07 13:01:05', NULL, '0000-00-00 00:00:00'),
(1332, 'id', 'Data Alamat Pengiriman (Shipping)', 1, '2012-11-07 13:01:05', NULL, '0000-00-00 00:00:00'),
(1333, 'en', 'Logo Data', 1, '2012-11-07 13:01:25', NULL, '0000-00-00 00:00:00'),
(1333, 'id', 'Data Logo', 1, '2012-11-07 13:01:25', NULL, '0000-00-00 00:00:00'),
(1334, 'en', 'Basic Search', 1, '2012-11-07 13:35:16', NULL, '0000-00-00 00:00:00'),
(1334, 'id', 'Pencarian Dasar', 1, '2012-11-07 13:35:16', NULL, '0000-00-00 00:00:00'),
(1335, 'en', 'Advance Search', 1, '2012-11-07 13:38:14', NULL, '0000-00-00 00:00:00'),
(1335, 'id', 'Pencarian Lebih Lanjut', 1, '2012-11-07 13:38:14', NULL, '0000-00-00 00:00:00'),
(1336, 'en', 'Logo Type', 1, '2012-11-07 13:49:19', NULL, '0000-00-00 00:00:00'),
(1336, 'id', 'Jenis Logo', 1, '2012-11-07 13:49:19', NULL, '0000-00-00 00:00:00'),
(1337, 'en', 'Meeting', 1, '2012-11-07 19:10:00', NULL, '0000-00-00 00:00:00'),
(1337, 'id', 'Pertemuan', 1, '2012-11-07 19:10:00', NULL, '0000-00-00 00:00:00'),
(1338, 'en', 'Call', 1, '2012-11-07 19:10:14', NULL, '0000-00-00 00:00:00'),
(1338, 'id', 'Panggilan', 1, '2012-11-07 19:10:14', NULL, '0000-00-00 00:00:00'),
(1339, 'en', 'Task', 1, '2013-09-23 08:54:48', NULL, '0000-00-00 00:00:00'),
(1339, 'id', 'Tugas', 1, '2013-09-23 08:54:48', NULL, '0000-00-00 00:00:00'),
(1340, 'en', 'Note', 1, '2012-11-07 19:10:51', NULL, '0000-00-00 00:00:00'),
(1340, 'id', 'Catatan', 1, '2012-11-07 19:10:51', NULL, '0000-00-00 00:00:00'),
(1341, 'en', 'Account Data', 1, '2012-11-07 19:45:31', NULL, '0000-00-00 00:00:00'),
(1341, 'id', 'Data Akun', 1, '2012-11-07 19:45:31', NULL, '0000-00-00 00:00:00'),
(1342, 'en', 'Business Address Data', 9, '2012-11-11 23:32:19', NULL, '0000-00-00 00:00:00'),
(1342, 'id', 'Data Alamat Usaha Bisnis', 9, '2012-11-11 23:32:19', NULL, '0000-00-00 00:00:00'),
(1343, 'en', 'Home Address Data', 1, '2012-11-07 19:53:46', NULL, '0000-00-00 00:00:00'),
(1343, 'id', 'Data Alamat Pribadi', 1, '2012-11-07 19:53:46', NULL, '0000-00-00 00:00:00'),
(1344, 'en', 'Conversion', 1, '2012-11-08 08:50:05', NULL, '0000-00-00 00:00:00'),
(1344, 'id', 'Konversi', 1, '2012-11-08 08:50:05', NULL, '0000-00-00 00:00:00'),
(1345, 'en', 'Current Photo', 1, '2012-11-08 09:31:22', NULL, '0000-00-00 00:00:00'),
(1345, 'id', 'Foto Saat Ini', 1, '2012-11-08 09:31:22', NULL, '0000-00-00 00:00:00'),
(1346, 'en', 'Photo Preview', 1, '2012-11-08 09:31:51', NULL, '0000-00-00 00:00:00'),
(1346, 'id', 'Preview Foto', 1, '2012-11-08 09:31:51', NULL, '0000-00-00 00:00:00'),
(1347, 'en', 'Phone Data can not be empty', 1, '2012-11-08 10:01:50', NULL, '0000-00-00 00:00:00'),
(1347, 'id', 'Data Telepon Tidak boleh kosong', 1, '2012-11-08 10:01:50', NULL, '0000-00-00 00:00:00'),
(1348, 'en', 'Religion name already exists', 4, '2012-11-08 10:38:33', NULL, '0000-00-00 00:00:00'),
(1348, 'id', 'Sudah ada agama dengan nama yang sama', 4, '2012-11-08 10:38:33', NULL, '0000-00-00 00:00:00'),
(1349, 'en', 'File Name', 1, '2012-11-08 10:57:04', NULL, '0000-00-00 00:00:00'),
(1349, 'id', 'Nama File', 1, '2012-11-08 10:57:04', NULL, '0000-00-00 00:00:00'),
(1350, 'en', 'Salutation is still exist', 24, '2012-11-08 11:06:07', NULL, '0000-00-00 00:00:00'),
(1350, 'id', 'Nama sapaan sudah ada', 24, '2012-11-08 11:06:07', NULL, '0000-00-00 00:00:00'),
(1351, 'en', 'Functional position is still exist', 24, '2012-11-08 13:48:13', NULL, '0000-00-00 00:00:00'),
(1351, 'id', 'Nama jabatan fungsional sudah ada', 24, '2012-11-08 13:48:13', NULL, '0000-00-00 00:00:00'),
(1352, 'en', 'Functional position code is still exist', 24, '2012-11-08 13:50:22', NULL, '0000-00-00 00:00:00'),
(1352, 'id', 'Kode jabatan fungsional sudah ada', 24, '2012-11-08 13:50:22', NULL, '0000-00-00 00:00:00'),
(1353, 'en', 'Leader', 1, '2012-11-08 13:54:27', NULL, '0000-00-00 00:00:00'),
(1353, 'id', 'Pimpinan', 1, '2012-11-08 13:54:27', NULL, '0000-00-00 00:00:00'),
(1354, 'en', 'Colour name is still exist', 24, '2012-11-08 15:45:00', NULL, '0000-00-00 00:00:00'),
(1354, 'id', 'Nama warna sudah ada', 24, '2012-11-08 15:45:00', NULL, '0000-00-00 00:00:00'),
(1355, 'en', 'Currency name is still exist', 24, '2012-11-08 16:20:42', NULL, '0000-00-00 00:00:00'),
(1355, 'id', 'Nama mata uang sudah ada', 24, '2012-11-08 16:20:42', NULL, '0000-00-00 00:00:00'),
(1356, 'en', 'This link allows you to download electronic business cards in vCard file format.
\r\nvCards are often attached to e-mail messages, but can also be placed on a web page. It contains name and address information, phone numbers and many more. This file created with simplified vCards for business use where only the most commonly properties are used.', 37, '2012-11-09 10:29:06', NULL, '0000-00-00 00:00:00'),
(1356, 'id', 'Link ini memungkinkan Anda untuk mengunduh kartu bisnis elektronik dalam format file vCard.
\r\nvCards sering dilampirkan pada email, tetapi juga dapat ditempatkan pada halaman web. vCard ini berisi informasi nama, alamat, nomor telepon, dan lain - lain. File ini dibuat dengan vCards yang disederhanakan untuk bisnis secara umum.', 37, '2012-11-09 10:29:06', NULL, '0000-00-00 00:00:00'),
(1357, 'en', 'You can download the vCard File directly here', 1, '2012-11-22 21:33:03', NULL, '0000-00-00 00:00:00'),
(1357, 'id', 'Anda dapat mengunduh file vCard tersebut disini', 1, '2012-11-22 21:33:03', NULL, '0000-00-00 00:00:00'),
(1358, 'en', 'This is your business card\'s QR code. Use your cell phone to test if it can be scanned and whether it contains the data you intended to publish.', 37, '2012-11-09 10:30:03', NULL, '0000-00-00 00:00:00'),
(1358, 'id', 'Ini adalah QR Code kartu nama Anda. Gunakan ponsel Anda untuk menguji apakah dapat dipindai serta apakah informasi didalamnya berisi data yang Anda inginkan.', 37, '2012-11-09 10:30:03', NULL, '0000-00-00 00:00:00'),
(1359, 'en', 'The data you have filled in has generated a large QR Code image that might be very difficult to scan by most mobile devices, as of 2010.
\r\nIn order to generate a QR Code that\'s easier to scan you have to reduce the size of the vCard file by at least 93 characters, either by reducing the size of some fields or by eliminating them altogether.', 37, '2012-11-09 10:30:30', NULL, '0000-00-00 00:00:00'),
(1359, 'id', 'Data yang telah Anda isikan telah dihasilkan ke dalam gambar QR Code berukuran besar, dimana kemungkinan ini akan sangat sulit untuk dipindai dengan kebanyakan perangkat mobile yang ada pada tahun 2010.
\r\nDalam rangka untuk menghasilkan QR Code yang lebih mudah dipindai, Anda harus mengurangi ukuran file vCard setidaknya sebanyak 93 karakter, baik dengan mengurangi panjang karakter dalam kolom form atau menghapus data tersebut sama sekali.', 37, '2012-11-09 10:30:30', NULL, '0000-00-00 00:00:00'),
(1360, 'en', 'Download', 37, '2012-11-09 10:43:10', NULL, '0000-00-00 00:00:00'),
(1360, 'id', 'Unduh', 37, '2012-11-09 10:43:10', NULL, '0000-00-00 00:00:00'),
(1361, 'en', 'Scan', 37, '2012-11-09 10:43:23', NULL, '0000-00-00 00:00:00'),
(1361, 'id', 'Scan', 37, '2012-11-09 10:43:23', NULL, '0000-00-00 00:00:00'),
(1362, 'en', 'You can download the image file directly here', 1, '2012-11-22 21:32:50', NULL, '0000-00-00 00:00:00'),
(1362, 'id', 'Anda dapat mengunduh file gambar tersebut disini', 1, '2012-11-22 21:32:50', NULL, '0000-00-00 00:00:00'),
(1363, 'en', 'Data export succesfully', 1, '2013-05-21 13:29:21', NULL, '0000-00-00 00:00:00'),
(1363, 'id', 'Ekspor Data Berhasil', 1, '2013-05-21 13:29:21', NULL, '0000-00-00 00:00:00'),
(1364, 'en', 'Priority level name already exist', 24, '2012-11-09 14:18:51', NULL, '0000-00-00 00:00:00'),
(1364, 'id', 'Nama tingkat prioritas sudah ada', 24, '2012-11-09 14:18:51', NULL, '0000-00-00 00:00:00'),
(1365, 'en', 'Level priority level already exists', 24, '2012-11-09 14:24:34', NULL, '0000-00-00 00:00:00'),
(1365, 'id', 'Tingkat prioritas sudah ada', 24, '2012-11-09 14:24:34', NULL, '0000-00-00 00:00:00'),
(1366, 'en', 'Priority level order already exists', 24, '2012-11-09 14:29:56', NULL, '0000-00-00 00:00:00'),
(1366, 'id', 'Urutan tingkat prioritas sudah ada', 24, '2012-11-09 14:29:56', NULL, '0000-00-00 00:00:00'),
(1367, 'en', 'Bug Type Is Already Exists', 1, '2013-09-23 16:23:45', NULL, '0000-00-00 00:00:00'),
(1367, 'id', 'Jenis Bug / Cacat Produk Sudah Ada Sebelumnya', 1, '2013-09-23 16:23:45', NULL, '0000-00-00 00:00:00'),
(1368, 'en', 'Bug Status Is Already Exists', 1, '2013-09-23 16:22:17', NULL, '0000-00-00 00:00:00'),
(1368, 'id', 'Status Bug / Cacat Produk Sudah Ada Sebelumnya', 1, '2013-09-23 16:22:17', NULL, '0000-00-00 00:00:00'),
(1369, 'en', 'Bug Status Order Is Already Exists', 1, '2013-09-23 16:23:07', NULL, '0000-00-00 00:00:00'),
(1369, 'id', 'Urutan Status Bug / Cacat Produk Sudah Ada Sebelumnya', 1, '2013-09-23 16:23:07', NULL, '0000-00-00 00:00:00'),
(1370, 'en', 'Bug Source Name Is Already Exists', 1, '2013-09-23 16:21:30', NULL, '0000-00-00 00:00:00'),
(1370, 'id', 'Asal Informasi Bug / Cacat Produk Sudah Ada Sebelumnya', 1, '2013-09-23 16:21:30', NULL, '0000-00-00 00:00:00'),
(1371, 'en', 'Priority', 24, '2012-11-09 16:15:22', NULL, '0000-00-00 00:00:00'),
(1371, 'id', 'Prioritas', 24, '2012-11-09 16:15:22', NULL, '0000-00-00 00:00:00'),
(1372, 'en', 'Customer Type', 24, '2012-11-09 16:16:12', NULL, '0000-00-00 00:00:00'),
(1372, 'id', 'Jenis Pelanggan', 24, '2012-11-09 16:16:12', NULL, '0000-00-00 00:00:00'),
(1373, 'en', 'vCard Export', 9, '2012-11-09 16:33:10', NULL, '0000-00-00 00:00:00'),
(1373, 'id', 'Export vCard', 9, '2012-11-09 16:33:10', NULL, '0000-00-00 00:00:00'),
(1374, 'en', 'Convert Lead', 9, '2012-11-09 16:34:26', NULL, '0000-00-00 00:00:00'),
(1374, 'id', 'Konversi Lead / Narasumber', 9, '2012-11-09 16:34:26', NULL, '0000-00-00 00:00:00'),
(1375, 'en', 'Contact Form', 9, '2012-11-11 23:30:37', NULL, '0000-00-00 00:00:00'),
(1375, 'id', 'Form Kontak', 9, '2012-11-11 23:30:37', NULL, '0000-00-00 00:00:00'),
(1376, 'en', 'Company / Organization', 9, '2012-11-11 23:31:02', NULL, '0000-00-00 00:00:00'),
(1376, 'id', 'Perusahaan / Organisasi', 9, '2012-11-11 23:31:02', NULL, '0000-00-00 00:00:00'),
(1377, 'en', 'Job Title', 9, '2012-11-11 23:31:18', NULL, '0000-00-00 00:00:00'),
(1377, 'id', 'Jabatan', 9, '2012-11-11 23:31:18', NULL, '0000-00-00 00:00:00'),
(1378, 'en', 'Building Name', 9, '2012-11-11 23:31:36', NULL, '0000-00-00 00:00:00'),
(1378, 'id', 'Nama Gedung', 9, '2012-11-11 23:31:36', NULL, '0000-00-00 00:00:00'),
(1379, 'en', 'Business Address', 9, '2012-11-11 23:32:03', NULL, '0000-00-00 00:00:00'),
(1379, 'id', 'Alamat Usaha Bisnis', 9, '2012-11-11 23:32:03', NULL, '0000-00-00 00:00:00'),
(1380, 'en', 'Home Address', 9, '2012-11-11 23:32:37', NULL, '0000-00-00 00:00:00'),
(1380, 'id', 'Alamat Rumah', 9, '2012-11-11 23:32:37', NULL, '0000-00-00 00:00:00'),
(1381, 'en', 'Generate', 9, '2012-11-11 23:33:03', NULL, '0000-00-00 00:00:00'),
(1381, 'id', 'Proses', 9, '2012-11-11 23:33:03', NULL, '0000-00-00 00:00:00'),
(1382, 'en', '2.1 Version', 52, '2013-09-13 11:06:55', NULL, '0000-00-00 00:00:00'),
(1382, 'id', 'Versi 2.1', 52, '2013-09-13 11:06:55', NULL, '0000-00-00 00:00:00'),
(1383, 'en', '3.0 Version', 9, '2012-11-11 23:33:42', NULL, '0000-00-00 00:00:00'),
(1383, 'id', 'Versi 3.0', 9, '2012-11-11 23:33:42', NULL, '0000-00-00 00:00:00'),
(1384, 'en', '4.0 Version', 9, '2012-11-11 23:34:03', NULL, '0000-00-00 00:00:00'),
(1384, 'id', 'Versi 4.0', 9, '2012-11-11 23:34:03', NULL, '0000-00-00 00:00:00'),
(1385, 'en', 'Standard Format', 9, '2012-11-11 23:35:36', NULL, '0000-00-00 00:00:00'),
(1385, 'id', 'Format Standar', 9, '2012-11-11 23:35:36', NULL, '0000-00-00 00:00:00'),
(1386, 'en', 'Email and Website', 9, '2012-11-11 23:37:09', NULL, '0000-00-00 00:00:00'),
(1386, 'id', 'Email dan Website', 9, '2012-11-11 23:37:09', NULL, '0000-00-00 00:00:00'),
(1387, 'en', 'Preferred Email', 1, '2012-11-22 21:30:14', NULL, '0000-00-00 00:00:00'),
(1387, 'id', 'Email Utama', 1, '2012-11-22 21:30:14', NULL, '0000-00-00 00:00:00'),
(1388, 'en', 'Aternative Email', 9, '2012-11-11 23:38:14', NULL, '0000-00-00 00:00:00'),
(1388, 'id', 'Email Alternatif', 9, '2012-11-11 23:38:14', NULL, '0000-00-00 00:00:00'),
(1389, 'en', 'Work Website', 9, '2012-11-11 23:38:29', NULL, '0000-00-00 00:00:00'),
(1389, 'id', 'Website Kerja', 9, '2012-11-11 23:38:29', NULL, '0000-00-00 00:00:00'),
(1390, 'en', 'Business Phone', 9, '2012-11-11 23:38:50', NULL, '0000-00-00 00:00:00'),
(1390, 'id', 'Telepon Usaha Bisnis', 9, '2012-11-11 23:38:50', NULL, '0000-00-00 00:00:00'),
(1391, 'en', 'Business Fax', 9, '2012-11-11 23:39:08', NULL, '0000-00-00 00:00:00'),
(1391, 'id', 'Fax Usaha Bisnis', 9, '2012-11-11 23:39:08', NULL, '0000-00-00 00:00:00'),
(1392, 'en', 'Mobile Phone', 9, '2012-11-11 23:39:28', NULL, '0000-00-00 00:00:00'),
(1392, 'id', 'Telepon Genggam', 9, '2012-11-11 23:39:28', NULL, '0000-00-00 00:00:00'),
(1393, 'en', 'Home Phone', 9, '2012-11-11 23:39:46', NULL, '0000-00-00 00:00:00'),
(1393, 'id', 'Telepon Rumah', 9, '2012-11-11 23:39:46', NULL, '0000-00-00 00:00:00'),
(1394, 'en', 'OK', 1, '2012-11-12 06:36:09', NULL, '0000-00-00 00:00:00'),
(1394, 'id', 'OK', 1, '2012-11-12 06:36:09', NULL, '0000-00-00 00:00:00'),
(1395, 'en', 'Confirm Delete', 1, '2012-11-12 06:37:45', NULL, '0000-00-00 00:00:00'),
(1395, 'id', 'Konfirmasi Penghapusan', 1, '2012-11-12 06:37:45', NULL, '0000-00-00 00:00:00'),
(1396, 'en', 'Are you sure want to delete', 1, '2012-11-12 06:38:16', NULL, '0000-00-00 00:00:00'),
(1396, 'id', 'Anda yakin menghapus data', 1, '2012-11-12 06:38:16', NULL, '0000-00-00 00:00:00'),
(1397, 'en', 'Alert', 1, '2012-11-12 06:39:18', NULL, '0000-00-00 00:00:00'),
(1397, 'id', 'Alert', 1, '2012-11-12 06:39:18', NULL, '0000-00-00 00:00:00'),
(1398, 'en', 'Confirm', 1, '2012-11-12 06:39:42', NULL, '0000-00-00 00:00:00'),
(1398, 'id', 'Konfirmasi', 1, '2012-11-12 06:39:42', NULL, '0000-00-00 00:00:00'),
(1399, 'en', 'Prompt', 1, '2012-11-12 06:40:31', NULL, '0000-00-00 00:00:00'),
(1399, 'id', 'Prompt', 1, '2012-11-12 06:40:31', NULL, '0000-00-00 00:00:00'),
(1400, 'en', 'Wrong URL', 1, '2012-11-12 06:40:54', NULL, '0000-00-00 00:00:00'),
(1400, 'id', 'URL salah', 1, '2012-11-12 06:40:54', NULL, '0000-00-00 00:00:00'),
(1401, 'en', 'Maximum file size', 1, '2012-11-12 06:57:16', NULL, '0000-00-00 00:00:00'),
(1401, 'id', 'Ukuran file maksimal', 1, '2012-11-12 06:57:16', NULL, '0000-00-00 00:00:00'),
(1402, 'en', 'Forbidden filetype', 1, '2012-11-12 06:57:47', NULL, '0000-00-00 00:00:00'),
(1402, 'id', 'Tipe file tidak diijinkan', 1, '2012-11-12 06:57:47', NULL, '0000-00-00 00:00:00'),
(1403, 'en', 'Progress', 1, '2012-11-12 06:58:28', NULL, '0000-00-00 00:00:00'),
(1403, 'id', 'Progress', 1, '2012-11-12 06:58:28', NULL, '0000-00-00 00:00:00'),
(1404, 'en', 'Remove', 1, '2012-11-12 06:59:12', NULL, '0000-00-00 00:00:00'),
(1404, 'id', 'Hapus', 1, '2012-11-12 06:59:12', NULL, '0000-00-00 00:00:00'),
(1405, 'en', 'Upload canceled', 1, '2012-11-12 06:59:39', NULL, '0000-00-00 00:00:00'),
(1405, 'id', 'Upload dibatalkan', 1, '2012-11-12 06:59:39', NULL, '0000-00-00 00:00:00'),
(1406, 'en', 'Aborting', 1, '2012-11-12 06:59:56', NULL, '0000-00-00 00:00:00'),
(1406, 'id', 'Membatalkan', 1, '2012-11-12 06:59:56', NULL, '0000-00-00 00:00:00'),
(1407, 'en', 'Image Preview', 1, '2012-11-12 07:00:38', NULL, '0000-00-00 00:00:00'),
(1407, 'id', 'Pratinjau Gambar', 1, '2012-11-12 07:00:38', NULL, '0000-00-00 00:00:00'),
(1408, 'en', 'Select File', 1, '2013-06-26 14:36:44', NULL, '0000-00-00 00:00:00'),
(1408, 'id', 'Pilih File', 1, '2013-06-26 14:36:44', NULL, '0000-00-00 00:00:00'),
(1409, 'en', 'Unable to compute', 1, '2012-11-12 07:01:16', NULL, '0000-00-00 00:00:00'),
(1409, 'id', 'Tidak bisa memperhitungkan', 1, '2012-11-12 07:01:16', NULL, '0000-00-00 00:00:00'),
(1410, 'en', 'Good Discount', 24, '2012-11-12 08:47:50', NULL, '0000-00-00 00:00:00'),
(1410, 'id', 'Diskon Barang', 24, '2012-11-12 08:47:50', NULL, '0000-00-00 00:00:00'),
(1411, 'en', 'Treatment Discount', 24, '2012-11-12 08:48:19', NULL, '0000-00-00 00:00:00'),
(1411, 'id', 'Diskon Pelayanan', 24, '2012-11-12 08:48:19', NULL, '0000-00-00 00:00:00'),
(1412, 'en', 'Goods Discount', 24, '2012-11-12 08:49:58', NULL, '0000-00-00 00:00:00'),
(1412, 'id', 'Diskon Barang', 24, '2012-11-12 08:49:58', NULL, '0000-00-00 00:00:00'),
(1414, 'en', 'simple', 1, '2013-07-25 09:23:06', NULL, '0000-00-00 00:00:00'),
(1414, 'id', 'sederhana', 1, '2013-07-25 09:23:06', NULL, '0000-00-00 00:00:00'),
(1415, 'en', 'Code already used by other data', 1, '2012-11-14 15:34:58', NULL, '0000-00-00 00:00:00'),
(1415, 'id', 'Kode sudah dipakai oleh data lain', 1, '2012-11-14 15:34:58', NULL, '0000-00-00 00:00:00'),
(1416, 'en', 'Name already used by other data', 1, '2012-11-14 15:34:30', NULL, '0000-00-00 00:00:00'),
(1416, 'id', 'Nama sudah dipakai oleh data lain', 1, '2012-11-14 15:34:30', NULL, '0000-00-00 00:00:00'),
(1417, 'en', 'Bank code is already exists', 24, '2012-11-14 15:18:51', NULL, '0000-00-00 00:00:00'),
(1417, 'id', 'Kode bank sudah ada', 24, '2012-11-14 15:18:51', NULL, '0000-00-00 00:00:00'),
(1418, 'en', 'Backup to vCard', 37, '2012-11-19 10:32:34', NULL, '0000-00-00 00:00:00'),
(1418, 'id', 'Backup vCard', 37, '2012-11-19 10:32:34', NULL, '0000-00-00 00:00:00'),
(1419, 'en', 'Synchronization', 37, '2012-11-19 15:01:34', NULL, '0000-00-00 00:00:00'),
(1419, 'id', 'Sinkronisasi', 37, '2012-11-19 15:01:34', NULL, '0000-00-00 00:00:00'),
(1420, 'en', 'Assignment', 37, '2012-11-20 09:36:24', NULL, '0000-00-00 00:00:00'),
(1420, 'id', 'Penugasan', 37, '2012-11-20 09:36:24', NULL, '0000-00-00 00:00:00'),
(1421, 'en', 'Account Officer Assignment', 1, '2013-11-04 08:49:40', NULL, '0000-00-00 00:00:00'),
(1421, 'id', 'Penyerahan Officer / Petugas Akun', 1, '2013-11-04 08:49:40', NULL, '0000-00-00 00:00:00'),
(1422, 'en', 'ECS Module', 1, '2012-11-20 10:53:37', NULL, '0000-00-00 00:00:00'),
(1422, 'id', 'Module ECS', 1, '2012-11-20 10:53:37', NULL, '0000-00-00 00:00:00'),
(1423, 'en', 'Finance Module', 1, '2012-11-20 10:53:49', NULL, '0000-00-00 00:00:00'),
(1423, 'id', 'Module Finansi', 1, '2012-11-20 10:53:49', NULL, '0000-00-00 00:00:00'),
(1424, 'en', 'Informal Education Level', 1, '2012-11-20 11:18:23', NULL, '0000-00-00 00:00:00'),
(1424, 'id', 'Penyelenggara Pendidikan Informal', 1, '2012-11-20 11:18:23', NULL, '0000-00-00 00:00:00'),
(1425, 'en', 'Order already used by another data', 1, '2012-11-21 08:46:31', NULL, '0000-00-00 00:00:00'),
(1425, 'id', 'Urutan sudah di pakai oleh data lain', 1, '2012-11-21 08:46:31', NULL, '0000-00-00 00:00:00'),
(1426, 'en', 'Employee and Officer should not be the same', 1, '2013-06-17 09:13:41', NULL, '0000-00-00 00:00:00'),
(1426, 'id', 'Data Pegawai dan Officer / Petugas tidak boleh sama', 1, '2013-06-17 09:13:41', NULL, '0000-00-00 00:00:00'),
(1427, 'en', 'Lead Officer Assignment', 1, '2013-11-04 08:48:27', NULL, '0000-00-00 00:00:00'),
(1427, 'id', 'Penyerahan Officer / Petugas Narasumber', 1, '2013-11-04 08:48:27', NULL, '0000-00-00 00:00:00'),
(1428, 'en', 'Alternative Email', 1, '2012-11-22 21:29:56', NULL, '0000-00-00 00:00:00'),
(1428, 'id', 'Email Alternatif', 1, '2012-11-22 21:29:56', NULL, '0000-00-00 00:00:00'),
(1429, 'en', 'Email This!', 1, '2012-11-22 21:30:48', NULL, '0000-00-00 00:00:00'),
(1429, 'id', 'Kirim via Email!', 1, '2012-11-22 21:30:48', NULL, '0000-00-00 00:00:00'),
(1430, 'en', 'download file', 1, '2012-11-22 21:33:23', NULL, '0000-00-00 00:00:00'),
(1430, 'id', 'unduh file', 1, '2012-11-22 21:33:23', NULL, '0000-00-00 00:00:00'),
(1431, 'en', 'Transaction Detail', 37, '2012-11-23 09:02:57', NULL, '0000-00-00 00:00:00'),
(1431, 'id', 'Detil Transaksi', 37, '2012-11-23 09:02:57', NULL, '0000-00-00 00:00:00'),
(1432, 'en', 'Owner Status', 1, '2012-11-23 09:16:58', NULL, '0000-00-00 00:00:00'),
(1432, 'id', 'Status Kepemilikan Gedung', 1, '2012-11-23 09:16:58', NULL, '0000-00-00 00:00:00'),
(1433, 'en', 'Contract Summary', 37, '2012-11-23 14:18:01', NULL, '0000-00-00 00:00:00'),
(1433, 'id', 'Rekapitulasi Kontrak', 37, '2012-11-23 14:18:01', NULL, '0000-00-00 00:00:00'),
(1434, 'en', 'Level is already used by another data', 1, '2012-11-28 10:50:08', NULL, '0000-00-00 00:00:00'),
(1434, 'id', 'Tingkat sudah di pakai oleh data lain', 1, '2012-11-28 10:50:08', NULL, '0000-00-00 00:00:00'),
(1435, 'en', 'Set as Account', 41, '2012-11-30 08:56:07', NULL, '0000-00-00 00:00:00'),
(1435, 'id', 'Set sebagai Akun', 41, '2012-11-30 08:56:07', NULL, '0000-00-00 00:00:00'),
(1436, 'en', 'Set Other Master Data', 41, '2012-11-30 08:57:30', NULL, '0000-00-00 00:00:00'),
(1436, 'id', 'Pengaturan Khusus Data Master Lainnya', 41, '2012-11-30 08:57:30', NULL, '0000-00-00 00:00:00'),
(1437, 'en', 'No more goods that can be shipped', 1, '2012-11-30 10:30:15', NULL, '0000-00-00 00:00:00'),
(1437, 'id', 'Tidak ada lagi barang yang dapat dikirimkan', 1, '2012-11-30 10:30:15', NULL, '0000-00-00 00:00:00'),
(1438, 'en', 'Username already exists', 1, '2012-11-30 14:03:10', NULL, '0000-00-00 00:00:00'),
(1438, 'id', 'Nama pengguna sudah ada', 1, '2012-11-30 14:03:10', NULL, '0000-00-00 00:00:00'),
(1439, 'en', 'Employee Area', 1, '2012-11-30 16:28:30', NULL, '0000-00-00 00:00:00'),
(1439, 'id', 'Area Pegawai', 1, '2012-11-30 16:28:30', NULL, '0000-00-00 00:00:00'),
(1440, 'en', 'Total percent exceeds 100%', 1, '2012-12-03 09:03:44', NULL, '0000-00-00 00:00:00'),
(1440, 'id', 'Total persen melebihi 100%', 1, '2012-12-03 09:03:44', NULL, '0000-00-00 00:00:00'),
(1441, 'en', 'Total of nominal exceeds purchase price of goods', 1, '2012-12-03 09:10:59', NULL, '0000-00-00 00:00:00'),
(1441, 'id', 'Total nominal melebihi harga pembelian barang', 1, '2012-12-03 09:10:59', NULL, '0000-00-00 00:00:00'),
(1442, 'en', 'Unit Name', 1, '2012-12-04 08:50:04', NULL, '0000-00-00 00:00:00'),
(1442, 'id', 'Nama Unit', 1, '2012-12-04 08:50:04', NULL, '0000-00-00 00:00:00'),
(1443, 'en', 'Unit Profit Center', 1, '2012-12-04 09:19:25', NULL, '0000-00-00 00:00:00'),
(1443, 'id', 'Unit Pendapatan Utama', 1, '2012-12-04 09:19:25', NULL, '0000-00-00 00:00:00'),
(1444, 'en', 'Partial Update', 1, '2012-12-04 18:21:23', NULL, '0000-00-00 00:00:00'),
(1444, 'id', 'Parsial Update', 1, '2012-12-04 18:21:23', NULL, '0000-00-00 00:00:00'),
(1445, 'en', 'Add mutation fail', 10, '2012-12-08 16:09:35', NULL, '0000-00-00 00:00:00'),
(1445, 'id', 'Penambahan mutasi gagal', 10, '2012-12-08 16:09:35', NULL, '0000-00-00 00:00:00'),
(1446, 'en', 'Bug Category', 1, '2013-09-23 15:35:58', NULL, '0000-00-00 00:00:00'),
(1446, 'id', 'Kategori Bug / Cacat Produk', 1, '2013-09-23 15:35:58', NULL, '0000-00-00 00:00:00'),
(1447, 'en', 'Software Release', 1, '2012-12-18 10:45:56', NULL, '0000-00-00 00:00:00'),
(1447, 'id', 'Rilis Perangkat Lunak', 1, '2012-12-18 10:45:56', NULL, '0000-00-00 00:00:00'),
(1448, 'en', 'In Thousands', 1, '2012-12-18 15:28:40', NULL, '0000-00-00 00:00:00'),
(1448, 'id', 'Dalam Ribuan', 1, '2012-12-18 15:28:40', NULL, '0000-00-00 00:00:00'),
(1449, 'en', 'Address and Contact', 1, '2012-12-28 14:31:48', NULL, '0000-00-00 00:00:00'),
(1449, 'id', 'Alamat dan Kontak', 1, '2012-12-28 14:31:48', NULL, '0000-00-00 00:00:00'),
(1450, 'en', 'Add Other Goods/Service', 1, '2012-12-28 15:12:02', NULL, '0000-00-00 00:00:00'),
(1450, 'id', 'Tambah Barang/Jasa Lainnya', 1, '2012-12-28 15:12:02', NULL, '0000-00-00 00:00:00'),
(1451, 'en', 'Ware Type', 1, '2013-01-16 14:10:23', NULL, '0000-00-00 00:00:00'),
(1451, 'id', 'Tipe Gudang', 1, '2013-01-16 14:10:23', NULL, '0000-00-00 00:00:00'),
(1452, 'en', 'Buy Area', 1, '2013-01-16 14:15:13', NULL, '0000-00-00 00:00:00'),
(1452, 'id', 'Area Pembelian', 1, '2013-01-16 14:15:13', NULL, '0000-00-00 00:00:00'),
(1453, 'en', 'Sell Area', 1, '2013-01-16 14:16:07', NULL, '0000-00-00 00:00:00'),
(1453, 'id', 'Area Penjualan', 1, '2013-01-16 14:16:07', NULL, '0000-00-00 00:00:00'),
(1454, 'en', 'to go', 1, '2013-01-23 12:44:54', NULL, '0000-00-00 00:00:00'),
(1454, 'id', 'y.a.d', 1, '2013-01-23 12:44:54', NULL, '0000-00-00 00:00:00'),
(1455, 'en', 'ago', 1, '2013-01-23 12:47:50', NULL, '0000-00-00 00:00:00'),
(1455, 'id', 'yang lalu', 1, '2013-01-23 12:47:50', NULL, '0000-00-00 00:00:00'),
(1456, 'en', 'second', 1, '2013-01-23 12:45:19', NULL, '0000-00-00 00:00:00'),
(1456, 'id', 'detik', 1, '2013-01-23 12:45:19', NULL, '0000-00-00 00:00:00'),
(1457, 'en', 'minute', 1, '2013-01-23 12:45:53', NULL, '0000-00-00 00:00:00'),
(1457, 'id', 'menit', 1, '2013-01-23 12:45:53', NULL, '0000-00-00 00:00:00'),
(1458, 'en', 'hour', 1, '2013-01-23 12:46:10', NULL, '0000-00-00 00:00:00'),
(1458, 'id', 'jam', 1, '2013-01-23 12:46:10', NULL, '0000-00-00 00:00:00'),
(1459, 'en', 'decade', 1, '2013-01-23 12:46:54', NULL, '0000-00-00 00:00:00'),
(1459, 'id', 'dekade', 1, '2013-01-23 12:46:54', NULL, '0000-00-00 00:00:00'),
(1460, 'en', 'Show', 1, '2013-05-08 22:00:29', NULL, '0000-00-00 00:00:00'),
(1460, 'id', 'Tampilkan', 1, '2013-05-08 22:00:29', NULL, '0000-00-00 00:00:00'),
(1461, 'en', 'Floor', 1, '2013-03-22 09:32:48', NULL, '0000-00-00 00:00:00'),
(1461, 'id', 'Lantai', 1, '2013-03-22 09:32:48', NULL, '0000-00-00 00:00:00'),
(1462, 'en', 'Floor', 1, '2013-03-22 09:33:34', NULL, '0000-00-00 00:00:00'),
(1462, 'id', 'Lantai', 1, '2013-03-22 09:33:34', NULL, '0000-00-00 00:00:00'),
(1463, 'en', 'View', 1, '2013-03-22 09:34:03', NULL, '0000-00-00 00:00:00'),
(1463, 'id', 'Lihat', 1, '2013-03-22 09:34:03', NULL, '0000-00-00 00:00:00'),
(1464, 'en', 'Building Ownership', 1, '2013-03-25 11:10:52', NULL, '0000-00-00 00:00:00'),
(1464, 'id', 'Kepemilikan Gedung', 1, '2013-03-25 11:10:52', NULL, '0000-00-00 00:00:00'),
(1465, 'en', 'Building Control', 1, '2013-03-25 11:11:12', NULL, '0000-00-00 00:00:00'),
(1465, 'id', 'Kontrol Gedung', 1, '2013-03-25 11:11:12', NULL, '0000-00-00 00:00:00'),
(1466, 'en', 'Building Condition', 1, '2013-03-25 11:11:34', NULL, '0000-00-00 00:00:00'),
(1466, 'id', 'Kondisi Gedung', 1, '2013-03-25 11:11:34', NULL, '0000-00-00 00:00:00'),
(1467, 'en', 'Building Character Type', 1, '2013-03-25 11:14:41', NULL, '0000-00-00 00:00:00'),
(1467, 'id', 'Karakter Gedung', 1, '2013-03-25 11:14:41', NULL, '0000-00-00 00:00:00'),
(1468, 'en', 'Please select the type of assets you want to include :', 1, '2013-04-15 10:06:04', NULL, '0000-00-00 00:00:00'),
(1468, 'id', 'Silahkan Pilih Jenis Fixed Asset yang ingin dimasukkan :', 1, '2013-04-15 10:06:04', NULL, '0000-00-00 00:00:00'),
(1469, 'en', 'Fixed Asset Type', 1, '2013-04-15 10:05:09', NULL, '0000-00-00 00:00:00'),
(1469, 'id', 'Jenis Fixed Asset', 1, '2013-04-15 10:05:09', NULL, '0000-00-00 00:00:00'),
(1470, 'en', 'Master Account Report', 1, '2013-04-16 14:50:56', NULL, '0000-00-00 00:00:00'),
(1470, 'id', 'Laporan Data Akun', 1, '2013-04-16 14:50:56', NULL, '0000-00-00 00:00:00'),
(1471, 'en', 'Quantity', 1, '2013-04-22 16:51:43', NULL, '0000-00-00 00:00:00'),
(1471, 'id', 'Jumlah', 1, '2013-04-22 16:51:43', NULL, '0000-00-00 00:00:00'),
(1472, 'en', 'Asset Name', 1, '2013-04-23 10:03:40', NULL, '0000-00-00 00:00:00'),
(1472, 'id', 'Nama Aset', 1, '2013-04-23 10:03:40', NULL, '0000-00-00 00:00:00'),
(1473, 'en', 'Short Name', 1, '2013-04-23 10:04:08', NULL, '0000-00-00 00:00:00'),
(1473, 'id', 'Nama Singkat', 1, '2013-04-23 10:04:08', NULL, '0000-00-00 00:00:00'),
(1474, 'en', 'Asset Code', 1, '2013-04-23 10:04:30', NULL, '0000-00-00 00:00:00'),
(1474, 'id', 'Kode Aset', 1, '2013-04-23 10:04:30', NULL, '0000-00-00 00:00:00'),
(1475, 'en', 'BMN Code', 1, '2013-04-23 10:04:44', NULL, '0000-00-00 00:00:00'),
(1475, 'id', 'Kode BMN', 1, '2013-04-23 10:04:44', NULL, '0000-00-00 00:00:00'),
(1476, 'en', 'Reg Code', 1, '2013-04-23 10:05:00', NULL, '0000-00-00 00:00:00'),
(1476, 'id', 'Kode Reg', 1, '2013-04-23 10:05:00', NULL, '0000-00-00 00:00:00'),
(1477, 'en', 'Asset Type', 1, '2013-04-23 10:05:32', NULL, '0000-00-00 00:00:00'),
(1477, 'id', 'Jenis Aset', 1, '2013-04-23 10:05:32', NULL, '0000-00-00 00:00:00'),
(1478, 'en', 'Depreciation Type', 1, '2013-04-23 10:05:51', NULL, '0000-00-00 00:00:00'),
(1478, 'id', 'Jenis Depresiasi', 1, '2013-04-23 10:05:51', NULL, '0000-00-00 00:00:00'),
(1479, 'en', 'Command Unit', 1, '2013-04-23 11:46:39', NULL, '0000-00-00 00:00:00'),
(1479, 'id', 'Unit Penanggung Jawab', 1, '2013-04-23 11:46:39', NULL, '0000-00-00 00:00:00'),
(1480, 'en', 'View All Data', 1, '2013-04-24 21:03:22', NULL, '0000-00-00 00:00:00'),
(1480, 'id', 'Lihat Semua Data', 1, '2013-04-24 21:03:22', NULL, '0000-00-00 00:00:00'),
(1481, 'en', 'As Admin', 1, '2013-04-24 21:03:43', NULL, '0000-00-00 00:00:00'),
(1481, 'id', 'Sebagai Admin', 1, '2013-04-24 21:03:43', NULL, '0000-00-00 00:00:00'),
(1482, 'en', 'Length', 1, '2013-04-24 21:04:21', NULL, '0000-00-00 00:00:00'),
(1482, 'id', 'Panjang', 1, '2013-04-24 21:04:21', NULL, '0000-00-00 00:00:00'),
(1483, 'en', 'Width', 1, '2013-04-24 21:04:33', NULL, '0000-00-00 00:00:00'),
(1483, 'id', 'Lebar', 1, '2013-04-24 21:04:33', NULL, '0000-00-00 00:00:00'),
(1484, 'en', 'Volume', 1, '2013-04-24 21:04:48', NULL, '0000-00-00 00:00:00'),
(1484, 'id', 'Volume', 1, '2013-04-24 21:04:48', NULL, '0000-00-00 00:00:00'),
(1485, 'en', 'Land Area', 1, '2013-04-24 22:38:57', NULL, '0000-00-00 00:00:00'),
(1485, 'id', 'Luas Tanah', 1, '2013-04-24 22:38:57', NULL, '0000-00-00 00:00:00'),
(1486, 'en', 'Economical Age', 1, '2013-04-24 21:05:45', NULL, '0000-00-00 00:00:00'),
(1486, 'id', 'Umur Ekonomis', 1, '2013-04-24 21:05:45', NULL, '0000-00-00 00:00:00'),
(1487, 'en', 'Technical Age', 1, '2013-04-24 21:06:08', NULL, '0000-00-00 00:00:00');
INSERT INTO `gtfw_key_text` (`key_text_key_id`, `key_text_lang_code`, `key_text_key_text`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`) VALUES
(1487, 'id', 'Umur Teknis', 1, '2013-04-24 21:06:08', NULL, '0000-00-00 00:00:00'),
(1488, 'en', 'in month', 1, '2013-04-24 21:06:23', NULL, '0000-00-00 00:00:00'),
(1488, 'id', 'dalam bulan', 1, '2013-04-24 21:06:23', NULL, '0000-00-00 00:00:00'),
(1489, 'en', 'Facility', 1, '2013-04-24 21:06:36', NULL, '0000-00-00 00:00:00'),
(1489, 'id', 'Fasilitas', 1, '2013-04-24 21:06:36', NULL, '0000-00-00 00:00:00'),
(1490, 'en', 'Facility Type', 1, '2013-04-24 21:06:56', NULL, '0000-00-00 00:00:00'),
(1490, 'id', 'Jenis Fasilitas', 1, '2013-04-24 21:06:56', NULL, '0000-00-00 00:00:00'),
(1491, 'en', 'Count', 1, '2013-04-24 21:07:11', NULL, '0000-00-00 00:00:00'),
(1491, 'id', 'Jumlah', 1, '2013-04-24 21:07:11', NULL, '0000-00-00 00:00:00'),
(1492, 'en', 'Has Permit', 1, '2013-04-24 21:07:37', NULL, '0000-00-00 00:00:00'),
(1492, 'id', 'Memiliki Izin', 1, '2013-04-24 21:07:37', NULL, '0000-00-00 00:00:00'),
(1493, 'en', 'Building Character', 1, '2013-04-24 21:08:18', NULL, '0000-00-00 00:00:00'),
(1493, 'id', 'Karakteristik Gedung', 1, '2013-04-24 21:08:18', NULL, '0000-00-00 00:00:00'),
(1494, 'en', 'Sketch', 1, '2013-04-24 21:08:53', NULL, '0000-00-00 00:00:00'),
(1494, 'id', 'Denah', 1, '2013-04-24 21:08:53', NULL, '0000-00-00 00:00:00'),
(1495, 'en', 'Process', 1, '2013-04-24 21:10:27', NULL, '0000-00-00 00:00:00'),
(1495, 'id', 'Proses', 1, '2013-04-24 21:10:27', NULL, '0000-00-00 00:00:00'),
(1496, 'en', 'BMN Asset Code', 1, '2013-04-24 21:11:07', NULL, '0000-00-00 00:00:00'),
(1496, 'id', 'Kode Aset BMN', 1, '2013-04-24 21:11:07', NULL, '0000-00-00 00:00:00'),
(1497, 'en', 'Class', 1, '2013-04-24 21:11:21', NULL, '0000-00-00 00:00:00'),
(1497, 'id', 'Kelas', 1, '2013-04-24 21:11:21', NULL, '0000-00-00 00:00:00'),
(1498, 'en', 'Field', 1, '2013-04-24 21:11:36', NULL, '0000-00-00 00:00:00'),
(1498, 'id', 'Bidang', 1, '2013-04-24 21:11:36', NULL, '0000-00-00 00:00:00'),
(1499, 'en', 'Group', 1, '2013-04-24 21:12:01', NULL, '0000-00-00 00:00:00'),
(1499, 'id', 'Kelompok', 1, '2013-04-24 21:12:01', NULL, '0000-00-00 00:00:00'),
(1500, 'en', 'Sub Group', 1, '2013-04-24 21:14:15', NULL, '0000-00-00 00:00:00'),
(1500, 'id', 'Sub Kelompok', 1, '2013-04-24 21:14:15', NULL, '0000-00-00 00:00:00'),
(1501, 'en', 'Sub Sub Group', 1, '2013-04-24 21:14:31', NULL, '0000-00-00 00:00:00'),
(1501, 'id', 'Sub Sub Kelompok', 1, '2013-04-24 21:14:31', NULL, '0000-00-00 00:00:00'),
(1502, 'en', 'Registration Code', 1, '2013-04-24 21:14:54', NULL, '0000-00-00 00:00:00'),
(1502, 'id', 'Kode Registrasi', 1, '2013-04-24 21:14:54', NULL, '0000-00-00 00:00:00'),
(1503, 'en', 'Predefined Barcode', 1, '2013-04-24 21:15:12', NULL, '0000-00-00 00:00:00'),
(1503, 'id', 'Barcode Asal', 1, '2013-04-24 21:15:12', NULL, '0000-00-00 00:00:00'),
(1504, 'en', 'Purchase Information', 1, '2013-04-24 21:15:46', NULL, '0000-00-00 00:00:00'),
(1504, 'id', 'Informasi Pembelian', 1, '2013-04-24 21:15:46', NULL, '0000-00-00 00:00:00'),
(1505, 'en', 'Asset Based', 1, '2013-04-24 21:16:02', NULL, '0000-00-00 00:00:00'),
(1505, 'id', 'Dasar Aset', 1, '2013-04-24 21:16:02', NULL, '0000-00-00 00:00:00'),
(1506, 'en', 'Is Automatic PO', 1, '2013-04-24 21:16:29', NULL, '0000-00-00 00:00:00'),
(1506, 'id', 'PO Otomatis', 1, '2013-04-24 21:16:29', NULL, '0000-00-00 00:00:00'),
(1507, 'en', 'Purchase Start Date', 1, '2013-04-24 21:17:12', NULL, '0000-00-00 00:00:00'),
(1507, 'id', 'Tanggal Awal Pembelian', 1, '2013-04-24 21:17:12', NULL, '0000-00-00 00:00:00'),
(1508, 'en', 'Warranty Start Date', 1, '2013-04-24 21:17:30', NULL, '0000-00-00 00:00:00'),
(1508, 'id', 'Tanggal Awal Garansi', 1, '2013-04-24 21:17:30', NULL, '0000-00-00 00:00:00'),
(1509, 'en', 'Warranty End Date', 1, '2013-04-24 21:17:49', NULL, '0000-00-00 00:00:00'),
(1509, 'id', 'Tanggal Akhir Garansi', 1, '2013-04-24 21:17:49', NULL, '0000-00-00 00:00:00'),
(1510, 'en', 'Old', 1, '2013-04-24 21:23:16', NULL, '0000-00-00 00:00:00'),
(1510, 'id', 'Lama', 1, '2013-04-24 21:23:16', NULL, '0000-00-00 00:00:00'),
(1511, 'en', 'Is Duplicate', 1, '2013-09-04 08:24:37', NULL, '0000-00-00 00:00:00'),
(1511, 'id', 'Status Duplikasi', 1, '2013-09-04 08:24:37', NULL, '0000-00-00 00:00:00'),
(1512, 'en', 'Account Information', 1, '2013-04-24 21:23:54', NULL, '0000-00-00 00:00:00'),
(1512, 'id', 'Informasi Akun', 1, '2013-04-24 21:23:54', NULL, '0000-00-00 00:00:00'),
(1513, 'en', 'Room', 1, '2013-04-24 21:24:08', NULL, '0000-00-00 00:00:00'),
(1513, 'id', 'Ruang', 1, '2013-04-24 21:24:08', NULL, '0000-00-00 00:00:00'),
(1514, 'en', 'Quantity of Assets', 1, '2013-04-24 21:24:40', NULL, '0000-00-00 00:00:00'),
(1514, 'id', 'Jumlah Aset', 1, '2013-04-24 21:24:40', NULL, '0000-00-00 00:00:00'),
(1515, 'en', 'Acquisition', 1, '2013-04-24 21:24:56', NULL, '0000-00-00 00:00:00'),
(1515, 'id', 'Perolehan', 1, '2013-04-24 21:24:56', NULL, '0000-00-00 00:00:00'),
(1516, 'en', 'Fund Source', 1, '2013-04-24 21:25:11', NULL, '0000-00-00 00:00:00'),
(1516, 'id', 'Sumber Dana', 1, '2013-04-24 21:25:11', NULL, '0000-00-00 00:00:00'),
(1517, 'en', 'Asset Value Information', 1, '2013-04-24 21:25:34', NULL, '0000-00-00 00:00:00'),
(1517, 'id', 'Informasi Nilai Aset', 1, '2013-04-24 21:25:34', NULL, '0000-00-00 00:00:00'),
(1518, 'en', 'Cost', 1, '2013-04-24 21:25:45', NULL, '0000-00-00 00:00:00'),
(1518, 'id', 'Biaya', 1, '2013-04-24 21:25:45', NULL, '0000-00-00 00:00:00'),
(1519, 'en', 'Total Cost', 1, '2013-04-24 21:25:58', NULL, '0000-00-00 00:00:00'),
(1519, 'id', 'Biaya Total', 1, '2013-04-24 21:25:58', NULL, '0000-00-00 00:00:00'),
(1520, 'en', 'Lifetime', 1, '2013-04-24 21:26:10', NULL, '0000-00-00 00:00:00'),
(1520, 'id', 'Umur', 1, '2013-04-24 21:26:10', NULL, '0000-00-00 00:00:00'),
(1521, 'en', 'Stock Data', 1, '2013-04-24 21:26:29', NULL, '0000-00-00 00:00:00'),
(1521, 'id', 'Data Persediaan', 1, '2013-04-24 21:26:29', NULL, '0000-00-00 00:00:00'),
(1522, 'en', 'Brand Varian', 1, '2013-04-24 21:28:38', NULL, '0000-00-00 00:00:00'),
(1522, 'id', 'Varian Merk', 1, '2013-04-24 21:28:38', NULL, '0000-00-00 00:00:00'),
(1523, 'en', 'Stock Type', 1, '2013-04-24 21:28:59', NULL, '0000-00-00 00:00:00'),
(1523, 'id', 'Jenis Persediaan', 1, '2013-04-24 21:28:59', NULL, '0000-00-00 00:00:00'),
(1524, 'en', 'Color', 1, '2013-04-24 21:29:10', NULL, '0000-00-00 00:00:00'),
(1524, 'id', 'Warna', 1, '2013-04-24 21:29:10', NULL, '0000-00-00 00:00:00'),
(1525, 'en', 'Dimension', 1, '2013-04-24 21:29:26', NULL, '0000-00-00 00:00:00'),
(1525, 'id', 'Dimensi / Ukuran', 1, '2013-04-24 21:29:26', NULL, '0000-00-00 00:00:00'),
(1526, 'en', 'Material', 1, '2013-04-24 21:29:49', NULL, '0000-00-00 00:00:00'),
(1526, 'id', 'Bahan / Material', 1, '2013-04-24 21:29:49', NULL, '0000-00-00 00:00:00'),
(1527, 'en', 'Purchase Price', 1, '2013-04-24 21:30:45', NULL, '0000-00-00 00:00:00'),
(1527, 'id', 'Harga Pembelian', 1, '2013-04-24 21:30:45', NULL, '0000-00-00 00:00:00'),
(1528, 'en', 'Purchase Date', 1, '2013-04-24 21:31:03', NULL, '0000-00-00 00:00:00'),
(1528, 'id', 'Tanggal Pembelian', 1, '2013-04-24 21:31:03', NULL, '0000-00-00 00:00:00'),
(1529, 'en', 'Specification', 1, '2013-04-24 21:31:17', NULL, '0000-00-00 00:00:00'),
(1529, 'id', 'Spesifikasi', 1, '2013-04-24 21:31:17', NULL, '0000-00-00 00:00:00'),
(1530, 'en', 'Land Data', 1, '2013-04-24 21:32:37', NULL, '0000-00-00 00:00:00'),
(1530, 'id', 'Data Tanah', 1, '2013-04-24 21:32:37', NULL, '0000-00-00 00:00:00'),
(1531, 'en', 'Procurement Year', 1, '2013-04-24 21:32:53', NULL, '0000-00-00 00:00:00'),
(1531, 'id', 'Tahun Pengadaan', 1, '2013-04-24 21:32:53', NULL, '0000-00-00 00:00:00'),
(1532, 'en', 'Land Authorization', 1, '2013-04-24 21:33:14', NULL, '0000-00-00 00:00:00'),
(1532, 'id', 'Hak Guna Bangunan', 1, '2013-04-24 21:33:14', NULL, '0000-00-00 00:00:00'),
(1533, 'en', 'Certificate Number', 1, '2013-04-24 21:33:40', NULL, '0000-00-00 00:00:00'),
(1533, 'id', 'Nomor Sertifikat', 1, '2013-04-24 21:33:40', NULL, '0000-00-00 00:00:00'),
(1534, 'en', 'Certificate Date', 1, '2013-04-24 21:33:57', NULL, '0000-00-00 00:00:00'),
(1534, 'id', 'Tanggal Sertifikat', 1, '2013-04-24 21:33:57', NULL, '0000-00-00 00:00:00'),
(1535, 'en', 'Certificate File', 1, '2013-04-24 21:34:32', NULL, '0000-00-00 00:00:00'),
(1535, 'id', 'File Sertifikat', 1, '2013-04-24 21:34:32', NULL, '0000-00-00 00:00:00'),
(1536, 'en', 'Tools & Machines Data', 1, '2013-04-24 21:35:35', NULL, '0000-00-00 00:00:00'),
(1536, 'id', 'Data Peralatan & Mesin', 1, '2013-04-24 21:35:35', NULL, '0000-00-00 00:00:00'),
(1537, 'en', 'Owner Name', 1, '2013-04-24 21:35:51', NULL, '0000-00-00 00:00:00'),
(1537, 'id', 'Nama Pemilik', 1, '2013-04-24 21:35:51', NULL, '0000-00-00 00:00:00'),
(1538, 'en', 'Owner Address', 1, '2013-04-24 21:36:03', NULL, '0000-00-00 00:00:00'),
(1538, 'id', 'Alamat Pemilik', 1, '2013-04-24 21:36:03', NULL, '0000-00-00 00:00:00'),
(1539, 'en', 'Tools & Machines Type', 1, '2013-04-24 21:36:21', NULL, '0000-00-00 00:00:00'),
(1539, 'id', 'Jenis Peralatan & Mesin', 1, '2013-04-24 21:36:21', NULL, '0000-00-00 00:00:00'),
(1540, 'en', 'Assembly Year', 1, '2013-04-24 21:36:35', NULL, '0000-00-00 00:00:00'),
(1540, 'id', 'Tahun Pembuatan', 1, '2013-04-24 21:36:35', NULL, '0000-00-00 00:00:00'),
(1541, 'en', 'Own Status', 1, '2013-04-24 21:36:53', NULL, '0000-00-00 00:00:00'),
(1541, 'id', 'Status Milik', 1, '2013-04-24 21:36:54', NULL, '0000-00-00 00:00:00'),
(1542, 'en', 'Vehicle Data Only', 1, '2013-04-24 21:37:33', NULL, '0000-00-00 00:00:00'),
(1542, 'id', 'Data Khusus Kendaraan', 1, '2013-04-24 21:37:33', NULL, '0000-00-00 00:00:00'),
(1543, 'en', 'Fabric Number', 1, '2013-04-24 21:37:55', NULL, '0000-00-00 00:00:00'),
(1543, 'id', 'Nomor Fabrikasi', 1, '2013-04-24 21:37:55', NULL, '0000-00-00 00:00:00'),
(1544, 'en', 'Machine Number', 1, '2013-04-24 21:38:11', NULL, '0000-00-00 00:00:00'),
(1544, 'id', 'Nomor Mesin', 1, '2013-04-24 21:38:11', NULL, '0000-00-00 00:00:00'),
(1545, 'en', 'Plate Number', 1, '2013-04-24 21:38:36', NULL, '0000-00-00 00:00:00'),
(1545, 'id', 'Nomor Plat', 1, '2013-04-24 21:38:36', NULL, '0000-00-00 00:00:00'),
(1546, 'en', 'BPKB Number', 1, '2013-04-24 21:39:02', NULL, '0000-00-00 00:00:00'),
(1546, 'id', 'Nomor BPKB', 1, '2013-04-24 21:39:02', NULL, '0000-00-00 00:00:00'),
(1547, 'en', 'BPKB Valid Date', 1, '2013-04-24 21:39:24', NULL, '0000-00-00 00:00:00'),
(1547, 'id', 'Masa Berlaku BPKB', 1, '2013-04-24 21:39:24', NULL, '0000-00-00 00:00:00'),
(1548, 'en', 'Fuel Type', 1, '2013-04-24 21:39:37', NULL, '0000-00-00 00:00:00'),
(1548, 'id', 'Jenis Bahan Bakar', 1, '2013-04-24 21:39:37', NULL, '0000-00-00 00:00:00'),
(1549, 'en', 'Plate Color Type', 1, '2013-04-24 21:40:23', NULL, '0000-00-00 00:00:00'),
(1549, 'id', 'Warna TNKB / Plat', 1, '2013-04-24 21:40:23', NULL, '0000-00-00 00:00:00'),
(1550, 'en', 'Dealer', 1, '2013-04-24 21:40:34', NULL, '0000-00-00 00:00:00'),
(1550, 'id', 'Dealer', 1, '2013-04-24 21:40:34', NULL, '0000-00-00 00:00:00'),
(1551, 'en', 'Building Data', 1, '2013-04-24 22:14:01', NULL, '0000-00-00 00:00:00'),
(1551, 'id', 'Data Gedung / Bangunan', 1, '2013-04-24 22:14:01', NULL, '0000-00-00 00:00:00'),
(1552, 'en', 'Is Concrete', 1, '2013-04-24 22:15:03', NULL, '0000-00-00 00:00:00'),
(1552, 'id', 'Status Bangunan Beton', 1, '2013-04-24 22:15:04', NULL, '0000-00-00 00:00:00'),
(1553, 'en', 'Floor Area', 1, '2013-04-24 22:39:15', NULL, '0000-00-00 00:00:00'),
(1553, 'id', 'Luas Lantai', 1, '2013-04-24 22:39:15', NULL, '0000-00-00 00:00:00'),
(1554, 'en', 'Land Certificate Number', 1, '2013-04-24 22:33:10', NULL, '0000-00-00 00:00:00'),
(1554, 'id', 'Nomor Sertifikat Tanah', 1, '2013-04-24 22:33:10', NULL, '0000-00-00 00:00:00'),
(1555, 'en', 'Road, Network, & Irrigation Data', 1, '2013-04-24 22:34:34', NULL, '0000-00-00 00:00:00'),
(1555, 'id', 'Data Jalan, Jaringan & Irigasi', 1, '2013-04-24 22:34:34', NULL, '0000-00-00 00:00:00'),
(1556, 'en', 'Construction', 1, '2013-04-24 22:34:52', NULL, '0000-00-00 00:00:00'),
(1556, 'id', 'Konstruksi', 1, '2013-04-24 22:34:52', NULL, '0000-00-00 00:00:00'),
(1557, 'en', 'Area', 1, '2013-04-24 22:39:08', NULL, '0000-00-00 00:00:00'),
(1557, 'id', 'Luas', 1, '2013-04-24 22:39:08', NULL, '0000-00-00 00:00:00'),
(1558, 'en', 'Other Asset Data', 1, '2013-04-24 22:42:53', NULL, '0000-00-00 00:00:00'),
(1558, 'id', 'Data Aset Lainnya', 1, '2013-04-24 22:42:53', NULL, '0000-00-00 00:00:00'),
(1559, 'en', 'Book / Library', 1, '2013-04-24 22:43:20', NULL, '0000-00-00 00:00:00'),
(1559, 'id', 'Buku / Perpustakaan', 1, '2013-04-24 22:43:20', NULL, '0000-00-00 00:00:00'),
(1560, 'en', 'Book Title / Writer', 1, '2013-04-24 22:45:06', NULL, '0000-00-00 00:00:00'),
(1560, 'id', 'Judul / Penulis Buku Pustaka', 1, '2013-04-24 22:45:06', NULL, '0000-00-00 00:00:00'),
(1561, 'en', 'Asset Specification', 1, '2013-04-24 22:45:36', NULL, '0000-00-00 00:00:00'),
(1561, 'id', 'Spesifikasi Aset', 1, '2013-04-24 22:45:36', NULL, '0000-00-00 00:00:00'),
(1562, 'en', 'Art / Culture Data', 1, '2013-04-24 22:47:00', NULL, '0000-00-00 00:00:00'),
(1562, 'id', 'Data Barang Bercorak Kesenian / Kebudayaan', 1, '2013-04-24 22:47:00', NULL, '0000-00-00 00:00:00'),
(1563, 'en', 'Origins', 1, '2013-04-24 22:47:26', NULL, '0000-00-00 00:00:00'),
(1563, 'id', 'Asal Daerah', 1, '2013-04-24 22:47:26', NULL, '0000-00-00 00:00:00'),
(1564, 'en', 'Creator', 1, '2013-04-24 22:47:47', NULL, '0000-00-00 00:00:00'),
(1564, 'id', 'Pencipta', 1, '2013-04-24 22:47:47', NULL, '0000-00-00 00:00:00'),
(1565, 'en', 'Material', 1, '2013-04-24 22:48:01', NULL, '0000-00-00 00:00:00'),
(1565, 'id', 'Bahan / Material', 1, '2013-04-24 22:48:01', NULL, '0000-00-00 00:00:00'),
(1566, 'en', 'Animal / Plant Data', 1, '2013-04-24 22:48:37', NULL, '0000-00-00 00:00:00'),
(1566, 'id', 'Data Hewan Ternak / Tumbuhan', 1, '2013-04-24 22:48:37', NULL, '0000-00-00 00:00:00'),
(1567, 'en', 'Animal / Plant Name', 1, '2013-04-24 22:49:24', NULL, '0000-00-00 00:00:00'),
(1567, 'id', 'Jenis Hewan / Tumbuhan', 1, '2013-04-24 22:49:24', NULL, '0000-00-00 00:00:00'),
(1568, 'en', 'Size', 1, '2013-04-24 22:49:40', NULL, '0000-00-00 00:00:00'),
(1568, 'id', 'Ukuran', 1, '2013-04-24 22:49:40', NULL, '0000-00-00 00:00:00'),
(1569, 'en', 'Amount', 1, '2013-04-24 22:49:51', NULL, '0000-00-00 00:00:00'),
(1569, 'id', 'Jumlah', 1, '2013-04-24 22:49:51', NULL, '0000-00-00 00:00:00'),
(1570, 'en', 'Purchase Year', 1, '2013-04-24 22:50:08', NULL, '0000-00-00 00:00:00'),
(1570, 'id', 'Tahun Pembelian', 1, '2013-04-24 22:50:08', NULL, '0000-00-00 00:00:00'),
(1571, 'en', 'Construction On Progress Data', 1, '2013-04-24 22:57:51', NULL, '0000-00-00 00:00:00'),
(1571, 'id', 'Data Konstruksi Dalam Pengerjaan', 1, '2013-04-24 22:57:51', NULL, '0000-00-00 00:00:00'),
(1572, 'en', 'Intangible Asset Data', 1, '2013-04-24 22:58:45', NULL, '0000-00-00 00:00:00'),
(1572, 'id', 'Data Aset Tak Berwujud', 1, '2013-04-24 22:58:45', NULL, '0000-00-00 00:00:00'),
(1573, 'en', 'Intangible Asset Type', 1, '2013-04-24 22:59:05', NULL, '0000-00-00 00:00:00'),
(1573, 'id', 'Jenis Aset Tak Berwujud', 1, '2013-04-24 22:59:05', NULL, '0000-00-00 00:00:00'),
(1574, 'en', 'Creator / Maker', 1, '2013-04-24 22:59:33', NULL, '0000-00-00 00:00:00'),
(1574, 'id', 'Pencipta / Pembuat', 1, '2013-04-24 22:59:33', NULL, '0000-00-00 00:00:00'),
(1575, 'en', 'Residual Salvage', 1, '2013-04-25 11:22:59', NULL, '0000-00-00 00:00:00'),
(1575, 'id', 'Nilai Residu', 1, '2013-04-25 11:22:59', NULL, '0000-00-00 00:00:00'),
(1576, 'en', 'Acquired Date', 1, '2013-04-25 11:23:33', NULL, '0000-00-00 00:00:00'),
(1576, 'id', 'Tanggal Perolehan', 1, '2013-04-25 11:23:33', NULL, '0000-00-00 00:00:00'),
(1577, 'en', 'Balance Depreciation', 1, '2013-04-25 11:26:14', NULL, '0000-00-00 00:00:00'),
(1577, 'id', 'Pembukaan Saldo Depresiasi', 1, '2013-04-25 11:26:14', NULL, '0000-00-00 00:00:00'),
(1578, 'en', 'Total Depreciation', 1, '2013-04-25 11:25:09', NULL, '0000-00-00 00:00:00'),
(1578, 'id', 'Depresiasi Total', 1, '2013-04-25 11:25:09', NULL, '0000-00-00 00:00:00'),
(1579, 'en', 'Current Balance', 1, '2013-04-25 11:26:01', NULL, '0000-00-00 00:00:00'),
(1579, 'id', 'Saldo Saat Ini', 1, '2013-04-25 11:26:01', NULL, '0000-00-00 00:00:00'),
(1580, 'en', 'Depreciation Start Date', 1, '2013-04-25 11:27:01', NULL, '0000-00-00 00:00:00'),
(1580, 'id', 'Tanggal Awal Depresiasi', 1, '2013-04-25 11:27:01', NULL, '0000-00-00 00:00:00'),
(1581, 'en', 'Purchase', 1, '2013-04-25 11:47:10', NULL, '0000-00-00 00:00:00'),
(1581, 'id', 'Beli', 1, '2013-04-25 11:47:10', NULL, '0000-00-00 00:00:00'),
(1582, 'en', 'Project', 1, '2013-04-25 11:47:24', NULL, '0000-00-00 00:00:00'),
(1582, 'id', 'Proyek', 1, '2013-04-25 11:47:24', NULL, '0000-00-00 00:00:00'),
(1583, 'en', 'PO Date', 1, '2013-04-25 11:48:16', NULL, '0000-00-00 00:00:00'),
(1583, 'id', 'Tanggal PO', 1, '2013-04-25 11:48:16', NULL, '0000-00-00 00:00:00'),
(1584, 'en', 'Floor Code', 1, '2013-04-29 15:56:13', NULL, '0000-00-00 00:00:00'),
(1584, 'id', 'Kode Lantai', 1, '2013-04-29 15:56:13', NULL, '0000-00-00 00:00:00'),
(1585, 'en', 'Floor Name', 1, '2013-04-29 15:56:29', NULL, '0000-00-00 00:00:00'),
(1585, 'id', 'Nama Lantai', 1, '2013-04-29 15:56:29', NULL, '0000-00-00 00:00:00'),
(1586, 'en', 'Asset', 1, '2013-05-01 11:21:17', NULL, '0000-00-00 00:00:00'),
(1586, 'id', 'Aset', 1, '2013-05-01 11:21:17', NULL, '0000-00-00 00:00:00'),
(1587, 'en', 'Floor & Room', 1, '2013-05-02 16:12:02', NULL, '0000-00-00 00:00:00'),
(1587, 'id', 'Lantai dan Ruang', 1, '2013-05-02 16:12:02', NULL, '0000-00-00 00:00:00'),
(1588, 'en', 'Room Code', 1, '2013-05-03 08:51:42', NULL, '0000-00-00 00:00:00'),
(1588, 'id', 'Kode Ruang', 1, '2013-05-03 08:51:42', NULL, '0000-00-00 00:00:00'),
(1589, 'en', 'Room Name', 1, '2013-05-03 08:51:55', NULL, '0000-00-00 00:00:00'),
(1589, 'id', 'Nama Ruang', 1, '2013-05-03 08:51:55', NULL, '0000-00-00 00:00:00'),
(1590, 'en', 'Room Type', 1, '2013-05-03 08:52:12', NULL, '0000-00-00 00:00:00'),
(1590, 'id', 'Jenis Ruang', 1, '2013-05-03 08:52:12', NULL, '0000-00-00 00:00:00'),
(1591, 'en', 'Capacity', 1, '2013-05-03 08:52:24', NULL, '0000-00-00 00:00:00'),
(1591, 'id', 'Kapasitas', 1, '2013-05-03 08:52:24', NULL, '0000-00-00 00:00:00'),
(1592, 'en', 'Room Officer', 1, '2013-06-17 09:13:02', NULL, '0000-00-00 00:00:00'),
(1592, 'id', 'Officer / Petugas Ruang', 1, '2013-06-17 09:13:02', NULL, '0000-00-00 00:00:00'),
(1593, 'en', 'Asset Varian Data', 1, '2013-05-03 09:44:46', NULL, '0000-00-00 00:00:00'),
(1593, 'id', 'Data Aset Varian', 1, '2013-05-03 09:44:46', NULL, '0000-00-00 00:00:00'),
(1594, 'en', 'Weekly Sales Summary (AM)', 1, '2013-05-03 11:15:24', NULL, '0000-00-00 00:00:00'),
(1594, 'id', 'Rekapitulasi Penjualan Mingguan (AM)', 1, '2013-05-03 11:15:24', NULL, '0000-00-00 00:00:00'),
(1595, 'en', 'Prospect', 1, '2013-05-03 11:15:44', NULL, '0000-00-00 00:00:00'),
(1595, 'id', 'Prospek', 1, '2013-05-03 11:15:44', NULL, '0000-00-00 00:00:00'),
(1596, 'en', 'Sales', 1, '2013-05-03 11:16:06', NULL, '0000-00-00 00:00:00'),
(1596, 'id', 'Penjualan', 1, '2013-05-03 11:16:06', NULL, '0000-00-00 00:00:00'),
(1597, 'en', 'Statistic', 1, '2013-05-03 11:16:22', NULL, '0000-00-00 00:00:00'),
(1597, 'id', 'Statistik', 1, '2013-05-03 11:16:22', NULL, '0000-00-00 00:00:00'),
(1598, 'en', '% Goal', 1, '2013-05-03 11:16:47', NULL, '0000-00-00 00:00:00'),
(1598, 'id', '% Goal', 1, '2013-05-03 11:16:47', NULL, '0000-00-00 00:00:00'),
(1599, 'en', 'Segment', 1, '2013-05-03 11:17:01', NULL, '0000-00-00 00:00:00'),
(1599, 'id', 'Segmen', 1, '2013-05-03 11:17:01', NULL, '0000-00-00 00:00:00'),
(1600, 'en', 'Model', 1, '2013-05-03 11:17:12', NULL, '0000-00-00 00:00:00'),
(1600, 'id', 'Model', 1, '2013-05-03 11:17:12', NULL, '0000-00-00 00:00:00'),
(1601, 'en', 'Overflow / Limpahan', 1, '2013-05-03 11:17:51', NULL, '0000-00-00 00:00:00'),
(1601, 'id', 'Limpahan', 1, '2013-05-03 11:17:51', NULL, '0000-00-00 00:00:00'),
(1602, 'en', 'Province', 1, '2013-05-03 11:18:08', NULL, '0000-00-00 00:00:00'),
(1602, 'id', 'Propinsi', 1, '2013-05-03 11:18:08', NULL, '0000-00-00 00:00:00'),
(1603, 'en', 'Estimation', 1, '2013-05-03 11:18:26', NULL, '0000-00-00 00:00:00'),
(1603, 'id', 'Estimasi', 1, '2013-05-03 11:18:26', NULL, '0000-00-00 00:00:00'),
(1604, 'en', 'Summary', 1, '2013-05-03 11:18:47', NULL, '0000-00-00 00:00:00'),
(1604, 'id', 'Rekapitulasi', 1, '2013-05-03 11:18:47', NULL, '0000-00-00 00:00:00'),
(1605, 'en', 'New vs Old Client Summary', 1, '2013-05-03 11:19:37', NULL, '0000-00-00 00:00:00'),
(1605, 'id', 'Rekapitulasi Klien Baru vs Lama', 1, '2013-05-03 11:19:37', NULL, '0000-00-00 00:00:00'),
(1606, 'en', 'Percent', 1, '2013-05-03 11:19:57', NULL, '0000-00-00 00:00:00'),
(1606, 'id', 'Persen', 1, '2013-05-03 11:19:57', NULL, '0000-00-00 00:00:00'),
(1607, 'en', 'Business Model Summary', 1, '2013-05-03 11:21:10', NULL, '0000-00-00 00:00:00'),
(1607, 'id', 'Rekapitulasi Model Bisnis', 1, '2013-05-03 11:21:10', NULL, '0000-00-00 00:00:00'),
(1608, 'en', 'By', 1, '2013-05-03 11:21:20', NULL, '0000-00-00 00:00:00'),
(1608, 'id', 'Oleh', 1, '2013-05-03 11:21:20', NULL, '0000-00-00 00:00:00'),
(1609, 'en', 'Product Segment Summary', 1, '2013-05-03 11:22:01', NULL, '0000-00-00 00:00:00'),
(1609, 'id', 'Rekapitulasi Segmen Produk', 1, '2013-05-03 11:22:01', NULL, '0000-00-00 00:00:00'),
(1610, 'en', 'provincial_distribution_summary', 1, '2013-05-03 11:22:45', NULL, '0000-00-00 00:00:00'),
(1610, 'id', 'Rekapitulasi Distribusi Propinsi', 1, '2013-05-03 11:22:45', NULL, '0000-00-00 00:00:00'),
(1611, 'en', 'Contract Summary by Month', 1, '2013-05-03 11:23:26', NULL, '0000-00-00 00:00:00'),
(1611, 'id', 'Rekapitulasi Kontrak dalam Bulan', 1, '2013-05-03 11:23:26', NULL, '0000-00-00 00:00:00'),
(1612, 'en', 'Duplicates', 1, '2013-05-03 11:24:05', NULL, '0000-00-00 00:00:00'),
(1612, 'id', 'Duplikasi', 1, '2013-05-03 11:24:05', NULL, '0000-00-00 00:00:00'),
(1613, 'en', 'Closing Deal', 1, '2013-05-03 11:26:03', NULL, '0000-00-00 00:00:00'),
(1613, 'id', 'Closing Deal', 1, '2013-05-03 11:26:03', NULL, '0000-00-00 00:00:00'),
(1614, 'en', 'Closing Fail', 1, '2013-05-03 11:26:21', NULL, '0000-00-00 00:00:00'),
(1614, 'id', 'Closing Fail', 1, '2013-05-03 11:26:21', NULL, '0000-00-00 00:00:00'),
(1615, 'en', 'Currency', 1, '2013-05-03 11:26:48', NULL, '0000-00-00 00:00:00'),
(1615, 'id', 'Mata Uang', 1, '2013-05-03 11:26:48', NULL, '0000-00-00 00:00:00'),
(1616, 'en', 'Account Condition', 1, '2013-05-03 11:28:23', NULL, '0000-00-00 00:00:00'),
(1616, 'id', 'Kondisi Akun', 1, '2013-05-03 11:28:23', NULL, '0000-00-00 00:00:00'),
(1617, 'en', 'Overflow / Limpahan ?', 1, '2013-05-03 11:30:12', NULL, '0000-00-00 00:00:00'),
(1617, 'id', 'Limpahan ?', 1, '2013-05-03 11:30:12', NULL, '0000-00-00 00:00:00'),
(1618, 'en', 'Realization Year', 1, '2013-05-03 11:30:36', NULL, '0000-00-00 00:00:00'),
(1618, 'id', 'Tahun Realisasi', 1, '2013-05-03 11:30:36', NULL, '0000-00-00 00:00:00'),
(1619, 'en', 'Real Amount From Job Order (JO)', 1, '2013-05-03 11:31:53', NULL, '0000-00-00 00:00:00'),
(1619, 'id', 'Estimasi Capaian Berdasarkan Job Order (JO)', 1, '2013-05-03 11:31:53', NULL, '0000-00-00 00:00:00'),
(1620, 'en', 'Sales Summary', 1, '2013-05-03 11:33:09', NULL, '0000-00-00 00:00:00'),
(1620, 'id', 'Rekapitulasi Penjualan', 1, '2013-05-03 11:33:09', NULL, '0000-00-00 00:00:00'),
(1621, 'en', 'Opportunity Officer Assignment', 1, '2013-11-04 08:52:00', NULL, '0000-00-00 00:00:00'),
(1621, 'id', 'Penyerahan Officer / Petugas Peluang', 1, '2013-11-04 08:52:00', NULL, '0000-00-00 00:00:00'),
(1622, 'en', 'No Data Officer', 1, '2013-06-17 09:13:29', NULL, '0000-00-00 00:00:00'),
(1622, 'id', 'Data Officer / Petugas Tidak Ditemukan', 1, '2013-06-17 09:13:29', NULL, '0000-00-00 00:00:00'),
(1623, 'en', 'Asset Varian', 1, '2013-05-03 16:04:16', NULL, '0000-00-00 00:00:00'),
(1623, 'id', 'Varian Aset', 1, '2013-05-03 16:04:16', NULL, '0000-00-00 00:00:00'),
(1624, 'en', 'Asset Common Name', 1, '2013-05-03 16:05:04', NULL, '0000-00-00 00:00:00'),
(1624, 'id', 'Nama Umum Aset', 1, '2013-05-03 16:05:04', NULL, '0000-00-00 00:00:00'),
(1625, 'en', 'Officer', 1, '2013-05-03 16:06:02', NULL, '0000-00-00 00:00:00'),
(1625, 'id', 'Officer / Petugas', 1, '2013-05-03 16:06:02', NULL, '0000-00-00 00:00:00'),
(1626, 'en', 'Ratio', 1, '2013-05-03 16:06:56', NULL, '0000-00-00 00:00:00'),
(1626, 'id', 'Rasio', 1, '2013-05-03 16:06:56', NULL, '0000-00-00 00:00:00'),
(1627, 'en', 'Color Brand', 1, '2013-05-03 16:08:41', NULL, '0000-00-00 00:00:00'),
(1627, 'id', 'Merk Warna', 1, '2013-05-03 16:08:41', NULL, '0000-00-00 00:00:00'),
(1628, 'en', 'Color Number', 1, '2013-05-03 16:08:56', NULL, '0000-00-00 00:00:00'),
(1628, 'id', 'Nomor Warna', 1, '2013-05-03 16:08:56', NULL, '0000-00-00 00:00:00'),
(1629, 'en', 'Room Condition', 1, '2013-05-03 16:09:14', NULL, '0000-00-00 00:00:00'),
(1629, 'id', 'Kondisi Ruang', 1, '2013-05-03 16:09:14', NULL, '0000-00-00 00:00:00'),
(1630, 'en', 'Management Unit', 1, '2013-05-03 16:10:05', NULL, '0000-00-00 00:00:00'),
(1630, 'id', 'Satuan Kerja Pengelola', 1, '2013-05-03 16:10:05', NULL, '0000-00-00 00:00:00'),
(1631, 'en', 'Construction Part', 1, '2013-05-03 16:10:38', NULL, '0000-00-00 00:00:00'),
(1631, 'id', 'Bagian Konstruksi', 1, '2013-05-03 16:10:38', NULL, '0000-00-00 00:00:00'),
(1632, 'en', 'Construction Type', 1, '2013-05-03 16:10:58', NULL, '0000-00-00 00:00:00'),
(1632, 'id', 'Jenis Konstruksi', 1, '2013-05-03 16:10:58', NULL, '0000-00-00 00:00:00'),
(1633, 'en', 'Purpose', 1, '2013-05-03 16:11:53', NULL, '0000-00-00 00:00:00'),
(1633, 'id', 'Tujuan', 1, '2013-05-03 16:11:53', NULL, '0000-00-00 00:00:00'),
(1634, 'en', 'Parameters', 1, '2013-05-03 16:12:29', NULL, '0000-00-00 00:00:00'),
(1634, 'id', 'Parameter', 1, '2013-05-03 16:12:29', NULL, '0000-00-00 00:00:00'),
(1635, 'en', 'Body', 1, '2013-05-03 16:12:50', NULL, '0000-00-00 00:00:00'),
(1635, 'id', 'Body', 1, '2013-05-03 16:12:50', NULL, '0000-00-00 00:00:00'),
(1636, 'en', 'Alternative Body', 1, '2013-05-03 16:13:22', NULL, '0000-00-00 00:00:00'),
(1636, 'id', 'Alternative Body', 1, '2013-05-03 16:13:22', NULL, '0000-00-00 00:00:00'),
(1637, 'en', 'Officer Summary', 1, '2013-05-03 16:16:37', NULL, '0000-00-00 00:00:00'),
(1637, 'id', 'Rekapitulasi Officer / Petugas', 1, '2013-05-03 16:16:37', NULL, '0000-00-00 00:00:00'),
(1638, 'en', 'New Client', 1, '2013-05-03 16:17:36', NULL, '0000-00-00 00:00:00'),
(1638, 'id', 'Klien Baru', 1, '2013-05-03 16:17:36', NULL, '0000-00-00 00:00:00'),
(1639, 'en', 'Old Client', 1, '2013-05-03 16:17:53', NULL, '0000-00-00 00:00:00'),
(1639, 'id', 'Klien Lama', 1, '2013-05-03 16:17:53', NULL, '0000-00-00 00:00:00'),
(1640, 'en', 'Profit', 1, '2013-05-03 16:48:19', NULL, '0000-00-00 00:00:00'),
(1640, 'id', 'Profit', 1, '2013-05-03 16:48:19', NULL, '0000-00-00 00:00:00'),
(1641, 'en', 'Asset Related', 1, '2013-05-03 19:12:41', NULL, '0000-00-00 00:00:00'),
(1641, 'id', 'Relasi Aset', 1, '2013-05-03 19:12:41', NULL, '0000-00-00 00:00:00'),
(1642, 'en', 'Invitees Data', 1, '2013-11-15 17:13:10', NULL, '0000-00-00 00:00:00'),
(1642, 'id', 'Data Undangan', 1, '2013-11-15 17:13:10', NULL, '0000-00-00 00:00:00'),
(1643, 'en', 'Participant', 37, '2013-05-06 09:28:52', NULL, '0000-00-00 00:00:00'),
(1643, 'id', 'Partisipan', 37, '2013-05-06 09:28:52', NULL, '0000-00-00 00:00:00'),
(1644, 'en', 'Asset Usage', 37, '2013-05-06 09:30:18', NULL, '0000-00-00 00:00:00'),
(1644, 'id', 'Penggunaan Aset', 37, '2013-05-06 09:30:18', NULL, '0000-00-00 00:00:00'),
(1645, 'en', 'Asset Common Name Data', 37, '2013-05-06 11:04:15', NULL, '0000-00-00 00:00:00'),
(1645, 'id', 'Data Nama Umum Aset', 37, '2013-05-06 11:04:15', NULL, '0000-00-00 00:00:00'),
(1646, 'en', 'Check', 37, '2013-05-06 15:05:14', NULL, '0000-00-00 00:00:00'),
(1646, 'id', 'Cek', 37, '2013-05-06 15:05:14', NULL, '0000-00-00 00:00:00'),
(1647, 'en', 'Check Availability', 37, '2013-05-06 15:05:37', NULL, '0000-00-00 00:00:00'),
(1647, 'id', 'Cek Ketersediaan', 37, '2013-05-06 15:05:37', NULL, '0000-00-00 00:00:00'),
(1648, 'en', 'Activity', 37, '2013-05-06 16:27:24', NULL, '0000-00-00 00:00:00'),
(1648, 'id', 'Kegiatan', 37, '2013-05-06 16:27:24', NULL, '0000-00-00 00:00:00'),
(1649, 'en', 'Saving Assignment Failed', 1, '2013-09-23 09:05:44', NULL, '0000-00-00 00:00:00'),
(1649, 'id', 'Gagal Menyimpan Penyerahan', 1, '2013-09-23 09:05:44', NULL, '0000-00-00 00:00:00'),
(1650, 'en', 'Saving Assignment Success', 1, '2013-09-23 09:05:52', NULL, '0000-00-00 00:00:00'),
(1650, 'id', 'Berhasil Menyimpan Penyerahan', 1, '2013-09-23 09:05:52', NULL, '0000-00-00 00:00:00'),
(1651, 'en', 'User', 9, '2013-05-08 11:12:11', NULL, '0000-00-00 00:00:00'),
(1651, 'id', 'Pengguna', 9, '2013-05-08 11:12:11', NULL, '0000-00-00 00:00:00'),
(1652, 'en', 'EN', 9, '2013-05-08 11:12:24', NULL, '0000-00-00 00:00:00'),
(1652, 'id', 'EN', 9, '2013-05-08 11:12:24', NULL, '0000-00-00 00:00:00'),
(1653, 'en', 'ID', 9, '2013-05-08 11:12:31', NULL, '0000-00-00 00:00:00'),
(1653, 'id', 'ID', 9, '2013-05-08 11:12:31', NULL, '0000-00-00 00:00:00'),
(1654, 'en', 'Application', 9, '2013-05-08 11:13:25', NULL, '0000-00-00 00:00:00'),
(1654, 'id', 'Aplikasi', 9, '2013-05-08 11:13:25', NULL, '0000-00-00 00:00:00'),
(1655, 'en', 'Reset Confirmation', 9, '2013-05-08 11:14:15', NULL, '0000-00-00 00:00:00'),
(1655, 'id', 'Konfirmasi Reset', 9, '2013-05-08 11:14:15', NULL, '0000-00-00 00:00:00'),
(1656, 'en', 'Password', 9, '2013-05-08 11:14:47', NULL, '0000-00-00 00:00:00'),
(1656, 'id', 'Password', 9, '2013-05-08 11:14:47', NULL, '0000-00-00 00:00:00'),
(1657, 'en', 'Are You Sure Want To Reset Data', 1, '2013-07-09 10:42:06', NULL, '0000-00-00 00:00:00'),
(1657, 'id', 'Anda Yakin Ingin Mereset Data', 1, '2013-07-09 10:42:06', NULL, '0000-00-00 00:00:00'),
(1658, 'en', 'CRUD', 1, '2013-05-08 21:30:23', NULL, '0000-00-00 00:00:00'),
(1658, 'id', 'CRUD', 1, '2013-05-08 21:30:23', NULL, '0000-00-00 00:00:00'),
(1659, 'en', 'Actions', 1, '2013-05-08 21:44:20', NULL, '0000-00-00 00:00:00'),
(1659, 'id', 'Aksi', 1, '2013-05-08 21:44:20', NULL, '0000-00-00 00:00:00'),
(1660, 'en', 'Alpha and Dot', 1, '2013-05-08 21:44:39', NULL, '0000-00-00 00:00:00'),
(1660, 'id', 'Alpha dan Titik', 1, '2013-05-08 21:44:39', NULL, '0000-00-00 00:00:00'),
(1661, 'en', 'Combobox', 1, '2013-05-08 21:44:54', NULL, '0000-00-00 00:00:00'),
(1661, 'id', 'Combobox', 1, '2013-05-08 21:44:54', NULL, '0000-00-00 00:00:00'),
(1662, 'en', 'Icon Small', 1, '2013-05-08 22:00:46', NULL, '0000-00-00 00:00:00'),
(1662, 'id', 'Ikon Kecil', 1, '2013-05-08 22:00:46', NULL, '0000-00-00 00:00:00'),
(1663, 'en', 'Icon Medium', 1, '2013-05-08 22:00:06', NULL, '0000-00-00 00:00:00'),
(1663, 'id', 'Ikon Sedang', 1, '2013-05-08 22:00:06', NULL, '0000-00-00 00:00:00'),
(1664, 'en', 'Icon Large', 1, '2013-05-08 22:00:18', NULL, '0000-00-00 00:00:00'),
(1664, 'id', 'Ikon Besar', 1, '2013-05-08 22:00:18', NULL, '0000-00-00 00:00:00'),
(1665, 'en', 'User Data', 1, '2013-05-10 08:59:28', NULL, '0000-00-00 00:00:00'),
(1665, 'id', 'Data Pengguna', 1, '2013-05-10 08:59:28', NULL, '0000-00-00 00:00:00'),
(1666, 'en', 'Group Data', 1, '2013-05-10 08:59:45', NULL, '0000-00-00 00:00:00'),
(1666, 'id', 'Data Grup', 1, '2013-05-10 08:59:45', NULL, '0000-00-00 00:00:00'),
(1667, 'en', 'Last Logged In', 1, '2013-05-10 09:02:20', NULL, '0000-00-00 00:00:00'),
(1667, 'id', 'Akses Terakhir', 1, '2013-05-10 09:02:20', NULL, '0000-00-00 00:00:00'),
(1668, 'en', 'Available', 37, '2013-05-10 09:13:24', NULL, '0000-00-00 00:00:00'),
(1668, 'id', 'Tersedia', 37, '2013-05-10 09:13:24', NULL, '0000-00-00 00:00:00'),
(1669, 'en', 'Branch Status', 1, '2013-05-10 09:13:52', NULL, '0000-00-00 00:00:00'),
(1669, 'id', 'Status Cabang', 1, '2013-05-10 09:13:52', NULL, '0000-00-00 00:00:00'),
(1670, 'en', 'Finance Group', 1, '2013-05-10 09:48:51', NULL, '0000-00-00 00:00:00'),
(1670, 'id', 'Grup Finansi', 1, '2013-05-10 09:48:51', NULL, '0000-00-00 00:00:00'),
(1671, 'en', 'Translation', 1, '2013-05-10 10:04:45', NULL, '0000-00-00 00:00:00'),
(1671, 'id', 'Translasi', 1, '2013-05-10 10:04:45', NULL, '0000-00-00 00:00:00'),
(1672, 'en', 'Table Documentation Data', 1, '2013-05-10 10:21:15', NULL, '0000-00-00 00:00:00'),
(1672, 'id', 'Data Dokumentasi Tabel', 1, '2013-05-10 10:21:15', NULL, '0000-00-00 00:00:00'),
(1673, 'en', 'Maximum Size', 1, '2013-05-10 10:33:01', NULL, '0000-00-00 00:00:00'),
(1673, 'id', 'Ukuran Maksimal', 1, '2013-05-10 10:33:01', NULL, '0000-00-00 00:00:00'),
(1674, 'en', 'Company Data', 1, '2013-05-10 10:33:50', NULL, '0000-00-00 00:00:00'),
(1674, 'id', 'Data Perusahaan', 1, '2013-05-10 10:33:50', NULL, '0000-00-00 00:00:00'),
(1675, 'en', 'Email Template Data', 1, '2013-05-10 10:41:26', NULL, '0000-00-00 00:00:00'),
(1675, 'id', 'Data Template Email', 1, '2013-05-10 10:41:26', NULL, '0000-00-00 00:00:00'),
(1676, 'en', 'Goods Data', 1, '2013-05-10 10:50:30', NULL, '0000-00-00 00:00:00'),
(1676, 'id', 'Data Barang', 1, '2013-05-10 10:50:30', NULL, '0000-00-00 00:00:00'),
(1677, 'en', 'Vendor Data', 1, '2013-05-10 10:53:02', NULL, '0000-00-00 00:00:00'),
(1677, 'id', 'Data Vendor', 1, '2013-05-10 10:53:02', NULL, '0000-00-00 00:00:00'),
(1678, 'en', 'Price Data', 1, '2013-05-10 10:53:16', NULL, '0000-00-00 00:00:00'),
(1678, 'id', 'Data Harga', 1, '2013-05-10 10:53:16', NULL, '0000-00-00 00:00:00'),
(1679, 'en', 'Component Data', 1, '2013-05-10 10:53:54', NULL, '0000-00-00 00:00:00'),
(1679, 'id', 'Data Komponen', 1, '2013-05-10 10:53:54', NULL, '0000-00-00 00:00:00'),
(1680, 'en', 'Goods Price Data', 1, '2013-05-10 13:59:52', NULL, '0000-00-00 00:00:00'),
(1680, 'id', 'Data Harga Barang', 1, '2013-05-10 13:59:52', NULL, '0000-00-00 00:00:00'),
(1681, 'en', 'Stock Usage Data', 9, '2013-05-10 14:36:00', NULL, '0000-00-00 00:00:00'),
(1681, 'id', 'Data Penggunaan Stok Barang', 9, '2013-05-10 14:36:00', NULL, '0000-00-00 00:00:00'),
(1682, 'en', 'Stock Opname Data', 9, '2013-05-10 14:54:54', NULL, '0000-00-00 00:00:00'),
(1682, 'id', 'Data Stock Opname', 9, '2013-05-10 14:54:54', NULL, '0000-00-00 00:00:00'),
(1683, 'en', 'Print', 9, '2013-05-10 14:57:06', NULL, '0000-00-00 00:00:00'),
(1683, 'id', 'Cetak', 9, '2013-05-10 14:57:06', NULL, '0000-00-00 00:00:00'),
(1684, 'en', 'Mutation Data', 9, '2013-05-10 15:08:47', NULL, '0000-00-00 00:00:00'),
(1684, 'id', 'Data Mutasi', 9, '2013-05-10 15:08:47', NULL, '0000-00-00 00:00:00'),
(1685, 'en', 'Order To', 9, '2013-05-10 15:17:15', NULL, '0000-00-00 00:00:00'),
(1685, 'id', 'Pesan Ke', 9, '2013-05-10 15:17:15', NULL, '0000-00-00 00:00:00'),
(1686, 'en', 'Request From', 9, '2013-05-10 15:17:41', NULL, '0000-00-00 00:00:00'),
(1686, 'id', 'Permintaan Dari', 9, '2013-05-10 15:17:41', NULL, '0000-00-00 00:00:00'),
(1687, 'en', 'Relocation Data', 9, '2013-05-10 15:22:47', NULL, '0000-00-00 00:00:00'),
(1687, 'id', 'Data Relokasi', 9, '2013-05-10 15:22:47', NULL, '0000-00-00 00:00:00'),
(1688, 'en', 'Transaction Number', 9, '2013-05-10 16:06:41', NULL, '0000-00-00 00:00:00'),
(1688, 'id', 'Nomor Transaksi', 9, '2013-05-10 16:06:41', NULL, '0000-00-00 00:00:00'),
(1689, 'en', 'Sales Canvas Data', 9, '2013-05-10 16:18:19', NULL, '0000-00-00 00:00:00'),
(1689, 'id', 'Data Sales Canvas', 9, '2013-05-10 16:18:19', NULL, '0000-00-00 00:00:00'),
(1690, 'en', 'Save & Submit', 37, '2013-05-13 11:29:13', NULL, '0000-00-00 00:00:00'),
(1690, 'id', 'Save & Submit', 37, '2013-05-13 11:29:13', NULL, '0000-00-00 00:00:00'),
(1691, 'en', 'Sales Verification Data', 1, '2013-05-13 18:22:08', NULL, '0000-00-00 00:00:00'),
(1691, 'id', 'Data Verifikasi Penjualan', 1, '2013-05-13 18:22:08', NULL, '0000-00-00 00:00:00'),
(1692, 'en', 'Customer Order Data', 1, '2013-05-13 19:32:41', NULL, '0000-00-00 00:00:00'),
(1692, 'id', 'Data Order Pelanggan', 1, '2013-05-13 19:32:41', NULL, '0000-00-00 00:00:00'),
(1693, 'en', 'Promotion Goods', 1, '2013-05-13 20:33:50', NULL, '0000-00-00 00:00:00'),
(1693, 'id', 'Barang Promosi', 1, '2013-05-13 20:33:50', NULL, '0000-00-00 00:00:00'),
(1694, 'en', 'Delivery Order Data', 1, '2013-05-13 20:36:37', NULL, '0000-00-00 00:00:00'),
(1694, 'id', 'Data Delivery Order', 1, '2013-05-13 20:36:37', NULL, '0000-00-00 00:00:00'),
(1695, 'en', 'Already Checked', 37, '2013-05-15 08:54:12', NULL, '0000-00-00 00:00:00'),
(1695, 'id', 'Sudah dicek', 37, '2013-05-15 08:54:12', NULL, '0000-00-00 00:00:00'),
(1696, 'en', 'Goods Receipt Customer', 1, '2013-05-15 09:46:28', NULL, '0000-00-00 00:00:00'),
(1696, 'id', 'Goods Receipt Pelanggan', 1, '2013-05-15 09:46:28', NULL, '0000-00-00 00:00:00'),
(1697, 'en', 'Goods Receipt Customer Data', 1, '2013-05-15 09:50:05', NULL, '0000-00-00 00:00:00'),
(1697, 'id', 'Data Goods Receipt Pelanggan', 1, '2013-05-15 09:50:05', NULL, '0000-00-00 00:00:00'),
(1698, 'en', 'Promotion', 1, '2013-05-15 09:50:19', NULL, '0000-00-00 00:00:00'),
(1698, 'id', 'Promosi', 1, '2013-05-15 09:50:19', NULL, '0000-00-00 00:00:00'),
(1699, 'en', 'Quantity', 1, '2013-05-15 09:51:27', NULL, '0000-00-00 00:00:00'),
(1699, 'id', 'Jumlah', 1, '2013-05-15 09:51:27', NULL, '0000-00-00 00:00:00'),
(1700, 'en', 'Receiving', 1, '2013-05-15 10:03:34', NULL, '0000-00-00 00:00:00'),
(1700, 'id', 'Receiving', 1, '2013-05-15 10:03:34', NULL, '0000-00-00 00:00:00'),
(1701, 'en', 'No Return', 1, '2013-05-15 10:05:18', NULL, '0000-00-00 00:00:00'),
(1701, 'id', 'Tidak Ada Retur', 1, '2013-05-15 10:05:18', NULL, '0000-00-00 00:00:00'),
(1702, 'en', 'Delivered', 1, '2013-05-15 10:05:33', NULL, '0000-00-00 00:00:00'),
(1702, 'id', 'Terkirim', 1, '2013-05-15 10:05:33', NULL, '0000-00-00 00:00:00'),
(1703, 'en', 'Retur Customer Data', 1, '2013-05-15 10:37:45', NULL, '0000-00-00 00:00:00'),
(1703, 'id', 'Data Retur Pelanggan', 1, '2013-05-15 10:37:45', NULL, '0000-00-00 00:00:00'),
(1704, 'en', 'Reset Password Success', 1, '2013-05-15 11:09:34', NULL, '0000-00-00 00:00:00'),
(1704, 'id', 'Sukses Reset Password', 1, '2013-05-15 11:09:34', NULL, '0000-00-00 00:00:00'),
(1705, 'en', 'Deliver Quantity Is Below Return Quantity', 1, '2013-05-15 11:25:40', NULL, '0000-00-00 00:00:00'),
(1705, 'id', 'Jumlah Kirim Lebih Kecil Daripada Jumlah Retur', 1, '2013-05-15 11:25:40', NULL, '0000-00-00 00:00:00'),
(1706, 'en', 'Delivery Success', 1, '2013-05-15 11:26:41', NULL, '0000-00-00 00:00:00'),
(1706, 'id', 'Sukses Pengiriman', 1, '2013-05-15 11:26:41', NULL, '0000-00-00 00:00:00'),
(1707, 'en', 'Cancel Deliver', 1, '2013-05-15 11:27:16', NULL, '0000-00-00 00:00:00'),
(1707, 'id', 'Batal Kirim', 1, '2013-05-15 11:27:16', NULL, '0000-00-00 00:00:00'),
(1708, 'en', 'Cancel Delivery Success', 1, '2013-05-15 11:38:28', NULL, '0000-00-00 00:00:00'),
(1708, 'id', 'Sukses Membatalkan Pengiriman', 1, '2013-05-15 11:38:28', NULL, '0000-00-00 00:00:00'),
(1709, 'en', 'Recap', 1, '2013-05-15 13:20:41', NULL, '0000-00-00 00:00:00'),
(1709, 'id', 'Rekap', 1, '2013-05-15 13:20:41', NULL, '0000-00-00 00:00:00'),
(1710, 'en', 'Employee Number', 1, '2013-05-15 13:21:24', NULL, '0000-00-00 00:00:00'),
(1710, 'id', 'Nomor Pegawai', 1, '2013-05-15 13:21:24', NULL, '0000-00-00 00:00:00'),
(1711, 'en', 'Sales Commision', 1, '2013-05-15 13:25:22', NULL, '0000-00-00 00:00:00'),
(1711, 'id', 'Komisi Sales', 1, '2013-05-15 13:25:22', NULL, '0000-00-00 00:00:00'),
(1712, 'en', 'Meal Cost', 1, '2013-05-15 13:48:03', NULL, '0000-00-00 00:00:00'),
(1712, 'id', 'Biaya Makan', 1, '2013-05-15 13:48:03', NULL, '0000-00-00 00:00:00'),
(1713, 'en', 'Parking Cost', 1, '2013-05-15 13:48:19', NULL, '0000-00-00 00:00:00'),
(1713, 'id', 'Biaya Parkir', 1, '2013-05-15 13:48:19', NULL, '0000-00-00 00:00:00'),
(1714, 'en', 'Other Cost', 1, '2013-05-15 13:48:43', NULL, '0000-00-00 00:00:00'),
(1714, 'id', 'Biaya Lain - lain', 1, '2013-05-15 13:48:43', NULL, '0000-00-00 00:00:00'),
(1715, 'en', 'Sales Operational Cost Data', 1, '2013-05-15 13:58:23', NULL, '0000-00-00 00:00:00'),
(1715, 'id', 'Data Biaya Operasional Sales', 1, '2013-05-15 13:58:23', NULL, '0000-00-00 00:00:00'),
(1716, 'en', 'PO Supplier Data', 1, '2013-05-15 17:33:19', NULL, '0000-00-00 00:00:00'),
(1716, 'id', 'Data PO Supplier', 1, '2013-05-15 17:33:19', NULL, '0000-00-00 00:00:00'),
(1717, 'en', 'Another Goods', 1, '2013-05-15 18:08:46', NULL, '0000-00-00 00:00:00'),
(1717, 'id', 'Barang Lainnya', 1, '2013-05-15 18:08:46', NULL, '0000-00-00 00:00:00'),
(1718, 'en', 'Goods Receipt Supplier Data', 9, '2013-05-15 19:05:50', NULL, '0000-00-00 00:00:00'),
(1718, 'id', 'Data Goods Receipt Supplier', 9, '2013-05-15 19:05:50', NULL, '0000-00-00 00:00:00'),
(1719, 'en', 'Goods Description', 9, '2013-05-15 19:08:31', NULL, '0000-00-00 00:00:00'),
(1719, 'id', 'Deskripsi Barang', 9, '2013-05-15 19:08:31', NULL, '0000-00-00 00:00:00'),
(1720, 'en', 'Batch Coli Mode', 9, '2013-05-15 19:17:47', NULL, '0000-00-00 00:00:00'),
(1720, 'id', 'Mode Batch Koli', 9, '2013-05-15 19:17:48', NULL, '0000-00-00 00:00:00'),
(1721, 'en', 'Auto Batch Coli', 9, '2013-05-15 19:18:13', NULL, '0000-00-00 00:00:00'),
(1721, 'id', 'Batch Koli Otomatis', 9, '2013-05-15 19:18:13', NULL, '0000-00-00 00:00:00'),
(1722, 'en', 'Manual Batch Coli', 9, '2013-05-15 19:18:34', NULL, '0000-00-00 00:00:00'),
(1722, 'id', 'Batch Koli Manual', 9, '2013-05-15 19:18:34', NULL, '0000-00-00 00:00:00'),
(1723, 'en', 'Return Date', 9, '2013-05-15 19:24:57', NULL, '0000-00-00 00:00:00'),
(1723, 'id', 'Tanggal Retur', 9, '2013-05-15 19:24:57', NULL, '0000-00-00 00:00:00'),
(1724, 'en', 'Return Supplier Data', 9, '2013-05-15 19:59:24', NULL, '0000-00-00 00:00:00'),
(1724, 'id', 'Data Retur Supplier', 9, '2013-05-15 19:59:24', NULL, '0000-00-00 00:00:00'),
(1725, 'en', 'Return Supplier Receiving Data', 9, '2013-05-15 20:07:31', NULL, '0000-00-00 00:00:00'),
(1725, 'id', 'Data Penerimaan Retur Supplier', 9, '2013-05-15 20:07:31', NULL, '0000-00-00 00:00:00'),
(1726, 'en', 'Mass Sales Verification Data', 9, '2013-05-15 21:20:25', NULL, '0000-00-00 00:00:00'),
(1726, 'id', 'Data Verifikasi Penjualan Massal', 9, '2013-05-15 21:20:25', NULL, '0000-00-00 00:00:00'),
(1727, 'en', 'Initial Stock', 9, '2013-05-15 21:21:43', NULL, '0000-00-00 00:00:00'),
(1727, 'id', 'Stok Awal', 9, '2013-05-15 21:21:43', NULL, '0000-00-00 00:00:00'),
(1728, 'en', 'Load', 9, '2013-05-15 21:21:00', NULL, '0000-00-00 00:00:00'),
(1728, 'id', 'Beban', 9, '2013-05-15 21:21:00', NULL, '0000-00-00 00:00:00'),
(1729, 'en', 'Total Stock', 9, '2013-05-15 21:21:32', NULL, '0000-00-00 00:00:00'),
(1729, 'id', 'Total Stok', 9, '2013-05-15 21:21:32', NULL, '0000-00-00 00:00:00'),
(1730, 'en', 'PO Internal Data', 9, '2013-05-15 22:02:33', NULL, '0000-00-00 00:00:00'),
(1730, 'id', 'Data PO Internal', 9, '2013-05-15 22:02:33', NULL, '0000-00-00 00:00:00'),
(1731, 'en', 'Unit Order Data', 1, '2013-05-16 09:58:12', NULL, '0000-00-00 00:00:00'),
(1731, 'id', 'Data Pesanan Unit', 1, '2013-05-16 09:58:12', NULL, '0000-00-00 00:00:00'),
(1732, 'en', 'Authorization', 1, '2013-05-16 10:01:23', NULL, '0000-00-00 00:00:00'),
(1732, 'id', 'Otorisasi', 1, '2013-05-16 10:01:23', NULL, '0000-00-00 00:00:00'),
(1733, 'en', 'Goods Receipt Internal Data', 9, '2013-05-16 10:57:08', NULL, '0000-00-00 00:00:00'),
(1733, 'id', 'Data Goods Receipt Internal', 9, '2013-05-16 10:57:08', NULL, '0000-00-00 00:00:00'),
(1734, 'en', 'Return Internal Data', 1, '2013-05-16 11:26:29', NULL, '0000-00-00 00:00:00'),
(1734, 'id', 'Data Retur Internal', 1, '2013-05-16 11:26:29', NULL, '0000-00-00 00:00:00'),
(1735, 'en', 'Account Distribution', 37, '2013-05-17 15:55:53', NULL, '0000-00-00 00:00:00'),
(1735, 'id', 'Persebaran Account', 37, '2013-05-17 15:55:53', NULL, '0000-00-00 00:00:00'),
(1736, 'en', 'Data List', 1, '2013-05-20 07:29:50', NULL, '0000-00-00 00:00:00'),
(1736, 'id', 'List Data', 1, '2013-05-20 07:29:50', NULL, '0000-00-00 00:00:00'),
(1737, 'en', 'Graph', 1, '2013-05-20 07:30:02', NULL, '0000-00-00 00:00:00'),
(1737, 'id', 'Grafik', 1, '2013-05-20 07:30:02', NULL, '0000-00-00 00:00:00'),
(1738, 'en', 'Opportunity Distribution', 1, '2013-05-20 07:30:41', NULL, '0000-00-00 00:00:00'),
(1738, 'id', 'Persebaran Peluang', 1, '2013-05-20 07:30:41', NULL, '0000-00-00 00:00:00'),
(1739, 'en', 'Contract Distribution', 1, '2013-05-20 07:31:02', NULL, '0000-00-00 00:00:00'),
(1739, 'id', 'Persebaran Kontrak', 1, '2013-05-20 07:31:02', NULL, '0000-00-00 00:00:00'),
(1740, 'en', 'Chart', 1, '2013-05-20 07:32:32', NULL, '0000-00-00 00:00:00'),
(1740, 'id', 'Diagram', 1, '2013-05-20 07:32:32', NULL, '0000-00-00 00:00:00'),
(1741, 'en', 'Realization', 37, '2013-05-20 11:32:27', NULL, '0000-00-00 00:00:00'),
(1741, 'id', 'Realisasi', 37, '2013-05-20 11:32:27', NULL, '0000-00-00 00:00:00'),
(1742, 'en', 'Request Date', 37, '2013-05-20 11:33:09', NULL, '0000-00-00 00:00:00'),
(1742, 'id', 'Tanggal Permintaan', 37, '2013-05-20 11:33:09', NULL, '0000-00-00 00:00:00'),
(1743, 'en', 'Invitees', 37, '2013-05-20 11:33:28', NULL, '0000-00-00 00:00:00'),
(1743, 'id', 'Undangan', 37, '2013-05-20 11:33:28', NULL, '0000-00-00 00:00:00'),
(1744, 'en', 'View Map', 37, '2013-05-20 12:12:19', NULL, '0000-00-00 00:00:00'),
(1744, 'id', 'Lihat Peta', 37, '2013-05-20 12:12:19', NULL, '0000-00-00 00:00:00'),
(1745, 'en', 'Opportunity Report', 1, '2013-05-20 15:01:45', NULL, '0000-00-00 00:00:00'),
(1745, 'id', 'Laporan Peluang', 1, '2013-05-20 15:01:45', NULL, '0000-00-00 00:00:00'),
(1746, 'en', 'Contract Report', 1, '2013-05-20 15:02:29', NULL, '0000-00-00 00:00:00'),
(1746, 'id', 'Laporan Kontrak', 1, '2013-05-20 15:02:29', NULL, '0000-00-00 00:00:00'),
(1747, 'en', 'Email Sent', 1, '2013-05-21 13:24:57', NULL, '0000-00-00 00:00:00'),
(1747, 'id', 'Email Terkirim', 1, '2013-05-21 13:24:57', NULL, '0000-00-00 00:00:00'),
(1748, 'en', 'Duplicate Success', 1, '2013-05-21 14:15:20', NULL, '0000-00-00 00:00:00'),
(1748, 'id', 'Duplikasi Data Berhasil', 1, '2013-05-21 14:15:20', NULL, '0000-00-00 00:00:00'),
(1749, 'en', 'Duplicate', 1, '2013-05-21 14:16:07', NULL, '0000-00-00 00:00:00'),
(1749, 'id', 'Duplikasi', 1, '2013-05-21 14:16:07', NULL, '0000-00-00 00:00:00'),
(1750, 'en', 'Contact Officer Assignment', 1, '2013-11-04 08:50:37', NULL, '0000-00-00 00:00:00'),
(1750, 'id', 'Penyerahan Officer / Petugas Kontak', 1, '2013-11-04 08:50:37', NULL, '0000-00-00 00:00:00'),
(1751, 'en', 'Goods Group', 1, '2013-06-12 09:00:56', NULL, '0000-00-00 00:00:00'),
(1751, 'id', 'Kelompok Barang', 1, '2013-06-12 09:00:56', NULL, '0000-00-00 00:00:00'),
(1752, 'en', 'Goods Item', 1, '2013-06-12 09:01:09', NULL, '0000-00-00 00:00:00'),
(1752, 'id', 'Item Barang', 1, '2013-06-12 09:01:09', NULL, '0000-00-00 00:00:00'),
(1753, 'en', 'Goods Size', 1, '2013-06-12 09:01:22', NULL, '0000-00-00 00:00:00'),
(1753, 'id', 'Ukuran Barang', 1, '2013-06-12 09:01:22', NULL, '0000-00-00 00:00:00'),
(1754, 'en', 'Goods Color', 1, '2013-06-12 09:01:38', NULL, '0000-00-00 00:00:00'),
(1754, 'id', 'Warna Barang', 1, '2013-06-12 09:01:38', NULL, '0000-00-00 00:00:00'),
(1755, 'en', 'Goods Detail Information', 1, '2013-06-12 09:02:07', NULL, '0000-00-00 00:00:00'),
(1755, 'id', 'Informasi Detail Barang', 1, '2013-06-12 09:02:07', NULL, '0000-00-00 00:00:00'),
(1756, 'en', 'Maximum Qty', 1, '2013-06-12 09:02:54', NULL, '0000-00-00 00:00:00'),
(1756, 'id', 'Jumlah Maksimum', 1, '2013-06-12 09:02:54', NULL, '0000-00-00 00:00:00'),
(1757, 'en', 'Minimum Qty', 1, '2013-06-12 09:03:11', NULL, '0000-00-00 00:00:00'),
(1757, 'id', 'Jumlah Minimum', 1, '2013-06-12 09:03:11', NULL, '0000-00-00 00:00:00'),
(1758, 'en', 'Stock Per Unit Information', 1, '2013-06-12 09:04:29', NULL, '0000-00-00 00:00:00'),
(1758, 'id', 'Informasi Stok Tiap Unit', 1, '2013-06-12 09:04:29', NULL, '0000-00-00 00:00:00'),
(1759, 'en', 'Stock Per Unit', 1, '2013-06-12 09:04:06', NULL, '0000-00-00 00:00:00'),
(1759, 'id', 'Stok Tiap Unit', 1, '2013-06-12 09:04:06', NULL, '0000-00-00 00:00:00'),
(1760, 'en', 'Maximum Stock', 1, '2013-06-12 10:58:49', NULL, '0000-00-00 00:00:00'),
(1760, 'id', 'Stok Maksimum', 1, '2013-06-12 10:58:49', NULL, '0000-00-00 00:00:00'),
(1761, 'en', 'System Code', 1, '2013-06-12 10:59:27', NULL, '0000-00-00 00:00:00'),
(1761, 'id', 'Kode Sistem', 1, '2013-06-12 10:59:27', NULL, '0000-00-00 00:00:00'),
(1762, 'en', 'Driver Number', 1, '2013-06-12 11:01:27', NULL, '0000-00-00 00:00:00'),
(1762, 'id', 'Nomor Sopir / Driver', 1, '2013-06-12 11:01:27', NULL, '0000-00-00 00:00:00'),
(1763, 'en', 'Active Date', 1, '2013-06-12 11:00:34', NULL, '0000-00-00 00:00:00'),
(1763, 'id', 'Tanggal Aktif', 1, '2013-06-12 11:00:34', NULL, '0000-00-00 00:00:00'),
(1764, 'en', 'Driver Name', 1, '2013-06-12 11:01:06', NULL, '0000-00-00 00:00:00'),
(1764, 'id', 'Nama Sopir / Driver', 1, '2013-06-12 11:01:06', NULL, '0000-00-00 00:00:00'),
(1765, 'en', 'Vehicle Number', 1, '2013-06-12 11:01:55', NULL, '0000-00-00 00:00:00'),
(1765, 'id', 'Nomor Kendaraan', 1, '2013-06-12 11:01:55', NULL, '0000-00-00 00:00:00'),
(1766, 'en', 'Driver', 1, '2013-06-12 11:02:11', NULL, '0000-00-00 00:00:00'),
(1766, 'id', 'Sopir / Driver', 1, '2013-06-12 11:02:11', NULL, '0000-00-00 00:00:00'),
(1767, 'en', 'Vehicle Information', 1, '2013-06-12 11:02:35', NULL, '0000-00-00 00:00:00'),
(1767, 'id', 'Informasi Kendaraan', 1, '2013-06-12 11:02:35', NULL, '0000-00-00 00:00:00'),
(1768, 'en', 'Last Odometer', 1, '2013-06-12 11:03:05', NULL, '0000-00-00 00:00:00'),
(1768, 'id', 'Odometer Terakhir', 1, '2013-06-12 11:03:05', NULL, '0000-00-00 00:00:00'),
(1769, 'en', 'CO2 Emission', 1, '2013-06-12 11:03:22', NULL, '0000-00-00 00:00:00'),
(1769, 'id', 'Emisi CO2', 1, '2013-06-12 11:03:22', NULL, '0000-00-00 00:00:00'),
(1770, 'en', 'Horse Power (HP)', 1, '2013-06-12 11:03:47', NULL, '0000-00-00 00:00:00'),
(1770, 'id', 'Horse Power (HP)', 1, '2013-06-12 11:03:47', NULL, '0000-00-00 00:00:00'),
(1771, 'en', 'Horse Power (HP) Taxation', 1, '2013-06-12 11:04:26', NULL, '0000-00-00 00:00:00'),
(1771, 'id', 'Kena Pajak Horse Power (HP)', 1, '2013-06-12 11:04:26', NULL, '0000-00-00 00:00:00'),
(1772, 'en', 'KM', 1, '2013-06-12 11:04:45', NULL, '0000-00-00 00:00:00'),
(1772, 'id', 'KM', 1, '2013-06-12 11:04:45', NULL, '0000-00-00 00:00:00'),
(1773, 'en', 'Mile', 1, '2013-06-12 11:05:07', NULL, '0000-00-00 00:00:00'),
(1773, 'id', 'Mil', 1, '2013-06-12 11:05:07', NULL, '0000-00-00 00:00:00'),
(1774, 'en', 'Vehicle Name', 1, '2013-06-12 12:51:51', NULL, '0000-00-00 00:00:00'),
(1774, 'id', 'Nama Kendaraan', 1, '2013-06-12 12:51:51', NULL, '0000-00-00 00:00:00'),
(1775, 'en', 'Asset Common Name', 1, '2013-06-12 12:52:20', NULL, '0000-00-00 00:00:00'),
(1775, 'id', 'Nama Umum Aset', 1, '2013-06-12 12:52:20', NULL, '0000-00-00 00:00:00'),
(1776, 'en', 'Revised', 1, '2013-06-12 13:44:03', NULL, '0000-00-00 00:00:00'),
(1776, 'id', 'Revised', 1, '2013-06-12 13:44:03', NULL, '0000-00-00 00:00:00'),
(1777, 'en', 'Confirmation', 1, '2013-06-12 13:44:27', NULL, '0000-00-00 00:00:00'),
(1777, 'id', 'Konfirmasi', 1, '2013-06-12 13:44:27', NULL, '0000-00-00 00:00:00'),
(1778, 'en', 'Are you sure to submit this usage request data', 1, '2013-06-14 10:38:43', NULL, '0000-00-00 00:00:00'),
(1778, 'id', 'Are you sure to submit this usage request data', 1, '2013-06-14 10:38:43', NULL, '0000-00-00 00:00:00'),
(1779, 'en', 'Submit', 1, '2013-06-14 10:40:22', NULL, '0000-00-00 00:00:00');
INSERT INTO `gtfw_key_text` (`key_text_key_id`, `key_text_lang_code`, `key_text_key_text`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`) VALUES
(1779, 'id', 'Submit', 1, '2013-06-14 10:40:22', NULL, '0000-00-00 00:00:00'),
(1780, 'en', 'Usage Request', 1, '2013-06-14 10:40:50', NULL, '0000-00-00 00:00:00'),
(1780, 'id', 'Permintaan Penggunaan', 1, '2013-06-14 10:40:50', NULL, '0000-00-00 00:00:00'),
(1781, 'en', 'Confirm Status', 1, '2013-06-14 11:22:56', NULL, '0000-00-00 00:00:00'),
(1781, 'id', 'Status Konfirmasi', 1, '2013-06-14 11:22:56', NULL, '0000-00-00 00:00:00'),
(1782, 'en', 'Owner', 1, '2013-06-17 08:10:34', NULL, '0000-00-00 00:00:00'),
(1782, 'id', 'Pemilik', 1, '2013-06-17 08:10:34', NULL, '0000-00-00 00:00:00'),
(1783, 'en', 'Vehicle Type', 1, '2013-06-17 08:10:53', NULL, '0000-00-00 00:00:00'),
(1783, 'id', 'Jenis Kendaraan', 1, '2013-06-17 08:10:53', NULL, '0000-00-00 00:00:00'),
(1784, 'en', 'Chassis Number', 1, '2013-06-17 08:11:09', NULL, '0000-00-00 00:00:00'),
(1784, 'id', 'Nomor Rangka', 1, '2013-06-17 08:11:09', NULL, '0000-00-00 00:00:00'),
(1785, 'en', 'Plate Number', 1, '2013-06-17 08:11:24', NULL, '0000-00-00 00:00:00'),
(1785, 'id', 'Nomor Plat', 1, '2013-06-17 08:11:24', NULL, '0000-00-00 00:00:00'),
(1786, 'en', 'Personal Vehicle', 1, '2013-06-17 08:12:01', NULL, '0000-00-00 00:00:00'),
(1786, 'id', 'Kendaraan Pribadi', 1, '2013-06-17 08:12:01', NULL, '0000-00-00 00:00:00'),
(1787, 'en', 'Status Information', 1, '2013-06-17 09:08:23', NULL, '0000-00-00 00:00:00'),
(1787, 'id', 'Informasi Status', 1, '2013-06-17 09:08:23', NULL, '0000-00-00 00:00:00'),
(1788, 'en', 'Approvor (Officer)', 1, '2013-06-17 09:11:15', NULL, '0000-00-00 00:00:00'),
(1788, 'id', 'Pemberi Persetujuan (Officer / Petugas)', 1, '2013-06-17 09:11:15', NULL, '0000-00-00 00:00:00'),
(1789, 'en', 'Status Date', 1, '2013-06-17 09:09:31', NULL, '0000-00-00 00:00:00'),
(1789, 'id', 'Tanggal Status', 1, '2013-06-17 09:09:31', NULL, '0000-00-00 00:00:00'),
(1790, 'en', 'Status Notes', 1, '2013-06-17 09:09:45', NULL, '0000-00-00 00:00:00'),
(1790, 'id', 'Catatan Status', 1, '2013-06-17 09:09:45', NULL, '0000-00-00 00:00:00'),
(1791, 'en', 'Cancel Notes', 1, '2013-06-17 09:10:00', NULL, '0000-00-00 00:00:00'),
(1791, 'id', 'Catatan Pembatalan', 1, '2013-06-17 09:10:00', NULL, '0000-00-00 00:00:00'),
(1792, 'en', 'Status', 1, '2013-06-17 09:14:12', NULL, '0000-00-00 00:00:00'),
(1792, 'id', 'Status', 1, '2013-06-17 09:14:12', NULL, '0000-00-00 00:00:00'),
(1793, 'en', 'Canceled', 1, '2013-06-17 09:14:48', NULL, '0000-00-00 00:00:00'),
(1793, 'id', 'Dibatalkan', 1, '2013-06-17 09:14:48', NULL, '0000-00-00 00:00:00'),
(1794, 'en', 'BPKB', 1, '2013-06-17 09:16:00', NULL, '0000-00-00 00:00:00'),
(1794, 'id', 'BPKB', 1, '2013-06-17 09:16:00', NULL, '0000-00-00 00:00:00'),
(1795, 'en', 'Approval', 37, '2013-06-17 11:15:21', NULL, '0000-00-00 00:00:00'),
(1795, 'id', 'Persetujuan', 37, '2013-06-17 11:15:21', NULL, '0000-00-00 00:00:00'),
(1796, 'en', 'Removal', 1, '2013-06-17 14:57:42', NULL, '0000-00-00 00:00:00'),
(1796, 'id', 'Pemusnahan', 1, '2013-06-17 14:57:42', NULL, '0000-00-00 00:00:00'),
(1797, 'en', 'Drag Markers To Pick a Color', 1, '2013-06-24 12:17:01', NULL, '0000-00-00 00:00:00'),
(1797, 'id', 'Drag Markers To Pick a Color', 1, '2013-06-24 12:17:01', NULL, '0000-00-00 00:00:00'),
(1798, 'en', 'Connection', 1, '2013-06-24 22:10:32', NULL, '0000-00-00 00:00:00'),
(1798, 'id', 'Koneksi', 1, '2013-06-24 22:10:33', NULL, '0000-00-00 00:00:00'),
(1799, 'en', 'Connect', 1, '2013-06-24 22:12:26', NULL, '0000-00-00 00:00:00'),
(1799, 'id', 'Sambungkan', 1, '2013-06-24 22:12:26', NULL, '0000-00-00 00:00:00'),
(1800, 'en', 'DB Name', 1, '2013-06-24 22:18:37', NULL, '0000-00-00 00:00:00'),
(1800, 'id', 'Nama DB', 1, '2013-06-24 22:18:37', NULL, '0000-00-00 00:00:00'),
(1801, 'en', 'Password', 1, '2013-06-24 22:24:22', NULL, '0000-00-00 00:00:00'),
(1801, 'id', 'Password', 1, '2013-06-24 22:24:22', NULL, '0000-00-00 00:00:00'),
(1802, 'en', 'Host', 1, '2013-06-25 08:10:01', NULL, '0000-00-00 00:00:00'),
(1802, 'id', 'Host', 1, '2013-06-25 08:10:01', NULL, '0000-00-00 00:00:00'),
(1803, 'en', 'Port', 1, '2013-06-25 08:10:22', NULL, '0000-00-00 00:00:00'),
(1803, 'id', 'Port', 1, '2013-06-25 08:10:22', NULL, '0000-00-00 00:00:00'),
(1804, 'en', 'Join Table', 1, '2013-06-25 08:11:37', NULL, '0000-00-00 00:00:00'),
(1804, 'id', 'Tabel Join', 1, '2013-06-25 08:11:37', NULL, '0000-00-00 00:00:00'),
(1805, 'en', 'Filter', 1, '2013-06-25 08:11:52', NULL, '0000-00-00 00:00:00'),
(1805, 'id', 'Filter', 1, '2013-06-25 08:11:52', NULL, '0000-00-00 00:00:00'),
(1806, 'en', 'Add Join', 1, '2013-06-25 08:12:09', NULL, '0000-00-00 00:00:00'),
(1806, 'id', 'Tambah Join', 1, '2013-06-25 08:12:09', NULL, '0000-00-00 00:00:00'),
(1807, 'en', 'Add Filter', 1, '2013-06-25 08:12:21', NULL, '0000-00-00 00:00:00'),
(1807, 'id', 'Tambah Filter', 1, '2013-06-25 08:12:21', NULL, '0000-00-00 00:00:00'),
(1808, 'en', 'Report Type', 1, '2013-06-25 08:23:34', NULL, '0000-00-00 00:00:00'),
(1808, 'id', 'Jenis Laporan', 1, '2013-06-25 08:23:34', NULL, '0000-00-00 00:00:00'),
(1809, 'en', 'Connection Name', 1, '2013-06-25 08:24:01', NULL, '0000-00-00 00:00:00'),
(1809, 'id', 'Nama Koneksi', 1, '2013-06-25 08:24:01', NULL, '0000-00-00 00:00:00'),
(1810, 'en', 'Report', 1, '2013-06-25 08:24:16', NULL, '0000-00-00 00:00:00'),
(1810, 'id', 'Laporan', 1, '2013-06-25 08:24:16', NULL, '0000-00-00 00:00:00'),
(1811, 'en', 'Query', 1, '2013-06-25 08:24:27', NULL, '0000-00-00 00:00:00'),
(1811, 'id', 'Query', 1, '2013-06-25 08:24:27', NULL, '0000-00-00 00:00:00'),
(1812, 'en', 'Series', 1, '2013-06-25 08:25:21', NULL, '0000-00-00 00:00:00'),
(1812, 'id', 'Series', 1, '2013-06-25 08:25:21', NULL, '0000-00-00 00:00:00'),
(1813, 'en', 'Values', 1, '2013-06-25 08:25:33', NULL, '0000-00-00 00:00:00'),
(1813, 'id', 'Nilai', 1, '2013-06-25 08:25:33', NULL, '0000-00-00 00:00:00'),
(1814, 'en', 'Report Model', 1, '2013-06-25 08:25:59', NULL, '0000-00-00 00:00:00'),
(1814, 'id', 'Model Laporan', 1, '2013-06-25 08:25:59', NULL, '0000-00-00 00:00:00'),
(1815, 'en', 'Publish Status', 1, '2013-06-25 08:26:18', NULL, '0000-00-00 00:00:00'),
(1815, 'id', 'Status Publish', 1, '2013-06-25 08:26:18', NULL, '0000-00-00 00:00:00'),
(1816, 'en', 'Report Management', 1, '2013-06-25 08:27:35', NULL, '0000-00-00 00:00:00'),
(1816, 'id', 'Pengelolaan Laporan', 1, '2013-06-25 08:27:35', NULL, '0000-00-00 00:00:00'),
(1817, 'en', 'Alternative Name', 1, '2013-06-25 08:27:53', NULL, '0000-00-00 00:00:00'),
(1817, 'id', 'Nama Alternatif', 1, '2013-06-25 08:27:53', NULL, '0000-00-00 00:00:00'),
(1818, 'en', 'Config', 1, '2013-06-25 08:28:04', NULL, '0000-00-00 00:00:00'),
(1818, 'id', 'Pengaturan', 1, '2013-06-25 08:28:04', NULL, '0000-00-00 00:00:00'),
(1819, 'en', 'Empty Database Or There Is No Connection To Database', 1, '2013-06-25 08:29:15', NULL, '0000-00-00 00:00:00'),
(1819, 'id', 'Database Kosong Atau Tidak Ada Koneksi Ke Database', 1, '2013-06-25 08:29:15', NULL, '0000-00-00 00:00:00'),
(1820, 'en', 'Chosen Table', 1, '2013-06-25 08:29:34', NULL, '0000-00-00 00:00:00'),
(1820, 'id', 'Tabel Terpilih', 1, '2013-06-25 08:29:34', NULL, '0000-00-00 00:00:00'),
(1821, 'en', 'Chosen Column', 1, '2013-06-25 08:29:56', NULL, '0000-00-00 00:00:00'),
(1821, 'id', 'Kolom Terpilih', 1, '2013-06-25 08:29:56', NULL, '0000-00-00 00:00:00'),
(1822, 'en', 'Alias', 1, '2013-06-25 08:37:36', NULL, '0000-00-00 00:00:00'),
(1822, 'id', 'Alias', 1, '2013-06-25 08:37:36', NULL, '0000-00-00 00:00:00'),
(1823, 'en', 'Aggregate', 1, '2013-06-25 08:37:51', NULL, '0000-00-00 00:00:00'),
(1823, 'id', 'Aggregate', 1, '2013-06-25 08:37:51', NULL, '0000-00-00 00:00:00'),
(1824, 'en', 'Group By', 1, '2013-06-25 08:38:08', NULL, '0000-00-00 00:00:00'),
(1824, 'id', 'Group By', 1, '2013-06-25 08:38:08', NULL, '0000-00-00 00:00:00'),
(1825, 'en', 'Sort', 1, '2013-06-25 08:38:19', NULL, '0000-00-00 00:00:00'),
(1825, 'id', 'Sort', 1, '2013-06-25 08:38:19', NULL, '0000-00-00 00:00:00'),
(1826, 'en', 'Origin Table', 1, '2013-06-25 08:48:57', NULL, '0000-00-00 00:00:00'),
(1826, 'id', 'Tabel Asal', 1, '2013-06-25 08:48:57', NULL, '0000-00-00 00:00:00'),
(1827, 'en', 'Origin Column', 1, '2013-06-25 08:49:12', NULL, '0000-00-00 00:00:00'),
(1827, 'id', 'Kolom Asal', 1, '2013-06-25 08:49:12', NULL, '0000-00-00 00:00:00'),
(1828, 'en', 'Target Table', 1, '2013-06-25 08:49:29', NULL, '0000-00-00 00:00:00'),
(1828, 'id', 'Tabel Target', 1, '2013-06-25 08:49:29', NULL, '0000-00-00 00:00:00'),
(1829, 'en', 'Target Column', 1, '2013-06-25 08:49:56', NULL, '0000-00-00 00:00:00'),
(1829, 'id', 'Kolom Target', 1, '2013-06-25 08:49:56', NULL, '0000-00-00 00:00:00'),
(1830, 'en', 'There Is No Join Table', 1, '2013-06-25 08:50:26', NULL, '0000-00-00 00:00:00'),
(1830, 'id', 'Tidak Ada Tabel Join', 1, '2013-06-25 08:50:26', NULL, '0000-00-00 00:00:00'),
(1831, 'en', 'Operand', 1, '2013-06-25 08:50:53', NULL, '0000-00-00 00:00:00'),
(1831, 'id', 'Operand', 1, '2013-06-25 08:50:53', NULL, '0000-00-00 00:00:00'),
(1832, 'en', 'Criteria', 1, '2013-06-25 08:51:07', NULL, '0000-00-00 00:00:00'),
(1832, 'id', 'Kriteria', 1, '2013-06-25 08:51:07', NULL, '0000-00-00 00:00:00'),
(1833, 'en', 'There Is No Filter', 1, '2013-06-25 08:51:35', NULL, '0000-00-00 00:00:00'),
(1833, 'id', 'Tidak Ada Filter', 1, '2013-06-25 08:51:35', NULL, '0000-00-00 00:00:00'),
(1834, 'en', 'Result Preview', 1, '2013-06-25 08:51:56', NULL, '0000-00-00 00:00:00'),
(1834, 'id', 'Preview Hasil', 1, '2013-06-25 08:51:56', NULL, '0000-00-00 00:00:00'),
(1835, 'en', 'Click Here To View Result Preview', 1, '2013-06-25 08:52:50', NULL, '0000-00-00 00:00:00'),
(1835, 'id', 'Klik Disini Untuk Melihat Pratinjau Hasil', 1, '2013-06-25 08:52:50', NULL, '0000-00-00 00:00:00'),
(1836, 'en', 'Joining Table', 1, '2013-06-25 08:53:31', NULL, '0000-00-00 00:00:00'),
(1836, 'id', 'Tabel Gabungan', 1, '2013-06-25 08:53:31', NULL, '0000-00-00 00:00:00'),
(1837, 'en', 'Choose Column', 1, '2013-06-25 08:53:49', NULL, '0000-00-00 00:00:00'),
(1837, 'id', 'Pilih Kolom', 1, '2013-06-25 08:53:49', NULL, '0000-00-00 00:00:00'),
(1838, 'en', 'Choose Operand', 1, '2013-06-25 08:54:57', NULL, '0000-00-00 00:00:00'),
(1838, 'id', 'Pilih Operand', 1, '2013-06-25 08:54:57', NULL, '0000-00-00 00:00:00'),
(1839, 'en', 'Saving ...', 1, '2013-06-25 09:06:25', NULL, '0000-00-00 00:00:00'),
(1839, 'id', 'Menyimpan ...', 1, '2013-06-25 09:06:25', NULL, '0000-00-00 00:00:00'),
(1840, 'en', 'Please Choose Column', 1, '2013-06-25 09:15:54', NULL, '0000-00-00 00:00:00'),
(1840, 'id', 'Silahkan Pilih Kolom', 1, '2013-06-25 09:15:54', NULL, '0000-00-00 00:00:00'),
(1841, 'en', 'Reload', 1, '2013-06-25 11:27:35', NULL, '0000-00-00 00:00:00'),
(1841, 'id', 'Muat Kembali', 1, '2013-06-25 11:27:35', NULL, '0000-00-00 00:00:00'),
(1842, 'en', 'Select Color', 1, '2013-06-26 14:38:27', NULL, '0000-00-00 00:00:00'),
(1842, 'id', 'Select Color', 1, '2013-06-26 14:38:27', NULL, '0000-00-00 00:00:00'),
(1843, 'en', 'Sign In', 1, '2013-06-28 11:18:25', NULL, '0000-00-00 00:00:00'),
(1843, 'id', 'Sign In', 1, '2013-06-28 11:18:25', NULL, '0000-00-00 00:00:00'),
(1844, 'en', 'Public', 1, '2013-06-28 11:18:49', NULL, '0000-00-00 00:00:00'),
(1844, 'id', 'Publik', 1, '2013-06-28 11:18:49', NULL, '0000-00-00 00:00:00'),
(1845, 'en', 'Publish', 1, '2013-06-28 11:19:05', NULL, '0000-00-00 00:00:00'),
(1845, 'id', 'Publish', 1, '2013-06-28 11:19:05', NULL, '0000-00-00 00:00:00'),
(1846, 'en', 'View At Home', 1, '2013-06-28 11:19:40', NULL, '0000-00-00 00:00:00'),
(1846, 'id', 'Lihat Di Beranda', 1, '2013-06-28 11:19:40', NULL, '0000-00-00 00:00:00'),
(1847, 'en', 'Sketch Color', 1, '2013-06-28 15:30:20', NULL, '0000-00-00 00:00:00'),
(1847, 'id', 'Warna Denah', 1, '2013-06-28 15:30:20', NULL, '0000-00-00 00:00:00'),
(1848, 'en', 'Room Sketch', 1, '2013-06-28 15:30:52', NULL, '0000-00-00 00:00:00'),
(1848, 'id', 'Denah Ruangan', 1, '2013-06-28 15:30:52', NULL, '0000-00-00 00:00:00'),
(1849, 'en', 'Room Mapped Successfully', 1, '2013-06-28 15:32:49', NULL, '0000-00-00 00:00:00'),
(1849, 'id', 'Berhasil Memetakan Ruangan', 1, '2013-06-28 15:32:49', NULL, '0000-00-00 00:00:00'),
(1850, 'en', 'Current Sketch', 1, '2013-06-28 15:33:41', NULL, '0000-00-00 00:00:00'),
(1850, 'id', 'Denah Saat Ini', 1, '2013-06-28 15:33:41', NULL, '0000-00-00 00:00:00'),
(1851, 'en', 'Sketch Preview', 1, '2013-06-28 15:34:01', NULL, '0000-00-00 00:00:00'),
(1851, 'id', 'Pratinjau Denah', 1, '2013-06-28 15:34:01', NULL, '0000-00-00 00:00:00'),
(1852, 'en', 'Building Sketch', 1, '2013-06-28 15:34:51', NULL, '0000-00-00 00:00:00'),
(1852, 'id', 'Denah Gedung', 1, '2013-06-28 15:34:51', NULL, '0000-00-00 00:00:00'),
(1853, 'en', 'Building Mapped Successfully', 1, '2013-06-28 15:35:23', NULL, '0000-00-00 00:00:00'),
(1853, 'id', 'Berhasil Memetakan Gedung', 1, '2013-06-28 15:35:23', NULL, '0000-00-00 00:00:00'),
(1854, 'en', 'Building Location', 1, '2013-06-28 16:07:29', NULL, '0000-00-00 00:00:00'),
(1854, 'id', 'Lokasi Gedung', 1, '2013-06-28 16:07:29', NULL, '0000-00-00 00:00:00'),
(1855, 'en', 'Report Data Is Not Found', 1, '2013-07-01 13:38:06', NULL, '0000-00-00 00:00:00'),
(1855, 'id', 'Data Laporan Tidak Ditemukan', 1, '2013-07-01 13:38:06', NULL, '0000-00-00 00:00:00'),
(1856, 'en', 'Chosen Report', 1, '2013-07-01 13:38:27', NULL, '0000-00-00 00:00:00'),
(1856, 'id', 'Laporan Terpilih', 1, '2013-07-01 13:38:27', NULL, '0000-00-00 00:00:00'),
(1857, 'en', 'Select Report', 1, '2013-07-01 13:38:45', NULL, '0000-00-00 00:00:00'),
(1857, 'id', 'Pilih Laporan', 1, '2013-07-01 13:38:45', NULL, '0000-00-00 00:00:00'),
(1858, 'en', 'Left', 1, '2013-07-02 11:33:24', NULL, '0000-00-00 00:00:00'),
(1858, 'id', 'Kiri', 1, '2013-07-02 11:33:24', NULL, '0000-00-00 00:00:00'),
(1859, 'en', 'Right', 1, '2013-07-02 11:33:35', NULL, '0000-00-00 00:00:00'),
(1859, 'id', 'Kanan', 1, '2013-07-02 11:33:35', NULL, '0000-00-00 00:00:00'),
(1860, 'en', 'Center', 1, '2013-07-02 11:33:46', NULL, '0000-00-00 00:00:00'),
(1860, 'id', 'Tengah', 1, '2013-07-02 11:33:46', NULL, '0000-00-00 00:00:00'),
(1861, 'en', 'Justify', 1, '2013-07-02 11:34:01', NULL, '0000-00-00 00:00:00'),
(1861, 'id', 'Rata Kiri - Kanan', 1, '2013-07-02 11:34:01', NULL, '0000-00-00 00:00:00'),
(1862, 'en', 'Taxi Provider', 1, '2013-07-09 10:29:32', NULL, '0000-00-00 00:00:00'),
(1862, 'id', 'Provider Taksi', 1, '2013-07-09 10:29:32', NULL, '0000-00-00 00:00:00'),
(1863, 'en', 'Voucher Number', 1, '2013-07-09 10:29:48', NULL, '0000-00-00 00:00:00'),
(1863, 'id', 'Nomor Voucher', 1, '2013-07-09 10:29:48', NULL, '0000-00-00 00:00:00'),
(1864, 'en', 'Release Status', 1, '2013-07-09 10:30:06', NULL, '0000-00-00 00:00:00'),
(1864, 'id', 'Status Rilis', 1, '2013-07-09 10:30:06', NULL, '0000-00-00 00:00:00'),
(1865, 'en', 'Request Status', 1, '2013-07-09 10:30:24', NULL, '0000-00-00 00:00:00'),
(1865, 'id', 'Status Pengajuan', 1, '2013-07-09 10:30:24', NULL, '0000-00-00 00:00:00'),
(1866, 'en', 'Use Status', 1, '2013-07-09 10:30:40', NULL, '0000-00-00 00:00:00'),
(1866, 'id', 'Status Penggunaan', 1, '2013-07-09 10:30:40', NULL, '0000-00-00 00:00:00'),
(1867, 'en', 'Expiry Status', 1, '2013-07-09 10:30:58', NULL, '0000-00-00 00:00:00'),
(1867, 'id', 'Status Masa Berlaku', 1, '2013-07-09 10:30:58', NULL, '0000-00-00 00:00:00'),
(1868, 'en', 'Has Been Released', 1, '2013-07-09 10:31:15', NULL, '0000-00-00 00:00:00'),
(1868, 'id', 'Sudah Dirilis', 1, '2013-07-09 10:31:15', NULL, '0000-00-00 00:00:00'),
(1869, 'en', 'Not Yet Released', 1, '2013-07-09 10:31:33', NULL, '0000-00-00 00:00:00'),
(1869, 'id', 'Belum Dirilis', 1, '2013-07-09 10:31:33', NULL, '0000-00-00 00:00:00'),
(1870, 'en', 'Has Been Requested', 1, '2013-07-09 10:31:50', NULL, '0000-00-00 00:00:00'),
(1870, 'id', 'Sudah Diajukan', 1, '2013-07-09 10:31:50', NULL, '0000-00-00 00:00:00'),
(1871, 'en', 'Not Yet Requested', 1, '2013-07-09 10:32:11', NULL, '0000-00-00 00:00:00'),
(1871, 'id', 'Belum Diajukan', 1, '2013-07-09 10:32:11', NULL, '0000-00-00 00:00:00'),
(1872, 'en', 'Has Been Used', 1, '2013-07-09 10:32:26', NULL, '0000-00-00 00:00:00'),
(1872, 'id', 'Sudah Digunakan', 1, '2013-07-09 10:32:26', NULL, '0000-00-00 00:00:00'),
(1873, 'en', 'Not Yet Used', 1, '2013-07-09 10:32:45', NULL, '0000-00-00 00:00:00'),
(1873, 'id', 'Belum Digunakan', 1, '2013-07-09 10:32:45', NULL, '0000-00-00 00:00:00'),
(1874, 'en', 'Not Expired', 1, '2013-07-09 10:33:22', NULL, '0000-00-00 00:00:00'),
(1874, 'id', 'Belum Kadaluarsa', 1, '2013-07-09 10:33:22', NULL, '0000-00-00 00:00:00'),
(1875, 'en', 'Taxi Voucher Number', 1, '2013-07-09 10:33:40', NULL, '0000-00-00 00:00:00'),
(1875, 'id', 'Nomor Voucher Taksi', 1, '2013-07-09 10:33:40', NULL, '0000-00-00 00:00:00'),
(1876, 'en', 'Start Number', 1, '2013-07-09 10:34:05', NULL, '0000-00-00 00:00:00'),
(1876, 'id', 'Nomor Awal', 1, '2013-07-09 10:34:06', NULL, '0000-00-00 00:00:00'),
(1877, 'en', 'End Number', 1, '2013-07-09 10:34:20', NULL, '0000-00-00 00:00:00'),
(1877, 'id', 'Nomor Akhir', 1, '2013-07-09 10:34:20', NULL, '0000-00-00 00:00:00'),
(1878, 'en', 'Start Number Field Is Required', 1, '2013-07-09 10:34:44', NULL, '0000-00-00 00:00:00'),
(1878, 'id', 'Nomor Awal Wajib Diisi', 1, '2013-07-09 10:34:45', NULL, '0000-00-00 00:00:00'),
(1879, 'en', 'Posibility Number Are Already Exist', 1, '2013-07-09 10:35:11', NULL, '0000-00-00 00:00:00'),
(1879, 'id', 'Nomor Kemungkinan Sudah Tersedia', 1, '2013-07-09 10:35:11', NULL, '0000-00-00 00:00:00'),
(1880, 'en', 'But Fail To Insert Number', 1, '2013-07-09 10:36:15', NULL, '0000-00-00 00:00:00'),
(1880, 'id', 'Tetapi Gagal Dalam Memasukkan Nomor', 1, '2013-07-09 10:36:15', NULL, '0000-00-00 00:00:00'),
(1881, 'en', 'Release', 1, '2013-07-09 10:40:25', NULL, '0000-00-00 00:00:00'),
(1881, 'id', 'Rilis', 1, '2013-07-09 10:40:25', NULL, '0000-00-00 00:00:00'),
(1882, 'en', 'Release Confirmation', 1, '2013-07-09 10:41:28', NULL, '0000-00-00 00:00:00'),
(1882, 'id', 'Konfirmasi Rilis', 1, '2013-07-09 10:41:28', NULL, '0000-00-00 00:00:00'),
(1883, 'en', 'Are You Sure Want To Release Data', 1, '2013-07-09 10:42:43', NULL, '0000-00-00 00:00:00'),
(1883, 'id', 'Anda Yakin Ingin Merilis Data', 1, '2013-07-09 10:42:43', NULL, '0000-00-00 00:00:00'),
(1884, 'en', 'Data Information', 1, '2013-07-09 10:43:38', NULL, '0000-00-00 00:00:00'),
(1884, 'id', 'Informasi Data', 1, '2013-07-09 10:43:38', NULL, '0000-00-00 00:00:00'),
(1885, 'en', 'Are You Sure Want To Remove This Data', 1, '2013-07-09 10:44:10', NULL, '0000-00-00 00:00:00'),
(1885, 'id', 'Anda Yakin Ingin Menghapus Data Ini', 1, '2013-07-09 10:44:10', NULL, '0000-00-00 00:00:00'),
(1886, 'en', 'Asset to Use', 1, '2013-07-11 10:43:02', NULL, '0000-00-00 00:00:00'),
(1886, 'id', 'Data Asset Yang Akan Digunakan', 1, '2013-07-11 10:43:02', NULL, '0000-00-00 00:00:00'),
(1887, 'en', 'Unit', 1, '2013-07-16 13:43:52', NULL, '0000-00-00 00:00:00'),
(1887, 'id', 'Unit', 1, '2013-07-16 13:43:52', NULL, '0000-00-00 00:00:00'),
(1888, 'en', 'Number Type', 1, '2013-07-18 09:50:38', NULL, '0000-00-00 00:00:00'),
(1888, 'id', 'Jenis Nomor', 1, '2013-07-18 09:50:39', NULL, '0000-00-00 00:00:00'),
(1889, 'en', 'Document Number', 1, '2013-07-19 21:43:58', NULL, '0000-00-00 00:00:00'),
(1889, 'id', 'Nomor Dokumen', 1, '2013-07-19 21:43:58', NULL, '0000-00-00 00:00:00'),
(1890, 'en', 'Delivery Category', 1, '2013-07-19 21:09:45', NULL, '0000-00-00 00:00:00'),
(1890, 'id', 'Kategori Pengiriman', 1, '2013-07-19 21:09:45', NULL, '0000-00-00 00:00:00'),
(1891, 'en', 'Requestor', 1, '2013-07-19 21:10:00', NULL, '0000-00-00 00:00:00'),
(1891, 'id', 'Pengaju', 1, '2013-07-19 21:10:00', NULL, '0000-00-00 00:00:00'),
(1892, 'en', 'Courier', 1, '2013-07-19 21:10:17', NULL, '0000-00-00 00:00:00'),
(1892, 'id', 'Kurir', 1, '2013-07-19 21:10:17', NULL, '0000-00-00 00:00:00'),
(1893, 'en', 'Package Information', 1, '2013-07-19 21:10:33', NULL, '0000-00-00 00:00:00'),
(1893, 'id', 'Informasi Paket', 1, '2013-07-19 21:10:33', NULL, '0000-00-00 00:00:00'),
(1894, 'en', 'Delivery Type', 1, '2013-07-19 21:10:53', NULL, '0000-00-00 00:00:00'),
(1894, 'id', 'Jenis Pengiriman', 1, '2013-07-19 21:10:53', NULL, '0000-00-00 00:00:00'),
(1895, 'en', 'Other Delivery Type', 1, '2013-07-19 21:11:32', NULL, '0000-00-00 00:00:00'),
(1895, 'id', 'Jenis Pengiriman Lainnya', 1, '2013-07-19 21:11:32', NULL, '0000-00-00 00:00:00'),
(1896, 'en', 'Subject', 1, '2013-07-19 21:11:49', NULL, '0000-00-00 00:00:00'),
(1896, 'id', 'Subyek', 1, '2013-07-19 21:11:49', NULL, '0000-00-00 00:00:00'),
(1897, 'en', 'Content', 1, '2013-07-19 21:12:01', NULL, '0000-00-00 00:00:00'),
(1897, 'id', 'Konten', 1, '2013-07-19 21:12:01', NULL, '0000-00-00 00:00:00'),
(1898, 'en', 'Attention', 1, '2013-07-19 21:12:15', NULL, '0000-00-00 00:00:00'),
(1898, 'id', 'Atensi Khusus', 1, '2013-07-19 21:12:15', NULL, '0000-00-00 00:00:00'),
(1899, 'en', 'Info', 1, '2013-07-19 21:12:26', NULL, '0000-00-00 00:00:00'),
(1899, 'id', 'Info', 1, '2013-07-19 21:12:26', NULL, '0000-00-00 00:00:00'),
(1900, 'en', 'Description', 1, '2013-07-19 21:12:42', NULL, '0000-00-00 00:00:00'),
(1900, 'id', 'Deskripsi', 1, '2013-07-19 21:12:42', NULL, '0000-00-00 00:00:00'),
(1901, 'en', 'International', 1, '2013-07-19 21:13:16', NULL, '0000-00-00 00:00:00'),
(1901, 'id', 'Internasional', 1, '2013-07-19 21:13:16', NULL, '0000-00-00 00:00:00'),
(1902, 'en', 'National', 1, '2013-07-19 21:13:29', NULL, '0000-00-00 00:00:00'),
(1902, 'id', 'Nasional', 1, '2013-07-19 21:13:29', NULL, '0000-00-00 00:00:00'),
(1903, 'en', 'Package / Mail Delivery Request', 1, '2013-07-19 21:14:39', NULL, '0000-00-00 00:00:00'),
(1903, 'id', 'Pengajuan Pengiriman Paket / Surat', 1, '2013-07-19 21:14:39', NULL, '0000-00-00 00:00:00'),
(1904, 'en', 'Data Canceled Successfully', 1, '2013-07-19 21:15:26', NULL, '0000-00-00 00:00:00'),
(1904, 'id', 'Pembatalan Data Berhasil', 1, '2013-07-19 21:15:26', NULL, '0000-00-00 00:00:00'),
(1905, 'en', 'Package / Mail Delivery Costing', 1, '2013-07-19 21:19:36', NULL, '0000-00-00 00:00:00'),
(1905, 'id', 'Pembiayaan Pengiriman Paket / Surat', 1, '2013-07-19 21:19:36', NULL, '0000-00-00 00:00:00'),
(1906, 'en', 'Cost', 1, '2013-07-19 21:20:12', NULL, '0000-00-00 00:00:00'),
(1906, 'id', 'Biaya', 1, '2013-07-19 21:20:12', NULL, '0000-00-00 00:00:00'),
(1907, 'en', 'Mail Number', 1, '2013-07-19 21:21:37', NULL, '0000-00-00 00:00:00'),
(1907, 'id', 'Nomor Surat', 1, '2013-07-19 21:21:37', NULL, '0000-00-00 00:00:00'),
(1908, 'en', 'Mail Number Type', 1, '2013-07-19 21:21:53', NULL, '0000-00-00 00:00:00'),
(1908, 'id', 'Jenis Nomor Surat', 1, '2013-07-19 21:21:53', NULL, '0000-00-00 00:00:00'),
(1909, 'en', 'Mail Information', 1, '2013-07-19 21:22:12', NULL, '0000-00-00 00:00:00'),
(1909, 'id', 'Informasi Surat', 1, '2013-07-19 21:22:12', NULL, '0000-00-00 00:00:00'),
(1910, 'en', 'Mail Date', 1, '2013-07-19 21:22:25', NULL, '0000-00-00 00:00:00'),
(1910, 'id', 'Tanggal Surat', 1, '2013-07-19 21:22:25', NULL, '0000-00-00 00:00:00'),
(1911, 'en', 'Mail Number Manual Set', 1, '2013-07-19 21:24:08', NULL, '0000-00-00 00:00:00'),
(1911, 'id', 'Set Manual Nomor Surat', 1, '2013-07-19 21:24:08', NULL, '0000-00-00 00:00:00'),
(1912, 'en', 'To', 1, '2013-07-19 21:24:47', NULL, '0000-00-00 00:00:00'),
(1912, 'id', 'Kepada', 1, '2013-07-19 21:24:47', NULL, '0000-00-00 00:00:00'),
(1913, 'en', 'Document Information', 1, '2013-07-19 21:38:36', NULL, '0000-00-00 00:00:00'),
(1913, 'id', 'Informasi Dokumen', 1, '2013-07-19 21:38:36', NULL, '0000-00-00 00:00:00'),
(1914, 'en', 'Document Number Category', 1, '2013-07-19 21:38:55', NULL, '0000-00-00 00:00:00'),
(1914, 'id', 'Kategori Nomor Dokumen', 1, '2013-07-19 21:38:55', NULL, '0000-00-00 00:00:00'),
(1915, 'en', 'Document Number Type', 1, '2013-07-19 21:39:13', NULL, '0000-00-00 00:00:00'),
(1915, 'id', 'Jenis Nomor Dokumen', 1, '2013-07-19 21:39:13', NULL, '0000-00-00 00:00:00'),
(1916, 'en', 'Document Date', 1, '2013-07-19 21:39:28', NULL, '0000-00-00 00:00:00'),
(1916, 'id', 'Tanggal Dokumen', 1, '2013-07-19 21:39:28', NULL, '0000-00-00 00:00:00'),
(1917, 'en', 'Document Title', 1, '2013-07-19 21:39:49', NULL, '0000-00-00 00:00:00'),
(1917, 'id', 'Judul Dokumen', 1, '2013-07-19 21:39:49', NULL, '0000-00-00 00:00:00'),
(1918, 'en', 'Manual Number', 1, '2013-07-19 21:40:47', NULL, '0000-00-00 00:00:00'),
(1918, 'id', 'Nomor Manual', 1, '2013-07-19 21:40:47', NULL, '0000-00-00 00:00:00'),
(1919, 'en', 'Recruitment City', 1, '2013-07-19 21:45:37', NULL, '0000-00-00 00:00:00'),
(1919, 'id', 'Kota Rekruitmen', 1, '2013-07-19 21:45:37', NULL, '0000-00-00 00:00:00'),
(1920, 'en', 'Applicant Status', 1, '2013-07-19 21:46:10', NULL, '0000-00-00 00:00:00'),
(1920, 'id', 'Status Pelamar', 1, '2013-07-19 21:46:10', NULL, '0000-00-00 00:00:00'),
(1921, 'en', 'Is Export', 1, '2013-09-04 08:24:10', NULL, '0000-00-00 00:00:00'),
(1921, 'id', 'Status Ekspor', 1, '2013-09-04 08:24:10', NULL, '0000-00-00 00:00:00'),
(1922, 'en', 'Applicant Type', 1, '2013-07-19 21:48:03', NULL, '0000-00-00 00:00:00'),
(1922, 'id', 'Jenis Pelamar', 1, '2013-07-19 21:48:03', NULL, '0000-00-00 00:00:00'),
(1923, 'en', 'Building Owner Status', 1, '2013-07-19 21:48:29', NULL, '0000-00-00 00:00:00'),
(1923, 'id', 'Status Kepemilikan Gedung', 1, '2013-07-19 21:48:29', NULL, '0000-00-00 00:00:00'),
(1924, 'en', 'Residency Status', 1, '2013-07-19 21:49:06', NULL, '0000-00-00 00:00:00'),
(1924, 'id', 'Status Tinggal', 1, '2013-07-19 21:49:06', NULL, '0000-00-00 00:00:00'),
(1925, 'en', 'Address Type', 1, '2013-07-19 21:49:28', NULL, '0000-00-00 00:00:00'),
(1925, 'id', 'Jenis Alamat', 1, '2013-07-19 21:49:28', NULL, '0000-00-00 00:00:00'),
(1926, 'en', 'Building Owner Status', 1, '2013-07-19 21:49:42', NULL, '0000-00-00 00:00:00'),
(1926, 'id', 'Status Kepemilikan Gedung', 1, '2013-07-19 21:49:42', NULL, '0000-00-00 00:00:00'),
(1927, 'en', 'Residency Status', 1, '2013-07-19 21:49:57', NULL, '0000-00-00 00:00:00'),
(1927, 'id', 'Status Tinggal', 1, '2013-07-19 21:49:57', NULL, '0000-00-00 00:00:00'),
(1928, 'en', 'Area Code', 1, '2013-07-19 21:50:21', NULL, '0000-00-00 00:00:00'),
(1928, 'id', 'Kode Area', 1, '2013-07-19 21:50:21', NULL, '0000-00-00 00:00:00'),
(1929, 'en', 'Email', 1, '2013-07-19 21:51:11', NULL, '0000-00-00 00:00:00'),
(1929, 'id', 'Email', 1, '2013-07-19 21:51:11', NULL, '0000-00-00 00:00:00'),
(1930, 'en', 'Reference', 1, '2013-07-19 21:52:26', NULL, '0000-00-00 00:00:00'),
(1930, 'id', 'Referensi', 1, '2013-07-19 21:52:26', NULL, '0000-00-00 00:00:00'),
(1931, 'en', 'Institution', 1, '2013-07-19 21:52:43', NULL, '0000-00-00 00:00:00'),
(1931, 'id', 'Institusi', 1, '2013-07-19 21:52:43', NULL, '0000-00-00 00:00:00'),
(1932, 'en', 'Employee', 1, '2013-07-19 21:53:24', NULL, '0000-00-00 00:00:00'),
(1932, 'id', 'Pegawai', 1, '2013-07-19 21:53:24', NULL, '0000-00-00 00:00:00'),
(1933, 'en', 'Testimony', 1, '2013-07-19 21:53:56', NULL, '0000-00-00 00:00:00'),
(1933, 'id', 'Testimoni', 1, '2013-07-19 21:53:56', NULL, '0000-00-00 00:00:00'),
(1934, 'en', 'Achievement Level', 1, '2013-07-19 21:55:47', NULL, '0000-00-00 00:00:00'),
(1934, 'id', 'Tingkat Penghargaan', 1, '2013-07-19 21:55:47', NULL, '0000-00-00 00:00:00'),
(1935, 'en', 'Interest Type', 1, '2013-07-19 21:57:15', NULL, '0000-00-00 00:00:00'),
(1935, 'id', 'Jenis Minat', 1, '2013-07-19 21:57:15', NULL, '0000-00-00 00:00:00'),
(1936, 'en', 'Quality', 1, '2013-07-19 21:57:27', NULL, '0000-00-00 00:00:00'),
(1936, 'id', 'Kualitas', 1, '2013-07-19 21:57:27', NULL, '0000-00-00 00:00:00'),
(1937, 'en', 'Interest Information', 1, '2013-07-19 21:57:48', NULL, '0000-00-00 00:00:00'),
(1937, 'id', 'Informasi Minat', 1, '2013-07-19 21:57:48', NULL, '0000-00-00 00:00:00'),
(1938, 'en', 'Interest', 1, '2013-07-19 21:58:01', NULL, '0000-00-00 00:00:00'),
(1938, 'id', 'Minat', 1, '2013-07-19 21:58:01', NULL, '0000-00-00 00:00:00'),
(1939, 'en', 'Job Interest Type', 1, '2013-07-19 21:58:31', NULL, '0000-00-00 00:00:00'),
(1939, 'id', 'Jenis Minat Kerja', 1, '2013-07-19 21:58:31', NULL, '0000-00-00 00:00:00'),
(1940, 'en', 'Job Interest Type', 1, '2013-07-19 21:58:57', NULL, '0000-00-00 00:00:00'),
(1940, 'id', 'Jenis Minat Kerja', 1, '2013-07-19 21:58:57', NULL, '0000-00-00 00:00:00'),
(1941, 'en', 'Application Form File Type', 1, '2013-07-19 21:59:30', NULL, '0000-00-00 00:00:00'),
(1941, 'id', 'Jenis File Form Aplikasi', 1, '2013-07-19 21:59:30', NULL, '0000-00-00 00:00:00'),
(1942, 'en', 'Application Form File', 1, '2013-07-19 21:59:58', NULL, '0000-00-00 00:00:00'),
(1942, 'id', 'File Form Aplikasi', 1, '2013-07-19 21:59:58', NULL, '0000-00-00 00:00:00'),
(1943, 'en', 'Pieces', 1, '2013-07-25 14:10:42', NULL, '0000-00-00 00:00:00'),
(1943, 'id', 'Buah', 1, '2013-07-25 14:10:42', NULL, '0000-00-00 00:00:00'),
(1944, 'en', 'Stamp', 1, '2013-07-25 14:16:19', NULL, '0000-00-00 00:00:00'),
(1944, 'id', 'Materai', 1, '2013-07-25 14:16:19', NULL, '0000-00-00 00:00:00'),
(1945, 'en', 'Stamp Duty Information', 1, '2013-07-29 10:36:41', NULL, '0000-00-00 00:00:00'),
(1945, 'id', 'Informasi Permintaan Materai', 1, '2013-07-29 10:36:41', NULL, '0000-00-00 00:00:00'),
(1946, 'en', 'Stamp Type', 1, '2013-07-29 10:36:58', NULL, '0000-00-00 00:00:00'),
(1946, 'id', 'Jenis Materai', 1, '2013-07-29 10:36:58', NULL, '0000-00-00 00:00:00'),
(1947, 'en', 'Stamp Type Data', 1, '2013-07-29 10:37:21', NULL, '0000-00-00 00:00:00'),
(1947, 'id', 'Data Jenis Materai', 1, '2013-07-29 10:37:21', NULL, '0000-00-00 00:00:00'),
(1948, 'en', 'One of The Quantity Of Stamp Duty Is Empty', 1, '2013-07-29 10:39:57', NULL, '0000-00-00 00:00:00'),
(1948, 'id', 'Salah Satu Nilai Jumlah Permintaan Materai Ada Yang Kosong', 1, '2013-07-29 10:39:57', NULL, '0000-00-00 00:00:00'),
(1949, 'en', 'Technical Competence Type', 1, '2013-07-29 10:57:30', NULL, '0000-00-00 00:00:00'),
(1949, 'id', 'Jenis Kompetensi Teknis', 1, '2013-07-29 10:57:30', NULL, '0000-00-00 00:00:00'),
(1950, 'en', 'Quality', 1, '2013-07-29 10:57:46', NULL, '0000-00-00 00:00:00'),
(1950, 'id', 'Kualitas', 1, '2013-07-29 10:57:46', NULL, '0000-00-00 00:00:00'),
(1951, 'en', 'Work Experience', 1, '2013-07-29 10:59:22', NULL, '0000-00-00 00:00:00'),
(1951, 'id', 'Pengalaman Kerja', 1, '2013-07-29 10:59:22', NULL, '0000-00-00 00:00:00'),
(1952, 'en', 'Division', 1, '2013-07-29 10:59:39', NULL, '0000-00-00 00:00:00'),
(1952, 'id', 'Divisi', 1, '2013-07-29 10:59:39', NULL, '0000-00-00 00:00:00'),
(1953, 'en', 'Job Description', 1, '2013-07-29 10:59:56', NULL, '0000-00-00 00:00:00'),
(1953, 'id', 'Deskripsi Kerja', 1, '2013-07-29 10:59:56', NULL, '0000-00-00 00:00:00'),
(1954, 'en', 'Achievement', 1, '2013-07-29 11:00:12', NULL, '0000-00-00 00:00:00'),
(1954, 'id', 'Penghargaan', 1, '2013-07-29 11:00:12', NULL, '0000-00-00 00:00:00'),
(1955, 'en', 'Salary Information', 1, '2013-07-29 11:00:28', NULL, '0000-00-00 00:00:00'),
(1955, 'id', 'Informasi Gaji', 1, '2013-07-29 11:00:28', NULL, '0000-00-00 00:00:00'),
(1956, 'en', 'Terminate Reason', 1, '2013-07-29 11:01:06', NULL, '0000-00-00 00:00:00'),
(1956, 'id', 'Alasan Pengunduran Diri', 1, '2013-07-29 11:01:06', NULL, '0000-00-00 00:00:00'),
(1957, 'en', 'Termination Note', 1, '2013-07-29 11:01:46', NULL, '0000-00-00 00:00:00'),
(1957, 'id', 'Catatan Pengunduran Diri', 1, '2013-07-29 11:01:46', NULL, '0000-00-00 00:00:00'),
(1958, 'en', 'Job Interest', 1, '2013-07-29 11:03:26', NULL, '0000-00-00 00:00:00'),
(1958, 'id', 'Minat Kerja', 1, '2013-07-29 11:03:26', NULL, '0000-00-00 00:00:00'),
(1959, 'en', 'Quality Type', 1, '2013-07-29 11:05:22', NULL, '0000-00-00 00:00:00'),
(1959, 'id', 'Jenis Kualitas', 1, '2013-07-29 11:05:22', NULL, '0000-00-00 00:00:00'),
(1960, 'en', 'Test Type', 1, '2013-07-29 11:05:48', NULL, '0000-00-00 00:00:00'),
(1960, 'id', 'Jenis Test', 1, '2013-07-29 11:05:48', NULL, '0000-00-00 00:00:00'),
(1961, 'en', 'Reference Number (F&A Transaction) Information', 1, '2013-07-30 08:55:19', NULL, '0000-00-00 00:00:00'),
(1961, 'id', 'Informasi Nomor Referensi (Transaksi Keuangan)', 1, '2013-07-30 08:55:19', NULL, '0000-00-00 00:00:00'),
(1962, 'en', 'Confirm Date', 1, '2013-07-30 08:55:39', NULL, '0000-00-00 00:00:00'),
(1962, 'id', 'Tanggal Konfirmasi', 1, '2013-07-30 08:55:39', NULL, '0000-00-00 00:00:00'),
(1963, 'en', 'Confirm Notes', 1, '2013-07-30 08:55:58', NULL, '0000-00-00 00:00:00'),
(1963, 'id', 'Catatan Konfirmasi', 1, '2013-07-30 08:55:58', NULL, '0000-00-00 00:00:00'),
(1964, 'en', 'Stamp Duty Costing', 1, '2013-07-30 08:56:32', NULL, '0000-00-00 00:00:00'),
(1964, 'id', 'Pembiayaan Permintaan Materai', 1, '2013-07-30 08:56:32', NULL, '0000-00-00 00:00:00'),
(1965, 'en', 'Stamp Duty', 1, '2013-07-30 08:57:00', NULL, '0000-00-00 00:00:00'),
(1965, 'id', 'Permintaan Materai', 1, '2013-07-30 08:57:00', NULL, '0000-00-00 00:00:00'),
(1966, 'en', 'Effective Date', 1, '2013-08-01 09:13:52', NULL, '0000-00-00 00:00:00'),
(1966, 'id', 'Tanggal Efektif', 1, '2013-08-01 09:13:52', NULL, '0000-00-00 00:00:00'),
(1967, 'en', 'Employee Work Unit', 1, '2013-08-01 09:14:31', NULL, '0000-00-00 00:00:00'),
(1967, 'id', 'Satuan Kerja Pegawai', 1, '2013-08-01 09:14:31', NULL, '0000-00-00 00:00:00'),
(1968, 'en', 'Employee Structural Position', 1, '2013-08-01 09:15:00', NULL, '0000-00-00 00:00:00'),
(1968, 'id', 'Jabatan Struktural Pegawai', 1, '2013-08-01 09:15:00', NULL, '0000-00-00 00:00:00'),
(1969, 'en', 'Kg', 1, '2013-08-01 09:15:38', NULL, '0000-00-00 00:00:00'),
(1969, 'id', 'Kg', 1, '2013-08-01 09:15:38', NULL, '0000-00-00 00:00:00'),
(1970, 'en', 'Cm', 1, '2013-08-01 09:15:55', NULL, '0000-00-00 00:00:00'),
(1970, 'id', 'Cm', 1, '2013-08-01 09:15:55', NULL, '0000-00-00 00:00:00'),
(1971, 'en', 'Registration City', 1, '2013-08-01 09:19:50', NULL, '0000-00-00 00:00:00'),
(1971, 'id', 'Kota Rekruitmen', 1, '2013-08-01 09:19:50', NULL, '0000-00-00 00:00:00'),
(1972, 'en', 'Salutation', 1, '2013-08-01 09:20:04', NULL, '0000-00-00 00:00:00'),
(1972, 'id', 'Sapaan', 1, '2013-08-01 09:20:04', NULL, '0000-00-00 00:00:00'),
(1973, 'en', 'Birth Place', 1, '2013-08-01 09:20:22', NULL, '0000-00-00 00:00:00'),
(1973, 'id', 'Tempat Lahir', 1, '2013-08-01 09:20:22', NULL, '0000-00-00 00:00:00'),
(1974, 'en', 'Marital Status', 1, '2013-08-01 09:20:39', NULL, '0000-00-00 00:00:00'),
(1974, 'id', 'Status Nikah', 1, '2013-08-01 09:20:39', NULL, '0000-00-00 00:00:00'),
(1975, 'en', 'Marital Code', 1, '2013-08-01 09:20:52', NULL, '0000-00-00 00:00:00'),
(1975, 'id', 'Kode Nikah', 1, '2013-08-01 09:20:52', NULL, '0000-00-00 00:00:00'),
(1976, 'en', 'Child Count', 1, '2013-08-01 09:21:06', NULL, '0000-00-00 00:00:00'),
(1976, 'id', 'Jumlah Anak', 1, '2013-08-01 09:21:06', NULL, '0000-00-00 00:00:00'),
(1977, 'en', 'Last Child Age', 1, '2013-08-01 09:22:03', NULL, '0000-00-00 00:00:00'),
(1977, 'id', 'Usia Anak Terakhir', 1, '2013-08-01 09:22:03', NULL, '0000-00-00 00:00:00'),
(1978, 'en', 'Religion', 1, '2013-08-01 09:22:18', NULL, '0000-00-00 00:00:00'),
(1978, 'id', 'Agama', 1, '2013-08-01 09:22:18', NULL, '0000-00-00 00:00:00'),
(1979, 'en', 'Nationality', 1, '2013-08-01 09:22:43', NULL, '0000-00-00 00:00:00'),
(1979, 'id', 'Kewarganegaraan', 1, '2013-08-01 09:22:43', NULL, '0000-00-00 00:00:00'),
(1980, 'en', 'Dialect', 1, '2013-08-01 09:22:59', NULL, '0000-00-00 00:00:00'),
(1980, 'id', 'Logat Bahasa', 1, '2013-08-01 09:22:59', NULL, '0000-00-00 00:00:00'),
(1981, 'en', 'Blood Type', 1, '2013-08-01 09:24:09', NULL, '0000-00-00 00:00:00'),
(1981, 'id', 'Golongan Darah', 1, '2013-08-01 09:24:09', NULL, '0000-00-00 00:00:00'),
(1982, 'en', 'Head Size', 1, '2013-08-01 09:24:24', NULL, '0000-00-00 00:00:00'),
(1982, 'id', 'Ukuran Kepala', 1, '2013-08-01 09:24:24', NULL, '0000-00-00 00:00:00'),
(1983, 'en', 'Clothes Size', 1, '2013-08-01 09:24:42', NULL, '0000-00-00 00:00:00'),
(1983, 'id', 'Ukuran Baju', 1, '2013-08-01 09:24:42', NULL, '0000-00-00 00:00:00'),
(1984, 'en', 'S', 1, '2013-08-01 09:24:48', NULL, '0000-00-00 00:00:00'),
(1984, 'id', 'S', 1, '2013-08-01 09:24:48', NULL, '0000-00-00 00:00:00'),
(1985, 'en', 'M', 1, '2013-08-01 09:24:55', NULL, '0000-00-00 00:00:00'),
(1985, 'id', 'M', 1, '2013-08-01 09:24:55', NULL, '0000-00-00 00:00:00'),
(1986, 'en', 'L', 1, '2013-08-01 09:25:07', NULL, '0000-00-00 00:00:00'),
(1986, 'id', 'L', 1, '2013-08-01 09:25:07', NULL, '0000-00-00 00:00:00'),
(1987, 'en', 'XL', 1, '2013-08-01 09:25:15', NULL, '0000-00-00 00:00:00'),
(1987, 'id', 'XL', 1, '2013-08-01 09:25:15', NULL, '0000-00-00 00:00:00'),
(1988, 'en', 'XXL', 1, '2013-08-01 09:25:23', NULL, '0000-00-00 00:00:00'),
(1988, 'id', 'XXL', 1, '2013-08-01 09:25:23', NULL, '0000-00-00 00:00:00'),
(1989, 'en', 'XXXL', 1, '2013-08-01 09:25:33', NULL, '0000-00-00 00:00:00'),
(1989, 'id', 'XXXL', 1, '2013-08-01 09:25:33', NULL, '0000-00-00 00:00:00'),
(1990, 'en', 'Applicant', 1, '2013-08-01 09:26:12', NULL, '0000-00-00 00:00:00'),
(1990, 'id', 'Pelamar', 1, '2013-08-01 09:26:12', NULL, '0000-00-00 00:00:00'),
(1991, 'en', 'Pants Size', 1, '2013-08-01 09:26:32', NULL, '0000-00-00 00:00:00'),
(1991, 'id', 'Ukuran Celana', 1, '2013-08-01 09:26:32', NULL, '0000-00-00 00:00:00'),
(1992, 'en', 'Shoe Size', 1, '2013-08-01 09:26:48', NULL, '0000-00-00 00:00:00'),
(1992, 'id', 'Ukuran Sepatu', 1, '2013-08-01 09:26:48', NULL, '0000-00-00 00:00:00'),
(1993, 'en', 'Disability Type', 1, '2013-08-01 09:27:42', NULL, '0000-00-00 00:00:00'),
(1993, 'id', 'Jenis Cacat', 1, '2013-08-01 09:27:42', NULL, '0000-00-00 00:00:00'),
(1994, 'en', 'Hobby', 1, '2013-08-01 09:29:56', NULL, '0000-00-00 00:00:00'),
(1994, 'id', 'Hobi', 1, '2013-08-01 09:29:56', NULL, '0000-00-00 00:00:00'),
(1995, 'en', 'Strength', 1, '2013-08-01 09:30:27', NULL, '0000-00-00 00:00:00'),
(1995, 'id', 'Kelebihan / Kekuatan', 1, '2013-08-01 09:30:27', NULL, '0000-00-00 00:00:00'),
(1996, 'en', 'Weakness', 1, '2013-08-01 09:30:39', NULL, '0000-00-00 00:00:00'),
(1996, 'id', 'Kelemahan', 1, '2013-08-01 09:30:39', NULL, '0000-00-00 00:00:00'),
(1997, 'en', 'How To Handle Your Weakness', 1, '2013-08-01 09:36:29', NULL, '0000-00-00 00:00:00'),
(1997, 'id', 'Bagaimana Cara Mengatasi Kelemahan Tersebut', 1, '2013-08-01 09:36:29', NULL, '0000-00-00 00:00:00'),
(1998, 'en', 'Prefer Work Type', 1, '2013-08-01 09:35:53', NULL, '0000-00-00 00:00:00'),
(1998, 'id', 'Etos / Model Kerja Yang Disukai', 1, '2013-08-01 09:35:53', NULL, '0000-00-00 00:00:00'),
(1999, 'en', 'Not Prefer Work Type', 1, '2013-08-01 09:37:04', NULL, '0000-00-00 00:00:00'),
(1999, 'id', 'Etos / Model Kerja Yang Tidak Disukai', 1, '2013-08-01 09:37:04', NULL, '0000-00-00 00:00:00'),
(2000, 'en', 'Last Salary Amount', 1, '2013-08-01 09:38:05', NULL, '0000-00-00 00:00:00'),
(2000, 'id', 'Nominal Gaji Terakhir Diterima', 1, '2013-08-01 09:38:05', NULL, '0000-00-00 00:00:00'),
(2001, 'en', 'Prefer Salary Amount', 1, '2013-08-01 09:38:31', NULL, '0000-00-00 00:00:00'),
(2001, 'id', 'Nominal Gaji Yang Diinginkan', 1, '2013-08-01 09:38:31', NULL, '0000-00-00 00:00:00'),
(2002, 'en', 'Reason To Quit From The Last Company', 1, '2013-08-01 09:39:51', NULL, '0000-00-00 00:00:00'),
(2002, 'id', 'Alasan Mengundurkan Diri Pada Perusahaan Sebelumnya', 1, '2013-08-01 09:39:51', NULL, '0000-00-00 00:00:00'),
(2003, 'en', 'Apply Motivation To This Company', 1, '2013-08-01 09:40:39', NULL, '0000-00-00 00:00:00'),
(2003, 'id', 'Motivasi Melamar di Perusahaan Ini', 1, '2013-08-01 09:40:39', NULL, '0000-00-00 00:00:00'),
(2004, 'en', 'Placement Reason In This City', 1, '2013-08-01 09:41:26', NULL, '0000-00-00 00:00:00'),
(2004, 'id', 'Alasan Tinggal di Kota Ini', 1, '2013-08-01 09:41:26', NULL, '0000-00-00 00:00:00'),
(2005, 'en', 'Prefer Position', 1, '2013-08-01 09:42:06', NULL, '0000-00-00 00:00:00'),
(2005, 'id', 'Jenis Pekerjaan dan Posisi Apa Yang Dinginkan', 1, '2013-08-01 09:42:06', NULL, '0000-00-00 00:00:00'),
(2006, 'en', 'How Do They Know About This Workplace / Company', 1, '2013-08-01 09:43:27', NULL, '0000-00-00 00:00:00'),
(2006, 'id', 'Apa Yang Diketahui Tentang Perusahaan Ini', 1, '2013-08-01 09:43:27', NULL, '0000-00-00 00:00:00'),
(2007, 'en', 'What They Want To Do When They Are Accepted', 1, '2013-08-01 09:49:21', NULL, '0000-00-00 00:00:00'),
(2007, 'id', 'Apa Yang Dilakukan Jika Diterima Di Perusahaan Ini', 1, '2013-08-01 09:49:21', NULL, '0000-00-00 00:00:00'),
(2008, 'en', 'Tri Dharma Implementation', 1, '2013-08-01 09:45:51', NULL, '0000-00-00 00:00:00'),
(2008, 'id', 'Apa Yang Diketahui Tentang Tri Dharma Universitas, dan Bagaimana Implementasinya di Masyarakat', 1, '2013-08-01 09:45:51', NULL, '0000-00-00 00:00:00'),
(2009, 'en', 'Suggestion', 1, '2013-08-01 09:47:51', NULL, '0000-00-00 00:00:00'),
(2009, 'id', 'Saran', 1, '2013-08-01 09:47:51', NULL, '0000-00-00 00:00:00'),
(2010, 'en', 'What They Want To Do At Spare Time', 1, '2013-08-01 09:49:05', NULL, '0000-00-00 00:00:00'),
(2010, 'id', 'Apa Yang Dilakukan Di Waktu Senggang', 1, '2013-08-01 09:49:05', NULL, '0000-00-00 00:00:00'),
(2011, 'en', 'Reasons To Join To This Company', 1, '2013-08-01 09:49:59', NULL, '0000-00-00 00:00:00'),
(2011, 'id', 'Alasan Ingin Bergabung Ke Perusahaan Ini', 1, '2013-08-01 09:49:59', NULL, '0000-00-00 00:00:00'),
(2012, 'en', 'Exchange Rate Info', 1, '2013-08-12 14:36:49', NULL, '0000-00-00 00:00:00'),
(2012, 'id', 'Informasi Kurs', 1, '2013-08-12 14:36:49', NULL, '0000-00-00 00:00:00'),
(2013, 'en', 'Claim', 1, '2013-08-12 15:57:00', NULL, '0000-00-00 00:00:00'),
(2013, 'id', 'Klaim', 1, '2013-08-12 15:57:00', NULL, '0000-00-00 00:00:00'),
(2014, 'en', 'Total Approved', 1, '2013-08-12 15:57:43', NULL, '0000-00-00 00:00:00'),
(2014, 'id', 'Total disetujui', 1, '2013-08-12 15:57:43', NULL, '0000-00-00 00:00:00'),
(2015, 'en', 'Parking Date', 1, '2013-08-12 15:59:00', NULL, '0000-00-00 00:00:00'),
(2015, 'id', 'Tanggal Parkir', 1, '2013-08-12 15:59:00', NULL, '0000-00-00 00:00:00'),
(2016, 'en', 'Fuel Date', 1, '2013-08-12 15:59:20', NULL, '0000-00-00 00:00:00'),
(2016, 'id', 'Fuel Date', 1, '2013-08-12 15:59:20', NULL, '0000-00-00 00:00:00'),
(2017, 'en', 'Toll Date', 1, '2013-08-12 15:59:33', NULL, '0000-00-00 00:00:00'),
(2017, 'id', 'Toll Date', 1, '2013-08-12 15:59:33', NULL, '0000-00-00 00:00:00'),
(2018, 'en', 'Toll Reimbursement Information', 1, '2013-08-12 16:01:06', NULL, '0000-00-00 00:00:00'),
(2018, 'id', 'Toll Reimbursement Information', 1, '2013-08-12 16:01:06', NULL, '0000-00-00 00:00:00'),
(2019, 'en', 'Parking Reimbursement Information', 1, '2013-08-12 16:02:25', NULL, '0000-00-00 00:00:00'),
(2019, 'id', 'Parking Reimbursement Information', 1, '2013-08-12 16:02:25', NULL, '0000-00-00 00:00:00'),
(2020, 'en', 'Fuel Reimbursement Information', 1, '2013-08-12 16:01:52', NULL, '0000-00-00 00:00:00'),
(2020, 'id', 'Fuel Reimbursement Information', 1, '2013-08-12 16:01:52', NULL, '0000-00-00 00:00:00'),
(2021, 'en', 'MSISDN', 1, '2013-08-16 18:40:20', NULL, '0000-00-00 00:00:00'),
(2021, 'id', 'MSISDN', 1, '2013-08-16 18:40:20', NULL, '0000-00-00 00:00:00'),
(2022, 'en', 'IMEI', 1, '2013-08-16 18:40:39', NULL, '0000-00-00 00:00:00'),
(2022, 'id', 'IMEI', 1, '2013-08-16 18:40:39', NULL, '0000-00-00 00:00:00'),
(2023, 'en', 'Unique ID', 1, '2013-08-16 18:41:02', NULL, '0000-00-00 00:00:00'),
(2023, 'id', 'ID Unik', 1, '2013-08-16 18:41:02', NULL, '0000-00-00 00:00:00'),
(2024, 'en', 'Start Salary Amount', 1, '2013-08-19 11:24:42', NULL, '0000-00-00 00:00:00'),
(2024, 'id', 'Gaji Awal', 1, '2013-08-19 11:24:42', NULL, '0000-00-00 00:00:00'),
(2025, 'en', 'Start Salary Payment Type', 1, '2013-08-19 11:25:06', NULL, '0000-00-00 00:00:00'),
(2025, 'id', 'Jenis Pembayaran Gaji Awal', 1, '2013-08-19 11:25:06', NULL, '0000-00-00 00:00:00'),
(2026, 'en', 'Last Salary Amount', 1, '2013-08-19 11:26:02', NULL, '0000-00-00 00:00:00'),
(2026, 'id', 'Gaji Akhir', 1, '2013-08-19 11:26:02', NULL, '0000-00-00 00:00:00'),
(2027, 'en', 'Last Salary Payment Type', 1, '2013-08-19 11:26:29', NULL, '0000-00-00 00:00:00'),
(2027, 'id', 'Jenis Pembayaran Gaji Akhir', 1, '2013-08-19 11:26:29', NULL, '0000-00-00 00:00:00'),
(2028, 'en', 'Work Period Information', 1, '2013-08-19 11:29:21', NULL, '0000-00-00 00:00:00'),
(2028, 'id', 'Informasi Masa Kerja', 1, '2013-08-19 11:29:21', NULL, '0000-00-00 00:00:00'),
(2029, 'en', 'Terminate Reason Type', 1, '2013-08-19 11:29:50', NULL, '0000-00-00 00:00:00'),
(2029, 'id', 'Jenis Alasan Pengunduran Diri', 1, '2013-08-19 11:29:50', NULL, '0000-00-00 00:00:00'),
(2030, 'en', 'GPS Device', 1, '2013-08-21 10:01:25', NULL, '0000-00-00 00:00:00'),
(2030, 'id', 'Perangkat GPS', 1, '2013-08-21 10:01:25', NULL, '0000-00-00 00:00:00'),
(2031, 'en', 'SOS MSISDN 1', 1, '2013-08-21 10:01:43', NULL, '0000-00-00 00:00:00'),
(2031, 'id', 'SOS MSISDN 1', 1, '2013-08-21 10:01:43', NULL, '0000-00-00 00:00:00'),
(2032, 'en', 'SOS MSISDN 2', 1, '2013-08-21 10:02:38', NULL, '0000-00-00 00:00:00'),
(2032, 'id', 'SOS MSISDN 2', 1, '2013-08-21 10:02:38', NULL, '0000-00-00 00:00:00'),
(2033, 'en', 'SOS MSISDN 3', 1, '2013-08-21 10:02:51', NULL, '0000-00-00 00:00:00'),
(2033, 'id', 'SOS MSISDN 3', 1, '2013-08-21 10:02:51', NULL, '0000-00-00 00:00:00'),
(2034, 'en', 'GPS Icons', 1, '2013-08-21 10:36:00', NULL, '0000-00-00 00:00:00'),
(2034, 'id', 'Ikon GPS', 1, '2013-08-21 10:36:00', NULL, '0000-00-00 00:00:00'),
(2035, 'en', 'Vehicle', 1, '2013-08-21 10:36:25', NULL, '0000-00-00 00:00:00'),
(2035, 'id', 'Kendaraan', 1, '2013-08-21 10:36:25', NULL, '0000-00-00 00:00:00'),
(2036, 'en', 'Operational Vehicle', 1, '2013-08-21 10:36:51', NULL, '0000-00-00 00:00:00'),
(2036, 'id', 'Kendaraan Operasional', 1, '2013-08-21 10:36:51', NULL, '0000-00-00 00:00:00'),
(2037, 'en', 'Assign', 1, '2013-08-21 10:37:53', NULL, '0000-00-00 00:00:00'),
(2037, 'id', 'Tentukan', 1, '2013-08-21 10:37:53', NULL, '0000-00-00 00:00:00'),
(2038, 'en', 'Other Vehicle', 1, '2013-08-21 10:38:13', NULL, '0000-00-00 00:00:00'),
(2038, 'id', 'Kendaraan Lainnya', 1, '2013-08-21 10:38:13', NULL, '0000-00-00 00:00:00'),
(2039, 'en', 'Realization Status', 1, '2013-08-21 10:40:57', NULL, '0000-00-00 00:00:00'),
(2039, 'id', 'Status Realisasi', 1, '2013-08-21 10:40:57', NULL, '0000-00-00 00:00:00'),
(2040, 'en', 'Charge Information', 1, '2013-08-21 10:42:07', NULL, '0000-00-00 00:00:00'),
(2040, 'id', 'Informasi Pembebanan Biaya', 1, '2013-08-21 10:42:07', NULL, '0000-00-00 00:00:00'),
(2041, 'en', 'Charge To', 1, '2013-08-21 10:42:27', NULL, '0000-00-00 00:00:00'),
(2041, 'id', 'Dibebankan Ke', 1, '2013-08-21 10:42:27', NULL, '0000-00-00 00:00:00'),
(2042, 'en', 'Other', 1, '2013-08-21 10:42:42', NULL, '0000-00-00 00:00:00'),
(2042, 'id', 'Other', 1, '2013-08-21 10:42:42', NULL, '0000-00-00 00:00:00'),
(2043, 'en', 'Charge Other', 1, '2013-08-21 10:43:18', NULL, '0000-00-00 00:00:00'),
(2043, 'id', 'Dibebankan Ke Lainnya', 1, '2013-08-21 10:43:18', NULL, '0000-00-00 00:00:00'),
(2044, 'en', 'Taxi Voucher Information', 1, '2013-08-21 10:43:38', NULL, '0000-00-00 00:00:00'),
(2044, 'id', 'Informasi Voucher Taksi', 1, '2013-08-21 10:43:38', NULL, '0000-00-00 00:00:00'),
(2045, 'en', 'Usage Date', 1, '2013-08-21 10:43:56', NULL, '0000-00-00 00:00:00'),
(2045, 'id', 'Tanggal Penggunaan', 1, '2013-08-21 10:43:56', NULL, '0000-00-00 00:00:00'),
(2046, 'en', 'From', 1, '2013-08-21 10:44:22', NULL, '0000-00-00 00:00:00'),
(2046, 'id', 'Berangkat Dari', 1, '2013-08-21 10:44:22', NULL, '0000-00-00 00:00:00'),
(2047, 'en', 'To', 1, '2013-08-21 10:44:35', NULL, '0000-00-00 00:00:00'),
(2047, 'id', 'Tujuan', 1, '2013-08-21 10:44:35', NULL, '0000-00-00 00:00:00'),
(2048, 'en', 'One Of The Usage Date Is Empty', 1, '2013-08-21 10:45:25', NULL, '0000-00-00 00:00:00'),
(2048, 'id', 'Salah Satu Dari Tanggal Penggunaan Masih Kosong', 1, '2013-08-21 10:45:25', NULL, '0000-00-00 00:00:00'),
(2049, 'en', 'Taxi Voucher', 1, '2013-08-21 10:45:55', NULL, '0000-00-00 00:00:00'),
(2049, 'id', 'Voucher Taksi', 1, '2013-08-21 10:45:55', NULL, '0000-00-00 00:00:00'),
(2050, 'en', 'Cancel Date', 1, '2013-08-21 10:46:32', NULL, '0000-00-00 00:00:00'),
(2050, 'id', 'Tanggal Pembatalan', 1, '2013-08-21 10:46:32', NULL, '0000-00-00 00:00:00'),
(2051, 'en', 'One Of The Detail Status Is Empty', 1, '2013-08-21 10:47:21', NULL, '0000-00-00 00:00:00'),
(2051, 'id', 'Salah Satu Dari Status Detail Masih Kosong', 1, '2013-08-21 10:47:21', NULL, '0000-00-00 00:00:00'),
(2052, 'en', 'Taxi Voucher Request Information', 1, '2013-08-26 14:52:36', NULL, '0000-00-00 00:00:00'),
(2052, 'id', 'Informasi Pengajuan Voucher Taksi', 1, '2013-08-26 14:52:36', NULL, '0000-00-00 00:00:00'),
(2053, 'en', 'Taxi Voucher Realization Information', 1, '2013-08-26 14:53:21', NULL, '0000-00-00 00:00:00'),
(2053, 'id', 'Informasi Realisasi Voucher Taksi', 1, '2013-08-26 14:53:21', NULL, '0000-00-00 00:00:00'),
(2054, 'en', 'Depart Date', 1, '2013-08-26 14:53:58', NULL, '0000-00-00 00:00:00'),
(2054, 'id', 'Tanggal Berangkat', 1, '2013-08-26 14:53:58', NULL, '0000-00-00 00:00:00'),
(2055, 'en', 'Arrival Date', 1, '2013-08-26 14:54:18', NULL, '0000-00-00 00:00:00'),
(2055, 'id', 'Tanggal Tiba', 1, '2013-08-26 14:54:18', NULL, '0000-00-00 00:00:00'),
(2056, 'en', 'One Of The Departure Date Is Empty', 1, '2013-08-26 14:55:19', NULL, '0000-00-00 00:00:00'),
(2056, 'id', 'Salah Satu Dari Tanggal Berangkat Masih Kosong', 1, '2013-08-26 14:55:19', NULL, '0000-00-00 00:00:00'),
(2057, 'en', 'One Of The Arrival Date Is Empty', 1, '2013-08-26 14:55:55', NULL, '0000-00-00 00:00:00'),
(2057, 'id', 'Salah Satu Dari Tanggal Tiba Masih Kosong', 1, '2013-08-26 14:55:55', NULL, '0000-00-00 00:00:00'),
(2058, 'en', 'One Of The Realization Amount Is Empty', 1, '2013-08-26 14:56:48', NULL, '0000-00-00 00:00:00'),
(2058, 'id', 'Salah Satu Dari Nominal Realisasi Masih Kosong', 1, '2013-08-26 14:56:48', NULL, '0000-00-00 00:00:00'),
(2059, 'en', 'Realization Status Information', 1, '2013-08-26 14:58:08', NULL, '0000-00-00 00:00:00'),
(2059, 'id', 'Informasi Status Realisasi', 1, '2013-08-26 14:58:08', NULL, '0000-00-00 00:00:00'),
(2060, 'en', 'Realization Approvor (Officer)', 1, '2013-08-26 14:59:21', NULL, '0000-00-00 00:00:00'),
(2060, 'id', 'Pemberi Persetujuan Realisasi (Officer / Petugas)', 1, '2013-08-26 14:59:21', NULL, '0000-00-00 00:00:00'),
(2061, 'en', 'Realization Status Date', 1, '2013-08-26 15:00:34', NULL, '0000-00-00 00:00:00'),
(2061, 'id', 'Tanggal Status Realisasi', 1, '2013-08-26 15:00:34', NULL, '0000-00-00 00:00:00'),
(2062, 'en', 'Realization Status Notes', 1, '2013-08-26 15:01:45', NULL, '0000-00-00 00:00:00'),
(2062, 'id', 'Catatan Status Realisasi', 1, '2013-08-26 15:01:46', NULL, '0000-00-00 00:00:00'),
(2063, 'en', 'Fuel Type Data', 1, '2013-08-26 15:15:36', NULL, '0000-00-00 00:00:00'),
(2063, 'id', 'Data Jenis Bahan Bakar', 1, '2013-08-26 15:15:36', NULL, '0000-00-00 00:00:00'),
(2064, 'en', 'Price Per Liter', 1, '2013-08-26 15:16:01', NULL, '0000-00-00 00:00:00'),
(2064, 'id', 'Harga Per Liter', 1, '2013-08-26 15:16:01', NULL, '0000-00-00 00:00:00'),
(2065, 'en', 'Request Number', 1, '2013-08-26 16:24:40', NULL, '0000-00-00 00:00:00'),
(2065, 'id', 'Nomor Pengajuan', 1, '2013-08-26 16:24:40', NULL, '0000-00-00 00:00:00'),
(2066, 'en', 'CoA', 1, '2013-09-04 08:14:50', NULL, '0000-00-00 00:00:00'),
(2066, 'id', 'CoA', 1, '2013-09-04 08:14:50', NULL, '0000-00-00 00:00:00'),
(2067, 'en', 'CoA Group', 1, '2013-09-04 08:15:06', NULL, '0000-00-00 00:00:00');
INSERT INTO `gtfw_key_text` (`key_text_key_id`, `key_text_lang_code`, `key_text_key_text`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`) VALUES
(2067, 'id', 'Grup CoA', 1, '2013-09-04 08:15:06', NULL, '0000-00-00 00:00:00'),
(2068, 'en', 'Default Currency', 1, '2013-09-04 08:20:28', NULL, '0000-00-00 00:00:00'),
(2068, 'id', 'Mata Uang Default', 1, '2013-09-04 08:20:28', NULL, '0000-00-00 00:00:00'),
(2069, 'en', 'Is Cash Account', 1, '2013-09-04 08:26:19', NULL, '0000-00-00 00:00:00'),
(2069, 'id', 'Status Rekening Kas', 1, '2013-09-04 08:26:19', NULL, '0000-00-00 00:00:00'),
(2070, 'en', 'Is Current Year Income Statement', 1, '2013-09-04 08:23:54', NULL, '0000-00-00 00:00:00'),
(2070, 'id', 'Status Laba Rugi Tahun Berjalan', 1, '2013-09-04 08:23:54', NULL, '0000-00-00 00:00:00'),
(2071, 'en', 'Normal Balance', 1, '2013-09-04 08:18:06', NULL, '0000-00-00 00:00:00'),
(2071, 'id', 'Saldo Normal', 1, '2013-09-04 08:18:06', NULL, '0000-00-00 00:00:00'),
(2072, 'en', 'CoA Parent', 1, '2013-09-04 08:18:31', NULL, '0000-00-00 00:00:00'),
(2072, 'id', 'Parent CoA', 1, '2013-09-04 08:18:31', NULL, '0000-00-00 00:00:00'),
(2073, 'en', 'Debit', 1, '2013-09-04 08:18:45', NULL, '0000-00-00 00:00:00'),
(2073, 'id', 'Debet', 1, '2013-09-04 08:18:45', NULL, '0000-00-00 00:00:00'),
(2074, 'en', 'Credit', 1, '2013-09-04 08:18:54', NULL, '0000-00-00 00:00:00'),
(2074, 'id', 'Kredit', 1, '2013-09-04 08:18:54', NULL, '0000-00-00 00:00:00'),
(2075, 'en', 'CoA Code', 1, '2013-09-04 08:19:21', NULL, '0000-00-00 00:00:00'),
(2075, 'id', 'Kode CoA', 1, '2013-09-04 08:19:21', NULL, '0000-00-00 00:00:00'),
(2076, 'en', 'CoA Name', 1, '2013-09-04 08:19:36', NULL, '0000-00-00 00:00:00'),
(2076, 'id', 'Nama CoA', 1, '2013-09-04 08:19:36', NULL, '0000-00-00 00:00:00'),
(2077, 'en', 'Default Currency', 1, '2013-09-04 08:20:09', NULL, '0000-00-00 00:00:00'),
(2077, 'id', 'Mata Uang Default', 1, '2013-09-04 08:20:09', NULL, '0000-00-00 00:00:00'),
(2078, 'en', 'Cost Type', 1, '2013-09-04 08:22:31', NULL, '0000-00-00 00:00:00'),
(2078, 'id', 'Jenis Biaya', 1, '2013-09-04 08:22:31', NULL, '0000-00-00 00:00:00'),
(2079, 'en', 'Is Lumpsum', 1, '2013-09-04 08:26:46', NULL, '0000-00-00 00:00:00'),
(2079, 'id', 'Lumpsum Status', 1, '2013-09-04 08:26:46', NULL, '0000-00-00 00:00:00'),
(2080, 'en', 'Is At Cost', 1, '2013-09-04 08:27:07', NULL, '0000-00-00 00:00:00'),
(2080, 'id', 'Status At Cost', 1, '2013-09-04 08:27:07', NULL, '0000-00-00 00:00:00'),
(2081, 'en', 'Is Dynamic', 1, '2013-09-04 08:28:08', NULL, '0000-00-00 00:00:00'),
(2081, 'id', 'Status Dinamis', 1, '2013-09-04 08:28:08', NULL, '0000-00-00 00:00:00'),
(2082, 'en', 'Is Manual', 1, '2013-09-04 08:28:25', NULL, '0000-00-00 00:00:00'),
(2082, 'id', 'Status Manual', 1, '2013-09-04 08:28:25', NULL, '0000-00-00 00:00:00'),
(2083, 'en', 'Is Mainland', 1, '2013-09-04 08:29:30', NULL, '0000-00-00 00:00:00'),
(2083, 'id', 'Status Pulau Utama (Contoh : Jawa)', 1, '2013-09-04 08:29:30', NULL, '0000-00-00 00:00:00'),
(2084, 'en', 'Destination Type', 1, '2013-09-04 08:49:23', NULL, '0000-00-00 00:00:00'),
(2084, 'id', 'Jenis Tujuan', 1, '2013-09-04 08:49:23', NULL, '0000-00-00 00:00:00'),
(2085, 'en', 'Destination Region', 1, '2013-09-04 08:49:58', NULL, '0000-00-00 00:00:00'),
(2085, 'id', 'Wilayah / Zona Tujuan', 1, '2013-09-04 08:49:58', NULL, '0000-00-00 00:00:00'),
(2086, 'en', 'Rate Group', 1, '2013-09-04 08:50:29', NULL, '0000-00-00 00:00:00'),
(2086, 'id', 'Grup Tarif', 1, '2013-09-04 08:50:29', NULL, '0000-00-00 00:00:00'),
(2087, 'en', 'Rate Group (per Grade)', 1, '2013-09-04 08:51:33', NULL, '0000-00-00 00:00:00'),
(2087, 'id', 'Grup Tarif (per Golongan)', 1, '2013-09-04 08:51:33', NULL, '0000-00-00 00:00:00'),
(2088, 'en', 'Travel Plan Status', 1, '2013-09-04 08:52:17', NULL, '0000-00-00 00:00:00'),
(2088, 'id', 'Status Rencana Perjalanan Dinas (RPD)', 1, '2013-09-04 08:52:17', NULL, '0000-00-00 00:00:00'),
(2089, 'en', 'Chart of Account', 1, '2013-09-10 11:05:21', NULL, '0000-00-00 00:00:00'),
(2089, 'id', 'Chart of Account', 1, '2013-09-10 11:05:21', NULL, '0000-00-00 00:00:00'),
(2090, 'en', 'Collapse All', 1, '2013-09-10 11:05:41', NULL, '0000-00-00 00:00:00'),
(2090, 'id', 'Tutup Semua', 1, '2013-09-10 11:05:41', NULL, '0000-00-00 00:00:00'),
(2091, 'en', 'Expand All', 1, '2013-09-10 11:05:55', NULL, '0000-00-00 00:00:00'),
(2091, 'id', 'Buka Semua', 1, '2013-09-10 11:05:55', NULL, '0000-00-00 00:00:00'),
(2092, 'en', 'TreeView', 1, '2013-09-10 11:06:11', NULL, '0000-00-00 00:00:00'),
(2092, 'id', 'TreeView', 1, '2013-09-10 11:06:11', NULL, '0000-00-00 00:00:00'),
(2093, 'en', 'Destination Type', 1, '2013-09-12 13:51:13', NULL, '0000-00-00 00:00:00'),
(2093, 'id', 'Jenis Tujuan', 1, '2013-09-12 13:51:13', NULL, '0000-00-00 00:00:00'),
(2094, 'en', 'Destination Region', 1, '2013-09-12 13:51:33', NULL, '0000-00-00 00:00:00'),
(2094, 'id', 'Wilayah / Zona Tujuan', 1, '2013-09-12 13:51:33', NULL, '0000-00-00 00:00:00'),
(2095, 'en', 'Is Stayed', 1, '2013-09-12 13:52:59', NULL, '0000-00-00 00:00:00'),
(2095, 'id', 'Status Tinggal', 1, '2013-09-12 13:52:59', NULL, '0000-00-00 00:00:00'),
(2096, 'en', 'Cost Policy', 1, '2013-09-12 13:53:45', NULL, '0000-00-00 00:00:00'),
(2096, 'id', 'Kebijakan Biaya', 1, '2013-09-12 13:53:45', NULL, '0000-00-00 00:00:00'),
(2097, 'en', 'For Functional Position Only', 1, '2013-09-12 13:56:50', NULL, '0000-00-00 00:00:00'),
(2097, 'id', 'Hanya Untuk Jabatan Fungsional', 1, '2013-09-12 13:56:50', NULL, '0000-00-00 00:00:00'),
(2098, 'en', 'Color (Representative)', 1, '2013-09-12 14:00:27', NULL, '0000-00-00 00:00:00'),
(2098, 'id', 'Warna (Representatif)', 1, '2013-09-12 14:00:27', NULL, '0000-00-00 00:00:00'),
(2099, 'en', 'PIC (Person in Command)', 1, '2013-09-12 14:00:54', NULL, '0000-00-00 00:00:00'),
(2099, 'id', 'Penanggung Jawab', 1, '2013-09-12 14:00:54', NULL, '0000-00-00 00:00:00'),
(2100, 'en', 'Task Number', 1, '2013-09-23 08:54:20', NULL, '0000-00-00 00:00:00'),
(2100, 'id', 'Nomor Tugas', 1, '2013-09-23 08:54:20', NULL, '0000-00-00 00:00:00'),
(2101, 'en', 'Task Category', 1, '2013-09-23 08:55:22', NULL, '0000-00-00 00:00:00'),
(2101, 'id', 'Kategori Tugas', 1, '2013-09-23 08:55:22', NULL, '0000-00-00 00:00:00'),
(2102, 'en', 'Task Officer Assignment', 1, '2013-11-04 08:53:07', NULL, '0000-00-00 00:00:00'),
(2102, 'id', 'Penyerahan Officer / Petugas Task', 1, '2013-11-04 08:53:07', NULL, '0000-00-00 00:00:00'),
(2103, 'en', 'Finish', 1, '2013-09-23 08:56:44', NULL, '0000-00-00 00:00:00'),
(2103, 'id', 'Selesai', 1, '2013-09-23 08:56:44', NULL, '0000-00-00 00:00:00'),
(2104, 'en', 'Transaction Date', 1, '2013-09-23 08:57:31', NULL, '0000-00-00 00:00:00'),
(2104, 'id', 'Tanggal Transaksi', 1, '2013-09-23 08:57:31', NULL, '0000-00-00 00:00:00'),
(2105, 'en', 'Finish Confirmation', 1, '2013-09-23 09:01:11', NULL, '0000-00-00 00:00:00'),
(2105, 'id', 'Konfirmasi Finalisasi', 1, '2013-09-23 09:01:11', NULL, '0000-00-00 00:00:00'),
(2106, 'en', 'Are You Sure Want To Finish Data', 1, '2013-10-21 13:22:08', NULL, '0000-00-00 00:00:00'),
(2106, 'id', 'Anda Yakin Ingin Melakukan Finalisasi', 1, '2013-10-21 13:22:08', NULL, '0000-00-00 00:00:00'),
(2107, 'en', 'Note Number', 1, '2013-09-23 09:01:48', NULL, '0000-00-00 00:00:00'),
(2107, 'id', 'Nomor Catatan', 1, '2013-09-23 09:01:48', NULL, '0000-00-00 00:00:00'),
(2108, 'en', 'Task Confirmation', 1, '2013-09-23 09:02:47', NULL, '0000-00-00 00:00:00'),
(2108, 'id', 'Konfirmasi Tugas', 1, '2013-09-23 09:02:47', NULL, '0000-00-00 00:00:00'),
(2109, 'en', 'Task Subject', 1, '2013-09-23 09:03:32', NULL, '0000-00-00 00:00:00'),
(2109, 'id', 'Nama Tugas', 1, '2013-09-23 09:03:32', NULL, '0000-00-00 00:00:00'),
(2110, 'en', 'Note Information', 1, '2013-09-23 09:03:47', NULL, '0000-00-00 00:00:00'),
(2110, 'id', 'Informasi Catatan', 1, '2013-09-23 09:03:47', NULL, '0000-00-00 00:00:00'),
(2111, 'en', 'Realization Date', 1, '2013-09-23 09:04:10', NULL, '0000-00-00 00:00:00'),
(2111, 'id', 'Tanggal Realisasi', 1, '2013-09-23 09:04:10', NULL, '0000-00-00 00:00:00'),
(2112, 'en', 'Note Officer Assignment', 1, '2013-11-04 08:51:17', NULL, '0000-00-00 00:00:00'),
(2112, 'id', 'Penyerahan Officer / Petugas Catatan', 1, '2013-11-04 08:51:17', NULL, '0000-00-00 00:00:00'),
(2113, 'en', 'Call Number', 1, '2013-09-23 09:16:43', NULL, '0000-00-00 00:00:00'),
(2113, 'id', 'Nomor Panggilan / Call', 1, '2013-09-23 09:16:43', NULL, '0000-00-00 00:00:00'),
(2114, 'en', 'Call Information', 1, '2013-09-23 09:16:39', NULL, '0000-00-00 00:00:00'),
(2114, 'id', 'Informasi Panggilan / Call', 1, '2013-09-23 09:16:39', NULL, '0000-00-00 00:00:00'),
(2115, 'en', 'Call Officer Assignment', 1, '2013-11-04 08:50:18', NULL, '0000-00-00 00:00:00'),
(2115, 'id', 'Penyerahan Officer / Petugas Call / Panggilan', 1, '2013-11-04 08:50:18', NULL, '0000-00-00 00:00:00'),
(2116, 'en', 'Inbound', 1, '2013-09-23 09:08:39', NULL, '0000-00-00 00:00:00'),
(2116, 'id', 'Inbound', 1, '2013-09-23 09:08:39', NULL, '0000-00-00 00:00:00'),
(2117, 'en', 'Outbound', 1, '2013-09-23 09:08:56', NULL, '0000-00-00 00:00:00'),
(2117, 'id', 'Outbound', 1, '2013-09-23 09:08:56', NULL, '0000-00-00 00:00:00'),
(2118, 'en', 'Meeting Number', 1, '2013-09-23 09:16:20', NULL, '0000-00-00 00:00:00'),
(2118, 'id', 'Nomor Pertemuan / Meeting', 1, '2013-09-23 09:16:20', NULL, '0000-00-00 00:00:00'),
(2119, 'en', 'Meeting Information', 1, '2013-09-23 09:16:02', NULL, '0000-00-00 00:00:00'),
(2119, 'id', 'Informasi Pertemuan / Meeting', 1, '2013-09-23 09:16:02', NULL, '0000-00-00 00:00:00'),
(2120, 'en', 'Meeting Officer Assignment', 1, '2013-11-04 08:50:59', NULL, '0000-00-00 00:00:00'),
(2120, 'id', 'Penyerahan Officer / Petugas Meeting / Pertemuan', 1, '2013-11-04 08:50:59', NULL, '0000-00-00 00:00:00'),
(2121, 'en', 'Office Work Number', 1, '2013-09-23 09:14:02', NULL, '0000-00-00 00:00:00'),
(2121, 'id', 'Nomor Pekerjaan Kantor', 1, '2013-09-23 09:14:02', NULL, '0000-00-00 00:00:00'),
(2122, 'en', 'Status', 1, '2013-09-23 09:14:44', NULL, '0000-00-00 00:00:00'),
(2122, 'id', 'Status', 1, '2013-09-23 09:14:44', NULL, '0000-00-00 00:00:00'),
(2123, 'en', 'Office Work', 1, '2013-09-23 09:17:35', NULL, '0000-00-00 00:00:00'),
(2123, 'id', 'Pekerjaan Kantor', 1, '2013-09-23 09:17:35', NULL, '0000-00-00 00:00:00'),
(2124, 'en', 'Status', 1, '2013-09-23 09:17:50', NULL, '0000-00-00 00:00:00'),
(2124, 'id', 'Status', 1, '2013-09-23 09:17:50', NULL, '0000-00-00 00:00:00'),
(2125, 'en', 'Office Work Information', 1, '2013-09-23 09:18:38', NULL, '0000-00-00 00:00:00'),
(2125, 'id', 'Informasi Pekerjaan Kantor', 1, '2013-09-23 09:18:38', NULL, '0000-00-00 00:00:00'),
(2126, 'en', 'Status', 1, '2013-09-23 09:19:28', NULL, '0000-00-00 00:00:00'),
(2126, 'id', 'Status', 1, '2013-09-23 09:19:28', NULL, '0000-00-00 00:00:00'),
(2127, 'en', 'Visit', 1, '2013-09-23 09:19:55', NULL, '0000-00-00 00:00:00'),
(2127, 'id', 'Kunjungan / Visitasi', 1, '2013-09-23 09:19:55', NULL, '0000-00-00 00:00:00'),
(2128, 'en', 'Visit Information', 1, '2013-09-23 09:20:18', NULL, '0000-00-00 00:00:00'),
(2128, 'id', 'Informasi Kunjungan / Visitasi', 1, '2013-09-23 09:20:18', NULL, '0000-00-00 00:00:00'),
(2129, 'en', 'Bug', 1, '2013-09-23 16:24:02', NULL, '0000-00-00 00:00:00'),
(2129, 'id', 'Bug / Cacat Produk', 1, '2013-09-23 16:24:02', NULL, '0000-00-00 00:00:00'),
(2130, 'en', 'Reporter Data', 1, '2013-09-23 16:24:24', NULL, '0000-00-00 00:00:00'),
(2130, 'id', 'Data Pelapor', 1, '2013-09-23 16:24:24', NULL, '0000-00-00 00:00:00'),
(2131, 'en', 'Delivery Status', 1, '2013-09-23 16:24:43', NULL, '0000-00-00 00:00:00'),
(2131, 'id', 'Status Pengiriman', 1, '2013-09-23 16:24:43', NULL, '0000-00-00 00:00:00'),
(2132, 'en', 'General', 1, '2013-09-23 16:24:56', NULL, '0000-00-00 00:00:00'),
(2132, 'id', 'Umum', 1, '2013-09-23 16:24:56', NULL, '0000-00-00 00:00:00'),
(2133, 'en', 'Reporter', 1, '2013-09-23 16:25:12', NULL, '0000-00-00 00:00:00'),
(2133, 'id', 'Pelapor', 1, '2013-09-23 16:25:12', NULL, '0000-00-00 00:00:00'),
(2134, 'en', 'Priority Level', 1, '2013-09-23 16:25:33', NULL, '0000-00-00 00:00:00'),
(2134, 'id', 'Tingkat Prioritas', 1, '2013-09-23 16:25:33', NULL, '0000-00-00 00:00:00'),
(2135, 'en', 'Bug Source', 1, '2013-09-23 16:26:10', NULL, '0000-00-00 00:00:00'),
(2135, 'id', 'Asal Informasi Bug / Cacat Produk', 1, '2013-09-23 16:26:10', NULL, '0000-00-00 00:00:00'),
(2136, 'en', 'Bug Type', 1, '2013-09-23 16:26:28', NULL, '0000-00-00 00:00:00'),
(2136, 'id', 'Jenis Bug / Cacat Produk', 1, '2013-09-23 16:26:28', NULL, '0000-00-00 00:00:00'),
(2137, 'en', 'Found Date', 1, '2013-09-23 16:26:59', NULL, '0000-00-00 00:00:00'),
(2137, 'id', 'Tanggal Ditemukan', 1, '2013-09-23 16:26:59', NULL, '0000-00-00 00:00:00'),
(2138, 'en', 'Found at Software Release', 1, '2013-09-23 16:29:06', NULL, '0000-00-00 00:00:00'),
(2138, 'id', 'Ditemukan Pada Rilis Produk', 1, '2013-09-23 16:29:06', NULL, '0000-00-00 00:00:00'),
(2139, 'en', 'Fixed Date', 1, '2013-09-23 16:28:14', NULL, '0000-00-00 00:00:00'),
(2139, 'id', 'Tanggal Diperbaiki', 1, '2013-09-23 16:28:14', NULL, '0000-00-00 00:00:00'),
(2140, 'en', 'Fixed at Software Release', 1, '2013-09-23 16:28:41', NULL, '0000-00-00 00:00:00'),
(2140, 'id', 'Diperbaiki Pada Rilis Produk', 1, '2013-09-23 16:28:41', NULL, '0000-00-00 00:00:00'),
(2141, 'en', 'Percent Completed', 1, '2013-09-23 16:29:43', NULL, '0000-00-00 00:00:00'),
(2141, 'id', 'Persentase Penyelesaian', 1, '2013-09-23 16:29:43', NULL, '0000-00-00 00:00:00'),
(2142, 'en', 'Estimated Effort', 1, '2013-09-23 16:30:15', NULL, '0000-00-00 00:00:00'),
(2142, 'id', 'Estimasi Beban Pekerjaan', 1, '2013-09-23 16:30:15', NULL, '0000-00-00 00:00:00'),
(2143, 'en', 'Status', 1, '2013-09-23 16:30:35', NULL, '0000-00-00 00:00:00'),
(2143, 'id', 'Status', 1, '2013-09-23 16:30:35', NULL, '0000-00-00 00:00:00'),
(2144, 'en', 'Bug Resolution', 1, '2013-09-23 16:30:57', NULL, '0000-00-00 00:00:00'),
(2144, 'id', 'Resolusi Bug / Cacat Produk', 1, '2013-09-23 16:30:57', NULL, '0000-00-00 00:00:00'),
(2145, 'en', 'Work Log', 1, '2013-09-23 16:31:14', NULL, '0000-00-00 00:00:00'),
(2145, 'id', 'Log Pekerjaan', 1, '2013-09-23 16:31:14', NULL, '0000-00-00 00:00:00'),
(2146, 'en', 'Dependency Data', 1, '2013-09-23 16:31:53', NULL, '0000-00-00 00:00:00'),
(2146, 'id', 'Data Dependensi / Keterkaitan', 1, '2013-09-23 16:31:53', NULL, '0000-00-00 00:00:00'),
(2147, 'en', ' Bug Tracker', 1, '2013-09-23 16:32:32', NULL, '0000-00-00 00:00:00'),
(2147, 'id', 'Penelusur Bug / Cacat Produk', 1, '2013-09-23 16:32:32', NULL, '0000-00-00 00:00:00'),
(2148, 'en', 'Bug Number', 1, '2013-09-23 16:32:54', NULL, '0000-00-00 00:00:00'),
(2148, 'id', 'Nomor Bug / Cacat Produk', 1, '2013-09-23 16:32:54', NULL, '0000-00-00 00:00:00'),
(2149, 'en', 'Duplication Data', 1, '2013-09-23 16:33:12', NULL, '0000-00-00 00:00:00'),
(2149, 'id', 'Data Duplikasi', 1, '2013-09-23 16:33:12', NULL, '0000-00-00 00:00:00'),
(2150, 'en', 'Bug Tracker Field Is Required', 1, '2013-09-23 16:34:02', NULL, '0000-00-00 00:00:00'),
(2150, 'id', 'Data Penelusur Bug / Cacat Produk Wajib Diisi', 1, '2013-09-23 16:34:02', NULL, '0000-00-00 00:00:00'),
(2151, 'en', 'Tag Data', 1, '2013-09-23 16:34:36', NULL, '0000-00-00 00:00:00'),
(2151, 'id', 'Data Tag', 1, '2013-09-23 16:34:36', NULL, '0000-00-00 00:00:00'),
(2152, 'en', 'Keywords', 1, '2013-09-23 16:34:53', NULL, '0000-00-00 00:00:00'),
(2152, 'id', 'Kata Kunci', 1, '2013-09-23 16:34:53', NULL, '0000-00-00 00:00:00'),
(2153, 'en', 'Contact', 1, '2013-09-23 16:35:14', NULL, '0000-00-00 00:00:00'),
(2153, 'id', 'Kontak', 1, '2013-09-23 16:35:14', NULL, '0000-00-00 00:00:00'),
(2154, 'en', 'Name', 1, '2013-09-23 16:41:42', NULL, '0000-00-00 00:00:00'),
(2154, 'id', 'Nama', 1, '2013-09-23 16:41:42', NULL, '0000-00-00 00:00:00'),
(2155, 'en', 'Company', 1, '2013-09-23 16:42:00', NULL, '0000-00-00 00:00:00'),
(2155, 'id', 'Insitusi / Perusahaan', 1, '2013-09-23 16:42:00', NULL, '0000-00-00 00:00:00'),
(2156, 'en', 'Email', 1, '2013-09-23 16:42:13', NULL, '0000-00-00 00:00:00'),
(2156, 'id', 'Email', 1, '2013-09-23 16:42:13', NULL, '0000-00-00 00:00:00'),
(2157, 'en', 'Phone', 1, '2013-09-23 16:42:29', NULL, '0000-00-00 00:00:00'),
(2157, 'id', 'Telepon', 1, '2013-09-23 16:42:29', NULL, '0000-00-00 00:00:00'),
(2158, 'en', 'Bug Officer Assignment', 1, '2013-11-04 08:49:55', NULL, '0000-00-00 00:00:00'),
(2158, 'id', 'Penyerahan Officer / Petugas Bug / Cacat Produk', 1, '2013-11-04 08:49:55', NULL, '0000-00-00 00:00:00'),
(2159, 'en', 'Revenue', 1, '2013-09-25 11:10:54', NULL, '0000-00-00 00:00:00'),
(2159, 'id', 'Revenue', 1, '2013-09-25 11:10:54', NULL, '0000-00-00 00:00:00'),
(2160, 'en', 'Nett Profit', 1, '2013-09-25 11:10:41', NULL, '0000-00-00 00:00:00'),
(2160, 'id', 'Nett Profit', 1, '2013-09-25 11:10:41', NULL, '0000-00-00 00:00:00'),
(2161, 'en', 'For Contract Summary', 1, '2013-09-25 10:52:30', NULL, '0000-00-00 00:00:00'),
(2161, 'id', 'Untuk Summary Kontrak', 1, '2013-09-25 10:52:30', NULL, '0000-00-00 00:00:00'),
(2162, 'en', 'For Realization Year', 1, '2013-09-25 10:52:53', NULL, '0000-00-00 00:00:00'),
(2162, 'id', 'Untuk Tahun Realisasi', 1, '2013-09-25 10:52:53', NULL, '0000-00-00 00:00:00'),
(2163, 'en', 'Real Estimation of Contract Amount', 1, '2013-09-25 10:55:42', NULL, '0000-00-00 00:00:00'),
(2163, 'id', 'Estimasi Dari Nominal Kontrak', 1, '2013-09-25 10:55:42', NULL, '0000-00-00 00:00:00'),
(2164, 'en', 'Nett Profit', 1, '2013-09-25 11:10:31', NULL, '0000-00-00 00:00:00'),
(2164, 'id', 'Nett Profit', 1, '2013-09-25 11:10:31', NULL, '0000-00-00 00:00:00'),
(2165, 'en', 'View Profile', 1, '2013-09-26 11:20:24', NULL, '0000-00-00 00:00:00'),
(2165, 'id', 'Lihat Profil', 1, '2013-09-26 11:20:24', NULL, '0000-00-00 00:00:00'),
(2166, 'en', 'Sales / AM Performance', 1, '2013-09-27 11:26:37', NULL, '0000-00-00 00:00:00'),
(2166, 'id', 'Performa Sales / AM', 1, '2013-09-27 11:26:37', NULL, '0000-00-00 00:00:00'),
(2167, 'en', 'Activity Report', 1, '2013-09-27 13:19:52', NULL, '0000-00-00 00:00:00'),
(2167, 'id', 'Laporan Kegiatan', 1, '2013-09-27 13:19:52', NULL, '0000-00-00 00:00:00'),
(2168, 'en', 'Minimum Wage', 1, '2013-09-30 10:07:35', NULL, '0000-00-00 00:00:00'),
(2168, 'id', 'Upah Minimum', 1, '2013-09-30 10:07:35', NULL, '0000-00-00 00:00:00'),
(2169, 'en', 'End Period', 1, '2013-09-30 10:07:50', NULL, '0000-00-00 00:00:00'),
(2169, 'id', 'Periode Akhir', 1, '2013-09-30 10:07:50', NULL, '0000-00-00 00:00:00'),
(2170, 'en', 'State / Province Minimum Wage', 1, '2013-09-30 10:09:18', NULL, '0000-00-00 00:00:00'),
(2170, 'id', 'Upah Minimum Propinsi (UMP)', 1, '2013-09-30 10:09:18', NULL, '0000-00-00 00:00:00'),
(2171, 'en', 'City / Regency Minimum Wage', 1, '2013-09-30 10:09:54', NULL, '0000-00-00 00:00:00'),
(2171, 'id', 'Upah Minimum Kota / Kabupaten (UMK)', 1, '2013-09-30 10:09:54', NULL, '0000-00-00 00:00:00'),
(2172, 'en', 'Increment Amount', 1, '2013-09-30 10:13:41', NULL, '0000-00-00 00:00:00'),
(2172, 'id', 'Nominal Penambahan', 1, '2013-09-30 10:13:41', NULL, '0000-00-00 00:00:00'),
(2173, 'en', 'Official', 1, '2013-09-30 10:10:49', NULL, '0000-00-00 00:00:00'),
(2173, 'id', 'Pejabat Pengesah', 1, '2013-09-30 10:10:49', NULL, '0000-00-00 00:00:00'),
(2174, 'en', 'Increment (in %)', 1, '2013-09-30 10:11:21', NULL, '0000-00-00 00:00:00'),
(2174, 'id', 'Penambahan (dalam %)', 1, '2013-09-30 10:11:21', NULL, '0000-00-00 00:00:00'),
(2175, 'en', 'Employee', 1, '2013-09-30 10:12:30', NULL, '0000-00-00 00:00:00'),
(2175, 'id', 'Pegawai', 1, '2013-09-30 10:12:30', NULL, '0000-00-00 00:00:00'),
(2176, 'en', 'Official', 1, '2013-09-30 10:12:42', NULL, '0000-00-00 00:00:00'),
(2176, 'id', 'Pejabat Pengesah', 1, '2013-09-30 10:12:42', NULL, '0000-00-00 00:00:00'),
(2177, 'en', 'Position', 1, '2013-09-30 10:12:59', NULL, '0000-00-00 00:00:00'),
(2177, 'id', 'Jabatan / Posisi', 1, '2013-09-30 10:12:59', NULL, '0000-00-00 00:00:00'),
(2178, 'en', 'Increment Amount', 1, '2013-09-30 10:13:25', NULL, '0000-00-00 00:00:00'),
(2178, 'id', 'Nominal Penambahan', 1, '2013-09-30 10:13:25', NULL, '0000-00-00 00:00:00'),
(2179, 'en', 'From Last Year', 1, '2013-09-30 10:14:03', NULL, '0000-00-00 00:00:00'),
(2179, 'id', 'Dari Tahun Lalu', 1, '2013-09-30 10:14:03', NULL, '0000-00-00 00:00:00'),
(2180, 'en', 'Minimum Wage', 1, '2013-09-30 10:15:12', NULL, '0000-00-00 00:00:00'),
(2180, 'id', 'Upah Minimum', 1, '2013-09-30 10:15:12', NULL, '0000-00-00 00:00:00'),
(2181, 'en', 'Official', 1, '2013-09-30 10:16:03', NULL, '0000-00-00 00:00:00'),
(2181, 'id', 'Pejabat Pengesah', 1, '2013-09-30 10:16:03', NULL, '0000-00-00 00:00:00'),
(2182, 'en', 'Task Realization', 1, '2013-09-30 10:32:49', NULL, '0000-00-00 00:00:00'),
(2182, 'id', 'Realisasi Tugas', 1, '2013-09-30 10:32:49', NULL, '0000-00-00 00:00:00'),
(2183, 'en', 'Visit Number', 1, '2013-09-30 10:34:54', NULL, '0000-00-00 00:00:00'),
(2183, 'id', 'Nomor Kunjungan / Visitasi', 1, '2013-09-30 10:34:54', NULL, '0000-00-00 00:00:00'),
(2184, 'en', 'Visit Officer Assignment', 1, '2013-11-04 08:52:42', NULL, '0000-00-00 00:00:00'),
(2184, 'id', 'Penyerahan Officer / Petugas Kunjungan / Visitasi', 1, '2013-11-04 08:52:42', NULL, '0000-00-00 00:00:00'),
(2185, 'en', 'Office Work Officer Assignment', 1, '2013-11-04 08:51:43', NULL, '0000-00-00 00:00:00'),
(2185, 'id', 'Penyerahan Officer / Petugas Pekerjaan Kantor', 1, '2013-11-04 08:51:43', NULL, '0000-00-00 00:00:00'),
(2186, 'en', 'Task Completed', 1, '2013-10-01 09:10:40', NULL, '0000-00-00 00:00:00'),
(2186, 'id', 'Task Completed', 1, '2013-10-01 09:10:40', NULL, '0000-00-00 00:00:00'),
(2187, 'en', 'Set As Sales / AM', 1, '2013-10-01 15:13:40', NULL, '0000-00-00 00:00:00'),
(2187, 'id', 'Sebagai Sales / AM', 1, '2013-10-01 15:13:40', NULL, '0000-00-00 00:00:00'),
(2188, 'en', 'View As Thumbnail', 1, '2013-10-01 15:16:24', NULL, '0000-00-00 00:00:00'),
(2188, 'id', 'Lihat Sebagai Thumbnail', 1, '2013-10-01 15:16:24', NULL, '0000-00-00 00:00:00'),
(2189, 'en', 'View As Table', 1, '2013-10-01 15:17:00', NULL, '0000-00-00 00:00:00'),
(2189, 'id', 'Lihat Sebagai Tabel', 1, '2013-10-01 15:17:00', NULL, '0000-00-00 00:00:00'),
(2190, 'en', 'Overall Task Completion', 1, '2013-10-02 12:03:37', NULL, '0000-00-00 00:00:00'),
(2190, 'id', 'Penyelesaian Tugas Keseluruhan', 1, '2013-10-02 12:03:37', NULL, '0000-00-00 00:00:00'),
(2191, 'en', 'Activity Summary', 1, '2013-10-02 12:04:09', NULL, '0000-00-00 00:00:00'),
(2191, 'id', 'Summary Aktivitas', 1, '2013-10-02 12:04:09', NULL, '0000-00-00 00:00:00'),
(2192, 'en', 'hours', 1, '2013-10-02 12:04:26', NULL, '0000-00-00 00:00:00'),
(2192, 'id', 'jam', 1, '2013-10-02 12:04:26', NULL, '0000-00-00 00:00:00'),
(2193, 'en', 'Task Completion of', 1, '2013-10-02 12:05:12', NULL, '0000-00-00 00:00:00'),
(2193, 'id', 'Penyelesaian Tugas', 1, '2013-10-02 12:05:12', NULL, '0000-00-00 00:00:00'),
(2194, 'en', 'Activity Report by', 1, '2013-10-02 12:05:38', NULL, '0000-00-00 00:00:00'),
(2194, 'id', 'Laporan Aktivitas Oleh', 1, '2013-10-02 12:05:38', NULL, '0000-00-00 00:00:00'),
(2195, 'en', 'hrs', 1, '2013-10-02 12:05:50', NULL, '0000-00-00 00:00:00'),
(2195, 'id', 'jam', 1, '2013-10-02 12:05:50', NULL, '0000-00-00 00:00:00'),
(2196, 'en', 'in hours', 1, '2013-10-02 12:06:08', NULL, '0000-00-00 00:00:00'),
(2196, 'id', 'dalam jam', 1, '2013-10-02 12:06:08', NULL, '0000-00-00 00:00:00'),
(2197, 'en', 'Finalizing Data Successfully', 1, '2013-10-02 16:01:40', NULL, '0000-00-00 00:00:00'),
(2197, 'id', 'Data Berhasil Di Finalisasi', 1, '2013-10-02 16:01:40', NULL, '0000-00-00 00:00:00'),
(2198, 'en', 'Activity Completed', 1, '2013-10-02 16:12:51', NULL, '0000-00-00 00:00:00'),
(2198, 'id', 'Aktivitas Sudah Selesai', 1, '2013-10-02 16:12:51', NULL, '0000-00-00 00:00:00'),
(2199, 'en', 'View All Data', 1, '2013-10-03 10:29:35', NULL, '0000-00-00 00:00:00'),
(2199, 'id', 'Lihat Semua Data', 1, '2013-10-03 10:29:35', NULL, '0000-00-00 00:00:00'),
(2200, 'en', 'As Admin', 1, '2013-10-03 10:30:08', NULL, '0000-00-00 00:00:00'),
(2200, 'id', 'Sebagai Admin', 1, '2013-10-03 10:30:08', NULL, '0000-00-00 00:00:00'),
(2201, 'en', 'Duplicate Lead', 1, '2013-10-03 11:07:39', NULL, '0000-00-00 00:00:00'),
(2201, 'id', 'Duplikasi Narasumber', 1, '2013-10-03 11:07:39', NULL, '0000-00-00 00:00:00'),
(2202, 'en', 'vCard', 1, '2013-10-03 11:24:33', NULL, '0000-00-00 00:00:00'),
(2202, 'id', 'vCard', 1, '2013-10-03 11:24:33', NULL, '0000-00-00 00:00:00'),
(2203, 'en', 'Transfer Information', 1, '2013-10-08 08:31:56', NULL, '0000-00-00 00:00:00'),
(2203, 'id', 'Informasi Mutasi', 1, '2013-10-08 08:31:56', NULL, '0000-00-00 00:00:00'),
(2204, 'en', 'search data...', 1, '2013-10-18 16:37:04', NULL, '0000-00-00 00:00:00'),
(2204, 'id', 'cari data...', 1, '2013-10-18 16:37:04', NULL, '0000-00-00 00:00:00'),
(2205, 'en', 'more results...', 1, '2013-10-18 16:38:29', NULL, '0000-00-00 00:00:00'),
(2205, 'id', 'hasil lebih lanjut...', 1, '2013-10-18 16:38:29', NULL, '0000-00-00 00:00:00'),
(2206, 'en', 'Search results', 1, '2013-10-18 16:38:58', NULL, '0000-00-00 00:00:00'),
(2206, 'id', 'Hasil Pencarian', 1, '2013-10-18 16:38:58', NULL, '0000-00-00 00:00:00'),
(2207, 'en', 'Vehicle Contract Cost Information', 1, '2013-10-21 13:33:31', NULL, '0000-00-00 00:00:00'),
(2207, 'id', 'Informasi Biaya Kontrak Kendaraan', 1, '2013-10-21 13:33:31', NULL, '0000-00-00 00:00:00'),
(2208, 'en', 'Contract References', 1, '2013-10-21 11:26:32', NULL, '0000-00-00 00:00:00'),
(2208, 'id', 'Referensi Kontrak', 1, '2013-10-21 11:26:32', NULL, '0000-00-00 00:00:00'),
(2209, 'en', 'Contract Start', 1, '2013-10-21 11:26:57', NULL, '0000-00-00 00:00:00'),
(2209, 'id', 'Awal Kontrak', 1, '2013-10-21 11:26:57', NULL, '0000-00-00 00:00:00'),
(2210, 'en', 'Contract End', 1, '2013-10-21 11:27:12', NULL, '0000-00-00 00:00:00'),
(2210, 'id', 'Akhir Kontrak', 1, '2013-10-21 11:27:12', NULL, '0000-00-00 00:00:00'),
(2211, 'en', 'Cost Category', 1, '2013-10-21 11:27:29', NULL, '0000-00-00 00:00:00'),
(2211, 'id', 'Kategori Biaya', 1, '2013-10-21 11:27:29', NULL, '0000-00-00 00:00:00'),
(2212, 'en', 'Cost Type', 1, '2013-10-21 11:27:44', NULL, '0000-00-00 00:00:00'),
(2212, 'id', 'Jenis Biaya', 1, '2013-10-21 11:27:44', NULL, '0000-00-00 00:00:00'),
(2213, 'en', 'Cost Amount', 1, '2013-10-21 11:27:59', NULL, '0000-00-00 00:00:00'),
(2213, 'id', 'Nominal Biaya', 1, '2013-10-21 11:27:59', NULL, '0000-00-00 00:00:00'),
(2214, 'en', 'Recurring Cost Amount', 1, '2013-10-21 11:39:35', NULL, '0000-00-00 00:00:00'),
(2214, 'id', 'Nominal Biaya Cicilan', 1, '2013-10-21 11:39:35', NULL, '0000-00-00 00:00:00'),
(2215, 'en', 'Odometer Information', 1, '2013-10-21 11:29:08', NULL, '0000-00-00 00:00:00'),
(2215, 'id', 'Informasi Odometer', 1, '2013-10-21 11:29:08', NULL, '0000-00-00 00:00:00'),
(2216, 'en', 'Odometer Value', 1, '2013-10-21 11:29:29', NULL, '0000-00-00 00:00:00'),
(2216, 'id', 'Nilai Odometer', 1, '2013-10-21 11:29:29', NULL, '0000-00-00 00:00:00'),
(2217, 'en', 'Daily', 1, '2013-10-21 11:29:52', NULL, '0000-00-00 00:00:00'),
(2217, 'id', 'Harian', 1, '2013-10-21 11:29:52', NULL, '0000-00-00 00:00:00'),
(2218, 'en', 'Finance Transaction Information', 1, '2013-10-21 11:30:17', NULL, '0000-00-00 00:00:00'),
(2218, 'id', 'Informasi Transaksi Keuangan', 1, '2013-10-21 11:30:17', NULL, '0000-00-00 00:00:00'),
(2219, 'en', 'Invoice Number', 1, '2013-10-21 11:30:34', NULL, '0000-00-00 00:00:00'),
(2219, 'id', 'Nomor Invoice', 1, '2013-10-21 11:30:34', NULL, '0000-00-00 00:00:00'),
(2220, 'en', 'Included Services', 1, '2013-10-21 13:44:16', NULL, '0000-00-00 00:00:00'),
(2220, 'id', 'Servis / Layanan Lainnya', 1, '2013-10-21 13:44:16', NULL, '0000-00-00 00:00:00'),
(2221, 'en', 'Service', 1, '2013-10-21 11:32:28', NULL, '0000-00-00 00:00:00'),
(2221, 'id', 'Servis / Layanan', 1, '2013-10-21 11:32:28', NULL, '0000-00-00 00:00:00'),
(2222, 'en', 'Cost Type Data', 1, '2013-10-21 11:33:13', NULL, '0000-00-00 00:00:00'),
(2222, 'id', 'Data Jenis Biaya', 1, '2013-10-21 11:33:13', NULL, '0000-00-00 00:00:00'),
(2223, 'en', 'Generated Costs', 1, '2013-10-21 11:47:03', NULL, '0000-00-00 00:00:00'),
(2223, 'id', 'Biaya Yang Dihasilkan', 1, '2013-10-21 11:47:03', NULL, '0000-00-00 00:00:00'),
(2224, 'en', 'Activation Cost', 1, '2013-10-21 11:39:51', NULL, '0000-00-00 00:00:00'),
(2224, 'id', 'Biaya Aktivasi', 1, '2013-10-21 11:39:51', NULL, '0000-00-00 00:00:00'),
(2225, 'en', 'Included Service Data', 1, '2013-10-21 13:44:27', NULL, '0000-00-00 00:00:00'),
(2225, 'id', 'Data Servis / Layanan Lainnya', 1, '2013-10-21 13:44:27', NULL, '0000-00-00 00:00:00'),
(2226, 'en', 'Generated Cost Data', 1, '2013-10-21 11:46:56', NULL, '0000-00-00 00:00:00'),
(2226, 'id', 'Data Biaya Yang Dihasilkan', 1, '2013-10-21 11:46:56', NULL, '0000-00-00 00:00:00'),
(2227, 'en', 'Vehicle Contract Cost', 1, '2013-10-21 13:34:20', NULL, '0000-00-00 00:00:00'),
(2227, 'id', 'Biaya Kontrak Kendaraan', 1, '2013-10-21 13:34:20', NULL, '0000-00-00 00:00:00'),
(2228, 'en', 'Transaction Date', 1, '2013-10-21 13:17:47', NULL, '0000-00-00 00:00:00'),
(2228, 'id', 'Tanggal Transaksi', 1, '2013-10-21 13:17:47', NULL, '0000-00-00 00:00:00'),
(2229, 'en', 'Odo Value', 1, '2013-10-21 13:18:49', NULL, '0000-00-00 00:00:00'),
(2229, 'id', 'Nilai Odo', 1, '2013-10-21 13:18:49', NULL, '0000-00-00 00:00:00'),
(2230, 'en', 'Odo Units', 1, '2013-10-21 13:19:05', NULL, '0000-00-00 00:00:00'),
(2230, 'id', 'Satuan Odo', 1, '2013-10-21 13:19:05', NULL, '0000-00-00 00:00:00'),
(2231, 'en', 'External Cost Information', 1, '2013-10-21 13:19:44', NULL, '0000-00-00 00:00:00'),
(2231, 'id', 'Informasi Biaya Eksternal', 1, '2013-10-21 13:19:44', NULL, '0000-00-00 00:00:00'),
(2232, 'en', 'Remove Confirmation', 1, '2013-10-21 13:20:29', NULL, '0000-00-00 00:00:00'),
(2232, 'id', 'Konfirmasi Hapus', 1, '2013-10-21 13:20:29', NULL, '0000-00-00 00:00:00'),
(2233, 'en', 'Vehicle Odometer', 1, '2013-10-21 13:20:47', NULL, '0000-00-00 00:00:00'),
(2233, 'id', 'Odometer Kendaraan', 1, '2013-10-21 13:20:47', NULL, '0000-00-00 00:00:00'),
(2234, 'en', 'Are You Sure Want To Remove Data', 1, '2013-10-21 13:21:43', NULL, '0000-00-00 00:00:00'),
(2234, 'id', 'Anda Yakin Ingin Menghapus Data', 1, '2013-10-21 13:21:43', NULL, '0000-00-00 00:00:00'),
(2235, 'en', 'Vehicle Fuel Cost Information', 1, '2013-10-21 13:33:05', NULL, '0000-00-00 00:00:00'),
(2235, 'id', 'Informasi Biaya Bahan Bakar Kendaraan', 1, '2013-10-21 13:33:05', NULL, '0000-00-00 00:00:00'),
(2236, 'en', 'Liter Amount', 1, '2013-10-21 13:25:45', NULL, '0000-00-00 00:00:00'),
(2236, 'id', 'Jumlah Bahan Bakar', 1, '2013-10-21 13:25:45', NULL, '0000-00-00 00:00:00'),
(2237, 'en', 'In Liter', 1, '2013-10-21 13:25:59', NULL, '0000-00-00 00:00:00'),
(2237, 'id', 'Dalam Liter', 1, '2013-10-21 13:25:59', NULL, '0000-00-00 00:00:00'),
(2238, 'en', 'Vehicle Fuel Cost', 1, '2013-10-21 13:32:52', NULL, '0000-00-00 00:00:00'),
(2238, 'id', 'Biaya Bahan Bakar Kendaraan', 1, '2013-10-21 13:32:52', NULL, '0000-00-00 00:00:00'),
(2239, 'en', 'Vehicle Service Cost Information', 1, '2013-10-21 13:32:27', NULL, '0000-00-00 00:00:00'),
(2239, 'id', 'Informasi Biaya Servis / Layanan Kendaraan', 1, '2013-10-21 13:32:27', NULL, '0000-00-00 00:00:00'),
(2240, 'en', 'Included Services', 1, '2013-10-21 13:35:31', NULL, '0000-00-00 00:00:00'),
(2240, 'id', 'Servis / Layanan Lainnya', 1, '2013-10-21 13:35:31', NULL, '0000-00-00 00:00:00'),
(2241, 'en', 'One Of The Included Service Is Empty', 1, '2013-10-21 13:43:52', NULL, '0000-00-00 00:00:00'),
(2241, 'id', 'Salah Satu Dari Servis / Layanan Lainnya Masih Kosong', 1, '2013-10-21 13:43:52', NULL, '0000-00-00 00:00:00'),
(2242, 'en', 'One Of The Generated Cost Is Empty', 1, '2013-10-21 13:37:38', NULL, '0000-00-00 00:00:00'),
(2242, 'id', 'Salah Satu Dari Biaya Yang Dihasilkan Masih Kosong', 1, '2013-10-21 13:37:38', NULL, '0000-00-00 00:00:00'),
(2243, 'en', 'Vehicle Service Cost', 1, '2013-10-21 13:43:36', NULL, '0000-00-00 00:00:00'),
(2243, 'id', 'Biaya Servis / Layanan Kendaraan', 1, '2013-10-21 13:43:36', NULL, '0000-00-00 00:00:00'),
(2244, 'en', 'Is Effective', 1, '2013-10-21 14:34:24', NULL, '0000-00-00 00:00:00'),
(2244, 'id', 'Apakah Efektif', 1, '2013-10-21 14:34:24', NULL, '0000-00-00 00:00:00'),
(2245, 'en', 'Cost Parent', 1, '2013-10-21 14:35:13', NULL, '0000-00-00 00:00:00'),
(2245, 'id', 'Induk Biaya', 1, '2013-10-21 14:35:13', NULL, '0000-00-00 00:00:00'),
(2246, 'en', 'Vehicle Cost Information', 1, '2013-10-21 14:35:51', NULL, '0000-00-00 00:00:00'),
(2246, 'id', 'Informasi Biaya Kendaraan', 1, '2013-10-21 14:35:51', NULL, '0000-00-00 00:00:00'),
(2247, 'en', 'Vehicle Cost', 1, '2013-10-21 14:37:25', NULL, '0000-00-00 00:00:00'),
(2247, 'id', 'Biaya Kendaraan', 1, '2013-10-21 14:37:25', NULL, '0000-00-00 00:00:00'),
(2248, 'en', 'External', 1, '2013-10-21 14:40:02', NULL, '0000-00-00 00:00:00'),
(2248, 'id', 'Eksternal', 1, '2013-10-21 14:40:02', NULL, '0000-00-00 00:00:00'),
(2249, 'en', 'From Internal Submission', 1, '2013-10-21 15:15:33', NULL, '0000-00-00 00:00:00'),
(2249, 'id', 'Dari Pengajuan Internal', 1, '2013-10-21 15:15:33', NULL, '0000-00-00 00:00:00'),
(2250, 'en', 'From External Submission', 1, '2013-10-21 15:15:57', NULL, '0000-00-00 00:00:00'),
(2250, 'id', 'Dari Pengajuan Eksternal', 1, '2013-10-21 15:15:57', NULL, '0000-00-00 00:00:00'),
(2251, 'en', 'Description', 1, '2013-10-21 16:13:39', NULL, '0000-00-00 00:00:00'),
(2251, 'id', 'Deskripsi', 1, '2013-10-21 16:13:39', NULL, '0000-00-00 00:00:00'),
(2252, 'en', 'View Model', 1, '2013-10-21 16:13:57', NULL, '0000-00-00 00:00:00'),
(2252, 'id', 'Model Tampilan', 1, '2013-10-21 16:13:57', NULL, '0000-00-00 00:00:00'),
(2253, 'en', 'Set As Grid', 1, '2013-10-21 16:14:13', NULL, '0000-00-00 00:00:00'),
(2253, 'id', 'Sebagai Grid', 1, '2013-10-21 16:14:13', NULL, '0000-00-00 00:00:00'),
(2254, 'en', 'Set As Content Menu', 1, '2013-10-21 16:14:31', NULL, '0000-00-00 00:00:00'),
(2254, 'id', 'Sebagai Menu Konten', 1, '2013-10-21 16:14:31', NULL, '0000-00-00 00:00:00'),
(2255, 'en', 'Is System Menu', 1, '2013-10-21 16:14:49', NULL, '0000-00-00 00:00:00'),
(2255, 'id', 'Apakah Menu Sistem', 1, '2013-10-21 16:14:49', NULL, '0000-00-00 00:00:00'),
(2256, 'en', 'Files / Document Type', 1, '2013-10-22 14:56:51', NULL, '0000-00-00 00:00:00'),
(2256, 'id', 'Jenis File / Dokumen', 1, '2013-10-22 14:56:51', NULL, '0000-00-00 00:00:00'),
(2257, 'en', 'Files / Document Status', 1, '2013-10-22 14:56:25', NULL, '0000-00-00 00:00:00'),
(2257, 'id', 'Status File / Dokumen', 1, '2013-10-22 14:56:25', NULL, '0000-00-00 00:00:00'),
(2258, 'en', 'Files / Document Category', 1, '2013-10-22 14:57:16', NULL, '0000-00-00 00:00:00'),
(2258, 'id', 'Kategori File / Dokumen', 1, '2013-10-22 14:57:16', NULL, '0000-00-00 00:00:00'),
(2259, 'en', 'Files / Document', 1, '2013-10-22 14:57:52', NULL, '0000-00-00 00:00:00'),
(2259, 'id', 'File / Dokumen', 1, '2013-10-22 14:57:52', NULL, '0000-00-00 00:00:00'),
(2260, 'en', 'Publish Date', 1, '2013-10-22 14:58:13', NULL, '0000-00-00 00:00:00'),
(2260, 'id', 'Tanggal Rilis', 1, '2013-10-22 14:58:13', NULL, '0000-00-00 00:00:00'),
(2261, 'en', 'Expiration Date', 1, '2013-10-22 14:58:46', NULL, '0000-00-00 00:00:00'),
(2261, 'id', 'Berlaku Hingga', 1, '2013-10-22 14:58:46', NULL, '0000-00-00 00:00:00'),
(2262, 'en', 'Revision', 1, '2013-10-22 14:58:58', NULL, '0000-00-00 00:00:00'),
(2262, 'id', 'Revisi', 1, '2013-10-22 14:58:58', NULL, '0000-00-00 00:00:00'),
(2263, 'en', 'Related Document', 1, '2013-10-22 14:59:39', NULL, '0000-00-00 00:00:00'),
(2263, 'id', 'Dokumen Terkait', 1, '2013-10-22 14:59:39', NULL, '0000-00-00 00:00:00'),
(2264, 'en', 'Further Education', 1, '2013-10-28 08:01:01', NULL, '0000-00-00 00:00:00'),
(2264, 'id', 'Pendidikan Lanjutan', 1, '2013-10-28 08:01:01', NULL, '0000-00-00 00:00:00'),
(2265, 'en', 'Employee Type', 1, '2013-10-28 08:01:22', NULL, '0000-00-00 00:00:00'),
(2265, 'id', 'Jenis Pegawai', 1, '2013-10-28 08:01:22', NULL, '0000-00-00 00:00:00'),
(2266, 'en', 'From Email', 1, '2013-10-31 10:37:15', NULL, '0000-00-00 00:00:00'),
(2266, 'id', 'Email Dari', 1, '2013-10-31 10:37:15', NULL, '0000-00-00 00:00:00'),
(2267, 'en', 'Please Select File / Document First', 1, '2013-10-31 10:38:02', NULL, '0000-00-00 00:00:00'),
(2267, 'id', 'Silahkan Pilih File / Dokumen Terlebih Dahulu', 1, '2013-10-31 10:38:02', NULL, '0000-00-00 00:00:00'),
(2268, 'en', 'List Type', 1, '2013-10-31 10:39:18', NULL, '0000-00-00 00:00:00'),
(2268, 'id', 'Jenis Daftar', 1, '2013-10-31 10:39:18', NULL, '0000-00-00 00:00:00'),
(2269, 'en', 'Status', 1, '2013-10-31 10:39:32', NULL, '0000-00-00 00:00:00'),
(2269, 'id', 'Status', 1, '2013-10-31 10:39:32', NULL, '0000-00-00 00:00:00'),
(2270, 'en', 'Target List', 1, '2013-10-31 10:39:48', NULL, '0000-00-00 00:00:00'),
(2270, 'id', 'Daftar Target', 1, '2013-10-31 10:39:48', NULL, '0000-00-00 00:00:00'),
(2271, 'en', 'Domain Name', 1, '2013-10-31 10:40:24', NULL, '0000-00-00 00:00:00'),
(2271, 'id', 'Nama Domain', 1, '2013-10-31 10:40:24', NULL, '0000-00-00 00:00:00'),
(2272, 'en', 'Are you sure want to create this officer ', 1, '2013-10-31 10:59:41', NULL, '0000-00-00 00:00:00'),
(2272, 'id', 'Are you sure want to create this officer', 1, '2013-10-31 10:59:41', NULL, '0000-00-00 00:00:00'),
(2273, 'en', 'Parent Status Information', 1, '2013-11-04 08:26:45', NULL, '0000-00-00 00:00:00'),
(2273, 'id', 'Informasi Status Induk', 1, '2013-11-04 08:26:45', NULL, '0000-00-00 00:00:00'),
(2274, 'en', 'As a Finance', 1, '2013-11-04 08:27:54', NULL, '0000-00-00 00:00:00'),
(2274, 'id', 'Sebagai Keuangan', 1, '2013-11-04 08:27:54', NULL, '0000-00-00 00:00:00'),
(2275, 'en', 'As an Accounting', 1, '2013-11-04 08:27:37', NULL, '0000-00-00 00:00:00'),
(2275, 'id', 'Sebagai Akunting', 1, '2013-11-04 08:27:37', NULL, '0000-00-00 00:00:00'),
(2276, 'en', 'Personel', 1, '2013-11-04 08:35:29', NULL, '0000-00-00 00:00:00'),
(2276, 'id', 'Personil', 1, '2013-11-04 08:35:29', NULL, '0000-00-00 00:00:00'),
(2277, 'en', 'Target Officer Assignment', 1, '2013-11-04 08:48:37', NULL, '0000-00-00 00:00:00'),
(2277, 'id', 'Penyerahan Officer / Petugas Target', 1, '2013-11-04 08:48:37', NULL, '0000-00-00 00:00:00'),
(2278, 'en', 'Case Officer Assignment', 1, '2013-11-04 08:53:50', NULL, '0000-00-00 00:00:00'),
(2278, 'id', 'Penyerahan Officer / Petugas Kasus', 1, '2013-11-04 08:53:50', NULL, '0000-00-00 00:00:00'),
(2279, 'en', 'Emergency Contact', 1, '2013-11-06 09:29:45', NULL, '0000-00-00 00:00:00'),
(2279, 'id', 'Kontak Dalam Keadaan Darurat', 1, '2013-11-06 09:29:45', NULL, '0000-00-00 00:00:00'),
(2280, 'en', 'Competence Type', 1, '2013-11-06 10:21:23', NULL, '0000-00-00 00:00:00'),
(2280, 'id', 'Jenis Kompetensi', 1, '2013-11-06 10:21:23', NULL, '0000-00-00 00:00:00'),
(2281, 'en', 'Keynote', 1, '2013-11-06 11:21:52', NULL, '0000-00-00 00:00:00'),
(2281, 'id', 'Keynote', 1, '2013-11-06 11:21:52', NULL, '0000-00-00 00:00:00'),
(2282, 'en', 'Seminar Keynote', 1, '2013-11-06 11:22:32', NULL, '0000-00-00 00:00:00'),
(2282, 'id', 'Keynote Seminar', 1, '2013-11-06 11:22:32', NULL, '0000-00-00 00:00:00'),
(2283, 'en', 'Topic', 1, '2013-11-06 11:22:46', NULL, '0000-00-00 00:00:00'),
(2283, 'id', 'Topik', 1, '2013-11-06 11:22:46', NULL, '0000-00-00 00:00:00'),
(2284, 'en', 'Speaker', 1, '2013-11-06 11:23:13', NULL, '0000-00-00 00:00:00'),
(2284, 'id', 'Pembicara', 1, '2013-11-06 11:23:13', NULL, '0000-00-00 00:00:00'),
(2285, 'en', 'Speaker Profile', 1, '2013-11-06 11:23:29', NULL, '0000-00-00 00:00:00'),
(2285, 'id', 'Profil Pembicara', 1, '2013-11-06 11:23:29', NULL, '0000-00-00 00:00:00'),
(2286, 'en', 'Parameter', 1, '2013-11-06 12:58:26', NULL, '0000-00-00 00:00:00'),
(2286, 'id', 'Parameter', 1, '2013-11-06 12:58:26', NULL, '0000-00-00 00:00:00'),
(2287, 'en', 'Workshop Session', 1, '2013-11-06 13:21:17', NULL, '0000-00-00 00:00:00'),
(2287, 'id', 'Sesi Workshop / Pelatihan', 1, '2013-11-06 13:21:17', NULL, '0000-00-00 00:00:00'),
(2288, 'en', 'Experience', 1, '2013-11-07 08:35:07', NULL, '0000-00-00 00:00:00'),
(2288, 'id', 'Pengalaman', 1, '2013-11-07 08:35:07', NULL, '0000-00-00 00:00:00'),
(2289, 'en', 'License Number', 1, '2013-11-08 14:47:48', NULL, '0000-00-00 00:00:00'),
(2289, 'id', 'Nomor SIM', 1, '2013-11-08 14:47:48', NULL, '0000-00-00 00:00:00'),
(2290, 'en', 'Blog / Web Address', 1, '2013-11-08 15:32:08', NULL, '0000-00-00 00:00:00'),
(2290, 'id', 'Alamat Blog / Web', 1, '2013-11-08 15:32:08', NULL, '0000-00-00 00:00:00'),
(2291, 'en', 'Blog', 1, '2013-11-08 15:33:15', NULL, '0000-00-00 00:00:00'),
(2291, 'id', 'Blog', 1, '2013-11-08 15:33:15', NULL, '0000-00-00 00:00:00'),
(2292, 'en', 'Psychology Test', 1, '2013-11-11 08:45:07', NULL, '0000-00-00 00:00:00'),
(2292, 'id', 'Tes Psikologi', 1, '2013-11-11 08:45:07', NULL, '0000-00-00 00:00:00'),
(2293, 'en', 'Final Result', 1, '2013-11-11 08:45:23', NULL, '0000-00-00 00:00:00'),
(2293, 'id', 'Hasil Akhir', 1, '2013-11-11 08:45:23', NULL, '0000-00-00 00:00:00'),
(2294, 'en', 'Psycho Test Type', 1, '2013-11-11 09:05:46', NULL, '0000-00-00 00:00:00'),
(2294, 'id', 'Jenis Psikotest', 1, '2013-11-11 09:05:46', NULL, '0000-00-00 00:00:00'),
(2295, 'en', 'Lower Result', 1, '2013-11-11 08:49:50', NULL, '0000-00-00 00:00:00'),
(2295, 'id', 'Nilai Terendah', 1, '2013-11-11 08:49:50', NULL, '0000-00-00 00:00:00'),
(2296, 'en', 'Higher Result', 1, '2013-11-11 08:50:08', NULL, '0000-00-00 00:00:00'),
(2296, 'id', 'Nilai Tertinggi', 1, '2013-11-11 08:50:08', NULL, '0000-00-00 00:00:00'),
(2297, 'en', 'Conclusion', 1, '2013-11-11 08:50:27', NULL, '0000-00-00 00:00:00'),
(2297, 'id', 'Kesimpulan', 1, '2013-11-11 08:50:27', NULL, '0000-00-00 00:00:00'),
(2298, 'en', 'Result Recommendation', 1, '2013-11-11 08:50:54', NULL, '0000-00-00 00:00:00'),
(2298, 'id', 'Rekomendasi Hasil', 1, '2013-11-11 08:50:54', NULL, '0000-00-00 00:00:00'),
(2299, 'en', 'Psycho Test Name', 1, '2013-11-11 09:06:48', NULL, '0000-00-00 00:00:00'),
(2299, 'id', 'Nama Psikotest', 1, '2013-11-11 09:06:48', NULL, '0000-00-00 00:00:00'),
(2300, 'en', 'Psycho Test Number', 1, '2013-11-11 09:07:06', NULL, '0000-00-00 00:00:00'),
(2300, 'id', 'Nomor Psikotest', 1, '2013-11-11 09:07:06', NULL, '0000-00-00 00:00:00'),
(2301, 'en', 'Insurance', 1, '2013-11-11 10:02:34', NULL, '0000-00-00 00:00:00'),
(2301, 'id', 'Asuransi', 1, '2013-11-11 10:02:34', NULL, '0000-00-00 00:00:00'),
(2302, 'en', 'Mobile Number', 1, '2013-11-11 11:44:02', NULL, '0000-00-00 00:00:00'),
(2302, 'id', 'Nomor HP', 1, '2013-11-11 11:44:02', NULL, '0000-00-00 00:00:00'),
(2303, 'en', 'Asset Usage Request', 1, '2013-11-12 09:47:50', NULL, '0000-00-00 00:00:00'),
(2303, 'id', 'Pengajuan Penggunaan Aset', 1, '2013-11-12 09:47:50', NULL, '0000-00-00 00:00:00'),
(2304, 'en', 'Start Date Is Required', 1, '2013-11-12 09:48:21', NULL, '0000-00-00 00:00:00'),
(2304, 'id', 'Tanggal Awal Harus Diisi', 1, '2013-11-12 09:48:21', NULL, '0000-00-00 00:00:00'),
(2305, 'en', 'search menu', 1, '2013-11-12 11:18:39', NULL, '0000-00-00 00:00:00'),
(2305, 'id', 'pencarian menu', 1, '2013-11-12 11:18:39', NULL, '0000-00-00 00:00:00'),
(2306, 'en', 'Welcome', 1, '2013-11-12 17:03:01', NULL, '0000-00-00 00:00:00'),
(2306, 'id', 'Selamat Datang', 1, '2013-11-12 17:03:01', NULL, '0000-00-00 00:00:00'),
(2307, 'en', 'Upload Image', 1, '2013-11-12 17:03:17', NULL, '0000-00-00 00:00:00'),
(2307, 'id', 'Unggah Gambar', 1, '2013-11-12 17:03:17', NULL, '0000-00-00 00:00:00'),
(2308, 'en', 'Edit Profile', 1, '2013-11-12 17:03:34', NULL, '0000-00-00 00:00:00'),
(2308, 'id', 'Ubah Profil', 1, '2013-11-12 17:03:34', NULL, '0000-00-00 00:00:00'),
(2309, 'en', '1st Reminder', 1, '2013-11-13 15:51:51', NULL, '0000-00-00 00:00:00'),
(2309, 'id', 'Pengingat I', 1, '2013-11-13 15:51:51', NULL, '0000-00-00 00:00:00'),
(2310, 'en', '2nd Reminder', 1, '2013-11-13 15:52:07', NULL, '0000-00-00 00:00:00'),
(2310, 'id', 'Pengingat II', 1, '2013-11-13 15:52:07', NULL, '0000-00-00 00:00:00'),
(2311, 'en', '3rd Reminder', 1, '2013-11-13 15:52:27', NULL, '0000-00-00 00:00:00'),
(2311, 'id', 'Pengingat III', 1, '2013-11-13 15:52:27', NULL, '0000-00-00 00:00:00'),
(2312, 'en', 'moved', 1, '2013-11-14 10:45:27', NULL, '0000-00-00 00:00:00'),
(2312, 'id', 'dipindahkan', 1, '2013-11-14 10:45:27', NULL, '0000-00-00 00:00:00'),
(2313, 'en', 'deleted', 1, '2013-11-14 10:45:37', NULL, '0000-00-00 00:00:00'),
(2313, 'id', 'dihapus', 1, '2013-11-14 10:45:37', NULL, '0000-00-00 00:00:00'),
(2314, 'en', 'Broadcast', 1, '2013-11-14 11:25:34', NULL, '0000-00-00 00:00:00'),
(2314, 'id', 'Broadcast', 1, '2013-11-14 11:25:34', NULL, '0000-00-00 00:00:00'),
(2315, 'en', 'Please Input Folder Name', 1, '2013-11-14 11:33:24', NULL, '0000-00-00 00:00:00'),
(2315, 'id', 'Silahkan Isi Nama Folder', 1, '2013-11-14 11:33:24', NULL, '0000-00-00 00:00:00'),
(2316, 'en', 'Blacklisted User', 1, '2013-11-14 11:33:51', NULL, '0000-00-00 00:00:00'),
(2316, 'id', 'Pengguna Masuk Daftar Hitam', 1, '2013-11-14 11:33:51', NULL, '0000-00-00 00:00:00'),
(2317, 'en', 'Messages', 1, '2013-11-14 11:38:03', NULL, '0000-00-00 00:00:00'),
(2317, 'id', 'Pesan', 1, '2013-11-14 11:38:03', NULL, '0000-00-00 00:00:00'),
(2318, 'en', 'Please Input User Name', 1, '2013-11-14 11:38:36', NULL, '0000-00-00 00:00:00'),
(2318, 'id', 'Silahkan Isi Nama Pengguna', 1, '2013-11-14 11:38:36', NULL, '0000-00-00 00:00:00'),
(2319, 'en', 'Other Disability', 1, '2013-11-19 16:19:35', NULL, '0000-00-00 00:00:00'),
(2319, 'id', 'Kekurangan / Cacat Fisik Lainnya', 1, '2013-11-19 16:19:35', NULL, '0000-00-00 00:00:00'),
(2320, 'en', 'Medical Test Status', 1, '2013-11-19 16:20:50', NULL, '0000-00-00 00:00:00'),
(2320, 'id', 'Status Tes Kesehatan', 1, '2013-11-19 16:20:50', NULL, '0000-00-00 00:00:00'),
(2321, 'en', 'Medical Test Notes', 1, '2013-11-19 16:20:35', NULL, '0000-00-00 00:00:00'),
(2321, 'id', 'Catatan Tes Kesehatan', 1, '2013-11-19 16:20:35', NULL, '0000-00-00 00:00:00'),
(2322, 'en', 'Main Identity', 1, '2013-11-20 10:39:06', NULL, '0000-00-00 00:00:00'),
(2322, 'id', 'Identitas Utama', 1, '2013-11-20 10:39:06', NULL, '0000-00-00 00:00:00'),
(2323, 'en', 'Employee Category', 1, '2013-11-20 13:50:56', NULL, '0000-00-00 00:00:00'),
(2323, 'id', 'Kategori Pegawai', 1, '2013-11-20 13:50:56', NULL, '0000-00-00 00:00:00'),
(2324, 'en', 'Work Hour Type', 1, '2013-11-20 13:51:16', NULL, '0000-00-00 00:00:00'),
(2324, 'id', 'Jenis Jam Kerja', 1, '2013-11-20 13:51:16', NULL, '0000-00-00 00:00:00'),
(2325, 'en', 'Maximum Pension Age', 1, '2013-11-20 13:51:48', NULL, '0000-00-00 00:00:00'),
(2325, 'id', 'Usia Maksimal Pensiun', 1, '2013-11-20 13:51:48', NULL, '0000-00-00 00:00:00'),
(2326, 'en', 'Strength Advantages', 1, '2013-11-20 13:52:09', NULL, '0000-00-00 00:00:00'),
(2326, 'id', 'Keunggulan Yang Dimiliki', 1, '2013-11-20 13:52:09', NULL, '0000-00-00 00:00:00'),
(2327, 'en', 'Weakness Disadvantages', 1, '2013-11-20 13:52:32', NULL, '0000-00-00 00:00:00'),
(2327, 'id', 'Kekurangan / Kelemahan Yang Dimiliki', 1, '2013-11-20 13:52:32', NULL, '0000-00-00 00:00:00'),
(2328, 'en', 'Activities During Break Times', 1, '2013-11-20 13:54:00', NULL, '0000-00-00 00:00:00'),
(2328, 'id', 'Kegiatan Selama Waktu Istirahat', 1, '2013-11-20 13:54:00', NULL, '0000-00-00 00:00:00'),
(2329, 'en', 'Periodically Salary Raise', 1, '2013-11-20 15:54:13', NULL, '0000-00-00 00:00:00'),
(2329, 'id', 'Kenaikan Gaji Berkala', 1, '2013-11-20 15:54:13', NULL, '0000-00-00 00:00:00'),
(2330, 'en', 'enter comment here', 1, '2013-11-21 10:39:01', NULL, '0000-00-00 00:00:00'),
(2330, 'id', 'enter comment here', 1, '2013-11-21 10:39:01', NULL, '0000-00-00 00:00:00'),
(2331, 'en', 'Feedback', 1, '2013-11-21 12:34:46', NULL, '0000-00-00 00:00:00'),
(2331, 'id', 'Feedback', 1, '2013-11-21 12:34:46', NULL, '0000-00-00 00:00:00'),
(2332, 'en', 'Thanks for taking the time to provide your feedback about gtESS (Employee Self-Services). If you\'re having an issue with this applications, please let us know.', 1, '2013-11-21 12:38:19', NULL, '0000-00-00 00:00:00'),
(2332, 'id', 'Terima kasih telah meluangkan waktu Anda untuk memberikan feedback tentang gtESS (Employee Self-Services). Jika Anda mengalami masalah dengan aplikasi ini, silakan beritahu kami.', 1, '2013-11-21 12:38:19', NULL, '0000-00-00 00:00:00'),
(2333, 'en', 'Family Name', 1, '2013-11-26 09:10:10', NULL, '0000-00-00 00:00:00'),
(2333, 'id', 'Nama Keluarga', 1, '2013-11-26 09:10:10', NULL, '0000-00-00 00:00:00'),
(2334, 'en', 'Employee Self-Services', 1, '2013-11-26 10:25:12', NULL, '0000-00-00 00:00:00'),
(2334, 'id', 'Employee Self-Services', 1, '2013-11-26 10:25:12', NULL, '0000-00-00 00:00:00'),
(2335, 'en', 'Posted By', 1, '2013-11-27 13:51:33', NULL, '0000-00-00 00:00:00'),
(2335, 'id', 'Posted By', 1, '2013-11-27 13:51:33', NULL, '0000-00-00 00:00:00'),
(2336, 'en', 'Upcoming Event', 1, '2013-12-11 14:12:17', NULL, '0000-00-00 00:00:00'),
(2336, 'id', 'Agenda Terbaru', 1, '2013-12-11 14:12:17', NULL, '0000-00-00 00:00:00'),
(2337, 'en', 'View Full Data', 1, '2013-12-04 09:45:50', NULL, '0000-00-00 00:00:00'),
(2337, 'id', 'Lihat Data Lengkap', 1, '2013-12-04 09:45:50', NULL, '0000-00-00 00:00:00'),
(2338, 'en', 'View Status', 1, '2013-12-04 09:47:51', NULL, '0000-00-00 00:00:00'),
(2338, 'id', 'Status Lihat', 1, '2013-12-04 09:47:51', NULL, '0000-00-00 00:00:00'),
(2339, 'en', 'Is Sticky', 1, '2013-12-04 09:48:08', NULL, '0000-00-00 00:00:00'),
(2339, 'id', 'Status Sticky', 1, '2013-12-04 09:48:08', NULL, '0000-00-00 00:00:00'),
(2340, 'en', 'BBM PIN', 1, '2013-12-04 09:48:44', NULL, '0000-00-00 00:00:00'),
(2340, 'id', 'PIN BBM', 1, '2013-12-04 09:48:44', NULL, '0000-00-00 00:00:00'),
(2341, 'en', 'Facebook', 1, '2013-12-04 09:48:56', NULL, '0000-00-00 00:00:00'),
(2341, 'id', 'Facebook', 1, '2013-12-04 09:48:56', NULL, '0000-00-00 00:00:00'),
(2342, 'en', 'Twitter', 1, '2013-12-04 09:49:11', NULL, '0000-00-00 00:00:00'),
(2342, 'id', 'Twitter', 1, '2013-12-04 09:49:11', NULL, '0000-00-00 00:00:00'),
(2343, 'en', 'Tumblr', 1, '2013-12-04 09:49:22', NULL, '0000-00-00 00:00:00'),
(2343, 'id', 'Tumblr', 1, '2013-12-04 09:49:22', NULL, '0000-00-00 00:00:00'),
(2344, 'en', 'LinkedIn', 1, '2013-12-04 09:49:39', NULL, '0000-00-00 00:00:00'),
(2344, 'id', 'LinkedIn', 1, '2013-12-04 09:49:39', NULL, '0000-00-00 00:00:00'),
(2345, 'en', 'Yahoo! Messenger', 1, '2013-12-04 09:49:54', NULL, '0000-00-00 00:00:00'),
(2345, 'id', 'Yahoo! Messenger', 1, '2013-12-04 09:49:54', NULL, '0000-00-00 00:00:00'),
(2346, 'en', 'Youtube', 1, '2013-12-04 09:50:07', NULL, '0000-00-00 00:00:00'),
(2346, 'id', 'Youtube', 1, '2013-12-04 09:50:07', NULL, '0000-00-00 00:00:00'),
(2347, 'en', 'Flickr', 1, '2013-12-04 09:50:22', NULL, '0000-00-00 00:00:00'),
(2347, 'id', 'Flickr', 1, '2013-12-04 09:50:22', NULL, '0000-00-00 00:00:00'),
(2348, 'en', 'Google+', 1, '2013-12-04 09:50:36', NULL, '0000-00-00 00:00:00'),
(2348, 'id', 'Google+', 1, '2013-12-04 09:50:36', NULL, '0000-00-00 00:00:00'),
(2349, 'en', 'Instagram', 1, '2013-12-04 09:50:49', NULL, '0000-00-00 00:00:00'),
(2349, 'id', 'Instagram', 1, '2013-12-04 09:50:49', NULL, '0000-00-00 00:00:00'),
(2350, 'en', 'Slug', 1, '2013-12-04 09:53:40', NULL, '0000-00-00 00:00:00'),
(2350, 'id', 'Slug', 1, '2013-12-04 09:53:40', NULL, '0000-00-00 00:00:00'),
(2351, 'en', 'Private', 1, '2013-12-04 09:54:15', NULL, '0000-00-00 00:00:00');
INSERT INTO `gtfw_key_text` (`key_text_key_id`, `key_text_lang_code`, `key_text_key_text`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`) VALUES
(2351, 'id', 'Pribadi', 1, '2013-12-04 09:54:15', NULL, '0000-00-00 00:00:00'),
(2352, 'en', 'News Category', 1, '2013-12-04 09:55:58', NULL, '0000-00-00 00:00:00'),
(2352, 'id', 'Kategori Berita', 1, '2013-12-04 09:55:58', NULL, '0000-00-00 00:00:00'),
(2353, 'en', 'One of The Name is Empty', 1, '2013-12-04 09:57:10', NULL, '0000-00-00 00:00:00'),
(2353, 'id', 'Salah Satu Dari Nama Masih Kosong', 1, '2013-12-04 09:57:10', NULL, '0000-00-00 00:00:00'),
(2354, 'en', 'One of The Info is Empty', 1, '2013-12-04 09:57:48', NULL, '0000-00-00 00:00:00'),
(2354, 'id', 'Salah Satu Dari Info Masih Kosong', 1, '2013-12-04 09:57:48', NULL, '0000-00-00 00:00:00'),
(2355, 'en', 'Thumbnails Caption', 1, '2013-12-04 09:59:10', NULL, '0000-00-00 00:00:00'),
(2355, 'id', 'Caption Thumbnail', 1, '2013-12-04 09:59:10', NULL, '0000-00-00 00:00:00'),
(2356, 'en', 'Snippet', 1, '2013-12-04 09:58:43', NULL, '0000-00-00 00:00:00'),
(2356, 'id', 'Snippet', 1, '2013-12-04 09:58:43', NULL, '0000-00-00 00:00:00'),
(2357, 'en', 'Thumbnails', 1, '2013-12-04 09:59:00', NULL, '0000-00-00 00:00:00'),
(2357, 'id', 'Thumbnail', 1, '2013-12-04 09:59:00', NULL, '0000-00-00 00:00:00'),
(2358, 'en', 'External Link', 1, '2013-12-04 09:59:33', NULL, '0000-00-00 00:00:00'),
(2358, 'id', 'Tautan Eksternal', 1, '2013-12-04 09:59:33', NULL, '0000-00-00 00:00:00'),
(2359, 'en', 'One of The Title is Empty', 1, '2013-12-04 10:00:09', NULL, '0000-00-00 00:00:00'),
(2359, 'id', 'Salah Satu Dari Judul Masih Kosong', 1, '2013-12-04 10:00:09', NULL, '0000-00-00 00:00:00'),
(2360, 'en', 'One of The Content is Empty', 1, '2013-12-04 10:00:28', NULL, '0000-00-00 00:00:00'),
(2360, 'id', 'Salah Satu Dari Konten Masih Kosong', 1, '2013-12-04 10:00:28', NULL, '0000-00-00 00:00:00'),
(2361, 'en', 'One of The Snippet is Empty', 1, '2013-12-04 10:00:47', NULL, '0000-00-00 00:00:00'),
(2361, 'id', 'Salah Satu Dari Snippet Masih Kosong', 1, '2013-12-04 10:00:47', NULL, '0000-00-00 00:00:00'),
(2362, 'en', 'Event Category', 1, '2013-12-11 14:12:03', NULL, '0000-00-00 00:00:00'),
(2362, 'id', 'Kategori Agenda', 1, '2013-12-11 14:12:03', NULL, '0000-00-00 00:00:00'),
(2363, 'en', 'Contact Person', 1, '2013-12-04 10:02:26', NULL, '0000-00-00 00:00:00'),
(2363, 'id', 'Kontak Person', 1, '2013-12-04 10:02:26', NULL, '0000-00-00 00:00:00'),
(2364, 'en', 'Phone Number', 1, '2013-12-04 10:02:50', NULL, '0000-00-00 00:00:00'),
(2364, 'id', 'Nomor Telepon / HP', 1, '2013-12-04 10:02:50', NULL, '0000-00-00 00:00:00'),
(2365, 'en', 'Email Address', 1, '2013-12-04 10:03:05', NULL, '0000-00-00 00:00:00'),
(2365, 'id', 'Alamat Email', 1, '2013-12-04 10:03:05', NULL, '0000-00-00 00:00:00'),
(2366, 'en', 'Website', 1, '2013-12-04 10:03:17', NULL, '0000-00-00 00:00:00'),
(2366, 'id', 'Website', 1, '2013-12-04 10:03:17', NULL, '0000-00-00 00:00:00'),
(2367, 'en', 'Policy Category', 1, '2013-12-04 10:04:00', NULL, '0000-00-00 00:00:00'),
(2367, 'id', 'Kategori Kebijakan', 1, '2013-12-04 10:04:00', NULL, '0000-00-00 00:00:00'),
(2368, 'en', 'Is Downloadable ?', 1, '2013-12-04 10:04:49', NULL, '0000-00-00 00:00:00'),
(2368, 'id', 'Dapat Di Unduh ?', 1, '2013-12-04 10:04:49', NULL, '0000-00-00 00:00:00'),
(2369, 'en', 'Response', 1, '2013-12-04 10:06:00', NULL, '0000-00-00 00:00:00'),
(2369, 'id', 'Respons', 1, '2013-12-04 10:06:00', NULL, '0000-00-00 00:00:00'),
(2370, 'en', 'Vote', 1, '2013-12-04 10:06:13', NULL, '0000-00-00 00:00:00'),
(2370, 'id', 'Vote', 1, '2013-12-04 10:06:13', NULL, '0000-00-00 00:00:00'),
(2371, 'en', 'Flag As Inappropriate', 1, '2013-12-04 10:07:12', NULL, '0000-00-00 00:00:00'),
(2371, 'id', 'Tandai Jika Tidak Sesuai', 1, '2013-12-04 10:07:12', NULL, '0000-00-00 00:00:00'),
(2372, 'en', 'Replied', 1, '2013-12-04 10:07:43', NULL, '0000-00-00 00:00:00'),
(2372, 'id', 'Sudah Dibalas', 1, '2013-12-04 10:07:43', NULL, '0000-00-00 00:00:00'),
(2373, 'en', 'Enter Response Here', 1, '2013-12-04 10:08:33', NULL, '0000-00-00 00:00:00'),
(2373, 'id', 'Masukkan Respons Disini', 1, '2013-12-04 10:08:33', NULL, '0000-00-00 00:00:00'),
(2374, 'en', 'Thumbnails Status', 1, '2013-12-04 10:09:15', NULL, '0000-00-00 00:00:00'),
(2374, 'id', 'Status Thumbnail', 1, '2013-12-04 10:09:15', NULL, '0000-00-00 00:00:00'),
(2375, 'en', 'From Gallery', 1, '2013-12-04 10:10:33', NULL, '0000-00-00 00:00:00'),
(2375, 'id', 'Dari Galeri', 1, '2013-12-04 10:10:33', NULL, '0000-00-00 00:00:00'),
(2376, 'en', 'From Thumbnails', 1, '2013-12-04 10:10:54', NULL, '0000-00-00 00:00:00'),
(2376, 'id', 'Dari Thumbnail', 1, '2013-12-04 10:10:54', NULL, '0000-00-00 00:00:00'),
(2377, 'en', 'Album', 1, '2013-12-04 10:11:15', NULL, '0000-00-00 00:00:00'),
(2377, 'id', 'Album', 1, '2013-12-04 10:11:15', NULL, '0000-00-00 00:00:00'),
(2378, 'en', 'Images', 1, '2013-12-04 10:12:18', NULL, '0000-00-00 00:00:00'),
(2378, 'id', 'Gambar', 1, '2013-12-04 10:12:18', NULL, '0000-00-00 00:00:00'),
(2379, 'en', 'URL', 1, '2013-12-04 10:40:52', NULL, '0000-00-00 00:00:00'),
(2379, 'id', 'URL', 1, '2013-12-04 10:40:52', NULL, '0000-00-00 00:00:00'),
(2380, 'en', 'Links', 1, '2013-12-11 11:11:42', NULL, '0000-00-00 00:00:00'),
(2380, 'id', 'Tautan', 1, '2013-12-11 11:11:42', NULL, '0000-00-00 00:00:00'),
(2381, 'en', 'Contact Us', 1, '2013-12-06 10:31:36', NULL, '0000-00-00 00:00:00'),
(2381, 'id', 'Contact Us', 1, '2013-12-06 10:31:36', NULL, '0000-00-00 00:00:00'),
(2382, 'en', 'View Full Calendar', 1, '2013-12-10 08:40:05', NULL, '0000-00-00 00:00:00'),
(2382, 'id', 'View Full Calendar', 1, '2013-12-10 08:40:05', NULL, '0000-00-00 00:00:00'),
(2383, 'en', 'Manpower', 1, '2013-12-10 13:08:49', NULL, '0000-00-00 00:00:00'),
(2383, 'id', 'Manpower', 1, '2013-12-10 13:08:49', NULL, '0000-00-00 00:00:00'),
(2384, 'en', 'File Size', 1, '2013-12-10 14:12:00', NULL, '0000-00-00 00:00:00'),
(2384, 'id', 'Ukuran File', 1, '2013-12-10 14:12:00', NULL, '0000-00-00 00:00:00'),
(2385, 'en', 'Policy', 1, '2013-12-10 14:12:29', NULL, '0000-00-00 00:00:00'),
(2385, 'id', 'Kebijakan', 1, '2013-12-10 14:12:29', NULL, '0000-00-00 00:00:00'),
(2386, 'en', 'Copyright', 1, '2013-12-10 14:43:00', NULL, '0000-00-00 00:00:00'),
(2386, 'id', 'Hak Cipta', 1, '2013-12-10 14:43:00', NULL, '0000-00-00 00:00:00'),
(2387, 'en', 'Frequently Asked Question', 1, '2013-12-10 14:44:06', NULL, '0000-00-00 00:00:00'),
(2387, 'id', 'Tanya Jawab', 1, '2013-12-10 14:44:06', NULL, '0000-00-00 00:00:00'),
(2388, 'en', 'Privacy Policy', 1, '2013-12-10 14:44:39', NULL, '0000-00-00 00:00:00'),
(2388, 'id', 'Kebijakan Privasi', 1, '2013-12-10 14:44:39', NULL, '0000-00-00 00:00:00'),
(2389, 'en', 'Terms & Conditions', 1, '2013-12-10 14:44:59', NULL, '0000-00-00 00:00:00'),
(2389, 'id', 'Syarat & Kondisi', 1, '2013-12-10 14:44:59', NULL, '0000-00-00 00:00:00'),
(2390, 'en', 'Changelog', 1, '2013-12-10 14:45:18', NULL, '0000-00-00 00:00:00'),
(2390, 'id', 'Log Perubahan', 1, '2013-12-10 14:45:18', NULL, '0000-00-00 00:00:00'),
(2391, 'en', 'Give Us Feedback', 1, '2013-12-10 14:45:45', NULL, '0000-00-00 00:00:00'),
(2391, 'id', 'Berikan Tanggapan', 1, '2013-12-10 14:45:45', NULL, '0000-00-00 00:00:00'),
(2392, 'en', 'Support', 1, '2013-12-10 14:47:07', NULL, '0000-00-00 00:00:00'),
(2392, 'id', 'Support', 1, '2013-12-10 14:47:07', NULL, '0000-00-00 00:00:00'),
(2393, 'en', 'Change Your Profile Pics', 1, '2013-12-10 15:17:01', NULL, '0000-00-00 00:00:00'),
(2393, 'id', 'Ganti Foto Profil Anda', 1, '2013-12-10 15:17:01', NULL, '0000-00-00 00:00:00'),
(2394, 'en', 'Complete Your Profile', 1, '2013-12-10 15:17:52', NULL, '0000-00-00 00:00:00'),
(2394, 'id', 'Lengkapi Profil Anda', 1, '2013-12-10 15:17:52', NULL, '0000-00-00 00:00:00'),
(2395, 'en', 'Personal History', 1, '2013-12-10 15:18:13', NULL, '0000-00-00 00:00:00'),
(2395, 'id', 'Riwayat Pribadi', 1, '2013-12-10 15:18:13', NULL, '0000-00-00 00:00:00'),
(2396, 'en', 'Medical Information', 1, '2013-12-10 15:18:33', NULL, '0000-00-00 00:00:00'),
(2396, 'id', 'Informasi Kesehatan', 1, '2013-12-10 15:18:33', NULL, '0000-00-00 00:00:00'),
(2397, 'en', 'News', 1, '2013-12-10 20:48:20', NULL, '0000-00-00 00:00:00'),
(2397, 'id', 'Berita', 1, '2013-12-10 20:48:20', NULL, '0000-00-00 00:00:00'),
(2398, 'en', 'Policy & Regulations', 1, '2013-12-10 20:51:19', NULL, '0000-00-00 00:00:00'),
(2398, 'id', 'Kebijakan & Peraturan', 1, '2013-12-10 20:51:19', NULL, '0000-00-00 00:00:00'),
(2399, 'en', 'Picture Gallery', 1, '2013-12-10 20:58:51', NULL, '0000-00-00 00:00:00'),
(2399, 'id', 'Galeri Gambar', 1, '2013-12-10 20:58:51', NULL, '0000-00-00 00:00:00'),
(2400, 'en', 'Multimedia Gallery', 1, '2013-12-10 21:05:16', NULL, '0000-00-00 00:00:00'),
(2400, 'id', 'Galeri Multimedia', 1, '2013-12-10 21:05:16', NULL, '0000-00-00 00:00:00'),
(2401, 'en', 'Banners', 1, '2013-12-11 11:15:07', NULL, '0000-00-00 00:00:00'),
(2401, 'id', 'Banner', 1, '2013-12-11 11:15:07', NULL, '0000-00-00 00:00:00'),
(2402, 'en', 'Events', 1, '2013-12-11 14:11:51', NULL, '0000-00-00 00:00:00'),
(2402, 'id', 'Agenda', 1, '2013-12-11 14:11:51', NULL, '0000-00-00 00:00:00'),
(2403, 'en', 'Venue', 1, '2013-12-11 14:12:35', NULL, '0000-00-00 00:00:00'),
(2403, 'id', 'Gedung', 1, '2013-12-11 14:12:35', NULL, '0000-00-00 00:00:00'),
(2404, 'en', 'Delegate Fee', 1, '2013-12-11 14:12:52', NULL, '0000-00-00 00:00:00'),
(2404, 'id', 'Biaya', 1, '2013-12-11 14:12:52', NULL, '0000-00-00 00:00:00'),
(2405, 'en', 'Email Address', 1, '2013-12-11 14:13:08', NULL, '0000-00-00 00:00:00'),
(2405, 'id', 'Alamat Email', 1, '2013-12-11 14:13:08', NULL, '0000-00-00 00:00:00'),
(2406, 'en', 'Websites', 1, '2013-12-11 14:13:26', NULL, '0000-00-00 00:00:00'),
(2406, 'id', 'Website', 1, '2013-12-11 14:13:26', NULL, '0000-00-00 00:00:00'),
(2407, 'en', 'Event Detail', 1, '2013-12-11 14:13:45', NULL, '0000-00-00 00:00:00'),
(2407, 'id', 'Detail Agenda', 1, '2013-12-11 14:13:45', NULL, '0000-00-00 00:00:00'),
(2408, 'en', 'FAQ', 1, '2013-12-12 11:10:05', NULL, '0000-00-00 00:00:00'),
(2408, 'id', 'Tanya Jawab', 1, '2013-12-12 11:10:05', NULL, '0000-00-00 00:00:00'),
(2409, 'en', 'Enlarge Map', 1, '2013-12-12 11:16:02', NULL, '0000-00-00 00:00:00'),
(2409, 'id', 'Perbesar Peta', 1, '2013-12-12 11:16:02', NULL, '0000-00-00 00:00:00'),
(2410, 'en', 'Chat Room', 1, '2013-12-13 16:02:03', NULL, '0000-00-00 00:00:00'),
(2410, 'id', 'Ruang Diskusi', 1, '2013-12-13 16:02:03', NULL, '0000-00-00 00:00:00'),
(2411, 'en', 'Detail Account', 1, '2013-12-16 08:42:17', NULL, '0000-00-00 00:00:00'),
(2411, 'id', 'Detail Akun', 1, '2013-12-16 08:42:17', NULL, '0000-00-00 00:00:00'),
(2412, 'en', 'Company Profile', 1, '2013-12-17 11:00:51', NULL, '0000-00-00 00:00:00'),
(2412, 'id', 'Profil Perusahaan', 1, '2013-12-17 11:00:51', NULL, '0000-00-00 00:00:00'),
(2413, 'en', 'Privacy Policy', 1, '2013-12-17 11:04:31', NULL, '0000-00-00 00:00:00'),
(2413, 'id', 'Kebijakan Privasi', 1, '2013-12-17 11:04:31', NULL, '0000-00-00 00:00:00'),
(2414, 'en', 'Terms & Conditions', 1, '2013-12-17 11:04:57', NULL, '0000-00-00 00:00:00'),
(2414, 'id', 'Syarat & Kondisi', 1, '2013-12-17 11:04:57', NULL, '0000-00-00 00:00:00'),
(2415, 'en', 'Event', 1, '2013-12-17 11:10:46', NULL, '0000-00-00 00:00:00'),
(2415, 'id', 'Agenda', 1, '2013-12-17 11:10:46', NULL, '0000-00-00 00:00:00'),
(2416, 'en', 'Announcement', 1, '2013-12-17 11:12:08', NULL, '0000-00-00 00:00:00'),
(2416, 'id', 'Pengumuman', 1, '2013-12-17 11:12:08', NULL, '0000-00-00 00:00:00'),
(2417, 'en', 'Question', 1, '2013-12-17 11:12:37', NULL, '0000-00-00 00:00:00'),
(2417, 'id', 'Pertanyaan', 1, '2013-12-17 11:12:37', NULL, '0000-00-00 00:00:00'),
(2418, 'en', 'Answer', 1, '2013-12-17 11:12:55', NULL, '0000-00-00 00:00:00'),
(2418, 'id', 'Jawaban', 1, '2013-12-17 11:12:55', NULL, '0000-00-00 00:00:00'),
(2419, 'en', 'FAQ', 1, '2013-12-17 11:13:45', NULL, '0000-00-00 00:00:00'),
(2419, 'id', 'Tanya Jawab', 1, '2013-12-17 11:13:45', NULL, '0000-00-00 00:00:00'),
(2420, 'en', 'Link', 1, '2013-12-17 11:14:08', NULL, '0000-00-00 00:00:00'),
(2420, 'id', 'Tautan', 1, '2013-12-17 11:14:08', NULL, '0000-00-00 00:00:00'),
(2421, 'en', 'Profile Art', 1, '2013-12-17 11:16:12', NULL, '0000-00-00 00:00:00'),
(2421, 'id', 'Gambar Profil', 1, '2013-12-17 11:16:12', NULL, '0000-00-00 00:00:00'),
(2422, 'en', 'Gallery', 1, '2013-12-17 11:17:44', NULL, '0000-00-00 00:00:00'),
(2422, 'id', 'Galeri', 1, '2013-12-17 11:17:44', NULL, '0000-00-00 00:00:00'),
(2423, 'en', 'Multimedia Album', 1, '2013-12-17 11:18:33', NULL, '0000-00-00 00:00:00'),
(2423, 'id', 'Album Multimedia', 1, '2013-12-17 11:18:33', NULL, '0000-00-00 00:00:00'),
(2424, 'en', 'Multimedia', 1, '2013-12-17 11:19:01', NULL, '0000-00-00 00:00:00'),
(2424, 'id', 'Multimedia', 1, '2013-12-17 11:19:01', NULL, '0000-00-00 00:00:00'),
(2425, 'en', 'Multimedia Type', 1, '2013-12-17 11:19:24', NULL, '0000-00-00 00:00:00'),
(2425, 'id', 'Jenis Multimedia', 1, '2013-12-17 11:19:24', NULL, '0000-00-00 00:00:00'),
(2426, 'en', 'Video Code', 1, '2013-12-17 11:19:53', NULL, '0000-00-00 00:00:00'),
(2426, 'id', 'Kode Video', 1, '2013-12-17 11:19:53', NULL, '0000-00-00 00:00:00'),
(2427, 'en', 'Banner', 1, '2013-12-17 11:20:17', NULL, '0000-00-00 00:00:00'),
(2427, 'id', 'Banner', 1, '2013-12-17 11:20:17', NULL, '0000-00-00 00:00:00'),
(2428, 'en', 'Splash Screen', 1, '2013-12-17 11:21:14', NULL, '0000-00-00 00:00:00'),
(2428, 'id', 'Splash Screen', 1, '2013-12-17 11:21:14', NULL, '0000-00-00 00:00:00'),
(2429, 'en', 'Slideshow', 1, '2013-12-17 11:22:13', NULL, '0000-00-00 00:00:00'),
(2429, 'id', 'Slideshow', 1, '2013-12-17 11:22:13', NULL, '0000-00-00 00:00:00'),
(2430, 'en', 'Related To', 1, '2013-12-17 11:24:30', NULL, '0000-00-00 00:00:00'),
(2430, 'id', 'Berkaitan Dengan', 1, '2013-12-17 11:24:30', NULL, '0000-00-00 00:00:00'),
(2431, 'en', 'Post', 1, '2013-12-17 11:24:44', NULL, '0000-00-00 00:00:00'),
(2431, 'id', 'Post', 1, '2013-12-17 11:24:44', NULL, '0000-00-00 00:00:00'),
(2432, 'en', 'Weakness Disadvantages', 1, '2013-12-17 14:47:25', NULL, '0000-00-00 00:00:00'),
(2432, 'id', 'Kekurangan / Kelemahan Yang Dimiliki', 1, '2013-12-17 14:47:25', NULL, '0000-00-00 00:00:00'),
(2433, 'en', 'View Poll', 1, '2013-12-23 09:53:49', NULL, '0000-00-00 00:00:00'),
(2433, 'id', 'Lihat Polling', 1, '2013-12-23 09:53:49', NULL, '0000-00-00 00:00:00'),
(2434, 'en', 'Poll', 1, '2013-12-23 09:54:29', NULL, '0000-00-00 00:00:00'),
(2434, 'id', 'Polling', 1, '2013-12-23 09:54:29', NULL, '0000-00-00 00:00:00'),
(2435, 'en', 'Preferences', 1, '2013-12-30 08:14:18', NULL, '0000-00-00 00:00:00'),
(2435, 'id', 'Pengaturan', 1, '2013-12-30 08:14:18', NULL, '0000-00-00 00:00:00'),
(2436, 'en', 'View Result', 1, '2013-12-30 09:16:11', NULL, '0000-00-00 00:00:00'),
(2436, 'id', 'Lihat Hasil', 1, '2013-12-30 09:16:11', NULL, '0000-00-00 00:00:00'),
(2437, 'en', 'Polling Information', 1, '2013-12-30 09:19:06', NULL, '0000-00-00 00:00:00'),
(2437, 'id', 'Informasi Polling', 1, '2013-12-30 09:19:06', NULL, '0000-00-00 00:00:00'),
(2438, 'en', 'Submit Poll', 1, '2013-12-30 14:16:06', NULL, '0000-00-00 00:00:00'),
(2438, 'id', 'Isi Polling', 1, '2013-12-30 14:16:06', NULL, '0000-00-00 00:00:00'),
(2439, 'en', 'Polling', 1, '2013-12-30 14:56:12', NULL, '0000-00-00 00:00:00'),
(2439, 'id', 'Polling', 1, '2013-12-30 14:56:12', NULL, '0000-00-00 00:00:00'),
(2440, 'en', 'Import', 1, '2014-02-04 08:54:06', NULL, '0000-00-00 00:00:00'),
(2440, 'id', 'Import', 1, '2014-02-04 08:54:06', NULL, '0000-00-00 00:00:00');
-- --------------------------------------------------------
--
-- Table structure for table `gtfw_lang`
--
CREATE TABLE `gtfw_lang` (
`lang_code` varchar(5) NOT NULL,
`lang_name` varchar(50) DEFAULT NULL,
`lang_icon_path` varchar(255) DEFAULT NULL,
`lang_desc` text DEFAULT NULL,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '0000-00-00 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `gtfw_lang`
--
INSERT INTO `gtfw_lang` (`lang_code`, `lang_name`, `lang_icon_path`, `lang_desc`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`) VALUES
('en', 'English', '', '', NULL, '0000-00-00 00:00:00', 52, '2013-09-13 11:06:11'),
('id', 'Indonesian', '', '', NULL, '0000-00-00 00:00:00', 1, '2013-11-12 10:53:57');
-- --------------------------------------------------------
--
-- Table structure for table `gtfw_logs`
--
CREATE TABLE `gtfw_logs` (
`logs_id` bigint(20) NOT NULL,
`logs_action` varchar(50) NOT NULL,
`logs_timestamp` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
`logs_old_value` text DEFAULT NULL,
`logs_new_value` text DEFAULT NULL,
`logs_user_id` bigint(20) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `gtfw_menu`
--
CREATE TABLE `gtfw_menu` (
`menu_id` bigint(20) NOT NULL COMMENT 'id menu',
`menu_parent_id` bigint(20) DEFAULT NULL COMMENT 'refer to gtfw_menu.menu_id (parent)',
`menu_slug` varchar(100) DEFAULT NULL COMMENT 'slug for default group menu (home)',
`menu_desc` text DEFAULT NULL COMMENT 'description',
`menu_is_show` enum('Yes','No') DEFAULT NULL COMMENT 'show status, 0=not showed, 1=show',
`menu_icon_large` varchar(255) DEFAULT NULL COMMENT 'icon large, for landingpage menu',
`menu_icon_path` varchar(255) DEFAULT NULL COMMENT 'icon medium, for content menu',
`menu_icon_small` varchar(255) DEFAULT NULL COMMENT 'icon small, for sidebar menu',
`menu_menu_order` int(11) DEFAULT NULL COMMENT 'menu order',
`menu_application_id` int(11) NOT NULL COMMENT 'refer to gtfw_application.application_id',
`menu_default_module_id` bigint(20) DEFAULT NULL COMMENT 'refer to gtfw_module.module_id (as default module for view)',
`menu_view_model` tinyint(1) DEFAULT 0 COMMENT 'view model for menu that doesn''t have default module. 0=home, 1=grid',
`menu_class_style` varchar(50) DEFAULT NULL COMMENT 'class style',
`menu_is_system_menu` tinyint(1) DEFAULT 0 COMMENT 'menu that set as system menu, not an application menu',
`insert_user_id` bigint(20) DEFAULT NULL COMMENT 'user submit',
`insert_timestamp` datetime DEFAULT '0000-00-00 00:00:00' COMMENT 'date submit',
`update_user_id` bigint(20) DEFAULT NULL COMMENT 'user modified',
`update_timestamp` datetime DEFAULT '0000-00-00 00:00:00' COMMENT 'date modified'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `gtfw_menu`
--
INSERT INTO `gtfw_menu` (`menu_id`, `menu_parent_id`, `menu_slug`, `menu_desc`, `menu_is_show`, `menu_icon_large`, `menu_icon_path`, `menu_icon_small`, `menu_menu_order`, `menu_application_id`, `menu_default_module_id`, `menu_view_model`, `menu_class_style`, `menu_is_system_menu`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`) VALUES
(0, NULL, 'home', 'Home', 'No', NULL, NULL, NULL, NULL, 1, NULL, 0, NULL, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(1, 0, NULL, 'Setting / Preferences', 'Yes', NULL, NULL, NULL, 3, 1, NULL, 0, 'icon-wrench', 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(2, 0, NULL, 'References', 'Yes', NULL, NULL, NULL, 2, 1, NULL, 0, 'icon-folder-open', 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(3, 1, NULL, 'Company', 'Yes', NULL, 'perusahaan.png', 'small-perusahaan.png', 1, 1, 57, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(4, 1, NULL, 'Unit', 'Yes', NULL, 'unit.png', 'small-unit.png', 2, 1, 72, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(5, 1, NULL, 'Employee', 'Yes', NULL, 'employee-data.png', 'small-employee-data.png', 3, 1, 412, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(6, 1, NULL, 'Group', 'Yes', NULL, 'group.png', 'small-group.png', 4, 1, 87, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(7, 1, NULL, 'User ', 'Yes', NULL, 'user.png', 'small-user.png', 5, 1, 94, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(8, 1, NULL, 'Group (All Modules)', 'Yes', NULL, 'group.png', 'small-group.png', 6, 1, 109, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(9, 1, NULL, 'User (All Modules)', 'Yes', NULL, 'user.png', 'small-user.png', 7, 1, 124, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(10, 1, NULL, 'Setting', 'Yes', NULL, 'setting.png', 'small-setting.png', 8, 1, NULL, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(11, 1, NULL, 'Template', 'Yes', NULL, 'template.png', 'small-template.png', 9, 1, NULL, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(12, 1, NULL, 'Development', 'Yes', NULL, 'development.png', 'small-development.png', 10, 1, NULL, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(13, 10, NULL, 'General Setting', 'Yes', NULL, 'setting.png', 'small-setting.png', 1, 1, 131, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(14, 11, NULL, 'Email Template', 'Yes', NULL, 'tmplt-email.png', 'small-tmplt-email.png', 1, 1, 150, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(15, 11, NULL, 'Notification Template', 'Yes', NULL, 'tmplt-notfi.png', 'small-tmplt-notfi.png', 2, 1, 182, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(16, 11, NULL, 'Sms Template', 'Yes', NULL, 'tmplt-sms.png', 'small-tmplt-sms.png', 3, 1, 190, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(17, 12, NULL, 'Menu', 'Yes', NULL, 'menu.png', 'small-menu.png', 1, 1, 5, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(18, 12, NULL, 'CRUD', 'Yes', NULL, 'crud.png', 'small-crud.png', 2, 1, 18, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(19, 12, NULL, 'Language', 'Yes', NULL, 'button-language.png', 'small-language.png', 3, 1, 21, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(20, 12, NULL, 'Translate', 'Yes', NULL, 'translate.png', 'small-translate.png', 4, 1, 28, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(21, 12, NULL, 'Table Documentation', 'Yes', NULL, 'doc-tabel.png', 'small-doc-tabel.png', 5, 1, 35, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(22, 12, NULL, 'Test', 'Yes', NULL, 'test.png', 'small-test.png', 6, 1, 50, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(23, 2, NULL, 'Global', 'Yes', NULL, 'reference-general.png', 'small-reference-general.png', 1, 1, NULL, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(24, 23, NULL, 'Salutation', 'Yes', NULL, 'salutation.png', 'small-salutation.png', 1, 1, 199, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(25, 23, NULL, 'Master Type', 'Yes', NULL, 'jenis-master.png', 'small-jenis-master.png', 2, 1, 214, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(26, 23, NULL, 'Email Type', 'Yes', NULL, 'email-type.png', 'small-email-type.png', 3, 1, 229, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(27, 23, NULL, 'Photo Type', 'Yes', NULL, 'photo-type.png', 'small-photo-type.png', 4, 1, 244, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(28, 23, NULL, 'Country', 'Yes', NULL, 'country.png', 'small-country.png', 5, 1, 259, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(29, 23, NULL, 'State', 'Yes', NULL, 'state.png', 'small-state.png', 6, 1, 290, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(30, 23, NULL, 'City', 'Yes', NULL, 'city.png', 'small-city.png', 7, 1, 321, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(31, 23, NULL, 'Currency', 'Yes', NULL, 'currency.png', 'small-currency.png', 8, 1, 352, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(32, 23, NULL, 'Structural Position Type', 'Yes', NULL, 'structural-position.png', 'small-structural-position.png', 9, 1, 367, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(33, 2, NULL, 'HR', 'Yes', NULL, 'employment.png', 'small-employment.png', 2, 1, NULL, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(34, 33, NULL, 'Employee Status', 'Yes', NULL, 'employee-status.png', 'small-employee-status.png', 1, 1, 382, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(35, 33, NULL, 'Employee Type', 'Yes', NULL, 'employee-type.png', 'small-employee-type.png', 2, 1, 397, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(36, 0, NULL, 'Reports', 'Yes', 'large-report.png', NULL, NULL, 4, 1, NULL, 0, NULL, 0, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(37, 0, NULL, 'Sitemap', 'Yes', NULL, NULL, NULL, 1, 1, NULL, 0, 'icon-th-list', 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(38, 0, NULL, '', 'Yes', '', '', '', 0, 1, 426, 1, '', 0, 1, '2021-07-13 14:43:35', NULL, '0000-00-00 00:00:00'),
(40, 0, NULL, '', 'Yes', '', '', '', 0, 1, NULL, 1, '', 0, 1, '2021-07-13 15:06:10', 1, '2021-07-13 15:14:29'),
(41, 0, NULL, '', 'Yes', 'news.png', 'news.png', 'news.png', 1, 1, 440, 1, '', 0, 1, '2021-07-14 14:18:07', 1, '2021-07-14 16:21:04'),
(42, 0, NULL, '', 'Yes', 'applicant_data.png', 'applicant_data.png', 'applicant_data.png', 2, 1, 447, 1, '', 0, 1, '2021-07-14 16:06:01', NULL, '0000-00-00 00:00:00'),
(43, 0, NULL, '', 'Yes', 'pemasukan-barang.png', 'pemasukan-barang.png', 'pemasukan-barang.png', 3, 1, 455, 1, '', 0, 1, '2021-07-14 16:38:58', NULL, '0000-00-00 00:00:00');
-- --------------------------------------------------------
--
-- Table structure for table `gtfw_menu_text`
--
CREATE TABLE `gtfw_menu_text` (
`menutext_menu_id` bigint(20) NOT NULL COMMENT 'refer to gtfw_menu.menu_id',
`menutext_lang_code` varchar(5) NOT NULL COMMENT 'refer to gtfw_lang.lang_code',
`menutext_menu_name` varchar(255) DEFAULT NULL,
`menutext_menu_desc` text DEFAULT NULL,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '0000-00-00 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `gtfw_menu_text`
--
INSERT INTO `gtfw_menu_text` (`menutext_menu_id`, `menutext_lang_code`, `menutext_menu_name`, `menutext_menu_desc`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`) VALUES
(0, 'en', 'Home', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(0, 'id', 'Beranda', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(1, 'en', 'Setting / Preferences', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(1, 'id', 'Pengaturan / Preferensi', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(2, 'en', 'References', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(2, 'id', 'Referensi', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(3, 'en', 'Company', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(3, 'id', 'Perusahaan', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(4, 'en', 'Unit', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(4, 'id', 'Satuan Kerja', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(5, 'en', 'Employee', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(5, 'id', 'Pegawai', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(6, 'en', 'Group', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(6, 'id', 'Grup', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(7, 'en', 'User', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(7, 'id', 'Pengguna', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(8, 'en', 'Group (All Modules)', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(8, 'id', 'Grup (Seluruh Modul)', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(9, 'en', 'User (All Modules)', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(9, 'id', 'Pengguna (Seluruh Modul)', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(10, 'en', 'Setting', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(10, 'id', 'Pengaturan', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(11, 'en', 'Template', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(11, 'id', 'Template', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(12, 'en', 'Development', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(12, 'id', 'Pengembangan', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(13, 'en', 'General Setting', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(13, 'id', 'Pengaturan Umum', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(14, 'en', 'Email Template', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(14, 'id', 'Template Email', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(15, 'en', 'Notification Template', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(15, 'id', 'Template Notifikasi', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(16, 'en', 'Sms Template', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(16, 'id', 'Template Sms', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(17, 'en', 'Menu', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(17, 'id', 'Menu', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(18, 'en', 'CRUD', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(18, 'id', 'CRUD', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(19, 'en', 'Language', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(19, 'id', 'Bahasa', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(20, 'en', 'Translate', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(20, 'id', 'Terjemahan', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(21, 'en', 'Table Documentation', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(21, 'id', 'Dokumentasi Table', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(22, 'en', 'Test', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(22, 'id', 'Uji', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(23, 'en', 'Global', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(23, 'id', 'Umum', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(24, 'en', 'Salutation', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(24, 'id', 'Sapaan', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(25, 'en', 'Master Type', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(25, 'id', 'Jenis Induk', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(26, 'en', 'Email Type', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(26, 'id', 'Jenis Email', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(27, 'en', 'Photo Type', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(27, 'id', 'Jenis Foto', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(28, 'en', 'Country', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(28, 'id', 'Negara', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(29, 'en', 'State', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(29, 'id', 'Propinsi', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(30, 'en', 'City', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(30, 'id', 'Kota / Kabupaten', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(31, 'en', 'Currency', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(31, 'id', 'Mata Uang', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(32, 'en', 'Structural Position Type', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(32, 'id', 'Jenis Jabatan Struktural', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(33, 'en', 'HR', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(33, 'id', 'SDM', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(34, 'en', 'Employee Status', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(34, 'id', 'Status Pegawai', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(35, 'en', 'Employee Type', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(35, 'id', 'Jenis Pegawai', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(36, 'en', 'Reports', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(36, 'id', 'Laporan', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(37, 'en', 'Sitemap', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(37, 'id', 'Peta Situs', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(40, 'en', 'Store', '', 1, '2021-07-13 15:14:29', NULL, '0000-00-00 00:00:00'),
(40, 'id', 'Toko', '', 1, '2021-07-13 15:14:29', NULL, '0000-00-00 00:00:00'),
(41, 'en', 'News', '', 1, '2021-07-14 16:21:04', NULL, '0000-00-00 00:00:00'),
(41, 'id', 'Berita', '', 1, '2021-07-14 16:21:04', NULL, '0000-00-00 00:00:00'),
(42, 'en', 'Member', '', 1, '2021-07-14 16:06:01', NULL, '0000-00-00 00:00:00'),
(42, 'id', 'Anggota', '', 1, '2021-07-14 16:06:01', NULL, '0000-00-00 00:00:00'),
(43, 'en', 'Tipe', '', 1, '2021-07-14 16:38:58', NULL, '0000-00-00 00:00:00'),
(43, 'id', 'Tipe', '', 1, '2021-07-14 16:38:58', NULL, '0000-00-00 00:00:00');
-- --------------------------------------------------------
--
-- Table structure for table `gtfw_module`
--
CREATE TABLE `gtfw_module` (
`module_id` bigint(20) NOT NULL,
`module` varchar(100) DEFAULT NULL,
`module_sub_module` varchar(100) DEFAULT NULL,
`module_action` varchar(100) DEFAULT NULL,
`module_type` varchar(100) DEFAULT NULL,
`module_desc` text DEFAULT NULL,
`module_access` enum('exclusive','all') DEFAULT 'all',
`module_menu_id` bigint(20) DEFAULT NULL COMMENT 'refer to gtfw_menu.menu_id',
`module_application_id` int(11) DEFAULT NULL COMMENT 'refer to gtfw_application.application_id',
`module_action_id` smallint(6) DEFAULT NULL COMMENT 'refer to gtfw_action.action_id',
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '0000-00-00 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `gtfw_module`
--
INSERT INTO `gtfw_module` (`module_id`, `module`, `module_sub_module`, `module_action`, `module_type`, `module_desc`, `module_access`, `module_menu_id`, `module_application_id`, `module_action_id`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`) VALUES
(0, 'core.home', 'home', 'view', 'html', NULL, 'exclusive', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(1, 'core.home', 'landingPage', 'view', 'html', NULL, 'exclusive', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(2, 'core.home', 'about', 'view', 'html', NULL, 'all', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(3, 'core.home', 'legalNotice', 'view', 'html', NULL, 'all', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(4, 'core.home', 'filterAdvanceJs', 'view', 'html', NULL, 'all', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(5, 'core.menu', 'menuList', 'view', 'html', NULL, 'exclusive', 17, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(6, 'core.menu', 'addMenu', 'view', 'html', NULL, 'exclusive', 17, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(7, 'core.menu', 'addMenu', 'do', 'json', NULL, 'exclusive', 17, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(8, 'core.menu', 'updateMenu', 'view', 'html', NULL, 'exclusive', 17, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(9, 'core.menu', 'comboMenu', 'view', 'html', NULL, 'all', 17, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(10, 'core.menu', 'updateMenu', 'do', 'json', NULL, 'exclusive', 17, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(11, 'core.menu', 'deleteMenu', 'do', 'json', NULL, 'exclusive', 17, 1, 4, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(12, 'core.login', 'login', 'view', 'html', NULL, 'all', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(13, 'core.login', 'login', 'do', 'html', NULL, 'all', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(14, 'core.login', 'logout', 'do', 'html', NULL, 'all', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(15, 'core.widget', 'widget', 'view', 'html', NULL, 'all', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(16, 'core.widget', 'popupWidget', 'view', 'html', NULL, 'all', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(17, 'core.widget', 'saveWidget', 'do', 'json', NULL, 'all', 0, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(18, 'core.crud', 'module', 'view', 'html', NULL, 'exclusive', 18, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(19, 'core.crud', 'module', 'do', 'html', NULL, 'exclusive', 18, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(20, 'core.crud', 'table', 'view', 'html', NULL, 'exclusive', 18, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(21, 'core.language', 'language', 'view', 'html', NULL, 'exclusive', 19, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(22, 'core.language', 'detailLanguage', 'view', 'html', NULL, 'exclusive', 19, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(23, 'core.language', 'addLanguage', 'view', 'html', NULL, 'exclusive', 19, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(24, 'core.language', 'addLanguage', 'do', 'json', NULL, 'exclusive', 19, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(25, 'core.language', 'updateLanguage', 'view', 'html', NULL, 'exclusive', 19, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(26, 'core.language', 'updateLanguage', 'do', 'json', NULL, 'exclusive', 19, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(27, 'core.language', 'deleteLanguage', 'do', 'json', NULL, 'exclusive', 19, 1, 4, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(28, 'core.lang.key', 'key', 'view', 'html', NULL, 'exclusive', 20, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(29, 'core.lang.key', 'detailKey', 'view', 'html', NULL, 'exclusive', 20, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(30, 'core.lang.key', 'addKey', 'view', 'html', NULL, 'exclusive', 20, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(31, 'core.lang.key', 'addKey', 'do', 'json', NULL, 'exclusive', 20, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(32, 'core.lang.key', 'updateKey', 'view', 'html', NULL, 'exclusive', 20, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(33, 'core.lang.key', 'updateKey', 'do', 'json', NULL, 'exclusive', 20, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(34, 'core.lang.key', 'deleteKey', 'do', 'json', NULL, 'exclusive', 20, 1, 4, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(35, 'core.table.documentation', 'documentation', 'view', 'html', NULL, 'exclusive', 21, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(36, 'core.table.documentation', 'detailDocumentation', 'view', 'html', NULL, 'exclusive', 21, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(37, 'core.table.documentation', 'addDocumentation', 'view', 'html', NULL, 'exclusive', 21, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(38, 'core.table.documentation', 'addDocumentation', 'do', 'json', NULL, 'exclusive', 21, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(39, 'core.table.documentation', 'updateDocumentation', 'view', 'html', NULL, 'exclusive', 21, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(40, 'core.table.documentation', 'updateDocumentation', 'do', 'json', NULL, 'exclusive', 21, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(41, 'core.table.documentation', 'deleteDocumentation', 'do', 'json', NULL, 'exclusive', 21, 1, 4, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(42, 'core.table.documentation', 'exportDocumentation', 'view', 'html', NULL, 'exclusive', 21, 1, 6, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(43, 'core.table.documentation', 'generateSampleQuery', 'do', 'html', NULL, 'exclusive', 21, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(44, 'core.table.documentation', 'getFields', 'do', 'html', NULL, 'exclusive', 21, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(45, 'core.table.documentation', 'tableFields', 'view', 'html', NULL, 'exclusive', 21, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(46, 'core.table.documentation', 'exportDocumentation', 'view', 'html', NULL, 'exclusive', 21, 1, 6, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(50, 'core.test', 'test', 'view', 'html', NULL, 'all', 22, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(51, 'core.test', 'widgetContainer', 'view', 'html', NULL, 'all', 22, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(52, 'core.test', 'sample', 'widget', 'html', NULL, 'all', 22, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(53, 'core.test', 'anotherSample', 'widget', 'html', NULL, 'all', 22, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(54, 'core.test', 'sampleAgain', 'widget', 'html', NULL, 'all', 22, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(57, 'core.company', 'coreCompany', 'view', 'html', NULL, 'exclusive', 3, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(58, 'core.company', 'detailCoreCompany', 'view', 'html', NULL, 'exclusive', 3, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(59, 'core.company', 'addCoreCompany', 'view', 'html', NULL, 'exclusive', 3, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(60, 'core.company', 'addCoreCompany', 'do', 'json', NULL, 'exclusive', 3, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(61, 'core.company', 'updateCoreCompany', 'view', 'html', NULL, 'exclusive', 3, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(62, 'core.company', 'updateCoreCompany', 'do', 'json', NULL, 'exclusive', 3, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(63, 'core.company', 'deleteCoreCompany', 'do', 'json', NULL, 'exclusive', 3, 1, 4, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(64, 'core.company', 'comboCompany', 'view', 'html', NULL, 'all', 3, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(72, 'core.unit', 'unit', 'view', 'html', NULL, 'all', 4, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(73, 'core.unit', 'detailUnit', 'view', 'html', NULL, 'all', 4, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(74, 'core.unit', 'addUnit', 'view', 'html', NULL, 'all', 4, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(75, 'core.unit', 'addUnit', 'do', 'json', NULL, 'all', 4, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(76, 'core.unit', 'updateUnit', 'view', 'html', NULL, 'all', 4, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(77, 'core.unit', 'updateUnit', 'do', 'json', NULL, 'all', 4, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(78, 'core.unit', 'deleteUnit', 'do', 'json', NULL, 'all', 4, 1, 4, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(79, 'core.unit', 'comboUnit', 'view', 'html', NULL, 'all', 4, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(80, 'core.unit', 'comboContractUnit', 'view', 'html', NULL, 'all', 4, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(81, 'core.unit', 'comboOpportunityUnit', 'view', 'html', NULL, 'all', 4, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(87, 'core.group', 'group', 'view', 'html', NULL, 'exclusive', 6, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(88, 'core.group', 'detailGroup', 'view', 'html', NULL, 'exclusive', 6, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(89, 'core.group', 'addGroup', 'view', 'html', NULL, 'exclusive', 6, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(90, 'core.group', 'addGroup', 'do', 'json', NULL, 'exclusive', 6, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(91, 'core.group', 'updateGroup', 'view', 'html', NULL, 'exclusive', 6, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(92, 'core.group', 'updateGroup', 'do', 'json', NULL, 'exclusive', 6, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(93, 'core.group', 'deleteGroup', 'do', 'json', NULL, 'exclusive', 6, 1, 4, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(94, 'core.user', 'user', 'view', 'html', NULL, 'exclusive', 7, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(95, 'core.user', 'detailUser', 'view', 'html', NULL, 'exclusive', 7, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(96, 'core.user', 'addUser', 'view', 'html', NULL, 'exclusive', 7, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(97, 'core.user', 'addUser', 'do', 'json', NULL, 'exclusive', 7, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(98, 'core.user', 'updateUser', 'view', 'html', NULL, 'exclusive', 7, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(99, 'core.user', 'updateUser', 'do', 'json', NULL, 'exclusive', 7, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(100, 'core.user', 'deleteUser', 'do', 'json', NULL, 'exclusive', 7, 1, 4, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(101, 'core.user', 'username', 'view', 'html', NULL, 'all', 7, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(102, 'core.user', 'profile', 'view', 'html', NULL, 'exclusive', 7, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(103, 'core.user', 'changePassword', 'view', 'html', NULL, 'exclusive', 7, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(104, 'core.user', 'changePassword', 'do', 'json', NULL, 'exclusive', 7, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(109, 'core.groupall', 'coreGroupall', 'view', 'html', NULL, 'exclusive', 8, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(110, 'core.groupall', 'detailCoreGroupall', 'view', 'html', NULL, 'exclusive', 8, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(111, 'core.groupall', 'addCoreGroupall', 'view', 'html', NULL, 'exclusive', 8, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(112, 'core.groupall', 'addCoreGroupall', 'do', 'json', NULL, 'exclusive', 8, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(113, 'core.groupall', 'updateCoreGroupall', 'view', 'html', NULL, 'exclusive', 8, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(114, 'core.groupall', 'updateCoreGroupall', 'do', 'json', NULL, 'exclusive', 8, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(115, 'core.groupall', 'deleteCoreGroupall', 'do', 'json', NULL, 'exclusive', 8, 1, 4, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(116, 'core.groupall', 'hakAkses', 'view', 'html', NULL, 'all', 8, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(124, 'core.userall', 'coreUserall', 'view', 'html', NULL, 'exclusive', 9, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(125, 'core.userall', 'detailCoreUserall', 'view', 'html', NULL, 'exclusive', 9, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(126, 'core.userall', 'addCoreUserall', 'view', 'html', NULL, 'exclusive', 9, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(127, 'core.userall', 'addCoreUserall', 'do', 'json', NULL, 'exclusive', 9, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(128, 'core.userall', 'updateCoreUserall', 'view', 'html', NULL, 'exclusive', 9, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(129, 'core.userall', 'updateCoreUserall', 'do', 'json', NULL, 'exclusive', 9, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(130, 'core.userall', 'deleteCoreUserall', 'do', 'json', NULL, 'exclusive', 9, 1, 4, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(131, 'core.setting', 'setting', 'view', 'html', NULL, 'exclusive', 13, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(132, 'core.setting', 'detailSetting', 'view', 'html', NULL, 'exclusive', 13, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(133, 'core.setting', 'addSetting', 'view', 'html', NULL, 'exclusive', 13, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(134, 'core.setting', 'addSetting', 'do', 'json', NULL, 'exclusive', 13, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(135, 'core.setting', 'updateSetting', 'view', 'html', NULL, 'exclusive', 13, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(136, 'core.setting', 'updateSetting', 'do', 'json', NULL, 'exclusive', 13, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(137, 'core.setting', 'deleteSetting', 'do', 'json', NULL, 'exclusive', 13, 1, 4, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(138, 'core.setting', 'comboApplication', 'view', 'html', NULL, 'all', 13, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(146, 'comp.breadcrump', 'breadcrump', 'view', 'html', NULL, 'all', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(147, 'comp.combobox', 'combobox', 'view', 'html', NULL, 'all', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(148, 'comp.confirm', 'delete', 'view', 'html', NULL, 'all', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(149, 'comp.download', 'download', 'view', 'html', NULL, 'all', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(150, 'comp.email.template', 'emailTemplate', 'view', 'html', NULL, 'exclusive', 14, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(151, 'comp.email.template', 'detailEmailTemplate', 'view', 'html', NULL, 'exclusive', 14, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(152, 'comp.email.template', 'addEmailTemplate', 'view', 'html', NULL, 'exclusive', 14, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(153, 'comp.email.template', 'addEmailTemplate', 'do', 'json', NULL, 'exclusive', 14, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(154, 'comp.email.template', 'updateEmailTemplate', 'view', 'html', NULL, 'exclusive', 14, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(155, 'comp.email.template', 'updateEmailTemplate', 'do', 'json', NULL, 'exclusive', 14, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(156, 'comp.email.template', 'deleteEmailTemplate', 'do', 'json', NULL, 'exclusive', 14, 1, 4, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(157, 'comp.menu', 'sideMenu', 'view', 'html', NULL, 'all', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(158, 'comp.menu', 'moduleMenu', 'view', 'html', NULL, 'all', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(159, 'comp.menu', 'searchMenu', 'view', 'html', NULL, 'all', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(160, 'comp.menu', 'topMenu', 'view', 'html', NULL, 'all', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(161, 'comp.menu', 'topMenuLanding', 'view', 'html', NULL, 'all', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(164, 'comp.message', 'msgContainer', 'view', 'html', NULL, 'all', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(165, 'comp.message', 'folderContent', 'view', 'html', NULL, 'all', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(166, 'comp.message', 'messageDetail', 'view', 'html', NULL, 'all', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(167, 'comp.message', 'newMessage', 'view', 'html', NULL, 'all', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(168, 'comp.message', 'setting', 'view', 'html', NULL, 'all', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(169, 'comp.message', 'countNewMessage', 'do', 'json', NULL, 'all', 0, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(170, 'comp.message', 'folderOperation', 'do', 'json', NULL, 'all', 0, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(171, 'comp.message', 'newMessage', 'do', 'json', NULL, 'all', 0, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(172, 'comp.message', 'saveSetting', 'do', 'json', NULL, 'all', 0, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(179, 'comp.notification', 'notifContainer', 'view', 'html', NULL, 'all', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(180, 'comp.notification', 'notifList', 'view', 'html', NULL, 'all', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(181, 'comp.notification', 'getNotif', 'do', 'json', NULL, 'all', 0, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(182, 'comp.notification.template', 'notificationTemplate', 'view', 'html', NULL, 'exclusive', 15, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(183, 'comp.notification.template', 'detailNotificationTemplate', 'view', 'html', NULL, 'exclusive', 15, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(184, 'comp.notification.template', 'addNotificationTemplate', 'view', 'html', NULL, 'exclusive', 15, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(185, 'comp.notification.template', 'addNotificationTemplate', 'do', 'json', NULL, 'exclusive', 15, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(186, 'comp.notification.template', 'updateNotificationTemplate', 'view', 'html', NULL, 'exclusive', 15, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(187, 'comp.notification.template', 'updateNotificationTemplate', 'do', 'json', NULL, 'exclusive', 15, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(188, 'comp.notification.template', 'deleteNotificationTemplate', 'do', 'json', NULL, 'exclusive', 15, 1, 4, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(189, 'comp.paging', 'paging', 'view', 'html', NULL, 'all', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(190, 'comp.sms.template', 'smsTemplate', 'view', 'html', NULL, 'exclusive', 16, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(191, 'comp.sms.template', 'detailSmsTemplate', 'view', 'html', NULL, 'exclusive', 16, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(192, 'comp.sms.template', 'addSmsTemplate', 'view', 'html', NULL, 'exclusive', 16, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(193, 'comp.sms.template', 'addSmsTemplate', 'do', 'json', NULL, 'exclusive', 16, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(194, 'comp.sms.template', 'updateSmsTemplate', 'view', 'html', NULL, 'exclusive', 16, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(195, 'comp.sms.template', 'updateSmsTemplate', 'do', 'json', NULL, 'exclusive', 16, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(196, 'comp.sms.template', 'deleteSmsTemplate', 'do', 'json', NULL, 'exclusive', 16, 1, 4, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(197, 'comp.toolbar', 'bottomToolbar', 'view', 'html', NULL, 'all', 0, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(198, 'comp.upload', 'upload', 'do', 'html', NULL, 'all', 0, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(199, 'ref.salutation', 'salutation', 'view', 'html', NULL, 'exclusive', 24, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(200, 'ref.salutation', 'detailSalutation', 'view', 'html', NULL, 'exclusive', 24, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(201, 'ref.salutation', 'comboSalutation', 'view', 'html', NULL, 'all', 24, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(202, 'ref.salutation', 'addSalutation', 'view', 'html', NULL, 'exclusive', 24, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(203, 'ref.salutation', 'addSalutation', 'do', 'json', NULL, 'exclusive', 24, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(204, 'ref.salutation', 'updateSalutation', 'view', 'html', NULL, 'exclusive', 24, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(205, 'ref.salutation', 'updateSalutation', 'do', 'json', NULL, 'exclusive', 24, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(206, 'ref.salutation', 'deleteSalutation', 'do', 'json', NULL, 'exclusive', 24, 1, 4, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(214, 'ref.master.type', 'type', 'view', 'html', NULL, 'exclusive', 25, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(215, 'ref.master.type', 'detailType', 'view', 'html', NULL, 'exclusive', 25, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(216, 'ref.master.type', 'comboType', 'view', 'html', NULL, 'all', 25, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(217, 'ref.master.type', 'addType', 'view', 'html', NULL, 'exclusive', 25, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(218, 'ref.master.type', 'addType', 'do', 'json', NULL, 'exclusive', 25, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(219, 'ref.master.type', 'updateType', 'view', 'html', NULL, 'exclusive', 25, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(220, 'ref.master.type', 'updateType', 'do', 'json', NULL, 'exclusive', 25, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(221, 'ref.master.type', 'deleteType', 'do', 'json', NULL, 'exclusive', 25, 1, 4, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(229, 'ref.email.type', 'type', 'view', 'html', NULL, 'exclusive', 26, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(230, 'ref.email.type', 'detailType', 'view', 'html', NULL, 'exclusive', 26, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(231, 'ref.email.type', 'comboEmailType', 'view', 'html', NULL, 'all', 26, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(232, 'ref.email.type', 'addType', 'view', 'html', NULL, 'exclusive', 26, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(233, 'ref.email.type', 'addType', 'do', 'json', NULL, 'exclusive', 26, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(234, 'ref.email.type', 'updateType', 'view', 'html', NULL, 'exclusive', 26, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(235, 'ref.email.type', 'updateType', 'do', 'json', NULL, 'exclusive', 26, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(236, 'ref.email.type', 'deleteType', 'do', 'json', NULL, 'exclusive', 26, 1, 4, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(244, 'ref.photo.type', 'type', 'view', 'html', NULL, 'exclusive', 27, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(245, 'ref.photo.type', 'detailType', 'view', 'html', NULL, 'exclusive', 27, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(246, 'ref.photo.type', 'comboPhotoType', 'view', 'html', NULL, 'all', 27, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(247, 'ref.photo.type', 'addType', 'view', 'html', NULL, 'exclusive', 27, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(248, 'ref.photo.type', 'addType', 'do', 'json', NULL, 'exclusive', 27, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(249, 'ref.photo.type', 'updateType', 'view', 'html', NULL, 'exclusive', 27, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(250, 'ref.photo.type', 'updateType', 'do', 'json', NULL, 'exclusive', 27, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(251, 'ref.photo.type', 'deleteType', 'do', 'json', NULL, 'exclusive', 27, 1, 4, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(259, 'ref.country', 'country', 'view', 'html', NULL, 'exclusive', 28, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(260, 'ref.country', 'detailCountry', 'view', 'html', NULL, 'exclusive', 28, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(261, 'ref.country', 'comboCountry', 'view', 'html', NULL, 'all', 28, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(262, 'ref.country', 'addCountry', 'view', 'html', NULL, 'exclusive', 28, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(263, 'ref.country', 'addCountry', 'do', 'json', NULL, 'exclusive', 28, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(264, 'ref.country', 'updateCountry', 'view', 'html', NULL, 'exclusive', 28, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(265, 'ref.country', 'updateCountry', 'do', 'json', NULL, 'exclusive', 28, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(266, 'ref.country', 'deleteCountry', 'do', 'json', NULL, 'exclusive', 28, 1, 4, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(267, 'ref.country', 'comboNationality', 'view', 'html', NULL, 'all', 28, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(268, 'ref.country', 'crmComboCountry', 'view', 'html', NULL, 'all', 28, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(269, 'ref.country', 'crmContactCountry', 'view', 'html', NULL, 'all', 28, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(270, 'ref.country', 'crmLeadCountry', 'view', 'html', NULL, 'all', 28, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(271, 'ref.country', 'crmComboCountryLand', 'view', 'html', NULL, 'all', 28, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(272, 'ref.country', 'crmComboCountryBuilding', 'view', 'html', NULL, 'all', 28, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(273, 'ref.country', 'crmComboCountryRoad', 'view', 'html', NULL, 'all', 28, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(274, 'ref.country', 'crmComboCountryOther', 'view', 'html', NULL, 'all', 28, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(275, 'ref.country', 'crmComboCountryCons', 'view', 'html', NULL, 'all', 28, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(290, 'ref.state', 'state', 'view', 'html', NULL, 'exclusive', 29, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(291, 'ref.state', 'detailState', 'view', 'html', NULL, 'exclusive', 29, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(292, 'ref.state', 'comboState', 'view', 'html', NULL, 'all', 29, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(293, 'ref.state', 'addState', 'view', 'html', NULL, 'exclusive', 29, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(294, 'ref.state', 'addState', 'do', 'json', NULL, 'exclusive', 29, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(295, 'ref.state', 'updateState', 'view', 'html', NULL, 'exclusive', 29, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(296, 'ref.state', 'updateState', 'do', 'json', NULL, 'exclusive', 29, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(297, 'ref.state', 'deleteState', 'do', 'json', NULL, 'exclusive', 29, 1, 4, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(298, 'ref.state', 'crmComboState', 'view', 'html', NULL, 'all', 29, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(299, 'ref.state', 'crmContactState', 'view', 'html', NULL, 'all', 29, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(300, 'ref.state', 'crmLeadState', 'view', 'html', NULL, 'all', 29, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(301, 'ref.state', 'crmComboStateLand', 'view', 'html', NULL, 'all', 29, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(302, 'ref.state', 'crmComboStateBuilding', 'view', 'html', NULL, 'all', 29, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(303, 'ref.state', 'crmComboStateRoad', 'view', 'html', NULL, 'all', 29, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(304, 'ref.state', 'crmComboStateOther', 'view', 'html', NULL, 'all', 29, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(305, 'ref.state', 'crmComboStateCons', 'view', 'html', NULL, 'all', 29, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(321, 'ref.city', 'city', 'view', 'html', NULL, 'exclusive', 30, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(322, 'ref.city', 'detailCity', 'view', 'html', NULL, 'exclusive', 30, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(323, 'ref.city', 'comboCity', 'view', 'html', NULL, 'all', 30, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(324, 'ref.city', 'addCity', 'view', 'html', NULL, 'exclusive', 30, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(325, 'ref.city', 'addCity', 'do', 'json', NULL, 'exclusive', 30, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(326, 'ref.city', 'updateCity', 'view', 'html', NULL, 'exclusive', 30, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(327, 'ref.city', 'updateCity', 'do', 'json', NULL, 'exclusive', 30, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(328, 'ref.city', 'deleteCity', 'do', 'json', NULL, 'exclusive', 30, 1, 4, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(329, 'ref.city', 'crmComboCity', 'view', 'html', NULL, 'all', 30, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(330, 'ref.city', 'crmContactCity', 'view', 'html', NULL, 'all', 30, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(331, 'ref.city', 'crmLeadCity', 'view', 'html', NULL, 'all', 30, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(332, 'ref.city', 'crmComboCityLand', 'view', 'html', NULL, 'all', 30, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(333, 'ref.city', 'crmComboCityBuilding', 'view', 'html', NULL, 'all', 30, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(334, 'ref.city', 'crmComboCityRoad', 'view', 'html', NULL, 'all', 30, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(335, 'ref.city', 'crmComboCityOther', 'view', 'html', NULL, 'all', 30, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(336, 'ref.city', 'crmComboCityCons', 'view', 'html', NULL, 'all', 30, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(352, 'ref.currency', 'currency', 'view', 'html', NULL, 'exclusive', 31, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(353, 'ref.currency', 'detailCurrency', 'view', 'html', NULL, 'exclusive', 31, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(354, 'ref.currency', 'comboCurrency', 'view', 'html', NULL, 'all', 31, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(355, 'ref.currency', 'addCurrency', 'view', 'html', NULL, 'exclusive', 31, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(356, 'ref.currency', 'addCurrency', 'do', 'json', NULL, 'exclusive', 31, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(357, 'ref.currency', 'updateCurrency', 'view', 'html', NULL, 'exclusive', 31, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(358, 'ref.currency', 'updateCurrency', 'do', 'json', NULL, 'exclusive', 31, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(359, 'ref.currency', 'deleteCurrency', 'do', 'json', NULL, 'exclusive', 31, 1, 4, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(360, 'ref.currency', 'comboCurrencyGa', 'view', 'html', NULL, 'all', 31, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(367, 'ref.structural.position.type', 'type', 'view', 'html', NULL, 'exclusive', 32, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(368, 'ref.structural.position.type', 'detailType', 'view', 'html', NULL, 'exclusive', 32, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(369, 'ref.structural.position.type', 'comboStructPositionType', 'view', 'html', NULL, 'all', 32, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(370, 'ref.structural.position.type', 'addType', 'view', 'html', NULL, 'exclusive', 32, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(371, 'ref.structural.position.type', 'addType', 'do', 'json', NULL, 'exclusive', 32, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(372, 'ref.structural.position.type', 'updateType', 'view', 'html', NULL, 'exclusive', 32, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(373, 'ref.structural.position.type', 'updateType', 'do', 'json', NULL, 'exclusive', 32, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(374, 'ref.structural.position.type', 'deleteType', 'do', 'json', NULL, 'exclusive', 32, 1, 4, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(382, 'emp.ref.employee.status', 'status', 'view', 'html', NULL, 'exclusive', 34, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(383, 'emp.ref.employee.status', 'detailStatus', 'view', 'html', NULL, 'exclusive', 34, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(384, 'emp.ref.employee.status', 'comboRefEmpStatus', 'view', 'html', NULL, 'all', 34, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(385, 'emp.ref.employee.status', 'addStatus', 'view', 'html', NULL, 'exclusive', 34, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(386, 'emp.ref.employee.status', 'addStatus', 'do', 'json', NULL, 'exclusive', 34, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(387, 'emp.ref.employee.status', 'updateStatus', 'view', 'html', NULL, 'exclusive', 34, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(388, 'emp.ref.employee.status', 'updateStatus', 'do', 'json', NULL, 'exclusive', 34, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(389, 'emp.ref.employee.status', 'deleteStatus', 'do', 'json', NULL, 'exclusive', 34, 1, 4, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(397, 'emp.ref.employee.type', 'type', 'view', 'html', NULL, 'exclusive', 35, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(398, 'emp.ref.employee.type', 'detailType', 'view', 'html', NULL, 'exclusive', 35, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(399, 'emp.ref.employee.type', 'comboRefEmpType', 'view', 'html', NULL, 'all', 35, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(400, 'emp.ref.employee.type', 'addType', 'view', 'html', NULL, 'exclusive', 35, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(401, 'emp.ref.employee.type', 'addType', 'do', 'json', NULL, 'exclusive', 35, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(402, 'emp.ref.employee.type', 'updateType', 'view', 'html', NULL, 'exclusive', 35, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(403, 'emp.ref.employee.type', 'updateType', 'do', 'json', NULL, 'exclusive', 35, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(404, 'emp.ref.employee.type', 'deleteType', 'do', 'json', NULL, 'exclusive', 35, 1, 4, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(412, 'emp.employee.mini', 'employeeMini', 'view', 'html', NULL, 'exclusive', 5, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(413, 'emp.employee.mini', 'detailEmployeeMini', 'view', 'html', NULL, 'exclusive', 5, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(414, 'emp.employee.mini', 'addEmployeeMini', 'view', 'html', NULL, 'exclusive', 5, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(415, 'emp.employee.mini', 'addEmployeeMini', 'do', 'json', NULL, 'exclusive', 5, 1, 2, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(416, 'emp.employee.mini', 'updateEmployeeMini', 'view', 'html', NULL, 'exclusive', 5, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(417, 'emp.employee.mini', 'updateEmployeeMini', 'do', 'json', NULL, 'exclusive', 5, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(418, 'emp.employee.mini', 'deleteEmployeeMini', 'do', 'json', NULL, 'exclusive', 5, 1, 4, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(419, 'emp.employee.mini', 'addEmployeeUser', 'view', 'html', NULL, 'exclusive', 5, 1, 14, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(420, 'emp.employee.mini', 'addEmployeeUser', 'do', 'json', NULL, 'exclusive', 5, 1, 14, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(421, 'emp.employee.mini', 'resetEmployeePassword', 'do', 'json', NULL, 'exclusive', 5, 1, 15, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(422, 'emp.employee.mini', 'editEmployeeUser', 'view', 'html', NULL, 'exclusive', 5, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(423, 'emp.employee.mini', 'updateEmployeeUser', 'do', 'json', NULL, 'exclusive', 5, 1, 3, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(424, 'emp.employee.mini', 'inputEmployeeOfficer', 'view', 'html', NULL, 'exclusive', 5, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(425, 'emp.employee.mini', 'addEmployeeOfficer', 'do', 'json', NULL, 'exclusive', 5, 1, 1, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(426, 'tbl.store', 'tblStore', 'view', 'html', '', 'exclusive', 38, 1, 1, 1, '2021-07-13 14:46:30', NULL, '0000-00-00 00:00:00'),
(427, 'tbl.store', 'detailTblStore', 'view', 'html', '', 'exclusive', 38, 1, 1, 1, '2021-07-13 14:46:30', NULL, '0000-00-00 00:00:00'),
(428, 'tbl.store', 'addTblStore', 'view', 'html', '', 'exclusive', 38, 1, 2, 1, '2021-07-13 14:46:30', NULL, '0000-00-00 00:00:00'),
(429, 'tbl.store', 'addTblStore', 'do', 'json', '', 'exclusive', 38, 1, 2, 1, '2021-07-13 14:46:30', NULL, '0000-00-00 00:00:00'),
(430, 'tbl.store', 'updateTblStore', 'view', 'html', '', 'exclusive', 38, 1, 3, 1, '2021-07-13 14:46:30', NULL, '0000-00-00 00:00:00'),
(431, 'tbl.store', 'updateTblStore', 'do', 'json', '', 'exclusive', 38, 1, 3, 1, '2021-07-13 14:46:30', NULL, '0000-00-00 00:00:00'),
(432, 'tbl.store', 'deleteTblStore', 'do', 'json', '', 'exclusive', 38, 1, 4, 1, '2021-07-13 14:46:30', NULL, '0000-00-00 00:00:00'),
(433, 'tbl.store', 'tblStore', 'do', 'json', '', 'exclusive', 40, 1, 1, 1, '2021-07-13 15:19:52', NULL, '0000-00-00 00:00:00'),
(434, 'tbl.store', 'comboTblStore', 'view', 'html', '', 'exclusive', 40, 1, 1, 1, '2021-07-13 15:19:52', NULL, '0000-00-00 00:00:00'),
(435, 'tbl.store', 'addTblStore', 'view', 'html', '', 'exclusive', 40, 1, 2, 1, '2021-07-13 15:19:52', NULL, '0000-00-00 00:00:00'),
(436, 'tbl.store', 'addTblStore', 'do', 'json', '', 'exclusive', 40, 1, 2, 1, '2021-07-13 15:19:52', NULL, '0000-00-00 00:00:00'),
(437, 'tbl.store', 'updateTblStore', 'view', 'html', '', 'exclusive', 40, 1, 3, 1, '2021-07-13 15:19:52', NULL, '0000-00-00 00:00:00'),
(438, 'tbl.store', 'updateTblStore', 'do', 'json', '', 'exclusive', 40, 1, 3, 1, '2021-07-13 15:19:52', NULL, '0000-00-00 00:00:00'),
(439, 'tbl.store', 'deleteTblStore', 'view', 'html', '', 'exclusive', 40, 1, 4, 1, '2021-07-13 15:19:52', NULL, '0000-00-00 00:00:00'),
(440, 'tbl.news', 'tblNews', 'view', 'html', '', 'exclusive', 41, 1, 1, 1, '2021-07-14 14:19:43', NULL, '0000-00-00 00:00:00'),
(441, 'tbl.news', 'detailTblNews', 'view', 'html', '', 'exclusive', 41, 1, 1, 1, '2021-07-14 14:19:43', NULL, '0000-00-00 00:00:00'),
(442, 'tbl.news', 'addTblNews', 'view', 'html', '', 'exclusive', 41, 1, 2, 1, '2021-07-14 14:19:43', NULL, '0000-00-00 00:00:00'),
(443, 'tbl.news', 'addTblNews', 'do', 'json', '', 'exclusive', 41, 1, 2, 1, '2021-07-14 14:19:43', NULL, '0000-00-00 00:00:00'),
(444, 'tbl.news', 'updateTblNews', 'view', 'html', '', 'exclusive', 41, 1, 3, 1, '2021-07-14 14:19:43', NULL, '0000-00-00 00:00:00'),
(445, 'tbl.news', 'updateTblNews', 'do', 'json', '', 'exclusive', 41, 1, 3, 1, '2021-07-14 14:19:43', NULL, '0000-00-00 00:00:00'),
(446, 'tbl.news', 'deleteTblNews', 'do', 'json', '', 'exclusive', 41, 1, 4, 1, '2021-07-14 14:19:43', NULL, '0000-00-00 00:00:00'),
(447, 'tbl.member', 'tblMember', 'view', 'html', '', 'exclusive', 42, 1, 1, 1, '2021-07-14 16:12:23', NULL, '0000-00-00 00:00:00'),
(448, 'tbl.member', 'detailTblMember', 'view', 'html', '', 'exclusive', 42, 1, 1, 1, '2021-07-14 16:12:23', NULL, '0000-00-00 00:00:00'),
(449, 'tbl.member', 'comboTblMember', 'view', 'html', '', 'exclusive', 42, 1, 1, 1, '2021-07-14 16:12:23', NULL, '0000-00-00 00:00:00'),
(450, 'tbl.member', 'addTblMember', 'view', 'html', '', 'exclusive', 42, 1, 2, 1, '2021-07-14 16:12:23', NULL, '0000-00-00 00:00:00'),
(451, 'tbl.member', 'addTblMember', 'do', 'json', '', 'exclusive', 42, 1, 2, 1, '2021-07-14 16:12:23', NULL, '0000-00-00 00:00:00'),
(452, 'tbl.member', 'updateTblMember', 'view', 'html', '', 'exclusive', 42, 1, 3, 1, '2021-07-14 16:12:23', NULL, '0000-00-00 00:00:00'),
(453, 'tbl.member', 'updateTblMember', 'do', 'json', '', 'exclusive', 42, 1, 3, 1, '2021-07-14 16:12:23', NULL, '0000-00-00 00:00:00'),
(454, 'tbl.member', 'deleteTblMember', 'do', 'json', '', 'exclusive', 42, 1, 4, 1, '2021-07-14 16:12:23', NULL, '0000-00-00 00:00:00'),
(455, 'tbl.tipe', 'tblTipe', 'view', 'html', '', 'exclusive', 43, 1, 1, 1, '2021-07-14 16:40:31', NULL, '0000-00-00 00:00:00'),
(456, 'tbl.tipe', 'detailTblTipe', 'view', 'html', '', 'exclusive', 43, 1, 1, 1, '2021-07-14 16:40:31', NULL, '0000-00-00 00:00:00'),
(457, 'tbl.tipe', 'comboTblTipe', 'view', 'html', '', 'exclusive', 43, 1, 1, 1, '2021-07-14 16:40:31', NULL, '0000-00-00 00:00:00'),
(458, 'tbl.tipe', 'addTblTipe', 'view', 'html', '', 'exclusive', 43, 1, 2, 1, '2021-07-14 16:40:31', NULL, '0000-00-00 00:00:00'),
(459, 'tbl.tipe', 'addTblTipe', 'do', 'json', '', 'exclusive', 43, 1, 2, 1, '2021-07-14 16:40:31', NULL, '0000-00-00 00:00:00'),
(460, 'tbl.tipe', 'updateTblTipe', 'view', 'html', '', 'exclusive', 43, 1, 3, 1, '2021-07-14 16:40:31', NULL, '0000-00-00 00:00:00'),
(461, 'tbl.tipe', 'updateTblTipe', 'do', 'json', '', 'exclusive', 43, 1, 3, 1, '2021-07-14 16:40:31', NULL, '0000-00-00 00:00:00'),
(462, 'tbl.tipe', 'deleteTblTipe', 'do', 'json', '', 'exclusive', 43, 1, 4, 1, '2021-07-14 16:40:31', NULL, '0000-00-00 00:00:00');
-- --------------------------------------------------------
--
-- Table structure for table `gtfw_sessions`
--
CREATE TABLE `gtfw_sessions` (
`sess_id` varchar(64) NOT NULL,
`sess_ip` varchar(50) NOT NULL,
`sess_user_agent` varchar(255) NOT NULL,
`sess_data` longtext NOT NULL,
`sess_last_activity` datetime DEFAULT NULL,
`sess_ctime` timestamp NULL DEFAULT current_timestamp()
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `gtfw_setting`
--
CREATE TABLE `gtfw_setting` (
`setting_id` int(11) NOT NULL,
`setting_name` varchar(100) DEFAULT NULL,
`setting_value` varchar(254) DEFAULT NULL,
`setting_desc` text DEFAULT NULL,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '0000-00-00 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `gtfw_setting`
--
INSERT INTO `gtfw_setting` (`setting_id`, `setting_name`, `setting_value`, `setting_desc`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`) VALUES
(1, 'view_per_page', '10', '', 1, '2012-06-08 08:27:59', 1, '2013-11-20 08:18:39'),
(2, 'currency_default', '62', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(3, 'vat_value', '10', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(4, 'date_input_format', 'YYYY-MM-DD', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(5, 'number_format', 'en', '', NULL, '0000-00-00 00:00:00', 52, '2013-09-13 09:27:03'),
(6, 'date_view_format', 'id', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(7, 'recipe_number_show', '1', '1 = nomor resep ditampilkan pada inventory semisal stock suage\r\n0 = tidak ditampilkan', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(8, 'goods_form', NULL, NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(9, 'include_inventory', '1', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(10, 'finance_compliment', '1.2', 'Versi finansi yang dipakai', NULL, '0000-00-00 00:00:00', 9, '2013-05-15 21:06:32'),
(11, 'hr_compliment', '1.1', 'versi HR yang dipakai', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(12, 'employee_dropdown', 'autocomplete', 'dropdown or autocomplete', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(13, 'relocation_stock_lookup', 'yes', 'yes or no', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(14, 'use_unit_alias', 'no', 'yes or no', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(15, 'mutation_auto_accept_for_van', 'yes', 'yes or no', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(16, 'create_invoice_draft_on', 'po', 'po or delivery', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(17, 'sales_canvas_transaction', 'CANVAS', 'Transaksi setelah approval dari keuangan akan dimasukkan ke transaksi mana dari finance', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(19, 'default_finance_user', NULL, NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(20, 'sales_canvas_default_description', 'Penjualan Sales Canvas', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(21, 'sales_to_transaction', 'TO', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(22, 'buffer_stock_method', 'average', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(23, 'buffer_stock_period_type', 'monthly', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(24, 'buffer_stock_period_value', '4', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(25, 'year_limit', '10', 'Batas limit combobox tahun', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(26, 'weekly_end', '0', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(27, 'default_lang', 'en', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(28, 'finance_default_user_id', '2', 'Default user yang masuk jika user pegawai tidak ada', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(29, 'default_day_filter', '7', 'range tanggal default filter', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(30, 'cash_usage_transaction', 'CANVAS', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(31, 'price_type_option', '2', '1 - based on inv_goods_price or inv_goods_price, 2 - based on cli_goods_price', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(32, 'disease_search_method', 'auto_complete', 'auto_complete/combobox', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(33, 'treatment_search_method', 'auto_complete', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(34, 'goods_search_method', 'auto_complete', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(35, 'insert_reference_to_finance', 'yes', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(37, 'default_customer_address_type', '7', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(38, 'default_customer_photo', '9', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(39, 'periodical_reload_time', '60', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(40, 'symptom_search_method', 'auto_complete', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(41, 'plus_ppn_for_stock_price', 'yes', 'yes or no', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(42, 'medical_pic', 'dr. Yayuk Soraya', 'Direktur Medis GMC', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(43, 'claim_and_verification_pic', 'Khusnal Efendi, S.E', 'Verifikasi dan Klaim', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(44, 'finance_pic', 'drg. Julita Hendrartini, M.Kes', 'Direktur keuangan GMC', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(45, 'director_name', 'Prof. dr. Ali Ghufron Mukti, MSc., PhD', 'Direktur GMC', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(46, 'is_auto_approve', 'yes', 'yes or no, if yes then every process will automatically approved (there will be draft)', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(47, 'use_employee', 'yes', 'if employee used then yes otherwise no', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(48, 'default_country_code', 'ID', 'Indonesia', 1, '2013-03-19 08:51:39', 1, '2013-03-19 08:53:33');
-- --------------------------------------------------------
--
-- Table structure for table `gtfw_table_documentation`
--
CREATE TABLE `gtfw_table_documentation` (
`tabledoc_id` bigint(20) NOT NULL,
`tabledoc_name` varchar(255) DEFAULT NULL,
`tabledoc_table` varchar(255) DEFAULT NULL,
`tabledoc_dependency_source` text DEFAULT NULL,
`tabledoc_dependency_target` text DEFAULT NULL,
`tabledoc_desc` text DEFAULT NULL,
`tabledoc_sample_data` text DEFAULT NULL,
`tabledoc_menu_name` varchar(255) DEFAULT NULL,
`tabledoc_module_name` varchar(255) DEFAULT NULL,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `gtfw_table_documentation`
--
INSERT INTO `gtfw_table_documentation` (`tabledoc_id`, `tabledoc_name`, `tabledoc_table`, `tabledoc_dependency_source`, `tabledoc_dependency_target`, `tabledoc_desc`, `tabledoc_sample_data`, `tabledoc_menu_name`, `tabledoc_module_name`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`) VALUES
(1, 'Jenis Master', 'ref_master_type', '', 'ref_address_type|addrtype_msttype_id,ref_email_type|emailtype_msttype_id,ref_phone_type|phone_msttype_id,ref_photo_type|phototype_msttype_id', 'menjelaskan tentang jenis master. Contoh : employee, company, vendor, dan customer.\r\n', 'INSERT INTO ref_master_type\r\n(\r\n msttype_id,\r\n msttype_name,\r\n msttype_status,\r\n msttype_desc,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'msttype_id\',\r\n \'msttype_name\',\r\n \'msttype_status\',\r\n \'msttype_desc\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Master Type', 'ref.master.type', 1, '2012-08-07 14:31:44', 1, '2012-08-08 09:24:42'),
(2, 'Jenis Alamat', 'ref_address_type', 'ref_master_type|msttype_id', 'emp_address|addr_addrtype_id,ref_company_address|addr_addrtype_id,pcs_vendor_address|addr_addrtype_id,crm_customer_address|addr_addrtype_id,crm_account_address|addr_addrtype_id,crm_contact_address|addr_addrtype_id,crm_lead_address|addr_addrtype_id,crm_target_address|addr_addrtype_id', 'menjelaskan tentang jenis alamat. Contoh : Billing, Shipping, Primary, Alternative, dsb.\r\n', 'INSERT INTO ref_address_type\r\n(\r\n addrtype_id,\r\n addrtype_msttype_id,\r\n addrtype_name,\r\n addrtype_status,\r\n addrtype_desc,\r\n addrtype_is_locked,\r\n addrtype_last_option,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'addrtype_id\',\r\n \'addrtype_msttype_id\',\r\n \'addrtype_name\',\r\n \'addrtype_status\',\r\n \'addrtype_desc\',\r\n \'addrtype_is_locked\',\r\n \'addrtype_last_option\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Address Type', 'ref.address.type', 1, '2012-08-07 14:50:56', 1, '2012-08-08 09:24:58'),
(3, 'Golongan Darah', 'ref_blood_type', '', 'emp_employee|emp_bloodtype_id,crm_customer|cust_bloodtype_id,emp_family|family_bloodtype_id', 'menjelaskan tentang Golongan Darah. Contoh : A, B, AB, dan O.\r\n', 'INSERT INTO ref_blood_type\r\n(\r\n bloodtype_id,\r\n bloodtype_name,\r\n bloodtype_status,\r\n bloodtype_desc,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'bloodtype_id\',\r\n \'bloodtype_name\',\r\n \'bloodtype_status\',\r\n \'bloodtype_desc\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Blood Type', 'ref.blood.type', 1, '2012-08-07 14:55:35', 1, '2012-08-08 09:24:43'),
(4, 'Jenis Email', 'ref_email_type', 'ref_master_type|msttype_id', 'emp_email|email_emailtype_id,ref_company_email|email_emailtype_id,pcs_vendor_email|email_emailtype_id,crm_customer_email|email_emailtype_id,crm_account_email|email_emailtype_id,crm_contact_email|email_emailtype_id,crm_lead_email|email_emailtype_id,crm_target_email|email_emailtype_id', 'menjelaskan tentang jenis email. Contoh : Office, Private, Vendor, Customer, dsb.\r\n', 'INSERT INTO ref_email_type\r\n(\r\n emailtype_id,\r\n emailtype_msttype_id,\r\n emailtype_name,\r\n emailtype_status,\r\n emailtype_desc,\r\n emailtype_is_locked,\r\n emailtype_last_option,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'emailtype_id\',\r\n \'emailtype_msttype_id\',\r\n \'emailtype_name\',\r\n \'emailtype_status\',\r\n \'emailtype_desc\',\r\n \'emailtype_is_locked\',\r\n \'emailtype_last_option\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Email Type', 'ref.email.type', 1, '2012-08-07 14:58:03', 1, '2012-08-08 09:24:12'),
(5, 'Sektor Usaha', 'ref_business_sector', '', 'ref_company_business_sector|companybsnsec_bsnsec_id,crm_account_business_sector|accountbsnsec_bsnsec_id,pcs_vendor_business_sector|vendorbsnsec_bsnsec_id', 'menjelaskan tentang sektor usaha perusahaan. Contoh : Manufacturing, Consulting, Services, dsb.\r\n', 'INSERT INTO ref_business_sector\r\n(\r\n bsnsec_id,\r\n bsnsec_name,\r\n bsnsec_status,\r\n bsnsec_desc,\r\n bsnsec_last_option,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'bsnsec_id\',\r\n \'bsnsec_name\',\r\n \'bsnsec_status\',\r\n \'bsnsec_desc\',\r\n \'bsnsec_last_option\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Business Sector', 'ref.business.sector', 1, '2012-08-07 15:09:42', 1, '2012-08-08 09:24:28'),
(6, 'Jenis Surat Izin Mengemudi', 'ref_driving_license_type', '', 'emp_driving_license|drivlic_drivlictype_id', 'menjelaskan tentang jenis surat izin mengemudi. Contoh : A, B1, B2, C, D, dsb.\r\n', 'INSERT INTO ref_driving_license_type\r\n(\r\n drivlictype_id,\r\n drivlictype_name,\r\n drivlictype_status,\r\n drivlictype_desc,\r\n drivlictype_last_option,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'drivlictype_id\',\r\n \'drivlictype_name\',\r\n \'drivlictype_status\',\r\n \'drivlictype_desc\',\r\n \'drivlictype_last_option\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Driving License Type', 'ref.driving.license.type', 1, '2012-08-08 09:26:53', 1, '2012-08-08 09:44:04'),
(7, 'Asal Dana', 'ref_funding_source', '', '', 'menjelaskan tentang asal dana. Contoh : Board, Grant, Company, Foundation, dsb.\r\n', 'INSERT INTO ref_funding_source\r\n(\r\n fundsource_id,\r\n fundsource_code,\r\n fundsource_name,\r\n fundsource_status,\r\n fundsource_desc,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'fundsource_id\',\r\n \'fundsource_code\',\r\n \'fundsource_name\',\r\n \'fundsource_status\',\r\n \'fundsource_desc\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Funding Source', 'ref.funding.source', 1, '2012-08-08 09:43:50', NULL, '1900-01-01 00:00:00'),
(8, 'Jenis Hotel', 'ref_hotel_type', '', '', 'menjelaskan tentang jenis hotel. Contoh : Bintang 7, Bintang 6, Bintang 5, Melati, dsb.\r\n', 'INSERT INTO ref_hotel_type\r\n(\r\n hoteltype_id,\r\n hoteltype_name,\r\n hoteltype_status,\r\n hoteltype_desc,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'hoteltype_id\',\r\n \'hoteltype_name\',\r\n \'hoteltype_status\',\r\n \'hoteltype_desc\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Hotel Type', 'ref.hotel.type', 1, '2012-08-08 09:44:43', NULL, '1900-01-01 00:00:00'),
(9, 'Jenis Identitas', 'ref_identity_type', '', 'emp_identity|iden_identype_id', 'menjelaskan tentang jenis identitas. Contoh : KTP, e-KTP, KTP Musiman, KTM, dsb.\r\n', 'INSERT INTO ref_identity_type\r\n(\r\n identype_id,\r\n identype_name,\r\n identype_status,\r\n identype_desc,\r\n identype_last_option,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'identype_id\',\r\n \'identype_name\',\r\n \'identype_status\',\r\n \'identype_desc\',\r\n \'identype_last_option\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Identity Type', 'ref.identity.type', 1, '2012-08-08 09:45:53', NULL, '1900-01-01 00:00:00'),
(10, 'Jenis Identitas Lain', 'ref_other_identity_type', '', 'emp_other_identity|otheriden_otheridentype_id', 'menjelaskan tentang jenis identitas lain. Contoh : KK, Surat Nikah, Akte Lahir, dsb.\r\n', 'INSERT INTO ref_other_identity_type\r\n(\r\n otheridentype_id,\r\n otheridentype_name,\r\n otheridentype_status,\r\n otheridentype_desc,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'otheridentype_id\',\r\n \'otheridentype_name\',\r\n \'otheridentype_status\',\r\n \'otheridentype_desc\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Other Identity Type', 'ref.other.identity.type', 1, '2012-08-08 09:46:44', NULL, '1900-01-01 00:00:00'),
(11, 'Jenis Bank', 'ref_bank_type', '', 'ref_bank|bank_banktype_id', 'menjelaskan tentang jenis bank. Contoh : Bank Persero, BUSN Devisa, BUSN Non Devisa, dan Bank Asing.\r\n', 'INSERT INTO ref_bank_type\r\n(\r\n banktype_id,\r\n banktype_name,\r\n banktype_status,\r\n banktype_desc,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'banktype_id\',\r\n \'banktype_name\',\r\n \'banktype_status\',\r\n \'banktype_desc\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Bank Type', 'ref.bank.type', 1, '2012-08-08 09:47:30', NULL, '1900-01-01 00:00:00'),
(12, 'Bank', 'ref_bank', 'ref_bank_type|banktype_id', 'ref_bank_branch|bankbranch_bank_id', 'menjelaskan tentang nama bank. Contoh : Bank Mandiri, Bank BCA, Bank BNI, dsb.\r\n', 'INSERT INTO ref_bank\r\n(\r\n bank_id,\r\n bank_banktype_id,\r\n bank_name,\r\n bank_code,\r\n bank_phone,\r\n bank_fax,\r\n bank_address,\r\n bank_status,\r\n bank_desc,\r\n bank_last_option,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'bank_id\',\r\n \'bank_banktype_id\',\r\n \'bank_name\',\r\n \'bank_code\',\r\n \'bank_phone\',\r\n \'bank_fax\',\r\n \'bank_address\',\r\n \'bank_status\',\r\n \'bank_desc\',\r\n \'bank_last_option\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Bank', 'ref.bank', 1, '2012-08-08 09:48:22', NULL, '1900-01-01 00:00:00'),
(13, 'Bank Cabang', 'ref_bank_branch', 'ref_bank|bank_id', 'emp_bank_account|bankacc_bankbranch_id,ref_company_bank_account|bankacc_bankbranch_id,pcs_vendor_bank_account|bankacc_bankbranch_id,crm_customer_bank_account|bankacc_bankbranch_id,crm_account_bank_account|bankacc_bankbranch_id', 'menjelaskan tentang cabang bank. Contoh : Bank Mandiri Cabang UGM, Cabang Adi Sucipto, dsb.\r\n', 'INSERT INTO ref_bank_branch\r\n(\r\n bankbranch_id,\r\n bankbranch_bank_id,\r\n bankbranch_name,\r\n bankbranch_code,\r\n bankbranch_phone,\r\n bankbranch_fax,\r\n bankbranch_address,\r\n bankbranch_state_id,\r\n bankbranch_status,\r\n bankbranch_desc,\r\n bankbranch_last_option,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'bankbranch_id\',\r\n \'bankbranch_bank_id\',\r\n \'bankbranch_name\',\r\n \'bankbranch_code\',\r\n \'bankbranch_phone\',\r\n \'bankbranch_fax\',\r\n \'bankbranch_address\',\r\n \'bankbranch_state_id\',\r\n \'bankbranch_status\',\r\n \'bankbranch_desc\',\r\n \'bankbranch_last_option\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Bank Branch', 'ref.bank.branch', 1, '2012-08-08 09:50:42', NULL, '1900-01-01 00:00:00'),
(14, 'Negara', 'ref_country', 'ref_currency|curr_id', 'ref_state|state_country_id,emp_employee|emp_country_id,emp_address|addr_country_id,emp_certification|cert_country_id,emp_achievement_experience|achievexp_country_id,emp_family|family_address_country_id,emp_organization_experience|orgexp_country_id,emp_passport|pass_country_id,emp_passport|pass_nationality_country_id,emp_project_experience|projexp_country_id,emp_referral|referral_country_id,emp_seminar|smnr_country_id,emp_visa|visa_country_id,emp_work_experience|workexp_country_id,emp_workshop|wrkshp_country_id,ref_company_address|addr_country_id,ref_company_cod|cod_owner_country_id,ref_company_tdp|tdp_country_id,pcs_vendor_address|addr_country_id,crm_customer|cust_country_id,crm_customer_address|addr_country_id,crm_account_address|addr_country_id,crm_contact|contact_nat_country_id,crm_contact_address|addr_country_id,crm_lead|lead_nat_country_id,crm_lead_address|addr_country_id,crm_target|target_nat_country_id,crm_target_address|addr_country_id,emp_family|family_country_id,emp_ref_supervisor|spvor_country_id', 'menjelaskan tentang negara. Contoh : Indonesia, Malaysia, Thailand, dsb.\r\n', 'INSERT INTO ref_country\r\n(\r\n country_id,\r\n country_code,\r\n country_name,\r\n country_capital,\r\n country_map,\r\n country_nat_singular,\r\n country_nat_plural,\r\n country_curr_id,\r\n country_currency,\r\n country_currency_code,\r\n country_status,\r\n country_desc,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'country_id\',\r\n \'country_code\',\r\n \'country_name\',\r\n \'country_capital\',\r\n \'country_map\',\r\n \'country_nat_singular\',\r\n \'country_nat_plural\',\r\n \'country_curr_id\',\r\n \'country_currency\',\r\n \'country_currency_code\',\r\n \'country_status\',\r\n \'country_desc\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Country', 'ref.country', 1, '2012-08-08 09:56:29', 1, '2012-08-08 11:20:34'),
(15, 'Propinsi / Negara Bagian', 'ref_state', 'ref_country|country_id', 'emp_achievement_experience|achievexp_state_id,emp_address|addr_state_id,emp_certification|cert_state_id,emp_family|family_address_state_id,emp_organization_experience|orgexp_state_id,emp_project_experience|projexp_state_id,emp_referral|referral_state_id,emp_seminar|smnr_state_id,emp_work_experience|workexp_state_id,emp_workshop|wrkshp_state_id,ref_company_address|addr_state_id,ref_company_cod|cod_state_id,ref_company_tdp|tdp_state_id,pcs_vendor_address|addr_state_id,crm_customer_address|addr_state_id,crm_account_address|addr_state_id,crm_contact_address|addr_state_id,crm_lead_address|addr_state_id,crm_target_address|addr_state_id,emp_ref_supervisor|spvor_state_id', 'menjelaskan tentang propinsi / negara bagian. Contoh : DKI Jakarta, DI Yogyakarta, Jawa Barat, dsb.\r\n', 'INSERT INTO ref_state\r\n(\r\n state_id,\r\n state_country_id,\r\n state_code,\r\n state_name,\r\n state_status,\r\n state_desc,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'state_id\',\r\n \'state_country_id\',\r\n \'state_code\',\r\n \'state_name\',\r\n \'state_status\',\r\n \'state_desc\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->State', 'ref.state', 1, '2012-08-08 10:10:48', 1, '2012-08-08 11:19:31'),
(16, 'Kota / Kabupaten', 'ref_city', 'ref_state|state_id', 'ref_sub_district|subdistrict_city_id,emp_achievement_experience|achievexp_city_id,emp_address|addr_city_id,emp_certification|cert_city_id,emp_family|family_address_city_id,emp_organization_experience|orgexp_city_id,emp_project_experience|projexp_city_id,emp_referral|referral_city_id,emp_seminar|smnr_city_id,emp_work_experience|workexp_city_id,emp_workshop|wrkshp_city_id,ref_company_address|addr_city_id,ref_company_cod|cod_city_id,ref_company_legitimation|legit_city_id,ref_company_siup|siup_city_id,ref_company_tdp|tdp_city_id,pcs_vendor_address|addr_city_id,crm_customer_address|addr_city_id,crm_account_address|addr_city_id,crm_contact_address|addr_city_id,crm_lead_address|addr_city_id,crm_target_address|addr_city_id,emp_ref_supervisor|spvor_city_id', 'menjelaskan tentang kota / kabupaten. Contoh : Kota Yogyakarta, Kabupaten Sleman, dsb.\r\n', 'INSERT INTO ref_city\r\n(\r\n city_id,\r\n city_state_id,\r\n city_category,\r\n city_code,\r\n city_name,\r\n city_latitude,\r\n city_longitude,\r\n city_timezone,\r\n city_status,\r\n city_desc,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'city_id\',\r\n \'city_state_id\',\r\n \'city_category\',\r\n \'city_code\',\r\n \'city_name\',\r\n \'city_latitude\',\r\n \'city_longitude\',\r\n \'city_timezone\',\r\n \'city_status\',\r\n \'city_desc\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->City', 'ref.city', 1, '2012-08-08 10:28:16', 1, '2012-08-08 11:18:15'),
(17, 'Kecamatan', 'ref_sub_district', 'ref_city|city_id', 'emp_address|addr_subdistrict_id,ref_company_address|addr_subdistrict_id,pcs_vendor_address|addr_subdistrict_id,crm_customer_address|addr_subdistrict_id,crm_account_address|addr_subdistrict_id,crm_contact_address|addr_subdistrict_id,crm_lead_address|addr_subdistrict_id,crm_target_address|addr_subdistrict_id', 'menjelaskan tentang kecamatan. Contoh : Jakarta Pusat, Jakarta Timur, dsb.\r\n', 'INSERT INTO ref_sub_district\r\n(\r\n subdistrict_id,\r\n subdistrict_city_id,\r\n subdistrict_code,\r\n subdistrict_name,\r\n subdistrict_status,\r\n subdistrict_desc,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'subdistrict_id\',\r\n \'subdistrict_city_id\',\r\n \'subdistrict_code\',\r\n \'subdistrict_name\',\r\n \'subdistrict_status\',\r\n \'subdistrict_desc\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Sub District', 'ref.sub.district', 1, '2012-08-08 10:34:14', NULL, '1900-01-01 00:00:00'),
(18, 'Satuan', 'ref_units', '', '', 'menjelaskan tentang satuan. Contoh : pcs, kg, ml, dsb.\r\n', 'INSERT INTO ref_units\r\n(\r\n units_id,\r\n units_name,\r\n units_status,\r\n units_desc,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'units_id\',\r\n \'units_name\',\r\n \'units_status\',\r\n \'units_desc\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Units', 'ref.units', 1, '2012-08-08 10:38:10', NULL, '1900-01-01 00:00:00'),
(19, 'Jenis Instant Messaging', 'ref_im_type', '', 'emp_im|im_imtype_id,crm_contact_im|im_imtype_id,crm_lead_im|im_imtype_id,crm_target_im|im_imtype_id', 'menjelaskan tentang jenis instant messaging. Contoh : YM, Gtalk, Jabber, dsb.\r\n', 'INSERT INTO ref_im_type\r\n(\r\n imtype_id,\r\n imtype_name,\r\n imtype_icon,\r\n imtype_icon_path,\r\n imtype_icon_type,\r\n imtype_icon_size,\r\n imtype_status,\r\n imtype_desc,\r\n imtype_last_option,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'imtype_id\',\r\n \'imtype_name\',\r\n \'imtype_icon\',\r\n \'imtype_icon_path\',\r\n \'imtype_icon_type\',\r\n \'imtype_icon_size\',\r\n \'imtype_status\',\r\n \'imtype_desc\',\r\n \'imtype_last_option\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Instant Messaging Type', 'ref.im.type', 1, '2012-08-08 10:41:24', NULL, '1900-01-01 00:00:00'),
(20, 'KBLI (Klasifikasi Buku Lapangan Usaha Indonesia)', 'ref_kbli', '', 'ref_company_business_sector|companybsnsec_kbli_id,pcs_vendor_business_sector|vendorbsnsec_kbli_id,crm_account_business_sector|accountbsnsec_kbli_id', 'menjelaskan tentang KBLI (Klasifikasi Buku Lapangan Usaha Indonesia). Contoh : pertanian, pertambangan, industri pengolahan, dsb.\r\n', 'INSERT INTO ref_kbli\r\n(\r\n kbli_id,\r\n kbli_parent_id,\r\n kbli_code,\r\n kbli_name,\r\n kbli_status,\r\n kbli_desc,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'kbli_id\',\r\n \'kbli_parent_id\',\r\n \'kbli_code\',\r\n \'kbli_name\',\r\n \'kbli_status\',\r\n \'kbli_desc\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->KBLI', 'ref.kbli', 1, '2012-08-08 10:42:44', NULL, '1900-01-01 00:00:00'),
(21, 'Status Nikah', 'ref_marital_status', '', 'ref_marital_code|mrtcode_mrtstatus_id,emp_marital_status|empmrtstatus_mrtstatus_id,emp_family|family_mrtstatus_id', 'menjelaskan tentang status nikah. Contoh : Belum Menikah, Sudah Menikah, dan Cerai.\r\n', 'INSERT INTO ref_marital_status\r\n(\r\n mrtstatus_id,\r\n mrtstatus_name,\r\n mrtstatus_is_married,\r\n mrtstatus_status,\r\n mrtstatus_desc,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'mrtstatus_id\',\r\n \'mrtstatus_name\',\r\n \'mrtstatus_is_married\',\r\n \'mrtstatus_status\',\r\n \'mrtstatus_desc\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Marital Status', 'ref.marital.status', 1, '2012-08-08 10:44:38', NULL, '1900-01-01 00:00:00'),
(22, 'Kode Nikah', 'ref_marital_code', 'ref_marital_status|mrtstatus_id', 'emp_marital_status|empmrtstatus_mrtcode_id,emp_family|family_mrtcode_id', 'menjelaskan tentang kode nikah. Contoh : TK, K0, K1,K2, dan K3.\r\n', 'INSERT INTO ref_marital_code\r\n(\r\n mrtcode_id,\r\n mrtcode_mrtstatus_id,\r\n mrtcode_code,\r\n mrtcode_name,\r\n mrtcode_status,\r\n mrtcode_desc,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'mrtcode_id\',\r\n \'mrtcode_mrtstatus_id\',\r\n \'mrtcode_code\',\r\n \'mrtcode_name\',\r\n \'mrtcode_status\',\r\n \'mrtcode_desc\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Marital Code', 'ref.marital.code', 1, '2012-08-08 10:46:04', NULL, '1900-01-01 00:00:00'),
(23, 'Kepemilikan', 'ref_ownership', '', '', 'menjelaskan tentang kepemilikan. Contoh : Pribadi, Bersama, dsb.\r\n', 'INSERT INTO ref_ownership\r\n(\r\n ownership_id,\r\n ownership_name,\r\n ownership_status,\r\n ownership_desc,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'ownership_id\',\r\n \'ownership_name\',\r\n \'ownership_status\',\r\n \'ownership_desc\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Ownership', 'ref.ownership', 1, '2012-08-08 10:46:59', NULL, '1900-01-01 00:00:00'),
(24, 'Jenis Telepon / Komunikasi', 'ref_phone_type', 'ref_master_type|msttype_id', 'emp_phone|phone_phonetype_id,ref_company_phone|phone_phonetype_id,pcs_vendor_phone|phone_phonetype_id,crm_customer_phone|phone_phonetype_id,crm_account_phone|phone_phonetype_id,crm_contact_phone|phone_phonetype_id,crm_lead_phone|phone_phonetype_id,crm_target_phone|phone_phonetype_id', 'menjelaskan tentang jenis telepon / komunikasi. Contoh : Home, Mobile, Pager, dsb.\r\n', 'INSERT INTO ref_phone_type\r\n(\r\n phonetype_id,\r\n phone_msttype_id,\r\n phonetype_name,\r\n phonetype_status,\r\n phonetype_desc,\r\n phonetype_is_locked,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'phonetype_id\',\r\n \'phone_msttype_id\',\r\n \'phonetype_name\',\r\n \'phonetype_status\',\r\n \'phonetype_desc\',\r\n \'phonetype_is_locked\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Phone Type', 'ref.phone.type', 1, '2012-08-08 10:49:05', NULL, '1900-01-01 00:00:00'),
(25, 'Jenis Foto', 'ref_photo_type', 'ref_master_type|msttype_id', 'emp_photo|photo_phototype_id', 'menjelaskan tentang jenis foto. Contoh : Avatar dan Resmi.\r\n', 'INSERT INTO ref_photo_type\r\n(\r\n phototype_id,\r\n phototype_msttype_id,\r\n phototype_name,\r\n phototype_is_primary,\r\n phototype_status,\r\n phototype_desc,\r\n phototype_is_locked,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'phototype_id\',\r\n \'phototype_msttype_id\',\r\n \'phototype_name\',\r\n \'phototype_is_primary\',\r\n \'phototype_status\',\r\n \'phototype_desc\',\r\n \'phototype_is_locked\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Photo Type', 'ref.photo.type', 1, '2012-08-08 11:12:03', NULL, '1900-01-01 00:00:00'),
(26, 'Agama', 'ref_religion', '', 'emp_employee|emp_religion_id,crm_customer|cust_religion_id,crm_contact|contact_religion_id,crm_lead|lead_religion_id,crm_target|target_religion_id,emp_family|family_religion_id', 'menjelaskan tentang agama. Contoh : islam, kristen, dsb.\r\n', 'INSERT INTO ref_religion\r\n(\r\n religion_id,\r\n religion_name,\r\n religion_status,\r\n religion_desc,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'religion_id\',\r\n \'religion_name\',\r\n \'religion_status\',\r\n \'religion_desc\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Religion', 'ref.religion', 1, '2012-08-08 11:14:02', 1, '2012-08-08 11:17:35'),
(27, 'Sapaan', 'ref_salutation', '', 'emp_employee|emp_salutation_id,emp_family|family_salutation_id,crm_customer|cust_salutation_id,crm_contact|contact_salutation_id,crm_lead|lead_salutation_id,crm_target|target_salutation_id', 'menjelaskan tentang sapaan. Contoh : Tn., Ny., Nn., Sdr., dan Sdri.\r\n', 'INSERT INTO ref_salutation\r\n(\r\n salutation_id,\r\n salutation_name,\r\n salutation_status,\r\n salutation_desc,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'salutation_id\',\r\n \'salutation_name\',\r\n \'salutation_status\',\r\n \'salutation_desc\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Salutation', 'ref.salutation', 1, '2012-08-08 11:16:49', NULL, '1900-01-01 00:00:00'),
(28, 'Jenis Media Sosial', 'ref_social_media_type', '', 'emp_social_media|socmed_socmedtype_id,crm_contact_social_media|socmed_socmedtype_id,crm_lead_social_media|socmed_socmedtype_id,crm_target_social_media|socmed_socmedtype_id', 'menjelaskan tentang jenis media sosial. Contoh : Facebook, Twitter, dsb.\r\n', 'INSERT INTO ref_social_media_type\r\n(\r\n socmedtype_id,\r\n socmedtype_name,\r\n socmedtype_icon,\r\n socmedtype_icon_path,\r\n socmedtype_icon_type,\r\n socmedtype_icon_size,\r\n socmedtype_status,\r\n socmedtype_desc,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'socmedtype_id\',\r\n \'socmedtype_name\',\r\n \'socmedtype_icon\',\r\n \'socmedtype_icon_path\',\r\n \'socmedtype_icon_type\',\r\n \'socmedtype_icon_size\',\r\n \'socmedtype_status\',\r\n \'socmedtype_desc\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Social Media Type', 'ref.social.media.type', 1, '2012-08-08 11:24:12', NULL, '1900-01-01 00:00:00'),
(29, 'Jenis Transportasi', 'ref_transportation_type', '', '', 'menjelaskan tentang jenis transportasi. Contoh : Pesawat, Kapal, Bus, dsb.\r\n', 'INSERT INTO ref_transportation_type\r\n(\r\n transporttype_id,\r\n transporttype_name,\r\n transporttype_status,\r\n transporttype_desc,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'transporttype_id\',\r\n \'transporttype_name\',\r\n \'transporttype_status\',\r\n \'transporttype_desc\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Transportation Type', 'ref.transportation.type', 1, '2012-08-08 11:24:45', NULL, '1900-01-01 00:00:00'),
(30, 'Jenis Pendidikan Formal', 'ref_formal_education_type', '', 'ref_formal_education_level|formedulvl_formedutype_id,ref_formal_education_grade|formedugrade_formedutype_id,emp_formal_education|formedu_formedutype_id,emp_further_education|furthedu_formedutype_id,emp_family|family_formedutype_id', 'menjelaskan tentang jenis pendidikan formal. Contoh : TK, SD, SMP, SMA, dan Perguruan Tinggi.\r\n', 'INSERT INTO ref_formal_education_type\r\n(\r\n formedutype_id,\r\n formedutype_name,\r\n formedutype_is_grade,\r\n formedutype_order,\r\n formedutype_status,\r\n formedutype_desc,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'formedutype_id\',\r\n \'formedutype_name\',\r\n \'formedutype_is_grade\',\r\n \'formedutype_order\',\r\n \'formedutype_status\',\r\n \'formedutype_desc\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Formal Education Type', 'ref.formal.education.type', 1, '2012-08-08 11:27:03', NULL, '1900-01-01 00:00:00'),
(31, 'Tingkat Pendidikan Formal', 'ref_formal_education_level', 'ref_formal_education_type|formedutype_id', 'emp_formal_education|formedu_formedulvl_id,emp_further_education|furthedu_formedulvl_id,emp_family|family_formedulvl_id', 'menjelaskan tentang tingkat pendidikan formal. Contoh : SD, MI, SMP, MTs, dsb\r\n', 'INSERT INTO ref_formal_education_level\r\n(\r\n formedulvl_id,\r\n formedulvl_formedutype_id,\r\n formedulvl_name,\r\n formedulvl_order,\r\n formedulvl_status,\r\n formedulvl_desc,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'formedulvl_id\',\r\n \'formedulvl_formedutype_id\',\r\n \'formedulvl_name\',\r\n \'formedulvl_order\',\r\n \'formedulvl_status\',\r\n \'formedulvl_desc\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Formal Education Level', 'ref.formal.education.level', 1, '2012-08-08 11:28:43', NULL, '1900-01-01 00:00:00'),
(32, 'Jenjang Pendidikan Formal', 'ref_formal_education_grade', 'ref_formal_education_type|formedutype_id', 'emp_formal_education|formedu_formedugrade_id,emp_further_education|furthedu_formedugrade_id,emp_family|family_formedugrade_id', 'menjelaskan tentang jenjang pendidikan formal, khusus jenis pendidikan formal yang memiliki jenjang. Contoh : D3, S1, S2, dan S3\r\n', 'INSERT INTO ref_formal_education_grade\r\n(\r\n formedugrade_id,\r\n formedugrade_formedutype_id,\r\n formedugrade_name,\r\n formedugrade_order,\r\n formedugrade_status,\r\n formedugrade_desc,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'formedugrade_id\',\r\n \'formedugrade_formedutype_id\',\r\n \'formedugrade_name\',\r\n \'formedugrade_order\',\r\n \'formedugrade_status\',\r\n \'formedugrade_desc\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Formal Education Grade', 'ref.formal.education.grade', 1, '2012-08-08 11:39:48', NULL, '1900-01-01 00:00:00'),
(33, 'Jenis Pendidikan Informal', 'ref_informal_education_type', '', 'emp_informal_education|informedu_informedutype_id', 'menjelaskan tentang jenis pendidikan informal. Contoh : Agama, Budi Pekerti, Etika, dsb.\r\n', 'INSERT INTO ref_informal_education_type\r\n(\r\n informedutype_id,\r\n informedutype_name,\r\n informedutype_order,\r\n informedutype_status,\r\n informedutype_desc,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'informedutype_id\',\r\n \'informedutype_name\',\r\n \'informedutype_order\',\r\n \'informedutype_status\',\r\n \'informedutype_desc\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Informal Education Type', 'ref.informal.education.type', 1, '2012-08-08 11:42:37', NULL, '1900-01-01 00:00:00'),
(34, 'Penyelenggara Pendidikan Informal', 'ref_informal_education_level', '', 'emp_informal_education|informedu_informedulvl_id', 'menjelaskan tentang penyelenggara pendidikan informal. Contoh : Keluarga, Lingkungan, dsb.\r\n', 'INSERT INTO ref_informal_education_level\r\n(\r\n informedulvl_id,\r\n informedulvl_name,\r\n informedulvl_order,\r\n informedulvl_status,\r\n informedulvl_desc,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'informedulvl_id\',\r\n \'informedulvl_name\',\r\n \'informedulvl_order\',\r\n \'informedulvl_status\',\r\n \'informedulvl_desc\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Informal Education Organizer', 'ref.informal.education.level', 1, '2012-08-08 11:43:32', NULL, '1900-01-01 00:00:00'),
(35, 'Jenis Pendidikan Non Formal', 'ref_nonformal_education_type', '', 'emp_nonformal_education|nonformedu_nonformedutype_id', 'menjelaskan tentang jenis pendidikan nonformal. Contoh : PAUD, Kepemudaan, Kesetaraan, dsb.\r\n', 'INSERT INTO ref_nonformal_education_type\r\n(\r\n nonformedutype_id,\r\n nonformedutype_name,\r\n nonformedutype_order,\r\n nonformedutype_status,\r\n nonformedutype_desc,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'nonformedutype_id\',\r\n \'nonformedutype_name\',\r\n \'nonformedutype_order\',\r\n \'nonformedutype_status\',\r\n \'nonformedutype_desc\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Non Formal Education Type', 'ref.nonformal.education.type', 1, '2012-08-08 11:45:01', NULL, '1900-01-01 00:00:00'),
(36, 'Penyelenggara Pendidikan Nonformal', 'ref_nonformal_education_level', '', 'emp_nonformal_education|nonformedu_nonformedulvl_id', 'menjelaskan tentang penyelenggara pendidikan nonformal. Contoh : Kelompok Bermain (KB), Kursus, TPA, dsb.\r\n', 'INSERT INTO ref_nonformal_education_level\r\n(\r\n nonformedulvl_id,\r\n nonformedulvl_name,\r\n nonformedulvl_order,\r\n nonformedulvl_status,\r\n nonformedulvl_desc,\r\n insert_user_id,\r\n insert_timestamp\r\n) VALUES (\r\n \'nonformedulvl_id\',\r\n \'nonformedulvl_name\',\r\n \'nonformedulvl_order\',\r\n \'nonformedulvl_status\',\r\n \'nonformedulvl_desc\',\r\n \'insert_user_id\',\r\n NOW()\r\n)', 'Reference->Global->Non Formal Education Organizer', 'ref.nonformal.education.level', 1, '2012-08-08 11:45:46', 1, '2012-08-08 11:46:41');
-- --------------------------------------------------------
--
-- Table structure for table `gtfw_unit`
--
CREATE TABLE `gtfw_unit` (
`unit_id` smallint(6) NOT NULL,
`unit_parent_id` smallint(6) DEFAULT NULL COMMENT 'refer to gtfw_unit.unit_id (parent)',
`unit_level` varchar(100) DEFAULT NULL,
`unit_is_company` tinyint(1) DEFAULT 0,
`unit_company_id` bigint(20) DEFAULT NULL COMMENT 'refer to gtfw_company.company_id',
`unit_is_branch` tinyint(1) DEFAULT 0,
`unit_code` varchar(50) DEFAULT NULL,
`unit_name` varchar(255) DEFAULT NULL,
`unit_desc` text DEFAULT NULL,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '0000-00-00 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `gtfw_user`
--
CREATE TABLE `gtfw_user` (
`user_id` bigint(20) NOT NULL,
`user_real_name` varchar(255) DEFAULT NULL,
`user_user_name` varchar(50) DEFAULT NULL,
`user_email` varchar(255) DEFAULT NULL,
`user_password` varchar(50) DEFAULT NULL,
`user_desc` text DEFAULT NULL,
`user_no_password` tinyint(1) DEFAULT 0,
`user_active` tinyint(1) DEFAULT 1,
`user_force_logout` tinyint(1) DEFAULT 0,
`user_active_lang_code` varchar(5) NOT NULL COMMENT 'refer to gtfw_lang.lang_code',
`user_last_logged_in` datetime DEFAULT '0000-00-00 00:00:00',
`user_last_ip` varchar(15) DEFAULT NULL,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '0000-00-00 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Storage for user data of the application';
--
-- Dumping data for table `gtfw_user`
--
INSERT INTO `gtfw_user` (`user_id`, `user_real_name`, `user_user_name`, `user_email`, `user_password`, `user_desc`, `user_no_password`, `user_active`, `user_force_logout`, `user_active_lang_code`, `user_last_logged_in`, `user_last_ip`, `insert_user_id`, `insert_timestamp`, `update_user_id`, `update_timestamp`) VALUES
(1, 'Administrator (Root)', 'admin', 'admin@mail.com', '21232f297a57a5a743894a0e4a801fc3', NULL, 0, 1, 0, 'en', '0000-00-00 00:00:00', NULL, NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00');
-- --------------------------------------------------------
--
-- Table structure for table `gtfw_user_fav_menu`
--
CREATE TABLE `gtfw_user_fav_menu` (
`favmenu_user_id` bigint(20) NOT NULL COMMENT 'refer to gtfw_user.user_id',
`favmenu_menu_id` bigint(20) NOT NULL COMMENT 'refer to gtfw_menu.menu_id',
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '0000-00-00 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `gtfw_user_group`
--
CREATE TABLE `gtfw_user_group` (
`usergroup_user_id` bigint(20) NOT NULL COMMENT 'refer to gtfw_user.user_id',
`usergroup_group_id` bigint(20) NOT NULL COMMENT 'refer to gtfw_group.group_id'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `gtfw_user_group`
--
INSERT INTO `gtfw_user_group` (`usergroup_user_id`, `usergroup_group_id`) VALUES
(1, 1);
-- --------------------------------------------------------
--
-- Table structure for table `gtfw_user_new_pass`
--
CREATE TABLE `gtfw_user_new_pass` (
`usrnewpass_user_id` bigint(20) NOT NULL,
`usrnewpass_new_pass` varchar(50) DEFAULT NULL,
`usrnewpass_new_pass_key` varchar(50) DEFAULT NULL,
`usrnewpass_new_pass_datetime` datetime DEFAULT '0000-00-00 00:00:00',
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '0000-00-00 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `gtfw_user_unit`
--
CREATE TABLE `gtfw_user_unit` (
`userunit_user_id` bigint(20) NOT NULL COMMENT 'refer to gtfw_user.user_id',
`userunit_unit_id` smallint(6) NOT NULL COMMENT 'refer to gtfw_unit.unit_id'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `gtfw_user_whosonline`
--
CREATE TABLE `gtfw_user_whosonline` (
`whos_id` bigint(20) NOT NULL,
`whos_user_id` bigint(20) DEFAULT NULL COMMENT 'refer to gtfw_user.user_id',
`whos_ip` varchar(15) DEFAULT NULL,
`whos_time` datetime DEFAULT '0000-00-00 00:00:00',
`whos_invisible` bit(1) DEFAULT b'0',
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '0000-00-00 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `gtfw_user_widget`
--
CREATE TABLE `gtfw_user_widget` (
`userwidget_user_id` bigint(20) NOT NULL,
`userwidget_menu_id` int(11) NOT NULL,
`userwidget_widget_id` bigint(20) NOT NULL,
`userwidget_sizex` int(2) DEFAULT NULL,
`userwidget_sizey` int(2) DEFAULT NULL,
`userwidget_row` int(2) DEFAULT NULL,
`userwidget_col` int(2) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `gtfw_widget`
--
CREATE TABLE `gtfw_widget` (
`widget_id` int(11) UNSIGNED NOT NULL,
`widget_module_id` bigint(20) NOT NULL,
`widget_name` varchar(100) DEFAULT NULL,
`widget_description` text DEFAULT NULL,
`widget_resizable` tinyint(1) DEFAULT 1,
`widget_sizex` tinyint(2) DEFAULT NULL,
`widget_sizey` tinyint(2) DEFAULT NULL,
`widget_row` tinyint(2) DEFAULT NULL,
`widget_col` tinyint(2) DEFAULT NULL,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '0000-00-00 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `ref_city`
--
CREATE TABLE `ref_city` (
`city_id` mediumint(9) NOT NULL,
`city_state_id` mediumint(9) DEFAULT NULL COMMENT 'refer to ref_state.state_id',
`city_category` enum('city','district') DEFAULT NULL,
`city_code` varchar(50) DEFAULT NULL,
`city_name` varchar(255) NOT NULL,
`city_latitude` varchar(50) DEFAULT NULL,
`city_longitude` varchar(50) DEFAULT NULL,
`city_timezone` varchar(50) DEFAULT NULL,
`city_status` tinyint(1) DEFAULT 0,
`city_desc` text DEFAULT NULL,
`insert_user_id` bigint(20) DEFAULT NULL,
`insert_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`update_user_id` bigint(20) DEFAULT NULL,
`update_timestamp` datetime DEFAULT '1900-01-01 00:00:00',
`unit_id` smallint(6) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `tbl_member`
--
CREATE TABLE `tbl_member` (
`member_id` int(11) NOT NULL,
`member_name` varchar(100) NOT NULL,
`member_job` varchar(100) NOT NULL,
`member_address` varchar(100) NOT NULL,
`insert_timestamp` datetime NOT NULL,
`insert_user_id` bigint(20) NOT NULL,
`update_timestamp` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tbl_member`
--
INSERT INTO `tbl_member` (`member_id`, `member_name`, `member_job`, `member_address`, `insert_timestamp`, `insert_user_id`, `update_timestamp`) VALUES
(1, 'Prasetyo Edi Pamungkas', 'Student', 'Tumut', '2021-07-14 16:14:13', 1, '2021-07-14 16:15:50'),
(2, 'Jojo', 'Content Creator', 'Jln Mawardi Indah', '2021-07-14 16:15:03', 1, '0000-00-00 00:00:00'),
(3, 'Edd ', 'Frontend Web Developer', 'Jln Suka Maju', '2021-07-14 16:18:36', 1, '0000-00-00 00:00:00');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_news`
--
CREATE TABLE `tbl_news` (
`news_id` int(11) NOT NULL,
`news_judul` varchar(100) NOT NULL,
`news_deskripsi` varchar(500) NOT NULL,
`insert_timestamp` datetime NOT NULL,
`insert_user_id` bigint(20) NOT NULL,
`update_timestamp` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tbl_news`
--
INSERT INTO `tbl_news` (`news_id`, `news_judul`, `news_deskripsi`, `insert_timestamp`, `insert_user_id`, `update_timestamp`) VALUES
(1, 'Sekolah daring', 'Pembelajaran sekolah daring adalah metode belajar yang menggunakan model interaktif berbasis internet dan Learning Manajemen System (LMS). Seperti menggunakan Zoom, Google Meet, dan lainnya.', '2021-07-14 14:20:41', 1, '2021-07-14 16:28:37');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_store`
--
CREATE TABLE `tbl_store` (
`store_id` int(11) NOT NULL,
`store_name` varchar(100) NOT NULL,
`store_address` text NOT NULL,
`insert_timestamp` datetime NOT NULL,
`insert_user_id` bigint(20) NOT NULL,
`update_timestamp` datetime NOT NULL,
`update_user_id` bigint(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tbl_store`
--
INSERT INTO `tbl_store` (`store_id`, `store_name`, `store_address`, `insert_timestamp`, `insert_user_id`, `update_timestamp`, `update_user_id`) VALUES
(1, 'Kain', 'Jalan Yos Soedarso', '2021-07-13 15:22:50', 1, '2021-07-14 13:01:51', 1);
-- --------------------------------------------------------
--
-- Table structure for table `tbl_tipe`
--
CREATE TABLE `tbl_tipe` (
`tipe_id` int(11) NOT NULL,
`tipe_nama` varchar(100) NOT NULL,
`tipe_deskripsi` varchar(500) NOT NULL,
`tipe_tambahan` varchar(500) NOT NULL,
`insert_timestamp` datetime NOT NULL,
`insert_user_id` bigint(20) NOT NULL,
`update_timestamp` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tbl_tipe`
--
INSERT INTO `tbl_tipe` (`tipe_id`, `tipe_nama`, `tipe_deskripsi`, `tipe_tambahan`, `insert_timestamp`, `insert_user_id`, `update_timestamp`) VALUES
(1, 'Cara Meninggikan Badan di Usia 20 Tahun', 'Yang paling mudah untuk melakukan cara meninggikan badan di usia 20 tahun ke atas adalah dengan bermain basket. Basket merupakan salah satu olahraga yang digemari oleh sebagian besar anak muda. ', 'Hanya berlaku di usia 20 tahun', '2021-07-14 16:43:53', 1, '0000-00-00 00:00:00');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `comp_email_history`
--
ALTER TABLE `comp_email_history`
ADD PRIMARY KEY (`emailhis_id`);
--
-- Indexes for table `comp_email_template`
--
ALTER TABLE `comp_email_template`
ADD PRIMARY KEY (`emailtmpl_id`);
--
-- Indexes for table `comp_email_template_text`
--
ALTER TABLE `comp_email_template_text`
ADD PRIMARY KEY (`emailtmpltext_emailtmpl_id`,`emailtmpltext_lang_code`);
--
-- Indexes for table `comp_message_blacklist`
--
ALTER TABLE `comp_message_blacklist`
ADD PRIMARY KEY (`blacklist_id`);
--
-- Indexes for table `comp_message_content`
--
ALTER TABLE `comp_message_content`
ADD PRIMARY KEY (`msg_id`);
--
-- Indexes for table `comp_message_control`
--
ALTER TABLE `comp_message_control`
ADD PRIMARY KEY (`ctrl_id`);
--
-- Indexes for table `comp_message_file`
--
ALTER TABLE `comp_message_file`
ADD PRIMARY KEY (`file_id`);
--
-- Indexes for table `comp_message_folder`
--
ALTER TABLE `comp_message_folder`
ADD PRIMARY KEY (`folder_id`);
--
-- Indexes for table `comp_notification_content`
--
ALTER TABLE `comp_notification_content`
ADD PRIMARY KEY (`notif_id`);
--
-- Indexes for table `comp_notification_template`
--
ALTER TABLE `comp_notification_template`
ADD PRIMARY KEY (`notiftmpl_id`);
--
-- Indexes for table `comp_notification_template_text`
--
ALTER TABLE `comp_notification_template_text`
ADD PRIMARY KEY (`notiftmpltext_notiftmpl_id`,`notiftmpltext_lang_code`);
--
-- Indexes for table `comp_sms_history`
--
ALTER TABLE `comp_sms_history`
ADD PRIMARY KEY (`smshis_id`);
--
-- Indexes for table `comp_sms_template`
--
ALTER TABLE `comp_sms_template`
ADD PRIMARY KEY (`smstmpl_id`);
--
-- Indexes for table `comp_sms_template_text`
--
ALTER TABLE `comp_sms_template_text`
ADD PRIMARY KEY (`smstmpltext_smstmpl_id`,`smstmpltext_lang_code`);
--
-- Indexes for table `comp_vcard`
--
ALTER TABLE `comp_vcard`
ADD PRIMARY KEY (`vcard_id`);
--
-- Indexes for table `emp_email`
--
ALTER TABLE `emp_email`
ADD PRIMARY KEY (`email_id`),
ADD KEY `FK_emp_email_email_type` (`email_emailtype_id`),
ADD KEY `FK_emp_email_emp_employee` (`email_emp_id`);
--
-- Indexes for table `emp_employee`
--
ALTER TABLE `emp_employee`
ADD PRIMARY KEY (`emp_id`),
ADD KEY `FK_emp_employee_salutation` (`emp_salutation_id`),
ADD KEY `FK_emp_employee_1` (`insert_user_id`),
ADD KEY `FK_emp_employee_2` (`update_user_id`),
ADD KEY `FK_emp_employee_ref_religion` (`emp_religion_id`),
ADD KEY `FK_emp_employee_ref_country` (`emp_country_id`),
ADD KEY `FK_emp_employee_ref_blood_type` (`emp_bloodtype_id`),
ADD KEY `FK_emp_employee_work_period_type` (`emp_workpertype_id`);
--
-- Indexes for table `emp_employee_status`
--
ALTER TABLE `emp_employee_status`
ADD PRIMARY KEY (`empstatus_id`),
ADD KEY `FK_emp_employee_status_employee` (`empstatus_emp_id`),
ADD KEY `FK_emp_employee_status_employee_status` (`empstatus_empstat_id`),
ADD KEY `FK_emp_employee_status_employee_official` (`empstatus_decree_emp_id`);
--
-- Indexes for table `emp_employee_type`
--
ALTER TABLE `emp_employee_type`
ADD PRIMARY KEY (`emptype_id`),
ADD KEY `FK_emp_employee_type_employee` (`emptype_emp_id`),
ADD KEY `FK_emp_employee_type_employee_type` (`emptype_emptype_id`),
ADD KEY `FK_emp_employee_type_employee_official` (`emptype_decree_emp_id`);
--
-- Indexes for table `emp_employee_unit`
--
ALTER TABLE `emp_employee_unit`
ADD PRIMARY KEY (`empunit_id`),
ADD KEY `FK_emp_employee_unit_employee` (`empunit_emp_id`),
ADD KEY `FK_emp_employee_unit_unit` (`empunit_unit_id`),
ADD KEY `FK_emp_employee_unit_employee_official` (`empunit_decree_emp_id`),
ADD KEY `FK_emp_employee_unit_company` (`empunit_company_id`);
--
-- Indexes for table `emp_employee_user`
--
ALTER TABLE `emp_employee_user`
ADD PRIMARY KEY (`empuser_id`),
ADD KEY `FK_emp_employee_user_employee` (`empuser_emp_id`),
ADD KEY `FK_emp_employee_user_user` (`empuser_user_id`);
--
-- Indexes for table `emp_photo`
--
ALTER TABLE `emp_photo`
ADD PRIMARY KEY (`photo_id`),
ADD KEY `FK_emp_photo_employee` (`photo_emp_id`),
ADD KEY `FK_emp_photo_photo_type` (`photo_phototype_id`);
--
-- Indexes for table `emp_ref_employee_status`
--
ALTER TABLE `emp_ref_employee_status`
ADD PRIMARY KEY (`empstat_id`);
--
-- Indexes for table `emp_ref_employee_type`
--
ALTER TABLE `emp_ref_employee_type`
ADD PRIMARY KEY (`emptype_id`);
--
-- Indexes for table `emp_structural_position`
--
ALTER TABLE `emp_structural_position`
ADD PRIMARY KEY (`strucpos_id`),
ADD KEY `FK_emp_structural_position_structural_position_type` (`strucpos_strucpostype_id`),
ADD KEY `FK_emp_structural_position_employee` (`strucpos_emp_id`),
ADD KEY `FK_emp_structural_position_employee_official` (`strucpos_decree_emp_id`);
--
-- Indexes for table `gtfw_action`
--
ALTER TABLE `gtfw_action`
ADD PRIMARY KEY (`action_id`);
--
-- Indexes for table `gtfw_action_text`
--
ALTER TABLE `gtfw_action_text`
ADD KEY `FK_gtfw_action_text_action` (`actiontext_action_id`),
ADD KEY `FK_gtfw_action_text_lang` (`actiontext_lang_code`);
--
-- Indexes for table `gtfw_application`
--
ALTER TABLE `gtfw_application`
ADD PRIMARY KEY (`application_id`);
--
-- Indexes for table `gtfw_company`
--
ALTER TABLE `gtfw_company`
ADD PRIMARY KEY (`company_id`),
ADD KEY `FK_gtfw_company_country` (`company_country_id`),
ADD KEY `FK_gtfw_company_state` (`company_state_id`),
ADD KEY `FK_gtfw_company_city` (`company_city_id`);
--
-- Indexes for table `gtfw_company_logo`
--
ALTER TABLE `gtfw_company_logo`
ADD PRIMARY KEY (`logo_id`),
ADD KEY `FK_gtfw_company_logo_company` (`logo_company_id`),
ADD KEY `FK_gtfw_company_logo_photo_type` (`logo_phototype_id`);
--
-- Indexes for table `gtfw_group`
--
ALTER TABLE `gtfw_group`
ADD PRIMARY KEY (`group_id`),
ADD KEY `FK_gtfw_group_application` (`group_application_id`);
--
-- Indexes for table `gtfw_group_menu`
--
ALTER TABLE `gtfw_group_menu`
ADD PRIMARY KEY (`groupmenu_menu_id`,`groupmenu_group_id`),
ADD KEY `FK_gtfw_group_menu_group` (`groupmenu_group_id`);
--
-- Indexes for table `gtfw_group_module`
--
ALTER TABLE `gtfw_group_module`
ADD PRIMARY KEY (`groupmodule_group_id`,`groupmodule_module_id`),
ADD KEY `FK_gtfw_group_module_module` (`groupmodule_module_id`),
ADD KEY `idx_gtfw_group_module` (`groupmodule_group_id`);
--
-- Indexes for table `gtfw_key`
--
ALTER TABLE `gtfw_key`
ADD PRIMARY KEY (`key_id`),
ADD UNIQUE KEY `Index_key` (`key_code`);
--
-- Indexes for table `gtfw_key_text`
--
ALTER TABLE `gtfw_key_text`
ADD PRIMARY KEY (`key_text_key_id`,`key_text_lang_code`),
ADD KEY `FK_gtfw_key_text_lang` (`key_text_lang_code`),
ADD KEY `idx_gtfw_key_text` (`key_text_key_id`);
--
-- Indexes for table `gtfw_lang`
--
ALTER TABLE `gtfw_lang`
ADD PRIMARY KEY (`lang_code`);
--
-- Indexes for table `gtfw_logs`
--
ALTER TABLE `gtfw_logs`
ADD PRIMARY KEY (`logs_id`);
--
-- Indexes for table `gtfw_menu`
--
ALTER TABLE `gtfw_menu`
ADD PRIMARY KEY (`menu_id`),
ADD KEY `FK_gtfw_menu_application` (`menu_application_id`),
ADD KEY `FK_gtfw_menu_parent` (`menu_parent_id`),
ADD KEY `FK_gtfw_menu_module` (`menu_default_module_id`);
--
-- Indexes for table `gtfw_menu_text`
--
ALTER TABLE `gtfw_menu_text`
ADD PRIMARY KEY (`menutext_menu_id`,`menutext_lang_code`),
ADD KEY `FK_gtfw_menu_text_lang` (`menutext_lang_code`),
ADD KEY `idx_gtfw_menu_text` (`menutext_menu_id`);
--
-- Indexes for table `gtfw_module`
--
ALTER TABLE `gtfw_module`
ADD PRIMARY KEY (`module_id`),
ADD KEY `FK_gtfw_module_application` (`module_application_id`),
ADD KEY `FK_gtfw_module_action` (`module_action_id`),
ADD KEY `FK_gtfw_module_menu` (`module_menu_id`);
--
-- Indexes for table `gtfw_sessions`
--
ALTER TABLE `gtfw_sessions`
ADD PRIMARY KEY (`sess_id`);
--
-- Indexes for table `gtfw_setting`
--
ALTER TABLE `gtfw_setting`
ADD PRIMARY KEY (`setting_id`);
--
-- Indexes for table `gtfw_table_documentation`
--
ALTER TABLE `gtfw_table_documentation`
ADD PRIMARY KEY (`tabledoc_id`);
--
-- Indexes for table `gtfw_unit`
--
ALTER TABLE `gtfw_unit`
ADD PRIMARY KEY (`unit_id`),
ADD KEY `FK_gtfw_unit_parent` (`unit_parent_id`),
ADD KEY `FK_gtfw_unit_company` (`unit_company_id`);
--
-- Indexes for table `gtfw_user`
--
ALTER TABLE `gtfw_user`
ADD PRIMARY KEY (`user_id`),
ADD KEY `idx_gtfw_user` (`user_active_lang_code`);
--
-- Indexes for table `gtfw_user_fav_menu`
--
ALTER TABLE `gtfw_user_fav_menu`
ADD PRIMARY KEY (`favmenu_user_id`,`favmenu_menu_id`),
ADD KEY `idx_gtfw_user_fav_menu` (`favmenu_user_id`),
ADD KEY `idx_gtfw_user_fav_menu_0` (`favmenu_menu_id`);
--
-- Indexes for table `gtfw_user_group`
--
ALTER TABLE `gtfw_user_group`
ADD PRIMARY KEY (`usergroup_user_id`,`usergroup_group_id`),
ADD KEY `FK_gtfw_user_group_group` (`usergroup_group_id`),
ADD KEY `idx_gtfw_user_group` (`usergroup_user_id`);
--
-- Indexes for table `gtfw_user_new_pass`
--
ALTER TABLE `gtfw_user_new_pass`
ADD PRIMARY KEY (`usrnewpass_user_id`);
--
-- Indexes for table `gtfw_user_unit`
--
ALTER TABLE `gtfw_user_unit`
ADD PRIMARY KEY (`userunit_user_id`),
ADD KEY `FK_gtfw_user_unit_unit` (`userunit_unit_id`);
--
-- Indexes for table `gtfw_user_whosonline`
--
ALTER TABLE `gtfw_user_whosonline`
ADD PRIMARY KEY (`whos_id`),
ADD KEY `FK_gtfw_user_whosonline_user` (`whos_user_id`);
--
-- Indexes for table `gtfw_user_widget`
--
ALTER TABLE `gtfw_user_widget`
ADD PRIMARY KEY (`userwidget_user_id`,`userwidget_menu_id`,`userwidget_widget_id`);
--
-- Indexes for table `gtfw_widget`
--
ALTER TABLE `gtfw_widget`
ADD PRIMARY KEY (`widget_id`);
--
-- Indexes for table `ref_city`
--
ALTER TABLE `ref_city`
ADD PRIMARY KEY (`city_id`),
ADD KEY `FK_ref_city_state` (`city_state_id`);
--
-- Indexes for table `tbl_member`
--
ALTER TABLE `tbl_member`
ADD PRIMARY KEY (`member_id`);
--
-- Indexes for table `tbl_news`
--
ALTER TABLE `tbl_news`
ADD PRIMARY KEY (`news_id`);
--
-- Indexes for table `tbl_store`
--
ALTER TABLE `tbl_store`
ADD PRIMARY KEY (`store_id`);
--
-- Indexes for table `tbl_tipe`
--
ALTER TABLE `tbl_tipe`
ADD PRIMARY KEY (`tipe_id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `comp_email_history`
--
ALTER TABLE `comp_email_history`
MODIFY `emailhis_id` bigint(20) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `comp_email_template`
--
ALTER TABLE `comp_email_template`
MODIFY `emailtmpl_id` smallint(6) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `comp_message_blacklist`
--
ALTER TABLE `comp_message_blacklist`
MODIFY `blacklist_id` bigint(20) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `comp_message_content`
--
ALTER TABLE `comp_message_content`
MODIFY `msg_id` bigint(20) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `comp_message_control`
--
ALTER TABLE `comp_message_control`
MODIFY `ctrl_id` bigint(20) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `comp_message_file`
--
ALTER TABLE `comp_message_file`
MODIFY `file_id` bigint(20) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `comp_message_folder`
--
ALTER TABLE `comp_message_folder`
MODIFY `folder_id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `comp_notification_content`
--
ALTER TABLE `comp_notification_content`
MODIFY `notif_id` bigint(20) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `comp_notification_template`
--
ALTER TABLE `comp_notification_template`
MODIFY `notiftmpl_id` smallint(6) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `comp_sms_history`
--
ALTER TABLE `comp_sms_history`
MODIFY `smshis_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id sms history';
--
-- AUTO_INCREMENT for table `comp_sms_template`
--
ALTER TABLE `comp_sms_template`
MODIFY `smstmpl_id` smallint(6) NOT NULL AUTO_INCREMENT COMMENT 'id sms template';
--
-- AUTO_INCREMENT for table `comp_vcard`
--
ALTER TABLE `comp_vcard`
MODIFY `vcard_id` bigint(20) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `emp_email`
--
ALTER TABLE `emp_email`
MODIFY `email_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id email';
--
-- AUTO_INCREMENT for table `emp_employee`
--
ALTER TABLE `emp_employee`
MODIFY `emp_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id';
--
-- AUTO_INCREMENT for table `emp_employee_status`
--
ALTER TABLE `emp_employee_status`
MODIFY `empstatus_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id employee status';
--
-- AUTO_INCREMENT for table `emp_employee_type`
--
ALTER TABLE `emp_employee_type`
MODIFY `emptype_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id employee unit';
--
-- AUTO_INCREMENT for table `emp_employee_unit`
--
ALTER TABLE `emp_employee_unit`
MODIFY `empunit_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id employee unit';
--
-- AUTO_INCREMENT for table `emp_employee_user`
--
ALTER TABLE `emp_employee_user`
MODIFY `empuser_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id employee user';
--
-- AUTO_INCREMENT for table `emp_photo`
--
ALTER TABLE `emp_photo`
MODIFY `photo_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id photo';
--
-- AUTO_INCREMENT for table `emp_ref_employee_status`
--
ALTER TABLE `emp_ref_employee_status`
MODIFY `empstat_id` smallint(6) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `emp_ref_employee_type`
--
ALTER TABLE `emp_ref_employee_type`
MODIFY `emptype_id` smallint(6) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `emp_structural_position`
--
ALTER TABLE `emp_structural_position`
MODIFY `strucpos_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id structural position';
--
-- AUTO_INCREMENT for table `gtfw_action`
--
ALTER TABLE `gtfw_action`
MODIFY `action_id` smallint(6) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25;
--
-- AUTO_INCREMENT for table `gtfw_company`
--
ALTER TABLE `gtfw_company`
MODIFY `company_id` bigint(20) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `gtfw_company_logo`
--
ALTER TABLE `gtfw_company_logo`
MODIFY `logo_id` bigint(20) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `gtfw_group`
--
ALTER TABLE `gtfw_group`
MODIFY `group_id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `gtfw_key`
--
ALTER TABLE `gtfw_key`
MODIFY `key_id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2441;
--
-- AUTO_INCREMENT for table `gtfw_logs`
--
ALTER TABLE `gtfw_logs`
MODIFY `logs_id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `gtfw_menu`
--
ALTER TABLE `gtfw_menu`
MODIFY `menu_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id menu', AUTO_INCREMENT=44;
--
-- AUTO_INCREMENT for table `gtfw_module`
--
ALTER TABLE `gtfw_module`
MODIFY `module_id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=463;
--
-- AUTO_INCREMENT for table `gtfw_setting`
--
ALTER TABLE `gtfw_setting`
MODIFY `setting_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=49;
--
-- AUTO_INCREMENT for table `gtfw_table_documentation`
--
ALTER TABLE `gtfw_table_documentation`
MODIFY `tabledoc_id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=37;
--
-- AUTO_INCREMENT for table `gtfw_unit`
--
ALTER TABLE `gtfw_unit`
MODIFY `unit_id` smallint(6) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `gtfw_user`
--
ALTER TABLE `gtfw_user`
MODIFY `user_id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `gtfw_user_whosonline`
--
ALTER TABLE `gtfw_user_whosonline`
MODIFY `whos_id` bigint(20) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `gtfw_widget`
--
ALTER TABLE `gtfw_widget`
MODIFY `widget_id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `ref_city`
--
ALTER TABLE `ref_city`
MODIFY `city_id` mediumint(9) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=40454;
--
-- AUTO_INCREMENT for table `tbl_member`
--
ALTER TABLE `tbl_member`
MODIFY `member_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `tbl_news`
--
ALTER TABLE `tbl_news`
MODIFY `news_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `tbl_store`
--
ALTER TABLE `tbl_store`
MODIFY `store_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `tbl_tipe`
--
ALTER TABLE `tbl_tipe`
MODIFY `tipe_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `comp_email_template_text`
--
ALTER TABLE `comp_email_template_text`
ADD CONSTRAINT `FK_comp_email_template_text_email_template` FOREIGN KEY (`emailtmpltext_emailtmpl_id`) REFERENCES `comp_email_template` (`emailtmpl_id`) ON DELETE NO ACTION;
--
-- Constraints for table `comp_notification_template_text`
--
ALTER TABLE `comp_notification_template_text`
ADD CONSTRAINT `FK_comp_notification_template_text_notification_template` FOREIGN KEY (`notiftmpltext_notiftmpl_id`) REFERENCES `comp_notification_template` (`notiftmpl_id`) ON DELETE NO ACTION;
--
-- Constraints for table `emp_email`
--
ALTER TABLE `emp_email`
ADD CONSTRAINT `FK_emp_email_email_type` FOREIGN KEY (`email_emailtype_id`) REFERENCES `ref_email_type` (`emailtype_id`) ON UPDATE CASCADE,
ADD CONSTRAINT `FK_emp_email_emp_employee` FOREIGN KEY (`email_emp_id`) REFERENCES `emp_employee` (`emp_id`) ON UPDATE CASCADE;
--
-- Constraints for table `emp_employee`
--
ALTER TABLE `emp_employee`
ADD CONSTRAINT `FK_emp_employee_salutation` FOREIGN KEY (`emp_salutation_id`) REFERENCES `ref_salutation` (`salutation_id`) ON UPDATE CASCADE;
--
-- Constraints for table `emp_employee_status`
--
ALTER TABLE `emp_employee_status`
ADD CONSTRAINT `FK_emp_employee_status_employee` FOREIGN KEY (`empstatus_emp_id`) REFERENCES `emp_employee` (`emp_id`) ON UPDATE CASCADE,
ADD CONSTRAINT `FK_emp_employee_status_employee_official` FOREIGN KEY (`empstatus_decree_emp_id`) REFERENCES `emp_employee` (`emp_id`) ON UPDATE CASCADE,
ADD CONSTRAINT `FK_emp_employee_status_employee_status` FOREIGN KEY (`empstatus_empstat_id`) REFERENCES `emp_ref_employee_status` (`empstat_id`) ON UPDATE CASCADE;
--
-- Constraints for table `emp_employee_type`
--
ALTER TABLE `emp_employee_type`
ADD CONSTRAINT `FK_emp_employee_type_employee` FOREIGN KEY (`emptype_emp_id`) REFERENCES `emp_employee` (`emp_id`) ON UPDATE CASCADE,
ADD CONSTRAINT `FK_emp_employee_type_employee_official` FOREIGN KEY (`emptype_decree_emp_id`) REFERENCES `emp_employee` (`emp_id`) ON UPDATE CASCADE,
ADD CONSTRAINT `FK_emp_employee_type_employee_type` FOREIGN KEY (`emptype_emptype_id`) REFERENCES `emp_ref_employee_type` (`emptype_id`) ON UPDATE CASCADE;
--
-- Constraints for table `emp_employee_unit`
--
ALTER TABLE `emp_employee_unit`
ADD CONSTRAINT `FK_emp_employee_unit_company` FOREIGN KEY (`empunit_company_id`) REFERENCES `gtfw_company` (`company_id`) ON DELETE NO ACTION ON UPDATE CASCADE,
ADD CONSTRAINT `FK_emp_employee_unit_employee` FOREIGN KEY (`empunit_emp_id`) REFERENCES `emp_employee` (`emp_id`) ON UPDATE CASCADE,
ADD CONSTRAINT `FK_emp_employee_unit_employee_official` FOREIGN KEY (`empunit_decree_emp_id`) REFERENCES `emp_employee` (`emp_id`) ON UPDATE CASCADE,
ADD CONSTRAINT `FK_emp_employee_unit_unit` FOREIGN KEY (`empunit_unit_id`) REFERENCES `gtfw_unit` (`unit_id`) ON UPDATE CASCADE;
--
-- Constraints for table `emp_employee_user`
--
ALTER TABLE `emp_employee_user`
ADD CONSTRAINT `FK_emp_employee_user_employee` FOREIGN KEY (`empuser_emp_id`) REFERENCES `emp_employee` (`emp_id`) ON UPDATE CASCADE,
ADD CONSTRAINT `FK_emp_employee_user_user` FOREIGN KEY (`empuser_user_id`) REFERENCES `gtfw_user` (`user_id`) ON UPDATE CASCADE;
--
-- Constraints for table `emp_photo`
--
ALTER TABLE `emp_photo`
ADD CONSTRAINT `FK_emp_photo_employee` FOREIGN KEY (`photo_emp_id`) REFERENCES `emp_employee` (`emp_id`) ON UPDATE CASCADE,
ADD CONSTRAINT `FK_emp_photo_photo_type` FOREIGN KEY (`photo_phototype_id`) REFERENCES `ref_photo_type` (`phototype_id`) ON UPDATE CASCADE;
--
-- Constraints for table `emp_structural_position`
--
ALTER TABLE `emp_structural_position`
ADD CONSTRAINT `FK_emp_structural_position_employee` FOREIGN KEY (`strucpos_emp_id`) REFERENCES `emp_employee` (`emp_id`) ON UPDATE CASCADE,
ADD CONSTRAINT `FK_emp_structural_position_employee_official` FOREIGN KEY (`strucpos_decree_emp_id`) REFERENCES `emp_employee` (`emp_id`) ON UPDATE CASCADE,
ADD CONSTRAINT `FK_emp_structural_position_structural_position_type` FOREIGN KEY (`strucpos_strucpostype_id`) REFERENCES `ref_structural_position_type` (`strucpostype_id`) ON UPDATE CASCADE;
--
-- Constraints for table `gtfw_action_text`
--
ALTER TABLE `gtfw_action_text`
ADD CONSTRAINT `fk_gtfw_action_text` FOREIGN KEY (`actiontext_action_id`) REFERENCES `gtfw_action` (`action_id`) ON UPDATE CASCADE,
ADD CONSTRAINT `fk_gtfw_action_text_0` FOREIGN KEY (`actiontext_lang_code`) REFERENCES `gtfw_lang` (`lang_code`) ON UPDATE CASCADE;
--
-- Constraints for table `gtfw_company`
--
ALTER TABLE `gtfw_company`
ADD CONSTRAINT `FK_gtfw_company_city` FOREIGN KEY (`company_city_id`) REFERENCES `ref_city` (`city_id`) ON DELETE NO ACTION ON UPDATE CASCADE,
ADD CONSTRAINT `FK_gtfw_company_country` FOREIGN KEY (`company_country_id`) REFERENCES `ref_country` (`country_id`) ON DELETE NO ACTION ON UPDATE CASCADE,
ADD CONSTRAINT `FK_gtfw_company_state` FOREIGN KEY (`company_state_id`) REFERENCES `ref_state` (`state_id`) ON DELETE NO ACTION ON UPDATE CASCADE;
--
-- Constraints for table `gtfw_company_logo`
--
ALTER TABLE `gtfw_company_logo`
ADD CONSTRAINT `FK_gtfw_company_logo_company` FOREIGN KEY (`logo_company_id`) REFERENCES `gtfw_company` (`company_id`) ON DELETE NO ACTION ON UPDATE CASCADE,
ADD CONSTRAINT `FK_gtfw_company_logo_photo_type` FOREIGN KEY (`logo_phototype_id`) REFERENCES `ref_photo_type` (`phototype_id`) ON DELETE NO ACTION ON UPDATE CASCADE;
--
-- Constraints for table `gtfw_group`
--
ALTER TABLE `gtfw_group`
ADD CONSTRAINT `fk_gtfw_group` FOREIGN KEY (`group_application_id`) REFERENCES `gtfw_application` (`application_id`) ON UPDATE CASCADE;
--
-- Constraints for table `gtfw_group_menu`
--
ALTER TABLE `gtfw_group_menu`
ADD CONSTRAINT `fk_gtfw_group_menu` FOREIGN KEY (`groupmenu_menu_id`) REFERENCES `gtfw_menu` (`menu_id`) ON UPDATE CASCADE,
ADD CONSTRAINT `fk_gtfw_group_menu_0` FOREIGN KEY (`groupmenu_group_id`) REFERENCES `gtfw_group` (`group_id`) ON UPDATE CASCADE;
--
-- Constraints for table `gtfw_group_module`
--
ALTER TABLE `gtfw_group_module`
ADD CONSTRAINT `fk_gtfw_group_module` FOREIGN KEY (`groupmodule_group_id`) REFERENCES `gtfw_group` (`group_id`) ON DELETE NO ACTION ON UPDATE NO ACTION,
ADD CONSTRAINT `fk_gtfw_group_module_0` FOREIGN KEY (`groupmodule_module_id`) REFERENCES `gtfw_module` (`module_id`) ON UPDATE CASCADE;
--
-- Constraints for table `gtfw_key_text`
--
ALTER TABLE `gtfw_key_text`
ADD CONSTRAINT `fk_gtfw_key_text` FOREIGN KEY (`key_text_key_id`) REFERENCES `gtfw_key` (`key_id`) ON UPDATE CASCADE,
ADD CONSTRAINT `fk_gtfw_key_text_0` FOREIGN KEY (`key_text_lang_code`) REFERENCES `gtfw_lang` (`lang_code`) ON UPDATE CASCADE;
--
-- Constraints for table `gtfw_menu`
--
ALTER TABLE `gtfw_menu`
ADD CONSTRAINT `fk_gtfw_menu` FOREIGN KEY (`menu_application_id`) REFERENCES `gtfw_application` (`application_id`) ON UPDATE CASCADE;
--
-- Constraints for table `gtfw_menu_text`
--
ALTER TABLE `gtfw_menu_text`
ADD CONSTRAINT `fk_gtfw_menu_text` FOREIGN KEY (`menutext_lang_code`) REFERENCES `gtfw_lang` (`lang_code`) ON UPDATE CASCADE,
ADD CONSTRAINT `fk_gtfw_menu_text_0` FOREIGN KEY (`menutext_menu_id`) REFERENCES `gtfw_menu` (`menu_id`) ON UPDATE CASCADE;
--
-- Constraints for table `gtfw_module`
--
ALTER TABLE `gtfw_module`
ADD CONSTRAINT `fk_gtfw_module_0` FOREIGN KEY (`module_application_id`) REFERENCES `gtfw_application` (`application_id`) ON UPDATE CASCADE,
ADD CONSTRAINT `fk_gtfw_module_1` FOREIGN KEY (`module_action_id`) REFERENCES `gtfw_action` (`action_id`) ON UPDATE CASCADE;
--
-- Constraints for table `gtfw_unit`
--
ALTER TABLE `gtfw_unit`
ADD CONSTRAINT `FK_gtfw_unit_company` FOREIGN KEY (`unit_company_id`) REFERENCES `gtfw_company` (`company_id`) ON DELETE NO ACTION ON UPDATE CASCADE;
--
-- Constraints for table `gtfw_user`
--
ALTER TABLE `gtfw_user`
ADD CONSTRAINT `fk_gtfw_user` FOREIGN KEY (`user_active_lang_code`) REFERENCES `gtfw_lang` (`lang_code`) ON UPDATE CASCADE;
--
-- Constraints for table `gtfw_user_fav_menu`
--
ALTER TABLE `gtfw_user_fav_menu`
ADD CONSTRAINT `fk_gtfw_user_fav_menu` FOREIGN KEY (`favmenu_user_id`) REFERENCES `gtfw_user` (`user_id`) ON UPDATE CASCADE,
ADD CONSTRAINT `fk_gtfw_user_fav_menu_0` FOREIGN KEY (`favmenu_menu_id`) REFERENCES `gtfw_menu` (`menu_id`) ON UPDATE CASCADE;
--
-- Constraints for table `gtfw_user_group`
--
ALTER TABLE `gtfw_user_group`
ADD CONSTRAINT `fk_gtfw_user_group` FOREIGN KEY (`usergroup_group_id`) REFERENCES `gtfw_group` (`group_id`) ON UPDATE CASCADE,
ADD CONSTRAINT `fk_gtfw_user_group_0` FOREIGN KEY (`usergroup_user_id`) REFERENCES `gtfw_user` (`user_id`) ON UPDATE CASCADE;
--
-- Constraints for table `gtfw_user_new_pass`
--
ALTER TABLE `gtfw_user_new_pass`
ADD CONSTRAINT `fk_gtfw_user_new_pass` FOREIGN KEY (`usrnewpass_user_id`) REFERENCES `gtfw_user` (`user_id`) ON UPDATE CASCADE;
--
-- Constraints for table `gtfw_user_unit`
--
ALTER TABLE `gtfw_user_unit`
ADD CONSTRAINT `FK_gtfw_user_unit_unit_id` FOREIGN KEY (`userunit_unit_id`) REFERENCES `gtfw_unit` (`unit_id`) ON UPDATE CASCADE,
ADD CONSTRAINT `fk_gtfw_user_unit_0` FOREIGN KEY (`userunit_user_id`) REFERENCES `gtfw_user` (`user_id`) ON UPDATE CASCADE;
--
-- Constraints for table `gtfw_user_whosonline`
--
ALTER TABLE `gtfw_user_whosonline`
ADD CONSTRAINT `FK_gtfw_user_whosonline_user` FOREIGN KEY (`whos_user_id`) REFERENCES `gtfw_user` (`user_id`) ON UPDATE CASCADE;
--
-- Constraints for table `ref_city`
--
ALTER TABLE `ref_city`
ADD CONSTRAINT `FK_ref_city_state` FOREIGN KEY (`city_state_id`) REFERENCES `ref_state` (`state_id`) ON UPDATE 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 */;