本文整理汇总了PHP中OCP\Activity\IManager::translate方法的典型用法代码示例。如果您正苦于以下问题:PHP IManager::translate方法的具体用法?PHP IManager::translate怎么用?PHP IManager::translate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OCP\Activity\IManager
的用法示例。
在下文中一共展示了IManager::translate方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: translation
/**
* @brief Translate an event string with the translations from the app where it was send from
* @param string $app The app where this event comes from
* @param string $text The text including placeholders
* @param array $params The parameter for the placeholder
* @param bool $stripPath Shall we strip the path from file names?
* @param bool $highlightParams Shall we highlight the parameters in the string?
* They will be highlighted with `<strong>`, all data will be passed through
* \OCP\Util::sanitizeHTML() before, so no XSS is possible.
* @return string translated
*/
public function translation($app, $text, $params, $stripPath = false, $highlightParams = false)
{
if (!$text) {
return '';
}
$preparedParams = $this->parameterHelper->prepareParameters($params, $this->parameterHelper->getSpecialParameterList($app, $text), $stripPath, $highlightParams);
// Allow apps to correctly translate their activities
$translation = $this->activityManager->translate($app, $text, $preparedParams, $stripPath, $highlightParams, $this->l->getLanguageCode());
if ($translation !== false) {
return $translation;
}
$l = Util::getL10N($app, $this->l->getLanguageCode());
return $l->t($text, $preparedParams);
}
示例2: translation
/**
* @brief Translate an event string with the translations from the app where it was send from
* @param string $app The app where this event comes from
* @param string $text The text including placeholders
* @param IParameter[] $params The parameter for the placeholder
* @return string translated
*/
public function translation($app, $text, array $params)
{
if (!$text) {
return '';
}
$preparedParams = [];
foreach ($params as $parameter) {
$preparedParams[] = $parameter->format();
}
// Allow apps to correctly translate their activities
$translation = $this->activityManager->translate($app, $text, $preparedParams, false, false, $this->l->getLanguageCode());
if ($translation !== false) {
return $translation;
}
$l = $this->l10Nfactory->get($app, $this->l->getLanguageCode());
return $l->t($text, $preparedParams);
}
示例3: translation
/**
* @brief Translate an event string with the translations from the app where it was send from
* @param string $app The app where this event comes from
* @param string $text The text including placeholders
* @param array $params The parameter for the placeholder
* @param bool $stripPath Shall we strip the path from file names?
* @param bool $highlightParams Shall we highlight the parameters in the string?
* They will be highlighted with `<strong>`, all data will be passed through
* \OCP\Util::sanitizeHTML() before, so no XSS is possible.
* @return string translated
*/
public function translation($app, $text, $params, $stripPath = false, $highlightParams = false)
{
if (!$text) {
return '';
}
if ($app === 'files') {
$preparedParams = $this->parameterHelper->prepareParameters($params, $this->parameterHelper->getSpecialParameterList($app, $text), $stripPath, $highlightParams);
switch ($text) {
case 'created_self':
return $this->l->t('You created %1$s', $preparedParams);
case 'created_by':
return $this->l->t('%2$s created %1$s', $preparedParams);
case 'created_public':
return $this->l->t('%1$s was created in a public folder', $preparedParams);
case 'changed_self':
return $this->l->t('You changed %1$s', $preparedParams);
case 'changed_by':
return $this->l->t('%2$s changed %1$s', $preparedParams);
case 'deleted_self':
return $this->l->t('You deleted %1$s', $preparedParams);
case 'deleted_by':
return $this->l->t('%2$s deleted %1$s', $preparedParams);
case 'shared_user_self':
return $this->l->t('You shared %1$s with %2$s', $preparedParams);
case 'shared_group_self':
return $this->l->t('You shared %1$s with group %2$s', $preparedParams);
case 'shared_with_by':
return $this->l->t('%2$s shared %1$s with you', $preparedParams);
case 'shared_link_self':
return $this->l->t('You shared %1$s via link', $preparedParams);
}
}
// Allow other apps to correctly translate their activities
$translation = $this->activityManager->translate($app, $text, $params, $stripPath, $highlightParams, $this->l->getLanguageCode());
if ($translation !== false) {
return $translation;
}
$l = Util::getL10N($app);
return $l->t($text, $params);
}