mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-07-28 00:09:56 -07:00
Update translations and notifications.
This commit is contained in:
@@ -26,7 +26,9 @@ use Exception;
|
||||
use FireflyIII\Events\AdminRequestedTestMessage;
|
||||
use FireflyIII\Exceptions\FireflyException;
|
||||
use FireflyIII\Mail\AdminTestMail;
|
||||
use FireflyIII\Notifications\Admin\TestNotification;
|
||||
use FireflyIII\Repositories\User\UserRepositoryInterface;
|
||||
use Illuminate\Support\Facades\Notification;
|
||||
use Log;
|
||||
use Mail;
|
||||
use Session;
|
||||
@@ -49,38 +51,13 @@ class AdminEventHandler
|
||||
{
|
||||
/** @var UserRepositoryInterface $repository */
|
||||
$repository = app(UserRepositoryInterface::class);
|
||||
|
||||
// is user even admin?
|
||||
if ($repository->hasRole($event->user, 'owner')) {
|
||||
$email = $event->user->email;
|
||||
|
||||
// if user is demo user, send to owner:
|
||||
if ($event->user->hasRole('demo')) {
|
||||
$email = config('firefly.site_owner');
|
||||
}
|
||||
|
||||
// see if user has alternative email address:
|
||||
$pref = app('preferences')->getForUser($event->user, 'remote_guard_alt_email');
|
||||
if (null !== $pref) {
|
||||
$email = $pref->data;
|
||||
}
|
||||
|
||||
Log::debug(sprintf('Now in sendTestMessage event handler. Email is %s', $email));
|
||||
try {
|
||||
Log::debug('Trying to send message...');
|
||||
Mail::to($email)->send(new AdminTestMail($email));
|
||||
|
||||
// Laravel cannot pretend this process failed during testing.
|
||||
} catch (Exception $e) { // @phpstan-ignore-line
|
||||
Log::debug('Send message failed! :(');
|
||||
Log::error($e->getMessage());
|
||||
Log::error($e->getTraceAsString());
|
||||
Session::flash('error', 'Possible email error: ' . $e->getMessage());
|
||||
}
|
||||
|
||||
Log::debug('If no error above this line, message was sent.');
|
||||
// do some validation.
|
||||
if (!$repository->hasRole($event->user, 'owner')) {
|
||||
return true;
|
||||
}
|
||||
|
||||
Notification::send($event->user, new TestNotification($event->user->email));
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -40,13 +40,11 @@ class AdminTestMail extends Mailable
|
||||
public string $email;
|
||||
|
||||
/**
|
||||
* ConfirmEmailChangeMail constructor.
|
||||
*
|
||||
* @param string $email
|
||||
* AdminTestMail constructor.
|
||||
*/
|
||||
public function __construct(string $email)
|
||||
public function __construct()
|
||||
{
|
||||
$this->email = $email;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
/*
|
||||
* TestNotification.php
|
||||
* Copyright (c) 2022 james@firefly-iii.org
|
||||
@@ -21,7 +22,64 @@
|
||||
|
||||
namespace FireflyIII\Notifications\Admin;
|
||||
|
||||
class TestNotification
|
||||
{
|
||||
use FireflyIII\Mail\AdminTestMail;
|
||||
use Illuminate\Bus\Queueable;
|
||||
use Illuminate\Notifications\Messages\MailMessage;
|
||||
use Illuminate\Notifications\Notification;
|
||||
|
||||
/**
|
||||
* Class TestNotification
|
||||
*/
|
||||
class TestNotification extends Notification
|
||||
{
|
||||
use Queueable;
|
||||
|
||||
private string $address;
|
||||
|
||||
/**
|
||||
* Create a new notification instance.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct(string $address)
|
||||
{
|
||||
$this->address = $address;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the notification's delivery channels.
|
||||
*
|
||||
* @param mixed $notifiable
|
||||
* @return array
|
||||
*/
|
||||
public function via($notifiable)
|
||||
{
|
||||
return ['mail'];
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the mail representation of the notification.
|
||||
*
|
||||
* @param mixed $notifiable
|
||||
* @return \Illuminate\Notifications\Messages\MailMessage
|
||||
*/
|
||||
public function toMail($notifiable)
|
||||
{
|
||||
return (new MailMessage)
|
||||
->markdown('emails.admin-test', ['email' => $this->address])
|
||||
->subject((string) trans('email.admin_test_subject'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the array representation of the notification.
|
||||
*
|
||||
* @param mixed $notifiable
|
||||
* @return array
|
||||
*/
|
||||
public function toArray($notifiable)
|
||||
{
|
||||
return [
|
||||
//
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
/*
|
||||
* UserInvitation.php
|
||||
* Copyright (c) 2022 james@firefly-iii.org
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
/*
|
||||
* UserRegistration.php
|
||||
* Copyright (c) 2022 james@firefly-iii.org
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
/*
|
||||
* VersionCheckResult.php
|
||||
* Copyright (c) 2022 james@firefly-iii.org
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
/*
|
||||
* BillReminder.php
|
||||
* Copyright (c) 2022 james@firefly-iii.org
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
/*
|
||||
* NewAccessToken.php
|
||||
* Copyright (c) 2022 james@firefly-iii.org
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
/*
|
||||
* TransactionCreation.php
|
||||
* Copyright (c) 2022 james@firefly-iii.org
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
/*
|
||||
* UserLogin.php
|
||||
* Copyright (c) 2022 james@firefly-iii.org
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
/*
|
||||
* UserNewEmail.php
|
||||
* Copyright (c) 2022 james@firefly-iii.org
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
/*
|
||||
* UserNewEmailUndo.php
|
||||
* Copyright (c) 2022 james@firefly-iii.org
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
/*
|
||||
* UserNewPassword.php
|
||||
* Copyright (c) 2022 james@firefly-iii.org
|
||||
|
||||
+29
-1
@@ -57,8 +57,10 @@ use Illuminate\Foundation\Auth\User as Authenticatable;
|
||||
use Illuminate\Notifications\DatabaseNotification;
|
||||
use Illuminate\Notifications\DatabaseNotificationCollection;
|
||||
use Illuminate\Notifications\Notifiable;
|
||||
use Illuminate\Notifications\Notification;
|
||||
use Illuminate\Support\Carbon;
|
||||
use Illuminate\Support\Collection;
|
||||
use Illuminate\Support\Str;
|
||||
use Laravel\Passport\Client;
|
||||
use Laravel\Passport\HasApiTokens;
|
||||
use Laravel\Passport\Token;
|
||||
@@ -545,5 +547,31 @@ class User extends Authenticatable
|
||||
{
|
||||
return $this->hasMany(Webhook::class);
|
||||
}
|
||||
// end LDAP related code
|
||||
|
||||
/**
|
||||
* Get the notification routing information for the given driver.
|
||||
*
|
||||
* @param string $driver
|
||||
* @param Notification|null $notification
|
||||
* @return mixed
|
||||
*/
|
||||
public function routeNotificationFor($driver, $notification = null)
|
||||
{
|
||||
if (method_exists($this, $method = 'routeNotificationFor' . Str::studly($driver))) {
|
||||
return $this->{$method}($notification);
|
||||
}
|
||||
$email = $this->email;
|
||||
// see if user has alternative email address:
|
||||
$pref = app('preferences')->getForUser($this, 'remote_guard_alt_email');
|
||||
if (null !== $pref) {
|
||||
$email = $pref->data;
|
||||
}
|
||||
|
||||
return match ($driver) {
|
||||
'database' => $this->notifications(),
|
||||
'mail' => $email,
|
||||
default => null,
|
||||
};
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -685,9 +685,6 @@ class FireflyValidator extends Validator
|
||||
$trigger = 0;
|
||||
$response = 0;
|
||||
$delivery = 0;
|
||||
|
||||
|
||||
|
||||
$triggers = Webhook::getTriggersForValidation();
|
||||
$responses = Webhook::getResponsesForValidation();
|
||||
$deliveries = Webhook::getDeliveriesForValidation();
|
||||
|
||||
+1
-1
@@ -105,7 +105,7 @@ return [
|
||||
],
|
||||
'version' => '5.8.0-alpha.1',
|
||||
'api_version' => '2.0.0-alpha.1',
|
||||
'db_version' => 18,
|
||||
'db_version' => 19,
|
||||
|
||||
// generic settings
|
||||
'maxUploadSize' => 1073741824, // 1 GB
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('notifications', function (Blueprint $table) {
|
||||
$table->uuid('id')->primary();
|
||||
$table->string('type');
|
||||
$table->morphs('notifiable');
|
||||
$table->text('data');
|
||||
$table->timestamp('read_at')->nullable();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('notifications');
|
||||
}
|
||||
};
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -44,22 +44,22 @@
|
||||
<td>{{ title }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Is active?</td>
|
||||
<td>{{ $t('list.active') }}</td>
|
||||
<td>
|
||||
<em class="fa fa-check text-success" v-if="active"></em>
|
||||
<em class="fa fa-times text-danger" v-if="!active"></em>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Trigger</td>
|
||||
<td>{{ $t('list.trigger') }}</td>
|
||||
<td> {{ trigger }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Response</td>
|
||||
<td>{{ $t('list.response') }}</td>
|
||||
<td> {{ response }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Delivery</td>
|
||||
<td>{{ $t('list.delivery') }}</td>
|
||||
<td> {{ delivery }}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
@@ -69,7 +69,8 @@
|
||||
<div class="btn-group pull-right">
|
||||
<a :href=edit_url class="btn btn-default"><em class="fa fa-pencil"></em> {{ $t('firefly.edit') }}</a>
|
||||
<a id="triggerButton" href="#" @click="submitTest" class="btn btn-default"><em class="fa fa-bolt"></em>
|
||||
Trigger</a>
|
||||
{{ $t('list.trigger') }}
|
||||
</a>
|
||||
<a :href=delete_url class="btn btn-danger"><em class="fa fa-trash"></em> {{ $t('firefly.delete') }}</a>
|
||||
</div>
|
||||
</div>
|
||||
@@ -84,11 +85,13 @@
|
||||
<table class="table table-hover">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="width:40%;">URL</td>
|
||||
<td style="width:40%;">{{ $t('list.url') }}</td>
|
||||
<td><input type="text" readonly class="form-control" :value=url></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Secret</td>
|
||||
<td>
|
||||
{{ $t('list.secret') }}
|
||||
</td>
|
||||
<td>
|
||||
<em style="cursor:pointer"
|
||||
v-if="show_secret" class="fa fa-eye" @click="toggleSecret"></em>
|
||||
@@ -102,7 +105,13 @@
|
||||
</table>
|
||||
</div>
|
||||
<div class="box-footer">
|
||||
Visit url / reset secret
|
||||
<a :href=url class="btn btn-default">
|
||||
<em class="fa fa-globe-europe"></em> {{ $t('firefly.visit_webhook_url') }}
|
||||
</a>
|
||||
<a @click="resetSecret" class="btn btn-default">
|
||||
<em class="fa fa-lock"></em> {{ $t('firefly.reset_webhook_secret') }}
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -208,11 +217,11 @@
|
||||
<span class="text-danger">({{ message.status_code }})</span>
|
||||
</strong>
|
||||
<p>
|
||||
{{ $t('firefly.logs') }}: <br />
|
||||
{{ $t('firefly.logs') }}: <br/>
|
||||
<textarea class="form-control" rows="5" readonly>{{ message.logs }}</textarea>
|
||||
</p>
|
||||
<p v-if="null !== message.response">
|
||||
{{ $t('firefly.response') }}: <br />
|
||||
{{ $t('firefly.response') }}: <br/>
|
||||
<textarea class="form-control" rows="5" readonly>{{ message.response }}</textarea>
|
||||
</p>
|
||||
</div>
|
||||
@@ -279,6 +288,11 @@ export default {
|
||||
}
|
||||
return false;
|
||||
},
|
||||
resetSecret: function () {
|
||||
axios.put('./api/v1/webhooks/' + this.id, {secret: 'anything'}).then(() => {
|
||||
this.downloadWebhook();
|
||||
});
|
||||
},
|
||||
downloadWebhookMessages: function () {
|
||||
this.messages = [];
|
||||
axios.get('./api/v1/webhooks/' + this.id + '/messages').then(response => {
|
||||
|
||||
@@ -112,11 +112,13 @@
|
||||
"message_content_title": "Webhook message content",
|
||||
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
|
||||
"attempt_content_title": "Webhook attempts",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL.",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
|
||||
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
|
||||
"webhook_attempt_at": "Attempt at {moment}",
|
||||
"logs": "Logs",
|
||||
"response": "Response"
|
||||
"response": "Response",
|
||||
"visit_webhook_url": "Visit webhook URL",
|
||||
"reset_webhook_secret": "Reset webhook secret"
|
||||
},
|
||||
"form": {
|
||||
"url": "URL",
|
||||
@@ -134,6 +136,12 @@
|
||||
"webhook_trigger": "Trigger",
|
||||
"webhook_delivery": "Delivery"
|
||||
},
|
||||
"list": {
|
||||
"active": "\u0410\u043a\u0442\u0438\u0432\u0435\u043d \u043b\u0438 \u0435?",
|
||||
"trigger": "Trigger",
|
||||
"response": "Response",
|
||||
"delivery": "Delivery"
|
||||
},
|
||||
"config": {
|
||||
"html_language": "bg",
|
||||
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
|
||||
|
||||
@@ -112,11 +112,13 @@
|
||||
"message_content_title": "Webhook message content",
|
||||
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
|
||||
"attempt_content_title": "Webhook attempts",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL.",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
|
||||
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
|
||||
"webhook_attempt_at": "Attempt at {moment}",
|
||||
"logs": "Logs",
|
||||
"response": "Response"
|
||||
"response": "Response",
|
||||
"visit_webhook_url": "Visit webhook URL",
|
||||
"reset_webhook_secret": "Reset webhook secret"
|
||||
},
|
||||
"form": {
|
||||
"url": "URL",
|
||||
@@ -134,6 +136,12 @@
|
||||
"webhook_trigger": "Trigger",
|
||||
"webhook_delivery": "Delivery"
|
||||
},
|
||||
"list": {
|
||||
"active": "Aktivn\u00ed?",
|
||||
"trigger": "Trigger",
|
||||
"response": "Response",
|
||||
"delivery": "Delivery"
|
||||
},
|
||||
"config": {
|
||||
"html_language": "cs",
|
||||
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
|
||||
|
||||
@@ -112,11 +112,13 @@
|
||||
"message_content_title": "Webhook message content",
|
||||
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
|
||||
"attempt_content_title": "Webhook attempts",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL.",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
|
||||
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
|
||||
"webhook_attempt_at": "Attempt at {moment}",
|
||||
"logs": "Logs",
|
||||
"response": "Response"
|
||||
"response": "Response",
|
||||
"visit_webhook_url": "Visit webhook URL",
|
||||
"reset_webhook_secret": "Reset webhook secret"
|
||||
},
|
||||
"form": {
|
||||
"url": "URL",
|
||||
@@ -134,6 +136,12 @@
|
||||
"webhook_trigger": "Trigger",
|
||||
"webhook_delivery": "Delivery"
|
||||
},
|
||||
"list": {
|
||||
"active": "Aktiv?",
|
||||
"trigger": "Trigger",
|
||||
"response": "Response",
|
||||
"delivery": "Delivery"
|
||||
},
|
||||
"config": {
|
||||
"html_language": "de",
|
||||
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
|
||||
|
||||
@@ -112,11 +112,13 @@
|
||||
"message_content_title": "Webhook message content",
|
||||
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
|
||||
"attempt_content_title": "Webhook attempts",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL.",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
|
||||
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
|
||||
"webhook_attempt_at": "Attempt at {moment}",
|
||||
"logs": "Logs",
|
||||
"response": "Response"
|
||||
"response": "Response",
|
||||
"visit_webhook_url": "Visit webhook URL",
|
||||
"reset_webhook_secret": "Reset webhook secret"
|
||||
},
|
||||
"form": {
|
||||
"url": "\u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 URL",
|
||||
@@ -134,6 +136,12 @@
|
||||
"webhook_trigger": "Trigger",
|
||||
"webhook_delivery": "Delivery"
|
||||
},
|
||||
"list": {
|
||||
"active": "\u0395\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03cc;",
|
||||
"trigger": "Trigger",
|
||||
"response": "Response",
|
||||
"delivery": "Delivery"
|
||||
},
|
||||
"config": {
|
||||
"html_language": "el",
|
||||
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
|
||||
|
||||
@@ -112,11 +112,13 @@
|
||||
"message_content_title": "Webhook message content",
|
||||
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
|
||||
"attempt_content_title": "Webhook attempts",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL.",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
|
||||
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
|
||||
"webhook_attempt_at": "Attempt at {moment}",
|
||||
"logs": "Logs",
|
||||
"response": "Response"
|
||||
"response": "Response",
|
||||
"visit_webhook_url": "Visit webhook URL",
|
||||
"reset_webhook_secret": "Reset webhook secret"
|
||||
},
|
||||
"form": {
|
||||
"url": "URL",
|
||||
@@ -134,6 +136,12 @@
|
||||
"webhook_trigger": "Trigger",
|
||||
"webhook_delivery": "Delivery"
|
||||
},
|
||||
"list": {
|
||||
"active": "Is active?",
|
||||
"trigger": "Trigger",
|
||||
"response": "Response",
|
||||
"delivery": "Delivery"
|
||||
},
|
||||
"config": {
|
||||
"html_language": "en-gb",
|
||||
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
|
||||
|
||||
@@ -112,11 +112,13 @@
|
||||
"message_content_title": "Webhook message content",
|
||||
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
|
||||
"attempt_content_title": "Webhook attempts",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL.",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
|
||||
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
|
||||
"webhook_attempt_at": "Attempt at {moment}",
|
||||
"logs": "Logs",
|
||||
"response": "Response"
|
||||
"response": "Response",
|
||||
"visit_webhook_url": "Visit webhook URL",
|
||||
"reset_webhook_secret": "Reset webhook secret"
|
||||
},
|
||||
"form": {
|
||||
"url": "URL",
|
||||
@@ -134,6 +136,12 @@
|
||||
"webhook_trigger": "Trigger",
|
||||
"webhook_delivery": "Delivery"
|
||||
},
|
||||
"list": {
|
||||
"active": "Is active?",
|
||||
"trigger": "Trigger",
|
||||
"response": "Response",
|
||||
"delivery": "Delivery"
|
||||
},
|
||||
"config": {
|
||||
"html_language": "en",
|
||||
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
|
||||
|
||||
@@ -112,11 +112,13 @@
|
||||
"message_content_title": "Webhook message content",
|
||||
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
|
||||
"attempt_content_title": "Webhook attempts",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL.",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
|
||||
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
|
||||
"webhook_attempt_at": "Attempt at {moment}",
|
||||
"logs": "Logs",
|
||||
"response": "Response"
|
||||
"response": "Response",
|
||||
"visit_webhook_url": "Visit webhook URL",
|
||||
"reset_webhook_secret": "Reset webhook secret"
|
||||
},
|
||||
"form": {
|
||||
"url": "URL",
|
||||
@@ -134,6 +136,12 @@
|
||||
"webhook_trigger": "Trigger",
|
||||
"webhook_delivery": "Delivery"
|
||||
},
|
||||
"list": {
|
||||
"active": "\u00bfEst\u00e1 Activo?",
|
||||
"trigger": "Trigger",
|
||||
"response": "Response",
|
||||
"delivery": "Delivery"
|
||||
},
|
||||
"config": {
|
||||
"html_language": "es",
|
||||
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
|
||||
|
||||
@@ -112,11 +112,13 @@
|
||||
"message_content_title": "Webhook message content",
|
||||
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
|
||||
"attempt_content_title": "Webhook attempts",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL.",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
|
||||
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
|
||||
"webhook_attempt_at": "Attempt at {moment}",
|
||||
"logs": "Logs",
|
||||
"response": "Response"
|
||||
"response": "Response",
|
||||
"visit_webhook_url": "Visit webhook URL",
|
||||
"reset_webhook_secret": "Reset webhook secret"
|
||||
},
|
||||
"form": {
|
||||
"url": "URL-osoite",
|
||||
@@ -134,6 +136,12 @@
|
||||
"webhook_trigger": "Trigger",
|
||||
"webhook_delivery": "Delivery"
|
||||
},
|
||||
"list": {
|
||||
"active": "Aktiivinen?",
|
||||
"trigger": "Trigger",
|
||||
"response": "Response",
|
||||
"delivery": "Delivery"
|
||||
},
|
||||
"config": {
|
||||
"html_language": "fi",
|
||||
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
|
||||
|
||||
@@ -112,11 +112,13 @@
|
||||
"message_content_title": "Webhook message content",
|
||||
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
|
||||
"attempt_content_title": "Webhook attempts",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL.",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
|
||||
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
|
||||
"webhook_attempt_at": "Attempt at {moment}",
|
||||
"logs": "Logs",
|
||||
"response": "Response"
|
||||
"response": "Response",
|
||||
"visit_webhook_url": "Visit webhook URL",
|
||||
"reset_webhook_secret": "Reset webhook secret"
|
||||
},
|
||||
"form": {
|
||||
"url": "Liens",
|
||||
@@ -134,6 +136,12 @@
|
||||
"webhook_trigger": "Trigger",
|
||||
"webhook_delivery": "Delivery"
|
||||
},
|
||||
"list": {
|
||||
"active": "Actif ?",
|
||||
"trigger": "Trigger",
|
||||
"response": "Response",
|
||||
"delivery": "Delivery"
|
||||
},
|
||||
"config": {
|
||||
"html_language": "fr",
|
||||
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
|
||||
|
||||
@@ -112,11 +112,13 @@
|
||||
"message_content_title": "Webhook message content",
|
||||
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
|
||||
"attempt_content_title": "Webhook attempts",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL.",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
|
||||
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
|
||||
"webhook_attempt_at": "Attempt at {moment}",
|
||||
"logs": "Logs",
|
||||
"response": "Response"
|
||||
"response": "Response",
|
||||
"visit_webhook_url": "Visit webhook URL",
|
||||
"reset_webhook_secret": "Reset webhook secret"
|
||||
},
|
||||
"form": {
|
||||
"url": "URL",
|
||||
@@ -134,6 +136,12 @@
|
||||
"webhook_trigger": "Trigger",
|
||||
"webhook_delivery": "Delivery"
|
||||
},
|
||||
"list": {
|
||||
"active": "Akt\u00edv?",
|
||||
"trigger": "Trigger",
|
||||
"response": "Response",
|
||||
"delivery": "Delivery"
|
||||
},
|
||||
"config": {
|
||||
"html_language": "hu",
|
||||
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
|
||||
|
||||
@@ -112,11 +112,13 @@
|
||||
"message_content_title": "Webhook message content",
|
||||
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
|
||||
"attempt_content_title": "Webhook attempts",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL.",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
|
||||
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
|
||||
"webhook_attempt_at": "Attempt at {moment}",
|
||||
"logs": "Logs",
|
||||
"response": "Response"
|
||||
"response": "Response",
|
||||
"visit_webhook_url": "Visit webhook URL",
|
||||
"reset_webhook_secret": "Reset webhook secret"
|
||||
},
|
||||
"form": {
|
||||
"url": "URL",
|
||||
@@ -134,6 +136,12 @@
|
||||
"webhook_trigger": "Trigger",
|
||||
"webhook_delivery": "Delivery"
|
||||
},
|
||||
"list": {
|
||||
"active": "Attivo",
|
||||
"trigger": "Trigger",
|
||||
"response": "Response",
|
||||
"delivery": "Delivery"
|
||||
},
|
||||
"config": {
|
||||
"html_language": "it",
|
||||
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
|
||||
|
||||
@@ -112,11 +112,13 @@
|
||||
"message_content_title": "Webhook message content",
|
||||
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
|
||||
"attempt_content_title": "Webhook attempts",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL.",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
|
||||
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
|
||||
"webhook_attempt_at": "Attempt at {moment}",
|
||||
"logs": "Logs",
|
||||
"response": "Response"
|
||||
"response": "Response",
|
||||
"visit_webhook_url": "Visit webhook URL",
|
||||
"reset_webhook_secret": "Reset webhook secret"
|
||||
},
|
||||
"form": {
|
||||
"url": "URL",
|
||||
@@ -134,6 +136,12 @@
|
||||
"webhook_trigger": "Trigger",
|
||||
"webhook_delivery": "Delivery"
|
||||
},
|
||||
"list": {
|
||||
"active": "\u6709\u52b9",
|
||||
"trigger": "Trigger",
|
||||
"response": "Response",
|
||||
"delivery": "Delivery"
|
||||
},
|
||||
"config": {
|
||||
"html_language": "ja",
|
||||
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
|
||||
|
||||
@@ -112,11 +112,13 @@
|
||||
"message_content_title": "Webhook message content",
|
||||
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
|
||||
"attempt_content_title": "Webhook attempts",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL.",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
|
||||
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
|
||||
"webhook_attempt_at": "Attempt at {moment}",
|
||||
"logs": "Logs",
|
||||
"response": "Response"
|
||||
"response": "Response",
|
||||
"visit_webhook_url": "Visit webhook URL",
|
||||
"reset_webhook_secret": "Reset webhook secret"
|
||||
},
|
||||
"form": {
|
||||
"url": "URL",
|
||||
@@ -134,6 +136,12 @@
|
||||
"webhook_trigger": "Trigger",
|
||||
"webhook_delivery": "Delivery"
|
||||
},
|
||||
"list": {
|
||||
"active": "Er aktiv?",
|
||||
"trigger": "Trigger",
|
||||
"response": "Response",
|
||||
"delivery": "Delivery"
|
||||
},
|
||||
"config": {
|
||||
"html_language": "nb",
|
||||
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
|
||||
|
||||
@@ -112,11 +112,13 @@
|
||||
"message_content_title": "Webhook message content",
|
||||
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
|
||||
"attempt_content_title": "Webhook attempts",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL.",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
|
||||
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
|
||||
"webhook_attempt_at": "Attempt at {moment}",
|
||||
"logs": "Logs",
|
||||
"response": "Response"
|
||||
"response": "Response",
|
||||
"visit_webhook_url": "Visit webhook URL",
|
||||
"reset_webhook_secret": "Reset webhook secret"
|
||||
},
|
||||
"form": {
|
||||
"url": "URL",
|
||||
@@ -134,6 +136,12 @@
|
||||
"webhook_trigger": "Trigger",
|
||||
"webhook_delivery": "Delivery"
|
||||
},
|
||||
"list": {
|
||||
"active": "Actief?",
|
||||
"trigger": "Trigger",
|
||||
"response": "Response",
|
||||
"delivery": "Delivery"
|
||||
},
|
||||
"config": {
|
||||
"html_language": "nl",
|
||||
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
|
||||
|
||||
@@ -112,11 +112,13 @@
|
||||
"message_content_title": "Webhook message content",
|
||||
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
|
||||
"attempt_content_title": "Webhook attempts",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL.",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
|
||||
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
|
||||
"webhook_attempt_at": "Attempt at {moment}",
|
||||
"logs": "Logs",
|
||||
"response": "Response"
|
||||
"response": "Response",
|
||||
"visit_webhook_url": "Visit webhook URL",
|
||||
"reset_webhook_secret": "Reset webhook secret"
|
||||
},
|
||||
"form": {
|
||||
"url": "URL",
|
||||
@@ -134,6 +136,12 @@
|
||||
"webhook_trigger": "Trigger",
|
||||
"webhook_delivery": "Delivery"
|
||||
},
|
||||
"list": {
|
||||
"active": "Jest aktywny?",
|
||||
"trigger": "Trigger",
|
||||
"response": "Response",
|
||||
"delivery": "Delivery"
|
||||
},
|
||||
"config": {
|
||||
"html_language": "pl",
|
||||
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
|
||||
|
||||
@@ -112,11 +112,13 @@
|
||||
"message_content_title": "Webhook message content",
|
||||
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
|
||||
"attempt_content_title": "Webhook attempts",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL.",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
|
||||
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
|
||||
"webhook_attempt_at": "Attempt at {moment}",
|
||||
"logs": "Logs",
|
||||
"response": "Response"
|
||||
"response": "Response",
|
||||
"visit_webhook_url": "Visit webhook URL",
|
||||
"reset_webhook_secret": "Reset webhook secret"
|
||||
},
|
||||
"form": {
|
||||
"url": "link",
|
||||
@@ -134,6 +136,12 @@
|
||||
"webhook_trigger": "Trigger",
|
||||
"webhook_delivery": "Delivery"
|
||||
},
|
||||
"list": {
|
||||
"active": "Est\u00e1 ativo?",
|
||||
"trigger": "Trigger",
|
||||
"response": "Response",
|
||||
"delivery": "Delivery"
|
||||
},
|
||||
"config": {
|
||||
"html_language": "pt-br",
|
||||
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
|
||||
|
||||
@@ -112,11 +112,13 @@
|
||||
"message_content_title": "Webhook message content",
|
||||
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
|
||||
"attempt_content_title": "Webhook attempts",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL.",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
|
||||
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
|
||||
"webhook_attempt_at": "Attempt at {moment}",
|
||||
"logs": "Logs",
|
||||
"response": "Response"
|
||||
"response": "Response",
|
||||
"visit_webhook_url": "Visit webhook URL",
|
||||
"reset_webhook_secret": "Reset webhook secret"
|
||||
},
|
||||
"form": {
|
||||
"url": "URL",
|
||||
@@ -134,6 +136,12 @@
|
||||
"webhook_trigger": "Trigger",
|
||||
"webhook_delivery": "Delivery"
|
||||
},
|
||||
"list": {
|
||||
"active": "Esta activo?",
|
||||
"trigger": "Trigger",
|
||||
"response": "Response",
|
||||
"delivery": "Delivery"
|
||||
},
|
||||
"config": {
|
||||
"html_language": "pt",
|
||||
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
|
||||
|
||||
@@ -112,11 +112,13 @@
|
||||
"message_content_title": "Webhook message content",
|
||||
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
|
||||
"attempt_content_title": "Webhook attempts",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL.",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
|
||||
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
|
||||
"webhook_attempt_at": "Attempt at {moment}",
|
||||
"logs": "Logs",
|
||||
"response": "Response"
|
||||
"response": "Response",
|
||||
"visit_webhook_url": "Visit webhook URL",
|
||||
"reset_webhook_secret": "Reset webhook secret"
|
||||
},
|
||||
"form": {
|
||||
"url": "URL",
|
||||
@@ -134,6 +136,12 @@
|
||||
"webhook_trigger": "Trigger",
|
||||
"webhook_delivery": "Delivery"
|
||||
},
|
||||
"list": {
|
||||
"active": "Este activ?",
|
||||
"trigger": "Trigger",
|
||||
"response": "Response",
|
||||
"delivery": "Delivery"
|
||||
},
|
||||
"config": {
|
||||
"html_language": "ro",
|
||||
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
|
||||
|
||||
@@ -112,11 +112,13 @@
|
||||
"message_content_title": "Webhook message content",
|
||||
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
|
||||
"attempt_content_title": "Webhook attempts",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL.",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
|
||||
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
|
||||
"webhook_attempt_at": "Attempt at {moment}",
|
||||
"logs": "Logs",
|
||||
"response": "Response"
|
||||
"response": "Response",
|
||||
"visit_webhook_url": "Visit webhook URL",
|
||||
"reset_webhook_secret": "Reset webhook secret"
|
||||
},
|
||||
"form": {
|
||||
"url": "\u0421\u0441\u044b\u043b\u043a\u0430",
|
||||
@@ -134,6 +136,12 @@
|
||||
"webhook_trigger": "Trigger",
|
||||
"webhook_delivery": "Delivery"
|
||||
},
|
||||
"list": {
|
||||
"active": "\u0410\u043a\u0442\u0438\u0432\u0435\u043d?",
|
||||
"trigger": "Trigger",
|
||||
"response": "Response",
|
||||
"delivery": "Delivery"
|
||||
},
|
||||
"config": {
|
||||
"html_language": "ru",
|
||||
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
|
||||
|
||||
@@ -112,11 +112,13 @@
|
||||
"message_content_title": "Webhook message content",
|
||||
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
|
||||
"attempt_content_title": "Webhook attempts",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL.",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
|
||||
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
|
||||
"webhook_attempt_at": "Attempt at {moment}",
|
||||
"logs": "Logs",
|
||||
"response": "Response"
|
||||
"response": "Response",
|
||||
"visit_webhook_url": "Visit webhook URL",
|
||||
"reset_webhook_secret": "Reset webhook secret"
|
||||
},
|
||||
"form": {
|
||||
"url": "URL",
|
||||
@@ -134,6 +136,12 @@
|
||||
"webhook_trigger": "Trigger",
|
||||
"webhook_delivery": "Delivery"
|
||||
},
|
||||
"list": {
|
||||
"active": "Akt\u00edvne?",
|
||||
"trigger": "Trigger",
|
||||
"response": "Response",
|
||||
"delivery": "Delivery"
|
||||
},
|
||||
"config": {
|
||||
"html_language": "sk",
|
||||
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
|
||||
|
||||
@@ -112,11 +112,13 @@
|
||||
"message_content_title": "Webhook message content",
|
||||
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
|
||||
"attempt_content_title": "Webhook attempts",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL.",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
|
||||
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
|
||||
"webhook_attempt_at": "Attempt at {moment}",
|
||||
"logs": "Logs",
|
||||
"response": "Response"
|
||||
"response": "Response",
|
||||
"visit_webhook_url": "Visit webhook URL",
|
||||
"reset_webhook_secret": "Reset webhook secret"
|
||||
},
|
||||
"form": {
|
||||
"url": "L\u00e4nk",
|
||||
@@ -134,6 +136,12 @@
|
||||
"webhook_trigger": "Trigger",
|
||||
"webhook_delivery": "Delivery"
|
||||
},
|
||||
"list": {
|
||||
"active": "\u00c4r aktiv?",
|
||||
"trigger": "Trigger",
|
||||
"response": "Response",
|
||||
"delivery": "Delivery"
|
||||
},
|
||||
"config": {
|
||||
"html_language": "sv",
|
||||
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
|
||||
|
||||
@@ -112,11 +112,13 @@
|
||||
"message_content_title": "Webhook message content",
|
||||
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
|
||||
"attempt_content_title": "Webhook attempts",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL.",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
|
||||
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
|
||||
"webhook_attempt_at": "Attempt at {moment}",
|
||||
"logs": "Logs",
|
||||
"response": "Response"
|
||||
"response": "Response",
|
||||
"visit_webhook_url": "Visit webhook URL",
|
||||
"reset_webhook_secret": "Reset webhook secret"
|
||||
},
|
||||
"form": {
|
||||
"url": "URL",
|
||||
@@ -134,6 +136,12 @@
|
||||
"webhook_trigger": "Trigger",
|
||||
"webhook_delivery": "Delivery"
|
||||
},
|
||||
"list": {
|
||||
"active": "Aktif mi?",
|
||||
"trigger": "Trigger",
|
||||
"response": "Response",
|
||||
"delivery": "Delivery"
|
||||
},
|
||||
"config": {
|
||||
"html_language": "tr",
|
||||
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
|
||||
|
||||
@@ -112,11 +112,13 @@
|
||||
"message_content_title": "Webhook message content",
|
||||
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
|
||||
"attempt_content_title": "Webhook attempts",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL.",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
|
||||
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
|
||||
"webhook_attempt_at": "Attempt at {moment}",
|
||||
"logs": "Logs",
|
||||
"response": "Response"
|
||||
"response": "Response",
|
||||
"visit_webhook_url": "Visit webhook URL",
|
||||
"reset_webhook_secret": "Reset webhook secret"
|
||||
},
|
||||
"form": {
|
||||
"url": "URL",
|
||||
@@ -134,6 +136,12 @@
|
||||
"webhook_trigger": "Trigger",
|
||||
"webhook_delivery": "Delivery"
|
||||
},
|
||||
"list": {
|
||||
"active": "\u0110ang ho\u1ea1t \u0111\u1ed9ng?",
|
||||
"trigger": "Trigger",
|
||||
"response": "Response",
|
||||
"delivery": "Delivery"
|
||||
},
|
||||
"config": {
|
||||
"html_language": "vi",
|
||||
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
|
||||
|
||||
@@ -112,11 +112,13 @@
|
||||
"message_content_title": "Webhook message content",
|
||||
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
|
||||
"attempt_content_title": "Webhook attempts",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL.",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
|
||||
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
|
||||
"webhook_attempt_at": "Attempt at {moment}",
|
||||
"logs": "Logs",
|
||||
"response": "Response"
|
||||
"response": "Response",
|
||||
"visit_webhook_url": "Visit webhook URL",
|
||||
"reset_webhook_secret": "Reset webhook secret"
|
||||
},
|
||||
"form": {
|
||||
"url": "\u7f51\u5740",
|
||||
@@ -134,6 +136,12 @@
|
||||
"webhook_trigger": "Trigger",
|
||||
"webhook_delivery": "Delivery"
|
||||
},
|
||||
"list": {
|
||||
"active": "\u662f\u5426\u542f\u7528\uff1f",
|
||||
"trigger": "Trigger",
|
||||
"response": "Response",
|
||||
"delivery": "Delivery"
|
||||
},
|
||||
"config": {
|
||||
"html_language": "zh-cn",
|
||||
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
|
||||
|
||||
@@ -112,11 +112,13 @@
|
||||
"message_content_title": "Webhook message content",
|
||||
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
|
||||
"attempt_content_title": "Webhook attempts",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL.",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
|
||||
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
|
||||
"webhook_attempt_at": "Attempt at {moment}",
|
||||
"logs": "Logs",
|
||||
"response": "Response"
|
||||
"response": "Response",
|
||||
"visit_webhook_url": "Visit webhook URL",
|
||||
"reset_webhook_secret": "Reset webhook secret"
|
||||
},
|
||||
"form": {
|
||||
"url": "URL",
|
||||
@@ -134,6 +136,12 @@
|
||||
"webhook_trigger": "Trigger",
|
||||
"webhook_delivery": "Delivery"
|
||||
},
|
||||
"list": {
|
||||
"active": "\u662f\u5426\u555f\u7528\uff1f",
|
||||
"trigger": "Trigger",
|
||||
"response": "Response",
|
||||
"delivery": "Delivery"
|
||||
},
|
||||
"config": {
|
||||
"html_language": "zh-tw",
|
||||
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
|
||||
|
||||
@@ -41,6 +41,7 @@ return [
|
||||
|
||||
//'date_time' => '%B %e, %Y, @ %T',
|
||||
'date_time_js' => 'Do MMMM, YYYY, @ HH:mm:ss',
|
||||
'date_time_fns' => 'MMMM do, yyyy @ HH:mm:ss',
|
||||
|
||||
//'specific_day' => '%e %B %Y',
|
||||
'specific_day_js' => 'D MMMM YYYY',
|
||||
|
||||
@@ -229,16 +229,42 @@ return [
|
||||
// Webhooks
|
||||
'webhooks' => 'Webhooks',
|
||||
'webhooks_breadcrumb' => 'Webhooks',
|
||||
'webhook_trigger_STORE_TRANSACTION' => 'On transaction creation',
|
||||
'webhook_trigger_UPDATE_TRANSACTION' => 'On transaction update',
|
||||
'webhook_trigger_DESTROY_TRANSACTION' => 'On transaction delete',
|
||||
'webhook_response_TRANSACTIONS' => 'Account details',
|
||||
'webhook_response_ACCOUNTS' => 'Transaction details',
|
||||
'no_webhook_messages' => 'There are no webhook messages',
|
||||
'webhook_trigger_STORE_TRANSACTION' => 'After transaction creation',
|
||||
'webhook_trigger_UPDATE_TRANSACTION' => 'After transaction update',
|
||||
'webhook_trigger_DESTROY_TRANSACTION' => 'After transaction delete',
|
||||
'webhook_response_TRANSACTIONS' => 'Transaction details',
|
||||
'webhook_response_ACCOUNTS' => 'Account details',
|
||||
'webhook_response_none_NONE' => 'No details',
|
||||
'webhook_delivery_JSON' => 'JSON',
|
||||
'inspect' => 'Inspect',
|
||||
'create_new_webhook' => 'Create new webhook',
|
||||
'webhooks_create_breadcrumb' => 'Create new webhook',
|
||||
'webhook_trigger_form_help' => 'Indicate on what event the webhook wil trigger',
|
||||
'webhook_response_form_help' => 'Indicate what the webhook must submit to the URL.',
|
||||
'webhook_delivery_form_help' => 'Which format the webhook must deliver data in.',
|
||||
'webhook_active_form_help' => 'The webhook must be active or it won\'t be called.',
|
||||
'stored_new_webhook' => 'Stored new webhook ":title"',
|
||||
'delete_webhook' => 'Delete webhook',
|
||||
'deleted_webhook' => 'Deleted webhook ":title"',
|
||||
'edit_webhook' => 'Edit webhook ":title"',
|
||||
'updated_webhook' => 'Updated webhook ":title"',
|
||||
'edit_webhook_js' => 'Edit webhook "{title}"',
|
||||
'show_webhook' => 'Webhook ":title"',
|
||||
'webhook_was_triggered' => 'The webhook was triggered on the indicated transaction. You can refresh this page to see the results.',
|
||||
'webhook_messages' => 'Webhook message',
|
||||
'view_message' => 'View message',
|
||||
'view_attempts' => 'View failed attempts',
|
||||
'message_content_title' => 'Webhook message content',
|
||||
'message_content_help' => 'This is the content of the message that was sent (or tried) using this webhook.',
|
||||
'attempt_content_title' => 'Webhook attempts',
|
||||
'attempt_content_help' => 'These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.',
|
||||
'no_attempts' => 'There are no unsuccessful attempts. That\'s a good thing!',
|
||||
'webhook_attempt_at' => 'Attempt at {moment}',
|
||||
'logs' => 'Logs',
|
||||
'response' => 'Response',
|
||||
'visit_webhook_url' => 'Visit webhook URL',
|
||||
'reset_webhook_secret' => 'Reset webhook secret',
|
||||
|
||||
// API access
|
||||
'authorization_request' => 'Firefly III v:version заявка за потвърждение',
|
||||
@@ -297,6 +323,7 @@ return [
|
||||
// old
|
||||
|
||||
'search_modifier_date_on' => 'Transaction date is ":value"',
|
||||
'search_modifier_reconciled' => 'Transaction is reconciled',
|
||||
'search_modifier_id' => 'Индентификатор на транзакцията е ":value"',
|
||||
'search_modifier_date_before' => 'Датата на транзакцията е преди или на ":value"',
|
||||
'search_modifier_date_after' => 'Датата на транзакцията е след или на ":value"',
|
||||
|
||||
@@ -125,6 +125,7 @@ return [
|
||||
'start' => 'Начало на обхвата',
|
||||
'end' => 'Край на обхвата',
|
||||
'delete_account' => 'Изтрий сметка ":name"',
|
||||
'delete_webhook' => 'Delete webhook ":title"',
|
||||
'delete_bill' => 'Изтрий сметка ":name"',
|
||||
'delete_budget' => 'Изтрий бюджет ":name"',
|
||||
'delete_category' => 'Изтрий категория ":name"',
|
||||
@@ -145,6 +146,7 @@ return [
|
||||
'object_group_areYouSure' => 'Наистина ли искате да изтриете групата ":title"?',
|
||||
'ruleGroup_areYouSure' => 'Наистина ли искате да изтриете групата правила ":title"?',
|
||||
'budget_areYouSure' => 'Наистина ли искате да изтриете бюджета озаглавен ":name"?',
|
||||
'webhook_areYouSure' => 'Are you sure you want to delete the webhook named ":title"?',
|
||||
'category_areYouSure' => 'Наистина ли искате да изтриете категорията озаглавена ":name"?',
|
||||
'recurring_areYouSure' => 'Наистина ли искате да изтриете повтарящата се транзакция ":title"?',
|
||||
'currency_areYouSure' => 'Наистина ли искате да изтриете валутата озаглавена ":name"?',
|
||||
@@ -246,4 +248,7 @@ return [
|
||||
'submitted' => 'Потвърдено',
|
||||
'key' => 'Ключ',
|
||||
'value' => 'Съдържание на записа',
|
||||
'webhook_delivery' => 'Delivery',
|
||||
'webhook_response' => 'Response',
|
||||
'webhook_trigger' => 'Trigger',
|
||||
];
|
||||
|
||||
@@ -76,7 +76,7 @@ return [
|
||||
'type' => 'Вид',
|
||||
'completed' => 'Завършен',
|
||||
'iban' => 'IBAN',
|
||||
'account_number' => 'Account number',
|
||||
'account_number' => 'Account number',
|
||||
'paid_current_period' => 'Платени този период',
|
||||
'email' => 'Имейл',
|
||||
'registered_at' => 'Регистриран на',
|
||||
@@ -138,4 +138,10 @@ return [
|
||||
'payment_info' => 'Платежна информация',
|
||||
'expected_info' => 'Следваща очаквана транзакция',
|
||||
'start_date' => 'Начална дата',
|
||||
'trigger' => 'Trigger',
|
||||
'response' => 'Response',
|
||||
'delivery' => 'Delivery',
|
||||
'url' => 'URL',
|
||||
'secret' => 'Secret',
|
||||
|
||||
];
|
||||
|
||||
@@ -41,6 +41,7 @@ return [
|
||||
|
||||
//'date_time' => '%B %e, %Y, @ %T',
|
||||
'date_time_js' => 'D. MMMM YYYY, @ HH:mm:ss',
|
||||
'date_time_fns' => 'MMMM do, yyyy @ HH:mm:ss',
|
||||
|
||||
//'specific_day' => '%e %B %Y',
|
||||
'specific_day_js' => 'D. MMMM YYYY',
|
||||
|
||||
@@ -229,16 +229,42 @@ return [
|
||||
// Webhooks
|
||||
'webhooks' => 'Webhooky',
|
||||
'webhooks_breadcrumb' => 'Webhooks',
|
||||
'webhook_trigger_STORE_TRANSACTION' => 'On transaction creation',
|
||||
'webhook_trigger_UPDATE_TRANSACTION' => 'On transaction update',
|
||||
'webhook_trigger_DESTROY_TRANSACTION' => 'On transaction delete',
|
||||
'webhook_response_TRANSACTIONS' => 'Account details',
|
||||
'webhook_response_ACCOUNTS' => 'Transaction details',
|
||||
'no_webhook_messages' => 'There are no webhook messages',
|
||||
'webhook_trigger_STORE_TRANSACTION' => 'After transaction creation',
|
||||
'webhook_trigger_UPDATE_TRANSACTION' => 'After transaction update',
|
||||
'webhook_trigger_DESTROY_TRANSACTION' => 'After transaction delete',
|
||||
'webhook_response_TRANSACTIONS' => 'Transaction details',
|
||||
'webhook_response_ACCOUNTS' => 'Account details',
|
||||
'webhook_response_none_NONE' => 'No details',
|
||||
'webhook_delivery_JSON' => 'JSON',
|
||||
'inspect' => 'Inspect',
|
||||
'create_new_webhook' => 'Create new webhook',
|
||||
'webhooks_create_breadcrumb' => 'Create new webhook',
|
||||
'webhook_trigger_form_help' => 'Indicate on what event the webhook wil trigger',
|
||||
'webhook_response_form_help' => 'Indicate what the webhook must submit to the URL.',
|
||||
'webhook_delivery_form_help' => 'Which format the webhook must deliver data in.',
|
||||
'webhook_active_form_help' => 'The webhook must be active or it won\'t be called.',
|
||||
'stored_new_webhook' => 'Stored new webhook ":title"',
|
||||
'delete_webhook' => 'Delete webhook',
|
||||
'deleted_webhook' => 'Deleted webhook ":title"',
|
||||
'edit_webhook' => 'Edit webhook ":title"',
|
||||
'updated_webhook' => 'Updated webhook ":title"',
|
||||
'edit_webhook_js' => 'Edit webhook "{title}"',
|
||||
'show_webhook' => 'Webhook ":title"',
|
||||
'webhook_was_triggered' => 'The webhook was triggered on the indicated transaction. You can refresh this page to see the results.',
|
||||
'webhook_messages' => 'Webhook message',
|
||||
'view_message' => 'View message',
|
||||
'view_attempts' => 'View failed attempts',
|
||||
'message_content_title' => 'Webhook message content',
|
||||
'message_content_help' => 'This is the content of the message that was sent (or tried) using this webhook.',
|
||||
'attempt_content_title' => 'Webhook attempts',
|
||||
'attempt_content_help' => 'These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.',
|
||||
'no_attempts' => 'There are no unsuccessful attempts. That\'s a good thing!',
|
||||
'webhook_attempt_at' => 'Attempt at {moment}',
|
||||
'logs' => 'Logs',
|
||||
'response' => 'Response',
|
||||
'visit_webhook_url' => 'Visit webhook URL',
|
||||
'reset_webhook_secret' => 'Reset webhook secret',
|
||||
|
||||
// API access
|
||||
'authorization_request' => 'Požadavek na ověření – Firefly III verze :version',
|
||||
@@ -297,6 +323,7 @@ return [
|
||||
// old
|
||||
|
||||
'search_modifier_date_on' => 'Transaction date is ":value"',
|
||||
'search_modifier_reconciled' => 'Transaction is reconciled',
|
||||
'search_modifier_id' => 'Číslo transakce je „:value“',
|
||||
'search_modifier_date_before' => 'Datum transakce je před (včetně) ":value"',
|
||||
'search_modifier_date_after' => 'Datum transakce je po (včetně) ":value"',
|
||||
|
||||
@@ -125,6 +125,7 @@ return [
|
||||
'start' => 'Začátek rozsahu',
|
||||
'end' => 'Konec rozsahu',
|
||||
'delete_account' => 'Smazat účet „:name“',
|
||||
'delete_webhook' => 'Delete webhook ":title"',
|
||||
'delete_bill' => 'Smazán účet „:name“',
|
||||
'delete_budget' => 'Smazat rozpočet „:name“',
|
||||
'delete_category' => 'Smazat kategorii „:name“',
|
||||
@@ -145,6 +146,7 @@ return [
|
||||
'object_group_areYouSure' => 'Jste si jisti, že chcete odstranit skupinu s názvem „:title“?',
|
||||
'ruleGroup_areYouSure' => 'Opravdu chcete odstranit skupinu pravidel s názvem „:title“?',
|
||||
'budget_areYouSure' => 'Jste si jisti, že chcete odstranit rozpočet s názvem „:name“?',
|
||||
'webhook_areYouSure' => 'Are you sure you want to delete the webhook named ":title"?',
|
||||
'category_areYouSure' => 'Jste si jisti, že chcete odstranit kategorii s názvem „:name“?',
|
||||
'recurring_areYouSure' => 'Jste si jisti, že chcete odstranit opakovanou transakci s názvem „:title“?',
|
||||
'currency_areYouSure' => 'Jste si jisti, že chcete odstranit měnu s názvem „:name“?',
|
||||
@@ -246,4 +248,7 @@ return [
|
||||
'submitted' => 'Odesláno',
|
||||
'key' => 'Klíč',
|
||||
'value' => 'Obsah záznamu',
|
||||
'webhook_delivery' => 'Delivery',
|
||||
'webhook_response' => 'Response',
|
||||
'webhook_trigger' => 'Trigger',
|
||||
];
|
||||
|
||||
@@ -76,7 +76,7 @@ return [
|
||||
'type' => 'Typ',
|
||||
'completed' => 'Dokončeno',
|
||||
'iban' => 'IBAN',
|
||||
'account_number' => 'Account number',
|
||||
'account_number' => 'Account number',
|
||||
'paid_current_period' => 'Zaplaceno v tomto období',
|
||||
'email' => 'Email',
|
||||
'registered_at' => 'Registrováno v',
|
||||
@@ -138,4 +138,10 @@ return [
|
||||
'payment_info' => 'Informace o platbě',
|
||||
'expected_info' => 'Další očekávaná transakce',
|
||||
'start_date' => 'Datum zahájení',
|
||||
'trigger' => 'Trigger',
|
||||
'response' => 'Response',
|
||||
'delivery' => 'Delivery',
|
||||
'url' => 'URL',
|
||||
'secret' => 'Secret',
|
||||
|
||||
];
|
||||
|
||||
@@ -41,6 +41,7 @@ return [
|
||||
|
||||
//'date_time' => '%B %e, %Y, @ %T',
|
||||
'date_time_js' => 'Do MMMM YYYY um HH:mm:ss',
|
||||
'date_time_fns' => 'MMMM do, yyyy @ HH:mm:ss',
|
||||
|
||||
//'specific_day' => '%e %B %Y',
|
||||
'specific_day_js' => 'D. MMMM YYYY',
|
||||
|
||||
@@ -33,7 +33,7 @@ return [
|
||||
'be_right_back' => 'Gleich wieder zurück!',
|
||||
'check_back' => 'Firefly III ist für eine notwendige Wartung nicht verfügbar. Bitte versuchen Sie es in einer Sekunde noch einmal.',
|
||||
'error_occurred' => 'Hoppla! Ein Fehler ist aufgetreten.',
|
||||
'db_error_occurred' => 'Whoops! A database error occurred.',
|
||||
'db_error_occurred' => 'Hoppla! Ein Datenbankfehler ist aufgetreten.',
|
||||
'error_not_recoverable' => 'Leider konnte dieser Fehler nicht wiederhergestellt werden :(. Firefly III ist kaputt. Der Fehler ist:',
|
||||
'error' => 'Fehler',
|
||||
'error_location' => 'Dieser Fehler ist in der Datei <span style="font-family: monospace;">:file</span> in Zeile :line mit dem Code :code aufgetreten.',
|
||||
|
||||
@@ -229,16 +229,42 @@ return [
|
||||
// Webhooks
|
||||
'webhooks' => 'Webhooks',
|
||||
'webhooks_breadcrumb' => 'Webhooks',
|
||||
'webhook_trigger_STORE_TRANSACTION' => 'On transaction creation',
|
||||
'webhook_trigger_UPDATE_TRANSACTION' => 'On transaction update',
|
||||
'webhook_trigger_DESTROY_TRANSACTION' => 'On transaction delete',
|
||||
'webhook_response_TRANSACTIONS' => 'Account details',
|
||||
'webhook_response_ACCOUNTS' => 'Transaction details',
|
||||
'webhook_response_none_NONE' => 'No details',
|
||||
'no_webhook_messages' => 'There are no webhook messages',
|
||||
'webhook_trigger_STORE_TRANSACTION' => 'After transaction creation',
|
||||
'webhook_trigger_UPDATE_TRANSACTION' => 'After transaction update',
|
||||
'webhook_trigger_DESTROY_TRANSACTION' => 'After transaction delete',
|
||||
'webhook_response_TRANSACTIONS' => 'Transaction details',
|
||||
'webhook_response_ACCOUNTS' => 'Account details',
|
||||
'webhook_response_none_NONE' => 'Keine Details',
|
||||
'webhook_delivery_JSON' => 'JSON',
|
||||
'inspect' => 'Inspect',
|
||||
'create_new_webhook' => 'Create new webhook',
|
||||
'webhooks_create_breadcrumb' => 'Create new webhook',
|
||||
'inspect' => 'Überprüfen',
|
||||
'create_new_webhook' => 'Neuen Webhook erstellen',
|
||||
'webhooks_create_breadcrumb' => 'Neuen Webhook erstellen',
|
||||
'webhook_trigger_form_help' => 'Indicate on what event the webhook wil trigger',
|
||||
'webhook_response_form_help' => 'Indicate what the webhook must submit to the URL.',
|
||||
'webhook_delivery_form_help' => 'Which format the webhook must deliver data in.',
|
||||
'webhook_active_form_help' => 'The webhook must be active or it won\'t be called.',
|
||||
'stored_new_webhook' => 'Stored new webhook ":title"',
|
||||
'delete_webhook' => 'Delete webhook',
|
||||
'deleted_webhook' => 'Deleted webhook ":title"',
|
||||
'edit_webhook' => 'Edit webhook ":title"',
|
||||
'updated_webhook' => 'Updated webhook ":title"',
|
||||
'edit_webhook_js' => 'Edit webhook "{title}"',
|
||||
'show_webhook' => 'Webhook ":title"',
|
||||
'webhook_was_triggered' => 'The webhook was triggered on the indicated transaction. You can refresh this page to see the results.',
|
||||
'webhook_messages' => 'Webhook message',
|
||||
'view_message' => 'View message',
|
||||
'view_attempts' => 'View failed attempts',
|
||||
'message_content_title' => 'Webhook message content',
|
||||
'message_content_help' => 'This is the content of the message that was sent (or tried) using this webhook.',
|
||||
'attempt_content_title' => 'Webhook attempts',
|
||||
'attempt_content_help' => 'These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.',
|
||||
'no_attempts' => 'There are no unsuccessful attempts. That\'s a good thing!',
|
||||
'webhook_attempt_at' => 'Attempt at {moment}',
|
||||
'logs' => 'Logs',
|
||||
'response' => 'Response',
|
||||
'visit_webhook_url' => 'Visit webhook URL',
|
||||
'reset_webhook_secret' => 'Reset webhook secret',
|
||||
|
||||
// API access
|
||||
'authorization_request' => 'Firefly III v:version Autorisierungsanfrage',
|
||||
@@ -297,6 +323,7 @@ return [
|
||||
// old
|
||||
|
||||
'search_modifier_date_on' => 'Buchungsdatum ist „:value”',
|
||||
'search_modifier_reconciled' => 'Transaction is reconciled',
|
||||
'search_modifier_id' => 'Buchungsnummer ist ":value"',
|
||||
'search_modifier_date_before' => 'Buchungsdatum ist vor oder am ":value"',
|
||||
'search_modifier_date_after' => 'Buchungsdatum ist nach oder am „:value”',
|
||||
|
||||
@@ -125,6 +125,7 @@ return [
|
||||
'start' => 'Anfang des Bereichs',
|
||||
'end' => 'Ende des Bereichs',
|
||||
'delete_account' => 'Konto „:name” löschen',
|
||||
'delete_webhook' => 'Delete webhook ":title"',
|
||||
'delete_bill' => 'Rechnung „:name” löschen',
|
||||
'delete_budget' => 'Budget „:name” löschen',
|
||||
'delete_category' => 'Kategorie „:name” löschen',
|
||||
@@ -145,6 +146,7 @@ return [
|
||||
'object_group_areYouSure' => 'Möchten Sie die Gruppe „:title” wirklich löschen?',
|
||||
'ruleGroup_areYouSure' => 'Sind Sie sicher, dass sie die Regelgruppe ":title" löschen möchten?',
|
||||
'budget_areYouSure' => 'Möchten Sie das Budget „:name” wirklich löschen?',
|
||||
'webhook_areYouSure' => 'Are you sure you want to delete the webhook named ":title"?',
|
||||
'category_areYouSure' => 'Möchten Sie die Kategorie „:name” wirklich löschen?',
|
||||
'recurring_areYouSure' => 'Möchten Sie den Dauerauftrag „:title” wirklich löschen?',
|
||||
'currency_areYouSure' => 'Möchten Sie die Währung „:name” wirklich löschen?',
|
||||
@@ -246,4 +248,7 @@ return [
|
||||
'submitted' => 'Übermittelt',
|
||||
'key' => 'Schlüssel',
|
||||
'value' => 'Inhalt der Aufzeichnungen',
|
||||
'webhook_delivery' => 'Delivery',
|
||||
'webhook_response' => 'Response',
|
||||
'webhook_trigger' => 'Trigger',
|
||||
];
|
||||
|
||||
@@ -76,7 +76,7 @@ return [
|
||||
'type' => 'Typ',
|
||||
'completed' => 'Abgeschlossen',
|
||||
'iban' => 'IBAN',
|
||||
'account_number' => 'Kontonummer',
|
||||
'account_number' => 'Kontonummer',
|
||||
'paid_current_period' => 'Diesen Zeitraum bezahlt',
|
||||
'email' => 'E-Mail',
|
||||
'registered_at' => 'Registriert am',
|
||||
@@ -138,4 +138,10 @@ return [
|
||||
'payment_info' => 'Zahlungsinformationen',
|
||||
'expected_info' => 'Nächste erwartete Buchung',
|
||||
'start_date' => 'Beginnt am',
|
||||
'trigger' => 'Trigger',
|
||||
'response' => 'Response',
|
||||
'delivery' => 'Delivery',
|
||||
'url' => 'URL',
|
||||
'secret' => 'Secret',
|
||||
|
||||
];
|
||||
|
||||
@@ -141,8 +141,8 @@ return [
|
||||
'unique_piggy_bank_for_user' => 'Der Name des Sparschweins muss eindeutig sein.',
|
||||
'unique_object_group' => 'Der Gruppenname muss eindeutig sein',
|
||||
'starts_with' => 'Der Wert muss mit :values beginnen.',
|
||||
'unique_webhook' => 'You already have a webhook with this combination of URL, trigger, response and delivery.',
|
||||
'unique_existing_webhook' => 'You already have another webhook this combination of URL, trigger, response and delivery.',
|
||||
'unique_webhook' => 'Es existiert bereits ein Webhook mit dieser Kombination aus URL, Auslöser, Antwort und Zustellung.',
|
||||
'unique_existing_webhook' => 'Es existiert bereits ein Webhook mit dieser Kombination aus URL, Auslöser, Antwort und Zustellung.',
|
||||
'same_account_type' => 'Beide Konten müssen vom selben Kontotyp sein',
|
||||
'same_account_currency' => 'Beiden Konten muss die gleiche Währung zugeordnet sein',
|
||||
|
||||
|
||||
@@ -41,6 +41,7 @@ return [
|
||||
|
||||
//'date_time' => '%B %e, %Y, @ %T',
|
||||
'date_time_js' => 'Do MMMM YYYY, HH:mm:ss',
|
||||
'date_time_fns' => 'MMMM do, yyyy @ HH:mm:ss',
|
||||
|
||||
//'specific_day' => '%e %B %Y',
|
||||
'specific_day_js' => 'D MMMM YYYY',
|
||||
|
||||
@@ -229,16 +229,42 @@ return [
|
||||
// Webhooks
|
||||
'webhooks' => 'Webhooks',
|
||||
'webhooks_breadcrumb' => 'Webhooks',
|
||||
'webhook_trigger_STORE_TRANSACTION' => 'On transaction creation',
|
||||
'webhook_trigger_UPDATE_TRANSACTION' => 'On transaction update',
|
||||
'webhook_trigger_DESTROY_TRANSACTION' => 'On transaction delete',
|
||||
'webhook_response_TRANSACTIONS' => 'Account details',
|
||||
'webhook_response_ACCOUNTS' => 'Transaction details',
|
||||
'no_webhook_messages' => 'There are no webhook messages',
|
||||
'webhook_trigger_STORE_TRANSACTION' => 'After transaction creation',
|
||||
'webhook_trigger_UPDATE_TRANSACTION' => 'After transaction update',
|
||||
'webhook_trigger_DESTROY_TRANSACTION' => 'After transaction delete',
|
||||
'webhook_response_TRANSACTIONS' => 'Transaction details',
|
||||
'webhook_response_ACCOUNTS' => 'Account details',
|
||||
'webhook_response_none_NONE' => 'No details',
|
||||
'webhook_delivery_JSON' => 'JSON',
|
||||
'inspect' => 'Inspect',
|
||||
'create_new_webhook' => 'Create new webhook',
|
||||
'webhooks_create_breadcrumb' => 'Create new webhook',
|
||||
'webhook_trigger_form_help' => 'Indicate on what event the webhook wil trigger',
|
||||
'webhook_response_form_help' => 'Indicate what the webhook must submit to the URL.',
|
||||
'webhook_delivery_form_help' => 'Which format the webhook must deliver data in.',
|
||||
'webhook_active_form_help' => 'The webhook must be active or it won\'t be called.',
|
||||
'stored_new_webhook' => 'Stored new webhook ":title"',
|
||||
'delete_webhook' => 'Delete webhook',
|
||||
'deleted_webhook' => 'Deleted webhook ":title"',
|
||||
'edit_webhook' => 'Edit webhook ":title"',
|
||||
'updated_webhook' => 'Updated webhook ":title"',
|
||||
'edit_webhook_js' => 'Edit webhook "{title}"',
|
||||
'show_webhook' => 'Webhook ":title"',
|
||||
'webhook_was_triggered' => 'The webhook was triggered on the indicated transaction. You can refresh this page to see the results.',
|
||||
'webhook_messages' => 'Webhook message',
|
||||
'view_message' => 'View message',
|
||||
'view_attempts' => 'View failed attempts',
|
||||
'message_content_title' => 'Webhook message content',
|
||||
'message_content_help' => 'This is the content of the message that was sent (or tried) using this webhook.',
|
||||
'attempt_content_title' => 'Webhook attempts',
|
||||
'attempt_content_help' => 'These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.',
|
||||
'no_attempts' => 'There are no unsuccessful attempts. That\'s a good thing!',
|
||||
'webhook_attempt_at' => 'Attempt at {moment}',
|
||||
'logs' => 'Logs',
|
||||
'response' => 'Response',
|
||||
'visit_webhook_url' => 'Visit webhook URL',
|
||||
'reset_webhook_secret' => 'Reset webhook secret',
|
||||
|
||||
// API access
|
||||
'authorization_request' => 'Αίτημα Εξουσιοδότησης Firefly III v:version',
|
||||
@@ -297,6 +323,7 @@ return [
|
||||
// old
|
||||
|
||||
'search_modifier_date_on' => 'Transaction date is ":value"',
|
||||
'search_modifier_reconciled' => 'Transaction is reconciled',
|
||||
'search_modifier_id' => 'Το ID συναλλαγής είναι ":value"',
|
||||
'search_modifier_date_before' => 'Η ημερομηνία συναλλαγής είναι πριν ή στις ":value"',
|
||||
'search_modifier_date_after' => 'Η ημερομηνία συναλλαγής είναι μετά ή στις ":value"',
|
||||
|
||||
@@ -125,6 +125,7 @@ return [
|
||||
'start' => 'Αρχή του εύρους',
|
||||
'end' => 'Τέλος του εύρους',
|
||||
'delete_account' => 'Διαγραφή λογαριασμού ":name"',
|
||||
'delete_webhook' => 'Delete webhook ":title"',
|
||||
'delete_bill' => 'Διαγραφή πάγιου έξοδου ":name"',
|
||||
'delete_budget' => 'Διαγραφή προϋπολογισμού ":name"',
|
||||
'delete_category' => 'Διαγραφή κατηγορίας ":name"',
|
||||
@@ -145,6 +146,7 @@ return [
|
||||
'object_group_areYouSure' => 'Είστε σίγουροι ότι θέλετε να διαγράψετε την ομάδα με τίτλο ":title";',
|
||||
'ruleGroup_areYouSure' => 'Είστε σίγουροι ότι θέλετε να διαγράψετε την ομάδα κανόνων με τίτλο ":title";',
|
||||
'budget_areYouSure' => 'Είστε σίγουροι ότι θέλετε να διαγράψετε τον προϋπολογισμό με όνομα ":name";',
|
||||
'webhook_areYouSure' => 'Are you sure you want to delete the webhook named ":title"?',
|
||||
'category_areYouSure' => 'Είστε σίγουροι ότι θέλετε να διαγράψετε την κατηγορία με όνομα ":name";',
|
||||
'recurring_areYouSure' => 'Είστε σίγουροι ότι θέλετε να διαγράψετε την επαναλαμβανόμενη συναλλαγή με τίτλο ":title";',
|
||||
'currency_areYouSure' => 'Είστε σίγουροι ότι θέλετε να διαγράψετε το νόμισμα με όνομα ":name";',
|
||||
@@ -246,4 +248,7 @@ return [
|
||||
'submitted' => 'Υποβλήθηκε',
|
||||
'key' => 'Κλειδί',
|
||||
'value' => 'Περιεχόμενο της εγγραφής',
|
||||
'webhook_delivery' => 'Delivery',
|
||||
'webhook_response' => 'Response',
|
||||
'webhook_trigger' => 'Trigger',
|
||||
];
|
||||
|
||||
@@ -76,7 +76,7 @@ return [
|
||||
'type' => 'Τύπος',
|
||||
'completed' => 'Ολοκληρώθηκε',
|
||||
'iban' => 'IBAN',
|
||||
'account_number' => 'Αριθμός λογαριασμού',
|
||||
'account_number' => 'Αριθμός λογαριασμού',
|
||||
'paid_current_period' => 'Πληρώθηκαν αυτή την περίοδο',
|
||||
'email' => 'Email',
|
||||
'registered_at' => 'Εγγράφηκε στις',
|
||||
@@ -138,4 +138,10 @@ return [
|
||||
'payment_info' => 'Πληροφορίες Πληρωμής',
|
||||
'expected_info' => 'Επόμενη αναμενόμενη συναλλαγή',
|
||||
'start_date' => 'Ημερομηνία έναρξης',
|
||||
'trigger' => 'Trigger',
|
||||
'response' => 'Response',
|
||||
'delivery' => 'Delivery',
|
||||
'url' => 'URL',
|
||||
'secret' => 'Secret',
|
||||
|
||||
];
|
||||
|
||||
@@ -41,6 +41,7 @@ return [
|
||||
|
||||
//'date_time' => '%B %e, %Y, @ %T',
|
||||
'date_time_js' => 'MMMM Do, YYYY, @ HH:mm:ss',
|
||||
'date_time_fns' => 'MMMM do, yyyy @ HH:mm:ss',
|
||||
|
||||
//'specific_day' => '%e %B %Y',
|
||||
'specific_day_js' => 'D MMMM YYYY',
|
||||
|
||||
@@ -229,16 +229,42 @@ return [
|
||||
// Webhooks
|
||||
'webhooks' => 'Webhooks',
|
||||
'webhooks_breadcrumb' => 'Webhooks',
|
||||
'webhook_trigger_STORE_TRANSACTION' => 'On transaction creation',
|
||||
'webhook_trigger_UPDATE_TRANSACTION' => 'On transaction update',
|
||||
'webhook_trigger_DESTROY_TRANSACTION' => 'On transaction delete',
|
||||
'webhook_response_TRANSACTIONS' => 'Account details',
|
||||
'webhook_response_ACCOUNTS' => 'Transaction details',
|
||||
'no_webhook_messages' => 'There are no webhook messages',
|
||||
'webhook_trigger_STORE_TRANSACTION' => 'After transaction creation',
|
||||
'webhook_trigger_UPDATE_TRANSACTION' => 'After transaction update',
|
||||
'webhook_trigger_DESTROY_TRANSACTION' => 'After transaction delete',
|
||||
'webhook_response_TRANSACTIONS' => 'Transaction details',
|
||||
'webhook_response_ACCOUNTS' => 'Account details',
|
||||
'webhook_response_none_NONE' => 'No details',
|
||||
'webhook_delivery_JSON' => 'JSON',
|
||||
'inspect' => 'Inspect',
|
||||
'create_new_webhook' => 'Create new webhook',
|
||||
'webhooks_create_breadcrumb' => 'Create new webhook',
|
||||
'webhook_trigger_form_help' => 'Indicate on what event the webhook wil trigger',
|
||||
'webhook_response_form_help' => 'Indicate what the webhook must submit to the URL.',
|
||||
'webhook_delivery_form_help' => 'Which format the webhook must deliver data in.',
|
||||
'webhook_active_form_help' => 'The webhook must be active or it won\'t be called.',
|
||||
'stored_new_webhook' => 'Stored new webhook ":title"',
|
||||
'delete_webhook' => 'Delete webhook',
|
||||
'deleted_webhook' => 'Deleted webhook ":title"',
|
||||
'edit_webhook' => 'Edit webhook ":title"',
|
||||
'updated_webhook' => 'Updated webhook ":title"',
|
||||
'edit_webhook_js' => 'Edit webhook "{title}"',
|
||||
'show_webhook' => 'Webhook ":title"',
|
||||
'webhook_was_triggered' => 'The webhook was triggered on the indicated transaction. You can refresh this page to see the results.',
|
||||
'webhook_messages' => 'Webhook message',
|
||||
'view_message' => 'View message',
|
||||
'view_attempts' => 'View failed attempts',
|
||||
'message_content_title' => 'Webhook message content',
|
||||
'message_content_help' => 'This is the content of the message that was sent (or tried) using this webhook.',
|
||||
'attempt_content_title' => 'Webhook attempts',
|
||||
'attempt_content_help' => 'These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.',
|
||||
'no_attempts' => 'There are no unsuccessful attempts. That\'s a good thing!',
|
||||
'webhook_attempt_at' => 'Attempt at {moment}',
|
||||
'logs' => 'Logs',
|
||||
'response' => 'Response',
|
||||
'visit_webhook_url' => 'Visit webhook URL',
|
||||
'reset_webhook_secret' => 'Reset webhook secret',
|
||||
|
||||
// API access
|
||||
'authorization_request' => 'Firefly III v:version Authorisation Request',
|
||||
@@ -297,6 +323,7 @@ return [
|
||||
// old
|
||||
|
||||
'search_modifier_date_on' => 'Transaction date is ":value"',
|
||||
'search_modifier_reconciled' => 'Transaction is reconciled',
|
||||
'search_modifier_id' => 'Transaction ID is ":value"',
|
||||
'search_modifier_date_before' => 'Transaction date is before or on ":value"',
|
||||
'search_modifier_date_after' => 'Transaction date is after or on ":value"',
|
||||
|
||||
@@ -125,6 +125,7 @@ return [
|
||||
'start' => 'Start of range',
|
||||
'end' => 'End of range',
|
||||
'delete_account' => 'Delete account ":name"',
|
||||
'delete_webhook' => 'Delete webhook ":title"',
|
||||
'delete_bill' => 'Delete bill ":name"',
|
||||
'delete_budget' => 'Delete budget ":name"',
|
||||
'delete_category' => 'Delete category ":name"',
|
||||
@@ -145,6 +146,7 @@ return [
|
||||
'object_group_areYouSure' => 'Are you sure you want to delete the group titled ":title"?',
|
||||
'ruleGroup_areYouSure' => 'Are you sure you want to delete the rule group titled ":title"?',
|
||||
'budget_areYouSure' => 'Are you sure you want to delete the budget named ":name"?',
|
||||
'webhook_areYouSure' => 'Are you sure you want to delete the webhook named ":title"?',
|
||||
'category_areYouSure' => 'Are you sure you want to delete the category named ":name"?',
|
||||
'recurring_areYouSure' => 'Are you sure you want to delete the recurring transaction titled ":title"?',
|
||||
'currency_areYouSure' => 'Are you sure you want to delete the currency named ":name"?',
|
||||
@@ -246,4 +248,7 @@ return [
|
||||
'submitted' => 'Submitted',
|
||||
'key' => 'Key',
|
||||
'value' => 'Content of record',
|
||||
'webhook_delivery' => 'Delivery',
|
||||
'webhook_response' => 'Response',
|
||||
'webhook_trigger' => 'Trigger',
|
||||
];
|
||||
|
||||
@@ -76,7 +76,7 @@ return [
|
||||
'type' => 'Type',
|
||||
'completed' => 'Completed',
|
||||
'iban' => 'IBAN',
|
||||
'account_number' => 'Account number',
|
||||
'account_number' => 'Account number',
|
||||
'paid_current_period' => 'Paid this period',
|
||||
'email' => 'Email',
|
||||
'registered_at' => 'Registered at',
|
||||
@@ -138,4 +138,10 @@ return [
|
||||
'payment_info' => 'Payment information',
|
||||
'expected_info' => 'Next expected transaction',
|
||||
'start_date' => 'Start date',
|
||||
'trigger' => 'Trigger',
|
||||
'response' => 'Response',
|
||||
'delivery' => 'Delivery',
|
||||
'url' => 'URL',
|
||||
'secret' => 'Secret',
|
||||
|
||||
];
|
||||
|
||||
@@ -263,6 +263,8 @@ return [
|
||||
'webhook_attempt_at' => 'Attempt at {moment}',
|
||||
'logs' => 'Logs',
|
||||
'response' => 'Response',
|
||||
'visit_webhook_url' => 'Visit webhook URL',
|
||||
'reset_webhook_secret' => 'Reset webhook secret',
|
||||
|
||||
// API access
|
||||
'authorization_request' => 'Firefly III v:version Authorization Request',
|
||||
@@ -321,6 +323,7 @@ return [
|
||||
// old
|
||||
|
||||
'search_modifier_date_on' => 'Transaction date is ":value"',
|
||||
'search_modifier_reconciled' => 'Transaction is reconciled',
|
||||
'search_modifier_id' => 'Transaction ID is ":value"',
|
||||
'search_modifier_date_before' => 'Transaction date is before or on ":value"',
|
||||
'search_modifier_date_after' => 'Transaction date is after or on ":value"',
|
||||
|
||||
@@ -76,7 +76,7 @@ return [
|
||||
'type' => 'Type',
|
||||
'completed' => 'Completed',
|
||||
'iban' => 'IBAN',
|
||||
'account_number' => 'Account number',
|
||||
'account_number' => 'Account number',
|
||||
'paid_current_period' => 'Paid this period',
|
||||
'email' => 'Email',
|
||||
'registered_at' => 'Registered at',
|
||||
@@ -138,4 +138,10 @@ return [
|
||||
'payment_info' => 'Payment information',
|
||||
'expected_info' => 'Next expected transaction',
|
||||
'start_date' => 'Start date',
|
||||
'trigger' => 'Trigger',
|
||||
'response' => 'Response',
|
||||
'delivery' => 'Delivery',
|
||||
'url' => 'URL',
|
||||
'secret' => 'Secret',
|
||||
|
||||
];
|
||||
|
||||
@@ -41,6 +41,7 @@ return [
|
||||
|
||||
//'date_time' => '%B %e, %Y, @ %T',
|
||||
'date_time_js' => 'D MMMM YYYY, HH:mm:ss',
|
||||
'date_time_fns' => 'MMMM do, yyyy @ HH:mm:ss',
|
||||
|
||||
//'specific_day' => '%e %B %Y',
|
||||
'specific_day_js' => 'D MMMM YYYY',
|
||||
|
||||
@@ -229,16 +229,42 @@ return [
|
||||
// Webhooks
|
||||
'webhooks' => 'Webhooks',
|
||||
'webhooks_breadcrumb' => 'Webhooks',
|
||||
'webhook_trigger_STORE_TRANSACTION' => 'On transaction creation',
|
||||
'webhook_trigger_UPDATE_TRANSACTION' => 'On transaction update',
|
||||
'webhook_trigger_DESTROY_TRANSACTION' => 'On transaction delete',
|
||||
'webhook_response_TRANSACTIONS' => 'Account details',
|
||||
'webhook_response_ACCOUNTS' => 'Transaction details',
|
||||
'webhook_response_none_NONE' => 'No details',
|
||||
'no_webhook_messages' => 'There are no webhook messages',
|
||||
'webhook_trigger_STORE_TRANSACTION' => 'After transaction creation',
|
||||
'webhook_trigger_UPDATE_TRANSACTION' => 'After transaction update',
|
||||
'webhook_trigger_DESTROY_TRANSACTION' => 'After transaction delete',
|
||||
'webhook_response_TRANSACTIONS' => 'Transaction details',
|
||||
'webhook_response_ACCOUNTS' => 'Account details',
|
||||
'webhook_response_none_NONE' => 'Sin datos',
|
||||
'webhook_delivery_JSON' => 'JSON',
|
||||
'inspect' => 'Inspect',
|
||||
'create_new_webhook' => 'Create new webhook',
|
||||
'webhooks_create_breadcrumb' => 'Create new webhook',
|
||||
'inspect' => 'Examinar',
|
||||
'create_new_webhook' => 'Crear un nuevo webhook',
|
||||
'webhooks_create_breadcrumb' => 'Crear un nuevo webhook',
|
||||
'webhook_trigger_form_help' => 'Indicate on what event the webhook wil trigger',
|
||||
'webhook_response_form_help' => 'Indicate what the webhook must submit to the URL.',
|
||||
'webhook_delivery_form_help' => 'Which format the webhook must deliver data in.',
|
||||
'webhook_active_form_help' => 'The webhook must be active or it won\'t be called.',
|
||||
'stored_new_webhook' => 'Stored new webhook ":title"',
|
||||
'delete_webhook' => 'Delete webhook',
|
||||
'deleted_webhook' => 'Deleted webhook ":title"',
|
||||
'edit_webhook' => 'Edit webhook ":title"',
|
||||
'updated_webhook' => 'Updated webhook ":title"',
|
||||
'edit_webhook_js' => 'Edit webhook "{title}"',
|
||||
'show_webhook' => 'Webhook ":title"',
|
||||
'webhook_was_triggered' => 'The webhook was triggered on the indicated transaction. You can refresh this page to see the results.',
|
||||
'webhook_messages' => 'Webhook message',
|
||||
'view_message' => 'View message',
|
||||
'view_attempts' => 'View failed attempts',
|
||||
'message_content_title' => 'Webhook message content',
|
||||
'message_content_help' => 'This is the content of the message that was sent (or tried) using this webhook.',
|
||||
'attempt_content_title' => 'Webhook attempts',
|
||||
'attempt_content_help' => 'These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.',
|
||||
'no_attempts' => 'There are no unsuccessful attempts. That\'s a good thing!',
|
||||
'webhook_attempt_at' => 'Attempt at {moment}',
|
||||
'logs' => 'Logs',
|
||||
'response' => 'Response',
|
||||
'visit_webhook_url' => 'Visit webhook URL',
|
||||
'reset_webhook_secret' => 'Reset webhook secret',
|
||||
|
||||
// API access
|
||||
'authorization_request' => 'Firefly III v:version Solicitud de autorización',
|
||||
@@ -297,6 +323,7 @@ return [
|
||||
// old
|
||||
|
||||
'search_modifier_date_on' => 'La fecha de la transacción es ":value"',
|
||||
'search_modifier_reconciled' => 'Transaction is reconciled',
|
||||
'search_modifier_id' => 'El ID de la transacción es ":value"',
|
||||
'search_modifier_date_before' => 'La fecha de la transacción es anterior al ":value"',
|
||||
'search_modifier_date_after' => 'La fecha de la transacción es posterior al ":value"',
|
||||
|
||||
@@ -125,6 +125,7 @@ return [
|
||||
'start' => 'Inicio del rango',
|
||||
'end' => 'Final del rango',
|
||||
'delete_account' => 'Borrar cuenta ":name"',
|
||||
'delete_webhook' => 'Delete webhook ":title"',
|
||||
'delete_bill' => 'Eliminar factura ":name"',
|
||||
'delete_budget' => 'Eliminar presupuesto ":name"',
|
||||
'delete_category' => 'Eliminar categoría ":name"',
|
||||
@@ -145,6 +146,7 @@ return [
|
||||
'object_group_areYouSure' => '¿Seguro que quieres eliminar el grupo titulado ":title"?',
|
||||
'ruleGroup_areYouSure' => '¿Seguro que quieres eliminar el grupo de reglas titulado ":title"?',
|
||||
'budget_areYouSure' => '¿Seguro que quieres eliminar el presupuesto llamado ":name"?',
|
||||
'webhook_areYouSure' => 'Are you sure you want to delete the webhook named ":title"?',
|
||||
'category_areYouSure' => '¿Seguro que quieres eliminar la categoría llamada ":name"?',
|
||||
'recurring_areYouSure' => '¿Está seguro de que desea eliminar la transacción recurrente ":title"?',
|
||||
'currency_areYouSure' => '¿Está seguro que desea eliminar la moneda denominada ":name"?',
|
||||
@@ -246,4 +248,7 @@ return [
|
||||
'submitted' => 'Enviado',
|
||||
'key' => 'Clave',
|
||||
'value' => 'Contenido del registro',
|
||||
'webhook_delivery' => 'Delivery',
|
||||
'webhook_response' => 'Response',
|
||||
'webhook_trigger' => 'Trigger',
|
||||
];
|
||||
|
||||
@@ -76,7 +76,7 @@ return [
|
||||
'type' => 'Tipo',
|
||||
'completed' => 'Completado',
|
||||
'iban' => 'IBAN',
|
||||
'account_number' => 'Número de cuenta',
|
||||
'account_number' => 'Número de cuenta',
|
||||
'paid_current_period' => 'Pagado este período',
|
||||
'email' => 'Correo electrónico',
|
||||
'registered_at' => 'Registrado el',
|
||||
@@ -138,4 +138,10 @@ return [
|
||||
'payment_info' => 'Información del pago',
|
||||
'expected_info' => 'Siguiente transacción esperada',
|
||||
'start_date' => 'Fecha de inicio',
|
||||
'trigger' => 'Trigger',
|
||||
'response' => 'Response',
|
||||
'delivery' => 'Delivery',
|
||||
'url' => 'URL',
|
||||
'secret' => 'Secret',
|
||||
|
||||
];
|
||||
|
||||
@@ -141,8 +141,8 @@ return [
|
||||
'unique_piggy_bank_for_user' => 'En nombre de la hucha debe ser único.',
|
||||
'unique_object_group' => 'El nombre del grupo debe ser único',
|
||||
'starts_with' => 'El valor debe comenzar con :values.',
|
||||
'unique_webhook' => 'You already have a webhook with this combination of URL, trigger, response and delivery.',
|
||||
'unique_existing_webhook' => 'You already have another webhook this combination of URL, trigger, response and delivery.',
|
||||
'unique_webhook' => 'Ya existe un webhook con esta combinación de URL, condición, respuesta y método de entrega.',
|
||||
'unique_existing_webhook' => 'Ya existe otro webhook con esta combinación de URL, condición, respuesta y método de entrega.',
|
||||
'same_account_type' => 'Ambas cuentas deben ser del mismo tipo de cuenta',
|
||||
'same_account_currency' => 'Ambas cuentas deben tener la misma configuración de moneda',
|
||||
|
||||
|
||||
@@ -41,6 +41,7 @@ return [
|
||||
|
||||
//'date_time' => '%B %e, %Y, @ %T',
|
||||
'date_time_js' => 'MMMM Do, YYYY, @ HH:mm:ss',
|
||||
'date_time_fns' => 'MMMM do, yyyy @ HH:mm:ss',
|
||||
|
||||
//'specific_day' => '%e %B %Y',
|
||||
'specific_day_js' => 'D MMMM YYYY',
|
||||
|
||||
@@ -229,16 +229,42 @@ return [
|
||||
// Webhooks
|
||||
'webhooks' => 'Webhookit',
|
||||
'webhooks_breadcrumb' => 'Webhooks',
|
||||
'webhook_trigger_STORE_TRANSACTION' => 'On transaction creation',
|
||||
'webhook_trigger_UPDATE_TRANSACTION' => 'On transaction update',
|
||||
'webhook_trigger_DESTROY_TRANSACTION' => 'On transaction delete',
|
||||
'webhook_response_TRANSACTIONS' => 'Account details',
|
||||
'webhook_response_ACCOUNTS' => 'Transaction details',
|
||||
'no_webhook_messages' => 'There are no webhook messages',
|
||||
'webhook_trigger_STORE_TRANSACTION' => 'After transaction creation',
|
||||
'webhook_trigger_UPDATE_TRANSACTION' => 'After transaction update',
|
||||
'webhook_trigger_DESTROY_TRANSACTION' => 'After transaction delete',
|
||||
'webhook_response_TRANSACTIONS' => 'Transaction details',
|
||||
'webhook_response_ACCOUNTS' => 'Account details',
|
||||
'webhook_response_none_NONE' => 'No details',
|
||||
'webhook_delivery_JSON' => 'JSON',
|
||||
'inspect' => 'Inspect',
|
||||
'create_new_webhook' => 'Create new webhook',
|
||||
'webhooks_create_breadcrumb' => 'Create new webhook',
|
||||
'webhook_trigger_form_help' => 'Indicate on what event the webhook wil trigger',
|
||||
'webhook_response_form_help' => 'Indicate what the webhook must submit to the URL.',
|
||||
'webhook_delivery_form_help' => 'Which format the webhook must deliver data in.',
|
||||
'webhook_active_form_help' => 'The webhook must be active or it won\'t be called.',
|
||||
'stored_new_webhook' => 'Stored new webhook ":title"',
|
||||
'delete_webhook' => 'Delete webhook',
|
||||
'deleted_webhook' => 'Deleted webhook ":title"',
|
||||
'edit_webhook' => 'Edit webhook ":title"',
|
||||
'updated_webhook' => 'Updated webhook ":title"',
|
||||
'edit_webhook_js' => 'Edit webhook "{title}"',
|
||||
'show_webhook' => 'Webhook ":title"',
|
||||
'webhook_was_triggered' => 'The webhook was triggered on the indicated transaction. You can refresh this page to see the results.',
|
||||
'webhook_messages' => 'Webhook message',
|
||||
'view_message' => 'View message',
|
||||
'view_attempts' => 'View failed attempts',
|
||||
'message_content_title' => 'Webhook message content',
|
||||
'message_content_help' => 'This is the content of the message that was sent (or tried) using this webhook.',
|
||||
'attempt_content_title' => 'Webhook attempts',
|
||||
'attempt_content_help' => 'These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.',
|
||||
'no_attempts' => 'There are no unsuccessful attempts. That\'s a good thing!',
|
||||
'webhook_attempt_at' => 'Attempt at {moment}',
|
||||
'logs' => 'Logs',
|
||||
'response' => 'Response',
|
||||
'visit_webhook_url' => 'Visit webhook URL',
|
||||
'reset_webhook_secret' => 'Reset webhook secret',
|
||||
|
||||
// API access
|
||||
'authorization_request' => 'Firefly III v:version Valtuutus Pyyntö',
|
||||
@@ -297,6 +323,7 @@ return [
|
||||
// old
|
||||
|
||||
'search_modifier_date_on' => 'Tapahtumapäivä on ":value"',
|
||||
'search_modifier_reconciled' => 'Transaction is reconciled',
|
||||
'search_modifier_id' => 'Tapahtuman tunniste on ":value"',
|
||||
'search_modifier_date_before' => 'Tapahtumapäivä on joko ":value" tai sitä ennen',
|
||||
'search_modifier_date_after' => 'Tapahtumapäivä on joko ":value" tai sen jälkeen',
|
||||
|
||||
@@ -125,6 +125,7 @@ return [
|
||||
'start' => 'Valikoiman alku',
|
||||
'end' => 'Valikoiman loppu',
|
||||
'delete_account' => 'Poista tili ":name"',
|
||||
'delete_webhook' => 'Delete webhook ":title"',
|
||||
'delete_bill' => 'Poista lasku ":name"',
|
||||
'delete_budget' => 'Poista budjetti ":name"',
|
||||
'delete_category' => 'Poista kategoria ":name"',
|
||||
@@ -145,6 +146,7 @@ return [
|
||||
'object_group_areYouSure' => 'Haluatko varmasti poistaa ryhmän ":title"?',
|
||||
'ruleGroup_areYouSure' => 'Haluatko varmasti poistaa sääntöryhmän ":title"?',
|
||||
'budget_areYouSure' => 'Haluatko varmasti poistaa budjetin ":name"?',
|
||||
'webhook_areYouSure' => 'Are you sure you want to delete the webhook named ":title"?',
|
||||
'category_areYouSure' => 'Haluatko varmasti poistaa kategorian ":name"?',
|
||||
'recurring_areYouSure' => 'Haluatko varmasti poistaa toistuvan tapahtuman ":title"?',
|
||||
'currency_areYouSure' => 'Haluatko varmasti poistaa valuutan ":name"?',
|
||||
@@ -246,4 +248,7 @@ return [
|
||||
'submitted' => 'Lähetetty',
|
||||
'key' => 'Avain',
|
||||
'value' => 'Tietueen sisältö',
|
||||
'webhook_delivery' => 'Delivery',
|
||||
'webhook_response' => 'Response',
|
||||
'webhook_trigger' => 'Trigger',
|
||||
];
|
||||
|
||||
@@ -76,7 +76,7 @@ return [
|
||||
'type' => 'Tyyppi',
|
||||
'completed' => 'Suoritettu',
|
||||
'iban' => 'IBAN',
|
||||
'account_number' => 'Tilinumero',
|
||||
'account_number' => 'Tilinumero',
|
||||
'paid_current_period' => 'Maksettu tällä kaudella',
|
||||
'email' => 'Sähköposti',
|
||||
'registered_at' => 'Rekisteröity',
|
||||
@@ -138,4 +138,10 @@ return [
|
||||
'payment_info' => 'Maksutiedot',
|
||||
'expected_info' => 'Seuraava odotettu tapahtuma',
|
||||
'start_date' => 'Aloituspäivä',
|
||||
'trigger' => 'Trigger',
|
||||
'response' => 'Response',
|
||||
'delivery' => 'Delivery',
|
||||
'url' => 'URL',
|
||||
'secret' => 'Secret',
|
||||
|
||||
];
|
||||
|
||||
@@ -41,6 +41,7 @@ return [
|
||||
|
||||
//'date_time' => '%B %e, %Y, @ %T',
|
||||
'date_time_js' => 'Do MMMM YYYY, à HH:mm:ss',
|
||||
'date_time_fns' => 'MMMM do, yyyy @ HH:mm:ss',
|
||||
|
||||
//'specific_day' => '%e %B %Y',
|
||||
'specific_day_js' => 'D MMMM YYYY',
|
||||
|
||||
@@ -229,16 +229,42 @@ return [
|
||||
// Webhooks
|
||||
'webhooks' => 'Webhooks',
|
||||
'webhooks_breadcrumb' => 'Webhooks',
|
||||
'webhook_trigger_STORE_TRANSACTION' => 'On transaction creation',
|
||||
'webhook_trigger_UPDATE_TRANSACTION' => 'On transaction update',
|
||||
'webhook_trigger_DESTROY_TRANSACTION' => 'On transaction delete',
|
||||
'webhook_response_TRANSACTIONS' => 'Account details',
|
||||
'webhook_response_ACCOUNTS' => 'Transaction details',
|
||||
'webhook_response_none_NONE' => 'No details',
|
||||
'no_webhook_messages' => 'There are no webhook messages',
|
||||
'webhook_trigger_STORE_TRANSACTION' => 'After transaction creation',
|
||||
'webhook_trigger_UPDATE_TRANSACTION' => 'After transaction update',
|
||||
'webhook_trigger_DESTROY_TRANSACTION' => 'After transaction delete',
|
||||
'webhook_response_TRANSACTIONS' => 'Transaction details',
|
||||
'webhook_response_ACCOUNTS' => 'Account details',
|
||||
'webhook_response_none_NONE' => 'Aucun détail',
|
||||
'webhook_delivery_JSON' => 'JSON',
|
||||
'inspect' => 'Inspect',
|
||||
'create_new_webhook' => 'Create new webhook',
|
||||
'webhooks_create_breadcrumb' => 'Create new webhook',
|
||||
'inspect' => 'Inspecter',
|
||||
'create_new_webhook' => 'Créer un nouveau webhook',
|
||||
'webhooks_create_breadcrumb' => 'Créer un nouveau webhook',
|
||||
'webhook_trigger_form_help' => 'Indicate on what event the webhook wil trigger',
|
||||
'webhook_response_form_help' => 'Indicate what the webhook must submit to the URL.',
|
||||
'webhook_delivery_form_help' => 'Which format the webhook must deliver data in.',
|
||||
'webhook_active_form_help' => 'The webhook must be active or it won\'t be called.',
|
||||
'stored_new_webhook' => 'Stored new webhook ":title"',
|
||||
'delete_webhook' => 'Delete webhook',
|
||||
'deleted_webhook' => 'Deleted webhook ":title"',
|
||||
'edit_webhook' => 'Edit webhook ":title"',
|
||||
'updated_webhook' => 'Updated webhook ":title"',
|
||||
'edit_webhook_js' => 'Edit webhook "{title}"',
|
||||
'show_webhook' => 'Webhook ":title"',
|
||||
'webhook_was_triggered' => 'The webhook was triggered on the indicated transaction. You can refresh this page to see the results.',
|
||||
'webhook_messages' => 'Webhook message',
|
||||
'view_message' => 'View message',
|
||||
'view_attempts' => 'View failed attempts',
|
||||
'message_content_title' => 'Webhook message content',
|
||||
'message_content_help' => 'This is the content of the message that was sent (or tried) using this webhook.',
|
||||
'attempt_content_title' => 'Webhook attempts',
|
||||
'attempt_content_help' => 'These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.',
|
||||
'no_attempts' => 'There are no unsuccessful attempts. That\'s a good thing!',
|
||||
'webhook_attempt_at' => 'Attempt at {moment}',
|
||||
'logs' => 'Logs',
|
||||
'response' => 'Response',
|
||||
'visit_webhook_url' => 'Visit webhook URL',
|
||||
'reset_webhook_secret' => 'Reset webhook secret',
|
||||
|
||||
// API access
|
||||
'authorization_request' => 'Firefly III v:version demande d\'autorisation',
|
||||
@@ -297,6 +323,7 @@ return [
|
||||
// old
|
||||
|
||||
'search_modifier_date_on' => 'La date de l\'opération est ":value"',
|
||||
'search_modifier_reconciled' => 'Transaction is reconciled',
|
||||
'search_modifier_id' => 'L\'ID de l\'opération est ":value"',
|
||||
'search_modifier_date_before' => 'La date de l\'opération est avant ou le ":value"',
|
||||
'search_modifier_date_after' => 'La date de l\'opération est après ou le ":value"',
|
||||
|
||||
@@ -125,6 +125,7 @@ return [
|
||||
'start' => 'Début de l\'étendue',
|
||||
'end' => 'Fin de l\'étendue',
|
||||
'delete_account' => 'Supprimer le compte ":name"',
|
||||
'delete_webhook' => 'Delete webhook ":title"',
|
||||
'delete_bill' => 'Supprimer la facture ":name"',
|
||||
'delete_budget' => 'Supprimer le budget ":name"',
|
||||
'delete_category' => 'Supprimer la catégorie ":name"',
|
||||
@@ -145,6 +146,7 @@ return [
|
||||
'object_group_areYouSure' => 'Êtes-vous sûr de vouloir supprimer le groupe intitulé ":title" ?',
|
||||
'ruleGroup_areYouSure' => 'Êtes-vous sûr de vouloir supprimer le groupe de règles intitulé ":title" ?',
|
||||
'budget_areYouSure' => 'Êtes-vous sûr de vouloir supprimer le budget nommé ":name" ?',
|
||||
'webhook_areYouSure' => 'Are you sure you want to delete the webhook named ":title"?',
|
||||
'category_areYouSure' => 'Êtes-vous sûr de vouloir supprimer la catégorie nommée ":name" ?',
|
||||
'recurring_areYouSure' => 'Êtes-vous sûr de vouloir supprimer l\'opération périodique intitulée ":title" ?',
|
||||
'currency_areYouSure' => 'Êtes-vous sûr de vouloir supprimer la devise nommée ":name" ?',
|
||||
@@ -246,4 +248,7 @@ return [
|
||||
'submitted' => 'Envoyé',
|
||||
'key' => 'Clé',
|
||||
'value' => 'Contenu de l\'enregistrement',
|
||||
'webhook_delivery' => 'Delivery',
|
||||
'webhook_response' => 'Response',
|
||||
'webhook_trigger' => 'Trigger',
|
||||
];
|
||||
|
||||
@@ -76,7 +76,7 @@ return [
|
||||
'type' => 'Type',
|
||||
'completed' => 'Terminé',
|
||||
'iban' => 'Numéro IBAN',
|
||||
'account_number' => 'N° de compte',
|
||||
'account_number' => 'N° de compte',
|
||||
'paid_current_period' => 'Payé cette période',
|
||||
'email' => 'E-mail',
|
||||
'registered_at' => 'Enregistré le',
|
||||
@@ -138,4 +138,10 @@ return [
|
||||
'payment_info' => 'Informations sur le paiement',
|
||||
'expected_info' => 'Prochaine opération attendue',
|
||||
'start_date' => 'Date de début',
|
||||
'trigger' => 'Trigger',
|
||||
'response' => 'Response',
|
||||
'delivery' => 'Delivery',
|
||||
'url' => 'URL',
|
||||
'secret' => 'Secret',
|
||||
|
||||
];
|
||||
|
||||
@@ -141,8 +141,8 @@ return [
|
||||
'unique_piggy_bank_for_user' => 'Le nom de la tirelire doit être unique.',
|
||||
'unique_object_group' => 'Le nom du groupe doit être unique',
|
||||
'starts_with' => 'La valeur doit commencer par :values.',
|
||||
'unique_webhook' => 'You already have a webhook with this combination of URL, trigger, response and delivery.',
|
||||
'unique_existing_webhook' => 'You already have another webhook this combination of URL, trigger, response and delivery.',
|
||||
'unique_webhook' => 'Vous avez déjà un webhook avec cette combinaison d\'URL, de déclencheur, de réponse et de livraison.',
|
||||
'unique_existing_webhook' => 'Vous avez déjà un autre webhook cette combinaison d\'URL, de déclencheur, de réponse et de livraison.',
|
||||
'same_account_type' => 'Les deux comptes doivent être du même type',
|
||||
'same_account_currency' => 'Les deux comptes doivent avoir la même devise',
|
||||
|
||||
|
||||
@@ -41,6 +41,7 @@ return [
|
||||
|
||||
//'date_time' => '%B %e, %Y, @ %T',
|
||||
'date_time_js' => 'YYYY. MMMM DD. HH:mm:ss',
|
||||
'date_time_fns' => 'MMMM do, yyyy @ HH:mm:ss',
|
||||
|
||||
//'specific_day' => '%e %B %Y',
|
||||
'specific_day_js' => 'YYYY. MMMM DD.',
|
||||
|
||||
@@ -229,16 +229,42 @@ return [
|
||||
// Webhooks
|
||||
'webhooks' => 'Webhooks',
|
||||
'webhooks_breadcrumb' => 'Webhooks',
|
||||
'webhook_trigger_STORE_TRANSACTION' => 'On transaction creation',
|
||||
'webhook_trigger_UPDATE_TRANSACTION' => 'On transaction update',
|
||||
'webhook_trigger_DESTROY_TRANSACTION' => 'On transaction delete',
|
||||
'webhook_response_TRANSACTIONS' => 'Account details',
|
||||
'webhook_response_ACCOUNTS' => 'Transaction details',
|
||||
'no_webhook_messages' => 'There are no webhook messages',
|
||||
'webhook_trigger_STORE_TRANSACTION' => 'After transaction creation',
|
||||
'webhook_trigger_UPDATE_TRANSACTION' => 'After transaction update',
|
||||
'webhook_trigger_DESTROY_TRANSACTION' => 'After transaction delete',
|
||||
'webhook_response_TRANSACTIONS' => 'Transaction details',
|
||||
'webhook_response_ACCOUNTS' => 'Account details',
|
||||
'webhook_response_none_NONE' => 'No details',
|
||||
'webhook_delivery_JSON' => 'JSON',
|
||||
'inspect' => 'Inspect',
|
||||
'create_new_webhook' => 'Create new webhook',
|
||||
'webhooks_create_breadcrumb' => 'Create new webhook',
|
||||
'webhook_trigger_form_help' => 'Indicate on what event the webhook wil trigger',
|
||||
'webhook_response_form_help' => 'Indicate what the webhook must submit to the URL.',
|
||||
'webhook_delivery_form_help' => 'Which format the webhook must deliver data in.',
|
||||
'webhook_active_form_help' => 'The webhook must be active or it won\'t be called.',
|
||||
'stored_new_webhook' => 'Stored new webhook ":title"',
|
||||
'delete_webhook' => 'Delete webhook',
|
||||
'deleted_webhook' => 'Deleted webhook ":title"',
|
||||
'edit_webhook' => 'Edit webhook ":title"',
|
||||
'updated_webhook' => 'Updated webhook ":title"',
|
||||
'edit_webhook_js' => 'Edit webhook "{title}"',
|
||||
'show_webhook' => 'Webhook ":title"',
|
||||
'webhook_was_triggered' => 'The webhook was triggered on the indicated transaction. You can refresh this page to see the results.',
|
||||
'webhook_messages' => 'Webhook message',
|
||||
'view_message' => 'View message',
|
||||
'view_attempts' => 'View failed attempts',
|
||||
'message_content_title' => 'Webhook message content',
|
||||
'message_content_help' => 'This is the content of the message that was sent (or tried) using this webhook.',
|
||||
'attempt_content_title' => 'Webhook attempts',
|
||||
'attempt_content_help' => 'These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.',
|
||||
'no_attempts' => 'There are no unsuccessful attempts. That\'s a good thing!',
|
||||
'webhook_attempt_at' => 'Attempt at {moment}',
|
||||
'logs' => 'Logs',
|
||||
'response' => 'Response',
|
||||
'visit_webhook_url' => 'Visit webhook URL',
|
||||
'reset_webhook_secret' => 'Reset webhook secret',
|
||||
|
||||
// API access
|
||||
'authorization_request' => 'Firefly III v:version engedély kérelem',
|
||||
@@ -297,6 +323,7 @@ return [
|
||||
// old
|
||||
|
||||
'search_modifier_date_on' => 'Transaction date is ":value"',
|
||||
'search_modifier_reconciled' => 'Transaction is reconciled',
|
||||
'search_modifier_id' => 'Transaction ID is ":value"',
|
||||
'search_modifier_date_before' => 'Tranzakció dátuma :value előtt van',
|
||||
'search_modifier_date_after' => 'Tranzakció dátuma :value után van',
|
||||
|
||||
@@ -125,6 +125,7 @@ return [
|
||||
'start' => 'Tartomány kezdete',
|
||||
'end' => 'Tartomány vége',
|
||||
'delete_account' => '":name" bankszámla törlése',
|
||||
'delete_webhook' => 'Delete webhook ":title"',
|
||||
'delete_bill' => '":name" számla törlése',
|
||||
'delete_budget' => '":name" költségkeret törlése',
|
||||
'delete_category' => '":name" kategória törlése',
|
||||
@@ -145,6 +146,7 @@ return [
|
||||
'object_group_areYouSure' => 'Biztosan törölni szeretné a ":title" csoportot?',
|
||||
'ruleGroup_areYouSure' => '":title" szabálycsoportot biztosan törölhető?',
|
||||
'budget_areYouSure' => '":name" költségkeretet biztosan törölhető?',
|
||||
'webhook_areYouSure' => 'Are you sure you want to delete the webhook named ":title"?',
|
||||
'category_areYouSure' => '":name" kategória biztosan törölhető?',
|
||||
'recurring_areYouSure' => ':title ismétlődő tranzakció biztosan törölhető?',
|
||||
'currency_areYouSure' => '":name" pénznem biztosan törölhető?',
|
||||
@@ -246,4 +248,7 @@ return [
|
||||
'submitted' => 'Elküldött',
|
||||
'key' => 'Kulcs',
|
||||
'value' => 'Bejegyzés tartalma',
|
||||
'webhook_delivery' => 'Delivery',
|
||||
'webhook_response' => 'Response',
|
||||
'webhook_trigger' => 'Trigger',
|
||||
];
|
||||
|
||||
@@ -76,7 +76,7 @@ return [
|
||||
'type' => 'Típus',
|
||||
'completed' => 'Teljesített',
|
||||
'iban' => 'IBAN',
|
||||
'account_number' => 'Account number',
|
||||
'account_number' => 'Account number',
|
||||
'paid_current_period' => 'Fizetve ebben az időszakban',
|
||||
'email' => 'Email',
|
||||
'registered_at' => 'Regisztrálva:',
|
||||
@@ -138,4 +138,10 @@ return [
|
||||
'payment_info' => 'Payment information',
|
||||
'expected_info' => 'Next expected transaction',
|
||||
'start_date' => 'Start date',
|
||||
'trigger' => 'Trigger',
|
||||
'response' => 'Response',
|
||||
'delivery' => 'Delivery',
|
||||
'url' => 'URL',
|
||||
'secret' => 'Secret',
|
||||
|
||||
];
|
||||
|
||||
@@ -41,6 +41,7 @@ return [
|
||||
|
||||
//'date_time' => '%B %e, %Y, @ %T',
|
||||
'date_time_js' => 'DD MMMM YYYY, @ HH:mm:ss',
|
||||
'date_time_fns' => 'MMMM do, yyyy @ HH:mm:ss',
|
||||
|
||||
//'specific_day' => '%e %B %Y',
|
||||
'specific_day_js' => 'D MMMM YYYY',
|
||||
|
||||
@@ -229,16 +229,42 @@ return [
|
||||
// Webhooks
|
||||
'webhooks' => 'Webhooks',
|
||||
'webhooks_breadcrumb' => 'Webhooks',
|
||||
'webhook_trigger_STORE_TRANSACTION' => 'On transaction creation',
|
||||
'webhook_trigger_UPDATE_TRANSACTION' => 'On transaction update',
|
||||
'webhook_trigger_DESTROY_TRANSACTION' => 'On transaction delete',
|
||||
'webhook_response_TRANSACTIONS' => 'Account details',
|
||||
'webhook_response_ACCOUNTS' => 'Transaction details',
|
||||
'no_webhook_messages' => 'There are no webhook messages',
|
||||
'webhook_trigger_STORE_TRANSACTION' => 'After transaction creation',
|
||||
'webhook_trigger_UPDATE_TRANSACTION' => 'After transaction update',
|
||||
'webhook_trigger_DESTROY_TRANSACTION' => 'After transaction delete',
|
||||
'webhook_response_TRANSACTIONS' => 'Transaction details',
|
||||
'webhook_response_ACCOUNTS' => 'Account details',
|
||||
'webhook_response_none_NONE' => 'No details',
|
||||
'webhook_delivery_JSON' => 'JSON',
|
||||
'inspect' => 'Inspect',
|
||||
'create_new_webhook' => 'Create new webhook',
|
||||
'webhooks_create_breadcrumb' => 'Create new webhook',
|
||||
'webhook_trigger_form_help' => 'Indicate on what event the webhook wil trigger',
|
||||
'webhook_response_form_help' => 'Indicate what the webhook must submit to the URL.',
|
||||
'webhook_delivery_form_help' => 'Which format the webhook must deliver data in.',
|
||||
'webhook_active_form_help' => 'The webhook must be active or it won\'t be called.',
|
||||
'stored_new_webhook' => 'Stored new webhook ":title"',
|
||||
'delete_webhook' => 'Delete webhook',
|
||||
'deleted_webhook' => 'Deleted webhook ":title"',
|
||||
'edit_webhook' => 'Edit webhook ":title"',
|
||||
'updated_webhook' => 'Updated webhook ":title"',
|
||||
'edit_webhook_js' => 'Edit webhook "{title}"',
|
||||
'show_webhook' => 'Webhook ":title"',
|
||||
'webhook_was_triggered' => 'The webhook was triggered on the indicated transaction. You can refresh this page to see the results.',
|
||||
'webhook_messages' => 'Webhook message',
|
||||
'view_message' => 'View message',
|
||||
'view_attempts' => 'View failed attempts',
|
||||
'message_content_title' => 'Webhook message content',
|
||||
'message_content_help' => 'This is the content of the message that was sent (or tried) using this webhook.',
|
||||
'attempt_content_title' => 'Webhook attempts',
|
||||
'attempt_content_help' => 'These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.',
|
||||
'no_attempts' => 'There are no unsuccessful attempts. That\'s a good thing!',
|
||||
'webhook_attempt_at' => 'Attempt at {moment}',
|
||||
'logs' => 'Logs',
|
||||
'response' => 'Response',
|
||||
'visit_webhook_url' => 'Visit webhook URL',
|
||||
'reset_webhook_secret' => 'Reset webhook secret',
|
||||
|
||||
// API access
|
||||
'authorization_request' => 'Firefly III v:version Permintaan Otorisasi',
|
||||
@@ -297,6 +323,7 @@ return [
|
||||
// old
|
||||
|
||||
'search_modifier_date_on' => 'Transaction date is ":value"',
|
||||
'search_modifier_reconciled' => 'Transaction is reconciled',
|
||||
'search_modifier_id' => 'Transaction ID is ":value"',
|
||||
'search_modifier_date_before' => 'Transaction date is before or on ":value"',
|
||||
'search_modifier_date_after' => 'Transaction date is after or on ":value"',
|
||||
|
||||
@@ -125,6 +125,7 @@ return [
|
||||
'start' => 'Awal rentang',
|
||||
'end' => 'Akhir rentang',
|
||||
'delete_account' => 'Delete account ":name"',
|
||||
'delete_webhook' => 'Delete webhook ":title"',
|
||||
'delete_bill' => 'Hapus tagihan ":name"',
|
||||
'delete_budget' => 'Hapus anggaran ":name"',
|
||||
'delete_category' => 'Hapus kategori ":name"',
|
||||
@@ -145,6 +146,7 @@ return [
|
||||
'object_group_areYouSure' => 'Apakah anda yakin ingin menghapus grup yang berjudul ":title"?',
|
||||
'ruleGroup_areYouSure' => 'Yakin ingin menghapus grup aturan yang berjudul ":title"?',
|
||||
'budget_areYouSure' => 'Yakin ingin menghapus anggaran dengan nama ":name"?',
|
||||
'webhook_areYouSure' => 'Are you sure you want to delete the webhook named ":title"?',
|
||||
'category_areYouSure' => 'Yakin ingin menghapus kategori yang bernama ":name"?',
|
||||
'recurring_areYouSure' => 'Apakah anda yakin ingin menghapus transaksi berulang berjudul ":title"?',
|
||||
'currency_areYouSure' => 'Yakin ingin menghapus mata uang dengan nama ":name"?',
|
||||
@@ -246,4 +248,7 @@ return [
|
||||
'submitted' => 'Sudah disimpan',
|
||||
'key' => 'Kunci',
|
||||
'value' => 'Isi konten',
|
||||
'webhook_delivery' => 'Delivery',
|
||||
'webhook_response' => 'Response',
|
||||
'webhook_trigger' => 'Trigger',
|
||||
];
|
||||
|
||||
@@ -76,7 +76,7 @@ return [
|
||||
'type' => 'Jenis',
|
||||
'completed' => 'Lengkap',
|
||||
'iban' => 'IBAN',
|
||||
'account_number' => 'Account number',
|
||||
'account_number' => 'Account number',
|
||||
'paid_current_period' => 'Membayar periode ini',
|
||||
'email' => 'Email',
|
||||
'registered_at' => 'Terdaftar di',
|
||||
@@ -138,4 +138,10 @@ return [
|
||||
'payment_info' => 'Informasi Pembayaran',
|
||||
'expected_info' => 'Perkiraan transaksi berikutnya',
|
||||
'start_date' => 'Tanggal mulai',
|
||||
'trigger' => 'Trigger',
|
||||
'response' => 'Response',
|
||||
'delivery' => 'Delivery',
|
||||
'url' => 'URL',
|
||||
'secret' => 'Secret',
|
||||
|
||||
];
|
||||
|
||||
@@ -41,6 +41,7 @@ return [
|
||||
|
||||
//'date_time' => '%B %e, %Y, @ %T',
|
||||
'date_time_js' => 'D MMMM YYYY, HH:mm:ss',
|
||||
'date_time_fns' => 'MMMM do, yyyy @ HH:mm:ss',
|
||||
|
||||
//'specific_day' => '%e %B %Y',
|
||||
'specific_day_js' => 'D MMMM YYYY',
|
||||
|
||||
@@ -228,17 +228,43 @@ return [
|
||||
|
||||
// Webhooks
|
||||
'webhooks' => 'Webhook',
|
||||
'webhooks_breadcrumb' => 'Webhooks',
|
||||
'webhook_trigger_STORE_TRANSACTION' => 'On transaction creation',
|
||||
'webhook_trigger_UPDATE_TRANSACTION' => 'On transaction update',
|
||||
'webhook_trigger_DESTROY_TRANSACTION' => 'On transaction delete',
|
||||
'webhook_response_TRANSACTIONS' => 'Account details',
|
||||
'webhook_response_ACCOUNTS' => 'Transaction details',
|
||||
'webhook_response_none_NONE' => 'No details',
|
||||
'webhooks_breadcrumb' => 'Webhook',
|
||||
'no_webhook_messages' => 'There are no webhook messages',
|
||||
'webhook_trigger_STORE_TRANSACTION' => 'After transaction creation',
|
||||
'webhook_trigger_UPDATE_TRANSACTION' => 'After transaction update',
|
||||
'webhook_trigger_DESTROY_TRANSACTION' => 'After transaction delete',
|
||||
'webhook_response_TRANSACTIONS' => 'Transaction details',
|
||||
'webhook_response_ACCOUNTS' => 'Account details',
|
||||
'webhook_response_none_NONE' => 'Nessun dettaglio',
|
||||
'webhook_delivery_JSON' => 'JSON',
|
||||
'inspect' => 'Inspect',
|
||||
'create_new_webhook' => 'Create new webhook',
|
||||
'webhooks_create_breadcrumb' => 'Create new webhook',
|
||||
'inspect' => 'Ispeziona',
|
||||
'create_new_webhook' => 'Crea nuovo webhook',
|
||||
'webhooks_create_breadcrumb' => 'Crea nuovo webhook',
|
||||
'webhook_trigger_form_help' => 'Indicate on what event the webhook wil trigger',
|
||||
'webhook_response_form_help' => 'Indicate what the webhook must submit to the URL.',
|
||||
'webhook_delivery_form_help' => 'Which format the webhook must deliver data in.',
|
||||
'webhook_active_form_help' => 'The webhook must be active or it won\'t be called.',
|
||||
'stored_new_webhook' => 'Stored new webhook ":title"',
|
||||
'delete_webhook' => 'Delete webhook',
|
||||
'deleted_webhook' => 'Deleted webhook ":title"',
|
||||
'edit_webhook' => 'Edit webhook ":title"',
|
||||
'updated_webhook' => 'Updated webhook ":title"',
|
||||
'edit_webhook_js' => 'Edit webhook "{title}"',
|
||||
'show_webhook' => 'Webhook ":title"',
|
||||
'webhook_was_triggered' => 'The webhook was triggered on the indicated transaction. You can refresh this page to see the results.',
|
||||
'webhook_messages' => 'Webhook message',
|
||||
'view_message' => 'View message',
|
||||
'view_attempts' => 'View failed attempts',
|
||||
'message_content_title' => 'Webhook message content',
|
||||
'message_content_help' => 'This is the content of the message that was sent (or tried) using this webhook.',
|
||||
'attempt_content_title' => 'Webhook attempts',
|
||||
'attempt_content_help' => 'These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.',
|
||||
'no_attempts' => 'There are no unsuccessful attempts. That\'s a good thing!',
|
||||
'webhook_attempt_at' => 'Attempt at {moment}',
|
||||
'logs' => 'Logs',
|
||||
'response' => 'Response',
|
||||
'visit_webhook_url' => 'Visit webhook URL',
|
||||
'reset_webhook_secret' => 'Reset webhook secret',
|
||||
|
||||
// API access
|
||||
'authorization_request' => 'Firefly III v:version Richiesta Autorizzazione',
|
||||
@@ -297,6 +323,7 @@ return [
|
||||
// old
|
||||
|
||||
'search_modifier_date_on' => 'La data della transazione è ":value"',
|
||||
'search_modifier_reconciled' => 'Transaction is reconciled',
|
||||
'search_modifier_id' => 'L\'ID della transazione è ":value"',
|
||||
'search_modifier_date_before' => 'La data della transazione è antecedente o uguale a ":value"',
|
||||
'search_modifier_date_after' => 'La data della transazione è successiva o uguale a ":value"',
|
||||
|
||||
@@ -125,6 +125,7 @@ return [
|
||||
'start' => 'Inizio intervallo',
|
||||
'end' => 'Fine intervallo',
|
||||
'delete_account' => 'Elimina conto ":name"',
|
||||
'delete_webhook' => 'Delete webhook ":title"',
|
||||
'delete_bill' => 'Elimina bolletta ":name"',
|
||||
'delete_budget' => 'Elimina budget ":name"',
|
||||
'delete_category' => 'Elimina categoria ":name"',
|
||||
@@ -145,6 +146,7 @@ return [
|
||||
'object_group_areYouSure' => 'Sei sicuro di voler eliminare il gruppo ":title"?',
|
||||
'ruleGroup_areYouSure' => 'Sei sicuro di voler eliminare il gruppo regole ":title"?',
|
||||
'budget_areYouSure' => 'Sei sicuro di voler eliminare il budget ":name"?',
|
||||
'webhook_areYouSure' => 'Are you sure you want to delete the webhook named ":title"?',
|
||||
'category_areYouSure' => 'Sei sicuro di voler eliminare categoria ":name"?',
|
||||
'recurring_areYouSure' => 'Sei sicuro di voler eliminare la transazione ricorrente ":title"?',
|
||||
'currency_areYouSure' => 'Sei sicuro di voler eliminare la valuta ":name"?',
|
||||
@@ -246,4 +248,7 @@ return [
|
||||
'submitted' => 'Inviati',
|
||||
'key' => 'Chiave',
|
||||
'value' => 'Contenuto dei dati',
|
||||
'webhook_delivery' => 'Delivery',
|
||||
'webhook_response' => 'Response',
|
||||
'webhook_trigger' => 'Trigger',
|
||||
];
|
||||
|
||||
@@ -76,7 +76,7 @@ return [
|
||||
'type' => 'Tipo',
|
||||
'completed' => 'Completato',
|
||||
'iban' => 'IBAN',
|
||||
'account_number' => 'Numero conto',
|
||||
'account_number' => 'Numero conto',
|
||||
'paid_current_period' => 'Pagati in questo periodo',
|
||||
'email' => 'Email',
|
||||
'registered_at' => 'Registrato il',
|
||||
@@ -138,4 +138,10 @@ return [
|
||||
'payment_info' => 'Informazioni di pagamento',
|
||||
'expected_info' => 'Prossima transazione attesa',
|
||||
'start_date' => 'Data inizio',
|
||||
'trigger' => 'Trigger',
|
||||
'response' => 'Response',
|
||||
'delivery' => 'Delivery',
|
||||
'url' => 'URL',
|
||||
'secret' => 'Secret',
|
||||
|
||||
];
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user