Merge branch '2.4' into bugs-in-the-average-metrics-graph
This commit is contained in:
@@ -16,10 +16,12 @@ use CachetHQ\Cachet\Bus\Commands\Incident\CreateIncidentCommand;
|
||||
use CachetHQ\Cachet\Bus\Commands\Incident\RemoveIncidentCommand;
|
||||
use CachetHQ\Cachet\Bus\Commands\Incident\UpdateIncidentCommand;
|
||||
use CachetHQ\Cachet\Bus\Commands\IncidentUpdate\CreateIncidentUpdateCommand;
|
||||
use CachetHQ\Cachet\Bus\Commands\IncidentUpdate\UpdateIncidentUpdateCommand;
|
||||
use CachetHQ\Cachet\Models\Component;
|
||||
use CachetHQ\Cachet\Models\ComponentGroup;
|
||||
use CachetHQ\Cachet\Models\Incident;
|
||||
use CachetHQ\Cachet\Models\IncidentTemplate;
|
||||
use CachetHQ\Cachet\Models\IncidentUpdate;
|
||||
use GrahamCampbell\Binput\Facades\Binput;
|
||||
use Illuminate\Contracts\Auth\Guard;
|
||||
use Illuminate\Routing\Controller;
|
||||
@@ -293,9 +295,21 @@ class IncidentController extends Controller
|
||||
*
|
||||
* @return \Illuminate\View\View
|
||||
*/
|
||||
public function showIncidentUpdateAction(Incident $incident)
|
||||
public function showIncidentUpdates(Incident $incident)
|
||||
{
|
||||
return View::make('dashboard.incidents.update')->withIncident($incident);
|
||||
return View::make('dashboard.incidents.updates.index')->withIncident($incident);
|
||||
}
|
||||
|
||||
/**
|
||||
* Shows the incident update form.
|
||||
*
|
||||
* @param \CachetHQ\Cachet\Models\Incident $incident
|
||||
*
|
||||
* @return \Illuminate\View\View
|
||||
*/
|
||||
public function showCreateIncidentUpdateAction(Incident $incident)
|
||||
{
|
||||
return View::make('dashboard.incidents.updates.add')->withIncident($incident);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -308,20 +322,63 @@ class IncidentController extends Controller
|
||||
public function createIncidentUpdateAction(Incident $incident)
|
||||
{
|
||||
try {
|
||||
$incident = dispatch(new CreateIncidentUpdateCommand(
|
||||
$incidentUpdate = dispatch(new CreateIncidentUpdateCommand(
|
||||
$incident,
|
||||
Binput::get('status'),
|
||||
Binput::get('message'),
|
||||
$this->auth->user()
|
||||
));
|
||||
} catch (ValidationException $e) {
|
||||
return cachet_redirect('dashboard.incidents.updates', ['id' => $incident->id])
|
||||
return cachet_redirect('dashboard.incidents.updates.create', ['id' => $incident->id])
|
||||
->withInput(Binput::all())
|
||||
->withTitle(sprintf('%s %s', trans('dashboard.notifications.whoops'), trans('dashboard.incidents.templates.edit.failure')))
|
||||
->withTitle(sprintf('%s %s', trans('dashboard.notifications.whoops'), trans('dashboard.incidents.updates.add.failure')))
|
||||
->withErrors($e->getMessageBag());
|
||||
}
|
||||
|
||||
return cachet_redirect('dashboard.incidents')
|
||||
->withSuccess(sprintf('%s %s', trans('dashboard.notifications.awesome'), trans('dashboard.incidents.update.success')));
|
||||
->withSuccess(sprintf('%s %s', trans('dashboard.notifications.awesome'), trans('dashboard.incidents.updates.success')));
|
||||
}
|
||||
|
||||
/**
|
||||
* Shows the edit incident view.
|
||||
*
|
||||
* @param \CachetHQ\Cachet\Models\Incident $incident
|
||||
* @param \CachetHQ\Cachet\Models\IncidentUpdate $incidentUpdate
|
||||
*
|
||||
* @return \Illuminate\View\View
|
||||
*/
|
||||
public function showEditIncidentUpdateAction(Incident $incident, IncidentUpdate $incidentUpdate)
|
||||
{
|
||||
return View::make('dashboard.incidents.updates.edit')
|
||||
->withIncident($incident)
|
||||
->withUpdate($incidentUpdate);
|
||||
}
|
||||
|
||||
/**
|
||||
* Edit an incident update.
|
||||
*
|
||||
* @param \CachetHQ\Cachet\Models\Incident $incident
|
||||
* @param \CachetHQ\Cachet\Models\IncidentUpdate $incidentUpdate
|
||||
*
|
||||
* @return \Illuminate\Http\RedirectResponse
|
||||
*/
|
||||
public function editIncidentUpdateAction(Incident $incident, IncidentUpdate $incidentUpdate)
|
||||
{
|
||||
try {
|
||||
$incidentUpdate = dispatch(new UpdateIncidentUpdateCommand(
|
||||
$incidentUpdate,
|
||||
Binput::get('status'),
|
||||
Binput::get('message'),
|
||||
$this->auth->user()
|
||||
));
|
||||
} catch (ValidationException $e) {
|
||||
return cachet_redirect('dashboard.incidents.updates.edit', ['incident' => $incident->id, 'incident_update' => $incidentUpdate->id])
|
||||
->withInput(Binput::all())
|
||||
->withTitle(sprintf('%s %s', trans('dashboard.notifications.whoops'), trans('dashboard.incidents.updates.edit.failure')))
|
||||
->withErrors($e->getMessageBag());
|
||||
}
|
||||
|
||||
return cachet_redirect('dashboard.incidents.updates', ['incident' => $incident->id])
|
||||
->withSuccess(sprintf('%s %s', trans('dashboard.notifications.awesome'), trans('dashboard.incidents.updates.edit.success')));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -71,12 +71,24 @@ class IncidentRoutes
|
||||
|
||||
$router->get('{incident}/updates', [
|
||||
'as' => 'get:dashboard.incidents.updates',
|
||||
'uses' => 'IncidentController@showIncidentUpdateAction',
|
||||
'uses' => 'IncidentController@showIncidentUpdates',
|
||||
]);
|
||||
$router->post('{incident}/updates', [
|
||||
'as' => 'post:dashboard.incidents.updates',
|
||||
$router->get('{incident}/updates/create', [
|
||||
'as' => 'get:dashboard.incidents.updates.create',
|
||||
'uses' => 'IncidentController@showCreateIncidentUpdateAction',
|
||||
]);
|
||||
$router->post('{incident}/updates/create', [
|
||||
'as' => 'post:dashboard.incidents.updates.create',
|
||||
'uses' => 'IncidentController@createIncidentUpdateAction',
|
||||
]);
|
||||
$router->get('{incident}/updates/{incident_update}', [
|
||||
'as' => 'get:dashboard.incidents.updates.edit',
|
||||
'uses' => 'IncidentController@showEditIncidentUpdateAction',
|
||||
]);
|
||||
$router->post('{incident}/updates/{incident_update}', [
|
||||
'as' => 'post:dashboard.incidents.updates.edit',
|
||||
'uses' => 'IncidentController@editIncidentUpdateAction',
|
||||
]);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,27 +12,28 @@
|
||||
return [
|
||||
// Components
|
||||
'components' => [
|
||||
'last_updated' => 'Last updated :timestamp',
|
||||
'last_updated' => ':timestamp laas opgedateer',
|
||||
'status' => [
|
||||
0 => 'Unknown',
|
||||
0 => 'Onbekend',
|
||||
1 => 'Operasioneel',
|
||||
2 => 'Prestasieprobleme',
|
||||
3 => 'Gedeeltelike Onderbreking',
|
||||
4 => 'Groot Onderbreking',
|
||||
],
|
||||
'group' => [
|
||||
'other' => 'Other Components',
|
||||
'other' => 'Ander komponente',
|
||||
],
|
||||
],
|
||||
|
||||
// Incidents
|
||||
'incidents' => [
|
||||
'none' => 'No incidents reported',
|
||||
'none' => 'Geen voorvalle aangemeld',
|
||||
'past' => 'Vorige Voorvalle',
|
||||
'stickied' => 'Stickied Incidents',
|
||||
'scheduled' => 'Geskeduleerde Instandhouding',
|
||||
'scheduled_at' => ', scheduled :timestamp',
|
||||
'posted' => 'Posted :timestamp',
|
||||
'scheduled_at' => ', :timestamp geskeduleer',
|
||||
'posted' => ':timestamp gepos',
|
||||
'posted_at' => 'Posted at :timestamp',
|
||||
'status' => [
|
||||
1 => 'Onder die Loep',
|
||||
2 => 'Geïdentifiseerd',
|
||||
@@ -44,9 +45,9 @@ return [
|
||||
// Schedule
|
||||
'schedules' => [
|
||||
'status' => [
|
||||
0 => 'Upcoming',
|
||||
1 => 'In Progress',
|
||||
2 => 'Complete',
|
||||
0 => 'Opkomend',
|
||||
1 => 'Besig',
|
||||
2 => 'Voltooid',
|
||||
],
|
||||
],
|
||||
|
||||
@@ -65,7 +66,7 @@ return [
|
||||
// Metrics
|
||||
'metrics' => [
|
||||
'filter' => [
|
||||
'last_hour' => 'Last Hour',
|
||||
'last_hour' => 'Laaste uur',
|
||||
'hourly' => 'Afgelope 12 Uur',
|
||||
'weekly' => 'Weekliks',
|
||||
'monthly' => 'Maandeliks',
|
||||
@@ -74,7 +75,7 @@ return [
|
||||
|
||||
// Subscriber
|
||||
'subscriber' => [
|
||||
'subscribe' => 'Subscribe to get the updates',
|
||||
'subscribe' => 'Teken in om opdaterings te kry',
|
||||
'unsubscribe' => 'Unsubscribe at :link',
|
||||
'button' => 'Teken aan',
|
||||
'manage' => [
|
||||
|
||||
@@ -18,10 +18,23 @@ return [
|
||||
'incidents' => [
|
||||
'title' => 'Incidents & Schedule',
|
||||
'incidents' => 'Incidents',
|
||||
'logged' => '{0} There are no incidents, good work.|You have logged one incident.|You have reported <strong>:count</strong> incidents.',
|
||||
'logged' => '{0} There are no incidents, good work.|[1] You have logged one incident.|[2,*] You have reported <strong>:count</strong> incidents.',
|
||||
'incident-create-template' => 'Create Template',
|
||||
'incident-templates' => 'Incident Templates',
|
||||
'updates' => '{0} Zero Updates|One Update|:count Updates',
|
||||
'updates' => [
|
||||
'title' => 'Incident updates for :incident',
|
||||
'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,*] Several Updates',
|
||||
'add' => [
|
||||
'title' => 'Create new incident update',
|
||||
'success' => 'Your new incident update has been created.',
|
||||
'failure' => 'Something went wrong with the incident update.',
|
||||
],
|
||||
'edit' => [
|
||||
'title' => 'Edit incident update',
|
||||
'success' => 'The incident update has been updated.',
|
||||
'failure' => 'Something went wrong updating the incident update',
|
||||
],
|
||||
],
|
||||
'add' => [
|
||||
'title' => 'Report an incident',
|
||||
'success' => 'Incident added.',
|
||||
@@ -36,11 +49,6 @@ return [
|
||||
'success' => 'The incident has been deleted and will not show on your status page.',
|
||||
'failure' => 'The incident could not be deleted, please try again.',
|
||||
],
|
||||
'update' => [
|
||||
'title' => 'Create new incident update',
|
||||
'subtitle' => 'Add an update to <strong>:incident</strong>',
|
||||
'success' => 'Update added.',
|
||||
],
|
||||
|
||||
// Incident templates
|
||||
'templates' => [
|
||||
@@ -66,7 +74,7 @@ return [
|
||||
// Incident Maintenance
|
||||
'schedule' => [
|
||||
'schedule' => 'Geskeduleerde Instandhouding',
|
||||
'logged' => '{0} There are no schedules, good work.|You have logged one schedule.|You have reported <strong>:count</strong> schedules.',
|
||||
'logged' => '{0} There are no schedules, good work.|[1] You have logged one schedule.|[2,*] You have reported <strong>:count</strong> schedules.',
|
||||
'scheduled_at' => 'Scheduled at :timestamp',
|
||||
'add' => [
|
||||
'title' => 'Add Scheduled Maintenance',
|
||||
@@ -147,13 +155,15 @@ return [
|
||||
],
|
||||
// Subscribers
|
||||
'subscribers' => [
|
||||
'subscribers' => 'Subscribers',
|
||||
'description' => 'Subscribers will receive email updates when incidents are created or components are updated.',
|
||||
'verified' => 'Verified',
|
||||
'not_verified' => 'Not verified',
|
||||
'subscriber' => ':email, subscribed :date',
|
||||
'no_subscriptions' => 'Subscribed to all updates',
|
||||
'add' => [
|
||||
'subscribers' => 'Subscribers',
|
||||
'description' => 'Subscribers will receive email updates when incidents are created or components are updated.',
|
||||
'description_disabled' => 'To use this feature, you need allow people to signup for notifications.',
|
||||
'verified' => 'Verified',
|
||||
'not_verified' => 'Not verified',
|
||||
'subscriber' => ':email, subscribed :date',
|
||||
'no_subscriptions' => 'Subscribed to all updates',
|
||||
'global' => 'Globally subscribed',
|
||||
'add' => [
|
||||
'title' => 'Add a new subscriber',
|
||||
'success' => 'Subscriber has been added!',
|
||||
'failure' => 'Something went wrong adding the subscriber, please try again.',
|
||||
|
||||
@@ -151,6 +151,7 @@ return [
|
||||
'display-graphs' => 'Display graphs on status page?',
|
||||
'about-this-page' => 'About this page',
|
||||
'days-of-incidents' => 'How many days of incidents to show?',
|
||||
'time_before_refresh' => 'Status page refresh rate (in seconds).',
|
||||
'banner' => 'Banner Image',
|
||||
'banner-help' => "It's recommended that you upload files no bigger than 930px wide .",
|
||||
'subscribers' => 'Allow people to signup to email notifications?',
|
||||
@@ -223,17 +224,18 @@ return [
|
||||
],
|
||||
|
||||
// Buttons
|
||||
'add' => 'Add',
|
||||
'save' => 'Save',
|
||||
'update' => 'Update',
|
||||
'create' => 'Create',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Delete',
|
||||
'submit' => 'Submit',
|
||||
'cancel' => 'Cancel',
|
||||
'remove' => 'Remove',
|
||||
'invite' => 'Invite',
|
||||
'signup' => 'Teken Aan',
|
||||
'add' => 'Add',
|
||||
'save' => 'Save',
|
||||
'update' => 'Update',
|
||||
'create' => 'Create',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Delete',
|
||||
'submit' => 'Submit',
|
||||
'cancel' => 'Cancel',
|
||||
'remove' => 'Remove',
|
||||
'invite' => 'Invite',
|
||||
'signup' => 'Teken Aan',
|
||||
'manage_updates' => 'Manage Updates',
|
||||
|
||||
// Other
|
||||
'optional' => '* Optional',
|
||||
|
||||
@@ -22,7 +22,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => 'Previous',
|
||||
'next' => 'Next',
|
||||
'previous' => 'Vorige',
|
||||
'next' => 'Volgende',
|
||||
|
||||
];
|
||||
|
||||
@@ -33,6 +33,7 @@ return [
|
||||
'scheduled' => 'صيانة مجدولة',
|
||||
'scheduled_at' => ', مجدولة :timestamp',
|
||||
'posted' => 'تم الإرسال :timestamp',
|
||||
'posted_at' => 'Posted at :timestamp',
|
||||
'status' => [
|
||||
1 => 'تحقيق',
|
||||
2 => 'تم التعرف عليه',
|
||||
|
||||
@@ -21,7 +21,20 @@ return [
|
||||
'logged' => '{0} There are no incidents, good work.|You have logged one incident.|You have reported <strong>:count</strong> incidents.',
|
||||
'incident-create-template' => 'إنشاء قالب',
|
||||
'incident-templates' => 'قوالب الحالات',
|
||||
'updates' => '{0} لا توجد تحديثات | تحديث واحد | :count تحديثات',
|
||||
'updates' => [
|
||||
'title' => 'Incident updates for :incident',
|
||||
'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,*] Several Updates',
|
||||
'add' => [
|
||||
'title' => 'إنشاء تحديث حالة جديد',
|
||||
'success' => 'Your new incident update has been created.',
|
||||
'failure' => 'Something went wrong with the incident update.',
|
||||
],
|
||||
'edit' => [
|
||||
'title' => 'Edit incident update',
|
||||
'success' => 'The incident update has been updated.',
|
||||
'failure' => 'Something went wrong updating the incident update',
|
||||
],
|
||||
],
|
||||
'add' => [
|
||||
'title' => 'الإبلاغ عن حالة',
|
||||
'success' => 'تم إضافة الحالة.',
|
||||
@@ -36,11 +49,6 @@ return [
|
||||
'success' => 'تم حذف الحالة و لن تظهر في صفحة الحالة الخاصة بك.',
|
||||
'failure' => 'حدث خلل أثناء حذف الحالة، الرجاء المحاولة مرة أخرى.',
|
||||
],
|
||||
'update' => [
|
||||
'title' => 'إنشاء تحديث حالة جديد',
|
||||
'subtitle' => 'إضافة تحديث إلى <strong>:incident</strong>',
|
||||
'success' => 'Update added.',
|
||||
],
|
||||
|
||||
// Incident templates
|
||||
'templates' => [
|
||||
@@ -52,7 +60,7 @@ return [
|
||||
'failure' => 'Something went wrong with the incident template.',
|
||||
],
|
||||
'edit' => [
|
||||
'title' => 'Edit Template',
|
||||
'title' => 'تغيير النموذج',
|
||||
'success' => 'The incident template has been updated.',
|
||||
'failure' => 'Something went wrong updating the incident template',
|
||||
],
|
||||
@@ -147,13 +155,15 @@ return [
|
||||
],
|
||||
// Subscribers
|
||||
'subscribers' => [
|
||||
'subscribers' => 'Subscribers',
|
||||
'description' => 'Subscribers will receive email updates when incidents are created or components are updated.',
|
||||
'verified' => 'Verified',
|
||||
'not_verified' => 'Not verified',
|
||||
'subscriber' => ':email, subscribed :date',
|
||||
'no_subscriptions' => 'Subscribed to all updates',
|
||||
'add' => [
|
||||
'subscribers' => 'المشتركين',
|
||||
'description' => 'Subscribers will receive email updates when incidents are created or components are updated.',
|
||||
'description_disabled' => 'To use this feature, you need allow people to signup for notifications.',
|
||||
'verified' => 'Verified',
|
||||
'not_verified' => 'Not verified',
|
||||
'subscriber' => ':email, subscribed :date',
|
||||
'no_subscriptions' => 'Subscribed to all updates',
|
||||
'global' => 'Globally subscribed',
|
||||
'add' => [
|
||||
'title' => 'Add a new subscriber',
|
||||
'success' => 'Subscriber has been added!',
|
||||
'failure' => 'Something went wrong adding the subscriber, please try again.',
|
||||
@@ -168,7 +178,7 @@ return [
|
||||
|
||||
// Team
|
||||
'team' => [
|
||||
'team' => 'Team',
|
||||
'team' => 'فريق',
|
||||
'member' => 'Member',
|
||||
'profile' => 'Profile',
|
||||
'description' => 'Team Members will be able to add, modify & edit components and incidents.',
|
||||
|
||||
@@ -151,6 +151,7 @@ return [
|
||||
'display-graphs' => 'Display graphs on status page?',
|
||||
'about-this-page' => 'About this page',
|
||||
'days-of-incidents' => 'How many days of incidents to show?',
|
||||
'time_before_refresh' => 'Status page refresh rate (in seconds).',
|
||||
'banner' => 'Banner Image',
|
||||
'banner-help' => "It's recommended that you upload files no bigger than 930px wide .",
|
||||
'subscribers' => 'Allow people to signup to email notifications?',
|
||||
@@ -223,17 +224,18 @@ return [
|
||||
],
|
||||
|
||||
// Buttons
|
||||
'add' => 'Add',
|
||||
'save' => 'Save',
|
||||
'update' => 'Update',
|
||||
'create' => 'Create',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Delete',
|
||||
'submit' => 'Submit',
|
||||
'cancel' => 'Cancel',
|
||||
'remove' => 'Remove',
|
||||
'invite' => 'Invite',
|
||||
'signup' => 'سجل',
|
||||
'add' => 'Add',
|
||||
'save' => 'Save',
|
||||
'update' => 'Update',
|
||||
'create' => 'Create',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Delete',
|
||||
'submit' => 'Submit',
|
||||
'cancel' => 'Cancel',
|
||||
'remove' => 'Remove',
|
||||
'invite' => 'Invite',
|
||||
'signup' => 'سجل',
|
||||
'manage_updates' => 'Manage Updates',
|
||||
|
||||
// Other
|
||||
'optional' => '* Optional',
|
||||
|
||||
@@ -13,84 +13,84 @@ return [
|
||||
'component' => [
|
||||
'status_update' => [
|
||||
'mail' => [
|
||||
'subject' => 'Component Status Updated',
|
||||
'greeting' => 'A component\'s status was updated!',
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'action' => 'View',
|
||||
'subject' => 'تم تحديث حالة المكون',
|
||||
'greeting' => 'تم تحديث حالة المكون!',
|
||||
'content' => 'تم تغيير حالة :name من :old_status إلى :new_status.',
|
||||
'action' => 'عرض',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'Component Status Updated',
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'title' => 'تم تحديث حالة المكون',
|
||||
'content' => 'تم تغيير حالة :name من :old_status إلى :new_status.',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'content' => 'تم تغيير حالة :name من :old_status إلى :new_status.',
|
||||
],
|
||||
],
|
||||
],
|
||||
'incident' => [
|
||||
'new' => [
|
||||
'mail' => [
|
||||
'subject' => 'New Incident Reported',
|
||||
'greeting' => 'A new incident was reported at :app_name.',
|
||||
'content' => 'Incident :name was reported',
|
||||
'action' => 'View',
|
||||
'subject' => 'تم الإبلاغ عن حالة جديدة',
|
||||
'greeting' => 'تم الإبلاغ عن حالة جديدة في صفحة الحالة الخاصة بـ :app_name.',
|
||||
'content' => 'تم الإبلاغ عن حالة :name',
|
||||
'action' => 'عرض',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'Incident :name Reported',
|
||||
'content' => 'A new incident was reported at :app_name',
|
||||
'title' => 'تم الإبلاغ عن حالة :name',
|
||||
'content' => 'أبلغ عن حالة جديدة في صفحة الحالة الخاصة بـ :app_name',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => 'A new incident was reported at :app_name.',
|
||||
'content' => 'تم الإبلاغ عن حالة جديدة في صفحة الحالة الخاصة بـ :app_name.',
|
||||
],
|
||||
],
|
||||
'update' => [
|
||||
'mail' => [
|
||||
'subject' => 'Incident Updated',
|
||||
'content' => ':name was updated',
|
||||
'title' => ':name was updated to :new_status',
|
||||
'action' => 'View',
|
||||
'subject' => 'تم تحديث الحالة',
|
||||
'content' => 'تم تحديث :name',
|
||||
'title' => 'تم تحديث :name إلى :new_status',
|
||||
'action' => 'عرض',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => ':name Updated',
|
||||
'content' => ':name was updated to :new_status',
|
||||
'title' => 'تم تحديث :name',
|
||||
'content' => 'تم تحديث :name إلى :new_status',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => 'Incident :name was updated',
|
||||
'content' => 'تم الإبلاغ عن حالة :name',
|
||||
],
|
||||
],
|
||||
],
|
||||
'schedule' => [
|
||||
'new' => [
|
||||
'mail' => [
|
||||
'subject' => 'New Schedule Created',
|
||||
'content' => ':name was scheduled for :date',
|
||||
'title' => 'A new scheduled maintenance was created.',
|
||||
'action' => 'View',
|
||||
'subject' => 'تم جدولة عملية جديدة',
|
||||
'content' => 'تم جدولة :name إلى :date',
|
||||
'title' => 'تم إنشاء صيانة مجدولة.',
|
||||
'action' => 'عرض',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'New Schedule Created!',
|
||||
'content' => ':name was scheduled for :date',
|
||||
'title' => 'تم إنشاء جدول جديد!',
|
||||
'content' => 'تم جدولة :name إلى :date',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => ':name was scheduled for :date',
|
||||
'content' => 'تم جدولة :name إلى :date',
|
||||
],
|
||||
],
|
||||
],
|
||||
'subscriber' => [
|
||||
'verify' => [
|
||||
'mail' => [
|
||||
'subject' => 'Verify Your Subscription',
|
||||
'content' => 'Click to verify your subscription to :app_name status page.',
|
||||
'title' => 'Verify your subscription to :app_name status page.',
|
||||
'action' => 'Verify',
|
||||
'subject' => 'تحقق من إشتراكك',
|
||||
'content' => 'تحقق من إشتراكك في صفحة الحالة الخاصة بـ :app_name.',
|
||||
'title' => 'تحقق من إشتراكك في صفحة الحالة الخاصة بـ :app_name.',
|
||||
'action' => 'تأكيد',
|
||||
],
|
||||
],
|
||||
],
|
||||
'system' => [
|
||||
'test' => [
|
||||
'mail' => [
|
||||
'subject' => 'Ping from Cachet!',
|
||||
'content' => 'This is a test notification from Cachet!',
|
||||
'subject' => 'تنبيه من Cachet!',
|
||||
'content' => 'رسالة تنبيه تجريبية من Cachet!',
|
||||
'title' => '🔔',
|
||||
],
|
||||
],
|
||||
@@ -98,10 +98,10 @@ return [
|
||||
'user' => [
|
||||
'invite' => [
|
||||
'mail' => [
|
||||
'subject' => 'Your invitation is inside...',
|
||||
'content' => 'You have been invited to join :app_name status page.',
|
||||
'title' => 'You\'re invited to join :app_name status page.',
|
||||
'action' => 'Accept',
|
||||
'subject' => 'دعوتك للإنضمام في الداخل...',
|
||||
'content' => 'أنت مدعو للإنضمام إلى صفحة الحالة الخاصة بـ :app_name.',
|
||||
'title' => 'أنت مدعو للإنضمام إلى صفحة الحالة الخاصة بـ :app_name.',
|
||||
'action' => 'قبول',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
@@ -22,7 +22,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => 'Previous',
|
||||
'next' => 'Next',
|
||||
'previous' => 'السابق',
|
||||
'next' => 'التالي',
|
||||
|
||||
];
|
||||
|
||||
@@ -14,7 +14,7 @@ return [
|
||||
'components' => [
|
||||
'last_updated' => 'Darrera actualització :timestamp',
|
||||
'status' => [
|
||||
0 => 'Unknown',
|
||||
0 => 'Desconegut',
|
||||
1 => 'Operatiu',
|
||||
2 => 'Problemes de rendiment',
|
||||
3 => 'Interrupció parcial',
|
||||
@@ -29,10 +29,11 @@ return [
|
||||
'incidents' => [
|
||||
'none' => 'No s\'han registrat incidents',
|
||||
'past' => 'Incidents anteriors',
|
||||
'stickied' => 'Stickied Incidents',
|
||||
'stickied' => 'Incidents fixats',
|
||||
'scheduled' => 'Interrupció programada',
|
||||
'scheduled_at' => ', programat',
|
||||
'posted' => 'Posted :timestamp',
|
||||
'posted' => 'Publicat :timestamp',
|
||||
'posted_at' => 'Posted at :timestamp',
|
||||
'status' => [
|
||||
1 => 'Investigant',
|
||||
2 => 'Identificat',
|
||||
@@ -44,9 +45,9 @@ return [
|
||||
// Schedule
|
||||
'schedules' => [
|
||||
'status' => [
|
||||
0 => 'Upcoming',
|
||||
1 => 'In Progress',
|
||||
2 => 'Complete',
|
||||
0 => 'Propers',
|
||||
1 => 'En curs',
|
||||
2 => 'Completar',
|
||||
],
|
||||
],
|
||||
|
||||
@@ -99,7 +100,7 @@ return [
|
||||
'email' => 'Correu electrònic',
|
||||
'password' => 'Contrasenya',
|
||||
'success' => 'El vostre compte s\'ha creat.',
|
||||
'failure' => 'Something went wrong with the signup.',
|
||||
'failure' => 'Alguna cosa ha anat malament amb el registre.',
|
||||
],
|
||||
|
||||
'system' => [
|
||||
@@ -118,9 +119,9 @@ return [
|
||||
|
||||
// Other
|
||||
'home' => 'Inici',
|
||||
'description' => 'Stay up to date with the latest service updates from :app.',
|
||||
'description' => 'Estigues informat de les últimes actualitzacions del servei de :app.',
|
||||
'powered_by' => 'Funciona amb <a href="https://cachethq.io" class="links">Cachet</a>.',
|
||||
'timezone' => 'Times are shown in :timezone.',
|
||||
'timezone' => 'Les hores es mostren en :timezone.',
|
||||
'about_this_site' => 'Sobre aquest lloc',
|
||||
'rss-feed' => 'RSS',
|
||||
'atom-feed' => 'Atom',
|
||||
|
||||
@@ -21,7 +21,20 @@ return [
|
||||
'logged' => '{0} There are no incidents, good work.|You have logged one incident.|You have reported <strong>:count</strong> incidents.',
|
||||
'incident-create-template' => 'Crear plantilla',
|
||||
'incident-templates' => 'Incident Templates',
|
||||
'updates' => '{0} Zero Updates|One Update|:count Updates',
|
||||
'updates' => [
|
||||
'title' => 'Incident updates for :incident',
|
||||
'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,*] Several Updates',
|
||||
'add' => [
|
||||
'title' => 'Create new incident update',
|
||||
'success' => 'Your new incident update has been created.',
|
||||
'failure' => 'Something went wrong with the incident update.',
|
||||
],
|
||||
'edit' => [
|
||||
'title' => 'Edit incident update',
|
||||
'success' => 'The incident update has been updated.',
|
||||
'failure' => 'Something went wrong updating the incident update',
|
||||
],
|
||||
],
|
||||
'add' => [
|
||||
'title' => 'Informar d\'una incidència',
|
||||
'success' => 'Incidència afegida.',
|
||||
@@ -36,11 +49,6 @@ return [
|
||||
'success' => 'The incident has been deleted and will not show on your status page.',
|
||||
'failure' => 'The incident could not be deleted, please try again.',
|
||||
],
|
||||
'update' => [
|
||||
'title' => 'Create new incident update',
|
||||
'subtitle' => 'Add an update to <strong>:incident</strong>',
|
||||
'success' => 'Update added.',
|
||||
],
|
||||
|
||||
// Incident templates
|
||||
'templates' => [
|
||||
@@ -147,13 +155,15 @@ return [
|
||||
],
|
||||
// Subscribers
|
||||
'subscribers' => [
|
||||
'subscribers' => 'Subscribers',
|
||||
'description' => 'Subscribers will receive email updates when incidents are created or components are updated.',
|
||||
'verified' => 'Verified',
|
||||
'not_verified' => 'Not verified',
|
||||
'subscriber' => ':email, subscribed :date',
|
||||
'no_subscriptions' => 'Subscribed to all updates',
|
||||
'add' => [
|
||||
'subscribers' => 'Subscribers',
|
||||
'description' => 'Subscribers will receive email updates when incidents are created or components are updated.',
|
||||
'description_disabled' => 'To use this feature, you need allow people to signup for notifications.',
|
||||
'verified' => 'Verified',
|
||||
'not_verified' => 'Not verified',
|
||||
'subscriber' => ':email, subscribed :date',
|
||||
'no_subscriptions' => 'Subscribed to all updates',
|
||||
'global' => 'Globally subscribed',
|
||||
'add' => [
|
||||
'title' => 'Afegir un nou subscriptor',
|
||||
'success' => 'Subscriptor afegit!',
|
||||
'failure' => 'Something went wrong adding the subscriber, please try again.',
|
||||
|
||||
@@ -40,8 +40,8 @@ return [
|
||||
'invalid' => 'El nom d\'usuari o contrasenya no és vàlid',
|
||||
'invalid-token' => 'Token invàlid',
|
||||
'cookies' => 'Heu d\'habilitar les galetes (cookies) per poder iniciar sessió.',
|
||||
'rate-limit' => 'Rate limit exceeded.',
|
||||
'remember_me' => 'Remember me',
|
||||
'rate-limit' => 'Taxa límit excedida.',
|
||||
'remember_me' => 'Recordar-me',
|
||||
],
|
||||
|
||||
// Incidents form fields
|
||||
@@ -51,12 +51,12 @@ return [
|
||||
'component' => 'Component',
|
||||
'message' => 'Missatge',
|
||||
'message-help' => 'També podeu fer servir Markdown.',
|
||||
'occurred_at' => 'When did this incident occur?',
|
||||
'occurred_at' => 'Quan va succeir aquest incident?',
|
||||
'notify_subscribers' => 'Notificar els subscriptors?',
|
||||
'visibility' => 'Visibilitat de l\'incident',
|
||||
'stick_status' => 'Stick Incident',
|
||||
'stickied' => 'Stickied',
|
||||
'not_stickied' => 'Not Stickied',
|
||||
'stick_status' => 'Fixar incident',
|
||||
'stickied' => 'Fixats',
|
||||
'not_stickied' => 'No fixats',
|
||||
'public' => 'Visible pel públic',
|
||||
'logged_in_only' => 'Visible només per a usuaris registrats',
|
||||
'templates' => [
|
||||
@@ -71,8 +71,8 @@ return [
|
||||
'status' => 'Estat',
|
||||
'message' => 'Missatge',
|
||||
'message-help' => 'També podeu fer servir Markdown.',
|
||||
'scheduled_at' => 'When is this maintenance scheduled for?',
|
||||
'completed_at' => 'When did this maintenance complete?',
|
||||
'scheduled_at' => 'Per quan està programat aquest manteniment?',
|
||||
'completed_at' => 'Quan s\'ha completat aquest manteniment?',
|
||||
'templates' => [
|
||||
'name' => 'Nom',
|
||||
'template' => 'Plantilla',
|
||||
@@ -93,13 +93,13 @@ return [
|
||||
|
||||
'groups' => [
|
||||
'name' => 'Nom',
|
||||
'collapsing' => 'Expand/Collapse options',
|
||||
'collapsing' => 'Desplega/redueix opcions',
|
||||
'visible' => 'Sempre ampliat',
|
||||
'collapsed' => 'Per defecte redueix el grup',
|
||||
'collapsed_incident' => 'Per defecte redueix el grup, però amplia\'l si hi ha problemes',
|
||||
'visibility' => 'Visibility',
|
||||
'visibility_public' => 'Visible to public',
|
||||
'visibility_authenticated' => 'Visible only to logged in users',
|
||||
'visibility' => 'Visibilitat',
|
||||
'visibility_public' => 'Visible al públic',
|
||||
'visibility_authenticated' => 'Visible només per a usuaris registrats',
|
||||
],
|
||||
],
|
||||
|
||||
@@ -107,14 +107,14 @@ return [
|
||||
'actions' => [
|
||||
'name' => 'Nom',
|
||||
'description' => 'Descripció',
|
||||
'start_at' => 'Schedule start time',
|
||||
'timezone' => 'Timezone',
|
||||
'schedule_frequency' => 'Schedule frequency (in seconds)',
|
||||
'completion_latency' => 'Completion latency (in seconds)',
|
||||
'start_at' => 'Hora d\'inici de l\'horari',
|
||||
'timezone' => 'Fus horari',
|
||||
'schedule_frequency' => 'Freqüència de l\'horari (en segons)',
|
||||
'completion_latency' => 'Latència de finalització (en segons)',
|
||||
'group' => 'Grup',
|
||||
'active' => 'Active?',
|
||||
'active' => 'Actiu?',
|
||||
'groups' => [
|
||||
'name' => 'Group Name',
|
||||
'name' => 'Nom del grup',
|
||||
],
|
||||
],
|
||||
|
||||
@@ -131,11 +131,11 @@ return [
|
||||
'type_avg' => 'Mitjana',
|
||||
'places' => 'Nombre de decimals',
|
||||
'default_view' => 'Vista per defecte',
|
||||
'threshold' => 'How many minutes of threshold between metric points?',
|
||||
'visibility' => 'Visibility',
|
||||
'visibility_authenticated' => 'Visible to authenticated users',
|
||||
'visibility_public' => 'Visible to everybody',
|
||||
'visibility_hidden' => 'Always hidden',
|
||||
'threshold' => 'Quants minuts de llindar entre punts mètrics?',
|
||||
'visibility' => 'Visibilitat',
|
||||
'visibility_authenticated' => 'Visible per als usuaris autenticats',
|
||||
'visibility_public' => 'Visible per a tothom',
|
||||
'visibility_hidden' => 'Sempre amagat',
|
||||
|
||||
'points' => [
|
||||
'value' => 'Valor',
|
||||
@@ -151,14 +151,15 @@ return [
|
||||
'display-graphs' => 'Mostrar gràfics a la pàgina d\'estat?',
|
||||
'about-this-page' => 'Sobre aquest lloc',
|
||||
'days-of-incidents' => 'Quants de dies d\'incidents voleu veure?',
|
||||
'time_before_refresh' => 'Status page refresh rate (in seconds).',
|
||||
'banner' => 'Imatge del banner',
|
||||
'banner-help' => "Es recomana que no carregueu arxius més grans de 930 píxels d'ample.",
|
||||
'subscribers' => 'Permetre el registre per a notificacions per correu electrònic?',
|
||||
'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)',
|
||||
'automatic_localization' => 'Automatically localise your status page to your visitor\'s language?',
|
||||
'enable_external_dependencies' => 'Enable Third Party Dependencies (Google Fonts, Trackers, etc...)',
|
||||
'show_timezone' => 'Show the timezone the status page is running in.',
|
||||
'only_disrupted_days' => 'Only show days containing incidents in the timeline?',
|
||||
'skip_subscriber_verification' => 'Omet verificació d\'usuaris? (S\'adverteix que podries rebre correu brossa)',
|
||||
'automatic_localization' => 'Localitza automàticament la pàgina d\'estat a la llengua dels seus visitants?',
|
||||
'enable_external_dependencies' => 'Habilitar dependències de tercers (Fonts de Google, Seguiments, etc...)',
|
||||
'show_timezone' => 'Mostra el fus horari propi de la pàgina d\'estat.',
|
||||
'only_disrupted_days' => 'Mostrar només els dies que contenen incidències a la línia de temps?',
|
||||
],
|
||||
'analytics' => [
|
||||
'analytics_google' => 'Codi de Google Analytics',
|
||||
@@ -219,21 +220,22 @@ return [
|
||||
],
|
||||
|
||||
'general' => [
|
||||
'timezone' => 'Select Timezone',
|
||||
'timezone' => 'Seleccioneu el fus horari',
|
||||
],
|
||||
|
||||
// Buttons
|
||||
'add' => 'Afegeix',
|
||||
'save' => 'Desar',
|
||||
'update' => 'Actualitzar',
|
||||
'create' => 'Crear',
|
||||
'edit' => 'Editar',
|
||||
'delete' => 'Eliminar',
|
||||
'submit' => 'Enviar',
|
||||
'cancel' => 'Cancel·lar',
|
||||
'remove' => 'Treure',
|
||||
'invite' => 'Convidar',
|
||||
'signup' => 'Crea un compte',
|
||||
'add' => 'Afegeix',
|
||||
'save' => 'Desar',
|
||||
'update' => 'Actualitzar',
|
||||
'create' => 'Crear',
|
||||
'edit' => 'Editar',
|
||||
'delete' => 'Eliminar',
|
||||
'submit' => 'Enviar',
|
||||
'cancel' => 'Cancel·lar',
|
||||
'remove' => 'Treure',
|
||||
'invite' => 'Convidar',
|
||||
'signup' => 'Crea un compte',
|
||||
'manage_updates' => 'Manage Updates',
|
||||
|
||||
// Other
|
||||
'optional' => '* Opcional',
|
||||
|
||||
@@ -12,11 +12,11 @@
|
||||
return [
|
||||
'setup' => 'Configuració',
|
||||
'title' => 'Instal·lar Cachet',
|
||||
'service_details' => 'Service Details',
|
||||
'service_details' => 'Detalls del servei',
|
||||
'env_setup' => 'Configuració de l\'entorn',
|
||||
'status_page_setup' => 'Configuració de la pàgina d\'estat',
|
||||
'show_support' => 'Mostrar enllaç de suport de Cachet?',
|
||||
'admin_account' => 'Administrator Account',
|
||||
'admin_account' => 'Compte d\'administrador',
|
||||
'complete_setup' => 'Completar configuració',
|
||||
'completed' => 'Cachet s\'ha configurat correctament!',
|
||||
'finish_setup' => 'Anar al taulell de control',
|
||||
|
||||
@@ -33,6 +33,7 @@ return [
|
||||
'scheduled' => 'Plánovaná odstávka',
|
||||
'scheduled_at' => ', plánované na :timestamp',
|
||||
'posted' => 'Publikováno :timestamp',
|
||||
'posted_at' => 'Posted at :timestamp',
|
||||
'status' => [
|
||||
1 => 'Zkoumání příčiny',
|
||||
2 => 'Problém identifikován',
|
||||
|
||||
@@ -21,7 +21,20 @@ return [
|
||||
'logged' => '{0} Nejsou hlášeny žádné incidenty, dobrá práce. | Zapsali jste jeden incident. | Nahlásili jste <strong>:count</strong> incident(y).',
|
||||
'incident-create-template' => 'Vytvořit šablonu',
|
||||
'incident-templates' => 'Šablony incidentů',
|
||||
'updates' => '{0} Žádné Novinky|Jedna Novinka|:count Novinek',
|
||||
'updates' => [
|
||||
'title' => 'Incident updates for :incident',
|
||||
'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,*] Several Updates',
|
||||
'add' => [
|
||||
'title' => 'Vytvořit novou zprávu k události',
|
||||
'success' => 'Your new incident update has been created.',
|
||||
'failure' => 'Something went wrong with the incident update.',
|
||||
],
|
||||
'edit' => [
|
||||
'title' => 'Edit incident update',
|
||||
'success' => 'The incident update has been updated.',
|
||||
'failure' => 'Something went wrong updating the incident update',
|
||||
],
|
||||
],
|
||||
'add' => [
|
||||
'title' => 'Nahlásit incident',
|
||||
'success' => 'Incident byl přidán.',
|
||||
@@ -36,11 +49,6 @@ return [
|
||||
'success' => 'Událost byla odstraněna a už se nebude zobrazovat na stavové stránce.',
|
||||
'failure' => 'Událost se nepodařilo smazat, opakujte akci.',
|
||||
],
|
||||
'update' => [
|
||||
'title' => 'Vytvořit novou zprávu k události',
|
||||
'subtitle' => 'Aktualizace k <strong>:incident</strong>',
|
||||
'success' => 'Update added.',
|
||||
],
|
||||
|
||||
// Incident templates
|
||||
'templates' => [
|
||||
@@ -147,13 +155,15 @@ return [
|
||||
],
|
||||
// Subscribers
|
||||
'subscribers' => [
|
||||
'subscribers' => 'Odběratelé',
|
||||
'description' => 'Odběratelé obdrží aktualizace e-mailem, pokuď dojde ke vzniku incidentu.',
|
||||
'verified' => 'Ověřeno',
|
||||
'not_verified' => 'Neověřeno',
|
||||
'subscriber' => ': e-mail, přihlášen: datum',
|
||||
'no_subscriptions' => 'Přihlášeno k zasílání všech aktualizací',
|
||||
'add' => [
|
||||
'subscribers' => 'Odběratelé',
|
||||
'description' => 'Odběratelé obdrží aktualizace e-mailem, pokuď dojde ke vzniku incidentu.',
|
||||
'description_disabled' => 'To use this feature, you need allow people to signup for notifications.',
|
||||
'verified' => 'Ověřeno',
|
||||
'not_verified' => 'Neověřeno',
|
||||
'subscriber' => ': e-mail, přihlášen: datum',
|
||||
'no_subscriptions' => 'Přihlášeno k zasílání všech aktualizací',
|
||||
'global' => 'Globally subscribed',
|
||||
'add' => [
|
||||
'title' => 'Přidat nového odběratele',
|
||||
'success' => 'Odběratel přidán.',
|
||||
'failure' => 'Něco se pokazilo při přidávání odběratele, opakujte akci.',
|
||||
|
||||
@@ -151,6 +151,7 @@ return [
|
||||
'display-graphs' => 'Zobrazit grafy na stavové stránce?',
|
||||
'about-this-page' => 'O této stránce',
|
||||
'days-of-incidents' => 'Kolik dní incidentů zobrazovat?',
|
||||
'time_before_refresh' => 'Status page refresh rate (in seconds).',
|
||||
'banner' => 'Obrázek banneru',
|
||||
'banner-help' => 'Doručuje se nenahrávat soubory větší než 930 pixelů na šířku.',
|
||||
'subscribers' => 'Umožnit lidem, aby se přihlašovali k odběru e-mailových upozornění?',
|
||||
@@ -223,17 +224,18 @@ return [
|
||||
],
|
||||
|
||||
// Buttons
|
||||
'add' => 'Přidat',
|
||||
'save' => 'Uložit',
|
||||
'update' => 'Aktualizovat',
|
||||
'create' => 'Vytvořit',
|
||||
'edit' => 'Upravit',
|
||||
'delete' => 'Smazat',
|
||||
'submit' => 'Potvrdit',
|
||||
'cancel' => 'Zrušit',
|
||||
'remove' => 'Smazat',
|
||||
'invite' => 'Pozvat',
|
||||
'signup' => 'Registrovat se',
|
||||
'add' => 'Přidat',
|
||||
'save' => 'Uložit',
|
||||
'update' => 'Aktualizovat',
|
||||
'create' => 'Vytvořit',
|
||||
'edit' => 'Upravit',
|
||||
'delete' => 'Smazat',
|
||||
'submit' => 'Potvrdit',
|
||||
'cancel' => 'Zrušit',
|
||||
'remove' => 'Smazat',
|
||||
'invite' => 'Pozvat',
|
||||
'signup' => 'Registrovat se',
|
||||
'manage_updates' => 'Manage Updates',
|
||||
|
||||
// Other
|
||||
'optional' => '* Volitelné',
|
||||
|
||||
@@ -13,84 +13,84 @@ return [
|
||||
'component' => [
|
||||
'status_update' => [
|
||||
'mail' => [
|
||||
'subject' => 'Component Status Updated',
|
||||
'greeting' => 'A component\'s status was updated!',
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'action' => 'View',
|
||||
'subject' => 'Aktualizován stav komponenty',
|
||||
'greeting' => 'Stav kompomenty byl aktualizován!',
|
||||
'content' => ':name změnil stav z :old_status na :new_status.',
|
||||
'action' => 'Zobrazit',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'Component Status Updated',
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'title' => 'Aktualizován stav komponenty',
|
||||
'content' => ':name změnil stav z :old_status na :new_status.',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'content' => ':name změnil stav z :old_status na :new_status.',
|
||||
],
|
||||
],
|
||||
],
|
||||
'incident' => [
|
||||
'new' => [
|
||||
'mail' => [
|
||||
'subject' => 'New Incident Reported',
|
||||
'greeting' => 'A new incident was reported at :app_name.',
|
||||
'content' => 'Incident :name was reported',
|
||||
'action' => 'View',
|
||||
'subject' => 'Nahlášena nová událost',
|
||||
'greeting' => 'Nová událost byla nahlášena v :app_name.',
|
||||
'content' => 'Událost :name byla nahlášena',
|
||||
'action' => 'Zobrazit',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'Incident :name Reported',
|
||||
'content' => 'A new incident was reported at :app_name',
|
||||
'title' => 'Událost :name nahlášena',
|
||||
'content' => 'Nová událost byla nahlášena v :app_name',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => 'A new incident was reported at :app_name.',
|
||||
'content' => 'Nová událost byla nahlášena v :app_name.',
|
||||
],
|
||||
],
|
||||
'update' => [
|
||||
'mail' => [
|
||||
'subject' => 'Incident Updated',
|
||||
'content' => ':name was updated',
|
||||
'title' => ':name was updated to :new_status',
|
||||
'action' => 'View',
|
||||
'subject' => 'Událost aktualizována',
|
||||
'content' => ':name byl aktualizován',
|
||||
'title' => ':name změnil stav na :new_status',
|
||||
'action' => 'Zobrazit',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => ':name Updated',
|
||||
'content' => ':name was updated to :new_status',
|
||||
'title' => ':name byl aktualizován',
|
||||
'content' => ':name změnil stav na :new_status',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => 'Incident :name was updated',
|
||||
'content' => 'Událost :name byla aktualizována',
|
||||
],
|
||||
],
|
||||
],
|
||||
'schedule' => [
|
||||
'new' => [
|
||||
'mail' => [
|
||||
'subject' => 'New Schedule Created',
|
||||
'content' => ':name was scheduled for :date',
|
||||
'title' => 'A new scheduled maintenance was created.',
|
||||
'action' => 'View',
|
||||
'subject' => 'Nový plán vytvořen',
|
||||
'content' => ':name bylo naplánováno na :date',
|
||||
'title' => 'Nová plánovaná údržba byla vytvořena.',
|
||||
'action' => 'Zobrazit',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'New Schedule Created!',
|
||||
'content' => ':name was scheduled for :date',
|
||||
'title' => 'Nový plán vytvořen!',
|
||||
'content' => ':name bylo naplánováno na :date',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => ':name was scheduled for :date',
|
||||
'content' => ':name bylo naplánováno na :date',
|
||||
],
|
||||
],
|
||||
],
|
||||
'subscriber' => [
|
||||
'verify' => [
|
||||
'mail' => [
|
||||
'subject' => 'Verify Your Subscription',
|
||||
'content' => 'Click to verify your subscription to :app_name status page.',
|
||||
'title' => 'Verify your subscription to :app_name status page.',
|
||||
'action' => 'Verify',
|
||||
'subject' => 'Potvrďte váš odběr',
|
||||
'content' => 'Klikněte pro potvrzení odběru stavové stránky :app_name.',
|
||||
'title' => 'Potvrďte svůj odběr stavové stránky :app_name.',
|
||||
'action' => 'Ověřit',
|
||||
],
|
||||
],
|
||||
],
|
||||
'system' => [
|
||||
'test' => [
|
||||
'mail' => [
|
||||
'subject' => 'Ping from Cachet!',
|
||||
'content' => 'This is a test notification from Cachet!',
|
||||
'subject' => 'Ping z Cachet!',
|
||||
'content' => 'Toto je testovací oznámení z Cachet!',
|
||||
'title' => '🔔',
|
||||
],
|
||||
],
|
||||
@@ -98,10 +98,10 @@ return [
|
||||
'user' => [
|
||||
'invite' => [
|
||||
'mail' => [
|
||||
'subject' => 'Your invitation is inside...',
|
||||
'content' => 'You have been invited to join :app_name status page.',
|
||||
'title' => 'You\'re invited to join :app_name status page.',
|
||||
'action' => 'Accept',
|
||||
'subject' => 'Uvnitř najdete pozvánku...',
|
||||
'content' => 'Byl jste pozván, abyste se připojil ke stavové stránce :app_name.',
|
||||
'title' => 'Jste pozváni, abyste se připojili ke stavové stránce :app_name.',
|
||||
'action' => 'Potvrdit',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
@@ -22,7 +22,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => 'Previous',
|
||||
'next' => 'Next',
|
||||
'previous' => 'Předchozí',
|
||||
'next' => 'Další',
|
||||
|
||||
];
|
||||
|
||||
@@ -29,10 +29,11 @@ return [
|
||||
'incidents' => [
|
||||
'none' => 'Ingen hændelser er rapporteret',
|
||||
'past' => 'Tidligere hændelser',
|
||||
'stickied' => 'Stickied Incidents',
|
||||
'stickied' => 'Låst hændelse',
|
||||
'scheduled' => 'Planlagt vedligeholdelse',
|
||||
'scheduled_at' => ', planlagt til :timestamp',
|
||||
'posted' => 'Sendt :timestamp',
|
||||
'posted_at' => 'Posted at :timestamp',
|
||||
'status' => [
|
||||
1 => 'Undersøger',
|
||||
2 => 'Identificeret',
|
||||
@@ -120,7 +121,7 @@ return [
|
||||
'home' => 'Hjem',
|
||||
'description' => 'Hold dig opdateret med de seneste opdateringer fra :app.',
|
||||
'powered_by' => 'Drevet af <a href="https://cachethq.io" class="links"> Cachet</a>.',
|
||||
'timezone' => 'Klokkeslæt angives som :timezone.',
|
||||
'timezone' => 'Klokkeslæt vises i :timezone.',
|
||||
'about_this_site' => 'Om denne side',
|
||||
'rss-feed' => 'RSS',
|
||||
'atom-feed' => 'Atom',
|
||||
|
||||
@@ -21,7 +21,20 @@ return [
|
||||
'logged' => '{0} Ingen åbne hændelser.|Der er en åben hændelse.|Der er <strong>:count</strong> åbne hændelser.',
|
||||
'incident-create-template' => 'Create Template',
|
||||
'incident-templates' => 'Incident Templates',
|
||||
'updates' => '{0} Nul opdateringer | Én opdatering |:count opdateringer',
|
||||
'updates' => [
|
||||
'title' => 'Incident updates for :incident',
|
||||
'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,*] Several Updates',
|
||||
'add' => [
|
||||
'title' => 'Opret ny hændelsesopdatering',
|
||||
'success' => 'Your new incident update has been created.',
|
||||
'failure' => 'Something went wrong with the incident update.',
|
||||
],
|
||||
'edit' => [
|
||||
'title' => 'Edit incident update',
|
||||
'success' => 'The incident update has been updated.',
|
||||
'failure' => 'Something went wrong updating the incident update',
|
||||
],
|
||||
],
|
||||
'add' => [
|
||||
'title' => 'Opret hændelse',
|
||||
'success' => 'Hændelse tilføjet.',
|
||||
@@ -36,11 +49,6 @@ return [
|
||||
'success' => 'Hændelsen er blevet slettet og vil ikke blive vist på din statusside.',
|
||||
'failure' => 'Hændelsen kunne ikke slettes. Prøv venligst igen.',
|
||||
],
|
||||
'update' => [
|
||||
'title' => 'Opret ny hændelsesopdatering',
|
||||
'subtitle' => 'Tilføj en opdatering til <strong>:incident</strong>',
|
||||
'success' => 'Update added.',
|
||||
],
|
||||
|
||||
// Incident templates
|
||||
'templates' => [
|
||||
@@ -147,13 +155,15 @@ return [
|
||||
],
|
||||
// Subscribers
|
||||
'subscribers' => [
|
||||
'subscribers' => 'Subscribers',
|
||||
'description' => 'Abonnenter vil modtage notifikationer når hændelser oprettes eller komponenter opdateres.',
|
||||
'verified' => 'Bekræftet',
|
||||
'not_verified' => 'Ej bekræftet',
|
||||
'subscriber' => ':email, abonnerede :date',
|
||||
'no_subscriptions' => 'Abonnere på alle opdateringer',
|
||||
'add' => [
|
||||
'subscribers' => 'Subscribers',
|
||||
'description' => 'Abonnenter vil modtage notifikationer når hændelser oprettes eller komponenter opdateres.',
|
||||
'description_disabled' => 'To use this feature, you need allow people to signup for notifications.',
|
||||
'verified' => 'Bekræftet',
|
||||
'not_verified' => 'Ej bekræftet',
|
||||
'subscriber' => ':email, abonnerede :date',
|
||||
'no_subscriptions' => 'Abonnere på alle opdateringer',
|
||||
'global' => 'Globally subscribed',
|
||||
'add' => [
|
||||
'title' => 'Tilføj abonnent',
|
||||
'success' => 'Subscriber added.',
|
||||
'failure' => 'Noget gik galt under forsøget på at tilføje en abonnent. Prøv venligst igen.',
|
||||
|
||||
@@ -41,7 +41,7 @@ return [
|
||||
'invalid-token' => 'Ugyldig token',
|
||||
'cookies' => 'Du skal tillade cookies for at logge ind.',
|
||||
'rate-limit' => 'Grænsen er overskredet.',
|
||||
'remember_me' => 'Remember me',
|
||||
'remember_me' => 'Husk mig',
|
||||
],
|
||||
|
||||
// Incidents form fields
|
||||
@@ -51,12 +51,12 @@ return [
|
||||
'component' => 'Komponent',
|
||||
'message' => 'Besked',
|
||||
'message-help' => 'Du kan benytte Markdown.',
|
||||
'occurred_at' => 'When did this incident occur?',
|
||||
'occurred_at' => 'Hvornår skete hændelsen?',
|
||||
'notify_subscribers' => 'Underret abonnenter',
|
||||
'visibility' => 'Hændelses synlighed',
|
||||
'stick_status' => 'Stick Incident',
|
||||
'stickied' => 'Stickied',
|
||||
'not_stickied' => 'Not Stickied',
|
||||
'stick_status' => 'Lås hændelse',
|
||||
'stickied' => 'Låst',
|
||||
'not_stickied' => 'Ikke låst',
|
||||
'public' => 'Kan ses af alle',
|
||||
'logged_in_only' => 'Kun synlig for brugere der er logget ind',
|
||||
'templates' => [
|
||||
@@ -71,8 +71,8 @@ return [
|
||||
'status' => 'Status',
|
||||
'message' => 'Besked',
|
||||
'message-help' => 'Du kan benytte Markdown.',
|
||||
'scheduled_at' => 'When is this maintenance scheduled for?',
|
||||
'completed_at' => 'When did this maintenance complete?',
|
||||
'scheduled_at' => 'Hvornår er denne vedligeholdelse planlagt til?',
|
||||
'completed_at' => 'Hvornår denne vedligeholdelse udført?',
|
||||
'templates' => [
|
||||
'name' => 'Navn',
|
||||
'template' => 'Skabelon',
|
||||
@@ -93,13 +93,13 @@ return [
|
||||
|
||||
'groups' => [
|
||||
'name' => 'Navn',
|
||||
'collapsing' => 'Expand/Collapse options',
|
||||
'collapsing' => 'Udvid/skjul indstillinger',
|
||||
'visible' => 'Altid åben',
|
||||
'collapsed' => 'Minimer gruppen som standard',
|
||||
'collapsed_incident' => 'Minimer gruppen, men hold den åben hvis der er fejl',
|
||||
'visibility' => 'Visibility',
|
||||
'visibility_public' => 'Visible to public',
|
||||
'visibility_authenticated' => 'Visible only to logged in users',
|
||||
'visibility' => 'Synlighed',
|
||||
'visibility_public' => 'Synligt for alle',
|
||||
'visibility_authenticated' => 'Synligt kun brugere logget ind',
|
||||
],
|
||||
],
|
||||
|
||||
@@ -107,14 +107,14 @@ return [
|
||||
'actions' => [
|
||||
'name' => 'Navn',
|
||||
'description' => 'Beskrivelse',
|
||||
'start_at' => 'Schedule start time',
|
||||
'timezone' => 'Timezone',
|
||||
'schedule_frequency' => 'Schedule frequency (in seconds)',
|
||||
'completion_latency' => 'Completion latency (in seconds)',
|
||||
'start_at' => 'Tidsplan starttidspunkt',
|
||||
'timezone' => 'Tidszone',
|
||||
'schedule_frequency' => 'Planlægge frekvens (i sekunder)',
|
||||
'completion_latency' => 'Færdiggørelse ventetid (i sekunder)',
|
||||
'group' => 'Gruppe',
|
||||
'active' => 'Active?',
|
||||
'active' => 'Aktiv?',
|
||||
'groups' => [
|
||||
'name' => 'Group Name',
|
||||
'name' => 'Gruppenavn',
|
||||
],
|
||||
],
|
||||
|
||||
@@ -131,11 +131,11 @@ return [
|
||||
'type_avg' => 'Gennemsnit',
|
||||
'places' => 'Antal decimaler',
|
||||
'default_view' => 'Standardvisning',
|
||||
'threshold' => 'How many minutes of threshold between metric points?',
|
||||
'visibility' => 'Visibility',
|
||||
'visibility_authenticated' => 'Visible to authenticated users',
|
||||
'visibility_public' => 'Visible to everybody',
|
||||
'visibility_hidden' => 'Always hidden',
|
||||
'threshold' => 'Hvor mange minutter på tærsklen mellem metriske point?',
|
||||
'visibility' => 'Synlighed',
|
||||
'visibility_authenticated' => 'Synlig for godkendte brugere',
|
||||
'visibility_public' => 'Synlig for alle',
|
||||
'visibility_hidden' => 'Altid skjult',
|
||||
|
||||
'points' => [
|
||||
'value' => 'Værdi',
|
||||
@@ -151,14 +151,15 @@ return [
|
||||
'display-graphs' => 'Display graphs on status page?',
|
||||
'about-this-page' => 'Om',
|
||||
'days-of-incidents' => 'Hvor mange dage skal der vises hændelser for?',
|
||||
'time_before_refresh' => 'Status page refresh rate (in seconds).',
|
||||
'banner' => 'Banner billede',
|
||||
'banner-help' => 'Det anbefales ikke at uploade billeder bredere end 930px.',
|
||||
'subscribers' => 'Tillad folk at tilmelde sig email underretninger?',
|
||||
'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)',
|
||||
'skip_subscriber_verification' => 'Spring verificering af brugere over? (Husk på, du kan blive spammet)',
|
||||
'automatic_localization' => 'Sæt automatisk sproget på din statusside til den besøgendes sprog?',
|
||||
'enable_external_dependencies' => 'Enable Third Party Dependencies (Google Fonts, Trackers, etc...)',
|
||||
'show_timezone' => 'Show the timezone the status page is running in.',
|
||||
'only_disrupted_days' => 'Only show days containing incidents in the timeline?',
|
||||
'enable_external_dependencies' => 'Aktiverer tredjeparts afhængigheder (Google skrifttyper, Trackere, osv...)',
|
||||
'show_timezone' => 'Vis tidszonenen statussiden kører i.',
|
||||
'only_disrupted_days' => 'Vis kun dage indeholdende hændelser i tidslinjen?',
|
||||
],
|
||||
'analytics' => [
|
||||
'analytics_google' => 'Google Analytics kode',
|
||||
@@ -219,21 +220,22 @@ return [
|
||||
],
|
||||
|
||||
'general' => [
|
||||
'timezone' => 'Select Timezone',
|
||||
'timezone' => 'Vælg Tidszone',
|
||||
],
|
||||
|
||||
// Buttons
|
||||
'add' => 'Tilføj',
|
||||
'save' => 'Gem',
|
||||
'update' => 'Opdatér',
|
||||
'create' => 'Opret',
|
||||
'edit' => 'Rediger',
|
||||
'delete' => 'Slet',
|
||||
'submit' => 'Send',
|
||||
'cancel' => 'Afbryd',
|
||||
'remove' => 'Fjern',
|
||||
'invite' => 'Inviter',
|
||||
'signup' => 'Tilmeld',
|
||||
'add' => 'Tilføj',
|
||||
'save' => 'Gem',
|
||||
'update' => 'Opdatér',
|
||||
'create' => 'Opret',
|
||||
'edit' => 'Rediger',
|
||||
'delete' => 'Slet',
|
||||
'submit' => 'Send',
|
||||
'cancel' => 'Afbryd',
|
||||
'remove' => 'Fjern',
|
||||
'invite' => 'Inviter',
|
||||
'signup' => 'Tilmeld',
|
||||
'manage_updates' => 'Manage Updates',
|
||||
|
||||
// Other
|
||||
'optional' => '* ikke påkrævet',
|
||||
|
||||
@@ -13,84 +13,84 @@ return [
|
||||
'component' => [
|
||||
'status_update' => [
|
||||
'mail' => [
|
||||
'subject' => 'Component Status Updated',
|
||||
'greeting' => 'A component\'s status was updated!',
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'action' => 'View',
|
||||
'subject' => 'Komponentstatus opdateret',
|
||||
'greeting' => 'En komponents status blev opdateret!',
|
||||
'content' => ':name status blev ændret fra :old_status til :new_status.',
|
||||
'action' => 'Vis',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'Component Status Updated',
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'title' => 'Komponentstatus opdateret',
|
||||
'content' => ':name status blev ændret fra :old_status til :new_status.',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'content' => ':name status blev ændret fra :old_status til :new_status.',
|
||||
],
|
||||
],
|
||||
],
|
||||
'incident' => [
|
||||
'new' => [
|
||||
'mail' => [
|
||||
'subject' => 'New Incident Reported',
|
||||
'greeting' => 'A new incident was reported at :app_name.',
|
||||
'content' => 'Incident :name was reported',
|
||||
'action' => 'View',
|
||||
'subject' => 'Ny hændelse indrapporteret',
|
||||
'greeting' => 'En ny hændelse blev rapporteret på :app_name.',
|
||||
'content' => 'Hændelse :name blev rapporteret',
|
||||
'action' => 'Vis',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'Incident :name Reported',
|
||||
'content' => 'A new incident was reported at :app_name',
|
||||
'title' => 'Hændelse :name Rapporteret',
|
||||
'content' => 'En ny hændelse blev rapporteret på :app_name',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => 'A new incident was reported at :app_name.',
|
||||
'content' => 'En ny hændelse blev rapporteret på :app_name.',
|
||||
],
|
||||
],
|
||||
'update' => [
|
||||
'mail' => [
|
||||
'subject' => 'Incident Updated',
|
||||
'content' => ':name was updated',
|
||||
'title' => ':name was updated to :new_status',
|
||||
'action' => 'View',
|
||||
'subject' => 'Hændelse opdateret',
|
||||
'content' => ':name blev opdateret',
|
||||
'title' => ':name blev opdateret til :new_status',
|
||||
'action' => 'Vis',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => ':name Updated',
|
||||
'content' => ':name was updated to :new_status',
|
||||
'title' => ':name opdateret',
|
||||
'content' => ':name blev opdateret til :new_status',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => 'Incident :name was updated',
|
||||
'content' => 'Hændelse :name blev opdateret',
|
||||
],
|
||||
],
|
||||
],
|
||||
'schedule' => [
|
||||
'new' => [
|
||||
'mail' => [
|
||||
'subject' => 'New Schedule Created',
|
||||
'content' => ':name was scheduled for :date',
|
||||
'title' => 'A new scheduled maintenance was created.',
|
||||
'action' => 'View',
|
||||
'subject' => 'Ny tidsplan oprettet',
|
||||
'content' => ':name blev planlagt til :date',
|
||||
'title' => 'En ny planlagt vedligeholdelse blev oprettet.',
|
||||
'action' => 'Vis',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'New Schedule Created!',
|
||||
'content' => ':name was scheduled for :date',
|
||||
'title' => 'Ny tidsplan oprettet!',
|
||||
'content' => ':name blev planlagt til :date',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => ':name was scheduled for :date',
|
||||
'content' => ':name blev planlagt til :date',
|
||||
],
|
||||
],
|
||||
],
|
||||
'subscriber' => [
|
||||
'verify' => [
|
||||
'mail' => [
|
||||
'subject' => 'Verify Your Subscription',
|
||||
'content' => 'Click to verify your subscription to :app_name status page.',
|
||||
'title' => 'Verify your subscription to :app_name status page.',
|
||||
'action' => 'Verify',
|
||||
'subject' => 'Bekræft dit abonnement',
|
||||
'content' => 'Tryk for at bekræfte dit abonnement :app_name-statussiden.',
|
||||
'title' => 'Bekræft dit abonnement via :app_name-statussiden.',
|
||||
'action' => 'Bekræft',
|
||||
],
|
||||
],
|
||||
],
|
||||
'system' => [
|
||||
'test' => [
|
||||
'mail' => [
|
||||
'subject' => 'Ping from Cachet!',
|
||||
'content' => 'This is a test notification from Cachet!',
|
||||
'subject' => 'Ping fra Cachet!',
|
||||
'content' => 'Dette er en testnotifikation fra Cachet!',
|
||||
'title' => '🔔',
|
||||
],
|
||||
],
|
||||
@@ -98,10 +98,10 @@ return [
|
||||
'user' => [
|
||||
'invite' => [
|
||||
'mail' => [
|
||||
'subject' => 'Your invitation is inside...',
|
||||
'content' => 'You have been invited to join :app_name status page.',
|
||||
'title' => 'You\'re invited to join :app_name status page.',
|
||||
'action' => 'Accept',
|
||||
'subject' => 'Din invitationen er heri...',
|
||||
'content' => 'Du er inviteret til at tilmelde dig :app_name-statussiden.',
|
||||
'title' => 'Du er inviteret til at tilmelde dig :app_name-statussiden.',
|
||||
'action' => 'Acceptér',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
@@ -22,7 +22,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => 'Previous',
|
||||
'next' => 'Next',
|
||||
'previous' => 'Forrige',
|
||||
'next' => 'Næste',
|
||||
|
||||
];
|
||||
|
||||
@@ -31,60 +31,60 @@ return [
|
||||
'array' => ':attribute skal være et array.',
|
||||
'before' => ':attribute skal være før den :date.',
|
||||
'between' => [
|
||||
'numeric' => 'The :attribute must be between :min and :max.',
|
||||
'file' => 'The :attribute must be between :min and :max kilobytes.',
|
||||
'string' => 'The :attribute must be between :min and :max characters.',
|
||||
'numeric' => ':attribute skal være mellem :min og :max.',
|
||||
'file' => ':attribute skal være mellem :min og :max kilobytes.',
|
||||
'string' => ':attribute skal være mellem :min og :max karakterer.',
|
||||
'array' => ':attribute skal have mellem :min og :max emner.',
|
||||
],
|
||||
'boolean' => 'The :attribute field must be true or false.',
|
||||
'confirmed' => 'The :attribute confirmation does not match.',
|
||||
'date' => 'The :attribute is not a valid date.',
|
||||
'date_format' => 'The :attribute does not match the format :format.',
|
||||
'different' => 'The :attribute and :other must be different.',
|
||||
'digits' => 'The :attribute must be :digits digits.',
|
||||
'digits_between' => 'The :attribute must be between :min and :max digits.',
|
||||
'email' => 'The :attribute must be a valid email address.',
|
||||
'exists' => 'The selected :attribute is invalid.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'filled' => 'The :attribute field is required.',
|
||||
'boolean' => ':attribute feltet skal være enten sandt eller falsk.',
|
||||
'confirmed' => ':attribute og bekræftelse er ikke ens.',
|
||||
'date' => ':attribute er ikke en gyldig dato.',
|
||||
'date_format' => ':attribute er ikke i formatet :format.',
|
||||
'different' => ':attribute og :other skal være forskellige.',
|
||||
'digits' => ':attribute skal være :digits cifre.',
|
||||
'digits_between' => ':attribute skal være mellem :min og :max cifre.',
|
||||
'email' => ':attribute skal være en gyldig email-adresse.',
|
||||
'exists' => ':attribute er ikke gyldig.',
|
||||
'distinct' => ':attribute feltet har en duplikeret værdi.',
|
||||
'filled' => ':attribute skal udfyldes.',
|
||||
'image' => ':attribute skal være et billede.',
|
||||
'in' => 'The selected :attribute is invalid.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => 'The :attribute must be an integer.',
|
||||
'ip' => 'The :attribute must be a valid IP address.',
|
||||
'in' => ':attribute er ikke gyldig.',
|
||||
'in_array' => ':attribute feltet findes ikke i :other.',
|
||||
'integer' => ':attribute skal være et heltal.',
|
||||
'ip' => ':attribute skal være en gyldig IP-adresse.',
|
||||
'json' => ':attribute skal være en gyldig JSON streng.',
|
||||
'max' => [
|
||||
'numeric' => 'The :attribute may not be greater than :max.',
|
||||
'file' => 'The :attribute may not be greater than :max kilobytes.',
|
||||
'string' => 'The :attribute may not be greater than :max characters.',
|
||||
'numeric' => ':attribute må ikke være større end :max.',
|
||||
'file' => ':attribute må ikke overstige :max kilobytes.',
|
||||
'string' => ':attribute må ikke være længere end :max karakterer.',
|
||||
'array' => ':attribute må ikke have mere end :max emner.',
|
||||
],
|
||||
'mimes' => 'The :attribute must be a file of type: :values.',
|
||||
'mimes' => ':attribute skal være en fil af typen: :values.',
|
||||
'min' => [
|
||||
'numeric' => 'The :attribute must be at least :min.',
|
||||
'numeric' => ':attribute skal være mindst :min.',
|
||||
'file' => ':attribute skal være mindst :min kilobytes.',
|
||||
'string' => 'The :attribute must be at least :min characters.',
|
||||
'array' => 'The :attribute must have at least :min items.',
|
||||
'string' => ':attribute skal være mindst :min karakterer.',
|
||||
'array' => ':attribute skal have mindst :min elementer.',
|
||||
],
|
||||
'not_in' => 'The selected :attribute is invalid.',
|
||||
'numeric' => 'The :attribute must be a number.',
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'not_in' => ':attribute er ikke gyldig.',
|
||||
'numeric' => ':attribute skal være et tal.',
|
||||
'present' => ':attribute feltet skal være til stede.',
|
||||
'regex' => 'Formatet af :attribute er ugyldigt.',
|
||||
'required' => 'The :attribute field is required.',
|
||||
'required_if' => 'The :attribute field is required when :other is :value.',
|
||||
'required' => ':attribute skal udfyldes.',
|
||||
'required_if' => ':attribute feltet er påkrævet når :other er :value.',
|
||||
'required_unless' => ':attribute feltet er påkrævet, medmindre :other er i :values.',
|
||||
'required_with' => 'Feltet :attribute er krævet når :values eksisterer.',
|
||||
'required_with_all' => 'Feltet :attribute er krævet når :values eksisterer.',
|
||||
'required_without' => 'The :attribute field is required when :values is not present.',
|
||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
||||
'same' => 'The :attribute and :other must match.',
|
||||
'required_without' => ':attribute feltet er påkrævet når :values ikke findes.',
|
||||
'required_without_all' => ':attribute er påkrævet når ingen af :values er defineret.',
|
||||
'same' => ':attribute og :other skal være éns.',
|
||||
'size' => [
|
||||
'numeric' => 'The :attribute must be :size.',
|
||||
'numeric' => ':attribute skal være :size.',
|
||||
'file' => ':attribute skal være :size kilobytes.',
|
||||
'string' => ':attribute skal være :size karakterer.',
|
||||
'array' => 'The :attribute must contain :size items.',
|
||||
'array' => ':attribute skal indeholde :size emner.',
|
||||
],
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'string' => ':attribute skal være en streng.',
|
||||
'timezone' => ':attribute skal være en gyldig zone.',
|
||||
'unique' => ':attribute er allerede i brug.',
|
||||
'url' => 'Formatet af :attribute er ugyldigt.',
|
||||
|
||||
@@ -33,6 +33,7 @@ return [
|
||||
'scheduled' => 'Geplante Wartungen',
|
||||
'scheduled_at' => ', geplant :timestamp',
|
||||
'posted' => 'Veröffentlicht :timestamp',
|
||||
'posted_at' => 'Posted at :timestamp',
|
||||
'status' => [
|
||||
1 => 'Untersuchungen laufen',
|
||||
2 => 'Identifiziert',
|
||||
@@ -75,7 +76,7 @@ return [
|
||||
// Subscriber
|
||||
'subscriber' => [
|
||||
'subscribe' => 'Abonnieren Sie um die neuesten Updates zu erhalten.',
|
||||
'unsubscribe' => 'Deabonnieren unter :link',
|
||||
'unsubscribe' => 'Unter :link abbestellen',
|
||||
'button' => 'Abonnieren',
|
||||
'manage' => [
|
||||
'no_subscriptions' => 'Du hast im Augenblick alle Updates abonniert.',
|
||||
|
||||
@@ -21,7 +21,20 @@ return [
|
||||
'logged' => '{0} Es gibt keine Ereignisse, gute Arbeit.|Du hast ein Ereignis gemeldet.|Du hast <strong>:count</strong> Ereignisse gemeldet.',
|
||||
'incident-create-template' => 'Vorlage erstellen',
|
||||
'incident-templates' => 'Ereignis Vorlagen',
|
||||
'updates' => '{0} Keine Updates|Ein Update|:count Updates',
|
||||
'updates' => [
|
||||
'title' => 'Incident updates for :incident',
|
||||
'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,*] Several Updates',
|
||||
'add' => [
|
||||
'title' => 'Vorfall-Update erstellen',
|
||||
'success' => 'Your new incident update has been created.',
|
||||
'failure' => 'Something went wrong with the incident update.',
|
||||
],
|
||||
'edit' => [
|
||||
'title' => 'Edit incident update',
|
||||
'success' => 'The incident update has been updated.',
|
||||
'failure' => 'Something went wrong updating the incident update',
|
||||
],
|
||||
],
|
||||
'add' => [
|
||||
'title' => 'Ereignis hinzufügen',
|
||||
'success' => 'Ereignis hinzugefügt.',
|
||||
@@ -36,11 +49,6 @@ return [
|
||||
'success' => 'Das Ereignis wurde gelöscht und wird nicht mehr angezeigt.',
|
||||
'failure' => 'Die Störung konnte nicht gelöscht werden. Bitte versuche es erneut.',
|
||||
],
|
||||
'update' => [
|
||||
'title' => 'Vorfall-Update erstellen',
|
||||
'subtitle' => 'Ein Update zu <strong>:incident</strong> hinzufügen',
|
||||
'success' => 'Update added.',
|
||||
],
|
||||
|
||||
// Incident templates
|
||||
'templates' => [
|
||||
@@ -147,13 +155,15 @@ return [
|
||||
],
|
||||
// Subscribers
|
||||
'subscribers' => [
|
||||
'subscribers' => 'Abonnenten',
|
||||
'description' => 'Abonnenten erhalten E-Mail Updates, wenn Vorfälle erstellt oder Komponenten bearbeitet werden.',
|
||||
'verified' => 'Bestätigt',
|
||||
'not_verified' => 'Nicht Bestätigt',
|
||||
'subscriber' => ':email, abonniert am :date',
|
||||
'no_subscriptions' => 'Aktualisierungen per E-Mail abonnieren',
|
||||
'add' => [
|
||||
'subscribers' => 'Abonnenten',
|
||||
'description' => 'Abonnenten erhalten E-Mail Updates, wenn Vorfälle erstellt oder Komponenten bearbeitet werden.',
|
||||
'description_disabled' => 'To use this feature, you need allow people to signup for notifications.',
|
||||
'verified' => 'Bestätigt',
|
||||
'not_verified' => 'Nicht Bestätigt',
|
||||
'subscriber' => ':email, abonniert am :date',
|
||||
'no_subscriptions' => 'Aktualisierungen per E-Mail abonnieren',
|
||||
'global' => 'Globally subscribed',
|
||||
'add' => [
|
||||
'title' => 'Einen neuen Abonnenten hinzufügen',
|
||||
'success' => 'Abonnent hinzugefügt.',
|
||||
'failure' => 'Etwas lief schief dem dem Hinzufügen eines Abonnenten. Bitte versuchen Sie es erneut.',
|
||||
|
||||
@@ -151,6 +151,7 @@ return [
|
||||
'display-graphs' => 'Graphen auf der Statusseite anzeigen?',
|
||||
'about-this-page' => 'Über diese Seite',
|
||||
'days-of-incidents' => 'Wie viele Tage mit Vorfällen sollen gezeigt werden?',
|
||||
'time_before_refresh' => 'Status page refresh rate (in seconds).',
|
||||
'banner' => 'Banner Bild',
|
||||
'banner-help' => 'Es wird empfohlen, dass Sie keine Dateien die breiter als 930 Pixel sind hochladen .',
|
||||
'subscribers' => 'Personen die Anmeldung für E-Mail-Benachrichtigung erlauben?',
|
||||
@@ -223,17 +224,18 @@ return [
|
||||
],
|
||||
|
||||
// Buttons
|
||||
'add' => 'Hinzufügen',
|
||||
'save' => 'Speichern',
|
||||
'update' => 'Aktualisieren',
|
||||
'create' => 'Erstellen',
|
||||
'edit' => 'Bearbeiten',
|
||||
'delete' => 'Löschen',
|
||||
'submit' => 'Abschicken',
|
||||
'cancel' => 'Abbrechen',
|
||||
'remove' => 'Entfernen',
|
||||
'invite' => 'Einladen',
|
||||
'signup' => 'Registrieren',
|
||||
'add' => 'Hinzufügen',
|
||||
'save' => 'Speichern',
|
||||
'update' => 'Aktualisieren',
|
||||
'create' => 'Erstellen',
|
||||
'edit' => 'Bearbeiten',
|
||||
'delete' => 'Löschen',
|
||||
'submit' => 'Abschicken',
|
||||
'cancel' => 'Abbrechen',
|
||||
'remove' => 'Entfernen',
|
||||
'invite' => 'Einladen',
|
||||
'signup' => 'Registrieren',
|
||||
'manage_updates' => 'Manage Updates',
|
||||
|
||||
// Other
|
||||
'optional' => '* optional',
|
||||
|
||||
@@ -13,84 +13,84 @@ return [
|
||||
'component' => [
|
||||
'status_update' => [
|
||||
'mail' => [
|
||||
'subject' => 'Component Status Updated',
|
||||
'greeting' => 'A component\'s status was updated!',
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'action' => 'View',
|
||||
'subject' => 'Status der Komponente aktualisiert',
|
||||
'greeting' => 'Ein Komponentenstatus wurde aktualisiert!',
|
||||
'content' => ':name Status wurde von :old_status zu :new_status geändert.',
|
||||
'action' => 'Anzeigen',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'Component Status Updated',
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'title' => 'Status der Komponente aktualisiert',
|
||||
'content' => ':name Status wurde von :old_status zu :new_status geändert.',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'content' => ':name Status wurde von :old_status zu :new_status geändert.',
|
||||
],
|
||||
],
|
||||
],
|
||||
'incident' => [
|
||||
'new' => [
|
||||
'mail' => [
|
||||
'subject' => 'New Incident Reported',
|
||||
'greeting' => 'A new incident was reported at :app_name.',
|
||||
'content' => 'Incident :name was reported',
|
||||
'action' => 'View',
|
||||
'subject' => 'Neuer Vorfall gemeldet',
|
||||
'greeting' => 'Ein neuer Vorfall wurde auf der :app_name Status Seite gemeldet.',
|
||||
'content' => 'Vorfall :name wurde gemeldet',
|
||||
'action' => 'Anzeigen',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'Incident :name Reported',
|
||||
'content' => 'A new incident was reported at :app_name',
|
||||
'title' => 'Vorfall :name wurde gemeldet',
|
||||
'content' => 'Ein neuer Vorfall wurde auf der :app_name Status Seite gemeldet',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => 'A new incident was reported at :app_name.',
|
||||
'content' => 'Ein neuer Vorfall wurde auf der :app_name Status Seite gemeldet.',
|
||||
],
|
||||
],
|
||||
'update' => [
|
||||
'mail' => [
|
||||
'subject' => 'Incident Updated',
|
||||
'content' => ':name was updated',
|
||||
'title' => ':name was updated to :new_status',
|
||||
'action' => 'View',
|
||||
'subject' => 'Vorfall aktualisiert',
|
||||
'content' => ':name wurde aktualisiert',
|
||||
'title' => ':name wurde auf :new_status aktualisiert',
|
||||
'action' => 'Anzeigen',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => ':name Updated',
|
||||
'content' => ':name was updated to :new_status',
|
||||
'title' => ':name wurde aktualisiert',
|
||||
'content' => ':name wurde auf :new_status aktualisiert',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => 'Incident :name was updated',
|
||||
'content' => 'Vorfall :name wurde aktualisiert',
|
||||
],
|
||||
],
|
||||
],
|
||||
'schedule' => [
|
||||
'new' => [
|
||||
'mail' => [
|
||||
'subject' => 'New Schedule Created',
|
||||
'content' => ':name was scheduled for :date',
|
||||
'title' => 'A new scheduled maintenance was created.',
|
||||
'action' => 'View',
|
||||
'subject' => 'Neuer Zeitplan erstellt',
|
||||
'content' => ':name wurde für :date geplant',
|
||||
'title' => 'Eine neue geplante Wartung wurde erstellt.',
|
||||
'action' => 'Anzeigen',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'New Schedule Created!',
|
||||
'content' => ':name was scheduled for :date',
|
||||
'title' => 'Neuer Zeitplan erstellt!',
|
||||
'content' => ':name wurde für :date geplant',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => ':name was scheduled for :date',
|
||||
'content' => ':name wurde für :date geplant',
|
||||
],
|
||||
],
|
||||
],
|
||||
'subscriber' => [
|
||||
'verify' => [
|
||||
'mail' => [
|
||||
'subject' => 'Verify Your Subscription',
|
||||
'content' => 'Click to verify your subscription to :app_name status page.',
|
||||
'title' => 'Verify your subscription to :app_name status page.',
|
||||
'action' => 'Verify',
|
||||
'subject' => 'Bitte bestätigen Sie Ihr Abonnement',
|
||||
'content' => 'Klicken Sie, um Ihr Abonnement von :app_name Statusseite zu bestätigen.',
|
||||
'title' => 'Bestätigen Sie Ihr Abonnement für die :app_name Statusseite.',
|
||||
'action' => 'Bestätigen',
|
||||
],
|
||||
],
|
||||
],
|
||||
'system' => [
|
||||
'test' => [
|
||||
'mail' => [
|
||||
'subject' => 'Ping from Cachet!',
|
||||
'content' => 'This is a test notification from Cachet!',
|
||||
'subject' => 'Ping von Cachet!',
|
||||
'content' => 'Dies ist eine Test-Benachrichtigung von Cachet!',
|
||||
'title' => '🔔',
|
||||
],
|
||||
],
|
||||
@@ -98,10 +98,10 @@ return [
|
||||
'user' => [
|
||||
'invite' => [
|
||||
'mail' => [
|
||||
'subject' => 'Your invitation is inside...',
|
||||
'content' => 'You have been invited to join :app_name status page.',
|
||||
'title' => 'You\'re invited to join :app_name status page.',
|
||||
'action' => 'Accept',
|
||||
'subject' => 'Ihre Einladung wartet auf Sie...',
|
||||
'content' => 'Sie wurden eingeladen um der :app_name Statusseite beizutreten.',
|
||||
'title' => 'Sie wurden eingeladen um der :app_name Statusseite beizutreten.',
|
||||
'action' => 'Akzeptieren',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
@@ -22,7 +22,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => 'Previous',
|
||||
'next' => 'Next',
|
||||
'previous' => 'Vorherige',
|
||||
'next' => 'Nächste',
|
||||
|
||||
];
|
||||
|
||||
@@ -12,9 +12,9 @@
|
||||
return [
|
||||
// Components
|
||||
'components' => [
|
||||
'last_updated' => 'Last updated :timestamp',
|
||||
'last_updated' => 'Τελευταία ενημέρωση :timestamp',
|
||||
'status' => [
|
||||
0 => 'Unknown',
|
||||
0 => 'Άγνωστο',
|
||||
1 => 'Λειτουργικό',
|
||||
2 => 'Προβλήματα επιδόσης',
|
||||
3 => 'Μερική Διακοπή',
|
||||
@@ -32,7 +32,8 @@ return [
|
||||
'stickied' => 'Stickied Incidents',
|
||||
'scheduled' => 'Προγραμματισμένη Συντήρηση',
|
||||
'scheduled_at' => ', προγραμματισμένη :timestamp',
|
||||
'posted' => 'Posted :timestamp',
|
||||
'posted' => 'Αναρτήθηκε :timestamp',
|
||||
'posted_at' => 'Posted at :timestamp',
|
||||
'status' => [
|
||||
1 => 'Διερευνάται',
|
||||
2 => 'Προσδιορίστηκε',
|
||||
@@ -45,7 +46,7 @@ return [
|
||||
'schedules' => [
|
||||
'status' => [
|
||||
0 => 'Upcoming',
|
||||
1 => 'In Progress',
|
||||
1 => 'Σε εξέλιξη',
|
||||
2 => 'Complete',
|
||||
],
|
||||
],
|
||||
@@ -85,7 +86,7 @@ return [
|
||||
'subscribe' => 'Εγγραφή στις ενημερώσεις μέσω email.',
|
||||
'subscribed' => 'Έχετε εγγραφεί στις ενημερώσεις μέσω email, παρακαλώ ελέγξτε το email σας για να επιβεβαιώσετε την εγγραφή σας.',
|
||||
'verified' => 'Η εγγραφή σας έχει επιβεβαιωθεί. Ευχαριστούμε!',
|
||||
'manage' => 'Manage your subscription',
|
||||
'manage' => 'Διαχειριστείτε τη συνδρομή σας',
|
||||
'unsubscribe' => 'Διαγραφή από τις ενημερώσεις μέσω email.',
|
||||
'unsubscribed' => 'Η εγγραφή σας έχει ακυρωθεί.',
|
||||
'failure' => 'Προέκυψε ένα σφάλμα σχετικά με την εγγραφή.',
|
||||
@@ -120,7 +121,7 @@ return [
|
||||
'home' => 'Home',
|
||||
'description' => 'Stay up to date with the latest service updates from :app.',
|
||||
'powered_by' => 'Powered by <a href="https://cachethq.io" class="links">Cachet</a>.',
|
||||
'timezone' => 'Times are shown in :timezone.',
|
||||
'timezone' => 'Η ώρα προβάλλεται σε ζώνη :timezone.',
|
||||
'about_this_site' => 'Σχετικά με αυτόν τον ιστότοπο',
|
||||
'rss-feed' => 'RSS',
|
||||
'atom-feed' => 'Atom',
|
||||
|
||||
@@ -21,7 +21,20 @@ return [
|
||||
'logged' => '{0} Δεν υπάρχουν περιστατικά, καλλή δουλειά.|Έχετε καταγράψει ένα περιστατικό.|Έχετε ανάφερει <strong>:count</strong> περιστατικά.',
|
||||
'incident-create-template' => 'Δημιουργία προτύπου',
|
||||
'incident-templates' => 'Πρότυπα Περιστατικών',
|
||||
'updates' => '{0} Zero Updates|One Update|:count Updates',
|
||||
'updates' => [
|
||||
'title' => 'Incident updates for :incident',
|
||||
'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,*] Several Updates',
|
||||
'add' => [
|
||||
'title' => 'Create new incident update',
|
||||
'success' => 'Your new incident update has been created.',
|
||||
'failure' => 'Something went wrong with the incident update.',
|
||||
],
|
||||
'edit' => [
|
||||
'title' => 'Edit incident update',
|
||||
'success' => 'The incident update has been updated.',
|
||||
'failure' => 'Something went wrong updating the incident update',
|
||||
],
|
||||
],
|
||||
'add' => [
|
||||
'title' => 'Αναφορά περιστατικού',
|
||||
'success' => 'Incident added.',
|
||||
@@ -36,11 +49,6 @@ return [
|
||||
'success' => 'Αυτό το περιστατικό έχει διαγραφεί και δε θα εμφανιστή στη σελίδα κατάστασης.',
|
||||
'failure' => 'The incident could not be deleted, please try again.',
|
||||
],
|
||||
'update' => [
|
||||
'title' => 'Create new incident update',
|
||||
'subtitle' => 'Add an update to <strong>:incident</strong>',
|
||||
'success' => 'Update added.',
|
||||
],
|
||||
|
||||
// Incident templates
|
||||
'templates' => [
|
||||
@@ -147,13 +155,15 @@ return [
|
||||
],
|
||||
// Subscribers
|
||||
'subscribers' => [
|
||||
'subscribers' => 'Subscribers',
|
||||
'description' => 'Subscribers will receive email updates when incidents are created or components are updated.',
|
||||
'verified' => 'Verified',
|
||||
'not_verified' => 'Not verified',
|
||||
'subscriber' => ':email, subscribed :date',
|
||||
'no_subscriptions' => 'Subscribed to all updates',
|
||||
'add' => [
|
||||
'subscribers' => 'Subscribers',
|
||||
'description' => 'Subscribers will receive email updates when incidents are created or components are updated.',
|
||||
'description_disabled' => 'To use this feature, you need allow people to signup for notifications.',
|
||||
'verified' => 'Verified',
|
||||
'not_verified' => 'Not verified',
|
||||
'subscriber' => ':email, subscribed :date',
|
||||
'no_subscriptions' => 'Subscribed to all updates',
|
||||
'global' => 'Globally subscribed',
|
||||
'add' => [
|
||||
'title' => 'Add a new subscriber',
|
||||
'success' => 'Subscriber has been added!',
|
||||
'failure' => 'Something went wrong adding the subscriber, please try again.',
|
||||
|
||||
@@ -151,6 +151,7 @@ return [
|
||||
'display-graphs' => 'Display graphs on status page?',
|
||||
'about-this-page' => 'About this page',
|
||||
'days-of-incidents' => 'How many days of incidents to show?',
|
||||
'time_before_refresh' => 'Status page refresh rate (in seconds).',
|
||||
'banner' => 'Banner Image',
|
||||
'banner-help' => "It's recommended that you upload files no bigger than 930px wide .",
|
||||
'subscribers' => 'Allow people to signup to email notifications?',
|
||||
@@ -223,17 +224,18 @@ return [
|
||||
],
|
||||
|
||||
// Buttons
|
||||
'add' => 'Add',
|
||||
'save' => 'Save',
|
||||
'update' => 'Update',
|
||||
'create' => 'Create',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Delete',
|
||||
'submit' => 'Submit',
|
||||
'cancel' => 'Cancel',
|
||||
'remove' => 'Remove',
|
||||
'invite' => 'Invite',
|
||||
'signup' => 'Εγγραφή',
|
||||
'add' => 'Add',
|
||||
'save' => 'Save',
|
||||
'update' => 'Update',
|
||||
'create' => 'Create',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Delete',
|
||||
'submit' => 'Submit',
|
||||
'cancel' => 'Cancel',
|
||||
'remove' => 'Remove',
|
||||
'invite' => 'Invite',
|
||||
'signup' => 'Εγγραφή',
|
||||
'manage_updates' => 'Manage Updates',
|
||||
|
||||
// Other
|
||||
'optional' => '* Optional',
|
||||
|
||||
@@ -22,7 +22,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => 'Previous',
|
||||
'next' => 'Next',
|
||||
'previous' => 'Προηγούμενη',
|
||||
'next' => 'Επόμενη',
|
||||
|
||||
];
|
||||
|
||||
@@ -30,9 +30,10 @@ return [
|
||||
'none' => 'crwdns884:0crwdne884:0',
|
||||
'past' => 'crwdns885:0crwdne885:0',
|
||||
'stickied' => 'crwdns888:0crwdne888:0',
|
||||
'scheduled' => 'crwdns889:0crwdne889:0',
|
||||
'scheduled' => 'crwdns1395:0crwdne1395:0',
|
||||
'scheduled_at' => 'crwdns890:0crwdne890:0',
|
||||
'posted' => 'crwdns891:0crwdne891:0',
|
||||
'posted_at' => 'crwdns1396:0crwdne1396:0',
|
||||
'status' => [
|
||||
1 => 'crwdns892:0crwdne892:0',
|
||||
2 => 'crwdns893:0crwdne893:0',
|
||||
@@ -52,9 +53,9 @@ return [
|
||||
|
||||
// Service Status
|
||||
'service' => [
|
||||
'good' => 'crwdns899:0crwdne899:0',
|
||||
'bad' => 'crwdns900:0crwdne900:0',
|
||||
'major' => 'crwdns901:0crwdne901:0',
|
||||
'good' => 'crwdns1397:0crwdne1397:0',
|
||||
'bad' => 'crwdns1398:0crwdne1398:0',
|
||||
'major' => 'crwdns1399:0crwdne1399:0',
|
||||
],
|
||||
|
||||
'api' => [
|
||||
|
||||
@@ -16,12 +16,25 @@ return [
|
||||
|
||||
// Incidents
|
||||
'incidents' => [
|
||||
'title' => 'crwdns1324:0crwdne1324:0',
|
||||
'title' => 'crwdns1400:0crwdne1400:0',
|
||||
'incidents' => 'crwdns953:0crwdne953:0',
|
||||
'logged' => 'crwdns954:0{0}crwdne954:0',
|
||||
'logged' => 'crwdns1401:0{0}crwdnd1401:0[1]crwdne1401:0',
|
||||
'incident-create-template' => 'crwdns955:0crwdne955:0',
|
||||
'incident-templates' => 'crwdns956:0crwdne956:0',
|
||||
'updates' => 'crwdns957:0{0}crwdne957:0',
|
||||
'updates' => [
|
||||
'title' => 'crwdns1402:0crwdne1402:0',
|
||||
'count' => 'crwdns1403:0{0}crwdnd1403:0[1]crwdnd1403:0[2]crwdne1403:0',
|
||||
'add' => [
|
||||
'title' => 'crwdns1404:0crwdne1404:0',
|
||||
'success' => 'crwdns1405:0crwdne1405:0',
|
||||
'failure' => 'crwdns1406:0crwdne1406:0',
|
||||
],
|
||||
'edit' => [
|
||||
'title' => 'crwdns1407:0crwdne1407:0',
|
||||
'success' => 'crwdns1408:0crwdne1408:0',
|
||||
'failure' => 'crwdns1409:0crwdne1409:0',
|
||||
],
|
||||
],
|
||||
'add' => [
|
||||
'title' => 'crwdns958:0crwdne958:0',
|
||||
'success' => 'crwdns959:0crwdne959:0',
|
||||
@@ -36,11 +49,6 @@ return [
|
||||
'success' => 'crwdns964:0crwdne964:0',
|
||||
'failure' => 'crwdns965:0crwdne965:0',
|
||||
],
|
||||
'update' => [
|
||||
'title' => 'crwdns966:0crwdne966:0',
|
||||
'subtitle' => 'crwdns967:0crwdne967:0',
|
||||
'success' => 'crwdns1353:0crwdne1353:0',
|
||||
],
|
||||
|
||||
// Incident templates
|
||||
'templates' => [
|
||||
@@ -65,22 +73,22 @@ return [
|
||||
|
||||
// Incident Maintenance
|
||||
'schedule' => [
|
||||
'schedule' => 'crwdns978:0crwdne978:0',
|
||||
'logged' => 'crwdns979:0{0}crwdne979:0',
|
||||
'schedule' => 'crwdns1410:0crwdne1410:0',
|
||||
'logged' => 'crwdns1411:0{0}crwdnd1411:0[1]crwdne1411:0',
|
||||
'scheduled_at' => 'crwdns980:0crwdne980:0',
|
||||
'add' => [
|
||||
'title' => 'crwdns981:0crwdne981:0',
|
||||
'success' => 'crwdns982:0crwdne982:0',
|
||||
'failure' => 'crwdns983:0crwdne983:0',
|
||||
'title' => 'crwdns1412:0crwdne1412:0',
|
||||
'success' => 'crwdns1413:0crwdne1413:0',
|
||||
'failure' => 'crwdns1414:0crwdne1414:0',
|
||||
],
|
||||
'edit' => [
|
||||
'title' => 'crwdns984:0crwdne984:0',
|
||||
'success' => 'crwdns985:0crwdne985:0',
|
||||
'failure' => 'crwdns986:0crwdne986:0',
|
||||
'title' => 'crwdns1415:0crwdne1415:0',
|
||||
'success' => 'crwdns1416:0crwdne1416:0',
|
||||
'failure' => 'crwdns1417:0crwdne1417:0',
|
||||
],
|
||||
'delete' => [
|
||||
'success' => 'crwdns987:0crwdne987:0',
|
||||
'failure' => 'crwdns988:0crwdne988:0',
|
||||
'success' => 'crwdns1418:0crwdne1418:0',
|
||||
'failure' => 'crwdns1419:0crwdne1419:0',
|
||||
],
|
||||
],
|
||||
|
||||
@@ -147,13 +155,15 @@ return [
|
||||
],
|
||||
// Subscribers
|
||||
'subscribers' => [
|
||||
'subscribers' => 'crwdns1021:0crwdne1021:0',
|
||||
'description' => 'crwdns1022:0crwdne1022:0',
|
||||
'verified' => 'crwdns1023:0crwdne1023:0',
|
||||
'not_verified' => 'crwdns1024:0crwdne1024:0',
|
||||
'subscriber' => 'crwdns1025:0crwdne1025:0',
|
||||
'no_subscriptions' => 'crwdns1026:0crwdne1026:0',
|
||||
'add' => [
|
||||
'subscribers' => 'crwdns1021:0crwdne1021:0',
|
||||
'description' => 'crwdns1022:0crwdne1022:0',
|
||||
'description_disabled' => 'crwdns1420:0crwdne1420:0',
|
||||
'verified' => 'crwdns1023:0crwdne1023:0',
|
||||
'not_verified' => 'crwdns1024:0crwdne1024:0',
|
||||
'subscriber' => 'crwdns1025:0crwdne1025:0',
|
||||
'no_subscriptions' => 'crwdns1026:0crwdne1026:0',
|
||||
'global' => 'crwdns1421:0crwdne1421:0',
|
||||
'add' => [
|
||||
'title' => 'crwdns1027:0crwdne1027:0',
|
||||
'success' => 'crwdns1028:0crwdne1028:0',
|
||||
'failure' => 'crwdns1029:0crwdne1029:0',
|
||||
|
||||
@@ -151,6 +151,7 @@ return [
|
||||
'display-graphs' => 'crwdns1192:0crwdne1192:0',
|
||||
'about-this-page' => 'crwdns1193:0crwdne1193:0',
|
||||
'days-of-incidents' => 'crwdns1194:0crwdne1194:0',
|
||||
'time_before_refresh' => 'crwdns1422:0crwdne1422:0',
|
||||
'banner' => 'crwdns1195:0crwdne1195:0',
|
||||
'banner-help' => 'crwdns1196:0crwdne1196:0',
|
||||
'subscribers' => 'crwdns1197:0crwdne1197:0',
|
||||
@@ -214,7 +215,7 @@ return [
|
||||
],
|
||||
'team' => [
|
||||
'description' => 'crwdns1238:0crwdne1238:0',
|
||||
'email' => 'crwdns1239:0crwdne1239:0',
|
||||
'email' => 'crwdns1423:0crwdne1423:0',
|
||||
],
|
||||
],
|
||||
|
||||
@@ -223,17 +224,18 @@ return [
|
||||
],
|
||||
|
||||
// Buttons
|
||||
'add' => 'crwdns1241:0crwdne1241:0',
|
||||
'save' => 'crwdns1242:0crwdne1242:0',
|
||||
'update' => 'crwdns1243:0crwdne1243:0',
|
||||
'create' => 'crwdns1244:0crwdne1244:0',
|
||||
'edit' => 'crwdns1245:0crwdne1245:0',
|
||||
'delete' => 'crwdns1246:0crwdne1246:0',
|
||||
'submit' => 'crwdns1247:0crwdne1247:0',
|
||||
'cancel' => 'crwdns1248:0crwdne1248:0',
|
||||
'remove' => 'crwdns1249:0crwdne1249:0',
|
||||
'invite' => 'crwdns1250:0crwdne1250:0',
|
||||
'signup' => 'crwdns1251:0crwdne1251:0',
|
||||
'add' => 'crwdns1241:0crwdne1241:0',
|
||||
'save' => 'crwdns1242:0crwdne1242:0',
|
||||
'update' => 'crwdns1243:0crwdne1243:0',
|
||||
'create' => 'crwdns1244:0crwdne1244:0',
|
||||
'edit' => 'crwdns1245:0crwdne1245:0',
|
||||
'delete' => 'crwdns1246:0crwdne1246:0',
|
||||
'submit' => 'crwdns1247:0crwdne1247:0',
|
||||
'cancel' => 'crwdns1248:0crwdne1248:0',
|
||||
'remove' => 'crwdns1249:0crwdne1249:0',
|
||||
'invite' => 'crwdns1250:0crwdne1250:0',
|
||||
'signup' => 'crwdns1251:0crwdne1251:0',
|
||||
'manage_updates' => 'crwdns1424:0crwdne1424:0',
|
||||
|
||||
// Other
|
||||
'optional' => 'crwdns1252:0crwdne1252:0',
|
||||
|
||||
@@ -33,6 +33,7 @@ return [
|
||||
'scheduled' => 'Scheduled Maintenance',
|
||||
'scheduled_at' => ', scheduled :timestamp',
|
||||
'posted' => 'Posted :timestamp',
|
||||
'posted_at' => 'Posted at :timestamp',
|
||||
'status' => [
|
||||
1 => 'Investigating',
|
||||
2 => 'Identified',
|
||||
|
||||
@@ -21,7 +21,20 @@ return [
|
||||
'logged' => '{0} There are no incidents, good work.|You have logged one incident.|You have reported <strong>:count</strong> incidents.',
|
||||
'incident-create-template' => 'Create Template',
|
||||
'incident-templates' => 'Incident Templates',
|
||||
'updates' => '{0} Zero Updates|One Update|:count Updates',
|
||||
'updates' => [
|
||||
'title' => 'Incident updates for :incident',
|
||||
'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,*] Several Updates',
|
||||
'add' => [
|
||||
'title' => 'Create new incident update',
|
||||
'success' => 'Your new incident update has been created.',
|
||||
'failure' => 'Something went wrong with the incident update.',
|
||||
],
|
||||
'edit' => [
|
||||
'title' => 'Edit incident update',
|
||||
'success' => 'The incident update has been updated.',
|
||||
'failure' => 'Something went wrong updating the incident update',
|
||||
],
|
||||
],
|
||||
'add' => [
|
||||
'title' => 'Report an incident',
|
||||
'success' => 'Incident added.',
|
||||
@@ -36,11 +49,6 @@ return [
|
||||
'success' => 'The incident has been deleted and will not show on your status page.',
|
||||
'failure' => 'The incident could not be deleted, please try again.',
|
||||
],
|
||||
'update' => [
|
||||
'title' => 'Create new incident update',
|
||||
'subtitle' => 'Add an update to <strong>:incident</strong>',
|
||||
'success' => 'Update added.',
|
||||
],
|
||||
|
||||
// Incident templates
|
||||
'templates' => [
|
||||
@@ -147,13 +155,15 @@ return [
|
||||
],
|
||||
// Subscribers
|
||||
'subscribers' => [
|
||||
'subscribers' => 'Subscribers',
|
||||
'description' => 'Subscribers will receive email updates when incidents are created or components are updated.',
|
||||
'verified' => 'Verified',
|
||||
'not_verified' => 'Not verified',
|
||||
'subscriber' => ':email, subscribed :date',
|
||||
'no_subscriptions' => 'Subscribed to all updates',
|
||||
'add' => [
|
||||
'subscribers' => 'Subscribers',
|
||||
'description' => 'Subscribers will receive email updates when incidents are created or components are updated.',
|
||||
'description_disabled' => 'To use this feature, you need allow people to signup for notifications.',
|
||||
'verified' => 'Verified',
|
||||
'not_verified' => 'Not verified',
|
||||
'subscriber' => ':email, subscribed :date',
|
||||
'no_subscriptions' => 'Subscribed to all updates',
|
||||
'global' => 'Globally subscribed',
|
||||
'add' => [
|
||||
'title' => 'Add a new subscriber',
|
||||
'success' => 'Subscriber has been added!',
|
||||
'failure' => 'Something went wrong adding the subscriber, please try again.',
|
||||
|
||||
@@ -151,6 +151,7 @@ return [
|
||||
'display-graphs' => 'Display graphs on status page?',
|
||||
'about-this-page' => 'About this page',
|
||||
'days-of-incidents' => 'How many days of incidents to show?',
|
||||
'time_before_refresh' => 'Status page refresh rate (in seconds).',
|
||||
'banner' => 'Banner Image',
|
||||
'banner-help' => "It's recommended that you upload files no bigger than 930px wide .",
|
||||
'subscribers' => 'Allow people to signup to email notifications?',
|
||||
@@ -223,17 +224,18 @@ return [
|
||||
],
|
||||
|
||||
// Buttons
|
||||
'add' => 'Add',
|
||||
'save' => 'Save',
|
||||
'update' => 'Update',
|
||||
'create' => 'Create',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Delete',
|
||||
'submit' => 'Submit',
|
||||
'cancel' => 'Cancel',
|
||||
'remove' => 'Remove',
|
||||
'invite' => 'Invite',
|
||||
'signup' => 'Sign Up',
|
||||
'add' => 'Add',
|
||||
'save' => 'Save',
|
||||
'update' => 'Update',
|
||||
'create' => 'Create',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Delete',
|
||||
'submit' => 'Submit',
|
||||
'cancel' => 'Cancel',
|
||||
'remove' => 'Remove',
|
||||
'invite' => 'Invite',
|
||||
'signup' => 'Sign Up',
|
||||
'manage_updates' => 'Manage Updates',
|
||||
|
||||
// Other
|
||||
'optional' => '* Optional',
|
||||
|
||||
@@ -32,11 +32,11 @@ return [
|
||||
'mail' => [
|
||||
'subject' => 'New Incident Reported',
|
||||
'greeting' => 'A new incident was reported at :app_name.',
|
||||
'content' => 'Incident :name was reported',
|
||||
'content' => 'Incident :name was updated',
|
||||
'action' => 'View',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'Incident :name Reported',
|
||||
'title' => 'Incident :name was reported',
|
||||
'content' => 'A new incident was reported at :app_name',
|
||||
],
|
||||
'sms' => [
|
||||
@@ -55,7 +55,7 @@ return [
|
||||
'content' => ':name was updated to :new_status',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => 'Incident :name was updated',
|
||||
'content' => 'Incident :name was reported',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
@@ -53,9 +53,9 @@ return [
|
||||
|
||||
// Service Status
|
||||
'service' => [
|
||||
'good' => '[0,1]System operational|[2,Inf] All systems are operational',
|
||||
'bad' => '[0,1]The system is experiencing issues|[2,Inf]Some systems are experiencing issues',
|
||||
'major' => '[0,1]The system is experiencing major issues|[2,Inf]Some systems are experiencing major issues',
|
||||
'good' => '[0,1]System operational|[2,*] All systems are operational',
|
||||
'bad' => '[0,1]The system is experiencing issues|[2,*]Some systems are experiencing issues',
|
||||
'major' => '[0,1]The system is experiencing major issues|[2,*]Some systems are experiencing major issues',
|
||||
],
|
||||
|
||||
'api' => [
|
||||
|
||||
@@ -18,10 +18,23 @@ return [
|
||||
'incidents' => [
|
||||
'title' => 'Incidents & Maintenance',
|
||||
'incidents' => 'Incidents',
|
||||
'logged' => '{0} There are no incidents, good work.|[1] You have logged one incident.|[2, Inf] You have reported <strong>:count</strong> incidents.',
|
||||
'logged' => '{0} There are no incidents, good work.|[1] You have logged one incident.|[2,*] You have reported <strong>:count</strong> incidents.',
|
||||
'incident-create-template' => 'Create Template',
|
||||
'incident-templates' => 'Incident Templates',
|
||||
'updates' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,Inf] Several Updates',
|
||||
'updates' => [
|
||||
'title' => 'Incident updates for :incident',
|
||||
'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,*] Several Updates',
|
||||
'add' => [
|
||||
'title' => 'Create new incident update',
|
||||
'success' => 'Your new incident update has been created.',
|
||||
'failure' => 'Something went wrong with the incident update.',
|
||||
],
|
||||
'edit' => [
|
||||
'title' => 'Edit incident update',
|
||||
'success' => 'The incident update has been updated.',
|
||||
'failure' => 'Something went wrong updating the incident update',
|
||||
],
|
||||
],
|
||||
'add' => [
|
||||
'title' => 'Report an incident',
|
||||
'success' => 'Incident added.',
|
||||
@@ -36,11 +49,6 @@ return [
|
||||
'success' => 'The incident has been deleted and will not show on your status page.',
|
||||
'failure' => 'The incident could not be deleted, please try again.',
|
||||
],
|
||||
'update' => [
|
||||
'title' => 'Create new incident update',
|
||||
'subtitle' => 'Add an update to <strong>:incident</strong>',
|
||||
'success' => 'Update added.',
|
||||
],
|
||||
|
||||
// Incident templates
|
||||
'templates' => [
|
||||
@@ -66,7 +74,7 @@ return [
|
||||
// Incident Maintenance
|
||||
'schedule' => [
|
||||
'schedule' => 'Maintenance',
|
||||
'logged' => '{0} There has been no Maintenance, good work.|[1] You have logged one schedule.|[2,Inf] You have reported <strong>:count</strong> schedules.',
|
||||
'logged' => '{0} There has been no Maintenance, good work.|[1] You have logged one schedule.|[2,*] You have reported <strong>:count</strong> schedules.',
|
||||
'scheduled_at' => 'Scheduled at :timestamp',
|
||||
'add' => [
|
||||
'title' => 'Add Maintenance',
|
||||
|
||||
@@ -224,17 +224,18 @@ return [
|
||||
],
|
||||
|
||||
// Buttons
|
||||
'add' => 'Add',
|
||||
'save' => 'Save',
|
||||
'update' => 'Update',
|
||||
'create' => 'Create',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Delete',
|
||||
'submit' => 'Submit',
|
||||
'cancel' => 'Cancel',
|
||||
'remove' => 'Remove',
|
||||
'invite' => 'Invite',
|
||||
'signup' => 'Sign Up',
|
||||
'add' => 'Add',
|
||||
'save' => 'Save',
|
||||
'update' => 'Update',
|
||||
'create' => 'Create',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Delete',
|
||||
'submit' => 'Submit',
|
||||
'cancel' => 'Cancel',
|
||||
'remove' => 'Remove',
|
||||
'invite' => 'Invite',
|
||||
'signup' => 'Sign Up',
|
||||
'manage_updates' => 'Manage Updates',
|
||||
|
||||
// Other
|
||||
'optional' => '* Optional',
|
||||
|
||||
@@ -33,6 +33,7 @@ return [
|
||||
'scheduled' => 'Mantenimiento programado',
|
||||
'scheduled_at' => ', programado para :timestamp',
|
||||
'posted' => 'Publicado :timestamp',
|
||||
'posted_at' => 'Posted at :timestamp',
|
||||
'status' => [
|
||||
1 => 'Investigando',
|
||||
2 => 'Identificado',
|
||||
|
||||
@@ -21,7 +21,20 @@ return [
|
||||
'logged' => '{0} No hay incidencias, ¡buen trabajo!|Has registrado una incidencia.|Has reportado <strong>:count</strong> incidencias.',
|
||||
'incident-create-template' => 'Crear plantilla',
|
||||
'incident-templates' => 'Plantillas de incidente',
|
||||
'updates' => '{0} Cero actualizaciones|Una actualización|:count actualizaciones',
|
||||
'updates' => [
|
||||
'title' => 'Incident updates for :incident',
|
||||
'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,*] Several Updates',
|
||||
'add' => [
|
||||
'title' => 'Crea una nueva actualización de incidente',
|
||||
'success' => 'Your new incident update has been created.',
|
||||
'failure' => 'Something went wrong with the incident update.',
|
||||
],
|
||||
'edit' => [
|
||||
'title' => 'Edit incident update',
|
||||
'success' => 'The incident update has been updated.',
|
||||
'failure' => 'Something went wrong updating the incident update',
|
||||
],
|
||||
],
|
||||
'add' => [
|
||||
'title' => 'Reportar incidente',
|
||||
'success' => 'Incidente agregado.',
|
||||
@@ -36,11 +49,6 @@ return [
|
||||
'success' => 'El incidente se ha eliminado y no se mostrará en tu página de estado.',
|
||||
'failure' => 'El incidente no se pudo eliminar, por favor intente de nuevo.',
|
||||
],
|
||||
'update' => [
|
||||
'title' => 'Crea una nueva actualización de incidente',
|
||||
'subtitle' => 'Agrega una actualización a <strong>:incident</strong>',
|
||||
'success' => 'Update added.',
|
||||
],
|
||||
|
||||
// Incident templates
|
||||
'templates' => [
|
||||
@@ -147,13 +155,15 @@ return [
|
||||
],
|
||||
// Subscribers
|
||||
'subscribers' => [
|
||||
'subscribers' => 'Suscriptores',
|
||||
'description' => 'Los suscriptores recibirán actualizaciones por correo electrónico cuando se creen incidentes o se actualicen componentes.',
|
||||
'verified' => 'Verificado',
|
||||
'not_verified' => 'No confirmado',
|
||||
'subscriber' => ':email, suscrito :date',
|
||||
'no_subscriptions' => 'Suscrito a todas las actualizaciones',
|
||||
'add' => [
|
||||
'subscribers' => 'Suscriptores',
|
||||
'description' => 'Los suscriptores recibirán actualizaciones por correo electrónico cuando se creen incidentes o se actualicen componentes.',
|
||||
'description_disabled' => 'To use this feature, you need allow people to signup for notifications.',
|
||||
'verified' => 'Verificado',
|
||||
'not_verified' => 'No confirmado',
|
||||
'subscriber' => ':email, suscrito :date',
|
||||
'no_subscriptions' => 'Suscrito a todas las actualizaciones',
|
||||
'global' => 'Globally subscribed',
|
||||
'add' => [
|
||||
'title' => 'Agregar un nuevo subscriptor',
|
||||
'success' => 'Subscriptor agregado.',
|
||||
'failure' => 'Algo salió mal al agregar el suscriptor, por favor, inténtelo de nuevo.',
|
||||
|
||||
@@ -55,7 +55,7 @@ return [
|
||||
'notify_subscribers' => '¿Notificar a los suscriptores?',
|
||||
'visibility' => 'Visibilidad del incidente',
|
||||
'stick_status' => 'Pega Incidente',
|
||||
'stickied' => 'Pegado',
|
||||
'stickied' => 'Fijado',
|
||||
'not_stickied' => 'No Pegado',
|
||||
'public' => 'Visible por el público',
|
||||
'logged_in_only' => 'Solo visible para usuarios logeados',
|
||||
@@ -151,6 +151,7 @@ return [
|
||||
'display-graphs' => '¿Mostrar gráficas en la pagina de estado?',
|
||||
'about-this-page' => 'Sobre esta página',
|
||||
'days-of-incidents' => '¿Cuántos días de incidentes mostrar?',
|
||||
'time_before_refresh' => 'Status page refresh rate (in seconds).',
|
||||
'banner' => 'Imagen del banner',
|
||||
'banner-help' => 'Se recomienda subir una imagen no más grande de 930px de ancho .',
|
||||
'subscribers' => '¿Permitir a la gente inscribirse mediante noficiacion por correo electronico?',
|
||||
@@ -223,17 +224,18 @@ return [
|
||||
],
|
||||
|
||||
// Buttons
|
||||
'add' => 'Agregar',
|
||||
'save' => 'Guardar',
|
||||
'update' => 'Actualizar',
|
||||
'create' => 'Crear',
|
||||
'edit' => 'Editar',
|
||||
'delete' => 'Eliminar',
|
||||
'submit' => 'Enviar',
|
||||
'cancel' => 'Cancelar',
|
||||
'remove' => 'Remover',
|
||||
'invite' => 'Invitar',
|
||||
'signup' => 'Registrarse',
|
||||
'add' => 'Agregar',
|
||||
'save' => 'Guardar',
|
||||
'update' => 'Actualizar',
|
||||
'create' => 'Crear',
|
||||
'edit' => 'Editar',
|
||||
'delete' => 'Eliminar',
|
||||
'submit' => 'Enviar',
|
||||
'cancel' => 'Cancelar',
|
||||
'remove' => 'Remover',
|
||||
'invite' => 'Invitar',
|
||||
'signup' => 'Registrarse',
|
||||
'manage_updates' => 'Manage Updates',
|
||||
|
||||
// Other
|
||||
'optional' => '* Opcional',
|
||||
|
||||
@@ -13,84 +13,84 @@ return [
|
||||
'component' => [
|
||||
'status_update' => [
|
||||
'mail' => [
|
||||
'subject' => 'Component Status Updated',
|
||||
'greeting' => 'A component\'s status was updated!',
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'action' => 'View',
|
||||
'subject' => 'Estado del componente actualizado',
|
||||
'greeting' => '¡El estado de un componente fue actualizado!',
|
||||
'content' => 'El estado de :name cambió de :old_status a :new_status.',
|
||||
'action' => 'Ver',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'Component Status Updated',
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'title' => 'Estado del componente actualizado',
|
||||
'content' => 'El estado de :name cambió de :old_status a :new_status.',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'content' => 'El estado de :name cambió de :old_status a :new_status.',
|
||||
],
|
||||
],
|
||||
],
|
||||
'incident' => [
|
||||
'new' => [
|
||||
'mail' => [
|
||||
'subject' => 'New Incident Reported',
|
||||
'greeting' => 'A new incident was reported at :app_name.',
|
||||
'content' => 'Incident :name was reported',
|
||||
'action' => 'View',
|
||||
'subject' => 'Nuevo incidente reportado',
|
||||
'greeting' => 'Nuevo incidente fue reportado en : app_name.',
|
||||
'content' => 'Incidente :name fue reportado',
|
||||
'action' => 'Ver',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'Incident :name Reported',
|
||||
'content' => 'A new incident was reported at :app_name',
|
||||
'title' => 'Incidente :name Reportado',
|
||||
'content' => 'Nuevo incidente fue reportado en : app_name',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => 'A new incident was reported at :app_name.',
|
||||
'content' => 'Nuevo incidente fue reportado en : app_name.',
|
||||
],
|
||||
],
|
||||
'update' => [
|
||||
'mail' => [
|
||||
'subject' => 'Incident Updated',
|
||||
'content' => ':name was updated',
|
||||
'title' => ':name was updated to :new_status',
|
||||
'action' => 'View',
|
||||
'subject' => 'Incidente Actualizado',
|
||||
'content' => ':name fue actualizado',
|
||||
'title' => ':name fue actualizado a :new_status',
|
||||
'action' => 'Ver',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => ':name Updated',
|
||||
'content' => ':name was updated to :new_status',
|
||||
'title' => ':name Actualizado',
|
||||
'content' => ':name fue actualizado a :new_status',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => 'Incident :name was updated',
|
||||
'content' => 'Incidente :name fue actualizado',
|
||||
],
|
||||
],
|
||||
],
|
||||
'schedule' => [
|
||||
'new' => [
|
||||
'mail' => [
|
||||
'subject' => 'New Schedule Created',
|
||||
'content' => ':name was scheduled for :date',
|
||||
'title' => 'A new scheduled maintenance was created.',
|
||||
'action' => 'View',
|
||||
'subject' => 'Nueva Programación Creada',
|
||||
'content' => ':name fue programada para :date',
|
||||
'title' => 'Un nuevo mantenimiento programado fue creado.',
|
||||
'action' => 'Ver',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'New Schedule Created!',
|
||||
'content' => ':name was scheduled for :date',
|
||||
'title' => '¡Nueva Programación Creada!',
|
||||
'content' => ':name fue programada para :date',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => ':name was scheduled for :date',
|
||||
'content' => ':name fue programada para :date',
|
||||
],
|
||||
],
|
||||
],
|
||||
'subscriber' => [
|
||||
'verify' => [
|
||||
'mail' => [
|
||||
'subject' => 'Verify Your Subscription',
|
||||
'content' => 'Click to verify your subscription to :app_name status page.',
|
||||
'title' => 'Verify your subscription to :app_name status page.',
|
||||
'action' => 'Verify',
|
||||
'subject' => 'Verifica Tu Suscripción',
|
||||
'content' => 'Has clic para verificar tu suscripción a la página de estado de :app_name.',
|
||||
'title' => 'Verifica tu suscripción a la página de estado de :app_name.',
|
||||
'action' => 'Verificar',
|
||||
],
|
||||
],
|
||||
],
|
||||
'system' => [
|
||||
'test' => [
|
||||
'mail' => [
|
||||
'subject' => 'Ping from Cachet!',
|
||||
'content' => 'This is a test notification from Cachet!',
|
||||
'subject' => '¡Ping desde Cachet!',
|
||||
'content' => '¡Esta es una notificación de prueba de Cachet!',
|
||||
'title' => '🔔',
|
||||
],
|
||||
],
|
||||
@@ -98,10 +98,10 @@ return [
|
||||
'user' => [
|
||||
'invite' => [
|
||||
'mail' => [
|
||||
'subject' => 'Your invitation is inside...',
|
||||
'content' => 'You have been invited to join :app_name status page.',
|
||||
'title' => 'You\'re invited to join :app_name status page.',
|
||||
'action' => 'Accept',
|
||||
'subject' => 'La invitación está dentro...',
|
||||
'content' => 'Has sido invitado a unirte a la página de estado de :app_name.',
|
||||
'title' => 'Has sido invitado a unirte a la página de estado de :app_name.',
|
||||
'action' => 'Aceptar',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
@@ -22,7 +22,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => 'Previous',
|
||||
'next' => 'Next',
|
||||
'previous' => 'Anterior',
|
||||
'next' => 'Siguiente',
|
||||
|
||||
];
|
||||
|
||||
@@ -33,6 +33,7 @@ return [
|
||||
'scheduled' => 'تعمیرات زمانبندی شده',
|
||||
'scheduled_at' => '، برنامه ریزی شده :timestamp',
|
||||
'posted' => 'Posted :timestamp',
|
||||
'posted_at' => 'Posted at :timestamp',
|
||||
'status' => [
|
||||
1 => 'در دست بررسی',
|
||||
2 => 'شناسایی شده',
|
||||
|
||||
@@ -21,7 +21,20 @@ return [
|
||||
'logged' => '{0} There are no incidents, good work.|You have logged one incident.|You have reported <strong>:count</strong> incidents.',
|
||||
'incident-create-template' => 'ایجاد قالب',
|
||||
'incident-templates' => 'Incident Templates',
|
||||
'updates' => '{0} Zero Updates|One Update|:count Updates',
|
||||
'updates' => [
|
||||
'title' => 'Incident updates for :incident',
|
||||
'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,*] Several Updates',
|
||||
'add' => [
|
||||
'title' => 'Create new incident update',
|
||||
'success' => 'Your new incident update has been created.',
|
||||
'failure' => 'Something went wrong with the incident update.',
|
||||
],
|
||||
'edit' => [
|
||||
'title' => 'Edit incident update',
|
||||
'success' => 'The incident update has been updated.',
|
||||
'failure' => 'Something went wrong updating the incident update',
|
||||
],
|
||||
],
|
||||
'add' => [
|
||||
'title' => 'Report an incident',
|
||||
'success' => 'Incident added.',
|
||||
@@ -36,11 +49,6 @@ return [
|
||||
'success' => 'The incident has been deleted and will not show on your status page.',
|
||||
'failure' => 'The incident could not be deleted, please try again.',
|
||||
],
|
||||
'update' => [
|
||||
'title' => 'Create new incident update',
|
||||
'subtitle' => 'Add an update to <strong>:incident</strong>',
|
||||
'success' => 'Update added.',
|
||||
],
|
||||
|
||||
// Incident templates
|
||||
'templates' => [
|
||||
@@ -147,13 +155,15 @@ return [
|
||||
],
|
||||
// Subscribers
|
||||
'subscribers' => [
|
||||
'subscribers' => 'Subscribers',
|
||||
'description' => 'Subscribers will receive email updates when incidents are created or components are updated.',
|
||||
'verified' => 'Verified',
|
||||
'not_verified' => 'Not verified',
|
||||
'subscriber' => ':email, subscribed :date',
|
||||
'no_subscriptions' => 'Subscribed to all updates',
|
||||
'add' => [
|
||||
'subscribers' => 'Subscribers',
|
||||
'description' => 'Subscribers will receive email updates when incidents are created or components are updated.',
|
||||
'description_disabled' => 'To use this feature, you need allow people to signup for notifications.',
|
||||
'verified' => 'Verified',
|
||||
'not_verified' => 'Not verified',
|
||||
'subscriber' => ':email, subscribed :date',
|
||||
'no_subscriptions' => 'Subscribed to all updates',
|
||||
'global' => 'Globally subscribed',
|
||||
'add' => [
|
||||
'title' => 'Add a new subscriber',
|
||||
'success' => 'Subscriber has been added!',
|
||||
'failure' => 'Something went wrong adding the subscriber, please try again.',
|
||||
|
||||
@@ -151,6 +151,7 @@ return [
|
||||
'display-graphs' => 'نمودار(گراف) در صفحه وضعیت نمایش داده شود؟',
|
||||
'about-this-page' => 'درباره این صفحه',
|
||||
'days-of-incidents' => 'چند روز از رویدادها نمایش داده شوند؟',
|
||||
'time_before_refresh' => 'Status page refresh rate (in seconds).',
|
||||
'banner' => 'تصویر بنر',
|
||||
'banner-help' => 'پیشنهاد میشود که شما تصاویری با پهنای بیشتر از 930px آپلود نکنید.',
|
||||
'subscribers' => 'آیا به کاربران اجازه ثبتنام برای اعلانهای ایمیلی داده شود؟',
|
||||
@@ -223,17 +224,18 @@ return [
|
||||
],
|
||||
|
||||
// Buttons
|
||||
'add' => 'ﺍﻓﺰﻭﺩﻥ',
|
||||
'save' => 'ذخيره',
|
||||
'update' => 'بهروزرسانی',
|
||||
'create' => 'ساختن',
|
||||
'edit' => 'ويرايش',
|
||||
'delete' => 'حذف',
|
||||
'submit' => 'ارسال',
|
||||
'cancel' => 'انصراف',
|
||||
'remove' => 'حذف',
|
||||
'invite' => 'دعوت کردن',
|
||||
'signup' => 'نامنویسی',
|
||||
'add' => 'ﺍﻓﺰﻭﺩﻥ',
|
||||
'save' => 'ذخيره',
|
||||
'update' => 'بهروزرسانی',
|
||||
'create' => 'ساختن',
|
||||
'edit' => 'ويرايش',
|
||||
'delete' => 'حذف',
|
||||
'submit' => 'ارسال',
|
||||
'cancel' => 'انصراف',
|
||||
'remove' => 'حذف',
|
||||
'invite' => 'دعوت کردن',
|
||||
'signup' => 'نامنویسی',
|
||||
'manage_updates' => 'Manage Updates',
|
||||
|
||||
// Other
|
||||
'optional' => '* اختیاری',
|
||||
|
||||
@@ -33,6 +33,7 @@ return [
|
||||
'scheduled' => 'Ajastettu tapahtuma',
|
||||
'scheduled_at' => ', ajoitettu :timestamp',
|
||||
'posted' => 'Posted :timestamp',
|
||||
'posted_at' => 'Posted at :timestamp',
|
||||
'status' => [
|
||||
1 => 'Tutkitaan',
|
||||
2 => 'Tunnistettu',
|
||||
|
||||
@@ -21,7 +21,20 @@ return [
|
||||
'logged' => '{0} There are no incidents, good work.|You have logged one incident.|You have reported <strong>:count</strong> incidents.',
|
||||
'incident-create-template' => 'Luo mallipohja',
|
||||
'incident-templates' => 'Tapahtumamalli',
|
||||
'updates' => '{0} Zero Updates|One Update|:count Updates',
|
||||
'updates' => [
|
||||
'title' => 'Incident updates for :incident',
|
||||
'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,*] Several Updates',
|
||||
'add' => [
|
||||
'title' => 'Luo tapahtuma malli',
|
||||
'success' => 'Your new incident update has been created.',
|
||||
'failure' => 'Something went wrong with the incident update.',
|
||||
],
|
||||
'edit' => [
|
||||
'title' => 'Edit incident update',
|
||||
'success' => 'The incident update has been updated.',
|
||||
'failure' => 'Something went wrong updating the incident update',
|
||||
],
|
||||
],
|
||||
'add' => [
|
||||
'title' => 'Ilmoita tapahtuma',
|
||||
'success' => 'Tapahtuma lisätty.',
|
||||
@@ -36,11 +49,6 @@ return [
|
||||
'success' => 'Tapaus on poistettu ja ei näytetä tila-sivulla.',
|
||||
'failure' => 'The incident could not be deleted, please try again.',
|
||||
],
|
||||
'update' => [
|
||||
'title' => 'Luo tapahtuma malli',
|
||||
'subtitle' => 'Add an update to <strong>:incident</strong>',
|
||||
'success' => 'Update added.',
|
||||
],
|
||||
|
||||
// Incident templates
|
||||
'templates' => [
|
||||
@@ -147,13 +155,15 @@ return [
|
||||
],
|
||||
// Subscribers
|
||||
'subscribers' => [
|
||||
'subscribers' => 'Tilaajat',
|
||||
'description' => 'Tilaajat saavat sähköposti päivityksiä kun tapahtumia luodaan tai komponentteja päivitetään.',
|
||||
'verified' => 'Vahvistettu',
|
||||
'not_verified' => 'Ei todennettu',
|
||||
'subscriber' => ':email, subscribed :date',
|
||||
'no_subscriptions' => 'Tilaa kaikki päivitykset',
|
||||
'add' => [
|
||||
'subscribers' => 'Tilaajat',
|
||||
'description' => 'Tilaajat saavat sähköposti päivityksiä kun tapahtumia luodaan tai komponentteja päivitetään.',
|
||||
'description_disabled' => 'To use this feature, you need allow people to signup for notifications.',
|
||||
'verified' => 'Vahvistettu',
|
||||
'not_verified' => 'Ei todennettu',
|
||||
'subscriber' => ':email, subscribed :date',
|
||||
'no_subscriptions' => 'Tilaa kaikki päivitykset',
|
||||
'global' => 'Globally subscribed',
|
||||
'add' => [
|
||||
'title' => 'Lisää uusi tilaaja',
|
||||
'success' => 'Tilaaja lisätty.',
|
||||
'failure' => 'Jotakin meni vikaan lisäessä uutta tilaajaa, ole hyvä ja yritä uudelleen.',
|
||||
|
||||
@@ -151,6 +151,7 @@ return [
|
||||
'display-graphs' => 'Näyttää kaaviot tila-sivulla?',
|
||||
'about-this-page' => 'Tietoa tästä sivustosta',
|
||||
'days-of-incidents' => 'Monenko päivän ajalta tapaukset näytetään?',
|
||||
'time_before_refresh' => 'Status page refresh rate (in seconds).',
|
||||
'banner' => 'Bannerikuva',
|
||||
'banner-help' => 'On suositeltavaa, ettet lataa yli 930px leveitä kuvia.',
|
||||
'subscribers' => 'Salli käyttäjien tilata sähköpostitilaukset?',
|
||||
@@ -223,17 +224,18 @@ return [
|
||||
],
|
||||
|
||||
// Buttons
|
||||
'add' => 'Lisää',
|
||||
'save' => 'Tallenna',
|
||||
'update' => 'Päivitä',
|
||||
'create' => 'Luo',
|
||||
'edit' => 'Muokkaa',
|
||||
'delete' => 'Poista',
|
||||
'submit' => 'Lähetä',
|
||||
'cancel' => 'Peruuta',
|
||||
'remove' => 'Poista',
|
||||
'invite' => 'Kutsu',
|
||||
'signup' => 'Rekisteröidy',
|
||||
'add' => 'Lisää',
|
||||
'save' => 'Tallenna',
|
||||
'update' => 'Päivitä',
|
||||
'create' => 'Luo',
|
||||
'edit' => 'Muokkaa',
|
||||
'delete' => 'Poista',
|
||||
'submit' => 'Lähetä',
|
||||
'cancel' => 'Peruuta',
|
||||
'remove' => 'Poista',
|
||||
'invite' => 'Kutsu',
|
||||
'signup' => 'Rekisteröidy',
|
||||
'manage_updates' => 'Manage Updates',
|
||||
|
||||
// Other
|
||||
'optional' => '* Valinnainen',
|
||||
|
||||
@@ -82,7 +82,7 @@ return [
|
||||
'subject' => 'Verify Your Subscription',
|
||||
'content' => 'Click to verify your subscription to :app_name status page.',
|
||||
'title' => 'Verify your subscription to :app_name status page.',
|
||||
'action' => 'Verify',
|
||||
'action' => 'Vahvista',
|
||||
],
|
||||
],
|
||||
],
|
||||
@@ -101,7 +101,7 @@ return [
|
||||
'subject' => 'Your invitation is inside...',
|
||||
'content' => 'You have been invited to join :app_name status page.',
|
||||
'title' => 'You\'re invited to join :app_name status page.',
|
||||
'action' => 'Accept',
|
||||
'action' => 'Hyväksy',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
@@ -22,7 +22,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => 'Previous',
|
||||
'next' => 'Next',
|
||||
'previous' => 'Edellinen',
|
||||
'next' => 'Seuraava',
|
||||
|
||||
];
|
||||
|
||||
@@ -33,6 +33,7 @@ return [
|
||||
'scheduled' => 'Maintenance Planifiée',
|
||||
'scheduled_at' => ', planifé à :timestamp',
|
||||
'posted' => 'Posté à :timestamp',
|
||||
'posted_at' => 'Posted at :timestamp',
|
||||
'status' => [
|
||||
1 => 'Enquête en cours',
|
||||
2 => 'Identifié',
|
||||
@@ -75,7 +76,7 @@ return [
|
||||
// Subscriber
|
||||
'subscriber' => [
|
||||
'subscribe' => 'Abonnez-vous pour obtenir les dernières mises à jour.',
|
||||
'unsubscribe' => 'Se désinscrire par :link',
|
||||
'unsubscribe' => 'Se désinscrire :link',
|
||||
'button' => 'S\'abonner',
|
||||
'manage' => [
|
||||
'no_subscriptions' => 'Vous êtes actuellement abonné à toutes les mises à jour.',
|
||||
@@ -97,7 +98,7 @@ return [
|
||||
'title' => 'Inscription',
|
||||
'username' => 'Nom d\'utilisateur',
|
||||
'email' => 'Adresse e-mail',
|
||||
'password' => 'Mot de passe ',
|
||||
'password' => 'Mot de passe',
|
||||
'success' => 'Votre compte a été créé.',
|
||||
'failure' => 'Un problème est survenu lors de votre inscription.',
|
||||
],
|
||||
|
||||
@@ -21,7 +21,20 @@ return [
|
||||
'logged' => '{0} Aucun incident, bon travail.|Vous avez un incident signalé.|Vous avez <strong>:count</strong> incidents signalés.',
|
||||
'incident-create-template' => 'Créer un modèle',
|
||||
'incident-templates' => 'Modèles d\'incident',
|
||||
'updates' => '{0} Aucune mise à jour|Une mise à jour|:count mises à jour',
|
||||
'updates' => [
|
||||
'title' => 'Incident updates for :incident',
|
||||
'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,*] Several Updates',
|
||||
'add' => [
|
||||
'title' => 'Créer une mise à jour d\'incident',
|
||||
'success' => 'Your new incident update has been created.',
|
||||
'failure' => 'Something went wrong with the incident update.',
|
||||
],
|
||||
'edit' => [
|
||||
'title' => 'Edit incident update',
|
||||
'success' => 'The incident update has been updated.',
|
||||
'failure' => 'Something went wrong updating the incident update',
|
||||
],
|
||||
],
|
||||
'add' => [
|
||||
'title' => 'Ajouter un incident',
|
||||
'success' => 'Incident ajouté.',
|
||||
@@ -36,11 +49,6 @@ return [
|
||||
'success' => 'L\'incident a été supprimé et ne sera pas affiché sur votre page de statut.',
|
||||
'failure' => 'L\'incident n\'a pas pu être supprimé. Veuillez réessayer.',
|
||||
],
|
||||
'update' => [
|
||||
'title' => 'Créer une mise à jour d\'incident',
|
||||
'subtitle' => 'Ajouter une mise à jour à <strong>:incident</strong>',
|
||||
'success' => 'Update added.',
|
||||
],
|
||||
|
||||
// Incident templates
|
||||
'templates' => [
|
||||
@@ -147,13 +155,15 @@ return [
|
||||
],
|
||||
// Subscribers
|
||||
'subscribers' => [
|
||||
'subscribers' => 'Abonnés',
|
||||
'description' => 'Les abonnés recevront des notifications par e-mail lorsque des incidents sont créés ou des composants sont mis à jour.',
|
||||
'verified' => 'Vérifié',
|
||||
'not_verified' => 'Non vérifié',
|
||||
'subscriber' => ':email, abonné à :date',
|
||||
'no_subscriptions' => 'Souscrire à toutes les mises à jour',
|
||||
'add' => [
|
||||
'subscribers' => 'Abonnés',
|
||||
'description' => 'Les abonnés recevront des notifications par e-mail lorsque des incidents sont créés ou des composants sont mis à jour.',
|
||||
'description_disabled' => 'To use this feature, you need allow people to signup for notifications.',
|
||||
'verified' => 'Vérifié',
|
||||
'not_verified' => 'Non vérifié',
|
||||
'subscriber' => ':email, abonné à :date',
|
||||
'no_subscriptions' => 'Souscrire à toutes les mises à jour',
|
||||
'global' => 'Globally subscribed',
|
||||
'add' => [
|
||||
'title' => 'Ajouter un abonné',
|
||||
'success' => 'L\'abonné a été ajouté !',
|
||||
'failure' => 'Une erreur s\'est produite lors de l\'ajout de l\'abonné. Veuillez réessayer.',
|
||||
@@ -216,7 +226,7 @@ return [
|
||||
'footer' => 'Pied de page HTML personnalisé',
|
||||
],
|
||||
'mail' => [
|
||||
'mail' => 'Courrier',
|
||||
'mail' => 'Courriel',
|
||||
'test' => 'Test',
|
||||
'email' => [
|
||||
'subject' => 'Tester la notification depuis Cachet',
|
||||
|
||||
@@ -15,7 +15,7 @@ return [
|
||||
'setup' => [
|
||||
'email' => 'Adresse e-mail',
|
||||
'username' => 'Nom d\'utilisateur',
|
||||
'password' => 'Mot de passe ',
|
||||
'password' => 'Mot de passe',
|
||||
'site_name' => 'Nom du site',
|
||||
'site_domain' => 'Nom de domaine du site',
|
||||
'site_timezone' => 'Choisissez votre fuseau horaire',
|
||||
@@ -35,7 +35,7 @@ return [
|
||||
'login' => [
|
||||
'login' => 'Nom d\'utilisateur ou e-mail',
|
||||
'email' => 'Adresse e-mail',
|
||||
'password' => 'Mot de passe ',
|
||||
'password' => 'Mot de passe',
|
||||
'2fauth' => 'Code d\'authentification',
|
||||
'invalid' => 'Nom d\'utilisateur ou mot de passe incorrect',
|
||||
'invalid-token' => 'Jeton invalide',
|
||||
@@ -93,7 +93,7 @@ return [
|
||||
|
||||
'groups' => [
|
||||
'name' => 'Nom',
|
||||
'collapsing' => 'Etendre/Réduire les options',
|
||||
'collapsing' => 'Afficher/Cacher les options',
|
||||
'visible' => 'Toujours déplier',
|
||||
'collapsed' => 'Réduire le groupe par défaut',
|
||||
'collapsed_incident' => 'Réduire le groupe par défaut, mais déplier s\'il y a des incidents',
|
||||
@@ -107,7 +107,7 @@ return [
|
||||
'actions' => [
|
||||
'name' => 'Nom',
|
||||
'description' => 'Description',
|
||||
'start_at' => 'Heure de début de la planification',
|
||||
'start_at' => 'Heure de début planifiée',
|
||||
'timezone' => 'Fuseau horaire',
|
||||
'schedule_frequency' => 'Fréquence de planification (en secondes)',
|
||||
'completion_latency' => 'Délai d’achèvement (en secondes)',
|
||||
@@ -151,6 +151,7 @@ return [
|
||||
'display-graphs' => 'Afficher les graphiques sur la page de statut ?',
|
||||
'about-this-page' => 'À propos de cette page',
|
||||
'days-of-incidents' => 'Combien de jours d\'incidents à montrer ?',
|
||||
'time_before_refresh' => 'Status page refresh rate (in seconds).',
|
||||
'banner' => 'Image d\'en-tête',
|
||||
'banner-help' => 'Il est recommandé de téléchargez un fichier ne dépassant pas 930px de large .',
|
||||
'subscribers' => 'Permettre aux personnes de s\'inscrire aux notifications par e-mail ?',
|
||||
@@ -158,7 +159,7 @@ return [
|
||||
'automatic_localization' => 'Traduire automatiquement votre page de statut dans la langue du visiteur ?',
|
||||
'enable_external_dependencies' => 'Activer les dépendances tierces (Google Fonts, Trackers, etc...)',
|
||||
'show_timezone' => 'Afficher le fuseau horaire sur la page de statut.',
|
||||
'only_disrupted_days' => 'Afficher uniquement les jours contenant des incidents dans la ligne de temps ?',
|
||||
'only_disrupted_days' => 'Afficher uniquement les jours contenant des incidents dans la timeline ?',
|
||||
],
|
||||
'analytics' => [
|
||||
'analytics_google' => 'Code de Google Analytics',
|
||||
@@ -200,7 +201,7 @@ return [
|
||||
'user' => [
|
||||
'username' => 'Nom d\'utilisateur',
|
||||
'email' => 'Adresse e-mail',
|
||||
'password' => 'Mot de passe ',
|
||||
'password' => 'Mot de passe',
|
||||
'api-token' => 'Jeton de l\'API',
|
||||
'api-token-help' => 'Régénérer votre jeton API empêchera les applications existantes d\'accéder à Cachet.',
|
||||
'gravatar' => 'Change your profile picture at Gravatar.',
|
||||
@@ -223,17 +224,18 @@ return [
|
||||
],
|
||||
|
||||
// Buttons
|
||||
'add' => 'Ajouter',
|
||||
'save' => 'Enregistrer',
|
||||
'update' => 'Mettre à jour',
|
||||
'create' => 'Créer',
|
||||
'edit' => 'Modifier',
|
||||
'delete' => 'Supprimer',
|
||||
'submit' => 'Envoyer',
|
||||
'cancel' => 'Annuler',
|
||||
'remove' => 'Enlever',
|
||||
'invite' => 'Inviter',
|
||||
'signup' => 'Inscription',
|
||||
'add' => 'Ajouter',
|
||||
'save' => 'Enregistrer',
|
||||
'update' => 'Mettre à jour',
|
||||
'create' => 'Créer',
|
||||
'edit' => 'Modifier',
|
||||
'delete' => 'Supprimer',
|
||||
'submit' => 'Envoyer',
|
||||
'cancel' => 'Annuler',
|
||||
'remove' => 'Enlever',
|
||||
'invite' => 'Inviter',
|
||||
'signup' => 'Inscription',
|
||||
'manage_updates' => 'Manage Updates',
|
||||
|
||||
// Other
|
||||
'optional' => '* Optionnel',
|
||||
|
||||
@@ -13,84 +13,84 @@ return [
|
||||
'component' => [
|
||||
'status_update' => [
|
||||
'mail' => [
|
||||
'subject' => 'Component Status Updated',
|
||||
'greeting' => 'A component\'s status was updated!',
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'action' => 'View',
|
||||
'subject' => 'Le statut du composant a été mis à jour',
|
||||
'greeting' => 'Le statut d’un composant a été mis à jour !',
|
||||
'content' => 'Le statut de :name est passé de :old_status à :new_status.',
|
||||
'action' => 'Afficher',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'Component Status Updated',
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'title' => 'Le statut du composant a été mis à jour',
|
||||
'content' => 'Le statut de :name est passé de :old_status à :new_status.',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'content' => 'Le statut de :name est passé de :old_status à :new_status.',
|
||||
],
|
||||
],
|
||||
],
|
||||
'incident' => [
|
||||
'new' => [
|
||||
'mail' => [
|
||||
'subject' => 'New Incident Reported',
|
||||
'greeting' => 'A new incident was reported at :app_name.',
|
||||
'content' => 'Incident :name was reported',
|
||||
'action' => 'View',
|
||||
'subject' => 'Nouvel incident signalé',
|
||||
'greeting' => 'Un nouvel incident a été signalé pour :app_name.',
|
||||
'content' => 'Incident :name a été signalé',
|
||||
'action' => 'Afficher',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'Incident :name Reported',
|
||||
'content' => 'A new incident was reported at :app_name',
|
||||
'title' => 'Incident :name signalé',
|
||||
'content' => 'Un nouvel incident a été signalé pour :app_name',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => 'A new incident was reported at :app_name.',
|
||||
'content' => 'Un nouvel incident a été signalé pour :app_name.',
|
||||
],
|
||||
],
|
||||
'update' => [
|
||||
'mail' => [
|
||||
'subject' => 'Incident Updated',
|
||||
'content' => ':name was updated',
|
||||
'title' => ':name was updated to :new_status',
|
||||
'action' => 'View',
|
||||
'subject' => 'Incident mis à jour',
|
||||
'content' => ':name a été mis à jour',
|
||||
'title' => ':name est passé à :new_status',
|
||||
'action' => 'Afficher',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => ':name Updated',
|
||||
'content' => ':name was updated to :new_status',
|
||||
'title' => ':name mis à jour',
|
||||
'content' => ':name est passé à :new_status',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => 'Incident :name was updated',
|
||||
'content' => 'Incident :name a été mis à jour',
|
||||
],
|
||||
],
|
||||
],
|
||||
'schedule' => [
|
||||
'new' => [
|
||||
'mail' => [
|
||||
'subject' => 'New Schedule Created',
|
||||
'content' => ':name was scheduled for :date',
|
||||
'title' => 'A new scheduled maintenance was created.',
|
||||
'action' => 'View',
|
||||
'subject' => 'Nouvelle planification créée',
|
||||
'content' => ':name a été planifié pour :date',
|
||||
'title' => 'Une nouvelle maintenance planifiée a été créée.',
|
||||
'action' => 'Afficher',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'New Schedule Created!',
|
||||
'content' => ':name was scheduled for :date',
|
||||
'title' => 'Nouvelle planification créée !',
|
||||
'content' => ':name a été planifié pour :date',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => ':name was scheduled for :date',
|
||||
'content' => ':name a été planifié pour :date',
|
||||
],
|
||||
],
|
||||
],
|
||||
'subscriber' => [
|
||||
'verify' => [
|
||||
'mail' => [
|
||||
'subject' => 'Verify Your Subscription',
|
||||
'content' => 'Click to verify your subscription to :app_name status page.',
|
||||
'title' => 'Verify your subscription to :app_name status page.',
|
||||
'action' => 'Verify',
|
||||
'subject' => 'Veuillez vérifier votre abonnement',
|
||||
'content' => 'Cliquez ici pour vérifier votre abonnement à la page de statut de :app_name.',
|
||||
'title' => 'Vérifiez votre abonnement à la page de statut de :app_name.',
|
||||
'action' => 'Vérifier',
|
||||
],
|
||||
],
|
||||
],
|
||||
'system' => [
|
||||
'test' => [
|
||||
'mail' => [
|
||||
'subject' => 'Ping from Cachet!',
|
||||
'content' => 'This is a test notification from Cachet!',
|
||||
'subject' => 'Ping depuis Cachet!',
|
||||
'content' => 'Ceci est une notification de test depuis Cachet !',
|
||||
'title' => '🔔',
|
||||
],
|
||||
],
|
||||
@@ -98,10 +98,10 @@ return [
|
||||
'user' => [
|
||||
'invite' => [
|
||||
'mail' => [
|
||||
'subject' => 'Your invitation is inside...',
|
||||
'content' => 'You have been invited to join :app_name status page.',
|
||||
'title' => 'You\'re invited to join :app_name status page.',
|
||||
'action' => 'Accept',
|
||||
'subject' => 'Votre invitation est à l\'intérieur...',
|
||||
'content' => 'Vous avez été invité à rejoindre la page de statut de :app_name.',
|
||||
'title' => 'Vous êtes invité à rejoindre la page de statut de :app_name.',
|
||||
'action' => 'Accepter',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
@@ -22,7 +22,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => 'Previous',
|
||||
'next' => 'Next',
|
||||
'previous' => 'Précédent',
|
||||
'next' => 'Suivant',
|
||||
|
||||
];
|
||||
|
||||
@@ -84,7 +84,7 @@ return [
|
||||
'string' => 'L\'attribut ":attribute" doit faire :size caractères.',
|
||||
'array' => ':attribute doit contenir :size éléments.',
|
||||
],
|
||||
'string' => ':attribute doit être une chaîne de caractères.',
|
||||
'string' => 'L\' :attribut doit être une chaîne de caractères.',
|
||||
'timezone' => ':attribute doit être une zone valide.',
|
||||
'unique' => ':attribute a déjà été pris.',
|
||||
'url' => 'Le format de :attribute n\'est pas valide.',
|
||||
|
||||
@@ -33,6 +33,7 @@ return [
|
||||
'scheduled' => 'תחזוקה מתוזמנת',
|
||||
'scheduled_at' => ', scheduled :timestamp',
|
||||
'posted' => 'Posted :timestamp',
|
||||
'posted_at' => 'Posted at :timestamp',
|
||||
'status' => [
|
||||
1 => 'Investigating',
|
||||
2 => 'מזוהה',
|
||||
|
||||
@@ -11,8 +11,8 @@
|
||||
|
||||
return [
|
||||
|
||||
'dashboard' => 'Dashboard',
|
||||
'writeable_settings' => 'The Cachet settings directory is not writeable. Please make sure that <code>./bootstrap/cachet</code> is writeable by the web server.',
|
||||
'dashboard' => 'לוח בקרה',
|
||||
'writeable_settings' => 'תיקיית ההגדרות של Cachet איננה קיימת עם הגדרות כתיבה. נא לבדוק שליוזר השרת יש הרשאות לכתוב בתיקיית <code>./bootstrap/cachet</code>.',
|
||||
|
||||
// Incidents
|
||||
'incidents' => [
|
||||
@@ -21,7 +21,20 @@ return [
|
||||
'logged' => '{0} There are no incidents, good work.|You have logged one incident.|You have reported <strong>:count</strong> incidents.',
|
||||
'incident-create-template' => 'Create Template',
|
||||
'incident-templates' => 'Incident Templates',
|
||||
'updates' => '{0} Zero Updates|One Update|:count Updates',
|
||||
'updates' => [
|
||||
'title' => 'Incident updates for :incident',
|
||||
'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,*] Several Updates',
|
||||
'add' => [
|
||||
'title' => 'Create new incident update',
|
||||
'success' => 'Your new incident update has been created.',
|
||||
'failure' => 'Something went wrong with the incident update.',
|
||||
],
|
||||
'edit' => [
|
||||
'title' => 'Edit incident update',
|
||||
'success' => 'The incident update has been updated.',
|
||||
'failure' => 'Something went wrong updating the incident update',
|
||||
],
|
||||
],
|
||||
'add' => [
|
||||
'title' => 'Report an incident',
|
||||
'success' => 'Incident added.',
|
||||
@@ -36,11 +49,6 @@ return [
|
||||
'success' => 'The incident has been deleted and will not show on your status page.',
|
||||
'failure' => 'The incident could not be deleted, please try again.',
|
||||
],
|
||||
'update' => [
|
||||
'title' => 'Create new incident update',
|
||||
'subtitle' => 'Add an update to <strong>:incident</strong>',
|
||||
'success' => 'Update added.',
|
||||
],
|
||||
|
||||
// Incident templates
|
||||
'templates' => [
|
||||
@@ -147,13 +155,15 @@ return [
|
||||
],
|
||||
// Subscribers
|
||||
'subscribers' => [
|
||||
'subscribers' => 'Subscribers',
|
||||
'description' => 'Subscribers will receive email updates when incidents are created or components are updated.',
|
||||
'verified' => 'Verified',
|
||||
'not_verified' => 'Not verified',
|
||||
'subscriber' => ':email, subscribed :date',
|
||||
'no_subscriptions' => 'Subscribed to all updates',
|
||||
'add' => [
|
||||
'subscribers' => 'Subscribers',
|
||||
'description' => 'Subscribers will receive email updates when incidents are created or components are updated.',
|
||||
'description_disabled' => 'To use this feature, you need allow people to signup for notifications.',
|
||||
'verified' => 'Verified',
|
||||
'not_verified' => 'Not verified',
|
||||
'subscriber' => ':email, subscribed :date',
|
||||
'no_subscriptions' => 'Subscribed to all updates',
|
||||
'global' => 'Globally subscribed',
|
||||
'add' => [
|
||||
'title' => 'Add a new subscriber',
|
||||
'success' => 'Subscriber has been added!',
|
||||
'failure' => 'Something went wrong adding the subscriber, please try again.',
|
||||
|
||||
@@ -151,6 +151,7 @@ return [
|
||||
'display-graphs' => 'להציג גרפים בדף של סטטוס?',
|
||||
'about-this-page' => 'About this page',
|
||||
'days-of-incidents' => 'כמה ימים של אירועים להראות?',
|
||||
'time_before_refresh' => 'Status page refresh rate (in seconds).',
|
||||
'banner' => 'Banner Image',
|
||||
'banner-help' => "It's recommended that you upload files no bigger than 930px wide .",
|
||||
'subscribers' => 'Allow people to signup to email notifications?',
|
||||
@@ -223,17 +224,18 @@ return [
|
||||
],
|
||||
|
||||
// Buttons
|
||||
'add' => 'Add',
|
||||
'save' => 'Save',
|
||||
'update' => 'Update',
|
||||
'create' => 'Create',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Delete',
|
||||
'submit' => 'Submit',
|
||||
'cancel' => 'Cancel',
|
||||
'remove' => 'Remove',
|
||||
'invite' => 'Invite',
|
||||
'signup' => 'Sign Up',
|
||||
'add' => 'Add',
|
||||
'save' => 'Save',
|
||||
'update' => 'Update',
|
||||
'create' => 'Create',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Delete',
|
||||
'submit' => 'Submit',
|
||||
'cancel' => 'Cancel',
|
||||
'remove' => 'Remove',
|
||||
'invite' => 'Invite',
|
||||
'signup' => 'Sign Up',
|
||||
'manage_updates' => 'Manage Updates',
|
||||
|
||||
// Other
|
||||
'optional' => '* Optional',
|
||||
|
||||
@@ -14,7 +14,7 @@ return [
|
||||
'components' => [
|
||||
'last_updated' => 'Utoljára frissítve: :timestamp',
|
||||
'status' => [
|
||||
0 => 'Unknown',
|
||||
0 => 'Ismeretlen',
|
||||
1 => 'Működik',
|
||||
2 => 'Teljesítmény problémák',
|
||||
3 => 'Részleges leállás',
|
||||
@@ -31,12 +31,13 @@ return [
|
||||
'past' => 'Múltbeli incidensek',
|
||||
'stickied' => 'Kitűzőtt Incidensek',
|
||||
'scheduled' => 'Ütemezett karbantartás',
|
||||
'scheduled_at' => ', ütemezett :timestamp',
|
||||
'scheduled_at' => ', ütemezve: :timestamp',
|
||||
'posted' => 'Közzétéve :timestamp',
|
||||
'posted_at' => 'Posted at :timestamp',
|
||||
'status' => [
|
||||
1 => 'Kivizsgálás',
|
||||
1 => 'Kivizsgálás alatt',
|
||||
2 => 'Azonosítva',
|
||||
3 => 'Megfigyelés',
|
||||
3 => 'Megfigyelés alatt',
|
||||
4 => 'Javítva',
|
||||
],
|
||||
],
|
||||
@@ -44,9 +45,9 @@ return [
|
||||
// Schedule
|
||||
'schedules' => [
|
||||
'status' => [
|
||||
0 => 'Upcoming',
|
||||
1 => 'In Progress',
|
||||
2 => 'Complete',
|
||||
0 => 'Közelgő',
|
||||
1 => 'Folyamatban',
|
||||
2 => 'Befejezve',
|
||||
],
|
||||
],
|
||||
|
||||
@@ -84,9 +85,9 @@ return [
|
||||
'email' => [
|
||||
'subscribe' => 'Feliratkozás e-mail értesítésekre.',
|
||||
'subscribed' => 'Ön feliratkozott e-mailen, kérjük ellenőrizze e-mail fiókját a véglegesítéshez.',
|
||||
'verified' => 'Feliratkozásod megerősítve. Köszönjük!',
|
||||
'verified' => 'Feliratkozása megerősítve. Köszönjük!',
|
||||
'manage' => 'Feliratkozás kezelése',
|
||||
'unsubscribe' => 'E-mail értesítések kikapcsolása.',
|
||||
'unsubscribe' => 'Leiratkozás az e-mail értesítésekről.',
|
||||
'unsubscribed' => 'E-mail feliratkozás törölve.',
|
||||
'failure' => 'Hiba történt a feliratkozással.',
|
||||
'already-subscribed' => ':email már fel van iratkozva.',
|
||||
@@ -103,7 +104,7 @@ return [
|
||||
],
|
||||
|
||||
'system' => [
|
||||
'update' => 'Cachet frissítések találhatók! <a href="https://docs.cachethq.io/docs/updating-cachet">Itt</a> olvashatsz utána, hogyan kell frissíteni.',
|
||||
'update' => 'Elérhető egy újabb Cachet verzió! <a href="https://docs.cachethq.io/docs/updating-cachet">Itt</a> olvashat utána a frissítés menetének.',
|
||||
],
|
||||
|
||||
// Modal
|
||||
@@ -119,8 +120,8 @@ return [
|
||||
// Other
|
||||
'home' => 'Kezdőoldal',
|
||||
'description' => 'Maradjon mindig naprakész :app legújabb frissítéseivel.',
|
||||
'powered_by' => 'Powered by <a href="https://cachethq.io" class="links">Cachet</a>.',
|
||||
'timezone' => 'Alkalmazott időzóna: :timezone.',
|
||||
'powered_by' => 'A motorháztető alatt a <a href="https://cachethq.io" class="links">Cachet</a> dolgozik.',
|
||||
'timezone' => 'Időzóna: :timezone.',
|
||||
'about_this_site' => 'A webhelyről',
|
||||
'rss-feed' => 'RSS',
|
||||
'atom-feed' => 'Atom',
|
||||
|
||||
@@ -11,8 +11,8 @@
|
||||
|
||||
return [
|
||||
|
||||
'dashboard' => 'Műszerfal',
|
||||
'writeable_settings' => 'The Cachet settings directory is not writeable. Please make sure that <code>./bootstrap/cachet</code> is writeable by the web server.',
|
||||
'dashboard' => 'Irányítópult',
|
||||
'writeable_settings' => 'A Cachet beállítás mappája nem írható. Kérjük győződjön meg róla, hogy a <code>./bootstrap/cachet</code> mapp írható a webszerver által.',
|
||||
|
||||
// Incidents
|
||||
'incidents' => [
|
||||
@@ -21,7 +21,20 @@ return [
|
||||
'logged' => '{0} Nincs semmilyen incidens, szép munka.|Ön egy incidenst jelentett.|Ön összesen <strong>:count</strong> incidenst jelentett.',
|
||||
'incident-create-template' => 'Sablon létrehozása',
|
||||
'incident-templates' => 'Incidens Sablonok',
|
||||
'updates' => '{0} Zero Updates|One Update|:count Updates',
|
||||
'updates' => [
|
||||
'title' => 'Incident updates for :incident',
|
||||
'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,*] Several Updates',
|
||||
'add' => [
|
||||
'title' => 'Új incidens frissítés létrehozása',
|
||||
'success' => 'Your new incident update has been created.',
|
||||
'failure' => 'Something went wrong with the incident update.',
|
||||
],
|
||||
'edit' => [
|
||||
'title' => 'Edit incident update',
|
||||
'success' => 'The incident update has been updated.',
|
||||
'failure' => 'Something went wrong updating the incident update',
|
||||
],
|
||||
],
|
||||
'add' => [
|
||||
'title' => 'Incidens jelentése',
|
||||
'success' => 'Incidens létrehozva.',
|
||||
@@ -36,11 +49,6 @@ return [
|
||||
'success' => 'Az incidens törölve lett és nem fog többé megjelenni.',
|
||||
'failure' => 'Az incidenst nem lehetett törölni, kérjük próbálja újra.',
|
||||
],
|
||||
'update' => [
|
||||
'title' => 'Create new incident update',
|
||||
'subtitle' => 'Add an update to <strong>:incident</strong>',
|
||||
'success' => 'Update added.',
|
||||
],
|
||||
|
||||
// Incident templates
|
||||
'templates' => [
|
||||
@@ -147,13 +155,15 @@ return [
|
||||
],
|
||||
// Subscribers
|
||||
'subscribers' => [
|
||||
'subscribers' => 'Feliratkozók',
|
||||
'description' => 'A feliratkozók email értesítést kapnak ha incidensek lesznek létrehozva vagy komponensek lesznek frissítve.',
|
||||
'verified' => 'Megerősítve',
|
||||
'not_verified' => 'Nincs megerősítve',
|
||||
'subscriber' => ':email, feliratkozott: :date',
|
||||
'no_subscriptions' => 'Feliratkozva az összes frissítésre',
|
||||
'add' => [
|
||||
'subscribers' => 'Feliratkozók',
|
||||
'description' => 'A feliratkozók email értesítést kapnak ha incidensek lesznek létrehozva vagy komponensek lesznek frissítve.',
|
||||
'description_disabled' => 'To use this feature, you need allow people to signup for notifications.',
|
||||
'verified' => 'Megerősítve',
|
||||
'not_verified' => 'Nincs megerősítve',
|
||||
'subscriber' => ':email, feliratkozott: :date',
|
||||
'no_subscriptions' => 'Feliratkozva az összes frissítésre',
|
||||
'global' => 'Globally subscribed',
|
||||
'add' => [
|
||||
'title' => 'Új feliratkozó hozzáadása',
|
||||
'success' => 'Feliratkozó létrehozva!',
|
||||
'failure' => 'Hiba történt a feliratkozó hozzáadásakor, kérjük próbálja újra.',
|
||||
@@ -205,7 +215,7 @@ return [
|
||||
'analytics' => 'Analízis',
|
||||
],
|
||||
'log' => [
|
||||
'log' => 'Log',
|
||||
'log' => 'Napló',
|
||||
],
|
||||
'localization' => [
|
||||
'localization' => 'Lokalizáció',
|
||||
@@ -216,11 +226,11 @@ return [
|
||||
'footer' => 'Egyéni lábjegyzet HTML',
|
||||
],
|
||||
'mail' => [
|
||||
'mail' => 'Mail',
|
||||
'test' => 'Test',
|
||||
'mail' => 'Lelevelezés',
|
||||
'test' => 'Teszt',
|
||||
'email' => [
|
||||
'subject' => 'Test notification from Cachet',
|
||||
'body' => 'This is a test notification from Cachet.',
|
||||
'subject' => 'Cachet teszt értesítés',
|
||||
'body' => 'Ez egy Cachet teszt értesítés.',
|
||||
],
|
||||
],
|
||||
'security' => [
|
||||
|
||||
@@ -22,7 +22,7 @@ return [
|
||||
'site_locale' => 'Nyelv kiválasztása',
|
||||
'enable_google2fa' => 'Google Two Factor Authentication engedélyezése',
|
||||
'cache_driver' => 'Cache Driver',
|
||||
'queue_driver' => 'Queue Driver',
|
||||
'queue_driver' => 'Sorkezelő',
|
||||
'session_driver' => 'Session Driver',
|
||||
'mail_driver' => 'Mail Driver',
|
||||
'mail_host' => 'Mail Host',
|
||||
@@ -41,7 +41,7 @@ return [
|
||||
'invalid-token' => 'Érvénytelen kulcs',
|
||||
'cookies' => 'A bejelentkezéshez engedélyezni kell a sütiket.',
|
||||
'rate-limit' => 'Túl sok próbálkozás.',
|
||||
'remember_me' => 'Remember me',
|
||||
'remember_me' => 'Emlékezz rám',
|
||||
],
|
||||
|
||||
// Incidents form fields
|
||||
@@ -51,7 +51,7 @@ return [
|
||||
'component' => 'Komponens',
|
||||
'message' => 'Üzenet',
|
||||
'message-help' => 'Használhatsz Markdown-t is.',
|
||||
'occurred_at' => 'When did this incident occur?',
|
||||
'occurred_at' => 'Mikor történt az incidens?',
|
||||
'notify_subscribers' => 'Feliratkozók értesítése?',
|
||||
'visibility' => 'Incidens láthatóság',
|
||||
'stick_status' => 'Incidens kitűzése',
|
||||
@@ -71,8 +71,8 @@ return [
|
||||
'status' => 'Státusz',
|
||||
'message' => 'Üzenet',
|
||||
'message-help' => 'Használhatsz Markdown-t is.',
|
||||
'scheduled_at' => 'When is this maintenance scheduled for?',
|
||||
'completed_at' => 'When did this maintenance complete?',
|
||||
'scheduled_at' => 'Mikorra van ütemezve a karbantartás?',
|
||||
'completed_at' => 'Mikor lett készen a karbantartás?',
|
||||
'templates' => [
|
||||
'name' => 'Név',
|
||||
'template' => 'Sablon',
|
||||
@@ -107,10 +107,10 @@ return [
|
||||
'actions' => [
|
||||
'name' => 'Név',
|
||||
'description' => 'Leírás',
|
||||
'start_at' => 'Schedule start time',
|
||||
'start_at' => 'Karbantartás kezdete',
|
||||
'timezone' => 'Időzóna',
|
||||
'schedule_frequency' => 'Ütemezés gyakorisága (másodpercben)',
|
||||
'completion_latency' => 'Completion latency (in seconds)',
|
||||
'completion_latency' => 'Késés (másodpercben)',
|
||||
'group' => 'Csoport',
|
||||
'active' => 'Aktív?',
|
||||
'groups' => [
|
||||
@@ -133,9 +133,9 @@ return [
|
||||
'default_view' => 'Alapértelmezett nézet',
|
||||
'threshold' => 'Hány perc a metrikus pontok között?',
|
||||
'visibility' => 'Láthatóság',
|
||||
'visibility_authenticated' => 'Visible to authenticated users',
|
||||
'visibility_public' => 'Visible to everybody',
|
||||
'visibility_hidden' => 'Always hidden',
|
||||
'visibility_authenticated' => 'Látható a hitelesített felhasználók számára',
|
||||
'visibility_public' => 'Látható mindenki számára',
|
||||
'visibility_hidden' => 'Mindig legyen rejtett',
|
||||
|
||||
'points' => [
|
||||
'value' => 'Érték',
|
||||
@@ -151,14 +151,15 @@ return [
|
||||
'display-graphs' => 'Grafikonok mutatása az állapot oldaon?',
|
||||
'about-this-page' => 'Erről az oldalról',
|
||||
'days-of-incidents' => 'Mennyi incidens legyen látható?',
|
||||
'time_before_refresh' => 'Status page refresh rate (in seconds).',
|
||||
'banner' => 'Banner kép',
|
||||
'banner-help' => 'Nem ajánlott 930 pixelnél szélesebb képet feltölteni.',
|
||||
'subscribers' => 'Emberek regisztrálhatnak email értesítésekre?',
|
||||
'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)',
|
||||
'skip_subscriber_verification' => 'Felhasználó-ellenőrzés kihagyása? (Vigyázat, spam üzeneteket eredményezhet)',
|
||||
'automatic_localization' => 'Állapot oldal automatikus lokalizálása a látogató nyelvén?',
|
||||
'enable_external_dependencies' => 'Enable Third Party Dependencies (Google Fonts, Trackers, etc...)',
|
||||
'show_timezone' => 'Show the timezone the status page is running in.',
|
||||
'only_disrupted_days' => 'Only show days containing incidents in the timeline?',
|
||||
'enable_external_dependencies' => 'Harmadik féltől származó függőségek engedélyezése (Google Fonts, Tracker, stb)',
|
||||
'show_timezone' => 'Az aktuális időzóna megjelenítése az állapot oldalon.',
|
||||
'only_disrupted_days' => 'Csak incidenssel rendelkező napok megjelenítése?',
|
||||
],
|
||||
'analytics' => [
|
||||
'analytics_google' => 'Google Analytics kód',
|
||||
@@ -219,21 +220,22 @@ return [
|
||||
],
|
||||
|
||||
'general' => [
|
||||
'timezone' => 'Select Timezone',
|
||||
'timezone' => 'Időzóna kiválasztása',
|
||||
],
|
||||
|
||||
// Buttons
|
||||
'add' => 'Hozzáadás',
|
||||
'save' => 'Mentés',
|
||||
'update' => 'Módosít',
|
||||
'create' => 'Létrehoz',
|
||||
'edit' => 'Szerkeszt',
|
||||
'delete' => 'Törlés',
|
||||
'submit' => 'Elküld',
|
||||
'cancel' => 'Mégsem',
|
||||
'remove' => 'Törlés',
|
||||
'invite' => 'Meghívás',
|
||||
'signup' => 'Regisztráció',
|
||||
'add' => 'Hozzáadás',
|
||||
'save' => 'Mentés',
|
||||
'update' => 'Módosít',
|
||||
'create' => 'Létrehoz',
|
||||
'edit' => 'Szerkeszt',
|
||||
'delete' => 'Törlés',
|
||||
'submit' => 'Elküld',
|
||||
'cancel' => 'Mégsem',
|
||||
'remove' => 'Törlés',
|
||||
'invite' => 'Meghívás',
|
||||
'signup' => 'Regisztráció',
|
||||
'manage_updates' => 'Manage Updates',
|
||||
|
||||
// Other
|
||||
'optional' => '* Opcionális',
|
||||
|
||||
@@ -31,7 +31,7 @@ return [
|
||||
'array' => ':attribute csak tömb típusú lehet.',
|
||||
'before' => ':attribute csak :date előtti dátum lehet.',
|
||||
'between' => [
|
||||
'numeric' => 'The :attribute must be between :min and :max.',
|
||||
'numeric' => ':attribute csak :min és :max között érvényes.',
|
||||
'file' => 'The :attribute must be between :min and :max kilobytes.',
|
||||
'string' => 'The :attribute must be between :min and :max characters.',
|
||||
'array' => ':attribute csak :min és :max elem közötti lehet.',
|
||||
|
||||
@@ -33,6 +33,7 @@ return [
|
||||
'scheduled' => 'Jadwal Pemeliharaan',
|
||||
'scheduled_at' => ', dijadwalkan pada :timestamp',
|
||||
'posted' => 'Dikirim: timestamp',
|
||||
'posted_at' => 'Posted at :timestamp',
|
||||
'status' => [
|
||||
1 => 'Investigasi',
|
||||
2 => 'Teridentifikasi',
|
||||
|
||||
@@ -21,7 +21,20 @@ return [
|
||||
'logged' => '{0} Tidak ada insiden, bagus.|Anda mencatat satu insiden.|Anda sudah melaporkan <strong>:count</strong> insiden.',
|
||||
'incident-create-template' => 'Buat Template',
|
||||
'incident-templates' => 'Template Insiden',
|
||||
'updates' => '{0} Nol Update|Satu Update|:count Update',
|
||||
'updates' => [
|
||||
'title' => 'Incident updates for :incident',
|
||||
'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,*] Several Updates',
|
||||
'add' => [
|
||||
'title' => 'Buat update insiden baru',
|
||||
'success' => 'Your new incident update has been created.',
|
||||
'failure' => 'Something went wrong with the incident update.',
|
||||
],
|
||||
'edit' => [
|
||||
'title' => 'Edit incident update',
|
||||
'success' => 'The incident update has been updated.',
|
||||
'failure' => 'Something went wrong updating the incident update',
|
||||
],
|
||||
],
|
||||
'add' => [
|
||||
'title' => 'Tambahkan Insiden',
|
||||
'success' => 'Insiden sudah ditambahkan.',
|
||||
@@ -36,11 +49,6 @@ return [
|
||||
'success' => 'Insiden sudah dihapus dan tidak akan ditampilkan pada halaman status anda.',
|
||||
'failure' => 'Insiden tidak dapat dihapus, silakan coba lagi.',
|
||||
],
|
||||
'update' => [
|
||||
'title' => 'Buat update insiden baru',
|
||||
'subtitle' => 'Menambahkan update ke <strong>:incident</strong>',
|
||||
'success' => 'Update added.',
|
||||
],
|
||||
|
||||
// Incident templates
|
||||
'templates' => [
|
||||
@@ -147,13 +155,15 @@ return [
|
||||
],
|
||||
// Subscribers
|
||||
'subscribers' => [
|
||||
'subscribers' => 'Berlangganan',
|
||||
'description' => 'Pelanggan akan menerima update email ketika insiden dibuat atau komponen diperbarui.',
|
||||
'verified' => 'Terverifikasi',
|
||||
'not_verified' => 'Belum Diverifikasi',
|
||||
'subscriber' => ':email, berlangganan :date',
|
||||
'no_subscriptions' => 'Berlangganan semua update',
|
||||
'add' => [
|
||||
'subscribers' => 'Berlangganan',
|
||||
'description' => 'Pelanggan akan menerima update email ketika insiden dibuat atau komponen diperbarui.',
|
||||
'description_disabled' => 'To use this feature, you need allow people to signup for notifications.',
|
||||
'verified' => 'Terverifikasi',
|
||||
'not_verified' => 'Belum Diverifikasi',
|
||||
'subscriber' => ':email, berlangganan :date',
|
||||
'no_subscriptions' => 'Berlangganan semua update',
|
||||
'global' => 'Globally subscribed',
|
||||
'add' => [
|
||||
'title' => 'Tambah Pelanggan Baru',
|
||||
'success' => 'Pelanggan sudah ditambahkan.',
|
||||
'failure' => 'Ada masalah saat menambah langganan, silakan coba lagi.',
|
||||
|
||||
@@ -151,6 +151,7 @@ return [
|
||||
'display-graphs' => 'Tampilkan grafik di halaman status?',
|
||||
'about-this-page' => 'Tentang halaman ini',
|
||||
'days-of-incidents' => 'Berapa hari insiden akan ditampilkan?',
|
||||
'time_before_refresh' => 'Status page refresh rate (in seconds).',
|
||||
'banner' => 'Gambar Banner',
|
||||
'banner-help' => 'Disarankan gambar yang anda unggah tidak lebih lebar dari 930px.',
|
||||
'subscribers' => 'Bolehkan pengunjung mendaftar notifikasi email?',
|
||||
@@ -223,17 +224,18 @@ return [
|
||||
],
|
||||
|
||||
// Buttons
|
||||
'add' => 'Tambah',
|
||||
'save' => 'Simpan',
|
||||
'update' => 'Perbarui',
|
||||
'create' => 'Buat',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Hapus',
|
||||
'submit' => 'Kirim',
|
||||
'cancel' => 'Batalkan',
|
||||
'remove' => 'Buang',
|
||||
'invite' => 'Undang',
|
||||
'signup' => 'Daftar',
|
||||
'add' => 'Tambah',
|
||||
'save' => 'Simpan',
|
||||
'update' => 'Perbarui',
|
||||
'create' => 'Buat',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Hapus',
|
||||
'submit' => 'Kirim',
|
||||
'cancel' => 'Batalkan',
|
||||
'remove' => 'Buang',
|
||||
'invite' => 'Undang',
|
||||
'signup' => 'Daftar',
|
||||
'manage_updates' => 'Manage Updates',
|
||||
|
||||
// Other
|
||||
'optional' => '* Tidak wajib',
|
||||
|
||||
@@ -13,84 +13,84 @@ return [
|
||||
'component' => [
|
||||
'status_update' => [
|
||||
'mail' => [
|
||||
'subject' => 'Component Status Updated',
|
||||
'greeting' => 'A component\'s status was updated!',
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'action' => 'View',
|
||||
'subject' => 'Status Komponen Telah Diperbarui',
|
||||
'greeting' => 'Status sebuah komponen telah diperbarui!',
|
||||
'content' => 'Status :name telah berubah dari :old_status ke :new_status.',
|
||||
'action' => 'Lihat',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'Component Status Updated',
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'title' => 'Status Komponen Telah Diperbarui',
|
||||
'content' => 'Status :name telah berubah dari :old_status ke :new_status.',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'content' => 'Status :name telah berubah dari :old_status ke :new_status.',
|
||||
],
|
||||
],
|
||||
],
|
||||
'incident' => [
|
||||
'new' => [
|
||||
'mail' => [
|
||||
'subject' => 'New Incident Reported',
|
||||
'greeting' => 'A new incident was reported at :app_name.',
|
||||
'content' => 'Incident :name was reported',
|
||||
'action' => 'View',
|
||||
'subject' => 'Insiden baru telah dilaporkan',
|
||||
'greeting' => 'Sebuah insiden baru dilaporkan di :app_name.',
|
||||
'content' => 'Insiden :name dilaporkan',
|
||||
'action' => 'Lihat',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'Incident :name Reported',
|
||||
'content' => 'A new incident was reported at :app_name',
|
||||
'title' => 'Insiden: nama Dilaporkan',
|
||||
'content' => 'Sebuah insiden baru dilaporkan di: applikasi_nama',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => 'A new incident was reported at :app_name.',
|
||||
'content' => 'Sebuah insiden baru dilaporkan di :app_name.',
|
||||
],
|
||||
],
|
||||
'update' => [
|
||||
'mail' => [
|
||||
'subject' => 'Incident Updated',
|
||||
'content' => ':name was updated',
|
||||
'title' => ':name was updated to :new_status',
|
||||
'action' => 'View',
|
||||
'subject' => 'Insiden Diperbarui',
|
||||
'content' => ':nama telah diperbarui',
|
||||
'title' => ':nama telah diperbarui ke :baru_status',
|
||||
'action' => 'Lihat',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => ':name Updated',
|
||||
'content' => ':name was updated to :new_status',
|
||||
'title' => ':nama Diperbarui',
|
||||
'content' => ':nama telah diperbarui ke :baru_status',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => 'Incident :name was updated',
|
||||
'content' => 'Insiden: nama telah diperbarui',
|
||||
],
|
||||
],
|
||||
],
|
||||
'schedule' => [
|
||||
'new' => [
|
||||
'mail' => [
|
||||
'subject' => 'New Schedule Created',
|
||||
'content' => ':name was scheduled for :date',
|
||||
'title' => 'A new scheduled maintenance was created.',
|
||||
'action' => 'View',
|
||||
'subject' => 'Jadwal Baru Dibuat',
|
||||
'content' => ':nama dijadwalkan untuk :tanggal',
|
||||
'title' => 'Pemeliharaan terjadwal baru telah dibuat.',
|
||||
'action' => 'Lihat',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'New Schedule Created!',
|
||||
'content' => ':name was scheduled for :date',
|
||||
'title' => 'Jadwal Baru Dibuat!',
|
||||
'content' => ':nama dijadwalkan untuk :tanggal',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => ':name was scheduled for :date',
|
||||
'content' => ':nama dijadwalkan untuk :tanggal',
|
||||
],
|
||||
],
|
||||
],
|
||||
'subscriber' => [
|
||||
'verify' => [
|
||||
'mail' => [
|
||||
'subject' => 'Verify Your Subscription',
|
||||
'content' => 'Click to verify your subscription to :app_name status page.',
|
||||
'title' => 'Verify your subscription to :app_name status page.',
|
||||
'action' => 'Verify',
|
||||
'subject' => 'Verifikasi Langganan Anda',
|
||||
'content' => 'Klik untuk memverifikasi langganan Anda ke :halaman status aplikasi_nama.',
|
||||
'title' => 'Verifikasi langganan Anda ke :halaman status aplikasi_nama.',
|
||||
'action' => 'Memeriksa',
|
||||
],
|
||||
],
|
||||
],
|
||||
'system' => [
|
||||
'test' => [
|
||||
'mail' => [
|
||||
'subject' => 'Ping from Cachet!',
|
||||
'content' => 'This is a test notification from Cachet!',
|
||||
'subject' => 'Ping dari Cachet!',
|
||||
'content' => 'Ini adalah pemberitahuan pengujian dari Cachet!',
|
||||
'title' => '🔔',
|
||||
],
|
||||
],
|
||||
@@ -98,10 +98,10 @@ return [
|
||||
'user' => [
|
||||
'invite' => [
|
||||
'mail' => [
|
||||
'subject' => 'Your invitation is inside...',
|
||||
'content' => 'You have been invited to join :app_name status page.',
|
||||
'title' => 'You\'re invited to join :app_name status page.',
|
||||
'action' => 'Accept',
|
||||
'subject' => 'Undangan kamu ada di dalamnya...',
|
||||
'content' => 'Anda telah diundang untuk bergabung :halaman status aplikasi_nama.',
|
||||
'title' => 'Anda diundang untuk bergabung: halaman status aplikasi_nama.',
|
||||
'action' => 'Diterima',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
@@ -22,7 +22,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => 'Previous',
|
||||
'next' => 'Next',
|
||||
'previous' => 'Sebelumnya',
|
||||
'next' => 'Berikutnya',
|
||||
|
||||
];
|
||||
|
||||
@@ -31,60 +31,60 @@ return [
|
||||
'array' => ':attribute harus merupakan array.',
|
||||
'before' => ':attribute harus merupakan tanngga sebelum :date.',
|
||||
'between' => [
|
||||
'numeric' => 'The :attribute must be between :min and :max.',
|
||||
'file' => 'The :attribute must be between :min and :max kilobytes.',
|
||||
'string' => 'The :attribute must be between :min and :max characters.',
|
||||
'numeric' => ':attribute harus diantara :min dan :max.',
|
||||
'file' => 'Atribut :harus antara :minimal dan :maksimal kilobyte.',
|
||||
'string' => 'Atribut :harus antara :minimal dan :karakter maksimal.',
|
||||
'array' => ':attribute harus antara :min dan :max item.',
|
||||
],
|
||||
'boolean' => 'The :attribute field must be true or false.',
|
||||
'confirmed' => 'The :attribute confirmation does not match.',
|
||||
'date' => 'The :attribute is not a valid date.',
|
||||
'date_format' => 'The :attribute does not match the format :format.',
|
||||
'different' => 'The :attribute and :other must be different.',
|
||||
'digits' => 'The :attribute must be :digits digits.',
|
||||
'digits_between' => 'The :attribute must be between :min and :max digits.',
|
||||
'email' => 'The :attribute must be a valid email address.',
|
||||
'exists' => 'The selected :attribute is invalid.',
|
||||
'boolean' => 'Bidang atribut :harus benar atau salah.',
|
||||
'confirmed' => 'Konfirmasi :atribut tidak cocok.',
|
||||
'date' => 'Itu :atribut bukan tanggal yang valid.',
|
||||
'date_format' => 'Itu :atribut tidak sesuai format :format.',
|
||||
'different' => 'Itu :atribut dan :lainnya harus berbeda.',
|
||||
'digits' => 'Atribut :harus :digit digit.',
|
||||
'digits_between' => 'Atribut :harus antara :minimal dan :maksimal digit.',
|
||||
'email' => 'Atribut :harus berupa alamat email yang valid.',
|
||||
'exists' => 'Yang dipilih :atribut tidak valid.',
|
||||
'distinct' => ':attribute memiliki nilai duplikasi.',
|
||||
'filled' => 'The :attribute field is required.',
|
||||
'filled' => 'Bidang atribut :diperlukan.',
|
||||
'image' => ':attribute harus merupakan gambar.',
|
||||
'in' => 'The selected :attribute is invalid.',
|
||||
'in' => 'Yang dipilih :atribut tidak valid.',
|
||||
'in_array' => ':attribute tidak ada dalam :other.',
|
||||
'integer' => 'The :attribute must be an integer.',
|
||||
'ip' => 'The :attribute must be a valid IP address.',
|
||||
'integer' => 'Atribut :harus integer.',
|
||||
'ip' => 'Atribut :harus alamat IP yang valid.',
|
||||
'json' => ':attribute harus merupakan string JSON yang valid.',
|
||||
'max' => [
|
||||
'numeric' => 'The :attribute may not be greater than :max.',
|
||||
'file' => 'The :attribute may not be greater than :max kilobytes.',
|
||||
'string' => 'The :attribute may not be greater than :max characters.',
|
||||
'numeric' => 'Atribut :mungkin tidak lebih besar dari :maksimal.',
|
||||
'file' => 'Atribut :mungkin tidak lebih besar dari :maksimal kilobyte.',
|
||||
'string' => 'Atribut :mungkin tidak lebih besar dari :maksimal karakter.',
|
||||
'array' => ':attribute tidak boleh lebih dari :max item.',
|
||||
],
|
||||
'mimes' => 'The :attribute must be a file of type: :values.',
|
||||
'mimes' => 'Itu :atribut harus berupa jenis file:: nilai.',
|
||||
'min' => [
|
||||
'numeric' => 'The :attribute must be at least :min.',
|
||||
'numeric' => 'Atribut :minimal harus :minimal.',
|
||||
'file' => ':attribute minimal harus :min kilobyte.',
|
||||
'string' => 'The :attribute must be at least :min characters.',
|
||||
'array' => 'The :attribute must have at least :min items.',
|
||||
'string' => 'Atribut :minimal harus :minimal karakter.',
|
||||
'array' => 'Atribut :setidaknya harus memiliki :item minimal.',
|
||||
],
|
||||
'not_in' => 'The selected :attribute is invalid.',
|
||||
'numeric' => 'The :attribute must be a number.',
|
||||
'not_in' => 'Yang dipilih :atribut tidak valid.',
|
||||
'numeric' => 'Atribut :harus berupa angka.',
|
||||
'present' => ':attribute harus ada.',
|
||||
'regex' => 'Format :attribute tidak benar.',
|
||||
'required' => 'The :attribute field is required.',
|
||||
'required_if' => 'The :attribute field is required when :other is :value.',
|
||||
'required' => 'Bidang atribut :diperlukan.',
|
||||
'required_if' => 'Atribut :diperlukan saat :lainnya adalah :nilai.',
|
||||
'required_unless' => 'Bagian :attribute harus diisi kecuali :other :values.',
|
||||
'required_with' => ':attribute harus diisi jika ada :values.',
|
||||
'required_with_all' => ':attribute harus diisi jika ada :values.',
|
||||
'required_without' => 'The :attribute field is required when :values is not present.',
|
||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
||||
'same' => 'The :attribute and :other must match.',
|
||||
'required_without' => 'Atribut :diperlukan saat :nilai tidak ada.',
|
||||
'required_without_all' => 'Bidang atribut :diperlukan bila tidak ada :nilai yang ada.',
|
||||
'same' => 'Itu :atribut dan: lainnya harus cocok.',
|
||||
'size' => [
|
||||
'numeric' => 'The :attribute must be :size.',
|
||||
'numeric' => 'Itu :atribut harus :berukuran.',
|
||||
'file' => ':attribute harus :size kilobyte.',
|
||||
'string' => ':attribute harus :size karakter.',
|
||||
'array' => 'The :attribute must contain :size items.',
|
||||
'array' => 'Atribut :harus berisi :item berukuran.',
|
||||
],
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'string' => 'Itu :atribut harus berupa string.',
|
||||
'timezone' => ':attribute harus merupakan zona yang benar.',
|
||||
'unique' => ':attribute sudah ada.',
|
||||
'url' => 'Format :attribute tidak benar.',
|
||||
|
||||
@@ -21,7 +21,7 @@ return [
|
||||
4 => 'Interruzione del servizio',
|
||||
],
|
||||
'group' => [
|
||||
'other' => 'Altri Componenti',
|
||||
'other' => 'Altri componenti',
|
||||
],
|
||||
],
|
||||
|
||||
@@ -33,6 +33,7 @@ return [
|
||||
'scheduled' => 'Manutenzione programmata',
|
||||
'scheduled_at' => ', programmata il :timestamp',
|
||||
'posted' => 'Pubblicato :timestamp',
|
||||
'posted_at' => 'Posted at :timestamp',
|
||||
'status' => [
|
||||
1 => 'Analisi',
|
||||
2 => 'Identificato',
|
||||
@@ -44,9 +45,9 @@ return [
|
||||
// Schedule
|
||||
'schedules' => [
|
||||
'status' => [
|
||||
0 => 'In Arrivo',
|
||||
0 => 'In arrivo',
|
||||
1 => 'In corso',
|
||||
2 => 'Completo',
|
||||
2 => 'Completato',
|
||||
],
|
||||
],
|
||||
|
||||
|
||||
@@ -21,7 +21,20 @@ return [
|
||||
'logged' => '{0} Non ci sono segnalazioni, ottimo lavoro.|Hai notificato una segnalazione.|Hai notificato <strong>:count</strong> segnalazioni.',
|
||||
'incident-create-template' => 'Crea Modello',
|
||||
'incident-templates' => 'Modelli di segnalazione',
|
||||
'updates' => '{0} Zero Aggiornamenti|Un Aggiornamento|:count Aggiornamenti',
|
||||
'updates' => [
|
||||
'title' => 'Incident updates for :incident',
|
||||
'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,*] Several Updates',
|
||||
'add' => [
|
||||
'title' => 'Crea nuovo aggiornamento incidente',
|
||||
'success' => 'Your new incident update has been created.',
|
||||
'failure' => 'Something went wrong with the incident update.',
|
||||
],
|
||||
'edit' => [
|
||||
'title' => 'Edit incident update',
|
||||
'success' => 'The incident update has been updated.',
|
||||
'failure' => 'Something went wrong updating the incident update',
|
||||
],
|
||||
],
|
||||
'add' => [
|
||||
'title' => 'Riporta un problema',
|
||||
'success' => 'Segnalazione aggiunta.',
|
||||
@@ -36,11 +49,6 @@ return [
|
||||
'success' => 'La segnalazione è stata eliminata e non verrà visualizzata sulla tua pagina di stato.',
|
||||
'failure' => 'Non è stato possibile eliminare la segnalazione, si prega di riprovare.',
|
||||
],
|
||||
'update' => [
|
||||
'title' => 'Crea nuovo aggiornamento incidente',
|
||||
'subtitle' => 'Aggiungere un aggiornamento a <strong>:incident</strong>',
|
||||
'success' => 'Update added.',
|
||||
],
|
||||
|
||||
// Incident templates
|
||||
'templates' => [
|
||||
@@ -147,13 +155,15 @@ return [
|
||||
],
|
||||
// Subscribers
|
||||
'subscribers' => [
|
||||
'subscribers' => 'Iscritti',
|
||||
'description' => 'Gli iscritti riceveranno aggiornamenti via email quando vengono create le segnalazioni o vengono aggiornati i componenti vengono.',
|
||||
'verified' => 'Verificato',
|
||||
'not_verified' => 'Non Verificato',
|
||||
'subscriber' => ': email, iscritta :date',
|
||||
'no_subscriptions' => 'Iscritto a tutti gli aggiornamenti',
|
||||
'add' => [
|
||||
'subscribers' => 'Iscritti',
|
||||
'description' => 'Gli iscritti riceveranno aggiornamenti via email quando vengono create le segnalazioni o vengono aggiornati i componenti vengono.',
|
||||
'description_disabled' => 'To use this feature, you need allow people to signup for notifications.',
|
||||
'verified' => 'Verificato',
|
||||
'not_verified' => 'Non Verificato',
|
||||
'subscriber' => ': email, iscritta :date',
|
||||
'no_subscriptions' => 'Iscritto a tutti gli aggiornamenti',
|
||||
'global' => 'Globally subscribed',
|
||||
'add' => [
|
||||
'title' => 'Aggiungi un nuovo iscritto',
|
||||
'success' => 'L\'iscritto è stato aggiunto!',
|
||||
'failure' => 'Qualcosa è andato storto con l\'aggiunta dell\'iscritto, si prega di riprovare.',
|
||||
|
||||
@@ -22,7 +22,7 @@ return [
|
||||
'site_locale' => 'Seleziona la lingua',
|
||||
'enable_google2fa' => 'Abilita la Verifica in Due Passaggi di Google',
|
||||
'cache_driver' => 'Driver per la cache',
|
||||
'queue_driver' => 'Queue Driver',
|
||||
'queue_driver' => 'Coda Driver',
|
||||
'session_driver' => 'Driver per la sessione',
|
||||
'mail_driver' => 'Driver di posta elettronica',
|
||||
'mail_host' => 'Host di posta elettronica',
|
||||
@@ -51,12 +51,12 @@ return [
|
||||
'component' => 'Componente',
|
||||
'message' => 'Messaggio',
|
||||
'message-help' => 'Si può anche utilizzare il linguaggio di Markdown.',
|
||||
'occurred_at' => 'When did this incident occur?',
|
||||
'occurred_at' => 'Quando è accaduto questo incidente?',
|
||||
'notify_subscribers' => 'Notificare gli iscritti?',
|
||||
'visibility' => 'Visibilità segnalazione',
|
||||
'stick_status' => 'Stick Incident',
|
||||
'stickied' => 'Stickied',
|
||||
'not_stickied' => 'Not Stickied',
|
||||
'stick_status' => 'Fissa incidente',
|
||||
'stickied' => 'In rilievo',
|
||||
'not_stickied' => 'Non in rilievo',
|
||||
'public' => 'Visibile al pubblico',
|
||||
'logged_in_only' => 'Visibile solo agli utenti registrati',
|
||||
'templates' => [
|
||||
@@ -72,7 +72,7 @@ return [
|
||||
'message' => 'Messaggio',
|
||||
'message-help' => 'Si può anche utilizzare il linguaggio di Markdown.',
|
||||
'scheduled_at' => 'Quando è prevista la manutenzione?',
|
||||
'completed_at' => 'When did this maintenance complete?',
|
||||
'completed_at' => 'Quando è stata completata la manutenzione?',
|
||||
'templates' => [
|
||||
'name' => 'Nome',
|
||||
'template' => 'Modello',
|
||||
@@ -98,7 +98,7 @@ return [
|
||||
'collapsed' => 'Comprimere il gruppo come impostazione predefinita',
|
||||
'collapsed_incident' => 'Comprimere il gruppo, ma espandere se ci sono problemi',
|
||||
'visibility' => 'Visibilità',
|
||||
'visibility_public' => 'Visibile al Pubblico',
|
||||
'visibility_public' => 'Visibile al pubblico',
|
||||
'visibility_authenticated' => 'Visibile solo agli utenti autenticati',
|
||||
],
|
||||
],
|
||||
@@ -107,10 +107,10 @@ return [
|
||||
'actions' => [
|
||||
'name' => 'Nome',
|
||||
'description' => 'Descrizione',
|
||||
'start_at' => 'Schedule start time',
|
||||
'start_at' => 'Pianifica ora di inizio',
|
||||
'timezone' => 'Fuso orario',
|
||||
'schedule_frequency' => 'Schedule frequency (in seconds)',
|
||||
'completion_latency' => 'Completion latency (in seconds)',
|
||||
'schedule_frequency' => 'Pianificare la frequenza (in secondi)',
|
||||
'completion_latency' => 'Latenza di completamento (in secondi)',
|
||||
'group' => 'Gruppo',
|
||||
'active' => 'Attivo?',
|
||||
'groups' => [
|
||||
@@ -133,7 +133,7 @@ return [
|
||||
'default_view' => 'Vista predefinita',
|
||||
'threshold' => 'Quanti minuti di soglia tra metriche punti?',
|
||||
'visibility' => 'Visibilità',
|
||||
'visibility_authenticated' => 'Visible to authenticated users',
|
||||
'visibility_authenticated' => 'Visibile agli utenti autenticati',
|
||||
'visibility_public' => 'Visibile a tutti',
|
||||
'visibility_hidden' => 'Sempre nascosto',
|
||||
|
||||
@@ -151,6 +151,7 @@ return [
|
||||
'display-graphs' => 'Visualizzare i grafici nella pagina di stato?',
|
||||
'about-this-page' => 'Informazioni sulla pagina',
|
||||
'days-of-incidents' => 'Quanti giorni di segnalazioni mostrare?',
|
||||
'time_before_refresh' => 'Status page refresh rate (in seconds).',
|
||||
'banner' => 'Immagine del banner',
|
||||
'banner-help' => 'È consigliabile caricare file larghi non più di 930px.',
|
||||
'subscribers' => 'Permettere alle persone di iscriversi alle notifiche via email?',
|
||||
@@ -219,21 +220,22 @@ return [
|
||||
],
|
||||
|
||||
'general' => [
|
||||
'timezone' => 'Seleziona Il Fuso Orario',
|
||||
'timezone' => 'Seleziona Fuso orario',
|
||||
],
|
||||
|
||||
// Buttons
|
||||
'add' => 'Aggiungi',
|
||||
'save' => 'Salva',
|
||||
'update' => 'Aggiorna',
|
||||
'create' => 'Crea',
|
||||
'edit' => 'Modifica',
|
||||
'delete' => 'Elimina',
|
||||
'submit' => 'Invia',
|
||||
'cancel' => 'Cancella',
|
||||
'remove' => 'Rimuovi',
|
||||
'invite' => 'Invita',
|
||||
'signup' => 'Registrati',
|
||||
'add' => 'Aggiungi',
|
||||
'save' => 'Salva',
|
||||
'update' => 'Aggiorna',
|
||||
'create' => 'Crea',
|
||||
'edit' => 'Modifica',
|
||||
'delete' => 'Elimina',
|
||||
'submit' => 'Invia',
|
||||
'cancel' => 'Cancella',
|
||||
'remove' => 'Rimuovi',
|
||||
'invite' => 'Invita',
|
||||
'signup' => 'Registrati',
|
||||
'manage_updates' => 'Manage Updates',
|
||||
|
||||
// Other
|
||||
'optional' => '* Opzionale',
|
||||
|
||||
@@ -13,84 +13,84 @@ return [
|
||||
'component' => [
|
||||
'status_update' => [
|
||||
'mail' => [
|
||||
'subject' => 'Component Status Updated',
|
||||
'greeting' => 'A component\'s status was updated!',
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'action' => 'View',
|
||||
'subject' => 'Aggiornato stato del componente',
|
||||
'greeting' => 'Lo stato di un componente è stato aggiornato!',
|
||||
'content' => ':name stato cambiato da :old_status a :new_status.',
|
||||
'action' => 'Visualizza',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'Component Status Updated',
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'title' => 'Aggiornato stato del componente',
|
||||
'content' => ':name stato cambiato da :old_status a :new_status.',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'content' => ':name stato cambiato da :old_status a :new_status.',
|
||||
],
|
||||
],
|
||||
],
|
||||
'incident' => [
|
||||
'new' => [
|
||||
'mail' => [
|
||||
'subject' => 'New Incident Reported',
|
||||
'greeting' => 'A new incident was reported at :app_name.',
|
||||
'content' => 'Incident :name was reported',
|
||||
'action' => 'View',
|
||||
'subject' => 'Nuovo incidente segnalato',
|
||||
'greeting' => 'Un nuovo incidente è stato segnato su :app_name .',
|
||||
'content' => 'L\'incidente :name è stato riportato',
|
||||
'action' => 'Visualizza',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'Incident :name Reported',
|
||||
'content' => 'A new incident was reported at :app_name',
|
||||
'title' => 'Incidente :name riportato',
|
||||
'content' => 'Un nuovo incidente è stato riportato su :app_name',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => 'A new incident was reported at :app_name.',
|
||||
'content' => 'Un nuovo incidente è stato segnato su :app_name .',
|
||||
],
|
||||
],
|
||||
'update' => [
|
||||
'mail' => [
|
||||
'subject' => 'Incident Updated',
|
||||
'content' => ':name was updated',
|
||||
'title' => ':name was updated to :new_status',
|
||||
'action' => 'View',
|
||||
'subject' => 'Incidente aggiornato',
|
||||
'content' => ':name è stato aggiornato',
|
||||
'title' => ':name è stato aggiornato a :new_status',
|
||||
'action' => 'Visualizza',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => ':name Updated',
|
||||
'content' => ':name was updated to :new_status',
|
||||
'title' => ':name Aggiornato',
|
||||
'content' => ':name è stato aggiornato a :new_status',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => 'Incident :name was updated',
|
||||
'content' => 'L\'incidente :name è stato aggiornato',
|
||||
],
|
||||
],
|
||||
],
|
||||
'schedule' => [
|
||||
'new' => [
|
||||
'mail' => [
|
||||
'subject' => 'New Schedule Created',
|
||||
'content' => ':name was scheduled for :date',
|
||||
'title' => 'A new scheduled maintenance was created.',
|
||||
'action' => 'View',
|
||||
'subject' => 'Nuova schedulazione creata',
|
||||
'content' => ':name era schedulata per :date',
|
||||
'title' => 'E\' stata creata una nuova manutenzione programmata.',
|
||||
'action' => 'Visualizza',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'New Schedule Created!',
|
||||
'content' => ':name was scheduled for :date',
|
||||
'title' => 'Nuova schedulazione creata!',
|
||||
'content' => ':name era schedulata per :date',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => ':name was scheduled for :date',
|
||||
'content' => ':name era schedulata per :date',
|
||||
],
|
||||
],
|
||||
],
|
||||
'subscriber' => [
|
||||
'verify' => [
|
||||
'mail' => [
|
||||
'subject' => 'Verify Your Subscription',
|
||||
'content' => 'Click to verify your subscription to :app_name status page.',
|
||||
'title' => 'Verify your subscription to :app_name status page.',
|
||||
'action' => 'Verify',
|
||||
'subject' => 'Verifica la tua sottoscrizione',
|
||||
'content' => 'Fare click per verifica la tua sottoscrizione a :app_name status page.',
|
||||
'title' => 'Verifica la tua sottoscrizione a :app_name status page.',
|
||||
'action' => 'Verifica',
|
||||
],
|
||||
],
|
||||
],
|
||||
'system' => [
|
||||
'test' => [
|
||||
'mail' => [
|
||||
'subject' => 'Ping from Cachet!',
|
||||
'content' => 'This is a test notification from Cachet!',
|
||||
'subject' => 'Ping da Cachet!',
|
||||
'content' => 'Questa è una notifica di prova da Cachet!',
|
||||
'title' => '🔔',
|
||||
],
|
||||
],
|
||||
@@ -98,10 +98,10 @@ return [
|
||||
'user' => [
|
||||
'invite' => [
|
||||
'mail' => [
|
||||
'subject' => 'Your invitation is inside...',
|
||||
'content' => 'You have been invited to join :app_name status page.',
|
||||
'title' => 'You\'re invited to join :app_name status page.',
|
||||
'action' => 'Accept',
|
||||
'subject' => 'Il tuo invito è all\'interno...',
|
||||
'content' => 'Siete stati invitati a partecipare alla pagina :app_name status.',
|
||||
'title' => 'Siete stati invitati a partecipare alla pagina :app_name .',
|
||||
'action' => 'Accetta',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
@@ -22,7 +22,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => 'Previous',
|
||||
'next' => 'Next',
|
||||
'previous' => 'Precedente',
|
||||
'next' => 'Successivo',
|
||||
|
||||
];
|
||||
|
||||
@@ -31,60 +31,60 @@ return [
|
||||
'array' => ':attribute deve essere un array.',
|
||||
'before' => ':attribute deve contenere una data precedente al :date.',
|
||||
'between' => [
|
||||
'numeric' => ':attribute deve essere compreso tra :min e :max.',
|
||||
'numeric' => 'Il campo :attribute deve essere tra :min e :max.',
|
||||
'file' => ':attribute deve essere compreso tra :min e :max kilobyte.',
|
||||
'string' => 'The :attribute must be between :min and :max characters.',
|
||||
'string' => ':attribute deve essere tra :min e :max caratteri.',
|
||||
'array' => ':attributo deve avere tra :min e :max elementi.',
|
||||
],
|
||||
'boolean' => 'The :attribute field must be true or false.',
|
||||
'confirmed' => 'The :attribute confirmation does not match.',
|
||||
'date' => 'Il :attribute non è una data valida.',
|
||||
'date_format' => 'Il :attribute non corrisponde al formato :format.',
|
||||
'different' => 'The :attribute and :other must be different.',
|
||||
'digits' => 'The :attribute must be :digits digits.',
|
||||
'digits_between' => 'The :attribute must be between :min and :max digits.',
|
||||
'email' => 'The :attribute must be a valid email address.',
|
||||
'exists' => 'The selected :attribute is invalid.',
|
||||
'boolean' => 'Il campo :attribute deve essere vero o falso.',
|
||||
'confirmed' => 'Il campo :attribute non combacia.',
|
||||
'date' => 'Il campo :attribute non è una data valida.',
|
||||
'date_format' => 'Il campo :attribute non corrisponde al formato :format.',
|
||||
'different' => 'I campi :attribute e :other devono essere diversi.',
|
||||
'digits' => 'Il campo :attribute deve contenere :digits cifre.',
|
||||
'digits_between' => 'Attributo :attribute deve essere compreso tra :min e :max caratteri.',
|
||||
'email' => 'Il campo :attribute deve essere un indirizzo email valido.',
|
||||
'exists' => 'L\'attributo selezionato :attribute non è valido.',
|
||||
'distinct' => 'Il campo :attribute ha un valore duplicato.',
|
||||
'filled' => 'The :attribute field is required.',
|
||||
'filled' => 'Il campo :attribute è richiesto.',
|
||||
'image' => ':attribute deve contenere un\'immagine.',
|
||||
'in' => 'The selected :attribute is invalid.',
|
||||
'in' => 'L\'attributo selezionato :attribute non è valido.',
|
||||
'in_array' => 'Il campo :attribute non esiste in :other.',
|
||||
'integer' => ':attribute deve essere un numero intero.',
|
||||
'ip' => ':attribute deve essere un indirizzo IP valido.',
|
||||
'json' => ':attribute deve essere una stringa JSON valida.',
|
||||
'max' => [
|
||||
'numeric' => 'The :attribute may not be greater than :max.',
|
||||
'file' => 'The :attribute may not be greater than :max kilobytes.',
|
||||
'string' => 'The :attribute may not be greater than :max characters.',
|
||||
'numeric' => 'Attributo :attribute non può essere superiore a :max.',
|
||||
'file' => 'Il campo :attribute non può essere superiore a :max kilobyte.',
|
||||
'string' => 'Attributo :attribute non può essere più lungo di :max caratteri.',
|
||||
'array' => ':attribute non può avere più di :max elementi.',
|
||||
],
|
||||
'mimes' => 'The :attribute must be a file of type: :values.',
|
||||
'mimes' => 'Il campo :attribute deve contenere un file del tipo: :values.',
|
||||
'min' => [
|
||||
'numeric' => 'The :attribute must be at least :min.',
|
||||
'numeric' => 'Attributo :attribute deve essere almeno :min.',
|
||||
'file' => ':attribute deve essere almeno :min kilobyte.',
|
||||
'string' => 'The :attribute must be at least :min characters.',
|
||||
'array' => 'The :attribute must have at least :min items.',
|
||||
'string' => 'Attributo :attribute deve essere almeno :min caratteri.',
|
||||
'array' => 'Attributo :attribute deve avere almeno :min elementi.',
|
||||
],
|
||||
'not_in' => 'The selected :attribute is invalid.',
|
||||
'numeric' => 'The :attribute must be a number.',
|
||||
'not_in' => 'L\'attributo selezionato :attribute non è valido.',
|
||||
'numeric' => 'Il campo :attribute deve essere un numero.',
|
||||
'present' => 'Il campo :attribute deve essere presente.',
|
||||
'regex' => 'Il formato di :attribute non è valido.',
|
||||
'required' => 'The :attribute field is required.',
|
||||
'required_if' => 'The :attribute field is required when :other is :value.',
|
||||
'required' => 'Il campo :attribute è richiesto.',
|
||||
'required_if' => 'Campo di :attribute è richiesto quando :other è :value.',
|
||||
'required_unless' => 'Il campo :attribute è obbligatorio a meno che :other è presente in :values.',
|
||||
'required_with' => 'Il campo :attribute è obbligatorio quando :values è presente.',
|
||||
'required_with_all' => 'Il campo :attribute è obbligatorio quando :values è presente.',
|
||||
'required_without' => 'The :attribute field is required when :values is not present.',
|
||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
||||
'same' => 'The :attribute and :other must match.',
|
||||
'required_without' => 'Il campo :attribute è richiesto quando :values non è presente.',
|
||||
'required_without_all' => 'Campo di :attribute è richiesto quando sono presenti :values.',
|
||||
'same' => 'I campi :attribute e :other devono corrispondere.',
|
||||
'size' => [
|
||||
'numeric' => 'The :attribute must be :size.',
|
||||
'numeric' => 'Attributo :attribute deve essere :size.',
|
||||
'file' => ':attribute deve essere di :size kilobytes.',
|
||||
'string' => ':attribute deve essere di :size caratteri.',
|
||||
'array' => 'The :attribute must contain :size items.',
|
||||
'array' => 'Il campo :attribute deve contenere :size elementi.',
|
||||
],
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'string' => 'Il campo :attribute deve essere una stringa.',
|
||||
'timezone' => ':attribute deve essere una zona valida.',
|
||||
'unique' => 'Il valore del campo :attribute è già stato preso.',
|
||||
'url' => 'Il formato di :attribute non è valido.',
|
||||
|
||||
@@ -14,7 +14,7 @@ return [
|
||||
'components' => [
|
||||
'last_updated' => '最終更新 :timestamp',
|
||||
'status' => [
|
||||
0 => 'Unknown',
|
||||
0 => '不明',
|
||||
1 => '稼働中',
|
||||
2 => 'パフォーマンスに関する問題あり',
|
||||
3 => '一部停止中',
|
||||
@@ -33,6 +33,7 @@ return [
|
||||
'scheduled' => '計画メンテナンス',
|
||||
'scheduled_at' => ', 予定日時 :timestamp',
|
||||
'posted' => '投稿日時 :timestamp',
|
||||
'posted_at' => 'Posted at :timestamp',
|
||||
'status' => [
|
||||
1 => '調査中',
|
||||
2 => '特定済み',
|
||||
@@ -46,7 +47,7 @@ return [
|
||||
'status' => [
|
||||
0 => 'Upcoming',
|
||||
1 => 'In Progress',
|
||||
2 => 'Complete',
|
||||
2 => '完了',
|
||||
],
|
||||
],
|
||||
|
||||
@@ -75,7 +76,7 @@ return [
|
||||
// Subscriber
|
||||
'subscriber' => [
|
||||
'subscribe' => '最新のアップデート情報を購読する',
|
||||
'unsubscribe' => 'Unsubscribe at :link',
|
||||
'unsubscribe' => '登録解除はこちら :link',
|
||||
'button' => '購読',
|
||||
'manage' => [
|
||||
'no_subscriptions' => 'You\'re currently subscribed to all updates.',
|
||||
|
||||
@@ -21,7 +21,20 @@ return [
|
||||
'logged' => '{0} 良いですね。インシデントはありません。|インシデントを1件登録しました。|あなたはインシデントを <strong>:count 件</strong> 報告しています。',
|
||||
'incident-create-template' => 'テンプレートの作成',
|
||||
'incident-templates' => 'インシデント・テンプレート',
|
||||
'updates' => '{0} Zero Updates|One Update|:count Updates',
|
||||
'updates' => [
|
||||
'title' => 'Incident updates for :incident',
|
||||
'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,*] Several Updates',
|
||||
'add' => [
|
||||
'title' => 'Create new incident update',
|
||||
'success' => 'Your new incident update has been created.',
|
||||
'failure' => 'Something went wrong with the incident update.',
|
||||
],
|
||||
'edit' => [
|
||||
'title' => 'Edit incident update',
|
||||
'success' => 'The incident update has been updated.',
|
||||
'failure' => 'Something went wrong updating the incident update',
|
||||
],
|
||||
],
|
||||
'add' => [
|
||||
'title' => 'インシデントの報告',
|
||||
'success' => 'インシデントが追加されました。',
|
||||
@@ -36,11 +49,6 @@ return [
|
||||
'success' => 'The incident has been deleted and will not show on your status page.',
|
||||
'failure' => 'The incident could not be deleted, please try again.',
|
||||
],
|
||||
'update' => [
|
||||
'title' => 'Create new incident update',
|
||||
'subtitle' => 'Add an update to <strong>:incident</strong>',
|
||||
'success' => 'Update added.',
|
||||
],
|
||||
|
||||
// Incident templates
|
||||
'templates' => [
|
||||
@@ -147,13 +155,15 @@ return [
|
||||
],
|
||||
// Subscribers
|
||||
'subscribers' => [
|
||||
'subscribers' => '購読者',
|
||||
'description' => 'Subscribers will receive email updates when incidents are created or components are updated.',
|
||||
'verified' => '認証済',
|
||||
'not_verified' => '未確認',
|
||||
'subscriber' => ':email, subscribed :date',
|
||||
'no_subscriptions' => 'Subscribed to all updates',
|
||||
'add' => [
|
||||
'subscribers' => '購読者',
|
||||
'description' => 'Subscribers will receive email updates when incidents are created or components are updated.',
|
||||
'description_disabled' => 'To use this feature, you need allow people to signup for notifications.',
|
||||
'verified' => '認証済',
|
||||
'not_verified' => '未確認',
|
||||
'subscriber' => ':email, subscribed :date',
|
||||
'no_subscriptions' => 'Subscribed to all updates',
|
||||
'global' => 'Globally subscribed',
|
||||
'add' => [
|
||||
'title' => '購読者の追加',
|
||||
'success' => 'Subscriber has been added!',
|
||||
'failure' => 'Something went wrong adding the subscriber, please try again.',
|
||||
|
||||
@@ -151,6 +151,7 @@ return [
|
||||
'display-graphs' => 'Display graphs on status page?',
|
||||
'about-this-page' => 'このページについて',
|
||||
'days-of-incidents' => '何日間のインシデントを表示しますか?',
|
||||
'time_before_refresh' => 'Status page refresh rate (in seconds).',
|
||||
'banner' => 'バナー画像',
|
||||
'banner-help' => '横幅が930px以内の画像をアップロードしてください。',
|
||||
'subscribers' => 'Allow people to signup to email notifications?',
|
||||
@@ -223,17 +224,18 @@ return [
|
||||
],
|
||||
|
||||
// Buttons
|
||||
'add' => '追加',
|
||||
'save' => '保存',
|
||||
'update' => '更新',
|
||||
'create' => '作成',
|
||||
'edit' => '編集',
|
||||
'delete' => '削除',
|
||||
'submit' => '送信',
|
||||
'cancel' => 'キャンセル',
|
||||
'remove' => '削除',
|
||||
'invite' => '招待',
|
||||
'signup' => '新規登録',
|
||||
'add' => '追加',
|
||||
'save' => '保存',
|
||||
'update' => '更新',
|
||||
'create' => '作成',
|
||||
'edit' => '編集',
|
||||
'delete' => '削除',
|
||||
'submit' => '送信',
|
||||
'cancel' => 'キャンセル',
|
||||
'remove' => '削除',
|
||||
'invite' => '招待',
|
||||
'signup' => '新規登録',
|
||||
'manage_updates' => 'Manage Updates',
|
||||
|
||||
// Other
|
||||
'optional' => '※ 任意',
|
||||
|
||||
@@ -13,84 +13,84 @@ return [
|
||||
'component' => [
|
||||
'status_update' => [
|
||||
'mail' => [
|
||||
'subject' => 'Component Status Updated',
|
||||
'greeting' => 'A component\'s status was updated!',
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'action' => 'View',
|
||||
'subject' => 'コンポーネント状況を更新しました',
|
||||
'greeting' => 'コンポーネント状況を更新しました!',
|
||||
'content' => ':nameの状況が:old_statusから:new_statusに変更しました。',
|
||||
'action' => '見て',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'Component Status Updated',
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'title' => 'コンポーネント状況を更新しました',
|
||||
'content' => ':nameの状況が:old_statusから:new_statusに変更しました。',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'content' => ':nameの状況が:old_statusから:new_statusに変更しました。',
|
||||
],
|
||||
],
|
||||
],
|
||||
'incident' => [
|
||||
'new' => [
|
||||
'mail' => [
|
||||
'subject' => 'New Incident Reported',
|
||||
'greeting' => 'A new incident was reported at :app_name.',
|
||||
'content' => 'Incident :name was reported',
|
||||
'action' => 'View',
|
||||
'subject' => '新しいインシデントが報告されました',
|
||||
'greeting' => '新しいインシデントが:app_nameで報告されました。',
|
||||
'content' => 'インシデント :name が報告されました',
|
||||
'action' => '見て',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'Incident :name Reported',
|
||||
'content' => 'A new incident was reported at :app_name',
|
||||
'title' => 'インシデント :name が報告されました',
|
||||
'content' => '新しいインシデントが:app_nameで報告されました',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => 'A new incident was reported at :app_name.',
|
||||
'content' => '新しいインシデントが:app_nameで報告されました。',
|
||||
],
|
||||
],
|
||||
'update' => [
|
||||
'mail' => [
|
||||
'subject' => 'Incident Updated',
|
||||
'content' => ':name was updated',
|
||||
'title' => ':name was updated to :new_status',
|
||||
'action' => 'View',
|
||||
'subject' => 'インシデントを更新しました',
|
||||
'content' => ':name は更新されました',
|
||||
'title' => ':name は :new_status へ更新されました',
|
||||
'action' => '見て',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => ':name Updated',
|
||||
'content' => ':name was updated to :new_status',
|
||||
'title' => ':name を更新しました',
|
||||
'content' => ':name は :new_status へ更新されました',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => 'Incident :name was updated',
|
||||
'content' => 'インシデント :name は更新されました',
|
||||
],
|
||||
],
|
||||
],
|
||||
'schedule' => [
|
||||
'new' => [
|
||||
'mail' => [
|
||||
'subject' => 'New Schedule Created',
|
||||
'content' => ':name was scheduled for :date',
|
||||
'title' => 'A new scheduled maintenance was created.',
|
||||
'action' => 'View',
|
||||
'subject' => '新しいスケジュールが作成されました',
|
||||
'content' => ':name は :date へスケジュールされました',
|
||||
'title' => '新しい計画メンテナンスを作成しました',
|
||||
'action' => '見て',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'New Schedule Created!',
|
||||
'content' => ':name was scheduled for :date',
|
||||
'title' => '新しいスケジュールが作成されました!',
|
||||
'content' => ':name は :date へスケジュールされました',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => ':name was scheduled for :date',
|
||||
'content' => ':name は :date へスケジュールされました',
|
||||
],
|
||||
],
|
||||
],
|
||||
'subscriber' => [
|
||||
'verify' => [
|
||||
'mail' => [
|
||||
'subject' => 'Verify Your Subscription',
|
||||
'content' => 'Click to verify your subscription to :app_name status page.',
|
||||
'title' => 'Verify your subscription to :app_name status page.',
|
||||
'action' => 'Verify',
|
||||
'subject' => 'サブスクリプションを確認してください',
|
||||
'content' => ':app_nameの状況ページのサブスクリプションの確認の為にクリックしてください。',
|
||||
'title' => ':app_nameの状況ページのサブスクリプションを確認してください。',
|
||||
'action' => '確認',
|
||||
],
|
||||
],
|
||||
],
|
||||
'system' => [
|
||||
'test' => [
|
||||
'mail' => [
|
||||
'subject' => 'Ping from Cachet!',
|
||||
'content' => 'This is a test notification from Cachet!',
|
||||
'subject' => 'Cachetからピング!',
|
||||
'content' => 'これはCachetから試しにお知らせです!',
|
||||
'title' => '🔔',
|
||||
],
|
||||
],
|
||||
@@ -98,10 +98,10 @@ return [
|
||||
'user' => [
|
||||
'invite' => [
|
||||
'mail' => [
|
||||
'subject' => 'Your invitation is inside...',
|
||||
'content' => 'You have been invited to join :app_name status page.',
|
||||
'title' => 'You\'re invited to join :app_name status page.',
|
||||
'action' => 'Accept',
|
||||
'subject' => 'あなたの招待は中に。。。',
|
||||
'content' => ':app_nameの状況ページに招待されました。',
|
||||
'title' => ':app_nameの状況ページに招待されています。',
|
||||
'action' => '同意',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
@@ -22,7 +22,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => 'Previous',
|
||||
'next' => 'Next',
|
||||
'previous' => '前へ',
|
||||
'next' => '次へ',
|
||||
|
||||
];
|
||||
|
||||
@@ -11,13 +11,13 @@
|
||||
|
||||
return [
|
||||
'setup' => 'セットアップ',
|
||||
'title' => 'Cachetのセットアップ',
|
||||
'title' => 'Cachetのインストール',
|
||||
'service_details' => 'サービスの詳細情報',
|
||||
'env_setup' => '環境設定',
|
||||
'status_page_setup' => 'ステータスページのセットアップ',
|
||||
'show_support' => 'Show support for Cachet?',
|
||||
'show_support' => 'Cachetのサポートを表示しますか?',
|
||||
'admin_account' => '管理者アカウント',
|
||||
'complete_setup' => 'セットアップの完了',
|
||||
'completed' => 'Cachetの設定が正常に終わりました!',
|
||||
'completed' => 'Cachetの設定が完了しました。',
|
||||
'finish_setup' => 'ダッシュボード画面に移動',
|
||||
];
|
||||
|
||||
@@ -33,6 +33,7 @@ return [
|
||||
'scheduled' => '예정된 유지 보수',
|
||||
'scheduled_at' => ', :timestamp 에 예정됨',
|
||||
'posted' => '게시 됨 :timestamp',
|
||||
'posted_at' => 'Posted at :timestamp',
|
||||
'status' => [
|
||||
1 => '파악 중',
|
||||
2 => '확인됨',
|
||||
@@ -75,11 +76,11 @@ return [
|
||||
// Subscriber
|
||||
'subscriber' => [
|
||||
'subscribe' => '최신 업데이트를 받아 보기 위한 구독신청.',
|
||||
'unsubscribe' => 'Unsubscribe at :link',
|
||||
'unsubscribe' => '탈퇴하기 :링크',
|
||||
'button' => '구독',
|
||||
'manage' => [
|
||||
'no_subscriptions' => 'You\'re currently subscribed to all updates.',
|
||||
'my_subscriptions' => 'You\'re currently subscribed to the following updates.',
|
||||
'no_subscriptions' => '당신은 모든 업데이트를 구독하고 있습니다',
|
||||
'my_subscriptions' => '당신은 다음 업데이트를 구독하고 있습니다',
|
||||
],
|
||||
'email' => [
|
||||
'subscribe' => '이메일 구독 신청.',
|
||||
@@ -103,7 +104,7 @@ return [
|
||||
],
|
||||
|
||||
'system' => [
|
||||
'update' => 'There is a newer version of Cachet available. You can learn how to update <a href="https://docs.cachethq.io/docs/updating-cachet">here</a>!',
|
||||
'update' => 'Cachet 새 버전이 나왔습니다. 업데이트 방법은 <a href="https://docs.cachethq.io/docs/updating-cachet"> 여기서 </a>확인할 수 있습니다!',
|
||||
],
|
||||
|
||||
// Modal
|
||||
|
||||
@@ -21,7 +21,20 @@ return [
|
||||
'logged' => '{0} 아무 문제가 없습니다, 잘하고 있어요.|하나의 문제에 대한 로깅이 있습니다.|<strong>:count</strong> 개의 문제가 리포트 되었습니다.',
|
||||
'incident-create-template' => '템플릿 생성',
|
||||
'incident-templates' => '문제 템플릿',
|
||||
'updates' => '{0} 0 업데이트 | 1 업데이트 |: count 업데이트',
|
||||
'updates' => [
|
||||
'title' => 'Incident updates for :incident',
|
||||
'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,*] Several Updates',
|
||||
'add' => [
|
||||
'title' => 'Create new incident update',
|
||||
'success' => 'Your new incident update has been created.',
|
||||
'failure' => 'Something went wrong with the incident update.',
|
||||
],
|
||||
'edit' => [
|
||||
'title' => 'Edit incident update',
|
||||
'success' => 'The incident update has been updated.',
|
||||
'failure' => 'Something went wrong updating the incident update',
|
||||
],
|
||||
],
|
||||
'add' => [
|
||||
'title' => '문제 추가',
|
||||
'success' => 'Incident added.',
|
||||
@@ -36,11 +49,6 @@ return [
|
||||
'success' => '문제가 삭제되었습니다. 그리고 상태 페이지에 표시되지 않습니다.',
|
||||
'failure' => 'The incident could not be deleted, please try again.',
|
||||
],
|
||||
'update' => [
|
||||
'title' => 'Create new incident update',
|
||||
'subtitle' => 'Add an update to <strong>:incident</strong>',
|
||||
'success' => 'Update added.',
|
||||
],
|
||||
|
||||
// Incident templates
|
||||
'templates' => [
|
||||
@@ -147,13 +155,15 @@ return [
|
||||
],
|
||||
// Subscribers
|
||||
'subscribers' => [
|
||||
'subscribers' => '구독자',
|
||||
'description' => 'Subscribers will receive email updates when incidents are created or components are updated.',
|
||||
'verified' => '인증됨',
|
||||
'not_verified' => '인증되지 않음',
|
||||
'subscriber' => ':email, subscribed :date',
|
||||
'no_subscriptions' => 'Subscribed to all updates',
|
||||
'add' => [
|
||||
'subscribers' => '구독자',
|
||||
'description' => 'Subscribers will receive email updates when incidents are created or components are updated.',
|
||||
'description_disabled' => 'To use this feature, you need allow people to signup for notifications.',
|
||||
'verified' => '인증됨',
|
||||
'not_verified' => '인증되지 않음',
|
||||
'subscriber' => ':email, subscribed :date',
|
||||
'no_subscriptions' => 'Subscribed to all updates',
|
||||
'global' => 'Globally subscribed',
|
||||
'add' => [
|
||||
'title' => '구독자 추가',
|
||||
'success' => '구독자가 추가됨.',
|
||||
'failure' => 'Something went wrong adding the subscriber, please try again.',
|
||||
@@ -205,7 +215,7 @@ return [
|
||||
'analytics' => 'Analytics',
|
||||
],
|
||||
'log' => [
|
||||
'log' => 'Log',
|
||||
'log' => '로그',
|
||||
],
|
||||
'localization' => [
|
||||
'localization' => 'Localization',
|
||||
@@ -216,8 +226,8 @@ return [
|
||||
'footer' => '사용자 지정 바닥글 HTML',
|
||||
],
|
||||
'mail' => [
|
||||
'mail' => 'Mail',
|
||||
'test' => 'Test',
|
||||
'mail' => '이메일',
|
||||
'test' => '테스트',
|
||||
'email' => [
|
||||
'subject' => 'Test notification from Cachet',
|
||||
'body' => 'This is a test notification from Cachet.',
|
||||
@@ -269,9 +279,9 @@ return [
|
||||
|
||||
// Widgets
|
||||
'widgets' => [
|
||||
'support' => 'Support Cachet',
|
||||
'support' => 'Cachet 지원하기',
|
||||
'support_subtitle' => 'Check out our <strong><a href="https://patreon.com/jbrooksuk" target="_blank">Patreon</a></strong> page!',
|
||||
'news' => 'Latest News',
|
||||
'news' => '최신 뉴스',
|
||||
'news_subtitle' => 'Get the latest update',
|
||||
],
|
||||
|
||||
@@ -279,7 +289,7 @@ return [
|
||||
'welcome' => [
|
||||
'welcome' => 'Welcome to your new status page, :username!',
|
||||
'message' => '상태 페이지는 거의 다 준비 되었습니다! 추가 설정을 해보세요',
|
||||
'close' => 'I\'m good thanks!',
|
||||
'close' => '괜찮습니다.',
|
||||
'steps' => [
|
||||
'component' => '구성요소 만들기',
|
||||
'incident' => '문제 만들기',
|
||||
|
||||
@@ -16,13 +16,13 @@ return [
|
||||
'email' => '이메일',
|
||||
'username' => '사용자이름',
|
||||
'password' => '비밀번호',
|
||||
'site_name' => '사이트 이름',
|
||||
'site_name' => '사이트명',
|
||||
'site_domain' => '사이트 도메인',
|
||||
'site_timezone' => '시간대 선택',
|
||||
'site_locale' => '언어 선택',
|
||||
'enable_google2fa' => '구글 2단계 인증 활성화',
|
||||
'cache_driver' => '캐시 드라이버',
|
||||
'queue_driver' => 'Queue Driver',
|
||||
'queue_driver' => '대기 드라이버',
|
||||
'session_driver' => '세션 드라이버',
|
||||
'mail_driver' => 'Mail Driver',
|
||||
'mail_host' => '메일 서버',
|
||||
@@ -37,11 +37,11 @@ return [
|
||||
'email' => '이메일',
|
||||
'password' => '비밀번호',
|
||||
'2fauth' => '인증 코드',
|
||||
'invalid' => 'Invalid username or password',
|
||||
'invalid' => '사용자 이름 또는 비밀번호가 잘못되었습니다.',
|
||||
'invalid-token' => '잘못된 토큰n',
|
||||
'cookies' => '로그인 하려면 쿠키를 활성화 해야 합니다.',
|
||||
'rate-limit' => 'Rate limit exceeded.',
|
||||
'remember_me' => 'Remember me',
|
||||
'rate-limit' => '제한 초과됨.',
|
||||
'remember_me' => '기억하기',
|
||||
],
|
||||
|
||||
// Incidents form fields
|
||||
@@ -51,12 +51,12 @@ return [
|
||||
'component' => '구성요소',
|
||||
'message' => '메시지',
|
||||
'message-help' => 'Markdown을 사용할 수 있습니다.',
|
||||
'occurred_at' => 'When did this incident occur?',
|
||||
'occurred_at' => '문제가 언제 발생 했나요?',
|
||||
'notify_subscribers' => '구독자에게 알림',
|
||||
'visibility' => 'Incident Visibility',
|
||||
'stick_status' => 'Stick Incident',
|
||||
'stickied' => 'Stickied',
|
||||
'not_stickied' => 'Not Stickied',
|
||||
'visibility' => '공개설정',
|
||||
'stick_status' => '문제 고정하기',
|
||||
'stickied' => '고정됨',
|
||||
'not_stickied' => '고정안됨.',
|
||||
'public' => '전체 공개',
|
||||
'logged_in_only' => '로그인한 사용자만 볼 수 있음',
|
||||
'templates' => [
|
||||
@@ -71,8 +71,8 @@ return [
|
||||
'status' => '상태',
|
||||
'message' => '메시지',
|
||||
'message-help' => 'Markdown을 사용할 수 있습니다.',
|
||||
'scheduled_at' => 'When is this maintenance scheduled for?',
|
||||
'completed_at' => 'When did this maintenance complete?',
|
||||
'scheduled_at' => '유지보수 예정일',
|
||||
'completed_at' => '유지보수 완료일',
|
||||
'templates' => [
|
||||
'name' => '이름',
|
||||
'template' => '템플릿',
|
||||
@@ -93,13 +93,13 @@ return [
|
||||
|
||||
'groups' => [
|
||||
'name' => '이름',
|
||||
'collapsing' => 'Expand/Collapse options',
|
||||
'visible' => 'Always expanded',
|
||||
'collapsed' => 'Collapse the group by default',
|
||||
'collapsed_incident' => 'Collapse the group, but expand if there are issues',
|
||||
'visibility' => 'Visibility',
|
||||
'visibility_public' => 'Visible to public',
|
||||
'visibility_authenticated' => 'Visible only to logged in users',
|
||||
'collapsing' => '확장/축소 옵션',
|
||||
'visible' => '항상 확장',
|
||||
'collapsed' => '기본으로 그룹 축소',
|
||||
'collapsed_incident' => '그룹 축소 그러나 이슈가 존재할때 확장',
|
||||
'visibility' => '가시성',
|
||||
'visibility_public' => '전체 공개',
|
||||
'visibility_authenticated' => '로그인 사용자에게만 표시',
|
||||
],
|
||||
],
|
||||
|
||||
@@ -107,14 +107,14 @@ return [
|
||||
'actions' => [
|
||||
'name' => '이름',
|
||||
'description' => '설명',
|
||||
'start_at' => 'Schedule start time',
|
||||
'timezone' => 'Timezone',
|
||||
'start_at' => '일정 시작 시간',
|
||||
'timezone' => '시간대',
|
||||
'schedule_frequency' => 'Schedule frequency (in seconds)',
|
||||
'completion_latency' => 'Completion latency (in seconds)',
|
||||
'group' => '그룹',
|
||||
'active' => 'Active?',
|
||||
'groups' => [
|
||||
'name' => 'Group Name',
|
||||
'name' => '그룹명',
|
||||
],
|
||||
],
|
||||
|
||||
@@ -129,13 +129,13 @@ return [
|
||||
'calc_type' => '통계 계산',
|
||||
'type_sum' => '합계',
|
||||
'type_avg' => '평균',
|
||||
'places' => 'Decimal places',
|
||||
'places' => '소수자리',
|
||||
'default_view' => '기본 보기',
|
||||
'threshold' => 'How many minutes of threshold between metric points?',
|
||||
'visibility' => 'Visibility',
|
||||
'visibility_authenticated' => 'Visible to authenticated users',
|
||||
'visibility_public' => 'Visible to everybody',
|
||||
'visibility_hidden' => 'Always hidden',
|
||||
'visibility' => '가시성',
|
||||
'visibility_authenticated' => '인증된 사용자에게만 표시',
|
||||
'visibility_public' => '전체공개',
|
||||
'visibility_hidden' => '항상 숨기기',
|
||||
|
||||
'points' => [
|
||||
'value' => '값',
|
||||
@@ -146,11 +146,12 @@ return [
|
||||
'settings' => [
|
||||
// Application setup
|
||||
'app-setup' => [
|
||||
'site-name' => '사이트 이름',
|
||||
'site-name' => '사이트명',
|
||||
'site-url' => '사이트 URL',
|
||||
'display-graphs' => '상태 페이지에 그래프 보이기',
|
||||
'about-this-page' => '이 페이지에 대하여',
|
||||
'days-of-incidents' => '몇 일 동안 사건을 표시하시겠습니까?',
|
||||
'time_before_refresh' => 'Status page refresh rate (in seconds).',
|
||||
'banner' => '배너 이미지',
|
||||
'banner-help' => '가로가 930 픽셀보다 작은 이미지를 업로드 하는 것을 권장합니다.',
|
||||
'subscribers' => '이메일 알림을 받기 위한 회원가입 허용',
|
||||
@@ -177,7 +178,7 @@ return [
|
||||
'allowed-domains-help' => '쉼표로 구분. 위에 설정된 도메인은 기본적으로 자동 허용 됩니다.',
|
||||
],
|
||||
'stylesheet' => [
|
||||
'custom-css' => 'Custom Stylesheet',
|
||||
'custom-css' => '커스텀 스타일시트',
|
||||
],
|
||||
'theme' => [
|
||||
'background-color' => '배경 색:',
|
||||
@@ -219,21 +220,22 @@ return [
|
||||
],
|
||||
|
||||
'general' => [
|
||||
'timezone' => 'Select Timezone',
|
||||
'timezone' => '시간대 선택',
|
||||
],
|
||||
|
||||
// Buttons
|
||||
'add' => '추가',
|
||||
'save' => '저장',
|
||||
'update' => '수정',
|
||||
'create' => '생성',
|
||||
'edit' => '수정',
|
||||
'delete' => '삭제',
|
||||
'submit' => '전송',
|
||||
'cancel' => '취소',
|
||||
'remove' => '삭제',
|
||||
'invite' => '초대',
|
||||
'signup' => '가입',
|
||||
'add' => '추가',
|
||||
'save' => '저장',
|
||||
'update' => '수정',
|
||||
'create' => '생성',
|
||||
'edit' => '수정',
|
||||
'delete' => '삭제',
|
||||
'submit' => '전송',
|
||||
'cancel' => '취소',
|
||||
'remove' => '삭제',
|
||||
'invite' => '초대',
|
||||
'signup' => '가입',
|
||||
'manage_updates' => 'Manage Updates',
|
||||
|
||||
// Other
|
||||
'optional' => '* 선택사항',
|
||||
|
||||
@@ -13,13 +13,13 @@ return [
|
||||
'component' => [
|
||||
'status_update' => [
|
||||
'mail' => [
|
||||
'subject' => 'Component Status Updated',
|
||||
'greeting' => 'A component\'s status was updated!',
|
||||
'subject' => '구성요소 상태 업데이트됨',
|
||||
'greeting' => '구성요소의 상태가 업데이트 됐습니다!',
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'action' => 'View',
|
||||
'action' => '보기',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'Component Status Updated',
|
||||
'title' => '구성요소 상태 업데이트됨',
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
],
|
||||
'sms' => [
|
||||
@@ -30,10 +30,10 @@ return [
|
||||
'incident' => [
|
||||
'new' => [
|
||||
'mail' => [
|
||||
'subject' => 'New Incident Reported',
|
||||
'subject' => '신규 문제가 보고 됐습니다.',
|
||||
'greeting' => 'A new incident was reported at :app_name.',
|
||||
'content' => 'Incident :name was reported',
|
||||
'action' => 'View',
|
||||
'action' => '보기',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'Incident :name Reported',
|
||||
@@ -45,10 +45,10 @@ return [
|
||||
],
|
||||
'update' => [
|
||||
'mail' => [
|
||||
'subject' => 'Incident Updated',
|
||||
'subject' => '문제 보고',
|
||||
'content' => ':name was updated',
|
||||
'title' => ':name was updated to :new_status',
|
||||
'action' => 'View',
|
||||
'action' => '보기',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => ':name Updated',
|
||||
@@ -62,13 +62,13 @@ return [
|
||||
'schedule' => [
|
||||
'new' => [
|
||||
'mail' => [
|
||||
'subject' => 'New Schedule Created',
|
||||
'subject' => '신규 일정이 생성됨',
|
||||
'content' => ':name was scheduled for :date',
|
||||
'title' => 'A new scheduled maintenance was created.',
|
||||
'action' => 'View',
|
||||
'action' => '보기',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'New Schedule Created!',
|
||||
'title' => '신규 일정이 생성됨!',
|
||||
'content' => ':name was scheduled for :date',
|
||||
],
|
||||
'sms' => [
|
||||
@@ -79,18 +79,18 @@ return [
|
||||
'subscriber' => [
|
||||
'verify' => [
|
||||
'mail' => [
|
||||
'subject' => 'Verify Your Subscription',
|
||||
'subject' => '구독 인증을 해주세요.',
|
||||
'content' => 'Click to verify your subscription to :app_name status page.',
|
||||
'title' => 'Verify your subscription to :app_name status page.',
|
||||
'action' => 'Verify',
|
||||
'action' => '인증',
|
||||
],
|
||||
],
|
||||
],
|
||||
'system' => [
|
||||
'test' => [
|
||||
'mail' => [
|
||||
'subject' => 'Ping from Cachet!',
|
||||
'content' => 'This is a test notification from Cachet!',
|
||||
'subject' => 'Cachet에서 온 핑!',
|
||||
'content' => 'Cachet에서 보내는 테스트 알림 입니다!',
|
||||
'title' => '🔔',
|
||||
],
|
||||
],
|
||||
@@ -98,10 +98,10 @@ return [
|
||||
'user' => [
|
||||
'invite' => [
|
||||
'mail' => [
|
||||
'subject' => 'Your invitation is inside...',
|
||||
'content' => 'You have been invited to join :app_name status page.',
|
||||
'subject' => '초대장이 안에 있습니다...',
|
||||
'content' => '초대 받았습니다 : app_name 상태 페이지.',
|
||||
'title' => 'You\'re invited to join :app_name status page.',
|
||||
'action' => 'Accept',
|
||||
'action' => '수락하기',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
@@ -22,7 +22,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => 'Previous',
|
||||
'next' => 'Next',
|
||||
'previous' => '이전',
|
||||
'next' => '다음',
|
||||
|
||||
];
|
||||
|
||||
@@ -33,6 +33,7 @@ return [
|
||||
'scheduled' => 'Gepland onderhoud',
|
||||
'scheduled_at' => ', gepland :timestamp',
|
||||
'posted' => 'Geplaatst op :timestamp',
|
||||
'posted_at' => 'Posted at :timestamp',
|
||||
'status' => [
|
||||
1 => 'In onderzoek',
|
||||
2 => 'Geïdentificeerd',
|
||||
@@ -75,7 +76,7 @@ return [
|
||||
// Subscriber
|
||||
'subscriber' => [
|
||||
'subscribe' => 'Abonneer voor de meest recente updates',
|
||||
'unsubscribe' => 'Meld je af op :link',
|
||||
'unsubscribe' => 'Meld je af via :link',
|
||||
'button' => 'Abonneren',
|
||||
'manage' => [
|
||||
'no_subscriptions' => 'Je bent momenteel geabonneerd op alle updates.',
|
||||
|
||||
@@ -21,7 +21,20 @@ return [
|
||||
'logged' => '{0} Proficiat, er zijn geen incidenten.|Er heeft zich één incident voorgedaan.|Er zijn <strong>:count</strong> incidenten gerapporteerd.',
|
||||
'incident-create-template' => 'Maak template',
|
||||
'incident-templates' => 'Incident Sjablonen',
|
||||
'updates' => '{0} Geen updates|Één update|:count updates',
|
||||
'updates' => [
|
||||
'title' => 'Incident updates for :incident',
|
||||
'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,*] Several Updates',
|
||||
'add' => [
|
||||
'title' => 'Maak een nieuwe incident update',
|
||||
'success' => 'Your new incident update has been created.',
|
||||
'failure' => 'Something went wrong with the incident update.',
|
||||
],
|
||||
'edit' => [
|
||||
'title' => 'Edit incident update',
|
||||
'success' => 'The incident update has been updated.',
|
||||
'failure' => 'Something went wrong updating the incident update',
|
||||
],
|
||||
],
|
||||
'add' => [
|
||||
'title' => 'Meld een incident',
|
||||
'success' => 'Incident toegevoegd.',
|
||||
@@ -36,11 +49,6 @@ return [
|
||||
'success' => 'Het incident is verwijderd en zal niet meer worden weergegeven op de statuspagina.',
|
||||
'failure' => 'Het incident kon niet worden verwijderd, probeer het opnieuw.',
|
||||
],
|
||||
'update' => [
|
||||
'title' => 'Maak een nieuwe incident update',
|
||||
'subtitle' => 'Voeg een update toe aan <strong>:incident</strong>',
|
||||
'success' => 'Update added.',
|
||||
],
|
||||
|
||||
// Incident templates
|
||||
'templates' => [
|
||||
@@ -147,13 +155,15 @@ return [
|
||||
],
|
||||
// Subscribers
|
||||
'subscribers' => [
|
||||
'subscribers' => 'Abonnees',
|
||||
'description' => 'Abonnees ontvangen een email update wanneer er incidenten zijn gemaakt of componenten worden bijgewerkt.',
|
||||
'verified' => 'Geverifiëerd',
|
||||
'not_verified' => 'Niet geverifiëerd',
|
||||
'subscriber' => ':email, geabonneerd op :date',
|
||||
'no_subscriptions' => 'Geabonneerd op alle updates',
|
||||
'add' => [
|
||||
'subscribers' => 'Abonnees',
|
||||
'description' => 'Abonnees ontvangen een email update wanneer er incidenten zijn gemaakt of componenten worden bijgewerkt.',
|
||||
'description_disabled' => 'To use this feature, you need allow people to signup for notifications.',
|
||||
'verified' => 'Geverifiëerd',
|
||||
'not_verified' => 'Niet geverifiëerd',
|
||||
'subscriber' => ':email, geabonneerd op :date',
|
||||
'no_subscriptions' => 'Geabonneerd op alle updates',
|
||||
'global' => 'Globally subscribed',
|
||||
'add' => [
|
||||
'title' => 'Voeg een nieuwe abonnee toe',
|
||||
'success' => 'Abonnee is toegevoegd!',
|
||||
'failure' => 'Er ging iets mis met het toevoegen van de abonnee, probeer het opnieuw.',
|
||||
|
||||
@@ -151,6 +151,7 @@ return [
|
||||
'display-graphs' => 'Grafieken tonen op statuspagina?',
|
||||
'about-this-page' => 'Over deze pagina',
|
||||
'days-of-incidents' => 'Hoeveel dagen moeten incidenten getoond worden?',
|
||||
'time_before_refresh' => 'Status page refresh rate (in seconds).',
|
||||
'banner' => 'Banner afbeelding',
|
||||
'banner-help' => 'Het wordt aanbevolen dat u geen bestanden upload die breeder zijn dan 930px.',
|
||||
'subscribers' => 'Bezoekers toestaan om te abonneren op e-mail notificaties?',
|
||||
@@ -223,17 +224,18 @@ return [
|
||||
],
|
||||
|
||||
// Buttons
|
||||
'add' => 'Toevoegen',
|
||||
'save' => 'Opslaan',
|
||||
'update' => 'Bijwerken',
|
||||
'create' => 'Aanmaken',
|
||||
'edit' => 'Bewerken',
|
||||
'delete' => 'Verwijderen',
|
||||
'submit' => 'Versturen',
|
||||
'cancel' => 'Annuleren',
|
||||
'remove' => 'Verwijderen',
|
||||
'invite' => 'Uitnodigen',
|
||||
'signup' => 'Registreer',
|
||||
'add' => 'Toevoegen',
|
||||
'save' => 'Opslaan',
|
||||
'update' => 'Bijwerken',
|
||||
'create' => 'Aanmaken',
|
||||
'edit' => 'Bewerken',
|
||||
'delete' => 'Verwijderen',
|
||||
'submit' => 'Versturen',
|
||||
'cancel' => 'Annuleren',
|
||||
'remove' => 'Verwijderen',
|
||||
'invite' => 'Uitnodigen',
|
||||
'signup' => 'Registreer',
|
||||
'manage_updates' => 'Manage Updates',
|
||||
|
||||
// Other
|
||||
'optional' => '* Optioneel',
|
||||
|
||||
@@ -13,84 +13,84 @@ return [
|
||||
'component' => [
|
||||
'status_update' => [
|
||||
'mail' => [
|
||||
'subject' => 'Component Status Updated',
|
||||
'greeting' => 'A component\'s status was updated!',
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'action' => 'View',
|
||||
'subject' => 'Component status bijgewerkt',
|
||||
'greeting' => 'De status van een component is bijgewerkt!',
|
||||
'content' => ':name status is veranderd van :old_status naar :new_status.',
|
||||
'action' => 'Tonen',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'Component Status Updated',
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'title' => 'Component status bijgewerkt',
|
||||
'content' => ':name status is veranderd van :old_status naar :new_status.',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => ':name status changed from :old_status to :new_status.',
|
||||
'content' => ':name status is veranderd van :old_status naar :new_status.',
|
||||
],
|
||||
],
|
||||
],
|
||||
'incident' => [
|
||||
'new' => [
|
||||
'mail' => [
|
||||
'subject' => 'New Incident Reported',
|
||||
'greeting' => 'A new incident was reported at :app_name.',
|
||||
'content' => 'Incident :name was reported',
|
||||
'action' => 'View',
|
||||
'subject' => 'Nieuw incident gemeld',
|
||||
'greeting' => 'Er is een nieuw incident gemeld voor :app_name.',
|
||||
'content' => 'Incident :name is gerapporteerd',
|
||||
'action' => 'Tonen',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'Incident :name Reported',
|
||||
'content' => 'A new incident was reported at :app_name',
|
||||
'title' => 'Incident :name is gerapporteerd',
|
||||
'content' => 'Er is een nieuw incident gemeld voor :app_name',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => 'A new incident was reported at :app_name.',
|
||||
'content' => 'Er is een nieuw incident gemeld voor :app_name.',
|
||||
],
|
||||
],
|
||||
'update' => [
|
||||
'mail' => [
|
||||
'subject' => 'Incident Updated',
|
||||
'content' => ':name was updated',
|
||||
'title' => ':name was updated to :new_status',
|
||||
'action' => 'View',
|
||||
'subject' => 'Incident bijgewerkt',
|
||||
'content' => ':name is bijgewerkt',
|
||||
'title' => ':name is bijgewerkt naar :new_status',
|
||||
'action' => 'Tonen',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => ':name Updated',
|
||||
'content' => ':name was updated to :new_status',
|
||||
'title' => ':name is bijgewerkt',
|
||||
'content' => ':name is bijgewerkt naar :new_status',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => 'Incident :name was updated',
|
||||
'content' => 'Incident :name is bijgewerkt',
|
||||
],
|
||||
],
|
||||
],
|
||||
'schedule' => [
|
||||
'new' => [
|
||||
'mail' => [
|
||||
'subject' => 'New Schedule Created',
|
||||
'content' => ':name was scheduled for :date',
|
||||
'title' => 'A new scheduled maintenance was created.',
|
||||
'action' => 'View',
|
||||
'subject' => 'Nieuw tijdschema aangemaakt',
|
||||
'content' => ':name is ingepland voor :date',
|
||||
'title' => 'Nieuw gepland onderhoud aangemaakt.',
|
||||
'action' => 'Tonen',
|
||||
],
|
||||
'slack' => [
|
||||
'title' => 'New Schedule Created!',
|
||||
'content' => ':name was scheduled for :date',
|
||||
'title' => 'Nieuw tijdschema aangemaakt!',
|
||||
'content' => ':name is ingepland voor :date',
|
||||
],
|
||||
'sms' => [
|
||||
'content' => ':name was scheduled for :date',
|
||||
'content' => ':name is ingepland voor :date',
|
||||
],
|
||||
],
|
||||
],
|
||||
'subscriber' => [
|
||||
'verify' => [
|
||||
'mail' => [
|
||||
'subject' => 'Verify Your Subscription',
|
||||
'content' => 'Click to verify your subscription to :app_name status page.',
|
||||
'title' => 'Verify your subscription to :app_name status page.',
|
||||
'action' => 'Verify',
|
||||
'subject' => 'Bevestig je inschrijving',
|
||||
'content' => 'Klik om je inschrijving op :app_name statuspagina te bevestigen.',
|
||||
'title' => 'Bevestig je inschrijving voor de :app_name statuspagina.',
|
||||
'action' => 'Verifiëren',
|
||||
],
|
||||
],
|
||||
],
|
||||
'system' => [
|
||||
'test' => [
|
||||
'mail' => [
|
||||
'subject' => 'Ping from Cachet!',
|
||||
'content' => 'This is a test notification from Cachet!',
|
||||
'subject' => 'Ping van Cachet!',
|
||||
'content' => 'Dit is een testnotificatie van Cachet!',
|
||||
'title' => '🔔',
|
||||
],
|
||||
],
|
||||
@@ -98,10 +98,10 @@ return [
|
||||
'user' => [
|
||||
'invite' => [
|
||||
'mail' => [
|
||||
'subject' => 'Your invitation is inside...',
|
||||
'content' => 'You have been invited to join :app_name status page.',
|
||||
'title' => 'You\'re invited to join :app_name status page.',
|
||||
'action' => 'Accept',
|
||||
'subject' => 'Je uitnodiging zit in deze mail...',
|
||||
'content' => 'Je bent uitgenodigd voor de :app_name statuspagina.',
|
||||
'title' => 'Je bent uitgenodigd voor :app_name statuspagina.',
|
||||
'action' => 'Accepteer',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
@@ -22,7 +22,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => 'Previous',
|
||||
'next' => 'Next',
|
||||
'previous' => 'Vorige',
|
||||
'next' => 'Volgende',
|
||||
|
||||
];
|
||||
|
||||
@@ -14,7 +14,7 @@ return [
|
||||
'components' => [
|
||||
'last_updated' => 'Sist oppdatert :timestamp',
|
||||
'status' => [
|
||||
0 => 'Unknown',
|
||||
0 => 'Ukjent',
|
||||
1 => 'Ingen problemer',
|
||||
2 => 'Ytelsesproblemer',
|
||||
3 => 'Delvis brudd',
|
||||
@@ -33,6 +33,7 @@ return [
|
||||
'scheduled' => 'Planlagt vedlikehold',
|
||||
'scheduled_at' => ', planlagt :timestamp',
|
||||
'posted' => 'Skrevet :timestamp',
|
||||
'posted_at' => 'Posted at :timestamp',
|
||||
'status' => [
|
||||
1 => 'Undersøkes',
|
||||
2 => 'Identifisert',
|
||||
@@ -45,8 +46,8 @@ return [
|
||||
'schedules' => [
|
||||
'status' => [
|
||||
0 => 'Upcoming',
|
||||
1 => 'In Progress',
|
||||
2 => 'Complete',
|
||||
1 => 'Pågår',
|
||||
2 => 'Fullført',
|
||||
],
|
||||
],
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user