diff --git a/controllers/admin/AdminImportController.php b/controllers/admin/AdminImportController.php
index 2aefb235c..0c8fe2920 100644
--- a/controllers/admin/AdminImportController.php
+++ b/controllers/admin/AdminImportController.php
@@ -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();
}
diff --git a/controllers/front/ParentOrderController.php b/controllers/front/ParentOrderController.php
index 10e17bb85..3a02dd9dd 100644
--- a/controllers/front/ParentOrderController.php
+++ b/controllers/front/ParentOrderController.php
@@ -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')),
));
diff --git a/install-dev/fixtures/apple/langs/id/data/attribute.xml b/install-dev/fixtures/apple/langs/id/data/attribute.xml
new file mode 100644
index 000000000..f27df851c
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/id/data/attribute.xml
@@ -0,0 +1,63 @@
+
+
+
+ 2GB
+
+
+ 4GB
+
+
+ Metal
+
+
+ Blue
+
+
+ Pink
+
+
+ Green
+
+
+ Orange
+
+
+ Optional 64GB solid-state drive
+
+
+ 80GB Parallel ATA Drive @ 4200 rpm
+
+
+ 1.60GHz Intel Core 2 Duo
+
+
+ 1.80GHz Intel Core 2 Duo
+
+
+ 80GB: 20,000 Songs
+
+
+ 160GB: 40,000 Songs
+
+
+ Black
+
+
+ 8GB
+
+
+ 16GB
+
+
+ 32GB
+
+
+ Purple
+
+
+ Yellow
+
+
+ Red
+
+
diff --git a/install-dev/fixtures/apple/langs/id/data/attribute_group.xml b/install-dev/fixtures/apple/langs/id/data/attribute_group.xml
new file mode 100644
index 000000000..221a81bc7
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/id/data/attribute_group.xml
@@ -0,0 +1,15 @@
+
+
+
+ Disk space
+ Disk space
+
+
+ Color
+ Color
+
+
+ ICU
+ Processor
+
+
diff --git a/install-dev/fixtures/apple/langs/id/data/attributegroup.xml b/install-dev/fixtures/apple/langs/id/data/attributegroup.xml
new file mode 100644
index 000000000..977fceeb7
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/id/data/attributegroup.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/install-dev/fixtures/apple/langs/id/data/carrier.xml b/install-dev/fixtures/apple/langs/id/data/carrier.xml
new file mode 100644
index 000000000..c59766e73
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/id/data/carrier.xml
@@ -0,0 +1,6 @@
+
+
+
+ Delivery next day!
+
+
diff --git a/install-dev/fixtures/apple/langs/id/data/category.xml b/install-dev/fixtures/apple/langs/id/data/category.xml
new file mode 100644
index 000000000..eeae63831
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/id/data/category.xml
@@ -0,0 +1,27 @@
+
+
+
+ iPods
+ Now that you can buy movies from the iTunes Store and sync them to your iPod, the whole world is your theater.
+ music-ipods
+
+
+
+
+
+ Accessories
+ Wonderful accessories for your iPod
+ accessories-ipod
+
+
+
+
+
+ Laptops
+ 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.
+ laptops
+ Apple laptops
+ Apple laptops MacBook Air
+ Powerful and chic Apple laptops
+
+
diff --git a/install-dev/fixtures/apple/langs/id/data/feature.xml b/install-dev/fixtures/apple/langs/id/data/feature.xml
new file mode 100644
index 000000000..7682c6495
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/id/data/feature.xml
@@ -0,0 +1,18 @@
+
+
+
+ Height
+
+
+ Width
+
+
+ Depth
+
+
+ Weight
+
+
+ Headphone
+
+
diff --git a/install-dev/fixtures/apple/langs/id/data/feature_value.xml b/install-dev/fixtures/apple/langs/id/data/feature_value.xml
new file mode 100644
index 000000000..d3a824d22
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/id/data/feature_value.xml
@@ -0,0 +1,45 @@
+
+
+
+ Jack stereo
+
+
+ Mini-jack stereo
+
+
+ 2.75 in
+
+
+ 2.06 in
+
+
+ 49.2 g
+
+
+ 0.26 in
+
+
+ 1.07 in
+
+
+ 1.62 in
+
+
+ 15.5 g
+
+
+ 0.41 in (clip included)
+
+
+ 4.33 in
+
+
+ 2.76 in
+
+
+ 120g
+
+
+ 0.31 in
+
+
diff --git a/install-dev/fixtures/apple/langs/id/data/featurevalue.xml b/install-dev/fixtures/apple/langs/id/data/featurevalue.xml
new file mode 100644
index 000000000..d101bed96
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/id/data/featurevalue.xml
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/install-dev/fixtures/apple/langs/id/data/image.xml b/install-dev/fixtures/apple/langs/id/data/image.xml
new file mode 100644
index 000000000..49a836dc3
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/id/data/image.xml
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/install-dev/fixtures/apple/langs/id/data/index.php b/install-dev/fixtures/apple/langs/id/data/index.php
new file mode 100644
index 000000000..fcb7f5c2b
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/id/data/index.php
@@ -0,0 +1,35 @@
+
+* @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;
\ No newline at end of file
diff --git a/install-dev/fixtures/apple/langs/id/data/manufacturer.xml b/install-dev/fixtures/apple/langs/id/data/manufacturer.xml
new file mode 100644
index 000000000..f06ff9661
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/id/data/manufacturer.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/install-dev/fixtures/apple/langs/id/data/order_message.xml b/install-dev/fixtures/apple/langs/id/data/order_message.xml
new file mode 100644
index 000000000..93ad3b501
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/id/data/order_message.xml
@@ -0,0 +1,12 @@
+
+
+
+ Delay
+ 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,
+
+
diff --git a/install-dev/fixtures/apple/langs/id/data/ordermessage.xml b/install-dev/fixtures/apple/langs/id/data/ordermessage.xml
new file mode 100644
index 000000000..e743f5d97
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/id/data/ordermessage.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/install-dev/fixtures/apple/langs/id/data/product.xml b/install-dev/fixtures/apple/langs/id/data/product.xml
new file mode 100644
index 000000000..0c405b001
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/id/data/product.xml
@@ -0,0 +1,135 @@
+
+
+
+ <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>
+ <p>New design. New features. Now in 8GB and 16GB. iPod nano rocks like never before.</p>
+ ipod-nano
+
+
+
+ iPod Nano
+ In stock
+
+
+
+ <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>
+ <p>iPod shuffle, the world’s most wearable music player, now clips on in more vibrant blue, green, pink, and red.</p>
+ ipod-shuffle
+
+
+
+ iPod shuffle
+ In stock
+
+
+
+ <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>
+ 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.
+ macbook-air
+
+
+
+ MacBook Air
+
+
+
+
+ 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.
+ 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.
+ macbook
+
+
+
+ MacBook
+
+
+
+
+ <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>
+ <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>
+ ipod-touch
+
+
+
+ iPod touch
+
+
+
+
+ <p>Lorem ipsum</p>
+ <p>Lorem ipsum</p>
+ belkin-leather-folio-for-ipod-nano-black-chocolate
+
+
+
+ Belkin Leather Folio for iPod nano - Black / Chocolate
+
+
+
+
+ <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>
+ <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>
+ ecouteurs-a-isolation-sonore-shure-se210-blanc
+
+
+
+ Shure SE210 Sound-Isolating Earphones for iPod and iPhone
+
+
+
+
diff --git a/install-dev/fixtures/apple/langs/id/data/profile.xml b/install-dev/fixtures/apple/langs/id/data/profile.xml
new file mode 100644
index 000000000..02aa4d76c
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/id/data/profile.xml
@@ -0,0 +1,15 @@
+
+
+
+ Administrator
+
+
+ Logistician
+
+
+ Translator
+
+
+ Salesman
+
+
diff --git a/install-dev/fixtures/apple/langs/id/data/scene.xml b/install-dev/fixtures/apple/langs/id/data/scene.xml
new file mode 100644
index 000000000..f7270d3ff
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/id/data/scene.xml
@@ -0,0 +1,12 @@
+
+
+
+ The iPods Nano
+
+
+ The iPods
+
+
+ The MacBooks
+
+
diff --git a/install-dev/fixtures/apple/langs/id/data/supplier.xml b/install-dev/fixtures/apple/langs/id/data/supplier.xml
new file mode 100644
index 000000000..e9db64034
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/id/data/supplier.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/install-dev/fixtures/apple/langs/id/data/tag.xml b/install-dev/fixtures/apple/langs/id/data/tag.xml
new file mode 100644
index 000000000..b781c0ed2
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/id/data/tag.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/install-dev/fixtures/apple/langs/id/index.php b/install-dev/fixtures/apple/langs/id/index.php
new file mode 100644
index 000000000..67d9932bf
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/id/index.php
@@ -0,0 +1,35 @@
+
+* @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;
\ No newline at end of file
diff --git a/install-dev/langs/id/data/carrier.xml b/install-dev/langs/id/data/carrier.xml
new file mode 100644
index 000000000..d1ebb0c7e
--- /dev/null
+++ b/install-dev/langs/id/data/carrier.xml
@@ -0,0 +1,6 @@
+
+
+
+ Ambil di toko
+
+
diff --git a/install-dev/langs/id/data/category.xml b/install-dev/langs/id/data/category.xml
new file mode 100644
index 000000000..d619f5a04
--- /dev/null
+++ b/install-dev/langs/id/data/category.xml
@@ -0,0 +1,19 @@
+
+
+
+ Root
+
+ root
+
+
+
+
+
+ Beranda
+
+ beranda
+
+
+
+
+
diff --git a/install-dev/langs/id/data/cms.xml b/install-dev/langs/id/data/cms.xml
new file mode 100644
index 000000000..490e8515d
--- /dev/null
+++ b/install-dev/langs/id/data/cms.xml
@@ -0,0 +1,42 @@
+
+
+
+ Pengiriman barang
+ Tata cara pengiriman barang
+ pengiriman barang
+ <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>
+ pengiriman-barang
+
+
+ Kebijakan privasi dan hukum
+ Kebijakan privasi dan hukum
+ notice, legal, credits
+ <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>™ open-source software.</p>
+ kebijakan-privasi-dan-hukum
+
+
+ Syarat pemakaian
+ Syarat pemakaian
+ conditions, terms, use, sell
+ <h2>Syarat dan ketentuan pemakaian website</h2><p>Tentang syarat dan ketentuan pemakaian website (penggunaan cookies, penggunaan data customer, dsb)</p>
+
+ syarat-pemakaian
+
+
+ Tentang kami
+ Lebih lanjut mengenai kami
+ about us, informations
+ <h2>Tentang kami</h2>
+<p>Informasi tentang toko Anda</p>
+
+ tentang-kami
+
+
+ Pembayaran
+ Pembayaran
+ secure payment, ssl, visa, mastercard, paypal
+ <h2>Pembayaran</h2>
+<p>Detail tentang pembayaran</p>
+ pembayaran
+
+
diff --git a/install-dev/langs/id/data/cms_category.xml b/install-dev/langs/id/data/cms_category.xml
new file mode 100644
index 000000000..e4766e093
--- /dev/null
+++ b/install-dev/langs/id/data/cms_category.xml
@@ -0,0 +1,11 @@
+
+
+
+ Beranda
+
+ beranda
+
+
+
+
+
diff --git a/install-dev/langs/id/data/configuration.xml b/install-dev/langs/id/data/configuration.xml
new file mode 100644
index 000000000..eb0121de4
--- /dev/null
+++ b/install-dev/langs/id/data/configuration.xml
@@ -0,0 +1,21 @@
+
+
+
+ IN
+
+
+ DE
+
+
+ a|the|of|on|in|and|to
+
+
+ 0
+
+
+ Halo,
+
+Salam kami,
+Customer service
+
+
diff --git a/install-dev/langs/id/data/contact.xml b/install-dev/langs/id/data/contact.xml
new file mode 100644
index 000000000..beded785c
--- /dev/null
+++ b/install-dev/langs/id/data/contact.xml
@@ -0,0 +1,9 @@
+
+
+
+ Jika terdapat masalah teknis di website kami
+
+
+ Untuk pertanyaan seputar produk dan pembelian
+
+
diff --git a/install-dev/langs/id/data/country.xml b/install-dev/langs/id/data/country.xml
new file mode 100644
index 000000000..d57ea1e36
--- /dev/null
+++ b/install-dev/langs/id/data/country.xml
@@ -0,0 +1,735 @@
+
+
+
+ Germany
+
+
+ Austria
+
+
+ Belgium
+
+
+ Canada
+
+
+ China
+
+
+ Spain
+
+
+ Finland
+
+
+ France
+
+
+ Greece
+
+
+ Italy
+
+
+ Japan
+
+
+ Luxemburg
+
+
+ Netherlands
+
+
+ Poland
+
+
+ Portugal
+
+
+ Czech Republic
+
+
+ United Kingdom
+
+
+ Sweden
+
+
+ Switzerland
+
+
+ Denmark
+
+
+ United States
+
+
+ HongKong
+
+
+ Norway
+
+
+ Australia
+
+
+ Singapore
+
+
+ Ireland
+
+
+ New Zealand
+
+
+ South Korea
+
+
+ Israel
+
+
+ South Africa
+
+
+ Nigeria
+
+
+ Ivory Coast
+
+
+ Togo
+
+
+ Bolivia
+
+
+ Mauritius
+
+
+ Romania
+
+
+ Slovakia
+
+
+ Algeria
+
+
+ American Samoa
+
+
+ Andorra
+
+
+ Angola
+
+
+ Anguilla
+
+
+ Antigua and Barbuda
+
+
+ Argentina
+
+
+ Armenia
+
+
+ Aruba
+
+
+ Azerbaijan
+
+
+ Bahamas
+
+
+ Bahrain
+
+
+ Bangladesh
+
+
+ Barbados
+
+
+ Belarus
+
+
+ Belize
+
+
+ Benin
+
+
+ Bermuda
+
+
+ Bhutan
+
+
+ Botswana
+
+
+ Brazil
+
+
+ Brunei
+
+
+ Burkina Faso
+
+
+ Burma (Myanmar)
+
+
+ Burundi
+
+
+ Cambodia
+
+
+ Cameroon
+
+
+ Cape Verde
+
+
+ Central African Republic
+
+
+ Chad
+
+
+ Chile
+
+
+ Colombia
+
+
+ Comoros
+
+
+ Congo, Dem. Republic
+
+
+ Congo, Republic
+
+
+ Costa Rica
+
+
+ Croatia
+
+
+ Cuba
+
+
+ Cyprus
+
+
+ Djibouti
+
+
+ Dominica
+
+
+ Dominican Republic
+
+
+ East Timor
+
+
+ Ecuador
+
+
+ Egypt
+
+
+ El Salvador
+
+
+ Equatorial Guinea
+
+
+ Eritrea
+
+
+ Estonia
+
+
+ Ethiopia
+
+
+ Falkland Islands
+
+
+ Faroe Islands
+
+
+ Fiji
+
+
+ Gabon
+
+
+ Gambia
+
+
+ Georgia
+
+
+ Ghana
+
+
+ Grenada
+
+
+ Greenland
+
+
+ Gibraltar
+
+
+ Guadeloupe
+
+
+ Guam
+
+
+ Guatemala
+
+
+ Guernsey
+
+
+ Guinea
+
+
+ Guinea-Bissau
+
+
+ Guyana
+
+
+ Haiti
+
+
+ Heard Island and McDonald Islands
+
+
+ Vatican City State
+
+
+ Honduras
+
+
+ Iceland
+
+
+ India
+
+
+ Indonesia
+
+
+ Iran
+
+
+ Iraq
+
+
+ Man Island
+
+
+ Jamaica
+
+
+ Jersey
+
+
+ Jordan
+
+
+ Kazakhstan
+
+
+ Kenya
+
+
+ Kiribati
+
+
+ Korea, Dem. Republic of
+
+
+ Kuwait
+
+
+ Kyrgyzstan
+
+
+ Laos
+
+
+ Latvia
+
+
+ Lebanon
+
+
+ Lesotho
+
+
+ Liberia
+
+
+ Libya
+
+
+ Liechtenstein
+
+
+ Lithuania
+
+
+ Macau
+
+
+ Macedonia
+
+
+ Madagascar
+
+
+ Malawi
+
+
+ Malaysia
+
+
+ Maldives
+
+
+ Mali
+
+
+ Malta
+
+
+ Marshall Islands
+
+
+ Martinique
+
+
+ Mauritania
+
+
+ Hungary
+
+
+ Mayotte
+
+
+ Mexico
+
+
+ Micronesia
+
+
+ Moldova
+
+
+ Monaco
+
+
+ Mongolia
+
+
+ Montenegro
+
+
+ Montserrat
+
+
+ Morocco
+
+
+ Mozambique
+
+
+ Namibia
+
+
+ Nauru
+
+
+ Nepal
+
+
+ Netherlands Antilles
+
+
+ New Caledonia
+
+
+ Nicaragua
+
+
+ Niger
+
+
+ Niue
+
+
+ Norfolk Island
+
+
+ Northern Mariana Islands
+
+
+ Oman
+
+
+ Pakistan
+
+
+ Palau
+
+
+ Palestinian Territories
+
+
+ Panama
+
+
+ Papua New Guinea
+
+
+ Paraguay
+
+
+ Peru
+
+
+ Philippines
+
+
+ Pitcairn
+
+
+ Puerto Rico
+
+
+ Qatar
+
+
+ Reunion Island
+
+
+ Russian Federation
+
+
+ Rwanda
+
+
+ Saint Barthelemy
+
+
+ Saint Kitts and Nevis
+
+
+ Saint Lucia
+
+
+ Saint Martin
+
+
+ Saint Pierre and Miquelon
+
+
+ Saint Vincent and the Grenadines
+
+
+ Samoa
+
+
+ San Marino
+
+
+ São Tomé and Príncipe
+
+
+ Saudi Arabia
+
+
+ Senegal
+
+
+ Serbia
+
+
+ Seychelles
+
+
+ Sierra Leone
+
+
+ Slovenia
+
+
+ Solomon Islands
+
+
+ Somalia
+
+
+ South Georgia and the South Sandwich Islands
+
+
+ Sri Lanka
+
+
+ Sudan
+
+
+ Suriname
+
+
+ Svalbard and Jan Mayen
+
+
+ Swaziland
+
+
+ Syria
+
+
+ Taiwan
+
+
+ Tajikistan
+
+
+ Tanzania
+
+
+ Thailand
+
+
+ Tokelau
+
+
+ Tonga
+
+
+ Trinidad and Tobago
+
+
+ Tunisia
+
+
+ Turkey
+
+
+ Turkmenistan
+
+
+ Turks and Caicos Islands
+
+
+ Tuvalu
+
+
+ Uganda
+
+
+ Ukraine
+
+
+ United Arab Emirates
+
+
+ Uruguay
+
+
+ Uzbekistan
+
+
+ Vanuatu
+
+
+ Venezuela
+
+
+ Vietnam
+
+
+ Virgin Islands (British)
+
+
+ Virgin Islands (U.S.)
+
+
+ Wallis and Futuna
+
+
+ Western Sahara
+
+
+ Yemen
+
+
+ Zambia
+
+
+ Zimbabwe
+
+
+ Albania
+
+
+ Afghanistan
+
+
+ Antarctica
+
+
+ Bosnia and Herzegovina
+
+
+ Bouvet Island
+
+
+ British Indian Ocean Territory
+
+
+ Bulgaria
+
+
+ Cayman Islands
+
+
+ Christmas Island
+
+
+ Cocos (Keeling) Islands
+
+
+ Cook Islands
+
+
+ French Guiana
+
+
+ French Polynesia
+
+
+ French Southern Territories
+
+
+ Åland Islands
+
+
diff --git a/install-dev/langs/id/data/gender.xml b/install-dev/langs/id/data/gender.xml
new file mode 100644
index 000000000..539f01c64
--- /dev/null
+++ b/install-dev/langs/id/data/gender.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/install-dev/langs/id/data/group.xml b/install-dev/langs/id/data/group.xml
new file mode 100644
index 000000000..13c5d0bbe
--- /dev/null
+++ b/install-dev/langs/id/data/group.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/install-dev/langs/id/data/index.php b/install-dev/langs/id/data/index.php
new file mode 100644
index 000000000..10edbfe91
--- /dev/null
+++ b/install-dev/langs/id/data/index.php
@@ -0,0 +1,35 @@
+
+* @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;
\ No newline at end of file
diff --git a/install-dev/langs/id/data/meta.xml b/install-dev/langs/id/data/meta.xml
new file mode 100644
index 000000000..ca55aa033
--- /dev/null
+++ b/install-dev/langs/id/data/meta.xml
@@ -0,0 +1,159 @@
+
+
+
+ Eror 404
+ Halaman tidak ditemukan
+ error, 404, not found
+ halaman-tidak-ditemukan
+
+
+ Terlaris
+ Produk terlaris
+ best sales
+ terlaris
+
+
+ Hubungi kami
+ Gunakan form ini untuk menghubungi kami
+ contact, form, e-mail
+ hubungi-kami
+
+
+
+ didukung oleh PrestaShop
+ shop, prestashop
+
+
+
+ Merk
+ Daftar merk
+ manufacturer
+ merk
+
+
+ Produk terbaru
+ Produk terbaru
+ new, products
+ produk-terbaru
+
+
+ Lupa password
+ Isi alamat e-mail dengan alamat e-mail yang Anda gunakan sewaktu mendaftar yang akan digunakan untuk mengirim password baru
+ forgot, password, e-mail, new, reset
+ lupa-password
+
+
+ Turun harga
+ Daftar produk diskon
+ special, prices drop
+ turun-harga
+
+
+ Sitemap
+ Tersesat ? Temukan yang anda cari
+ sitemap
+ sitemap
+
+
+ Supplier
+ Daftar supplier
+ supplier
+ supplier
+
+
+ Alamat
+
+
+ alamat
+
+
+ Daftar Alamat
+
+
+ daftar-alamat
+
+
+ Login
+
+
+ login
+
+
+ Keranjang belanja
+
+
+ keranjang-belanja
+
+
+ Diskon
+
+
+ diskon
+
+
+ Riwayat pembelian
+
+
+ riwayat-pembelian
+
+
+ Identitas
+
+
+ identitas
+
+
+ Akun saya
+
+
+ akun-saya
+
+
+ Pantau order
+
+
+ pantau-order
+
+
+ Slip order
+
+
+ slip-order
+
+
+ Order
+
+
+ order
+
+
+ Cari
+
+
+ cari
+
+
+ Toko
+
+
+ toko
+
+
+ Order
+
+
+ quick-order
+
+
+ Guest tracking
+
+
+ guest-tracking
+
+
+ Konfirmasi pembelian
+
+
+ konfirmasi-pembelian
+
+
diff --git a/install-dev/langs/id/data/order_return_state.xml b/install-dev/langs/id/data/order_return_state.xml
new file mode 100644
index 000000000..a6c67e83d
--- /dev/null
+++ b/install-dev/langs/id/data/order_return_state.xml
@@ -0,0 +1,18 @@
+
+
+
+ Menunggu konfirmasi
+
+
+ Menunggu paket
+
+
+ Paket diterima
+
+
+ Retur ditolak
+
+
+ Retur berhasil
+
+
diff --git a/install-dev/langs/id/data/order_state.xml b/install-dev/langs/id/data/order_state.xml
new file mode 100644
index 000000000..59cde53ff
--- /dev/null
+++ b/install-dev/langs/id/data/order_state.xml
@@ -0,0 +1,51 @@
+
+
+
+ Menunggu cek pembayaran
+ cheque
+
+
+ Pembayaran diterima
+ payment
+
+
+ Barang tengah disiapkan
+ preparation
+
+
+ Proses pengiriman
+ shipped
+
+
+ Barang telah diterima
+
+
+
+ Dibatalkan
+ order_canceled
+
+
+ Refund
+ refund
+
+
+ Pembayaran eror
+ payment_error
+
+
+ Sedang dipesan
+ outofstock
+
+
+ Menunggu pembayaran via transfer bank
+ bankwire
+
+
+ Menunggu pembayaran melalui PayPal
+
+
+
+ Pembayaran diterima
+ payment
+
+
diff --git a/install-dev/langs/id/data/profile.xml b/install-dev/langs/id/data/profile.xml
new file mode 100644
index 000000000..b388d5f2b
--- /dev/null
+++ b/install-dev/langs/id/data/profile.xml
@@ -0,0 +1,6 @@
+
+
+
+ SuperAdmin
+
+
diff --git a/install-dev/langs/id/data/quick_access.xml b/install-dev/langs/id/data/quick_access.xml
new file mode 100644
index 000000000..7fc7ada78
--- /dev/null
+++ b/install-dev/langs/id/data/quick_access.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/install-dev/langs/id/data/risk.xml b/install-dev/langs/id/data/risk.xml
new file mode 100644
index 000000000..b1c2a985d
--- /dev/null
+++ b/install-dev/langs/id/data/risk.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/install-dev/langs/id/data/stock_mvt_reason.xml b/install-dev/langs/id/data/stock_mvt_reason.xml
new file mode 100644
index 000000000..11225c1bb
--- /dev/null
+++ b/install-dev/langs/id/data/stock_mvt_reason.xml
@@ -0,0 +1,27 @@
+
+
+
+ Tambah
+
+
+ Kurangi
+
+
+ Order dari pelanggan
+
+
+ Aturan mengenai stok barang
+
+
+ Aturan mengenai stok barang
+
+
+ Transfer ke gudang lain
+
+
+ Transfer dari gudang lain
+
+
+ Supply Order
+
+
diff --git a/install-dev/langs/id/data/supplier_order_state.xml b/install-dev/langs/id/data/supplier_order_state.xml
new file mode 100644
index 000000000..7d42ca73a
--- /dev/null
+++ b/install-dev/langs/id/data/supplier_order_state.xml
@@ -0,0 +1,21 @@
+
+
+
+ sedang dibuat
+
+
+ Order berhasil divalidasi
+
+
+ Menunggu barang
+
+
+ Barang diterima terpisah
+
+
+ Barang berhasil diterima
+
+
+ barang diproses
+
+
\ No newline at end of file
diff --git a/install-dev/langs/id/data/supply_order_state.xml b/install-dev/langs/id/data/supply_order_state.xml
new file mode 100644
index 000000000..46d6b3339
--- /dev/null
+++ b/install-dev/langs/id/data/supply_order_state.xml
@@ -0,0 +1,21 @@
+
+
+
+ 1 - Persiapan
+
+
+ 2 - Order berhasil divalidasi
+
+
+ 3 - Menunggu barang
+
+
+ 4 - Order diterima terpisah
+
+
+ 5 - Order berhasil diterima
+
+
+ 6 - Pembelian dibatalkan
+
+
diff --git a/install-dev/langs/id/data/tab.xml b/install-dev/langs/id/data/tab.xml
new file mode 100644
index 000000000..e6d9c8f35
--- /dev/null
+++ b/install-dev/langs/id/data/tab.xml
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/install-dev/langs/id/flag.jpg b/install-dev/langs/id/flag.jpg
new file mode 100644
index 000000000..1a2b0db48
Binary files /dev/null and b/install-dev/langs/id/flag.jpg differ
diff --git a/install-dev/langs/id/img/id-default-category.jpg b/install-dev/langs/id/img/id-default-category.jpg
new file mode 100644
index 000000000..c28c90de1
Binary files /dev/null and b/install-dev/langs/id/img/id-default-category.jpg differ
diff --git a/install-dev/langs/id/img/id-default-home.jpg b/install-dev/langs/id/img/id-default-home.jpg
new file mode 100644
index 000000000..ae6658431
Binary files /dev/null and b/install-dev/langs/id/img/id-default-home.jpg differ
diff --git a/install-dev/langs/id/img/id-default-large.jpg b/install-dev/langs/id/img/id-default-large.jpg
new file mode 100644
index 000000000..83f20252e
Binary files /dev/null and b/install-dev/langs/id/img/id-default-large.jpg differ
diff --git a/install-dev/langs/id/img/id-default-large_scene.jpg b/install-dev/langs/id/img/id-default-large_scene.jpg
new file mode 100644
index 000000000..0c8b30dbe
Binary files /dev/null and b/install-dev/langs/id/img/id-default-large_scene.jpg differ
diff --git a/install-dev/langs/id/img/id-default-medium.jpg b/install-dev/langs/id/img/id-default-medium.jpg
new file mode 100644
index 000000000..13546aa40
Binary files /dev/null and b/install-dev/langs/id/img/id-default-medium.jpg differ
diff --git a/install-dev/langs/id/img/id-default-small.jpg b/install-dev/langs/id/img/id-default-small.jpg
new file mode 100644
index 000000000..8cb9417b6
Binary files /dev/null and b/install-dev/langs/id/img/id-default-small.jpg differ
diff --git a/install-dev/langs/id/img/id-default-thickbox.jpg b/install-dev/langs/id/img/id-default-thickbox.jpg
new file mode 100644
index 000000000..6bd5603f7
Binary files /dev/null and b/install-dev/langs/id/img/id-default-thickbox.jpg differ
diff --git a/install-dev/langs/id/img/id-default-thumb_scene.jpg b/install-dev/langs/id/img/id-default-thumb_scene.jpg
new file mode 100644
index 000000000..47d2def48
Binary files /dev/null and b/install-dev/langs/id/img/id-default-thumb_scene.jpg differ
diff --git a/install-dev/langs/id/img/id.jpg b/install-dev/langs/id/img/id.jpg
new file mode 100644
index 000000000..7d07b871d
Binary files /dev/null and b/install-dev/langs/id/img/id.jpg differ
diff --git a/install-dev/langs/id/img/index.php b/install-dev/langs/id/img/index.php
new file mode 100644
index 000000000..10edbfe91
--- /dev/null
+++ b/install-dev/langs/id/img/index.php
@@ -0,0 +1,35 @@
+
+* @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;
\ No newline at end of file
diff --git a/install-dev/langs/id/index.php b/install-dev/langs/id/index.php
new file mode 100644
index 000000000..5e4749107
--- /dev/null
+++ b/install-dev/langs/id/index.php
@@ -0,0 +1,35 @@
+
+* @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;
\ No newline at end of file
diff --git a/install-dev/langs/id/install.php b/install-dev/langs/id/install.php
new file mode 100644
index 000000000..180621db6
--- /dev/null
+++ b/install-dev/langs/id/install.php
@@ -0,0 +1,259 @@
+ 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 our online documentation.' => 'Anda harus membuat database, panduan tersedia di dokumentasi online Prestashop.',
+ '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 clicking here.' => 'Anda dapat menggunakan tautan yang ada di kolom sebelah kiri untuk kembali ke langkah sebelumnya the, atau mengulang proses instalasi dengan klik tautan ini.',
+ '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 our documentation or to contact our support team: %2$s' => 'Jika memerlukan bantuan, jangan ragu untuk membaca dokumentasi 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 documentation and community forum.' => 'Jika Anda memiliki pertanyaan, silahkan kunjungi halaman dokumentasi dan forum.',
+ '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 %1$s: %2$s' => 'SQL error untuk objek %1$s : %2$s',
+ '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 %s' => 'SQL error pada query %s',
+ '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',
+ 'Warning: You cannot use anymore this tool to upgrade your store.
You already have PrestaShop version %1$s installed.
If you want to upgrade to the latest version please read our documentation: %2$s' => 'Perhatian: Anda tidak dapat menggunakan tool ini untuk melakukan upgrade Prestashop Anda.
Anda menggunakan PrestaShop versi %1$s.
Jika ingin melakukan upgrade, silahkan baca panduannya di: %2$s',
+ '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 create a database to collect all of your store’s data-related activities.' => 'Untuk menggunakan PrestaShop, Anda harus membuat database 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',
+ ),
+);
\ No newline at end of file
diff --git a/install-dev/langs/id/language.xml b/install-dev/langs/id/language.xml
new file mode 100644
index 000000000..74c6246b8
--- /dev/null
+++ b/install-dev/langs/id/language.xml
@@ -0,0 +1,8 @@
+
+
+
+ id
+ d/m/Y
+ d/m/Y H:i:s
+ false
+
\ No newline at end of file
diff --git a/install-dev/langs/id/mail_identifiers.txt b/install-dev/langs/id/mail_identifiers.txt
new file mode 100644
index 000000000..87c673ef7
--- /dev/null
+++ b/install-dev/langs/id/mail_identifiers.txt
@@ -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™
\ No newline at end of file