mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-30 10:33:30 +00:00
Merge pull request #10769 from firefly-iii/release-1755421680
🤖 Automatically merge the PR into the develop branch.
This commit is contained in:
@@ -142,6 +142,7 @@ class ConfigurationController extends Controller
|
|||||||
'value' => $dynamic[$shortKey],
|
'value' => $dynamic[$shortKey],
|
||||||
'editable' => true,
|
'editable' => true,
|
||||||
];
|
];
|
||||||
|
|
||||||
return response()->api(['data' => $data])->header('Content-Type', self::JSON_CONTENT_TYPE);
|
return response()->api(['data' => $data])->header('Content-Type', self::JSON_CONTENT_TYPE);
|
||||||
}
|
}
|
||||||
if (str_starts_with($configKey, 'webhook.')) {
|
if (str_starts_with($configKey, 'webhook.')) {
|
||||||
@@ -150,6 +151,7 @@ class ConfigurationController extends Controller
|
|||||||
'value' => $this->getWebhookConfiguration($configKey),
|
'value' => $this->getWebhookConfiguration($configKey),
|
||||||
'editable' => false,
|
'editable' => false,
|
||||||
];
|
];
|
||||||
|
|
||||||
return response()->api(['data' => $data])->header('Content-Type', self::JSON_CONTENT_TYPE);
|
return response()->api(['data' => $data])->header('Content-Type', self::JSON_CONTENT_TYPE);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -206,21 +208,27 @@ class ConfigurationController extends Controller
|
|||||||
foreach ($cases as $c) {
|
foreach ($cases as $c) {
|
||||||
$data[$c->name] = $c->value;
|
$data[$c->name] = $c->value;
|
||||||
}
|
}
|
||||||
|
|
||||||
return $data;
|
return $data;
|
||||||
|
|
||||||
case 'webhook.responses':
|
case 'webhook.responses':
|
||||||
$cases = WebhookResponse::cases();
|
$cases = WebhookResponse::cases();
|
||||||
$data = [];
|
$data = [];
|
||||||
foreach ($cases as $c) {
|
foreach ($cases as $c) {
|
||||||
$data[$c->name] = $c->value;
|
$data[$c->name] = $c->value;
|
||||||
}
|
}
|
||||||
|
|
||||||
return $data;
|
return $data;
|
||||||
|
|
||||||
case 'webhook.deliveries':
|
case 'webhook.deliveries':
|
||||||
$cases = WebhookDelivery::cases();
|
$cases = WebhookDelivery::cases();
|
||||||
$data = [];
|
$data = [];
|
||||||
foreach ($cases as $c) {
|
foreach ($cases as $c) {
|
||||||
$data[$c->name] = $c->value;
|
$data[$c->name] = $c->value;
|
||||||
}
|
}
|
||||||
|
|
||||||
return $data;
|
return $data;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
throw new FireflyException(sprintf('Unknown webhook configuration key "%s".', $configKey));
|
throw new FireflyException(sprintf('Unknown webhook configuration key "%s".', $configKey));
|
||||||
}
|
}
|
||||||
|
@@ -96,11 +96,12 @@ class CreateRequest extends FormRequest
|
|||||||
$response = $data['response'] ?? null;
|
$response = $data['response'] ?? null;
|
||||||
if (null === $trigger || null === $response) {
|
if (null === $trigger || null === $response) {
|
||||||
Log::debug('No trigger or response, return.');
|
Log::debug('No trigger or response, return.');
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
$triggers = array_keys(Webhook::getTriggersForValidation());
|
$triggers = array_keys(Webhook::getTriggersForValidation());
|
||||||
$responses = array_keys(Webhook::getResponsesForValidation());
|
$responses = array_keys(Webhook::getResponsesForValidation());
|
||||||
if (!in_array($trigger, $triggers) || !in_array($response, $responses)) {
|
if (!in_array($trigger, $triggers, true) || !in_array($response, $responses, true)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// cannot deliver budget info.
|
// cannot deliver budget info.
|
||||||
|
@@ -98,6 +98,7 @@ class UpdateRequest extends FormRequest
|
|||||||
'url' => [sprintf('url:%s', $validProtocols), sprintf('uniqueExistingWebhook:%d', $webhook->id)],
|
'url' => [sprintf('url:%s', $validProtocols), sprintf('uniqueExistingWebhook:%d', $webhook->id)],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
public function withValidator(Validator $validator): void
|
public function withValidator(Validator $validator): void
|
||||||
{
|
{
|
||||||
$validator->after(
|
$validator->after(
|
||||||
@@ -108,11 +109,12 @@ class UpdateRequest extends FormRequest
|
|||||||
$response = $data['response'] ?? null;
|
$response = $data['response'] ?? null;
|
||||||
if (null === $trigger || null === $response) {
|
if (null === $trigger || null === $response) {
|
||||||
Log::debug('No trigger or response, return.');
|
Log::debug('No trigger or response, return.');
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
$triggers = array_keys(Webhook::getTriggersForValidation());
|
$triggers = array_keys(Webhook::getTriggersForValidation());
|
||||||
$responses = array_keys(Webhook::getResponsesForValidation());
|
$responses = array_keys(Webhook::getResponsesForValidation());
|
||||||
if (!in_array($trigger, $triggers) || !in_array($response, $responses)) {
|
if (!in_array($trigger, $triggers, true) || !in_array($response, $responses, true)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// cannot deliver budget info.
|
// cannot deliver budget info.
|
||||||
|
@@ -78,8 +78,8 @@ return [
|
|||||||
'running_balance_column' => env('USE_RUNNING_BALANCE', false),
|
'running_balance_column' => env('USE_RUNNING_BALANCE', false),
|
||||||
// see cer.php for exchange rates feature flag.
|
// see cer.php for exchange rates feature flag.
|
||||||
],
|
],
|
||||||
'version' => '6.3.0',
|
'version' => 'develop/2025-08-17',
|
||||||
'build_time' => 1755366750,
|
'build_time' => 1755421579,
|
||||||
'api_version' => '2.1.0', // field is no longer used.
|
'api_version' => '2.1.0', // field is no longer used.
|
||||||
'db_version' => 26,
|
'db_version' => 26,
|
||||||
|
|
||||||
|
0
public/v1/js/.gitkeep
Executable file → Normal file
0
public/v1/js/.gitkeep
Executable file → Normal file
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "After transaction creation",
|
"webhook_trigger_STORE_TRANSACTION": "After transaction creation",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "After transaction update",
|
"webhook_trigger_UPDATE_TRANSACTION": "After transaction update",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "After transaction delete",
|
"webhook_trigger_DESTROY_TRANSACTION": "After transaction delete",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "Transaction details",
|
"webhook_response_TRANSACTIONS": "Transaction details",
|
||||||
"webhook_response_ACCOUNTS": "Account details",
|
"webhook_response_ACCOUNTS": "Account details",
|
||||||
"webhook_response_none_NONE": "No details",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "Actions",
|
"actions": "Actions",
|
||||||
"meta_data": "Meta data",
|
"meta_data": "Meta data",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "\u0628\u0639\u062f \u0625\u0646\u0634\u0627\u0621 \u0627\u0644\u0645\u0639\u0627\u0645\u0644\u0629",
|
"webhook_trigger_STORE_TRANSACTION": "\u0628\u0639\u062f \u0625\u0646\u0634\u0627\u0621 \u0627\u0644\u0645\u0639\u0627\u0645\u0644\u0629",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "\u0628\u0639\u062f \u062a\u062d\u062f\u064a\u062b \u0627\u0644\u0645\u0639\u0627\u0645\u0644\u0629",
|
"webhook_trigger_UPDATE_TRANSACTION": "\u0628\u0639\u062f \u062a\u062d\u062f\u064a\u062b \u0627\u0644\u0645\u0639\u0627\u0645\u0644\u0629",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "\u0628\u0639\u062f \u062d\u0630\u0641 \u0627\u0644\u0645\u0639\u0627\u0645\u0644\u0629",
|
"webhook_trigger_DESTROY_TRANSACTION": "\u0628\u0639\u062f \u062d\u0630\u0641 \u0627\u0644\u0645\u0639\u0627\u0645\u0644\u0629",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "\u062a\u0641\u0627\u0635\u064a\u0644 \u0627\u0644\u0645\u0639\u0627\u0645\u0644\u0629",
|
"webhook_response_TRANSACTIONS": "\u062a\u0641\u0627\u0635\u064a\u0644 \u0627\u0644\u0645\u0639\u0627\u0645\u0644\u0629",
|
||||||
"webhook_response_ACCOUNTS": "\u062a\u0641\u0627\u0635\u064a\u0644 \u0627\u0644\u062d\u0633\u0627\u0628",
|
"webhook_response_ACCOUNTS": "\u062a\u0641\u0627\u0635\u064a\u0644 \u0627\u0644\u062d\u0633\u0627\u0628",
|
||||||
"webhook_response_none_NONE": "\u0644\u0627 \u062a\u0648\u062c\u062f \u062a\u0641\u0627\u0635\u064a\u0644",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "\u0627\u0644\u0625\u062c\u0631\u0627\u0621\u0627\u062a",
|
"actions": "\u0627\u0644\u0625\u062c\u0631\u0627\u0621\u0627\u062a",
|
||||||
"meta_data": "\u0628\u064a\u0627\u0646\u0627\u062a \u0648\u0635\u0641\u064a\u0629",
|
"meta_data": "\u0628\u064a\u0627\u0646\u0627\u062a \u0648\u0635\u0641\u064a\u0629",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "After transaction creation",
|
"webhook_trigger_STORE_TRANSACTION": "After transaction creation",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "After transaction update",
|
"webhook_trigger_UPDATE_TRANSACTION": "After transaction update",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "After transaction delete",
|
"webhook_trigger_DESTROY_TRANSACTION": "After transaction delete",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "Transaction details",
|
"webhook_response_TRANSACTIONS": "Transaction details",
|
||||||
"webhook_response_ACCOUNTS": "Account details",
|
"webhook_response_ACCOUNTS": "Account details",
|
||||||
"webhook_response_none_NONE": "No details",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f",
|
"actions": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f",
|
||||||
"meta_data": "\u041c\u0435\u0442\u0430 \u0434\u0430\u043d\u043d\u0438",
|
"meta_data": "\u041c\u0435\u0442\u0430 \u0434\u0430\u043d\u043d\u0438",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "Despr\u00e9s de crear la transacci\u00f3",
|
"webhook_trigger_STORE_TRANSACTION": "Despr\u00e9s de crear la transacci\u00f3",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "Despr\u00e9s d'actualitzar la transacci\u00f3",
|
"webhook_trigger_UPDATE_TRANSACTION": "Despr\u00e9s d'actualitzar la transacci\u00f3",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "Despr\u00e9s d'eliminar la transacci\u00f3",
|
"webhook_trigger_DESTROY_TRANSACTION": "Despr\u00e9s d'eliminar la transacci\u00f3",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "Detalls de la transacci\u00f3",
|
"webhook_response_TRANSACTIONS": "Detalls de la transacci\u00f3",
|
||||||
"webhook_response_ACCOUNTS": "Detalls del compte",
|
"webhook_response_ACCOUNTS": "Detalls del compte",
|
||||||
"webhook_response_none_NONE": "Sense detalls",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "Accions",
|
"actions": "Accions",
|
||||||
"meta_data": "Meta dades",
|
"meta_data": "Meta dades",
|
||||||
|
@@ -10,7 +10,7 @@
|
|||||||
"welcome_back": "Jak to jde?",
|
"welcome_back": "Jak to jde?",
|
||||||
"flash_error": "Chyba!",
|
"flash_error": "Chyba!",
|
||||||
"flash_warning": "Varov\u00e1n\u00ed!",
|
"flash_warning": "Varov\u00e1n\u00ed!",
|
||||||
"flash_success": "\u00dasp\u011b\u0161n\u011b dokon\u010deno!",
|
"flash_success": "V\u00fdborn\u011b!",
|
||||||
"close": "Zav\u0159\u00edt",
|
"close": "Zav\u0159\u00edt",
|
||||||
"select_dest_account": "Please select or type a valid destination account name",
|
"select_dest_account": "Please select or type a valid destination account name",
|
||||||
"select_source_account": "Please select or type a valid source account name",
|
"select_source_account": "Please select or type a valid source account name",
|
||||||
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "Po vytvo\u0159en\u00ed transakce",
|
"webhook_trigger_STORE_TRANSACTION": "Po vytvo\u0159en\u00ed transakce",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "Po aktualizaci transakce",
|
"webhook_trigger_UPDATE_TRANSACTION": "Po aktualizaci transakce",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "Po odstran\u011bn\u00ed transakce",
|
"webhook_trigger_DESTROY_TRANSACTION": "Po odstran\u011bn\u00ed transakce",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "Podrobnosti transakce",
|
"webhook_response_TRANSACTIONS": "Podrobnosti transakce",
|
||||||
"webhook_response_ACCOUNTS": "Podrobnosti \u00fa\u010dtu",
|
"webhook_response_ACCOUNTS": "Podrobnosti \u00fa\u010dtu",
|
||||||
"webhook_response_none_NONE": "\u017d\u00e1dn\u00e9 detaily",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "Akce",
|
"actions": "Akce",
|
||||||
"meta_data": "Metadata",
|
"meta_data": "Metadata",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "Efter oprettelse af transaktion",
|
"webhook_trigger_STORE_TRANSACTION": "Efter oprettelse af transaktion",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "Efter opdatering af transaktion",
|
"webhook_trigger_UPDATE_TRANSACTION": "Efter opdatering af transaktion",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "Efter sletning af transaktion",
|
"webhook_trigger_DESTROY_TRANSACTION": "Efter sletning af transaktion",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "Transaktionsdetaljer",
|
"webhook_response_TRANSACTIONS": "Transaktionsdetaljer",
|
||||||
"webhook_response_ACCOUNTS": "Kontodetaljer",
|
"webhook_response_ACCOUNTS": "Kontodetaljer",
|
||||||
"webhook_response_none_NONE": "Ingen detaljer",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "Handlinger",
|
"actions": "Handlinger",
|
||||||
"meta_data": "Meta data",
|
"meta_data": "Meta data",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "Nach Erstellen einer Buchung",
|
"webhook_trigger_STORE_TRANSACTION": "Nach Erstellen einer Buchung",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "Nach Aktualisierung einer Buchung",
|
"webhook_trigger_UPDATE_TRANSACTION": "Nach Aktualisierung einer Buchung",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "Nach dem L\u00f6schen einer Buchung",
|
"webhook_trigger_DESTROY_TRANSACTION": "Nach dem L\u00f6schen einer Buchung",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "Buchungsdetails",
|
"webhook_response_TRANSACTIONS": "Buchungsdetails",
|
||||||
"webhook_response_ACCOUNTS": "Kontodetails",
|
"webhook_response_ACCOUNTS": "Kontodetails",
|
||||||
"webhook_response_none_NONE": "Keine Daten",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "Aktionen",
|
"actions": "Aktionen",
|
||||||
"meta_data": "Metadaten",
|
"meta_data": "Metadaten",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "\u039c\u03b5\u03c4\u03ac \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2",
|
"webhook_trigger_STORE_TRANSACTION": "\u039c\u03b5\u03c4\u03ac \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "\u039c\u03b5\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2",
|
"webhook_trigger_UPDATE_TRANSACTION": "\u039c\u03b5\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "\u039c\u03b5\u03c4\u03ac \u03c4\u03b7 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2",
|
"webhook_trigger_DESTROY_TRANSACTION": "\u039c\u03b5\u03c4\u03ac \u03c4\u03b7 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "\u039b\u03b5\u03c0\u03c4\u03bf\u03bc\u03ad\u03c1\u03b5\u03b9\u03b5\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2",
|
"webhook_response_TRANSACTIONS": "\u039b\u03b5\u03c0\u03c4\u03bf\u03bc\u03ad\u03c1\u03b5\u03b9\u03b5\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2",
|
||||||
"webhook_response_ACCOUNTS": "\u03a0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd",
|
"webhook_response_ACCOUNTS": "\u03a0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd",
|
||||||
"webhook_response_none_NONE": "\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03c5\u03bd \u03bb\u03b5\u03c0\u03c4\u03bf\u03bc\u03ad\u03c1\u03b5\u03b9\u03b5\u03c2",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "\u0395\u03bd\u03ad\u03c1\u03b3\u03b5\u03b9\u03b5\u03c2",
|
"actions": "\u0395\u03bd\u03ad\u03c1\u03b3\u03b5\u03b9\u03b5\u03c2",
|
||||||
"meta_data": "\u039c\u03b5\u03c4\u03b1-\u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1",
|
"meta_data": "\u039c\u03b5\u03c4\u03b1-\u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "After transaction creation",
|
"webhook_trigger_STORE_TRANSACTION": "After transaction creation",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "After transaction update",
|
"webhook_trigger_UPDATE_TRANSACTION": "After transaction update",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "After transaction delete",
|
"webhook_trigger_DESTROY_TRANSACTION": "After transaction delete",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "Transaction details",
|
"webhook_response_TRANSACTIONS": "Transaction details",
|
||||||
"webhook_response_ACCOUNTS": "Account details",
|
"webhook_response_ACCOUNTS": "Account details",
|
||||||
"webhook_response_none_NONE": "No details",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "Actions",
|
"actions": "Actions",
|
||||||
"meta_data": "Meta data",
|
"meta_data": "Meta data",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "After transaction creation",
|
"webhook_trigger_STORE_TRANSACTION": "After transaction creation",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "After transaction update",
|
"webhook_trigger_UPDATE_TRANSACTION": "After transaction update",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "After transaction delete",
|
"webhook_trigger_DESTROY_TRANSACTION": "After transaction delete",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "Transaction details",
|
"webhook_response_TRANSACTIONS": "Transaction details",
|
||||||
"webhook_response_ACCOUNTS": "Account details",
|
"webhook_response_ACCOUNTS": "Account details",
|
||||||
"webhook_response_none_NONE": "No details",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "Actions",
|
"actions": "Actions",
|
||||||
"meta_data": "Meta data",
|
"meta_data": "Meta data",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "Despu\u00e9s de crear la transacci\u00f3n",
|
"webhook_trigger_STORE_TRANSACTION": "Despu\u00e9s de crear la transacci\u00f3n",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "Despu\u00e9s de actualizar la transacci\u00f3n",
|
"webhook_trigger_UPDATE_TRANSACTION": "Despu\u00e9s de actualizar la transacci\u00f3n",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "Despu\u00e9s de eliminar la transacci\u00f3n",
|
"webhook_trigger_DESTROY_TRANSACTION": "Despu\u00e9s de eliminar la transacci\u00f3n",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "Detalles de la transacci\u00f3n",
|
"webhook_response_TRANSACTIONS": "Detalles de la transacci\u00f3n",
|
||||||
"webhook_response_ACCOUNTS": "Detalles de la cuenta",
|
"webhook_response_ACCOUNTS": "Detalles de la cuenta",
|
||||||
"webhook_response_none_NONE": "Sin detalles",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "Acciones",
|
"actions": "Acciones",
|
||||||
"meta_data": "Meta Datos",
|
"meta_data": "Meta Datos",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "\u067e\u0633 \u0627\u0632 \u0627\u06cc\u062c\u0627\u062f \u062a\u0631\u0627\u06a9\u0646\u0634\n",
|
"webhook_trigger_STORE_TRANSACTION": "\u067e\u0633 \u0627\u0632 \u0627\u06cc\u062c\u0627\u062f \u062a\u0631\u0627\u06a9\u0646\u0634\n",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "\u067e\u0633 \u0627\u0632 \u0628\u0647 \u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u062a\u0631\u0627\u06a9\u0646\u0634\n",
|
"webhook_trigger_UPDATE_TRANSACTION": "\u067e\u0633 \u0627\u0632 \u0628\u0647 \u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u062a\u0631\u0627\u06a9\u0646\u0634\n",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "\u067e\u0633 \u0627\u0632 \u062a\u0631\u0627\u06a9\u0646\u0634 \u062d\u0630\u0641 \u0634\u0648\u062f\n",
|
"webhook_trigger_DESTROY_TRANSACTION": "\u067e\u0633 \u0627\u0632 \u062a\u0631\u0627\u06a9\u0646\u0634 \u062d\u0630\u0641 \u0634\u0648\u062f\n",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "\u062c\u0632\u0626\u06cc\u0627\u062a \u062a\u0631\u0627\u06a9\u0646\u0634",
|
"webhook_response_TRANSACTIONS": "\u062c\u0632\u0626\u06cc\u0627\u062a \u062a\u0631\u0627\u06a9\u0646\u0634",
|
||||||
"webhook_response_ACCOUNTS": "\u062c\u0632\u0626\u06cc\u0627\u062a \u062d\u0633\u0627\u0628",
|
"webhook_response_ACCOUNTS": "\u062c\u0632\u0626\u06cc\u0627\u062a \u062d\u0633\u0627\u0628",
|
||||||
"webhook_response_none_NONE": "\u0628\u062f\u0648\u0646 \u062c\u0632\u0626\u06cc\u0627\u062a",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "\u0639\u0645\u0644\u06cc\u0627\u062a \u0647\u0627",
|
"actions": "\u0639\u0645\u0644\u06cc\u0627\u062a \u0647\u0627",
|
||||||
"meta_data": "\u062f\u0627\u062f\u0647 \u0647\u0627\u06cc \u0645\u062a\u0627\n",
|
"meta_data": "\u062f\u0627\u062f\u0647 \u0647\u0627\u06cc \u0645\u062a\u0627\n",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "After transaction creation",
|
"webhook_trigger_STORE_TRANSACTION": "After transaction creation",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "After transaction update",
|
"webhook_trigger_UPDATE_TRANSACTION": "After transaction update",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "After transaction delete",
|
"webhook_trigger_DESTROY_TRANSACTION": "After transaction delete",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "Transaction details",
|
"webhook_response_TRANSACTIONS": "Transaction details",
|
||||||
"webhook_response_ACCOUNTS": "Tilin tiedot",
|
"webhook_response_ACCOUNTS": "Tilin tiedot",
|
||||||
"webhook_response_none_NONE": "No details",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "Toiminnot",
|
"actions": "Toiminnot",
|
||||||
"meta_data": "Metatieto",
|
"meta_data": "Metatieto",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "Apr\u00e8s la cr\u00e9ation de l'op\u00e9ration",
|
"webhook_trigger_STORE_TRANSACTION": "Apr\u00e8s la cr\u00e9ation de l'op\u00e9ration",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "Apr\u00e8s la mise \u00e0 jour de l'op\u00e9ration",
|
"webhook_trigger_UPDATE_TRANSACTION": "Apr\u00e8s la mise \u00e0 jour de l'op\u00e9ration",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "Apr\u00e8s la suppression de l'op\u00e9ration",
|
"webhook_trigger_DESTROY_TRANSACTION": "Apr\u00e8s la suppression de l'op\u00e9ration",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "D\u00e9tails de l'op\u00e9ration",
|
"webhook_response_TRANSACTIONS": "D\u00e9tails de l'op\u00e9ration",
|
||||||
"webhook_response_ACCOUNTS": "D\u00e9tails du compte",
|
"webhook_response_ACCOUNTS": "D\u00e9tails du compte",
|
||||||
"webhook_response_none_NONE": "Aucun d\u00e9tail",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "Actions",
|
"actions": "Actions",
|
||||||
"meta_data": "M\u00e9tadonn\u00e9es",
|
"meta_data": "M\u00e9tadonn\u00e9es",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "Tranzakci\u00f3 l\u00e9trehoz\u00e1sa ut\u00e1n",
|
"webhook_trigger_STORE_TRANSACTION": "Tranzakci\u00f3 l\u00e9trehoz\u00e1sa ut\u00e1n",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "Tranzakci\u00f3 friss\u00edt\u00e9se ut\u00e1n",
|
"webhook_trigger_UPDATE_TRANSACTION": "Tranzakci\u00f3 friss\u00edt\u00e9se ut\u00e1n",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "Tranzakci\u00f3 t\u00f6rl\u00e9se ut\u00e1n",
|
"webhook_trigger_DESTROY_TRANSACTION": "Tranzakci\u00f3 t\u00f6rl\u00e9se ut\u00e1n",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "Tranzakci\u00f3 r\u00e9szletei",
|
"webhook_response_TRANSACTIONS": "Tranzakci\u00f3 r\u00e9szletei",
|
||||||
"webhook_response_ACCOUNTS": "Sz\u00e1mlaadatok",
|
"webhook_response_ACCOUNTS": "Sz\u00e1mlaadatok",
|
||||||
"webhook_response_none_NONE": "Nincsenek r\u00e9szletek",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "M\u0171veletek",
|
"actions": "M\u0171veletek",
|
||||||
"meta_data": "Metaadat",
|
"meta_data": "Metaadat",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "After transaction creation",
|
"webhook_trigger_STORE_TRANSACTION": "After transaction creation",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "After transaction update",
|
"webhook_trigger_UPDATE_TRANSACTION": "After transaction update",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "After transaction delete",
|
"webhook_trigger_DESTROY_TRANSACTION": "After transaction delete",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "Transaction details",
|
"webhook_response_TRANSACTIONS": "Transaction details",
|
||||||
"webhook_response_ACCOUNTS": "Account details",
|
"webhook_response_ACCOUNTS": "Account details",
|
||||||
"webhook_response_none_NONE": "Tidak ada detil",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "Tindakan",
|
"actions": "Tindakan",
|
||||||
"meta_data": "Data meta",
|
"meta_data": "Data meta",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "Dopo aver creato la transazione",
|
"webhook_trigger_STORE_TRANSACTION": "Dopo aver creato la transazione",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "Dopo aver aggiornato la transazione",
|
"webhook_trigger_UPDATE_TRANSACTION": "Dopo aver aggiornato la transazione",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "Dopo aver eliminato la transazione",
|
"webhook_trigger_DESTROY_TRANSACTION": "Dopo aver eliminato la transazione",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "Dettagli transazione",
|
"webhook_response_TRANSACTIONS": "Dettagli transazione",
|
||||||
"webhook_response_ACCOUNTS": "Dettagli conto",
|
"webhook_response_ACCOUNTS": "Dettagli conto",
|
||||||
"webhook_response_none_NONE": "Nessun dettaglio",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "Azioni",
|
"actions": "Azioni",
|
||||||
"meta_data": "Meta dati",
|
"meta_data": "Meta dati",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "\u53d6\u5f15\u4f5c\u6210\u5f8c",
|
"webhook_trigger_STORE_TRANSACTION": "\u53d6\u5f15\u4f5c\u6210\u5f8c",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "\u53d6\u5f15\u66f4\u65b0\u5f8c",
|
"webhook_trigger_UPDATE_TRANSACTION": "\u53d6\u5f15\u66f4\u65b0\u5f8c",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "\u53d6\u5f15\u524a\u9664\u5f8c",
|
"webhook_trigger_DESTROY_TRANSACTION": "\u53d6\u5f15\u524a\u9664\u5f8c",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "\u53d6\u5f15\u8a73\u7d30",
|
"webhook_response_TRANSACTIONS": "\u53d6\u5f15\u8a73\u7d30",
|
||||||
"webhook_response_ACCOUNTS": "\u53e3\u5ea7\u8a73\u7d30",
|
"webhook_response_ACCOUNTS": "\u53e3\u5ea7\u8a73\u7d30",
|
||||||
"webhook_response_none_NONE": "\u8a73\u7d30\u306a\u3057",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "\u64cd\u4f5c",
|
"actions": "\u64cd\u4f5c",
|
||||||
"meta_data": "\u30e1\u30bf\u30c7\u30fc\u30bf",
|
"meta_data": "\u30e1\u30bf\u30c7\u30fc\u30bf",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "\uac70\ub798 \uc0dd\uc131 \uc774\ud6c4",
|
"webhook_trigger_STORE_TRANSACTION": "\uac70\ub798 \uc0dd\uc131 \uc774\ud6c4",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "\uac70\ub798 \uc5c5\ub370\uc774\ud2b8 \uc774\ud6c4",
|
"webhook_trigger_UPDATE_TRANSACTION": "\uac70\ub798 \uc5c5\ub370\uc774\ud2b8 \uc774\ud6c4",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "\uac70\ub798 \uc0ad\uc81c \uc774\ud6c4",
|
"webhook_trigger_DESTROY_TRANSACTION": "\uac70\ub798 \uc0ad\uc81c \uc774\ud6c4",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "\uac70\ub798 \uc138\ubd80 \uc815\ubcf4",
|
"webhook_response_TRANSACTIONS": "\uac70\ub798 \uc138\ubd80 \uc815\ubcf4",
|
||||||
"webhook_response_ACCOUNTS": "\uacc4\uc815 \uc815\ubcf4",
|
"webhook_response_ACCOUNTS": "\uacc4\uc815 \uc815\ubcf4",
|
||||||
"webhook_response_none_NONE": "\uc0c1\uc138\uc815\ubcf4 \uc5c6\uc74c",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "\uc561\uc158",
|
"actions": "\uc561\uc158",
|
||||||
"meta_data": "\uba54\ud0c0\ub370\uc774\ud130",
|
"meta_data": "\uba54\ud0c0\ub370\uc774\ud130",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "Etter transaksjons opprettelse",
|
"webhook_trigger_STORE_TRANSACTION": "Etter transaksjons opprettelse",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "Etter transaksjons oppdatering",
|
"webhook_trigger_UPDATE_TRANSACTION": "Etter transaksjons oppdatering",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "Etter transaksjons sletting",
|
"webhook_trigger_DESTROY_TRANSACTION": "Etter transaksjons sletting",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "Transaksjonsdetaljer",
|
"webhook_response_TRANSACTIONS": "Transaksjonsdetaljer",
|
||||||
"webhook_response_ACCOUNTS": "Kontodetaljer",
|
"webhook_response_ACCOUNTS": "Kontodetaljer",
|
||||||
"webhook_response_none_NONE": "Ingen detaljer",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "Handlinger",
|
"actions": "Handlinger",
|
||||||
"meta_data": "Metadata",
|
"meta_data": "Metadata",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "Na het maken van een transactie",
|
"webhook_trigger_STORE_TRANSACTION": "Na het maken van een transactie",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "Na het updaten van een transactie",
|
"webhook_trigger_UPDATE_TRANSACTION": "Na het updaten van een transactie",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "Na het verwijderen van een transactie",
|
"webhook_trigger_DESTROY_TRANSACTION": "Na het verwijderen van een transactie",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "Transactiedetails",
|
"webhook_response_TRANSACTIONS": "Transactiedetails",
|
||||||
"webhook_response_ACCOUNTS": "Rekeningdetails",
|
"webhook_response_ACCOUNTS": "Rekeningdetails",
|
||||||
"webhook_response_none_NONE": "Geen details",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "Acties",
|
"actions": "Acties",
|
||||||
"meta_data": "Metagegevens",
|
"meta_data": "Metagegevens",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "Etter transaksjons opprettelse",
|
"webhook_trigger_STORE_TRANSACTION": "Etter transaksjons opprettelse",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "Etter transaksjons oppdatering",
|
"webhook_trigger_UPDATE_TRANSACTION": "Etter transaksjons oppdatering",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "Etter transaksjons sletting",
|
"webhook_trigger_DESTROY_TRANSACTION": "Etter transaksjons sletting",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "Transaksjonsdetaljer",
|
"webhook_response_TRANSACTIONS": "Transaksjonsdetaljer",
|
||||||
"webhook_response_ACCOUNTS": "Kontodetaljer",
|
"webhook_response_ACCOUNTS": "Kontodetaljer",
|
||||||
"webhook_response_none_NONE": "Ingen detaljer",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "Handlinger",
|
"actions": "Handlinger",
|
||||||
"meta_data": "Metadata",
|
"meta_data": "Metadata",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "Po utworzeniu transakcji",
|
"webhook_trigger_STORE_TRANSACTION": "Po utworzeniu transakcji",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "Po zmodyfikowaniu transakcji",
|
"webhook_trigger_UPDATE_TRANSACTION": "Po zmodyfikowaniu transakcji",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "Po usuni\u0119ciu transakcji",
|
"webhook_trigger_DESTROY_TRANSACTION": "Po usuni\u0119ciu transakcji",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "Szczeg\u00f3\u0142y transakcji",
|
"webhook_response_TRANSACTIONS": "Szczeg\u00f3\u0142y transakcji",
|
||||||
"webhook_response_ACCOUNTS": "Szczeg\u00f3\u0142y konta",
|
"webhook_response_ACCOUNTS": "Szczeg\u00f3\u0142y konta",
|
||||||
"webhook_response_none_NONE": "Brak szczeg\u00f3\u0142\u00f3w",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "Akcje",
|
"actions": "Akcje",
|
||||||
"meta_data": "Metadane",
|
"meta_data": "Metadane",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "Ap\u00f3s cria\u00e7\u00e3o da transa\u00e7\u00e3o",
|
"webhook_trigger_STORE_TRANSACTION": "Ap\u00f3s cria\u00e7\u00e3o da transa\u00e7\u00e3o",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "Ap\u00f3s atualiza\u00e7\u00e3o da transa\u00e7\u00e3o",
|
"webhook_trigger_UPDATE_TRANSACTION": "Ap\u00f3s atualiza\u00e7\u00e3o da transa\u00e7\u00e3o",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "Ap\u00f3s exclus\u00e3o da transa\u00e7\u00e3o",
|
"webhook_trigger_DESTROY_TRANSACTION": "Ap\u00f3s exclus\u00e3o da transa\u00e7\u00e3o",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "Detalhes da transa\u00e7\u00e3o",
|
"webhook_response_TRANSACTIONS": "Detalhes da transa\u00e7\u00e3o",
|
||||||
"webhook_response_ACCOUNTS": "Detalhes da conta",
|
"webhook_response_ACCOUNTS": "Detalhes da conta",
|
||||||
"webhook_response_none_NONE": "Sem detalhes",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "A\u00e7\u00f5es",
|
"actions": "A\u00e7\u00f5es",
|
||||||
"meta_data": "Meta dados",
|
"meta_data": "Meta dados",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "Ap\u00f3s criar transa\u00e7\u00e3o",
|
"webhook_trigger_STORE_TRANSACTION": "Ap\u00f3s criar transa\u00e7\u00e3o",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "Ap\u00f3s atualizar transa\u00e7\u00e3o",
|
"webhook_trigger_UPDATE_TRANSACTION": "Ap\u00f3s atualizar transa\u00e7\u00e3o",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "Ap\u00f3s eliminar transa\u00e7\u00e3o",
|
"webhook_trigger_DESTROY_TRANSACTION": "Ap\u00f3s eliminar transa\u00e7\u00e3o",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "Detalhes da transa\u00e7\u00e3o",
|
"webhook_response_TRANSACTIONS": "Detalhes da transa\u00e7\u00e3o",
|
||||||
"webhook_response_ACCOUNTS": "Detalhes da conta",
|
"webhook_response_ACCOUNTS": "Detalhes da conta",
|
||||||
"webhook_response_none_NONE": "Sem dados",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "A\u00e7\u00f5es",
|
"actions": "A\u00e7\u00f5es",
|
||||||
"meta_data": "Meta dados",
|
"meta_data": "Meta dados",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "Dup\u0103 crearea tranzac\u021biei",
|
"webhook_trigger_STORE_TRANSACTION": "Dup\u0103 crearea tranzac\u021biei",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "Dup\u0103 actualizarea tranzac\u021biei",
|
"webhook_trigger_UPDATE_TRANSACTION": "Dup\u0103 actualizarea tranzac\u021biei",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "Dup\u0103 \u0219tergerea tranzac\u021biei",
|
"webhook_trigger_DESTROY_TRANSACTION": "Dup\u0103 \u0219tergerea tranzac\u021biei",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "Detaliile tranzac\u021biei",
|
"webhook_response_TRANSACTIONS": "Detaliile tranzac\u021biei",
|
||||||
"webhook_response_ACCOUNTS": "Detalii cont",
|
"webhook_response_ACCOUNTS": "Detalii cont",
|
||||||
"webhook_response_none_NONE": "Fara detalii",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "Ac\u021biuni",
|
"actions": "Ac\u021biuni",
|
||||||
"meta_data": "Date meta",
|
"meta_data": "Date meta",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "\u041f\u043e\u0441\u043b\u0435 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438",
|
"webhook_trigger_STORE_TRANSACTION": "\u041f\u043e\u0441\u043b\u0435 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "\u041f\u043e\u0441\u043b\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438",
|
"webhook_trigger_UPDATE_TRANSACTION": "\u041f\u043e\u0441\u043b\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "\u041f\u043e\u0441\u043b\u0435 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u044f \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438",
|
"webhook_trigger_DESTROY_TRANSACTION": "\u041f\u043e\u0441\u043b\u0435 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u044f \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "\u0414\u0435\u0442\u0430\u043b\u0438 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438",
|
"webhook_response_TRANSACTIONS": "\u0414\u0435\u0442\u0430\u043b\u0438 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438",
|
||||||
"webhook_response_ACCOUNTS": "\u0421\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0443\u0447\u0435\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438",
|
"webhook_response_ACCOUNTS": "\u0421\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0443\u0447\u0435\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438",
|
||||||
"webhook_response_none_NONE": "\u041d\u0435\u0442 \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u044b\u0445 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u0439",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f",
|
"actions": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f",
|
||||||
"meta_data": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435",
|
"meta_data": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "After transaction creation",
|
"webhook_trigger_STORE_TRANSACTION": "After transaction creation",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "After transaction update",
|
"webhook_trigger_UPDATE_TRANSACTION": "After transaction update",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "After transaction delete",
|
"webhook_trigger_DESTROY_TRANSACTION": "After transaction delete",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "Transaction details",
|
"webhook_response_TRANSACTIONS": "Transaction details",
|
||||||
"webhook_response_ACCOUNTS": "Account details",
|
"webhook_response_ACCOUNTS": "Account details",
|
||||||
"webhook_response_none_NONE": "No details",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "Akcie",
|
"actions": "Akcie",
|
||||||
"meta_data": "Metadata",
|
"meta_data": "Metadata",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "Po ustvarjanju transakcije",
|
"webhook_trigger_STORE_TRANSACTION": "Po ustvarjanju transakcije",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "Po posodabljanju transakcije",
|
"webhook_trigger_UPDATE_TRANSACTION": "Po posodabljanju transakcije",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "Po brisanju transakcije",
|
"webhook_trigger_DESTROY_TRANSACTION": "Po brisanju transakcije",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "Podrobnosti transakcije",
|
"webhook_response_TRANSACTIONS": "Podrobnosti transakcije",
|
||||||
"webhook_response_ACCOUNTS": "Podrobnosti ra\u010duna",
|
"webhook_response_ACCOUNTS": "Podrobnosti ra\u010duna",
|
||||||
"webhook_response_none_NONE": "Ni podrobnosti",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "Dejanja",
|
"actions": "Dejanja",
|
||||||
"meta_data": "Meta podatki",
|
"meta_data": "Meta podatki",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "Efter skapande av transaktion",
|
"webhook_trigger_STORE_TRANSACTION": "Efter skapande av transaktion",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "After transaction update",
|
"webhook_trigger_UPDATE_TRANSACTION": "After transaction update",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "After transaction delete",
|
"webhook_trigger_DESTROY_TRANSACTION": "After transaction delete",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "Transaktionsdetaljer",
|
"webhook_response_TRANSACTIONS": "Transaktionsdetaljer",
|
||||||
"webhook_response_ACCOUNTS": "Kontodetaljer",
|
"webhook_response_ACCOUNTS": "Kontodetaljer",
|
||||||
"webhook_response_none_NONE": "Inga detaljer",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "\u00c5tg\u00e4rder",
|
"actions": "\u00c5tg\u00e4rder",
|
||||||
"meta_data": "Metadata",
|
"meta_data": "Metadata",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "\u0130\u015flem olu\u015fturma sonras\u0131",
|
"webhook_trigger_STORE_TRANSACTION": "\u0130\u015flem olu\u015fturma sonras\u0131",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "\u0130\u015flem g\u00fcncelleme sonras\u0131",
|
"webhook_trigger_UPDATE_TRANSACTION": "\u0130\u015flem g\u00fcncelleme sonras\u0131",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "\u0130\u015flem silme sonras\u0131",
|
"webhook_trigger_DESTROY_TRANSACTION": "\u0130\u015flem silme sonras\u0131",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "\u0130\u015flem detaylar\u0131",
|
"webhook_response_TRANSACTIONS": "\u0130\u015flem detaylar\u0131",
|
||||||
"webhook_response_ACCOUNTS": "Hesap detaylar\u0131",
|
"webhook_response_ACCOUNTS": "Hesap detaylar\u0131",
|
||||||
"webhook_response_none_NONE": "Detay yok",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "Eylemler",
|
"actions": "Eylemler",
|
||||||
"meta_data": "Meta veri",
|
"meta_data": "Meta veri",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "\u041f\u0456\u0441\u043b\u044f \u0441\u0442\u0432\u043e\u0440\u0435\u043d\u043d\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457",
|
"webhook_trigger_STORE_TRANSACTION": "\u041f\u0456\u0441\u043b\u044f \u0441\u0442\u0432\u043e\u0440\u0435\u043d\u043d\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "\u041f\u0456\u0441\u043b\u044f \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457",
|
"webhook_trigger_UPDATE_TRANSACTION": "\u041f\u0456\u0441\u043b\u044f \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "\u041f\u0456\u0441\u043b\u044f \u0432\u0438\u0434\u0430\u043b\u0435\u043d\u043d\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457",
|
"webhook_trigger_DESTROY_TRANSACTION": "\u041f\u0456\u0441\u043b\u044f \u0432\u0438\u0434\u0430\u043b\u0435\u043d\u043d\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "\u0414\u0435\u0442\u0430\u043b\u0456 \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457",
|
"webhook_response_TRANSACTIONS": "\u0414\u0435\u0442\u0430\u043b\u0456 \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457",
|
||||||
"webhook_response_ACCOUNTS": "\u0414\u0430\u043d\u0456 \u0440\u0430\u0445\u0443\u043d\u043a\u0443",
|
"webhook_response_ACCOUNTS": "\u0414\u0430\u043d\u0456 \u0440\u0430\u0445\u0443\u043d\u043a\u0443",
|
||||||
"webhook_response_none_NONE": "\u041d\u0435\u043c\u0430\u0454 \u0434\u0430\u043d\u0438\u0445",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "\u0414\u0456\u0457",
|
"actions": "\u0414\u0456\u0457",
|
||||||
"meta_data": "\u041c\u0435\u0442\u0430-\u0434\u0430\u043d\u0456",
|
"meta_data": "\u041c\u0435\u0442\u0430-\u0434\u0430\u043d\u0456",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "Sau khi t\u1ea1o giao d\u1ecbch",
|
"webhook_trigger_STORE_TRANSACTION": "Sau khi t\u1ea1o giao d\u1ecbch",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "Sau khi c\u1eadp nh\u1eadt giao d\u1ecbch",
|
"webhook_trigger_UPDATE_TRANSACTION": "Sau khi c\u1eadp nh\u1eadt giao d\u1ecbch",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "Sau khi x\u00f3a giao d\u1ecbch",
|
"webhook_trigger_DESTROY_TRANSACTION": "Sau khi x\u00f3a giao d\u1ecbch",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "Chi ti\u1ebft giao d\u1ecbch",
|
"webhook_response_TRANSACTIONS": "Chi ti\u1ebft giao d\u1ecbch",
|
||||||
"webhook_response_ACCOUNTS": "Chi ti\u1ebft t\u00e0i kho\u1ea3n",
|
"webhook_response_ACCOUNTS": "Chi ti\u1ebft t\u00e0i kho\u1ea3n",
|
||||||
"webhook_response_none_NONE": "Kh\u00f4ng c\u00f3 chi ti\u1ebft",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "H\u00e0nh \u0111\u1ed9ng",
|
"actions": "H\u00e0nh \u0111\u1ed9ng",
|
||||||
"meta_data": "Meta data",
|
"meta_data": "Meta data",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "\u4ea4\u6613\u521b\u5efa\u540e",
|
"webhook_trigger_STORE_TRANSACTION": "\u4ea4\u6613\u521b\u5efa\u540e",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "\u4ea4\u6613\u66f4\u65b0\u540e",
|
"webhook_trigger_UPDATE_TRANSACTION": "\u4ea4\u6613\u66f4\u65b0\u540e",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "\u4ea4\u6613\u5220\u9664\u540e",
|
"webhook_trigger_DESTROY_TRANSACTION": "\u4ea4\u6613\u5220\u9664\u540e",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "\u4ea4\u6613\u8be6\u60c5",
|
"webhook_response_TRANSACTIONS": "\u4ea4\u6613\u8be6\u60c5",
|
||||||
"webhook_response_ACCOUNTS": "\u8d26\u6237\u8be6\u60c5",
|
"webhook_response_ACCOUNTS": "\u8d26\u6237\u8be6\u60c5",
|
||||||
"webhook_response_none_NONE": "\u65e0\u8be6\u7ec6\u4fe1\u606f",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "\u64cd\u4f5c",
|
"actions": "\u64cd\u4f5c",
|
||||||
"meta_data": "\u540e\u8bbe\u8d44\u6599",
|
"meta_data": "\u540e\u8bbe\u8d44\u6599",
|
||||||
|
@@ -110,9 +110,13 @@
|
|||||||
"webhook_trigger_STORE_TRANSACTION": "\u5728\u4ea4\u6613\u5efa\u7acb\u5f8c",
|
"webhook_trigger_STORE_TRANSACTION": "\u5728\u4ea4\u6613\u5efa\u7acb\u5f8c",
|
||||||
"webhook_trigger_UPDATE_TRANSACTION": "\u5728\u4ea4\u6613\u66f4\u65b0\u5f8c",
|
"webhook_trigger_UPDATE_TRANSACTION": "\u5728\u4ea4\u6613\u66f4\u65b0\u5f8c",
|
||||||
"webhook_trigger_DESTROY_TRANSACTION": "\u5728\u4ea4\u6613\u522a\u9664\u5f8c",
|
"webhook_trigger_DESTROY_TRANSACTION": "\u5728\u4ea4\u6613\u522a\u9664\u5f8c",
|
||||||
|
"webhook_trigger_STORE_BUDGET": "After budget creation",
|
||||||
|
"webhook_trigger_UPDATE_BUDGET": "After budget update",
|
||||||
|
"webhook_trigger_DESTROY_BUDGET": "After budget delete",
|
||||||
|
"webhook_trigger_STORE_UPDATE_BUDGET_LIMIT": "After budgeted amount change",
|
||||||
"webhook_response_TRANSACTIONS": "\u4ea4\u6613\u8a73\u60c5",
|
"webhook_response_TRANSACTIONS": "\u4ea4\u6613\u8a73\u60c5",
|
||||||
"webhook_response_ACCOUNTS": "\u5e33\u865f\u8a73\u60c5",
|
"webhook_response_ACCOUNTS": "\u5e33\u865f\u8a73\u60c5",
|
||||||
"webhook_response_none_NONE": "\u7121\u4efb\u4f55\u8a73\u60c5",
|
"webhook_response_NONE": "No details",
|
||||||
"webhook_delivery_JSON": "JSON",
|
"webhook_delivery_JSON": "JSON",
|
||||||
"actions": "\u64cd\u4f5c",
|
"actions": "\u64cd\u4f5c",
|
||||||
"meta_data": "\u4e2d\u7e7c\u8cc7\u6599",
|
"meta_data": "\u4e2d\u7e7c\u8cc7\u6599",
|
||||||
|
Reference in New Issue
Block a user