Update translations

This commit is contained in:
James Cole
2023-11-15 06:32:41 +01:00
parent 67ef185a72
commit 8f26bbdaa0
35 changed files with 240 additions and 248 deletions

View File

@@ -125,8 +125,8 @@ class AccountController extends Controller
$allItems,
static function (array $a, array $b): int {
$order = [AccountType::ASSET, AccountType::REVENUE, AccountType::EXPENSE];
$pos_a = (int) array_search($a['type'], $order, true);
$pos_b = (int) array_search($b['type'], $order, true);
$pos_a = (int)array_search($a['type'], $order, true);
$pos_b = (int)array_search($b['type'], $order, true);
return $pos_a - $pos_b;
}