NL Language updates (#1351)

* add nl changes - part 1

* finish nl translation fixes

* add missing translations

* roundup

* rm extra stuff

* Removed`ADDMORE_PLUGINS`

* rm meer plugins as requested

rm 'installeer meer plugins' as requested

* rm empty line?

* revert to old NL version
This commit is contained in:
Robbert
2018-03-10 00:56:35 +01:00
committed by Andy Miller
parent d25b8a138c
commit dd5c96495c
3 changed files with 7 additions and 5 deletions

View File

@@ -1005,13 +1005,13 @@ class AdminController extends AdminBaseController
if ($result) {
$this->admin->json_response = [
'status' => 'success',
'message' => $this->admin->translate(is_string($result) ? $result : sprintf($this->admin->translate($reinstall ? 'PLUGIN_ADMIN.PACKAGE_X_REINSTALLED_SUCCESSFULLY' : 'PLUGIN_ADMIN.PACKAGE_X_INSTALLED_SUCCESSFULLY',
'message' => $this->admin->translate(is_string($result) ? $result : sprintf($this->admin->translate($reinstall ?: 'PLUGIN_ADMIN.PACKAGE_X_REINSTALLED_SUCCESSFULLY',
null), $package))
];
} else {
$this->admin->json_response = [
'status' => 'error',
'message' => $this->admin->translate($reinstall ? 'PLUGIN_ADMIN.REINSTALLATION_FAILED' : 'PLUGIN_ADMIN.INSTALLATION_FAILED')
'message' => $this->admin->translate($reinstall ?: 'PLUGIN_ADMIN.INSTALLATION_FAILED')
];
}