mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-22 00:47:24 -06:00
Expand v2 layout, add user administration pages.
This commit is contained in:
parent
843f86fc66
commit
b6f84c2b99
78
app/Api/V2/Controllers/UserGroup/IndexController.php
Normal file
78
app/Api/V2/Controllers/UserGroup/IndexController.php
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* IndexController.php
|
||||||
|
* Copyright (c) 2024 james@firefly-iii.org.
|
||||||
|
*
|
||||||
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as
|
||||||
|
* published by the Free Software Foundation, either version 3 of the
|
||||||
|
* License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see https://www.gnu.org/licenses/.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace FireflyIII\Api\V2\Controllers\UserGroup;
|
||||||
|
|
||||||
|
use FireflyIII\Api\V2\Controllers\Controller;
|
||||||
|
use FireflyIII\Api\V2\Request\Model\Account\IndexRequest;
|
||||||
|
use FireflyIII\Api\V2\Request\Model\Transaction\InfiniteListRequest;
|
||||||
|
use FireflyIII\Repositories\UserGroup\UserGroupRepositoryInterface;
|
||||||
|
use FireflyIII\Repositories\UserGroups\Account\AccountRepositoryInterface;
|
||||||
|
use FireflyIII\Transformers\V2\AccountTransformer;
|
||||||
|
use FireflyIII\Transformers\V2\UserGroupTransformer;
|
||||||
|
use Illuminate\Http\JsonResponse;
|
||||||
|
use Illuminate\Pagination\LengthAwarePaginator;
|
||||||
|
|
||||||
|
class IndexController extends Controller
|
||||||
|
{
|
||||||
|
public const string RESOURCE_KEY = 'user_groups';
|
||||||
|
|
||||||
|
private UserGroupRepositoryInterface $repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* AccountController constructor.
|
||||||
|
*/
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
parent::__construct();
|
||||||
|
$this->middleware(
|
||||||
|
function ($request, $next) {
|
||||||
|
$this->repository = app(UserGroupRepositoryInterface::class);
|
||||||
|
|
||||||
|
return $next($request);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* TODO see autocomplete/accountcontroller for list.
|
||||||
|
*/
|
||||||
|
public function index(IndexRequest $request): JsonResponse
|
||||||
|
{
|
||||||
|
$administrations = $this->repository->get();
|
||||||
|
$pageSize = $this->parameters->get('limit');
|
||||||
|
$count = $administrations->count();
|
||||||
|
$administrations = $administrations->slice(($this->parameters->get('page') - 1) * $pageSize, $pageSize);
|
||||||
|
$paginator = new LengthAwarePaginator($administrations, $count, $pageSize, $this->parameters->get('page'));
|
||||||
|
$transformer = new UserGroupTransformer();
|
||||||
|
|
||||||
|
$transformer->setParameters($this->parameters); // give params to transformer
|
||||||
|
|
||||||
|
return response()
|
||||||
|
->json($this->jsonApiList(self::RESOURCE_KEY, $paginator, $transformer))
|
||||||
|
->header('Content-Type', self::CONTENT_TYPE)
|
||||||
|
;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -41,7 +41,6 @@ enum UserRoleEnum: string
|
|||||||
// manage other financial objects:
|
// manage other financial objects:
|
||||||
case MANAGE_BUDGETS = 'mng_budgets';
|
case MANAGE_BUDGETS = 'mng_budgets';
|
||||||
case MANAGE_PIGGY_BANKS = 'mng_piggies';
|
case MANAGE_PIGGY_BANKS = 'mng_piggies';
|
||||||
case MANAGE_REPETITIONS = 'mng_reps';
|
|
||||||
case MANAGE_SUBSCRIPTIONS = 'mng_subscriptions';
|
case MANAGE_SUBSCRIPTIONS = 'mng_subscriptions';
|
||||||
case MANAGE_RULES = 'mng_rules';
|
case MANAGE_RULES = 'mng_rules';
|
||||||
case MANAGE_RECURRING = 'mng_recurring';
|
case MANAGE_RECURRING = 'mng_recurring';
|
||||||
@ -51,7 +50,7 @@ enum UserRoleEnum: string
|
|||||||
// view and generate reports
|
// view and generate reports
|
||||||
case VIEW_REPORTS = 'view_reports';
|
case VIEW_REPORTS = 'view_reports';
|
||||||
|
|
||||||
// view memberships. needs FULL to manage them.
|
// view memberships AND roles. needs FULL to manage them.
|
||||||
case VIEW_MEMBERSHIPS = 'view_memberships';
|
case VIEW_MEMBERSHIPS = 'view_memberships';
|
||||||
|
|
||||||
// everything the creator can, except remove/change original creator and delete group
|
// everything the creator can, except remove/change original creator and delete group
|
||||||
|
44
app/Http/Controllers/UserGroup/CreateController.php
Normal file
44
app/Http/Controllers/UserGroup/CreateController.php
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* CreateController.php
|
||||||
|
* Copyright (c) 2024 james@firefly-iii.org.
|
||||||
|
*
|
||||||
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as
|
||||||
|
* published by the Free Software Foundation, either version 3 of the
|
||||||
|
* License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see https://www.gnu.org/licenses/.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace FireflyIII\Http\Controllers\UserGroup;
|
||||||
|
|
||||||
|
use FireflyIII\Http\Controllers\Controller;
|
||||||
|
|
||||||
|
class CreateController extends Controller
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View|\Illuminate\Foundation\Application
|
||||||
|
*/
|
||||||
|
public function create()
|
||||||
|
{
|
||||||
|
$title = (string)trans('firefly.administrations_page_title');
|
||||||
|
$subTitle = (string)trans('firefly.administrations_page_sub_title');
|
||||||
|
$mainTitleIcon = 'fa-book';
|
||||||
|
app('log')->debug(sprintf('Now at %s', __METHOD__));
|
||||||
|
|
||||||
|
return view('administrations.create')->with(compact('title', 'subTitle', 'mainTitleIcon'));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
48
app/Http/Controllers/UserGroup/IndexController.php
Normal file
48
app/Http/Controllers/UserGroup/IndexController.php
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* IndexController.php
|
||||||
|
* Copyright (c) 2024 james@firefly-iii.org.
|
||||||
|
*
|
||||||
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as
|
||||||
|
* published by the Free Software Foundation, either version 3 of the
|
||||||
|
* License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see https://www.gnu.org/licenses/.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace FireflyIII\Http\Controllers\UserGroup;
|
||||||
|
|
||||||
|
use FireflyIII\Http\Controllers\Controller;
|
||||||
|
use Illuminate\Contracts\View\Factory;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
use Illuminate\View\View;
|
||||||
|
|
||||||
|
class IndexController extends Controller
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Show all administrations.
|
||||||
|
*
|
||||||
|
* @return Factory|View
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public function index(Request $request)
|
||||||
|
{
|
||||||
|
$title = (string)trans('firefly.administrations_page_title');
|
||||||
|
$subTitle = (string)trans('firefly.administrations_page_sub_title');
|
||||||
|
$mainTitleIcon = 'fa-book';
|
||||||
|
app('log')->debug(sprintf('Now at %s', __METHOD__));
|
||||||
|
|
||||||
|
return view('administrations.index')->with(compact('title', 'subTitle', 'mainTitleIcon'));
|
||||||
|
}
|
||||||
|
}
|
@ -98,6 +98,7 @@ class UserGroupRepository implements UserGroupRepositoryInterface
|
|||||||
public function get(): Collection
|
public function get(): Collection
|
||||||
{
|
{
|
||||||
$collection = new Collection();
|
$collection = new Collection();
|
||||||
|
$set = [];
|
||||||
$memberships = $this->user->groupMemberships()->get();
|
$memberships = $this->user->groupMemberships()->get();
|
||||||
|
|
||||||
/** @var GroupMembership $membership */
|
/** @var GroupMembership $membership */
|
||||||
@ -105,9 +106,14 @@ class UserGroupRepository implements UserGroupRepositoryInterface
|
|||||||
/** @var null|UserGroup $group */
|
/** @var null|UserGroup $group */
|
||||||
$group = $membership->userGroup()->first();
|
$group = $membership->userGroup()->first();
|
||||||
if (null !== $group) {
|
if (null !== $group) {
|
||||||
$collection->push($group);
|
$groupId = (int)$group->id;
|
||||||
|
if (in_array($groupId, $set, true)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
$set[$groupId] = $group;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
$collection->push(...$set);
|
||||||
|
|
||||||
return $collection;
|
return $collection;
|
||||||
}
|
}
|
||||||
|
@ -36,10 +36,14 @@ use Illuminate\Support\Collection;
|
|||||||
class UserGroupTransformer extends AbstractTransformer
|
class UserGroupTransformer extends AbstractTransformer
|
||||||
{
|
{
|
||||||
private array $memberships;
|
private array $memberships;
|
||||||
|
private array $membershipsVisible;
|
||||||
|
private array $inUse;
|
||||||
|
|
||||||
public function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
$this->memberships = [];
|
$this->memberships = [];
|
||||||
|
$this->membershipsVisible = [];
|
||||||
|
$this->inUse = [];
|
||||||
}
|
}
|
||||||
|
|
||||||
public function collectMetaData(Collection $objects): Collection
|
public function collectMetaData(Collection $objects): Collection
|
||||||
@ -52,7 +56,9 @@ class UserGroupTransformer extends AbstractTransformer
|
|||||||
/** @var UserGroup $userGroup */
|
/** @var UserGroup $userGroup */
|
||||||
foreach ($objects as $userGroup) {
|
foreach ($objects as $userGroup) {
|
||||||
$userGroupId = $userGroup->id;
|
$userGroupId = $userGroup->id;
|
||||||
|
$this->inUse[$userGroupId] = $user->user_group_id === $userGroupId;
|
||||||
$access = $user->hasRoleInGroupOrOwner($userGroup, UserRoleEnum::VIEW_MEMBERSHIPS) || $user->hasRole('owner');
|
$access = $user->hasRoleInGroupOrOwner($userGroup, UserRoleEnum::VIEW_MEMBERSHIPS) || $user->hasRole('owner');
|
||||||
|
$this->membershipsVisible[$userGroupId] = $access;
|
||||||
if ($access) {
|
if ($access) {
|
||||||
$groupMemberships = $userGroup->groupMemberships()->get();
|
$groupMemberships = $userGroup->groupMemberships()->get();
|
||||||
|
|
||||||
@ -62,6 +68,7 @@ class UserGroupTransformer extends AbstractTransformer
|
|||||||
'user_id' => (string)$groupMembership->user_id,
|
'user_id' => (string)$groupMembership->user_id,
|
||||||
'user_email' => $groupMembership->user->email,
|
'user_email' => $groupMembership->user->email,
|
||||||
'role' => $groupMembership->userRole->title,
|
'role' => $groupMembership->userRole->title,
|
||||||
|
'you' => $groupMembership->user_id === $user->id,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -80,7 +87,9 @@ class UserGroupTransformer extends AbstractTransformer
|
|||||||
'id' => $userGroup->id,
|
'id' => $userGroup->id,
|
||||||
'created_at' => $userGroup->created_at->toAtomString(),
|
'created_at' => $userGroup->created_at->toAtomString(),
|
||||||
'updated_at' => $userGroup->updated_at->toAtomString(),
|
'updated_at' => $userGroup->updated_at->toAtomString(),
|
||||||
|
'in_use' => $this->inUse[$userGroup->id] ?? false,
|
||||||
'title' => $userGroup->title,
|
'title' => $userGroup->title,
|
||||||
|
'can_see_members' => $this->membershipsVisible[$userGroup->id] ?? false,
|
||||||
'members' => $this->memberships[$userGroup->id] ?? [],
|
'members' => $this->memberships[$userGroup->id] ?? [],
|
||||||
];
|
];
|
||||||
// if the user has a specific role in this group, then collect the memberships.
|
// if the user has a specific role in this group, then collect the memberships.
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "\u041f\u043e\u0445\u0430\u0440\u0447\u0435\u043d\u0438",
|
"spent": "\u041f\u043e\u0445\u0430\u0440\u0447\u0435\u043d\u0438",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "\u041e\u0441\u0442\u0430\u043d\u0430\u043b\u0438",
|
"left": "\u041e\u0441\u0442\u0430\u043d\u0430\u043b\u0438",
|
||||||
"paid": "\u041f\u043b\u0430\u0442\u0435\u043d\u0438",
|
"paid": "\u041f\u043b\u0430\u0442\u0435\u043d\u0438",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "\u041f\u043e\u0445\u0430\u0440\u0447\u0435\u043d\u0438",
|
"spent": "\u041f\u043e\u0445\u0430\u0440\u0447\u0435\u043d\u0438",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "\u041e\u0441\u0442\u0430\u043d\u0430\u043b\u0438",
|
"left": "\u041e\u0441\u0442\u0430\u043d\u0430\u043b\u0438",
|
||||||
"paid": "\u041f\u043b\u0430\u0442\u0435\u043d\u0438",
|
"paid": "\u041f\u043b\u0430\u0442\u0435\u043d\u0438",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Gastat",
|
"spent": "Gastat",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Queda",
|
"left": "Queda",
|
||||||
"paid": "Pagat",
|
"paid": "Pagat",
|
||||||
"errors_submission_v2": "Hi ha hagut un error amb el teu enviament. Per favor, comprova els seg\u00fcents errors: {{errorMessage}}",
|
"errors_submission_v2": "Hi ha hagut un error amb el teu enviament. Per favor, comprova els seg\u00fcents errors: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Gastat",
|
"spent": "Gastat",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Queda",
|
"left": "Queda",
|
||||||
"paid": "Pagat",
|
"paid": "Pagat",
|
||||||
"errors_submission_v2": "Hi ha hagut un error amb el teu enviament. Per favor, comprova els seg\u00fcents errors: {{errorMessage}}",
|
"errors_submission_v2": "Hi ha hagut un error amb el teu enviament. Per favor, comprova els seg\u00fcents errors: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Utraceno",
|
"spent": "Utraceno",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Zb\u00fdv\u00e1",
|
"left": "Zb\u00fdv\u00e1",
|
||||||
"paid": "Zaplaceno",
|
"paid": "Zaplaceno",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Utraceno",
|
"spent": "Utraceno",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Zb\u00fdv\u00e1",
|
"left": "Zb\u00fdv\u00e1",
|
||||||
"paid": "Zaplaceno",
|
"paid": "Zaplaceno",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Spent",
|
"spent": "Spent",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Left",
|
"left": "Left",
|
||||||
"paid": "Paid",
|
"paid": "Paid",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Spent",
|
"spent": "Spent",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Left",
|
"left": "Left",
|
||||||
"paid": "Paid",
|
"paid": "Paid",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Ausgegeben",
|
"spent": "Ausgegeben",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "\u00dcbrig",
|
"left": "\u00dcbrig",
|
||||||
"paid": "Bezahlt",
|
"paid": "Bezahlt",
|
||||||
"errors_submission_v2": "Bei Ihrer \u00dcbermittlung ist ein Fehler aufgetreten. Bitte \u00fcberpr\u00fcfen Sie die unten stehenden Fehler: {{errorMessage}}",
|
"errors_submission_v2": "Bei Ihrer \u00dcbermittlung ist ein Fehler aufgetreten. Bitte \u00fcberpr\u00fcfen Sie die unten stehenden Fehler: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Ausgegeben",
|
"spent": "Ausgegeben",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "\u00dcbrig",
|
"left": "\u00dcbrig",
|
||||||
"paid": "Bezahlt",
|
"paid": "Bezahlt",
|
||||||
"errors_submission_v2": "Bei Ihrer \u00dcbermittlung ist ein Fehler aufgetreten. Bitte \u00fcberpr\u00fcfen Sie die unten stehenden Fehler: {{errorMessage}}",
|
"errors_submission_v2": "Bei Ihrer \u00dcbermittlung ist ein Fehler aufgetreten. Bitte \u00fcberpr\u00fcfen Sie die unten stehenden Fehler: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "\u0394\u03b1\u03c0\u03b1\u03bd\u03ae\u03b8\u03b7\u03ba\u03b1\u03bd",
|
"spent": "\u0394\u03b1\u03c0\u03b1\u03bd\u03ae\u03b8\u03b7\u03ba\u03b1\u03bd",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "\u0391\u03c0\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5\u03bd",
|
"left": "\u0391\u03c0\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5\u03bd",
|
||||||
"paid": "\u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ad\u03bd\u03bf",
|
"paid": "\u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ad\u03bd\u03bf",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "\u0394\u03b1\u03c0\u03b1\u03bd\u03ae\u03b8\u03b7\u03ba\u03b1\u03bd",
|
"spent": "\u0394\u03b1\u03c0\u03b1\u03bd\u03ae\u03b8\u03b7\u03ba\u03b1\u03bd",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "\u0391\u03c0\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5\u03bd",
|
"left": "\u0391\u03c0\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5\u03bd",
|
||||||
"paid": "\u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ad\u03bd\u03bf",
|
"paid": "\u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ad\u03bd\u03bf",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Spent",
|
"spent": "Spent",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Left",
|
"left": "Left",
|
||||||
"paid": "Paid",
|
"paid": "Paid",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Spent",
|
"spent": "Spent",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Left",
|
"left": "Left",
|
||||||
"paid": "Paid",
|
"paid": "Paid",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Spent",
|
"spent": "Spent",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Left",
|
"left": "Left",
|
||||||
"paid": "Paid",
|
"paid": "Paid",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Spent",
|
"spent": "Spent",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Left",
|
"left": "Left",
|
||||||
"paid": "Paid",
|
"paid": "Paid",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Gastado",
|
"spent": "Gastado",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Disponible",
|
"left": "Disponible",
|
||||||
"paid": "Pagado",
|
"paid": "Pagado",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Gastado",
|
"spent": "Gastado",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Disponible",
|
"left": "Disponible",
|
||||||
"paid": "Pagado",
|
"paid": "Pagado",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "K\u00e4ytetty",
|
"spent": "K\u00e4ytetty",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "J\u00e4ljell\u00e4",
|
"left": "J\u00e4ljell\u00e4",
|
||||||
"paid": "Maksettu",
|
"paid": "Maksettu",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "K\u00e4ytetty",
|
"spent": "K\u00e4ytetty",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "J\u00e4ljell\u00e4",
|
"left": "J\u00e4ljell\u00e4",
|
||||||
"paid": "Maksettu",
|
"paid": "Maksettu",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "D\u00e9pens\u00e9",
|
"spent": "D\u00e9pens\u00e9",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Reste",
|
"left": "Reste",
|
||||||
"paid": "Pay\u00e9",
|
"paid": "Pay\u00e9",
|
||||||
"errors_submission_v2": "Certaines informations ne sont pas correctes dans votre formulaire. Veuillez v\u00e9rifier les erreurs ci-dessous : {{errorMessage}}",
|
"errors_submission_v2": "Certaines informations ne sont pas correctes dans votre formulaire. Veuillez v\u00e9rifier les erreurs ci-dessous : {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "D\u00e9pens\u00e9",
|
"spent": "D\u00e9pens\u00e9",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Reste",
|
"left": "Reste",
|
||||||
"paid": "Pay\u00e9",
|
"paid": "Pay\u00e9",
|
||||||
"errors_submission_v2": "Certaines informations ne sont pas correctes dans votre formulaire. Veuillez v\u00e9rifier les erreurs ci-dessous : {{errorMessage}}",
|
"errors_submission_v2": "Certaines informations ne sont pas correctes dans votre formulaire. Veuillez v\u00e9rifier les erreurs ci-dessous : {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Elk\u00f6lt\u00f6tt",
|
"spent": "Elk\u00f6lt\u00f6tt",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Maradv\u00e1ny",
|
"left": "Maradv\u00e1ny",
|
||||||
"paid": "Kifizetve",
|
"paid": "Kifizetve",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Elk\u00f6lt\u00f6tt",
|
"spent": "Elk\u00f6lt\u00f6tt",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Maradv\u00e1ny",
|
"left": "Maradv\u00e1ny",
|
||||||
"paid": "Kifizetve",
|
"paid": "Kifizetve",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Menghabiskan",
|
"spent": "Menghabiskan",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Kiri",
|
"left": "Kiri",
|
||||||
"paid": "Dibayar",
|
"paid": "Dibayar",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Menghabiskan",
|
"spent": "Menghabiskan",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Kiri",
|
"left": "Kiri",
|
||||||
"paid": "Dibayar",
|
"paid": "Dibayar",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Speso",
|
"spent": "Speso",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Resto",
|
"left": "Resto",
|
||||||
"paid": "Pagati",
|
"paid": "Pagati",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Speso",
|
"spent": "Speso",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Resto",
|
"left": "Resto",
|
||||||
"paid": "Pagati",
|
"paid": "Pagati",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "\u652f\u51fa",
|
"spent": "\u652f\u51fa",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "\u6b8b\u308a",
|
"left": "\u6b8b\u308a",
|
||||||
"paid": "\u652f\u6255\u3044\u6e08\u307f",
|
"paid": "\u652f\u6255\u3044\u6e08\u307f",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "\u652f\u51fa",
|
"spent": "\u652f\u51fa",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "\u6b8b\u308a",
|
"left": "\u6b8b\u308a",
|
||||||
"paid": "\u652f\u6255\u3044\u6e08\u307f",
|
"paid": "\u652f\u6255\u3044\u6e08\u307f",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "\uc9c0\ucd9c",
|
"spent": "\uc9c0\ucd9c",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "\ub0a8\uc74c",
|
"left": "\ub0a8\uc74c",
|
||||||
"paid": "\uc9c0\ubd88\ub428",
|
"paid": "\uc9c0\ubd88\ub428",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "\uc9c0\ucd9c",
|
"spent": "\uc9c0\ucd9c",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "\ub0a8\uc74c",
|
"left": "\ub0a8\uc74c",
|
||||||
"paid": "\uc9c0\ubd88\ub428",
|
"paid": "\uc9c0\ubd88\ub428",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Brukt",
|
"spent": "Brukt",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Gjenv\u00e6rende",
|
"left": "Gjenv\u00e6rende",
|
||||||
"paid": "Betalt",
|
"paid": "Betalt",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Brukt",
|
"spent": "Brukt",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Gjenv\u00e6rende",
|
"left": "Gjenv\u00e6rende",
|
||||||
"paid": "Betalt",
|
"paid": "Betalt",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Uitgegeven",
|
"spent": "Uitgegeven",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Over",
|
"left": "Over",
|
||||||
"paid": "Betaald",
|
"paid": "Betaald",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Uitgegeven",
|
"spent": "Uitgegeven",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Over",
|
"left": "Over",
|
||||||
"paid": "Betaald",
|
"paid": "Betaald",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Brukt",
|
"spent": "Brukt",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Att",
|
"left": "Att",
|
||||||
"paid": "Betalt",
|
"paid": "Betalt",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Brukt",
|
"spent": "Brukt",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Att",
|
"left": "Att",
|
||||||
"paid": "Betalt",
|
"paid": "Betalt",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Wydano",
|
"spent": "Wydano",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Pozosta\u0142o",
|
"left": "Pozosta\u0142o",
|
||||||
"paid": "Zap\u0142acone",
|
"paid": "Zap\u0142acone",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Wydano",
|
"spent": "Wydano",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Pozosta\u0142o",
|
"left": "Pozosta\u0142o",
|
||||||
"paid": "Zap\u0142acone",
|
"paid": "Zap\u0142acone",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Gasto",
|
"spent": "Gasto",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Restante",
|
"left": "Restante",
|
||||||
"paid": "Pago",
|
"paid": "Pago",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Gasto",
|
"spent": "Gasto",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Em falta",
|
"left": "Em falta",
|
||||||
"paid": "Pago",
|
"paid": "Pago",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Gasto",
|
"spent": "Gasto",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Restante",
|
"left": "Restante",
|
||||||
"paid": "Pago",
|
"paid": "Pago",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Gasto",
|
"spent": "Gasto",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Em falta",
|
"left": "Em falta",
|
||||||
"paid": "Pago",
|
"paid": "Pago",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Cheltuit",
|
"spent": "Cheltuit",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "R\u0103mas",
|
"left": "R\u0103mas",
|
||||||
"paid": "Pl\u0103tit",
|
"paid": "Pl\u0103tit",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Cheltuit",
|
"spent": "Cheltuit",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "R\u0103mas",
|
"left": "R\u0103mas",
|
||||||
"paid": "Pl\u0103tit",
|
"paid": "Pl\u0103tit",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "\u0420\u0430\u0441\u0445\u043e\u0434",
|
"spent": "\u0420\u0430\u0441\u0445\u043e\u0434",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "\u041e\u0441\u0442\u0430\u043b\u043e\u0441\u044c",
|
"left": "\u041e\u0441\u0442\u0430\u043b\u043e\u0441\u044c",
|
||||||
"paid": "\u041e\u043f\u043b\u0430\u0447\u0435\u043d\u043e",
|
"paid": "\u041e\u043f\u043b\u0430\u0447\u0435\u043d\u043e",
|
||||||
"errors_submission_v2": "\u0421 \u0432\u0430\u0448\u0435\u0439 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0435\u0439 \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u043e\u0448\u0438\u0431\u043a\u0438: {{errorMessage}}",
|
"errors_submission_v2": "\u0421 \u0432\u0430\u0448\u0435\u0439 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0435\u0439 \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u043e\u0448\u0438\u0431\u043a\u0438: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "\u0420\u0430\u0441\u0445\u043e\u0434",
|
"spent": "\u0420\u0430\u0441\u0445\u043e\u0434",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "\u041e\u0441\u0442\u0430\u043b\u043e\u0441\u044c",
|
"left": "\u041e\u0441\u0442\u0430\u043b\u043e\u0441\u044c",
|
||||||
"paid": "\u041e\u043f\u043b\u0430\u0447\u0435\u043d\u043e",
|
"paid": "\u041e\u043f\u043b\u0430\u0447\u0435\u043d\u043e",
|
||||||
"errors_submission_v2": "\u0421 \u0432\u0430\u0448\u0435\u0439 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0435\u0439 \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u043e\u0448\u0438\u0431\u043a\u0438: {{errorMessage}}",
|
"errors_submission_v2": "\u0421 \u0432\u0430\u0448\u0435\u0439 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0435\u0439 \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u043e\u0448\u0438\u0431\u043a\u0438: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Utraten\u00e9",
|
"spent": "Utraten\u00e9",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Zost\u00e1va",
|
"left": "Zost\u00e1va",
|
||||||
"paid": "Uhraden\u00e9",
|
"paid": "Uhraden\u00e9",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Utraten\u00e9",
|
"spent": "Utraten\u00e9",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Zost\u00e1va",
|
"left": "Zost\u00e1va",
|
||||||
"paid": "Uhraden\u00e9",
|
"paid": "Uhraden\u00e9",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Porabljeno",
|
"spent": "Porabljeno",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Preostalo",
|
"left": "Preostalo",
|
||||||
"paid": "Pla\u010dano",
|
"paid": "Pla\u010dano",
|
||||||
"errors_submission_v2": "Nekaj je bilo narobe z va\u0161o oddajo. Preverite spodnje napake: {{errorMessage}}",
|
"errors_submission_v2": "Nekaj je bilo narobe z va\u0161o oddajo. Preverite spodnje napake: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Porabljeno",
|
"spent": "Porabljeno",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Preostalo",
|
"left": "Preostalo",
|
||||||
"paid": "Pla\u010dano",
|
"paid": "Pla\u010dano",
|
||||||
"errors_submission_v2": "Nekaj je bilo narobe z va\u0161o oddajo. Preverite spodnje napake: {{errorMessage}}",
|
"errors_submission_v2": "Nekaj je bilo narobe z va\u0161o oddajo. Preverite spodnje napake: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Spenderat",
|
"spent": "Spenderat",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "\u00c5terst\u00e5r",
|
"left": "\u00c5terst\u00e5r",
|
||||||
"paid": "Betald",
|
"paid": "Betald",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Spenderat",
|
"spent": "Spenderat",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "\u00c5terst\u00e5r",
|
"left": "\u00c5terst\u00e5r",
|
||||||
"paid": "Betald",
|
"paid": "Betald",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Harcanan",
|
"spent": "Harcanan",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Ayr\u0131ld\u0131",
|
"left": "Ayr\u0131ld\u0131",
|
||||||
"paid": "\u00d6dendi",
|
"paid": "\u00d6dendi",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Harcanan",
|
"spent": "Harcanan",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Ayr\u0131ld\u0131",
|
"left": "Ayr\u0131ld\u0131",
|
||||||
"paid": "\u00d6dendi",
|
"paid": "\u00d6dendi",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Spent",
|
"spent": "Spent",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Left",
|
"left": "Left",
|
||||||
"paid": "Paid",
|
"paid": "Paid",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "Spent",
|
"spent": "Spent",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "Left",
|
"left": "Left",
|
||||||
"paid": "Paid",
|
"paid": "Paid",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "\u0110\u00e3 chi",
|
"spent": "\u0110\u00e3 chi",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "C\u00f2n l\u1ea1i",
|
"left": "C\u00f2n l\u1ea1i",
|
||||||
"paid": "\u0110\u00e3 thanh to\u00e1n",
|
"paid": "\u0110\u00e3 thanh to\u00e1n",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "\u0110\u00e3 chi",
|
"spent": "\u0110\u00e3 chi",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "C\u00f2n l\u1ea1i",
|
"left": "C\u00f2n l\u1ea1i",
|
||||||
"paid": "\u0110\u00e3 thanh to\u00e1n",
|
"paid": "\u0110\u00e3 thanh to\u00e1n",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "\u652f\u51fa",
|
"spent": "\u652f\u51fa",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "\u5269\u4f59",
|
"left": "\u5269\u4f59",
|
||||||
"paid": "\u5df2\u4ed8\u6b3e",
|
"paid": "\u5df2\u4ed8\u6b3e",
|
||||||
"errors_submission_v2": "\u60a8\u63d0\u4ea4\u7684\u5185\u5bb9\u6709\u8bef\uff0c\u8bf7\u68c0\u67e5\u9519\u8bef\u4fe1\u606f: {{errorMessage}}",
|
"errors_submission_v2": "\u60a8\u63d0\u4ea4\u7684\u5185\u5bb9\u6709\u8bef\uff0c\u8bf7\u68c0\u67e5\u9519\u8bef\u4fe1\u606f: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "\u652f\u51fa",
|
"spent": "\u652f\u51fa",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "\u5269\u9918",
|
"left": "\u5269\u9918",
|
||||||
"paid": "\u5df2\u4ed8\u6b3e",
|
"paid": "\u5df2\u4ed8\u6b3e",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "\u652f\u51fa",
|
"spent": "\u652f\u51fa",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "\u5269\u4f59",
|
"left": "\u5269\u4f59",
|
||||||
"paid": "\u5df2\u4ed8\u6b3e",
|
"paid": "\u5df2\u4ed8\u6b3e",
|
||||||
"errors_submission_v2": "\u60a8\u63d0\u4ea4\u7684\u5185\u5bb9\u6709\u8bef\uff0c\u8bf7\u68c0\u67e5\u9519\u8bef\u4fe1\u606f: {{errorMessage}}",
|
"errors_submission_v2": "\u60a8\u63d0\u4ea4\u7684\u5185\u5bb9\u6709\u8bef\uff0c\u8bf7\u68c0\u67e5\u9519\u8bef\u4fe1\u606f: {{errorMessage}}",
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
},
|
},
|
||||||
"firefly": {
|
"firefly": {
|
||||||
"spent": "\u652f\u51fa",
|
"spent": "\u652f\u51fa",
|
||||||
|
"administration_owner": "Administration owner: {{email}}",
|
||||||
|
"administration_you": "Your role: {{role}}",
|
||||||
|
"administration_role_owner": "Owner",
|
||||||
|
"administration_role_ro": "Read-only",
|
||||||
|
"administration_role_mng_trx": "Manage transactions",
|
||||||
|
"administration_role_mng_meta": "Manage classification and meta-data",
|
||||||
|
"administration_role_mng_budgets": "Manage budgets",
|
||||||
|
"administration_role_mng_piggies": "Manage piggy banks",
|
||||||
|
"administration_role_mng_subscriptions": "Manage subscriptions",
|
||||||
|
"administration_role_mng_rules": "Manage rules",
|
||||||
|
"administration_role_mng_recurring": "Manage recurring transactions",
|
||||||
|
"administration_role_mng_webhooks": "Manage webhooks",
|
||||||
|
"administration_role_mng_currencies": "Manage currencies",
|
||||||
|
"administration_role_view_reports": "View reports",
|
||||||
|
"administration_role_full": "Full access",
|
||||||
"left": "\u5269\u9918",
|
"left": "\u5269\u9918",
|
||||||
"paid": "\u5df2\u4ed8\u6b3e",
|
"paid": "\u5df2\u4ed8\u6b3e",
|
||||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||||
|
45
resources/assets/v2/api/v2/model/user-group/get.js
Normal file
45
resources/assets/v2/api/v2/model/user-group/get.js
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
/*
|
||||||
|
* list.js
|
||||||
|
* Copyright (c) 2022 james@firefly-iii.org
|
||||||
|
*
|
||||||
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as
|
||||||
|
* published by the Free Software Foundation, either version 3 of the
|
||||||
|
* License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import {api} from "../../../../boot/axios";
|
||||||
|
import format from "date-fns/format";
|
||||||
|
|
||||||
|
export default class Get {
|
||||||
|
|
||||||
|
// /**
|
||||||
|
// *
|
||||||
|
// * @param identifier
|
||||||
|
// * @param params
|
||||||
|
// * @returns {Promise<AxiosResponse<any>>}
|
||||||
|
// */
|
||||||
|
// show(identifier, params) {
|
||||||
|
// return api.get('/api/v2/accounts/' + identifier, {params: params});
|
||||||
|
// }
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param params
|
||||||
|
* @returns {Promise<AxiosResponse<any>>}
|
||||||
|
*/
|
||||||
|
index(params) {
|
||||||
|
return api.get('/api/v2/user-groups', {params: params});
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
136
resources/assets/v2/pages/administrations/index.js
Normal file
136
resources/assets/v2/pages/administrations/index.js
Normal file
@ -0,0 +1,136 @@
|
|||||||
|
/*
|
||||||
|
* show.js
|
||||||
|
* Copyright (c) 2024 james@firefly-iii.org.
|
||||||
|
*
|
||||||
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as
|
||||||
|
* published by the Free Software Foundation, either version 3 of the
|
||||||
|
* License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see https://www.gnu.org/licenses/.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import '../../boot/bootstrap.js';
|
||||||
|
import dates from "../shared/dates.js";
|
||||||
|
import i18next from "i18next";
|
||||||
|
import {format} from "date-fns";
|
||||||
|
|
||||||
|
import '@ag-grid-community/styles/ag-grid.css';
|
||||||
|
import '@ag-grid-community/styles/ag-theme-alpine.css';
|
||||||
|
import '../../css/grid-ff3-theme.css';
|
||||||
|
import Get from "../../api/v2/model/user-group/get.js";
|
||||||
|
|
||||||
|
let index = function () {
|
||||||
|
return {
|
||||||
|
// notifications
|
||||||
|
notifications: {
|
||||||
|
error: {
|
||||||
|
show: false, text: '', url: '',
|
||||||
|
}, success: {
|
||||||
|
show: false, text: '', url: '',
|
||||||
|
}, wait: {
|
||||||
|
show: false, text: '',
|
||||||
|
|
||||||
|
}
|
||||||
|
},
|
||||||
|
editors: {},
|
||||||
|
userGroups: [],
|
||||||
|
|
||||||
|
format(date) {
|
||||||
|
return format(date, i18next.t('config.date_time_fns'));
|
||||||
|
},
|
||||||
|
|
||||||
|
init() {
|
||||||
|
this.notifications.wait.show = true;
|
||||||
|
this.notifications.wait.text = i18next.t('firefly.wait_loading_data')
|
||||||
|
this.loadAdministrations();
|
||||||
|
},
|
||||||
|
|
||||||
|
loadAdministrations() {
|
||||||
|
this.notifications.wait.show = true;
|
||||||
|
this.notifications.wait.text = i18next.t('firefly.wait_loading_data')
|
||||||
|
this.accounts = [];
|
||||||
|
(new Get()).index({page: this.page}).then(response => {
|
||||||
|
for (let i = 0; i < response.data.data.length; i++) {
|
||||||
|
if (response.data.data.hasOwnProperty(i)) {
|
||||||
|
let current = response.data.data[i];
|
||||||
|
let group = {
|
||||||
|
id: parseInt(current.id),
|
||||||
|
title: current.attributes.title,
|
||||||
|
in_use: current.attributes.in_use,
|
||||||
|
owner: '',
|
||||||
|
you: '',
|
||||||
|
memberCountExceptYou: 0,
|
||||||
|
isOwner: false,
|
||||||
|
membersVisible: current.attributes.can_see_members,
|
||||||
|
members: [],
|
||||||
|
};
|
||||||
|
console.log('Processing group #' + group.id + ' (' + group.title + ')' );
|
||||||
|
let memberships = {};
|
||||||
|
for (let j = 0; j < current.attributes.members.length; j++) {
|
||||||
|
let member = current.attributes.members[j];
|
||||||
|
console.log('Found member ' + member.user_email, member.you, member.role);
|
||||||
|
if ('owner' === member.role) {
|
||||||
|
group.owner = i18next.t('firefly.administration_owner', {email: member.user_email});
|
||||||
|
}
|
||||||
|
if (true === member.you && 'owner' === member.role) {
|
||||||
|
console.log('You are owner of group ' + group.title );
|
||||||
|
group.isOwner = true;
|
||||||
|
}
|
||||||
|
if (true === member.you) {
|
||||||
|
group.you = i18next.t('firefly.administration_you', {role: i18next.t('firefly.administration_role_' + member.role)});
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (false === member.you) {
|
||||||
|
group.memberCountExceptYou++;
|
||||||
|
const userEmail = member.user_email;
|
||||||
|
if (!memberships.hasOwnProperty(userEmail)) {
|
||||||
|
memberships[userEmail] = {
|
||||||
|
email: userEmail,
|
||||||
|
roles: []
|
||||||
|
};
|
||||||
|
}
|
||||||
|
memberships[userEmail].roles.push(i18next.t('firefly.administration_role_' + member.role));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
group.members = Object.values(memberships);
|
||||||
|
|
||||||
|
this.userGroups.push(group);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.notifications.wait.show = false;
|
||||||
|
// add click trigger thing.
|
||||||
|
});
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let comps = {index, dates};
|
||||||
|
|
||||||
|
function loadPage() {
|
||||||
|
Object.keys(comps).forEach(comp => {
|
||||||
|
console.log(`Loading page component "${comp}"`);
|
||||||
|
let data = comps[comp]();
|
||||||
|
Alpine.data(comp, () => data);
|
||||||
|
});
|
||||||
|
Alpine.start();
|
||||||
|
}
|
||||||
|
|
||||||
|
// wait for load until bootstrapped event is received.
|
||||||
|
document.addEventListener('firefly-iii-bootstrapped', () => {
|
||||||
|
console.log('Loaded through event listener.');
|
||||||
|
loadPage();
|
||||||
|
});
|
||||||
|
// or is bootstrapped before event is triggered.
|
||||||
|
if (window.bootstrapped) {
|
||||||
|
console.log('Loaded through window variable.');
|
||||||
|
loadPage();
|
||||||
|
}
|
@ -1383,6 +1383,28 @@ return [
|
|||||||
// Financial administrations
|
// Financial administrations
|
||||||
'administration_index' => 'Financial administration',
|
'administration_index' => 'Financial administration',
|
||||||
'administrations_index_menu' => 'Financial administration(s)',
|
'administrations_index_menu' => 'Financial administration(s)',
|
||||||
|
'administrations_breadcrumb' => 'Financial administrations',
|
||||||
|
'administrations_page_title' => 'Financial administrations',
|
||||||
|
'administrations_page_sub_title' => 'Overview',
|
||||||
|
'create_administration' => 'Create new administration',
|
||||||
|
'administration_owner' => 'Administration owner: {{email}}',
|
||||||
|
'administration_you' => 'Your role: {{role}}',
|
||||||
|
'other_users_in_admin' => 'Other users in this administration',
|
||||||
|
|
||||||
|
// roles
|
||||||
|
'administration_role_owner' => 'Owner',
|
||||||
|
'administration_role_ro' => 'Read-only',
|
||||||
|
'administration_role_mng_trx' => 'Manage transactions',
|
||||||
|
'administration_role_mng_meta' => 'Manage classification and meta-data',
|
||||||
|
'administration_role_mng_budgets' => 'Manage budgets',
|
||||||
|
'administration_role_mng_piggies' => 'Manage piggy banks',
|
||||||
|
'administration_role_mng_subscriptions' => 'Manage subscriptions',
|
||||||
|
'administration_role_mng_rules' => 'Manage rules',
|
||||||
|
'administration_role_mng_recurring' => 'Manage recurring transactions ',
|
||||||
|
'administration_role_mng_webhooks' => 'Manage webhooks',
|
||||||
|
'administration_role_mng_currencies' => 'Manage currencies',
|
||||||
|
'administration_role_view_reports' => 'View reports',
|
||||||
|
'administration_role_full' => 'Full access',
|
||||||
|
|
||||||
// profile:
|
// profile:
|
||||||
'purge_data_title' => 'Purge data from Firefly III',
|
'purge_data_title' => 'Purge data from Firefly III',
|
||||||
|
97
resources/views/v2/administrations/index.blade.php
Normal file
97
resources/views/v2/administrations/index.blade.php
Normal file
@ -0,0 +1,97 @@
|
|||||||
|
@extends('layout.v2')
|
||||||
|
@section('scripts')
|
||||||
|
@vite(['resources/assets/v2/pages/administrations/index.js'])
|
||||||
|
@endsection
|
||||||
|
@section('content')
|
||||||
|
<div class="app-content">
|
||||||
|
<div class="container-fluid" x-data="index">
|
||||||
|
<x-messages></x-messages>
|
||||||
|
<div class="row mb-3">
|
||||||
|
<div class="col">
|
||||||
|
<p>
|
||||||
|
<a href="{{route('administrations.create')}}"
|
||||||
|
class="btn btn-primary">{{ __('firefly.create_administration') }}</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row mb-3">
|
||||||
|
<template x-for="(group, index) in userGroups" :key="index">
|
||||||
|
<div class="col-xl-4 col-lg-4 col-sm-6 col-xs-12">
|
||||||
|
<div class="card">
|
||||||
|
<div class="card-header">
|
||||||
|
<h3 class="card-title">Administration "<span x-text="group.title"></span>"</h3>
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<ul>
|
||||||
|
<template x-if="'' !== group.owner">
|
||||||
|
<li x-text="group.owner"></li>
|
||||||
|
</template>
|
||||||
|
<template x-if="'' !== group.you">
|
||||||
|
<li x-text="group.you"></li>
|
||||||
|
</template>
|
||||||
|
</ul>
|
||||||
|
<template x-if="group.memberCountExceptYou > 0">
|
||||||
|
<div>
|
||||||
|
<h5>{{ __('firefly.other_users_in_admin') }}</h5>
|
||||||
|
<ul>
|
||||||
|
<template x-for="(member, jndex) in group.members" :key="jndex">
|
||||||
|
<li>
|
||||||
|
<span x-text="member.email"></span>
|
||||||
|
<ul>
|
||||||
|
<template x-for="(role, kndex) in member.roles" :key="kndex">
|
||||||
|
<li x-text="role"></li>
|
||||||
|
</template>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</template>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
TODO Last changes: date<br>
|
||||||
|
TODO features in use (icons)
|
||||||
|
</div>
|
||||||
|
<div class="card-footer">
|
||||||
|
<div class="btn-group">
|
||||||
|
<template x-if="false === group.in_use">
|
||||||
|
<a href="#" class="btn btn-primary">
|
||||||
|
<em class="fa-solid fa-coins"></em> Use
|
||||||
|
</a>
|
||||||
|
</template>
|
||||||
|
<template x-if="true === group.isOwner">
|
||||||
|
<a href="#" class="btn btn-primary">
|
||||||
|
<em class="fa-solid fa-pencil"></em> Edit
|
||||||
|
</a>
|
||||||
|
</template>
|
||||||
|
<template x-if="true === group.isOwner">
|
||||||
|
<a href="#" class="btn btn-primary">
|
||||||
|
<em class="fa-solid fa-users"></em> Access rights
|
||||||
|
</a>
|
||||||
|
</template>
|
||||||
|
<template x-if="true === group.isOwner">
|
||||||
|
<a href="#" class="btn btn-danger text-white">
|
||||||
|
<em class="fa-solid fa-trash"></em> Delete
|
||||||
|
</a>
|
||||||
|
</template>
|
||||||
|
<template x-if="true !== group.isOwner">
|
||||||
|
<a href="#" class="btn btn-warning">
|
||||||
|
<em class="fa-solid fa-person-walking-dashed-line-arrow-right"></em> Leave
|
||||||
|
</a>
|
||||||
|
</template>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</div>
|
||||||
|
<div class="row mb-3">
|
||||||
|
<div class="col">
|
||||||
|
<p>
|
||||||
|
<a href="{{route('administrations.create')}}"
|
||||||
|
class="btn btn-primary">{{ __('firefly.create_administration') }}</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
@endsection
|
@ -37,9 +37,9 @@
|
|||||||
{{ __('firefly.preferences') }}
|
{{ __('firefly.preferences') }}
|
||||||
</a>
|
</a>
|
||||||
<div class="dropdown-divider"></div>
|
<div class="dropdown-divider"></div>
|
||||||
<a href="#" class="dropdown-item">
|
<a href="{{ route('administrations.index') }}" class="dropdown-item">
|
||||||
<em class="fa-solid fa-money-bill-transfer me-2"></em>
|
<em class="fa-solid fa-money-bill-transfer me-2"></em>
|
||||||
TODO {{ __('firefly.administrations_index_menu') }}
|
{{ __('firefly.administrations_index_menu') }}
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
|
@ -110,6 +110,7 @@ Route::group(
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
// V2 API route for subscriptions.
|
// V2 API route for subscriptions.
|
||||||
Route::group(
|
Route::group(
|
||||||
[
|
[
|
||||||
|
@ -1280,3 +1280,11 @@ Breadcrumbs::for(
|
|||||||
$breadcrumbs->push(trans('firefly.edit_webhook', ['title' => limitStringLength($webhook->title)]), route('webhooks.edit', [$webhook->id]));
|
$breadcrumbs->push(trans('firefly.edit_webhook', ['title' => limitStringLength($webhook->title)]), route('webhooks.edit', [$webhook->id]));
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Breadcrumbs::for(
|
||||||
|
'administrations.index',
|
||||||
|
static function (Generator $breadcrumbs): void {
|
||||||
|
$breadcrumbs->parent('index');
|
||||||
|
$breadcrumbs->push(trans('firefly.administrations_breadcrumb'), route('administrations.index'));
|
||||||
|
}
|
||||||
|
);
|
||||||
|
@ -1347,3 +1347,22 @@ Route::group(
|
|||||||
Route::post('configuration', ['uses' => 'ConfigurationController@postIndex', 'as' => 'configuration.index.post']);
|
Route::post('configuration', ['uses' => 'ConfigurationController@postIndex', 'as' => 'configuration.index.post']);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// User Group / Administrations Controller.
|
||||||
|
Route::group(
|
||||||
|
['middleware' => 'user-full-auth', 'namespace' => 'FireflyIII\Http\Controllers', 'prefix' => 'administrations', 'as' => 'administrations.'],
|
||||||
|
static function (): void {
|
||||||
|
Route::get('', ['uses' => 'UserGroup\IndexController@index', 'as' => 'index']);
|
||||||
|
Route::get('create', ['uses' => 'UserGroup\CreateController@create', 'as' => 'create']);
|
||||||
|
// Route::post('rescan/{bill}', ['uses' => 'Bill\ShowController@rescan', 'as' => 'rescan']);
|
||||||
|
// Route::get('edit/{bill}', ['uses' => 'Bill\EditController@edit', 'as' => 'edit']);
|
||||||
|
// Route::get('delete/{bill}', ['uses' => 'Bill\DeleteController@delete', 'as' => 'delete']);
|
||||||
|
// Route::get('show/{bill}', ['uses' => 'Bill\ShowController@show', 'as' => 'show']);
|
||||||
|
//
|
||||||
|
// Route::post('store', ['uses' => 'Bill\CreateController@store', 'as' => 'store']);
|
||||||
|
// Route::post('update/{bill}', ['uses' => 'Bill\EditController@update', 'as' => 'update']);
|
||||||
|
// Route::post('destroy/{bill}', ['uses' => 'Bill\DeleteController@destroy', 'as' => 'destroy']);
|
||||||
|
//
|
||||||
|
// Route::post('set-order/{bill}', ['uses' => 'Bill\IndexController@setOrder', 'as' => 'set-order']);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
@ -51,6 +51,9 @@ export default defineConfig({
|
|||||||
// accounts
|
// accounts
|
||||||
'resources/assets/v2/pages/accounts/index.js',
|
'resources/assets/v2/pages/accounts/index.js',
|
||||||
|
|
||||||
|
// administrations
|
||||||
|
'resources/assets/v2/pages/administrations/index.js',
|
||||||
|
|
||||||
// transactions
|
// transactions
|
||||||
'resources/assets/v2/pages/transactions/create.js',
|
'resources/assets/v2/pages/transactions/create.js',
|
||||||
'resources/assets/v2/pages/transactions/edit.js',
|
'resources/assets/v2/pages/transactions/edit.js',
|
||||||
|
Loading…
Reference in New Issue
Block a user