Skip to content

Commit

Permalink
Correct errors
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbirukov authored and nitriques committed Oct 6, 2016
1 parent 88f8ad6 commit 4346980
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion extension.driver.php
Expand Up @@ -72,7 +72,7 @@ public function appendPreferences($context){

$div->appendChild($span);

$div->appendChild(new XMLElement('p', __('Save (overwrite) install files or package entire site as a <code>.zip</code> archive for download.' . $no_zip_warning . $no_install_dir_warning), array('class' => 'help')));
$div->appendChild(new XMLElement('p', __('Save (overwrite) install files or package entire site as a <code>.zip</code> archive for download.') . $no_zip_warning . $no_install_dir_warning, array('class' => 'help')));

$group->appendChild($div);
$context['wrapper']->appendChild($group);
Expand Down
6 changes: 3 additions & 3 deletions lang/lang.ru.php
Expand Up @@ -45,9 +45,6 @@
'Export Ensemble will not be able to download ZIP archives, since the "<a href="http://php.net/manual/en/book.zip.php">ZipArchive</a>" class is not available. To enable ZIP downloads, compile PHP with the <code>--enable-zip</code> flag.' =>
'Функция экспорта сборки не может создать ZIP архив, т.к. класс "<a href="http://php.net/manual/en/book.zip.php">ZipArchive</a>" недоступен. Для включения ZIP архивации необходимо скомпилировать PHP с ключом <code>--enable-zip</code>.',

'Save (overwrite) install files or package entire site as a <code>.zip</code> archive for download.' =>
'Сохранить (перезаписать) файлы установки в виде <code>.zip</code> архива для закачки.',

'Save Install Files' =>
'Сохранить установочные файлы',

Expand All @@ -56,5 +53,8 @@

'Warning: It appears you do not have the "ZipArchive" class available. To enable ZIP download, ensure that PHP is compiled with <code>--enable-zip</code>' =>
'Внимание: По всей вероятности у вас отсутствует класс "ZipArchive". Для получения возможности ZIP архивации убедитесь, что PHP скомпилирован с ключом <code>--enable-zip</code>',

'Save (overwrite) install files or package entire site as a <code>.zip</code> archive for download.' =>
'Сохранить (перезаписать) файлы установки в виде <code>.zip</code> архива для закачки.',

);

0 comments on commit 4346980

Please sign in to comment.