Merge branch '2.3' into 2.4
This commit is contained in:
@@ -106,8 +106,8 @@ class SendIncidentEmailNotificationHandler
|
|||||||
$component = AutoPresenter::decorate($event->incident->component);
|
$component = AutoPresenter::decorate($event->incident->component);
|
||||||
|
|
||||||
$mail = [
|
$mail = [
|
||||||
'email' => $subscriber->email,
|
'email' => $subscriber->email,
|
||||||
'subject' => trans('cachet.subscriber.email.incident.subject', [
|
'subject' => trans('cachet.subscriber.email.incident.subject', [
|
||||||
'status' => $incident->human_status,
|
'status' => $incident->human_status,
|
||||||
'name' => $incident->name,
|
'name' => $incident->name,
|
||||||
]),
|
]),
|
||||||
|
|||||||
@@ -106,9 +106,9 @@ class SendMaintenanceEmailNotificationHandler
|
|||||||
$component = AutoPresenter::decorate($event->incident->component);
|
$component = AutoPresenter::decorate($event->incident->component);
|
||||||
|
|
||||||
$mail = [
|
$mail = [
|
||||||
'email' => $subscriber->email,
|
'email' => $subscriber->email,
|
||||||
'subject' => trans('cachet.subscriber.email.maintenance.subject', [
|
'subject' => trans('cachet.subscriber.email.maintenance.subject', [
|
||||||
'name' => $incident->name,
|
'name' => $incident->name,
|
||||||
]),
|
]),
|
||||||
'has_component' => ($event->incident->component) ? true : false,
|
'has_component' => ($event->incident->component) ? true : false,
|
||||||
'component_name' => $component ? $component->name : null,
|
'component_name' => $component ? $component->name : null,
|
||||||
|
|||||||
@@ -46,9 +46,9 @@ class SendInviteUserEmailHandler
|
|||||||
public function handle(UserWasInvitedEvent $event)
|
public function handle(UserWasInvitedEvent $event)
|
||||||
{
|
{
|
||||||
$mail = [
|
$mail = [
|
||||||
'email' => $event->invite->email,
|
'email' => $event->invite->email,
|
||||||
'subject' => 'You have been invited.',
|
'subject' => 'You have been invited.',
|
||||||
'link' => route('signup.invite', ['code' => $event->invite->code]),
|
'link' => route('signup.invite', ['code' => $event->invite->code]),
|
||||||
];
|
];
|
||||||
|
|
||||||
$this->mailer->queue([
|
$this->mailer->queue([
|
||||||
|
|||||||
@@ -48,11 +48,11 @@ class SetupController extends Controller
|
|||||||
* @var string[]
|
* @var string[]
|
||||||
*/
|
*/
|
||||||
protected $mailDrivers = [
|
protected $mailDrivers = [
|
||||||
'smtp' => 'SMTP',
|
'smtp' => 'SMTP',
|
||||||
'mail' => 'Mail',
|
'mail' => 'Mail',
|
||||||
'sendmail' => 'Sendmail',
|
'sendmail' => 'Sendmail',
|
||||||
'mailgun' => 'Mailgun',
|
'mailgun' => 'Mailgun',
|
||||||
'mandrill' => 'Mandrill',
|
'mandrill' => 'Mandrill',
|
||||||
// 'ses' => 'Amazon SES', this will be available only if aws/aws-sdk-php is installed
|
// 'ses' => 'Amazon SES', this will be available only if aws/aws-sdk-php is installed
|
||||||
'sparkpost' => 'SparkPost',
|
'sparkpost' => 'SparkPost',
|
||||||
'log' => 'Log (Testing)',
|
'log' => 'Log (Testing)',
|
||||||
|
|||||||
@@ -131,7 +131,7 @@ class DashboardRoutes
|
|||||||
$router->delete('{incident_template}/delete', 'IncidentController@deleteTemplateAction');
|
$router->delete('{incident_template}/delete', 'IncidentController@deleteTemplateAction');
|
||||||
});
|
});
|
||||||
|
|
||||||
$router->group(['as' => 'subscribers.', 'prefix' => 'subscribers'], function (Registrar $router) {
|
$router->group(['as' => 'subscribers.', 'prefix' => 'subscribers'], function (Registrar $router) {
|
||||||
$router->get('/', [
|
$router->get('/', [
|
||||||
'as' => 'index',
|
'as' => 'index',
|
||||||
'uses' => 'SubscriberController@showSubscribers',
|
'uses' => 'SubscriberController@showSubscribers',
|
||||||
@@ -144,7 +144,7 @@ class DashboardRoutes
|
|||||||
$router->delete('{subscriber}/delete', 'SubscriberController@deleteSubscriberAction');
|
$router->delete('{subscriber}/delete', 'SubscriberController@deleteSubscriberAction');
|
||||||
});
|
});
|
||||||
|
|
||||||
$router->group(['as' => 'metrics.', 'prefix' => 'metrics'], function (Registrar $router) {
|
$router->group(['as' => 'metrics.', 'prefix' => 'metrics'], function (Registrar $router) {
|
||||||
$router->get('/', [
|
$router->get('/', [
|
||||||
'as' => 'index',
|
'as' => 'index',
|
||||||
'uses' => 'MetricController@showMetrics',
|
'uses' => 'MetricController@showMetrics',
|
||||||
|
|||||||
@@ -134,6 +134,13 @@ class CommandSubscriber
|
|||||||
|
|
||||||
$command->line('Settings cache cleared!');
|
$command->line('Settings cache cleared!');
|
||||||
|
|
||||||
|
// SQLite does not backup.
|
||||||
|
if ($this->config->get('database.default') === 'sqlite') {
|
||||||
|
$command->line('Backup skipped: SQLite is not supported.');
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$command->line('Backing up database...');
|
$command->line('Backing up database...');
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|||||||
@@ -14,7 +14,6 @@ use Illuminate\Support\Facades\Request;
|
|||||||
use Jenssegers\Date\Date;
|
use Jenssegers\Date\Date;
|
||||||
|
|
||||||
if (!function_exists('set_active')) {
|
if (!function_exists('set_active')) {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set active class if request is in path.
|
* Set active class if request is in path.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -20,6 +20,7 @@
|
|||||||
],
|
],
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=5.5.9",
|
"php": ">=5.5.9",
|
||||||
|
"ext-xml": "*",
|
||||||
"laravel/framework": "5.2.39",
|
"laravel/framework": "5.2.39",
|
||||||
"alt-three/badger": "^3.1",
|
"alt-three/badger": "^3.1",
|
||||||
"alt-three/bus": "^1.1",
|
"alt-three/bus": "^1.1",
|
||||||
|
|||||||
Generated
+83
-81
@@ -4,8 +4,8 @@
|
|||||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
|
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
|
||||||
"This file is @generated automatically"
|
"This file is @generated automatically"
|
||||||
],
|
],
|
||||||
"hash": "efee15cdcec498c266017d8b6b9dc40b",
|
"hash": "620cb80f29b93d4e6cf74e34ad35e39c",
|
||||||
"content-hash": "5e0dba0b123506042e11f77f15280b6e",
|
"content-hash": "1669c288238ee037a297e8ed1f2a536e",
|
||||||
"packages": [
|
"packages": [
|
||||||
{
|
{
|
||||||
"name": "alt-three/badger",
|
"name": "alt-three/badger",
|
||||||
@@ -325,16 +325,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "aws/aws-sdk-php",
|
"name": "aws/aws-sdk-php",
|
||||||
"version": "3.18.35",
|
"version": "3.18.37",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/aws/aws-sdk-php.git",
|
"url": "https://github.com/aws/aws-sdk-php.git",
|
||||||
"reference": "8133c4ce336c8cac97218546f896f491bb6ffd7e"
|
"reference": "0d4abd38caf09fbda9177e8c1fd2a9ec73d71d66"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/8133c4ce336c8cac97218546f896f491bb6ffd7e",
|
"url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/0d4abd38caf09fbda9177e8c1fd2a9ec73d71d66",
|
||||||
"reference": "8133c4ce336c8cac97218546f896f491bb6ffd7e",
|
"reference": "0d4abd38caf09fbda9177e8c1fd2a9ec73d71d66",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -401,7 +401,7 @@
|
|||||||
"s3",
|
"s3",
|
||||||
"sdk"
|
"sdk"
|
||||||
],
|
],
|
||||||
"time": "2016-07-29 01:07:59"
|
"time": "2016-08-04 21:27:47"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "backup-manager/backup-manager",
|
"name": "backup-manager/backup-manager",
|
||||||
@@ -1458,16 +1458,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "graham-campbell/exceptions",
|
"name": "graham-campbell/exceptions",
|
||||||
"version": "v8.7.0",
|
"version": "v8.8.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/GrahamCampbell/Laravel-Exceptions.git",
|
"url": "https://github.com/GrahamCampbell/Laravel-Exceptions.git",
|
||||||
"reference": "6610dfaeda39f9103d53eac4dc487ee59eb80894"
|
"reference": "e93f725d3637625897fe6ec30dc454cb23adb331"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/GrahamCampbell/Laravel-Exceptions/zipball/6610dfaeda39f9103d53eac4dc487ee59eb80894",
|
"url": "https://api.github.com/repos/GrahamCampbell/Laravel-Exceptions/zipball/e93f725d3637625897fe6ec30dc454cb23adb331",
|
||||||
"reference": "6610dfaeda39f9103d53eac4dc487ee59eb80894",
|
"reference": "e93f725d3637625897fe6ec30dc454cb23adb331",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -1523,7 +1523,7 @@
|
|||||||
"laravel",
|
"laravel",
|
||||||
"whoops"
|
"whoops"
|
||||||
],
|
],
|
||||||
"time": "2016-07-21 13:26:49"
|
"time": "2016-07-31 14:54:35"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "graham-campbell/markdown",
|
"name": "graham-campbell/markdown",
|
||||||
@@ -2217,16 +2217,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "league/flysystem",
|
"name": "league/flysystem",
|
||||||
"version": "1.0.25",
|
"version": "1.0.26",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/thephpleague/flysystem.git",
|
"url": "https://github.com/thephpleague/flysystem.git",
|
||||||
"reference": "a76afa4035931be0c78ca8efc6abf3902362f437"
|
"reference": "fb3b30dca320b36931ea878fea17ebe136fba1b0"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/a76afa4035931be0c78ca8efc6abf3902362f437",
|
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/fb3b30dca320b36931ea878fea17ebe136fba1b0",
|
||||||
"reference": "a76afa4035931be0c78ca8efc6abf3902362f437",
|
"reference": "fb3b30dca320b36931ea878fea17ebe136fba1b0",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -2296,7 +2296,7 @@
|
|||||||
"sftp",
|
"sftp",
|
||||||
"storage"
|
"storage"
|
||||||
],
|
],
|
||||||
"time": "2016-07-18 12:22:57"
|
"time": "2016-08-03 09:49:11"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "mccool/laravel-auto-presenter",
|
"name": "mccool/laravel-auto-presenter",
|
||||||
@@ -2362,16 +2362,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "monolog/monolog",
|
"name": "monolog/monolog",
|
||||||
"version": "1.20.0",
|
"version": "1.21.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/Seldaek/monolog.git",
|
"url": "https://github.com/Seldaek/monolog.git",
|
||||||
"reference": "55841909e2bcde01b5318c35f2b74f8ecc86e037"
|
"reference": "f42fbdfd53e306bda545845e4dbfd3e72edb4952"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/Seldaek/monolog/zipball/55841909e2bcde01b5318c35f2b74f8ecc86e037",
|
"url": "https://api.github.com/repos/Seldaek/monolog/zipball/f42fbdfd53e306bda545845e4dbfd3e72edb4952",
|
||||||
"reference": "55841909e2bcde01b5318c35f2b74f8ecc86e037",
|
"reference": "f42fbdfd53e306bda545845e4dbfd3e72edb4952",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -2436,7 +2436,7 @@
|
|||||||
"logging",
|
"logging",
|
||||||
"psr-3"
|
"psr-3"
|
||||||
],
|
],
|
||||||
"time": "2016-07-02 14:02:10"
|
"time": "2016-07-29 03:23:52"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "mtdowling/cron-expression",
|
"name": "mtdowling/cron-expression",
|
||||||
@@ -2739,16 +2739,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "psr/http-message",
|
"name": "psr/http-message",
|
||||||
"version": "1.0",
|
"version": "1.0.1",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/php-fig/http-message.git",
|
"url": "https://github.com/php-fig/http-message.git",
|
||||||
"reference": "85d63699f0dbedb190bbd4b0d2b9dc707ea4c298"
|
"reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/php-fig/http-message/zipball/85d63699f0dbedb190bbd4b0d2b9dc707ea4c298",
|
"url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
|
||||||
"reference": "85d63699f0dbedb190bbd4b0d2b9dc707ea4c298",
|
"reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -2776,6 +2776,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "Common interface for HTTP messages",
|
"description": "Common interface for HTTP messages",
|
||||||
|
"homepage": "https://github.com/php-fig/http-message",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"http",
|
"http",
|
||||||
"http-message",
|
"http-message",
|
||||||
@@ -2784,7 +2785,7 @@
|
|||||||
"request",
|
"request",
|
||||||
"response"
|
"response"
|
||||||
],
|
],
|
||||||
"time": "2015-05-04 20:22:00"
|
"time": "2016-08-06 14:39:51"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "psr/log",
|
"name": "psr/log",
|
||||||
@@ -3117,16 +3118,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/console",
|
"name": "symfony/console",
|
||||||
"version": "v3.0.8",
|
"version": "v3.0.9",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/console.git",
|
"url": "https://github.com/symfony/console.git",
|
||||||
"reference": "a7abb7153f6d1da47f87ec50274844e246b09d9f"
|
"reference": "926061e74229e935d3c5b4e9ba87237316c6693f"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/console/zipball/a7abb7153f6d1da47f87ec50274844e246b09d9f",
|
"url": "https://api.github.com/repos/symfony/console/zipball/926061e74229e935d3c5b4e9ba87237316c6693f",
|
||||||
"reference": "a7abb7153f6d1da47f87ec50274844e246b09d9f",
|
"reference": "926061e74229e935d3c5b4e9ba87237316c6693f",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -3173,11 +3174,11 @@
|
|||||||
],
|
],
|
||||||
"description": "Symfony Console Component",
|
"description": "Symfony Console Component",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"time": "2016-06-29 07:02:21"
|
"time": "2016-07-30 07:22:48"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/css-selector",
|
"name": "symfony/css-selector",
|
||||||
"version": "v3.1.2",
|
"version": "v3.1.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/css-selector.git",
|
"url": "https://github.com/symfony/css-selector.git",
|
||||||
@@ -3230,16 +3231,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/debug",
|
"name": "symfony/debug",
|
||||||
"version": "v3.0.8",
|
"version": "v3.0.9",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/debug.git",
|
"url": "https://github.com/symfony/debug.git",
|
||||||
"reference": "c54bc3539c3b87e86799533801e8ae0e971d78c2"
|
"reference": "697c527acd9ea1b2d3efac34d9806bf255278b0a"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/debug/zipball/c54bc3539c3b87e86799533801e8ae0e971d78c2",
|
"url": "https://api.github.com/repos/symfony/debug/zipball/697c527acd9ea1b2d3efac34d9806bf255278b0a",
|
||||||
"reference": "c54bc3539c3b87e86799533801e8ae0e971d78c2",
|
"reference": "697c527acd9ea1b2d3efac34d9806bf255278b0a",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -3283,20 +3284,20 @@
|
|||||||
],
|
],
|
||||||
"description": "Symfony Debug Component",
|
"description": "Symfony Debug Component",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"time": "2016-06-29 05:40:00"
|
"time": "2016-07-30 07:22:48"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/event-dispatcher",
|
"name": "symfony/event-dispatcher",
|
||||||
"version": "v3.1.2",
|
"version": "v3.1.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/event-dispatcher.git",
|
"url": "https://github.com/symfony/event-dispatcher.git",
|
||||||
"reference": "7f9839ede2070f53e7e2f0849b9bd14748c434c5"
|
"reference": "c0c00c80b3a69132c4e55c3e7db32b4a387615e5"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/7f9839ede2070f53e7e2f0849b9bd14748c434c5",
|
"url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/c0c00c80b3a69132c4e55c3e7db32b4a387615e5",
|
||||||
"reference": "7f9839ede2070f53e7e2f0849b9bd14748c434c5",
|
"reference": "c0c00c80b3a69132c4e55c3e7db32b4a387615e5",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -3343,11 +3344,11 @@
|
|||||||
],
|
],
|
||||||
"description": "Symfony EventDispatcher Component",
|
"description": "Symfony EventDispatcher Component",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"time": "2016-06-29 05:41:56"
|
"time": "2016-07-19 10:45:57"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/finder",
|
"name": "symfony/finder",
|
||||||
"version": "v3.0.8",
|
"version": "v3.0.9",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/finder.git",
|
"url": "https://github.com/symfony/finder.git",
|
||||||
@@ -3396,16 +3397,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/http-foundation",
|
"name": "symfony/http-foundation",
|
||||||
"version": "v3.0.8",
|
"version": "v3.0.9",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/http-foundation.git",
|
"url": "https://github.com/symfony/http-foundation.git",
|
||||||
"reference": "1341139f906d295baa4f4abd55293d07e25a065a"
|
"reference": "49ba00f8ede742169cb6b70abe33243f4d673f82"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/1341139f906d295baa4f4abd55293d07e25a065a",
|
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/49ba00f8ede742169cb6b70abe33243f4d673f82",
|
||||||
"reference": "1341139f906d295baa4f4abd55293d07e25a065a",
|
"reference": "49ba00f8ede742169cb6b70abe33243f4d673f82",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -3445,20 +3446,20 @@
|
|||||||
],
|
],
|
||||||
"description": "Symfony HttpFoundation Component",
|
"description": "Symfony HttpFoundation Component",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"time": "2016-06-29 07:02:21"
|
"time": "2016-07-17 13:54:30"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/http-kernel",
|
"name": "symfony/http-kernel",
|
||||||
"version": "v3.0.8",
|
"version": "v3.0.9",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/http-kernel.git",
|
"url": "https://github.com/symfony/http-kernel.git",
|
||||||
"reference": "177b63b2d50b63fa6d82ea41359ed9928cc7a1fb"
|
"reference": "d97ba4425e36e79c794e7d14ff36f00f081b37b3"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/177b63b2d50b63fa6d82ea41359ed9928cc7a1fb",
|
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/d97ba4425e36e79c794e7d14ff36f00f081b37b3",
|
||||||
"reference": "177b63b2d50b63fa6d82ea41359ed9928cc7a1fb",
|
"reference": "d97ba4425e36e79c794e7d14ff36f00f081b37b3",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -3527,7 +3528,7 @@
|
|||||||
],
|
],
|
||||||
"description": "Symfony HttpKernel Component",
|
"description": "Symfony HttpKernel Component",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"time": "2016-06-30 16:30:17"
|
"time": "2016-07-30 09:10:37"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/polyfill-mbstring",
|
"name": "symfony/polyfill-mbstring",
|
||||||
@@ -3698,16 +3699,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/process",
|
"name": "symfony/process",
|
||||||
"version": "v3.0.8",
|
"version": "v3.0.9",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/process.git",
|
"url": "https://github.com/symfony/process.git",
|
||||||
"reference": "d7cde1f9d94d87060204f863779389b61c382eeb"
|
"reference": "768debc5996f599c4372b322d9061dba2a4bf505"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/process/zipball/d7cde1f9d94d87060204f863779389b61c382eeb",
|
"url": "https://api.github.com/repos/symfony/process/zipball/768debc5996f599c4372b322d9061dba2a4bf505",
|
||||||
"reference": "d7cde1f9d94d87060204f863779389b61c382eeb",
|
"reference": "768debc5996f599c4372b322d9061dba2a4bf505",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -3743,11 +3744,11 @@
|
|||||||
],
|
],
|
||||||
"description": "Symfony Process Component",
|
"description": "Symfony Process Component",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"time": "2016-06-29 05:40:00"
|
"time": "2016-07-28 11:13:34"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/routing",
|
"name": "symfony/routing",
|
||||||
"version": "v3.0.8",
|
"version": "v3.0.9",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/routing.git",
|
"url": "https://github.com/symfony/routing.git",
|
||||||
@@ -3822,16 +3823,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/translation",
|
"name": "symfony/translation",
|
||||||
"version": "v3.0.8",
|
"version": "v3.0.9",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/translation.git",
|
"url": "https://github.com/symfony/translation.git",
|
||||||
"reference": "6bf844e1ee3c820c012386c10427a5c67bbefec8"
|
"reference": "eee6c664853fd0576f21ae25725cfffeafe83f26"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/translation/zipball/6bf844e1ee3c820c012386c10427a5c67bbefec8",
|
"url": "https://api.github.com/repos/symfony/translation/zipball/eee6c664853fd0576f21ae25725cfffeafe83f26",
|
||||||
"reference": "6bf844e1ee3c820c012386c10427a5c67bbefec8",
|
"reference": "eee6c664853fd0576f21ae25725cfffeafe83f26",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -3882,20 +3883,20 @@
|
|||||||
],
|
],
|
||||||
"description": "Symfony Translation Component",
|
"description": "Symfony Translation Component",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"time": "2016-06-29 05:40:00"
|
"time": "2016-07-30 07:22:48"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/var-dumper",
|
"name": "symfony/var-dumper",
|
||||||
"version": "v3.0.8",
|
"version": "v3.0.9",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/var-dumper.git",
|
"url": "https://github.com/symfony/var-dumper.git",
|
||||||
"reference": "2f046e9a9d571f22cc8b26783564876713b06579"
|
"reference": "1f7e071aafc6676fcb6e3f0497f87c2397247377"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/2f046e9a9d571f22cc8b26783564876713b06579",
|
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/1f7e071aafc6676fcb6e3f0497f87c2397247377",
|
||||||
"reference": "2f046e9a9d571f22cc8b26783564876713b06579",
|
"reference": "1f7e071aafc6676fcb6e3f0497f87c2397247377",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -3945,7 +3946,7 @@
|
|||||||
"debug",
|
"debug",
|
||||||
"dump"
|
"dump"
|
||||||
],
|
],
|
||||||
"time": "2016-06-29 05:40:00"
|
"time": "2016-07-26 08:03:56"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "tijsverkoyen/css-to-inline-styles",
|
"name": "tijsverkoyen/css-to-inline-styles",
|
||||||
@@ -5455,16 +5456,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/dom-crawler",
|
"name": "symfony/dom-crawler",
|
||||||
"version": "v3.1.2",
|
"version": "v3.1.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/dom-crawler.git",
|
"url": "https://github.com/symfony/dom-crawler.git",
|
||||||
"reference": "99ec4a23330fcd0c8667095f3ef7aa204ffd9dc0"
|
"reference": "c7b9b8db3a6f2bac76dcd9a9db5446f2591897f9"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/dom-crawler/zipball/99ec4a23330fcd0c8667095f3ef7aa204ffd9dc0",
|
"url": "https://api.github.com/repos/symfony/dom-crawler/zipball/c7b9b8db3a6f2bac76dcd9a9db5446f2591897f9",
|
||||||
"reference": "99ec4a23330fcd0c8667095f3ef7aa204ffd9dc0",
|
"reference": "c7b9b8db3a6f2bac76dcd9a9db5446f2591897f9",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -5507,20 +5508,20 @@
|
|||||||
],
|
],
|
||||||
"description": "Symfony DomCrawler Component",
|
"description": "Symfony DomCrawler Component",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"time": "2016-06-29 05:41:56"
|
"time": "2016-07-26 08:04:17"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/yaml",
|
"name": "symfony/yaml",
|
||||||
"version": "v3.1.2",
|
"version": "v3.1.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/yaml.git",
|
"url": "https://github.com/symfony/yaml.git",
|
||||||
"reference": "2884c26ce4c1d61aebf423a8b912950fe7c764de"
|
"reference": "1819adf2066880c7967df7180f4f662b6f0567ac"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/yaml/zipball/2884c26ce4c1d61aebf423a8b912950fe7c764de",
|
"url": "https://api.github.com/repos/symfony/yaml/zipball/1819adf2066880c7967df7180f4f662b6f0567ac",
|
||||||
"reference": "2884c26ce4c1d61aebf423a8b912950fe7c764de",
|
"reference": "1819adf2066880c7967df7180f4f662b6f0567ac",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -5556,7 +5557,7 @@
|
|||||||
],
|
],
|
||||||
"description": "Symfony Yaml Component",
|
"description": "Symfony Yaml Component",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"time": "2016-06-29 05:41:56"
|
"time": "2016-07-17 14:02:08"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "webmozart/assert",
|
"name": "webmozart/assert",
|
||||||
@@ -5614,7 +5615,8 @@
|
|||||||
"prefer-stable": true,
|
"prefer-stable": true,
|
||||||
"prefer-lowest": false,
|
"prefer-lowest": false,
|
||||||
"platform": {
|
"platform": {
|
||||||
"php": ">=5.5.9"
|
"php": ">=5.5.9",
|
||||||
|
"ext-xml": "*"
|
||||||
},
|
},
|
||||||
"platform-dev": [],
|
"platform-dev": [],
|
||||||
"platform-overrides": {
|
"platform-overrides": {
|
||||||
|
|||||||
+2
-2
@@ -234,8 +234,8 @@ return [
|
|||||||
'Validator' => 'Illuminate\Support\Facades\Validator',
|
'Validator' => 'Illuminate\Support\Facades\Validator',
|
||||||
'View' => 'Illuminate\Support\Facades\View',
|
'View' => 'Illuminate\Support\Facades\View',
|
||||||
|
|
||||||
'Binput' => 'GrahamCampbell\Binput\Facades\Binput',
|
'Binput' => 'GrahamCampbell\Binput\Facades\Binput',
|
||||||
'Str' => 'Illuminate\Support\Str',
|
'Str' => 'Illuminate\Support\Str',
|
||||||
|
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|||||||
+16
-16
@@ -76,25 +76,25 @@ return [
|
|||||||
],
|
],
|
||||||
|
|
||||||
'pgsql' => [
|
'pgsql' => [
|
||||||
'driver' => 'pgsql',
|
'driver' => 'pgsql',
|
||||||
'host' => env('DB_HOST', null),
|
'host' => env('DB_HOST', null),
|
||||||
'database' => env('DB_DATABASE', null),
|
'database' => env('DB_DATABASE', null),
|
||||||
'username' => env('DB_USERNAME', null),
|
'username' => env('DB_USERNAME', null),
|
||||||
'password' => env('DB_PASSWORD', null),
|
'password' => env('DB_PASSWORD', null),
|
||||||
'port' => env('DB_PORT', '5432'),
|
'port' => env('DB_PORT', '5432'),
|
||||||
'charset' => 'utf8',
|
'charset' => 'utf8',
|
||||||
'prefix' => env('DB_PREFIX', null),
|
'prefix' => env('DB_PREFIX', null),
|
||||||
'schema' => env('DB_SCHEMA', 'public'),
|
'schema' => env('DB_SCHEMA', 'public'),
|
||||||
],
|
],
|
||||||
|
|
||||||
'sqlsrv' => [
|
'sqlsrv' => [
|
||||||
'driver' => 'sqlsrv',
|
'driver' => 'sqlsrv',
|
||||||
'host' => env('DB_HOST', null),
|
'host' => env('DB_HOST', null),
|
||||||
'database' => env('DB_DATABASE', null),
|
'database' => env('DB_DATABASE', null),
|
||||||
'username' => env('DB_USERNAME', null),
|
'username' => env('DB_USERNAME', null),
|
||||||
'password' => env('DB_PASSWORD', null),
|
'password' => env('DB_PASSWORD', null),
|
||||||
'port' => env('DB_PORT', null),
|
'port' => env('DB_PORT', null),
|
||||||
'prefix' => env('DB_PREFIX', null),
|
'prefix' => env('DB_PREFIX', null),
|
||||||
],
|
],
|
||||||
|
|
||||||
],
|
],
|
||||||
|
|||||||
+28
-28
@@ -11,35 +11,35 @@
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
// Enabled langs
|
// Enabled langs
|
||||||
'af' => [
|
'af' => [
|
||||||
'name' => 'Afrikaans',
|
'name' => 'Afrikaans',
|
||||||
'subset' => 'latin',
|
'subset' => 'latin',
|
||||||
],
|
],
|
||||||
'ar' => [
|
'ar' => [
|
||||||
'name' => 'Arabic',
|
'name' => 'Arabic',
|
||||||
'subset' => 'latin',
|
'subset' => 'latin',
|
||||||
],
|
],
|
||||||
'ca' => [
|
'ca' => [
|
||||||
'name' => 'Catalan',
|
'name' => 'Catalan',
|
||||||
'subset' => 'latin',
|
'subset' => 'latin',
|
||||||
],
|
],
|
||||||
'cs' => [
|
'cs' => [
|
||||||
'name' => 'Czech',
|
'name' => 'Czech',
|
||||||
'subset' => 'latin,latin-ext',
|
'subset' => 'latin,latin-ext',
|
||||||
],
|
],
|
||||||
'da' => [
|
'da' => [
|
||||||
'name' => 'Danish',
|
'name' => 'Danish',
|
||||||
'subset' => 'latin,latin-ext',
|
'subset' => 'latin,latin-ext',
|
||||||
],
|
],
|
||||||
'de' => [
|
'de' => [
|
||||||
'name' => 'Deutsch',
|
'name' => 'Deutsch',
|
||||||
'subset' => 'latin,latin-ext',
|
'subset' => 'latin,latin-ext',
|
||||||
],
|
],
|
||||||
'el' => [
|
'el' => [
|
||||||
'name' => 'Greek',
|
'name' => 'Greek',
|
||||||
'subset' => 'greek,greek-ext',
|
'subset' => 'greek,greek-ext',
|
||||||
],
|
],
|
||||||
'en' => [
|
'en' => [
|
||||||
'name' => 'English',
|
'name' => 'English',
|
||||||
'subset' => 'latin',
|
'subset' => 'latin',
|
||||||
],
|
],
|
||||||
@@ -47,55 +47,55 @@ return [
|
|||||||
'name' => 'CrowdIn - InContext Localization',
|
'name' => 'CrowdIn - InContext Localization',
|
||||||
'subset' => 'latin',
|
'subset' => 'latin',
|
||||||
],
|
],
|
||||||
'es' => [
|
'es' => [
|
||||||
'name' => 'Español',
|
'name' => 'Español',
|
||||||
'subset' => 'latin,latin-ext',
|
'subset' => 'latin,latin-ext',
|
||||||
],
|
],
|
||||||
'fa' => [
|
'fa' => [
|
||||||
'name' => 'Persian',
|
'name' => 'Persian',
|
||||||
'subset' => 'latin',
|
'subset' => 'latin',
|
||||||
],
|
],
|
||||||
'fi' => [
|
'fi' => [
|
||||||
'name' => 'Finnish',
|
'name' => 'Finnish',
|
||||||
'subset' => 'latin,latin-ext',
|
'subset' => 'latin,latin-ext',
|
||||||
],
|
],
|
||||||
'fr' => [
|
'fr' => [
|
||||||
'name' => 'Français',
|
'name' => 'Français',
|
||||||
'subset' => 'latin,latin-ext',
|
'subset' => 'latin,latin-ext',
|
||||||
],
|
],
|
||||||
'he' => [
|
'he' => [
|
||||||
'name' => 'Hebrew',
|
'name' => 'Hebrew',
|
||||||
'subset' => 'latin',
|
'subset' => 'latin',
|
||||||
],
|
],
|
||||||
'hu' => [
|
'hu' => [
|
||||||
'name' => 'Hungarian',
|
'name' => 'Hungarian',
|
||||||
'subset' => 'latin,latin-ext',
|
'subset' => 'latin,latin-ext',
|
||||||
],
|
],
|
||||||
'id' => [
|
'id' => [
|
||||||
'name' => 'Indonesian',
|
'name' => 'Indonesian',
|
||||||
'subset' => 'latin',
|
'subset' => 'latin',
|
||||||
],
|
],
|
||||||
'it' => [
|
'it' => [
|
||||||
'name' => 'Italiano',
|
'name' => 'Italiano',
|
||||||
'subset' => 'latin,latin-ext',
|
'subset' => 'latin,latin-ext',
|
||||||
],
|
],
|
||||||
'ja' => [
|
'ja' => [
|
||||||
'name' => 'Japanese',
|
'name' => 'Japanese',
|
||||||
'subset' => 'latin',
|
'subset' => 'latin',
|
||||||
],
|
],
|
||||||
'ko' => [
|
'ko' => [
|
||||||
'name' => '한글',
|
'name' => '한글',
|
||||||
'subset' => 'latin',
|
'subset' => 'latin',
|
||||||
],
|
],
|
||||||
'nl' => [
|
'nl' => [
|
||||||
'name' => 'Nederlands',
|
'name' => 'Nederlands',
|
||||||
'subset' => 'latin,latin-ext',
|
'subset' => 'latin,latin-ext',
|
||||||
],
|
],
|
||||||
'no' => [
|
'no' => [
|
||||||
'name' => 'Norwegian',
|
'name' => 'Norwegian',
|
||||||
'subset' => 'latin,latin-ext',
|
'subset' => 'latin,latin-ext',
|
||||||
],
|
],
|
||||||
'pl' => [
|
'pl' => [
|
||||||
'name' => 'Polski',
|
'name' => 'Polski',
|
||||||
'subset' => 'latin,latin-ext',
|
'subset' => 'latin,latin-ext',
|
||||||
],
|
],
|
||||||
@@ -107,19 +107,19 @@ return [
|
|||||||
'name' => 'Portuguese, Portugal',
|
'name' => 'Portuguese, Portugal',
|
||||||
'subset' => 'latin,latin-ext',
|
'subset' => 'latin,latin-ext',
|
||||||
],
|
],
|
||||||
'ro' => [
|
'ro' => [
|
||||||
'name' => 'Romanian',
|
'name' => 'Romanian',
|
||||||
'subset' => 'latin,latin-ext',
|
'subset' => 'latin,latin-ext',
|
||||||
],
|
],
|
||||||
'ru' => [
|
'ru' => [
|
||||||
'name' => 'Русский',
|
'name' => 'Русский',
|
||||||
'subset' => 'latin,cyrillic',
|
'subset' => 'latin,cyrillic',
|
||||||
],
|
],
|
||||||
'sq' => [
|
'sq' => [
|
||||||
'name' => 'Albanian',
|
'name' => 'Albanian',
|
||||||
'subset' => 'latin,latin-ext',
|
'subset' => 'latin,latin-ext',
|
||||||
],
|
],
|
||||||
'sr' => [
|
'sr' => [
|
||||||
'name' => 'Sebrian (Cyrillic)',
|
'name' => 'Sebrian (Cyrillic)',
|
||||||
'subset' => 'latin,cyrillic,cyrillic-ext',
|
'subset' => 'latin,cyrillic,cyrillic-ext',
|
||||||
],
|
],
|
||||||
@@ -127,15 +127,15 @@ return [
|
|||||||
'name' => 'Swedish',
|
'name' => 'Swedish',
|
||||||
'subset' => 'latin,latin-ext',
|
'subset' => 'latin,latin-ext',
|
||||||
],
|
],
|
||||||
'tr' => [
|
'tr' => [
|
||||||
'name' => 'Turkish',
|
'name' => 'Turkish',
|
||||||
'subset' => 'latin,latin-ext',
|
'subset' => 'latin,latin-ext',
|
||||||
],
|
],
|
||||||
'uk' => [
|
'uk' => [
|
||||||
'name' => 'Ukranian',
|
'name' => 'Ukranian',
|
||||||
'subset' => 'latin,cyrillic-ext',
|
'subset' => 'latin,cyrillic-ext',
|
||||||
],
|
],
|
||||||
'vi' => [
|
'vi' => [
|
||||||
'name' => 'Vietnamese',
|
'name' => 'Vietnamese',
|
||||||
'subset' => 'latin,vietnamese',
|
'subset' => 'latin,vietnamese',
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
||||||
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Site timezone',
|
'site-timezone' => 'Site timezone',
|
||||||
'site-locale' => 'Site language',
|
'site-locale' => 'Site language',
|
||||||
'date-format' => 'Date format',
|
'date-format' => 'Date format',
|
||||||
'incident-date-format' => 'Incident timestamp format',
|
'incident-date-format' => 'Incident timestamp format',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Allowed domains',
|
'allowed-domains' => 'Allowed domains',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
||||||
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Site timezone',
|
'site-timezone' => 'Site timezone',
|
||||||
'site-locale' => 'Site language',
|
'site-locale' => 'Site language',
|
||||||
'date-format' => 'Date format',
|
'date-format' => 'Date format',
|
||||||
'incident-date-format' => 'Incident timestamp format',
|
'incident-date-format' => 'Incident timestamp format',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Allowed domains',
|
'allowed-domains' => 'Allowed domains',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
||||||
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Identificador de lloc del Piwik',
|
'analytics_piwik_siteid' => 'Identificador de lloc del Piwik',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Seleccioneu el fus horari',
|
'site-timezone' => 'Seleccioneu el fus horari',
|
||||||
'site-locale' => 'Idioma del lloc',
|
'site-locale' => 'Idioma del lloc',
|
||||||
'date-format' => 'Format de la data',
|
'date-format' => 'Format de la data',
|
||||||
'incident-date-format' => 'Format del fus horari dels incidents',
|
'incident-date-format' => 'Format del fus horari dels incidents',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Dominis permesos',
|
'allowed-domains' => 'Dominis permesos',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
||||||
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Site timezone',
|
'site-timezone' => 'Site timezone',
|
||||||
'site-locale' => 'Site language',
|
'site-locale' => 'Site language',
|
||||||
'date-format' => 'Date format',
|
'date-format' => 'Date format',
|
||||||
'incident-date-format' => 'Incident timestamp format',
|
'incident-date-format' => 'Incident timestamp format',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Allowed domains',
|
'allowed-domains' => 'Allowed domains',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "Du er blevet inviteret til :app_name status status side, Klik på linket for at oprette dig.\n:link\nTak, :app_name",
|
'text' => "Du er blevet inviteret til :app_name status status side, Klik på linket for at oprette dig.\n:link\nTak, :app_name",
|
||||||
'html' => '<p>Du er blevet inviteret til :app_name status side, Klik på linket for at oprette dig.</p><p><a href=":link">:link</a></p><p>Tak, :app_name</p>',
|
'html' => '<p>Du er blevet inviteret til :app_name status side, Klik på linket for at oprette dig.</p><p><a href=":link">:link</a></p><p>Tak, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Tidszone',
|
'site-timezone' => 'Tidszone',
|
||||||
'site-locale' => 'Sprog på siden',
|
'site-locale' => 'Sprog på siden',
|
||||||
'date-format' => 'Datoformat',
|
'date-format' => 'Datoformat',
|
||||||
'incident-date-format' => 'Datoformat for hændelser',
|
'incident-date-format' => 'Datoformat for hændelser',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Tilladte domæner',
|
'allowed-domains' => 'Tilladte domæner',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "Du wurdest in das Team :app_name Status Seite eingeladen. Um dich zu registrieren klicke den Link.\n:link\nDanke, :app_name",
|
'text' => "Du wurdest in das Team :app_name Status Seite eingeladen. Um dich zu registrieren klicke den Link.\n:link\nDanke, :app_name",
|
||||||
'html' => '<p>Du wurdest in das Team :app_name Status Seite eingeladen. Um dich zu registrieren klicke den Link.</p><p><a href=":link">:link</a></p><p>Danke, :app_name</p>',
|
'html' => '<p>Du wurdest in das Team :app_name Status Seite eingeladen. Um dich zu registrieren klicke den Link.</p><p><a href=":link">:link</a></p><p>Danke, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Piwik\'s Seiten-ID',
|
'analytics_piwik_siteid' => 'Piwik\'s Seiten-ID',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Zeitzone ihrer Seite',
|
'site-timezone' => 'Zeitzone ihrer Seite',
|
||||||
'site-locale' => 'Sprache ihrer Seite',
|
'site-locale' => 'Sprache ihrer Seite',
|
||||||
'date-format' => 'Datumsformat',
|
'date-format' => 'Datumsformat',
|
||||||
'incident-date-format' => 'Vorfall Zeitstempel-Format',
|
'incident-date-format' => 'Vorfall Zeitstempel-Format',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Erlaubte Domains',
|
'allowed-domains' => 'Erlaubte Domains',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "Έχετε προσκληθεί στη σελίδα ενημερώσεων της ομάδας :app_name, εγγραφείτε στον παρακάτω σύνδεσμο.\n:link\nΕυχαριστούμε, :app_name",
|
'text' => "Έχετε προσκληθεί στη σελίδα ενημερώσεων της ομάδας :app_name, εγγραφείτε στον παρακάτω σύνδεσμο.\n:link\nΕυχαριστούμε, :app_name",
|
||||||
'html' => '<p>Έχετε προσκληθεί στη σελίδα ενημερώσεων της ομάδας :app_name, εγγραφείτε στον παρακάτω σύνδεσμο.</p><p><a href=":link">:link</a></p><p>Ευχαριστούμε, :app_name</p>',
|
'html' => '<p>Έχετε προσκληθεί στη σελίδα ενημερώσεων της ομάδας :app_name, εγγραφείτε στον παρακάτω σύνδεσμο.</p><p><a href=":link">:link</a></p><p>Ευχαριστούμε, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Site timezone',
|
'site-timezone' => 'Site timezone',
|
||||||
'site-locale' => 'Site language',
|
'site-locale' => 'Site language',
|
||||||
'date-format' => 'Date format',
|
'date-format' => 'Date format',
|
||||||
'incident-date-format' => 'Incident timestamp format',
|
'incident-date-format' => 'Incident timestamp format',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Allowed domains',
|
'allowed-domains' => 'Allowed domains',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => 'crwdns553:0crwdne553:0',
|
'text' => 'crwdns553:0crwdne553:0',
|
||||||
'html' => 'crwdns555:0crwdne555:0',
|
'html' => 'crwdns555:0crwdne555:0',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'crwdns594:0crwdne594:0',
|
'analytics_piwik_siteid' => 'crwdns594:0crwdne594:0',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'crwdns595:0crwdne595:0',
|
'site-timezone' => 'crwdns595:0crwdne595:0',
|
||||||
'site-locale' => 'crwdns596:0crwdne596:0',
|
'site-locale' => 'crwdns596:0crwdne596:0',
|
||||||
'date-format' => 'crwdns597:0crwdne597:0',
|
'date-format' => 'crwdns597:0crwdne597:0',
|
||||||
'incident-date-format' => 'crwdns598:0crwdne598:0',
|
'incident-date-format' => 'crwdns598:0crwdne598:0',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'crwdns599:0crwdne599:0',
|
'allowed-domains' => 'crwdns599:0crwdne599:0',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
||||||
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -126,10 +126,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Site timezone',
|
'site-timezone' => 'Site timezone',
|
||||||
'site-locale' => 'Site language',
|
'site-locale' => 'Site language',
|
||||||
'date-format' => 'Date format',
|
'date-format' => 'Date format',
|
||||||
'incident-date-format' => 'Incident timestamp format',
|
'incident-date-format' => 'Incident timestamp format',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Allowed domains',
|
'allowed-domains' => 'Allowed domains',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "Te han invitado a la página de estado del equipo de :app_name, para registrarte sigue este enlace.\n:link\nGracias, :app_name",
|
'text' => "Te han invitado a la página de estado del equipo de :app_name, para registrarte sigue este enlace.\n:link\nGracias, :app_name",
|
||||||
'html' => '<p>Has sido invitado a la página de estado del equipo :app_name, para inscribirte sigue el siguiente enlace.</p><p><a href=":link">:link</a></p><p>Gracias, :app_name</p>',
|
'html' => '<p>Has sido invitado a la página de estado del equipo :app_name, para inscribirte sigue el siguiente enlace.</p><p><a href=":link">:link</a></p><p>Gracias, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Id de tu sitio Piwik',
|
'analytics_piwik_siteid' => 'Id de tu sitio Piwik',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Zona horaria del sitio',
|
'site-timezone' => 'Zona horaria del sitio',
|
||||||
'site-locale' => 'Idioma del sitio',
|
'site-locale' => 'Idioma del sitio',
|
||||||
'date-format' => 'Formato de la fecha',
|
'date-format' => 'Formato de la fecha',
|
||||||
'incident-date-format' => 'Formato de fecha de incidente',
|
'incident-date-format' => 'Formato de fecha de incidente',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Dominios permitidos',
|
'allowed-domains' => 'Dominios permitidos',
|
||||||
|
|||||||
@@ -92,8 +92,8 @@ return [
|
|||||||
'subject' => '[New Incident] :status: :name',
|
'subject' => '[New Incident] :status: :name',
|
||||||
],
|
],
|
||||||
'component' => [
|
'component' => [
|
||||||
'subject' => 'بهروزرسانی وضعیت کامپوننت',
|
'subject' => 'بهروزرسانی وضعیت کامپوننت',
|
||||||
'text' => 'کامپوننت :component یک تغییر وضعیت دارد. این کامپوننت هماکنون در حالت :component_human_status قرار دارد.\n
|
'text' => 'کامپوننت :component یک تغییر وضعیت دارد. این کامپوننت هماکنون در حالت :component_human_status قرار دارد.\n
|
||||||
با تشکر، :app_name',
|
با تشکر، :app_name',
|
||||||
'html' => '<p> کامپوننت با نام :component_name یک تغییر وضعیت دارد. کامپوننت هماکنون در حالت :component_human_status قرار دارد. </p><p> با تشکر :app_name </p>',
|
'html' => '<p> کامپوننت با نام :component_name یک تغییر وضعیت دارد. کامپوننت هماکنون در حالت :component_human_status قرار دارد. </p><p> با تشکر :app_name </p>',
|
||||||
'tooltip-title' => 'Subscribe to notifications for :component_name.',
|
'tooltip-title' => 'Subscribe to notifications for :component_name.',
|
||||||
@@ -104,8 +104,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
||||||
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Site timezone',
|
'site-timezone' => 'Site timezone',
|
||||||
'site-locale' => 'Site language',
|
'site-locale' => 'Site language',
|
||||||
'date-format' => 'Date format',
|
'date-format' => 'Date format',
|
||||||
'incident-date-format' => 'Incident timestamp format',
|
'incident-date-format' => 'Incident timestamp format',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Allowed domains',
|
'allowed-domains' => 'Allowed domains',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "Sinut on kutsuttu ryhmään :app_name tila sivulle, rekisteröi tästä: \n:link\n. Kiitos, :app_name",
|
'text' => "Sinut on kutsuttu ryhmään :app_name tila sivulle, rekisteröi tästä: \n:link\n. Kiitos, :app_name",
|
||||||
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Piwik sivun tunnus',
|
'analytics_piwik_siteid' => 'Piwik sivun tunnus',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Sivuston aikavyöhyke',
|
'site-timezone' => 'Sivuston aikavyöhyke',
|
||||||
'site-locale' => 'Sivuston kieli',
|
'site-locale' => 'Sivuston kieli',
|
||||||
'date-format' => 'Päivämäärän muoto',
|
'date-format' => 'Päivämäärän muoto',
|
||||||
'incident-date-format' => 'Incident timestamp format',
|
'incident-date-format' => 'Incident timestamp format',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Sallittu toimialueet',
|
'allowed-domains' => 'Sallittu toimialueet',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "Vous avez été invité à la page de statut de l'équipe :app_name , veuillez suivre le lien suivant pour vous inscire \n:link\nMerci, :app_name",
|
'text' => "Vous avez été invité à la page de statut de l'équipe :app_name , veuillez suivre le lien suivant pour vous inscire \n:link\nMerci, :app_name",
|
||||||
'html' => '<p>Vous avez été invité à la page de statut de l\'équipe :app_name, veuillez suivre le lien suivant pour vous inscrire.</p><p><a href=":link">:link</a></p><p>Merci, :app_name</p>',
|
'html' => '<p>Vous avez été invité à la page de statut de l\'équipe :app_name, veuillez suivre le lien suivant pour vous inscrire.</p><p><a href=":link">:link</a></p><p>Merci, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Id du site de Piwik',
|
'analytics_piwik_siteid' => 'Id du site de Piwik',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Fuseau horaire du site',
|
'site-timezone' => 'Fuseau horaire du site',
|
||||||
'site-locale' => 'Langue du site',
|
'site-locale' => 'Langue du site',
|
||||||
'date-format' => 'Format de la date',
|
'date-format' => 'Format de la date',
|
||||||
'incident-date-format' => 'Format de la date de l\'incident',
|
'incident-date-format' => 'Format de la date de l\'incident',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Domaines autorisés',
|
'allowed-domains' => 'Domaines autorisés',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
||||||
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Site timezone',
|
'site-timezone' => 'Site timezone',
|
||||||
'site-locale' => 'Site language',
|
'site-locale' => 'Site language',
|
||||||
'date-format' => 'Date format',
|
'date-format' => 'Date format',
|
||||||
'incident-date-format' => 'Incident timestamp format',
|
'incident-date-format' => 'Incident timestamp format',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Allowed domains',
|
'allowed-domains' => 'Allowed domains',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
||||||
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Site timezone',
|
'site-timezone' => 'Site timezone',
|
||||||
'site-locale' => 'Site language',
|
'site-locale' => 'Site language',
|
||||||
'date-format' => 'Date format',
|
'date-format' => 'Date format',
|
||||||
'incident-date-format' => 'Incident timestamp format',
|
'incident-date-format' => 'Incident timestamp format',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Allowed domains',
|
'allowed-domains' => 'Allowed domains',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "Anda diundang dalam tim Halaman Status :app_name, untuk mendaftar silakan klik tautan berikut \n:link\nTerima kasih, :app_name",
|
'text' => "Anda diundang dalam tim Halaman Status :app_name, untuk mendaftar silakan klik tautan berikut \n:link\nTerima kasih, :app_name",
|
||||||
'html' => '<p>Anda diundang dalam tim Halaman Status :app_name, untuk mendaftar silakan klik tautan berikut. </p><p><a href=":link">:link</a></p><p>Terima kasih, :app_name</p>',
|
'html' => '<p>Anda diundang dalam tim Halaman Status :app_name, untuk mendaftar silakan klik tautan berikut. </p><p><a href=":link">:link</a></p><p>Terima kasih, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'ID situs Piwik',
|
'analytics_piwik_siteid' => 'ID situs Piwik',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Zona Waktu',
|
'site-timezone' => 'Zona Waktu',
|
||||||
'site-locale' => 'Bahasa',
|
'site-locale' => 'Bahasa',
|
||||||
'date-format' => 'Format Tanggal',
|
'date-format' => 'Format Tanggal',
|
||||||
'incident-date-format' => 'Format Waktu Insiden',
|
'incident-date-format' => 'Format Waktu Insiden',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Domain yang dibolehkan',
|
'allowed-domains' => 'Domain yang dibolehkan',
|
||||||
|
|||||||
@@ -81,8 +81,8 @@ return [
|
|||||||
'failure' => 'Qualcosa è andato storto con l\'iscrizione.',
|
'failure' => 'Qualcosa è andato storto con l\'iscrizione.',
|
||||||
'already-subscribed' => 'Non è possibile iscrivere :email perchè risulta già iscritto.',
|
'already-subscribed' => 'Non è possibile iscrivere :email perchè risulta già iscritto.',
|
||||||
'verify' => [
|
'verify' => [
|
||||||
'text' => "Please confirm your email subscription to :app_name status updates.\n:link",
|
'text' => "Conferma l'iscrizione a :app_name. \n:link",
|
||||||
'html' => '<p>Please confirm your email subscription to :app_name status updates.</p>',
|
'html' => 'Per favore conferma la tua iscrizione tramite email su :app_name',
|
||||||
'button' => 'Conferma iscrizione',
|
'button' => 'Conferma iscrizione',
|
||||||
],
|
],
|
||||||
'maintenance' => [
|
'maintenance' => [
|
||||||
@@ -93,8 +93,8 @@ return [
|
|||||||
],
|
],
|
||||||
'component' => [
|
'component' => [
|
||||||
'subject' => 'Aggiornamento di stato del componente',
|
'subject' => 'Aggiornamento di stato del componente',
|
||||||
'text' => 'Lo stato del componente: nome_componente è cambiato. Il nuovo stato del componente è :component_human_status.\nGrazie,: app_name',
|
'text' => 'Lo stato del componente: :component_name è cambiato. Il nuovo stato del componente è :component_human_status.\nGrazie, :app_name',
|
||||||
'html' => '<p>Lo stato del componente: nome_componente è cambiato. Il nuovo stato del componente è :component_human_status.</p><p>Grazie, :app_name</p>',
|
'html' => '<p>Lo stato del componente :component_name è cambiato. Il nuovo stato del componente è :component_human_status.</p><p>Grazie, :app_name</p>',
|
||||||
'tooltip-title' => 'Iscriviti alle notifiche di :component_name.',
|
'tooltip-title' => 'Iscriviti alle notifiche di :component_name.',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "Sei stato invitato nel team :app_name status page, per iscriverti segui il prossimo link.\n:link\nGrazie, :app_name",
|
'text' => "Sei stato invitato nel team :app_name status page, per iscriverti segui il prossimo link.\n:link\nGrazie, :app_name",
|
||||||
'html' => '<p>Sei stato invitato nel team :app_name status page, per iscriverti segui il prossimo link.</p><p><a href=":link">:link</a></p><p>Grazie, :app_name</p>',
|
'html' => '<p>Sei stato invitato nel team :app_name status page, per iscriverti segui il prossimo link.</p><p><a href=":link">:link</a></p><p>Grazie, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Id del sito Piwik',
|
'analytics_piwik_siteid' => 'Id del sito Piwik',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Fuso orario del sito',
|
'site-timezone' => 'Fuso orario del sito',
|
||||||
'site-locale' => 'Lingua del sito',
|
'site-locale' => 'Lingua del sito',
|
||||||
'date-format' => 'Formato della data',
|
'date-format' => 'Formato della data',
|
||||||
'incident-date-format' => 'Formato timestamp della segnalazione',
|
'incident-date-format' => 'Formato timestamp della segnalazione',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Domini consentiti',
|
'allowed-domains' => 'Domini consentiti',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
||||||
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Site timezone',
|
'site-timezone' => 'Site timezone',
|
||||||
'site-locale' => 'Site language',
|
'site-locale' => 'Site language',
|
||||||
'date-format' => 'Date format',
|
'date-format' => 'Date format',
|
||||||
'incident-date-format' => 'Incident timestamp format',
|
'incident-date-format' => 'Incident timestamp format',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Allowed domains',
|
'allowed-domains' => 'Allowed domains',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => ":app_name 팀의 상태페이지에 초대되었습니다. 가입하시려면 다음 링크를 눌러주세요.\n:link\n감사합니다, :app_name",
|
'text' => ":app_name 팀의 상태페이지에 초대되었습니다. 가입하시려면 다음 링크를 눌러주세요.\n:link\n감사합니다, :app_name",
|
||||||
'html' => '<p>:app_name 팀의 상태페이지에 초대되었습니다. 가입하시려면 다음 링크를 눌러주세요.</p>
|
'html' => '<p>:app_name 팀의 상태페이지에 초대되었습니다. 가입하시려면 다음 링크를 눌러주세요.</p>
|
||||||
<p><a href=":link">:link</a></p><p>감사합니다, :app_name</p>',
|
<p><a href=":link">:link</a></p><p>감사합니다, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Piwik 사이트 id',
|
'analytics_piwik_siteid' => 'Piwik 사이트 id',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => '사이트 시간대',
|
'site-timezone' => '사이트 시간대',
|
||||||
'site-locale' => '사이트 언어',
|
'site-locale' => '사이트 언어',
|
||||||
'date-format' => '날짜 형식',
|
'date-format' => '날짜 형식',
|
||||||
'incident-date-format' => '문제 Timestamp 형식',
|
'incident-date-format' => '문제 Timestamp 형식',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => '허용된 도메인',
|
'allowed-domains' => '허용된 도메인',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "U bent uitgenodigd voor team :app_name status pagina, om u in te schrijven klik op de volgende link.\n:link\nBedankt, :app_name",
|
'text' => "U bent uitgenodigd voor team :app_name status pagina, om u in te schrijven klik op de volgende link.\n:link\nBedankt, :app_name",
|
||||||
'html' => '<p>U bent uitgenodigd voor team :app_name status pagina, om u in te schrijven klik op de volgende link.</p><p><a href=":link">:link</a></p><p>Bedankt, :app_name</p>',
|
'html' => '<p>U bent uitgenodigd voor team :app_name status pagina, om u in te schrijven klik op de volgende link.</p><p><a href=":link">:link</a></p><p>Bedankt, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Site-id van Piwik',
|
'analytics_piwik_siteid' => 'Site-id van Piwik',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Website tijdzone',
|
'site-timezone' => 'Website tijdzone',
|
||||||
'site-locale' => 'Taal van de site',
|
'site-locale' => 'Taal van de site',
|
||||||
'date-format' => 'Datum formaat',
|
'date-format' => 'Datum formaat',
|
||||||
'incident-date-format' => 'Incident tijdsaanduiding',
|
'incident-date-format' => 'Incident tijdsaanduiding',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Toegestane domeinen',
|
'allowed-domains' => 'Toegestane domeinen',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
||||||
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Site timezone',
|
'site-timezone' => 'Site timezone',
|
||||||
'site-locale' => 'Site language',
|
'site-locale' => 'Site language',
|
||||||
'date-format' => 'Date format',
|
'date-format' => 'Date format',
|
||||||
'incident-date-format' => 'Incident timestamp format',
|
'incident-date-format' => 'Incident timestamp format',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Allowed domains',
|
'allowed-domains' => 'Allowed domains',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "Zostałeś zaproszony do strony statusowej zespołu :app_name. Aby się zapisać, kliknij na link umieszczony dalej.\n:link\nDziękujemy, :app_name",
|
'text' => "Zostałeś zaproszony do strony statusowej zespołu :app_name. Aby się zapisać, kliknij na link umieszczony dalej.\n:link\nDziękujemy, :app_name",
|
||||||
'html' => '<p>Zostałeś zaproszony do strony statusowej zespołu :app_name. Aby się zapisać, kliknij na link umieszczony dalej.</p><p><a href=":link">:link</a></p><p>Dziękujemy, :app_name</p>',
|
'html' => '<p>Zostałeś zaproszony do strony statusowej zespołu :app_name. Aby się zapisać, kliknij na link umieszczony dalej.</p><p><a href=":link">:link</a></p><p>Dziękujemy, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Piwik\'s Seiten-ID',
|
'analytics_piwik_siteid' => 'Piwik\'s Seiten-ID',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Zeitzone ihrer Seite',
|
'site-timezone' => 'Zeitzone ihrer Seite',
|
||||||
'site-locale' => 'Sprache ihrer Seite',
|
'site-locale' => 'Sprache ihrer Seite',
|
||||||
'date-format' => 'Datumsformat',
|
'date-format' => 'Datumsformat',
|
||||||
'incident-date-format' => 'Vorfall Zeitstempel-Format',
|
'incident-date-format' => 'Vorfall Zeitstempel-Format',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Erlaubte Domains',
|
'allowed-domains' => 'Erlaubte Domains',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "Você foi convidado para a página de status da equipe :app_name, para se inscrever siga o próximo link.\n:link\nObrigado,: app_name",
|
'text' => "Você foi convidado para a página de status da equipe :app_name, para se inscrever siga o próximo link.\n:link\nObrigado,: app_name",
|
||||||
'html' => '<p>Você foi convidado para a página de status da equipe :app_name, para se inscrever siga o seguinte link.</p> <p><a href=":link">:link</a></p> <p>Obrigado, :app_name</p>',
|
'html' => '<p>Você foi convidado para a página de status da equipe :app_name, para se inscrever siga o seguinte link.</p> <p><a href=":link">:link</a></p> <p>Obrigado, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Id do site no Piwik',
|
'analytics_piwik_siteid' => 'Id do site no Piwik',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Fuso horário do site',
|
'site-timezone' => 'Fuso horário do site',
|
||||||
'site-locale' => 'Idioma do site',
|
'site-locale' => 'Idioma do site',
|
||||||
'date-format' => 'Formato da data',
|
'date-format' => 'Formato da data',
|
||||||
'incident-date-format' => 'Formato de Hora do Incidente',
|
'incident-date-format' => 'Formato de Hora do Incidente',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Domínios permitidos',
|
'allowed-domains' => 'Domínios permitidos',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "Você foi convidado para a equipa :app_name página de status, para se inscrever siga o próximo link.\n:link\nObrigado, :app_name",
|
'text' => "Você foi convidado para a equipa :app_name página de status, para se inscrever siga o próximo link.\n:link\nObrigado, :app_name",
|
||||||
'html' => '<p>Foi convidado para a equipa :app_name página de status, para se inscrever siga o seguinte link.</p> <p><a href=":link">:link</a></p> <p>Obrigado, :app_name</p>',
|
'html' => '<p>Foi convidado para a equipa :app_name página de status, para se inscrever siga o seguinte link.</p> <p><a href=":link">:link</a></p> <p>Obrigado, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'ID do site Piwik',
|
'analytics_piwik_siteid' => 'ID do site Piwik',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Fuso horário do site',
|
'site-timezone' => 'Fuso horário do site',
|
||||||
'site-locale' => 'Idioma do site',
|
'site-locale' => 'Idioma do site',
|
||||||
'date-format' => 'Formato da Data',
|
'date-format' => 'Formato da Data',
|
||||||
'incident-date-format' => 'Formato da Hora do Incidente',
|
'incident-date-format' => 'Formato da Hora do Incidente',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Domínios permitidos',
|
'allowed-domains' => 'Domínios permitidos',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
||||||
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Site timezone',
|
'site-timezone' => 'Site timezone',
|
||||||
'site-locale' => 'Site language',
|
'site-locale' => 'Site language',
|
||||||
'date-format' => 'Date format',
|
'date-format' => 'Date format',
|
||||||
'incident-date-format' => 'Incident timestamp format',
|
'incident-date-format' => 'Incident timestamp format',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Allowed domains',
|
'allowed-domains' => 'Allowed domains',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "Вас пригласили в команду управления статусной страницей :app_name, перейдите по следующей ссылке, чтобы зарегистрироваться.\n:link\nБлагодарим за внимание, :app_name",
|
'text' => "Вас пригласили в команду управления статусной страницей :app_name, перейдите по следующей ссылке, чтобы зарегистрироваться.\n:link\nБлагодарим за внимание, :app_name",
|
||||||
'html' => '<p>Вас пригласили в команду управления статусной страницей :app_name, перейдите по следующей ссылке, чтобы зарегистрироваться.</p><p><a href=":link">:link</a></p><p>Благодарим за внимание, :app_name</p>',
|
'html' => '<p>Вас пригласили в команду управления статусной страницей :app_name, перейдите по следующей ссылке, чтобы зарегистрироваться.</p><p><a href=":link">:link</a></p><p>Благодарим за внимание, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Идентификатор сайта в Piwik',
|
'analytics_piwik_siteid' => 'Идентификатор сайта в Piwik',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Часовой пояс сайта',
|
'site-timezone' => 'Часовой пояс сайта',
|
||||||
'site-locale' => 'Язык сайта',
|
'site-locale' => 'Язык сайта',
|
||||||
'date-format' => 'Формат даты',
|
'date-format' => 'Формат даты',
|
||||||
'incident-date-format' => 'Формат даты и времени для инцидента',
|
'incident-date-format' => 'Формат даты и времени для инцидента',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Разрешённые домены',
|
'allowed-domains' => 'Разрешённые домены',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
||||||
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Site timezone',
|
'site-timezone' => 'Site timezone',
|
||||||
'site-locale' => 'Site language',
|
'site-locale' => 'Site language',
|
||||||
'date-format' => 'Date format',
|
'date-format' => 'Date format',
|
||||||
'incident-date-format' => 'Incident timestamp format',
|
'incident-date-format' => 'Incident timestamp format',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Allowed domains',
|
'allowed-domains' => 'Allowed domains',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
||||||
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Site timezone',
|
'site-timezone' => 'Site timezone',
|
||||||
'site-locale' => 'Site language',
|
'site-locale' => 'Site language',
|
||||||
'date-format' => 'Date format',
|
'date-format' => 'Date format',
|
||||||
'incident-date-format' => 'Incident timestamp format',
|
'incident-date-format' => 'Incident timestamp format',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Allowed domains',
|
'allowed-domains' => 'Allowed domains',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "Du har blivit inbjuden till teamet för :app_names statussida, registrera dig genom att trycka på länken.\n:link\nTack, :app_name",
|
'text' => "Du har blivit inbjuden till teamet för :app_names statussida, registrera dig genom att trycka på länken.\n:link\nTack, :app_name",
|
||||||
'html' => '<p>Du har blivit inbjuden till teamet :app_names statussida. Registrera dig genom att trycka på <a href=":link"> den här länken</a></p> <p>Tack, :app_name</p>',
|
'html' => '<p>Du har blivit inbjuden till teamet :app_names statussida. Registrera dig genom att trycka på <a href=":link"> den här länken</a></p> <p>Tack, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Piwik\'s sajt-id',
|
'analytics_piwik_siteid' => 'Piwik\'s sajt-id',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Webbplatsens tidszon',
|
'site-timezone' => 'Webbplatsens tidszon',
|
||||||
'site-locale' => 'Webbplatsspråk',
|
'site-locale' => 'Webbplatsspråk',
|
||||||
'date-format' => 'Datumformat',
|
'date-format' => 'Datumformat',
|
||||||
'incident-date-format' => 'Händelsens tidsstämpelformat',
|
'incident-date-format' => 'Händelsens tidsstämpelformat',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Tillåtna domäner',
|
'allowed-domains' => 'Tillåtna domäner',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
||||||
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Site timezone',
|
'site-timezone' => 'Site timezone',
|
||||||
'site-locale' => 'Site language',
|
'site-locale' => 'Site language',
|
||||||
'date-format' => 'Date format',
|
'date-format' => 'Date format',
|
||||||
'incident-date-format' => 'Incident timestamp format',
|
'incident-date-format' => 'Incident timestamp format',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Allowed domains',
|
'allowed-domains' => 'Allowed domains',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
||||||
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'id сайту Piwik',
|
'analytics_piwik_siteid' => 'id сайту Piwik',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Часовий пояс сайту',
|
'site-timezone' => 'Часовий пояс сайту',
|
||||||
'site-locale' => 'Мова сайту',
|
'site-locale' => 'Мова сайту',
|
||||||
'date-format' => 'формат дати',
|
'date-format' => 'формат дати',
|
||||||
'incident-date-format' => 'Incident timestamp format',
|
'incident-date-format' => 'Incident timestamp format',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Allowed domains',
|
'allowed-domains' => 'Allowed domains',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
||||||
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
'analytics_piwik_siteid' => 'Piwik\'s site id',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => 'Múi giờ',
|
'site-timezone' => 'Múi giờ',
|
||||||
'site-locale' => 'Ngôn ngữ',
|
'site-locale' => 'Ngôn ngữ',
|
||||||
'date-format' => 'Định dạng ngày',
|
'date-format' => 'Định dạng ngày',
|
||||||
'incident-date-format' => 'Incident timestamp format',
|
'incident-date-format' => 'Incident timestamp format',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => 'Allowed domains',
|
'allowed-domains' => 'Allowed domains',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "您已被邀请加入 :app_name 团队的状态页, 请点击以下链接进行注册。\n:link\n谢谢, :app_name",
|
'text' => "您已被邀请加入 :app_name 团队的状态页, 请点击以下链接进行注册。\n:link\n谢谢, :app_name",
|
||||||
'html' => '<p>您已被邀请加入 :app_name 团队的状态页, 请点击以下链接进行注册。</p><p><a href=":link">:link</a></p><p>谢谢, :app_name</p>',
|
'html' => '<p>您已被邀请加入 :app_name 团队的状态页, 请点击以下链接进行注册。</p><p><a href=":link">:link</a></p><p>谢谢, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Piwik 的站点 id',
|
'analytics_piwik_siteid' => 'Piwik 的站点 id',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => '系统时区',
|
'site-timezone' => '系统时区',
|
||||||
'site-locale' => '系统语言',
|
'site-locale' => '系统语言',
|
||||||
'date-format' => '日期格式',
|
'date-format' => '日期格式',
|
||||||
'incident-date-format' => '故障的时间显示格式',
|
'incident-date-format' => '故障的时间显示格式',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => '允许的域',
|
'allowed-domains' => '允许的域',
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'email' => [
|
'email' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'text' => "您已被邀請加入 :app_name 團隊的狀態頁, 請點擊以下鏈接進行註冊。\n:link\n謝謝, :app_name",
|
'text' => "您已被邀請加入 :app_name 團隊的狀態頁, 請點擊以下鏈接進行註冊。\n:link\n謝謝, :app_name",
|
||||||
'html' => '<p>您已被邀請加入 :app_name 團隊的狀態頁, 請點擊以下鏈接進行註冊。</p><p><a href=":link">:link</a></p><p>謝謝, :app_name</p>',
|
'html' => '<p>您已被邀請加入 :app_name 團隊的狀態頁, 請點擊以下鏈接進行註冊。</p><p><a href=":link">:link</a></p><p>謝謝, :app_name</p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -118,10 +118,10 @@ return [
|
|||||||
'analytics_piwik_siteid' => 'Piwik 的站點 id',
|
'analytics_piwik_siteid' => 'Piwik 的站點 id',
|
||||||
],
|
],
|
||||||
'localization' => [
|
'localization' => [
|
||||||
'site-timezone' => '站點時區',
|
'site-timezone' => '站點時區',
|
||||||
'site-locale' => '站點語言',
|
'site-locale' => '站點語言',
|
||||||
'date-format' => '日期格式',
|
'date-format' => '日期格式',
|
||||||
'incident-date-format' => '事件的時間戳格式',
|
'incident-date-format' => '事件的時間戳格式',
|
||||||
],
|
],
|
||||||
'security' => [
|
'security' => [
|
||||||
'allowed-domains' => '允許的域',
|
'allowed-domains' => '允許的域',
|
||||||
|
|||||||
@@ -81,7 +81,6 @@
|
|||||||
data: {
|
data: {
|
||||||
labels: _.keys(data),
|
labels: _.keys(data),
|
||||||
datasets: [{
|
datasets: [{
|
||||||
label: result.data.metric.name,
|
|
||||||
data: _.values(data),
|
data: _.values(data),
|
||||||
backgroundColor: "{{ $theme_metrics }}",
|
backgroundColor: "{{ $theme_metrics }}",
|
||||||
borderColor: "{{ color_darken($theme_metrics, -0.1) }}",
|
borderColor: "{{ color_darken($theme_metrics, -0.1) }}",
|
||||||
@@ -97,7 +96,7 @@
|
|||||||
ticks: {
|
ticks: {
|
||||||
beginAtZero: true,
|
beginAtZero: true,
|
||||||
suggestedMax: 0.1,
|
suggestedMax: 0.1,
|
||||||
fixedStepSize: result.data.metric.places,
|
// fixedStepSize: result.data.metric.places,
|
||||||
callback: function(tickValue, index, ticks) {
|
callback: function(tickValue, index, ticks) {
|
||||||
var delta = ticks[1] - ticks[0];
|
var delta = ticks[1] - ticks[0];
|
||||||
|
|
||||||
@@ -126,8 +125,8 @@
|
|||||||
},
|
},
|
||||||
tooltips: {
|
tooltips: {
|
||||||
callbacks: {
|
callbacks: {
|
||||||
afterLabel: function(tooltipItem, data) {
|
label: function(tooltipItem, data) {
|
||||||
return " " + result.data.metric.suffix;
|
return tooltipItem.yLabel + ' ' + result.data.metric.suffix;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user