define(['mage/utils/wrapper','mage/translate'],function(wrapper,$t){'use strict';return function(priceUtils){priceUtils.formatPrice=wrapper.wrapSuper(priceUtils.formatPrice,function(amount,format,isShowSig){var result=this._super(amount,format,isShowSig);if(amount==0){return $t('free');} return result;});priceUtils.formatPriceLocale=wrapper.wrapSuper(priceUtils.formatPriceLocale,function(amount,format,isShowSig){var result=this._super(amount,format,isShowSig);if(amount==0){return $t('free');} return result;});return priceUtils;};});