Actions

Special

All translations

Enter a message name below to show all available translations.

Message

Found 15 translations.

NameCurrent message text
 h Bulgarian (bg)<syntaxhighlight lang="php">
$service = \Yii::app()->extensionUpdaterServiceLocator;
$service->addUpdaterType(
 'myNewExtensionUpdater',
 функция () {
 return MyNewExtensionUpdater::createUpdaters() ;
 }
);
</syntaxhighlight>
 h Danish (da)<syntaxhighlight lang="php">
$service = \Yii::app()->extensionUpdaterServiceLocator;
$service->addUpdaterType(
 'myNewExtensionUpdater',
 funktion () {
 return MyNewExtensionUpdater::createUpdaters() ;
 }
);
</syntaxhighlight>
 h German (de)<syntaxhighlight lang="php">
$service = \Yii::app()->extensionUpdaterServiceLocator;
$service->addUpdaterType(
 'myNewExtensionUpdater',
 function () {
 return MyNewExtensionUpdater::createUpdaters() ;
 }
);
</syntaxhighlight>
 h English (en)<syntaxhighlight lang="php">
$service = \Yii::app()->extensionUpdaterServiceLocator;
$service->addUpdaterType(
  'myNewExtensionUpdater',
  function () {
   return MyNewExtensionUpdater::createUpdaters();
  }
);
</syntaxhighlight>
 h Spanish (es)<syntaxhighlight lang="php">
$servicio = \Yii::app()->extensionUpdaterServiceLocator;
$servicio->addUpdaterType(
 'myNewExtensionUpdater',
 function () {
 return MyNewExtensionUpdater::createUpdaters() ;
 }
);
</syntaxhighlight>
 h French (fr)<syntaxhighlight lang="php">
$service = \Yii::app()->extensionUpdaterServiceLocator;
$service->addUpdaterType(
 'myNewExtensionUpdater',
 function () {
 return MyNewExtensionUpdater::createUpdaters() ;
 }
);
</syntaxhighlight>
 h Hungarian (hu)<syntaxhighlight lang="php">
$service = \Yii::app()->extensionUpdaterServiceLocator;
$service->addUpdaterType(
 'myNewExtensionUpdater',
 function () {
 return MyNewExtensionUpdater::()Updaters ;
 }
);
</syntaxhighlight>
 h Italian (it)<syntaxhighlight lang="php">
$service = \Yii::app()->extensionUpdaterServiceLocator;
$service->addUpdaterType(
 'myNewExtensionUpdater',
 function () {
 return MioNewExtensionUpdater::createUpdaters() ;
 }
);
</syntaxhighlight>
 h Japanese (ja)<syntaxhighlight lang="php">
$service = \Yii::app()->extensionUpdaterServiceLocator;
$service->addUpdaterType(
  'myNewExtensionUpdater',
  function () {
   return MyNewExtensionUpdater::createUpdaters();
  }
);
</syntaxhighlight>
 h Korean (ko)<syntaxhighlight lang="php">
$service = \Yii::app()->extensionUpdaterServiceLocator;
$service->addUpdaterType(
  'myNewExtensionUpdater',
  function () {
   return MyNewExtensionUpdater::createUpdaters();
  }
);
</syntaxhighlight>
 h Dutch (nl)<syntaxhighlight lang="php">
$service = \Yii::app()->extensionUpdaterServiceLocator;
$service->addUpdaterType(
  'myNewExtensionUpdater',
  function () {
   return MyNewExtensionUpdater::createUpdaters();
  }
);
</syntaxhighlight>
 h Polish (pl)<syntaxhighlight lang="php">
$service = \Yii::app()->extensionUpdaterServiceLocator;
$service->addUpdaterType(
 'myNewExtensionUpdater',
 funkcja () {
 return MyNewExtensionUpdater::createUpdaters() ;
 }
);
</syntaxhighlight>
 h Romanian (ro)<syntaxhighlight lang="php">
$service = \Yii::app()->extensionUpdaterServiceLocator;
$service->addUpdaterType(
 'myNewExtensionUpdater',
 funcţia () {
 return MyNewExtensionUpdater::createUpdaters() ;
 }
);
</syntaxhighlight>
 h Slovenian (sl)<syntaxhighlight lang="php">
$service = \Yii::app()->extensionUpdaterServiceLocator;
$service->addUpdaterType(
 'myNewExtensionUpdater',
 function () {
 return MyNewExtensionUpdater::createUpdaters() ;
 }
);
</syntaxhighlight>
 h Vietnamese (vi)<syntaxhighlight lang="php">
$service = \Yii::app()->extensionUpdaterServiceLocator;
$service->addUpdaterType(
 'myNewExtensionUpdater',
 function () {
 return MyNewExtensionUpdater::createUpdaters() ;
 }
);
</syntaxhighlight>