PayRandom - Version 1.0.1

Version Notes

First version of PayRandom Extension

Download this release

Release Info

Developer PayRandom
Extension PayRandom
Version 1.0.1
Comparing to
See all releases


Code changes from version 1.0.0 to 1.0.1

app/code/community/PayRandom/PRPayment/Block/Tax/Checkout/Tax.php ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php class PayRandom_PRPayment_Block_Tax_Checkout_Tax extends Mage_Tax_Block_Checkout_Tax
2
+ {
3
+ /**
4
+ * Render block HTML
5
+ *
6
+ * @return string
7
+ */
8
+ protected function _toHtml()
9
+ {
10
+ if (!$this->getTemplate()) {
11
+ return '';
12
+ }
13
+
14
+ if(PayRandom_PRPayment_Helper_Data::checkCartCanApplyOffer()){
15
+ $this->setCartDeal(PayRandom_PRPayment_Helper_Data::getCartDeal());
16
+ $this->setTemplate('prpayment/tax/checkout/tax.phtml');
17
+ }
18
+
19
+ $html = $this->renderView();
20
+ return $html;
21
+ }
22
+
23
+ }
app/code/community/PayRandom/PRPayment/etc/config.xml CHANGED
@@ -106,6 +106,7 @@
106
  <rewrite>
107
  <checkout_grandtotal>PayRandom_PRPayment_Block_Tax_Checkout_Grandtotal</checkout_grandtotal>
108
  <checkout_subtotal>PayRandom_PRPayment_Block_Tax_Checkout_Subtotal</checkout_subtotal>
 
109
  </rewrite>
110
  </tax>
111
  <prpayment>
106
  <rewrite>
107
  <checkout_grandtotal>PayRandom_PRPayment_Block_Tax_Checkout_Grandtotal</checkout_grandtotal>
108
  <checkout_subtotal>PayRandom_PRPayment_Block_Tax_Checkout_Subtotal</checkout_subtotal>
109
+ <checkout_tax>PayRandom_PRPayment_Block_Tax_Checkout_Tax</checkout_tax>
110
  </rewrite>
111
  </tax>
112
  <prpayment>
app/design/frontend/base/default/template/prpayment/onestepcheckout/summary.phtml CHANGED
@@ -9,7 +9,6 @@ if(PayRandom_PRPayment_Helper_Data::checkCartCanApplyOffer()){
9
  $item = Mage::getSingleton('checkout/session')->getQuote()->getAllItems();
10
  $item = $item[0];
11
  $productId = $item->getProduct()->getId();//getProductId();
12
-
13
  $dealProduct = Mage::getModel('prpayment/dealproduct')->loadByProductId($productId);
14
  $deal = Mage::getModel('prpayment/deal')->load($dealProduct->getDealId());
15
 
@@ -101,7 +100,6 @@ if(PayRandom_PRPayment_Helper_Data::checkCartCanApplyOffer()){
101
  <?php if(!$total->getTitle()){continue;}?>
102
  <?php
103
  $fullInfo = $total->getFullInfo();
104
-
105
  if(!empty($fullInfo) && $checkoutHelper->settings['display_full_tax']):
106
  foreach ($fullInfo as $info):
107
  $rates = current($info['rates']);
@@ -118,7 +116,6 @@ if(PayRandom_PRPayment_Helper_Data::checkCartCanApplyOffer()){
118
 
119
  $code = $total->getCode();
120
  $value = $total->getValue();
121
-
122
  if($code == 'subtotal') {
123
  $total_name = $this->__('Subtotal');
124
  $SubtotalValue = $value;
@@ -133,6 +130,29 @@ if(PayRandom_PRPayment_Helper_Data::checkCartCanApplyOffer()){
133
  elseif($code == 'grand_total') {
134
  $total_name = $this->__('Grand total');
135
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
136
  else {
137
  $total_name = $total->getTitle();
138
  }
@@ -146,14 +166,25 @@ if(PayRandom_PRPayment_Helper_Data::checkCartCanApplyOffer()){
146
  <?php if($code == 'grand_total'){ ?>
147
  <span class="prpayment-interval-price">
148
  <?php
149
- echo $this->__('de') . ' ' . $this->helper('checkout')->formatPrice((1 - $maximumDiscount) * $SubtotalValue + $ShippingValue) . ' ' . $this->__('a') . ' ' .
150
- $this->helper('checkout')->formatPrice((1 - $minimumDiscount) * $SubtotalValue + $ShippingValue);
151
  ?>
152
  </span>
153
  <span class="prpayment-fixed-price" style="display:none;">
154
- <?php echo $this->helper('checkout')->formatPrice((1 - $fixedDiscount) * $SubtotalValue + $ShippingValue); ?>
 
 
 
 
 
 
 
 
 
 
 
155
  </span>
156
- <?php } else{ ?>
157
  <span class="prpayment-interval-price">
158
  <?php
159
  echo $this->__('de') . ' ' . $this->helper('checkout')->formatPrice((1 - $maximumDiscount) * $value) . ' ' . $this->__('a') . ' ' .
@@ -164,7 +195,6 @@ if(PayRandom_PRPayment_Helper_Data::checkCartCanApplyOffer()){
164
  <?php echo $this->helper('checkout')->formatPrice((1 - $fixedDiscount) * $value); ?>
165
  </span>
166
  <?php } ?>
167
-
168
  <?php }else{ ?>
169
  <?php echo $this->helper('checkout')->formatPrice($value); ?>
170
  <?php } ?>
9
  $item = Mage::getSingleton('checkout/session')->getQuote()->getAllItems();
10
  $item = $item[0];
11
  $productId = $item->getProduct()->getId();//getProductId();
 
12
  $dealProduct = Mage::getModel('prpayment/dealproduct')->loadByProductId($productId);
13
  $deal = Mage::getModel('prpayment/deal')->load($dealProduct->getDealId());
14
 
100
  <?php if(!$total->getTitle()){continue;}?>
101
  <?php
102
  $fullInfo = $total->getFullInfo();
 
103
  if(!empty($fullInfo) && $checkoutHelper->settings['display_full_tax']):
104
  foreach ($fullInfo as $info):
105
  $rates = current($info['rates']);
116
 
117
  $code = $total->getCode();
118
  $value = $total->getValue();
 
119
  if($code == 'subtotal') {
120
  $total_name = $this->__('Subtotal');
121
  $SubtotalValue = $value;
130
  elseif($code == 'grand_total') {
131
  $total_name = $this->__('Grand total');
132
  }
133
+ elseif($code == 'tax') {
134
+ $total_name = $total->getTitle();
135
+
136
+ $total = $this->getQuote()->getGrandTotal();
137
+ $shipping = Mage::getSingleton('checkout/session')->getQuote()->getShippingAddress()->getShippingInclTax();
138
+ foreach ($fullInfo as $info) {
139
+ $rates = current($info['rates']);
140
+ $percent = $rates['percent'];
141
+ }
142
+
143
+ $_max_price_with_tax = ((1 - $minimumDiscount) * ($total - $shipping));
144
+ $_max_price_without_tax = $_max_price_with_tax / (1 + ($percent / 100));
145
+ $max_tax = $_max_price_with_tax - $_max_price_without_tax;
146
+
147
+ $_min_price_with_tax = ((1 - $maximumDiscount) * ($total - $shipping));
148
+ $_min_price_without_tax = $_min_price_with_tax / (1 + ($percent / 100));
149
+ $min_tax = $_min_price_with_tax - $_min_price_without_tax;
150
+
151
+ $_fixed_price_with_tax = ((1 - $fixedDiscount) * ($total - $shipping));
152
+ $_fixed_price_without_tax = $_fixed_price_with_tax / (1 + ($percent / 100));
153
+ $fixed_price = $_fixed_price_with_tax - $_fixed_price_without_tax;
154
+
155
+ }
156
  else {
157
  $total_name = $total->getTitle();
158
  }
166
  <?php if($code == 'grand_total'){ ?>
167
  <span class="prpayment-interval-price">
168
  <?php
169
+ echo $this->__('de') . ' ' . $this->helper('checkout')->formatPrice((1 - $maximumDiscount) * ($value - $ShippingValue)+ $ShippingValue) . ' ' . $this->__('a') . ' ' .
170
+ $this->helper('checkout')->formatPrice((1 - $minimumDiscount) * ($value - $ShippingValue) + $ShippingValue);
171
  ?>
172
  </span>
173
  <span class="prpayment-fixed-price" style="display:none;">
174
+ <?php echo $this->helper('checkout')->formatPrice((1 - $fixedDiscount) * ($value - $ShippingValue) + $ShippingValue); ?>
175
+ </span>
176
+ <?php } elseif($code == 'tax'){ ?>
177
+ <span class="prpayment-interval-price">
178
+ <?php
179
+ echo $this->__('de') . ' ' . $this->helper('checkout')->formatPrice($min_tax) . ' ' .
180
+ $this->__('a') . ' ' .
181
+ $this->helper('checkout')->formatPrice($max_tax);
182
+ ?>
183
+ </span>
184
+ <span class="prpayment-fixed-price" style="display:none;">
185
+ <?php echo $this->helper('checkout')->formatPrice($fixed_price); ?>
186
  </span>
187
+ <?php } else {?>
188
  <span class="prpayment-interval-price">
189
  <?php
190
  echo $this->__('de') . ' ' . $this->helper('checkout')->formatPrice((1 - $maximumDiscount) * $value) . ' ' . $this->__('a') . ' ' .
195
  <?php echo $this->helper('checkout')->formatPrice((1 - $fixedDiscount) * $value); ?>
196
  </span>
197
  <?php } ?>
 
198
  <?php }else{ ?>
199
  <?php echo $this->helper('checkout')->formatPrice($value); ?>
200
  <?php } ?>
app/design/frontend/base/default/template/prpayment/tax/checkout/grandtotal.phtml CHANGED
@@ -23,17 +23,17 @@
23
  <?php
24
  $subTotal = Mage::getModel('checkout/cart')->getQuote()->getSubtotal();
25
  $difTotal = $this->getTotal()->getValue() - $subTotal;
 
 
26
  ?>
27
  <tr>
28
  <td style="<?php echo $this->getStyle() ?>" class="a-right" colspan="<?php echo $this->getColspan(); ?>">
29
  <strong><?php echo $this->getTotal()->getTitle() ?></strong>
30
-
31
  </td>
32
  <td style="<?php echo $this->getStyle() ?>" class="a-right">
33
- <strong><?php echo $this->__('de') . ' ' . $this->helper('checkout')->formatPrice((1 - $cartDeal->getMaximumDiscount()) * $subTotal + $difTotal) . ' ' . $this->__('a') . ' ' .
34
- $this->helper('checkout')->formatPrice((1 - $cartDeal->getMinimumDiscount()) * $subTotal + $difTotal) ?>
35
-
36
- </strong>
37
  </td>
38
  </tr>
39
  <?php endif;?>
23
  <?php
24
  $subTotal = Mage::getModel('checkout/cart')->getQuote()->getSubtotal();
25
  $difTotal = $this->getTotal()->getValue() - $subTotal;
26
+ $shipping = $this->getTotal()->getAddress()->getShippingInclTax();
27
+ $subTotal = $this->getTotal()->getValue() - $shipping;
28
  ?>
29
  <tr>
30
  <td style="<?php echo $this->getStyle() ?>" class="a-right" colspan="<?php echo $this->getColspan(); ?>">
31
  <strong><?php echo $this->getTotal()->getTitle() ?></strong>
 
32
  </td>
33
  <td style="<?php echo $this->getStyle() ?>" class="a-right">
34
+ <strong>
35
+ <?php echo $this->__('de') . ' ' . $this->helper('checkout')->formatPrice((1 - $cartDeal->getMaximumDiscount()) * $subTotal + $shipping) . ' ' . $this->__('a') . ' ' . $this->helper('checkout')->formatPrice((1 - $cartDeal->getMinimumDiscount()) * $subTotal + $shipping) ?>
36
+ </strong>
 
37
  </td>
38
  </tr>
39
  <?php endif;?>
app/design/frontend/base/default/template/prpayment/tax/checkout/tax.phtml ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ /**
27
+ * @var $this Mage_Tax_Block_Checkout_Tax
28
+ * @see Mage_Tax_Block_Checkout_Tax
29
+ */
30
+ ?>
31
+ <?php
32
+ $_value = $this->getTotal()->getValue();
33
+ $_style = $this->getTotal()->getStyle();
34
+ $cartDeal = $this->getCartDeal();
35
+ ?>
36
+
37
+ <?php global $taxIter; $taxIter++; ?>
38
+ <?php if ($this->helper('tax')->displayFullSummary() && $_value!=0): ?>
39
+ <?php $isTop = 1; ?>
40
+
41
+ <?php foreach ($this->getTotal()->getFullInfo() as $info): ?>
42
+ <?php if (isset($info['hidden']) && $info['hidden']) continue; ?>
43
+ <?php $percent = $info['percent']; ?>
44
+ <?php $amount = $info['amount']; ?>
45
+ <?php $rates = $info['rates']; ?>
46
+ <?php $isFirst = 1; ?>
47
+ <?php $total = Mage::getSingleton('checkout/session')->getQuote()->getGrandTotal(); ?>
48
+ <?php $shipping = $this->getTotal()->getAddress()->getShippingInclTax(); ?>
49
+
50
+ <?php $_max_price_with_tax = ((1 - $cartDeal->getMinimumDiscount()) * ($total - $shipping));?>
51
+ <?php $_max_price_without_tax = $_max_price_with_tax / (1 + ($percent / 100));?>
52
+ <?php $max_tax = $_max_price_with_tax - $_max_price_without_tax; ?>
53
+
54
+ <?php $_min_price_with_tax = ((1 - $cartDeal->getMaximumDiscount()) * ($total - $shipping));?>
55
+ <?php $_min_price_without_tax = $_min_price_with_tax / (1 + ($percent / 100));?>
56
+ <?php $min_tax = $_min_price_with_tax - $_min_price_without_tax; ?>
57
+
58
+ <?php foreach ($rates as $rate): ?>
59
+ <tr class="summary-details-<?php echo $taxIter; ?> summary-details<?php if ($isTop): echo ' summary-details-first'; endif; ?>" style="display:none;">
60
+ <td class="a-right" style="<?php echo $_style ?>" colspan="<?php echo $this->getColspan(); ?>">
61
+ <?php echo $this->escapeHtml($rate['title']); ?>
62
+ <?php if (!is_null($rate['percent'])): ?>
63
+ (<?php echo (float)$rate['percent']; ?>%)
64
+ <?php endif; ?>
65
+ <br />
66
+ </td>
67
+ <?php if ($isFirst): ?>
68
+ <td style="<?php echo $_style ?>" class="a-right" rowspan="<?php echo count($rates); ?>">
69
+ <?php echo $this->__('de') . ' ' . $this->helper('checkout')->formatPrice($min_tax); ?>
70
+ <?php echo $this->__('a'); ?>
71
+ <?php echo $this->helper('checkout')->formatPrice($max_tax); ?>
72
+ </td>
73
+ <?php endif; ?>
74
+ </tr>
75
+ <?php $isFirst = 0; ?>
76
+ <?php $isTop = 0; ?>
77
+ <?php endforeach; ?>
78
+ <?php endforeach; ?>
79
+ <?php endif;?>
80
+
81
+ <tr <?php if ($this->helper('tax')->displayFullSummary() && $_value!=0): ?> class="summary-total" onclick="expandDetails(this, '.summary-details-<?php echo $taxIter;?>')"<?php endif; ?>>
82
+ <td style="<?php echo $_style ?>" class="a-right" colspan="<?php echo $this->getColspan(); ?>">
83
+ <?php if ($this->helper('tax')->displayFullSummary()): ?>
84
+ <div class="summary-collapse"><?php echo $this->getTotal()->getTitle() ?></div>
85
+ <?php else: ?>
86
+ <?php echo $this->getTotal()->getTitle() ?>
87
+ <?php endif;?>
88
+ </td>
89
+ <td style="<?php echo $_style ?>" class="a-right">
90
+ <?php echo $this->__('de') . ' ' . $this->helper('checkout')->formatPrice($min_tax); ?>
91
+ <?php echo $this->__('a'); ?>
92
+ <?php echo $this->helper('checkout')->formatPrice($max_tax); ?>
93
+ </td>
94
+ </tr>
app/locale/en_AU/PayRandom_PRPayment.csv ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "a","to"
2
+ "Asignar ruleta","Assign roulette"
3
+ "Asignar ruleta PayRandom","Assign PayRandom roulette"
4
+ "Atracción","Attraction"
5
+ "Atracción","Attraction"
6
+ "Atracción","Attraction"
7
+ "Atracción Alta","High Atracction"
8
+ "Atracción Media","Medium Attraction"
9
+ "Atracción Muy Alta","Maximum Attraction"
10
+ "Cómo funciona","How it works"
11
+ "Cómo funciona","How it works"
12
+ "Compra y Juega","Buy & Play"
13
+ "Compra y Juega","Buy & Play"
14
+ "Compra y Juega","Buy & Play"
15
+ "Compra y Juega con PayRandom","Buy & Play with PayRandom"
16
+ "Compra y Juega con PayRandom","Buy & Play with PayRandom"
17
+ "Compra y juega con PayRandom","Buy & Play with PayRandom"
18
+ "Configura la ruleta","Set your roulette"
19
+ "¡Consigue este producto por uno de los precios que vés en la ruleta!","Get this product for one of the prices that you see on roulette!"
20
+ "¡Consigue este producto por uno de los precios que vés en la ruleta!","Get this product for one of the prices that you see on roulette!"
21
+ "Continua con el proceso de compra y al final jugarás el precio con <strong>PayRandom</strong>","Continuing with the buying process and ultimately the price will be fixed with <strong> PayRandom </ strong>"
22
+ "de","from"
23
+ "Debes saber que para jugar con <strong>PayRandom</strong> primero debes demostrar que puedes pagar el precio que te toque, por eso se hará previamente una reserva del <strong>importe máximo</strong> de la compra a través de PayPal.","You should know in order to play with <strong> PayRandom </ strong> you must first prove that you can pay the price that you get, so we will previously make a <strong> maximum amount </ strong> of the purchase reservation through PayPal."
24
+ "Desde","From"
25
+ "Equilibrio","Balance"
26
+ "Equilibrio","Balance"
27
+ "Escribe valor 0 si quieres poner el premio GRATIS","Write 0 if you wanna choose FREE section"
28
+ "Generando la ruleta...","Generating roulette..."
29
+ "Guardar y asignar","Save and assign"
30
+ "Hasta","Up to"
31
+ "Icono de la oferta","Offer icon"
32
+ "Importe mínimo","Minimum Price"
33
+ "Los números de la ruleta","Roulette numbers"
34
+ "Los precios <strong>PayRandom</strong> no incluyen los gastos de envío.","PayRandom prices do not include shipping taxes"
35
+ "Más información","More information"
36
+ "Ninguno","None"
37
+ "Nombre","Name"
38
+ "Nueva ruleta","New Roulette"
39
+ "Nueva ruleta","New Roulette"
40
+ "Ponle nombre a la ruleta","Name your roulette"
41
+ "Porcentaje","Percentage"
42
+ "Precio","Price"
43
+ "Precio fijo","Fixed Price"
44
+ "Precio medio","Estimated Price"
45
+ "Precio medio","Estimated Price"
46
+ "Precio medio","Estimated Price"
47
+ "Precio medio","Estimated Price"
48
+ "PRECIO MÍNIMO:","Minimum Price"
49
+ "Precio original","Original Price"
50
+ "Precio original","Original Price"
51
+ "Producto","Product"
52
+ "Producto","Product"
53
+ "Productos PR en juego","Products on sale"
54
+ "Productos PR vendidos","Sold products"
55
+ "Recalcular","Recalculate"
56
+ "Recalcular","Recalculate"
57
+ "Ruleta de precios","Price roulette"
58
+ "Ruleta predefinida","Predefined roulette"
59
+ "Sin precio fijo","No fixed price"
60
+ "Información de la cuenta","Account Information"
61
+ "Añadir ruleta PayRandom","Add PayRandom Roulette"
62
+ "Oferta guardada correctamente","Deal"
63
+ "Descuentos de la oferta","Deal discounts"
64
+ "Descuentos de la oferta","Deal discounts"
65
+ "Oferta guardada correctamente","Deal was successfully saved"
66
+ "Eliminar ruleta PayRandom","Delete PayRandom Roulette"
67
+ "Descuento","Discount"
68
+ "Editar ruleta PayRandom","Edit PayRandom Roulette"
69
+ "Gratis","Free"
70
+ "Desde","From"
71
+ "Nombre","Name"
72
+ "Producto sin ID","No product id"
73
+ "Opciones","Options"
74
+ "PayRandom","PayRandom"
75
+ "PayRandom-Información de la cuenta","PayRandom - Account info"
76
+ "Precio PayRandom","PayRandom Price:"
77
+ "Porcentajes","Percentages"
78
+ "Precios","Prices"
79
+ "Descuentos de la ruleta","Roulette discounts"
80
+ "Esta oferta no puede ser guardada con PayRandom","The deal cannot be saved in PayRandom"
81
+ "Este producto no puede ser guardado con PayRandom","The product cannot be saved in PayRandom"
82
+ "a","to"
83
+ "Ver formato","View format"
84
+ "Now","Now"
85
+ "Fixed price hint", "Fixed price must be greater than average price"
86
+ "Free", "Free"
87
+ "Ruleta", "Roulette"
88
+ "Con precio fijo", "Fixed Price"
89
+ "Dashboard","Dashboard"
90
+ "Ruletas predefinidas", "Predefined Roulettes"
91
+ "Precio mínimo", "Minimum price"
92
+ "Precio máximo", "Maximum price"
93
+ "Total en ventas", "Total sales accumulated"
94
+ "Unidades", "Units"
95
+ "Transacciones", "Total transactions"
96
+ "Precio medio esperado", "Estimated average price"
97
+ "Fecha inicio", "Start date"
98
+ "Fecha final", "End date"
app/locale/en_CA/PayRandom_PRPayment.csv ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "a","to"
2
+ "Asignar ruleta","Assign roulette"
3
+ "Asignar ruleta PayRandom","Assign PayRandom roulette"
4
+ "Atracción","Attraction"
5
+ "Atracción","Attraction"
6
+ "Atracción","Attraction"
7
+ "Atracción Alta","High Atracction"
8
+ "Atracción Media","Medium Attraction"
9
+ "Atracción Muy Alta","Maximum Attraction"
10
+ "Cómo funciona","How it works"
11
+ "Cómo funciona","How it works"
12
+ "Compra y Juega","Buy & Play"
13
+ "Compra y Juega","Buy & Play"
14
+ "Compra y Juega","Buy & Play"
15
+ "Compra y Juega con PayRandom","Buy & Play with PayRandom"
16
+ "Compra y Juega con PayRandom","Buy & Play with PayRandom"
17
+ "Compra y juega con PayRandom","Buy & Play with PayRandom"
18
+ "Configura la ruleta","Set your roulette"
19
+ "¡Consigue este producto por uno de los precios que vés en la ruleta!","Get this product for one of the prices that you see on roulette!"
20
+ "¡Consigue este producto por uno de los precios que vés en la ruleta!","Get this product for one of the prices that you see on roulette!"
21
+ "Continua con el proceso de compra y al final jugarás el precio con <strong>PayRandom</strong>","Continuing with the buying process and ultimately the price will be fixed with <strong> PayRandom </ strong>"
22
+ "de","from"
23
+ "Debes saber que para jugar con <strong>PayRandom</strong> primero debes demostrar que puedes pagar el precio que te toque, por eso se hará previamente una reserva del <strong>importe máximo</strong> de la compra a través de PayPal.","You should know in order to play with <strong> PayRandom </ strong> you must first prove that you can pay the price that you get, so we will previously make a <strong> maximum amount </ strong> of the purchase reservation through PayPal."
24
+ "Desde","From"
25
+ "Equilibrio","Balance"
26
+ "Equilibrio","Balance"
27
+ "Escribe valor 0 si quieres poner el premio GRATIS","Write 0 if you wanna choose FREE section"
28
+ "Generando la ruleta...","Generating roulette..."
29
+ "Guardar y asignar","Save and assign"
30
+ "Hasta","Up to"
31
+ "Icono de la oferta","Offer icon"
32
+ "Importe mínimo","Minimum Price"
33
+ "Los números de la ruleta","Roulette numbers"
34
+ "Los precios <strong>PayRandom</strong> no incluyen los gastos de envío.","PayRandom prices do not include shipping taxes"
35
+ "Más información","More information"
36
+ "Ninguno","None"
37
+ "Nombre","Name"
38
+ "Nueva ruleta","New Roulette"
39
+ "Nueva ruleta","New Roulette"
40
+ "Ponle nombre a la ruleta","Name your roulette"
41
+ "Porcentaje","Percentage"
42
+ "Precio","Price"
43
+ "Precio fijo","Fixed Price"
44
+ "Precio medio","Estimated Price"
45
+ "Precio medio","Estimated Price"
46
+ "Precio medio","Estimated Price"
47
+ "Precio medio","Estimated Price"
48
+ "PRECIO MÍNIMO:","Minimum Price"
49
+ "Precio original","Original Price"
50
+ "Precio original","Original Price"
51
+ "Producto","Product"
52
+ "Producto","Product"
53
+ "Productos PR en juego","Products on sale"
54
+ "Productos PR vendidos","Sold products"
55
+ "Recalcular","Recalculate"
56
+ "Recalcular","Recalculate"
57
+ "Ruleta de precios","Price roulette"
58
+ "Ruleta predefinida","Predefined roulette"
59
+ "Sin precio fijo","No fixed price"
60
+ "Información de la cuenta","Account Information"
61
+ "Añadir ruleta PayRandom","Add PayRandom Roulette"
62
+ "Oferta guardada correctamente","Deal"
63
+ "Descuentos de la oferta","Deal discounts"
64
+ "Descuentos de la oferta","Deal discounts"
65
+ "Oferta guardada correctamente","Deal was successfully saved"
66
+ "Eliminar ruleta PayRandom","Delete PayRandom Roulette"
67
+ "Descuento","Discount"
68
+ "Editar ruleta PayRandom","Edit PayRandom Roulette"
69
+ "Gratis","Free"
70
+ "Desde","From"
71
+ "Nombre","Name"
72
+ "Producto sin ID","No product id"
73
+ "Opciones","Options"
74
+ "PayRandom","PayRandom"
75
+ "PayRandom-Información de la cuenta","PayRandom - Account info"
76
+ "Precio PayRandom","PayRandom Price:"
77
+ "Porcentajes","Percentages"
78
+ "Precios","Prices"
79
+ "Descuentos de la ruleta","Roulette discounts"
80
+ "Esta oferta no puede ser guardada con PayRandom","The deal cannot be saved in PayRandom"
81
+ "Este producto no puede ser guardado con PayRandom","The product cannot be saved in PayRandom"
82
+ "a","to"
83
+ "Ver formato","View format"
84
+ "Now","Now"
85
+ "Fixed price hint", "Fixed price must be greater than average price"
86
+ "Free", "Free"
87
+ "Ruleta", "Roulette"
88
+ "Con precio fijo", "Fixed Price"
89
+ "Dashboard","Dashboard"
90
+ "Ruletas predefinidas", "Predefined Roulettes"
91
+ "Precio mínimo", "Minimum price"
92
+ "Precio máximo", "Maximum price"
93
+ "Total en ventas", "Total sales accumulated"
94
+ "Unidades", "Units"
95
+ "Transacciones", "Total transactions"
96
+ "Precio medio esperado", "Estimated average price"
97
+ "Fecha inicio", "Start date"
98
+ "Fecha final", "End date"
app/locale/en_GB/PayRandom_PRPayment.csv ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "a","to"
2
+ "Asignar ruleta","Assign roulette"
3
+ "Asignar ruleta PayRandom","Assign PayRandom roulette"
4
+ "Atracción","Attraction"
5
+ "Atracción","Attraction"
6
+ "Atracción","Attraction"
7
+ "Atracción Alta","High Atracction"
8
+ "Atracción Media","Medium Attraction"
9
+ "Atracción Muy Alta","Maximum Attraction"
10
+ "Cómo funciona","How it works"
11
+ "Cómo funciona","How it works"
12
+ "Compra y Juega","Buy & Play"
13
+ "Compra y Juega","Buy & Play"
14
+ "Compra y Juega","Buy & Play"
15
+ "Compra y Juega con PayRandom","Buy & Play with PayRandom"
16
+ "Compra y Juega con PayRandom","Buy & Play with PayRandom"
17
+ "Compra y juega con PayRandom","Buy & Play with PayRandom"
18
+ "Configura la ruleta","Set your roulette"
19
+ "¡Consigue este producto por uno de los precios que vés en la ruleta!","Get this product for one of the prices that you see on roulette!"
20
+ "¡Consigue este producto por uno de los precios que vés en la ruleta!","Get this product for one of the prices that you see on roulette!"
21
+ "Continua con el proceso de compra y al final jugarás el precio con <strong>PayRandom</strong>","Continuing with the buying process and ultimately the price will be fixed with <strong> PayRandom </ strong>"
22
+ "de","from"
23
+ "Debes saber que para jugar con <strong>PayRandom</strong> primero debes demostrar que puedes pagar el precio que te toque, por eso se hará previamente una reserva del <strong>importe máximo</strong> de la compra a través de PayPal.","You should know in order to play with <strong> PayRandom </ strong> you must first prove that you can pay the price that you get, so we will previously make a <strong> maximum amount </ strong> of the purchase reservation through PayPal."
24
+ "Desde","From"
25
+ "Equilibrio","Balance"
26
+ "Equilibrio","Balance"
27
+ "Escribe valor 0 si quieres poner el premio GRATIS","Write 0 if you wanna choose FREE section"
28
+ "Generando la ruleta...","Generating roulette..."
29
+ "Guardar y asignar","Save and assign"
30
+ "Hasta","Up to"
31
+ "Icono de la oferta","Offer icon"
32
+ "Importe mínimo","Minimum Price"
33
+ "Los números de la ruleta","Roulette numbers"
34
+ "Los precios <strong>PayRandom</strong> no incluyen los gastos de envío.","PayRandom prices do not include shipping taxes"
35
+ "Más información","More information"
36
+ "Ninguno","None"
37
+ "Nombre","Name"
38
+ "Nueva ruleta","New Roulette"
39
+ "Nueva ruleta","New Roulette"
40
+ "Ponle nombre a la ruleta","Name your roulette"
41
+ "Porcentaje","Percentage"
42
+ "Precio","Price"
43
+ "Precio fijo","Fixed Price"
44
+ "Precio medio","Estimated Price"
45
+ "Precio medio","Estimated Price"
46
+ "Precio medio","Estimated Price"
47
+ "Precio medio","Estimated Price"
48
+ "PRECIO MÍNIMO:","Minimum Price"
49
+ "Precio original","Original Price"
50
+ "Precio original","Original Price"
51
+ "Producto","Product"
52
+ "Producto","Product"
53
+ "Productos PR en juego","Products on sale"
54
+ "Productos PR vendidos","Sold products"
55
+ "Recalcular","Recalculate"
56
+ "Recalcular","Recalculate"
57
+ "Ruleta de precios","Price roulette"
58
+ "Ruleta predefinida","Predefined roulette"
59
+ "Sin precio fijo","No fixed price"
60
+ "Información de la cuenta","Account Information"
61
+ "Añadir ruleta PayRandom","Add PayRandom Roulette"
62
+ "Oferta guardada correctamente","Deal"
63
+ "Descuentos de la oferta","Deal discounts"
64
+ "Descuentos de la oferta","Deal discounts"
65
+ "Oferta guardada correctamente","Deal was successfully saved"
66
+ "Eliminar ruleta PayRandom","Delete PayRandom Roulette"
67
+ "Descuento","Discount"
68
+ "Editar ruleta PayRandom","Edit PayRandom Roulette"
69
+ "Gratis","Free"
70
+ "Desde","From"
71
+ "Nombre","Name"
72
+ "Producto sin ID","No product id"
73
+ "Opciones","Options"
74
+ "PayRandom","PayRandom"
75
+ "PayRandom-Información de la cuenta","PayRandom - Account info"
76
+ "Precio PayRandom","PayRandom Price:"
77
+ "Porcentajes","Percentages"
78
+ "Precios","Prices"
79
+ "Descuentos de la ruleta","Roulette discounts"
80
+ "Esta oferta no puede ser guardada con PayRandom","The deal cannot be saved in PayRandom"
81
+ "Este producto no puede ser guardado con PayRandom","The product cannot be saved in PayRandom"
82
+ "a","to"
83
+ "Ver formato","View format"
84
+ "Now","Now"
85
+ "Fixed price hint", "Fixed price must be greater than average price"
86
+ "Free", "Free"
87
+ "Ruleta", "Roulette"
88
+ "Con precio fijo", "Fixed Price"
89
+ "Dashboard","Dashboard"
90
+ "Ruletas predefinidas", "Predefined Roulettes"
91
+ "Precio mínimo", "Minimum price"
92
+ "Precio máximo", "Maximum price"
93
+ "Total en ventas", "Total sales accumulated"
94
+ "Unidades", "Units"
95
+ "Transacciones", "Total transactions"
96
+ "Precio medio esperado", "Estimated average price"
97
+ "Fecha inicio", "Start date"
98
+ "Fecha final", "End date"
app/locale/en_IE/PayRandom_PRPayment.csv ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "a","to"
2
+ "Asignar ruleta","Assign roulette"
3
+ "Asignar ruleta PayRandom","Assign PayRandom roulette"
4
+ "Atracción","Attraction"
5
+ "Atracción","Attraction"
6
+ "Atracción","Attraction"
7
+ "Atracción Alta","High Atracction"
8
+ "Atracción Media","Medium Attraction"
9
+ "Atracción Muy Alta","Maximum Attraction"
10
+ "Cómo funciona","How it works"
11
+ "Cómo funciona","How it works"
12
+ "Compra y Juega","Buy & Play"
13
+ "Compra y Juega","Buy & Play"
14
+ "Compra y Juega","Buy & Play"
15
+ "Compra y Juega con PayRandom","Buy & Play with PayRandom"
16
+ "Compra y Juega con PayRandom","Buy & Play with PayRandom"
17
+ "Compra y juega con PayRandom","Buy & Play with PayRandom"
18
+ "Configura la ruleta","Set your roulette"
19
+ "¡Consigue este producto por uno de los precios que vés en la ruleta!","Get this product for one of the prices that you see on roulette!"
20
+ "¡Consigue este producto por uno de los precios que vés en la ruleta!","Get this product for one of the prices that you see on roulette!"
21
+ "Continua con el proceso de compra y al final jugarás el precio con <strong>PayRandom</strong>","Continuing with the buying process and ultimately the price will be fixed with <strong> PayRandom </ strong>"
22
+ "de","from"
23
+ "Debes saber que para jugar con <strong>PayRandom</strong> primero debes demostrar que puedes pagar el precio que te toque, por eso se hará previamente una reserva del <strong>importe máximo</strong> de la compra a través de PayPal.","You should know in order to play with <strong> PayRandom </ strong> you must first prove that you can pay the price that you get, so we will previously make a <strong> maximum amount </ strong> of the purchase reservation through PayPal."
24
+ "Desde","From"
25
+ "Equilibrio","Balance"
26
+ "Equilibrio","Balance"
27
+ "Escribe valor 0 si quieres poner el premio GRATIS","Write 0 if you wanna choose FREE section"
28
+ "Generando la ruleta...","Generating roulette..."
29
+ "Guardar y asignar","Save and assign"
30
+ "Hasta","Up to"
31
+ "Icono de la oferta","Offer icon"
32
+ "Importe mínimo","Minimum Price"
33
+ "Los números de la ruleta","Roulette numbers"
34
+ "Los precios <strong>PayRandom</strong> no incluyen los gastos de envío.","PayRandom prices do not include shipping taxes"
35
+ "Más información","More information"
36
+ "Ninguno","None"
37
+ "Nombre","Name"
38
+ "Nueva ruleta","New Roulette"
39
+ "Nueva ruleta","New Roulette"
40
+ "Ponle nombre a la ruleta","Name your roulette"
41
+ "Porcentaje","Percentage"
42
+ "Precio","Price"
43
+ "Precio fijo","Fixed Price"
44
+ "Precio medio","Estimated Price"
45
+ "Precio medio","Estimated Price"
46
+ "Precio medio","Estimated Price"
47
+ "Precio medio","Estimated Price"
48
+ "PRECIO MÍNIMO:","Minimum Price"
49
+ "Precio original","Original Price"
50
+ "Precio original","Original Price"
51
+ "Producto","Product"
52
+ "Producto","Product"
53
+ "Productos PR en juego","Products on sale"
54
+ "Productos PR vendidos","Sold products"
55
+ "Recalcular","Recalculate"
56
+ "Recalcular","Recalculate"
57
+ "Ruleta de precios","Price roulette"
58
+ "Ruleta predefinida","Predefined roulette"
59
+ "Sin precio fijo","No fixed price"
60
+ "Información de la cuenta","Account Information"
61
+ "Añadir ruleta PayRandom","Add PayRandom Roulette"
62
+ "Oferta guardada correctamente","Deal"
63
+ "Descuentos de la oferta","Deal discounts"
64
+ "Descuentos de la oferta","Deal discounts"
65
+ "Oferta guardada correctamente","Deal was successfully saved"
66
+ "Eliminar ruleta PayRandom","Delete PayRandom Roulette"
67
+ "Descuento","Discount"
68
+ "Editar ruleta PayRandom","Edit PayRandom Roulette"
69
+ "Gratis","Free"
70
+ "Desde","From"
71
+ "Nombre","Name"
72
+ "Producto sin ID","No product id"
73
+ "Opciones","Options"
74
+ "PayRandom","PayRandom"
75
+ "PayRandom-Información de la cuenta","PayRandom - Account info"
76
+ "Precio PayRandom","PayRandom Price:"
77
+ "Porcentajes","Percentages"
78
+ "Precios","Prices"
79
+ "Descuentos de la ruleta","Roulette discounts"
80
+ "Esta oferta no puede ser guardada con PayRandom","The deal cannot be saved in PayRandom"
81
+ "Este producto no puede ser guardado con PayRandom","The product cannot be saved in PayRandom"
82
+ "a","to"
83
+ "Ver formato","View format"
84
+ "Now","Now"
85
+ "Fixed price hint", "Fixed price must be greater than average price"
86
+ "Free", "Free"
87
+ "Ruleta", "Roulette"
88
+ "Con precio fijo", "Fixed Price"
89
+ "Dashboard","Dashboard"
90
+ "Ruletas predefinidas", "Predefined Roulettes"
91
+ "Precio mínimo", "Minimum price"
92
+ "Precio máximo", "Maximum price"
93
+ "Total en ventas", "Total sales accumulated"
94
+ "Unidades", "Units"
95
+ "Transacciones", "Total transactions"
96
+ "Precio medio esperado", "Estimated average price"
97
+ "Fecha inicio", "Start date"
98
+ "Fecha final", "End date"
app/locale/en_NZ/PayRandom_PRPayment.csv ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "a","to"
2
+ "Asignar ruleta","Assign roulette"
3
+ "Asignar ruleta PayRandom","Assign PayRandom roulette"
4
+ "Atracción","Attraction"
5
+ "Atracción","Attraction"
6
+ "Atracción","Attraction"
7
+ "Atracción Alta","High Atracction"
8
+ "Atracción Media","Medium Attraction"
9
+ "Atracción Muy Alta","Maximum Attraction"
10
+ "Cómo funciona","How it works"
11
+ "Cómo funciona","How it works"
12
+ "Compra y Juega","Buy & Play"
13
+ "Compra y Juega","Buy & Play"
14
+ "Compra y Juega","Buy & Play"
15
+ "Compra y Juega con PayRandom","Buy & Play with PayRandom"
16
+ "Compra y Juega con PayRandom","Buy & Play with PayRandom"
17
+ "Compra y juega con PayRandom","Buy & Play with PayRandom"
18
+ "Configura la ruleta","Set your roulette"
19
+ "¡Consigue este producto por uno de los precios que vés en la ruleta!","Get this product for one of the prices that you see on roulette!"
20
+ "¡Consigue este producto por uno de los precios que vés en la ruleta!","Get this product for one of the prices that you see on roulette!"
21
+ "Continua con el proceso de compra y al final jugarás el precio con <strong>PayRandom</strong>","Continuing with the buying process and ultimately the price will be fixed with <strong> PayRandom </ strong>"
22
+ "de","from"
23
+ "Debes saber que para jugar con <strong>PayRandom</strong> primero debes demostrar que puedes pagar el precio que te toque, por eso se hará previamente una reserva del <strong>importe máximo</strong> de la compra a través de PayPal.","You should know in order to play with <strong> PayRandom </ strong> you must first prove that you can pay the price that you get, so we will previously make a <strong> maximum amount </ strong> of the purchase reservation through PayPal."
24
+ "Desde","From"
25
+ "Equilibrio","Balance"
26
+ "Equilibrio","Balance"
27
+ "Escribe valor 0 si quieres poner el premio GRATIS","Write 0 if you wanna choose FREE section"
28
+ "Generando la ruleta...","Generating roulette..."
29
+ "Guardar y asignar","Save and assign"
30
+ "Hasta","Up to"
31
+ "Icono de la oferta","Offer icon"
32
+ "Importe mínimo","Minimum Price"
33
+ "Los números de la ruleta","Roulette numbers"
34
+ "Los precios <strong>PayRandom</strong> no incluyen los gastos de envío.","PayRandom prices do not include shipping taxes"
35
+ "Más información","More information"
36
+ "Ninguno","None"
37
+ "Nombre","Name"
38
+ "Nueva ruleta","New Roulette"
39
+ "Nueva ruleta","New Roulette"
40
+ "Ponle nombre a la ruleta","Name your roulette"
41
+ "Porcentaje","Percentage"
42
+ "Precio","Price"
43
+ "Precio fijo","Fixed Price"
44
+ "Precio medio","Estimated Price"
45
+ "Precio medio","Estimated Price"
46
+ "Precio medio","Estimated Price"
47
+ "Precio medio","Estimated Price"
48
+ "PRECIO MÍNIMO:","Minimum Price"
49
+ "Precio original","Original Price"
50
+ "Precio original","Original Price"
51
+ "Producto","Product"
52
+ "Producto","Product"
53
+ "Productos PR en juego","Products on sale"
54
+ "Productos PR vendidos","Sold products"
55
+ "Recalcular","Recalculate"
56
+ "Recalcular","Recalculate"
57
+ "Ruleta de precios","Price roulette"
58
+ "Ruleta predefinida","Predefined roulette"
59
+ "Sin precio fijo","No fixed price"
60
+ "Información de la cuenta","Account Information"
61
+ "Añadir ruleta PayRandom","Add PayRandom Roulette"
62
+ "Oferta guardada correctamente","Deal"
63
+ "Descuentos de la oferta","Deal discounts"
64
+ "Descuentos de la oferta","Deal discounts"
65
+ "Oferta guardada correctamente","Deal was successfully saved"
66
+ "Eliminar ruleta PayRandom","Delete PayRandom Roulette"
67
+ "Descuento","Discount"
68
+ "Editar ruleta PayRandom","Edit PayRandom Roulette"
69
+ "Gratis","Free"
70
+ "Desde","From"
71
+ "Nombre","Name"
72
+ "Producto sin ID","No product id"
73
+ "Opciones","Options"
74
+ "PayRandom","PayRandom"
75
+ "PayRandom-Información de la cuenta","PayRandom - Account info"
76
+ "Precio PayRandom","PayRandom Price:"
77
+ "Porcentajes","Percentages"
78
+ "Precios","Prices"
79
+ "Descuentos de la ruleta","Roulette discounts"
80
+ "Esta oferta no puede ser guardada con PayRandom","The deal cannot be saved in PayRandom"
81
+ "Este producto no puede ser guardado con PayRandom","The product cannot be saved in PayRandom"
82
+ "a","to"
83
+ "Ver formato","View format"
84
+ "Now","Now"
85
+ "Fixed price hint", "Fixed price must be greater than average price"
86
+ "Free", "Free"
87
+ "Ruleta", "Roulette"
88
+ "Con precio fijo", "Fixed Price"
89
+ "Dashboard","Dashboard"
90
+ "Ruletas predefinidas", "Predefined Roulettes"
91
+ "Precio mínimo", "Minimum price"
92
+ "Precio máximo", "Maximum price"
93
+ "Total en ventas", "Total sales accumulated"
94
+ "Unidades", "Units"
95
+ "Transacciones", "Total transactions"
96
+ "Precio medio esperado", "Estimated average price"
97
+ "Fecha inicio", "Start date"
98
+ "Fecha final", "End date"
app/locale/en_US/PayRandom_PRPayment.csv CHANGED
@@ -88,3 +88,11 @@
88
  "Con precio fijo", "Fixed Price"
89
  "Dashboard","Dashboard"
90
  "Ruletas predefinidas", "Predefined Roulettes"
 
 
 
 
 
 
 
 
88
  "Con precio fijo", "Fixed Price"
89
  "Dashboard","Dashboard"
90
  "Ruletas predefinidas", "Predefined Roulettes"
91
+ "Precio mínimo", "Minimum price"
92
+ "Precio máximo", "Maximum price"
93
+ "Total en ventas", "Total sales accumulated"
94
+ "Unidades", "Units"
95
+ "Transacciones", "Total transactions"
96
+ "Precio medio esperado", "Estimated average price"
97
+ "Fecha inicio", "Start date"
98
+ "Fecha final", "End date"
app/locale/es_AR/PayRandom_PRPayment.csv ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "a","a"
2
+ "Asignar ruleta","Asignar ruleta"
3
+ "Asignar ruleta PayRandom","Asignar ruleta PayRandom"
4
+ "Atracción","Atracción"
5
+ "Atracción","Atracción"
6
+ "Atracción","Atracción"
7
+ "Atracción Alta","Atracción Alta"
8
+ "Atracción Media","Atracción Media"
9
+ "Atracción Muy Alta","Atracción Muy Alta"
10
+ "Cómo funciona","Cómo funciona"
11
+ "Cómo funciona","Cómo funciona"
12
+ "Compra y Juega","Compra y Juega"
13
+ "Compra y Juega","Compra y Juega"
14
+ "Compra y Juega","Compra y Juega"
15
+ "Compra y Juega con PayRandom","Compra y Juega con PayRandom"
16
+ "Compra y Juega con PayRandom","Compra y Juega con PayRandom"
17
+ "Compra y juega con PayRandom","Compra y Juega con PayRandom"
18
+ "Configura la ruleta","Configura la ruleta"
19
+ "¡Consigue este producto por uno de los precios que vés en la ruleta!","¡Consigue este producto por uno de los precios que vés en la ruleta!"
20
+ "¡Consigue este producto por uno de los precios que vés en la ruleta!","¡Consigue este producto por uno de los precios que vés en la ruleta!"
21
+ "Continua con el proceso de compra y al final jugarás el precio con <strong>PayRandom</strong>","Continua con el proceso de compra y al final jugarás el precio con <strong>PayRandom</strong>"
22
+ "de","de"
23
+ "Debes saber que para jugar con <strong>PayRandom</strong> primero debes demostrar que puedes pagar el precio que te toque, por eso se hará previamente una reserva del <strong>importe máximo</strong> de la compra a través de PayPal.","Debes saber que para jugar con <strong>PayRandom</strong> primero debes demostrar que puedes pagar el precio que te toque, por eso se hará previamente una reserva del <strong>importe máximo</strong> de la compra a través de PayPal."
24
+ "Desde","Desde"
25
+ "Equilibrio","Equilibrio"
26
+ "Equilibrio","Equilibrio"
27
+ "Escribe valor 0 si quieres poner el premio GRATIS","Escribe valor 0 si quieres poner el premio GRATIS"
28
+ "Generando la ruleta...","Generando la ruleta..."
29
+ "Guardar y asignar","Guardar y asignar"
30
+ "Hasta","Hasta"
31
+ "Icono de la oferta","Icono de la oferta"
32
+ "Importe mínimo","Importe mínimo"
33
+ "Los números de la ruleta","Los números de la ruleta"
34
+ "Los precios <strong>PayRandom</strong> no incluyen los gastos de envío.","Los precios <strong>PayRandom</strong> no incluyen los gastos de envío."
35
+ "Más información","Más información"
36
+ "Ninguno","Ninguno"
37
+ "Nombre","Nombre"
38
+ "Nueva ruleta","Nueva ruleta"
39
+ "Nueva ruleta","Nueva ruleta"
40
+ "Ponle nombre a la ruleta","Ponle nombre a la ruleta"
41
+ "Porcentaje","Porcentaje"
42
+ "Precio","Precio"
43
+ "Precio fijo","Precio fijo"
44
+ "Precio medio","Precio medio"
45
+ "Precio medio","Precio medio"
46
+ "Precio medio","Precio medio"
47
+ "Precio medio","Precio medio"
48
+ "PRECIO MÍNIMO:","PRECIO MÍNIMO:"
49
+ "Precio original","Precio original"
50
+ "Precio original","Precio original"
51
+ "Producto","Producto"
52
+ "Producto","Producto"
53
+ "Productos PR en juego","Productos en juego"
54
+ "Productos PR vendidos","Productos vendidos"
55
+ "Recalcular","Recalcular"
56
+ "Recalcular","Recalcular"
57
+ "Ruleta de precios","Ruleta de precios"
58
+ "Ruleta predefinida","Ruleta predefinida"
59
+ "Sin precio fijo","Sin precio fijo"
60
+ "Información de la cuenta","Información de la cuenta"
61
+ "Añadir ruleta PayRandom","Añadir ruleta PayRandom"
62
+ "Oferta guardada correctamente","Oferta guardada correctamente"
63
+ "Descuentos de la oferta","Descuentos de la oferta"
64
+ "Descuentos de la oferta","Descuentos de la oferta"
65
+ "Oferta guardada correctamente","Oferta guardada correctamente"
66
+ "Eliminar ruleta PayRandom","Eliminar ruleta PayRandom"
67
+ "Descuento","Descuento"
68
+ "Editar ruleta PayRandom","Editar ruleta PayRandom"
69
+ "Gratis","Gratis"
70
+ "Desde","Desde"
71
+ "Nombre","Nombre"
72
+ "Producto sin ID","Producto sin ID"
73
+ "Opciones","Opciones"
74
+ "PayRandom","PayRandom"
75
+ "PayRandom-Información de la cuenta","PayRandom-Información de la cuenta"
76
+ "Precio PayRandom","Precio PayRandom:"
77
+ "Porcentajes","Porcentajes"
78
+ "Precios","Precios"
79
+ "Descuentos de la ruleta","Descuentos de la ruleta"
80
+ "Esta oferta no puede ser guardada con PayRandom","Esta oferta no puede ser guardada con PayRandom"
81
+ "Este producto no puede ser guardado con PayRandom","Este producto no puede ser guardado con PayRandom"
82
+ "a","a"
83
+ "Ver formato","Ver formato"
84
+ "Now","Ahora"
85
+ "Fixed price hint", "Precio fijo debe ser mayor que precio medio"
86
+ "Free", "Gratis"
87
+ "Ruleta", "Ruleta"
88
+ "Con precio fijo", "Con precio fijo"
89
+ "Dashboard","Panel de control"
90
+ "Ruletas predefinidas", "Ruletas predefinidas"
91
+ "Precio mínimo", "Precio mínimo"
92
+ "Precio máximo", "Precio máximo"
93
+ "Total en ventas", "Total en ventas"
94
+ "Unidades", "Unidades"
95
+ "Transacciones", "Número de transacciones"
96
+ "Precio medio esperado", "Precio medio esperado"
97
+ "Fecha inicio", "Fecha inicio"
98
+ "Fecha final", "Fecha final"
app/locale/es_CL/PayRandom_PRPayment.csv ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "a","a"
2
+ "Asignar ruleta","Asignar ruleta"
3
+ "Asignar ruleta PayRandom","Asignar ruleta PayRandom"
4
+ "Atracción","Atracción"
5
+ "Atracción","Atracción"
6
+ "Atracción","Atracción"
7
+ "Atracción Alta","Atracción Alta"
8
+ "Atracción Media","Atracción Media"
9
+ "Atracción Muy Alta","Atracción Muy Alta"
10
+ "Cómo funciona","Cómo funciona"
11
+ "Cómo funciona","Cómo funciona"
12
+ "Compra y Juega","Compra y Juega"
13
+ "Compra y Juega","Compra y Juega"
14
+ "Compra y Juega","Compra y Juega"
15
+ "Compra y Juega con PayRandom","Compra y Juega con PayRandom"
16
+ "Compra y Juega con PayRandom","Compra y Juega con PayRandom"
17
+ "Compra y juega con PayRandom","Compra y Juega con PayRandom"
18
+ "Configura la ruleta","Configura la ruleta"
19
+ "¡Consigue este producto por uno de los precios que vés en la ruleta!","¡Consigue este producto por uno de los precios que vés en la ruleta!"
20
+ "¡Consigue este producto por uno de los precios que vés en la ruleta!","¡Consigue este producto por uno de los precios que vés en la ruleta!"
21
+ "Continua con el proceso de compra y al final jugarás el precio con <strong>PayRandom</strong>","Continua con el proceso de compra y al final jugarás el precio con <strong>PayRandom</strong>"
22
+ "de","de"
23
+ "Debes saber que para jugar con <strong>PayRandom</strong> primero debes demostrar que puedes pagar el precio que te toque, por eso se hará previamente una reserva del <strong>importe máximo</strong> de la compra a través de PayPal.","Debes saber que para jugar con <strong>PayRandom</strong> primero debes demostrar que puedes pagar el precio que te toque, por eso se hará previamente una reserva del <strong>importe máximo</strong> de la compra a través de PayPal."
24
+ "Desde","Desde"
25
+ "Equilibrio","Equilibrio"
26
+ "Equilibrio","Equilibrio"
27
+ "Escribe valor 0 si quieres poner el premio GRATIS","Escribe valor 0 si quieres poner el premio GRATIS"
28
+ "Generando la ruleta...","Generando la ruleta..."
29
+ "Guardar y asignar","Guardar y asignar"
30
+ "Hasta","Hasta"
31
+ "Icono de la oferta","Icono de la oferta"
32
+ "Importe mínimo","Importe mínimo"
33
+ "Los números de la ruleta","Los números de la ruleta"
34
+ "Los precios <strong>PayRandom</strong> no incluyen los gastos de envío.","Los precios <strong>PayRandom</strong> no incluyen los gastos de envío."
35
+ "Más información","Más información"
36
+ "Ninguno","Ninguno"
37
+ "Nombre","Nombre"
38
+ "Nueva ruleta","Nueva ruleta"
39
+ "Nueva ruleta","Nueva ruleta"
40
+ "Ponle nombre a la ruleta","Ponle nombre a la ruleta"
41
+ "Porcentaje","Porcentaje"
42
+ "Precio","Precio"
43
+ "Precio fijo","Precio fijo"
44
+ "Precio medio","Precio medio"
45
+ "Precio medio","Precio medio"
46
+ "Precio medio","Precio medio"
47
+ "Precio medio","Precio medio"
48
+ "PRECIO MÍNIMO:","PRECIO MÍNIMO:"
49
+ "Precio original","Precio original"
50
+ "Precio original","Precio original"
51
+ "Producto","Producto"
52
+ "Producto","Producto"
53
+ "Productos PR en juego","Productos en juego"
54
+ "Productos PR vendidos","Productos vendidos"
55
+ "Recalcular","Recalcular"
56
+ "Recalcular","Recalcular"
57
+ "Ruleta de precios","Ruleta de precios"
58
+ "Ruleta predefinida","Ruleta predefinida"
59
+ "Sin precio fijo","Sin precio fijo"
60
+ "Información de la cuenta","Información de la cuenta"
61
+ "Añadir ruleta PayRandom","Añadir ruleta PayRandom"
62
+ "Oferta guardada correctamente","Oferta guardada correctamente"
63
+ "Descuentos de la oferta","Descuentos de la oferta"
64
+ "Descuentos de la oferta","Descuentos de la oferta"
65
+ "Oferta guardada correctamente","Oferta guardada correctamente"
66
+ "Eliminar ruleta PayRandom","Eliminar ruleta PayRandom"
67
+ "Descuento","Descuento"
68
+ "Editar ruleta PayRandom","Editar ruleta PayRandom"
69
+ "Gratis","Gratis"
70
+ "Desde","Desde"
71
+ "Nombre","Nombre"
72
+ "Producto sin ID","Producto sin ID"
73
+ "Opciones","Opciones"
74
+ "PayRandom","PayRandom"
75
+ "PayRandom-Información de la cuenta","PayRandom-Información de la cuenta"
76
+ "Precio PayRandom","Precio PayRandom:"
77
+ "Porcentajes","Porcentajes"
78
+ "Precios","Precios"
79
+ "Descuentos de la ruleta","Descuentos de la ruleta"
80
+ "Esta oferta no puede ser guardada con PayRandom","Esta oferta no puede ser guardada con PayRandom"
81
+ "Este producto no puede ser guardado con PayRandom","Este producto no puede ser guardado con PayRandom"
82
+ "a","a"
83
+ "Ver formato","Ver formato"
84
+ "Now","Ahora"
85
+ "Fixed price hint", "Precio fijo debe ser mayor que precio medio"
86
+ "Free", "Gratis"
87
+ "Ruleta", "Ruleta"
88
+ "Con precio fijo", "Con precio fijo"
89
+ "Dashboard","Panel de control"
90
+ "Ruletas predefinidas", "Ruletas predefinidas"
91
+ "Precio mínimo", "Precio mínimo"
92
+ "Precio máximo", "Precio máximo"
93
+ "Total en ventas", "Total en ventas"
94
+ "Unidades", "Unidades"
95
+ "Transacciones", "Número de transacciones"
96
+ "Precio medio esperado", "Precio medio esperado"
97
+ "Fecha inicio", "Fecha inicio"
98
+ "Fecha final", "Fecha final"
app/locale/es_CO/PayRandom_PRPayment.csv ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "a","a"
2
+ "Asignar ruleta","Asignar ruleta"
3
+ "Asignar ruleta PayRandom","Asignar ruleta PayRandom"
4
+ "Atracción","Atracción"
5
+ "Atracción","Atracción"
6
+ "Atracción","Atracción"
7
+ "Atracción Alta","Atracción Alta"
8
+ "Atracción Media","Atracción Media"
9
+ "Atracción Muy Alta","Atracción Muy Alta"
10
+ "Cómo funciona","Cómo funciona"
11
+ "Cómo funciona","Cómo funciona"
12
+ "Compra y Juega","Compra y Juega"
13
+ "Compra y Juega","Compra y Juega"
14
+ "Compra y Juega","Compra y Juega"
15
+ "Compra y Juega con PayRandom","Compra y Juega con PayRandom"
16
+ "Compra y Juega con PayRandom","Compra y Juega con PayRandom"
17
+ "Compra y juega con PayRandom","Compra y Juega con PayRandom"
18
+ "Configura la ruleta","Configura la ruleta"
19
+ "¡Consigue este producto por uno de los precios que vés en la ruleta!","¡Consigue este producto por uno de los precios que vés en la ruleta!"
20
+ "¡Consigue este producto por uno de los precios que vés en la ruleta!","¡Consigue este producto por uno de los precios que vés en la ruleta!"
21
+ "Continua con el proceso de compra y al final jugarás el precio con <strong>PayRandom</strong>","Continua con el proceso de compra y al final jugarás el precio con <strong>PayRandom</strong>"
22
+ "de","de"
23
+ "Debes saber que para jugar con <strong>PayRandom</strong> primero debes demostrar que puedes pagar el precio que te toque, por eso se hará previamente una reserva del <strong>importe máximo</strong> de la compra a través de PayPal.","Debes saber que para jugar con <strong>PayRandom</strong> primero debes demostrar que puedes pagar el precio que te toque, por eso se hará previamente una reserva del <strong>importe máximo</strong> de la compra a través de PayPal."
24
+ "Desde","Desde"
25
+ "Equilibrio","Equilibrio"
26
+ "Equilibrio","Equilibrio"
27
+ "Escribe valor 0 si quieres poner el premio GRATIS","Escribe valor 0 si quieres poner el premio GRATIS"
28
+ "Generando la ruleta...","Generando la ruleta..."
29
+ "Guardar y asignar","Guardar y asignar"
30
+ "Hasta","Hasta"
31
+ "Icono de la oferta","Icono de la oferta"
32
+ "Importe mínimo","Importe mínimo"
33
+ "Los números de la ruleta","Los números de la ruleta"
34
+ "Los precios <strong>PayRandom</strong> no incluyen los gastos de envío.","Los precios <strong>PayRandom</strong> no incluyen los gastos de envío."
35
+ "Más información","Más información"
36
+ "Ninguno","Ninguno"
37
+ "Nombre","Nombre"
38
+ "Nueva ruleta","Nueva ruleta"
39
+ "Nueva ruleta","Nueva ruleta"
40
+ "Ponle nombre a la ruleta","Ponle nombre a la ruleta"
41
+ "Porcentaje","Porcentaje"
42
+ "Precio","Precio"
43
+ "Precio fijo","Precio fijo"
44
+ "Precio medio","Precio medio"
45
+ "Precio medio","Precio medio"
46
+ "Precio medio","Precio medio"
47
+ "Precio medio","Precio medio"
48
+ "PRECIO MÍNIMO:","PRECIO MÍNIMO:"
49
+ "Precio original","Precio original"
50
+ "Precio original","Precio original"
51
+ "Producto","Producto"
52
+ "Producto","Producto"
53
+ "Productos PR en juego","Productos en juego"
54
+ "Productos PR vendidos","Productos vendidos"
55
+ "Recalcular","Recalcular"
56
+ "Recalcular","Recalcular"
57
+ "Ruleta de precios","Ruleta de precios"
58
+ "Ruleta predefinida","Ruleta predefinida"
59
+ "Sin precio fijo","Sin precio fijo"
60
+ "Información de la cuenta","Información de la cuenta"
61
+ "Añadir ruleta PayRandom","Añadir ruleta PayRandom"
62
+ "Oferta guardada correctamente","Oferta guardada correctamente"
63
+ "Descuentos de la oferta","Descuentos de la oferta"
64
+ "Descuentos de la oferta","Descuentos de la oferta"
65
+ "Oferta guardada correctamente","Oferta guardada correctamente"
66
+ "Eliminar ruleta PayRandom","Eliminar ruleta PayRandom"
67
+ "Descuento","Descuento"
68
+ "Editar ruleta PayRandom","Editar ruleta PayRandom"
69
+ "Gratis","Gratis"
70
+ "Desde","Desde"
71
+ "Nombre","Nombre"
72
+ "Producto sin ID","Producto sin ID"
73
+ "Opciones","Opciones"
74
+ "PayRandom","PayRandom"
75
+ "PayRandom-Información de la cuenta","PayRandom-Información de la cuenta"
76
+ "Precio PayRandom","Precio PayRandom:"
77
+ "Porcentajes","Porcentajes"
78
+ "Precios","Precios"
79
+ "Descuentos de la ruleta","Descuentos de la ruleta"
80
+ "Esta oferta no puede ser guardada con PayRandom","Esta oferta no puede ser guardada con PayRandom"
81
+ "Este producto no puede ser guardado con PayRandom","Este producto no puede ser guardado con PayRandom"
82
+ "a","a"
83
+ "Ver formato","Ver formato"
84
+ "Now","Ahora"
85
+ "Fixed price hint", "Precio fijo debe ser mayor que precio medio"
86
+ "Free", "Gratis"
87
+ "Ruleta", "Ruleta"
88
+ "Con precio fijo", "Con precio fijo"
89
+ "Dashboard","Panel de control"
90
+ "Ruletas predefinidas", "Ruletas predefinidas"
91
+ "Precio mínimo", "Precio mínimo"
92
+ "Precio máximo", "Precio máximo"
93
+ "Total en ventas", "Total en ventas"
94
+ "Unidades", "Unidades"
95
+ "Transacciones", "Número de transacciones"
96
+ "Precio medio esperado", "Precio medio esperado"
97
+ "Fecha inicio", "Fecha inicio"
98
+ "Fecha final", "Fecha final"
app/locale/es_CR/PayRandom_PRPayment.csv ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "a","a"
2
+ "Asignar ruleta","Asignar ruleta"
3
+ "Asignar ruleta PayRandom","Asignar ruleta PayRandom"
4
+ "Atracción","Atracción"
5
+ "Atracción","Atracción"
6
+ "Atracción","Atracción"
7
+ "Atracción Alta","Atracción Alta"
8
+ "Atracción Media","Atracción Media"
9
+ "Atracción Muy Alta","Atracción Muy Alta"
10
+ "Cómo funciona","Cómo funciona"
11
+ "Cómo funciona","Cómo funciona"
12
+ "Compra y Juega","Compra y Juega"
13
+ "Compra y Juega","Compra y Juega"
14
+ "Compra y Juega","Compra y Juega"
15
+ "Compra y Juega con PayRandom","Compra y Juega con PayRandom"
16
+ "Compra y Juega con PayRandom","Compra y Juega con PayRandom"
17
+ "Compra y juega con PayRandom","Compra y Juega con PayRandom"
18
+ "Configura la ruleta","Configura la ruleta"
19
+ "¡Consigue este producto por uno de los precios que vés en la ruleta!","¡Consigue este producto por uno de los precios que vés en la ruleta!"
20
+ "¡Consigue este producto por uno de los precios que vés en la ruleta!","¡Consigue este producto por uno de los precios que vés en la ruleta!"
21
+ "Continua con el proceso de compra y al final jugarás el precio con <strong>PayRandom</strong>","Continua con el proceso de compra y al final jugarás el precio con <strong>PayRandom</strong>"
22
+ "de","de"
23
+ "Debes saber que para jugar con <strong>PayRandom</strong> primero debes demostrar que puedes pagar el precio que te toque, por eso se hará previamente una reserva del <strong>importe máximo</strong> de la compra a través de PayPal.","Debes saber que para jugar con <strong>PayRandom</strong> primero debes demostrar que puedes pagar el precio que te toque, por eso se hará previamente una reserva del <strong>importe máximo</strong> de la compra a través de PayPal."
24
+ "Desde","Desde"
25
+ "Equilibrio","Equilibrio"
26
+ "Equilibrio","Equilibrio"
27
+ "Escribe valor 0 si quieres poner el premio GRATIS","Escribe valor 0 si quieres poner el premio GRATIS"
28
+ "Generando la ruleta...","Generando la ruleta..."
29
+ "Guardar y asignar","Guardar y asignar"
30
+ "Hasta","Hasta"
31
+ "Icono de la oferta","Icono de la oferta"
32
+ "Importe mínimo","Importe mínimo"
33
+ "Los números de la ruleta","Los números de la ruleta"
34
+ "Los precios <strong>PayRandom</strong> no incluyen los gastos de envío.","Los precios <strong>PayRandom</strong> no incluyen los gastos de envío."
35
+ "Más información","Más información"
36
+ "Ninguno","Ninguno"
37
+ "Nombre","Nombre"
38
+ "Nueva ruleta","Nueva ruleta"
39
+ "Nueva ruleta","Nueva ruleta"
40
+ "Ponle nombre a la ruleta","Ponle nombre a la ruleta"
41
+ "Porcentaje","Porcentaje"
42
+ "Precio","Precio"
43
+ "Precio fijo","Precio fijo"
44
+ "Precio medio","Precio medio"
45
+ "Precio medio","Precio medio"
46
+ "Precio medio","Precio medio"
47
+ "Precio medio","Precio medio"
48
+ "PRECIO MÍNIMO:","PRECIO MÍNIMO:"
49
+ "Precio original","Precio original"
50
+ "Precio original","Precio original"
51
+ "Producto","Producto"
52
+ "Producto","Producto"
53
+ "Productos PR en juego","Productos en juego"
54
+ "Productos PR vendidos","Productos vendidos"
55
+ "Recalcular","Recalcular"
56
+ "Recalcular","Recalcular"
57
+ "Ruleta de precios","Ruleta de precios"
58
+ "Ruleta predefinida","Ruleta predefinida"
59
+ "Sin precio fijo","Sin precio fijo"
60
+ "Información de la cuenta","Información de la cuenta"
61
+ "Añadir ruleta PayRandom","Añadir ruleta PayRandom"
62
+ "Oferta guardada correctamente","Oferta guardada correctamente"
63
+ "Descuentos de la oferta","Descuentos de la oferta"
64
+ "Descuentos de la oferta","Descuentos de la oferta"
65
+ "Oferta guardada correctamente","Oferta guardada correctamente"
66
+ "Eliminar ruleta PayRandom","Eliminar ruleta PayRandom"
67
+ "Descuento","Descuento"
68
+ "Editar ruleta PayRandom","Editar ruleta PayRandom"
69
+ "Gratis","Gratis"
70
+ "Desde","Desde"
71
+ "Nombre","Nombre"
72
+ "Producto sin ID","Producto sin ID"
73
+ "Opciones","Opciones"
74
+ "PayRandom","PayRandom"
75
+ "PayRandom-Información de la cuenta","PayRandom-Información de la cuenta"
76
+ "Precio PayRandom","Precio PayRandom:"
77
+ "Porcentajes","Porcentajes"
78
+ "Precios","Precios"
79
+ "Descuentos de la ruleta","Descuentos de la ruleta"
80
+ "Esta oferta no puede ser guardada con PayRandom","Esta oferta no puede ser guardada con PayRandom"
81
+ "Este producto no puede ser guardado con PayRandom","Este producto no puede ser guardado con PayRandom"
82
+ "a","a"
83
+ "Ver formato","Ver formato"
84
+ "Now","Ahora"
85
+ "Fixed price hint", "Precio fijo debe ser mayor que precio medio"
86
+ "Free", "Gratis"
87
+ "Ruleta", "Ruleta"
88
+ "Con precio fijo", "Con precio fijo"
89
+ "Dashboard","Panel de control"
90
+ "Ruletas predefinidas", "Ruletas predefinidas"
91
+ "Precio mínimo", "Precio mínimo"
92
+ "Precio máximo", "Precio máximo"
93
+ "Total en ventas", "Total en ventas"
94
+ "Unidades", "Unidades"
95
+ "Transacciones", "Número de transacciones"
96
+ "Precio medio esperado", "Precio medio esperado"
97
+ "Fecha inicio", "Fecha inicio"
98
+ "Fecha final", "Fecha final"
app/locale/es_ES/PayRandom_PRPayment.csv CHANGED
@@ -88,3 +88,11 @@
88
  "Con precio fijo", "Con precio fijo"
89
  "Dashboard","Panel de control"
90
  "Ruletas predefinidas", "Ruletas predefinidas"
 
 
 
 
 
 
 
 
88
  "Con precio fijo", "Con precio fijo"
89
  "Dashboard","Panel de control"
90
  "Ruletas predefinidas", "Ruletas predefinidas"
91
+ "Precio mínimo", "Precio mínimo"
92
+ "Precio máximo", "Precio máximo"
93
+ "Total en ventas", "Total en ventas"
94
+ "Unidades", "Unidades"
95
+ "Transacciones", "Número de transacciones"
96
+ "Precio medio esperado", "Precio medio esperado"
97
+ "Fecha inicio", "Fecha inicio"
98
+ "Fecha final", "Fecha final"
app/locale/es_MX/PayRandom_PRPayment.csv ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "a","a"
2
+ "Asignar ruleta","Asignar ruleta"
3
+ "Asignar ruleta PayRandom","Asignar ruleta PayRandom"
4
+ "Atracción","Atracción"
5
+ "Atracción","Atracción"
6
+ "Atracción","Atracción"
7
+ "Atracción Alta","Atracción Alta"
8
+ "Atracción Media","Atracción Media"
9
+ "Atracción Muy Alta","Atracción Muy Alta"
10
+ "Cómo funciona","Cómo funciona"
11
+ "Cómo funciona","Cómo funciona"
12
+ "Compra y Juega","Compra y Juega"
13
+ "Compra y Juega","Compra y Juega"
14
+ "Compra y Juega","Compra y Juega"
15
+ "Compra y Juega con PayRandom","Compra y Juega con PayRandom"
16
+ "Compra y Juega con PayRandom","Compra y Juega con PayRandom"
17
+ "Compra y juega con PayRandom","Compra y Juega con PayRandom"
18
+ "Configura la ruleta","Configura la ruleta"
19
+ "¡Consigue este producto por uno de los precios que vés en la ruleta!","¡Consigue este producto por uno de los precios que vés en la ruleta!"
20
+ "¡Consigue este producto por uno de los precios que vés en la ruleta!","¡Consigue este producto por uno de los precios que vés en la ruleta!"
21
+ "Continua con el proceso de compra y al final jugarás el precio con <strong>PayRandom</strong>","Continua con el proceso de compra y al final jugarás el precio con <strong>PayRandom</strong>"
22
+ "de","de"
23
+ "Debes saber que para jugar con <strong>PayRandom</strong> primero debes demostrar que puedes pagar el precio que te toque, por eso se hará previamente una reserva del <strong>importe máximo</strong> de la compra a través de PayPal.","Debes saber que para jugar con <strong>PayRandom</strong> primero debes demostrar que puedes pagar el precio que te toque, por eso se hará previamente una reserva del <strong>importe máximo</strong> de la compra a través de PayPal."
24
+ "Desde","Desde"
25
+ "Equilibrio","Equilibrio"
26
+ "Equilibrio","Equilibrio"
27
+ "Escribe valor 0 si quieres poner el premio GRATIS","Escribe valor 0 si quieres poner el premio GRATIS"
28
+ "Generando la ruleta...","Generando la ruleta..."
29
+ "Guardar y asignar","Guardar y asignar"
30
+ "Hasta","Hasta"
31
+ "Icono de la oferta","Icono de la oferta"
32
+ "Importe mínimo","Importe mínimo"
33
+ "Los números de la ruleta","Los números de la ruleta"
34
+ "Los precios <strong>PayRandom</strong> no incluyen los gastos de envío.","Los precios <strong>PayRandom</strong> no incluyen los gastos de envío."
35
+ "Más información","Más información"
36
+ "Ninguno","Ninguno"
37
+ "Nombre","Nombre"
38
+ "Nueva ruleta","Nueva ruleta"
39
+ "Nueva ruleta","Nueva ruleta"
40
+ "Ponle nombre a la ruleta","Ponle nombre a la ruleta"
41
+ "Porcentaje","Porcentaje"
42
+ "Precio","Precio"
43
+ "Precio fijo","Precio fijo"
44
+ "Precio medio","Precio medio"
45
+ "Precio medio","Precio medio"
46
+ "Precio medio","Precio medio"
47
+ "Precio medio","Precio medio"
48
+ "PRECIO MÍNIMO:","PRECIO MÍNIMO:"
49
+ "Precio original","Precio original"
50
+ "Precio original","Precio original"
51
+ "Producto","Producto"
52
+ "Producto","Producto"
53
+ "Productos PR en juego","Productos en juego"
54
+ "Productos PR vendidos","Productos vendidos"
55
+ "Recalcular","Recalcular"
56
+ "Recalcular","Recalcular"
57
+ "Ruleta de precios","Ruleta de precios"
58
+ "Ruleta predefinida","Ruleta predefinida"
59
+ "Sin precio fijo","Sin precio fijo"
60
+ "Información de la cuenta","Información de la cuenta"
61
+ "Añadir ruleta PayRandom","Añadir ruleta PayRandom"
62
+ "Oferta guardada correctamente","Oferta guardada correctamente"
63
+ "Descuentos de la oferta","Descuentos de la oferta"
64
+ "Descuentos de la oferta","Descuentos de la oferta"
65
+ "Oferta guardada correctamente","Oferta guardada correctamente"
66
+ "Eliminar ruleta PayRandom","Eliminar ruleta PayRandom"
67
+ "Descuento","Descuento"
68
+ "Editar ruleta PayRandom","Editar ruleta PayRandom"
69
+ "Gratis","Gratis"
70
+ "Desde","Desde"
71
+ "Nombre","Nombre"
72
+ "Producto sin ID","Producto sin ID"
73
+ "Opciones","Opciones"
74
+ "PayRandom","PayRandom"
75
+ "PayRandom-Información de la cuenta","PayRandom-Información de la cuenta"
76
+ "Precio PayRandom","Precio PayRandom:"
77
+ "Porcentajes","Porcentajes"
78
+ "Precios","Precios"
79
+ "Descuentos de la ruleta","Descuentos de la ruleta"
80
+ "Esta oferta no puede ser guardada con PayRandom","Esta oferta no puede ser guardada con PayRandom"
81
+ "Este producto no puede ser guardado con PayRandom","Este producto no puede ser guardado con PayRandom"
82
+ "a","a"
83
+ "Ver formato","Ver formato"
84
+ "Now","Ahora"
85
+ "Fixed price hint", "Precio fijo debe ser mayor que precio medio"
86
+ "Free", "Gratis"
87
+ "Ruleta", "Ruleta"
88
+ "Con precio fijo", "Con precio fijo"
89
+ "Dashboard","Panel de control"
90
+ "Ruletas predefinidas", "Ruletas predefinidas"
91
+ "Precio mínimo", "Precio mínimo"
92
+ "Precio máximo", "Precio máximo"
93
+ "Total en ventas", "Total en ventas"
94
+ "Unidades", "Unidades"
95
+ "Transacciones", "Número de transacciones"
96
+ "Precio medio esperado", "Precio medio esperado"
97
+ "Fecha inicio", "Fecha inicio"
98
+ "Fecha final", "Fecha final"
app/locale/es_PA/PayRandom_PRPayment.csv ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "a","a"
2
+ "Asignar ruleta","Asignar ruleta"
3
+ "Asignar ruleta PayRandom","Asignar ruleta PayRandom"
4
+ "Atracción","Atracción"
5
+ "Atracción","Atracción"
6
+ "Atracción","Atracción"
7
+ "Atracción Alta","Atracción Alta"
8
+ "Atracción Media","Atracción Media"
9
+ "Atracción Muy Alta","Atracción Muy Alta"
10
+ "Cómo funciona","Cómo funciona"
11
+ "Cómo funciona","Cómo funciona"
12
+ "Compra y Juega","Compra y Juega"
13
+ "Compra y Juega","Compra y Juega"
14
+ "Compra y Juega","Compra y Juega"
15
+ "Compra y Juega con PayRandom","Compra y Juega con PayRandom"
16
+ "Compra y Juega con PayRandom","Compra y Juega con PayRandom"
17
+ "Compra y juega con PayRandom","Compra y Juega con PayRandom"
18
+ "Configura la ruleta","Configura la ruleta"
19
+ "¡Consigue este producto por uno de los precios que vés en la ruleta!","¡Consigue este producto por uno de los precios que vés en la ruleta!"
20
+ "¡Consigue este producto por uno de los precios que vés en la ruleta!","¡Consigue este producto por uno de los precios que vés en la ruleta!"
21
+ "Continua con el proceso de compra y al final jugarás el precio con <strong>PayRandom</strong>","Continua con el proceso de compra y al final jugarás el precio con <strong>PayRandom</strong>"
22
+ "de","de"
23
+ "Debes saber que para jugar con <strong>PayRandom</strong> primero debes demostrar que puedes pagar el precio que te toque, por eso se hará previamente una reserva del <strong>importe máximo</strong> de la compra a través de PayPal.","Debes saber que para jugar con <strong>PayRandom</strong> primero debes demostrar que puedes pagar el precio que te toque, por eso se hará previamente una reserva del <strong>importe máximo</strong> de la compra a través de PayPal."
24
+ "Desde","Desde"
25
+ "Equilibrio","Equilibrio"
26
+ "Equilibrio","Equilibrio"
27
+ "Escribe valor 0 si quieres poner el premio GRATIS","Escribe valor 0 si quieres poner el premio GRATIS"
28
+ "Generando la ruleta...","Generando la ruleta..."
29
+ "Guardar y asignar","Guardar y asignar"
30
+ "Hasta","Hasta"
31
+ "Icono de la oferta","Icono de la oferta"
32
+ "Importe mínimo","Importe mínimo"
33
+ "Los números de la ruleta","Los números de la ruleta"
34
+ "Los precios <strong>PayRandom</strong> no incluyen los gastos de envío.","Los precios <strong>PayRandom</strong> no incluyen los gastos de envío."
35
+ "Más información","Más información"
36
+ "Ninguno","Ninguno"
37
+ "Nombre","Nombre"
38
+ "Nueva ruleta","Nueva ruleta"
39
+ "Nueva ruleta","Nueva ruleta"
40
+ "Ponle nombre a la ruleta","Ponle nombre a la ruleta"
41
+ "Porcentaje","Porcentaje"
42
+ "Precio","Precio"
43
+ "Precio fijo","Precio fijo"
44
+ "Precio medio","Precio medio"
45
+ "Precio medio","Precio medio"
46
+ "Precio medio","Precio medio"
47
+ "Precio medio","Precio medio"
48
+ "PRECIO MÍNIMO:","PRECIO MÍNIMO:"
49
+ "Precio original","Precio original"
50
+ "Precio original","Precio original"
51
+ "Producto","Producto"
52
+ "Producto","Producto"
53
+ "Productos PR en juego","Productos en juego"
54
+ "Productos PR vendidos","Productos vendidos"
55
+ "Recalcular","Recalcular"
56
+ "Recalcular","Recalcular"
57
+ "Ruleta de precios","Ruleta de precios"
58
+ "Ruleta predefinida","Ruleta predefinida"
59
+ "Sin precio fijo","Sin precio fijo"
60
+ "Información de la cuenta","Información de la cuenta"
61
+ "Añadir ruleta PayRandom","Añadir ruleta PayRandom"
62
+ "Oferta guardada correctamente","Oferta guardada correctamente"
63
+ "Descuentos de la oferta","Descuentos de la oferta"
64
+ "Descuentos de la oferta","Descuentos de la oferta"
65
+ "Oferta guardada correctamente","Oferta guardada correctamente"
66
+ "Eliminar ruleta PayRandom","Eliminar ruleta PayRandom"
67
+ "Descuento","Descuento"
68
+ "Editar ruleta PayRandom","Editar ruleta PayRandom"
69
+ "Gratis","Gratis"
70
+ "Desde","Desde"
71
+ "Nombre","Nombre"
72
+ "Producto sin ID","Producto sin ID"
73
+ "Opciones","Opciones"
74
+ "PayRandom","PayRandom"
75
+ "PayRandom-Información de la cuenta","PayRandom-Información de la cuenta"
76
+ "Precio PayRandom","Precio PayRandom:"
77
+ "Porcentajes","Porcentajes"
78
+ "Precios","Precios"
79
+ "Descuentos de la ruleta","Descuentos de la ruleta"
80
+ "Esta oferta no puede ser guardada con PayRandom","Esta oferta no puede ser guardada con PayRandom"
81
+ "Este producto no puede ser guardado con PayRandom","Este producto no puede ser guardado con PayRandom"
82
+ "a","a"
83
+ "Ver formato","Ver formato"
84
+ "Now","Ahora"
85
+ "Fixed price hint", "Precio fijo debe ser mayor que precio medio"
86
+ "Free", "Gratis"
87
+ "Ruleta", "Ruleta"
88
+ "Con precio fijo", "Con precio fijo"
89
+ "Dashboard","Panel de control"
90
+ "Ruletas predefinidas", "Ruletas predefinidas"
91
+ "Precio mínimo", "Precio mínimo"
92
+ "Precio máximo", "Precio máximo"
93
+ "Total en ventas", "Total en ventas"
94
+ "Unidades", "Unidades"
95
+ "Transacciones", "Número de transacciones"
96
+ "Precio medio esperado", "Precio medio esperado"
97
+ "Fecha inicio", "Fecha inicio"
98
+ "Fecha final", "Fecha final"
app/locale/es_PE/PayRandom_PRPayment.csv ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "a","a"
2
+ "Asignar ruleta","Asignar ruleta"
3
+ "Asignar ruleta PayRandom","Asignar ruleta PayRandom"
4
+ "Atracción","Atracción"
5
+ "Atracción","Atracción"
6
+ "Atracción","Atracción"
7
+ "Atracción Alta","Atracción Alta"
8
+ "Atracción Media","Atracción Media"
9
+ "Atracción Muy Alta","Atracción Muy Alta"
10
+ "Cómo funciona","Cómo funciona"
11
+ "Cómo funciona","Cómo funciona"
12
+ "Compra y Juega","Compra y Juega"
13
+ "Compra y Juega","Compra y Juega"
14
+ "Compra y Juega","Compra y Juega"
15
+ "Compra y Juega con PayRandom","Compra y Juega con PayRandom"
16
+ "Compra y Juega con PayRandom","Compra y Juega con PayRandom"
17
+ "Compra y juega con PayRandom","Compra y Juega con PayRandom"
18
+ "Configura la ruleta","Configura la ruleta"
19
+ "¡Consigue este producto por uno de los precios que vés en la ruleta!","¡Consigue este producto por uno de los precios que vés en la ruleta!"
20
+ "¡Consigue este producto por uno de los precios que vés en la ruleta!","¡Consigue este producto por uno de los precios que vés en la ruleta!"
21
+ "Continua con el proceso de compra y al final jugarás el precio con <strong>PayRandom</strong>","Continua con el proceso de compra y al final jugarás el precio con <strong>PayRandom</strong>"
22
+ "de","de"
23
+ "Debes saber que para jugar con <strong>PayRandom</strong> primero debes demostrar que puedes pagar el precio que te toque, por eso se hará previamente una reserva del <strong>importe máximo</strong> de la compra a través de PayPal.","Debes saber que para jugar con <strong>PayRandom</strong> primero debes demostrar que puedes pagar el precio que te toque, por eso se hará previamente una reserva del <strong>importe máximo</strong> de la compra a través de PayPal."
24
+ "Desde","Desde"
25
+ "Equilibrio","Equilibrio"
26
+ "Equilibrio","Equilibrio"
27
+ "Escribe valor 0 si quieres poner el premio GRATIS","Escribe valor 0 si quieres poner el premio GRATIS"
28
+ "Generando la ruleta...","Generando la ruleta..."
29
+ "Guardar y asignar","Guardar y asignar"
30
+ "Hasta","Hasta"
31
+ "Icono de la oferta","Icono de la oferta"
32
+ "Importe mínimo","Importe mínimo"
33
+ "Los números de la ruleta","Los números de la ruleta"
34
+ "Los precios <strong>PayRandom</strong> no incluyen los gastos de envío.","Los precios <strong>PayRandom</strong> no incluyen los gastos de envío."
35
+ "Más información","Más información"
36
+ "Ninguno","Ninguno"
37
+ "Nombre","Nombre"
38
+ "Nueva ruleta","Nueva ruleta"
39
+ "Nueva ruleta","Nueva ruleta"
40
+ "Ponle nombre a la ruleta","Ponle nombre a la ruleta"
41
+ "Porcentaje","Porcentaje"
42
+ "Precio","Precio"
43
+ "Precio fijo","Precio fijo"
44
+ "Precio medio","Precio medio"
45
+ "Precio medio","Precio medio"
46
+ "Precio medio","Precio medio"
47
+ "Precio medio","Precio medio"
48
+ "PRECIO MÍNIMO:","PRECIO MÍNIMO:"
49
+ "Precio original","Precio original"
50
+ "Precio original","Precio original"
51
+ "Producto","Producto"
52
+ "Producto","Producto"
53
+ "Productos PR en juego","Productos en juego"
54
+ "Productos PR vendidos","Productos vendidos"
55
+ "Recalcular","Recalcular"
56
+ "Recalcular","Recalcular"
57
+ "Ruleta de precios","Ruleta de precios"
58
+ "Ruleta predefinida","Ruleta predefinida"
59
+ "Sin precio fijo","Sin precio fijo"
60
+ "Información de la cuenta","Información de la cuenta"
61
+ "Añadir ruleta PayRandom","Añadir ruleta PayRandom"
62
+ "Oferta guardada correctamente","Oferta guardada correctamente"
63
+ "Descuentos de la oferta","Descuentos de la oferta"
64
+ "Descuentos de la oferta","Descuentos de la oferta"
65
+ "Oferta guardada correctamente","Oferta guardada correctamente"
66
+ "Eliminar ruleta PayRandom","Eliminar ruleta PayRandom"
67
+ "Descuento","Descuento"
68
+ "Editar ruleta PayRandom","Editar ruleta PayRandom"
69
+ "Gratis","Gratis"
70
+ "Desde","Desde"
71
+ "Nombre","Nombre"
72
+ "Producto sin ID","Producto sin ID"
73
+ "Opciones","Opciones"
74
+ "PayRandom","PayRandom"
75
+ "PayRandom-Información de la cuenta","PayRandom-Información de la cuenta"
76
+ "Precio PayRandom","Precio PayRandom:"
77
+ "Porcentajes","Porcentajes"
78
+ "Precios","Precios"
79
+ "Descuentos de la ruleta","Descuentos de la ruleta"
80
+ "Esta oferta no puede ser guardada con PayRandom","Esta oferta no puede ser guardada con PayRandom"
81
+ "Este producto no puede ser guardado con PayRandom","Este producto no puede ser guardado con PayRandom"
82
+ "a","a"
83
+ "Ver formato","Ver formato"
84
+ "Now","Ahora"
85
+ "Fixed price hint", "Precio fijo debe ser mayor que precio medio"
86
+ "Free", "Gratis"
87
+ "Ruleta", "Ruleta"
88
+ "Con precio fijo", "Con precio fijo"
89
+ "Dashboard","Panel de control"
90
+ "Ruletas predefinidas", "Ruletas predefinidas"
91
+ "Precio mínimo", "Precio mínimo"
92
+ "Precio máximo", "Precio máximo"
93
+ "Total en ventas", "Total en ventas"
94
+ "Unidades", "Unidades"
95
+ "Transacciones", "Número de transacciones"
96
+ "Precio medio esperado", "Precio medio esperado"
97
+ "Fecha inicio", "Fecha inicio"
98
+ "Fecha final", "Fecha final"
app/locale/es_VE/PayRandom_PRPayment.csv ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "a","a"
2
+ "Asignar ruleta","Asignar ruleta"
3
+ "Asignar ruleta PayRandom","Asignar ruleta PayRandom"
4
+ "Atracción","Atracción"
5
+ "Atracción","Atracción"
6
+ "Atracción","Atracción"
7
+ "Atracción Alta","Atracción Alta"
8
+ "Atracción Media","Atracción Media"
9
+ "Atracción Muy Alta","Atracción Muy Alta"
10
+ "Cómo funciona","Cómo funciona"
11
+ "Cómo funciona","Cómo funciona"
12
+ "Compra y Juega","Compra y Juega"
13
+ "Compra y Juega","Compra y Juega"
14
+ "Compra y Juega","Compra y Juega"
15
+ "Compra y Juega con PayRandom","Compra y Juega con PayRandom"
16
+ "Compra y Juega con PayRandom","Compra y Juega con PayRandom"
17
+ "Compra y juega con PayRandom","Compra y Juega con PayRandom"
18
+ "Configura la ruleta","Configura la ruleta"
19
+ "¡Consigue este producto por uno de los precios que vés en la ruleta!","¡Consigue este producto por uno de los precios que vés en la ruleta!"
20
+ "¡Consigue este producto por uno de los precios que vés en la ruleta!","¡Consigue este producto por uno de los precios que vés en la ruleta!"
21
+ "Continua con el proceso de compra y al final jugarás el precio con <strong>PayRandom</strong>","Continua con el proceso de compra y al final jugarás el precio con <strong>PayRandom</strong>"
22
+ "de","de"
23
+ "Debes saber que para jugar con <strong>PayRandom</strong> primero debes demostrar que puedes pagar el precio que te toque, por eso se hará previamente una reserva del <strong>importe máximo</strong> de la compra a través de PayPal.","Debes saber que para jugar con <strong>PayRandom</strong> primero debes demostrar que puedes pagar el precio que te toque, por eso se hará previamente una reserva del <strong>importe máximo</strong> de la compra a través de PayPal."
24
+ "Desde","Desde"
25
+ "Equilibrio","Equilibrio"
26
+ "Equilibrio","Equilibrio"
27
+ "Escribe valor 0 si quieres poner el premio GRATIS","Escribe valor 0 si quieres poner el premio GRATIS"
28
+ "Generando la ruleta...","Generando la ruleta..."
29
+ "Guardar y asignar","Guardar y asignar"
30
+ "Hasta","Hasta"
31
+ "Icono de la oferta","Icono de la oferta"
32
+ "Importe mínimo","Importe mínimo"
33
+ "Los números de la ruleta","Los números de la ruleta"
34
+ "Los precios <strong>PayRandom</strong> no incluyen los gastos de envío.","Los precios <strong>PayRandom</strong> no incluyen los gastos de envío."
35
+ "Más información","Más información"
36
+ "Ninguno","Ninguno"
37
+ "Nombre","Nombre"
38
+ "Nueva ruleta","Nueva ruleta"
39
+ "Nueva ruleta","Nueva ruleta"
40
+ "Ponle nombre a la ruleta","Ponle nombre a la ruleta"
41
+ "Porcentaje","Porcentaje"
42
+ "Precio","Precio"
43
+ "Precio fijo","Precio fijo"
44
+ "Precio medio","Precio medio"
45
+ "Precio medio","Precio medio"
46
+ "Precio medio","Precio medio"
47
+ "Precio medio","Precio medio"
48
+ "PRECIO MÍNIMO:","PRECIO MÍNIMO:"
49
+ "Precio original","Precio original"
50
+ "Precio original","Precio original"
51
+ "Producto","Producto"
52
+ "Producto","Producto"
53
+ "Productos PR en juego","Productos en juego"
54
+ "Productos PR vendidos","Productos vendidos"
55
+ "Recalcular","Recalcular"
56
+ "Recalcular","Recalcular"
57
+ "Ruleta de precios","Ruleta de precios"
58
+ "Ruleta predefinida","Ruleta predefinida"
59
+ "Sin precio fijo","Sin precio fijo"
60
+ "Información de la cuenta","Información de la cuenta"
61
+ "Añadir ruleta PayRandom","Añadir ruleta PayRandom"
62
+ "Oferta guardada correctamente","Oferta guardada correctamente"
63
+ "Descuentos de la oferta","Descuentos de la oferta"
64
+ "Descuentos de la oferta","Descuentos de la oferta"
65
+ "Oferta guardada correctamente","Oferta guardada correctamente"
66
+ "Eliminar ruleta PayRandom","Eliminar ruleta PayRandom"
67
+ "Descuento","Descuento"
68
+ "Editar ruleta PayRandom","Editar ruleta PayRandom"
69
+ "Gratis","Gratis"
70
+ "Desde","Desde"
71
+ "Nombre","Nombre"
72
+ "Producto sin ID","Producto sin ID"
73
+ "Opciones","Opciones"
74
+ "PayRandom","PayRandom"
75
+ "PayRandom-Información de la cuenta","PayRandom-Información de la cuenta"
76
+ "Precio PayRandom","Precio PayRandom:"
77
+ "Porcentajes","Porcentajes"
78
+ "Precios","Precios"
79
+ "Descuentos de la ruleta","Descuentos de la ruleta"
80
+ "Esta oferta no puede ser guardada con PayRandom","Esta oferta no puede ser guardada con PayRandom"
81
+ "Este producto no puede ser guardado con PayRandom","Este producto no puede ser guardado con PayRandom"
82
+ "a","a"
83
+ "Ver formato","Ver formato"
84
+ "Now","Ahora"
85
+ "Fixed price hint", "Precio fijo debe ser mayor que precio medio"
86
+ "Free", "Gratis"
87
+ "Ruleta", "Ruleta"
88
+ "Con precio fijo", "Con precio fijo"
89
+ "Dashboard","Panel de control"
90
+ "Ruletas predefinidas", "Ruletas predefinidas"
91
+ "Precio mínimo", "Precio mínimo"
92
+ "Precio máximo", "Precio máximo"
93
+ "Total en ventas", "Total en ventas"
94
+ "Unidades", "Unidades"
95
+ "Transacciones", "Número de transacciones"
96
+ "Precio medio esperado", "Precio medio esperado"
97
+ "Fecha inicio", "Fecha inicio"
98
+ "Fecha final", "Fecha final"
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>PayRandom</name>
4
- <version>1.0.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://docs.payrandom.com/license.txt">PayRandom EULA</license>
7
  <channel>community</channel>
@@ -18,9 +18,9 @@ The PayRandom Magento extension has very easy and flexible configuration. Defini
18
  </description>
19
  <notes>First version of PayRandom Extension</notes>
20
  <authors><author><name>PayRandom</name><user>PayRandom</user><email>it@payrandom.com</email></author></authors>
21
- <date>2014-04-29</date>
22
- <time>15:34:59</time>
23
- <contents><target name="magecommunity"><dir name="PayRandom"><dir name="PRPayment"><dir name="Block"><dir name="Adminhtml"><dir name="Deals"><dir name="Choose"><file name="Grid.php" hash="ec061d3b1bb6736fda14c6112c6d9180"/></dir><file name="Choose.php" hash="10d96478b62e82a3061021d5064d290d"/><dir name="Current"><file name="Grid.php" hash="c9a5a7c225996f62b56a46f3bae2438b"/></dir><file name="Current.php" hash="7c803f8b3eaba2ef9a59dbfd1a23e16d"/><dir name="Edit"><file name="Form.php" hash="3fdb136efba57275a8aad2da1a8bb1d8"/><dir name="Tab"><file name="Form.php" hash="1f3aad8b3b8a7f0fe2fbcf91b76f638e"/></dir><file name="Tabs.php" hash="bd75caf0e5c8c91788a251a41b1e3be3"/></dir><file name="Edit.php" hash="41e3bb79ba574d2ebd9e3c28adfb2a68"/><dir name="Predefined"><file name="Grid.php" hash="714fe9b96f2d0dd816b917edb32ed24f"/></dir><file name="Predefined.php" hash="5bbfb9af7ee7366be25ed3bf5aa06d29"/><dir name="Sold"><file name="Grid.php" hash="3aaf280afd9723d0c6bac1e49736581e"/></dir><file name="Sold.php" hash="d92cf88b0b8069182d65055a6fb1526f"/></dir><dir name="Renderer"><file name="Amount.php" hash="933f0b9c592e8822003035e170568ae7"/><file name="Attraction.php" hash="37a3c0bb2b56489edfe8c051e9446c82"/><file name="Balance.php" hash="c73257ad37f67e425b0de2f90344df14"/><file name="Discount.php" hash="2d766415283487a0ff15396bc33556d2"/><dir name="Fixed"><file name="Value.php" hash="862708174d77b15d091834c317c440e6"/></dir><file name="Option.php" hash="90060431bd574c47ee0264ce947e154d"/></dir></dir><dir name="Catalog"><dir name="Product"><file name="Grid.php" hash="bc1d6048c895ce6d40810227a12b98cf"/><file name="Renderer.php" hash="524c65c3bfb07489a4dd29a2f080af0d"/></dir></dir><dir name="Checkout"><dir name="Cart"><dir name="Item"><file name="Renderer.php" hash="609e2297cddc6849368d1dc8bc1f24dd"/></dir></dir><file name="Cart.php" hash="889215ccd3ad5f9ff94e11387e0f5abc"/><dir name="Onepage"><file name="Link.php" hash="4ccbdb30d2c33d6d8c4d800aab16c17a"/><file name="Payment.php" hash="fb064f0e9fa903c933176602951b2fb0"/><dir name="Review"><file name="Info.php" hash="17cc8e1f74bfe14614ed449559f1a065"/></dir><dir name="Shipping"><file name="Method.php" hash="ddf7ff811bbd7dbe0e400d1df4495f47"/></dir></dir></dir><dir name="Form"><file name="Prpayment.php" hash="6a779901a6fd77c68b99f128c0a9306e"/></dir><dir name="Product"><file name="Price.php" hash="a39bd1d0c2055854dc0c3b9e9502e2cb"/><file name="View.php" hash="d29e3ef952fba72f6699b2aef764d3e5"/></dir><dir name="Tax"><dir name="Checkout"><file name="Grandtotal.php" hash="d73afe8ccd5922532add0caeeac3233b"/><file name="Subtotal.php" hash="1be4da79b745aa37912db036a33ff125"/></dir></dir></dir><dir name="Helper"><dir name="Data"><file name="Api.php" hash="0a7760bba51586c371e6a4360b59f71c"/><file name="Data.php" hash="95303c70a7ccba6e1fdc15b961b34861"/></dir><file name="Data.php" hash="fa746683e9db49545e3829a697455518"/></dir><dir name="Model"><file name="Deal.php" hash="537c4041eb577650bc1d5c1372dc034c"/><file name="Dealproduct.php" hash="c966a33508f79fe921468f358572cf76"/><file name="Observer.php" hash="bfcbff0707d2574d3d867733df95f64b"/><file name="Predefineddeal.php" hash="5c736bbe4720bd4f482639616d0d8a63"/><file name="Productstatistics.php" hash="28cd4d60b117141b9c4b6a414e04113f"/><dir name="Resource"><dir name="Deal"><file name="Collection.php" hash="61fe437cc7cfa1d6ea77c112e44f6ecf"/></dir><file name="Deal.php" hash="f223ffab2a66b549f15ee4749f7622c3"/><dir name="Dealproduct"><file name="Collection.php" hash="eb155a1c8711d46ba9db7735f811c415"/></dir><file name="Dealproduct.php" hash="19b0242542caf7849588739e34945b1e"/><dir name="Predefineddeal"><file name="Collection.php" hash="d953e93ef475932a1095fbf881b66ad6"/></dir><file name="Predefineddeal.php" hash="38af309769889889c89013d7e49dae62"/><dir name="Productstatistics"><file name="Collection.php" hash="13bd0b2faea482ce1183b1c30c446162"/></dir><file name="Productstatistics.php" hash="fbd701977d216f28f621e59722d06bc7"/><file name="Setup.php" hash="b327add31afe9162c24b5dfd1b06ce00"/></dir><file name="Standard.php" hash="a2b5c9a2deba34b3070ff4498ebe00f6"/></dir><dir name="controllers"><file name="DealsController.php" hash="21f8adc4501a7ff1f26c2ae051fba33a"/><file name="InfoController.php" hash="96bae98409222c080c8565735420d284"/><file name="PaymentController.php" hash="3fda6ed2fa5ed2fa8bf6b0a25264ce0b"/></dir><dir name="etc"><file name="adminhtml.xml" hash="0b58e940181753164477dec0455a1348"/><file name="config.xml" hash="587900b2333687fc6fd6243df784bdd3"/><file name="system.xml" hash="dfd67caad87b7b8c6dfd82ad4a65334c"/></dir><dir name="sql"><dir name="prpayment_setup"><file name="mysql4-install-0.1.0.php" hash="d6bf603584056482b491cc4a536bc7d3"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="prpayment.xml" hash="ac76542c7295ba12045f32b63d9d9660"/></dir></dir></dir><dir name="base"><dir name="default"><dir name="template"><dir name="prpayment"><dir name="deal"><file name="design.phtml" hash="49e22aaef0a6dde0ea5f7f05d759b2a4"/></dir><file name="info.phtml" hash="2f9a25742a6337d9ecb17d783253ee43"/><file name="predefinedgrid.phtml" hash="e46771bf9dcb9f1422c4d646ea21469e"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="prpayment.xml" hash="d4dd2c11cb5fe5c1e15b8abb918cd866"/></dir><dir name="template"><dir name="prpayment"><file name="addtocart_pr.phtml" hash="aa3bf04e703543e5b99a6c70a1a8e059"/><dir name="catalog"><dir name="product"><file name="list.phtml" hash="0991f482eeeb4a81c0c51c5929032919"/><dir name="view"><file name="addtocart.phtml" hash="3ff238ba02085969de12866c343c80f9"/><dir name="type"><file name="default.phtml" hash="6c60f13f1c36b063699d0306ac2cfd95"/></dir></dir></dir></dir><dir name="checkout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="b9fe40f7315f4658b291a1090c38b0f9"/></dir></dir><file name="cart.phtml" hash="37f68ee4b94eb3ec2cde95497af5be94"/><dir name="onepage"><file name="link.phtml" hash="c21bc1dbc3dacdbe92cd67f958e5d3c9"/><file name="payment.phtml" hash="55014ab54566609d25ba9e04c5f90ae6"/><dir name="review"><file name="button.phtml" hash="95a6025399dc1a5aaee92418db1645e1"/><file name="item.phtml" hash="cddc602fbf397012a59226c6995fd1cc"/></dir><file name="shipping_method.phtml" hash="d64d7f019c9892d9518e8eb55bb1ee99"/></dir></dir><dir name="form"><file name="prpayment.phtml" hash="b4cc8f26a63e1dc429526bd1940967ca"/></dir><dir name="onestepcheckout"><file name="checkout.phtml" hash="e63249adb87ebd92a0395fb6eb5ba62e"/><file name="summary.phtml" hash="0381513fddad38dcdde9908d0e03b861"/></dir><file name="price.phtml" hash="997a7074af4fa5321f3b2723e93ffc28"/><file name="price_full.phtml" hash="5a2571b1db5a8f3a5fb77c1f9c97c1ed"/><file name="redirect.phtml" hash="ce19453190dd3da44307a9fff0fc28c6"/><file name="review.phtml" hash="348c7335e1cc6272fda82d387e925365"/><dir name="tax"><dir name="checkout"><file name="grandtotal.phtml" hash="573ee13960cc22fe1f82a6e6b5f59d93"/><file name="subtotal.phtml" hash="3ba179826fe726b1dbaf2f28fd01980e"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="PayRandom_PRPayment.xml" hash="5727f69a925695996b91b8c2d9ce7961"/></dir></target><target name="magelocale"><dir name="en_US"><file name="PayRandom_PRPayment.csv" hash="4a77de13290afbba8a6ab86d48fd9952"/></dir><dir name="es_ES"><file name="PayRandom_PRPayment.csv" hash="9205ff2e8882c315af5b4546037ae2e3"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="prpayment"><file name="prpayment.css" hash="f74edce6be2fc686d40187a885b2569d"/></dir></dir><dir name="images"><dir name="prpayment"><file name="help.png" hash="3823cae9129bb395adc500da9c916e60"/><file name="information_excl.png" hash="5c579e56b01614427244ee2eb7fc3c39"/><file name="information_question.png" hash="1b7e201ebeb1488eac878972d713bddd"/><file name="lens.png" hash="3f3c5062fb252d4c36aa2c4e8e4bad46"/><file name="logo_pr.png" hash="70c26e9646f29cc9d20f0282255a7358"/><file name="logo_pr_150.png" hash="3c01749276daadc0264c4a2f76e6d31f"/><file name="logo_pr_min.png" hash="faa5607318a4374d4cf05e084395b9ea"/><file name="logo_pr_small.png" hash="28b30e484bb5c5d5edeeee0ff7abbf08"/><file name="logo_pr_white.png" hash="2647615b68e66afbfd95e47841f7708e"/><file name="logo_pr_white_small.png" hash="0d5f9a3b75b6d5f995a070456b92da9b"/><dir name="modalbox"><file name="close.png" hash="499499a5192b89b8913932e89b9f6ab5"/><file name="roulette.png" hash="24f3c2f22f1b728a50feba99782a1e64"/><file name="video.png" hash="886d90d7581990a37453d6000d5770f1"/></dir><file name="roulette.png" hash="ec9910bb274ce88c25aac5f5205fafc0"/><file name="roulette_2.png" hash="6df658e3cb931521b45701a71170639a"/></dir></dir><dir name="js"><dir name="prpayment"><file name="prpayment.js" hash="5a3c6afd979d7cb17e3352468a7a4311"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="css"><dir name="prpayment"><file name="adminprpayment.css" hash="dbf325b91e00387f3f6b6d430137fff6"/></dir></dir><dir name="js"><dir name="prpayment"><file name="adminprpayment.js" hash="0810daf51e0a2998a70765a107625f60"/></dir></dir></dir></dir><dir name="default"><dir name="default"><dir name="images"><dir name="prpayment"><file name="add.png" hash="2e14e917525c03a9bb424723a405d425"/><file name="attraction_high.png" hash="2fa86c803e339ddeaa77bd31a85f12ce"/><file name="attraction_medium.png" hash="a16ef183a243735eab349226ae364b37"/><file name="attraction_very_high.png" hash="67c036c80d26ae1984fd84dddfaa8251"/><file name="delete.png" hash="e225c29689687426e53541caeac2fc9c"/><file name="edit.png" hash="d80e84602f3a7599df1bc4ee42328a92"/><file name="payrandom.png" hash="95dcb57f8ff5550a46a66b53ddbd03a6"/><file name="slider-attraction.png" hash="64eca9aed81a1a39c39175f0d85b5a6b"/><file name="slider-handler-shadow.png" hash="e197e1486183c8fcef304da95f493b15"/><file name="slider-handler.png" hash="0fea74dd25fa6923e3f8ee4aea01348e"/><file name="slider.png" hash="3fce1f1d383e93fa2eaa7a61fab731db"/></dir></dir></dir></dir></dir></target></contents>
24
  <compatible/>
25
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
26
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>PayRandom</name>
4
+ <version>1.0.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://docs.payrandom.com/license.txt">PayRandom EULA</license>
7
  <channel>community</channel>
18
  </description>
19
  <notes>First version of PayRandom Extension</notes>
20
  <authors><author><name>PayRandom</name><user>PayRandom</user><email>it@payrandom.com</email></author></authors>
21
+ <date>2014-05-27</date>
22
+ <time>12:00:51</time>
23
+ <contents><target name="magecommunity"><dir name="PayRandom"><dir name="PRPayment"><dir name="Block"><dir name="Adminhtml"><dir name="Deals"><dir name="Choose"><file name="Grid.php" hash="ec061d3b1bb6736fda14c6112c6d9180"/></dir><file name="Choose.php" hash="10d96478b62e82a3061021d5064d290d"/><dir name="Current"><file name="Grid.php" hash="c9a5a7c225996f62b56a46f3bae2438b"/></dir><file name="Current.php" hash="7c803f8b3eaba2ef9a59dbfd1a23e16d"/><dir name="Edit"><file name="Form.php" hash="3fdb136efba57275a8aad2da1a8bb1d8"/><dir name="Tab"><file name="Form.php" hash="1f3aad8b3b8a7f0fe2fbcf91b76f638e"/></dir><file name="Tabs.php" hash="bd75caf0e5c8c91788a251a41b1e3be3"/></dir><file name="Edit.php" hash="41e3bb79ba574d2ebd9e3c28adfb2a68"/><dir name="Predefined"><file name="Grid.php" hash="714fe9b96f2d0dd816b917edb32ed24f"/></dir><file name="Predefined.php" hash="5bbfb9af7ee7366be25ed3bf5aa06d29"/><dir name="Sold"><file name="Grid.php" hash="3aaf280afd9723d0c6bac1e49736581e"/></dir><file name="Sold.php" hash="d92cf88b0b8069182d65055a6fb1526f"/></dir><dir name="Renderer"><file name="Amount.php" hash="933f0b9c592e8822003035e170568ae7"/><file name="Attraction.php" hash="37a3c0bb2b56489edfe8c051e9446c82"/><file name="Balance.php" hash="c73257ad37f67e425b0de2f90344df14"/><file name="Discount.php" hash="2d766415283487a0ff15396bc33556d2"/><dir name="Fixed"><file name="Value.php" hash="862708174d77b15d091834c317c440e6"/></dir><file name="Option.php" hash="90060431bd574c47ee0264ce947e154d"/></dir></dir><dir name="Catalog"><dir name="Product"><file name="Grid.php" hash="bc1d6048c895ce6d40810227a12b98cf"/><file name="Renderer.php" hash="524c65c3bfb07489a4dd29a2f080af0d"/></dir></dir><dir name="Checkout"><dir name="Cart"><dir name="Item"><file name="Renderer.php" hash="609e2297cddc6849368d1dc8bc1f24dd"/></dir></dir><file name="Cart.php" hash="889215ccd3ad5f9ff94e11387e0f5abc"/><dir name="Onepage"><file name="Link.php" hash="4ccbdb30d2c33d6d8c4d800aab16c17a"/><file name="Payment.php" hash="fb064f0e9fa903c933176602951b2fb0"/><dir name="Review"><file name="Info.php" hash="17cc8e1f74bfe14614ed449559f1a065"/></dir><dir name="Shipping"><file name="Method.php" hash="ddf7ff811bbd7dbe0e400d1df4495f47"/></dir></dir></dir><dir name="Form"><file name="Prpayment.php" hash="6a779901a6fd77c68b99f128c0a9306e"/></dir><dir name="Product"><file name="Price.php" hash="a39bd1d0c2055854dc0c3b9e9502e2cb"/><file name="View.php" hash="d29e3ef952fba72f6699b2aef764d3e5"/></dir><dir name="Tax"><dir name="Checkout"><file name="Grandtotal.php" hash="d73afe8ccd5922532add0caeeac3233b"/><file name="Subtotal.php" hash="1be4da79b745aa37912db036a33ff125"/><file name="Tax.php" hash="3d935b65a8e0ef70ad0db82585b63926"/></dir></dir></dir><dir name="Helper"><dir name="Data"><file name="Api.php" hash="0a7760bba51586c371e6a4360b59f71c"/><file name="Data.php" hash="95303c70a7ccba6e1fdc15b961b34861"/></dir><file name="Data.php" hash="fa746683e9db49545e3829a697455518"/></dir><dir name="Model"><file name="Deal.php" hash="537c4041eb577650bc1d5c1372dc034c"/><file name="Dealproduct.php" hash="c966a33508f79fe921468f358572cf76"/><file name="Observer.php" hash="bfcbff0707d2574d3d867733df95f64b"/><file name="Predefineddeal.php" hash="5c736bbe4720bd4f482639616d0d8a63"/><file name="Productstatistics.php" hash="28cd4d60b117141b9c4b6a414e04113f"/><dir name="Resource"><dir name="Deal"><file name="Collection.php" hash="61fe437cc7cfa1d6ea77c112e44f6ecf"/></dir><file name="Deal.php" hash="f223ffab2a66b549f15ee4749f7622c3"/><dir name="Dealproduct"><file name="Collection.php" hash="eb155a1c8711d46ba9db7735f811c415"/></dir><file name="Dealproduct.php" hash="19b0242542caf7849588739e34945b1e"/><dir name="Predefineddeal"><file name="Collection.php" hash="d953e93ef475932a1095fbf881b66ad6"/></dir><file name="Predefineddeal.php" hash="38af309769889889c89013d7e49dae62"/><dir name="Productstatistics"><file name="Collection.php" hash="13bd0b2faea482ce1183b1c30c446162"/></dir><file name="Productstatistics.php" hash="fbd701977d216f28f621e59722d06bc7"/><file name="Setup.php" hash="b327add31afe9162c24b5dfd1b06ce00"/></dir><file name="Standard.php" hash="a2b5c9a2deba34b3070ff4498ebe00f6"/></dir><dir name="controllers"><file name="DealsController.php" hash="21f8adc4501a7ff1f26c2ae051fba33a"/><file name="InfoController.php" hash="96bae98409222c080c8565735420d284"/><file name="PaymentController.php" hash="3fda6ed2fa5ed2fa8bf6b0a25264ce0b"/></dir><dir name="etc"><file name="adminhtml.xml" hash="0b58e940181753164477dec0455a1348"/><file name="config.xml" hash="60de6aeda085d4bbd50242d4be67b601"/><file name="system.xml" hash="dfd67caad87b7b8c6dfd82ad4a65334c"/></dir><dir name="sql"><dir name="prpayment_setup"><file name="mysql4-install-0.1.0.php" hash="d6bf603584056482b491cc4a536bc7d3"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="prpayment.xml" hash="ac76542c7295ba12045f32b63d9d9660"/></dir></dir></dir><dir name="base"><dir name="default"><dir name="template"><dir name="prpayment"><dir name="deal"><file name="design.phtml" hash="49e22aaef0a6dde0ea5f7f05d759b2a4"/></dir><file name="info.phtml" hash="2f9a25742a6337d9ecb17d783253ee43"/><file name="predefinedgrid.phtml" hash="e46771bf9dcb9f1422c4d646ea21469e"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="prpayment.xml" hash="d4dd2c11cb5fe5c1e15b8abb918cd866"/></dir><dir name="template"><dir name="prpayment"><file name="addtocart_pr.phtml" hash="aa3bf04e703543e5b99a6c70a1a8e059"/><dir name="catalog"><dir name="product"><file name="list.phtml" hash="0991f482eeeb4a81c0c51c5929032919"/><dir name="view"><file name="addtocart.phtml" hash="3ff238ba02085969de12866c343c80f9"/><dir name="type"><file name="default.phtml" hash="6c60f13f1c36b063699d0306ac2cfd95"/></dir></dir></dir></dir><dir name="checkout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="b9fe40f7315f4658b291a1090c38b0f9"/></dir></dir><file name="cart.phtml" hash="37f68ee4b94eb3ec2cde95497af5be94"/><dir name="onepage"><file name="link.phtml" hash="c21bc1dbc3dacdbe92cd67f958e5d3c9"/><file name="payment.phtml" hash="55014ab54566609d25ba9e04c5f90ae6"/><dir name="review"><file name="button.phtml" hash="95a6025399dc1a5aaee92418db1645e1"/><file name="item.phtml" hash="cddc602fbf397012a59226c6995fd1cc"/></dir><file name="shipping_method.phtml" hash="d64d7f019c9892d9518e8eb55bb1ee99"/></dir></dir><dir name="form"><file name="prpayment.phtml" hash="b4cc8f26a63e1dc429526bd1940967ca"/></dir><dir name="onestepcheckout"><file name="checkout.phtml" hash="e63249adb87ebd92a0395fb6eb5ba62e"/><file name="summary.phtml" hash="c09f843ac070e481bab86ed81772fd02"/></dir><file name="price.phtml" hash="997a7074af4fa5321f3b2723e93ffc28"/><file name="price_full.phtml" hash="5a2571b1db5a8f3a5fb77c1f9c97c1ed"/><file name="redirect.phtml" hash="ce19453190dd3da44307a9fff0fc28c6"/><file name="review.phtml" hash="348c7335e1cc6272fda82d387e925365"/><dir name="tax"><dir name="checkout"><file name="grandtotal.phtml" hash="e195a9a50a0b0f6ae8a2cc31499aa7ed"/><file name="subtotal.phtml" hash="3ba179826fe726b1dbaf2f28fd01980e"/><file name="tax.phtml" hash="1c1fafa4df110aaf7a2e77b4bc0dd1cc"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="PayRandom_PRPayment.xml" hash="5727f69a925695996b91b8c2d9ce7961"/></dir></target><target name="magelocale"><dir name="en_US"><file name="PayRandom_PRPayment.csv" hash="5354d3e29ca615c3297b68af73761c3e"/></dir><dir name="es_ES"><file name="PayRandom_PRPayment.csv" hash="98827af26114144b8221bb1ce69ecf67"/></dir><dir name="en_AU"><file name="PayRandom_PRPayment.csv" hash="5354d3e29ca615c3297b68af73761c3e"/></dir><dir name="en_IE"><file name="PayRandom_PRPayment.csv" hash="5354d3e29ca615c3297b68af73761c3e"/></dir><dir name="en_NZ"><file name="PayRandom_PRPayment.csv" hash="5354d3e29ca615c3297b68af73761c3e"/></dir><dir name="en_CA"><file name="PayRandom_PRPayment.csv" hash="5354d3e29ca615c3297b68af73761c3e"/></dir><dir name="en_GB"><file name="PayRandom_PRPayment.csv" hash="5354d3e29ca615c3297b68af73761c3e"/></dir><dir name="es_AR"><file name="PayRandom_PRPayment.csv" hash="98827af26114144b8221bb1ce69ecf67"/></dir><dir name="es_CL"><file name="PayRandom_PRPayment.csv" hash="98827af26114144b8221bb1ce69ecf67"/></dir><dir name="es_CO"><file name="PayRandom_PRPayment.csv" hash="98827af26114144b8221bb1ce69ecf67"/></dir><dir name="es_CR"><file name="PayRandom_PRPayment.csv" hash="98827af26114144b8221bb1ce69ecf67"/></dir><dir name="es_MX"><file name="PayRandom_PRPayment.csv" hash="98827af26114144b8221bb1ce69ecf67"/></dir><dir name="es_PA"><file name="PayRandom_PRPayment.csv" hash="98827af26114144b8221bb1ce69ecf67"/></dir><dir name="es_PE"><file name="PayRandom_PRPayment.csv" hash="98827af26114144b8221bb1ce69ecf67"/></dir><dir name="es_VE"><file name="PayRandom_PRPayment.csv" hash="98827af26114144b8221bb1ce69ecf67"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="prpayment"><file name="prpayment.css" hash="f74edce6be2fc686d40187a885b2569d"/></dir></dir><dir name="images"><dir name="prpayment"><file name="help.png" hash="3823cae9129bb395adc500da9c916e60"/><file name="information_excl.png" hash="5c579e56b01614427244ee2eb7fc3c39"/><file name="information_question.png" hash="1b7e201ebeb1488eac878972d713bddd"/><file name="lens.png" hash="3f3c5062fb252d4c36aa2c4e8e4bad46"/><file name="logo_pr.png" hash="70c26e9646f29cc9d20f0282255a7358"/><file name="logo_pr_150.png" hash="3c01749276daadc0264c4a2f76e6d31f"/><file name="logo_pr_min.png" hash="faa5607318a4374d4cf05e084395b9ea"/><file name="logo_pr_small.png" hash="28b30e484bb5c5d5edeeee0ff7abbf08"/><file name="logo_pr_white.png" hash="2647615b68e66afbfd95e47841f7708e"/><file name="logo_pr_white_small.png" hash="0d5f9a3b75b6d5f995a070456b92da9b"/><dir name="modalbox"><file name="close.png" hash="499499a5192b89b8913932e89b9f6ab5"/><file name="roulette.png" hash="24f3c2f22f1b728a50feba99782a1e64"/><file name="video.png" hash="886d90d7581990a37453d6000d5770f1"/></dir><file name="roulette.png" hash="ec9910bb274ce88c25aac5f5205fafc0"/><file name="roulette_2.png" hash="6df658e3cb931521b45701a71170639a"/></dir></dir><dir name="js"><dir name="prpayment"><file name="prpayment.js" hash="5a3c6afd979d7cb17e3352468a7a4311"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="css"><dir name="prpayment"><file name="adminprpayment.css" hash="dbf325b91e00387f3f6b6d430137fff6"/></dir></dir><dir name="js"><dir name="prpayment"><file name="adminprpayment.js" hash="e44e9e3b878df2c9b3cd2f8138f09a86"/></dir></dir></dir></dir><dir name="default"><dir name="default"><dir name="images"><dir name="prpayment"><file name="add.png" hash="2e14e917525c03a9bb424723a405d425"/><file name="attraction_high.png" hash="2fa86c803e339ddeaa77bd31a85f12ce"/><file name="attraction_medium.png" hash="a16ef183a243735eab349226ae364b37"/><file name="attraction_very_high.png" hash="67c036c80d26ae1984fd84dddfaa8251"/><file name="delete.png" hash="e225c29689687426e53541caeac2fc9c"/><file name="edit.png" hash="d80e84602f3a7599df1bc4ee42328a92"/><file name="payrandom.png" hash="95dcb57f8ff5550a46a66b53ddbd03a6"/><file name="slider-attraction.png" hash="64eca9aed81a1a39c39175f0d85b5a6b"/><file name="slider-handler-shadow.png" hash="e197e1486183c8fcef304da95f493b15"/><file name="slider-handler.png" hash="0fea74dd25fa6923e3f8ee4aea01348e"/><file name="slider.png" hash="3fce1f1d383e93fa2eaa7a61fab731db"/></dir></dir></dir></dir></dir></target></contents>
24
  <compatible/>
25
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
26
  </package>
skin/adminhtml/base/default/js/prpayment/adminprpayment.js CHANGED
@@ -49,7 +49,7 @@ function updateDiffDiscountsFromDeals(redrawRoulette){
49
  text = '+' + value;
50
  }
51
  if(value == -100){
52
- $('result-deal-' + i).update('GRATIS');
53
  }else{
54
  $('result-deal-' + i).update(text + '%');
55
  }
49
  text = '+' + value;
50
  }
51
  if(value == -100){
52
+ $('result-deal-' + i).update(jsTranslate.freeText.toUpperCase());
53
  }else{
54
  $('result-deal-' + i).update(text + '%');
55
  }