ng-easycommerce 0.0.583 → 0.0.585
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/assets/decidirFormEc.html +2 -2
- package/assets/ec-i18n/en.json +3 -1
- package/assets/ec-i18n/es.json +3 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
# version 0.0.585
|
|
2
|
+
- Modificación texto total a pagar en `decidir-ec.component.html`
|
|
3
|
+
# version 0.0.584
|
|
4
|
+
- Se agrega traducciones a es.json y en.json para reviews.
|
|
1
5
|
# version 0.0.583
|
|
2
6
|
- Se agrega injector en product detail para obtener config channel.
|
|
3
7
|
# version 0.0.582
|
|
@@ -141,11 +141,11 @@
|
|
|
141
141
|
inputRate.setAttribute('id', 'total_con_interes');
|
|
142
142
|
inputRate.setAttribute('name', 'total_con_interes');
|
|
143
143
|
inputRate.setAttribute('readonly', true); // Input de solo lectura
|
|
144
|
-
inputRate.setAttribute('placeholder', 'Total
|
|
144
|
+
inputRate.setAttribute('placeholder', 'Total a pagar');
|
|
145
145
|
|
|
146
146
|
let labelRate = document.createElement('label');
|
|
147
147
|
labelRate.setAttribute('for', 'total_con_interes');
|
|
148
|
-
labelRate.textContent = 'Total
|
|
148
|
+
labelRate.textContent = 'Total a pagar:';
|
|
149
149
|
|
|
150
150
|
contInputRate.appendChild(inputRate);
|
|
151
151
|
contInputRate.appendChild(labelRate);
|
package/assets/ec-i18n/en.json
CHANGED
|
@@ -378,5 +378,7 @@
|
|
|
378
378
|
"error-convertibility": "Convertibility error. Try again later.",
|
|
379
379
|
"repeat-order": "Repeat order",
|
|
380
380
|
"no-products-to-add": "You have no products to add",
|
|
381
|
-
"not-enough-credits": "You do not have enough credits to make this purchase."
|
|
381
|
+
"not-enough-credits": "You do not have enough credits to make this purchase.",
|
|
382
|
+
"thanks-send-review": "Thank you for leaving a review.",
|
|
383
|
+
"authenticated-for-comment": "Please log in to leave a review."
|
|
382
384
|
}
|
package/assets/ec-i18n/es.json
CHANGED
|
@@ -383,5 +383,7 @@
|
|
|
383
383
|
"error-convertibility": "Se produjo un error al realizar la conversión",
|
|
384
384
|
"repeat-order": "Repetir pedido",
|
|
385
385
|
"no-products-to-add": "No hay productos para agregar",
|
|
386
|
-
"not-enough-credits": "No tiene suficientes créditos para comprar este producto"
|
|
386
|
+
"not-enough-credits": "No tiene suficientes créditos para comprar este producto",
|
|
387
|
+
"thanks-send-review": "Gracias por dejar una reseña.",
|
|
388
|
+
"authenticated-for-comment": "Inicia sesión para dejar una reseña."
|
|
387
389
|
}
|