1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-05 06:07:32 +02:00

Update plugin_class.php

Add lang codes.
This commit is contained in:
Gábor
2016-10-15 20:10:16 +02:00
committed by GitHub
parent c10a261d15
commit a7a66e31da

View File

@@ -581,7 +581,7 @@ class e107plugin
if (vartrue($this->unInstallOpts['delete_ipool'], FALSE)) if (vartrue($this->unInstallOpts['delete_ipool'], FALSE))
{ {
$status = ($med->removePath(e_PLUGIN.$plugin, 'icon')) ? E_MESSAGE_SUCCESS : E_MESSAGE_ERROR; $status = ($med->removePath(e_PLUGIN.$plugin, 'icon')) ? E_MESSAGE_SUCCESS : E_MESSAGE_ERROR;
$mes->add('Removing Icons from Media-Manager', $status); $mes->add(IMALAN_164, $status);
} }
return; return;
} }
@@ -1666,7 +1666,7 @@ class e107plugin
{ {
if ($function == 'install') if ($function == 'install')
{ {
$text = "Installation Complete."; $text = EPL_ADLAN_238;
if ($this->plugConfigFile) if ($this->plugConfigFile)
{ {
@@ -1750,7 +1750,7 @@ class e107plugin
$query .= $tableData['data'][$k]; $query .= $tableData['data'][$k];
$query .= "\n) ENGINE=". vartrue($tableData['engine'][$k],"InnoDB")." DEFAULT CHARSET=utf8 "; $query .= "\n) ENGINE=". vartrue($tableData['engine'][$k],"InnoDB")." DEFAULT CHARSET=utf8 ";
$txt = "Adding Table: <b>{$v}</b> "; $txt = EPL_ADLAN_239." <b>{$v}</b> ";
$status = $sql->db_Query($query) ? E_MESSAGE_SUCCESS : E_MESSAGE_ERROR; $status = $sql->db_Query($query) ? E_MESSAGE_SUCCESS : E_MESSAGE_ERROR;
break; break;
@@ -1758,7 +1758,7 @@ class e107plugin
if (!empty($options['delete_tables'])) if (!empty($options['delete_tables']))
{ {
$query = "DROP TABLE `".MPREFIX.$v."`; "; $query = "DROP TABLE `".MPREFIX.$v."`; ";
$txt = "Removing Table: {$v} <br />"; $txt = EPL_ADLAN_240." <b> {$v} </b><br />";
$status = $sql->db_Query_all($query) ? E_MESSAGE_SUCCESS : E_MESSAGE_ERROR; $status = $sql->db_Query_all($query) ? E_MESSAGE_SUCCESS : E_MESSAGE_ERROR;
} }
@@ -2270,7 +2270,7 @@ class e107plugin
if($c == 4 || ($prevType == $type)) if($c == 4 || ($prevType == $type))
{ {
$mes->addDebug("Only 3 Media Categories are permitted during install. One for images and one for files."); $mes->addDebug(EPL_ADLAN_244);
break; break;
} }
@@ -2510,7 +2510,7 @@ class e107plugin
$ret = $config->add($key, $value); $ret = $config->add($key, $value);
if($ret->data_has_changed == TRUE) if($ret->data_has_changed == TRUE)
{ {
$mes->addSuccess("Adding Pref: ".$key); $mes->addSuccess(EPL_ADLAN_241." ".$key);
} }
break; break;
@@ -2520,19 +2520,19 @@ class e107plugin
{ {
$config->remove($key, $value); $config->remove($key, $value);
$mes->addSuccess("Removing Pref: ".$key); $mes->addSuccess(EPL_ADLAN_242." ".$key);
} }
else else
{ {
$config->update($key, $value); $config->update($key, $value);
$mes->addSuccess("Updating Pref: ".$key); $mes->addSuccess(EPL_ADLAN_243." ".$key);
} }
break; break;
case 'uninstall': case 'uninstall':
$config->remove($key, $value); $config->remove($key, $value);
$mes->addSuccess("Removing Pref: ".$key); $mes->addSuccess(EPL_ADLAN_242." ".$key);
break; break;
} }
} }
@@ -3435,4 +3435,4 @@ class e107plugin
} }
} }
?> ?>