/**
  * Returns the translated string for the given LLL path
  *
  * @param	string		$label: LLL path
  * @return	string		The translated string
  */
 function _getLLLabel($mLabel)
 {
     if (tx_ameosformidable::isRunneable($mLabel)) {
         $mLabel = $this->callRunneable($mLabel);
     }
     if ($this->sDefaultLLLPrefix !== FALSE) {
         if (t3lib_div::isFirstPartOfStr($mLabel, "LLL:") && !t3lib_div::isFirstPartOfStr($mLabel, "LLL:EXT:")) {
             $mLabel = str_replace("LLL:", "LLL:" . $this->sDefaultLLLPrefix . ":", $mLabel);
         }
     }
     $mLabel = tx_ameosformidable::resolveLLL($mLabel);
     return $mLabel;
 }