From 532d8a20c5af1a19975c3c23e8d9aa8b74e61bee Mon Sep 17 00:00:00 2001 From: Nico Stapelbroek Date: Sat, 13 Jan 2018 15:34:26 +0100 Subject: [PATCH 001/194] Create an incident updates overview page --- .../Dashboard/IncidentController.php | 18 ++++++++- app/Http/Routes/Dashboard/IncidentRoutes.php | 10 +++-- app/Models/IncidentUpdate.php | 14 +++++++ resources/lang/en/dashboard.php | 5 ++- .../views/dashboard/incidents/index.blade.php | 2 +- .../incidents/updates/index.blade.php | 37 +++++++++++++++++++ 6 files changed, 79 insertions(+), 7 deletions(-) create mode 100644 resources/views/dashboard/incidents/updates/index.blade.php diff --git a/app/Http/Controllers/Dashboard/IncidentController.php b/app/Http/Controllers/Dashboard/IncidentController.php index 9d3be7bc..61e6c499 100644 --- a/app/Http/Controllers/Dashboard/IncidentController.php +++ b/app/Http/Controllers/Dashboard/IncidentController.php @@ -20,6 +20,7 @@ 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,7 +294,20 @@ class IncidentController extends Controller * * @return \Illuminate\View\View */ - public function showIncidentUpdateAction(Incident $incident) + public function showIncidentUpdates(Incident $incident) + { + $updates = IncidentUpdate::byIncident($incident)->orderBy('created_at', 'desc')->get(); + return View::make('dashboard.incidents.updates.index')->withIncident($incident)->withUpdates($updates); + } + + /** + * 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.update')->withIncident($incident); } @@ -315,7 +329,7 @@ class IncidentController extends Controller $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'))) ->withErrors($e->getMessageBag()); diff --git a/app/Http/Routes/Dashboard/IncidentRoutes.php b/app/Http/Routes/Dashboard/IncidentRoutes.php index c312bc08..ed9294eb 100644 --- a/app/Http/Routes/Dashboard/IncidentRoutes.php +++ b/app/Http/Routes/Dashboard/IncidentRoutes.php @@ -71,10 +71,14 @@ 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', ]); }); diff --git a/app/Models/IncidentUpdate.php b/app/Models/IncidentUpdate.php index 207e129e..846b48a0 100644 --- a/app/Models/IncidentUpdate.php +++ b/app/Models/IncidentUpdate.php @@ -14,6 +14,7 @@ namespace CachetHQ\Cachet\Models; use AltThree\Validator\ValidatingTrait; use CachetHQ\Cachet\Models\Traits\SortableTrait; use CachetHQ\Cachet\Presenters\IncidentUpdatePresenter; +use Illuminate\Database\Eloquent\Builder; use Illuminate\Database\Eloquent\Model; use McCool\LaravelAutoPresenter\HasPresenter; @@ -73,6 +74,19 @@ class IncidentUpdate extends Model implements HasPresenter 'user_id', ]; + /** + * Scope all by incident. + * + * @param \Illuminate\Database\Eloquent\Builder $query + * @param \CachetHQ\Cachet\Models\Incident $incident + * + * @return \Illuminate\Database\Eloquent\Builder + */ + public function scopeByIncident(Builder $query, Incident $incident) + { + return $query->where('incident_id', '=', $incident->id); + } + /** * Get the incident relation. * diff --git a/resources/lang/en/dashboard.php b/resources/lang/en/dashboard.php index 2d452d09..ec84ef4a 100644 --- a/resources/lang/en/dashboard.php +++ b/resources/lang/en/dashboard.php @@ -21,7 +21,10 @@ return [ 'logged' => '{0} There are no incidents, good work.|[1] You have logged one incident.|[2, Inf] You have reported :count 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', + 'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,Inf] Several Updates', + ], 'add' => [ 'title' => 'Report an incident', 'success' => 'Incident added.', diff --git a/resources/views/dashboard/incidents/index.blade.php b/resources/views/dashboard/incidents/index.blade.php index dcfb2a72..70a7bb81 100644 --- a/resources/views/dashboard/incidents/index.blade.php +++ b/resources/views/dashboard/incidents/index.blade.php @@ -22,7 +22,7 @@ @foreach($incidents as $incident)
- {{ $incident->name }} {{ trans_choice('dashboard.incidents.updates', $incident->updates()->count()) }} + {{ $incident->name }} {{ trans_choice('dashboard.incidents.updates.count', $incident->updates()->count()) }} @if($incident->message)

{{ Str::words($incident->message, 5) }}

@endif diff --git a/resources/views/dashboard/incidents/updates/index.blade.php b/resources/views/dashboard/incidents/updates/index.blade.php new file mode 100644 index 00000000..392dd759 --- /dev/null +++ b/resources/views/dashboard/incidents/updates/index.blade.php @@ -0,0 +1,37 @@ +@extends('layout.dashboard') + +@section('content') +
+ @includeWhen(isset($sub_menu), 'dashboard.partials.sub-sidebar') +
+
+ + {{ trans('dashboard.incidents.updates.title') }} + + + {{ trans('dashboard.incidents.update.title') }} + +
+
+
+
+ @include('dashboard.partials.errors') + +
+ @foreach($updates as $update) +
+
+ {{ Str::words($update->message, 8) }} +

{{ trans('cachet.incidents.posted', ['timestamp' => $update->created_at_diff]) }}

+
+ +
+ @endforeach +
+
+
+
+
+@stop From 700c9366627a1341bd17cb0f4e5e5a535b7a66dc Mon Sep 17 00:00:00 2001 From: Nico Stapelbroek Date: Sat, 13 Jan 2018 15:47:31 +0100 Subject: [PATCH 002/194] Restore add incident update functionality --- app/Http/Controllers/Dashboard/IncidentController.php | 2 +- .../incidents/{update.blade.php => updates/add.blade.php} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename resources/views/dashboard/incidents/{update.blade.php => updates/add.blade.php} (100%) diff --git a/app/Http/Controllers/Dashboard/IncidentController.php b/app/Http/Controllers/Dashboard/IncidentController.php index 61e6c499..0bd37646 100644 --- a/app/Http/Controllers/Dashboard/IncidentController.php +++ b/app/Http/Controllers/Dashboard/IncidentController.php @@ -309,7 +309,7 @@ class IncidentController extends Controller */ public function showCreateIncidentUpdateAction(Incident $incident) { - return View::make('dashboard.incidents.update')->withIncident($incident); + return View::make('dashboard.incidents.updates.add')->withIncident($incident); } /** diff --git a/resources/views/dashboard/incidents/update.blade.php b/resources/views/dashboard/incidents/updates/add.blade.php similarity index 100% rename from resources/views/dashboard/incidents/update.blade.php rename to resources/views/dashboard/incidents/updates/add.blade.php From 3a9688c510ca1d18221454a8cf7e2bbbb665dcd3 Mon Sep 17 00:00:00 2001 From: Nico Stapelbroek Date: Sat, 13 Jan 2018 16:01:58 +0100 Subject: [PATCH 003/194] Change navigation flow from incidents to incident updates page Clicking on the incident title will now navigate to the incident updates page rather than editing the incident. To prevent confusion I've also removed the "update" button from the incidents overview page and added the incident name to the page title of the incident updates page. --- resources/lang/en/dashboard.php | 2 +- resources/views/dashboard/incidents/index.blade.php | 3 +-- resources/views/dashboard/incidents/updates/index.blade.php | 4 ++-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/resources/lang/en/dashboard.php b/resources/lang/en/dashboard.php index ec84ef4a..3fde4675 100644 --- a/resources/lang/en/dashboard.php +++ b/resources/lang/en/dashboard.php @@ -22,7 +22,7 @@ return [ 'incident-create-template' => 'Create Template', 'incident-templates' => 'Incident Templates', 'updates' => [ - 'title' => 'Incident updates', + 'title' => 'Incident updates for :incident', 'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,Inf] Several Updates', ], 'add' => [ diff --git a/resources/views/dashboard/incidents/index.blade.php b/resources/views/dashboard/incidents/index.blade.php index 70a7bb81..c11bdab9 100644 --- a/resources/views/dashboard/incidents/index.blade.php +++ b/resources/views/dashboard/incidents/index.blade.php @@ -22,14 +22,13 @@ @foreach($incidents as $incident)
- {{ $incident->name }} {{ trans_choice('dashboard.incidents.updates.count', $incident->updates()->count()) }} + {{ $incident->name }} {{ trans_choice('dashboard.incidents.updates.count', $incident->updates()->count()) }} @if($incident->message)

{{ Str::words($incident->message, 5) }}

@endif
diff --git a/resources/views/dashboard/incidents/updates/index.blade.php b/resources/views/dashboard/incidents/updates/index.blade.php index 392dd759..b7f8d6fb 100644 --- a/resources/views/dashboard/incidents/updates/index.blade.php +++ b/resources/views/dashboard/incidents/updates/index.blade.php @@ -6,9 +6,9 @@
- {{ trans('dashboard.incidents.updates.title') }} + {{ trans('dashboard.incidents.updates.title', ['incident' => Str::words($incident->name, 5)]) }} - + {{ trans('dashboard.incidents.update.title') }}
From 569b15000a8a79f856c5d94093412e70a4b8ab23 Mon Sep 17 00:00:00 2001 From: Nico Stapelbroek Date: Sat, 13 Jan 2018 17:24:10 +0100 Subject: [PATCH 004/194] Implement edit IncidentUpdate feature --- .../Dashboard/IncidentController.php | 51 ++++++++++++++- app/Http/Routes/Dashboard/IncidentRoutes.php | 9 +++ resources/lang/en/dashboard.php | 15 +++-- .../incidents/updates/edit.blade.php | 62 +++++++++++++++++++ .../incidents/updates/index.blade.php | 6 +- 5 files changed, 133 insertions(+), 10 deletions(-) create mode 100644 resources/views/dashboard/incidents/updates/edit.blade.php diff --git a/app/Http/Controllers/Dashboard/IncidentController.php b/app/Http/Controllers/Dashboard/IncidentController.php index 0bd37646..5938f84c 100644 --- a/app/Http/Controllers/Dashboard/IncidentController.php +++ b/app/Http/Controllers/Dashboard/IncidentController.php @@ -16,6 +16,7 @@ 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; @@ -322,7 +323,7 @@ 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'), @@ -331,11 +332,55 @@ class IncidentController extends Controller } catch (ValidationException $e) { 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. + * + * @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'))); } } diff --git a/app/Http/Routes/Dashboard/IncidentRoutes.php b/app/Http/Routes/Dashboard/IncidentRoutes.php index ed9294eb..e822247c 100644 --- a/app/Http/Routes/Dashboard/IncidentRoutes.php +++ b/app/Http/Routes/Dashboard/IncidentRoutes.php @@ -81,6 +81,15 @@ class IncidentRoutes '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', + ]); + }); } } diff --git a/resources/lang/en/dashboard.php b/resources/lang/en/dashboard.php index 3fde4675..873955bb 100644 --- a/resources/lang/en/dashboard.php +++ b/resources/lang/en/dashboard.php @@ -24,6 +24,16 @@ return [ 'updates' => [ 'title' => 'Incident updates for :incident', 'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,Inf] 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', @@ -39,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 :incident', - 'success' => 'Update added.', - ], // Incident templates 'templates' => [ diff --git a/resources/views/dashboard/incidents/updates/edit.blade.php b/resources/views/dashboard/incidents/updates/edit.blade.php new file mode 100644 index 00000000..8de47d59 --- /dev/null +++ b/resources/views/dashboard/incidents/updates/edit.blade.php @@ -0,0 +1,62 @@ +@extends('layout.dashboard') + +@section('content') +
+ + + {{ trans('dashboard.incidents.incidents') }} + + > {{ trans('dashboard.incidents.update.title') }} +
+
+
+
+ @include('dashboard.partials.errors') +

{{ trans('dashboard.incidents.updates.edit.title') }}

+
+ +
+
+
+ + + + +
+
+ +
+ +
+
+
+ +
+
+ + {{ trans('forms.cancel') }} +
+
+
+
+
+
+@stop diff --git a/resources/views/dashboard/incidents/updates/index.blade.php b/resources/views/dashboard/incidents/updates/index.blade.php index b7f8d6fb..b19d645a 100644 --- a/resources/views/dashboard/incidents/updates/index.blade.php +++ b/resources/views/dashboard/incidents/updates/index.blade.php @@ -9,7 +9,7 @@ {{ trans('dashboard.incidents.updates.title', ['incident' => Str::words($incident->name, 5)]) }} - {{ trans('dashboard.incidents.update.title') }} + {{ trans('dashboard.incidents.updates.add.title') }}
@@ -25,7 +25,9 @@

{{ trans('cachet.incidents.posted', ['timestamp' => $update->created_at_diff]) }}

@endforeach From 0849bc65439f8767387bdecffd0b54c1029f56fa Mon Sep 17 00:00:00 2001 From: Nico Stapelbroek Date: Sat, 13 Jan 2018 17:45:13 +0100 Subject: [PATCH 005/194] Add link to edit IncidentUpdate to the front-end --- resources/views/single-incident.blade.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/resources/views/single-incident.blade.php b/resources/views/single-incident.blade.php index 912b6334..1c410f51 100644 --- a/resources/views/single-incident.blade.php +++ b/resources/views/single-incident.blade.php @@ -31,6 +31,11 @@
+ @if($current_user) + + @endif
{!! $update->formatted_message !!}
From 0af68e755f33969ad2dbc981e3ddc29bb3e62f3d Mon Sep 17 00:00:00 2001 From: Nico Stapelbroek Date: Sat, 13 Jan 2018 18:11:59 +0100 Subject: [PATCH 006/194] Re-align the breadcrumbs in the IncidentUpdates view templates --- .../dashboard/incidents/updates/add.blade.php | 5 +- .../incidents/updates/edit.blade.php | 5 +- .../incidents/updates/index.blade.php | 59 ++++++++++--------- 3 files changed, 35 insertions(+), 34 deletions(-) diff --git a/resources/views/dashboard/incidents/updates/add.blade.php b/resources/views/dashboard/incidents/updates/add.blade.php index 5fb9dc6a..7fe831fd 100644 --- a/resources/views/dashboard/incidents/updates/add.blade.php +++ b/resources/views/dashboard/incidents/updates/add.blade.php @@ -6,15 +6,14 @@
- {{ trans('dashboard.incidents.incidents') }} + {{ trans('dashboard.incidents.incidents') }} - > {{ trans('dashboard.incidents.update.title') }} + > {{ trans('dashboard.incidents.updates.title', ['incident' => $incident->name]) }} > {{ trans('dashboard.incidents.updates.add.title') }}
@include('dashboard.partials.errors') -

{!! trans('dashboard.incidents.update.subtitle', ['incident' => $incident->name]) !!}

diff --git a/resources/views/dashboard/incidents/updates/edit.blade.php b/resources/views/dashboard/incidents/updates/edit.blade.php index 8de47d59..a65e11ff 100644 --- a/resources/views/dashboard/incidents/updates/edit.blade.php +++ b/resources/views/dashboard/incidents/updates/edit.blade.php @@ -6,15 +6,14 @@
- {{ trans('dashboard.incidents.incidents') }} + {{ trans('dashboard.incidents.incidents') }} - > {{ trans('dashboard.incidents.update.title') }} + > {{ trans('dashboard.incidents.updates.title', ['incident' => $incident->name]) }} > {{ trans('dashboard.incidents.updates.edit.title') }}
@include('dashboard.partials.errors') -

{{ trans('dashboard.incidents.updates.edit.title') }}

diff --git a/resources/views/dashboard/incidents/updates/index.blade.php b/resources/views/dashboard/incidents/updates/index.blade.php index b19d645a..997a0570 100644 --- a/resources/views/dashboard/incidents/updates/index.blade.php +++ b/resources/views/dashboard/incidents/updates/index.blade.php @@ -1,37 +1,40 @@ @extends('layout.dashboard') @section('content') -
- @includeWhen(isset($sub_menu), 'dashboard.partials.sub-sidebar') -
-
- - {{ trans('dashboard.incidents.updates.title', ['incident' => Str::words($incident->name, 5)]) }} - - - {{ trans('dashboard.incidents.updates.add.title') }} - -
-
-
-
- @include('dashboard.partials.errors') +
+ + + {{ trans('dashboard.incidents.incidents') }} + + > {{ trans('dashboard.incidents.updates.title', ['incident' => $incident->name]) }} +
+
+ +
+
+ @include('dashboard.partials.errors') -
- @foreach($updates as $update) -
-
- {{ Str::words($update->message, 8) }} -

{{ trans('cachet.incidents.posted', ['timestamp' => $update->created_at_diff]) }}

-
- +
+ @foreach($updates as $update) +
+
+ {{ Str::words($update->message, 8) }} +

{{ trans('cachet.incidents.posted', ['timestamp' => $update->created_at_diff]) }}

+
+ - @endforeach
+ @endforeach
From 55f6ee7dc7c2bb9c7454b3003de4b16f97e3b905 Mon Sep 17 00:00:00 2001 From: Nico Stapelbroek Date: Sat, 13 Jan 2018 18:30:43 +0100 Subject: [PATCH 007/194] Fix styleci violations --- app/Http/Controllers/Dashboard/IncidentController.php | 8 ++++---- app/Http/Routes/Dashboard/IncidentRoutes.php | 1 - app/Models/IncidentUpdate.php | 2 +- resources/lang/en/dashboard.php | 2 +- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/app/Http/Controllers/Dashboard/IncidentController.php b/app/Http/Controllers/Dashboard/IncidentController.php index 5938f84c..0b9e9758 100644 --- a/app/Http/Controllers/Dashboard/IncidentController.php +++ b/app/Http/Controllers/Dashboard/IncidentController.php @@ -298,6 +298,7 @@ class IncidentController extends Controller public function showIncidentUpdates(Incident $incident) { $updates = IncidentUpdate::byIncident($incident)->orderBy('created_at', 'desc')->get(); + return View::make('dashboard.incidents.updates.index')->withIncident($incident)->withUpdates($updates); } @@ -340,11 +341,10 @@ class IncidentController extends Controller ->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\Incident $incident * @param \CachetHQ\Cachet\Models\IncidentUpdate $incidentUpdate * * @return \Illuminate\View\View @@ -357,9 +357,9 @@ class IncidentController extends Controller } /** - * Edit an incident. + * Edit an incident update. * - * @param \CachetHQ\Cachet\Models\Incident $incident + * @param \CachetHQ\Cachet\Models\Incident $incident * @param \CachetHQ\Cachet\Models\IncidentUpdate $incidentUpdate * * @return \Illuminate\Http\RedirectResponse diff --git a/app/Http/Routes/Dashboard/IncidentRoutes.php b/app/Http/Routes/Dashboard/IncidentRoutes.php index e822247c..3519cf49 100644 --- a/app/Http/Routes/Dashboard/IncidentRoutes.php +++ b/app/Http/Routes/Dashboard/IncidentRoutes.php @@ -89,7 +89,6 @@ class IncidentRoutes 'as' => 'post:dashboard.incidents.updates.edit', 'uses' => 'IncidentController@editIncidentUpdateAction', ]); - }); } } diff --git a/app/Models/IncidentUpdate.php b/app/Models/IncidentUpdate.php index 846b48a0..2a8bc194 100644 --- a/app/Models/IncidentUpdate.php +++ b/app/Models/IncidentUpdate.php @@ -78,7 +78,7 @@ class IncidentUpdate extends Model implements HasPresenter * Scope all by incident. * * @param \Illuminate\Database\Eloquent\Builder $query - * @param \CachetHQ\Cachet\Models\Incident $incident + * @param \CachetHQ\Cachet\Models\Incident $incident * * @return \Illuminate\Database\Eloquent\Builder */ diff --git a/resources/lang/en/dashboard.php b/resources/lang/en/dashboard.php index 873955bb..5d1e5a42 100644 --- a/resources/lang/en/dashboard.php +++ b/resources/lang/en/dashboard.php @@ -24,7 +24,7 @@ return [ 'updates' => [ 'title' => 'Incident updates for :incident', 'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,Inf] Several Updates', - 'add' => [ + 'add' => [ 'title' => 'Create new incident update', 'success' => 'Your new incident update has been created.', 'failure' => 'Something went wrong with the incident update.', From 5dc595d55ba6089bfddc61b8ba63296f9f61c2d0 Mon Sep 17 00:00:00 2001 From: Nico Stapelbroek Date: Sat, 13 Jan 2018 18:51:21 +0100 Subject: [PATCH 008/194] Replace Inf with asterisk when using pluralization in touched translations @see https://github.com/CachetHQ/Cachet/pull/2868 --- resources/lang/en/dashboard.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lang/en/dashboard.php b/resources/lang/en/dashboard.php index 5d1e5a42..a4894d3c 100644 --- a/resources/lang/en/dashboard.php +++ b/resources/lang/en/dashboard.php @@ -23,7 +23,7 @@ return [ 'incident-templates' => 'Incident Templates', 'updates' => [ 'title' => 'Incident updates for :incident', - 'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,Inf] Several Updates', + '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.', From 35c3d22fd51ecad2c1b152e67af883a019c5c598 Mon Sep 17 00:00:00 2001 From: sedrubal Date: Sun, 14 Jan 2018 21:34:09 +0100 Subject: [PATCH 009/194] Autofocus totp input --- resources/views/auth/two-factor-auth.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/auth/two-factor-auth.blade.php b/resources/views/auth/two-factor-auth.blade.php index 17d89b40..4e339644 100644 --- a/resources/views/auth/two-factor-auth.blade.php +++ b/resources/views/auth/two-factor-auth.blade.php @@ -28,7 +28,7 @@
- +
From 72b029e0e94201680c435a5546d033cd5bcfae19 Mon Sep 17 00:00:00 2001 From: Nico Stapelbroek Date: Sun, 14 Jan 2018 22:09:00 +0100 Subject: [PATCH 010/194] Add a button to Manage Incident updates Also removed the link on the overview pages to re-align them with other components --- resources/lang/en/forms.php | 23 ++++++++++--------- .../views/dashboard/incidents/index.blade.php | 3 ++- .../incidents/updates/index.blade.php | 2 +- 3 files changed, 15 insertions(+), 13 deletions(-) diff --git a/resources/lang/en/forms.php b/resources/lang/en/forms.php index b057b053..aacc8e03 100644 --- a/resources/lang/en/forms.php +++ b/resources/lang/en/forms.php @@ -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', diff --git a/resources/views/dashboard/incidents/index.blade.php b/resources/views/dashboard/incidents/index.blade.php index c11bdab9..78e62cf4 100644 --- a/resources/views/dashboard/incidents/index.blade.php +++ b/resources/views/dashboard/incidents/index.blade.php @@ -22,12 +22,13 @@ @foreach($incidents as $incident)
- {{ $incident->name }} {{ trans_choice('dashboard.incidents.updates.count', $incident->updates()->count()) }} + {{ $incident->name }} {{ trans_choice('dashboard.incidents.updates.count', $incident->updates()->count()) }} @if($incident->message)

{{ Str::words($incident->message, 5) }}

@endif
diff --git a/resources/views/dashboard/incidents/updates/index.blade.php b/resources/views/dashboard/incidents/updates/index.blade.php index 997a0570..5d0a41fa 100644 --- a/resources/views/dashboard/incidents/updates/index.blade.php +++ b/resources/views/dashboard/incidents/updates/index.blade.php @@ -25,7 +25,7 @@ @foreach($updates as $update)
- {{ Str::words($update->message, 8) }} + {{ Str::words($update->message, 8) }}

{{ trans('cachet.incidents.posted', ['timestamp' => $update->created_at_diff]) }}

From 1da6764b6359feedbdc5ae6e7386bc96d5ba7cd1 Mon Sep 17 00:00:00 2001 From: Nico Stapelbroek Date: Sun, 14 Jan 2018 22:17:26 +0100 Subject: [PATCH 011/194] Fetch updates using the eloquent relationship instead of re-querying --- .../Controllers/Dashboard/IncidentController.php | 4 +--- app/Models/IncidentUpdate.php | 13 ------------- .../dashboard/incidents/updates/index.blade.php | 2 +- 3 files changed, 2 insertions(+), 17 deletions(-) diff --git a/app/Http/Controllers/Dashboard/IncidentController.php b/app/Http/Controllers/Dashboard/IncidentController.php index 0b9e9758..94494386 100644 --- a/app/Http/Controllers/Dashboard/IncidentController.php +++ b/app/Http/Controllers/Dashboard/IncidentController.php @@ -297,9 +297,7 @@ class IncidentController extends Controller */ public function showIncidentUpdates(Incident $incident) { - $updates = IncidentUpdate::byIncident($incident)->orderBy('created_at', 'desc')->get(); - - return View::make('dashboard.incidents.updates.index')->withIncident($incident)->withUpdates($updates); + return View::make('dashboard.incidents.updates.index')->withIncident($incident); } /** diff --git a/app/Models/IncidentUpdate.php b/app/Models/IncidentUpdate.php index 2a8bc194..c266d057 100644 --- a/app/Models/IncidentUpdate.php +++ b/app/Models/IncidentUpdate.php @@ -74,19 +74,6 @@ class IncidentUpdate extends Model implements HasPresenter 'user_id', ]; - /** - * Scope all by incident. - * - * @param \Illuminate\Database\Eloquent\Builder $query - * @param \CachetHQ\Cachet\Models\Incident $incident - * - * @return \Illuminate\Database\Eloquent\Builder - */ - public function scopeByIncident(Builder $query, Incident $incident) - { - return $query->where('incident_id', '=', $incident->id); - } - /** * Get the incident relation. * diff --git a/resources/views/dashboard/incidents/updates/index.blade.php b/resources/views/dashboard/incidents/updates/index.blade.php index 5d0a41fa..cbc58b34 100644 --- a/resources/views/dashboard/incidents/updates/index.blade.php +++ b/resources/views/dashboard/incidents/updates/index.blade.php @@ -22,7 +22,7 @@ @include('dashboard.partials.errors')
- @foreach($updates as $update) + @foreach($incident->updates as $update)
{{ Str::words($update->message, 8) }} From fe90f1aa7dffe8baacfef5726f16c5163f0a4c42 Mon Sep 17 00:00:00 2001 From: Nico Stapelbroek Date: Sun, 14 Jan 2018 22:17:58 +0100 Subject: [PATCH 012/194] Remove indentation inside blade conditionals --- app/Models/IncidentUpdate.php | 1 - resources/views/single-incident.blade.php | 6 +++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/app/Models/IncidentUpdate.php b/app/Models/IncidentUpdate.php index c266d057..207e129e 100644 --- a/app/Models/IncidentUpdate.php +++ b/app/Models/IncidentUpdate.php @@ -14,7 +14,6 @@ namespace CachetHQ\Cachet\Models; use AltThree\Validator\ValidatingTrait; use CachetHQ\Cachet\Models\Traits\SortableTrait; use CachetHQ\Cachet\Presenters\IncidentUpdatePresenter; -use Illuminate\Database\Eloquent\Builder; use Illuminate\Database\Eloquent\Model; use McCool\LaravelAutoPresenter\HasPresenter; diff --git a/resources/views/single-incident.blade.php b/resources/views/single-incident.blade.php index 1c410f51..519d5d83 100644 --- a/resources/views/single-incident.blade.php +++ b/resources/views/single-incident.blade.php @@ -32,9 +32,9 @@
@if($current_user) - + @endif
{!! $update->formatted_message !!} From 06efafc3aed9fcc0699c85ef6db26b17bb8ab887 Mon Sep 17 00:00:00 2001 From: Nico Stapelbroek Date: Sun, 14 Jan 2018 22:32:50 +0100 Subject: [PATCH 013/194] Replace Inf with asterisk when using pluralization in translations Since Laravel 5.4 the "Inf" has been replaced with * @see https://laravel.com/docs/5.4/upgrade#upgrade-5.4.0 --- resources/lang/en/cachet.php | 6 +++--- resources/lang/en/dashboard.php | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/resources/lang/en/cachet.php b/resources/lang/en/cachet.php index b9ceea07..0c45fe00 100644 --- a/resources/lang/en/cachet.php +++ b/resources/lang/en/cachet.php @@ -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' => [ diff --git a/resources/lang/en/dashboard.php b/resources/lang/en/dashboard.php index a4894d3c..d99fbc61 100644 --- a/resources/lang/en/dashboard.php +++ b/resources/lang/en/dashboard.php @@ -18,7 +18,7 @@ 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 :count incidents.', + 'logged' => '{0} There are no incidents, good work.|[1] You have logged one incident.|[2,*] You have reported :count incidents.', 'incident-create-template' => 'Create Template', 'incident-templates' => 'Incident Templates', 'updates' => [ @@ -74,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 :count schedules.', + 'logged' => '{0} There has been no Maintenance, good work.|[1] You have logged one schedule.|[2,*] You have reported :count schedules.', 'scheduled_at' => 'Scheduled at :timestamp', 'add' => [ 'title' => 'Add Maintenance', From d7f02fdcb17288ae0cbf6153e39c537cd5c30cb3 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:11 +0000 Subject: [PATCH 014/194] New translations cachet.php (Afrikaans) --- resources/lang/af-ZA/cachet.php | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/resources/lang/af-ZA/cachet.php b/resources/lang/af-ZA/cachet.php index 585f7c2e..2c8637b8 100644 --- a/resources/lang/af-ZA/cachet.php +++ b/resources/lang/af-ZA/cachet.php @@ -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' => [ From 7a4fea5f40b948157ad1f99cce0b3e778fbba8df Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:12 +0000 Subject: [PATCH 015/194] New translations forms.php (Portuguese) --- resources/lang/pt-PT/forms.php | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/resources/lang/pt-PT/forms.php b/resources/lang/pt-PT/forms.php index dcc84d24..6ae02095 100644 --- a/resources/lang/pt-PT/forms.php +++ b/resources/lang/pt-PT/forms.php @@ -151,8 +151,9 @@ return [ 'display-graphs' => 'Mostrar gráficos na página de estado?', 'about-this-page' => 'Sobre esta página', 'days-of-incidents' => 'Quantos dias de incidentes para mostrar?', + 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => 'Imagem de Banner', - 'banner-help' => 'É recomendável que você faça upload de arquivos menores que 930px .', + 'banner-help' => "É recomendável que você faça upload de arquivos menores que 930px .", 'subscribers' => 'Permitir que as pessoas subscrevam as notificações?', 'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)', 'automatic_localization' => 'Mostrar automaticamente a tradução conforme a língua do browser do visitante?', @@ -223,17 +224,18 @@ return [ ], // Buttons - 'add' => 'Adicionar', - 'save' => 'Salvar', - 'update' => 'Atualizar', - 'create' => 'Criar', - 'edit' => 'Editar', - 'delete' => 'Apagar', - 'submit' => 'Enviar', - 'cancel' => 'Cancelar', - 'remove' => 'Remover', - 'invite' => 'Convite', - 'signup' => 'Registrar', + 'add' => 'Adicionar', + 'save' => 'Salvar', + 'update' => 'Atualizar', + 'create' => 'Criar', + 'edit' => 'Editar', + 'delete' => 'Apagar', + 'submit' => 'Enviar', + 'cancel' => 'Cancelar', + 'remove' => 'Remover', + 'invite' => 'Convite', + 'signup' => 'Registrar', + 'manage_updates' => 'Manage Updates', // Other 'optional' => '* Opcional', From ac4cd9a388bebb758bbf961a6f7d02b485514d1f Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:14 +0000 Subject: [PATCH 016/194] New translations cachet.php (Polish) --- resources/lang/pl-PL/cachet.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/resources/lang/pl-PL/cachet.php b/resources/lang/pl-PL/cachet.php index aaf582f2..80cf2f84 100644 --- a/resources/lang/pl-PL/cachet.php +++ b/resources/lang/pl-PL/cachet.php @@ -14,7 +14,7 @@ return [ 'components' => [ 'last_updated' => 'Ostatnia aktualizacja :timestamp', 'status' => [ - 0 => 'Nieznane', + 0 => 'Nieznany', 1 => 'Funktionsfähig', 2 => 'Leistungsprobleme', 3 => 'Teilweiser Ausfall', @@ -33,6 +33,7 @@ return [ 'scheduled' => 'Geplante Wartungen', 'scheduled_at' => ', geplant :timestamp', 'posted' => 'Opublikowano :timestamp', + 'posted_at' => 'Posted at :timestamp', 'status' => [ 1 => 'Untersuchungen laufen', 2 => 'Identifiziert', @@ -45,7 +46,7 @@ return [ 'schedules' => [ 'status' => [ 0 => 'Nadchodzące', - 1 => 'W toku', + 1 => 'W trakcie', 2 => 'Zakończone', ], ], @@ -95,9 +96,9 @@ return [ 'signup' => [ 'title' => 'Zarejestruj się', - 'username' => 'Benutzername', + 'username' => 'Nazwa Użytkownika', 'email' => 'E-Mail', - 'password' => 'Passwort', + 'password' => 'Hasło', 'success' => 'Twoje konto zostało utworzone.', 'failure' => 'Coś poszło nie tak w trakcje rejestracji.', ], From 893be4fe6c36f53612039e26c5406e49fa9c48ac Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:15 +0000 Subject: [PATCH 017/194] New translations dashboard.php (Polish) --- resources/lang/pl-PL/dashboard.php | 36 +++++++++++++++++++----------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/resources/lang/pl-PL/dashboard.php b/resources/lang/pl-PL/dashboard.php index 6916ebef..3d1ed5fd 100644 --- a/resources/lang/pl-PL/dashboard.php +++ b/resources/lang/pl-PL/dashboard.php @@ -21,7 +21,20 @@ return [ 'logged' => '{0} Es gibt keine Vorfälle, gute Arbeit.|Du hast einen Vorfall gemeldet.|Du hast :count Vorfälle gemeldet.', 'incident-create-template' => 'Vorlage erstellen', 'incident-templates' => 'Vorfall Vorlagen', - 'updates' => '{0} Zero aktualizacji|Jedna aktualizacja|:count aktualizacji', + 'updates' => [ + 'title' => 'Incident updates for :incident', + 'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,*] Several Updates', + 'add' => [ + 'title' => 'Utwórz nową aktualizację zdarzenia', + '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' => 'Vorfall hinzufügen', 'success' => 'Dodano zdarzenie.', @@ -36,11 +49,6 @@ return [ 'success' => 'Wydarzenie zostało usunięte i nie będzie widoczne na stronie statusu.', 'failure' => 'Wydarzenie nie mogło zostać usunięte, proszę spróbować ponownie.', ], - 'update' => [ - 'title' => 'Utwórz nową aktualizację zdarzenia', - 'subtitle' => 'Dodaj aktualizację do :incident', - 'success' => 'Update added.', - ], // Incident templates 'templates' => [ @@ -147,13 +155,15 @@ return [ ], // Subscribers 'subscribers' => [ - 'subscribers' => 'Abonnenten', - 'description' => 'Subskrybenci będą otrzymywać powiadomienia, gdy wydarzenia zostaną utworzone lub komponenty zaktualizowane.', - 'verified' => 'Verifiziert', - 'not_verified' => 'Nicht verifiziert', - 'subscriber' => ':email, subskrybowany :data', - 'no_subscriptions' => 'Zapisano do wszystkich aktualizacji', - 'add' => [ + 'subscribers' => 'Abonnenten', + 'description' => 'Subskrybenci będą otrzymywać powiadomienia, gdy wydarzenia zostaną utworzone lub komponenty zaktualizowane.', + 'description_disabled' => 'To use this feature, you need allow people to signup for notifications.', + 'verified' => 'Verifiziert', + 'not_verified' => 'Nicht verifiziert', + 'subscriber' => ':email, subskrybowany :data', + 'no_subscriptions' => 'Zapisano do wszystkich aktualizacji', + 'global' => 'Globally subscribed', + 'add' => [ 'title' => 'Einen neuen Abonnenten hinzufügen', 'success' => 'Abonnent hinzugefügt.', 'failure' => 'Coś poszło nie tak podczas dodawania subskrybenta, proszę spróbować ponownie.', From 5cca7502ea073faabac1f24c20a9d0d24f8bfa2a Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:16 +0000 Subject: [PATCH 018/194] New translations forms.php (Polish) --- resources/lang/pl-PL/forms.php | 166 +++++++++++++++++---------------- 1 file changed, 84 insertions(+), 82 deletions(-) diff --git a/resources/lang/pl-PL/forms.php b/resources/lang/pl-PL/forms.php index c436a5cb..e72098fa 100644 --- a/resources/lang/pl-PL/forms.php +++ b/resources/lang/pl-PL/forms.php @@ -14,75 +14,75 @@ return [ // Setup form fields 'setup' => [ 'email' => 'E-Mail', - 'username' => 'Benutzername', - 'password' => 'Passwort', - 'site_name' => 'Seitenname', - 'site_domain' => 'Domain ihrer Seite', - 'site_timezone' => 'Wählen Sie Ihre Zeitzone', - 'site_locale' => 'Wählen Sie Ihre Sprache', - 'enable_google2fa' => 'Google Zwei-Faktor-Authentifizierung aktivieren', - 'cache_driver' => 'Cache-Treiber', + 'username' => 'Nazwa Użytkownika', + 'password' => 'Hasło', + 'site_name' => 'Nazwa strony', + 'site_domain' => 'Domena', + 'site_timezone' => 'Wybierz swoją strefę czasową', + 'site_locale' => 'Wybierz swój język', + 'enable_google2fa' => 'Włącz weryfikację dwuetapową Google Authenticator', + 'cache_driver' => 'Sposób przechowywania cache', 'queue_driver' => 'Sposób przechowywania kolejek', - 'session_driver' => 'Sitzungs-Treiber', - 'mail_driver' => 'Kierowca mail', - 'mail_host' => 'Hosta poczty', - 'mail_address' => 'Pocztę z adresu', + 'session_driver' => 'Sposób przechowywania sesji', + 'mail_driver' => 'Sposób wysyłania wiadomości e-mail', + 'mail_host' => 'Adres hosta poczty', + 'mail_address' => 'Nadawca wiadomości', 'mail_username' => 'Nazwa użytkownika poczty', - 'mail_password' => 'Hasło poczty', + 'mail_password' => 'Hasło użytkownika poczty', ], // Login form fields 'login' => [ 'login' => 'Nazwa użytkownika lub e-mail', 'email' => 'E-Mail', - 'password' => 'Passwort', - '2fauth' => 'Authentifizierungscode', + 'password' => 'Hasło', + '2fauth' => 'Kod autoryzacyjny', 'invalid' => 'Nieprawidłowa nazwa użytkownika lub hasło', - 'invalid-token' => 'Token ist ungültig', - 'cookies' => 'Sie müssen Cookies aktivieren um sich anzumelden.', + 'invalid-token' => 'Nieprawidłowy token', + 'cookies' => 'Musisz włączyć obsługę cookies, aby móc się zalogować.', 'rate-limit' => 'Przekroczono limit.', 'remember_me' => 'Zapamiętaj mnie', ], // Incidents form fields 'incidents' => [ - 'name' => 'Name', + 'name' => 'Nazwa', 'status' => 'Status', - 'component' => 'Komponente', + 'component' => 'Komponent', 'message' => 'Nachricht', - 'message-help' => 'Sie können auch Markdown verwenden.', + 'message-help' => 'Można użyć również języka znaczników.', 'occurred_at' => 'Kiedy wystąpił incydent?', - 'notify_subscribers' => 'Abonnenten benachrichtigen', + 'notify_subscribers' => 'Powiadomić subskrybentów?', 'visibility' => 'Widoczność zdarzenia', 'stick_status' => 'Przyklej zdarzenie', 'stickied' => 'Przyklejone', 'not_stickied' => 'Nie przyklejone', - 'public' => 'Öffentlich sichtbar', - 'logged_in_only' => 'Nur für angemeldete Benutzer sichtbar', + 'public' => 'Widoczne publicznie', + 'logged_in_only' => 'Widoczne tylko dla zalogowanych użytkowników', 'templates' => [ - 'name' => 'Name', - 'template' => 'Vorlage', + 'name' => 'Nazwa', + 'template' => 'Szablon', 'twig' => 'Szablony wydarzeń mogą korzystać z języka szablonów Twig.', ], ], 'schedules' => [ - 'name' => 'Name', + 'name' => 'Nazwa', 'status' => 'Status', 'message' => 'Nachricht', - 'message-help' => 'Sie können auch Markdown verwenden.', + 'message-help' => 'Można użyć również języka znaczników.', 'scheduled_at' => 'Na kiedy została zaplanowana konserwacja?', 'completed_at' => 'Czy konserwacja została zakończona?', 'templates' => [ - 'name' => 'Name', - 'template' => 'Vorlage', + 'name' => 'Nazwa', + 'template' => 'Szablon', 'twig' => 'Szablony wydarzeń mogą korzystać z języka szablonów Twig.', ], ], // Components form fields 'components' => [ - 'name' => 'Name', + 'name' => 'Nazwa', 'status' => 'Status', 'group' => 'Gruppe', 'description' => 'Beschreibung', @@ -92,7 +92,7 @@ return [ 'enabled' => 'Component enabled?', 'groups' => [ - 'name' => 'Name', + 'name' => 'Nazwa', 'collapsing' => 'Rozwiń/Zwiń opcje', 'visible' => 'Zawsze rozwinięte', 'collapsed' => 'Domyślnie zwiń grupę', @@ -105,7 +105,7 @@ return [ // Action form fields 'actions' => [ - 'name' => 'Name', + 'name' => 'Nazwa', 'description' => 'Beschreibung', 'start_at' => 'Zaplanuj czas uruchomienia', 'timezone' => 'Strefa czasowa', @@ -120,15 +120,15 @@ return [ // Metric form fields 'metrics' => [ - 'name' => 'Name', - 'suffix' => 'Suffix', + 'name' => 'Nazwa', + 'suffix' => 'Przyrostek', 'description' => 'Beschreibung', - 'description-help' => 'Sie können auch Markdown verwenden.', - 'display-chart' => 'Diagramm auf der Statusseite anzeigen?', - 'default-value' => 'Standardwert', - 'calc_type' => 'Berechnung der Metrik', - 'type_sum' => 'Summe', - 'type_avg' => 'Durchschnitt', + 'description-help' => 'Można użyć również języka znaczników.', + 'display-chart' => 'Pokazać diagram na stronie statusu?', + 'default-value' => 'Warość domyślna', + 'calc_type' => 'Obliczanie metryk', + 'type_sum' => 'Suma', + 'type_avg' => 'Średnia', 'places' => 'Miejsca dziesiętne', 'default_view' => 'Domyślny widok', 'threshold' => 'Ile minut przerwy między punktami metrycznymi?', @@ -138,7 +138,7 @@ return [ 'visibility_hidden' => 'Zawsze ukryte', 'points' => [ - 'value' => 'Wert', + 'value' => 'Wartość', ], ], @@ -146,14 +146,15 @@ return [ 'settings' => [ // Application setup 'app-setup' => [ - 'site-name' => 'Seitenname', - 'site-url' => 'URL ihrer Seite', - '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?', - 'banner' => 'Banner', - '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?', + 'site-name' => 'Nazwa strony', + 'site-url' => 'Adres URL strony', + 'display-graphs' => 'Pokazać wykresy na stronie statusu?', + 'about-this-page' => 'Informacje o tej stronie', + 'days-of-incidents' => 'Z ilu ostatnich dni pokazywać incydenty?', + 'time_before_refresh' => 'Status page refresh rate (in seconds).', + 'banner' => 'Baner', + 'banner-help' => "Zaleca się, aby przesyłać pliki nie większe niż 930px szerokości.", + 'subscribers' => 'Czy zezwolić użytkownikom na subskrypcje e-mail w celu otrzymywania powiadomień?', 'skip_subscriber_verification' => 'Pominąć weryfikację użytkowników? (Ostrzeżenie: możesz otrzymać spam)', 'automatic_localization' => 'Automatycznie tłumaczyć twoją stronę statusu na język odwiedzającego?', 'enable_external_dependencies' => 'Włącz zależności zewnętrznych dostawców (Google Fonts, Trackers, etc...)', @@ -161,30 +162,30 @@ return [ 'only_disrupted_days' => 'Czy pokazywać tylko dni zawierające zdarzenia w linii czasu?', ], 'analytics' => [ - 'analytics_google' => 'Google Analytics Code', - 'analytics_gosquared' => 'GoSquared Analytics Code', - 'analytics_piwik_url' => 'URL der Piwik-Instanz (ohne http(s)://)', - 'analytics_piwik_siteid' => 'Piwik\'s Seiten-ID', + 'analytics_google' => 'Kod Google Analytics', + 'analytics_gosquared' => 'Kod GoSquared Analytics', + 'analytics_piwik_url' => 'Adres URL Twojego Piwika (bez http(s)://)', + 'analytics_piwik_siteid' => 'ID strony Piwik', ], 'localization' => [ - 'site-timezone' => 'Zeitzone ihrer Seite', - 'site-locale' => 'Sprache ihrer Seite', - 'date-format' => 'Datumsformat', - 'incident-date-format' => 'Vorfall Zeitstempel-Format', + 'site-timezone' => 'Strefa czasowa strony', + 'site-locale' => 'Język strony', + 'date-format' => 'Format daty', + 'incident-date-format' => 'Format daty przy zdarzeniach', ], 'security' => [ - 'allowed-domains' => 'Erlaubte Domains', - 'allowed-domains-help' => 'Durch Kommata trennen. Die oben genannte Domain ist standardmäßig erlaubt.', + 'allowed-domains' => 'Dozwolone domeny', + 'allowed-domains-help' => 'Oddzielone przecinkami. Domena jest automatycznie ustawiona wyżej domyślnie, jako dozwolona.', ], 'stylesheet' => [ 'custom-css' => 'Niestandardowy arkusz stylów', ], 'theme' => [ 'background-color' => 'Kolor tła', - 'background-fills' => 'Wypełnianie tła (komponenty, wydarzenia, stopka)', - 'banner-background-color' => 'Banner Background Color', - 'banner-padding' => 'Banner Padding', - 'fullwidth-banner' => 'Enable fullwidth banner?', + 'background-fills' => 'Wypełnianie tła (komponenty, zdarzenia, stopka)', + 'banner-background-color' => 'Kolor tła pod banerem', + 'banner-padding' => 'Odstęp banera', + 'fullwidth-banner' => 'Czy wyświetlać baner na pełnej szerokości?', 'text-color' => 'Kolor tekstu', 'dashboard-login' => 'Pokazywać przycisk panelu głównego w stopce?', 'reds' => 'Czerwony (używany przy błędach)', @@ -198,22 +199,22 @@ return [ ], 'user' => [ - 'username' => 'Benutzername', + 'username' => 'Nazwa Użytkownika', 'email' => 'E-Mail', - 'password' => 'Passwort', - 'api-token' => 'API Token', - 'api-token-help' => 'Wenn sie ihren API-Token neu generieren, können bestehende Anwendungen nicht mehr auf Cachet zugreifen.', - 'gravatar' => 'Change your profile picture at Gravatar.', + 'password' => 'Hasło', + 'api-token' => 'Token API', + 'api-token-help' => 'Ponowne wygenerowanie nowego tokenu API spowoduje, że aplikacje korzystające obecnie z Cachet utracą do niego dostęp.', + 'gravatar' => 'Zmień swój awatar na Gravatar.', 'user_level' => 'Poziom użytkownika', 'levels' => [ 'admin' => 'Administrator', 'user' => 'Użytkownik', ], '2fa' => [ - 'help' => 'Die Zwei-Faktor-Authentifizierung erhöht die Sicherheit Ihres Kontos. Sie benötigen Google Authenticator oder eine ähnliche App auf Ihrem Mobilgerät. Beim Anmelden werden sie aufgefordert, einen Token einzugeben, der von der App generiert wird.', + 'help' => 'Włączenie weryfikacji dwuetapowej zwiększa bezpieczeństwo. Pobierz Google Authenticator lub podobną aplikację. Po zalogowaniu zostaniesz poproszony o podanie kodu wygenerowanego przez aplikację.', ], 'team' => [ - 'description' => 'Invite your team members by entering their email addresses here.', + 'description' => 'Zaproś nowych członków do swojego zespołu. Wpisz ich adresy e-mail tutaj.', 'email' => 'Email #:id', ], ], @@ -223,18 +224,19 @@ return [ ], // Buttons - 'add' => 'Hinzufügen', - 'save' => 'Speichern', - 'update' => 'Aktualisieren', - 'create' => 'Erstellen', - 'edit' => 'Bearbeiten', - 'delete' => 'Löschen', - 'submit' => 'Abschicken', - 'cancel' => 'Abbrechen', - 'remove' => 'Entfernen', - 'invite' => 'Zaproś', - 'signup' => 'Zarejestruj się', + 'add' => 'Dodaj', + 'save' => 'Zapisz', + 'update' => 'Zaktualizuj', + 'create' => 'Utwórz', + 'edit' => 'Edytuj', + 'delete' => 'Usuń', + 'submit' => 'Prześlij', + 'cancel' => 'Anuluj', + 'remove' => 'Skasuj', + 'invite' => 'Zaproś', + 'signup' => 'Zarejestruj się', + 'manage_updates' => 'Manage Updates', // Other - 'optional' => '* optional', + 'optional' => '* Opcjonalnie', ]; From 4075bc83e2ffbe2e9a23e5e19d74d8276777cfd5 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:17 +0000 Subject: [PATCH 019/194] New translations pagination.php (Polish) --- resources/lang/pl-PL/pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/pl-PL/pagination.php b/resources/lang/pl-PL/pagination.php index 0ee724cf..fa94fdc9 100644 --- a/resources/lang/pl-PL/pagination.php +++ b/resources/lang/pl-PL/pagination.php @@ -22,7 +22,7 @@ return [ | */ - 'previous' => 'Previous', - 'next' => 'Next', + 'previous' => 'Poprzednia', + 'next' => 'Następna', ]; From 6c756b939649521ed9acf0c75ed6dc4fd5063b22 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:18 +0000 Subject: [PATCH 020/194] New translations validation.php (Polish) --- resources/lang/pl-PL/validation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lang/pl-PL/validation.php b/resources/lang/pl-PL/validation.php index 99eab8e1..8aa098da 100644 --- a/resources/lang/pl-PL/validation.php +++ b/resources/lang/pl-PL/validation.php @@ -38,7 +38,7 @@ return [ ], 'boolean' => ':attribute musi być prawdą lub fałszem.', 'confirmed' => ':attribute potwierdzenie nie zgadza się.', - 'date' => ':attribute nie zawiera prawidłowej daty.', + 'date' => ':attribute nie jest prawidłową datą.', 'date_format' => ':attribute nie pasuje do formatu :format.', 'different' => ':attribute musi być różne od :other.', 'digits' => ':attribute musi składać się z :digits cyfr.', From 8cab2b67550cfd2c0709f34e36379e7d40fbff7d Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:19 +0000 Subject: [PATCH 021/194] New translations notifications.php (Polish) --- resources/lang/pl-PL/notifications.php | 76 +++++++++++++------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/resources/lang/pl-PL/notifications.php b/resources/lang/pl-PL/notifications.php index 6a65c6bd..50bd49f0 100644 --- a/resources/lang/pl-PL/notifications.php +++ b/resources/lang/pl-PL/notifications.php @@ -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 komponentu zaktualizowany', + 'greeting' => 'Status komponentów został zaktualizowany!', + 'content' => 'Status :name zmienił się z :old_status na :new_status.', + 'action' => 'Widok', ], 'slack' => [ - 'title' => 'Component Status Updated', - 'content' => ':name status changed from :old_status to :new_status.', + 'title' => 'Status komponentu zaktualizowany', + 'content' => 'Status :name zmienił się z :old_status na :new_status.', ], 'sms' => [ - 'content' => ':name status changed from :old_status to :new_status.', + 'content' => 'Status :name zmienił się 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' => 'Zgłoszone nowe zdarzenie', + 'greeting' => 'Nowe zdarzenie zostało zgłoszone na stronie statusu :app_name.', + 'content' => 'Zdarzenie :name została zarejestrowana', + 'action' => 'Widok', ], 'slack' => [ - 'title' => 'Incident :name Reported', - 'content' => 'A new incident was reported at :app_name', + 'title' => 'Zdarzenie :name Zgłoszono', + 'content' => 'Nowe zgłoszenie został zgłoszony w :app_name', ], 'sms' => [ - 'content' => 'A new incident was reported at :app_name.', + 'content' => 'Nowe zdarzenie zostało zgłoszone na stronie statusu :app_name.', ], ], 'update' => [ 'mail' => [ - 'subject' => 'Incident Updated', - 'content' => ':name was updated', - 'title' => ':name was updated to :new_status', - 'action' => 'View', + 'subject' => 'Zdarzenie zaktualizowane', + 'content' => ':name został zaktualizowany', + 'title' => ':name został zaktualizowany na :new_status', + 'action' => 'Widok', ], 'slack' => [ - 'title' => ':name Updated', - 'content' => ':name was updated to :new_status', + 'title' => 'Zaktualizowano :name', + 'content' => ':name został zaktualizowany na :new_status', ], 'sms' => [ - 'content' => 'Incident :name was updated', + 'content' => 'Zdarzenie :name zostało zaktualizowane', ], ], ], 'schedule' => [ 'new' => [ 'mail' => [ - 'subject' => 'New Schedule Created', - 'content' => ':name was scheduled for :date', - 'title' => 'A new scheduled maintenance was created.', - 'action' => 'View', + 'subject' => 'Harmonogram został utworzony', + 'content' => ':name zaplanowano na :date', + 'title' => 'Zaplanowana nowa konserwacje została utworzona.', + 'action' => 'Widok', ], 'slack' => [ - 'title' => 'New Schedule Created!', - 'content' => ':name was scheduled for :date', + 'title' => 'Nowy Harmonogram Utworzony!', + 'content' => ':name zaplanowano na :date', ], 'sms' => [ - 'content' => ':name was scheduled for :date', + 'content' => ':name zaplanowano 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' => 'Potwierdź subskrypcje', + 'content' => 'Kliknij żeby potwierdzić subskrypcje na stronie :app_name.', + 'title' => 'Potwierdź subskrypcję dla strony statusu :app_name.', + 'action' => 'Zweryfikuj', ], ], ], 'system' => [ 'test' => [ 'mail' => [ - 'subject' => 'Ping from Cachet!', - 'content' => 'This is a test notification from Cachet!', + 'subject' => 'Ping z Cachet!', + 'content' => 'To jest powiadomienie testowe 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' => 'Twoje zaproszenie jest w środku...', + 'content' => 'Zostałeś zaproszony do dołączenia strony statusu :app_name.', + 'title' => 'Zostałeś zaproszony do dołączenia do strony statusu :app_name.', + 'action' => 'Zatwierdź', ], ], ], From 358c62078b4b753f7cc1e861bd49f33495d9dbff Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:20 +0000 Subject: [PATCH 022/194] New translations cachet.php (Portuguese) --- resources/lang/pt-PT/cachet.php | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/lang/pt-PT/cachet.php b/resources/lang/pt-PT/cachet.php index 0e729338..b8109ed2 100644 --- a/resources/lang/pt-PT/cachet.php +++ b/resources/lang/pt-PT/cachet.php @@ -33,6 +33,7 @@ return [ 'scheduled' => 'Manutenção Agendada', 'scheduled_at' => ', agendada :timestamp', 'posted' => 'Publicado :timestamp', + 'posted_at' => 'Posted at :timestamp', 'status' => [ 1 => 'Investigando', 2 => 'Identificado', From 00bce7101e91354df052f8dc8c80d335a08f5b36 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:22 +0000 Subject: [PATCH 023/194] New translations dashboard.php (Portuguese) --- resources/lang/pt-PT/dashboard.php | 36 +++++++++++++++++++----------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/resources/lang/pt-PT/dashboard.php b/resources/lang/pt-PT/dashboard.php index 40d3f060..c5c367ed 100644 --- a/resources/lang/pt-PT/dashboard.php +++ b/resources/lang/pt-PT/dashboard.php @@ -21,7 +21,20 @@ return [ 'logged' => '{0} Não existem incidentes, bom trabalho.|Você registrou um incidente.|Você reportou :count incidentes.', 'incident-create-template' => 'Criar template', 'incident-templates' => 'Template de incidentes', - 'updates' => '{0} Nenhuma Atualização|Uma Atualização|:contagem de Atualizações', + 'updates' => [ + 'title' => 'Incident updates for :incident', + 'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,*] Several Updates', + 'add' => [ + 'title' => 'Crie uma nova atualização 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' => 'Adicionar um incidente', 'success' => 'Incidente adicionado.', @@ -36,11 +49,6 @@ return [ 'success' => 'O incidente foi apagado e não será mais mostrado na sua página de estado.', 'failure' => 'O incidente não pode ser apagado, por favor tente novamente.', ], - 'update' => [ - 'title' => 'Crie uma nova atualização de incidente', - 'subtitle' => 'Adicione uma atualização ao :incidente', - 'success' => 'Update added.', - ], // Incident templates 'templates' => [ @@ -147,13 +155,15 @@ return [ ], // Subscribers 'subscribers' => [ - 'subscribers' => 'Assinantes', - 'description' => 'Subscribers will receive email updates when incidents are created or components are updated.', - 'verified' => 'Verificado', - 'not_verified' => 'Não Verificado', - 'subscriber' => ':email, subscrito em :date', - 'no_subscriptions' => 'Subscrito em todas as atualizações', - 'add' => [ + 'subscribers' => 'Assinantes', + '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' => 'Verificado', + 'not_verified' => 'Não Verificado', + 'subscriber' => ':email, subscrito em :date', + 'no_subscriptions' => 'Subscrito em todas as atualizações', + 'global' => 'Globally subscribed', + 'add' => [ 'title' => 'Adicionar um novo assinante', 'success' => 'Assinante adicionado.', 'failure' => 'Something went wrong adding the subscriber, please try again.', From 2c01c44a8101349abcaad36a555be98ef1838312 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:23 +0000 Subject: [PATCH 024/194] New translations pagination.php (Portuguese) --- resources/lang/pt-PT/pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/pt-PT/pagination.php b/resources/lang/pt-PT/pagination.php index 0ee724cf..5599d696 100644 --- a/resources/lang/pt-PT/pagination.php +++ b/resources/lang/pt-PT/pagination.php @@ -22,7 +22,7 @@ return [ | */ - 'previous' => 'Previous', - 'next' => 'Next', + 'previous' => '« Anterior', + 'next' => 'Próximo »', ]; From 3ad9820983e22d9d2da924b93dc77d7de75979b5 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:24 +0000 Subject: [PATCH 025/194] New translations notifications.php (Portuguese) --- resources/lang/pt-PT/notifications.php | 52 +++++++++++++------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/resources/lang/pt-PT/notifications.php b/resources/lang/pt-PT/notifications.php index 6a65c6bd..4086811f 100644 --- a/resources/lang/pt-PT/notifications.php +++ b/resources/lang/pt-PT/notifications.php @@ -13,13 +13,13 @@ return [ 'component' => [ 'status_update' => [ 'mail' => [ - 'subject' => 'Component Status Updated', - 'greeting' => 'A component\'s status was updated!', + 'subject' => 'Estado do Componente Atualizado', + 'greeting' => 'O estado de um componente foi atualizado!', 'content' => ':name status changed from :old_status to :new_status.', - 'action' => 'View', + 'action' => 'Ver', ], 'slack' => [ - 'title' => 'Component Status Updated', + 'title' => 'Estado do Componente Atualizado', 'content' => ':name status changed from :old_status to :new_status.', ], 'sms' => [ @@ -30,13 +30,13 @@ return [ 'incident' => [ 'new' => [ 'mail' => [ - 'subject' => 'New Incident Reported', + 'subject' => 'Novo Incidente Reportado', 'greeting' => 'A new incident was reported at :app_name.', 'content' => 'Incident :name was reported', - 'action' => 'View', + 'action' => 'Ver', ], 'slack' => [ - 'title' => 'Incident :name Reported', + 'title' => 'Incidente: name Relatado', 'content' => 'A new incident was reported at :app_name', ], 'sms' => [ @@ -45,51 +45,51 @@ return [ ], 'update' => [ 'mail' => [ - 'subject' => 'Incident Updated', - 'content' => ':name was updated', - 'title' => ':name was updated to :new_status', - 'action' => 'View', + 'subject' => 'Incidente Atualizado', + 'content' => ':name foi actualizado', + 'title' => ': name foi atualizado para: new_status', + 'action' => 'Ver', ], 'slack' => [ - 'title' => ':name Updated', - 'content' => ':name was updated to :new_status', + 'title' => ':name Atualizado', + 'content' => ': name foi atualizado para: new_status', ], 'sms' => [ - 'content' => 'Incident :name was updated', + 'content' => 'Incidente: name foi atualizado', ], ], ], 'schedule' => [ 'new' => [ 'mail' => [ - 'subject' => 'New Schedule Created', - 'content' => ':name was scheduled for :date', + 'subject' => 'Novo Horário Criado', + 'content' => ':name foi agendado para :date', 'title' => 'A new scheduled maintenance was created.', - 'action' => 'View', + 'action' => 'Ver', ], 'slack' => [ - 'title' => 'New Schedule Created!', - 'content' => ':name was scheduled for :date', + 'title' => 'Novo Horário Criado!', + 'content' => ':name foi agendado para :date', ], 'sms' => [ - 'content' => ':name was scheduled for :date', + 'content' => ':name foi agendado para :date', ], ], ], 'subscriber' => [ 'verify' => [ 'mail' => [ - 'subject' => 'Verify Your Subscription', + 'subject' => 'Verifique A Sua Subscricao', 'content' => 'Click to verify your subscription to :app_name status page.', 'title' => 'Verify your subscription to :app_name status page.', - 'action' => 'Verify', + 'action' => 'Verificar', ], ], ], 'system' => [ 'test' => [ 'mail' => [ - 'subject' => 'Ping from Cachet!', + 'subject' => 'Ping do Cachet!', 'content' => 'This is a test notification from 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' => 'O seu convite está dentro...', + 'content' => 'Você foi convidado para se juntar :app_name pagina de status.', 'title' => 'You\'re invited to join :app_name status page.', - 'action' => 'Accept', + 'action' => 'Aceitar', ], ], ], From a0513bd450c95943c4a7b1f6b7965b8ebe1a42f4 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:25 +0000 Subject: [PATCH 026/194] New translations cachet.php (Portuguese, Brazilian) --- resources/lang/pt-BR/cachet.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/lang/pt-BR/cachet.php b/resources/lang/pt-BR/cachet.php index 496c0cb2..f1245d51 100644 --- a/resources/lang/pt-BR/cachet.php +++ b/resources/lang/pt-BR/cachet.php @@ -29,10 +29,11 @@ return [ 'incidents' => [ 'none' => 'Nenhum incidente reportado', 'past' => 'Incidentes anteriores', - 'stickied' => 'Incidentes Persistentes', + 'stickied' => 'Incidentes Fixados', 'scheduled' => 'Manutenção Agendada', 'scheduled_at' => ', agendada :timestamp', 'posted' => 'Postado :timestamp', + 'posted_at' => 'Posted at :timestamp', 'status' => [ 1 => 'Investigando', 2 => 'Identificado', From 6138bd3d578816a5daf8ceef3f3814e23719b769 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:27 +0000 Subject: [PATCH 027/194] New translations dashboard.php (Portuguese, Brazilian) --- resources/lang/pt-BR/dashboard.php | 40 +++++++++++++++++++----------- 1 file changed, 25 insertions(+), 15 deletions(-) diff --git a/resources/lang/pt-BR/dashboard.php b/resources/lang/pt-BR/dashboard.php index 2b9ea604..ce62515e 100644 --- a/resources/lang/pt-BR/dashboard.php +++ b/resources/lang/pt-BR/dashboard.php @@ -12,7 +12,7 @@ return [ 'dashboard' => 'Dashboard', - 'writeable_settings' => 'O diretório configurações do Cachet não é gravável. Certifique-se de que./bootstrap/cachet é gravável pelo servidor web.', + 'writeable_settings' => 'O diretório de configurações do Cachet não é gravável. Certifique-se de que./bootstrap/cachet é gravável pelo servidor web.', // Incidents 'incidents' => [ @@ -21,7 +21,20 @@ return [ 'logged' => '{0} Não existem incidentes, bom trabalho.|Você registrou um incidente.|Você reportou :count incidentes.', 'incident-create-template' => 'Criar template', 'incident-templates' => 'Template de incidentes', - 'updates' => '{0} Nenhuma Atualização|Uma Atualização|:contagem de Atualizações', + 'updates' => [ + 'title' => 'Incident updates for :incident', + 'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,*] Several Updates', + 'add' => [ + 'title' => 'Crie uma nova atualização 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' => 'Relatar um incidente', 'success' => 'Incidente adicionado.', @@ -36,11 +49,6 @@ return [ 'success' => 'O incidente foi excluído e não aparecerá na sua página de status.', 'failure' => 'O incidente não pode ser excluído, por favor tente novamente.', ], - 'update' => [ - 'title' => 'Crie uma nova atualização de incidente', - 'subtitle' => 'Adicione uma atualização ao :incidente', - 'success' => 'Update added.', - ], // Incident templates 'templates' => [ @@ -147,13 +155,15 @@ return [ ], // Subscribers 'subscribers' => [ - 'subscribers' => 'Assinantes', - 'description' => 'Assinantes vão receber atualizações de e-mail quando incidentes criados ou componentes atualizados.', - 'verified' => 'Verificado', - 'not_verified' => 'Não verificado', - 'subscriber' => ':email, inscreveu-se em :date', - 'no_subscriptions' => 'Inscrito em todas as atualizações', - 'add' => [ + 'subscribers' => 'Assinantes', + 'description' => 'Assinantes vão receber atualizações de e-mail quando incidentes criados ou componentes atualizados.', + 'description_disabled' => 'To use this feature, you need allow people to signup for notifications.', + 'verified' => 'Verificado', + 'not_verified' => 'Não verificado', + 'subscriber' => ':email, inscreveu-se em :date', + 'no_subscriptions' => 'Inscrito em todas as atualizações', + 'global' => 'Globally subscribed', + 'add' => [ 'title' => 'Adicionar um novo assinante', 'success' => 'Inscrito adicionado.', 'failure' => 'Algo deu errado adicionando o assinante, por favor tente novamente.', @@ -205,7 +215,7 @@ return [ 'analytics' => 'Estatísticas', ], 'log' => [ - 'log' => 'Registro de eventos', + 'log' => 'Log', ], 'localization' => [ 'localization' => 'Idioma', From 939af2177d63929d7736919bb052bca2202a253f Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:28 +0000 Subject: [PATCH 028/194] New translations forms.php (Portuguese, Brazilian) --- resources/lang/pt-BR/forms.php | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/resources/lang/pt-BR/forms.php b/resources/lang/pt-BR/forms.php index b37bfadb..de5a7d74 100644 --- a/resources/lang/pt-BR/forms.php +++ b/resources/lang/pt-BR/forms.php @@ -41,7 +41,7 @@ return [ 'invalid-token' => 'Token inválido', 'cookies' => 'Você deve habilitar os cookies do navegador para logar.', 'rate-limit' => 'Limite de acesso excedido.', - 'remember_me' => 'Lembre-me', + 'remember_me' => 'Lembrar-me', ], // Incidents form fields @@ -71,7 +71,7 @@ return [ 'status' => 'Status', 'message' => 'Mensagem', 'message-help' => 'Você também pode usar o Markdown.', - 'scheduled_at' => 'Quando é essa manutenção programada para?', + 'scheduled_at' => 'Está manutenção foi programada para quando?', 'completed_at' => 'Quando essa manutenção foi concluída?', 'templates' => [ 'name' => 'Nome', @@ -151,8 +151,9 @@ return [ 'display-graphs' => 'Exibir gráficos na página de status?', 'about-this-page' => 'Sobre esta página', 'days-of-incidents' => 'Quantos dias de incidentes para mostrar?', + 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => 'Imagem do banner', - 'banner-help' => 'É recomendável que você faça upload de arquivos menores que 930px .', + 'banner-help' => "É recomendável que você faça upload de arquivos menores que 930px .", 'subscribers' => 'Permitir que outras pessoas se cadastrem para notificações via e-mail?', 'skip_subscriber_verification' => 'Ignorar verificação de usuários? (Cuidado, você pode sofrer com spams)', 'automatic_localization' => 'Localizar sua página de status de acordo com o idioma do visitante automaticamente?', @@ -223,17 +224,18 @@ return [ ], // Buttons - 'add' => 'Adicionar', - 'save' => 'Salvar', - 'update' => 'Atualizar', - 'create' => 'Criar', - 'edit' => 'Editar', - 'delete' => 'Apagar', - 'submit' => 'Enviar', - 'cancel' => 'Cancelar', - 'remove' => 'Remover', - 'invite' => 'Convite', - 'signup' => 'Cadastrar-se', + 'add' => 'Adicionar', + 'save' => 'Salvar', + 'update' => 'Atualizar', + 'create' => 'Criar', + 'edit' => 'Editar', + 'delete' => 'Apagar', + 'submit' => 'Enviar', + 'cancel' => 'Cancelar', + 'remove' => 'Remover', + 'invite' => 'Convite', + 'signup' => 'Cadastrar-se', + 'manage_updates' => 'Manage Updates', // Other 'optional' => '* Opcional', From 1834f55e2cb83b1a6c2933859dbbade6ab8e61c4 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:29 +0000 Subject: [PATCH 029/194] New translations pagination.php (Portuguese, Brazilian) --- resources/lang/pt-BR/pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/pt-BR/pagination.php b/resources/lang/pt-BR/pagination.php index 0ee724cf..c2989a04 100644 --- a/resources/lang/pt-BR/pagination.php +++ b/resources/lang/pt-BR/pagination.php @@ -22,7 +22,7 @@ return [ | */ - 'previous' => 'Previous', - 'next' => 'Next', + 'previous' => 'Anterior', + 'next' => 'Próximo', ]; From dea5be0119adac7765ee5e0e9c1b6ed8dc1850a2 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:31 +0000 Subject: [PATCH 030/194] New translations notifications.php (Portuguese, Brazilian) --- resources/lang/pt-BR/notifications.php | 76 +++++++++++++------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/resources/lang/pt-BR/notifications.php b/resources/lang/pt-BR/notifications.php index 6a65c6bd..de6b7bea 100644 --- a/resources/lang/pt-BR/notifications.php +++ b/resources/lang/pt-BR/notifications.php @@ -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 do Componente Atualizado', + 'greeting' => 'O status de um componente foi atualizado!', + 'content' => 'O status de :name mudou de :old_status para :new_status.', + 'action' => 'Visualizar', ], 'slack' => [ - 'title' => 'Component Status Updated', - 'content' => ':name status changed from :old_status to :new_status.', + 'title' => 'Status do Componente Atualizado', + 'content' => 'O status de :name mudou de :old_status para :new_status.', ], 'sms' => [ - 'content' => ':name status changed from :old_status to :new_status.', + 'content' => 'O status de :name mudou de :old_status para :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' => 'Novo incidente Reportado', + 'greeting' => 'Um novo incidente foi reportado em :app_name.', + 'content' => 'O Incidente :name foi reportado', + 'action' => 'Visualizar', ], 'slack' => [ - 'title' => 'Incident :name Reported', - 'content' => 'A new incident was reported at :app_name', + 'title' => 'Incidente :name Reportado', + 'content' => 'Um novo incidente foi reportado em :app_name', ], 'sms' => [ - 'content' => 'A new incident was reported at :app_name.', + 'content' => 'Um novo incidente foi reportado em :app_name.', ], ], 'update' => [ 'mail' => [ - 'subject' => 'Incident Updated', - 'content' => ':name was updated', - 'title' => ':name was updated to :new_status', - 'action' => 'View', + 'subject' => 'Incidente Atualizado', + 'content' => ':name foi atualizado', + 'title' => ':name foi atualizado para :new_status', + 'action' => 'Visualizar', ], 'slack' => [ - 'title' => ':name Updated', - 'content' => ':name was updated to :new_status', + 'title' => ':name atualizado', + 'content' => ':name foi atualizado para :new_status', ], 'sms' => [ - 'content' => 'Incident :name was updated', + 'content' => 'Incidente :nome foi atualizado', ], ], ], 'schedule' => [ 'new' => [ 'mail' => [ - 'subject' => 'New Schedule Created', - 'content' => ':name was scheduled for :date', - 'title' => 'A new scheduled maintenance was created.', - 'action' => 'View', + 'subject' => 'Novo Agendamento Criado', + 'content' => ':name foi agendado para :date', + 'title' => 'Uma nova manutenção agendada foi criada.', + 'action' => 'Visualizar', ], 'slack' => [ - 'title' => 'New Schedule Created!', - 'content' => ':name was scheduled for :date', + 'title' => 'Novo Agendamento Criado!', + 'content' => ':name foi agendado para :date', ], 'sms' => [ - 'content' => ':name was scheduled for :date', + 'content' => ':name foi agendado 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' => 'Verificar a sua inscrição', + 'content' => 'Clique para verificar sua inscrição na página de status de :app_name.', + 'title' => 'Verificar sua inscrição na página de status de :app_name.', + 'action' => 'Verificar', ], ], ], 'system' => [ 'test' => [ 'mail' => [ - 'subject' => 'Ping from Cachet!', - 'content' => 'This is a test notification from Cachet!', + 'subject' => 'Ping do Cachet!', + 'content' => 'Esta é uma notificação de teste do 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' => 'Seu convite está aqui dentro...', + 'content' => 'Você foi convidado a juntar-se a página de status de :app_name.', + 'title' => 'Você está convidado a juntar-se a página de status de :app_name.', + 'action' => 'Aceitar', ], ], ], From 48b4d3e4558d4286727256ad0e3e68868b37a79e Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:32 +0000 Subject: [PATCH 031/194] New translations cachet.php (Romanian) --- resources/lang/ro-RO/cachet.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/resources/lang/ro-RO/cachet.php b/resources/lang/ro-RO/cachet.php index cf4b9b7f..ef1f39ec 100644 --- a/resources/lang/ro-RO/cachet.php +++ b/resources/lang/ro-RO/cachet.php @@ -14,7 +14,7 @@ return [ 'components' => [ 'last_updated' => 'Ultima actualizare :timestamp', 'status' => [ - 0 => 'Unknown', + 0 => 'Necunoscut', 1 => 'Operaţional', 2 => 'Probleme de performanţă', 3 => 'Ȋntrerupere parțială', @@ -33,6 +33,7 @@ return [ 'scheduled' => 'Întreținere programată', 'scheduled_at' => ', programată: timestamp', 'posted' => 'Publicat :timestamp', + 'posted_at' => 'Posted at :timestamp', 'status' => [ 1 => 'Sub investigație', 2 => 'Identificat', @@ -44,9 +45,9 @@ return [ // Schedule 'schedules' => [ 'status' => [ - 0 => 'Upcoming', - 1 => 'In Progress', - 2 => 'Complete', + 0 => 'Urmează', + 1 => 'În progres', + 2 => 'Terminat', ], ], @@ -75,7 +76,7 @@ return [ // Subscriber 'subscriber' => [ 'subscribe' => 'Abonează-te pentru a primi cele mai recente actualizări', - 'unsubscribe' => 'Unsubscribe at :link', + 'unsubscribe' => 'Dezabonare de la :link', 'button' => 'Abonează-te', 'manage' => [ 'no_subscriptions' => 'Acum eşti abonat la toate actualizările.', From d7e59df7ac72697030676f8532d99e3257c27394 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:33 +0000 Subject: [PATCH 032/194] New translations dashboard.php (Romanian) --- resources/lang/ro-RO/dashboard.php | 36 +++++++++++++++++++----------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/resources/lang/ro-RO/dashboard.php b/resources/lang/ro-RO/dashboard.php index eddc8d64..a4a142bf 100644 --- a/resources/lang/ro-RO/dashboard.php +++ b/resources/lang/ro-RO/dashboard.php @@ -21,7 +21,20 @@ return [ 'logged' => '{0} Nu sunt incidente, bravo! | Ai adăugat un incident. | Ai raportat :count incidente.', 'incident-create-template' => 'Crează şablon', 'incident-templates' => 'Şabloane incident', - 'updates' => '{0} Nicio actualizare|O actualizare|:count Actualizări', + 'updates' => [ + 'title' => 'Incident updates for :incident', + 'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,*] Several Updates', + 'add' => [ + 'title' => 'Adaugă o nouă actualizare a incidentului', + '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' => 'Raportează un incident', 'success' => 'Incidentul a fost adăugat.', @@ -36,11 +49,6 @@ return [ 'success' => 'Incidentul a fost şters şi nu va mai apărea pe pagina de status.', 'failure' => 'Incidentul nu a putut fi şters, vă rugăm încercaţi din nou.', ], - 'update' => [ - 'title' => 'Adaugă o nouă actualizare a incidentului', - 'subtitle' => 'Adaugă o actualizare la :incident', - 'success' => 'Update added.', - ], // Incident templates 'templates' => [ @@ -147,13 +155,15 @@ return [ ], // Subscribers 'subscribers' => [ - 'subscribers' => 'Abonați', - 'description' => 'Abonații vor primi actualizări prin email când incidente noi sunt adăugate sau componentele sunt actualizate.', - 'verified' => 'Verificat', - 'not_verified' => 'Neverificat', - 'subscriber' => ':email, abonat la :date', - 'no_subscriptions' => 'Ați fost abonat la toate actualizările', - 'add' => [ + 'subscribers' => 'Abonați', + 'description' => 'Abonații vor primi actualizări prin email când incidente noi sunt adăugate sau componentele sunt actualizate.', + 'description_disabled' => 'To use this feature, you need allow people to signup for notifications.', + 'verified' => 'Verificat', + 'not_verified' => 'Neverificat', + 'subscriber' => ':email, abonat la :date', + 'no_subscriptions' => 'Ați fost abonat la toate actualizările', + 'global' => 'Globally subscribed', + 'add' => [ 'title' => 'Adaugă un nou abonat', 'success' => 'Abonatul a fost adăugat!', 'failure' => 'Ceva nu a funcționat legat de adăugarea abonatului, vă rugăm încercați din nou.', From 9ad1fe0f358e867e94ef19c816ab2ecd4aae9722 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:34 +0000 Subject: [PATCH 033/194] New translations forms.php (Persian) --- resources/lang/fa-IR/forms.php | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/resources/lang/fa-IR/forms.php b/resources/lang/fa-IR/forms.php index 2b395579..ce6bede7 100644 --- a/resources/lang/fa-IR/forms.php +++ b/resources/lang/fa-IR/forms.php @@ -151,8 +151,9 @@ return [ 'display-graphs' => 'نمودار(گراف) در صفحه وضعیت نمایش داده شود؟', 'about-this-page' => 'درباره این صفحه', 'days-of-incidents' => 'چند روز از رویداد‌ها نمایش داده شوند؟', + 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => 'تصویر بنر', - 'banner-help' => 'پیشنهاد می‌شود که شما تصاویری با پهنای بیشتر از 930px آپلود نکنید.', + 'banner-help' => "پیشنهاد می‌شود که شما تصاویری با پهنای بیشتر از 930px آپلود نکنید.", 'subscribers' => 'آیا به کاربران اجازه ثبت‌‌نام برای اعلان‌های ایمیلی داده شود؟', 'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)', 'automatic_localization' => 'به صورت خودکار صفحه وضعیت به زبان مشاهده‌کنندگان تغییر زبان دهد؟', @@ -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' => '* اختیاری', From 0e1218e22de905990d63ba372c3eee1c5549445e Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:35 +0000 Subject: [PATCH 034/194] New translations pagination.php (Romanian) --- resources/lang/ro-RO/pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/ro-RO/pagination.php b/resources/lang/ro-RO/pagination.php index 0ee724cf..aea9a98d 100644 --- a/resources/lang/ro-RO/pagination.php +++ b/resources/lang/ro-RO/pagination.php @@ -22,7 +22,7 @@ return [ | */ - 'previous' => 'Previous', - 'next' => 'Next', + 'previous' => 'Precedentul', + 'next' => 'Următorul', ]; From cc64dbc0aee58ea0fa68a5e9a80ba30e6a258394 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:37 +0000 Subject: [PATCH 035/194] New translations dashboard.php (Korean) --- resources/lang/ko-KR/dashboard.php | 48 ++++++++++++++++++------------ 1 file changed, 29 insertions(+), 19 deletions(-) diff --git a/resources/lang/ko-KR/dashboard.php b/resources/lang/ko-KR/dashboard.php index ce658c74..c9a4a259 100644 --- a/resources/lang/ko-KR/dashboard.php +++ b/resources/lang/ko-KR/dashboard.php @@ -21,7 +21,20 @@ return [ 'logged' => '{0} 아무 문제가 없습니다, 잘하고 있어요.|하나의 문제에 대한 로깅이 있습니다.|:count 개의 문제가 리포트 되었습니다.', '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 :incident', - '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 Patreon 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' => '문제 만들기', From 14009b2fb8ee39dedb8ea5b29ab8f56fa5e69e94 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:38 +0000 Subject: [PATCH 036/194] New translations pagination.php (Italian) --- resources/lang/it-IT/pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/it-IT/pagination.php b/resources/lang/it-IT/pagination.php index 0ee724cf..736a69f3 100644 --- a/resources/lang/it-IT/pagination.php +++ b/resources/lang/it-IT/pagination.php @@ -22,7 +22,7 @@ return [ | */ - 'previous' => 'Previous', - 'next' => 'Next', + 'previous' => 'Precedente', + 'next' => 'Successivo', ]; From 17969f5d744e0e254fa0c863afdf7022e84accbc Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:39 +0000 Subject: [PATCH 037/194] New translations validation.php (Italian) --- resources/lang/it-IT/validation.php | 60 ++++++++++++++--------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/resources/lang/it-IT/validation.php b/resources/lang/it-IT/validation.php index 33e17e05..56350c32 100644 --- a/resources/lang/it-IT/validation.php +++ b/resources/lang/it-IT/validation.php @@ -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.', From 5ee422c1c9198175dce03bd640da7342e65c93bc Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:40 +0000 Subject: [PATCH 038/194] New translations notifications.php (Italian) --- resources/lang/it-IT/notifications.php | 76 +++++++++++++------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/resources/lang/it-IT/notifications.php b/resources/lang/it-IT/notifications.php index 6a65c6bd..8ac963cb 100644 --- a/resources/lang/it-IT/notifications.php +++ b/resources/lang/it-IT/notifications.php @@ -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', ], ], ], From 4f459ad56b378e410acb2186ac9abf6f50431948 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:42 +0000 Subject: [PATCH 039/194] New translations cachet.php (Japanese) --- resources/lang/ja-JP/cachet.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/resources/lang/ja-JP/cachet.php b/resources/lang/ja-JP/cachet.php index 0dd08d1f..cb346a2b 100644 --- a/resources/lang/ja-JP/cachet.php +++ b/resources/lang/ja-JP/cachet.php @@ -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.', From 8efb8396ff864cfb84cebaddc3e7d750a6c29851 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:43 +0000 Subject: [PATCH 040/194] New translations dashboard.php (Japanese) --- resources/lang/ja-JP/dashboard.php | 36 +++++++++++++++++++----------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/resources/lang/ja-JP/dashboard.php b/resources/lang/ja-JP/dashboard.php index 41b66b88..ba5da674 100644 --- a/resources/lang/ja-JP/dashboard.php +++ b/resources/lang/ja-JP/dashboard.php @@ -21,7 +21,20 @@ return [ 'logged' => '{0} 良いですね。インシデントはありません。|インシデントを1件登録しました。|あなたはインシデントを :count 件 報告しています。', '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 :incident', - '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.', From 1a560522bcc9306a8a27fe755e2eced155a918c4 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:44 +0000 Subject: [PATCH 041/194] New translations forms.php (Japanese) --- resources/lang/ja-JP/forms.php | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/resources/lang/ja-JP/forms.php b/resources/lang/ja-JP/forms.php index 7052092b..f4bbf16e 100644 --- a/resources/lang/ja-JP/forms.php +++ b/resources/lang/ja-JP/forms.php @@ -151,8 +151,9 @@ 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以内の画像をアップロードしてください。', + 'banner-help' => "横幅が930px以内の画像をアップロードしてください。", 'subscribers' => 'Allow people to signup to email notifications?', '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?', @@ -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' => '※ 任意', From a38a22e947eb40bb0bb1b521cb521a591c384e7f Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:45 +0000 Subject: [PATCH 042/194] New translations pagination.php (Japanese) --- resources/lang/ja-JP/pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/ja-JP/pagination.php b/resources/lang/ja-JP/pagination.php index 0ee724cf..65f9eafe 100644 --- a/resources/lang/ja-JP/pagination.php +++ b/resources/lang/ja-JP/pagination.php @@ -22,7 +22,7 @@ return [ | */ - 'previous' => 'Previous', - 'next' => 'Next', + 'previous' => '前へ', + 'next' => '次へ', ]; From 2e5e35eb7e5a12bd1f069c5309f673184be7d728 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:46 +0000 Subject: [PATCH 043/194] New translations setup.php (Japanese) --- resources/lang/ja-JP/setup.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/lang/ja-JP/setup.php b/resources/lang/ja-JP/setup.php index 9af6bf62..ea387740 100644 --- a/resources/lang/ja-JP/setup.php +++ b/resources/lang/ja-JP/setup.php @@ -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' => 'ダッシュボード画面に移動', ]; From 230b66aa6f6167779d8b94f4c5364f8deeb1fff3 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:47 +0000 Subject: [PATCH 044/194] New translations notifications.php (Japanese) --- resources/lang/ja-JP/notifications.php | 76 +++++++++++++------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/resources/lang/ja-JP/notifications.php b/resources/lang/ja-JP/notifications.php index 6a65c6bd..32817bb5 100644 --- a/resources/lang/ja-JP/notifications.php +++ b/resources/lang/ja-JP/notifications.php @@ -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' => '同意', ], ], ], From c6c74b209486ce95bc0ac83bb32a7612af06b52d Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:48 +0000 Subject: [PATCH 045/194] New translations cachet.php (Korean) --- resources/lang/ko-KR/cachet.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/resources/lang/ko-KR/cachet.php b/resources/lang/ko-KR/cachet.php index 4e0995c8..ad8be5e2 100644 --- a/resources/lang/ko-KR/cachet.php +++ b/resources/lang/ko-KR/cachet.php @@ -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 here!', + 'update' => 'Cachet 새 버전이 나왔습니다. 업데이트 방법은 여기서 확인할 수 있습니다!', ], // Modal From 179b06366a662885cf918d383bfe569faf6c34df Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:49 +0000 Subject: [PATCH 046/194] New translations forms.php (Korean) --- resources/lang/ko-KR/forms.php | 86 +++++++++++++++++----------------- 1 file changed, 44 insertions(+), 42 deletions(-) diff --git a/resources/lang/ko-KR/forms.php b/resources/lang/ko-KR/forms.php index bc889e76..58641f91 100644 --- a/resources/lang/ko-KR/forms.php +++ b/resources/lang/ko-KR/forms.php @@ -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,13 +146,14 @@ 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 픽셀보다 작은 이미지를 업로드 하는 것을 권장합니다.', + 'banner-help' => "가로가 930 픽셀보다 작은 이미지를 업로드 하는 것을 권장합니다.", 'subscribers' => '이메일 알림을 받기 위한 회원가입 허용', '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?', @@ -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' => '* 선택사항', From 09ebe0560ac81fe6886ef30233b2d30a2c88c418 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:51 +0000 Subject: [PATCH 047/194] New translations dashboard.php (Persian) --- resources/lang/fa-IR/dashboard.php | 36 +++++++++++++++++++----------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/resources/lang/fa-IR/dashboard.php b/resources/lang/fa-IR/dashboard.php index 60f2387f..4ddeaddd 100644 --- a/resources/lang/fa-IR/dashboard.php +++ b/resources/lang/fa-IR/dashboard.php @@ -21,7 +21,20 @@ return [ 'logged' => '{0} There are no incidents, good work.|You have logged one incident.|You have reported :count 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 :incident', - '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.', From ad36341400d5c91d453d9fd96c682fefe9346e6f Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:51 +0000 Subject: [PATCH 048/194] New translations pagination.php (Korean) --- resources/lang/ko-KR/pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/ko-KR/pagination.php b/resources/lang/ko-KR/pagination.php index 0ee724cf..6c89ecad 100644 --- a/resources/lang/ko-KR/pagination.php +++ b/resources/lang/ko-KR/pagination.php @@ -22,7 +22,7 @@ return [ | */ - 'previous' => 'Previous', - 'next' => 'Next', + 'previous' => '이전', + 'next' => '다음', ]; From bc304c8d224dca9c0b10208a52844f7edfcbe1e8 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:53 +0000 Subject: [PATCH 049/194] New translations notifications.php (Korean) --- resources/lang/ko-KR/notifications.php | 36 +++++++++++++------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/resources/lang/ko-KR/notifications.php b/resources/lang/ko-KR/notifications.php index 6a65c6bd..3d8b5a9f 100644 --- a/resources/lang/ko-KR/notifications.php +++ b/resources/lang/ko-KR/notifications.php @@ -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' => '수락하기', ], ], ], From cd27ba590da6629c8c24682f65ce296498a9d9ea Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:54 +0000 Subject: [PATCH 050/194] New translations cachet.php (Norwegian) --- resources/lang/no-NO/cachet.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/resources/lang/no-NO/cachet.php b/resources/lang/no-NO/cachet.php index c3db7916..55837c94 100644 --- a/resources/lang/no-NO/cachet.php +++ b/resources/lang/no-NO/cachet.php @@ -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', ], ], From 5cad818009b90d3e0c81f9e66107c0a9eabbfc68 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:55 +0000 Subject: [PATCH 051/194] New translations dashboard.php (Norwegian) --- resources/lang/no-NO/dashboard.php | 38 +++++++++++++++++++----------- 1 file changed, 24 insertions(+), 14 deletions(-) diff --git a/resources/lang/no-NO/dashboard.php b/resources/lang/no-NO/dashboard.php index ca295d3e..ce905520 100644 --- a/resources/lang/no-NO/dashboard.php +++ b/resources/lang/no-NO/dashboard.php @@ -21,7 +21,20 @@ return [ 'logged' => '{0} Det er ingen hendelser, bra jobbet.|Du har en logget hendelse.|Du har rapportert :count hendelser.', 'incident-create-template' => 'Opprett mal', 'incident-templates' => 'Hendelsesmaler', - 'updates' => '{0} null oppdateringer | Én oppdatering |: telle oppdateringer', + 'updates' => [ + 'title' => 'Incident updates for :incident', + 'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,*] Several Updates', + 'add' => [ + 'title' => 'Opprett ny hendelseoppdatering', + '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' => 'Rapportere en hendelse', 'success' => 'Hendelse lagt til.', @@ -36,11 +49,6 @@ return [ 'success' => 'Hendelsen er slettet og vil ikke vises på statussiden din.', 'failure' => 'Hendelsen kunne ikke slettes, prøv igjen.', ], - 'update' => [ - 'title' => 'Opprett ny hendelseoppdatering', - 'subtitle' => 'Legge til oppdatering av : hendelsen', - 'success' => 'Update added.', - ], // Incident templates 'templates' => [ @@ -147,13 +155,15 @@ return [ ], // Subscribers 'subscribers' => [ - 'subscribers' => 'Abonnenter', - 'description' => 'Abonnenter mottar e-postoppdateringer når hendelser opprettes eller komponenter er oppdatert.', - 'verified' => 'Verifisert', - 'not_verified' => 'Ikke verifisert', - 'subscriber' => ': e-post, abonnert: dato', - 'no_subscriptions' => 'Abonnerer på alle oppdateringer', - 'add' => [ + 'subscribers' => 'Abonnenter', + 'description' => 'Abonnenter mottar e-postoppdateringer når hendelser opprettes eller komponenter er oppdatert.', + 'description_disabled' => 'To use this feature, you need allow people to signup for notifications.', + 'verified' => 'Verifisert', + 'not_verified' => 'Ikke verifisert', + 'subscriber' => ': e-post, abonnert: dato', + 'no_subscriptions' => 'Abonnerer på alle oppdateringer', + 'global' => 'Globally subscribed', + 'add' => [ 'title' => 'Legge til en ny abonnent', 'success' => 'Abonnenten er lagt til!', 'failure' => 'Noe gikk galt med å legge til abonnenten, prøv igjen.', @@ -216,7 +226,7 @@ return [ 'footer' => 'Egendefinert bunntekst HTML', ], 'mail' => [ - 'mail' => 'Mail', + 'mail' => 'E-post', 'test' => 'Test', 'email' => [ 'subject' => 'Test notification from Cachet', From ca0a7042907582481196ece2d4b260f50510b973 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:56 +0000 Subject: [PATCH 052/194] New translations forms.php (Norwegian) --- resources/lang/no-NO/forms.php | 34 ++++++++++++++++++---------------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/resources/lang/no-NO/forms.php b/resources/lang/no-NO/forms.php index e1110fc6..5619b9f2 100644 --- a/resources/lang/no-NO/forms.php +++ b/resources/lang/no-NO/forms.php @@ -41,7 +41,7 @@ return [ 'invalid-token' => 'Ugyldig token', 'cookies' => 'Du må aktivere informasjonskapsler for å logge inn.', 'rate-limit' => 'Hyppighetsgrense overskredet.', - 'remember_me' => 'Remember me', + 'remember_me' => 'Husk meg', ], // Incidents form fields @@ -51,7 +51,7 @@ return [ 'component' => 'Komponent', 'message' => 'Melding', 'message-help' => 'Du kan også bruke Markdown.', - 'occurred_at' => 'When did this incident occur?', + 'occurred_at' => 'Når inntraff denne hendelsen?', 'notify_subscribers' => 'Varsle abonnenter?', 'visibility' => 'Hendelsens synlighet', 'stick_status' => 'Lim hendelsen', @@ -134,8 +134,8 @@ return [ 'threshold' => 'Hvor mange minutter på terskel mellom metriske punkter?', 'visibility' => 'Synlighet', 'visibility_authenticated' => 'Visible to authenticated users', - 'visibility_public' => 'Visible to everybody', - 'visibility_hidden' => 'Always hidden', + 'visibility_public' => 'Synlig for alle', + 'visibility_hidden' => 'Alltid skjult', 'points' => [ 'value' => 'Verdi', @@ -151,8 +151,9 @@ return [ 'display-graphs' => 'Vis grafer på statussiden?', 'about-this-page' => 'Om denne siden', 'days-of-incidents' => 'Hvor mange dagers hendelser vises?', + 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => 'Bannerbilde', - 'banner-help' => 'Det anbefales at du ikke laster opp bilder bredere enn 930 piksler.', + 'banner-help' => "Det anbefales at du ikke laster opp bilder bredere enn 930 piksler.", 'subscribers' => 'Tillatt brukere å melde seg inn for epostvarslinger?', 'skip_subscriber_verification' => 'Hopp over kontroll av brukere? (Vær advart, du kunne bli spammet)', 'automatic_localization' => 'Automatisk lokaliser statussiden til besøkendes språk?', @@ -223,17 +224,18 @@ return [ ], // Buttons - 'add' => 'Legg til', - 'save' => 'Lagre', - 'update' => 'Oppdater', - 'create' => 'Opprett', - 'edit' => 'Rediger', - 'delete' => 'Slett', - 'submit' => 'Send', - 'cancel' => 'Avbryt', - 'remove' => 'Fjern', - 'invite' => 'Inviter', - 'signup' => 'Registerer deg', + 'add' => 'Legg til', + 'save' => 'Lagre', + 'update' => 'Oppdater', + 'create' => 'Opprett', + 'edit' => 'Rediger', + 'delete' => 'Slett', + 'submit' => 'Send', + 'cancel' => 'Avbryt', + 'remove' => 'Fjern', + 'invite' => 'Inviter', + 'signup' => 'Registerer deg', + 'manage_updates' => 'Manage Updates', // Other 'optional' => '* Valgfritt', From fe46a812936dac541f545c9699f1f7906d46f012 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:57 +0000 Subject: [PATCH 053/194] New translations pagination.php (Norwegian) --- resources/lang/no-NO/pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/no-NO/pagination.php b/resources/lang/no-NO/pagination.php index 0ee724cf..466ef5db 100644 --- a/resources/lang/no-NO/pagination.php +++ b/resources/lang/no-NO/pagination.php @@ -22,7 +22,7 @@ return [ | */ - 'previous' => 'Previous', - 'next' => 'Next', + 'previous' => 'Forrige', + 'next' => 'Neste', ]; From 4e5852db60ad3f15e48e5e160ac5cb4fe85e6098 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:58 +0000 Subject: [PATCH 054/194] New translations notifications.php (Norwegian) --- resources/lang/no-NO/notifications.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/resources/lang/no-NO/notifications.php b/resources/lang/no-NO/notifications.php index 6a65c6bd..e3af9bc9 100644 --- a/resources/lang/no-NO/notifications.php +++ b/resources/lang/no-NO/notifications.php @@ -16,7 +16,7 @@ return [ 'subject' => 'Component Status Updated', 'greeting' => 'A component\'s status was updated!', 'content' => ':name status changed from :old_status to :new_status.', - 'action' => 'View', + 'action' => 'Vis', ], 'slack' => [ 'title' => 'Component Status Updated', @@ -33,7 +33,7 @@ return [ 'subject' => 'New Incident Reported', 'greeting' => 'A new incident was reported at :app_name.', 'content' => 'Incident :name was reported', - 'action' => 'View', + 'action' => 'Vis', ], 'slack' => [ 'title' => 'Incident :name Reported', @@ -45,13 +45,13 @@ return [ ], 'update' => [ 'mail' => [ - 'subject' => 'Incident Updated', + 'subject' => 'Hendelse oppdatert', 'content' => ':name was updated', 'title' => ':name was updated to :new_status', - 'action' => 'View', + 'action' => 'Vis', ], 'slack' => [ - 'title' => ':name Updated', + 'title' => ':name oppdatert', 'content' => ':name was updated to :new_status', ], 'sms' => [ @@ -65,7 +65,7 @@ return [ 'subject' => 'New Schedule Created', 'content' => ':name was scheduled for :date', 'title' => 'A new scheduled maintenance was created.', - 'action' => 'View', + 'action' => 'Vis', ], 'slack' => [ 'title' => 'New Schedule Created!', @@ -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' => 'Bekreft', ], ], ], @@ -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' => 'Aksepter', ], ], ], From 2b9302a76586130a9b02876cdda7d8e81caa6efa Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:05:59 +0000 Subject: [PATCH 055/194] New translations cachet.php (Persian) --- resources/lang/fa-IR/cachet.php | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/lang/fa-IR/cachet.php b/resources/lang/fa-IR/cachet.php index 03441682..b8e6b031 100644 --- a/resources/lang/fa-IR/cachet.php +++ b/resources/lang/fa-IR/cachet.php @@ -33,6 +33,7 @@ return [ 'scheduled' => 'تعمیرات زمان‌بندی شده', 'scheduled_at' => '، برنامه ریزی شده :timestamp', 'posted' => 'Posted :timestamp', + 'posted_at' => 'Posted at :timestamp', 'status' => [ 1 => 'در دست بررسی', 2 => 'شناسایی شده', From fda7550a9c0953f4f2b11ef99ed4df9f134c0800 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:00 +0000 Subject: [PATCH 056/194] New translations forms.php (Romanian) --- resources/lang/ro-RO/forms.php | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/resources/lang/ro-RO/forms.php b/resources/lang/ro-RO/forms.php index ed58fdd0..8548db5a 100644 --- a/resources/lang/ro-RO/forms.php +++ b/resources/lang/ro-RO/forms.php @@ -151,8 +151,9 @@ return [ 'display-graphs' => 'Afişaţi grafice pe pagina stare?', 'about-this-page' => 'Despre această pagină', 'days-of-incidents' => 'Câte zile de incidente vreţi să fie afişate?', + 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => 'Imagine Banner', - 'banner-help' => 'Este recomandat să încărcaţi fişiere cu lăţimea nu mai mare de 930px.', + 'banner-help' => "Este recomandat să încărcaţi fişiere cu lăţimea nu mai mare de 930px.", 'subscribers' => 'Permiteţi vizitatorilor să se aboneze la notificări prin email?', 'skip_subscriber_verification' => 'Omite verificarea utilizatorilor? (Avertizare, poți primi spam)', 'automatic_localization' => 'Schimbaţi automat limba pentru pagina de stare în funcţie de limba vizitatorului?', @@ -223,17 +224,18 @@ return [ ], // Buttons - 'add' => 'Adaugă', - 'save' => 'Salvează', - 'update' => 'Actualizează', - 'create' => 'Creează', - 'edit' => 'Modifică', - 'delete' => 'Şterge', - 'submit' => 'Trimite', - 'cancel' => 'Renunță', - 'remove' => 'Elimină', - 'invite' => 'Invită', - 'signup' => 'Înregistrează-te', + 'add' => 'Adaugă', + 'save' => 'Salvează', + 'update' => 'Actualizează', + 'create' => 'Creează', + 'edit' => 'Modifică', + 'delete' => 'Şterge', + 'submit' => 'Trimite', + 'cancel' => 'Renunță', + 'remove' => 'Elimină', + 'invite' => 'Invită', + 'signup' => 'Înregistrează-te', + 'manage_updates' => 'Manage Updates', // Other 'optional' => '* Opţional', From 6ea2a52365fb428936c791f80834f1308dad0527 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:02 +0000 Subject: [PATCH 057/194] New translations dashboard.php (Italian) --- resources/lang/it-IT/dashboard.php | 36 +++++++++++++++++++----------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/resources/lang/it-IT/dashboard.php b/resources/lang/it-IT/dashboard.php index d895c3e6..c27f186d 100644 --- a/resources/lang/it-IT/dashboard.php +++ b/resources/lang/it-IT/dashboard.php @@ -21,7 +21,20 @@ return [ 'logged' => '{0} Non ci sono segnalazioni, ottimo lavoro.|Hai notificato una segnalazione.|Hai notificato :count 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 :incident', - '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.', From e0f6db311fd1fc1c958cb7632d383b62df878256 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:03 +0000 Subject: [PATCH 058/194] New translations notifications.php (Ukrainian) --- resources/lang/uk-UA/notifications.php | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/resources/lang/uk-UA/notifications.php b/resources/lang/uk-UA/notifications.php index 6a65c6bd..a9ee3b05 100644 --- a/resources/lang/uk-UA/notifications.php +++ b/resources/lang/uk-UA/notifications.php @@ -16,7 +16,7 @@ return [ 'subject' => 'Component Status Updated', 'greeting' => 'A component\'s status was updated!', 'content' => ':name status changed from :old_status to :new_status.', - 'action' => 'View', + 'action' => 'Подання', ], 'slack' => [ 'title' => 'Component Status Updated', @@ -30,25 +30,25 @@ return [ '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' => 'Інцидент: ім\'я було повідомлено', + 'action' => 'Подання', ], 'slack' => [ - 'title' => 'Incident :name Reported', - 'content' => 'A new incident was reported at :app_name', + 'title' => 'Інцидент: ім\'я повідомлено', + 'content' => 'Нове повідомлення про інцидент на сторінці :app_name', ], 'sms' => [ - 'content' => 'A new incident was reported at :app_name.', + 'content' => 'Нове повідомлення про інцидент на сторінці :app_name.', ], ], 'update' => [ 'mail' => [ - 'subject' => 'Incident Updated', + 'subject' => 'Інцидент оновлено', 'content' => ':name was updated', 'title' => ':name was updated to :new_status', - 'action' => 'View', + 'action' => 'Подання', ], 'slack' => [ 'title' => ':name Updated', @@ -65,7 +65,7 @@ return [ 'subject' => 'New Schedule Created', 'content' => ':name was scheduled for :date', 'title' => 'A new scheduled maintenance was created.', - 'action' => 'View', + 'action' => 'Подання', ], 'slack' => [ 'title' => 'New Schedule Created!', @@ -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' => 'Прийняти', ], ], ], From 97c7e5d2087193140bc5bc36e9892d3380e763b4 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:05 +0000 Subject: [PATCH 059/194] New translations dashboard.php (Turkish) --- resources/lang/tr-TR/dashboard.php | 206 +++++++++++++++-------------- 1 file changed, 108 insertions(+), 98 deletions(-) diff --git a/resources/lang/tr-TR/dashboard.php b/resources/lang/tr-TR/dashboard.php index 51e699b3..2e2f4600 100644 --- a/resources/lang/tr-TR/dashboard.php +++ b/resources/lang/tr-TR/dashboard.php @@ -21,7 +21,20 @@ return [ 'logged' => '{0} Hiç olay yok, tebrikler. |Bir olay rapor ettiniz.|:count olay rapor ettiniz.', 'incident-create-template' => 'Şablon Oluştur', 'incident-templates' => 'Olay Şablonları', - 'updates' => '{0} Sıfır Güncelleme | Bir Güncelleme |:count Güncelleme', + 'updates' => [ + 'title' => 'Incident updates for :incident', + 'count' => '{0} Zero Updates|[1] One Update|[2] Two Updates|[3,*] Several Updates', + 'add' => [ + 'title' => 'Yeni olay güncellemesi oluştur', + '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' => 'Olay Ekle', 'success' => 'Olay eklendi.', @@ -36,11 +49,6 @@ return [ 'success' => 'Olay silindi ve durum sayfanızda bir daha gösterilmeyecek.', 'failure' => 'Olay silinemedi, lütfen tekrar deneyin.', ], - 'update' => [ - 'title' => 'Yeni olay güncellemesi oluştur', - 'subtitle' => ':incident için güncelleme ekkleyin', - 'success' => 'Update added.', - ], // Incident templates 'templates' => [ @@ -97,26 +105,26 @@ return [ ], 'edit' => [ 'title' => 'Bileşen düzenle', - 'success' => 'Component updated.', + 'success' => 'Bileşen güncellendi.', 'failure' => 'Bileşenlerle ilgili bir şeyler yanlış gitti, lütfen daha sonra tekrar deneyin.', ], 'delete' => [ - 'success' => 'The component has been deleted!', - 'failure' => 'The component could not be deleted, please try again.', + 'success' => 'Bileşen silindi!', + 'failure' => 'Bileşen silinemedi, lütfen tekrar deneyin.', ], // Component groups 'groups' => [ - 'groups' => 'Component group|Component groups', - 'no_components' => 'You should add a component group.', + 'groups' => 'Bileşen grubu|Bileşen grupları', + 'no_components' => 'Bir bileşen grubu eklemeniz gerekir.', 'add' => [ - 'title' => 'Add a component group', - 'success' => 'Component group added.', + 'title' => 'Bir bileşen grubu ekle', + 'success' => 'Bileşen grubu eklendi.', 'failure' => 'Bileşenlerle ilgili bir şeyler yanlış gitti, lütfen daha sonra tekrar deneyin.', ], 'edit' => [ - 'title' => 'Edit a component group', - 'success' => 'Component group updated.', + 'title' => 'Bileşen grubunu düzenle', + 'success' => 'Bileşen grubu güncellendi.', 'failure' => 'Bileşenlerle ilgili bir şeyler yanlış gitti, lütfen daha sonra tekrar deneyin.', ], 'delete' => [ @@ -132,161 +140,163 @@ return [ 'add' => [ 'title' => 'Bir ölçü oluştur', 'message' => 'Bir ölçü eklemelisiniz.', - 'success' => 'Metric created.', + 'success' => 'Metrik oluşturuldu.', 'failure' => 'Something went wrong with the metric, please try again.', ], 'edit' => [ - 'title' => 'Edit a metric', - 'success' => 'Metric updated.', + 'title' => 'Bir metrik düzenle', + 'success' => 'Metrik güncellendi.', 'failure' => 'Something went wrong with the metric, please try again.', ], 'delete' => [ - 'success' => 'The metric has been deleted and will no longer display on your status page.', - 'failure' => 'The metric could not be deleted, please try again.', + 'success' => 'Metrik silindi ve artık durum sayfanızda gösterilmeyecek.', + 'failure' => 'Metrik silinemedi, lütfen tekrar deneyin.', ], ], // 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' => [ - 'title' => 'Add a new subscriber', - 'success' => 'Subscriber has been added!', - 'failure' => 'Something went wrong adding the subscriber, please try again.', - 'help' => 'Enter each subscriber on a new line.', + 'subscribers' => 'Aboneler', + 'description' => 'Aboneler, olaylar oluşturulduğunda veya bileşenler güncellendiğinde e-posta güncellemelerini alacaktır.', + 'description_disabled' => 'To use this feature, you need allow people to signup for notifications.', + 'verified' => 'Onaylanmış', + 'not_verified' => 'Doğrulanmadı', + 'subscriber' => ':email, abone oldu :date', + 'no_subscriptions' => 'Güncellemeler için abone ol', + 'global' => 'Globally subscribed', + 'add' => [ + 'title' => 'Yeni abone ekleme', + 'success' => 'Abone eklendi!', + 'failure' => 'Abone eklerken bir şeyler yanlış gitti, lütfen tekrar deneyin.', + 'help' => 'Her bir aboneyi yeni bir hatta girin.', ], 'edit' => [ - 'title' => 'Update subscriber', - 'success' => 'Subscriber has been updated!', - 'failure' => 'Something went wrong editing the subscriber, please try again.', + 'title' => 'Aboneleri güncelle', + 'success' => 'Aboneler güncellendi!', + 'failure' => 'Abone eklerken bir şeyler yanlış gitti, lütfen tekrar deneyin.', ], ], // Team 'team' => [ - 'team' => 'Team', - 'member' => 'Member', - 'profile' => 'Profile', - 'description' => 'Team Members will be able to add, modify & edit components and incidents.', + 'team' => 'Takım', + 'member' => 'Üye', + 'profile' => 'Profil', + 'description' => 'Ekip Üyeleri bileşenleri ve olayları ekleyebilir, değiştirebilir ve düzenleyebilir.', 'add' => [ - 'title' => 'Add a new team member', - 'success' => 'Team member added.', - 'failure' => 'The team member could not be added, please try again.', + 'title' => 'Yeni ekip üyesi ekle', + 'success' => 'Ekip üyesi eklendi.', + 'failure' => 'Ekip üyesi eklenemedi, lütfen tekrar deneyin.', ], 'edit' => [ - 'title' => 'Update profile', - 'success' => 'Profile updated.', - 'failure' => 'Something went wrong updating the profile, please try again.', + 'title' => 'Profili Güncelle', + 'success' => 'Profil güncellendi.', + 'failure' => 'Profili güncelleme işlemi sırasında bir sorun oluştu, lütfen tekrar deneyin.', ], 'delete' => [ - 'success' => 'Team member has been deleted and will no longer have access to the dashboard!', - 'failure' => 'The team member could not be added, please try again.', + 'success' => 'Ekip üyesi silindi ve artık gösterge tablosuna erişimi yok!', + 'failure' => 'Ekip üyesi eklenemedi, lütfen tekrar deneyin.', ], 'invite' => [ - 'title' => 'Invite a new team member', - 'success' => 'An invite has been sent', - 'failure' => 'The invite could not be sent, please try again.', + 'title' => 'Yeni bir ekip üyesi davet et', + 'success' => 'Bir davet gönderildi', + 'failure' => 'Davet gönderilemedi, lütfen tekrar deneyin.', ], ], // Settings 'settings' => [ - 'settings' => 'Settings', + 'settings' => 'Ayarlar', 'app-setup' => [ - 'app-setup' => 'Application Setup', - 'images-only' => 'Only images may be uploaded.', - 'too-big' => 'The file you uploaded is too big. Upload an image smaller than :size', + 'app-setup' => 'Uygulama kurulumu', + 'images-only' => 'Yalnızca resimler yüklenebilir.', + 'too-big' => 'Yüklediğiniz dosya çok büyük. Boyutundan küçük bir resim yükleyin', ], 'analytics' => [ - 'analytics' => 'Analytics', + 'analytics' => 'Analitik', ], 'log' => [ - 'log' => 'Log', + 'log' => 'Giriş', ], 'localization' => [ - 'localization' => 'Localization', + 'localization' => 'Yerelleştirme', ], 'customization' => [ - 'customization' => 'Customization', - 'header' => 'Custom Header HTML', - 'footer' => 'Custom Footer HTML', + 'customization' => 'Özelleştirme', + 'header' => 'Özel Başlık HTML', + 'footer' => 'Özel Altbilgi HTML', ], 'mail' => [ - 'mail' => 'Mail', - 'test' => 'Test', + 'mail' => 'Posta', + 'test' => 'Ölçek', 'email' => [ - 'subject' => 'Test notification from Cachet', - 'body' => 'This is a test notification from Cachet.', + 'subject' => 'Önbellekten sınama bildirimi', + 'body' => 'Bu, Cachet\'den gelen bir test bildirimidir.', ], ], 'security' => [ - 'security' => 'Security', - 'two-factor' => 'Users without two-factor authentication', + 'security' => 'Güvenlik', + 'two-factor' => 'İki faktörlü kimlik doğrulaması olmayan kullanıcılar', ], 'stylesheet' => [ - 'stylesheet' => 'Stylesheet', + 'stylesheet' => 'Stil', ], 'theme' => [ - 'theme' => 'Theme', + 'theme' => 'Tema', ], 'edit' => [ - 'success' => 'Settings saved.', - 'failure' => 'Settings could not be saved.', + 'success' => 'Ayarlar kaydedildi.', + 'failure' => 'Ayarlar kaydedilemedi.', ], 'credits' => [ - 'credits' => 'Credits', - 'contributors' => 'Contributors', - 'license' => 'Cachet is a BSD-3-licensed open source project, released by Alt Three Services Limited.', - 'backers-title' => 'Backers & Sponsors', - 'backers' => 'If you\'d like to support future development, check out the Cachet Patreon campaign.', - 'thank-you' => 'Thank you to each and every one of the :count contributors.', + 'credits' => 'Kredi', + 'contributors' => 'Katkıda bulunanlar', + 'license' => 'Cachet, Alt Üç\'te yayınlanan BSD-3 lisanslı bir açık kaynak projesidir, tarafından yayımlı .', + 'backers-title' => 'Destekçiler ve Sponsorlar', + 'backers' => 'Gelecekteki gelişimi desteklemek isterseniz Cachet Patreon kampanyasına göz atın.', + 'thank-you' => 'Her biri için teşekkür ederim: katılımcıları sayın.', ], ], // Login 'login' => [ - 'login' => 'Login', - 'logged_in' => 'You\'re logged in.', - 'welcome' => 'Welcome back!', - 'two-factor' => 'Please enter your token.', + 'login' => 'Oturum aç', + 'logged_in' => 'Giriş yaptın.', + 'welcome' => 'Tekrar Hoşgeldin!', + 'two-factor' => 'Lütfen tokeni giriniz.', ], // Sidebar footer - 'help' => 'Help', - 'status_page' => 'Status Page', - 'logout' => 'Logout', + 'help' => 'Yardım', + 'status_page' => 'Durum sayfası', + 'logout' => 'Çıkış yap', // Notifications 'notifications' => [ - 'notifications' => 'Notifications', - 'awesome' => 'Awesome.', - 'whoops' => 'Whoops.', + 'notifications' => 'Bildirimler', + 'awesome' => 'Harika.', + 'whoops' => 'Hay aksi.', ], // Widgets 'widgets' => [ - 'support' => 'Support Cachet', - 'support_subtitle' => 'Check out our Patreon page!', - 'news' => 'Latest News', - 'news_subtitle' => 'Get the latest update', + 'support' => 'Destek Bildirimi', + 'support_subtitle' => ' Patreon sayfamızı ziyaret edin!', + 'news' => 'Son Haberler', + 'news_subtitle' => 'En son güncellemeyi edinin', ], // Welcome modal 'welcome' => [ - 'welcome' => 'Welcome to your new status page, :username!', - 'message' => 'You\'re almost ready but you might want to configure these extra settings first...', - 'close' => 'I\'m good thanks!', + 'welcome' => 'Yeni durum sayfanıza hoş geldiniz,: kullanıcı adı!', + 'message' => 'Neredeyse hazırsınız ancak ilk önce bu ek ayarları yapılandırmak isteyebilirsiniz...', + 'close' => 'İyiyim teşekkürler!', 'steps' => [ - 'component' => 'Add your components', - 'incident' => 'Create an incident', - 'customize' => 'Customize your page', - 'team' => 'Add your team', - 'api' => 'Generate an API token', - 'two-factor' => 'Setup Two Factor Authentication', + 'component' => 'Bileşenlerinizi ekleyin', + 'incident' => 'Olay oluşturma', + 'customize' => 'Sayfanı özelleştir', + 'team' => 'Ekibine ekle', + 'api' => 'Bir API belirteci oluşturma', + 'two-factor' => 'İki Faktör Kimlik Doğrulamasını Ayarlayın', ], ], From a144febba67c410b229e1339d5e677fe78185fd4 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:06 +0000 Subject: [PATCH 060/194] New translations forms.php (Turkish) --- resources/lang/tr-TR/forms.php | 158 +++++++++++++++++---------------- 1 file changed, 80 insertions(+), 78 deletions(-) diff --git a/resources/lang/tr-TR/forms.php b/resources/lang/tr-TR/forms.php index bf6d4c93..86a2e80c 100644 --- a/resources/lang/tr-TR/forms.php +++ b/resources/lang/tr-TR/forms.php @@ -22,7 +22,7 @@ return [ 'site_locale' => 'Dil seçin', 'enable_google2fa' => 'Google İki Faktor Doğrulamayı etkinleştir', 'cache_driver' => 'Önbellek Sürücüsü', - 'queue_driver' => 'Queue Driver', + 'queue_driver' => 'Sıra Sürücüsü', 'session_driver' => 'Oturum Sürücüsü', 'mail_driver' => 'Posta Sürücü', 'mail_host' => 'Posta Hostu', @@ -51,12 +51,12 @@ return [ 'component' => 'Bileşen', 'message' => 'Mesaj', 'message-help' => 'Markdown işaretleri kullanabilirsiniz.', - 'occurred_at' => 'When did this incident occur?', + 'occurred_at' => 'Bu olay ne zaman meydana geldi?', 'notify_subscribers' => 'Abonelere bildirilsin mi?', 'visibility' => 'Olay Görünürlüğü', - 'stick_status' => 'Stick Incident', - 'stickied' => 'Stickied', - 'not_stickied' => 'Not Stickied', + 'stick_status' => 'Stick Olayı', + 'stickied' => 'Stickli', + 'not_stickied' => 'Stickli değil', 'public' => 'Herkese açık', 'logged_in_only' => 'Sadece giriş yapan kullanıclar görebilir', 'templates' => [ @@ -71,8 +71,8 @@ return [ 'status' => 'Durum', 'message' => 'Mesaj', 'message-help' => 'Markdown işaretleri kullanabilirsiniz.', - 'scheduled_at' => 'When is this maintenance scheduled for?', - 'completed_at' => 'When did this maintenance complete?', + 'scheduled_at' => 'Bu bakım ne zaman yapılıyor?', + 'completed_at' => 'Bu bakım ne zaman tamamlandı?', 'templates' => [ 'name' => 'İsim', 'template' => 'Tema', @@ -97,9 +97,9 @@ return [ 'visible' => 'Her zaman genişlet', 'collapsed' => 'Grubu varsayılan olarak daralt', 'collapsed_incident' => 'Grubu küçült, ancak sorun olursa genişlet', - 'visibility' => 'Visibility', - 'visibility_public' => 'Visible to public', - 'visibility_authenticated' => 'Visible only to logged in users', + 'visibility' => 'Görünürlük', + 'visibility_public' => 'Herkese görünür', + 'visibility_authenticated' => 'Yalnızca oturum açan kullanıcılara görünür', ], ], @@ -107,35 +107,35 @@ return [ 'actions' => [ 'name' => 'İsim', 'description' => 'Açıklama', - 'start_at' => 'Schedule start time', - 'timezone' => 'Timezone', - 'schedule_frequency' => 'Schedule frequency (in seconds)', - 'completion_latency' => 'Completion latency (in seconds)', + 'start_at' => 'Başlangıç saati programlayın', + 'timezone' => 'Saat dilimi', + 'schedule_frequency' => 'Zamanlama frekansı (saniye olarak)', + 'completion_latency' => 'Tamamlama gecikmesi (saniye olarak)', 'group' => 'Grup', - 'active' => 'Active?', + 'active' => 'Aktif mi?', 'groups' => [ - 'name' => 'Group Name', + 'name' => 'Grup ismi', ], ], // Metric form fields 'metrics' => [ 'name' => 'İsim', - 'suffix' => 'Suffix', + 'suffix' => 'Sonek', 'description' => 'Açıklama', 'description-help' => 'Markdown işaretleri kullanabilirsiniz.', - 'display-chart' => 'Display chart on status page?', + 'display-chart' => 'Durum sayfasındaki grafiği mi gösteriyorsun?', 'default-value' => 'Varsayılan değer', - 'calc_type' => 'Calculation of metrics', + 'calc_type' => 'Metriklerin hesaplanması', 'type_sum' => 'Toplam', 'type_avg' => 'Ortalama', - 'places' => 'Decimal places', - 'default_view' => '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', + 'places' => 'Ondalık', + 'default_view' => 'Varsayılan görünüm', + 'threshold' => 'Metrik puanlar arasında kaç dakika eşik var?', + 'visibility' => 'Görünürlük', + 'visibility_authenticated' => 'Kimliği doğrulanmış kullanıcılar tarafından görülebilir', + 'visibility_public' => 'Herkese görünür', + 'visibility_hidden' => 'Daima gizli', 'points' => [ 'value' => 'Değer', @@ -148,52 +148,53 @@ return [ 'app-setup' => [ 'site-name' => 'Site Adı', 'site-url' => 'Site url adresi', - 'display-graphs' => 'Display graphs on status page?', + 'display-graphs' => 'Durum sayfasındaki grafikleri gösterilsin mi?', 'about-this-page' => 'Hakkında', - 'days-of-incidents' => 'How many days of incidents to show?', - '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?', - '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?', + 'days-of-incidents' => 'Kaç gün olay gösterebilirim?', + 'time_before_refresh' => 'Status page refresh rate (in seconds).', + 'banner' => 'Afiş Resmi', + 'banner-help' => "930 pikselden daha büyük olmayan dosyaları yüklemeniz önerilir.", + 'subscribers' => 'Kullanıcıların e-posta bildirimlerine kaydolmasına izin verilsin mi?', + 'skip_subscriber_verification' => 'Kullanıcıların doğrulama işlemini atla? (Dikkat et, spam gönderildi)', + 'automatic_localization' => 'Durum sayfanızı otomatik olarak ziyaretçinin diline yerelleştirir misin?', + 'enable_external_dependencies' => 'Üçüncü Taraf Bağımlılıklarını Etkinleştirme (Google Fontlar, İzleyiciler, vb...)', + 'show_timezone' => 'Durum sayfasının çalıştığı saat dilimini gösterin.', + 'only_disrupted_days' => 'Zaman çizelgesinde yalnızca olayları içeren günleri gösterin mi?', ], 'analytics' => [ - 'analytics_google' => 'Google Analytics code', - 'analytics_gosquared' => 'GoSquared Analytics code', - 'analytics_piwik_url' => 'URL of your Piwik instance (without http(s)://)', - 'analytics_piwik_siteid' => 'Piwik\'s site id', + 'analytics_google' => 'Google Analytics kodu', + 'analytics_gosquared' => 'GoSquared Analytics kodu', + 'analytics_piwik_url' => 'Piwik örneğinizin URL\'si (http (s) olmadan): //', + 'analytics_piwik_siteid' => 'Piwik\'in site numarası', ], 'localization' => [ - 'site-timezone' => 'Site timezone', - 'site-locale' => 'Site language', - 'date-format' => 'Date format', - 'incident-date-format' => 'Incident timestamp format', + 'site-timezone' => 'Site saat dilimi', + 'site-locale' => 'Site dili', + 'date-format' => 'Tarih formatı', + 'incident-date-format' => 'Olay zaman damgası biçimi', ], 'security' => [ - 'allowed-domains' => 'Allowed domains', - 'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.', + 'allowed-domains' => 'İzin verilen alanlar', + 'allowed-domains-help' => 'Virgülle ayrılmış. Yukarıda ayarlanan alana varsayılan olarak otomatik olarak izin verilir.', ], 'stylesheet' => [ - 'custom-css' => 'Custom Stylesheet', + 'custom-css' => 'Özel Stil Sayfası', ], 'theme' => [ - 'background-color' => 'Background color', - 'background-fills' => 'Background fills (components, incidents, footer)', - 'banner-background-color' => 'Banner background color', - 'banner-padding' => 'Banner padding', - 'fullwidth-banner' => 'Enable fullwidth banner?', - 'text-color' => 'Text color', - 'dashboard-login' => 'Show dashboard button in the footer?', - 'reds' => 'Red (used for errors)', - 'blues' => 'Blue (used for information)', - 'greens' => 'Green (used for success)', - 'yellows' => 'Yellow (used for alerts)', - 'oranges' => 'Orange (used for notices)', - 'metrics' => 'Metrics fill', - 'links' => 'Links', + 'background-color' => 'Arka plan rengi', + 'background-fills' => 'Arka plan dolguları (bileşenler, olaylar, altbilgi)', + 'banner-background-color' => 'Afiş arka plan rengi', + 'banner-padding' => 'Afiş dolgusu', + 'fullwidth-banner' => 'Tam genişlikli afiş etkinleştirilsin mi?', + 'text-color' => 'Metin rengi', + 'dashboard-login' => 'Altbilgide gösterge paneli butonunu mu gösteriyorsunuz?', + 'reds' => 'Kırmızı (hatalar için kullanılır)', + 'blues' => 'Mavi (bilgi için kullanılır)', + 'greens' => 'Yeşil (başarı için kullanılır)', + 'yellows' => 'Sarı (uyarılar için kullanılır)', + 'oranges' => 'Turuncu (bildirimler için kullanılır)', + 'metrics' => 'Metrikler dolgu', + 'links' => 'Bağlantılar', ], ], @@ -202,15 +203,15 @@ return [ 'email' => 'E-posta', 'password' => 'Parola', 'api-token' => 'API jetonu', - 'api-token-help' => 'Regenerating your API token will prevent existing applications from accessing Cachet.', - 'gravatar' => 'Change your profile picture at Gravatar.', - 'user_level' => 'User Level', + 'api-token-help' => 'API Tokenini yeniden oluşturmanız mevcut uygulamaların Cachet\'e erişmesini önleyecektir.', + 'gravatar' => 'Gravatar\'daki profil resminizi değiştirin.', + 'user_level' => 'Kullanıcı Seviyesi', 'levels' => [ - 'admin' => 'Admin', + 'admin' => 'Yönetim', 'user' => 'Kullanıcı', ], '2fa' => [ - 'help' => 'Enabling two factor authentication increases security of your account. You will need to download Google Authenticator or a similar app on to your mobile device. When you login you will be asked to provide a token generated by the app.', + 'help' => 'İki faktörlü kimlik doğrulamayı etkinleştirmek, hesabınızın güvenliğini artırır. Mobil cihazınıza Google Authenticator veya benzer bir uygulama indirmeniz gerekir. Giriş yaptığınızda, uygulama tarafından üretilen bir belirteç sağlamanız istenir.', ], 'team' => [ 'description' => 'E-posta adreslerini buraya girerek ekip üyelerini davet edin.', @@ -219,21 +220,22 @@ return [ ], 'general' => [ - 'timezone' => 'Select Timezone', + 'timezone' => 'Saat dilimini seçin', ], // Buttons - 'add' => 'Ekle', - 'save' => 'Kaydet', - 'update' => 'Güncelle', - 'create' => 'Oluştur', - 'edit' => 'Düzenle', - 'delete' => 'Sil', - 'submit' => 'Gönder', - 'cancel' => 'İptal', - 'remove' => 'Kaldır', - 'invite' => 'Davet et', - 'signup' => 'Kayıt Ol', + 'add' => 'Ekle', + 'save' => 'Kaydet', + 'update' => 'Güncelle', + 'create' => 'Oluştur', + 'edit' => 'Düzenle', + 'delete' => 'Sil', + 'submit' => 'Gönder', + 'cancel' => 'İptal', + 'remove' => 'Kaldır', + 'invite' => 'Davet et', + 'signup' => 'Kayıt Ol', + 'manage_updates' => 'Manage Updates', // Other 'optional' => '* İsteğe bağlı', From 225a02052cb96330c7e56f2180f49321f02bac18 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:07 +0000 Subject: [PATCH 061/194] New translations pagination.php (Turkish) --- resources/lang/tr-TR/pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/tr-TR/pagination.php b/resources/lang/tr-TR/pagination.php index 0ee724cf..29adfa99 100644 --- a/resources/lang/tr-TR/pagination.php +++ b/resources/lang/tr-TR/pagination.php @@ -22,7 +22,7 @@ return [ | */ - 'previous' => 'Previous', - 'next' => 'Next', + 'previous' => 'Önceki', + 'next' => 'Sonraki', ]; From b946d960c8fb3b6301c6fd6368133005d87ecf9e Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:08 +0000 Subject: [PATCH 062/194] New translations validation.php (Turkish) --- resources/lang/tr-TR/validation.php | 52 ++++++++++++++--------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/resources/lang/tr-TR/validation.php b/resources/lang/tr-TR/validation.php index e353f11a..bd709fad 100644 --- a/resources/lang/tr-TR/validation.php +++ b/resources/lang/tr-TR/validation.php @@ -50,44 +50,44 @@ return [ 'image' => ':attribute bir görsel olmalı.', 'in' => 'Seçili :attribute geçersiz.', 'in_array' => ':attribute alanı :other ile eşleşmiyor.', - 'integer' => 'The :attribute must be an integer.', - 'ip' => 'The :attribute must be a valid IP address.', + 'integer' => 'Nitelik bir tamsayı olmalıdır.', + 'ip' => ': Özniteliği geçerli bir IP adresi olmalıdır.', 'json' => ':attribute geçerli bir JSON dizini olmalıdır.', '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' => ': Özniteliği maksimumdan daha büyük olamaz.', + 'file' => ': Özniteliği maksimum kilobaytdan daha büyük olamaz.', + 'string' => ': Özniteliği maksimum karakterden daha büyük olamaz.', 'array' => ':attribute :max maddeden daha fazlasına sahip olamaz.', ], - 'mimes' => 'The :attribute must be a file of type: :values.', + 'mimes' => ': Özniteliği, değer türünde bir dosya olmalıdır.', 'min' => [ - 'numeric' => 'The :attribute must be at least :min.', + 'numeric' => ': Özelliği en azından: dakika olmalıdır.', 'file' => ':attribute en az :min kilobayt olmalıdır.', - 'string' => 'The :attribute must be at least :min characters.', - 'array' => 'The :attribute must have at least :min items.', + 'string' => ': Özelliği en az: minumum karakter olmalıdır.', + 'array' => ': Özelliği en az: dakika öğesine sahip olmalıdır.', ], 'not_in' => 'Seçili :attribute geçersiz.', - 'numeric' => 'The :attribute must be a number.', + 'numeric' => ': Özniteliği bir sayı olmalıdır.', 'present' => ':attribute alanı mevcut olmalı.', - 'regex' => 'The :attribute format is invalid.', + 'regex' => ': Öznitelik biçimi geçersiz.', 'required' => ':attribute alanı gereklidir.', - 'required_if' => 'The :attribute field is required when :other is :value.', - 'required_unless' => 'The :attribute field is required unless :other is in :values.', - 'required_with' => 'The :attribute field is required when :values is present.', - 'required_with_all' => 'The :attribute field is required when :values is present.', - '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_if' => ': Öznitelik alanı, şu durumlarda gereklidir: farklı değeri.', + 'required_unless' => ': Öznitelik alanı, aşağıdaki koşullar haricinde: farkı değer içinde.', + 'required_with' => ': Öznitelik alanı, şu durumlarda gereklidir: değerler mevcut.', + 'required_with_all' => ': Öznitelik alanı, şu durumlarda gereklidir: değerler mevcut.', + 'required_without' => ': Öznitelik alanı, şu durumlarda gereklidir: değerler mevcut değildir.', + 'required_without_all' => 'Öznitelik alanı, hiçbiri: değerleri mevcut olmadığında gereklidir.', + 'same' => ': Attribute ve: diğeri eşleşmelidir.', 'size' => [ - 'numeric' => 'The :attribute must be :size.', - 'file' => 'The :attribute must be :size kilobytes.', - 'string' => 'The :attribute must be :size characters.', - 'array' => 'The :attribute must contain :size items.', + 'numeric' => ': Özniteliği: boyut olmalıdır.', + 'file' => ': Özniteliği: boyutu kilobayt olmalıdır.', + 'string' => ': Özniteliği: boyutu karakter olmalıdır.', + 'array' => ': Özniteliği: boyut öğeleri içermelidir.', ], - 'string' => 'The :attribute must be a string.', - 'timezone' => 'The :attribute must be a valid zone.', - 'unique' => 'The :attribute has already been taken.', - 'url' => 'The :attribute format is invalid.', + 'string' => ': Özniteliği bir dize olmalıdır.', + 'timezone' => ': Özniteliği geçerli bir bölge olmalıdır.', + 'unique' => ': Öznitelik zaten alındı.', + 'url' => ': Öznitelik biçimi geçersiz.', /* |-------------------------------------------------------------------------- From 645931e0c33c7f3e4e87d27b9bc94cc389460bbc Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:09 +0000 Subject: [PATCH 063/194] New translations notifications.php (Turkish) --- resources/lang/tr-TR/notifications.php | 76 +++++++++++++------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/resources/lang/tr-TR/notifications.php b/resources/lang/tr-TR/notifications.php index 6a65c6bd..8f8be381 100644 --- a/resources/lang/tr-TR/notifications.php +++ b/resources/lang/tr-TR/notifications.php @@ -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' => 'Bileşen Durumu Güncellendi', + 'greeting' => 'Bir bileşenin durumu güncellendi!', + 'content' => ':name status :old_status\'tan: new_status olarak değiştirildi.', + 'action' => 'Görüntüle', ], 'slack' => [ - 'title' => 'Component Status Updated', - 'content' => ':name status changed from :old_status to :new_status.', + 'title' => 'Bileşen Durumu Güncellendi', + 'content' => ':name status :old_status\'tan: new_status olarak değiştirildi.', ], 'sms' => [ - 'content' => ':name status changed from :old_status to :new_status.', + 'content' => ':name status :old_status\'tan: new_status olarak değiştirildi.', ], ], ], 'incident' => [ 'new' => [ 'mail' => [ - 'subject' => 'New Incident Reported', - 'greeting' => 'A new incident was reported at :app_name.', - 'content' => 'Incident :name was reported', - 'action' => 'View', + 'subject' => 'Yeni Olay Bildirildi', + 'greeting' => 'Şu adreste yeni bir olay bildirildi: app_name.', + 'content' => 'Olay: adı bildirildi', + 'action' => 'Görüntüle', ], 'slack' => [ - 'title' => 'Incident :name Reported', - 'content' => 'A new incident was reported at :app_name', + 'title' => 'Olay :name Bildirildi', + 'content' => 'Şu anda yeni bir olay bildirildi :app_name', ], 'sms' => [ - 'content' => 'A new incident was reported at :app_name.', + 'content' => 'Şu adreste yeni bir olay bildirildi: app_name.', ], ], 'update' => [ 'mail' => [ - 'subject' => 'Incident Updated', - 'content' => ':name was updated', - 'title' => ':name was updated to :new_status', - 'action' => 'View', + 'subject' => 'Olay Güncellendi', + 'content' => ':name güncellendi', + 'title' => ':ad güncellendi: new_status', + 'action' => 'Görüntüle', ], 'slack' => [ - 'title' => ':name Updated', - 'content' => ':name was updated to :new_status', + 'title' => ':name Güncellendi', + 'content' => ':ad güncellendi: new_status', ], 'sms' => [ - 'content' => 'Incident :name was updated', + 'content' => 'Olay :name güncellendi', ], ], ], 'schedule' => [ 'new' => [ 'mail' => [ - 'subject' => 'New Schedule Created', - 'content' => ':name was scheduled for :date', - 'title' => 'A new scheduled maintenance was created.', - 'action' => 'View', + 'subject' => 'Yeni Program oluşturuldu', + 'content' => ':name planlandı :tarih', + 'title' => 'Yeni bir zamanlanmış bakım yapılmıştır.', + 'action' => 'Görüntüle', ], 'slack' => [ - 'title' => 'New Schedule Created!', - 'content' => ':name was scheduled for :date', + 'title' => 'Yeni Program Oluşturuldu!', + 'content' => ':name planlandı :tarih', ], 'sms' => [ - 'content' => ':name was scheduled for :date', + 'content' => ':name planlandı :tarih', ], ], ], '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' => 'Aboneliğinizi Doğrulayın', + 'content' => 'Aboneliğinizi doğrulamak için tıklayın :app_name durum sayfası.', + 'title' => 'Abone olduğunuzu doğrulayın :app_name durum sayfası.', + 'action' => 'Doğrula', ], ], ], 'system' => [ 'test' => [ 'mail' => [ - 'subject' => 'Ping from Cachet!', - 'content' => 'This is a test notification from Cachet!', + 'subject' => 'Cachet\'den Ping!', + 'content' => 'Bu, Cachet\'den gelen bir test bildirimidir!', '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' => 'Davetiyen içeride...', + 'content' => 'Şu adreste davet edildiniz :app_name durum sayfası.', + 'title' => 'Şu adreste davet edildiniz :app_name durum sayfası.', + 'action' => 'Kabul et', ], ], ], From 8340937d8cb4623cbd019e01daffe932ab5a6467 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:10 +0000 Subject: [PATCH 064/194] New translations cachet.php (Ukrainian) --- resources/lang/uk-UA/cachet.php | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/lang/uk-UA/cachet.php b/resources/lang/uk-UA/cachet.php index 237deb10..048403d3 100644 --- a/resources/lang/uk-UA/cachet.php +++ b/resources/lang/uk-UA/cachet.php @@ -33,6 +33,7 @@ return [ 'scheduled' => 'Запланована перерва у роботі', 'scheduled_at' => ', заплановано на :timestamp', 'posted' => 'Опубліковано :timestamp', + 'posted_at' => 'Posted at :timestamp', 'status' => [ 1 => 'Розслідування', 2 => 'Ідентифікований', From 54c3651c416e7f6b68f1c1ec39aff1b5a8528dc0 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:11 +0000 Subject: [PATCH 065/194] New translations dashboard.php (Ukrainian) --- resources/lang/uk-UA/dashboard.php | 150 +++++++++++++++-------------- 1 file changed, 80 insertions(+), 70 deletions(-) diff --git a/resources/lang/uk-UA/dashboard.php b/resources/lang/uk-UA/dashboard.php index 41b02a11..aef6d434 100644 --- a/resources/lang/uk-UA/dashboard.php +++ b/resources/lang/uk-UA/dashboard.php @@ -21,11 +21,24 @@ return [ 'logged' => '{0} There are no incidents, good work.|You have logged one incident.|You have reported :count incidents.', 'incident-create-template' => 'Створити шаблон', 'incident-templates' => 'Шаблони Інцидентів', - 'updates' => '{0} Оновлення вiдсутнi|Одне оновлення|: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' => 'Інцидент додано.', - 'failure' => 'There was an error adding the incident, please try again.', + 'failure' => 'Виникла помилка при додаваннi інциденту, будь ласка, спробуйте ще раз.', ], 'edit' => [ 'title' => 'Редагувати інцидент', @@ -33,32 +46,27 @@ return [ 'failure' => 'Виникла помилка при редагуваннi інциденту, будь ласка, спробуйте ще раз.', ], 'delete' => [ - '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 :incident', - 'success' => 'Update added.', + 'success' => 'Цей інцидент був знищений і не буде з\'являтися на сторінці Вашого статусу.', + 'failure' => 'Інцидент не може бути видалений, будь ласка, спробуйте ще раз.', ], // Incident templates 'templates' => [ 'title' => 'Шаблони Інцидентів', 'add' => [ - 'title' => 'Create an incident template', + 'title' => 'Створити інцидент-шаблон', 'message' => 'Ви повинні додати шаблон інциденту.', 'success' => 'Ваш новий шаблон інциденту створено.', - 'failure' => 'Something went wrong with the incident template.', + 'failure' => 'Щось пішло не так з процесом оновлення iнцiдент-шаблону.', ], 'edit' => [ - 'title' => 'Edit Template', - 'success' => 'The incident template has been updated.', + 'title' => 'Редагувати шаблон', + 'success' => 'Шаблон iнциденту оновлений.', 'failure' => 'Виникла помилка при оновленнi шаблону iнциденту', ], 'delete' => [ 'success' => 'Шаблон iнциденту видалено.', - 'failure' => 'The incident template could not be deleted, please try again.', + 'failure' => 'Інцидент-шаблон не може бути видалений, будь ласка, спробуйте ще раз.', ], ], ], @@ -87,8 +95,8 @@ return [ // Components 'components' => [ 'components' => 'Компоненти', - 'component_statuses' => 'Component Statuses', - 'listed_group' => 'Grouped under :name', + 'component_statuses' => 'Компонент статуси', + 'listed_group' => 'Згруповані під: Назва', 'add' => [ 'title' => 'Додати компонент', 'message' => 'Ви повинні додати компонент.', @@ -115,13 +123,13 @@ return [ 'failure' => 'Something went wrong with the component group, please try again.', ], 'edit' => [ - 'title' => 'Edit a component group', - 'success' => 'Component group updated.', + 'title' => 'Редагування компонент групи', + 'success' => 'Группа компонентiв була оновлена.', 'failure' => 'Something went wrong with the component group, please try again.', ], 'delete' => [ - 'success' => 'Component group has been deleted!', - 'failure' => 'The component group could not be deleted, please try again.', + 'success' => 'Група компонентів була видалена!', + 'failure' => 'Группа компонентiв не може бути видалена, будь ласка, спробуйте ще раз.', ], ], ], @@ -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' => 'Пiдписники отримуватимуть оновленя по електронній пошті, завжди коли інциденти або компоненти створюватимуся та оновлюватимуся.', + 'description_disabled' => 'To use this feature, you need allow people to signup for notifications.', + 'verified' => 'Підтверджено', + 'not_verified' => 'Не підтверджено', + 'subscriber' => ': лист, підписаний: Дата', + '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.', @@ -195,96 +205,96 @@ return [ // Settings 'settings' => [ - 'settings' => 'Settings', + 'settings' => 'Параметри', 'app-setup' => [ - 'app-setup' => 'Application Setup', - 'images-only' => 'Only images may be uploaded.', - 'too-big' => 'The file you uploaded is too big. Upload an image smaller than :size', + 'app-setup' => 'Налашування додатку', + 'images-only' => 'Лише зображення можуть бути завантажені.', + 'too-big' => 'Завантажений файл завеликий. Завантажте зображення менше за: розмір', ], 'analytics' => [ - 'analytics' => 'Analytics', + 'analytics' => 'Аналітика', ], 'log' => [ - 'log' => 'Log', + 'log' => 'Звіт', ], 'localization' => [ - 'localization' => 'Localization', + 'localization' => 'Регіональні налаштування', ], 'customization' => [ - 'customization' => 'Customization', - 'header' => 'Custom Header HTML', + 'customization' => 'Налаштування', + 'header' => 'Користувальницький заголовок HTML', 'footer' => 'Custom Footer HTML', ], 'mail' => [ - 'mail' => 'Mail', - 'test' => 'Test', + 'mail' => 'Пошта', + 'test' => 'Перевірка', 'email' => [ - 'subject' => 'Test notification from Cachet', - 'body' => 'This is a test notification from Cachet.', + 'subject' => 'Тестове повідомлення від Cachet', + 'body' => 'Це тестове повідомлення від Cachet.', ], ], 'security' => [ - 'security' => 'Security', - 'two-factor' => 'Users without two-factor authentication', + 'security' => 'Безпека', + 'two-factor' => 'Користувачi без двофакторної аутентифікації', ], 'stylesheet' => [ - 'stylesheet' => 'Stylesheet', + 'stylesheet' => 'Стилі', ], 'theme' => [ - 'theme' => 'Theme', + 'theme' => 'Тема', ], 'edit' => [ - 'success' => 'Settings saved.', - 'failure' => 'Settings could not be saved.', + 'success' => 'Параметри збережено.', + 'failure' => 'Налаштування не можуть бути збережені.', ], 'credits' => [ 'credits' => 'Credits', - 'contributors' => 'Contributors', + 'contributors' => 'Контриб’ютори', 'license' => 'Cachet is a BSD-3-licensed open source project, released by Alt Three Services Limited.', - 'backers-title' => 'Backers & Sponsors', - 'backers' => 'If you\'d like to support future development, check out the Cachet Patreon campaign.', - 'thank-you' => 'Thank you to each and every one of the :count contributors.', + 'backers-title' => 'Помiчники i спонсори', + 'backers' => 'Якщо б Ви хотіли підтримати майбутнiй розвиток, погляньте на Cachet Patreon кампанії.', + 'thank-you' => 'Дякуемо кожному з : розраховувати вкладників.', ], ], // Login 'login' => [ - 'login' => 'Login', - 'logged_in' => 'You\'re logged in.', - 'welcome' => 'Welcome back!', - 'two-factor' => 'Please enter your token.', + 'login' => 'Вхід', + 'logged_in' => 'Ви ввійшли в систему.', + 'welcome' => 'З поверненням!', + 'two-factor' => 'Будь ласка, введіть своє ім\'я.', ], // Sidebar footer - 'help' => 'Help', - 'status_page' => 'Status Page', - 'logout' => 'Logout', + 'help' => 'Допомога', + 'status_page' => 'Сторінка повідомлень', + 'logout' => 'Вийти', // Notifications 'notifications' => [ - 'notifications' => 'Notifications', - 'awesome' => 'Awesome.', - 'whoops' => 'Whoops.', + 'notifications' => 'Повідомлення', + 'awesome' => 'Чудово.', + 'whoops' => 'Йой.', ], // Widgets 'widgets' => [ - 'support' => 'Support Cachet', - 'support_subtitle' => 'Check out our Patreon page!', - 'news' => 'Latest News', - 'news_subtitle' => 'Get the latest update', + 'support' => 'Підтримка Cachet', + 'support_subtitle' => 'Перевірте наші сторінки Patreon!', + 'news' => 'Останні новини', + 'news_subtitle' => 'Отримати останні оновлення', ], // Welcome modal 'welcome' => [ - 'welcome' => 'Welcome to your new status page, :username!', + 'welcome' => 'Ласкаво просимо на твою нову сторінку, : ім\'я користувача!', 'message' => 'You\'re almost ready but you might want to configure these extra settings first...', - 'close' => 'I\'m good thanks!', + 'close' => 'Добре, дякую!', 'steps' => [ - 'component' => 'Add your components', - 'incident' => 'Create an incident', - 'customize' => 'Customize your page', - 'team' => 'Add your team', + 'component' => 'Додати Вашi компоненти', + 'incident' => 'Створити інцидент', + 'customize' => 'Налаштуйте свою сторінку', + 'team' => 'Додати свою команду', 'api' => 'Generate an API token', 'two-factor' => 'Setup Two Factor Authentication', ], From add3e7dd9b27fdc4db938a95c54e4d9e56075213 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:13 +0000 Subject: [PATCH 066/194] New translations forms.php (Ukrainian) --- resources/lang/uk-UA/forms.php | 76 +++++++++++++++++----------------- 1 file changed, 39 insertions(+), 37 deletions(-) diff --git a/resources/lang/uk-UA/forms.php b/resources/lang/uk-UA/forms.php index 97732d17..2d0dec15 100644 --- a/resources/lang/uk-UA/forms.php +++ b/resources/lang/uk-UA/forms.php @@ -27,8 +27,8 @@ return [ 'mail_driver' => 'Поштовий драйвер', 'mail_host' => 'Mail Host', 'mail_address' => 'Mail From Address', - 'mail_username' => 'Mail Username', - 'mail_password' => 'Mail Password', + 'mail_username' => 'Ім\'я користувача пошти', + 'mail_password' => 'Пароль пошти', ], // Login form fields @@ -38,7 +38,7 @@ return [ 'password' => 'Пароль', '2fauth' => 'Код автентифікації', 'invalid' => 'Невірний логін чи пароль', - 'invalid-token' => 'Invalid token', + 'invalid-token' => 'Невірний ключ', 'cookies' => 'Ви повинні увімкнути куки щоб увійти.', 'rate-limit' => 'Rate limit exceeded.', 'remember_me' => 'Запам\'ятати мене', @@ -51,7 +51,7 @@ return [ 'component' => 'Компонент', 'message' => 'Повідомлення', 'message-help' => 'Ви також можете використовувати Markdown.', - 'occurred_at' => 'When did this incident occur?', + 'occurred_at' => 'Коли цей інцидент відбувся?', 'notify_subscribers' => 'Повідомити підписників?', 'visibility' => 'Incident Visibility', 'stick_status' => 'Stick Incident', @@ -84,22 +84,22 @@ return [ 'components' => [ 'name' => 'Ім’я', 'status' => 'Статус', - 'group' => 'Group', + 'group' => 'Група', 'description' => 'Опис', 'link' => 'Посилання', 'tags' => 'Теги', - 'tags-help' => 'Comma separated.', - 'enabled' => 'Component enabled?', + 'tags-help' => 'Розділений комами.', + 'enabled' => 'Компонент включений?', 'groups' => [ 'name' => 'Ім’я', - 'collapsing' => 'Expand/Collapse options', - 'visible' => 'Always expanded', - 'collapsed' => 'Collapse the group by default', + 'collapsing' => 'Розгорнути/згорнути параметри', + 'visible' => 'Завжди розгорнутий', + 'collapsed' => 'Згорнути групу за промовчанням', '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', + 'visibility' => 'Видимість', + 'visibility_public' => 'Видимий всім', + 'visibility_authenticated' => 'Видимий лише для зареєстрованих користувачів', ], ], @@ -108,34 +108,34 @@ return [ 'name' => 'Ім’я', 'description' => 'Опис', 'start_at' => 'Schedule start time', - 'timezone' => 'Timezone', + 'timezone' => 'Часовий пояс', 'schedule_frequency' => 'Schedule frequency (in seconds)', 'completion_latency' => 'Completion latency (in seconds)', - 'group' => 'Group', - 'active' => 'Active?', + 'group' => 'Група', + 'active' => 'Активні?', 'groups' => [ - 'name' => 'Group Name', + 'name' => 'Назва групи', ], ], // Metric form fields 'metrics' => [ 'name' => 'Ім’я', - 'suffix' => 'Suffix', + 'suffix' => 'Суфікс', 'description' => 'Опис', 'description-help' => 'Ви також можете використовувати Markdown.', - 'display-chart' => 'Display chart on status page?', + 'display-chart' => 'Відображати графіки на сторінці статусу?', 'default-value' => 'Default value', - 'calc_type' => 'Calculation of metrics', + 'calc_type' => 'Розрахунок швидкості', 'type_sum' => 'Сума', 'type_avg' => 'В середньому', 'places' => 'Decimal 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' => 'Значення', @@ -151,8 +151,9 @@ return [ 'display-graphs' => 'Відображати графіки на сторінці статусу?', 'about-this-page' => 'Інформація про цю сторінку', 'days-of-incidents' => 'How many days of incidents to show?', - 'banner' => 'Banner Image', - 'banner-help' => "It's recommended that you upload files no bigger than 930px wide .", + 'time_before_refresh' => 'Status page refresh rate (in seconds).', + 'banner' => 'Зображення банеру', + 'banner-help' => "Радимо завантажувати файли не більше, ніж 930 пiкселей у ширину.", 'subscribers' => 'Allow people to signup to email notifications?', '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?', @@ -223,17 +224,18 @@ return [ ], // Buttons - 'add' => 'додати', - 'save' => 'Зберегти', - 'update' => 'Update', - 'create' => 'Створити', - 'edit' => 'Edit', - 'delete' => 'Видалити', - 'submit' => 'Submit', - 'cancel' => 'Скасувати', - 'remove' => 'Remove', - 'invite' => 'Запросити', - 'signup' => 'Зареєструйтесь', + 'add' => 'додати', + 'save' => 'Зберегти', + 'update' => 'Update', + 'create' => 'Створити', + 'edit' => 'Edit', + 'delete' => 'Видалити', + 'submit' => 'Submit', + 'cancel' => 'Скасувати', + 'remove' => 'Remove', + 'invite' => 'Запросити', + 'signup' => 'Зареєструйтесь', + 'manage_updates' => 'Manage Updates', // Other 'optional' => '* Optional', From db10bf33875817d57665b871d63ee7cb2d95bd2a Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:14 +0000 Subject: [PATCH 067/194] New translations pagination.php (Ukrainian) --- resources/lang/uk-UA/pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/uk-UA/pagination.php b/resources/lang/uk-UA/pagination.php index 0ee724cf..6fd4f725 100644 --- a/resources/lang/uk-UA/pagination.php +++ b/resources/lang/uk-UA/pagination.php @@ -22,7 +22,7 @@ return [ | */ - 'previous' => 'Previous', - 'next' => 'Next', + 'previous' => 'Попередній', + 'next' => 'Далі', ]; From 14fbb21bd2a827fda5a82ff9e1358f6c9d95ffd8 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:15 +0000 Subject: [PATCH 068/194] New translations cachet.php (Vietnamese) --- resources/lang/vi-VN/cachet.php | 41 +++++++++++++++++---------------- 1 file changed, 21 insertions(+), 20 deletions(-) diff --git a/resources/lang/vi-VN/cachet.php b/resources/lang/vi-VN/cachet.php index 016d7c8c..726c2ae7 100644 --- a/resources/lang/vi-VN/cachet.php +++ b/resources/lang/vi-VN/cachet.php @@ -14,7 +14,7 @@ return [ 'components' => [ 'last_updated' => 'Lần cập nhật cuối :timestamp', 'status' => [ - 0 => 'Unknown', + 0 => 'Không biết', 1 => 'Hoạt động', 2 => 'Vấn đề hiệu suất', 3 => 'Ngưng hoạt động một phần', @@ -28,11 +28,12 @@ return [ // Incidents 'incidents' => [ 'none' => 'Không có báo cáo về sự số nào', - 'past' => 'Sự số trong quá khứ', - 'stickied' => 'Stickied Incidents', + 'past' => 'Các sự số trong quá khứ', + 'stickied' => 'Sự cố Stickied', 'scheduled' => 'Bảo trì định kỳ', 'scheduled_at' => ', định kỳ :timestamp', - 'posted' => 'Posted :timestamp', + 'posted' => 'Đã đăng :timestamp', + 'posted_at' => 'Posted at :timestamp', 'status' => [ 1 => 'Đang điều tra', 2 => 'Xác định', @@ -44,9 +45,9 @@ return [ // Schedule 'schedules' => [ 'status' => [ - 0 => 'Upcoming', - 1 => 'In Progress', - 2 => 'Complete', + 0 => 'Sắp tới', + 1 => 'Đang xử lý', + 2 => 'Hoàn thành', ], ], @@ -65,8 +66,8 @@ return [ // Metrics 'metrics' => [ 'filter' => [ - 'last_hour' => 'Last Hour', - 'hourly' => 'Last 12 Hours', + 'last_hour' => 'Giờ trước', + 'hourly' => '12 giờ trước', 'weekly' => 'Tuần', 'monthly' => 'Tháng', ], @@ -74,22 +75,22 @@ return [ // Subscriber 'subscriber' => [ - 'subscribe' => 'Subscribe to get the updates', + 'subscribe' => 'Đăng ký để nhận các thông báo cập nhật', 'unsubscribe' => 'Unsubscribe at :link', 'button' => 'Đăng ký', 'manage' => [ - 'no_subscriptions' => 'You\'re currently subscribed to all updates.', - 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', + 'no_subscriptions' => 'Bạn hiện đã đăng ký nhận tất cả các thông báo cập nhật.', + 'my_subscriptions' => 'Bạn hiện đã đăng ký nhận các thông báo cập nhật sau.', ], 'email' => [ - 'subscribe' => 'Subscribe to email updates.', - 'subscribed' => 'You\'ve been subscribed to email notifications, please check your email to confirm your subscription.', - 'verified' => 'Your email subscription has been confirmed. Thank you!', - 'manage' => 'Manage your subscription', - 'unsubscribe' => 'Unsubscribe from email updates.', - 'unsubscribed' => 'Your email subscription has been cancelled.', - 'failure' => 'Something went wrong with the subscription.', - 'already-subscribed' => 'Cannot subscribe :email because they\'re already subscribed.', + 'subscribe' => 'Đăng ký nhận thông báo cập nhật qua email.', + 'subscribed' => 'Bạn đã đăng ký nhận email thông báo cập nhật, xin vui lòng kiểm tra email của bạn để xác nhận.', + 'verified' => 'Đăng ký email của bạn đã được xác nhận. Cảm ơn bạn!', + 'manage' => 'Quản lý đăng ký', + 'unsubscribe' => 'Hủy đăng ký thông báo cập nhật qua email.', + 'unsubscribed' => 'Đăng ký email của bạn đã bị hủy bỏ.', + 'failure' => 'Có lỗi xảy ra khi đăng ký nhận thông báo cập nhật.', + 'already-subscribed' => 'Không thể đăng ký :email bởi vì họ đã đăng ký.', ], ], From 5a538c7a035ea7aa75d3aa71afe3c0d05ca298d9 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:16 +0000 Subject: [PATCH 069/194] New translations notifications.php (Thai) --- resources/lang/th-TH/notifications.php | 108 +++++++++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100644 resources/lang/th-TH/notifications.php diff --git a/resources/lang/th-TH/notifications.php b/resources/lang/th-TH/notifications.php new file mode 100644 index 00000000..dfb74e46 --- /dev/null +++ b/resources/lang/th-TH/notifications.php @@ -0,0 +1,108 @@ + [ + 'status_update' => [ + 'mail' => [ + 'subject' => 'สถานะของส่วนประกอบมีการเปลี่ยนแปลง', + 'greeting' => 'สถานะของส่วนประกอบเปลี่ยนแปลง!', + 'content' => ':name เปลี่ยนสถานะจาก :old_status เป็น :new_status.', + 'action' => 'ดู', + ], + 'slack' => [ + 'title' => 'สถานะของส่วนประกอบมีการเปลี่ยนแปลง', + 'content' => ':name เปลี่ยนสถานะจาก :old_status เป็น :new_status.', + ], + 'sms' => [ + 'content' => ':name เปลี่ยนสถานะจาก :old_status เป็น :new_status.', + ], + ], + ], + 'incident' => [ + 'new' => [ + 'mail' => [ + 'subject' => 'มีเหตุการณ์ใหม่ถูกรายงานเข้ามา', + 'greeting' => 'มีเหตุการณ์ที่เกิดขึ้นกับ :app_name', + 'content' => 'เหตุการณ์ :name', + 'action' => 'ดู', + ], + 'slack' => [ + 'title' => 'เหตุการณ์ :name เกิดขึ้น', + 'content' => 'เหตุการณ์ใหม่เกิดขึ้นกับ :app_name', + ], + 'sms' => [ + 'content' => 'มีเหตุการณ์ที่เกิดขึ้นกับ :app_name', + ], + ], + 'update' => [ + 'mail' => [ + 'subject' => 'เหตุการณ์มีการเปลี่ยนแปลง', + 'content' => ':name ถูกเปลี่ยนแปลง', + 'title' => ':name เปลี่ยนสถานะเป็น :new_status', + 'action' => 'ดู', + ], + 'slack' => [ + 'title' => ':name ถูกเปลี่ยนแปลง', + 'content' => ':name เปลี่ยนสถานะเป็น :new_status', + ], + 'sms' => [ + 'content' => 'เหตุการณ์ :name ถูกเปลี่ยนแปลง', + ], + ], + ], + 'schedule' => [ + 'new' => [ + 'mail' => [ + 'subject' => 'มีกำหนดการใหม่', + 'content' => ':name ถูกกำหนดไว้วันที่ :date', + 'title' => 'มีการระบุกำหนดการซ่อมบำรุง', + 'action' => 'ดู', + ], + 'slack' => [ + 'title' => 'มีกำหนดการใหม่!', + 'content' => ':name ถูกกำหนดไว้วันที่ :date', + ], + 'sms' => [ + 'content' => ':name ถูกกำหนดไว้วันที่ :date', + ], + ], + ], + 'subscriber' => [ + 'verify' => [ + 'mail' => [ + 'subject' => 'ยืนยันการติดตามของคุณ', + 'content' => 'คลิกเพื่อยืนยันว่าคุณต้องการติดตามสถานะของ :app_name', + 'title' => 'ยืนยันการติดตามสถานะของ :app_name', + 'action' => 'ยืนยัน', + ], + ], + ], + 'system' => [ + 'test' => [ + 'mail' => [ + 'subject' => 'ทดสอบจาก Cachet!', + 'content' => 'นี้คือทดสอบการแจ้งเตือนจาก Cachet!', + 'title' => '🔔', + ], + ], + ], + 'user' => [ + 'invite' => [ + 'mail' => [ + 'subject' => 'มีคำเชิญส่งถึงคุณ...', + 'content' => 'คุณถูกเชิญให้เข้าร่วมหน้าสถานะของ :app_name', + 'title' => 'คุณได้รับคำเชิญให้เข้าร่วมหน้าสถานะของ :app_name', + 'action' => 'ตกลง', + ], + ], + ], +]; From 08412c6de5851b364262de1c26092d982346e373 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:18 +0000 Subject: [PATCH 070/194] New translations dashboard.php (Vietnamese) --- resources/lang/vi-VN/dashboard.php | 92 +++++++++++++++++------------- 1 file changed, 51 insertions(+), 41 deletions(-) diff --git a/resources/lang/vi-VN/dashboard.php b/resources/lang/vi-VN/dashboard.php index 1bdbfa82..dfe42c20 100644 --- a/resources/lang/vi-VN/dashboard.php +++ b/resources/lang/vi-VN/dashboard.php @@ -12,7 +12,7 @@ return [ 'dashboard' => 'Bảng điều khiển', - 'writeable_settings' => 'The Cachet settings directory is not writeable. Please make sure that ./bootstrap/cachet is writeable by the web server.', + 'writeable_settings' => 'Thư mục cài đặt Cachet không phải là có thể ghi. Hãy chắc chắn rằng ./bootstrap/cachet là có thể ghi bởi máy chủ web.', // Incidents 'incidents' => [ @@ -21,7 +21,20 @@ return [ 'logged' => '{0} Không có sự cố nào, làm việc tốt.|Bạn có một sự cố được ghi nhận.|Bạn có :count sự cố được báo cáo.', 'incident-create-template' => 'Tạo template', 'incident-templates' => 'Mẫu sự cố', - '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' => 'Tạo bản cập nhật sự cố mới', + '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' => 'Thêm một sự cố', 'success' => 'Sự cố đã được thêm.', @@ -33,13 +46,8 @@ return [ 'failure' => 'Có một lỗi xảy ra khi đang lưu Sự Cố, xin vui lòng thử lại.', ], 'delete' => [ - '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 :incident', - 'success' => 'Update added.', + 'success' => 'Sự cố đã bị xoá và sẽ không hiển thị trên trang tình trạng của bạn.', + 'failure' => 'Sự cố không thể xóa, hãy thử một lần nữa.', ], // Incident templates @@ -47,18 +55,18 @@ return [ 'title' => 'Mẫu sự cố', 'add' => [ 'title' => 'Tạo ra một khuôn mẫu khi gặp sự cố', - 'message' => 'You should add an incident template.', - 'success' => 'Your new incident template has been created.', - 'failure' => 'Something went wrong with the incident template.', + 'message' => 'Bạn nên thêm một mẫu sự cố.', + 'success' => 'Mẫu sự cố mới của bạn đã được tạo.', + 'failure' => 'Có lỗi xảy ra với mẫu sự cố.', ], 'edit' => [ 'title' => 'Sửa mẫu', - 'success' => 'The incident template has been updated.', - 'failure' => 'Something went wrong updating the incident template', + 'success' => 'Mẫu sự cố đã được cập nhật.', + 'failure' => 'Có lỗi xảy ra khi cập nhật mẫu sự cố', ], 'delete' => [ - 'success' => 'The incident template has been deleted.', - 'failure' => 'The incident template could not be deleted, please try again.', + 'success' => 'Mẫu sự cố đã bị xoá.', + 'failure' => 'Mẫu sự cố không thể xóa, hãy thử một lần nữa.', ], ], ], @@ -88,40 +96,40 @@ return [ 'components' => [ 'components' => 'Components', 'component_statuses' => 'Component Statuses', - 'listed_group' => 'Grouped under :name', + 'listed_group' => 'Nhóm theo :name', 'add' => [ 'title' => 'Thêm một thành phần', 'message' => 'Bạn cần thêm một component.', - 'success' => 'Component created.', - 'failure' => 'Something went wrong with the component group, please try again.', + 'success' => 'Thành phần đã được tạo.', + 'failure' => 'Có lỗi xảy ra với nhóm thành phần, vui lòng thử lại.', ], 'edit' => [ 'title' => 'Chỉnh sửa một thành phần', - 'success' => 'Component updated.', - 'failure' => 'Something went wrong with the component group, please try again.', + 'success' => 'Thành phần đã được cập nhật.', + 'failure' => 'Có lỗi xảy ra với nhóm thành phần, vui lòng thử lại.', ], 'delete' => [ - 'success' => 'The component has been deleted!', - 'failure' => 'The component could not be deleted, please try again.', + 'success' => 'Thành phần đã bị xóa!', + 'failure' => 'Chưa xóa được thành phần, vui lòng thử lại.', ], // Component groups 'groups' => [ 'groups' => 'Component group|Component groups', - 'no_components' => 'You should add a component group.', + 'no_components' => 'Bạn nên thêm một nhóm thành phần.', 'add' => [ - 'title' => 'Add a component group', - 'success' => 'Component group added.', - 'failure' => 'Something went wrong with the component group, please try again.', + 'title' => 'Thêm một nhóm thành phần', + 'success' => 'Nhóm thành phần đã được tạo.', + 'failure' => 'Có lỗi xảy ra với nhóm thành phần, vui lòng thử lại.', ], 'edit' => [ - 'title' => 'Edit a component group', - 'success' => 'Component group updated.', - 'failure' => 'Something went wrong with the component group, please try again.', + 'title' => 'Chỉnh sửa một nhóm thành phần', + 'success' => 'Nhóm thành phần đã được cập nhật.', + 'failure' => 'Có lỗi xảy ra với nhóm thành phần, vui lòng thử lại.', ], 'delete' => [ - 'success' => 'Component group has been deleted!', - 'failure' => 'The component group could not be deleted, please try again.', + 'success' => 'Nhóm thành phần đã bị xóa!', + 'failure' => 'Không xóa được nhóm thành phần, vui lòng thử lại.', ], ], ], @@ -130,8 +138,8 @@ return [ 'metrics' => [ 'metrics' => 'Các số liệu', 'add' => [ - 'title' => 'Create a metric', - 'message' => 'You should add a metric.', + 'title' => 'Tạo một thước đo', + 'message' => 'Bạn nên thêm một thước đo.', 'success' => 'Metric created.', 'failure' => 'Something went wrong with the metric, please try again.', ], @@ -147,13 +155,15 @@ return [ ], // Subscribers 'subscribers' => [ - 'subscribers' => 'Subscribers', - 'description' => 'Subscribers will receive email updates when incidents are created or components are updated.', - 'verified' => 'Đã xác nhận', - 'not_verified' => 'Chưa xác nhận', - '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' => 'Đã xác nhận', + 'not_verified' => 'Chưa xác nhận', + 'subscriber' => ':email, đã đăng ký :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.', From ee195321814cfb03cea9803853612cb5c0ff49be Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:19 +0000 Subject: [PATCH 071/194] New translations forms.php (Vietnamese) --- resources/lang/vi-VN/forms.php | 44 ++++++++++++++++++---------------- 1 file changed, 23 insertions(+), 21 deletions(-) diff --git a/resources/lang/vi-VN/forms.php b/resources/lang/vi-VN/forms.php index 92f7fd8a..1963b779 100644 --- a/resources/lang/vi-VN/forms.php +++ b/resources/lang/vi-VN/forms.php @@ -22,13 +22,13 @@ return [ 'site_locale' => 'Chọn ngôn ngữ', 'enable_google2fa' => 'Bật tính năng xác thực 2 bước của google', 'cache_driver' => 'Cache Driver', - 'queue_driver' => 'Queue Driver', + 'queue_driver' => 'Trình điều khiển hàng đợi', 'session_driver' => 'Session Driver', 'mail_driver' => 'Mail Driver', - 'mail_host' => 'Mail Host', - 'mail_address' => 'Mail From Address', + 'mail_host' => 'Máy chủ thư', + 'mail_address' => 'Địa chỉ thư gửi đi', 'mail_username' => 'Mail Username', - 'mail_password' => 'Mail Password', + 'mail_password' => 'Mật khẩu thư', ], // Login form fields @@ -37,11 +37,11 @@ return [ 'email' => 'Email', 'password' => 'Mật khẩu', '2fauth' => 'Mã số xác thực', - 'invalid' => 'Invalid username or password', + 'invalid' => 'Tên người dùng hoặc mật khẩu không hợp lệ', 'invalid-token' => 'Token không hợp lệ', 'cookies' => 'Bạn phải bật cookie để đăng nhập.', - 'rate-limit' => 'Rate limit exceeded.', - 'remember_me' => 'Remember me', + 'rate-limit' => 'Vượt quá giới hạn truy cập.', + 'remember_me' => 'Ghi nhớ đăng nhập', ], // Incidents form fields @@ -51,12 +51,12 @@ return [ 'component' => 'Component', 'message' => 'Tin nhắn', 'message-help' => 'Bạn cũng có thể sử dụng Markdown.', - 'occurred_at' => 'When did this incident occur?', + 'occurred_at' => 'Sự cố này đã xảy ra khi nào?', 'notify_subscribers' => 'Notify subscribers?', 'visibility' => 'Incident Visibility', 'stick_status' => 'Stick Incident', 'stickied' => 'Stickied', - 'not_stickied' => 'Not Stickied', + 'not_stickied' => 'Không Stickied', 'public' => 'Viewable by public', 'logged_in_only' => 'Only visible to logged in users', 'templates' => [ @@ -151,8 +151,9 @@ return [ 'display-graphs' => 'Hiển thị các biểu đồ trên trang trạng thái?', 'about-this-page' => 'Về trang này', 'days-of-incidents' => 'Sự cố này sẽ hiển thị mấy ngày ?', + 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => 'Banner Image', - 'banner-help' => 'Bạn nên upload ảnh có chiều rộng lớn hơn 930px', + 'banner-help' => "Bạn nên upload ảnh có chiều rộng lớn hơn 930px", 'subscribers' => 'Allow people to signup to email notifications?', '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?', @@ -223,17 +224,18 @@ return [ ], // Buttons - 'add' => 'Thêm', - 'save' => 'Lưu thay đổi', - 'update' => 'Cập nhật', - 'create' => 'Tạo mới', - 'edit' => 'Chỉnh sửa', - 'delete' => 'Xoá', - 'submit' => 'Gửi', - 'cancel' => 'Hủy', - 'remove' => 'Xoá', - 'invite' => 'Mời', - 'signup' => 'Đăng ký', + 'add' => 'Thêm', + 'save' => 'Lưu thay đổi', + 'update' => 'Cập nhật', + 'create' => 'Tạo mới', + 'edit' => 'Chỉnh sửa', + 'delete' => 'Xoá', + 'submit' => 'Gửi', + 'cancel' => 'Hủy', + 'remove' => 'Xoá', + 'invite' => 'Mời', + 'signup' => 'Đăng ký', + 'manage_updates' => 'Manage Updates', // Other 'optional' => '* Tùy chọn', From 52e02d3f86374e18e1eb6ed1d0a15ca65640992d Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:20 +0000 Subject: [PATCH 072/194] New translations pagination.php (Vietnamese) --- resources/lang/vi-VN/pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/vi-VN/pagination.php b/resources/lang/vi-VN/pagination.php index 0ee724cf..8a3c50e9 100644 --- a/resources/lang/vi-VN/pagination.php +++ b/resources/lang/vi-VN/pagination.php @@ -22,7 +22,7 @@ return [ | */ - 'previous' => 'Previous', - 'next' => 'Next', + 'previous' => 'Trước', + 'next' => 'Tiếp theo', ]; From e2e7ea9e18317578bed6f9105251c97f319bd33f Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:21 +0000 Subject: [PATCH 073/194] New translations validation.php (Vietnamese) --- resources/lang/vi-VN/validation.php | 42 ++++++++++++++--------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/resources/lang/vi-VN/validation.php b/resources/lang/vi-VN/validation.php index 56522417..b75e4e5c 100644 --- a/resources/lang/vi-VN/validation.php +++ b/resources/lang/vi-VN/validation.php @@ -31,30 +31,30 @@ return [ 'array' => ':attribute phải là một mảng.', 'before' => ':attribute phải là một ngày trước :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 phải nằm giữa :min - :max.', + 'file' => ':attribute phải trong khoảng từ :min đến :max kilobytes.', + 'string' => ':attribute phải trong khoảng từ :min đến :max ký tự.', 'array' => ':attribute phải trong khoảng :min và :max mục.', ], - '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 phải là true hoặc false.', + 'confirmed' => 'Xác nhận :attribute không đúng.', + 'date' => ':attribute không phải là ngày hợp lệ.', + 'date_format' => ':attribute không phù hợp định dạng :format.', + 'different' => ':attribute và :other phải khác nhau.', + 'digits' => ':attribute phải có :digits chữ số.', + 'digits_between' => ':attribute phải ở giữa :min và :max chữ số.', + 'email' => ':attribute phải là một email hợp lệ.', + 'exists' => ':attribute đã chọn không hợp lệ.', + 'distinct' => 'Thuộc tính :attribute có giá trị trùng lặp.', + 'filled' => 'Thuộc tính :attribute là bắt buộc.', 'image' => 'Thuộc tính :attribute phải là một file ảnh.', - '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 đã chọn không hợp lệ.', + 'in_array' => 'Thuộc tính :attribute không tồn tại trong :other.', + 'integer' => ':attribute phải là một số nguyên.', + 'ip' => ':attribute phải là một địa chỉ IP hợp lệ.', 'json' => ':attribute phải là một chuỗi JSON hợp lệ.', 'max' => [ - 'numeric' => 'The :attribute may not be greater than :max.', + 'numeric' => ':attribute có thể không lớn hơn :max.', 'file' => 'The :attribute may not be greater than :max kilobytes.', 'string' => 'The :attribute may not be greater than :max characters.', 'array' => ':attribute có thể không có nhiều hơn :max mục.', @@ -66,11 +66,11 @@ return [ 'string' => 'The :attribute must be at least :min characters.', 'array' => 'The :attribute must have at least :min items.', ], - 'not_in' => 'The selected :attribute is invalid.', + 'not_in' => ':attribute đã chọn không hợp lệ.', 'numeric' => 'The :attribute must be a number.', 'present' => 'The :attribute field must be present.', 'regex' => 'Định dạng :attribute không hợp lệ.', - 'required' => 'The :attribute field is required.', + 'required' => 'Thuộc tính :attribute là bắt buộc.', 'required_if' => 'The :attribute field is required when :other is :value.', 'required_unless' => 'The :attribute field is required unless :other is in :values.', 'required_with' => 'Trường :attribute là bắt buộc khi :values là hiện tại.', From a41a5362501589f87d359412b87f2fba625a8638 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:22 +0000 Subject: [PATCH 074/194] New translations notifications.php (Vietnamese) --- resources/lang/vi-VN/notifications.php | 62 +++++++++++++------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/resources/lang/vi-VN/notifications.php b/resources/lang/vi-VN/notifications.php index 6a65c6bd..aa2e508c 100644 --- a/resources/lang/vi-VN/notifications.php +++ b/resources/lang/vi-VN/notifications.php @@ -13,74 +13,74 @@ 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' => 'Trạng thái của Thành phần đã được cập nhật', + 'greeting' => 'Trạng thái của Cấu phần đã được cập nhật!', + 'content' => 'Trạng thái của :name đã đổi từ :old_status sang :new_status.', + 'action' => 'Xem', ], 'slack' => [ - 'title' => 'Component Status Updated', - 'content' => ':name status changed from :old_status to :new_status.', + 'title' => 'Trạng thái của Thành phần đã được cập nhật', + 'content' => 'Trạng thái của :name đã đổi từ :old_status sang :new_status.', ], 'sms' => [ - 'content' => ':name status changed from :old_status to :new_status.', + 'content' => 'Trạng thái của :name đã đổi từ :old_status sang :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' => 'Sự cố mới đã được báo cáo', + 'greeting' => 'Một sự cố mới được báo cáo tại :app_name.', + 'content' => 'Sự cố :name đã được báo cáo', + 'action' => 'Xem', ], 'slack' => [ - 'title' => 'Incident :name Reported', - 'content' => 'A new incident was reported at :app_name', + 'title' => 'Sự cố :name đã được báo cáo', + 'content' => 'Một sự cố mới được báo cáo tại :app_name', ], 'sms' => [ - 'content' => 'A new incident was reported at :app_name.', + 'content' => 'Một sự cố mới được báo cáo tại :app_name.', ], ], 'update' => [ 'mail' => [ - 'subject' => 'Incident Updated', - 'content' => ':name was updated', - 'title' => ':name was updated to :new_status', - 'action' => 'View', + 'subject' => 'Sự cố đã cập nhật', + 'content' => ':name đã được cập nhật', + 'title' => ':name đã được cập nhật tới :new_status', + 'action' => 'Xem', ], 'slack' => [ - 'title' => ':name Updated', - 'content' => ':name was updated to :new_status', + 'title' => ':name đã được cập nhật', + 'content' => ':name đã được cập nhật tới :new_status', ], 'sms' => [ - 'content' => 'Incident :name was updated', + 'content' => 'Sự cố :name đã được Cập Nhật', ], ], ], 'schedule' => [ 'new' => [ 'mail' => [ - 'subject' => 'New Schedule Created', - 'content' => ':name was scheduled for :date', - 'title' => 'A new scheduled maintenance was created.', - 'action' => 'View', + 'subject' => 'Lịch mới đã được tạo', + 'content' => ':name được đặt lịch vào :date', + 'title' => 'Lịch bảo trì mới đã được tạo.', + 'action' => 'Xem', ], 'slack' => [ - 'title' => 'New Schedule Created!', - 'content' => ':name was scheduled for :date', + 'title' => 'Lịch mới đã được tạo!', + 'content' => ':name được đặt lịch vào :date', ], 'sms' => [ - 'content' => ':name was scheduled for :date', + 'content' => ':name được đặt lịch vào :date', ], ], ], 'subscriber' => [ 'verify' => [ 'mail' => [ - 'subject' => 'Verify Your Subscription', - 'content' => 'Click to verify your subscription to :app_name status page.', + 'subject' => 'Xác minh đăng ký của bạn', + 'content' => 'Nhấn vào đây để xác nhận đăng ký của bạn tại trang trạng thái :app_name.', 'title' => 'Verify your subscription to :app_name status page.', 'action' => 'Verify', ], @@ -98,7 +98,7 @@ return [ 'user' => [ 'invite' => [ 'mail' => [ - 'subject' => 'Your invitation is inside...', + 'subject' => 'Lời mời của bạn là bên trong...', 'content' => 'You have been invited to join :app_name status page.', 'title' => 'You\'re invited to join :app_name status page.', 'action' => 'Accept', From faed36c711a4a9b58200a027e1d3103efab0e0df Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:23 +0000 Subject: [PATCH 075/194] New translations cachet.php (English (upside down)) --- resources/lang/en-UD/cachet.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/resources/lang/en-UD/cachet.php b/resources/lang/en-UD/cachet.php index 30ededf4..fc0e3ccb 100644 --- a/resources/lang/en-UD/cachet.php +++ b/resources/lang/en-UD/cachet.php @@ -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' => [ From 8d1fff03c057814ce3bae0a45863eeb645ed5a27 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:24 +0000 Subject: [PATCH 076/194] New translations dashboard.php (English (upside down)) --- resources/lang/en-UD/dashboard.php | 60 +++++++++++++++++------------- 1 file changed, 35 insertions(+), 25 deletions(-) diff --git a/resources/lang/en-UD/dashboard.php b/resources/lang/en-UD/dashboard.php index 852ce7a2..936014bf 100644 --- a/resources/lang/en-UD/dashboard.php +++ b/resources/lang/en-UD/dashboard.php @@ -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', From b9b625d6105625209ad21d6bbbc8ea1fddfdaade Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:25 +0000 Subject: [PATCH 077/194] New translations forms.php (English (upside down)) --- resources/lang/en-UD/forms.php | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/resources/lang/en-UD/forms.php b/resources/lang/en-UD/forms.php index fb5cd02b..7966a9ff 100644 --- a/resources/lang/en-UD/forms.php +++ b/resources/lang/en-UD/forms.php @@ -151,8 +151,9 @@ 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', + 'banner-help' => "crwdns1196:0crwdne1196:0", 'subscribers' => 'crwdns1197:0crwdne1197:0', 'skip_subscriber_verification' => 'crwdns1198:0crwdne1198:0', 'automatic_localization' => 'crwdns1199:0crwdne1199: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', From 8efbb8647638277d4865d665d36563c93fde0568 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:26 +0000 Subject: [PATCH 078/194] New translations cachet.php (Turkish) --- resources/lang/tr-TR/cachet.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/resources/lang/tr-TR/cachet.php b/resources/lang/tr-TR/cachet.php index 6b4b9ade..03a6f147 100644 --- a/resources/lang/tr-TR/cachet.php +++ b/resources/lang/tr-TR/cachet.php @@ -33,6 +33,7 @@ return [ 'scheduled' => 'Zamanlanmış bakım', 'scheduled_at' => ',zamanlanmış :zamandilimi', 'posted' => ':timestamp gönderildi', + 'posted_at' => 'Posted at :timestamp', 'status' => [ 1 => 'İnceleniyor', 2 => 'Tanımlandı', @@ -75,7 +76,7 @@ return [ // Subscriber 'subscriber' => [ 'subscribe' => 'Güncellemeleri almak için abone olun', - 'unsubscribe' => 'Unsubscribe at :link', + 'unsubscribe' => 'Adresindeki aboneliği iptal et :link', 'button' => 'Abone ol', 'manage' => [ 'no_subscriptions' => 'Şu anda tüm güncellemeleri abone oldunuz.', @@ -111,16 +112,16 @@ return [ 'close' => 'Kapat', 'subscribe' => [ 'title' => 'Bileşen güncellemelerine abone ol', - 'body' => 'Enter your email address to subscribe to updates for this component. If you\'re already subscribed, you\'ll already receive emails for this component.', + 'body' => 'Bu içeriğin güncellemelerine abone olmak için e-mail adresinizi giriniz. Eğer zaten aboneyseniz, bu içerikle ilgili zaten e-mailler alacaksınız.', 'button' => 'Abone ol', ], ], // Other 'home' => 'Ana Sayfa', - 'description' => 'Stay up to date with the latest service updates from :app.', - 'powered_by' => 'Powered by Cachet.', - 'timezone' => 'Times are shown in :timezone.', + 'description' => 'Şu uygulamalardaki en son hizmet güncellemeleri ile güncel kalın.', + 'powered_by' => ' Önbellek kaynaklı.', + 'timezone' => 'Saatler, saat diliminde gösterilir.', 'about_this_site' => 'Bu Site hakkında', 'rss-feed' => 'RSS', 'atom-feed' => 'Atom', From 51d85c0cd55609bca4240b9834000f5d4aef4c33 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:27 +0000 Subject: [PATCH 079/194] New translations validation.php (Thai) --- resources/lang/th-TH/validation.php | 122 ++++++++++++++++++++++++++++ 1 file changed, 122 insertions(+) create mode 100644 resources/lang/th-TH/validation.php diff --git a/resources/lang/th-TH/validation.php b/resources/lang/th-TH/validation.php new file mode 100644 index 00000000..e4eb0281 --- /dev/null +++ b/resources/lang/th-TH/validation.php @@ -0,0 +1,122 @@ + 'คุณต้องยอมรับ :attribute', + 'active_url' => ':attribute ไม่ใช่รูปแบบ URL ที่ถูกต้อง', + 'after' => ':attribute ต้องเป็นวันหลังจาก :date เท่านั้น', + 'alpha' => ':attribute ต้องมีเฉพาะตัวอักษรเท่านั้น', + 'alpha_dash' => ':attribute ต้องประกอบด้วยตัวอักษร ตัวเลข และเครื่องหมายลบเท่านั้น', + 'alpha_num' => ':attribute ต้องประกอบด้วยตัวอักษรและตัวเลขเท่านั้น', + 'array' => ':attribute ต้องเป็นอาร์เรย์เท่านั้น', + 'before' => ':attribute ต้องอยู่ในรูปแบบวันก่อนวันที่ :date เท่านั้น', + 'between' => [ + 'numeric' => ':attribute ต้องอยู่ระหว่าง :min ถึง :max', + 'file' => ':attribute ต้องมีขนาดระหว่าง :min ถึง :max กิโลไบต์', + 'string' => ':attribute ต้องมีความยาวระหว่าง :min ถึง :max ตัวอักษร', + 'array' => ':attribute ต้องมีตั้งแต่ :min ถึง :max รายการ', + ], + 'boolean' => ':attribute ต้องเป็น true หรือ false เท่านั้น', + 'confirmed' => ':attribute ที่ใช่ยืนยันไม่ตรงกัน', + 'date' => ':attribute เป็นรูปแบบวันที่ที่ไม่ถูกต้อง', + 'date_format' => ':attribute ไม่ตรงตามรูปแบบ :format', + 'different' => ':attribute และ :other ต้องไม่เหมือนกัน', + 'digits' => ':attribute ต้องมี :digits หลัก', + 'digits_between' => ':attribute ต้องยาวระหว่าง :min ถึง :max หลัก', + 'email' => ':attribute ต้องเป็นรูปแบบอีเมลที่ถูกต้อง', + 'exists' => ':attribute ที่เลือกไม่ถูกต้อง', + 'distinct' => ':attribute มีค่าซ้ำกัน', + 'filled' => 'กรุณากรอกข้อมูลในฟิลด์ :attribute', + 'image' => ':attribute ต้องเป็นรูปภาพเท่านั้น', + 'in' => ':attribute ที่เลือกไม่ถูกต้อง', + 'in_array' => 'ฟิลด์ :attribute ไม่มีอยู่ใน :other', + 'integer' => ':attribute ต้องเป็นจำนวนเต็มเท่านั้น', + 'ip' => ':attribute ต้องเป็นรูปแบบไอพีแอดเดรสเท่านั้น', + 'json' => ':attribute ต้องเป็นรูปแบบ JSON เท่านั้น', + 'max' => [ + 'numeric' => ':attribute ต้องมีค่าไม่มากกว่า :max', + 'file' => ':attribute ต้องไม่ใหญ่กว่า :max กิโลไบต์', + 'string' => ':attribute ต้องไม่ยาวกว่า :max ตัวอักษร', + 'array' => ':attribute ต้องมีไม่เกิน :max รายการ', + ], + 'mimes' => ':attribute ต้องเป็นไฟล์ :values เท่านั้น', + 'min' => [ + 'numeric' => ':attribute ต้องมีค่าอย่างน้อย :min', + 'file' => ':attribute ต้องมีขนาดอย่างน้อย :min กิโลไบต์', + 'string' => ':attribute ต้องยาวอย่างน้อย :min ตัวอักษร', + 'array' => ':attribute ต้องมีอย่างน้อย :min รายการ', + ], + 'not_in' => ':attribute ที่เลือกไม่ถูกต้อง', + 'numeric' => ':attribute ต้องเป็นตัวเลขเท่านั้น', + 'present' => 'ฟิลด์ :attribute ต้องมีอยู่จริง', + 'regex' => 'รูปแบบของ :attribute ไม่ถูกต้อง', + 'required' => 'กรุณากรอกข้อมูลในฟิลด์ :attribute', + 'required_if' => 'ฟิลด์ :attribute จำเป็นต้องกรอก เมื่อ :other เป็น :value', + 'required_unless' => 'ฟิลด์ :attribute จำเป็นต้องกรอก นอกจาก :other อยู่ใน :value', + 'required_with' => 'ฟิลด์ :attribute จำเป็นต้องกรอก เมื่อ :value มีข้อมูล', + 'required_with_all' => 'ฟิลด์ :attribute จำเป็นต้องกรอก เมื่อ :value มีข้อมูล', + 'required_without' => 'ฟิลด์ :attribute จำเป็นต้องกรอก เมื่อ :value ไม่มีข้อมูล', + 'required_without_all' => 'ฟิลด์ :attribute จำเป็นต้องกรอก เมื่อ :value ไม่มีข้อมูล', + 'same' => ':attribute และ :other ต้องตรงกัน', + 'size' => [ + 'numeric' => ':attribute ต้องมีขนาด :size', + 'file' => ':attribute ต้องมีขนาด :size กิโลไบต์', + 'string' => ':attribute ต้องมีจำนวน :size ตัวอักษร', + 'array' => ':attribute ต้องมีอยู่ :size รายการ', + ], + 'string' => ':attribute ต้องเป็นข้อความเท่านั้น', + 'timezone' => ':attribute ต้องเป็นเขตเวลาที่ถูกต้อง', + 'unique' => ':attribute ถูกใช้ไปแล้ว', + 'url' => 'รูปแบบของ :attribute ไม่ถูกต้อง', + + /* + |-------------------------------------------------------------------------- + | Custom Validation Language Lines + |-------------------------------------------------------------------------- + | + | Here you may specify custom validation messages for attributes using the + | convention "attribute.rule" to name the lines. This makes it quick to + | specify a specific custom language line for a given attribute rule. + | + */ + + 'custom' => [ + 'attribute-name' => [ + 'rule-name' => 'ข้อความที่กำหนดเอง', + ], + ], + + /* + |-------------------------------------------------------------------------- + | Custom Validation Attributes + |-------------------------------------------------------------------------- + | + | The following language lines are used to swap attribute place-holders + | with something more reader friendly such as E-Mail Address instead + | of "email". This simply helps us make messages a little cleaner. + | + */ + + 'attributes' => [], + +]; From 67fb9d77e82f5429190f2919c501497cfa9115c3 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:28 +0000 Subject: [PATCH 080/194] New translations notifications.php (Romanian) --- resources/lang/ro-RO/notifications.php | 76 +++++++++++++------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/resources/lang/ro-RO/notifications.php b/resources/lang/ro-RO/notifications.php index 6a65c6bd..fa63e896 100644 --- a/resources/lang/ro-RO/notifications.php +++ b/resources/lang/ro-RO/notifications.php @@ -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' => 'Starea componentei a fost actualizată', + 'greeting' => 'Starea unei componente a fost actualizată!', + 'content' => 'Starea :name a fost schimbată din :old_status în :new_status.', + 'action' => 'Vizualizare', ], 'slack' => [ - 'title' => 'Component Status Updated', - 'content' => ':name status changed from :old_status to :new_status.', + 'title' => 'Starea componentei a fost actualizată', + 'content' => 'Starea :name a fost schimbată din :old_status în :new_status.', ], 'sms' => [ - 'content' => ':name status changed from :old_status to :new_status.', + 'content' => 'Starea :name a fost schimbată din :old_status în :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' => 'Incident nou raportat', + 'greeting' => 'Un nou incident a fost raportat la :app_name.', + 'content' => 'Incidentul :name a fost raportat', + 'action' => 'Vizualizare', ], 'slack' => [ - 'title' => 'Incident :name Reported', - 'content' => 'A new incident was reported at :app_name', + 'title' => 'Incidentul :name a fost raportat', + 'content' => 'Un nou incident a fost raportat la :app_name', ], 'sms' => [ - 'content' => 'A new incident was reported at :app_name.', + 'content' => 'Un nou incident a fost raportat la :app_name.', ], ], 'update' => [ 'mail' => [ - 'subject' => 'Incident Updated', - 'content' => ':name was updated', - 'title' => ':name was updated to :new_status', - 'action' => 'View', + 'subject' => 'Incident actualizat', + 'content' => ':name a fost actualizat(ă)', + 'title' => ':name a fost actualizată la :new_status', + 'action' => 'Vizualizare', ], 'slack' => [ - 'title' => ':name Updated', - 'content' => ':name was updated to :new_status', + 'title' => ':name actualizat(ă)', + 'content' => ':name a fost actualizată la :new_status', ], 'sms' => [ - 'content' => 'Incident :name was updated', + 'content' => 'Incidentul :name a fost actualizat', ], ], ], 'schedule' => [ 'new' => [ 'mail' => [ - 'subject' => 'New Schedule Created', - 'content' => ':name was scheduled for :date', - 'title' => 'A new scheduled maintenance was created.', - 'action' => 'View', + 'subject' => 'Planificare nouă creată', + 'content' => ':name a fost planificat pentru data :date', + 'title' => 'O nouă mentenanță programată a fost creată.', + 'action' => 'Vizualizare', ], 'slack' => [ - 'title' => 'New Schedule Created!', - 'content' => ':name was scheduled for :date', + 'title' => 'Planificare nouă creată!', + 'content' => ':name a fost planificat pentru data :date', ], 'sms' => [ - 'content' => ':name was scheduled for :date', + 'content' => ':name a fost planificat pentru data :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ți-vă abonamentul', + 'content' => 'Apăsați pentru a vă verifica abonamentul la pagina de stare :app_name.', + 'title' => 'Verificați-vă abonamentul la pagina de stare :app_name.', + 'action' => 'Verificați', ], ], ], 'system' => [ 'test' => [ 'mail' => [ - 'subject' => 'Ping from Cachet!', - 'content' => 'This is a test notification from Cachet!', + 'subject' => 'Ping de la Cachet!', + 'content' => 'Aceasta este o notificare de test de la 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' => 'Invitația dvs. este în interior...', + 'content' => 'Ați fost invitat(ă) să vă alăturați paginii de stare :app_name.', + 'title' => 'Ai fost invitat să te alături paginii de stare :app_name.', + 'action' => 'Accept(ă)', ], ], ], From 89ccbeae0e23a6fa65d0092c94fdef430cd88b54 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:29 +0000 Subject: [PATCH 081/194] New translations cachet.php (Russian) --- resources/lang/ru-RU/cachet.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/resources/lang/ru-RU/cachet.php b/resources/lang/ru-RU/cachet.php index 7fade858..9f3c4042 100644 --- a/resources/lang/ru-RU/cachet.php +++ b/resources/lang/ru-RU/cachet.php @@ -14,7 +14,7 @@ return [ 'components' => [ 'last_updated' => 'Последнее обновление :timestamp', 'status' => [ - 0 => 'Неизвестный', + 0 => 'Неизвестно', 1 => 'Работает', 2 => 'Падение производительности', 3 => 'Перебои в работе', @@ -29,10 +29,11 @@ return [ 'incidents' => [ 'none' => 'Без происшествий', 'past' => 'Последние инциденты', - 'stickied' => 'Stickied инциденты', + 'stickied' => 'Закрепленные инциденты', 'scheduled' => 'Плановые работы', 'scheduled_at' => ', запланированы :timestamp', - 'posted' => 'Отправлено :timestamp', + 'posted' => 'Опубликовано :timestamp', + 'posted_at' => 'Posted at :timestamp', 'status' => [ 1 => 'Проводим анализ проблемы', 2 => 'Причина определена', @@ -120,7 +121,7 @@ return [ 'home' => 'Главный экран', 'description' => 'Будьте в курсе последних новостей о состоянии сервиса от :app.', 'powered_by' => 'Работает на Cachet.', - 'timezone' => 'Время указано в :timezone.', + 'timezone' => 'Время показано по :timezone.', 'about_this_site' => 'Об этом сайте', 'rss-feed' => 'RSS', 'atom-feed' => 'Atom', From 50a6004468210b0c32fc49b2c24eac137ed8d4cf Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:30 +0000 Subject: [PATCH 082/194] New translations dashboard.php (Russian) --- resources/lang/ru-RU/dashboard.php | 36 +++++++++++++++++++----------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/resources/lang/ru-RU/dashboard.php b/resources/lang/ru-RU/dashboard.php index af4e51fe..33d3ee4e 100644 --- a/resources/lang/ru-RU/dashboard.php +++ b/resources/lang/ru-RU/dashboard.php @@ -21,7 +21,20 @@ return [ 'logged' => '{0} Нет инцидентов, отличная работа!|У вас зарегистрирован :count инцидент.|У вас зарегистрировано :count инцидента.|У вас зарегистрировано :count инцидентов.', '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' => 'Добавить обновление к :incident', - 'success' => 'Update added.', - ], // Incident templates 'templates' => [ @@ -147,13 +155,15 @@ return [ ], // Subscribers 'subscribers' => [ - 'subscribers' => 'Подписчики', - 'description' => 'Подписчики будут получать уведомления по электронной почте при добавлении инцидентов или изменении статусов компонентов.', - 'verified' => 'Подтверждён', - 'not_verified' => 'Не подтверждён', - 'subscriber' => ':email, подписан :date', - 'no_subscriptions' => 'Подписан на все обновления', - 'add' => [ + 'subscribers' => 'Подписчики', + 'description' => 'Подписчики будут получать уведомления по электронной почте при добавлении инцидентов или изменении статусов компонентов.', + 'description_disabled' => 'To use this feature, you need allow people to signup for notifications.', + 'verified' => 'Подтверждён', + 'not_verified' => 'Не подтверждён', + 'subscriber' => ':email, подписан :date', + 'no_subscriptions' => 'Подписан на все обновления', + 'global' => 'Globally subscribed', + 'add' => [ 'title' => 'Добавить нового подписчика', 'success' => 'Подписчик добавлен!', 'failure' => 'Что-то пошло не так при добавлении подписчика, пожалуйста, повторите ещё раз.', From f64f1f16f58ad951727e5024b24ccae192ce6eae Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:32 +0000 Subject: [PATCH 083/194] New translations forms.php (Russian) --- resources/lang/ru-RU/forms.php | 54 ++++++++++++++++++---------------- 1 file changed, 28 insertions(+), 26 deletions(-) diff --git a/resources/lang/ru-RU/forms.php b/resources/lang/ru-RU/forms.php index f180f287..e95433e0 100644 --- a/resources/lang/ru-RU/forms.php +++ b/resources/lang/ru-RU/forms.php @@ -22,7 +22,7 @@ return [ 'site_locale' => 'Язык интерфейса', 'enable_google2fa' => 'Включить двухфакторную аутентификацию Google', 'cache_driver' => 'Хранилище кеша', - 'queue_driver' => 'Queue Driver', + 'queue_driver' => 'Драйвер очередей', 'session_driver' => 'Хранилище сессий', 'mail_driver' => 'Водитель почты', 'mail_host' => 'Почтовый хост', @@ -41,7 +41,7 @@ return [ 'invalid-token' => 'Неверный токен', 'cookies' => 'Необходимо включить cookies для входа.', 'rate-limit' => 'Превышено ограничение скорости.', - 'remember_me' => 'Запомнить', + 'remember_me' => 'Запомнить меня', ], // Incidents form fields @@ -54,9 +54,9 @@ return [ 'occurred_at' => 'Когда произошел инцидент?', 'notify_subscribers' => 'Уведомить подписчиков?', 'visibility' => 'Отображение инцидента', - 'stick_status' => 'Stick Incident', - 'stickied' => 'Stickied', - 'not_stickied' => 'Not Stickied', + 'stick_status' => 'Закрепление инцидента', + 'stickied' => 'Закреплен', + 'not_stickied' => 'Не закреплен', 'public' => 'Доступен публично', 'logged_in_only' => 'Показывать только авторизованным пользователям', 'templates' => [ @@ -72,7 +72,7 @@ return [ 'message' => 'Сообщение', 'message-help' => 'Вы также можете использовать Markdown.', 'scheduled_at' => 'Когда планируется обслуживание?', - 'completed_at' => 'When did this maintenance complete?', + 'completed_at' => 'Когда было завершено это обслуживание?', 'templates' => [ 'name' => 'Название', 'template' => 'Шаблон', @@ -99,7 +99,7 @@ return [ 'collapsed_incident' => 'Свернута, но разворачивать, если есть проблема', 'visibility' => 'Видимость', 'visibility_public' => 'Видно всем', - 'visibility_authenticated' => 'Visible only to logged in users', + 'visibility_authenticated' => 'Видно только авторизованным пользователям', ], ], @@ -107,9 +107,9 @@ return [ 'actions' => [ 'name' => 'Название', 'description' => 'Описание', - 'start_at' => 'Schedule start time', + 'start_at' => 'Время начала', 'timezone' => 'Часовой пояс', - 'schedule_frequency' => 'Schedule frequency (in seconds)', + 'schedule_frequency' => 'Частота (в секундах)', 'completion_latency' => 'Задержка завершения (в секундах)', 'group' => 'Группа', 'active' => 'Активная?', @@ -133,9 +133,9 @@ return [ 'default_view' => 'Представление по умолчанию', 'threshold' => 'Количество минут между снятием метрик?', 'visibility' => 'Видимость', - 'visibility_authenticated' => 'Visible to authenticated users', - 'visibility_public' => 'Visible to everybody', - 'visibility_hidden' => 'Always hidden', + 'visibility_authenticated' => 'Видно авторизованным пользователям', + 'visibility_public' => 'Видно всем', + 'visibility_hidden' => 'Всегда скрыто', 'points' => [ 'value' => 'Значение', @@ -151,13 +151,14 @@ return [ 'display-graphs' => 'Отображать графики на статусной странице?', 'about-this-page' => 'Об этой странице', 'days-of-incidents' => 'За сколько дней показывать инциденты?', + 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => 'Картинка-баннер', - 'banner-help' => 'Рекомендуется загружать картинки не больше 930 пикс. в ширину.', + 'banner-help' => "Рекомендуется загружать картинки не больше 930 пикс. в ширину.", 'subscribers' => 'Разрешить посетителям подписываться на email-уведомления?', - 'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)', + 'skip_subscriber_verification' => 'Пропустить проверку посетителей? (Будьте осторожны, возможен спам)', 'automatic_localization' => 'Автоматически переводить вашу статусную страницу на язык посетителя?', 'enable_external_dependencies' => 'Включить зависимости (Google шрифты, трекеры, и др...)', - 'show_timezone' => 'Show the timezone the status page is running in.', + 'show_timezone' => 'Отображать часовой пояс по которому работает статус-страница.', 'only_disrupted_days' => 'Показывать только дни, содержащие инциденты на шкале времени?', ], 'analytics' => [ @@ -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' => '* Необязательно', From 2d21ee5c8d6c9daee3946807efd03ed7b207c690 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:33 +0000 Subject: [PATCH 084/194] New translations pagination.php (Russian) --- resources/lang/ru-RU/pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/ru-RU/pagination.php b/resources/lang/ru-RU/pagination.php index 0ee724cf..1e2a0b36 100644 --- a/resources/lang/ru-RU/pagination.php +++ b/resources/lang/ru-RU/pagination.php @@ -22,7 +22,7 @@ return [ | */ - 'previous' => 'Previous', - 'next' => 'Next', + 'previous' => 'Назад', + 'next' => 'Вперёд', ]; From 4b8d79b1f6bafbe0accafe0c1560dbd7b7ad6144 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:34 +0000 Subject: [PATCH 085/194] New translations validation.php (Russian) --- resources/lang/ru-RU/validation.php | 50 ++++++++++++++--------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/resources/lang/ru-RU/validation.php b/resources/lang/ru-RU/validation.php index b40a81bd..3e681b54 100644 --- a/resources/lang/ru-RU/validation.php +++ b/resources/lang/ru-RU/validation.php @@ -37,54 +37,54 @@ return [ 'array' => ':attribute должно содержать от :min до :max элементов.', ], 'boolean' => 'Значение :attribute должно быть true или false.', - 'confirmed' => 'The :attribute confirmation does not match.', + 'confirmed' => 'Подтверждение для :attribute не совпадает.', 'date' => 'Значение :attribute не является корректной датой.', 'date_format' => 'Значение :attribute не соответствует формату :format.', 'different' => 'Значения :attribute и :other должны быть разными.', - '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.', + 'digits' => 'Значение :attribute должно быть :digits цифр.', + 'digits_between' => 'Значение :attribute должно содержать от :min до :max цифр.', + 'email' => 'Значение :attribute должно быть действительным E-mail адресом.', + 'exists' => 'Выбранное значение :attribute недопустимо.', 'distinct' => 'Поле :attribute содержит дублирующееся значение.', - 'filled' => 'The :attribute field is required.', + 'filled' => 'Поле :attribute обязательно для заполнения.', 'image' => ':attribute должно быть изображением.', - 'in' => 'The selected :attribute is invalid.', + 'in' => 'Выбранное значение :attribute недопустимо.', 'in_array' => 'Поле :attribute не существует в :other.', - 'integer' => 'The :attribute must be an integer.', - 'ip' => 'The :attribute must be a valid IP address.', + 'integer' => 'Значение :attribute должно быть целым числом.', + 'ip' => 'Значение :attribute должно быть действительным IP-адресом.', 'json' => ':attribute должен быть в JSON формате.', '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 не может быть более :max.', + 'file' => 'Значение :attribute не может быть более :max килобайт(а).', + 'string' => 'Значение :attribute не может быть больше :max символов.', 'array' => ':attribute не может содержать больше чем :max элементов.', ], - 'mimes' => 'The :attribute must be a file of type: :values.', + 'mimes' => ':attribute должно быть файлом одного из следующих типов: :values.', 'min' => [ - 'numeric' => 'The :attribute must be at least :min.', + 'numeric' => 'Значение :attribute не должно быть меньше чем :min.', 'file' => ':attribute должно быть не меньше :min килобайт.', - 'string' => 'The :attribute must be at least :min characters.', - 'array' => 'The :attribute must have at least :min items.', + 'string' => 'Значение :attribute должно быть по крайней мере :min символов.', + 'array' => 'Значение :attribute должно быть не менее :min элементов.', ], - 'not_in' => 'The selected :attribute is invalid.', + 'not_in' => 'Выбранное значение :attribute недопустимо.', 'numeric' => 'Значение :attribute должно быть числом.', 'present' => 'Поле :attribute должно быть заполнено.', 'regex' => 'Неправильный формат :attribute.', - 'required' => 'The :attribute field is required.', - 'required_if' => 'The :attribute field is required when :other is :value.', + 'required' => 'Поле :attribute обязательно для заполнения.', + 'required_if' => 'Поле :attribute обязательно для заполнения, когда :other равно :value.', 'required_unless' => 'Поле :attribute обязательно, если :other не из :values.', 'required_with' => 'Поле :attribute является обязательным, если все :values заполнены.', 'required_with_all' => 'Поле :attribute является обязательным, если все :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' => 'Поле :attribute является обязательным, если :values не заполнены.', + 'required_without_all' => 'Поле :attribute обязательно для заполнения, когда ни одно из :values не указано.', + 'same' => 'Значение :attribute должно совпадать с :other.', 'size' => [ - 'numeric' => 'The :attribute must be :size.', + 'numeric' => 'Значение :attribute должно быть длиной :size.', 'file' => ':attribute должно быть объемом :size килобайт.', 'string' => 'Поле :attribute должно содержать :size символов.', - 'array' => 'The :attribute must contain :size items.', + 'array' => 'Количество элементов в поле :attribute должно быть равным :size.', ], - 'string' => 'The :attribute must be a string.', + 'string' => 'Значение :attribute должно быть строкой.', 'timezone' => ':attribute должно быть корректным часовым поясом.', 'unique' => ':attribute уже занято.', 'url' => 'Неправильный формат :attribute.', From 65f9470e2945d9894e0ecf3dec3d724ec8d39b99 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:35 +0000 Subject: [PATCH 086/194] New translations notifications.php (Russian) --- resources/lang/ru-RU/notifications.php | 76 +++++++++++++------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/resources/lang/ru-RU/notifications.php b/resources/lang/ru-RU/notifications.php index 6a65c6bd..cdde5c7f 100644 --- a/resources/lang/ru-RU/notifications.php +++ b/resources/lang/ru-RU/notifications.php @@ -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' => 'Принять', ], ], ], From 5833d2585cce3be0c91712c7ebc2683fda411515 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:36 +0000 Subject: [PATCH 087/194] New translations cachet.php (Spanish) --- resources/lang/es-ES/cachet.php | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/lang/es-ES/cachet.php b/resources/lang/es-ES/cachet.php index 60d39cb9..2c163338 100644 --- a/resources/lang/es-ES/cachet.php +++ b/resources/lang/es-ES/cachet.php @@ -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', From 70a5f4429ae1be0d69bba4dadc65d8e807a24939 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:37 +0000 Subject: [PATCH 088/194] New translations dashboard.php (Spanish) --- resources/lang/es-ES/dashboard.php | 36 +++++++++++++++++++----------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/resources/lang/es-ES/dashboard.php b/resources/lang/es-ES/dashboard.php index 83d978cb..86b3fe88 100644 --- a/resources/lang/es-ES/dashboard.php +++ b/resources/lang/es-ES/dashboard.php @@ -21,7 +21,20 @@ return [ 'logged' => '{0} No hay incidencias, ¡buen trabajo!|Has registrado una incidencia.|Has reportado :count 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 :incident', - '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.', From e37cb97bf9f5bf21128fd17807fd680413dfaf9a Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:38 +0000 Subject: [PATCH 089/194] New translations forms.php (Spanish) --- resources/lang/es-ES/forms.php | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/resources/lang/es-ES/forms.php b/resources/lang/es-ES/forms.php index 7cbea599..6c1d2e6f 100644 --- a/resources/lang/es-ES/forms.php +++ b/resources/lang/es-ES/forms.php @@ -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,8 +151,9 @@ 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 .', + '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?', 'skip_subscriber_verification' => '¿Omitir verificación de usuarios? (Advertencia, podrías ser spammeado)', 'automatic_localization' => '¿Traducir automáticamente la página de estado según el lenguaje del visitante?', @@ -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', From 044c018cf7e277cea26994432aafdaa2219a88a0 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:39 +0000 Subject: [PATCH 090/194] New translations pagination.php (Spanish) --- resources/lang/es-ES/pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/es-ES/pagination.php b/resources/lang/es-ES/pagination.php index 0ee724cf..2eed1e7e 100644 --- a/resources/lang/es-ES/pagination.php +++ b/resources/lang/es-ES/pagination.php @@ -22,7 +22,7 @@ return [ | */ - 'previous' => 'Previous', - 'next' => 'Next', + 'previous' => 'Anterior', + 'next' => 'Siguiente', ]; From 1ca473ed757fb0a22ea2b3b03f2e003d31d0b5bc Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:40 +0000 Subject: [PATCH 091/194] New translations setup.php (Thai) --- resources/lang/th-TH/setup.php | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 resources/lang/th-TH/setup.php diff --git a/resources/lang/th-TH/setup.php b/resources/lang/th-TH/setup.php new file mode 100644 index 00000000..eec2d42b --- /dev/null +++ b/resources/lang/th-TH/setup.php @@ -0,0 +1,23 @@ + 'ตั้งค่า', + 'title' => 'ติดตั้ง Cachet', + 'service_details' => 'รายละเอียดของ Services', + 'env_setup' => 'ตั้งค่าสภาพแวดล้อม', + 'status_page_setup' => 'ตั้งค่าหน้าแสดงสถานะ', + 'show_support' => 'แสดงการสนับสนุน Cachet', + 'admin_account' => 'บัญชีผู้ดูแลระบบ', + 'complete_setup' => 'ติดตั้งเสร็จสมบูรณ์', + 'completed' => 'การปรับแต่ง Cachet สำเร็จ!', + 'finish_setup' => 'ไปที่หน้า Dashboard', +]; From cc545463d3bf37bef3d243b3861a1a692b433eec Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:41 +0000 Subject: [PATCH 092/194] New translations notifications.php (Spanish) --- resources/lang/es-ES/notifications.php | 76 +++++++++++++------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/resources/lang/es-ES/notifications.php b/resources/lang/es-ES/notifications.php index 6a65c6bd..3217a655 100644 --- a/resources/lang/es-ES/notifications.php +++ b/resources/lang/es-ES/notifications.php @@ -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', ], ], ], From 4d2e471ec529a217f1fa158ec84108d87413f31f Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:42 +0000 Subject: [PATCH 093/194] New translations cachet.php (Swedish) --- resources/lang/sv-SE/cachet.php | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/lang/sv-SE/cachet.php b/resources/lang/sv-SE/cachet.php index feaa0e77..d8f51bff 100644 --- a/resources/lang/sv-SE/cachet.php +++ b/resources/lang/sv-SE/cachet.php @@ -33,6 +33,7 @@ return [ 'scheduled' => 'Planerat underhåll', 'scheduled_at' => ', schemalagda: tidsstämpel', 'posted' => 'Upplagd :timestamp', + 'posted_at' => 'Posted at :timestamp', 'status' => [ 1 => 'Undersöker', 2 => 'Identifierat', From 7906033a51ccb5ba0c48d4d8f4655911681642de Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:43 +0000 Subject: [PATCH 094/194] New translations dashboard.php (Swedish) --- resources/lang/sv-SE/dashboard.php | 36 +++++++++++++++++++----------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/resources/lang/sv-SE/dashboard.php b/resources/lang/sv-SE/dashboard.php index f23ee791..3441c452 100644 --- a/resources/lang/sv-SE/dashboard.php +++ b/resources/lang/sv-SE/dashboard.php @@ -21,7 +21,20 @@ return [ 'logged' => '{0} Det finns inga händelser, bra jobbat!|Du har skapat en händelse.|Du har skapat :count händelser.', 'incident-create-template' => 'Skapa mall', 'incident-templates' => 'Händelsemallar', - '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' => 'Skapa en ny incidentuppdatering', + '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' => 'Lägg till händelse', 'success' => 'Incident skapad.', @@ -36,11 +49,6 @@ return [ 'success' => 'Händelsen har tagits bort och kommer inte visas på din statussida.', 'failure' => 'The incident could not be deleted, please try again.', ], - 'update' => [ - 'title' => 'Skapa en ny incidentuppdatering', - 'subtitle' => 'Lägg till en uppdatering till :händelsen', - 'success' => 'Update added.', - ], // Incident templates 'templates' => [ @@ -147,13 +155,15 @@ return [ ], // Subscribers 'subscribers' => [ - 'subscribers' => 'Prenumeranter', - 'description' => 'Subscribers will receive email updates when incidents are created or components are updated.', - 'verified' => 'Bekräftad', - 'not_verified' => 'Inte bekräftad', - 'subscriber' => ':email, subscribed :date', - 'no_subscriptions' => 'Subscribed to all updates', - 'add' => [ + 'subscribers' => 'Prenumeranter', + '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' => 'Bekräftad', + 'not_verified' => 'Inte bekräftad', + 'subscriber' => ':email, subscribed :date', + 'no_subscriptions' => 'Subscribed to all updates', + 'global' => 'Globally subscribed', + 'add' => [ 'title' => 'Lägg till en prenumerant', 'success' => 'Prenumerant tillagd!', 'failure' => 'Something went wrong adding the subscriber, please try again.', From 6a14be8bc4a653e00b9150c7b52dc50b3e1272d1 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:44 +0000 Subject: [PATCH 095/194] New translations forms.php (Swedish) --- resources/lang/sv-SE/forms.php | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/resources/lang/sv-SE/forms.php b/resources/lang/sv-SE/forms.php index cb9e537f..dc51390b 100644 --- a/resources/lang/sv-SE/forms.php +++ b/resources/lang/sv-SE/forms.php @@ -151,8 +151,9 @@ return [ 'display-graphs' => 'Visa grafer på statussidan?', 'about-this-page' => 'Om den här sidan', 'days-of-incidents' => 'Hur många dagar av händelser ska visas?', + 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => 'Bannerbild', - 'banner-help' => 'Vi rekommenderar att du inte laddar upp bilder som är bredare än 930 px.', + 'banner-help' => "Vi rekommenderar att du inte laddar upp bilder som är bredare än 930 px.", 'subscribers' => 'Tillåt att registrera sig för notifikationer via e-post?', '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?', @@ -223,17 +224,18 @@ return [ ], // Buttons - 'add' => 'Lägg till', - 'save' => 'Spara', - 'update' => 'Uppdatera', - 'create' => 'Skapa', - 'edit' => 'Redigera', - 'delete' => 'Radera', - 'submit' => 'Skicka', - 'cancel' => 'Avbryt', - 'remove' => 'Ta bort', - 'invite' => 'Bjud In', - 'signup' => 'Registrera dig', + 'add' => 'Lägg till', + 'save' => 'Spara', + 'update' => 'Uppdatera', + 'create' => 'Skapa', + 'edit' => 'Redigera', + 'delete' => 'Radera', + 'submit' => 'Skicka', + 'cancel' => 'Avbryt', + 'remove' => 'Ta bort', + 'invite' => 'Bjud In', + 'signup' => 'Registrera dig', + 'manage_updates' => 'Manage Updates', // Other 'optional' => 'Valfri', From bb0e3117346cba406676c5d7c79e49ab729dd150 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:46 +0000 Subject: [PATCH 096/194] New translations notifications.php (Swedish) --- resources/lang/sv-SE/notifications.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/resources/lang/sv-SE/notifications.php b/resources/lang/sv-SE/notifications.php index 6a65c6bd..0fd9dde9 100644 --- a/resources/lang/sv-SE/notifications.php +++ b/resources/lang/sv-SE/notifications.php @@ -45,24 +45,24 @@ return [ ], 'update' => [ 'mail' => [ - 'subject' => 'Incident Updated', - 'content' => ':name was updated', - 'title' => ':name was updated to :new_status', + 'subject' => 'Händelse uppdaterad', + 'content' => ': namn uppdaterades', + 'title' => ':name uppdaterades till :new_status', 'action' => 'View', ], 'slack' => [ - 'title' => ':name Updated', - 'content' => ':name was updated to :new_status', + 'title' => ':name uppdaterat', + 'content' => ':name uppdaterades till :new_status', ], 'sms' => [ - 'content' => 'Incident :name was updated', + 'content' => 'Incident :name uppdaterades', ], ], ], 'schedule' => [ 'new' => [ 'mail' => [ - 'subject' => 'New Schedule Created', + 'subject' => 'Nytt schema skapat', 'content' => ':name was scheduled for :date', 'title' => 'A new scheduled maintenance was created.', 'action' => 'View', @@ -82,14 +82,14 @@ 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' => 'Verifiera', ], ], ], 'system' => [ 'test' => [ 'mail' => [ - 'subject' => 'Ping from Cachet!', + 'subject' => 'Ping från Cachet!', 'content' => 'This is a test notification from Cachet!', 'title' => '🔔', ], From 4806270616ef9775f8615c970a22b61c0d9046b7 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:47 +0000 Subject: [PATCH 097/194] New translations cachet.php (Thai) --- resources/lang/th-TH/cachet.php | 130 ++++++++++++++++++++++++++++++++ 1 file changed, 130 insertions(+) create mode 100644 resources/lang/th-TH/cachet.php diff --git a/resources/lang/th-TH/cachet.php b/resources/lang/th-TH/cachet.php new file mode 100644 index 00000000..778c8917 --- /dev/null +++ b/resources/lang/th-TH/cachet.php @@ -0,0 +1,130 @@ + [ + 'last_updated' => 'ปรับปรุงล่าสุด :timestamp', + 'status' => [ + 0 => 'ไม่ทราบสถานะ', + 1 => 'สามารถใช้งานได้', + 2 => 'ปัญหาด้านประสิทธิภาพ', + 3 => 'มีปัญหาบางส่วน', + 4 => 'ไม่สามารถทำงานได้', + ], + 'group' => [ + 'other' => 'ส่วนประกอบอื่นๆ', + ], + ], + + // Incidents + 'incidents' => [ + 'none' => 'ไม่มีเหตุการณ์', + 'past' => 'เหตุการณ์ที่ผ่านมา', + 'stickied' => 'เหตุการณ์ที่ถูกปักหมุด', + 'scheduled' => 'Maintenance', + 'scheduled_at' => ', กำหนดการ :timestamp', + 'posted' => 'ผ่านไปแล้ว :timestamp', + 'posted_at' => 'Posted at :timestamp', + 'status' => [ + 1 => 'กำลังตรวจสอบ', + 2 => 'พบปัญหาแล้ว', + 3 => 'เฝ้าระวัง', + 4 => 'แก้ไขแล้ว', + ], + ], + + // Schedule + 'schedules' => [ + 'status' => [ + 0 => 'เร็วๆ นี้', + 1 => 'อยู่ระหว่างดำเนินการ', + 2 => 'เสร็จสมบูรณ์', + ], + ], + + // Service Status + 'service' => [ + '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' => [ + 'regenerate' => 'สร้าง API Key ใหม่', + 'revoke' => 'เพิกถอน API Key', + ], + + // Metrics + 'metrics' => [ + 'filter' => [ + 'last_hour' => 'ชั่วโมงที่แล้ว', + 'hourly' => '12 ชั่วโมงที่ผ่านมา', + 'weekly' => 'สัปดาห์', + 'monthly' => 'เดือน', + ], + ], + + // Subscriber + 'subscriber' => [ + 'subscribe' => 'สมัครเพื่อติดตามข่าวสาร', + 'unsubscribe' => 'ยกเลิกการติดตาม :link', + 'button' => 'ติดตาม', + 'manage' => [ + 'no_subscriptions' => 'คุณติตตามทั้งหมดแล้ว', + 'my_subscriptions' => 'คุณติดตามข่าวสารเหล่านี้', + ], + 'email' => [ + 'subscribe' => 'ติดตามข่าวสารทาง email', + 'subscribed' => 'คุณได้สมัครรับการแจ้งเตือนทางอีเมล กรุณาตรวจอีเมลของคุณเพื่อยืนยันการสมัคร', + 'verified' => 'ได้ยืนยันการติดตามทางอีเมลของคุณแล้ว ขอบคุณ!', + 'manage' => 'จัดการการติดตามของคุณ', + 'unsubscribe' => 'ยกเลิกการแจ้งเตือนทางอีเมล', + 'unsubscribed' => 'ยกเลิกแจ้งเตือนทางอีเมลของคุณแล้ว', + 'failure' => 'เกิดข้อผิดพลาดในการสมัครรับข่าวสาร', + 'already-subscribed' => 'ไม่สามารถสมัครด้วย :email เนื่องจากถูกใช้ไปแล้ว', + ], + ], + + 'signup' => [ + 'title' => 'สมัครสมาชิก', + 'username' => 'ชื่อผู้ใช้', + 'email' => 'อีเมล', + 'password' => 'รหัสผ่าน', + 'success' => 'บัญชีของคุณได้สร้างเรียบร้อยแล้ว', + 'failure' => 'การลงทะเบียนมีบางอย่างผิดปกติ', + ], + + 'system' => [ + 'update' => 'Cachet มีเวอร์ชั่นใหม่แล้วนะ คุณสามารถศึกษาวิธีอัพเดทได้ ที่นี้!', + ], + + // Modal + 'modal' => [ + 'close' => 'ปิด', + 'subscribe' => [ + 'title' => 'ติดตามสถานะของส่วนประกอบ', + 'body' => 'กรอกอีเมลเพื่อเพื่อติดตามรับข่าวสารของส่วนประกอบ ถ้าคุณติดตามแล้ว คุณจะได้รับอีเมลจากส่วนประกอบนี้', + 'button' => 'ติดตาม', + ], + ], + + // Other + 'home' => 'หน้าหลัก', + 'description' => 'ติดตามความเคลื่อนไหวล่าสุดของ :app', + 'powered_by' => 'Powered by Cachet.', + 'timezone' => 'โซนเวลา :timezone', + 'about_this_site' => 'เกี่ยวกับเว็บไซต์นี้', + 'rss-feed' => 'RSS', + 'atom-feed' => 'Atom', + 'feed' => 'Feed สถานะ', + +]; From aa3d4b770382ff839c669803146103a5dcf375cb Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:48 +0000 Subject: [PATCH 098/194] New translations dashboard.php (Thai) --- resources/lang/th-TH/dashboard.php | 303 +++++++++++++++++++++++++++++ 1 file changed, 303 insertions(+) create mode 100644 resources/lang/th-TH/dashboard.php diff --git a/resources/lang/th-TH/dashboard.php b/resources/lang/th-TH/dashboard.php new file mode 100644 index 00000000..258985c2 --- /dev/null +++ b/resources/lang/th-TH/dashboard.php @@ -0,0 +1,303 @@ + 'แดชบอร์ด', + 'writeable_settings' => 'ไดเรกทอรีการตั้งค่าของ cachet ไม่สามารถเขียนค่าได้ โปรดตรวจสอบให้แน่ใจว่าภายใน ./bootstrap/cachet สามารถเขียนค่าจากเว็บเซิร์ฟเวอร์ของท่านได้', + + // Incidents + 'incidents' => [ + 'title' => 'Incidents & Maintenance', + 'incidents' => 'เหตุการณ์', + 'logged' => '{0} There are no incidents, good work.|[1] You have logged one incident.|[2,*] You have reported :count incidents.', + 'incident-create-template' => 'สร้างแม่แบบ', + 'incident-templates' => 'แม่แบบของเหตุการณ์', + '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' => 'เพิ่มเหตุการณ์แล้ว', + 'failure' => 'พอข้อผิดพลาดตอนเพิ่มเหตุการณ์ กรุณาลองใหม่อีกครั้ง', + ], + 'edit' => [ + 'title' => 'แก้ไขเหตุการณ์', + 'success' => 'เหตุการณ์ได้ปรับปรุงแล้ว', + 'failure' => 'พอข้อผิดพลาดตอนแก้ไขเหตุการณ์ กรุณาลองใหม่อีกครั้ง', + ], + 'delete' => [ + 'success' => 'เหตุการณ์ถูกลบไปแล้ว และจะไม่แสดงในหน้าสถานะอีก', + 'failure' => 'เหตุการณ์นี้ไม่สามารถลบได้ กรุณาลองอีกครั้ง', + ], + + // Incident templates + 'templates' => [ + 'title' => 'แม่แบบของเหตุการณ์', + 'add' => [ + 'title' => 'สร้างแม่แบบของเหตุการณ์', + 'message' => 'คุณควรเพิ่มแม่แบบของเหตุการณ์', + 'success' => 'สร้างแม่แบบของเหตุการณ์แล้ว', + 'failure' => 'ไม่สามารถสร้างแม่แบบของเหตุการณ์ได้', + ], + 'edit' => [ + 'title' => 'แก้ไขแม่แบบ', + 'success' => 'ปรับปรุงแม่แบบของเหตุการณ์แล้ว', + 'failure' => 'ไม่สามารถแก้ไขแม่แบบของเหตุการณ์ได้', + ], + 'delete' => [ + 'success' => 'ลบแม่แบบของของเหตุการณ์แล้ว', + 'failure' => 'ไม่สามารถลบแม่แบบของเหตุการณ์ได้ โปรดลองอีกครั้ง', + ], + ], + ], + + // Incident Maintenance + 'schedule' => [ + 'schedule' => 'Maintenance', + 'logged' => '{0} There has been no Maintenance, good work.|[1] You have logged one schedule.|[2,*] You have reported :count schedules.', + 'scheduled_at' => 'กำหนดเวลา :timestamp', + 'add' => [ + 'title' => 'Add Maintenance', + 'success' => 'Maintenance added.', + 'failure' => 'Something went wrong adding the Maintenance, please try again.', + ], + 'edit' => [ + 'title' => 'Edit Maintenance', + 'success' => 'Maintenance has been updated!', + 'failure' => 'Something went wrong editing the Maintenance, please try again.', + ], + 'delete' => [ + 'success' => 'The Maintenance has been deleted and will not show on your status page.', + 'failure' => 'The Maintenance could not be deleted, please try again.', + ], + ], + + // Components + 'components' => [ + 'components' => 'ส่วนประกอบ', + 'component_statuses' => 'สถานะของส่วนประกอบ', + 'listed_group' => 'กลุ่ม :name', + 'add' => [ + 'title' => 'เพิ่มส่วนประกอบ', + 'message' => 'คุณควรเพิ่มส่วนประกอบ', + 'success' => 'สร้างส่วนประกอบแล้ว', + 'failure' => 'ไม่สามารถสร้างส่วนประกอบได้ โปรดลองอีกครั้ง', + ], + 'edit' => [ + 'title' => 'แก้ไขส่วนประกอบ', + 'success' => 'ปรับปรุงส่วนประกอบแล้ว', + 'failure' => 'ไม่สามารถสร้างส่วนประกอบได้ โปรดลองอีกครั้ง', + ], + 'delete' => [ + 'success' => 'ส่วนประกอบถูกลบแล้ว', + 'failure' => 'ไม่สามารถลบส่วนประกอบได้ โปรดลองอีกครั้ง', + ], + + // Component groups + 'groups' => [ + 'groups' => 'กลุ่มส่วนประกอบ | กลุ่มส่วนประกอบ', + 'no_components' => 'คุณควรเพิ่มกลุ่มส่วนประกอบ', + 'add' => [ + 'title' => 'เพิ่มกลุ่มส่วนประกอบ', + 'success' => 'เพิ่มกลุ่มส่วนประกอบแล้ว', + 'failure' => 'ไม่สามารถสร้างส่วนประกอบได้ โปรดลองอีกครั้ง', + ], + 'edit' => [ + 'title' => 'แก้ไขกลุ่มส่วนประกอบ', + 'success' => 'ปรับปรุงกลุ่มส่วนประกอบแล้ว', + 'failure' => 'ไม่สามารถสร้างส่วนประกอบได้ โปรดลองอีกครั้ง', + ], + 'delete' => [ + 'success' => 'กลุ่มส่วนประกอบถูกลบแล้ว', + 'failure' => 'ไม่สามารถลบกลุ่มส่วนประกอบได้ โปรดลองอีกครั้ง', + ], + ], + ], + + // Metrics + 'metrics' => [ + 'metrics' => 'ตัวชี้วัด', + 'add' => [ + 'title' => 'สร้างตัวชี้วัด', + 'message' => 'คุณควรเพิ่มตัวชี้วัด', + 'success' => 'สร้างตัวชี้วัดแล้ว', + 'failure' => 'ไม่สามารถสร้างตัวชี้วัดได้ โปรดลองอีกครั้ง', + ], + 'edit' => [ + 'title' => 'แก้ไขตัวชี้วัด', + 'success' => 'ปรับปรุงตัวชี้วัดแล้ว', + 'failure' => 'ไม่สามารถสร้างตัวชี้วัดได้ โปรดลองอีกครั้ง', + ], + 'delete' => [ + 'success' => 'ตัวชี้วัดได้ถูกลบแล้ว และจะไม่แสดงในหน้าสถานะอีก', + 'failure' => 'ไม่สามารถลบตัวชี้วัดได้ โปรดลองอีกครั้ง', + ], + ], + // Subscribers + 'subscribers' => [ + 'subscribers' => 'ผู้ติดตาม', + 'description' => 'ผู้ติดตามจะได้รับอีเมลเมื่อมีการแจ้งเหตุการณ์หรือมีการปรับปรุงส่วนประกอบ', + 'description_disabled' => 'To use this feature, you need allow people to signup for notifications.', + 'verified' => 'ยืนยันแล้ว', + 'not_verified' => 'ยังไม่ได้ยืนยัน', + 'subscriber' => ':email, ติดตามเมื่อ :date', + 'no_subscriptions' => 'ติดตามความเคลื่อนไหวทั้งหมด', + 'global' => 'Globally subscribed', + 'add' => [ + 'title' => 'เพิ่มผู้ติดตามใหม่', + 'success' => 'เพิ่มผู้ติดตามแล้ว', + 'failure' => 'ไม่สามารถเพิ่มผู้ติดตามได้ กรุณาลองอีกครั้ง', + 'help' => 'ป้อนผู้ติดตามแต่ละคนบนบรรทัดใหม่', + ], + 'edit' => [ + 'title' => 'ปรับปรุงผู้ติดตาม', + 'success' => 'ปรับปรุงข้อมูลผู้ติดตามแล้ว!', + 'failure' => 'ไม่สามารถแก้ไขผู้ติดตามได้ กรุณาลองอีกครั้ง', + ], + ], + + // Team + 'team' => [ + 'team' => 'ทีม', + 'member' => 'สมาชิก', + 'profile' => 'โปรไฟล์', + 'description' => 'สมาชิกในทีมจะสามารถเพิ่ม แก้ไข และแก้ไขเหตุการณ์และส่วนประกอบ', + 'add' => [ + 'title' => 'เพิ่มสมาชิกทีมใหม่', + 'success' => 'เพิ่มสมาชิกในทีมเรียบร้อยแล้ว', + 'failure' => 'ไม่สามารถเพิ่มสมาชิกทีมได้ กรุณาลองอีกครั้ง', + ], + 'edit' => [ + 'title' => 'อัพเดตโปรไฟล์', + 'success' => 'ปรับปรุงโปรไฟล์แล้ว', + 'failure' => 'ไม่สามารถปรับปรุงโปรไฟล์ได้ โปรดลองอีกครั้ง', + ], + 'delete' => [ + 'success' => 'สมาชิกในทีมได้ถูกลบออก และจะไม่สามารถเข้าถึงแดชบอร์ได้อีกต่อไป!', + 'failure' => 'ไม่สามารถเพิ่มสมาชิกทีมได้ กรุณาลองอีกครั้ง', + ], + 'invite' => [ + 'title' => 'เชิญสมาชิกใหม่เข้าทีม', + 'success' => 'คำเชิญถูกส่งไปแล้ว', + 'failure' => 'ไม่สามารถส่งคำเชิญได้ โปรดลองอีกครั้ง', + ], + ], + + // Settings + 'settings' => [ + 'settings' => 'ตั้งค่า', + 'app-setup' => [ + 'app-setup' => 'ตั้งค่าแอปพลิเคชัน', + 'images-only' => 'อัพโหลดรูปภาพเท่านั้น', + 'too-big' => 'ไฟล์คุณอัปโหลดมีขนาดใหญ่เกินไป อัพโหลดรูปภาพขนาดเล็กกว่า :size', + ], + 'analytics' => [ + 'analytics' => 'วิเคราะห์', + ], + 'log' => [ + 'log' => 'บันทึก', + ], + 'localization' => [ + 'localization' => 'ภาษา', + ], + 'customization' => [ + 'customization' => 'การปรับแต่ง', + 'header' => 'Custom Header HTML', + 'footer' => 'Custom Footer HTML', + ], + 'mail' => [ + 'mail' => 'Mail', + 'test' => 'ทดสอบ', + 'email' => [ + 'subject' => 'ทดสอบการแจ้งเตือนจาก Cachet', + 'body' => 'นี้คือเมลทดสอบการแจ้งเตือนจาก Cachet', + ], + ], + 'security' => [ + 'security' => 'ความปลอดภัย', + 'two-factor' => 'ผู้ใช้ที่ไม่ใช้การยีนยันตัวตนสองชั้น', + ], + 'stylesheet' => [ + 'stylesheet' => 'Stylesheet', + ], + 'theme' => [ + 'theme' => 'Theme', + ], + 'edit' => [ + 'success' => 'บันทึกการตั้งค่าแล้ว!', + 'failure' => 'ไม่สามารถบันทึกการตั้งค่าได้', + ], + 'credits' => [ + 'credits' => 'Credits', + 'contributors' => 'ผู้ร่วมพัฒนา', + 'license' => 'Cachet เป็นโครงการ open source สัญญาอนุญาต BSD-3, เผยแพร่โดย Alt Three Services Limited.', + 'backers-title' => 'ผู้อยู่เบื้องหลังและผู้สนับสนุน', + 'backers' => 'ถ้าคุณต้องการสนับสนุนการพัฒนาในอนาคต เข้าร่วมแคมเปญ Cachet Patreon ', + 'thank-you' => 'ขอบคุณผู้มีส่วนร่วมทั้ง :count คน', + ], + ], + + // Login + 'login' => [ + 'login' => 'เข้าสู่ระบบ', + 'logged_in' => 'คุณเข้าสู่ระบบแล้ว', + 'welcome' => 'ยินดีต้อนรับกลับมา!', + 'two-factor' => 'กรุณากรอก Token ของคุณ', + ], + + // Sidebar footer + 'help' => 'ช่วยเหลือ', + 'status_page' => 'หน้าสถานะ', + 'logout' => 'ออกจากระบบ', + + // Notifications + 'notifications' => [ + 'notifications' => 'การแจ้งเตือน', + 'awesome' => 'สุดยอด', + 'whoops' => 'ขออภัย', + ], + + // Widgets + 'widgets' => [ + 'support' => 'สนับสนุน Cachet', + 'support_subtitle' => 'ตรวจสอบหน้าเว็บ Patreon ของเรา', + 'news' => 'ข่าวล่าสุด', + 'news_subtitle' => 'รับการปรับปรุงล่าสุด', + ], + + // Welcome modal + 'welcome' => [ + 'welcome' => 'ยินดีต้อนรับสู่หน้าสถานะใหม่ของคุณ :username!', + 'message' => 'คุณเกือบจะพร้อมแล้ว แต่คุณอาจจะต้องการตั้งค่าเพิ่มเติมเหล่านี้...', + 'close' => 'ฉันสบายดี ขอบคุณ!', + 'steps' => [ + 'component' => 'เพิ่มส่วนประกอบของคุณ', + 'incident' => 'รายงานเหตุการณ์', + 'customize' => 'ปรับแต่งหน้าเว็บของคุณ', + 'team' => 'เพิ่มทีมของคุณ', + 'api' => 'สร้าง API Token', + 'two-factor' => 'ใช้งานการยีนยันตัวตนสองชั้น', + ], + ], + +]; From d8ae746d03f2247e48be41b1f6bd8378d87b25ff Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:50 +0000 Subject: [PATCH 099/194] New translations forms.php (Thai) --- resources/lang/th-TH/forms.php | 242 +++++++++++++++++++++++++++++++++ 1 file changed, 242 insertions(+) create mode 100644 resources/lang/th-TH/forms.php diff --git a/resources/lang/th-TH/forms.php b/resources/lang/th-TH/forms.php new file mode 100644 index 00000000..fac284cf --- /dev/null +++ b/resources/lang/th-TH/forms.php @@ -0,0 +1,242 @@ + [ + 'email' => 'อีเมล', + 'username' => 'ชื่อผู้ใช้', + 'password' => 'รหัสผ่าน', + 'site_name' => 'ชื่อเว็บไซต์', + 'site_domain' => 'โดเมนของเว็บไซต์', + 'site_timezone' => 'กรุณาเลือกเขตเวลาของคุณ', + 'site_locale' => 'เลือกภาษาของคุณ', + 'enable_google2fa' => 'เปิดใช้งานการยืนยันสองขั้นตอนจาก Google', + 'cache_driver' => 'แคชไดร์เวอร์', + 'queue_driver' => 'คิวไดร์เวอร์', + 'session_driver' => 'เซสชันไดร์เวอร์', + 'mail_driver' => 'เมลไดร์เวอร์', + 'mail_host' => 'เมลโฮสต์', + 'mail_address' => 'เมลจาก', + 'mail_username' => 'ชื่อผู้ใช้อีเมล', + 'mail_password' => 'รหัสผ่านอีเมล', + ], + + // Login form fields + 'login' => [ + 'login' => 'ชื่อผู้ใช้หรืออีเมล', + 'email' => 'อีเมล', + 'password' => 'รหัสผ่าน', + '2fauth' => 'รหัสรับรองความถูกต้อง', + 'invalid' => 'ชื่อผู้ใช้หรือรหัสผ่านไม่ถูกต้อง', + 'invalid-token' => 'Token ไม่ถูกต้อง', + 'cookies' => 'คุณต้องเปิดใช้คุกกี้ในการเข้าสู่ระบบ', + 'rate-limit' => 'เกินขีดจำกัดแล้ว', + 'remember_me' => 'จำการเข้าระบบของฉันไว้', + ], + + // Incidents form fields + 'incidents' => [ + 'name' => 'ชื่อ', + 'status' => 'สถานะ', + 'component' => 'ส่วนประกอบ', + 'message' => 'ข้อ​ความ', + 'message-help' => 'นอกจากนี้คุณยังอาจเขียนในรูปแบบ Markdown', + 'occurred_at' => 'เหตุการณ์นี้เกิดขึ้นเมื่อไหร่', + 'notify_subscribers' => 'แจ้งสมาชิก', + 'visibility' => 'การมองเห็นเหตุการณ์', + 'stick_status' => 'เหตุการณ์ปักหมุด', + 'stickied' => 'ปักหมุดแล้ว', + 'not_stickied' => 'ไม่ปักหมุด', + 'public' => 'สามารถดูได้ โดยสาธารณะ', + 'logged_in_only' => 'มองเห็นได้เฉพาะผู้ที่เข้าระบบ', + 'templates' => [ + 'name' => 'ชื่อ', + 'template' => 'แม่แบบ', + 'twig' => 'แม่แบบของเหตุการณ์สามารถใช้ภาษา Twig ได้', + ], + ], + + 'schedules' => [ + 'name' => 'ชื่อ', + 'status' => 'สถานะ', + 'message' => 'ข้อ​ความ', + 'message-help' => 'นอกจากนี้คุณยังอาจเขียนในรูปแบบ Markdown', + 'scheduled_at' => 'การซ่อมบำรุงจะเกิดขึ้นเมื่อไหร่?', + 'completed_at' => 'การซ่อมบำรุงจะเสร็จเมื่อไหร่?', + 'templates' => [ + 'name' => 'ชื่อ', + 'template' => 'แม่แบบ', + 'twig' => 'แม่แบบของเหตุการณ์สามารถใช้ภาษา Twig ได้', + ], + ], + + // Components form fields + 'components' => [ + 'name' => 'ชื่อ', + 'status' => 'สถานะ', + 'group' => 'กลุ่ม', + 'description' => 'รายละเอียด', + 'link' => 'ลิงก์', + 'tags' => 'Tags', + 'tags-help' => 'คั่นด้วยจุลภาค', + 'enabled' => 'เปิดใช้งานส่วนประกอบ', + + 'groups' => [ + 'name' => 'ชื่อ', + 'collapsing' => 'ตัวเลือก ขยาย/ยุบ', + 'visible' => 'ขยายเสมอ', + 'collapsed' => 'ยุบกลุ่ม โดยค่าเริ่มต้น', + 'collapsed_incident' => 'ยุบกลุ่ม แต่ขยายถ้ามีปัญหา', + 'visibility' => 'การมองเห็น', + 'visibility_public' => 'สามารถมองเห็นได้ในที่สาธารณะ', + 'visibility_authenticated' => 'มองเห็นได้เฉพาะผู้ใช้ที่เข้าสู่ระบบ', + ], + ], + + // Action form fields + 'actions' => [ + 'name' => 'ชื่อ', + 'description' => 'รายละเอียด', + 'start_at' => 'เวลาเริ่มต้น', + 'timezone' => 'เขตเวลา', + 'schedule_frequency' => 'ความถี่ของกำหนดการ (เป็นวินาที)', + 'completion_latency' => 'เวลาที่ใช้ (เป็นวินาที)', + 'group' => 'กลุ่ม', + 'active' => 'เปิดใช้งาน?', + 'groups' => [ + 'name' => 'ชื่อกลุ่ม', + ], + ], + + // Metric form fields + 'metrics' => [ + 'name' => 'ชื่อ', + 'suffix' => 'คำต่อท้าย', + 'description' => 'รายละเอียด', + 'description-help' => 'นอกจากนี้คุณยังอาจเขียนในรูปแบบ Markdown', + 'display-chart' => 'แสดงกราฟบนหน้าสถานะ', + 'default-value' => 'ค่าเริ่มต้น', + 'calc_type' => 'การคำนวณเมตริก', + 'type_sum' => 'ผลรวม', + 'type_avg' => 'ค่าเฉลี่ย', + 'places' => 'ตำแหน่งทศนิยม', + 'default_view' => 'มุมมองเริ่มต้น', + 'threshold' => 'ระยะเวลาระหว่างตัวชี้วัดกี่นาที?', + 'visibility' => 'การมองเห็น', + 'visibility_authenticated' => 'ผู้ใช้ที่ยืนยันตัวแล้วมองเห็นได้', + 'visibility_public' => 'ให้ทุกคนมองเห็นได้', + 'visibility_hidden' => 'ซ่อนเสมอ', + + 'points' => [ + 'value' => 'ค่า', + ], + ], + + // Settings + 'settings' => [ + // Application setup + 'app-setup' => [ + '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' => "ขอแนะนำให้อัปโหลดไฟล์ที่ความกว้างไม่เกิน 930px", + 'subscribers' => 'เปิดให้ทุกคนสามารถลงทะเบียนรับอีเมลแจ้งเตือน?', + 'skip_subscriber_verification' => 'ข้ามการยืนยันตันตนผู้ใช้ (ระวัง! คุณอาจถูกสแปม)', + 'automatic_localization' => 'เปลี่ยนภาษาของหน้าสถานะตามภาษาของผู้เข้าชมอัตโนมัติ', + 'enable_external_dependencies' => 'เปิดใช้งาน Third Party (Google Fonts, Trackers, ฯลฯ...)', + 'show_timezone' => 'แสดงเขตเวลาที่หน้าสถานะกำลังใช้', + 'only_disrupted_days' => 'แสดงเฉพาะวันที่มีเหตุการณ์บนไทม์ไลน์?', + ], + 'analytics' => [ + 'analytics_google' => 'รหัส Google Analytics', + 'analytics_gosquared' => 'รหัส GoSquared Analytics', + 'analytics_piwik_url' => 'ค่า URL Piwik ของคุณ (without http(s)://)', + 'analytics_piwik_siteid' => 'รหัสไซต์ของ Piwik', + ], + 'localization' => [ + 'site-timezone' => 'เขตเวลา', + 'site-locale' => 'ภาษา', + 'date-format' => 'รูปแบบวันที่', + 'incident-date-format' => 'รูปแบบเวลาของเหตุการณ์', + ], + 'security' => [ + 'allowed-domains' => 'โดเมนที่ได้รับอนุญาต', + 'allowed-domains-help' => 'คั่นด้วยจุลภาค โดเมนที่กำหนดข้างต้นจะสามารถเข้าได้อัตโนมัติ โดยค่าเริ่มต้น', + ], + 'stylesheet' => [ + 'custom-css' => 'Custom Stylesheet', + ], + 'theme' => [ + 'background-color' => 'สีพื้นหลัง', + 'background-fills' => 'เติมพื้นหลัง (ส่วนประกอบ เหตุการณ์ ด่านล่างเว็บ)', + 'banner-background-color' => 'สีพื้นหลังของแบนเนอร์', + 'banner-padding' => 'Padding ของแบนเนอร์', + 'fullwidth-banner' => 'เปิดใช้งานการแบนเนอร์เต็มความกว้าง', + 'text-color' => 'สีตัวอักษร', + 'dashboard-login' => 'แสดงปุ่มแดชบอร์ดที่ด่านล่างของหน้าเว็บ', + 'reds' => 'สีแดง (ใช้สำหรับข้อผิดพลาด)', + 'blues' => 'สีฟ้า (ใช้สำหรับข้อมูล)', + 'greens' => 'สีเขียว (ใช้สำหรับความสำเร็จ)', + 'yellows' => 'สีเหลือง (ใช้สำหรับแจ้งเตือน)', + 'oranges' => 'สีส้ม (ใช้สำหรับประกาศ)', + 'metrics' => 'ระบุตัวชี้วัด', + 'links' => 'การเชื่อมโยง', + ], + ], + + 'user' => [ + 'username' => 'ชื่อผู้ใช้', + 'email' => 'อีเมล', + 'password' => 'รหัสผ่าน', + 'api-token' => 'API Token', + 'api-token-help' => 'การสร้าง API Token ใหม่ จะทำให้แอปพลิเคชั่นเดิมเข้าถึง Cachet ไม่ได้', + 'gravatar' => 'เปลี่ยนรูปโปรไฟล์ที่ Gravatar', + 'user_level' => 'ระดับผู้ใช้', + 'levels' => [ + 'admin' => 'ผู้ดูแลระบบ', + 'user' => 'ผู้ใช้', + ], + '2fa' => [ + 'help' => 'ใช้งานการยีนยันตัวตนสองชั้นจะเพิ่มความปลอดภัยให้บัญชีของคุณ คุณจำเป็นต้องดาวน์โหลด Google Authenticator หรือแอปที่คล้ายกันบนอุปกรณ์เคลื่อนที่ เมื่อเข้าสู่ระบบคุณจะถูกถามให้ใส่รหัสที่ถูกสร้างจากแอป', + ], + 'team' => [ + 'description' => 'เชิญเพื่อนร่วมทีมของคุณ โดยการป้อนที่อยู่อีเมลที่นี้', + 'email' => 'Your Team Members Email Address', + ], + ], + + 'general' => [ + 'timezone' => 'เลือกเขตเวลา', + ], + + // Buttons + 'add' => 'เพิ่ม', + 'save' => 'บันทึก', + 'update' => 'ปรับปรุง', + 'create' => 'สร้าง', + 'edit' => 'แก้ไข', + 'delete' => 'ลบ', + 'submit' => 'ส่งข้อมูล', + 'cancel' => 'ยกเลิก', + 'remove' => 'ลบออก', + 'invite' => 'เชิญ', + 'signup' => 'สมัครสมาชิก', + 'manage_updates' => 'Manage Updates', + + // Other + 'optional' => '* ไม่จำเป็น', +]; From b3391a2eb19e43b7da21ab3047e14a2a13996251 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:50 +0000 Subject: [PATCH 100/194] New translations pagination.php (Thai) --- resources/lang/th-TH/pagination.php | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 resources/lang/th-TH/pagination.php diff --git a/resources/lang/th-TH/pagination.php b/resources/lang/th-TH/pagination.php new file mode 100644 index 00000000..1a868ba4 --- /dev/null +++ b/resources/lang/th-TH/pagination.php @@ -0,0 +1,28 @@ + 'ก่อนหน้า', + 'next' => 'ถัดไป', + +]; From 9669e2161b02a5a7b02627c91d50aa155660f540 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:51 +0000 Subject: [PATCH 101/194] New translations forms.php (Italian) --- resources/lang/it-IT/forms.php | 50 ++++++++++++++++++---------------- 1 file changed, 26 insertions(+), 24 deletions(-) diff --git a/resources/lang/it-IT/forms.php b/resources/lang/it-IT/forms.php index 588cc5aa..e64250e4 100644 --- a/resources/lang/it-IT/forms.php +++ b/resources/lang/it-IT/forms.php @@ -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,8 +151,9 @@ 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.', + 'banner-help' => "È consigliabile caricare file larghi non più di 930px.", 'subscribers' => 'Permettere alle persone di iscriversi alle notifiche via email?', 'skip_subscriber_verification' => 'Skip verifica degli utenti? (Attenzione, potreste ricevere spam)', 'automatic_localization' => 'Tradurre automaticamente la tua pagina di stato nella lingua del visitatore?', @@ -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', From 8eeca4761bdb894b39d6417ac60d1ab72eacf7f1 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:52 +0000 Subject: [PATCH 102/194] New translations cachet.php (Italian) --- resources/lang/it-IT/cachet.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/resources/lang/it-IT/cachet.php b/resources/lang/it-IT/cachet.php index bb6c34a7..2ced9c46 100644 --- a/resources/lang/it-IT/cachet.php +++ b/resources/lang/it-IT/cachet.php @@ -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', ], ], From ff868f0b0c25f6431f710d6d6884ce446c16cf52 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:53 +0000 Subject: [PATCH 103/194] New translations dashboard.php (Afrikaans) --- resources/lang/af-ZA/dashboard.php | 36 +++++++++++++++++++----------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/resources/lang/af-ZA/dashboard.php b/resources/lang/af-ZA/dashboard.php index a8e56dc2..6c10e0be 100644 --- a/resources/lang/af-ZA/dashboard.php +++ b/resources/lang/af-ZA/dashboard.php @@ -21,7 +21,20 @@ return [ 'logged' => '{0} There are no incidents, good work.|You have logged one incident.|You have reported :count 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 :incident', - '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.', From 75c85406ea518dc3a3ef38598a9c76f472da3e40 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:55 +0000 Subject: [PATCH 104/194] New translations forms.php (Czech) --- resources/lang/cs-CZ/forms.php | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/resources/lang/cs-CZ/forms.php b/resources/lang/cs-CZ/forms.php index 5b22fa6d..6826068d 100644 --- a/resources/lang/cs-CZ/forms.php +++ b/resources/lang/cs-CZ/forms.php @@ -151,8 +151,9 @@ 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.', + '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í?', 'skip_subscriber_verification' => 'Přestat ověřovat uživatele? (Pozor na spammery)', 'automatic_localization' => 'Automaticky lokalizovat stránku do jazyka návštěvníka?', @@ -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é', From 0fc5addd20790c408d17ade92b6ae8d6c19f655f Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:56 +0000 Subject: [PATCH 105/194] New translations notifications.php (Chinese Simplified) --- resources/lang/zh-CN/notifications.php | 76 +++++++++++++------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/resources/lang/zh-CN/notifications.php b/resources/lang/zh-CN/notifications.php index 6a65c6bd..dc58fe26 100644 --- a/resources/lang/zh-CN/notifications.php +++ b/resources/lang/zh-CN/notifications.php @@ -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' => '接受', ], ], ], From 61bb1b4f2358617d885da55f375fc497aa232ff8 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:57 +0000 Subject: [PATCH 106/194] New translations cachet.php (Chinese Traditional) --- resources/lang/zh-TW/cachet.php | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/resources/lang/zh-TW/cachet.php b/resources/lang/zh-TW/cachet.php index 0111abb6..5643396c 100644 --- a/resources/lang/zh-TW/cachet.php +++ b/resources/lang/zh-TW/cachet.php @@ -12,27 +12,28 @@ return [ // Components 'components' => [ - 'last_updated' => '最後更新', + 'last_updated' => '最後更新: :timestamp', 'status' => [ - 0 => 'Unknown', + 0 => '未知', 1 => '正常', 2 => '效能問題', 3 => '部分停止運作', 4 => '停止運作', ], 'group' => [ - 'other' => '其他组件', + 'other' => '其他元件', ], ], // Incidents 'incidents' => [ - 'none' => '沒有任何報告', - 'past' => 'Past Incidents', + 'none' => '沒有故障報告', + 'past' => '過往事件', 'stickied' => 'Stickied 事件', 'scheduled' => '排程維護', 'scheduled_at' => ',於:timestamp', 'posted' => '簽名時間戳', + 'posted_at' => 'Posted at :timestamp', 'status' => [ 1 => '調查中', 2 => '已辨明', @@ -44,9 +45,9 @@ return [ // Schedule 'schedules' => [ 'status' => [ - 0 => 'Upcoming', - 1 => 'In Progress', - 2 => 'Complete', + 0 => '預定事項', + 1 => '處理中', + 2 => '已解決', ], ], @@ -68,17 +69,17 @@ return [ 'last_hour' => '一小時前', 'hourly' => '最近12小時', 'weekly' => '週', - 'monthly' => '月', + 'monthly' => '月份', ], ], // Subscriber 'subscriber' => [ - 'subscribe' => '訂閱最新的狀態更新。', - 'unsubscribe' => 'Unsubscribe at :link', + 'subscribe' => '訂閱以獲取最新的更新。', + 'unsubscribe' => '取消訂閱: :link', 'button' => '訂閱', 'manage' => [ - 'no_subscriptions' => '您目前已安裝所有的更新。', + 'no_subscriptions' => '您目前已訂閱所有的更新。', 'my_subscriptions' => '您目前已安裝下列更新', ], 'email' => [ From 20a5f1cb437404dcf2c4fa36a61542cc30ce0961 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:58 +0000 Subject: [PATCH 107/194] New translations dashboard.php (Chinese Traditional) --- resources/lang/zh-TW/dashboard.php | 36 +++++++++++++++++++----------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/resources/lang/zh-TW/dashboard.php b/resources/lang/zh-TW/dashboard.php index e9718391..c71de8e6 100644 --- a/resources/lang/zh-TW/dashboard.php +++ b/resources/lang/zh-TW/dashboard.php @@ -21,7 +21,20 @@ return [ 'logged' => '{0} 做得好,沒有任何事件。|你記錄了一個事件。|你回報了 :count 個事件。', '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' => '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 :incident', - '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.', From 45edffdaa83bf24260cac122f4aab78144944a07 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:06:59 +0000 Subject: [PATCH 108/194] New translations forms.php (Chinese Traditional) --- resources/lang/zh-TW/forms.php | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/resources/lang/zh-TW/forms.php b/resources/lang/zh-TW/forms.php index 3c336120..ab7ac7b5 100644 --- a/resources/lang/zh-TW/forms.php +++ b/resources/lang/zh-TW/forms.php @@ -151,8 +151,9 @@ return [ 'display-graphs' => '在狀態頁上顯示圖片?', 'about-this-page' => '關於本站', 'days-of-incidents' => '顯示多少天前的事件?', + 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => 'Banner Image', - 'banner-help' => '橫幅寬度建議少於 930px 。', + 'banner-help' => "橫幅寬度建議少於 930px 。", 'subscribers' => '允許用戶訂閱郵件通知嗎?', '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?', @@ -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' => '* 可選項目', From 651b45a58f357749be18056ff3de82cedc38ec94 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:00 +0000 Subject: [PATCH 109/194] New translations pagination.php (Chinese Traditional) --- resources/lang/zh-TW/pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/zh-TW/pagination.php b/resources/lang/zh-TW/pagination.php index 0ee724cf..d8535436 100644 --- a/resources/lang/zh-TW/pagination.php +++ b/resources/lang/zh-TW/pagination.php @@ -22,7 +22,7 @@ return [ | */ - 'previous' => 'Previous', - 'next' => 'Next', + 'previous' => '上一頁', + 'next' => '下一頁', ]; From a8e2ae4e792d82f4c15065cecc4250fc30ab0c19 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:01 +0000 Subject: [PATCH 110/194] New translations validation.php (Chinese Traditional) --- resources/lang/zh-TW/validation.php | 32 ++++++++++++++--------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/resources/lang/zh-TW/validation.php b/resources/lang/zh-TW/validation.php index 4305ac57..266b2db0 100644 --- a/resources/lang/zh-TW/validation.php +++ b/resources/lang/zh-TW/validation.php @@ -31,24 +31,24 @@ return [ 'array' => ':attribute 必須是一個陣列', 'before' => ':attribute 必須在 :date 之前', 'between' => [ - 'numeric' => 'The :attribute must be between :min and :max.', + 'numeric' => ':attribute的值必須於 :min 與 :max 之間。', 'file' => 'The :attribute must be between :min and :max kilobytes.', - 'string' => 'The :attribute must be between :min and :max characters.', + 'string' => ':attribute的長度必須於 :min 與 :max 之間。', 'array' => 'The :attribute must have between :min and :max items.', ], - '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 的值必須為是或否。', + 'confirmed' => ':attribute 與其確認值不相符。', + 'date' => ':attribute 並非一個有效的日期。', + 'date_format' => ':attribute 不符合 :format 的格式', + 'different' => ':attribute 和 :other 不能相同。', + 'digits' => ':attribute 必須長 :digits 位.', + 'digits_between' => ':attribute的長度必須於 :min 與 :max 字元之間。', + 'email' => ':attribute 必須是一個有效的電子郵件地址。', + 'exists' => '選定的 :attribute 無效。', + 'distinct' => ':attribute 已被使用。', + 'filled' => ':attribute 為必要值。', 'image' => ':attribute 必須是圖片', - 'in' => 'The selected :attribute is invalid.', + 'in' => '選定的 :attribute 無效。', '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.', @@ -66,11 +66,11 @@ return [ 'string' => 'The :attribute must be at least :min characters.', 'array' => 'The :attribute must have at least :min items.', ], - 'not_in' => 'The selected :attribute is invalid.', + 'not_in' => '選定的 :attribute 無效。', 'numeric' => 'The :attribute must be a number.', 'present' => 'The :attribute field must be present.', 'regex' => ':attribute 格式無效', - 'required' => 'The :attribute field is required.', + 'required' => ':attribute 為必要值。', 'required_if' => 'The :attribute field is required when :other is :value.', 'required_unless' => 'The :attribute field is required unless :other is in :values.', 'required_with' => ':attribute 欄位在 :values 存在時,是必填的', From 482e69666b4958d13df731e3beba85fde68123fe Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:02 +0000 Subject: [PATCH 111/194] New translations notifications.php (Chinese Traditional) --- resources/lang/zh-TW/notifications.php | 76 +++++++++++++------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/resources/lang/zh-TW/notifications.php b/resources/lang/zh-TW/notifications.php index 6a65c6bd..44a36e04 100644 --- a/resources/lang/zh-TW/notifications.php +++ b/resources/lang/zh-TW/notifications.php @@ -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' => '接受', ], ], ], From 5d5d6a050dab9155694f2bf0eac086a5f1f06375 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:03 +0000 Subject: [PATCH 112/194] New translations cachet.php (Czech) --- resources/lang/cs-CZ/cachet.php | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/lang/cs-CZ/cachet.php b/resources/lang/cs-CZ/cachet.php index d6beb942..71018e5e 100644 --- a/resources/lang/cs-CZ/cachet.php +++ b/resources/lang/cs-CZ/cachet.php @@ -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', From 7cd99b0abd824957bf5f90faf56c66aac180a6e1 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:04 +0000 Subject: [PATCH 113/194] New translations dashboard.php (Czech) --- resources/lang/cs-CZ/dashboard.php | 36 +++++++++++++++++++----------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/resources/lang/cs-CZ/dashboard.php b/resources/lang/cs-CZ/dashboard.php index 9b5f46dc..415a5228 100644 --- a/resources/lang/cs-CZ/dashboard.php +++ b/resources/lang/cs-CZ/dashboard.php @@ -21,7 +21,20 @@ return [ 'logged' => '{0} Nejsou hlášeny žádné incidenty, dobrá práce. | Zapsali jste jeden incident. | Nahlásili jste :count 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 :incident', - '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.', From 7e28c9fa72284985c2f6ad967a3f1915d7fedd2e Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:05 +0000 Subject: [PATCH 114/194] New translations pagination.php (Czech) --- resources/lang/cs-CZ/pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/cs-CZ/pagination.php b/resources/lang/cs-CZ/pagination.php index 0ee724cf..f4f458ea 100644 --- a/resources/lang/cs-CZ/pagination.php +++ b/resources/lang/cs-CZ/pagination.php @@ -22,7 +22,7 @@ return [ | */ - 'previous' => 'Previous', - 'next' => 'Next', + 'previous' => 'Předchozí', + 'next' => 'Další', ]; From d6e9058551e361f5fe2b0aef606cf59545dcacf0 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:06 +0000 Subject: [PATCH 115/194] New translations forms.php (Chinese Simplified) --- resources/lang/zh-CN/forms.php | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/resources/lang/zh-CN/forms.php b/resources/lang/zh-CN/forms.php index 2b98101d..85b79181 100644 --- a/resources/lang/zh-CN/forms.php +++ b/resources/lang/zh-CN/forms.php @@ -151,8 +151,9 @@ return [ 'display-graphs' => '在状态页上显示图表', 'about-this-page' => '关于本页', 'days-of-incidents' => '显示多少天的故障?', + 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => '横幅图像', - 'banner-help' => '建议上传文件宽度不大于 930 像素。', + 'banner-help' => "建议上传文件宽度不大于 930 像素。", 'subscribers' => '允许用户订阅邮件通知', 'skip_subscriber_verification' => '是否跳过用户邮件验证?(小心,这可能会被滥用)', 'automatic_localization' => '根据访客的系统语言自动本地化状态页面', @@ -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' => '* 可选', From da867a9e826aa57b5a58c10dd07a059f870f158c Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:08 +0000 Subject: [PATCH 116/194] New translations notifications.php (Czech) --- resources/lang/cs-CZ/notifications.php | 76 +++++++++++++------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/resources/lang/cs-CZ/notifications.php b/resources/lang/cs-CZ/notifications.php index 6a65c6bd..18bad07c 100644 --- a/resources/lang/cs-CZ/notifications.php +++ b/resources/lang/cs-CZ/notifications.php @@ -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', ], ], ], From 440223ed6cccedcd8959332fe0225d7fb695fb50 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:09 +0000 Subject: [PATCH 117/194] New translations cachet.php (Danish) --- resources/lang/da-DK/cachet.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/resources/lang/da-DK/cachet.php b/resources/lang/da-DK/cachet.php index 160ec27d..51ab8d5b 100644 --- a/resources/lang/da-DK/cachet.php +++ b/resources/lang/da-DK/cachet.php @@ -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 Cachet.', - 'timezone' => 'Klokkeslæt angives som :timezone.', + 'timezone' => 'Klokkeslæt vises i :timezone.', 'about_this_site' => 'Om denne side', 'rss-feed' => 'RSS', 'atom-feed' => 'Atom', From adc9ad9c2d46d5770514d3b17aa808d9de989892 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:10 +0000 Subject: [PATCH 118/194] New translations dashboard.php (Danish) --- resources/lang/da-DK/dashboard.php | 36 +++++++++++++++++++----------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/resources/lang/da-DK/dashboard.php b/resources/lang/da-DK/dashboard.php index 0feac1f3..c1e36127 100644 --- a/resources/lang/da-DK/dashboard.php +++ b/resources/lang/da-DK/dashboard.php @@ -21,7 +21,20 @@ return [ 'logged' => '{0} Ingen åbne hændelser.|Der er en åben hændelse.|Der er :count å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 :incident', - '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.', From f82b2a125ac3543a71106ce58e5228b5d997694f Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:12 +0000 Subject: [PATCH 119/194] New translations forms.php (Danish) --- resources/lang/da-DK/forms.php | 80 +++++++++++++++++----------------- 1 file changed, 41 insertions(+), 39 deletions(-) diff --git a/resources/lang/da-DK/forms.php b/resources/lang/da-DK/forms.php index d57c9ec6..1e418289 100644 --- a/resources/lang/da-DK/forms.php +++ b/resources/lang/da-DK/forms.php @@ -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.', + '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', From 10c3ba73944a51499ea49970dafa12874a461030 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:13 +0000 Subject: [PATCH 120/194] New translations pagination.php (Danish) --- resources/lang/da-DK/pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/da-DK/pagination.php b/resources/lang/da-DK/pagination.php index 0ee724cf..c9537692 100644 --- a/resources/lang/da-DK/pagination.php +++ b/resources/lang/da-DK/pagination.php @@ -22,7 +22,7 @@ return [ | */ - 'previous' => 'Previous', - 'next' => 'Next', + 'previous' => 'Forrige', + 'next' => 'Næste', ]; From fcd48784f3f65e360bcee82b207e888f797ed953 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:14 +0000 Subject: [PATCH 121/194] New translations validation.php (Danish) --- resources/lang/da-DK/validation.php | 72 ++++++++++++++--------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/resources/lang/da-DK/validation.php b/resources/lang/da-DK/validation.php index aea8ef92..4c8a9a72 100644 --- a/resources/lang/da-DK/validation.php +++ b/resources/lang/da-DK/validation.php @@ -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.', From ec230b160d36e3497f5e2e9e6bee2ca94ba1f872 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:15 +0000 Subject: [PATCH 122/194] New translations notifications.php (Danish) --- resources/lang/da-DK/notifications.php | 76 +++++++++++++------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/resources/lang/da-DK/notifications.php b/resources/lang/da-DK/notifications.php index 6a65c6bd..7fca4982 100644 --- a/resources/lang/da-DK/notifications.php +++ b/resources/lang/da-DK/notifications.php @@ -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', ], ], ], From 1beb59e052526fe8fa90e4c71ea6ce05123f11d1 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:16 +0000 Subject: [PATCH 123/194] New translations cachet.php (Dutch) --- resources/lang/nl-NL/cachet.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/lang/nl-NL/cachet.php b/resources/lang/nl-NL/cachet.php index 5f748f49..e8f01fba 100644 --- a/resources/lang/nl-NL/cachet.php +++ b/resources/lang/nl-NL/cachet.php @@ -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.', From 2272993739d5695722d1365cffdfc85907bfb4f7 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:17 +0000 Subject: [PATCH 124/194] New translations dashboard.php (Dutch) --- resources/lang/nl-NL/dashboard.php | 36 +++++++++++++++++++----------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/resources/lang/nl-NL/dashboard.php b/resources/lang/nl-NL/dashboard.php index 945da977..709e065c 100644 --- a/resources/lang/nl-NL/dashboard.php +++ b/resources/lang/nl-NL/dashboard.php @@ -21,7 +21,20 @@ return [ 'logged' => '{0} Proficiat, er zijn geen incidenten.|Er heeft zich één incident voorgedaan.|Er zijn :count 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 :incident', - '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.', From d02adb28d01b05778be33dac71a8a7c9159fa8c8 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:18 +0000 Subject: [PATCH 125/194] New translations pagination.php (Chinese Simplified) --- resources/lang/zh-CN/pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/zh-CN/pagination.php b/resources/lang/zh-CN/pagination.php index 0ee724cf..c95f0ea2 100644 --- a/resources/lang/zh-CN/pagination.php +++ b/resources/lang/zh-CN/pagination.php @@ -22,7 +22,7 @@ return [ | */ - 'previous' => 'Previous', - 'next' => 'Next', + 'previous' => '上一个', + 'next' => '下一个', ]; From 7ec617b1cb0da2c9fa5c2f8a0260023fac1f2f5a Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:19 +0000 Subject: [PATCH 126/194] New translations dashboard.php (Chinese Simplified) --- resources/lang/zh-CN/dashboard.php | 36 +++++++++++++++++++----------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/resources/lang/zh-CN/dashboard.php b/resources/lang/zh-CN/dashboard.php index 2cd8696b..fb460511 100644 --- a/resources/lang/zh-CN/dashboard.php +++ b/resources/lang/zh-CN/dashboard.php @@ -21,7 +21,20 @@ return [ 'logged' => '{0} 当前没有故障信息|您已经记录了一个故障|您已经报告了 :count 个故障', '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' => '添加故障更新', + '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' => '给 :incident 故障添加一个更新', - 'success' => 'Update added.', - ], // Incident templates 'templates' => [ @@ -147,13 +155,15 @@ return [ ], // Subscribers 'subscribers' => [ - 'subscribers' => '通知', - 'description' => '有新增故障或有组件更新时,订阅者将会收到邮件提醒。', - 'verified' => '已认证', - 'not_verified' => '未认证', - 'subscriber' => ':email, 订阅于 :date', - 'no_subscriptions' => '已订阅全部更新', - 'add' => [ + 'subscribers' => '通知', + 'description' => '有新增故障或有组件更新时,订阅者将会收到邮件提醒。', + 'description_disabled' => 'To use this feature, you need allow people to signup for notifications.', + 'verified' => '已认证', + 'not_verified' => '未认证', + 'subscriber' => ':email, 订阅于 :date', + 'no_subscriptions' => '已订阅全部更新', + 'global' => 'Globally subscribed', + 'add' => [ 'title' => '添加邮件订阅', 'success' => '邮件订阅已添加成功。', 'failure' => '无法添加订阅者,请稍后再试。', From 7838878a3423fbb6795de9f4ab5c35f86f1f80d6 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:20 +0000 Subject: [PATCH 127/194] New translations pagination.php (Dutch) --- resources/lang/nl-NL/pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/nl-NL/pagination.php b/resources/lang/nl-NL/pagination.php index 0ee724cf..7810e8a7 100644 --- a/resources/lang/nl-NL/pagination.php +++ b/resources/lang/nl-NL/pagination.php @@ -22,7 +22,7 @@ return [ | */ - 'previous' => 'Previous', - 'next' => 'Next', + 'previous' => 'Vorige', + 'next' => 'Volgende', ]; From 8d94231146275e6476ff7790bb5c021c5976920c Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:21 +0000 Subject: [PATCH 128/194] New translations cachet.php (Arabic) --- resources/lang/ar-SA/cachet.php | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/lang/ar-SA/cachet.php b/resources/lang/ar-SA/cachet.php index 193f690a..b3858c9e 100644 --- a/resources/lang/ar-SA/cachet.php +++ b/resources/lang/ar-SA/cachet.php @@ -33,6 +33,7 @@ return [ 'scheduled' => 'صيانة مجدولة', 'scheduled_at' => ', مجدولة :timestamp', 'posted' => 'تم الإرسال :timestamp', + 'posted_at' => 'Posted at :timestamp', 'status' => [ 1 => 'تحقيق', 2 => 'تم التعرف عليه', From 21600ddc8945e3ecdaff5f778091cce6e3efaf3c Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:22 +0000 Subject: [PATCH 129/194] New translations forms.php (Afrikaans) --- resources/lang/af-ZA/forms.php | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/resources/lang/af-ZA/forms.php b/resources/lang/af-ZA/forms.php index 4f123702..2091ce6e 100644 --- a/resources/lang/af-ZA/forms.php +++ b/resources/lang/af-ZA/forms.php @@ -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', From 73063ab2815d331cfbc01005396183067d8309a2 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:22 +0000 Subject: [PATCH 130/194] New translations pagination.php (Afrikaans) --- resources/lang/af-ZA/pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/af-ZA/pagination.php b/resources/lang/af-ZA/pagination.php index 0ee724cf..7810e8a7 100644 --- a/resources/lang/af-ZA/pagination.php +++ b/resources/lang/af-ZA/pagination.php @@ -22,7 +22,7 @@ return [ | */ - 'previous' => 'Previous', - 'next' => 'Next', + 'previous' => 'Vorige', + 'next' => 'Volgende', ]; From 61f94816c702981b5add7204045e52a07ea79e10 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:24 +0000 Subject: [PATCH 131/194] New translations cachet.php (Albanian) --- resources/lang/sq-AL/cachet.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/lang/sq-AL/cachet.php b/resources/lang/sq-AL/cachet.php index 3958df78..4f4e19ce 100644 --- a/resources/lang/sq-AL/cachet.php +++ b/resources/lang/sq-AL/cachet.php @@ -33,6 +33,7 @@ return [ 'scheduled' => 'Mirëmbajtje planifikuar', 'scheduled_at' => ', planifiko :timestamp', 'posted' => 'Posted :timestamp', + 'posted_at' => 'Posted at :timestamp', 'status' => [ 1 => 'Hetimin', 2 => 'Identifikohet', @@ -75,7 +76,7 @@ return [ // Subscriber 'subscriber' => [ 'subscribe' => 'Subscribe to get the updates', - 'unsubscribe' => 'Unsubscribe at :link', + 'unsubscribe' => 'Anullo abonimin', 'button' => 'Subscribe', 'manage' => [ 'no_subscriptions' => 'You\'re currently subscribed to all updates.', From 4d823cf4556a1fc846f75d0096ff8a6f4d577e56 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:25 +0000 Subject: [PATCH 132/194] New translations dashboard.php (Albanian) --- resources/lang/sq-AL/dashboard.php | 36 +++++++++++++++++++----------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/resources/lang/sq-AL/dashboard.php b/resources/lang/sq-AL/dashboard.php index e1172ab9..2a8fd5ea 100644 --- a/resources/lang/sq-AL/dashboard.php +++ b/resources/lang/sq-AL/dashboard.php @@ -21,7 +21,20 @@ return [ 'logged' => '{0} There are no incidents, good work.|You have logged one incident.|You have reported :count 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 :incident', - '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.', From 08513d7980eb246406f7b10a79f516ac5a056396 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:26 +0000 Subject: [PATCH 133/194] New translations forms.php (Albanian) --- resources/lang/sq-AL/forms.php | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/resources/lang/sq-AL/forms.php b/resources/lang/sq-AL/forms.php index 0e2d64e6..4c5c168c 100644 --- a/resources/lang/sq-AL/forms.php +++ b/resources/lang/sq-AL/forms.php @@ -151,6 +151,7 @@ return [ 'display-graphs' => 'Display graphs on status page?', 'about-this-page' => 'Rreth faqes', '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' => 'Shto', - 'save' => 'Ruaj', - 'update' => ' Përditëso', - 'create' => 'Krijo', - 'edit' => 'Ndrysho', - 'delete' => 'Fshije', - 'submit' => 'Parashtroje', - 'cancel' => 'Anulloje', - 'remove' => 'Hiqe', - 'invite' => 'Invite', - 'signup' => 'Sign Up', + 'add' => 'Shto', + 'save' => 'Ruaj', + 'update' => ' Përditëso', + 'create' => 'Krijo', + 'edit' => 'Ndrysho', + 'delete' => 'Fshije', + 'submit' => 'Parashtroje', + 'cancel' => 'Anulloje', + 'remove' => 'Hiqe', + 'invite' => 'Invite', + 'signup' => 'Sign Up', + 'manage_updates' => 'Manage Updates', // Other 'optional' => '* Optional', From 1f2c75cd5d39ac28a686023767a8590cb2a4dd1e Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:27 +0000 Subject: [PATCH 134/194] New translations pagination.php (Albanian) --- resources/lang/sq-AL/pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/sq-AL/pagination.php b/resources/lang/sq-AL/pagination.php index 0ee724cf..cb9036cd 100644 --- a/resources/lang/sq-AL/pagination.php +++ b/resources/lang/sq-AL/pagination.php @@ -22,7 +22,7 @@ return [ | */ - 'previous' => 'Previous', - 'next' => 'Next', + 'previous' => 'I meparshem', + 'next' => 'Tjeter', ]; From 65a208b5120327ef41aa530a66905fa06f13f117 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:28 +0000 Subject: [PATCH 135/194] New translations notifications.php (Albanian) --- resources/lang/sq-AL/notifications.php | 78 +++++++++++++------------- 1 file changed, 39 insertions(+), 39 deletions(-) diff --git a/resources/lang/sq-AL/notifications.php b/resources/lang/sq-AL/notifications.php index 6a65c6bd..19c096e6 100644 --- a/resources/lang/sq-AL/notifications.php +++ b/resources/lang/sq-AL/notifications.php @@ -13,95 +13,95 @@ 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' => 'Statusi i komponentit u azhornua', + 'greeting' => 'Statusi i nje komponenti u azhornua!', + 'content' => 'Status i :name u ndryshua nga :old_status ne :new_status.', + 'action' => 'Shiko', ], 'slack' => [ - 'title' => 'Component Status Updated', - 'content' => ':name status changed from :old_status to :new_status.', + 'title' => 'Statusi i komponentit u azhornua', + 'content' => 'Status i :name u ndryshua nga :old_status ne :new_status.', ], 'sms' => [ - 'content' => ':name status changed from :old_status to :new_status.', + 'content' => 'Status i :name u ndryshua nga :old_status ne :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' => 'U raportua incident i ri', + 'greeting' => 'New incident i ri u raportua ne :app_name.', + 'content' => 'Incidenti :name u raportua', + 'action' => 'Shiko', ], 'slack' => [ - 'title' => 'Incident :name Reported', - 'content' => 'A new incident was reported at :app_name', + 'title' => 'Incidenti :name u raportua', + 'content' => 'Nje incident i ri u raportua ne :app_name', ], 'sms' => [ - 'content' => 'A new incident was reported at :app_name.', + 'content' => 'New incident i ri u raportua ne :app_name.', ], ], 'update' => [ 'mail' => [ - 'subject' => 'Incident Updated', - 'content' => ':name was updated', - 'title' => ':name was updated to :new_status', - 'action' => 'View', + 'subject' => 'U azhornua nje incident', + 'content' => ':name u azhornua', + 'title' => ':name u azhornua ne :new_status', + 'action' => 'Shiko', ], 'slack' => [ - 'title' => ':name Updated', - 'content' => ':name was updated to :new_status', + 'title' => ':name u azhornua', + 'content' => ':name u azhornua ne :new_status', ], 'sms' => [ - 'content' => 'Incident :name was updated', + 'content' => 'Incidenti :name u azhornua', ], ], ], 'schedule' => [ 'new' => [ 'mail' => [ - 'subject' => 'New Schedule Created', - 'content' => ':name was scheduled for :date', - 'title' => 'A new scheduled maintenance was created.', - 'action' => 'View', + 'subject' => 'Nje prenotim i ri u krijua', + 'content' => ':name u prenotua per :date', + 'title' => 'Nje orar i ri mirembajtjeje u krijua.', + 'action' => 'Shiko', ], 'slack' => [ - 'title' => 'New Schedule Created!', - 'content' => ':name was scheduled for :date', + 'title' => 'New prenotim i ri u krijua!', + 'content' => ':name u prenotua per :date', ], 'sms' => [ - 'content' => ':name was scheduled for :date', + 'content' => ':name u prenotua 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' => 'Verifikoni abonimin tuaj', + 'content' => 'Kliko per te verifikuar abonimin ne faqen e statusit te :app_name.', + 'title' => 'Verifiko abonimin tuaj ne faqen e statusit te :app_name.', + 'action' => 'Verifiko', ], ], ], 'system' => [ 'test' => [ 'mail' => [ - 'subject' => 'Ping from Cachet!', - 'content' => 'This is a test notification from Cachet!', - 'title' => '🔔', + 'subject' => 'Ping nga Cachet!', + 'content' => 'Ky eshte nje njoftim prove nga Cachet!', + 'title' => 'Zile', ], ], ], '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' => 'Ftesa juaj eshte brenda...', + 'content' => 'Jeni ftuar per tu bashkuar faqes se statusit te :app_name.', + 'title' => 'Ftesa juaj per tu bashkuar faqes se statusit te :app_name.', + 'action' => 'Pranoj', ], ], ], From 0fa337d9a3a667234c4fd43feb5d486f4868d676 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:30 +0000 Subject: [PATCH 136/194] New translations dashboard.php (Arabic) --- resources/lang/ar-SA/dashboard.php | 40 +++++++++++++++++++----------- 1 file changed, 25 insertions(+), 15 deletions(-) diff --git a/resources/lang/ar-SA/dashboard.php b/resources/lang/ar-SA/dashboard.php index 7af11382..4b751456 100644 --- a/resources/lang/ar-SA/dashboard.php +++ b/resources/lang/ar-SA/dashboard.php @@ -21,7 +21,20 @@ return [ 'logged' => '{0} There are no incidents, good work.|You have logged one incident.|You have reported :count 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' => 'إضافة تحديث إلى :incident', - '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.', From e573e539dd034a736d89161de32d133a314fdcd9 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:30 +0000 Subject: [PATCH 137/194] New translations cachet.php (Chinese Simplified) --- resources/lang/zh-CN/cachet.php | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/lang/zh-CN/cachet.php b/resources/lang/zh-CN/cachet.php index 83b03dde..04700a3b 100644 --- a/resources/lang/zh-CN/cachet.php +++ b/resources/lang/zh-CN/cachet.php @@ -33,6 +33,7 @@ return [ 'scheduled' => '计划维护', 'scheduled_at' => ',计划于 :timestamp', 'posted' => '发布于 :timestamp', + 'posted_at' => 'Posted at :timestamp', 'status' => [ 1 => '确认中', 2 => '修复中', From 0e94e1f54dc117bab66d2814ef28712dd05ef1de Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:32 +0000 Subject: [PATCH 138/194] New translations forms.php (Arabic) --- resources/lang/ar-SA/forms.php | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/resources/lang/ar-SA/forms.php b/resources/lang/ar-SA/forms.php index 0fa49486..1ee07fd1 100644 --- a/resources/lang/ar-SA/forms.php +++ b/resources/lang/ar-SA/forms.php @@ -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', From bf725971bd2ebe63949c49ba7d5381aa7ffbe7e2 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:33 +0000 Subject: [PATCH 139/194] New translations pagination.php (Arabic) --- resources/lang/ar-SA/pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/ar-SA/pagination.php b/resources/lang/ar-SA/pagination.php index 0ee724cf..97afb0cf 100644 --- a/resources/lang/ar-SA/pagination.php +++ b/resources/lang/ar-SA/pagination.php @@ -22,7 +22,7 @@ return [ | */ - 'previous' => 'Previous', - 'next' => 'Next', + 'previous' => 'السابق', + 'next' => 'التالي', ]; From da492808eec2c3c00551cbdb170f9cd471337e46 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:34 +0000 Subject: [PATCH 140/194] New translations notifications.php (Arabic) --- resources/lang/ar-SA/notifications.php | 76 +++++++++++++------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/resources/lang/ar-SA/notifications.php b/resources/lang/ar-SA/notifications.php index 6a65c6bd..8f1d3fba 100644 --- a/resources/lang/ar-SA/notifications.php +++ b/resources/lang/ar-SA/notifications.php @@ -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' => 'قبول', ], ], ], From 3c276ce0c06e11a894b028cf6a850be3c12d1355 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:35 +0000 Subject: [PATCH 141/194] New translations cachet.php (Catalan) --- resources/lang/ca-ES/cachet.php | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/resources/lang/ca-ES/cachet.php b/resources/lang/ca-ES/cachet.php index d762c595..b84ef7a3 100644 --- a/resources/lang/ca-ES/cachet.php +++ b/resources/lang/ca-ES/cachet.php @@ -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 Cachet.', - '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', From 8149e41e0f2affadb93bd1acd881877996bba4e8 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:36 +0000 Subject: [PATCH 142/194] New translations dashboard.php (Catalan) --- resources/lang/ca-ES/dashboard.php | 36 +++++++++++++++++++----------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/resources/lang/ca-ES/dashboard.php b/resources/lang/ca-ES/dashboard.php index bbae5aca..2277a35a 100644 --- a/resources/lang/ca-ES/dashboard.php +++ b/resources/lang/ca-ES/dashboard.php @@ -21,7 +21,20 @@ return [ 'logged' => '{0} There are no incidents, good work.|You have logged one incident.|You have reported :count 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 :incident', - '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.', From e8b63128e8e2e71d5181694efd6eb311c058ebb7 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:37 +0000 Subject: [PATCH 143/194] New translations forms.php (Catalan) --- resources/lang/ca-ES/forms.php | 82 +++++++++++++++++----------------- 1 file changed, 42 insertions(+), 40 deletions(-) diff --git a/resources/lang/ca-ES/forms.php b/resources/lang/ca-ES/forms.php index 7a78500e..fc14d03d 100644 --- a/resources/lang/ca-ES/forms.php +++ b/resources/lang/ca-ES/forms.php @@ -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', From 419552cf716bf0f27d4ba5f106d8bf1431ddd0ad Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:38 +0000 Subject: [PATCH 144/194] New translations setup.php (Catalan) --- resources/lang/ca-ES/setup.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/ca-ES/setup.php b/resources/lang/ca-ES/setup.php index bdbbcd0c..cbce9abc 100644 --- a/resources/lang/ca-ES/setup.php +++ b/resources/lang/ca-ES/setup.php @@ -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', From f3297c338cb43d337d0d433cfb7d61b88102cd87 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:40 +0000 Subject: [PATCH 145/194] New translations forms.php (Dutch) --- resources/lang/nl-NL/forms.php | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/resources/lang/nl-NL/forms.php b/resources/lang/nl-NL/forms.php index 09d91edf..4f5c3a43 100644 --- a/resources/lang/nl-NL/forms.php +++ b/resources/lang/nl-NL/forms.php @@ -151,8 +151,9 @@ 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.', + '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?', 'skip_subscriber_verification' => 'Verificatie van gebruikers overslaan? (Let op, je kunt gespamd worden)', 'automatic_localization' => 'Stel de taal van de bezoeker in als standaardtaal voor deze bezoeker?', @@ -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', From 455d500e2989253680492c96688171a60f60be3d Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:41 +0000 Subject: [PATCH 146/194] New translations notifications.php (Indonesian) --- resources/lang/id-ID/notifications.php | 76 +++++++++++++------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/resources/lang/id-ID/notifications.php b/resources/lang/id-ID/notifications.php index 6a65c6bd..3c18dc36 100644 --- a/resources/lang/id-ID/notifications.php +++ b/resources/lang/id-ID/notifications.php @@ -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', ], ], ], From 4b422ac63b41acdeb2c98c3976b5181d18ee54b9 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:42 +0000 Subject: [PATCH 147/194] New translations dashboard.php (Greek) --- resources/lang/el-GR/dashboard.php | 36 +++++++++++++++++++----------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/resources/lang/el-GR/dashboard.php b/resources/lang/el-GR/dashboard.php index 44a29d75..363e3ce8 100644 --- a/resources/lang/el-GR/dashboard.php +++ b/resources/lang/el-GR/dashboard.php @@ -21,7 +21,20 @@ return [ 'logged' => '{0} Δεν υπάρχουν περιστατικά, καλλή δουλειά.|Έχετε καταγράψει ένα περιστατικό.|Έχετε ανάφερει :count περιστατικά.', '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 :incident', - '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.', From a0e9d4abf0ca838bf7aa6f0dcaa9031329d5a0ce Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:43 +0000 Subject: [PATCH 148/194] New translations forms.php (Greek) --- resources/lang/el-GR/forms.php | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/resources/lang/el-GR/forms.php b/resources/lang/el-GR/forms.php index d4639d7d..939978b9 100644 --- a/resources/lang/el-GR/forms.php +++ b/resources/lang/el-GR/forms.php @@ -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', From 5921554c75ac016a03925c22ec8ee2a4fd716a53 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:44 +0000 Subject: [PATCH 149/194] New translations pagination.php (Greek) --- resources/lang/el-GR/pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/el-GR/pagination.php b/resources/lang/el-GR/pagination.php index 0ee724cf..96eb5129 100644 --- a/resources/lang/el-GR/pagination.php +++ b/resources/lang/el-GR/pagination.php @@ -22,7 +22,7 @@ return [ | */ - 'previous' => 'Previous', - 'next' => 'Next', + 'previous' => 'Προηγούμενη', + 'next' => 'Επόμενη', ]; From c81deb6d2ce175416cdf6904887de49ed123b51f Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:46 +0000 Subject: [PATCH 150/194] New translations cachet.php (Hebrew) --- resources/lang/he-IL/cachet.php | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/lang/he-IL/cachet.php b/resources/lang/he-IL/cachet.php index 430d1013..dce90107 100644 --- a/resources/lang/he-IL/cachet.php +++ b/resources/lang/he-IL/cachet.php @@ -33,6 +33,7 @@ return [ 'scheduled' => 'תחזוקה מתוזמנת', 'scheduled_at' => ', scheduled :timestamp', 'posted' => 'Posted :timestamp', + 'posted_at' => 'Posted at :timestamp', 'status' => [ 1 => 'Investigating', 2 => 'מזוהה', From a3f610a1bfd7bfdadb74a7154a637e8ecb57e694 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:47 +0000 Subject: [PATCH 151/194] New translations dashboard.php (Hebrew) --- resources/lang/he-IL/dashboard.php | 40 +++++++++++++++++++----------- 1 file changed, 25 insertions(+), 15 deletions(-) diff --git a/resources/lang/he-IL/dashboard.php b/resources/lang/he-IL/dashboard.php index a3a0a8e6..39dd1f78 100644 --- a/resources/lang/he-IL/dashboard.php +++ b/resources/lang/he-IL/dashboard.php @@ -11,8 +11,8 @@ return [ - 'dashboard' => 'Dashboard', - 'writeable_settings' => 'The Cachet settings directory is not writeable. Please make sure that ./bootstrap/cachet is writeable by the web server.', + 'dashboard' => 'לוח בקרה', + 'writeable_settings' => 'תיקיית ההגדרות של Cachet איננה קיימת עם הגדרות כתיבה. נא לבדוק שליוזר השרת יש הרשאות לכתוב בתיקיית ./bootstrap/cachet.', // Incidents 'incidents' => [ @@ -21,7 +21,20 @@ return [ 'logged' => '{0} There are no incidents, good work.|You have logged one incident.|You have reported :count 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 :incident', - '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.', From 5d733c6b9a43d6d0ad7ed6afd6e582cb3a28bd26 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:48 +0000 Subject: [PATCH 152/194] New translations forms.php (Hebrew) --- resources/lang/he-IL/forms.php | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/resources/lang/he-IL/forms.php b/resources/lang/he-IL/forms.php index 183fc250..54dda5eb 100644 --- a/resources/lang/he-IL/forms.php +++ b/resources/lang/he-IL/forms.php @@ -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', From 69b2aba81cbd2a895d91a4d8547f527b46d3f2af Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:50 +0000 Subject: [PATCH 153/194] New translations cachet.php (Hungarian) --- resources/lang/hu-HU/cachet.php | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/resources/lang/hu-HU/cachet.php b/resources/lang/hu-HU/cachet.php index 6ad3d356..5073bd6c 100644 --- a/resources/lang/hu-HU/cachet.php +++ b/resources/lang/hu-HU/cachet.php @@ -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! Itt olvashatsz utána, hogyan kell frissíteni.', + 'update' => 'Elérhető egy újabb Cachet verzió! Itt 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 Cachet.', - 'timezone' => 'Alkalmazott időzóna: :timezone.', + 'powered_by' => 'A motorháztető alatt a Cachet dolgozik.', + 'timezone' => 'Időzóna: :timezone.', 'about_this_site' => 'A webhelyről', 'rss-feed' => 'RSS', 'atom-feed' => 'Atom', From 800a27e99ab79977c0857e764bc615b1eddcb7c5 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:51 +0000 Subject: [PATCH 154/194] New translations notifications.php (German) --- resources/lang/de-DE/notifications.php | 76 +++++++++++++------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/resources/lang/de-DE/notifications.php b/resources/lang/de-DE/notifications.php index 6a65c6bd..398d5b24 100644 --- a/resources/lang/de-DE/notifications.php +++ b/resources/lang/de-DE/notifications.php @@ -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', ], ], ], From 9382834c78bf1a7b3a886bf43655f68befdb4b8b Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:52 +0000 Subject: [PATCH 155/194] New translations dashboard.php (Hungarian) --- resources/lang/hu-HU/dashboard.php | 50 ++++++++++++++++++------------ 1 file changed, 30 insertions(+), 20 deletions(-) diff --git a/resources/lang/hu-HU/dashboard.php b/resources/lang/hu-HU/dashboard.php index d82d3ee8..f5c111b8 100644 --- a/resources/lang/hu-HU/dashboard.php +++ b/resources/lang/hu-HU/dashboard.php @@ -11,8 +11,8 @@ return [ - 'dashboard' => 'Műszerfal', - 'writeable_settings' => 'The Cachet settings directory is not writeable. Please make sure that ./bootstrap/cachet 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 ./bootstrap/cachet 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 :count 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 :incident', - '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' => [ From ee61eafae1666f8dbc8f66e94deaf0562eedc0d4 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:53 +0000 Subject: [PATCH 156/194] New translations forms.php (Hungarian) --- resources/lang/hu-HU/forms.php | 56 ++++++++++++++++++---------------- 1 file changed, 29 insertions(+), 27 deletions(-) diff --git a/resources/lang/hu-HU/forms.php b/resources/lang/hu-HU/forms.php index 87a4c1ac..65f27438 100644 --- a/resources/lang/hu-HU/forms.php +++ b/resources/lang/hu-HU/forms.php @@ -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.', + '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', From 382e552b9c3b27c8791eecdb1d8cc90f18c75430 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:55 +0000 Subject: [PATCH 157/194] New translations validation.php (Hungarian) --- resources/lang/hu-HU/validation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lang/hu-HU/validation.php b/resources/lang/hu-HU/validation.php index 0a4c7e6b..d9ecc5bc 100644 --- a/resources/lang/hu-HU/validation.php +++ b/resources/lang/hu-HU/validation.php @@ -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.', From c245397ee7a31a9b2078db5254cd6c6f13b8fe96 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:56 +0000 Subject: [PATCH 158/194] New translations cachet.php (Indonesian) --- resources/lang/id-ID/cachet.php | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/lang/id-ID/cachet.php b/resources/lang/id-ID/cachet.php index 990a1220..17169954 100644 --- a/resources/lang/id-ID/cachet.php +++ b/resources/lang/id-ID/cachet.php @@ -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', From bc5774f84d2236688b75b4276d40b26248257043 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:57 +0000 Subject: [PATCH 159/194] New translations dashboard.php (Indonesian) --- resources/lang/id-ID/dashboard.php | 36 +++++++++++++++++++----------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/resources/lang/id-ID/dashboard.php b/resources/lang/id-ID/dashboard.php index 2ef5489c..38ba0c05 100644 --- a/resources/lang/id-ID/dashboard.php +++ b/resources/lang/id-ID/dashboard.php @@ -21,7 +21,20 @@ return [ 'logged' => '{0} Tidak ada insiden, bagus.|Anda mencatat satu insiden.|Anda sudah melaporkan :count 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 :incident', - '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.', From c92a5d6e8e2621c65e0fcb7dd2f843df2ed0bc30 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:58 +0000 Subject: [PATCH 160/194] New translations forms.php (Indonesian) --- resources/lang/id-ID/forms.php | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/resources/lang/id-ID/forms.php b/resources/lang/id-ID/forms.php index 9e8a6e35..e8de303d 100644 --- a/resources/lang/id-ID/forms.php +++ b/resources/lang/id-ID/forms.php @@ -151,8 +151,9 @@ 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.', + 'banner-help' => "Disarankan gambar yang anda unggah tidak lebih lebar dari 930px.", 'subscribers' => 'Bolehkan pengunjung mendaftar notifikasi email?', 'skip_subscriber_verification' => 'Lewatkan verifikasi user? (Hati-hati, anda bisa kena spam)', 'automatic_localization' => 'Otomatis ganti bahasa halaman status anda ke bahasa pengunjung?', @@ -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', From dccfc9bf2c929f648df23c3d371e8de81ea5c45c Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:07:59 +0000 Subject: [PATCH 161/194] New translations pagination.php (Indonesian) --- resources/lang/id-ID/pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/id-ID/pagination.php b/resources/lang/id-ID/pagination.php index 0ee724cf..ce3d9917 100644 --- a/resources/lang/id-ID/pagination.php +++ b/resources/lang/id-ID/pagination.php @@ -22,7 +22,7 @@ return [ | */ - 'previous' => 'Previous', - 'next' => 'Next', + 'previous' => 'Sebelumnya', + 'next' => 'Berikutnya', ]; From 3362a0afd64fe0ea07a3120c36670efb99c488d0 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:08:03 +0000 Subject: [PATCH 162/194] New translations validation.php (Indonesian) --- resources/lang/id-ID/validation.php | 66 ++++++++++++++--------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/resources/lang/id-ID/validation.php b/resources/lang/id-ID/validation.php index 0a30f4a5..571bec01 100644 --- a/resources/lang/id-ID/validation.php +++ b/resources/lang/id-ID/validation.php @@ -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.', From 8eb34556cdf2f7152193114884fcf2b2adfbb505 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:08:04 +0000 Subject: [PATCH 163/194] New translations cachet.php (Greek) --- resources/lang/el-GR/cachet.php | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/resources/lang/el-GR/cachet.php b/resources/lang/el-GR/cachet.php index b02002b0..ca8851eb 100644 --- a/resources/lang/el-GR/cachet.php +++ b/resources/lang/el-GR/cachet.php @@ -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 Cachet.', - 'timezone' => 'Times are shown in :timezone.', + 'timezone' => 'Η ώρα προβάλλεται σε ζώνη :timezone.', 'about_this_site' => 'Σχετικά με αυτόν τον ιστότοπο', 'rss-feed' => 'RSS', 'atom-feed' => 'Atom', From b29fe3debda25ad3f1e09fa7651d11a68b8bd81e Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:08:06 +0000 Subject: [PATCH 164/194] New translations notifications.php (Dutch) --- resources/lang/nl-NL/notifications.php | 76 +++++++++++++------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/resources/lang/nl-NL/notifications.php b/resources/lang/nl-NL/notifications.php index 6a65c6bd..08a0b350 100644 --- a/resources/lang/nl-NL/notifications.php +++ b/resources/lang/nl-NL/notifications.php @@ -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', ], ], ], From d2f6122e3442aa9155d342658fd1fce1f1537206 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:08:07 +0000 Subject: [PATCH 165/194] New translations cachet.php (English) --- resources/lang/en-US/cachet.php | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/lang/en-US/cachet.php b/resources/lang/en-US/cachet.php index 4174dad0..0a8ccd8f 100644 --- a/resources/lang/en-US/cachet.php +++ b/resources/lang/en-US/cachet.php @@ -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', From f288c95423603148d41b8ec575333ebfcbc2cbd8 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:08:08 +0000 Subject: [PATCH 166/194] New translations dashboard.php (English) --- resources/lang/en-US/dashboard.php | 36 +++++++++++++++++++----------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/resources/lang/en-US/dashboard.php b/resources/lang/en-US/dashboard.php index dc81e16d..afbe2caa 100644 --- a/resources/lang/en-US/dashboard.php +++ b/resources/lang/en-US/dashboard.php @@ -21,7 +21,20 @@ return [ 'logged' => '{0} There are no incidents, good work.|You have logged one incident.|You have reported :count 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 :incident', - '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.', From 3192c45a5c7a4e8e07563228f20591410420ba90 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:08:09 +0000 Subject: [PATCH 167/194] New translations forms.php (English) --- resources/lang/en-US/forms.php | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/resources/lang/en-US/forms.php b/resources/lang/en-US/forms.php index f8866be1..710093c5 100644 --- a/resources/lang/en-US/forms.php +++ b/resources/lang/en-US/forms.php @@ -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', From db86143b28b08a2f845f83bb05f5ac89e6799579 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:08:10 +0000 Subject: [PATCH 168/194] New translations notifications.php (English) --- resources/lang/en-US/notifications.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/lang/en-US/notifications.php b/resources/lang/en-US/notifications.php index 6a65c6bd..905a8544 100644 --- a/resources/lang/en-US/notifications.php +++ b/resources/lang/en-US/notifications.php @@ -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', ], ], ], From 812453b913f249a2909aed3dcb22cf0b332dc9d9 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:08:11 +0000 Subject: [PATCH 169/194] New translations cachet.php (Finnish) --- resources/lang/fi-FI/cachet.php | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/lang/fi-FI/cachet.php b/resources/lang/fi-FI/cachet.php index f4831583..e72dd937 100644 --- a/resources/lang/fi-FI/cachet.php +++ b/resources/lang/fi-FI/cachet.php @@ -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', From 1ad7e5c48c2ed0e9ee0cccc785b952bc98781dbd Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:08:12 +0000 Subject: [PATCH 170/194] New translations dashboard.php (Finnish) --- resources/lang/fi-FI/dashboard.php | 36 +++++++++++++++++++----------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/resources/lang/fi-FI/dashboard.php b/resources/lang/fi-FI/dashboard.php index c880668a..d796d598 100644 --- a/resources/lang/fi-FI/dashboard.php +++ b/resources/lang/fi-FI/dashboard.php @@ -21,7 +21,20 @@ return [ 'logged' => '{0} There are no incidents, good work.|You have logged one incident.|You have reported :count 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 :incident', - '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.', From fd6a6d7a9d5452b63ba64fcb0fc6865c5aa86489 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:08:14 +0000 Subject: [PATCH 171/194] New translations forms.php (Finnish) --- resources/lang/fi-FI/forms.php | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/resources/lang/fi-FI/forms.php b/resources/lang/fi-FI/forms.php index feafeb3b..cdc3562b 100644 --- a/resources/lang/fi-FI/forms.php +++ b/resources/lang/fi-FI/forms.php @@ -151,8 +151,9 @@ 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.', + 'banner-help' => "On suositeltavaa, ettet lataa yli 930px leveitä kuvia.", 'subscribers' => 'Salli käyttäjien tilata sähköpostitilaukset?', 'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)', 'automatic_localization' => 'Lokalisoidaanko statussivu automaattisesti kävijän kielen mukaan?', @@ -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', From af9e074b804c4ee2ac460ec90f05ce9116f911ef Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:08:15 +0000 Subject: [PATCH 172/194] New translations pagination.php (Finnish) --- resources/lang/fi-FI/pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/fi-FI/pagination.php b/resources/lang/fi-FI/pagination.php index 0ee724cf..17ec28fe 100644 --- a/resources/lang/fi-FI/pagination.php +++ b/resources/lang/fi-FI/pagination.php @@ -22,7 +22,7 @@ return [ | */ - 'previous' => 'Previous', - 'next' => 'Next', + 'previous' => 'Edellinen', + 'next' => 'Seuraava', ]; From 4251da2fc4a309909c0a4733208a7625080a14f9 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:08:16 +0000 Subject: [PATCH 173/194] New translations notifications.php (Finnish) --- resources/lang/fi-FI/notifications.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/fi-FI/notifications.php b/resources/lang/fi-FI/notifications.php index 6a65c6bd..0f13e990 100644 --- a/resources/lang/fi-FI/notifications.php +++ b/resources/lang/fi-FI/notifications.php @@ -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', ], ], ], From 77382ed1ca7b520ed263fc8061d7bfa10f953905 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:08:17 +0000 Subject: [PATCH 174/194] New translations cachet.php (French) --- resources/lang/fr-FR/cachet.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/resources/lang/fr-FR/cachet.php b/resources/lang/fr-FR/cachet.php index bc511f66..e28e2191 100644 --- a/resources/lang/fr-FR/cachet.php +++ b/resources/lang/fr-FR/cachet.php @@ -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.', ], From 76bf044813c8bd5ce1628c7a52e6656a921f0fdd Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:08:18 +0000 Subject: [PATCH 175/194] New translations dashboard.php (French) --- resources/lang/fr-FR/dashboard.php | 38 +++++++++++++++++++----------- 1 file changed, 24 insertions(+), 14 deletions(-) diff --git a/resources/lang/fr-FR/dashboard.php b/resources/lang/fr-FR/dashboard.php index d4cfba06..60170d78 100644 --- a/resources/lang/fr-FR/dashboard.php +++ b/resources/lang/fr-FR/dashboard.php @@ -21,7 +21,20 @@ return [ 'logged' => '{0} Aucun incident, bon travail.|Vous avez un incident signalé.|Vous avez :count 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 à :incident', - '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', From ea0728d623bb3e5370aed60890061e6e79e777e5 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:08:19 +0000 Subject: [PATCH 176/194] New translations forms.php (French) --- resources/lang/fr-FR/forms.php | 38 ++++++++++++++++++---------------- 1 file changed, 20 insertions(+), 18 deletions(-) diff --git a/resources/lang/fr-FR/forms.php b/resources/lang/fr-FR/forms.php index 4ad07ec7..61e301cd 100644 --- a/resources/lang/fr-FR/forms.php +++ b/resources/lang/fr-FR/forms.php @@ -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,14 +151,15 @@ 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 .', + '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 ?', 'skip_subscriber_verification' => 'Ne pas vérifier les utilisateurs ? (Attention, vous pourriez être spammé)', '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', From 9739fe1f995ef53a08b21f34225767c6d5cefa87 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:08:20 +0000 Subject: [PATCH 177/194] New translations pagination.php (French) --- resources/lang/fr-FR/pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/fr-FR/pagination.php b/resources/lang/fr-FR/pagination.php index 0ee724cf..d37367fa 100644 --- a/resources/lang/fr-FR/pagination.php +++ b/resources/lang/fr-FR/pagination.php @@ -22,7 +22,7 @@ return [ | */ - 'previous' => 'Previous', - 'next' => 'Next', + 'previous' => 'Précédent', + 'next' => 'Suivant', ]; From 559c7d949cde9193864a5909dba1758f2b986885 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:08:21 +0000 Subject: [PATCH 178/194] New translations validation.php (French) --- resources/lang/fr-FR/validation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lang/fr-FR/validation.php b/resources/lang/fr-FR/validation.php index 5415ea7d..d631fa3a 100644 --- a/resources/lang/fr-FR/validation.php +++ b/resources/lang/fr-FR/validation.php @@ -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.', From 9f12c617f20178e2224a955187bbe2197c211a32 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:08:22 +0000 Subject: [PATCH 179/194] New translations notifications.php (French) --- resources/lang/fr-FR/notifications.php | 76 +++++++++++++------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/resources/lang/fr-FR/notifications.php b/resources/lang/fr-FR/notifications.php index 6a65c6bd..2f551e16 100644 --- a/resources/lang/fr-FR/notifications.php +++ b/resources/lang/fr-FR/notifications.php @@ -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', ], ], ], From 68e96f50d8d65bd164ee2e47be9a0663899b4476 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:08:23 +0000 Subject: [PATCH 180/194] New translations cachet.php (German) --- resources/lang/de-DE/cachet.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/lang/de-DE/cachet.php b/resources/lang/de-DE/cachet.php index 56530516..51b0c06c 100644 --- a/resources/lang/de-DE/cachet.php +++ b/resources/lang/de-DE/cachet.php @@ -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.', From 0ec36e454729fd21ce8011f34e2952bbc2284263 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:08:24 +0000 Subject: [PATCH 181/194] New translations dashboard.php (German) --- resources/lang/de-DE/dashboard.php | 36 +++++++++++++++++++----------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/resources/lang/de-DE/dashboard.php b/resources/lang/de-DE/dashboard.php index 337fa97f..b61e6489 100644 --- a/resources/lang/de-DE/dashboard.php +++ b/resources/lang/de-DE/dashboard.php @@ -21,7 +21,20 @@ return [ 'logged' => '{0} Es gibt keine Ereignisse, gute Arbeit.|Du hast ein Ereignis gemeldet.|Du hast :count 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 :incident 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.', From 491938fce86668cf05b89e262c5b8c8461a29811 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:08:25 +0000 Subject: [PATCH 182/194] New translations forms.php (German) --- resources/lang/de-DE/forms.php | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/resources/lang/de-DE/forms.php b/resources/lang/de-DE/forms.php index 9d0a4fc1..7e431d25 100644 --- a/resources/lang/de-DE/forms.php +++ b/resources/lang/de-DE/forms.php @@ -151,8 +151,9 @@ 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 .', + '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?', 'skip_subscriber_verification' => 'Verifizierung der Nutzer überspringen? (Warnung, du könntest gespammt werden)', 'automatic_localization' => 'Die Status-Seite automatisch auf die Sprache deiner Besucher anpassen?', @@ -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', From 1de7e8c87db231ad11d1e455548ba28b31a6643b Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:08:26 +0000 Subject: [PATCH 183/194] New translations pagination.php (German) --- resources/lang/de-DE/pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/de-DE/pagination.php b/resources/lang/de-DE/pagination.php index 0ee724cf..b52dd5ce 100644 --- a/resources/lang/de-DE/pagination.php +++ b/resources/lang/de-DE/pagination.php @@ -22,7 +22,7 @@ return [ | */ - 'previous' => 'Previous', - 'next' => 'Next', + 'previous' => 'Vorherige', + 'next' => 'Nächste', ]; From 910a2fbf4d5dda414ce285f834fb2c0cc51a4222 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:10:59 +0000 Subject: [PATCH 184/194] New translations dashboard.php (Afrikaans) --- resources/lang/af-ZA/dashboard.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/af-ZA/dashboard.php b/resources/lang/af-ZA/dashboard.php index 6c10e0be..097f2d38 100644 --- a/resources/lang/af-ZA/dashboard.php +++ b/resources/lang/af-ZA/dashboard.php @@ -18,7 +18,7 @@ return [ 'incidents' => [ 'title' => 'Incidents & Schedule', 'incidents' => 'Incidents', - 'logged' => '{0} There are no incidents, good work.|You have logged one incident.|You have reported :count incidents.', + 'logged' => '{0} There are no incidents, good work.|[1] You have logged one incident.|[2,*] You have reported :count incidents.', 'incident-create-template' => 'Create Template', 'incident-templates' => 'Incident Templates', 'updates' => [ @@ -74,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 :count schedules.', + 'logged' => '{0} There are no schedules, good work.|[1] You have logged one schedule.|[2,*] You have reported :count schedules.', 'scheduled_at' => 'Scheduled at :timestamp', 'add' => [ 'title' => 'Add Scheduled Maintenance', From 528517540a81ea8c979b76019b42f8f7180fe785 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:11:12 +0000 Subject: [PATCH 185/194] Apply fixes from StyleCI [ci skip] [skip ci] --- resources/lang/cs-CZ/forms.php | 2 +- resources/lang/da-DK/forms.php | 2 +- resources/lang/de-DE/forms.php | 2 +- resources/lang/en-UD/forms.php | 2 +- resources/lang/es-ES/forms.php | 2 +- resources/lang/fa-IR/forms.php | 2 +- resources/lang/fi-FI/forms.php | 2 +- resources/lang/fr-FR/forms.php | 2 +- resources/lang/hu-HU/forms.php | 2 +- resources/lang/id-ID/forms.php | 2 +- resources/lang/it-IT/forms.php | 2 +- resources/lang/ja-JP/forms.php | 2 +- resources/lang/ko-KR/forms.php | 2 +- resources/lang/nl-NL/forms.php | 2 +- resources/lang/no-NO/forms.php | 2 +- resources/lang/pl-PL/forms.php | 2 +- resources/lang/pt-BR/forms.php | 2 +- resources/lang/pt-PT/forms.php | 2 +- resources/lang/ro-RO/forms.php | 2 +- resources/lang/ru-RU/forms.php | 2 +- resources/lang/sv-SE/forms.php | 2 +- resources/lang/th-TH/forms.php | 2 +- resources/lang/tr-TR/forms.php | 2 +- resources/lang/uk-UA/forms.php | 2 +- resources/lang/vi-VN/forms.php | 2 +- resources/lang/zh-CN/forms.php | 2 +- resources/lang/zh-TW/forms.php | 2 +- 27 files changed, 27 insertions(+), 27 deletions(-) diff --git a/resources/lang/cs-CZ/forms.php b/resources/lang/cs-CZ/forms.php index 6826068d..2c072541 100644 --- a/resources/lang/cs-CZ/forms.php +++ b/resources/lang/cs-CZ/forms.php @@ -153,7 +153,7 @@ return [ '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.", + '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í?', 'skip_subscriber_verification' => 'Přestat ověřovat uživatele? (Pozor na spammery)', 'automatic_localization' => 'Automaticky lokalizovat stránku do jazyka návštěvníka?', diff --git a/resources/lang/da-DK/forms.php b/resources/lang/da-DK/forms.php index 1e418289..21fb98d7 100644 --- a/resources/lang/da-DK/forms.php +++ b/resources/lang/da-DK/forms.php @@ -153,7 +153,7 @@ return [ '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.", + 'banner-help' => 'Det anbefales ikke at uploade billeder bredere end 930px.', 'subscribers' => 'Tillad folk at tilmelde sig email underretninger?', '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?', diff --git a/resources/lang/de-DE/forms.php b/resources/lang/de-DE/forms.php index 7e431d25..fffce276 100644 --- a/resources/lang/de-DE/forms.php +++ b/resources/lang/de-DE/forms.php @@ -153,7 +153,7 @@ return [ '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 .", + '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?', 'skip_subscriber_verification' => 'Verifizierung der Nutzer überspringen? (Warnung, du könntest gespammt werden)', 'automatic_localization' => 'Die Status-Seite automatisch auf die Sprache deiner Besucher anpassen?', diff --git a/resources/lang/en-UD/forms.php b/resources/lang/en-UD/forms.php index 7966a9ff..eef3e288 100644 --- a/resources/lang/en-UD/forms.php +++ b/resources/lang/en-UD/forms.php @@ -153,7 +153,7 @@ return [ 'days-of-incidents' => 'crwdns1194:0crwdne1194:0', 'time_before_refresh' => 'crwdns1422:0crwdne1422:0', 'banner' => 'crwdns1195:0crwdne1195:0', - 'banner-help' => "crwdns1196:0crwdne1196:0", + 'banner-help' => 'crwdns1196:0crwdne1196:0', 'subscribers' => 'crwdns1197:0crwdne1197:0', 'skip_subscriber_verification' => 'crwdns1198:0crwdne1198:0', 'automatic_localization' => 'crwdns1199:0crwdne1199:0', diff --git a/resources/lang/es-ES/forms.php b/resources/lang/es-ES/forms.php index 6c1d2e6f..ec476118 100644 --- a/resources/lang/es-ES/forms.php +++ b/resources/lang/es-ES/forms.php @@ -153,7 +153,7 @@ return [ '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 .", + '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?', 'skip_subscriber_verification' => '¿Omitir verificación de usuarios? (Advertencia, podrías ser spammeado)', 'automatic_localization' => '¿Traducir automáticamente la página de estado según el lenguaje del visitante?', diff --git a/resources/lang/fa-IR/forms.php b/resources/lang/fa-IR/forms.php index ce6bede7..95acb2e3 100644 --- a/resources/lang/fa-IR/forms.php +++ b/resources/lang/fa-IR/forms.php @@ -153,7 +153,7 @@ return [ 'days-of-incidents' => 'چند روز از رویداد‌ها نمایش داده شوند؟', 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => 'تصویر بنر', - 'banner-help' => "پیشنهاد می‌شود که شما تصاویری با پهنای بیشتر از 930px آپلود نکنید.", + 'banner-help' => 'پیشنهاد می‌شود که شما تصاویری با پهنای بیشتر از 930px آپلود نکنید.', 'subscribers' => 'آیا به کاربران اجازه ثبت‌‌نام برای اعلان‌های ایمیلی داده شود؟', 'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)', 'automatic_localization' => 'به صورت خودکار صفحه وضعیت به زبان مشاهده‌کنندگان تغییر زبان دهد؟', diff --git a/resources/lang/fi-FI/forms.php b/resources/lang/fi-FI/forms.php index cdc3562b..13c534fb 100644 --- a/resources/lang/fi-FI/forms.php +++ b/resources/lang/fi-FI/forms.php @@ -153,7 +153,7 @@ return [ '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.", + 'banner-help' => 'On suositeltavaa, ettet lataa yli 930px leveitä kuvia.', 'subscribers' => 'Salli käyttäjien tilata sähköpostitilaukset?', 'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)', 'automatic_localization' => 'Lokalisoidaanko statussivu automaattisesti kävijän kielen mukaan?', diff --git a/resources/lang/fr-FR/forms.php b/resources/lang/fr-FR/forms.php index 61e301cd..8caab149 100644 --- a/resources/lang/fr-FR/forms.php +++ b/resources/lang/fr-FR/forms.php @@ -153,7 +153,7 @@ return [ '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 .", + '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 ?', 'skip_subscriber_verification' => 'Ne pas vérifier les utilisateurs ? (Attention, vous pourriez être spammé)', 'automatic_localization' => 'Traduire automatiquement votre page de statut dans la langue du visiteur ?', diff --git a/resources/lang/hu-HU/forms.php b/resources/lang/hu-HU/forms.php index 65f27438..540b02df 100644 --- a/resources/lang/hu-HU/forms.php +++ b/resources/lang/hu-HU/forms.php @@ -153,7 +153,7 @@ return [ '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.", + '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' => '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?', diff --git a/resources/lang/id-ID/forms.php b/resources/lang/id-ID/forms.php index e8de303d..1556dd1d 100644 --- a/resources/lang/id-ID/forms.php +++ b/resources/lang/id-ID/forms.php @@ -153,7 +153,7 @@ return [ '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.", + 'banner-help' => 'Disarankan gambar yang anda unggah tidak lebih lebar dari 930px.', 'subscribers' => 'Bolehkan pengunjung mendaftar notifikasi email?', 'skip_subscriber_verification' => 'Lewatkan verifikasi user? (Hati-hati, anda bisa kena spam)', 'automatic_localization' => 'Otomatis ganti bahasa halaman status anda ke bahasa pengunjung?', diff --git a/resources/lang/it-IT/forms.php b/resources/lang/it-IT/forms.php index e64250e4..25e3a4e7 100644 --- a/resources/lang/it-IT/forms.php +++ b/resources/lang/it-IT/forms.php @@ -153,7 +153,7 @@ return [ '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.", + 'banner-help' => 'È consigliabile caricare file larghi non più di 930px.', 'subscribers' => 'Permettere alle persone di iscriversi alle notifiche via email?', 'skip_subscriber_verification' => 'Skip verifica degli utenti? (Attenzione, potreste ricevere spam)', 'automatic_localization' => 'Tradurre automaticamente la tua pagina di stato nella lingua del visitatore?', diff --git a/resources/lang/ja-JP/forms.php b/resources/lang/ja-JP/forms.php index f4bbf16e..db471de0 100644 --- a/resources/lang/ja-JP/forms.php +++ b/resources/lang/ja-JP/forms.php @@ -153,7 +153,7 @@ return [ 'days-of-incidents' => '何日間のインシデントを表示しますか?', 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => 'バナー画像', - 'banner-help' => "横幅が930px以内の画像をアップロードしてください。", + 'banner-help' => '横幅が930px以内の画像をアップロードしてください。', 'subscribers' => 'Allow people to signup to email notifications?', '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?', diff --git a/resources/lang/ko-KR/forms.php b/resources/lang/ko-KR/forms.php index 58641f91..b55a3169 100644 --- a/resources/lang/ko-KR/forms.php +++ b/resources/lang/ko-KR/forms.php @@ -153,7 +153,7 @@ return [ 'days-of-incidents' => '몇 일 동안 사건을 표시하시겠습니까?', 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => '배너 이미지', - 'banner-help' => "가로가 930 픽셀보다 작은 이미지를 업로드 하는 것을 권장합니다.", + 'banner-help' => '가로가 930 픽셀보다 작은 이미지를 업로드 하는 것을 권장합니다.', 'subscribers' => '이메일 알림을 받기 위한 회원가입 허용', '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?', diff --git a/resources/lang/nl-NL/forms.php b/resources/lang/nl-NL/forms.php index 4f5c3a43..e139aa0c 100644 --- a/resources/lang/nl-NL/forms.php +++ b/resources/lang/nl-NL/forms.php @@ -153,7 +153,7 @@ return [ '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.", + '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?', 'skip_subscriber_verification' => 'Verificatie van gebruikers overslaan? (Let op, je kunt gespamd worden)', 'automatic_localization' => 'Stel de taal van de bezoeker in als standaardtaal voor deze bezoeker?', diff --git a/resources/lang/no-NO/forms.php b/resources/lang/no-NO/forms.php index 5619b9f2..7077e5a9 100644 --- a/resources/lang/no-NO/forms.php +++ b/resources/lang/no-NO/forms.php @@ -153,7 +153,7 @@ return [ 'days-of-incidents' => 'Hvor mange dagers hendelser vises?', 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => 'Bannerbilde', - 'banner-help' => "Det anbefales at du ikke laster opp bilder bredere enn 930 piksler.", + 'banner-help' => 'Det anbefales at du ikke laster opp bilder bredere enn 930 piksler.', 'subscribers' => 'Tillatt brukere å melde seg inn for epostvarslinger?', 'skip_subscriber_verification' => 'Hopp over kontroll av brukere? (Vær advart, du kunne bli spammet)', 'automatic_localization' => 'Automatisk lokaliser statussiden til besøkendes språk?', diff --git a/resources/lang/pl-PL/forms.php b/resources/lang/pl-PL/forms.php index e72098fa..fe15f800 100644 --- a/resources/lang/pl-PL/forms.php +++ b/resources/lang/pl-PL/forms.php @@ -153,7 +153,7 @@ return [ 'days-of-incidents' => 'Z ilu ostatnich dni pokazywać incydenty?', 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => 'Baner', - 'banner-help' => "Zaleca się, aby przesyłać pliki nie większe niż 930px szerokości.", + 'banner-help' => 'Zaleca się, aby przesyłać pliki nie większe niż 930px szerokości.', 'subscribers' => 'Czy zezwolić użytkownikom na subskrypcje e-mail w celu otrzymywania powiadomień?', 'skip_subscriber_verification' => 'Pominąć weryfikację użytkowników? (Ostrzeżenie: możesz otrzymać spam)', 'automatic_localization' => 'Automatycznie tłumaczyć twoją stronę statusu na język odwiedzającego?', diff --git a/resources/lang/pt-BR/forms.php b/resources/lang/pt-BR/forms.php index de5a7d74..85150f5c 100644 --- a/resources/lang/pt-BR/forms.php +++ b/resources/lang/pt-BR/forms.php @@ -153,7 +153,7 @@ return [ 'days-of-incidents' => 'Quantos dias de incidentes para mostrar?', 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => 'Imagem do banner', - 'banner-help' => "É recomendável que você faça upload de arquivos menores que 930px .", + 'banner-help' => 'É recomendável que você faça upload de arquivos menores que 930px .', 'subscribers' => 'Permitir que outras pessoas se cadastrem para notificações via e-mail?', 'skip_subscriber_verification' => 'Ignorar verificação de usuários? (Cuidado, você pode sofrer com spams)', 'automatic_localization' => 'Localizar sua página de status de acordo com o idioma do visitante automaticamente?', diff --git a/resources/lang/pt-PT/forms.php b/resources/lang/pt-PT/forms.php index 6ae02095..01773dba 100644 --- a/resources/lang/pt-PT/forms.php +++ b/resources/lang/pt-PT/forms.php @@ -153,7 +153,7 @@ return [ 'days-of-incidents' => 'Quantos dias de incidentes para mostrar?', 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => 'Imagem de Banner', - 'banner-help' => "É recomendável que você faça upload de arquivos menores que 930px .", + 'banner-help' => 'É recomendável que você faça upload de arquivos menores que 930px .', 'subscribers' => 'Permitir que as pessoas subscrevam as notificações?', 'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)', 'automatic_localization' => 'Mostrar automaticamente a tradução conforme a língua do browser do visitante?', diff --git a/resources/lang/ro-RO/forms.php b/resources/lang/ro-RO/forms.php index 8548db5a..f886152b 100644 --- a/resources/lang/ro-RO/forms.php +++ b/resources/lang/ro-RO/forms.php @@ -153,7 +153,7 @@ return [ 'days-of-incidents' => 'Câte zile de incidente vreţi să fie afişate?', 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => 'Imagine Banner', - 'banner-help' => "Este recomandat să încărcaţi fişiere cu lăţimea nu mai mare de 930px.", + 'banner-help' => 'Este recomandat să încărcaţi fişiere cu lăţimea nu mai mare de 930px.', 'subscribers' => 'Permiteţi vizitatorilor să se aboneze la notificări prin email?', 'skip_subscriber_verification' => 'Omite verificarea utilizatorilor? (Avertizare, poți primi spam)', 'automatic_localization' => 'Schimbaţi automat limba pentru pagina de stare în funcţie de limba vizitatorului?', diff --git a/resources/lang/ru-RU/forms.php b/resources/lang/ru-RU/forms.php index e95433e0..3e9d946e 100644 --- a/resources/lang/ru-RU/forms.php +++ b/resources/lang/ru-RU/forms.php @@ -153,7 +153,7 @@ return [ 'days-of-incidents' => 'За сколько дней показывать инциденты?', 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => 'Картинка-баннер', - 'banner-help' => "Рекомендуется загружать картинки не больше 930 пикс. в ширину.", + 'banner-help' => 'Рекомендуется загружать картинки не больше 930 пикс. в ширину.', 'subscribers' => 'Разрешить посетителям подписываться на email-уведомления?', 'skip_subscriber_verification' => 'Пропустить проверку посетителей? (Будьте осторожны, возможен спам)', 'automatic_localization' => 'Автоматически переводить вашу статусную страницу на язык посетителя?', diff --git a/resources/lang/sv-SE/forms.php b/resources/lang/sv-SE/forms.php index dc51390b..1c3a4185 100644 --- a/resources/lang/sv-SE/forms.php +++ b/resources/lang/sv-SE/forms.php @@ -153,7 +153,7 @@ return [ 'days-of-incidents' => 'Hur många dagar av händelser ska visas?', 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => 'Bannerbild', - 'banner-help' => "Vi rekommenderar att du inte laddar upp bilder som är bredare än 930 px.", + 'banner-help' => 'Vi rekommenderar att du inte laddar upp bilder som är bredare än 930 px.', 'subscribers' => 'Tillåt att registrera sig för notifikationer via e-post?', '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?', diff --git a/resources/lang/th-TH/forms.php b/resources/lang/th-TH/forms.php index fac284cf..02e0e6da 100644 --- a/resources/lang/th-TH/forms.php +++ b/resources/lang/th-TH/forms.php @@ -153,7 +153,7 @@ return [ 'days-of-incidents' => 'แสดงวันที่มีเหตุการณ์เกิดขึ้นกี่วัน?', 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => 'ภาพแบนเนอร์', - 'banner-help' => "ขอแนะนำให้อัปโหลดไฟล์ที่ความกว้างไม่เกิน 930px", + 'banner-help' => 'ขอแนะนำให้อัปโหลดไฟล์ที่ความกว้างไม่เกิน 930px', 'subscribers' => 'เปิดให้ทุกคนสามารถลงทะเบียนรับอีเมลแจ้งเตือน?', 'skip_subscriber_verification' => 'ข้ามการยืนยันตันตนผู้ใช้ (ระวัง! คุณอาจถูกสแปม)', 'automatic_localization' => 'เปลี่ยนภาษาของหน้าสถานะตามภาษาของผู้เข้าชมอัตโนมัติ', diff --git a/resources/lang/tr-TR/forms.php b/resources/lang/tr-TR/forms.php index 86a2e80c..a1ef1080 100644 --- a/resources/lang/tr-TR/forms.php +++ b/resources/lang/tr-TR/forms.php @@ -153,7 +153,7 @@ return [ 'days-of-incidents' => 'Kaç gün olay gösterebilirim?', 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => 'Afiş Resmi', - 'banner-help' => "930 pikselden daha büyük olmayan dosyaları yüklemeniz önerilir.", + 'banner-help' => '930 pikselden daha büyük olmayan dosyaları yüklemeniz önerilir.', 'subscribers' => 'Kullanıcıların e-posta bildirimlerine kaydolmasına izin verilsin mi?', 'skip_subscriber_verification' => 'Kullanıcıların doğrulama işlemini atla? (Dikkat et, spam gönderildi)', 'automatic_localization' => 'Durum sayfanızı otomatik olarak ziyaretçinin diline yerelleştirir misin?', diff --git a/resources/lang/uk-UA/forms.php b/resources/lang/uk-UA/forms.php index 2d0dec15..55d068ae 100644 --- a/resources/lang/uk-UA/forms.php +++ b/resources/lang/uk-UA/forms.php @@ -153,7 +153,7 @@ return [ 'days-of-incidents' => 'How many days of incidents to show?', 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => 'Зображення банеру', - 'banner-help' => "Радимо завантажувати файли не більше, ніж 930 пiкселей у ширину.", + 'banner-help' => 'Радимо завантажувати файли не більше, ніж 930 пiкселей у ширину.', 'subscribers' => 'Allow people to signup to email notifications?', '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?', diff --git a/resources/lang/vi-VN/forms.php b/resources/lang/vi-VN/forms.php index 1963b779..ef87c601 100644 --- a/resources/lang/vi-VN/forms.php +++ b/resources/lang/vi-VN/forms.php @@ -153,7 +153,7 @@ return [ 'days-of-incidents' => 'Sự cố này sẽ hiển thị mấy ngày ?', 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => 'Banner Image', - 'banner-help' => "Bạn nên upload ảnh có chiều rộng lớn hơn 930px", + 'banner-help' => 'Bạn nên upload ảnh có chiều rộng lớn hơn 930px', 'subscribers' => 'Allow people to signup to email notifications?', '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?', diff --git a/resources/lang/zh-CN/forms.php b/resources/lang/zh-CN/forms.php index 85b79181..5cd45d24 100644 --- a/resources/lang/zh-CN/forms.php +++ b/resources/lang/zh-CN/forms.php @@ -153,7 +153,7 @@ return [ 'days-of-incidents' => '显示多少天的故障?', 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => '横幅图像', - 'banner-help' => "建议上传文件宽度不大于 930 像素。", + 'banner-help' => '建议上传文件宽度不大于 930 像素。', 'subscribers' => '允许用户订阅邮件通知', 'skip_subscriber_verification' => '是否跳过用户邮件验证?(小心,这可能会被滥用)', 'automatic_localization' => '根据访客的系统语言自动本地化状态页面', diff --git a/resources/lang/zh-TW/forms.php b/resources/lang/zh-TW/forms.php index ab7ac7b5..4fed0bd6 100644 --- a/resources/lang/zh-TW/forms.php +++ b/resources/lang/zh-TW/forms.php @@ -153,7 +153,7 @@ return [ 'days-of-incidents' => '顯示多少天前的事件?', 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => 'Banner Image', - 'banner-help' => "橫幅寬度建議少於 930px 。", + 'banner-help' => '橫幅寬度建議少於 930px 。', 'subscribers' => '允許用戶訂閱郵件通知嗎?', '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?', From f618dd666c650affb590ba164aca15d0777ac015 Mon Sep 17 00:00:00 2001 From: Gabriel Caruso Date: Thu, 7 Dec 2017 17:49:14 -0200 Subject: [PATCH 186/194] Use assertClassNotHasAttribute --- tests/Models/InviteTest.php | 2 +- tests/Models/SettingTest.php | 2 +- tests/Models/TagTest.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Models/InviteTest.php b/tests/Models/InviteTest.php index 7d590a6a..f270eeb4 100644 --- a/tests/Models/InviteTest.php +++ b/tests/Models/InviteTest.php @@ -23,6 +23,6 @@ class InviteTest extends AbstractTestCase { public function testValidation() { - $this->assertFalse(property_exists(new Invite(), 'rules')); + $this->assertClassNotHasAttribute('rules', Invite::class); } } diff --git a/tests/Models/SettingTest.php b/tests/Models/SettingTest.php index 5d88b3ac..bedeba55 100644 --- a/tests/Models/SettingTest.php +++ b/tests/Models/SettingTest.php @@ -23,6 +23,6 @@ class SettingTest extends AbstractTestCase { public function testValidation() { - $this->assertFalse(property_exists(new Setting(), 'rules')); + $this->assertClassNotHasAttribute('rules', Setting::class); } } diff --git a/tests/Models/TagTest.php b/tests/Models/TagTest.php index 2a07d52c..f86a3697 100644 --- a/tests/Models/TagTest.php +++ b/tests/Models/TagTest.php @@ -23,6 +23,6 @@ class TagTest extends AbstractTestCase { public function testValidation() { - $this->assertFalse(property_exists(new Tag(), 'rules')); + $this->assertClassNotHasAttribute('rules', Tag::class); } } From 65df1ca4300bfb6efb537ba93fbf282bb2c9102c Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:20:30 +0000 Subject: [PATCH 187/194] New translations forms.php (Danish) --- resources/lang/da-DK/forms.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lang/da-DK/forms.php b/resources/lang/da-DK/forms.php index 21fb98d7..1e418289 100644 --- a/resources/lang/da-DK/forms.php +++ b/resources/lang/da-DK/forms.php @@ -153,7 +153,7 @@ return [ '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.', + 'banner-help' => "Det anbefales ikke at uploade billeder bredere end 930px.", 'subscribers' => 'Tillad folk at tilmelde sig email underretninger?', '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?', From 9beafd8577de17e8a22d2588444c62404d12004a Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:20:36 +0000 Subject: [PATCH 188/194] New translations forms.php (Czech) --- resources/lang/cs-CZ/forms.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lang/cs-CZ/forms.php b/resources/lang/cs-CZ/forms.php index 2c072541..6826068d 100644 --- a/resources/lang/cs-CZ/forms.php +++ b/resources/lang/cs-CZ/forms.php @@ -153,7 +153,7 @@ return [ '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.', + '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í?', 'skip_subscriber_verification' => 'Přestat ověřovat uživatele? (Pozor na spammery)', 'automatic_localization' => 'Automaticky lokalizovat stránku do jazyka návštěvníka?', From ae8b4fcf86ba627e91a554457fbdff240bec7bb5 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:20:38 +0000 Subject: [PATCH 189/194] New translations forms.php (Dutch) --- resources/lang/nl-NL/forms.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lang/nl-NL/forms.php b/resources/lang/nl-NL/forms.php index e139aa0c..4f5c3a43 100644 --- a/resources/lang/nl-NL/forms.php +++ b/resources/lang/nl-NL/forms.php @@ -153,7 +153,7 @@ return [ '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.', + '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?', 'skip_subscriber_verification' => 'Verificatie van gebruikers overslaan? (Let op, je kunt gespamd worden)', 'automatic_localization' => 'Stel de taal van de bezoeker in als standaardtaal voor deze bezoeker?', From cc82881507cc497128f8219cb38d65867ecc1853 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:20:40 +0000 Subject: [PATCH 190/194] New translations forms.php (Finnish) --- resources/lang/fi-FI/forms.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lang/fi-FI/forms.php b/resources/lang/fi-FI/forms.php index 13c534fb..cdc3562b 100644 --- a/resources/lang/fi-FI/forms.php +++ b/resources/lang/fi-FI/forms.php @@ -153,7 +153,7 @@ return [ '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.', + 'banner-help' => "On suositeltavaa, ettet lataa yli 930px leveitä kuvia.", 'subscribers' => 'Salli käyttäjien tilata sähköpostitilaukset?', 'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)', 'automatic_localization' => 'Lokalisoidaanko statussivu automaattisesti kävijän kielen mukaan?', From 055f5ee5d43f593daf3cc14c2d6c91e15ce6f9ef Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:20:45 +0000 Subject: [PATCH 191/194] Apply fixes from StyleCI [ci skip] [skip ci] --- resources/lang/cs-CZ/forms.php | 2 +- resources/lang/da-DK/forms.php | 2 +- resources/lang/fi-FI/forms.php | 2 +- resources/lang/nl-NL/forms.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/lang/cs-CZ/forms.php b/resources/lang/cs-CZ/forms.php index 6826068d..2c072541 100644 --- a/resources/lang/cs-CZ/forms.php +++ b/resources/lang/cs-CZ/forms.php @@ -153,7 +153,7 @@ return [ '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.", + '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í?', 'skip_subscriber_verification' => 'Přestat ověřovat uživatele? (Pozor na spammery)', 'automatic_localization' => 'Automaticky lokalizovat stránku do jazyka návštěvníka?', diff --git a/resources/lang/da-DK/forms.php b/resources/lang/da-DK/forms.php index 1e418289..21fb98d7 100644 --- a/resources/lang/da-DK/forms.php +++ b/resources/lang/da-DK/forms.php @@ -153,7 +153,7 @@ return [ '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.", + 'banner-help' => 'Det anbefales ikke at uploade billeder bredere end 930px.', 'subscribers' => 'Tillad folk at tilmelde sig email underretninger?', '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?', diff --git a/resources/lang/fi-FI/forms.php b/resources/lang/fi-FI/forms.php index cdc3562b..13c534fb 100644 --- a/resources/lang/fi-FI/forms.php +++ b/resources/lang/fi-FI/forms.php @@ -153,7 +153,7 @@ return [ '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.", + 'banner-help' => 'On suositeltavaa, ettet lataa yli 930px leveitä kuvia.', 'subscribers' => 'Salli käyttäjien tilata sähköpostitilaukset?', 'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)', 'automatic_localization' => 'Lokalisoidaanko statussivu automaattisesti kävijän kielen mukaan?', diff --git a/resources/lang/nl-NL/forms.php b/resources/lang/nl-NL/forms.php index 4f5c3a43..e139aa0c 100644 --- a/resources/lang/nl-NL/forms.php +++ b/resources/lang/nl-NL/forms.php @@ -153,7 +153,7 @@ return [ '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.", + '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?', 'skip_subscriber_verification' => 'Verificatie van gebruikers overslaan? (Let op, je kunt gespamd worden)', 'automatic_localization' => 'Stel de taal van de bezoeker in als standaardtaal voor deze bezoeker?', From 5e42bae5861cef1bc8c3cc5ab105f2ac08a3a139 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:20:55 +0000 Subject: [PATCH 192/194] New translations forms.php (Chinese Traditional) --- resources/lang/zh-TW/forms.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lang/zh-TW/forms.php b/resources/lang/zh-TW/forms.php index 4fed0bd6..ab7ac7b5 100644 --- a/resources/lang/zh-TW/forms.php +++ b/resources/lang/zh-TW/forms.php @@ -153,7 +153,7 @@ return [ 'days-of-incidents' => '顯示多少天前的事件?', 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => 'Banner Image', - 'banner-help' => '橫幅寬度建議少於 930px 。', + 'banner-help' => "橫幅寬度建議少於 930px 。", 'subscribers' => '允許用戶訂閱郵件通知嗎?', '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?', From 1c028d64f7378a0910948a5b47f352e19fd9e504 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:20:58 +0000 Subject: [PATCH 193/194] New translations forms.php (Chinese Simplified) --- resources/lang/zh-CN/forms.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lang/zh-CN/forms.php b/resources/lang/zh-CN/forms.php index 5cd45d24..85b79181 100644 --- a/resources/lang/zh-CN/forms.php +++ b/resources/lang/zh-CN/forms.php @@ -153,7 +153,7 @@ return [ 'days-of-incidents' => '显示多少天的故障?', 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => '横幅图像', - 'banner-help' => '建议上传文件宽度不大于 930 像素。', + 'banner-help' => "建议上传文件宽度不大于 930 像素。", 'subscribers' => '允许用户订阅邮件通知', 'skip_subscriber_verification' => '是否跳过用户邮件验证?(小心,这可能会被滥用)', 'automatic_localization' => '根据访客的系统语言自动本地化状态页面', From f550492db038539d53c41b7b750df2f82f6433c4 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 16 Jan 2018 14:21:05 +0000 Subject: [PATCH 194/194] Apply fixes from StyleCI [ci skip] [skip ci] --- resources/lang/zh-CN/forms.php | 2 +- resources/lang/zh-TW/forms.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/zh-CN/forms.php b/resources/lang/zh-CN/forms.php index 85b79181..5cd45d24 100644 --- a/resources/lang/zh-CN/forms.php +++ b/resources/lang/zh-CN/forms.php @@ -153,7 +153,7 @@ return [ 'days-of-incidents' => '显示多少天的故障?', 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => '横幅图像', - 'banner-help' => "建议上传文件宽度不大于 930 像素。", + 'banner-help' => '建议上传文件宽度不大于 930 像素。', 'subscribers' => '允许用户订阅邮件通知', 'skip_subscriber_verification' => '是否跳过用户邮件验证?(小心,这可能会被滥用)', 'automatic_localization' => '根据访客的系统语言自动本地化状态页面', diff --git a/resources/lang/zh-TW/forms.php b/resources/lang/zh-TW/forms.php index ab7ac7b5..4fed0bd6 100644 --- a/resources/lang/zh-TW/forms.php +++ b/resources/lang/zh-TW/forms.php @@ -153,7 +153,7 @@ return [ 'days-of-incidents' => '顯示多少天前的事件?', 'time_before_refresh' => 'Status page refresh rate (in seconds).', 'banner' => 'Banner Image', - 'banner-help' => "橫幅寬度建議少於 930px 。", + 'banner-help' => '橫幅寬度建議少於 930px 。', 'subscribers' => '允許用戶訂閱郵件通知嗎?', '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?',