Plugin Directory

Changeset 1018158


Ignore:
Timestamp:
11/02/2014 03:05:33 AM (11 years ago)
Author:
orillacart
Message:

1.Addedd missing string translation.
2.Fix shipping rate price formating

Location:
orillacart/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • orillacart/trunk/com_shop/helpers/standart_shipping.php

    r879830 r1018158  
    387387
    388388        $order = Factory::getApplication('shop')->getHelper('order');
     389        $price = Factory::getApplication('shop')->getHelper('price');
    389390        $params = Factory::getApplication('shop')->getParams();
    390391        $rates = $this->get_rates();
     
    432433
    433434
    434             $row->name = strings::stripAndEncode($rate->name . " - " . $rate->shipping_rate_name . " (+" . $row->rate . ") ");
     435            $row->name = strings::stripAndEncode($rate->name . " - " . $rate->shipping_rate_name . " (+" . $price->format($row->rate) . ") ");
    435436
    436437            $id = new stdClass();
  • orillacart/trunk/com_shop/languages/com_shop.pot

    r957949 r1018158  
    28782878msgstr ""
    28792879
     2880#: methods/paypal.php:182
     2881msgid "Please wait, you will be redirected to paypal shortly!"
     2882msgstr ""
     2883
    28802884#: tables/carrier.php:47
    28812885msgid "Enter carrier label"
  • orillacart/trunk/com_shop/methods/paypal.php

    r1013967 r1018158  
    180180                    echo "</form>";
    181181                    ?>
    182                     <div style='margin:0 auto; font-weight:bold; width:100%; text-align:center;'>Please wait, you will be redirected to paypal shortly!</div>
     182                    <div style='margin:0 auto; font-weight:bold; width:100%; text-align:center;'><?php _e("Please wait, you will be redirected to paypal shortly!","com_shop"); ?></div>
    183183                    <script type='text/javascript'>document.paypalfrm.submit();</script>
    184184
  • orillacart/trunk/main.php

    r1013967 r1018158  
    33/*
    44  Plugin Name: OrillaCart
    5   Version: 1.3.0
     5  Version: 1.3.1
    66  Description: ecommerce solution for WordPress
    77  Plugin URI: http://orillacart.com
     
    1717define("ORILLA_FRAMEWORK_BASE",realpath(dirname(__FILE__)));
    1818define("ORILLA_FRAMEWORK_CORE",realpath(dirname(__FILE__).DS."core"));
    19 define("ORILLACART_VERSION","1.3.0");
     19define("ORILLACART_VERSION","1.3.1");
    2020
    2121define("ORILLA_FRAMEWORK_PUBLIC_KEY",realpath(dirname(__FILE__).DS."core".DS."public_key".DS."orillacart.pub"));
Note: See TracChangeset for help on using the changeset viewer.