Merge branch 'release' of https://github.com/PrestaShop/PrestaShop into release
@@ -67,20 +67,31 @@
|
||||
<a href="#upload_file_import" id="upload_file_import_link" class="button"><img src="../img/admin/add.gif" alt="Uplaod" title="Upload" />{l s='Upload'}</a>
|
||||
</div>
|
||||
<div style="width:50%; margin: 0 auto;">
|
||||
<a href="#" onclick="$('#sample_files_import').slideToggle(); return false;">{l s='Click to view our sample import csv files.'}</a>
|
||||
<ul id="sample_files_import" style="display:none">
|
||||
<li><a href="../docs/csv_import/categories_import.csv">{l s='Sample Categories file'}</a></li>
|
||||
<li><a href="../docs/csv_import/products_import.csv">{l s='Sample Products file'}</a></li>
|
||||
<li><a href="../docs/csv_import/combinations_import.csv">{l s='Sample Combinations file'}</a></li>
|
||||
<li><a href="../docs/csv_import/customers_import.csv">{l s='Sample Customers file'}</a></li>
|
||||
<li><a href="../docs/csv_import/addresses_import.csv">{l s='Sample Addresses file'}</a></li>
|
||||
<li><a href="../docs/csv_import/manufacturers_import.csv">{l s='Sample Manufacturers file'}</a></li>
|
||||
<li><a href="../docs/csv_import/suppliers_import.csv">{l s='Sample Suppliers file'}</a></li>
|
||||
{if $PS_ADVANCED_STOCK_MANAGEMENT}
|
||||
<li><a href="../docs/csv_import/supply_orders_import.csv">{l s='Supply Orders sample file'}</a></li>
|
||||
<li><a href="../docs/csv_import/supply_orders_details_import.csv">{l s='Supply Orders Details sample file'}</a></li>
|
||||
{/if}
|
||||
</ul>
|
||||
<div style="width:50%; display: inline-block; float :left;">
|
||||
<a href="#" onclick="$('#sample_files_import').slideToggle(); return false;">{l s='Click to view our sample import csv files.'}</a>
|
||||
<ul id="sample_files_import" style="display:none;">
|
||||
<li><a class="_blank" href="../docs/csv_import/categories_import.csv">{l s='Sample Categories file'}</a></li>
|
||||
<li><a class="_blank" href="../docs/csv_import/products_import.csv">{l s='Sample Products file'}</a></li>
|
||||
<li><a class="_blank" href="../docs/csv_import/combinations_import.csv">{l s='Sample Combinations file'}</a></li>
|
||||
<li><a class="_blank" href="../docs/csv_import/customers_import.csv">{l s='Sample Customers file'}</a></li>
|
||||
<li><a class="_blank" href="../docs/csv_import/addresses_import.csv">{l s='Sample Addresses file'}</a></li>
|
||||
<li><a class="_blank" href="../docs/csv_import/manufacturers_import.csv">{l s='Sample Manufacturers file'}</a></li>
|
||||
<li><a class="_blank" href="../docs/csv_import/suppliers_import.csv">{l s='Sample Suppliers file'}</a></li>
|
||||
{if $PS_ADVANCED_STOCK_MANAGEMENT}
|
||||
<li><a class="_blank" href="../docs/csv_import/supply_orders_import.csv">{l s='Supply Orders sample file'}</a></li>
|
||||
<li><a class="_blank" href="../docs/csv_import/supply_orders_details_import.csv">{l s='Supply Orders Details sample file'}</a></li>
|
||||
{/if}
|
||||
</ul>
|
||||
</div>
|
||||
<div style="width:50%; float:left;">
|
||||
<a href="#" onclick="$('#csv_files_import').slideToggle(); return false;">{l s='Click to view your csv files.'}</a>
|
||||
<ul id="csv_files_import" style="display:none;">
|
||||
{foreach $files_to_import AS $filename}
|
||||
<li><a href="{$current}&token={$token}&csvfilename={$filename|@base64_encode}">{$filename}</a>
|
||||
<a href="{$current}&token={$token}&csvfilename={$filename|@base64_encode}&delete=1"><img src="../img/admin/delete.gif" /></a></li>
|
||||
{/foreach}
|
||||
</ul>
|
||||
</div>
|
||||
<div class="clear"> </div>
|
||||
</div>
|
||||
<label class="clear">{l s='What kind of entity would you like to import?'} </label>
|
||||
|
||||
@@ -513,7 +513,7 @@ class AdminImportControllerCore extends AdminController
|
||||
|
||||
$this->context->cookie->entity_selected = (int)Tools::getValue('entity');
|
||||
|
||||
if ($csv_selected = Tools::getValue('csv'))
|
||||
if (Tools::getValue('csv'))
|
||||
$this->context->cookie->csv_selected = Tools::getValue('csv');
|
||||
|
||||
$this->tpl_view_vars = array(
|
||||
@@ -2555,8 +2555,7 @@ class AdminImportControllerCore extends AdminController
|
||||
{
|
||||
if ($a == $b)
|
||||
return 0;
|
||||
|
||||
return ($a < $b) ? 1 : -1;
|
||||
return ($b < $a) ? 1 : -1;
|
||||
}
|
||||
|
||||
protected function openCsvFile()
|
||||
@@ -2700,6 +2699,7 @@ class AdminImportControllerCore extends AdminController
|
||||
|
||||
if (Tools::isSubmit('submitFileUpload'))
|
||||
{
|
||||
$path = _PS_ADMIN_DIR_.'/import/'.date('Ymdhis').'-';
|
||||
if (isset($_FILES['file']) && !empty($_FILES['file']['error']))
|
||||
{
|
||||
switch ($_FILES['file']['error'])
|
||||
@@ -2726,12 +2726,15 @@ class AdminImportControllerCore extends AdminController
|
||||
}
|
||||
}
|
||||
else if (!file_exists($_FILES['file']['tmp_name']) ||
|
||||
!@move_uploaded_file($_FILES['file']['tmp_name'], _PS_ADMIN_DIR_.'/import/'.date('Ymdhis').'-'.$_FILES['file']['name']))
|
||||
!@move_uploaded_file($_FILES['file']['tmp_name'], $path.$_FILES['file']['name']))
|
||||
$this->errors[] = $this->l('An error occurred while uploading / copying the file.');
|
||||
else
|
||||
{
|
||||
@chmod($path.$_FILES['file']['name'], 0664);
|
||||
Tools::redirectAdmin(self::$currentIndex.'&token='.Tools::getValue('token').'&conf=18');
|
||||
}
|
||||
}
|
||||
else if (Tools::getValue('import'))
|
||||
elseif (Tools::getValue('import'))
|
||||
{
|
||||
// Check if the CSV file exist
|
||||
if (Tools::getValue('csv'))
|
||||
@@ -2795,7 +2798,41 @@ class AdminImportControllerCore extends AdminController
|
||||
else
|
||||
$this->errors[] = $this->l('You must upload a file in order to proceed to the next step');
|
||||
}
|
||||
|
||||
elseif ($filename = Tools::getValue('csvfilename'))
|
||||
{
|
||||
$filename = base64_decode($filename);
|
||||
$file = _PS_ADMIN_DIR_.'/import/'.basename($filename);
|
||||
if (realpath(dirname($file)) != _PS_ADMIN_DIR_.'/import')
|
||||
exit();
|
||||
if (!empty($filename))
|
||||
{
|
||||
$bName = basename($filename);
|
||||
if ($delete = Tools::getValue('delete') && file_exists($file))
|
||||
@unlink($file);
|
||||
elseif (file_exists($file))
|
||||
{
|
||||
$bName = explode('.', $bName);
|
||||
$bName = strtolower($bName[count($bName) - 1]);
|
||||
$mimeTypes = array('csv' => 'text/csv');
|
||||
|
||||
if (isset($mimeTypes[$bName]))
|
||||
$mimeType = $mimeTypes[$bName];
|
||||
else
|
||||
$mimeType = 'application/octet-stream';
|
||||
if (ob_get_level())
|
||||
ob_end_clean();
|
||||
|
||||
header('Content-Transfer-Encoding: binary');
|
||||
header('Content-Type: '.$mimeType);
|
||||
header('Content-Length: '.filesize($file));
|
||||
header('Content-Disposition: attachment; filename="'.$filename.'"');
|
||||
$fp = fopen($file, 'rb');
|
||||
while (is_resource($fp) && !feof($fp))
|
||||
echo fgets($fp, 16384);
|
||||
exit;
|
||||
}
|
||||
}
|
||||
}
|
||||
parent::postProcess();
|
||||
}
|
||||
|
||||
|
||||
@@ -372,6 +372,7 @@ class ParentOrderControllerCore extends FrontController
|
||||
'currencyFormat' => $this->context->currency->format,
|
||||
'currencyBlank' => $this->context->currency->blank,
|
||||
'show_option_allow_separate_package' => $show_option_allow_separate_package,
|
||||
'smallSize' => Image::getSize(ImageType::getFormatedName('small')),
|
||||
|
||||
));
|
||||
|
||||
|
||||
@@ -0,0 +1,63 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_attribute>
|
||||
<attribute id="2GB">
|
||||
<name>2GB</name>
|
||||
</attribute>
|
||||
<attribute id="4GB">
|
||||
<name>4GB</name>
|
||||
</attribute>
|
||||
<attribute id="Metal">
|
||||
<name>Metal</name>
|
||||
</attribute>
|
||||
<attribute id="Blue">
|
||||
<name>Blue</name>
|
||||
</attribute>
|
||||
<attribute id="Pink">
|
||||
<name>Pink</name>
|
||||
</attribute>
|
||||
<attribute id="Green">
|
||||
<name>Green</name>
|
||||
</attribute>
|
||||
<attribute id="Orange">
|
||||
<name>Orange</name>
|
||||
</attribute>
|
||||
<attribute id="Optional_64GB_solid-state_drive">
|
||||
<name>Optional 64GB solid-state drive</name>
|
||||
</attribute>
|
||||
<attribute id="80GB_Parallel_ATA_Drive_4200_rpm">
|
||||
<name>80GB Parallel ATA Drive @ 4200 rpm</name>
|
||||
</attribute>
|
||||
<attribute id="1_60GHz_Intel_Core_2_Duo">
|
||||
<name>1.60GHz Intel Core 2 Duo</name>
|
||||
</attribute>
|
||||
<attribute id="1_80GHz_Intel_Core_2_Duo">
|
||||
<name>1.80GHz Intel Core 2 Duo</name>
|
||||
</attribute>
|
||||
<attribute id="80GB_20_000_Songs">
|
||||
<name>80GB: 20,000 Songs</name>
|
||||
</attribute>
|
||||
<attribute id="160GB_40_000_Songs">
|
||||
<name>160GB: 40,000 Songs</name>
|
||||
</attribute>
|
||||
<attribute id="Black">
|
||||
<name>Black</name>
|
||||
</attribute>
|
||||
<attribute id="8GB">
|
||||
<name>8GB</name>
|
||||
</attribute>
|
||||
<attribute id="16GB">
|
||||
<name>16GB</name>
|
||||
</attribute>
|
||||
<attribute id="32GB">
|
||||
<name>32GB</name>
|
||||
</attribute>
|
||||
<attribute id="Purple">
|
||||
<name>Purple</name>
|
||||
</attribute>
|
||||
<attribute id="Yellow">
|
||||
<name>Yellow</name>
|
||||
</attribute>
|
||||
<attribute id="Red">
|
||||
<name>Red</name>
|
||||
</attribute>
|
||||
</entity_attribute>
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_attribute_group>
|
||||
<attribute_group id="Disk_space">
|
||||
<name>Disk space</name>
|
||||
<public_name>Disk space</public_name>
|
||||
</attribute_group>
|
||||
<attribute_group id="Color">
|
||||
<name>Color</name>
|
||||
<public_name>Color</public_name>
|
||||
</attribute_group>
|
||||
<attribute_group id="ICU">
|
||||
<name>ICU</name>
|
||||
<public_name>Processor</public_name>
|
||||
</attribute_group>
|
||||
</entity_attribute_group>
|
||||
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list_attributegroup>
|
||||
<attributegroup id="capacity">
|
||||
<name><![CDATA[Disk space]]></name>
|
||||
</attributegroup>
|
||||
<attributegroup id="capacity_public">
|
||||
<name><![CDATA[Disk space]]></name>
|
||||
</attributegroup>
|
||||
<attributegroup id="color">
|
||||
<name><![CDATA[Color]]></name>
|
||||
</attributegroup>
|
||||
<attributegroup id="color_public">
|
||||
<name><![CDATA[Color]]></name>
|
||||
</attributegroup>
|
||||
<attributegroup id="processor">
|
||||
<name><![CDATA[ICU]]></name>
|
||||
</attributegroup>
|
||||
<attributegroup id="processor_public">
|
||||
<name><![CDATA[Processor]]></name>
|
||||
</attributegroup>
|
||||
</list_attributegroup>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_carrier>
|
||||
<carrier id="My_carrier" id_shop="1">
|
||||
<delay>Delivery next day!</delay>
|
||||
</carrier>
|
||||
</entity_carrier>
|
||||
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_category>
|
||||
<category id="iPods" id_shop="1">
|
||||
<name>iPods</name>
|
||||
<description>Now that you can buy movies from the iTunes Store and sync them to your iPod, the whole world is your theater.</description>
|
||||
<link_rewrite>music-ipods</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category>
|
||||
<category id="Accessories" id_shop="1">
|
||||
<name>Accessories</name>
|
||||
<description>Wonderful accessories for your iPod</description>
|
||||
<link_rewrite>accessories-ipod</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category>
|
||||
<category id="Laptops" id_shop="1">
|
||||
<name>Laptops</name>
|
||||
<description>The latest Intel processor, a bigger hard drive, plenty of memory, and even more new features all fit inside just one liberating inch. The new Mac laptops have the performance, power, and connectivity of a desktop computer. Without the desk part.</description>
|
||||
<link_rewrite>laptops</link_rewrite>
|
||||
<meta_title>Apple laptops</meta_title>
|
||||
<meta_keywords>Apple laptops MacBook Air</meta_keywords>
|
||||
<meta_description>Powerful and chic Apple laptops</meta_description>
|
||||
</category>
|
||||
</entity_category>
|
||||
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_feature>
|
||||
<feature id="Height">
|
||||
<name>Height</name>
|
||||
</feature>
|
||||
<feature id="Width">
|
||||
<name>Width</name>
|
||||
</feature>
|
||||
<feature id="Depth">
|
||||
<name>Depth</name>
|
||||
</feature>
|
||||
<feature id="Weight">
|
||||
<name>Weight</name>
|
||||
</feature>
|
||||
<feature id="Headphone">
|
||||
<name>Headphone</name>
|
||||
</feature>
|
||||
</entity_feature>
|
||||
@@ -0,0 +1,45 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_feature_value>
|
||||
<feature_value id="Jack_stereo">
|
||||
<value>Jack stereo</value>
|
||||
</feature_value>
|
||||
<feature_value id="Mini-jack_stereo">
|
||||
<value>Mini-jack stereo</value>
|
||||
</feature_value>
|
||||
<feature_value id="2_75_in">
|
||||
<value>2.75 in</value>
|
||||
</feature_value>
|
||||
<feature_value id="2_06_in">
|
||||
<value>2.06 in</value>
|
||||
</feature_value>
|
||||
<feature_value id="49_2_g">
|
||||
<value>49.2 g</value>
|
||||
</feature_value>
|
||||
<feature_value id="0_26_in">
|
||||
<value>0.26 in</value>
|
||||
</feature_value>
|
||||
<feature_value id="1_07_in">
|
||||
<value>1.07 in</value>
|
||||
</feature_value>
|
||||
<feature_value id="1_62_in">
|
||||
<value>1.62 in</value>
|
||||
</feature_value>
|
||||
<feature_value id="15_5_g">
|
||||
<value>15.5 g</value>
|
||||
</feature_value>
|
||||
<feature_value id="0_41_in_clip_included">
|
||||
<value>0.41 in (clip included)</value>
|
||||
</feature_value>
|
||||
<feature_value id="4_33_in">
|
||||
<value>4.33 in</value>
|
||||
</feature_value>
|
||||
<feature_value id="2_76_in">
|
||||
<value>2.76 in</value>
|
||||
</feature_value>
|
||||
<feature_value id="120g">
|
||||
<value>120g</value>
|
||||
</feature_value>
|
||||
<feature_value id="0_31_in">
|
||||
<value>0.31 in</value>
|
||||
</feature_value>
|
||||
</entity_feature_value>
|
||||
@@ -0,0 +1,45 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list_featurevalue>
|
||||
<featurevalue id="jack_stereo">
|
||||
<value><![CDATA[Jack stereo]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="mini_jack_stereo">
|
||||
<value><![CDATA[Mini-jack stereo]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="2.75in">
|
||||
<value><![CDATA[2.75 in]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="2.06in">
|
||||
<value><![CDATA[2.06 in]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="49.2g">
|
||||
<value><![CDATA[49.2 g]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="0.26in">
|
||||
<value><![CDATA[0.26 in]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="1.07in">
|
||||
<value><![CDATA[1.07 in]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="1.62in">
|
||||
<value><![CDATA[1.62 in]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="15.5g">
|
||||
<value><![CDATA[15.5 g]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="0.41in">
|
||||
<value><![CDATA[0.41 in (clip included)]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="4.33in">
|
||||
<value><![CDATA[4.33 in]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="2.76in">
|
||||
<value><![CDATA[2.76 in]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="120g">
|
||||
<value><![CDATA[120g]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="0.31in">
|
||||
<value><![CDATA[0.31 in]]></value>
|
||||
</featurevalue>
|
||||
</list_featurevalue>
|
||||
@@ -0,0 +1,81 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_image>
|
||||
<image id="MacBook_Air">
|
||||
<legend>MacBook Air</legend>
|
||||
</image>
|
||||
<image id="MacBook_Air_1">
|
||||
<legend>MacBook Air</legend>
|
||||
</image>
|
||||
<image id="MacBook_Air_2">
|
||||
<legend>MacBook Air</legend>
|
||||
</image>
|
||||
<image id="MacBook_Air_3">
|
||||
<legend>MacBook Air</legend>
|
||||
</image>
|
||||
<image id="MacBook_Air_4">
|
||||
<legend>MacBook Air</legend>
|
||||
</image>
|
||||
<image id="MacBook_Air_SuperDrive">
|
||||
<legend> MacBook Air SuperDrive</legend>
|
||||
</image>
|
||||
<image id="iPod_touch">
|
||||
<legend>iPod touch</legend>
|
||||
</image>
|
||||
<image id="iPod_touch_1">
|
||||
<legend>iPod touch</legend>
|
||||
</image>
|
||||
<image id="iPod_touch_2">
|
||||
<legend>iPod touch</legend>
|
||||
</image>
|
||||
<image id="iPod_touch_3">
|
||||
<legend>iPod touch</legend>
|
||||
</image>
|
||||
<image id="iPod_touch_4">
|
||||
<legend>iPod touch</legend>
|
||||
</image>
|
||||
<image id="iPod_touch_5">
|
||||
<legend>iPod touch</legend>
|
||||
</image>
|
||||
<image id="housse-portefeuille-en-cuir">
|
||||
<legend>housse-portefeuille-en-cuir</legend>
|
||||
</image>
|
||||
<image id="Shure_SE210_Sound-Isolating_Earphones_for_iPod_and_iPhone">
|
||||
<legend>Shure SE210 Sound-Isolating Earphones for iPod and iPhone</legend>
|
||||
</image>
|
||||
<image id="iPod_Nano">
|
||||
<legend>iPod Nano</legend>
|
||||
</image>
|
||||
<image id="iPod_Nano_1">
|
||||
<legend>iPod Nano</legend>
|
||||
</image>
|
||||
<image id="iPod_Nano_2">
|
||||
<legend>iPod Nano</legend>
|
||||
</image>
|
||||
<image id="iPod_Nano_3">
|
||||
<legend>iPod Nano</legend>
|
||||
</image>
|
||||
<image id="iPod_Nano_4">
|
||||
<legend>iPod Nano</legend>
|
||||
</image>
|
||||
<image id="iPod_Nano_5">
|
||||
<legend>iPod Nano</legend>
|
||||
</image>
|
||||
<image id="iPod_Nano_6">
|
||||
<legend>iPod Nano</legend>
|
||||
</image>
|
||||
<image id="iPod_Nano_7">
|
||||
<legend>iPod Nano</legend>
|
||||
</image>
|
||||
<image id="iPod_shuffle">
|
||||
<legend>iPod shuffle</legend>
|
||||
</image>
|
||||
<image id="iPod_shuffle_1">
|
||||
<legend>iPod shuffle</legend>
|
||||
</image>
|
||||
<image id="iPod_shuffle_2">
|
||||
<legend>iPod shuffle</legend>
|
||||
</image>
|
||||
<image id="iPod_shuffle_3">
|
||||
<legend>iPod shuffle</legend>
|
||||
</image>
|
||||
</entity_image>
|
||||
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/*
|
||||
* 2007-2013 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Open Software License (OSL 3.0)
|
||||
* that is bundled with this package in the file LICENSE.txt.
|
||||
* It is also available through the world-wide-web at this URL:
|
||||
* http://opensource.org/licenses/osl-3.0.php
|
||||
* If you did not receive a copy of the license and are unable to
|
||||
* obtain it through the world-wide-web, please send an email
|
||||
* to license@prestashop.com so we can send you a copy immediately.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
||||
* versions in the future. If you wish to customize PrestaShop for your
|
||||
* needs please refer to http://www.prestashop.com for more information.
|
||||
*
|
||||
* @author PrestaShop SA <contact@prestashop.com>
|
||||
* @copyright 2007-2013 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../../../../../../');
|
||||
exit;
|
||||
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_manufacturer>
|
||||
<manufacturer id="Apple_Computer_Inc">
|
||||
<description/>
|
||||
<short_description/>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</manufacturer>
|
||||
<manufacturer id="Shure_Incorporated">
|
||||
<description/>
|
||||
<short_description/>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</manufacturer>
|
||||
</entity_manufacturer>
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_order_message>
|
||||
<order_message id="Delay">
|
||||
<name>Delay</name>
|
||||
<message>Hi,
|
||||
|
||||
Unfortunately, an item on your order is currently out of stock. This may cause a slight delay in delivery.
|
||||
Please accept our apologies and rest assured that we are working hard to rectify this.
|
||||
|
||||
Best regards,</message>
|
||||
</order_message>
|
||||
</entity_order_message>
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list_ordermessage>
|
||||
<ordermessage id="delay">
|
||||
<name><![CDATA[Delay]]></name>
|
||||
<message><![CDATA[Hi,
|
||||
|
||||
Unfortunately, an item on your order is currently out of stock. This may cause a slight delay in delivery.
|
||||
@@ -0,0 +1,135 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_product>
|
||||
<product id="iPod_Nano" id_shop="1">
|
||||
<description><p><strong><span style="font-size: small;">Curved ahead of the curve.</span></strong></p>
|
||||
<p>For those about to rock, we give you nine amazing colors. But that's only part of the story. Feel the curved, all-aluminum and glass design and you won't want to put iPod nano down.</p>
|
||||
<p><strong><span style="font-size: small;">Great looks. And brains, too.</span></strong></p>
|
||||
<p>The new Genius feature turns iPod nano into your own highly intelligent, personal DJ. It creates playlists by finding songs in your library that go great together.</p>
|
||||
<p><strong><span style="font-size: small;">Made to move with your moves.</span></strong></p>
|
||||
<p>The accelerometer comes to iPod nano. Give it a shake to shuffle your music. Turn it sideways to view Cover Flow. And play games designed with your moves in mind.</p></description>
|
||||
<description_short><p>New design. New features. Now in 8GB and 16GB. iPod nano rocks like never before.</p></description_short>
|
||||
<link_rewrite>ipod-nano</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>iPod Nano</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="iPod_shuffle" id_shop="1">
|
||||
<description><p><span style="font-size: small;"><strong>Instant attachment.</strong></span></p>
|
||||
<p>Wear up to 500 songs on your sleeve. Or your belt. Or your gym shorts. iPod shuffle is a badge of musical devotion. Now in new, more brilliant colors.</p>
|
||||
<p><span style="font-size: small;"><strong>Feed your iPod shuffle.</strong></span></p>
|
||||
<p>iTunes is your entertainment superstore. It’s your ultra-organized music collection and jukebox. And it’s how you load up your iPod shuffle in one click.</p>
|
||||
<p><span style="font-size: small;"><strong>Beauty and the beat.</strong></span></p>
|
||||
<p>Intensely colorful anodized aluminum complements the simple design of iPod shuffle. Now in blue, green, pink, red, and original silver.</p></description>
|
||||
<description_short><p>iPod shuffle, the world’s most wearable music player, now clips on in more vibrant blue, green, pink, and red.</p></description_short>
|
||||
<link_rewrite>ipod-shuffle</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>iPod shuffle</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="MacBook_Air" id_shop="1">
|
||||
<description><p>MacBook Air is nearly as thin as your index finger. Practically every detail that could be streamlined has been. Yet it still has a 13.3-inch widescreen LED display, full-size keyboard, and large multi-touch trackpad. It’s incomparably portable without the usual ultraportable screen and keyboard compromises.</p><p>The incredible thinness of MacBook Air is the result of numerous size- and weight-shaving innovations. From a slimmer hard drive to strategically hidden I/O ports to a lower-profile battery, everything has been considered and reconsidered with thinness in mind.</p><p>MacBook Air is designed and engineered to take full advantage of the wireless world. A world in which 802.11n Wi-Fi is now so fast and so available, people are truly living untethered — buying and renting movies online, downloading software, and sharing and storing files on the web. </p></description>
|
||||
<description_short>MacBook Air is ultrathin, ultraportable, and ultra unlike anything else. But you don’t lose inches and pounds overnight. It’s the result of rethinking conventions. Of multiple wireless innovations. And of breakthrough design. With MacBook Air, mobile computing suddenly has a new standard.</description_short>
|
||||
<link_rewrite>macbook-air</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>MacBook Air</name>
|
||||
<available_now/>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="MacBook" id_shop="1">
|
||||
<description>Every MacBook has a larger hard drive, up to 250GB, to store growing media collections and valuable data.<br /><br />The 2.4GHz MacBook models now include 2GB of memory standard — perfect for running more of your favorite applications smoothly.</description>
|
||||
<description_short>MacBook makes it easy to hit the road thanks to its tough polycarbonate case, built-in wireless technologies, and innovative MagSafe Power Adapter that releases automatically if someone accidentally trips on the cord.</description_short>
|
||||
<link_rewrite>macbook</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>MacBook</name>
|
||||
<available_now/>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="iPod_touch" id_shop="1">
|
||||
<description><h3>Five new hands-on applications</h3>
|
||||
<p>View rich HTML email with photos as well as PDF, Word, and Excel attachments. Get maps, directions, and real-time traffic information. Take notes and read stock and weather reports.</p>
|
||||
<h3>Touch your music, movies, and more</h3>
|
||||
<p>The revolutionary Multi-Touch technology built into the gorgeous 3.5-inch display lets you pinch, zoom, scroll, and flick with your fingers.</p>
|
||||
<h3>Internet in your pocket</h3>
|
||||
<p>With the Safari web browser, see websites the way they were designed to be seen and zoom in and out with a tap.<sup>2</sup> And add Web Clips to your Home screen for quick access to favorite sites.</p>
|
||||
<h3>What's in the box</h3>
|
||||
<ul>
|
||||
<li><span></span>iPod touch</li>
|
||||
<li><span></span>Earphones</li>
|
||||
<li><span></span>USB 2.0 cable</li>
|
||||
<li><span></span>Dock adapter</li>
|
||||
<li><span></span>Polishing cloth</li>
|
||||
<li><span></span>Stand</li>
|
||||
<li><span></span>Quick Start guide</li>
|
||||
</ul></description>
|
||||
<description_short><ul>
|
||||
<li>Revolutionary Multi-Touch interface</li>
|
||||
<li>3.5-inch widescreen color display</li>
|
||||
<li>Wi-Fi (802.11b/g)</li>
|
||||
<li>8 mm thin</li>
|
||||
<li>Safari, YouTube, Mail, Stocks, Weather, Notes, iTunes Wi-Fi Music Store, Maps</li>
|
||||
</ul></description_short>
|
||||
<link_rewrite>ipod-touch</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>iPod touch</name>
|
||||
<available_now/>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Belkin_Leather_Folio_for_iPod_nano_-_Black_Chocolate" id_shop="1">
|
||||
<description><p>Lorem ipsum</p></description>
|
||||
<description_short><p>Lorem ipsum</p></description_short>
|
||||
<link_rewrite>belkin-leather-folio-for-ipod-nano-black-chocolate</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Belkin Leather Folio for iPod nano - Black / Chocolate</name>
|
||||
<available_now/>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Shure_SE210_Sound-Isolating_Earphones_for_iPod_and_iPhone" id_shop="1">
|
||||
<description><div class="product-overview-full">Using Hi-Definition MicroSpeakers to deliver full-range audio, the ergonomic and lightweight design of the SE210 earphones is ideal for premium on-the-go listening on your iPod or iPhone. They offer the most accurate audio reproduction from both portable and home stereo audio sources--for the ultimate in precision highs and rich low end. In addition, the flexible design allows you to choose the most comfortable fit from a variety of wearing positions. <br /> <br /> <strong>Features </strong> <br /> 
|
||||
<ul>
|
||||
<li>Sound-isolating design </li>
|
||||
<li> Hi-Definition MicroSpeaker with a single balanced armature driver </li>
|
||||
<li> Detachable, modular cable so you can make the cable longer or shorter depending on your activity </li>
|
||||
<li> Connector compatible with earphone ports on both iPod and iPhone </li>
|
||||
</ul>
|
||||
<strong>Specifications </strong><br /> 
|
||||
<ul>
|
||||
<li>Speaker type: Hi-Definition MicroSpeaker </li>
|
||||
<li> Frequency range: 25Hz-18.5kHz </li>
|
||||
<li> Impedance (1kHz): 26 Ohms </li>
|
||||
<li> Sensitivity (1mW): 114 dB SPL/mW </li>
|
||||
<li> Cable length (with extension): 18.0 in./45.0 cm (54.0 in./137.1 cm) </li>
|
||||
</ul>
|
||||
<strong>In the box</strong><br /> 
|
||||
<ul>
|
||||
<li>Shure SE210 earphones </li>
|
||||
<li> Extension cable (36.0 in./91.4 cm) </li>
|
||||
<li> Three pairs foam earpiece sleeves (small, medium, large) </li>
|
||||
<li> Three pairs soft flex earpiece sleeves (small, medium, large) </li>
|
||||
<li> One pair triple-flange earpiece sleeves </li>
|
||||
<li> Carrying case </li>
|
||||
</ul>
|
||||
Warranty<br /> Two-year limited <br />(For details, please visit <br />www.shure.com/PersonalAudio/CustomerSupport/ProductReturnsAndWarranty/index.htm.) <br /><br /> Mfr. Part No.: SE210-A-EFS <br /><br />Note: Products sold through this website that do not bear the Apple Brand name are serviced and supported exclusively by their manufacturers in accordance with terms and conditions packaged with the products. Apple's Limited Warranty does not apply to products that are not Apple-branded, even if packaged or sold with Apple products. Please contact the manufacturer directly for technical support and customer service.</div></description>
|
||||
<description_short><p>Evolved from personal monitor technology road-tested by pro musicians and perfected by Shure engineers, the lightweight and stylish SE210 delivers full-range audio that's free from outside noise.</p></description_short>
|
||||
<link_rewrite>ecouteurs-a-isolation-sonore-shure-se210-blanc</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Shure SE210 Sound-Isolating Earphones for iPod and iPhone</name>
|
||||
<available_now/>
|
||||
<available_later/>
|
||||
</product>
|
||||
</entity_product>
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_profile>
|
||||
<profile id="Administrator">
|
||||
<name>Administrator</name>
|
||||
</profile>
|
||||
<profile id="Logistician">
|
||||
<name>Logistician</name>
|
||||
</profile>
|
||||
<profile id="Translator">
|
||||
<name>Translator</name>
|
||||
</profile>
|
||||
<profile id="Salesman">
|
||||
<name>Salesman</name>
|
||||
</profile>
|
||||
</entity_profile>
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_scene>
|
||||
<scene id="The_iPods_Nano">
|
||||
<name>The iPods Nano</name>
|
||||
</scene>
|
||||
<scene id="The_iPods">
|
||||
<name>The iPods</name>
|
||||
</scene>
|
||||
<scene id="The_MacBooks">
|
||||
<name>The MacBooks</name>
|
||||
</scene>
|
||||
</entity_scene>
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_supplier>
|
||||
<supplier id="AppleStore">
|
||||
<description/>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</supplier>
|
||||
<supplier id="Shure_Online_Store">
|
||||
<description/>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</supplier>
|
||||
</entity_supplier>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_tag>
|
||||
<tag id="tag_5" name="apple" products="iPod_Nano,MacBook"/>
|
||||
<tag id="tag_22" name="superdrive" products="MacBook"/>
|
||||
<tag id="tag_23" name="Ipod touch" products="iPod_touch"/>
|
||||
<tag id="tag_28" name="ipod" products="iPod_Nano,iPod_shuffle"/>
|
||||
<tag id="tag_29" name="nano" products="iPod_Nano"/>
|
||||
<tag id="tag_33" name="shuffle" products="iPod_shuffle"/>
|
||||
</entity_tag>
|
||||
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/*
|
||||
* 2007-2013 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Open Software License (OSL 3.0)
|
||||
* that is bundled with this package in the file LICENSE.txt.
|
||||
* It is also available through the world-wide-web at this URL:
|
||||
* http://opensource.org/licenses/osl-3.0.php
|
||||
* If you did not receive a copy of the license and are unable to
|
||||
* obtain it through the world-wide-web, please send an email
|
||||
* to license@prestashop.com so we can send you a copy immediately.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
||||
* versions in the future. If you wish to customize PrestaShop for your
|
||||
* needs please refer to http://www.prestashop.com for more information.
|
||||
*
|
||||
* @author PrestaShop SA <contact@prestashop.com>
|
||||
* @copyright 2007-2013 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../../../../../');
|
||||
exit;
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version='1.0'?>
|
||||
<entity_carrier>
|
||||
<carrier id='carrier_1' id_shop='1'>
|
||||
<delay>Ambil di toko</delay>
|
||||
</carrier>
|
||||
</entity_carrier>
|
||||
@@ -0,0 +1,19 @@
|
||||
<?xml version='1.0'?>
|
||||
<entity_category>
|
||||
<category id='Root' id_shop='1'>
|
||||
<name>Root</name>
|
||||
<description/>
|
||||
<link_rewrite>root</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category>
|
||||
<category id='Home' id_shop='1'>
|
||||
<name>Beranda</name>
|
||||
<description/>
|
||||
<link_rewrite>beranda</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category>
|
||||
</entity_category>
|
||||
@@ -0,0 +1,42 @@
|
||||
<?xml version='1.0'?>
|
||||
<entity_cms>
|
||||
<cms id='Delivery'>
|
||||
<meta_title>Pengiriman barang</meta_title>
|
||||
<meta_description>Tata cara pengiriman barang</meta_description>
|
||||
<meta_keywords>pengiriman barang</meta_keywords>
|
||||
<content><h2>Pengiriman barang</h2><h3>Your pack shipment</h3><p>Packages are generally dispatched within 2 days after receipt of payment and are shipped via UPS with tracking and drop-off without signature. If you prefer delivery by UPS Extra with required signature, an additional cost will be applied, so please contact us before choosing this method. Whichever shipment choice you make, we will provide you with a link to track your package online.</p><p>Shipping fees include handling and packing fees as well as postage costs. Handling fees are fixed, whereas transport fees vary according to total weight of the shipment. We advise you to group your items in one order. We cannot group two distinct orders placed separately, and shipping fees will apply to each of them. Your package will be dispatched at your own risk, but special care is taken to protect fragile objects.<br /><br />Boxes are amply sized and your items are well-protected.</p></content>
|
||||
<link_rewrite>pengiriman-barang</link_rewrite>
|
||||
</cms>
|
||||
<cms id='Legal_Notice'>
|
||||
<meta_title>Kebijakan privasi dan hukum</meta_title>
|
||||
<meta_description>Kebijakan privasi dan hukum</meta_description>
|
||||
<meta_keywords>notice, legal, credits</meta_keywords>
|
||||
<content><h2>Kebijakan privasi dan hukum</h2><p>Tentang kebijakan privasi dan hukum bagi pelanggan</p><p>Website ini dibuat menggunakan <a href="http://www.prestashop.com">PrestaShop</a>&trade; open-source software.</p></content>
|
||||
<link_rewrite>kebijakan-privasi-dan-hukum</link_rewrite>
|
||||
</cms>
|
||||
<cms id='Terms_and_conditions_of_use'>
|
||||
<meta_title>Syarat pemakaian</meta_title>
|
||||
<meta_description>Syarat pemakaian</meta_description>
|
||||
<meta_keywords>conditions, terms, use, sell</meta_keywords>
|
||||
<content><h2>Syarat dan ketentuan pemakaian website</h2><p>Tentang syarat dan ketentuan pemakaian website (penggunaan cookies, penggunaan data customer, dsb)</p>
|
||||
</content>
|
||||
<link_rewrite>syarat-pemakaian</link_rewrite>
|
||||
</cms>
|
||||
<cms id='About_us'>
|
||||
<meta_title>Tentang kami</meta_title>
|
||||
<meta_description>Lebih lanjut mengenai kami</meta_description>
|
||||
<meta_keywords>about us, informations</meta_keywords>
|
||||
<content><h2>Tentang kami</h2>
|
||||
<p>Informasi tentang toko Anda</p>
|
||||
</content>
|
||||
<link_rewrite>tentang-kami</link_rewrite>
|
||||
</cms>
|
||||
<cms id='Secure_payment'>
|
||||
<meta_title>Pembayaran</meta_title>
|
||||
<meta_description>Pembayaran</meta_description>
|
||||
<meta_keywords>secure payment, ssl, visa, mastercard, paypal</meta_keywords>
|
||||
<content><h2>Pembayaran</h2>
|
||||
<p>Detail tentang pembayaran</p></content>
|
||||
<link_rewrite>pembayaran</link_rewrite>
|
||||
</cms>
|
||||
</entity_cms>
|
||||
@@ -0,0 +1,11 @@
|
||||
<?xml version='1.0'?>
|
||||
<entity_cms_category>
|
||||
<cms_category id='Home'>
|
||||
<name>Beranda</name>
|
||||
<description/>
|
||||
<link_rewrite>beranda</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</cms_category>
|
||||
</entity_cms_category>
|
||||
@@ -0,0 +1,21 @@
|
||||
<?xml version='1.0'?>
|
||||
<entity_configuration>
|
||||
<configuration id='PS_INVOICE_PREFIX'>
|
||||
<value>IN</value>
|
||||
</configuration>
|
||||
<configuration id='PS_DELIVERY_PREFIX'>
|
||||
<value>DE</value>
|
||||
</configuration>
|
||||
<configuration id='PS_SEARCH_BLACKLIST'>
|
||||
<value>a|the|of|on|in|and|to</value>
|
||||
</configuration>
|
||||
<configuration id='PS_META_KEYWORDS'>
|
||||
<value>0</value>
|
||||
</configuration>
|
||||
<configuration id='PS_CUSTOMER_SERVICE_SIGNATURE'>
|
||||
<value>Halo,
|
||||
|
||||
Salam kami,
|
||||
Customer service</value>
|
||||
</configuration>
|
||||
</entity_configuration>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version='1.0'?>
|
||||
<entity_contact>
|
||||
<contact id='Webmaster' name='Webmaster'>
|
||||
<description>Jika terdapat masalah teknis di website kami</description>
|
||||
</contact>
|
||||
<contact id='Customer_service' name='Customer service'>
|
||||
<description>Untuk pertanyaan seputar produk dan pembelian</description>
|
||||
</contact>
|
||||
</entity_contact>
|
||||
@@ -0,0 +1,735 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_country>
|
||||
<country id="DE">
|
||||
<name>Germany</name>
|
||||
</country>
|
||||
<country id="AT">
|
||||
<name>Austria</name>
|
||||
</country>
|
||||
<country id="BE">
|
||||
<name>Belgium</name>
|
||||
</country>
|
||||
<country id="CA">
|
||||
<name>Canada</name>
|
||||
</country>
|
||||
<country id="CN">
|
||||
<name>China</name>
|
||||
</country>
|
||||
<country id="ES">
|
||||
<name>Spain</name>
|
||||
</country>
|
||||
<country id="FI">
|
||||
<name>Finland</name>
|
||||
</country>
|
||||
<country id="FR">
|
||||
<name>France</name>
|
||||
</country>
|
||||
<country id="GR">
|
||||
<name>Greece</name>
|
||||
</country>
|
||||
<country id="IT">
|
||||
<name>Italy</name>
|
||||
</country>
|
||||
<country id="JP">
|
||||
<name>Japan</name>
|
||||
</country>
|
||||
<country id="LU">
|
||||
<name>Luxemburg</name>
|
||||
</country>
|
||||
<country id="NL">
|
||||
<name>Netherlands</name>
|
||||
</country>
|
||||
<country id="PL">
|
||||
<name>Poland</name>
|
||||
</country>
|
||||
<country id="PT">
|
||||
<name>Portugal</name>
|
||||
</country>
|
||||
<country id="CZ">
|
||||
<name>Czech Republic</name>
|
||||
</country>
|
||||
<country id="GB">
|
||||
<name>United Kingdom</name>
|
||||
</country>
|
||||
<country id="SE">
|
||||
<name>Sweden</name>
|
||||
</country>
|
||||
<country id="CH">
|
||||
<name>Switzerland</name>
|
||||
</country>
|
||||
<country id="DK">
|
||||
<name>Denmark</name>
|
||||
</country>
|
||||
<country id="US">
|
||||
<name>United States</name>
|
||||
</country>
|
||||
<country id="HK">
|
||||
<name>HongKong</name>
|
||||
</country>
|
||||
<country id="NO">
|
||||
<name>Norway</name>
|
||||
</country>
|
||||
<country id="AU">
|
||||
<name>Australia</name>
|
||||
</country>
|
||||
<country id="SG">
|
||||
<name>Singapore</name>
|
||||
</country>
|
||||
<country id="IE">
|
||||
<name>Ireland</name>
|
||||
</country>
|
||||
<country id="NZ">
|
||||
<name>New Zealand</name>
|
||||
</country>
|
||||
<country id="KR">
|
||||
<name>South Korea</name>
|
||||
</country>
|
||||
<country id="IL">
|
||||
<name>Israel</name>
|
||||
</country>
|
||||
<country id="ZA">
|
||||
<name>South Africa</name>
|
||||
</country>
|
||||
<country id="NG">
|
||||
<name>Nigeria</name>
|
||||
</country>
|
||||
<country id="CI">
|
||||
<name>Ivory Coast</name>
|
||||
</country>
|
||||
<country id="TG">
|
||||
<name>Togo</name>
|
||||
</country>
|
||||
<country id="BO">
|
||||
<name>Bolivia</name>
|
||||
</country>
|
||||
<country id="MU">
|
||||
<name>Mauritius</name>
|
||||
</country>
|
||||
<country id="RO">
|
||||
<name>Romania</name>
|
||||
</country>
|
||||
<country id="SK">
|
||||
<name>Slovakia</name>
|
||||
</country>
|
||||
<country id="DZ">
|
||||
<name>Algeria</name>
|
||||
</country>
|
||||
<country id="AS">
|
||||
<name>American Samoa</name>
|
||||
</country>
|
||||
<country id="AD">
|
||||
<name>Andorra</name>
|
||||
</country>
|
||||
<country id="AO">
|
||||
<name>Angola</name>
|
||||
</country>
|
||||
<country id="AI">
|
||||
<name>Anguilla</name>
|
||||
</country>
|
||||
<country id="AG">
|
||||
<name>Antigua and Barbuda</name>
|
||||
</country>
|
||||
<country id="AR">
|
||||
<name>Argentina</name>
|
||||
</country>
|
||||
<country id="AM">
|
||||
<name>Armenia</name>
|
||||
</country>
|
||||
<country id="AW">
|
||||
<name>Aruba</name>
|
||||
</country>
|
||||
<country id="AZ">
|
||||
<name>Azerbaijan</name>
|
||||
</country>
|
||||
<country id="BS">
|
||||
<name>Bahamas</name>
|
||||
</country>
|
||||
<country id="BH">
|
||||
<name>Bahrain</name>
|
||||
</country>
|
||||
<country id="BD">
|
||||
<name>Bangladesh</name>
|
||||
</country>
|
||||
<country id="BB">
|
||||
<name>Barbados</name>
|
||||
</country>
|
||||
<country id="BY">
|
||||
<name>Belarus</name>
|
||||
</country>
|
||||
<country id="BZ">
|
||||
<name>Belize</name>
|
||||
</country>
|
||||
<country id="BJ">
|
||||
<name>Benin</name>
|
||||
</country>
|
||||
<country id="BM">
|
||||
<name>Bermuda</name>
|
||||
</country>
|
||||
<country id="BT">
|
||||
<name>Bhutan</name>
|
||||
</country>
|
||||
<country id="BW">
|
||||
<name>Botswana</name>
|
||||
</country>
|
||||
<country id="BR">
|
||||
<name>Brazil</name>
|
||||
</country>
|
||||
<country id="BN">
|
||||
<name>Brunei</name>
|
||||
</country>
|
||||
<country id="BF">
|
||||
<name>Burkina Faso</name>
|
||||
</country>
|
||||
<country id="MM">
|
||||
<name>Burma (Myanmar)</name>
|
||||
</country>
|
||||
<country id="BI">
|
||||
<name>Burundi</name>
|
||||
</country>
|
||||
<country id="KH">
|
||||
<name>Cambodia</name>
|
||||
</country>
|
||||
<country id="CM">
|
||||
<name>Cameroon</name>
|
||||
</country>
|
||||
<country id="CV">
|
||||
<name>Cape Verde</name>
|
||||
</country>
|
||||
<country id="CF">
|
||||
<name>Central African Republic</name>
|
||||
</country>
|
||||
<country id="TD">
|
||||
<name>Chad</name>
|
||||
</country>
|
||||
<country id="CL">
|
||||
<name>Chile</name>
|
||||
</country>
|
||||
<country id="CO">
|
||||
<name>Colombia</name>
|
||||
</country>
|
||||
<country id="KM">
|
||||
<name>Comoros</name>
|
||||
</country>
|
||||
<country id="CD">
|
||||
<name>Congo, Dem. Republic</name>
|
||||
</country>
|
||||
<country id="CG">
|
||||
<name>Congo, Republic</name>
|
||||
</country>
|
||||
<country id="CR">
|
||||
<name>Costa Rica</name>
|
||||
</country>
|
||||
<country id="HR">
|
||||
<name>Croatia</name>
|
||||
</country>
|
||||
<country id="CU">
|
||||
<name>Cuba</name>
|
||||
</country>
|
||||
<country id="CY">
|
||||
<name>Cyprus</name>
|
||||
</country>
|
||||
<country id="DJ">
|
||||
<name>Djibouti</name>
|
||||
</country>
|
||||
<country id="DM">
|
||||
<name>Dominica</name>
|
||||
</country>
|
||||
<country id="DO">
|
||||
<name>Dominican Republic</name>
|
||||
</country>
|
||||
<country id="TL">
|
||||
<name>East Timor</name>
|
||||
</country>
|
||||
<country id="EC">
|
||||
<name>Ecuador</name>
|
||||
</country>
|
||||
<country id="EG">
|
||||
<name>Egypt</name>
|
||||
</country>
|
||||
<country id="SV">
|
||||
<name>El Salvador</name>
|
||||
</country>
|
||||
<country id="GQ">
|
||||
<name>Equatorial Guinea</name>
|
||||
</country>
|
||||
<country id="ER">
|
||||
<name>Eritrea</name>
|
||||
</country>
|
||||
<country id="EE">
|
||||
<name>Estonia</name>
|
||||
</country>
|
||||
<country id="ET">
|
||||
<name>Ethiopia</name>
|
||||
</country>
|
||||
<country id="FK">
|
||||
<name>Falkland Islands</name>
|
||||
</country>
|
||||
<country id="FO">
|
||||
<name>Faroe Islands</name>
|
||||
</country>
|
||||
<country id="FJ">
|
||||
<name>Fiji</name>
|
||||
</country>
|
||||
<country id="GA">
|
||||
<name>Gabon</name>
|
||||
</country>
|
||||
<country id="GM">
|
||||
<name>Gambia</name>
|
||||
</country>
|
||||
<country id="GE">
|
||||
<name>Georgia</name>
|
||||
</country>
|
||||
<country id="GH">
|
||||
<name>Ghana</name>
|
||||
</country>
|
||||
<country id="GD">
|
||||
<name>Grenada</name>
|
||||
</country>
|
||||
<country id="GL">
|
||||
<name>Greenland</name>
|
||||
</country>
|
||||
<country id="GI">
|
||||
<name>Gibraltar</name>
|
||||
</country>
|
||||
<country id="GP">
|
||||
<name>Guadeloupe</name>
|
||||
</country>
|
||||
<country id="GU">
|
||||
<name>Guam</name>
|
||||
</country>
|
||||
<country id="GT">
|
||||
<name>Guatemala</name>
|
||||
</country>
|
||||
<country id="GG">
|
||||
<name>Guernsey</name>
|
||||
</country>
|
||||
<country id="GN">
|
||||
<name>Guinea</name>
|
||||
</country>
|
||||
<country id="GW">
|
||||
<name>Guinea-Bissau</name>
|
||||
</country>
|
||||
<country id="GY">
|
||||
<name>Guyana</name>
|
||||
</country>
|
||||
<country id="HT">
|
||||
<name>Haiti</name>
|
||||
</country>
|
||||
<country id="HM">
|
||||
<name>Heard Island and McDonald Islands</name>
|
||||
</country>
|
||||
<country id="VA">
|
||||
<name>Vatican City State</name>
|
||||
</country>
|
||||
<country id="HN">
|
||||
<name>Honduras</name>
|
||||
</country>
|
||||
<country id="IS">
|
||||
<name>Iceland</name>
|
||||
</country>
|
||||
<country id="IN">
|
||||
<name>India</name>
|
||||
</country>
|
||||
<country id="ID">
|
||||
<name>Indonesia</name>
|
||||
</country>
|
||||
<country id="IR">
|
||||
<name>Iran</name>
|
||||
</country>
|
||||
<country id="IQ">
|
||||
<name>Iraq</name>
|
||||
</country>
|
||||
<country id="IM">
|
||||
<name>Man Island</name>
|
||||
</country>
|
||||
<country id="JM">
|
||||
<name>Jamaica</name>
|
||||
</country>
|
||||
<country id="JE">
|
||||
<name>Jersey</name>
|
||||
</country>
|
||||
<country id="JO">
|
||||
<name>Jordan</name>
|
||||
</country>
|
||||
<country id="KZ">
|
||||
<name>Kazakhstan</name>
|
||||
</country>
|
||||
<country id="KE">
|
||||
<name>Kenya</name>
|
||||
</country>
|
||||
<country id="KI">
|
||||
<name>Kiribati</name>
|
||||
</country>
|
||||
<country id="KP">
|
||||
<name>Korea, Dem. Republic of</name>
|
||||
</country>
|
||||
<country id="KW">
|
||||
<name>Kuwait</name>
|
||||
</country>
|
||||
<country id="KG">
|
||||
<name>Kyrgyzstan</name>
|
||||
</country>
|
||||
<country id="LA">
|
||||
<name>Laos</name>
|
||||
</country>
|
||||
<country id="LV">
|
||||
<name>Latvia</name>
|
||||
</country>
|
||||
<country id="LB">
|
||||
<name>Lebanon</name>
|
||||
</country>
|
||||
<country id="LS">
|
||||
<name>Lesotho</name>
|
||||
</country>
|
||||
<country id="LR">
|
||||
<name>Liberia</name>
|
||||
</country>
|
||||
<country id="LY">
|
||||
<name>Libya</name>
|
||||
</country>
|
||||
<country id="LI">
|
||||
<name>Liechtenstein</name>
|
||||
</country>
|
||||
<country id="LT">
|
||||
<name>Lithuania</name>
|
||||
</country>
|
||||
<country id="MO">
|
||||
<name>Macau</name>
|
||||
</country>
|
||||
<country id="MK">
|
||||
<name>Macedonia</name>
|
||||
</country>
|
||||
<country id="MG">
|
||||
<name>Madagascar</name>
|
||||
</country>
|
||||
<country id="MW">
|
||||
<name>Malawi</name>
|
||||
</country>
|
||||
<country id="MY">
|
||||
<name>Malaysia</name>
|
||||
</country>
|
||||
<country id="MV">
|
||||
<name>Maldives</name>
|
||||
</country>
|
||||
<country id="ML">
|
||||
<name>Mali</name>
|
||||
</country>
|
||||
<country id="MT">
|
||||
<name>Malta</name>
|
||||
</country>
|
||||
<country id="MH">
|
||||
<name>Marshall Islands</name>
|
||||
</country>
|
||||
<country id="MQ">
|
||||
<name>Martinique</name>
|
||||
</country>
|
||||
<country id="MR">
|
||||
<name>Mauritania</name>
|
||||
</country>
|
||||
<country id="HU">
|
||||
<name>Hungary</name>
|
||||
</country>
|
||||
<country id="YT">
|
||||
<name>Mayotte</name>
|
||||
</country>
|
||||
<country id="MX">
|
||||
<name>Mexico</name>
|
||||
</country>
|
||||
<country id="FM">
|
||||
<name>Micronesia</name>
|
||||
</country>
|
||||
<country id="MD">
|
||||
<name>Moldova</name>
|
||||
</country>
|
||||
<country id="MC">
|
||||
<name>Monaco</name>
|
||||
</country>
|
||||
<country id="MN">
|
||||
<name>Mongolia</name>
|
||||
</country>
|
||||
<country id="ME">
|
||||
<name>Montenegro</name>
|
||||
</country>
|
||||
<country id="MS">
|
||||
<name>Montserrat</name>
|
||||
</country>
|
||||
<country id="MA">
|
||||
<name>Morocco</name>
|
||||
</country>
|
||||
<country id="MZ">
|
||||
<name>Mozambique</name>
|
||||
</country>
|
||||
<country id="NA">
|
||||
<name>Namibia</name>
|
||||
</country>
|
||||
<country id="NR">
|
||||
<name>Nauru</name>
|
||||
</country>
|
||||
<country id="NP">
|
||||
<name>Nepal</name>
|
||||
</country>
|
||||
<country id="AN">
|
||||
<name>Netherlands Antilles</name>
|
||||
</country>
|
||||
<country id="NC">
|
||||
<name>New Caledonia</name>
|
||||
</country>
|
||||
<country id="NI">
|
||||
<name>Nicaragua</name>
|
||||
</country>
|
||||
<country id="NE">
|
||||
<name>Niger</name>
|
||||
</country>
|
||||
<country id="NU">
|
||||
<name>Niue</name>
|
||||
</country>
|
||||
<country id="NF">
|
||||
<name>Norfolk Island</name>
|
||||
</country>
|
||||
<country id="MP">
|
||||
<name>Northern Mariana Islands</name>
|
||||
</country>
|
||||
<country id="OM">
|
||||
<name>Oman</name>
|
||||
</country>
|
||||
<country id="PK">
|
||||
<name>Pakistan</name>
|
||||
</country>
|
||||
<country id="PW">
|
||||
<name>Palau</name>
|
||||
</country>
|
||||
<country id="PS">
|
||||
<name>Palestinian Territories</name>
|
||||
</country>
|
||||
<country id="PA">
|
||||
<name>Panama</name>
|
||||
</country>
|
||||
<country id="PG">
|
||||
<name>Papua New Guinea</name>
|
||||
</country>
|
||||
<country id="PY">
|
||||
<name>Paraguay</name>
|
||||
</country>
|
||||
<country id="PE">
|
||||
<name>Peru</name>
|
||||
</country>
|
||||
<country id="PH">
|
||||
<name>Philippines</name>
|
||||
</country>
|
||||
<country id="PN">
|
||||
<name>Pitcairn</name>
|
||||
</country>
|
||||
<country id="PR">
|
||||
<name>Puerto Rico</name>
|
||||
</country>
|
||||
<country id="QA">
|
||||
<name>Qatar</name>
|
||||
</country>
|
||||
<country id="RE">
|
||||
<name>Reunion Island</name>
|
||||
</country>
|
||||
<country id="RU">
|
||||
<name>Russian Federation</name>
|
||||
</country>
|
||||
<country id="RW">
|
||||
<name>Rwanda</name>
|
||||
</country>
|
||||
<country id="BL">
|
||||
<name>Saint Barthelemy</name>
|
||||
</country>
|
||||
<country id="KN">
|
||||
<name>Saint Kitts and Nevis</name>
|
||||
</country>
|
||||
<country id="LC">
|
||||
<name>Saint Lucia</name>
|
||||
</country>
|
||||
<country id="MF">
|
||||
<name>Saint Martin</name>
|
||||
</country>
|
||||
<country id="PM">
|
||||
<name>Saint Pierre and Miquelon</name>
|
||||
</country>
|
||||
<country id="VC">
|
||||
<name>Saint Vincent and the Grenadines</name>
|
||||
</country>
|
||||
<country id="WS">
|
||||
<name>Samoa</name>
|
||||
</country>
|
||||
<country id="SM">
|
||||
<name>San Marino</name>
|
||||
</country>
|
||||
<country id="ST">
|
||||
<name>São Tomé and Príncipe</name>
|
||||
</country>
|
||||
<country id="SA">
|
||||
<name>Saudi Arabia</name>
|
||||
</country>
|
||||
<country id="SN">
|
||||
<name>Senegal</name>
|
||||
</country>
|
||||
<country id="RS">
|
||||
<name>Serbia</name>
|
||||
</country>
|
||||
<country id="SC">
|
||||
<name>Seychelles</name>
|
||||
</country>
|
||||
<country id="SL">
|
||||
<name>Sierra Leone</name>
|
||||
</country>
|
||||
<country id="SI">
|
||||
<name>Slovenia</name>
|
||||
</country>
|
||||
<country id="SB">
|
||||
<name>Solomon Islands</name>
|
||||
</country>
|
||||
<country id="SO">
|
||||
<name>Somalia</name>
|
||||
</country>
|
||||
<country id="GS">
|
||||
<name>South Georgia and the South Sandwich Islands</name>
|
||||
</country>
|
||||
<country id="LK">
|
||||
<name>Sri Lanka</name>
|
||||
</country>
|
||||
<country id="SD">
|
||||
<name>Sudan</name>
|
||||
</country>
|
||||
<country id="SR">
|
||||
<name>Suriname</name>
|
||||
</country>
|
||||
<country id="SJ">
|
||||
<name>Svalbard and Jan Mayen</name>
|
||||
</country>
|
||||
<country id="SZ">
|
||||
<name>Swaziland</name>
|
||||
</country>
|
||||
<country id="SY">
|
||||
<name>Syria</name>
|
||||
</country>
|
||||
<country id="TW">
|
||||
<name>Taiwan</name>
|
||||
</country>
|
||||
<country id="TJ">
|
||||
<name>Tajikistan</name>
|
||||
</country>
|
||||
<country id="TZ">
|
||||
<name>Tanzania</name>
|
||||
</country>
|
||||
<country id="TH">
|
||||
<name>Thailand</name>
|
||||
</country>
|
||||
<country id="TK">
|
||||
<name>Tokelau</name>
|
||||
</country>
|
||||
<country id="TO">
|
||||
<name>Tonga</name>
|
||||
</country>
|
||||
<country id="TT">
|
||||
<name>Trinidad and Tobago</name>
|
||||
</country>
|
||||
<country id="TN">
|
||||
<name>Tunisia</name>
|
||||
</country>
|
||||
<country id="TR">
|
||||
<name>Turkey</name>
|
||||
</country>
|
||||
<country id="TM">
|
||||
<name>Turkmenistan</name>
|
||||
</country>
|
||||
<country id="TC">
|
||||
<name>Turks and Caicos Islands</name>
|
||||
</country>
|
||||
<country id="TV">
|
||||
<name>Tuvalu</name>
|
||||
</country>
|
||||
<country id="UG">
|
||||
<name>Uganda</name>
|
||||
</country>
|
||||
<country id="UA">
|
||||
<name>Ukraine</name>
|
||||
</country>
|
||||
<country id="AE">
|
||||
<name>United Arab Emirates</name>
|
||||
</country>
|
||||
<country id="UY">
|
||||
<name>Uruguay</name>
|
||||
</country>
|
||||
<country id="UZ">
|
||||
<name>Uzbekistan</name>
|
||||
</country>
|
||||
<country id="VU">
|
||||
<name>Vanuatu</name>
|
||||
</country>
|
||||
<country id="VE">
|
||||
<name>Venezuela</name>
|
||||
</country>
|
||||
<country id="VN">
|
||||
<name>Vietnam</name>
|
||||
</country>
|
||||
<country id="VG">
|
||||
<name>Virgin Islands (British)</name>
|
||||
</country>
|
||||
<country id="VI">
|
||||
<name>Virgin Islands (U.S.)</name>
|
||||
</country>
|
||||
<country id="WF">
|
||||
<name>Wallis and Futuna</name>
|
||||
</country>
|
||||
<country id="EH">
|
||||
<name>Western Sahara</name>
|
||||
</country>
|
||||
<country id="YE">
|
||||
<name>Yemen</name>
|
||||
</country>
|
||||
<country id="ZM">
|
||||
<name>Zambia</name>
|
||||
</country>
|
||||
<country id="ZW">
|
||||
<name>Zimbabwe</name>
|
||||
</country>
|
||||
<country id="AL">
|
||||
<name>Albania</name>
|
||||
</country>
|
||||
<country id="AF">
|
||||
<name>Afghanistan</name>
|
||||
</country>
|
||||
<country id="AQ">
|
||||
<name>Antarctica</name>
|
||||
</country>
|
||||
<country id="BA">
|
||||
<name>Bosnia and Herzegovina</name>
|
||||
</country>
|
||||
<country id="BV">
|
||||
<name>Bouvet Island</name>
|
||||
</country>
|
||||
<country id="IO">
|
||||
<name>British Indian Ocean Territory</name>
|
||||
</country>
|
||||
<country id="BG">
|
||||
<name>Bulgaria</name>
|
||||
</country>
|
||||
<country id="KY">
|
||||
<name>Cayman Islands</name>
|
||||
</country>
|
||||
<country id="CX">
|
||||
<name>Christmas Island</name>
|
||||
</country>
|
||||
<country id="CC">
|
||||
<name>Cocos (Keeling) Islands</name>
|
||||
</country>
|
||||
<country id="CK">
|
||||
<name>Cook Islands</name>
|
||||
</country>
|
||||
<country id="GF">
|
||||
<name>French Guiana</name>
|
||||
</country>
|
||||
<country id="PF">
|
||||
<name>French Polynesia</name>
|
||||
</country>
|
||||
<country id="TF">
|
||||
<name>French Southern Territories</name>
|
||||
</country>
|
||||
<country id="AX">
|
||||
<name>Åland Islands</name>
|
||||
</country>
|
||||
</entity_country>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version='1.0'?>
|
||||
<entity_gender>
|
||||
<gender id='1' name='Tuan'/>
|
||||
<gender id='2' name='Nona'/>
|
||||
<gender id='3' name='Nyonya'/>
|
||||
</entity_gender>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version='1.0'?>
|
||||
<entity_group>
|
||||
<group id='Visitor' name='Visitor'/>
|
||||
<group id='Guest' name='Guest'/>
|
||||
<group id='Customer' name='Customer'/>
|
||||
</entity_group>
|
||||
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/*
|
||||
* 2007-2013 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Open Software License (OSL 3.0)
|
||||
* that is bundled with this package in the file LICENSE.txt.
|
||||
* It is also available through the world-wide-web at this URL:
|
||||
* http://opensource.org/licenses/osl-3.0.php
|
||||
* If you did not receive a copy of the license and are unable to
|
||||
* obtain it through the world-wide-web, please send an email
|
||||
* to license@prestashop.com so we can send you a copy immediately.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
||||
* versions in the future. If you wish to customize PrestaShop for your
|
||||
* needs please refer to http://www.prestashop.com for more information.
|
||||
*
|
||||
* @author PrestaShop SA <contact@prestashop.com>
|
||||
* @copyright 2007-2013 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../../../../');
|
||||
exit;
|
||||
@@ -0,0 +1,159 @@
|
||||
<?xml version='1.0'?>
|
||||
<entity_meta>
|
||||
<meta id='404' id_shop='1'>
|
||||
<title>Eror 404</title>
|
||||
<description>Halaman tidak ditemukan</description>
|
||||
<keywords>error, 404, not found</keywords>
|
||||
<url_rewrite>halaman-tidak-ditemukan</url_rewrite>
|
||||
</meta>
|
||||
<meta id='best-sales' id_shop='1'>
|
||||
<title>Terlaris</title>
|
||||
<description>Produk terlaris</description>
|
||||
<keywords>best sales</keywords>
|
||||
<url_rewrite>terlaris</url_rewrite>
|
||||
</meta>
|
||||
<meta id='contact' id_shop='1'>
|
||||
<title>Hubungi kami</title>
|
||||
<description>Gunakan form ini untuk menghubungi kami</description>
|
||||
<keywords>contact, form, e-mail</keywords>
|
||||
<url_rewrite>hubungi-kami</url_rewrite>
|
||||
</meta>
|
||||
<meta id='index' id_shop='1'>
|
||||
<title/>
|
||||
<description>didukung oleh PrestaShop</description>
|
||||
<keywords>shop, prestashop</keywords>
|
||||
<url_rewrite/>
|
||||
</meta>
|
||||
<meta id='manufacturer' id_shop='1'>
|
||||
<title>Merk</title>
|
||||
<description>Daftar merk</description>
|
||||
<keywords>manufacturer</keywords>
|
||||
<url_rewrite>merk</url_rewrite>
|
||||
</meta>
|
||||
<meta id='new-products' id_shop='1'>
|
||||
<title>Produk terbaru</title>
|
||||
<description>Produk terbaru</description>
|
||||
<keywords>new, products</keywords>
|
||||
<url_rewrite>produk-terbaru</url_rewrite>
|
||||
</meta>
|
||||
<meta id='password' id_shop='1'>
|
||||
<title>Lupa password</title>
|
||||
<description>Isi alamat e-mail dengan alamat e-mail yang Anda gunakan sewaktu mendaftar yang akan digunakan untuk mengirim password baru</description>
|
||||
<keywords>forgot, password, e-mail, new, reset</keywords>
|
||||
<url_rewrite>lupa-password</url_rewrite>
|
||||
</meta>
|
||||
<meta id='prices-drop' id_shop='1'>
|
||||
<title>Turun harga</title>
|
||||
<description>Daftar produk diskon</description>
|
||||
<keywords>special, prices drop</keywords>
|
||||
<url_rewrite>turun-harga</url_rewrite>
|
||||
</meta>
|
||||
<meta id='sitemap' id_shop='1'>
|
||||
<title>Sitemap</title>
|
||||
<description>Tersesat ? Temukan yang anda cari</description>
|
||||
<keywords>sitemap</keywords>
|
||||
<url_rewrite>sitemap</url_rewrite>
|
||||
</meta>
|
||||
<meta id='supplier' id_shop='1'>
|
||||
<title>Supplier</title>
|
||||
<description>Daftar supplier</description>
|
||||
<keywords>supplier</keywords>
|
||||
<url_rewrite>supplier</url_rewrite>
|
||||
</meta>
|
||||
<meta id='address' id_shop='1'>
|
||||
<title>Alamat</title>
|
||||
<description/>
|
||||
<keywords/>
|
||||
<url_rewrite>alamat</url_rewrite>
|
||||
</meta>
|
||||
<meta id='addresses' id_shop='1'>
|
||||
<title>Daftar Alamat</title>
|
||||
<description/>
|
||||
<keywords/>
|
||||
<url_rewrite>daftar-alamat</url_rewrite>
|
||||
</meta>
|
||||
<meta id='authentication' id_shop='1'>
|
||||
<title>Login</title>
|
||||
<description/>
|
||||
<keywords/>
|
||||
<url_rewrite>login</url_rewrite>
|
||||
</meta>
|
||||
<meta id='cart' id_shop='1'>
|
||||
<title>Keranjang belanja</title>
|
||||
<description/>
|
||||
<keywords/>
|
||||
<url_rewrite>keranjang-belanja</url_rewrite>
|
||||
</meta>
|
||||
<meta id='discount' id_shop='1'>
|
||||
<title>Diskon</title>
|
||||
<description/>
|
||||
<keywords/>
|
||||
<url_rewrite>diskon</url_rewrite>
|
||||
</meta>
|
||||
<meta id='history' id_shop='1'>
|
||||
<title>Riwayat pembelian</title>
|
||||
<description/>
|
||||
<keywords/>
|
||||
<url_rewrite>riwayat-pembelian</url_rewrite>
|
||||
</meta>
|
||||
<meta id='identity' id_shop='1'>
|
||||
<title>Identitas</title>
|
||||
<description/>
|
||||
<keywords/>
|
||||
<url_rewrite>identitas</url_rewrite>
|
||||
</meta>
|
||||
<meta id='my-account' id_shop='1'>
|
||||
<title>Akun saya</title>
|
||||
<description/>
|
||||
<keywords/>
|
||||
<url_rewrite>akun-saya</url_rewrite>
|
||||
</meta>
|
||||
<meta id='order-follow' id_shop='1'>
|
||||
<title>Pantau order</title>
|
||||
<description/>
|
||||
<keywords/>
|
||||
<url_rewrite>pantau-order</url_rewrite>
|
||||
</meta>
|
||||
<meta id='order-slip' id_shop='1'>
|
||||
<title>Slip order</title>
|
||||
<description/>
|
||||
<keywords/>
|
||||
<url_rewrite>slip-order</url_rewrite>
|
||||
</meta>
|
||||
<meta id='order' id_shop='1'>
|
||||
<title>Order</title>
|
||||
<description/>
|
||||
<keywords/>
|
||||
<url_rewrite>order</url_rewrite>
|
||||
</meta>
|
||||
<meta id='search' id_shop='1'>
|
||||
<title>Cari</title>
|
||||
<description/>
|
||||
<keywords/>
|
||||
<url_rewrite>cari</url_rewrite>
|
||||
</meta>
|
||||
<meta id='stores' id_shop='1'>
|
||||
<title>Toko</title>
|
||||
<description/>
|
||||
<keywords/>
|
||||
<url_rewrite>toko</url_rewrite>
|
||||
</meta>
|
||||
<meta id='order-opc' id_shop='1'>
|
||||
<title>Order</title>
|
||||
<description/>
|
||||
<keywords/>
|
||||
<url_rewrite>quick-order</url_rewrite>
|
||||
</meta>
|
||||
<meta id='guest-tracking' id_shop='1'>
|
||||
<title>Guest tracking</title>
|
||||
<description/>
|
||||
<keywords/>
|
||||
<url_rewrite>guest-tracking</url_rewrite>
|
||||
</meta>
|
||||
<meta id='order-confirmation' id_shop='1'>
|
||||
<title>Konfirmasi pembelian</title>
|
||||
<description/>
|
||||
<keywords/>
|
||||
<url_rewrite>konfirmasi-pembelian</url_rewrite>
|
||||
</meta>
|
||||
</entity_meta>
|
||||
@@ -0,0 +1,18 @@
|
||||
<?xml version='1.0'?>
|
||||
<entity_order_return_state>
|
||||
<order_return_state id='Waiting_for_confirmation'>
|
||||
<name>Menunggu konfirmasi</name>
|
||||
</order_return_state>
|
||||
<order_return_state id='Waiting_for_package'>
|
||||
<name>Menunggu paket</name>
|
||||
</order_return_state>
|
||||
<order_return_state id='Package_received'>
|
||||
<name>Paket diterima</name>
|
||||
</order_return_state>
|
||||
<order_return_state id='Return_denied'>
|
||||
<name>Retur ditolak</name>
|
||||
</order_return_state>
|
||||
<order_return_state id='Return_completed'>
|
||||
<name>Retur berhasil</name>
|
||||
</order_return_state>
|
||||
</entity_order_return_state>
|
||||
@@ -0,0 +1,51 @@
|
||||
<?xml version='1.0'?>
|
||||
<entity_order_state>
|
||||
<order_state id='Awaiting_cheque_payment'>
|
||||
<name>Menunggu cek pembayaran</name>
|
||||
<template>cheque</template>
|
||||
</order_state>
|
||||
<order_state id='Payment_accepted'>
|
||||
<name>Pembayaran diterima</name>
|
||||
<template>payment</template>
|
||||
</order_state>
|
||||
<order_state id='Preparation_in_progress'>
|
||||
<name>Barang tengah disiapkan</name>
|
||||
<template>preparation</template>
|
||||
</order_state>
|
||||
<order_state id='Shipped'>
|
||||
<name>Proses pengiriman</name>
|
||||
<template>shipped</template>
|
||||
</order_state>
|
||||
<order_state id='Delivered'>
|
||||
<name>Barang telah diterima</name>
|
||||
<template/>
|
||||
</order_state>
|
||||
<order_state id='Canceled'>
|
||||
<name>Dibatalkan</name>
|
||||
<template>order_canceled</template>
|
||||
</order_state>
|
||||
<order_state id='Refund'>
|
||||
<name>Refund</name>
|
||||
<template>refund</template>
|
||||
</order_state>
|
||||
<order_state id='Payment_error'>
|
||||
<name>Pembayaran eror</name>
|
||||
<template>payment_error</template>
|
||||
</order_state>
|
||||
<order_state id='On_backorder'>
|
||||
<name>Sedang dipesan</name>
|
||||
<template>outofstock</template>
|
||||
</order_state>
|
||||
<order_state id='Awaiting_bank_wire_payment'>
|
||||
<name>Menunggu pembayaran via transfer bank</name>
|
||||
<template>bankwire</template>
|
||||
</order_state>
|
||||
<order_state id='Awaiting_PayPal_payment'>
|
||||
<name>Menunggu pembayaran melalui PayPal</name>
|
||||
<template/>
|
||||
</order_state>
|
||||
<order_state id='Payment_remotely_accepted'>
|
||||
<name>Pembayaran diterima</name>
|
||||
<template>payment</template>
|
||||
</order_state>
|
||||
</entity_order_state>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version='1.0'?>
|
||||
<entity_profile>
|
||||
<profile id='SuperAdmin'>
|
||||
<name>SuperAdmin</name>
|
||||
</profile>
|
||||
</entity_profile>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version='1.0'?>
|
||||
<entity_quick_access>
|
||||
<quick_access id='Home' name='Beranda'/>
|
||||
<quick_access id='My_Shop' name='Toko saya'/>
|
||||
<quick_access id='New_category' name='Kategori baru'/>
|
||||
<quick_access id='New_product' name='Produk baru'/>
|
||||
<quick_access id='New_voucher' name='Voucher baru'/>
|
||||
</entity_quick_access>
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version='1.0'?>
|
||||
<entity_risk>
|
||||
<risk id='None' name='None'/>
|
||||
<risk id='Low' name='Rendah'/>
|
||||
<risk id='Medium' name='Sedang'/>
|
||||
<risk id='High' name='Tinggi'/>
|
||||
</entity_risk>
|
||||
@@ -0,0 +1,27 @@
|
||||
<?xml version='1.0'?>
|
||||
<entity_stock_mvt_reason>
|
||||
<stock_mvt_reason id='Increase'>
|
||||
<name>Tambah</name>
|
||||
</stock_mvt_reason>
|
||||
<stock_mvt_reason id='Decrease'>
|
||||
<name>Kurangi</name>
|
||||
</stock_mvt_reason>
|
||||
<stock_mvt_reason id='Customer_Order'>
|
||||
<name>Order dari pelanggan</name>
|
||||
</stock_mvt_reason>
|
||||
<stock_mvt_reason id='Regulation_following_an_inventory_of_stock'>
|
||||
<name>Aturan mengenai stok barang</name>
|
||||
</stock_mvt_reason>
|
||||
<stock_mvt_reason id='Regulation_following_an_inventory_of_stock_1'>
|
||||
<name>Aturan mengenai stok barang</name>
|
||||
</stock_mvt_reason>
|
||||
<stock_mvt_reason id='Transfer_to_another_warehouse'>
|
||||
<name>Transfer ke gudang lain</name>
|
||||
</stock_mvt_reason>
|
||||
<stock_mvt_reason id='Transfer_from_another_warehouse'>
|
||||
<name>Transfer dari gudang lain</name>
|
||||
</stock_mvt_reason>
|
||||
<stock_mvt_reason id='Supply_Order'>
|
||||
<name>Supply Order</name>
|
||||
</stock_mvt_reason>
|
||||
</entity_stock_mvt_reason>
|
||||
@@ -0,0 +1,21 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<entity_supplier_order_state>
|
||||
<supplier_order_state id='creation_in_progress'>
|
||||
<name>sedang dibuat</name>
|
||||
</supplier_order_state>
|
||||
<supplier_order_state id='Order_validated'>
|
||||
<name>Order berhasil divalidasi</name>
|
||||
</supplier_order_state>
|
||||
<supplier_order_state id='Pending_receipt'>
|
||||
<name>Menunggu barang</name>
|
||||
</supplier_order_state>
|
||||
<supplier_order_state id='Order_received_in_part'>
|
||||
<name>Barang diterima terpisah</name>
|
||||
</supplier_order_state>
|
||||
<supplier_order_state id='Order_received_completely'>
|
||||
<name>Barang berhasil diterima</name>
|
||||
</supplier_order_state>
|
||||
<supplier_order_state id='order_fenced'>
|
||||
<name>barang diproses</name>
|
||||
</supplier_order_state>
|
||||
</entity_supplier_order_state>
|
||||
@@ -0,0 +1,21 @@
|
||||
<?xml version='1.0'?>
|
||||
<entity_supply_order_state>
|
||||
<supply_order_state id='supply_order_state_1'>
|
||||
<name>1 - Persiapan</name>
|
||||
</supply_order_state>
|
||||
<supply_order_state id='supply_order_state_2'>
|
||||
<name>2 - Order berhasil divalidasi</name>
|
||||
</supply_order_state>
|
||||
<supply_order_state id='supply_order_state_3'>
|
||||
<name>3 - Menunggu barang</name>
|
||||
</supply_order_state>
|
||||
<supply_order_state id='supply_order_state_4'>
|
||||
<name>4 - Order diterima terpisah</name>
|
||||
</supply_order_state>
|
||||
<supply_order_state id='supply_order_state_5'>
|
||||
<name>5 - Order berhasil diterima</name>
|
||||
</supply_order_state>
|
||||
<supply_order_state id='supply_order_state_6'>
|
||||
<name>6 - Pembelian dibatalkan</name>
|
||||
</supply_order_state>
|
||||
</entity_supply_order_state>
|
||||
@@ -0,0 +1,105 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_tab>
|
||||
<tab id="Home" name="Home"/>
|
||||
<tab id="CMS_Pages" name="CMS Pages"/>
|
||||
<tab id="CMS_Categories" name="CMS Categories"/>
|
||||
<tab id="Combinations_Generator" name="Combinations Generator"/>
|
||||
<tab id="Search" name="Search"/>
|
||||
<tab id="Login" name="Login"/>
|
||||
<tab id="Shops" name="Shops"/>
|
||||
<tab id="Shop_URLs" name="Shop URLs"/>
|
||||
<tab id="Catalog" name="Catalog"/>
|
||||
<tab id="Orders" name="Orders"/>
|
||||
<tab id="Customers" name="Customers"/>
|
||||
<tab id="Price_Rules" name="Price Rules"/>
|
||||
<tab id="Shipping" name="Shipping"/>
|
||||
<tab id="Localization" name="Localization"/>
|
||||
<tab id="Modules" name="Modules"/>
|
||||
<tab id="Preferences" name="Preferences"/>
|
||||
<tab id="Advanced_Parameters" name="Advanced Parameters"/>
|
||||
<tab id="Administration" name="Administration"/>
|
||||
<tab id="Stats" name="Stats"/>
|
||||
<tab id="Stock" name="Stock"/>
|
||||
<tab id="Products" name="Products"/>
|
||||
<tab id="Categories" name="Categories"/>
|
||||
<tab id="Monitoring" name="Monitoring"/>
|
||||
<tab id="Attributes_and_Values" name="Attributes and Values"/>
|
||||
<tab id="Features" name="Features"/>
|
||||
<tab id="Manufacturers" name="Manufacturers"/>
|
||||
<tab id="Suppliers" name="Suppliers"/>
|
||||
<tab id="Image_Mapping" name="Image Mapping"/>
|
||||
<tab id="Tags" name="Tags"/>
|
||||
<tab id="Attachments" name="Attachments"/>
|
||||
<tab id="Orders_1" name="Orders"/>
|
||||
<tab id="Invoices" name="Invoices"/>
|
||||
<tab id="Merchandise_Returns" name="Merchandise Returns"/>
|
||||
<tab id="Delivery_Slips" name="Delivery Slips"/>
|
||||
<tab id="Credit_Slips" name="Credit Slips"/>
|
||||
<tab id="Statuses" name="Statuses"/>
|
||||
<tab id="Order_Messages" name="Order Messages"/>
|
||||
<tab id="Customers_1" name="Customers"/>
|
||||
<tab id="Addresses" name="Addresses"/>
|
||||
<tab id="Groups" name="Groups"/>
|
||||
<tab id="Shopping_Carts" name="Shopping Carts"/>
|
||||
<tab id="Customer_Service" name="Customer Service"/>
|
||||
<tab id="Contacts" name="Contacts"/>
|
||||
<tab id="Titles" name="Titles"/>
|
||||
<tab id="Outstanding" name="Outstanding"/>
|
||||
<tab id="Cart_Rules" name="Cart Rules"/>
|
||||
<tab id="Catalog_Price_Rules" name="Catalog Price Rules"/>
|
||||
<tab id="Marketing" name="Marketing"/>
|
||||
<tab id="Shipping_1" name="Shipping"/>
|
||||
<tab id="Carriers" name="Carriers"/>
|
||||
<tab id="Price_Ranges" name="Price Ranges"/>
|
||||
<tab id="Weight_Ranges" name="Weight Ranges"/>
|
||||
<tab id="Localization_1" name="Localization"/>
|
||||
<tab id="Languages" name="Languages"/>
|
||||
<tab id="Zones" name="Zones"/>
|
||||
<tab id="Countries" name="Countries"/>
|
||||
<tab id="States" name="States"/>
|
||||
<tab id="Currencies" name="Currencies"/>
|
||||
<tab id="Taxes" name="Taxes"/>
|
||||
<tab id="Tax_Rules" name="Tax Rules"/>
|
||||
<tab id="Translations" name="Translations"/>
|
||||
<tab id="Modules_1" name="Modules"/>
|
||||
<tab id="Modules_Themes_Catalog" name="Modules & Themes Catalog"/>
|
||||
<tab id="Positions" name="Positions"/>
|
||||
<tab id="Payment" name="Payment"/>
|
||||
<tab id="General" name="General"/>
|
||||
<tab id="Orders_2" name="Orders"/>
|
||||
<tab id="Products_1" name="Products"/>
|
||||
<tab id="Customers_2" name="Customers"/>
|
||||
<tab id="Themes" name="Themes"/>
|
||||
<tab id="SEO_URLs" name="SEO & URLs"/>
|
||||
<tab id="CMS" name="CMS"/>
|
||||
<tab id="Images" name="Images"/>
|
||||
<tab id="Store_Contacts" name="Store Contacts"/>
|
||||
<tab id="Search_1" name="Search"/>
|
||||
<tab id="Maintenance" name="Maintenance"/>
|
||||
<tab id="Geolocation" name="Geolocation"/>
|
||||
<tab id="Configuration_Information" name="Configuration Information"/>
|
||||
<tab id="Performance" name="Performance"/>
|
||||
<tab id="E-mail" name="E-mail"/>
|
||||
<tab id="Multistore" name="Multistore"/>
|
||||
<tab id="CSV_Import" name="CSV Import"/>
|
||||
<tab id="DB_Backup" name="DB Backup"/>
|
||||
<tab id="SQL_Manager" name="SQL Manager"/>
|
||||
<tab id="Logs" name="Logs"/>
|
||||
<tab id="Webservice" name="Webservice"/>
|
||||
<tab id="Preferences_1" name="Preferences"/>
|
||||
<tab id="Quick_Access" name="Quick Access"/>
|
||||
<tab id="Employees" name="Employees"/>
|
||||
<tab id="Profiles" name="Profiles"/>
|
||||
<tab id="Permissions" name="Permissions"/>
|
||||
<tab id="Menus" name="Menus"/>
|
||||
<tab id="Stats_1" name="Stats"/>
|
||||
<tab id="Search_Engines" name="Search Engines"/>
|
||||
<tab id="Referrers" name="Referrers"/>
|
||||
<tab id="Warehouses" name="Warehouses"/>
|
||||
<tab id="Stock_Management" name="Stock Management"/>
|
||||
<tab id="Stock_Movement" name="Stock Movement"/>
|
||||
<tab id="Instant_Stock_Status" name="Instant Stock Status"/>
|
||||
<tab id="Stock_Coverage" name="Stock Coverage"/>
|
||||
<tab id="Supply_orders" name="Supply orders"/>
|
||||
<tab id="Configuration" name="Configuration"/>
|
||||
</entity_tab>
|
||||
|
After Width: | Height: | Size: 886 B |
|
After Width: | Height: | Size: 3.8 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 5.8 KiB |
|
After Width: | Height: | Size: 4.2 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 968 B |
|
After Width: | Height: | Size: 8.0 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 11 KiB |
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/*
|
||||
* 2007-2013 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Open Software License (OSL 3.0)
|
||||
* that is bundled with this package in the file LICENSE.txt.
|
||||
* It is also available through the world-wide-web at this URL:
|
||||
* http://opensource.org/licenses/osl-3.0.php
|
||||
* If you did not receive a copy of the license and are unable to
|
||||
* obtain it through the world-wide-web, please send an email
|
||||
* to license@prestashop.com so we can send you a copy immediately.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
||||
* versions in the future. If you wish to customize PrestaShop for your
|
||||
* needs please refer to http://www.prestashop.com for more information.
|
||||
*
|
||||
* @author PrestaShop SA <contact@prestashop.com>
|
||||
* @copyright 2007-2013 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../../../../');
|
||||
exit;
|
||||
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/*
|
||||
* 2007-2013 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Open Software License (OSL 3.0)
|
||||
* that is bundled with this package in the file LICENSE.txt.
|
||||
* It is also available through the world-wide-web at this URL:
|
||||
* http://opensource.org/licenses/osl-3.0.php
|
||||
* If you did not receive a copy of the license and are unable to
|
||||
* obtain it through the world-wide-web, please send an email
|
||||
* to license@prestashop.com so we can send you a copy immediately.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
||||
* versions in the future. If you wish to customize PrestaShop for your
|
||||
* needs please refer to http://www.prestashop.com for more information.
|
||||
*
|
||||
* @author PrestaShop SA <contact@prestashop.com>
|
||||
* @copyright 2007-2013 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../../../');
|
||||
exit;
|
||||
@@ -0,0 +1,259 @@
|
||||
<?php
|
||||
return array(
|
||||
'informations' => array(
|
||||
'phone' => '+1 (888) 947-6543',
|
||||
'documentation' => 'http://doc.prestashop.com/',
|
||||
'documentation_upgrade' => 'http://docs.prestashop.com/display/PS15/Updating+PrestaShop',
|
||||
'forum' => 'http://www.prestashop.com/forums/viewcategory/85/',
|
||||
'blog' => 'http://www.prestashop.com/blog/',
|
||||
'support' => 'http://support.prestashop.com/en/',
|
||||
),
|
||||
'translations' => array(
|
||||
'menu_welcome' => 'Pilih bahasa',
|
||||
'menu_license' => 'Perjanjian lisensi',
|
||||
'menu_system' => 'Kompabilitas sistem',
|
||||
'menu_database' => 'Konfigurasi sistem',
|
||||
'menu_configure' => 'Informasi toko',
|
||||
'menu_process' => 'Instalasi toko',
|
||||
'Choose the installer language:' => 'Pilih bahasa :',
|
||||
'Field required' => 'Harus diisi',
|
||||
'Invalid shop name' => 'Nama toko tidak valid',
|
||||
'Your firstname contains some invalid characters' => 'Nama depan Anda berisi karakter yang tidak diperbolehkan',
|
||||
'Your lastname contains some invalid characters' => 'Nama belakang Anda berisi karakter yang tidak diperbolehkan',
|
||||
'Must be alphanumeric string with at least 8 characters' => 'Harus alfanumerik minimal 8 karakter',
|
||||
'The password is incorrect (alphanumeric string with at least 8 characters)' => 'Password tidak benar (alfanumerik minimal 8 karakter)',
|
||||
'Password and its confirmation are different' => 'Password dan konfirmasi password tidak sama',
|
||||
'This e-mail address is invalid' => 'Alamat e-mail salah',
|
||||
'The uploaded file exceeds the upload_max_filesize directive in php.ini' => 'File yang diupload melebihi seting upload_max_filesize yang ada di php.ini',
|
||||
'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form' => 'File yang diupload melebihi direktif MAX_FILE_SIZE yang diset pada form HTML',
|
||||
'The uploaded file was only partially uploaded' => 'File yang diupload tidak utuh/terpotong',
|
||||
'No file was uploaded' => 'Tidak ada file yang diupload',
|
||||
'Missing a temporary folder' => 'Folder temporer tidak ditemukan',
|
||||
'Failed to write file to disk' => 'Gagal menulis ke disk',
|
||||
'File upload stopped by extension' => 'Upload file terhenti karena ekstensi',
|
||||
'No error code available' => 'Tidak ada kode eror yang sesuai',
|
||||
'This is not a valid image file' => 'Bukan file gambar yang valid',
|
||||
'Image type is not supported' => 'File image tidak didukung',
|
||||
'Image folder %s is not writable' => 'Folder image % tidak dapat ditulisi',
|
||||
'Cannot upload the file' => 'Tidak dapat mengupload file',
|
||||
'Lingerie and Adult' => 'Lingerie dan perlengkapan dewasa',
|
||||
'Animals and Pets' => 'Binatang dan perliharaan',
|
||||
'Art and Culture' => 'Seni',
|
||||
'Babies' => 'Bayi',
|
||||
'Beauty and Personal Care' => 'Kecantikan',
|
||||
'Cars' => 'Kendaraan bermotor',
|
||||
'Computer Hardware and Software' => 'Komputer hardware dan software ',
|
||||
'Download' => 'Download',
|
||||
'Fashion and accessories' => 'Pakaian dan aksesoris',
|
||||
'Flowers, Gifts and Crafts' => 'Bunga, kado dan kerajinan',
|
||||
'Food and beverage' => 'Makanan dan minuman',
|
||||
'HiFi, Photo and Video' => 'Audio, foto dan vídeo',
|
||||
'Home and Garden' => 'Bunga dan tanaman',
|
||||
'Home Appliances' => 'Perlengkapan rumah tangga',
|
||||
'Jewelry' => 'Perhiasan',
|
||||
'Mobile and Telecom' => 'Telekomunikasi',
|
||||
'Services' => 'Jasa',
|
||||
'Shoes and accessories' => 'Sepatu dan aksesoris',
|
||||
'Sports and Entertainment' => 'Olahraga dan hiburan',
|
||||
'Travel' => 'Travel',
|
||||
'Database is connected' => 'Berhasil terhubung ke database',
|
||||
'A test e-mail has been sent to %s' => 'Tes email berhasil dikirim ke %s',
|
||||
'An error occurred while sending email, please verify your parameters' => 'Eror ketika mengirim email, cek ulang konfigurasi email Anda',
|
||||
'Create settings.inc file' => 'Membuat file settings.inc',
|
||||
'Create database tables' => 'Membuat tabel database',
|
||||
'Create default shop and languages' => 'Membuat toko dan bahasa',
|
||||
'Populate database tables' => 'Mengisi tabel database',
|
||||
'Configure shop information' => 'Konfigurasi toko',
|
||||
'Install modules' => 'Install modul',
|
||||
'Install demonstration data' => 'Install data untuk demo',
|
||||
'Install theme' => 'Install theme',
|
||||
'Send information e-mail' => 'Kirim informasi e-mail',
|
||||
'PHP parameters:' => 'Parameter PHP :',
|
||||
'Is PHP 5.1.2 or later installed ?' => 'Apakah PHP 5.1.2 atau lebih baru terinstall ?',
|
||||
'Can upload files ?' => 'Dapat mengupload file ?',
|
||||
'Can create new files and folders ?' => 'Dapat membuat file dan folder ?',
|
||||
'Is GD Library installed ?' => 'Apakah library GD terinstall ?',
|
||||
'Is MySQL support is on ?' => 'Apakah mendukung MySQL ?',
|
||||
'Recursive write permissions on files and folders:' => 'Hak akses rekursif untuk file dan folder:',
|
||||
'Can open external URLs ?' => 'Dapat membuka URL eksternal ?',
|
||||
'Is PHP register global option off (recommended) ?' => 'Opsi PHP register global dinon-aktifkan (disarankan) ?',
|
||||
'Is GZIP compression activated (recommended) ?' => 'Kompresi GZIP aktif (disarankan) ?',
|
||||
'Is Mcrypt extension available (recommended) ?' => 'Ekstensi Mcrypt tersedia (disarankan) ?',
|
||||
'Is PHP magic quotes option deactivated (recommended) ?' => ' Opsi PHP magic_quotes dinon-aktifkan (disarankan) ?',
|
||||
'Is Dom extension loaded ?' => 'Apakah ekstensi DOM terpasang ?',
|
||||
'Is PDO MySQL extension loaded ?' => 'Apakah PDO MySQL terpasang ?',
|
||||
'Shop settings and merchant account information' => 'Seting toko dan akun',
|
||||
'Shop name:' => 'Nama toko :',
|
||||
'Main activity:' => 'Kegiatan :',
|
||||
'Please choose your main activity' => 'Harap pilih kegiatan utama toko ini',
|
||||
'Other activity...' => 'Kegiatan lainnya...',
|
||||
'This information is not required, it will only be used for statistical purposes. This information does not change anything in your store.' => 'Informasi ini tidak harus diisi, hanya untuk keperluan statistik dan tidak ada pengaruh apapun ke toko Anda.',
|
||||
'Install demo products:' => 'Install produk demo :',
|
||||
'Yes' => 'Ya',
|
||||
'No' => 'Tidak',
|
||||
'Demo products are a good way to learn how to use PrestaShop. You should install them if you are not familiar with it.' => 'Demo produk diperlukan jika Anda ingin belajar cara menggunakan PrestaShop. Disarankan untuk diinstall jika Anda masih belum terbiasa dengan Prestashop.',
|
||||
'Default country:' => 'Negara :',
|
||||
'Select your country' => 'Pilih negara Anda',
|
||||
'Shop timezone:' => 'Zona waktu :',
|
||||
'Select your timezone' => 'Pilih zona waktu',
|
||||
'Shop logo:' => 'Logo',
|
||||
'Recommended dimensions:' => 'Dimensi yang direkomendasikan :',
|
||||
'First name:' => 'Nama depan :',
|
||||
'Last name:' => 'Nama belakang :',
|
||||
'E-mail address:' => 'Alamat e-mail :',
|
||||
'Shop password:' => 'Password toko :',
|
||||
'Re-type to confirm:' => 'Tulis ulang password untuk konfirmasi :',
|
||||
'Receive this information by e-mail' => 'Kirim informasi ini melalui e-mail',
|
||||
'Warning: You will receive this information only if your e-mail configuration is correct.' => 'Perhatian: Anda akan menerima informasi ini jika konfigurasi e-mail Anda benar.',
|
||||
'Configure your database by filling out the following fields:' => 'Konfigurasi database Anda dengan mengisi field berikut ini :',
|
||||
'You have to create a database, help available in <a href="http://doc.prestashop.com" target="_blank">our online documentation</a>.' => 'Anda harus membuat database, panduan tersedia di <a href="http://doc.prestashop.com" target="_blank">dokumentasi online Prestashop</a>.',
|
||||
'Database server address:' => 'Alamat server database :',
|
||||
'If you want to use a different port, add :XX after your server address where XX is your port number.' => 'Jika Anda ingin menggunakan port yang berbeda, tambahkan :XX setelah alamat server dimana XX adalah nomor port yang Anda gunakan.',
|
||||
'Database name:' => 'Nama database :',
|
||||
'Database login:' => 'User database :',
|
||||
'Database password:' => 'Password database :',
|
||||
'Database Engine:' => 'Engine database :',
|
||||
'Tables prefix:' => 'Prefix nama tabel :',
|
||||
'Drop existing tables (mode dev):' => 'Hapus tabel yang ada (dev mode) :',
|
||||
'Verify now!' => 'Cek sekarang !',
|
||||
'E-mail delivery set-up' => 'Setup e-mail',
|
||||
'Configure SMTP manually (advanced users only)' => 'Konfigurasikan SMTP server secara manual (untuk pengguna ahli)',
|
||||
'By default, the PHP mail() function is used' => 'Secara default, fungsi PHP mail() yang digunakan',
|
||||
'SMTP server address:' => 'Alamat server SMTP',
|
||||
'Encryption:' => 'Enkripsi :',
|
||||
'None' => '-',
|
||||
'Port:' => 'Port :',
|
||||
'Login:' => 'Login :',
|
||||
'Password:' => 'Password :',
|
||||
'enter@your.email' => 'alamat@email.anda',
|
||||
'Send me a test email!' => 'Kirim tes email !',
|
||||
'Next' => 'Lanjutkan',
|
||||
'Back' => 'Kembali',
|
||||
'Official forum' => 'Forum resmi',
|
||||
'Support' => 'Support',
|
||||
'Documentation' => 'Dokumentasi',
|
||||
'Contact us' => 'Hubungi kami',
|
||||
'Forum' => 'Forum',
|
||||
'Blog' => 'Blog',
|
||||
'Done!' => 'Selesai !',
|
||||
'An error occured during installation...' => 'Eror ketika proses instalasi... ',
|
||||
'You can use the links on the left column to go back to the previous steps, or restart the installation process by <a href="%s">clicking here</a>.' => 'Anda dapat menggunakan tautan yang ada di kolom sebelah kiri untuk kembali ke langkah sebelumnya the, atau mengulang proses instalasi dengan <a href="%s">klik tautan ini</a>.',
|
||||
'Your installation is finished!' => 'Proses instalasi selesai !',
|
||||
'You have just finished installing your shop. Thank you for using PrestaShop!' => 'Proses instalasi berhasil dan selesai. Terima kasih telah menggunakan PrestaShop !',
|
||||
'Please remember your login information:' => 'Harap ingat informasi login Anda berikut ini :',
|
||||
'WARNING: For security purposes, you must delete the "install" folder.' => 'PERHATIAN: Untuk keamanan, Anda harus menghapus folder "install".',
|
||||
'Back Office' => 'Back Office',
|
||||
'Manage your store using your Back Office. Manage your orders and customers, add modules, change themes, etc.' => 'Kelola toko Anda melalui backoffice, dimana Anda dapat mengatur order, pelanggan, memasang modul, merubah theme dan banyak lagi.., ',
|
||||
'Manage your store' => 'Kelola toko Anda',
|
||||
'Front Office' => 'Front Office',
|
||||
'Discover your store as your future customers will see it!' => 'Jelajahi toko Anda sebagaimana pelanggan mengunjungi website Anda !',
|
||||
'Discover your store' => 'Kunjungi website Anda',
|
||||
'Required set-up. Please verify the following checklist items are true.' => 'Harus diseting! Harap pastikan daftar ceklist berikut ini valid.',
|
||||
'Your configuration is valid, click next to continue!' => 'Konfigurasi Anda sudah benar, silahkan klik tombol lanjutkan !',
|
||||
'Your configuration is invalid. Please fix the issues below:' => 'Konfigurasi tidak benar. Harap perbaiki permasalahan berikut ini:',
|
||||
'Optional set-up' => 'Seting opsional',
|
||||
'Refresh these settings' => 'Refresh setting',
|
||||
'Welcome to the PrestaShop %s Installer.' => 'Selamat datang di instalasi Prestashop %s',
|
||||
'The installation process should take only few minutes!' => 'Proses instalasi hanya memerlukan waktu beberapa menit saja!',
|
||||
'If you need help, do not hesitate to check <a href="%1$s" target="_blank">our documentation</a> or to contact our support team: %2$s' => 'Jika memerlukan bantuan, jangan ragu untuk membaca <a href="%1$s" target="_blank">dokumentasi</a> atau hubungi tim kami di : %2$s',
|
||||
'Did you know?' => 'Tahukah Anda ?',
|
||||
'PrestaShop and its community offers over %d different languages for free, directly accessible from your Back Office on the Localization tab.' => 'PrestaShop dan komunitasnya menawarkan lebih dari %d bahasa secara gratis, tersedia langsung dalam back office Anda pada menu Lokalisasi',
|
||||
'License Agreements' => 'Perjanjian lisensi',
|
||||
'PrestaShop core is released under the OSL 3.0 while PrestaShop modules and themes are released under the AFL 3.0.' => 'PrestaShop core dirilis dibawah OSL 3.0 sementara modul PrestaShop dan themes dirilis dibawah AFL 3.0.',
|
||||
'I agree to the above terms and conditions.' => 'Saya setuju dengan syarat dan ketentuan diatas.',
|
||||
'I agree to participate in improving the solution by sending anonymous information about my configuration.' => 'Saya setuju untuk berpartisipasi mengembangkan Prestashop dengan mengirimkan informasi konfigurasi saya secara anonim.',
|
||||
'If you have any questions, please visit our <a href="%1$s" target="_blank">documentation</a> and <a href="%2$s" target="_blank">community forum</a>.' => 'Jika Anda memiliki pertanyaan, silahkan kunjungi <a href="%1$s" target="_blank">halaman dokumentasi</a> dan <a href="%2$s" target="_blank">forum</a>.',
|
||||
'Test message from PrestaShop' => 'Tes pesan dari PrestaShop',
|
||||
'This is a test message, your server is now available to send email' => 'Tes pesan, server Anda dapat digunakan untuk mengirimkan email.',
|
||||
'%s - Login information' => '%s - Informasi login',
|
||||
'An SQL error occured for entity <i>%1$s</i>: <i>%2$s</i>' => 'SQL error untuk objek <i>%1$s</i> : <i>%2$s</i>',
|
||||
'Cannot create image "%1$s" for entity "%2$s"' => 'Tidak dapat membuat image "%1$s" untuk objek "%2$s"',
|
||||
'Cannot create image "%1$s" (bad permissions on folder "%2$s")' => 'Tidak dapat membuat image "%1$s" (masalah hak akses di "%2$s")',
|
||||
'Cannot create image "%s"' => 'Tidak dapat membuat image "%s"',
|
||||
'SQL error on query <i>%s</i>' => 'SQL error pada query <i>%s</i>',
|
||||
'Server name is not valid' => 'Nama server tidak valid',
|
||||
'You must enter a database name' => 'Nama database harus diisi',
|
||||
'You must enter a database login' => 'Login database harus diisi',
|
||||
'Tables prefix is invalid' => 'Prefix tabel tidak valid',
|
||||
'Wrong engine chosen for MySQL' => 'Pilihan database engine untuk MySQL tidak valid',
|
||||
'Cannot convert database data to utf-8' => 'Tidak dapat melakukan konversi data ke utf-8',
|
||||
'At least one table with same prefix was already found, please change your prefix or drop your database' => 'Tabel dengan prefix yang sama ditemukan, harap ganti prefix Anda atau hapus terlebih dahulu databasenya',
|
||||
'Database Server is not found. Please verify the login, password and server fields' => 'Server database tidak ditemukan. Harap cek informasi login, password dan server',
|
||||
'Connection to MySQL server succeeded, but database "%s" not found' => 'Koneksi ke server MySQL berhasil, tapi database "%s" tidak ditemukan',
|
||||
'Engine innoDB is not supported by your MySQL server, please use MyISAM' => 'Engine innoDB tidak didukung oleh server MySQL Anda, harap gunakan MyISAM',
|
||||
'%s file is not writable (check permissions)' => 'File %s tidak dapat ditulisi (cek masalah hak akses)',
|
||||
'%s folder is not writable (check permissions)' => 'Folder %s tidak dapat ditulisi (cek masalah hak akses)',
|
||||
'Cannot write settings file' => 'Tidak dapat menulis file setting',
|
||||
'Database structure file not found' => 'Struktur database tidak ditemukan',
|
||||
'Cannot create group shop' => 'Tidak dapat membuat grup toko',
|
||||
'Cannot create shop' => 'Tidak dapat membuat toko',
|
||||
'Cannot create shop URL' => 'Tidak dapat membuat URL untuk toko Anda',
|
||||
'File "language.xml" not found for language iso "%s"' => 'File "language.xml" tidak ditemukan untuk kode iso bahasa "%s"',
|
||||
'File "language.xml" not valid for language iso "%s"' => 'File "language.xml" tidak ditemukan untuk kode iso bahasa "%s"',
|
||||
'Cannot install language "%s"' => 'Tidak dapat meng-install bahasa "%s"',
|
||||
'Cannot create admin account' => 'Tidak dapat membuat akun admin',
|
||||
'Cannot install module "%s"' => 'Tidak dapat menginstall modul "%s"',
|
||||
'Fixtures class "%s" not found' => 'Class "%s" tidak ditemukan',
|
||||
'"%s" must be an instane of "InstallXmlLoader"' => '"%s" harus instance dari "InstallXmlLoader"',
|
||||
'Display' => 'Display',
|
||||
'<b>Warning: You cannot use anymore this tool to upgrade your store.</b><br /><br />You already have <b>PrestaShop version %1$s installed</b>.<br /><br />If you want to upgrade to the latest version please read our documentation: <a href="%2$s">%2$s</a>' => '<b>Perhatian: Anda tidak dapat menggunakan tool ini untuk melakukan upgrade Prestashop Anda.</b><br /><br />Anda menggunakan <b>PrestaShop versi %1$s</b>.<br /><br />Jika ingin melakukan upgrade, silahkan baca panduannya di: <a href="%2$s">%2$s</a>',
|
||||
'PrestaShop Wizard Installer' => 'Instalasi PrestaShop',
|
||||
'Information about your Store' => 'Informasi tentang toko Anda',
|
||||
'Help us learn more about your store so we can offer you optimal guidance and the best features for your business!' => 'Bantu kami mengenal toko Anda sehingga kami dapat menawarkan bantuan yang optimal dan fitur-fitur terbaik untuk bisnis Anda!',
|
||||
'Optional - You can add you logo at a later time.' => 'Opsional – Anda dapat menambahkan logo nanti.',
|
||||
'Your Account' => 'Akun Anda',
|
||||
'This email address will be your username to access your store\'s back office.' => 'Alamat email ini akan menjadi username Anda untuk mengakses backoffice.',
|
||||
'PrestaShop can provide you with guidance on a regular basis by sending you tips on how to optimize the management of your store which will help you grow your business. If you do not wish to receive these tips, please uncheck this box.' => 'PrestaShop menawarkan artikel dan tips yang dikirim secara teratur yang berisi tentang optimasi atau bagaimana mengatur toko Anda sehingga bisnis Anda berkembang lebih baik lagi. Jika tidak ingin menerima tips ini, silahkan uncheck kotak dibawah ini.',
|
||||
'To use PrestaShop, you must <a href="http://doc.prestashop.com/display/PS15/Installing+PrestaShop#InstallingPrestaShop-Creatingadatabaseforyourshop" target="_blank">create a database</a> to collect all of your store’s data-related activities.' => 'Untuk menggunakan PrestaShop, Anda harus <a href="http://doc.prestashop.com/display/PS15/Installing+PrestaShop#InstallingPrestaShop-Creatingadatabaseforyourshop" target="_blank">membuat database</a> untuk menyimpan data.',
|
||||
'Please complete the fields below in order for PrestaShop to connect to your database. ' => 'Harap lengkapi field dibawah ini agar Prestashop dapat terhubung ke database Anda..',
|
||||
'The default port is 3306. To use a different port, add the port number at the end of your server’s address i.e ":4242".' => 'Port default adalah 3306. Untuk menggunakan port yang berbeda, tambahkan nomor port diakhir nama server, misalnya ":4242".',
|
||||
'Test your database connection now!' => 'Tes koneksi ke database sekarang!',
|
||||
'PrestaShop Installation Assistant' => 'Instalasi Prestashop',
|
||||
'Installation Assistant' => 'Instalasi Prestashop',
|
||||
'To enjoy the many features that are offered by PrestaShop, please read the license terms below. PrestaShop core is licensed under OSL 3.0, while the modules and themes are licensed under AFL 3.0.' => 'Untuk menikmati fitur-fitur yang ditawarkan PrestaShop, harap baca lisensi dibawah. PrestaShop core dilisensikan menggunakan OSL 3.0, sementara modul dan theme dilisensikan menggunakan AFL 3.0.',
|
||||
'Print my login information' => 'Cetak informasi login saya',
|
||||
'We are currently checking PrestaShop compatibility with your system environment' => 'Sedang melakukan cek kompabilitas sistem Anda dengan Prestashop.',
|
||||
'PrestaShop compatibility with your system environment has been verified!' => 'Kompabilitas Prestashop dengan sistem Anda berhasil diverifikasi!',
|
||||
'Oops! Please correct the item(s) below, and then click "Refresh information" to test the compatibility of your new system.' => 'Oops! Harap perbaiki item-item dibawah terlebih dahulu, lalu klik tombol "Refresh" untuk tes ulang kompabilitas sistem Anda.',
|
||||
'The installation of PrestaShop is quick and easy. In just a few moments, you will become part of a community consisting of more than 130,000 merchants. You are on the way to creating your own unique online store that you can manage easily every day.' => 'Proses instalasi PrestaShop cepat dan mudah. Dalam beberapa saat lagi, Anda akan menjadi bagian dari komunitas aktif yang terdiri dari 130.000 toko online. Andapun akan membuat toko online unik untuk Anda sendiri yang dapat dikelola dengan mudah.',
|
||||
'Continue the installation in:' => 'Lanjutkan instalasi dalam bahasa:',
|
||||
'The language selection above only applies to the Installation Assistant. Once your store is installed, you can choose the language of your store from over %d translations, all for free!' => 'Pilihan bahasa diatas hanya berlaku ketika proses instalasi. Setelah terinstall, Anda dapat memilih bahasa untuk toko Anda dari lebih %d bahasa yang tersedia secara gratis!',
|
||||
'The field %s is limited to %d characters' => 'Field %s dibayasi hanya %d karakter',
|
||||
'An error occurred during logo copy.' => 'Eror ketika menyalin logo',
|
||||
'An error occurred during logo upload.' => 'Eror ketika upload logo',
|
||||
'PHP 5.1.2 or later is not enabled' => 'PHP 5.1.2 atau terbaru tidak aktif',
|
||||
'Cannot upload files' => 'Tidak dapat mengupload file',
|
||||
'Cannot create new files and folders' => 'Tidak dapat membuat file dan folder baru',
|
||||
'GD Library is not installed' => 'GD Library tidak tersedia',
|
||||
'MySQL support is not activated' => 'Dukungan MySQL tidak diaktifkan',
|
||||
'Cannot open external URLs' => 'Tidak dapat membuka URL lain, akses diblok.',
|
||||
'PHP register global option is on' => 'Opsi PHP register global aktif',
|
||||
'GZIP compression is not activated' => 'Kompresi GZIP tidak aktif',
|
||||
'Mcrypt extension is not enabled' => 'Ekstensi Mcrypt tidak aktif',
|
||||
'Mbstring extension is not enabled' => 'Ekstensi Mbstring tidak aktif',
|
||||
'PHP magic quotes option is enabled' => 'Opsi PHP magic quotes aktif',
|
||||
'Dom extension is not loaded' => 'Extensi Dom tidak aktif',
|
||||
'PDO MySQL extension is not loaded' => 'Extensi PDO MySQL tidak aktif',
|
||||
'Cannot copy flag language "%s"' => 'Tidak dapat menyalin icon bendera untuk bahasa "%s" ',
|
||||
'Sign-up to the newsletter' => 'Berlangganan newsletter',
|
||||
'If you need some assistance during the installation process, please call our team at %s and one of our experts will be happy to help.' => 'Jika memerlukan bantuan selama proses instalasi, hubungi tim kami di %s dan satu dari tim ahli kami dengan senang hati akan membantu Anda.',
|
||||
'Contact us!' => 'Hubungi kami!',
|
||||
'E-mail:' => 'E-mail:',
|
||||
'PrestaShop requires at least 32M of memory to run, please check the memory_limit directive in php.ini or contact your host provider' => 'PrestaShop membutuhkan memori sedikitnya 32M, harap cek direktif memory_limit di php.ini atau hubungi tempat hosting Anda',
|
||||
'Your PHP sessions path is not writable - check with your hosting provider:' => 'PHP sessions path tidak dapat ditulisi - cek ke tempat hosting Anda',
|
||||
'Database is created' => 'Database berhasil dibuat',
|
||||
'Cannot create the database automatically' => 'Tidak dapat membuat database secara otomatis',
|
||||
'Install modules Addons' => 'Install modul Addons',
|
||||
'Attempt to create the database automatically' => 'Mencoba membuat database secara otomatis',
|
||||
'Country:' => 'Negara :',
|
||||
'Must be letters and numbers with at least 8 characters' => 'Harus huruf atau angka minimum 8 karakter',
|
||||
'To install PrestaShop, you need to have JavaScript enabled in your browser.' => 'Untuk proses instalasi Prestashop, Javascript di browser Anda harus aktif.',
|
||||
'http://doc.prestashop.com/display/PS15/What+you+need+to+get+started#HowtoenableJavaScript-HowtoenableJavaScript' => 'http://doc.prestashop.com/display/PS15/What+you+need+to+get+started#HowtoenableJavaScript-HowtoenableJavaScript',
|
||||
'To enjoy the many features that are offered for free by PrestaShop, please read the license terms below. PrestaShop core is licensed under OSL 3.0, while the modules and themes are licensed under AFL 3.0.' => 'Untuk menikmati fitur gratis lainnya di Prestashop, harap baca aturan lisensi dibawah. Prestashop core dilisensikan dibawah OSL 3.0, sementara modul dan theme dilisensikan dibawah AFL 3.0.',
|
||||
'For security purposes, you must delete the "install" folder.' => 'Untuk alasan keamanan, folder "install" sebaiknya dihapus.',
|
||||
'http://doc.prestashop.com/display/PS15/Installing+PrestaShop#InstallingPrestaShop-Completingtheinstallation' => 'http://doc.prestashop.com/display/PS15/Installing+PrestaShop#InstallingPrestaShop-Completingtheinstallation',
|
||||
'The installation of PrestaShop is quick and easy. In just a few moments, you will become part of a community consisting of more than 150,000 merchants. You are on the way to creating your own unique online store that you can manage easily every day.' => 'Proses instalasi PrestaShop cepat dan mudah. Dalam beberapa saat lagi, Anda akan menjadi bagian dari komunitas aktif yang terdiri dari 130.000 toko online. Andapun akan membuat toko online unik untuk Anda sendiri yang dapat dikelola dengan mudah.',
|
||||
'Files' => 'File',
|
||||
'All files are not successfuly uploaded on your server' => 'Tidak semua file berhasil diunggah ke server',
|
||||
),
|
||||
);
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<language>
|
||||
<name><![CDATA[Indonesia (Indonesia)]]></name>
|
||||
<language_code>id</language_code>
|
||||
<date_format_lite>d/m/Y</date_format_lite>
|
||||
<date_format_full>d/m/Y H:i:s</date_format_full>
|
||||
<is_rtl>false</is_rtl>
|
||||
</language>
|
||||
@@ -0,0 +1,10 @@
|
||||
Halo {firstname} {lastname},
|
||||
|
||||
Berikut adalah informasi login Anda ke {shop_name}:
|
||||
|
||||
Password: {passwd}
|
||||
E-mail : {email}
|
||||
|
||||
{shop_name} - {shop_url}
|
||||
|
||||
{shop_url} didukung oleh PrestaShop™
|
||||