Skip to content
Snippets Groups Projects
Commit 0edda0fc authored by Hanne Moa's avatar Hanne Moa
Browse files

Add noop() function for marking translations

parent 892926ff
No related branches found
No related tags found
No related merge requests found
......@@ -221,6 +221,19 @@ class Translate
}
/**
* Mark a string for translation without translating it.
*
* @param string $tag A tag name to mark for translation.
*
* @return string The tag, unchanged.
*/
public function noop($tag)
{
return $tag;
}
/**
* Translate a tag into the current language, with a fallback to english.
*
......@@ -245,7 +258,7 @@ class Translate
public function t(
$tag,
$replacements = array(),
$fallbackdefault = true,
$fallbackdefault = true, // TODO: remove this for 2.0. Assume true
$oldreplacements = array(), // TODO: remove this for 2.0
$striptags = false // TODO: remove this for 2.0
) {
......
......@@ -566,6 +566,18 @@ class SimpleSAML_XHTML_Template
}
/**
* Wrap Language->noop to mark a tag for translation but actually do it later.
*
* @see \SimpleSAML\Locale\Translate::noop()
* @deprecated This method will be removed in SSP 2.0. Please use \SimpleSAML\Locale\Translate::t() instead.
*/
public function noop($tag)
{
return $this->translator->noop($tag);
}
/**
* Wrap Language->t to translate tag into the current language, with a fallback to english.
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment