示例#1
0
 /**
  * Parse one type
  *
  * @param array $options
  * @return void
  */
 protected function _parseByTypeOptions($options)
 {
     foreach ($this->_getFiles($options) as $file) {
         $adapter = $this->_adapters[$options['type']];
         $adapter->parse($file);
         list($contextType, $contextValue) = $this->_context->getContextByPath($file);
         foreach ($adapter->getPhrases() as $phraseData) {
             $this->_addPhrase($phraseData, $contextType, $contextValue);
         }
     }
 }
示例#2
0
 /**
  * Build pack files data
  *
  * @param Dictionary $dictionary
  * @return array
  * @throws \RuntimeException
  */
 protected function _buildPackFilesData(Dictionary $dictionary)
 {
     $files = array();
     foreach ($dictionary->getPhrases() as $key => $phrase) {
         if (!$phrase->getContextType() || !$phrase->getContextValue()) {
             throw new \RuntimeException(sprintf('Missed context in row #%d.', $key + 1) . "\n" . 'Each row has to consist of 3 columns: original phrase, translation, context');
         }
         foreach ($phrase->getContextValue() as $context) {
             try {
                 $path = $this->_context->buildPathToLocaleDirectoryByContext($phrase->getContextType(), $context);
             } catch (\InvalidArgumentException $e) {
                 throw new \InvalidArgumentException($e->getMessage() . ' Row #' . ($key + 1) . '.');
             }
             $filename = $this->_packPath . $path . $this->_locale . '.' . $this->_getFileExtension();
             $files[$filename][$phrase->getPhrase()] = $phrase;
         }
     }
     return $files;
 }
示例#3
0
 /**
  * @expectedException \InvalidArgumentException
  * @expectedExceptionMessage Invalid context given: "invalid_type".
  */
 public function testBuildPathToLocaleDirectoryByContextWithInvalidType()
 {
     $this->context->buildPathToLocaleDirectoryByContext('invalid_type', 'Magento_Module');
 }