BUG-13604 Day and month are not translated
Day and month are not translated when the country is not used inside the po file header
This commit is contained in:
@@ -133,6 +133,16 @@ class Language extends BaseLanguage
|
||||
return $oDataset->getRow();
|
||||
}
|
||||
|
||||
public function findLocationByLanId ($LAN_ID)
|
||||
{
|
||||
$oCriteria = new Criteria( 'workflow' );
|
||||
$oCriteria->addSelectColumn( LanguagePeer::LAN_LOCATION );
|
||||
$oCriteria->add( LanguagePeer::LAN_ID, $LAN_ID, Criteria::LIKE );
|
||||
$oDataset = LanguagePeer::doSelectRS( $oCriteria );
|
||||
$oDataset->setFetchmode( ResultSet::FETCHMODE_ASSOC );
|
||||
$oDataset->next();
|
||||
return $oDataset->getRow();
|
||||
}
|
||||
/*
|
||||
* Import a language file
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user