mirror of
https://github.com/Karaka-Management/oms-OnlineResourceWatcher.git
synced 2026-01-11 07:58:42 +00:00
test fixes
This commit is contained in:
parent
a72fb93533
commit
ba4517d555
|
|
@ -406,7 +406,7 @@ final class ApiController extends Controller
|
|||
true
|
||||
);
|
||||
} catch (\Throwable $t) {
|
||||
$this->app->logger->error(
|
||||
$this->app->logger?->error(
|
||||
FileLogger::MSG_FULL, [
|
||||
'message' => $t->getMessage(),
|
||||
'line' => __LINE__,
|
||||
|
|
@ -448,7 +448,7 @@ final class ApiController extends Controller
|
|||
|
||||
unset($toCheck[$index]);
|
||||
|
||||
$this->app->logger->warning(
|
||||
$this->app->logger?->warning(
|
||||
FileLogger::MSG_FULL, [
|
||||
'message' => 'Resource "' . $resource->id . ': ' . $resource->uri . '" took too long to download (' . ($time - $startTime) . ' s).',
|
||||
'line' => __LINE__,
|
||||
|
|
@ -554,7 +554,7 @@ final class ApiController extends Controller
|
|||
true
|
||||
);
|
||||
} catch (\Throwable $t) {
|
||||
$this->app->logger->error(
|
||||
$this->app->logger?->error(
|
||||
FileLogger::MSG_FULL, [
|
||||
'message' => $t->getMessage(),
|
||||
'line' => __LINE__,
|
||||
|
|
@ -704,7 +704,7 @@ final class ApiController extends Controller
|
|||
true
|
||||
);
|
||||
} catch (\Throwable $t) {
|
||||
$this->app->logger->error(
|
||||
$this->app->logger?->error(
|
||||
FileLogger::MSG_FULL, [
|
||||
'message' => $t->getMessage(),
|
||||
'line' => __LINE__,
|
||||
|
|
@ -769,7 +769,7 @@ final class ApiController extends Controller
|
|||
|
||||
if ($old->owner->id !== $request->header->account) {
|
||||
$response->header->status = RequestStatusCode::R_403;
|
||||
$this->createInvalidPermissionResponse($request, $response, null);
|
||||
$this->createInvalidPermissionResponse($request, $response, []);
|
||||
|
||||
return;
|
||||
}
|
||||
|
|
@ -862,7 +862,7 @@ final class ApiController extends Controller
|
|||
|
||||
if ($resource->owner->id !== $request->header->account) {
|
||||
$response->header->status = RequestStatusCode::R_403;
|
||||
$this->createInvalidPermissionResponse($request, $response, null);
|
||||
$this->createInvalidPermissionResponse($request, $response, []);
|
||||
|
||||
return;
|
||||
}
|
||||
|
|
@ -919,7 +919,7 @@ final class ApiController extends Controller
|
|||
|
||||
if ($resource->owner->id !== $request->header->account) {
|
||||
$response->header->status = RequestStatusCode::R_403;
|
||||
$this->createInvalidPermissionResponse($request, $response, null);
|
||||
$this->createInvalidPermissionResponse($request, $response, []);
|
||||
|
||||
return;
|
||||
}
|
||||
|
|
@ -1003,7 +1003,7 @@ final class ApiController extends Controller
|
|||
|
||||
if ($resource->owner->id !== $request->header->account) {
|
||||
$response->header->status = RequestStatusCode::R_403;
|
||||
$this->createInvalidPermissionResponse($request, $response, null);
|
||||
$this->createInvalidPermissionResponse($request, $response, []);
|
||||
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,95 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.1
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['OnlineResourceWatcher' => [
|
||||
'Action' => '',
|
||||
'Active' => '',
|
||||
'Add' => '',
|
||||
'Address' => '',
|
||||
'Admin' => '',
|
||||
'Amount' => '',
|
||||
'Back' => '',
|
||||
'BillingEmail' => '',
|
||||
'BillingSettings' => '',
|
||||
'Bills' => '',
|
||||
'By' => '',
|
||||
'Cancel' => '',
|
||||
'Checked' => '',
|
||||
'City' => '',
|
||||
'Comparison' => '',
|
||||
'Create' => '',
|
||||
'CreateResource' => '',
|
||||
'CustomerName' => '',
|
||||
'CustomerNo' => '',
|
||||
'Dashboard' => '',
|
||||
'Date' => '',
|
||||
'Delete' => '',
|
||||
'Element' => '',
|
||||
'Email' => '',
|
||||
'Exit' => '',
|
||||
'Filter' => '',
|
||||
'ForgotPassword' => '',
|
||||
'History' => '',
|
||||
'Home' => '',
|
||||
'ID' => '',
|
||||
'Imprint' => '',
|
||||
'Inform' => '',
|
||||
'Legal' => '',
|
||||
'Log' => '',
|
||||
'Login' => '',
|
||||
'Logo' => '',
|
||||
'Logs' => '',
|
||||
'Members' => '',
|
||||
'Name' => '',
|
||||
'New' => '',
|
||||
'NewPassword' => '',
|
||||
'Number' => '',
|
||||
'Organization' => '',
|
||||
'Organizations' => '',
|
||||
'Password' => '',
|
||||
'PlanSettings' => '',
|
||||
'Postal' => '',
|
||||
'Preview' => '',
|
||||
'PrivacyPolicy' => '',
|
||||
'Ref' => '',
|
||||
'Report' => '',
|
||||
'Reports' => '',
|
||||
'Reset' => '',
|
||||
'Resource' => '',
|
||||
'Resources' => '',
|
||||
'Save' => '',
|
||||
'Search' => '',
|
||||
'Send' => '',
|
||||
'Settings' => '',
|
||||
'SignIn' => '',
|
||||
'SignOut' => '',
|
||||
'Statistics' => '',
|
||||
'Status' => '',
|
||||
'Submit' => '',
|
||||
'Suspend' => '',
|
||||
'Terms' => '',
|
||||
'Title' => '',
|
||||
'Trigger' => '',
|
||||
'Type' => '',
|
||||
'Url' => '',
|
||||
'User' => '',
|
||||
'UserSettings' => '',
|
||||
'Username' => '',
|
||||
'Users' => '',
|
||||
'XPath' => '',
|
||||
'rstatus--1' => '',
|
||||
'rstatus-1' => '',
|
||||
'rstatus-2' => '',
|
||||
'rstatus-3' => '',
|
||||
]];
|
||||
|
|
@ -1,95 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.1
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['OnlineResourceWatcher' => [
|
||||
'Action' => '',
|
||||
'Active' => '',
|
||||
'Add' => '',
|
||||
'Address' => '',
|
||||
'Admin' => '',
|
||||
'Amount' => '',
|
||||
'Back' => '',
|
||||
'BillingEmail' => '',
|
||||
'BillingSettings' => '',
|
||||
'Bills' => '',
|
||||
'By' => '',
|
||||
'Cancel' => '',
|
||||
'Checked' => '',
|
||||
'City' => '',
|
||||
'Comparison' => '',
|
||||
'Create' => '',
|
||||
'CreateResource' => '',
|
||||
'CustomerName' => '',
|
||||
'CustomerNo' => '',
|
||||
'Dashboard' => '',
|
||||
'Date' => '',
|
||||
'Delete' => '',
|
||||
'Element' => '',
|
||||
'Email' => '',
|
||||
'Exit' => '',
|
||||
'Filter' => '',
|
||||
'ForgotPassword' => '',
|
||||
'History' => '',
|
||||
'Home' => '',
|
||||
'ID' => '',
|
||||
'Imprint' => '',
|
||||
'Inform' => '',
|
||||
'Legal' => '',
|
||||
'Log' => '',
|
||||
'Login' => '',
|
||||
'Logo' => '',
|
||||
'Logs' => '',
|
||||
'Members' => '',
|
||||
'Name' => '',
|
||||
'New' => '',
|
||||
'NewPassword' => '',
|
||||
'Number' => '',
|
||||
'Organization' => '',
|
||||
'Organizations' => '',
|
||||
'Password' => '',
|
||||
'PlanSettings' => '',
|
||||
'Postal' => '',
|
||||
'Preview' => '',
|
||||
'PrivacyPolicy' => '',
|
||||
'Ref' => '',
|
||||
'Report' => '',
|
||||
'Reports' => '',
|
||||
'Reset' => '',
|
||||
'Resource' => '',
|
||||
'Resources' => '',
|
||||
'Save' => '',
|
||||
'Search' => '',
|
||||
'Send' => '',
|
||||
'Settings' => '',
|
||||
'SignIn' => '',
|
||||
'SignOut' => '',
|
||||
'Statistics' => '',
|
||||
'Status' => '',
|
||||
'Submit' => '',
|
||||
'Suspend' => '',
|
||||
'Terms' => '',
|
||||
'Title' => '',
|
||||
'Trigger' => '',
|
||||
'Type' => '',
|
||||
'Url' => '',
|
||||
'User' => '',
|
||||
'UserSettings' => '',
|
||||
'Username' => '',
|
||||
'Users' => '',
|
||||
'XPath' => '',
|
||||
'rstatus--1' => '',
|
||||
'rstatus-1' => '',
|
||||
'rstatus-2' => '',
|
||||
'rstatus-3' => '',
|
||||
]];
|
||||
|
|
@ -1,95 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.1
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['OnlineResourceWatcher' => [
|
||||
'Action' => '',
|
||||
'Active' => '',
|
||||
'Add' => '',
|
||||
'Address' => '',
|
||||
'Admin' => '',
|
||||
'Amount' => '',
|
||||
'Back' => '',
|
||||
'BillingEmail' => '',
|
||||
'BillingSettings' => '',
|
||||
'Bills' => '',
|
||||
'By' => '',
|
||||
'Cancel' => '',
|
||||
'Checked' => '',
|
||||
'City' => '',
|
||||
'Comparison' => '',
|
||||
'Create' => '',
|
||||
'CreateResource' => '',
|
||||
'CustomerName' => '',
|
||||
'CustomerNo' => '',
|
||||
'Dashboard' => '',
|
||||
'Date' => '',
|
||||
'Delete' => '',
|
||||
'Element' => '',
|
||||
'Email' => '',
|
||||
'Exit' => '',
|
||||
'Filter' => '',
|
||||
'ForgotPassword' => '',
|
||||
'History' => '',
|
||||
'Home' => '',
|
||||
'ID' => '',
|
||||
'Imprint' => '',
|
||||
'Inform' => '',
|
||||
'Legal' => '',
|
||||
'Log' => '',
|
||||
'Login' => '',
|
||||
'Logo' => '',
|
||||
'Logs' => '',
|
||||
'Members' => '',
|
||||
'Name' => '',
|
||||
'New' => '',
|
||||
'NewPassword' => '',
|
||||
'Number' => '',
|
||||
'Organization' => '',
|
||||
'Organizations' => '',
|
||||
'Password' => '',
|
||||
'PlanSettings' => '',
|
||||
'Postal' => '',
|
||||
'Preview' => '',
|
||||
'PrivacyPolicy' => '',
|
||||
'Ref' => '',
|
||||
'Report' => '',
|
||||
'Reports' => '',
|
||||
'Reset' => '',
|
||||
'Resource' => '',
|
||||
'Resources' => '',
|
||||
'Save' => '',
|
||||
'Search' => '',
|
||||
'Send' => '',
|
||||
'Settings' => '',
|
||||
'SignIn' => '',
|
||||
'SignOut' => '',
|
||||
'Statistics' => '',
|
||||
'Status' => '',
|
||||
'Submit' => '',
|
||||
'Suspend' => '',
|
||||
'Terms' => '',
|
||||
'Title' => '',
|
||||
'Trigger' => '',
|
||||
'Type' => '',
|
||||
'Url' => '',
|
||||
'User' => '',
|
||||
'UserSettings' => '',
|
||||
'Username' => '',
|
||||
'Users' => '',
|
||||
'XPath' => '',
|
||||
'rstatus--1' => '',
|
||||
'rstatus-1' => '',
|
||||
'rstatus-2' => '',
|
||||
'rstatus-3' => '',
|
||||
]];
|
||||
|
|
@ -1,95 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.1
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['OnlineResourceWatcher' => [
|
||||
'Action' => '',
|
||||
'Active' => '',
|
||||
'Add' => '',
|
||||
'Address' => '',
|
||||
'Admin' => '',
|
||||
'Amount' => '',
|
||||
'Back' => '',
|
||||
'BillingEmail' => '',
|
||||
'BillingSettings' => '',
|
||||
'Bills' => '',
|
||||
'By' => '',
|
||||
'Cancel' => '',
|
||||
'Checked' => '',
|
||||
'City' => '',
|
||||
'Comparison' => '',
|
||||
'Create' => '',
|
||||
'CreateResource' => '',
|
||||
'CustomerName' => '',
|
||||
'CustomerNo' => '',
|
||||
'Dashboard' => '',
|
||||
'Date' => '',
|
||||
'Delete' => '',
|
||||
'Element' => '',
|
||||
'Email' => '',
|
||||
'Exit' => '',
|
||||
'Filter' => '',
|
||||
'ForgotPassword' => '',
|
||||
'History' => '',
|
||||
'Home' => '',
|
||||
'ID' => '',
|
||||
'Imprint' => '',
|
||||
'Inform' => '',
|
||||
'Legal' => '',
|
||||
'Log' => '',
|
||||
'Login' => '',
|
||||
'Logo' => '',
|
||||
'Logs' => '',
|
||||
'Members' => '',
|
||||
'Name' => '',
|
||||
'New' => '',
|
||||
'NewPassword' => '',
|
||||
'Number' => '',
|
||||
'Organization' => '',
|
||||
'Organizations' => '',
|
||||
'Password' => '',
|
||||
'PlanSettings' => '',
|
||||
'Postal' => '',
|
||||
'Preview' => '',
|
||||
'PrivacyPolicy' => '',
|
||||
'Ref' => '',
|
||||
'Report' => '',
|
||||
'Reports' => '',
|
||||
'Reset' => '',
|
||||
'Resource' => '',
|
||||
'Resources' => '',
|
||||
'Save' => '',
|
||||
'Search' => '',
|
||||
'Send' => '',
|
||||
'Settings' => '',
|
||||
'SignIn' => '',
|
||||
'SignOut' => '',
|
||||
'Statistics' => '',
|
||||
'Status' => '',
|
||||
'Submit' => '',
|
||||
'Suspend' => '',
|
||||
'Terms' => '',
|
||||
'Title' => '',
|
||||
'Trigger' => '',
|
||||
'Type' => '',
|
||||
'Url' => '',
|
||||
'User' => '',
|
||||
'UserSettings' => '',
|
||||
'Username' => '',
|
||||
'Users' => '',
|
||||
'XPath' => '',
|
||||
'rstatus--1' => '',
|
||||
'rstatus-1' => '',
|
||||
'rstatus-2' => '',
|
||||
'rstatus-3' => '',
|
||||
]];
|
||||
|
|
@ -1,95 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.1
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['OnlineResourceWatcher' => [
|
||||
'Action' => '',
|
||||
'Active' => '',
|
||||
'Add' => '',
|
||||
'Address' => '',
|
||||
'Admin' => '',
|
||||
'Amount' => '',
|
||||
'Back' => '',
|
||||
'BillingEmail' => '',
|
||||
'BillingSettings' => '',
|
||||
'Bills' => '',
|
||||
'By' => '',
|
||||
'Cancel' => '',
|
||||
'Checked' => '',
|
||||
'City' => '',
|
||||
'Comparison' => '',
|
||||
'Create' => '',
|
||||
'CreateResource' => '',
|
||||
'CustomerName' => '',
|
||||
'CustomerNo' => '',
|
||||
'Dashboard' => '',
|
||||
'Date' => '',
|
||||
'Delete' => '',
|
||||
'Element' => '',
|
||||
'Email' => '',
|
||||
'Exit' => '',
|
||||
'Filter' => '',
|
||||
'ForgotPassword' => '',
|
||||
'History' => '',
|
||||
'Home' => '',
|
||||
'ID' => '',
|
||||
'Imprint' => '',
|
||||
'Inform' => '',
|
||||
'Legal' => '',
|
||||
'Log' => '',
|
||||
'Login' => '',
|
||||
'Logo' => '',
|
||||
'Logs' => '',
|
||||
'Members' => '',
|
||||
'Name' => '',
|
||||
'New' => '',
|
||||
'NewPassword' => '',
|
||||
'Number' => '',
|
||||
'Organization' => '',
|
||||
'Organizations' => '',
|
||||
'Password' => '',
|
||||
'PlanSettings' => '',
|
||||
'Postal' => '',
|
||||
'Preview' => '',
|
||||
'PrivacyPolicy' => '',
|
||||
'Ref' => '',
|
||||
'Report' => '',
|
||||
'Reports' => '',
|
||||
'Reset' => '',
|
||||
'Resource' => '',
|
||||
'Resources' => '',
|
||||
'Save' => '',
|
||||
'Search' => '',
|
||||
'Send' => '',
|
||||
'Settings' => '',
|
||||
'SignIn' => '',
|
||||
'SignOut' => '',
|
||||
'Statistics' => '',
|
||||
'Status' => '',
|
||||
'Submit' => '',
|
||||
'Suspend' => '',
|
||||
'Terms' => '',
|
||||
'Title' => '',
|
||||
'Trigger' => '',
|
||||
'Type' => '',
|
||||
'Url' => '',
|
||||
'User' => '',
|
||||
'UserSettings' => '',
|
||||
'Username' => '',
|
||||
'Users' => '',
|
||||
'XPath' => '',
|
||||
'rstatus--1' => '',
|
||||
'rstatus-1' => '',
|
||||
'rstatus-2' => '',
|
||||
'rstatus-3' => '',
|
||||
]];
|
||||
|
|
@ -1,95 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.1
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['OnlineResourceWatcher' => [
|
||||
'Action' => '',
|
||||
'Active' => '',
|
||||
'Add' => '',
|
||||
'Address' => '',
|
||||
'Admin' => '',
|
||||
'Amount' => '',
|
||||
'Back' => '',
|
||||
'BillingEmail' => '',
|
||||
'BillingSettings' => '',
|
||||
'Bills' => '',
|
||||
'By' => '',
|
||||
'Cancel' => '',
|
||||
'Checked' => '',
|
||||
'City' => '',
|
||||
'Comparison' => '',
|
||||
'Create' => '',
|
||||
'CreateResource' => '',
|
||||
'CustomerName' => '',
|
||||
'CustomerNo' => '',
|
||||
'Dashboard' => '',
|
||||
'Date' => '',
|
||||
'Delete' => '',
|
||||
'Element' => '',
|
||||
'Email' => '',
|
||||
'Exit' => '',
|
||||
'Filter' => '',
|
||||
'ForgotPassword' => '',
|
||||
'History' => '',
|
||||
'Home' => '',
|
||||
'ID' => '',
|
||||
'Imprint' => '',
|
||||
'Inform' => '',
|
||||
'Legal' => '',
|
||||
'Log' => '',
|
||||
'Login' => '',
|
||||
'Logo' => '',
|
||||
'Logs' => '',
|
||||
'Members' => '',
|
||||
'Name' => '',
|
||||
'New' => '',
|
||||
'NewPassword' => '',
|
||||
'Number' => '',
|
||||
'Organization' => '',
|
||||
'Organizations' => '',
|
||||
'Password' => '',
|
||||
'PlanSettings' => '',
|
||||
'Postal' => '',
|
||||
'Preview' => '',
|
||||
'PrivacyPolicy' => '',
|
||||
'Ref' => '',
|
||||
'Report' => '',
|
||||
'Reports' => '',
|
||||
'Reset' => '',
|
||||
'Resource' => '',
|
||||
'Resources' => '',
|
||||
'Save' => '',
|
||||
'Search' => '',
|
||||
'Send' => '',
|
||||
'Settings' => '',
|
||||
'SignIn' => '',
|
||||
'SignOut' => '',
|
||||
'Statistics' => '',
|
||||
'Status' => '',
|
||||
'Submit' => '',
|
||||
'Suspend' => '',
|
||||
'Terms' => '',
|
||||
'Title' => '',
|
||||
'Trigger' => '',
|
||||
'Type' => '',
|
||||
'Url' => '',
|
||||
'User' => '',
|
||||
'UserSettings' => '',
|
||||
'Username' => '',
|
||||
'Users' => '',
|
||||
'XPath' => '',
|
||||
'rstatus--1' => '',
|
||||
'rstatus-1' => '',
|
||||
'rstatus-2' => '',
|
||||
'rstatus-3' => '',
|
||||
]];
|
||||
|
|
@ -1,95 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.1
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['OnlineResourceWatcher' => [
|
||||
'Action' => '',
|
||||
'Active' => '',
|
||||
'Add' => '',
|
||||
'Address' => '',
|
||||
'Admin' => '',
|
||||
'Amount' => '',
|
||||
'Back' => '',
|
||||
'BillingEmail' => '',
|
||||
'BillingSettings' => '',
|
||||
'Bills' => '',
|
||||
'By' => '',
|
||||
'Cancel' => '',
|
||||
'Checked' => '',
|
||||
'City' => '',
|
||||
'Comparison' => '',
|
||||
'Create' => '',
|
||||
'CreateResource' => '',
|
||||
'CustomerName' => '',
|
||||
'CustomerNo' => '',
|
||||
'Dashboard' => '',
|
||||
'Date' => '',
|
||||
'Delete' => '',
|
||||
'Element' => '',
|
||||
'Email' => '',
|
||||
'Exit' => '',
|
||||
'Filter' => '',
|
||||
'ForgotPassword' => '',
|
||||
'History' => '',
|
||||
'Home' => '',
|
||||
'ID' => '',
|
||||
'Imprint' => '',
|
||||
'Inform' => '',
|
||||
'Legal' => '',
|
||||
'Log' => '',
|
||||
'Login' => '',
|
||||
'Logo' => '',
|
||||
'Logs' => '',
|
||||
'Members' => '',
|
||||
'Name' => '',
|
||||
'New' => '',
|
||||
'NewPassword' => '',
|
||||
'Number' => '',
|
||||
'Organization' => '',
|
||||
'Organizations' => '',
|
||||
'Password' => '',
|
||||
'PlanSettings' => '',
|
||||
'Postal' => '',
|
||||
'Preview' => '',
|
||||
'PrivacyPolicy' => '',
|
||||
'Ref' => '',
|
||||
'Report' => '',
|
||||
'Reports' => '',
|
||||
'Reset' => '',
|
||||
'Resource' => '',
|
||||
'Resources' => '',
|
||||
'Save' => '',
|
||||
'Search' => '',
|
||||
'Send' => '',
|
||||
'Settings' => '',
|
||||
'SignIn' => '',
|
||||
'SignOut' => '',
|
||||
'Statistics' => '',
|
||||
'Status' => '',
|
||||
'Submit' => '',
|
||||
'Suspend' => '',
|
||||
'Terms' => '',
|
||||
'Title' => '',
|
||||
'Trigger' => '',
|
||||
'Type' => '',
|
||||
'Url' => '',
|
||||
'User' => '',
|
||||
'UserSettings' => '',
|
||||
'Username' => '',
|
||||
'Users' => '',
|
||||
'XPath' => '',
|
||||
'rstatus--1' => '',
|
||||
'rstatus-1' => '',
|
||||
'rstatus-2' => '',
|
||||
'rstatus-3' => '',
|
||||
]];
|
||||
|
|
@ -1,95 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.1
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['OnlineResourceWatcher' => [
|
||||
'Action' => '',
|
||||
'Active' => '',
|
||||
'Add' => '',
|
||||
'Address' => '',
|
||||
'Admin' => '',
|
||||
'Amount' => '',
|
||||
'Back' => '',
|
||||
'BillingEmail' => '',
|
||||
'BillingSettings' => '',
|
||||
'Bills' => '',
|
||||
'By' => '',
|
||||
'Cancel' => '',
|
||||
'Checked' => '',
|
||||
'City' => '',
|
||||
'Comparison' => '',
|
||||
'Create' => '',
|
||||
'CreateResource' => '',
|
||||
'CustomerName' => '',
|
||||
'CustomerNo' => '',
|
||||
'Dashboard' => '',
|
||||
'Date' => '',
|
||||
'Delete' => '',
|
||||
'Element' => '',
|
||||
'Email' => '',
|
||||
'Exit' => '',
|
||||
'Filter' => '',
|
||||
'ForgotPassword' => '',
|
||||
'History' => '',
|
||||
'Home' => '',
|
||||
'ID' => '',
|
||||
'Imprint' => '',
|
||||
'Inform' => '',
|
||||
'Legal' => '',
|
||||
'Log' => '',
|
||||
'Login' => '',
|
||||
'Logo' => '',
|
||||
'Logs' => '',
|
||||
'Members' => '',
|
||||
'Name' => '',
|
||||
'New' => '',
|
||||
'NewPassword' => '',
|
||||
'Number' => '',
|
||||
'Organization' => '',
|
||||
'Organizations' => '',
|
||||
'Password' => '',
|
||||
'PlanSettings' => '',
|
||||
'Postal' => '',
|
||||
'Preview' => '',
|
||||
'PrivacyPolicy' => '',
|
||||
'Ref' => '',
|
||||
'Report' => '',
|
||||
'Reports' => '',
|
||||
'Reset' => '',
|
||||
'Resource' => '',
|
||||
'Resources' => '',
|
||||
'Save' => '',
|
||||
'Search' => '',
|
||||
'Send' => '',
|
||||
'Settings' => '',
|
||||
'SignIn' => '',
|
||||
'SignOut' => '',
|
||||
'Statistics' => '',
|
||||
'Status' => '',
|
||||
'Submit' => '',
|
||||
'Suspend' => '',
|
||||
'Terms' => '',
|
||||
'Title' => '',
|
||||
'Trigger' => '',
|
||||
'Type' => '',
|
||||
'Url' => '',
|
||||
'User' => '',
|
||||
'UserSettings' => '',
|
||||
'Username' => '',
|
||||
'Users' => '',
|
||||
'XPath' => '',
|
||||
'rstatus--1' => '',
|
||||
'rstatus-1' => '',
|
||||
'rstatus-2' => '',
|
||||
'rstatus-3' => '',
|
||||
]];
|
||||
|
|
@ -1,95 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.1
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['OnlineResourceWatcher' => [
|
||||
'Action' => '',
|
||||
'Active' => '',
|
||||
'Add' => '',
|
||||
'Address' => '',
|
||||
'Admin' => '',
|
||||
'Amount' => '',
|
||||
'Back' => '',
|
||||
'BillingEmail' => '',
|
||||
'BillingSettings' => '',
|
||||
'Bills' => '',
|
||||
'By' => '',
|
||||
'Cancel' => '',
|
||||
'Checked' => '',
|
||||
'City' => '',
|
||||
'Comparison' => '',
|
||||
'Create' => '',
|
||||
'CreateResource' => '',
|
||||
'CustomerName' => '',
|
||||
'CustomerNo' => '',
|
||||
'Dashboard' => '',
|
||||
'Date' => '',
|
||||
'Delete' => '',
|
||||
'Element' => '',
|
||||
'Email' => '',
|
||||
'Exit' => '',
|
||||
'Filter' => '',
|
||||
'ForgotPassword' => '',
|
||||
'History' => '',
|
||||
'Home' => '',
|
||||
'ID' => '',
|
||||
'Imprint' => '',
|
||||
'Inform' => '',
|
||||
'Legal' => '',
|
||||
'Log' => '',
|
||||
'Login' => '',
|
||||
'Logo' => '',
|
||||
'Logs' => '',
|
||||
'Members' => '',
|
||||
'Name' => '',
|
||||
'New' => '',
|
||||
'NewPassword' => '',
|
||||
'Number' => '',
|
||||
'Organization' => '',
|
||||
'Organizations' => '',
|
||||
'Password' => '',
|
||||
'PlanSettings' => '',
|
||||
'Postal' => '',
|
||||
'Preview' => '',
|
||||
'PrivacyPolicy' => '',
|
||||
'Ref' => '',
|
||||
'Report' => '',
|
||||
'Reports' => '',
|
||||
'Reset' => '',
|
||||
'Resource' => '',
|
||||
'Resources' => '',
|
||||
'Save' => '',
|
||||
'Search' => '',
|
||||
'Send' => '',
|
||||
'Settings' => '',
|
||||
'SignIn' => '',
|
||||
'SignOut' => '',
|
||||
'Statistics' => '',
|
||||
'Status' => '',
|
||||
'Submit' => '',
|
||||
'Suspend' => '',
|
||||
'Terms' => '',
|
||||
'Title' => '',
|
||||
'Trigger' => '',
|
||||
'Type' => '',
|
||||
'Url' => '',
|
||||
'User' => '',
|
||||
'UserSettings' => '',
|
||||
'Username' => '',
|
||||
'Users' => '',
|
||||
'XPath' => '',
|
||||
'rstatus--1' => '',
|
||||
'rstatus-1' => '',
|
||||
'rstatus-2' => '',
|
||||
'rstatus-3' => '',
|
||||
]];
|
||||
|
|
@ -1,95 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.1
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['OnlineResourceWatcher' => [
|
||||
'Action' => '',
|
||||
'Active' => '',
|
||||
'Add' => '',
|
||||
'Address' => '',
|
||||
'Admin' => '',
|
||||
'Amount' => '',
|
||||
'Back' => '',
|
||||
'BillingEmail' => '',
|
||||
'BillingSettings' => '',
|
||||
'Bills' => '',
|
||||
'By' => '',
|
||||
'Cancel' => '',
|
||||
'Checked' => '',
|
||||
'City' => '',
|
||||
'Comparison' => '',
|
||||
'Create' => '',
|
||||
'CreateResource' => '',
|
||||
'CustomerName' => '',
|
||||
'CustomerNo' => '',
|
||||
'Dashboard' => '',
|
||||
'Date' => '',
|
||||
'Delete' => '',
|
||||
'Element' => '',
|
||||
'Email' => '',
|
||||
'Exit' => '',
|
||||
'Filter' => '',
|
||||
'ForgotPassword' => '',
|
||||
'History' => '',
|
||||
'Home' => '',
|
||||
'ID' => '',
|
||||
'Imprint' => '',
|
||||
'Inform' => '',
|
||||
'Legal' => '',
|
||||
'Log' => '',
|
||||
'Login' => '',
|
||||
'Logo' => '',
|
||||
'Logs' => '',
|
||||
'Members' => '',
|
||||
'Name' => '',
|
||||
'New' => '',
|
||||
'NewPassword' => '',
|
||||
'Number' => '',
|
||||
'Organization' => '',
|
||||
'Organizations' => '',
|
||||
'Password' => '',
|
||||
'PlanSettings' => '',
|
||||
'Postal' => '',
|
||||
'Preview' => '',
|
||||
'PrivacyPolicy' => '',
|
||||
'Ref' => '',
|
||||
'Report' => '',
|
||||
'Reports' => '',
|
||||
'Reset' => '',
|
||||
'Resource' => '',
|
||||
'Resources' => '',
|
||||
'Save' => '',
|
||||
'Search' => '',
|
||||
'Send' => '',
|
||||
'Settings' => '',
|
||||
'SignIn' => '',
|
||||
'SignOut' => '',
|
||||
'Statistics' => '',
|
||||
'Status' => '',
|
||||
'Submit' => '',
|
||||
'Suspend' => '',
|
||||
'Terms' => '',
|
||||
'Title' => '',
|
||||
'Trigger' => '',
|
||||
'Type' => '',
|
||||
'Url' => '',
|
||||
'User' => '',
|
||||
'UserSettings' => '',
|
||||
'Username' => '',
|
||||
'Users' => '',
|
||||
'XPath' => '',
|
||||
'rstatus--1' => '',
|
||||
'rstatus-1' => '',
|
||||
'rstatus-2' => '',
|
||||
'rstatus-3' => '',
|
||||
]];
|
||||
|
|
@ -1,95 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.1
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['OnlineResourceWatcher' => [
|
||||
'Action' => '',
|
||||
'Active' => '',
|
||||
'Add' => '',
|
||||
'Address' => '',
|
||||
'Admin' => '',
|
||||
'Amount' => '',
|
||||
'Back' => '',
|
||||
'BillingEmail' => '',
|
||||
'BillingSettings' => '',
|
||||
'Bills' => '',
|
||||
'By' => '',
|
||||
'Cancel' => '',
|
||||
'Checked' => '',
|
||||
'City' => '',
|
||||
'Comparison' => '',
|
||||
'Create' => '',
|
||||
'CreateResource' => '',
|
||||
'CustomerName' => '',
|
||||
'CustomerNo' => '',
|
||||
'Dashboard' => '',
|
||||
'Date' => '',
|
||||
'Delete' => '',
|
||||
'Element' => '',
|
||||
'Email' => '',
|
||||
'Exit' => '',
|
||||
'Filter' => '',
|
||||
'ForgotPassword' => '',
|
||||
'History' => '',
|
||||
'Home' => '',
|
||||
'ID' => '',
|
||||
'Imprint' => '',
|
||||
'Inform' => '',
|
||||
'Legal' => '',
|
||||
'Log' => '',
|
||||
'Login' => '',
|
||||
'Logo' => '',
|
||||
'Logs' => '',
|
||||
'Members' => '',
|
||||
'Name' => '',
|
||||
'New' => '',
|
||||
'NewPassword' => '',
|
||||
'Number' => '',
|
||||
'Organization' => '',
|
||||
'Organizations' => '',
|
||||
'Password' => '',
|
||||
'PlanSettings' => '',
|
||||
'Postal' => '',
|
||||
'Preview' => '',
|
||||
'PrivacyPolicy' => '',
|
||||
'Ref' => '',
|
||||
'Report' => '',
|
||||
'Reports' => '',
|
||||
'Reset' => '',
|
||||
'Resource' => '',
|
||||
'Resources' => '',
|
||||
'Save' => '',
|
||||
'Search' => '',
|
||||
'Send' => '',
|
||||
'Settings' => '',
|
||||
'SignIn' => '',
|
||||
'SignOut' => '',
|
||||
'Statistics' => '',
|
||||
'Status' => '',
|
||||
'Submit' => '',
|
||||
'Suspend' => '',
|
||||
'Terms' => '',
|
||||
'Title' => '',
|
||||
'Trigger' => '',
|
||||
'Type' => '',
|
||||
'Url' => '',
|
||||
'User' => '',
|
||||
'UserSettings' => '',
|
||||
'Username' => '',
|
||||
'Users' => '',
|
||||
'XPath' => '',
|
||||
'rstatus--1' => '',
|
||||
'rstatus-1' => '',
|
||||
'rstatus-2' => '',
|
||||
'rstatus-3' => '',
|
||||
]];
|
||||
|
|
@ -1,95 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.1
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['OnlineResourceWatcher' => [
|
||||
'Action' => '',
|
||||
'Active' => '',
|
||||
'Add' => '',
|
||||
'Address' => '',
|
||||
'Admin' => '',
|
||||
'Amount' => '',
|
||||
'Back' => '',
|
||||
'BillingEmail' => '',
|
||||
'BillingSettings' => '',
|
||||
'Bills' => '',
|
||||
'By' => '',
|
||||
'Cancel' => '',
|
||||
'Checked' => '',
|
||||
'City' => '',
|
||||
'Comparison' => '',
|
||||
'Create' => '',
|
||||
'CreateResource' => '',
|
||||
'CustomerName' => '',
|
||||
'CustomerNo' => '',
|
||||
'Dashboard' => '',
|
||||
'Date' => '',
|
||||
'Delete' => '',
|
||||
'Element' => '',
|
||||
'Email' => '',
|
||||
'Exit' => '',
|
||||
'Filter' => '',
|
||||
'ForgotPassword' => '',
|
||||
'History' => '',
|
||||
'Home' => '',
|
||||
'ID' => '',
|
||||
'Imprint' => '',
|
||||
'Inform' => '',
|
||||
'Legal' => '',
|
||||
'Log' => '',
|
||||
'Login' => '',
|
||||
'Logo' => '',
|
||||
'Logs' => '',
|
||||
'Members' => '',
|
||||
'Name' => '',
|
||||
'New' => '',
|
||||
'NewPassword' => '',
|
||||
'Number' => '',
|
||||
'Organization' => '',
|
||||
'Organizations' => '',
|
||||
'Password' => '',
|
||||
'PlanSettings' => '',
|
||||
'Postal' => '',
|
||||
'Preview' => '',
|
||||
'PrivacyPolicy' => '',
|
||||
'Ref' => '',
|
||||
'Report' => '',
|
||||
'Reports' => '',
|
||||
'Reset' => '',
|
||||
'Resource' => '',
|
||||
'Resources' => '',
|
||||
'Save' => '',
|
||||
'Search' => '',
|
||||
'Send' => '',
|
||||
'Settings' => '',
|
||||
'SignIn' => '',
|
||||
'SignOut' => '',
|
||||
'Statistics' => '',
|
||||
'Status' => '',
|
||||
'Submit' => '',
|
||||
'Suspend' => '',
|
||||
'Terms' => '',
|
||||
'Title' => '',
|
||||
'Trigger' => '',
|
||||
'Type' => '',
|
||||
'Url' => '',
|
||||
'User' => '',
|
||||
'UserSettings' => '',
|
||||
'Username' => '',
|
||||
'Users' => '',
|
||||
'XPath' => '',
|
||||
'rstatus--1' => '',
|
||||
'rstatus-1' => '',
|
||||
'rstatus-2' => '',
|
||||
'rstatus-3' => '',
|
||||
]];
|
||||
|
|
@ -1,95 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.1
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['OnlineResourceWatcher' => [
|
||||
'Action' => '',
|
||||
'Active' => '',
|
||||
'Add' => '',
|
||||
'Address' => '',
|
||||
'Admin' => '',
|
||||
'Amount' => '',
|
||||
'Back' => '',
|
||||
'BillingEmail' => '',
|
||||
'BillingSettings' => '',
|
||||
'Bills' => '',
|
||||
'By' => '',
|
||||
'Cancel' => '',
|
||||
'Checked' => '',
|
||||
'City' => '',
|
||||
'Comparison' => '',
|
||||
'Create' => '',
|
||||
'CreateResource' => '',
|
||||
'CustomerName' => '',
|
||||
'CustomerNo' => '',
|
||||
'Dashboard' => '',
|
||||
'Date' => '',
|
||||
'Delete' => '',
|
||||
'Element' => '',
|
||||
'Email' => '',
|
||||
'Exit' => '',
|
||||
'Filter' => '',
|
||||
'ForgotPassword' => '',
|
||||
'History' => '',
|
||||
'Home' => '',
|
||||
'ID' => '',
|
||||
'Imprint' => '',
|
||||
'Inform' => '',
|
||||
'Legal' => '',
|
||||
'Log' => '',
|
||||
'Login' => '',
|
||||
'Logo' => '',
|
||||
'Logs' => '',
|
||||
'Members' => '',
|
||||
'Name' => '',
|
||||
'New' => '',
|
||||
'NewPassword' => '',
|
||||
'Number' => '',
|
||||
'Organization' => '',
|
||||
'Organizations' => '',
|
||||
'Password' => '',
|
||||
'PlanSettings' => '',
|
||||
'Postal' => '',
|
||||
'Preview' => '',
|
||||
'PrivacyPolicy' => '',
|
||||
'Ref' => '',
|
||||
'Report' => '',
|
||||
'Reports' => '',
|
||||
'Reset' => '',
|
||||
'Resource' => '',
|
||||
'Resources' => '',
|
||||
'Save' => '',
|
||||
'Search' => '',
|
||||
'Send' => '',
|
||||
'Settings' => '',
|
||||
'SignIn' => '',
|
||||
'SignOut' => '',
|
||||
'Statistics' => '',
|
||||
'Status' => '',
|
||||
'Submit' => '',
|
||||
'Suspend' => '',
|
||||
'Terms' => '',
|
||||
'Title' => '',
|
||||
'Trigger' => '',
|
||||
'Type' => '',
|
||||
'Url' => '',
|
||||
'User' => '',
|
||||
'UserSettings' => '',
|
||||
'Username' => '',
|
||||
'Users' => '',
|
||||
'XPath' => '',
|
||||
'rstatus--1' => '',
|
||||
'rstatus-1' => '',
|
||||
'rstatus-2' => '',
|
||||
'rstatus-3' => '',
|
||||
]];
|
||||
|
|
@ -1,95 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.1
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['OnlineResourceWatcher' => [
|
||||
'Action' => '',
|
||||
'Active' => '',
|
||||
'Add' => '',
|
||||
'Address' => '',
|
||||
'Admin' => '',
|
||||
'Amount' => '',
|
||||
'Back' => '',
|
||||
'BillingEmail' => '',
|
||||
'BillingSettings' => '',
|
||||
'Bills' => '',
|
||||
'By' => '',
|
||||
'Cancel' => '',
|
||||
'Checked' => '',
|
||||
'City' => '',
|
||||
'Comparison' => '',
|
||||
'Create' => '',
|
||||
'CreateResource' => '',
|
||||
'CustomerName' => '',
|
||||
'CustomerNo' => '',
|
||||
'Dashboard' => '',
|
||||
'Date' => '',
|
||||
'Delete' => '',
|
||||
'Element' => '',
|
||||
'Email' => '',
|
||||
'Exit' => '',
|
||||
'Filter' => '',
|
||||
'ForgotPassword' => '',
|
||||
'History' => '',
|
||||
'Home' => '',
|
||||
'ID' => '',
|
||||
'Imprint' => '',
|
||||
'Inform' => '',
|
||||
'Legal' => '',
|
||||
'Log' => '',
|
||||
'Login' => '',
|
||||
'Logo' => '',
|
||||
'Logs' => '',
|
||||
'Members' => '',
|
||||
'Name' => '',
|
||||
'New' => '',
|
||||
'NewPassword' => '',
|
||||
'Number' => '',
|
||||
'Organization' => '',
|
||||
'Organizations' => '',
|
||||
'Password' => '',
|
||||
'PlanSettings' => '',
|
||||
'Postal' => '',
|
||||
'Preview' => '',
|
||||
'PrivacyPolicy' => '',
|
||||
'Ref' => '',
|
||||
'Report' => '',
|
||||
'Reports' => '',
|
||||
'Reset' => '',
|
||||
'Resource' => '',
|
||||
'Resources' => '',
|
||||
'Save' => '',
|
||||
'Search' => '',
|
||||
'Send' => '',
|
||||
'Settings' => '',
|
||||
'SignIn' => '',
|
||||
'SignOut' => '',
|
||||
'Statistics' => '',
|
||||
'Status' => '',
|
||||
'Submit' => '',
|
||||
'Suspend' => '',
|
||||
'Terms' => '',
|
||||
'Title' => '',
|
||||
'Trigger' => '',
|
||||
'Type' => '',
|
||||
'Url' => '',
|
||||
'User' => '',
|
||||
'UserSettings' => '',
|
||||
'Username' => '',
|
||||
'Users' => '',
|
||||
'XPath' => '',
|
||||
'rstatus--1' => '',
|
||||
'rstatus-1' => '',
|
||||
'rstatus-2' => '',
|
||||
'rstatus-3' => '',
|
||||
]];
|
||||
|
|
@ -1,95 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.1
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['OnlineResourceWatcher' => [
|
||||
'Action' => '',
|
||||
'Active' => '',
|
||||
'Add' => '',
|
||||
'Address' => '',
|
||||
'Admin' => '',
|
||||
'Amount' => '',
|
||||
'Back' => '',
|
||||
'BillingEmail' => '',
|
||||
'BillingSettings' => '',
|
||||
'Bills' => '',
|
||||
'By' => '',
|
||||
'Cancel' => '',
|
||||
'Checked' => '',
|
||||
'City' => '',
|
||||
'Comparison' => '',
|
||||
'Create' => '',
|
||||
'CreateResource' => '',
|
||||
'CustomerName' => '',
|
||||
'CustomerNo' => '',
|
||||
'Dashboard' => '',
|
||||
'Date' => '',
|
||||
'Delete' => '',
|
||||
'Element' => '',
|
||||
'Email' => '',
|
||||
'Exit' => '',
|
||||
'Filter' => '',
|
||||
'ForgotPassword' => '',
|
||||
'History' => '',
|
||||
'Home' => '',
|
||||
'ID' => '',
|
||||
'Imprint' => '',
|
||||
'Inform' => '',
|
||||
'Legal' => '',
|
||||
'Log' => '',
|
||||
'Login' => '',
|
||||
'Logo' => '',
|
||||
'Logs' => '',
|
||||
'Members' => '',
|
||||
'Name' => '',
|
||||
'New' => '',
|
||||
'NewPassword' => '',
|
||||
'Number' => '',
|
||||
'Organization' => '',
|
||||
'Organizations' => '',
|
||||
'Password' => '',
|
||||
'PlanSettings' => '',
|
||||
'Postal' => '',
|
||||
'Preview' => '',
|
||||
'PrivacyPolicy' => '',
|
||||
'Ref' => '',
|
||||
'Report' => '',
|
||||
'Reports' => '',
|
||||
'Reset' => '',
|
||||
'Resource' => '',
|
||||
'Resources' => '',
|
||||
'Save' => '',
|
||||
'Search' => '',
|
||||
'Send' => '',
|
||||
'Settings' => '',
|
||||
'SignIn' => '',
|
||||
'SignOut' => '',
|
||||
'Statistics' => '',
|
||||
'Status' => '',
|
||||
'Submit' => '',
|
||||
'Suspend' => '',
|
||||
'Terms' => '',
|
||||
'Title' => '',
|
||||
'Trigger' => '',
|
||||
'Type' => '',
|
||||
'Url' => '',
|
||||
'User' => '',
|
||||
'UserSettings' => '',
|
||||
'Username' => '',
|
||||
'Users' => '',
|
||||
'XPath' => '',
|
||||
'rstatus--1' => '',
|
||||
'rstatus-1' => '',
|
||||
'rstatus-2' => '',
|
||||
'rstatus-3' => '',
|
||||
]];
|
||||
|
|
@ -1,95 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.1
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['OnlineResourceWatcher' => [
|
||||
'Action' => '',
|
||||
'Active' => '',
|
||||
'Add' => '',
|
||||
'Address' => '',
|
||||
'Admin' => '',
|
||||
'Amount' => '',
|
||||
'Back' => '',
|
||||
'BillingEmail' => '',
|
||||
'BillingSettings' => '',
|
||||
'Bills' => '',
|
||||
'By' => '',
|
||||
'Cancel' => '',
|
||||
'Checked' => '',
|
||||
'City' => '',
|
||||
'Comparison' => '',
|
||||
'Create' => '',
|
||||
'CreateResource' => '',
|
||||
'CustomerName' => '',
|
||||
'CustomerNo' => '',
|
||||
'Dashboard' => '',
|
||||
'Date' => '',
|
||||
'Delete' => '',
|
||||
'Element' => '',
|
||||
'Email' => '',
|
||||
'Exit' => '',
|
||||
'Filter' => '',
|
||||
'ForgotPassword' => '',
|
||||
'History' => '',
|
||||
'Home' => '',
|
||||
'ID' => '',
|
||||
'Imprint' => '',
|
||||
'Inform' => '',
|
||||
'Legal' => '',
|
||||
'Log' => '',
|
||||
'Login' => '',
|
||||
'Logo' => '',
|
||||
'Logs' => '',
|
||||
'Members' => '',
|
||||
'Name' => '',
|
||||
'New' => '',
|
||||
'NewPassword' => '',
|
||||
'Number' => '',
|
||||
'Organization' => '',
|
||||
'Organizations' => '',
|
||||
'Password' => '',
|
||||
'PlanSettings' => '',
|
||||
'Postal' => '',
|
||||
'Preview' => '',
|
||||
'PrivacyPolicy' => '',
|
||||
'Ref' => '',
|
||||
'Report' => '',
|
||||
'Reports' => '',
|
||||
'Reset' => '',
|
||||
'Resource' => '',
|
||||
'Resources' => '',
|
||||
'Save' => '',
|
||||
'Search' => '',
|
||||
'Send' => '',
|
||||
'Settings' => '',
|
||||
'SignIn' => '',
|
||||
'SignOut' => '',
|
||||
'Statistics' => '',
|
||||
'Status' => '',
|
||||
'Submit' => '',
|
||||
'Suspend' => '',
|
||||
'Terms' => '',
|
||||
'Title' => '',
|
||||
'Trigger' => '',
|
||||
'Type' => '',
|
||||
'Url' => '',
|
||||
'User' => '',
|
||||
'UserSettings' => '',
|
||||
'Username' => '',
|
||||
'Users' => '',
|
||||
'XPath' => '',
|
||||
'rstatus--1' => '',
|
||||
'rstatus-1' => '',
|
||||
'rstatus-2' => '',
|
||||
'rstatus-3' => '',
|
||||
]];
|
||||
|
|
@ -1,95 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.1
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['OnlineResourceWatcher' => [
|
||||
'Action' => '',
|
||||
'Active' => '',
|
||||
'Add' => '',
|
||||
'Address' => '',
|
||||
'Admin' => '',
|
||||
'Amount' => '',
|
||||
'Back' => '',
|
||||
'BillingEmail' => '',
|
||||
'BillingSettings' => '',
|
||||
'Bills' => '',
|
||||
'By' => '',
|
||||
'Cancel' => '',
|
||||
'Checked' => '',
|
||||
'City' => '',
|
||||
'Comparison' => '',
|
||||
'Create' => '',
|
||||
'CreateResource' => '',
|
||||
'CustomerName' => '',
|
||||
'CustomerNo' => '',
|
||||
'Dashboard' => '',
|
||||
'Date' => '',
|
||||
'Delete' => '',
|
||||
'Element' => '',
|
||||
'Email' => '',
|
||||
'Exit' => '',
|
||||
'Filter' => '',
|
||||
'ForgotPassword' => '',
|
||||
'History' => '',
|
||||
'Home' => '',
|
||||
'ID' => '',
|
||||
'Imprint' => '',
|
||||
'Inform' => '',
|
||||
'Legal' => '',
|
||||
'Log' => '',
|
||||
'Login' => '',
|
||||
'Logo' => '',
|
||||
'Logs' => '',
|
||||
'Members' => '',
|
||||
'Name' => '',
|
||||
'New' => '',
|
||||
'NewPassword' => '',
|
||||
'Number' => '',
|
||||
'Organization' => '',
|
||||
'Organizations' => '',
|
||||
'Password' => '',
|
||||
'PlanSettings' => '',
|
||||
'Postal' => '',
|
||||
'Preview' => '',
|
||||
'PrivacyPolicy' => '',
|
||||
'Ref' => '',
|
||||
'Report' => '',
|
||||
'Reports' => '',
|
||||
'Reset' => '',
|
||||
'Resource' => '',
|
||||
'Resources' => '',
|
||||
'Save' => '',
|
||||
'Search' => '',
|
||||
'Send' => '',
|
||||
'Settings' => '',
|
||||
'SignIn' => '',
|
||||
'SignOut' => '',
|
||||
'Statistics' => '',
|
||||
'Status' => '',
|
||||
'Submit' => '',
|
||||
'Suspend' => '',
|
||||
'Terms' => '',
|
||||
'Title' => '',
|
||||
'Trigger' => '',
|
||||
'Type' => '',
|
||||
'Url' => '',
|
||||
'User' => '',
|
||||
'UserSettings' => '',
|
||||
'Username' => '',
|
||||
'Users' => '',
|
||||
'XPath' => '',
|
||||
'rstatus--1' => '',
|
||||
'rstatus-1' => '',
|
||||
'rstatus-2' => '',
|
||||
'rstatus-3' => '',
|
||||
]];
|
||||
|
|
@ -1,95 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.1
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['OnlineResourceWatcher' => [
|
||||
'Action' => '',
|
||||
'Active' => '',
|
||||
'Add' => '',
|
||||
'Address' => '',
|
||||
'Admin' => '',
|
||||
'Amount' => '',
|
||||
'Back' => '',
|
||||
'BillingEmail' => '',
|
||||
'BillingSettings' => '',
|
||||
'Bills' => '',
|
||||
'By' => '',
|
||||
'Cancel' => '',
|
||||
'Checked' => '',
|
||||
'City' => '',
|
||||
'Comparison' => '',
|
||||
'Create' => '',
|
||||
'CreateResource' => '',
|
||||
'CustomerName' => '',
|
||||
'CustomerNo' => '',
|
||||
'Dashboard' => '',
|
||||
'Date' => '',
|
||||
'Delete' => '',
|
||||
'Element' => '',
|
||||
'Email' => '',
|
||||
'Exit' => '',
|
||||
'Filter' => '',
|
||||
'ForgotPassword' => '',
|
||||
'History' => '',
|
||||
'Home' => '',
|
||||
'ID' => '',
|
||||
'Imprint' => '',
|
||||
'Inform' => '',
|
||||
'Legal' => '',
|
||||
'Log' => '',
|
||||
'Login' => '',
|
||||
'Logo' => '',
|
||||
'Logs' => '',
|
||||
'Members' => '',
|
||||
'Name' => '',
|
||||
'New' => '',
|
||||
'NewPassword' => '',
|
||||
'Number' => '',
|
||||
'Organization' => '',
|
||||
'Organizations' => '',
|
||||
'Password' => '',
|
||||
'PlanSettings' => '',
|
||||
'Postal' => '',
|
||||
'Preview' => '',
|
||||
'PrivacyPolicy' => '',
|
||||
'Ref' => '',
|
||||
'Report' => '',
|
||||
'Reports' => '',
|
||||
'Reset' => '',
|
||||
'Resource' => '',
|
||||
'Resources' => '',
|
||||
'Save' => '',
|
||||
'Search' => '',
|
||||
'Send' => '',
|
||||
'Settings' => '',
|
||||
'SignIn' => '',
|
||||
'SignOut' => '',
|
||||
'Statistics' => '',
|
||||
'Status' => '',
|
||||
'Submit' => '',
|
||||
'Suspend' => '',
|
||||
'Terms' => '',
|
||||
'Title' => '',
|
||||
'Trigger' => '',
|
||||
'Type' => '',
|
||||
'Url' => '',
|
||||
'User' => '',
|
||||
'UserSettings' => '',
|
||||
'Username' => '',
|
||||
'Users' => '',
|
||||
'XPath' => '',
|
||||
'rstatus--1' => '',
|
||||
'rstatus-1' => '',
|
||||
'rstatus-2' => '',
|
||||
'rstatus-3' => '',
|
||||
]];
|
||||
|
|
@ -1,95 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.1
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['OnlineResourceWatcher' => [
|
||||
'Action' => '',
|
||||
'Active' => '',
|
||||
'Add' => '',
|
||||
'Address' => '',
|
||||
'Admin' => '',
|
||||
'Amount' => '',
|
||||
'Back' => '',
|
||||
'BillingEmail' => '',
|
||||
'BillingSettings' => '',
|
||||
'Bills' => '',
|
||||
'By' => '',
|
||||
'Cancel' => '',
|
||||
'Checked' => '',
|
||||
'City' => '',
|
||||
'Comparison' => '',
|
||||
'Create' => '',
|
||||
'CreateResource' => '',
|
||||
'CustomerName' => '',
|
||||
'CustomerNo' => '',
|
||||
'Dashboard' => '',
|
||||
'Date' => '',
|
||||
'Delete' => '',
|
||||
'Element' => '',
|
||||
'Email' => '',
|
||||
'Exit' => '',
|
||||
'Filter' => '',
|
||||
'ForgotPassword' => '',
|
||||
'History' => '',
|
||||
'Home' => '',
|
||||
'ID' => '',
|
||||
'Imprint' => '',
|
||||
'Inform' => '',
|
||||
'Legal' => '',
|
||||
'Log' => '',
|
||||
'Login' => '',
|
||||
'Logo' => '',
|
||||
'Logs' => '',
|
||||
'Members' => '',
|
||||
'Name' => '',
|
||||
'New' => '',
|
||||
'NewPassword' => '',
|
||||
'Number' => '',
|
||||
'Organization' => '',
|
||||
'Organizations' => '',
|
||||
'Password' => '',
|
||||
'PlanSettings' => '',
|
||||
'Postal' => '',
|
||||
'Preview' => '',
|
||||
'PrivacyPolicy' => '',
|
||||
'Ref' => '',
|
||||
'Report' => '',
|
||||
'Reports' => '',
|
||||
'Reset' => '',
|
||||
'Resource' => '',
|
||||
'Resources' => '',
|
||||
'Save' => '',
|
||||
'Search' => '',
|
||||
'Send' => '',
|
||||
'Settings' => '',
|
||||
'SignIn' => '',
|
||||
'SignOut' => '',
|
||||
'Statistics' => '',
|
||||
'Status' => '',
|
||||
'Submit' => '',
|
||||
'Suspend' => '',
|
||||
'Terms' => '',
|
||||
'Title' => '',
|
||||
'Trigger' => '',
|
||||
'Type' => '',
|
||||
'Url' => '',
|
||||
'User' => '',
|
||||
'UserSettings' => '',
|
||||
'Username' => '',
|
||||
'Users' => '',
|
||||
'XPath' => '',
|
||||
'rstatus--1' => '',
|
||||
'rstatus-1' => '',
|
||||
'rstatus-2' => '',
|
||||
'rstatus-3' => '',
|
||||
]];
|
||||
|
|
@ -1,95 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Jingga
|
||||
*
|
||||
* PHP Version 8.1
|
||||
*
|
||||
* @package Modules\Localization
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 2.0
|
||||
* @version 1.0.0
|
||||
* @link https://jingga.app
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
return ['OnlineResourceWatcher' => [
|
||||
'Action' => '',
|
||||
'Active' => '',
|
||||
'Add' => '',
|
||||
'Address' => '',
|
||||
'Admin' => '',
|
||||
'Amount' => '',
|
||||
'Back' => '',
|
||||
'BillingEmail' => '',
|
||||
'BillingSettings' => '',
|
||||
'Bills' => '',
|
||||
'By' => '',
|
||||
'Cancel' => '',
|
||||
'Checked' => '',
|
||||
'City' => '',
|
||||
'Comparison' => '',
|
||||
'Create' => '',
|
||||
'CreateResource' => '',
|
||||
'CustomerName' => '',
|
||||
'CustomerNo' => '',
|
||||
'Dashboard' => '',
|
||||
'Date' => '',
|
||||
'Delete' => '',
|
||||
'Element' => '',
|
||||
'Email' => '',
|
||||
'Exit' => '',
|
||||
'Filter' => '',
|
||||
'ForgotPassword' => '',
|
||||
'History' => '',
|
||||
'Home' => '',
|
||||
'ID' => '',
|
||||
'Imprint' => '',
|
||||
'Inform' => '',
|
||||
'Legal' => '',
|
||||
'Log' => '',
|
||||
'Login' => '',
|
||||
'Logo' => '',
|
||||
'Logs' => '',
|
||||
'Members' => '',
|
||||
'Name' => '',
|
||||
'New' => '',
|
||||
'NewPassword' => '',
|
||||
'Number' => '',
|
||||
'Organization' => '',
|
||||
'Organizations' => '',
|
||||
'Password' => '',
|
||||
'PlanSettings' => '',
|
||||
'Postal' => '',
|
||||
'Preview' => '',
|
||||
'PrivacyPolicy' => '',
|
||||
'Ref' => '',
|
||||
'Report' => '',
|
||||
'Reports' => '',
|
||||
'Reset' => '',
|
||||
'Resource' => '',
|
||||
'Resources' => '',
|
||||
'Save' => '',
|
||||
'Search' => '',
|
||||
'Send' => '',
|
||||
'Settings' => '',
|
||||
'SignIn' => '',
|
||||
'SignOut' => '',
|
||||
'Statistics' => '',
|
||||
'Status' => '',
|
||||
'Submit' => '',
|
||||
'Suspend' => '',
|
||||
'Terms' => '',
|
||||
'Title' => '',
|
||||
'Trigger' => '',
|
||||
'Type' => '',
|
||||
'Url' => '',
|
||||
'User' => '',
|
||||
'UserSettings' => '',
|
||||
'Username' => '',
|
||||
'Users' => '',
|
||||
'XPath' => '',
|
||||
'rstatus--1' => '',
|
||||
'rstatus-1' => '',
|
||||
'rstatus-2' => '',
|
||||
'rstatus-3' => '',
|
||||
]];
|
||||
Loading…
Reference in New Issue
Block a user