Hi foleys,
1. You can edit the view "Checkout / cart.php" in HikaShop > Display > Views, and add the line:
if($this->step == 1){
echo JText::_('HIKA_LOOK_OVER_LAST_STEP');
}
Before
<div id="hikashop_checkout_cart" class="hikashop_checkout_cart">
You will certainly have to change " == 1" to another value, it depends of the step number in your checkout workflow.
2. You can change the translation in HikaShop > Configuration > Languages, edit the english file and change the translation:
HIKASHOP_CHECKOUT_CART="Cart"
By:
HIKASHOP_CHECKOUT_CART="Overview"
And add the translation:
HIKA_LOOK_OVER_LAST_STEP="Please look over you cart before submitting the order"
for the 1st point.