Merge branch '2.1' into merge

# Conflicts:
#	composer.json
#	composer.lock
This commit is contained in:
Graham Campbell
2016-02-20 21:14:25 +00:00
178 changed files with 2465 additions and 2497 deletions

View File

@@ -69,7 +69,7 @@ class ReportIncidentCommandHandler
// The incident occurred at a different time. // The incident occurred at a different time.
if ($command->incident_date) { if ($command->incident_date) {
$incidentDate = $this->dates->createNormalized('d/m/Y H:i', $command->incident_date); $incidentDate = $this->dates->create('d/m/Y H:i', $command->incident_date);
$data['created_at'] = $incidentDate; $data['created_at'] = $incidentDate;
$data['updated_at'] = $incidentDate; $data['updated_at'] = $incidentDate;

View File

@@ -46,7 +46,7 @@ class ReportMaintenanceCommandHandler
*/ */
public function handle(ReportMaintenanceCommand $command) public function handle(ReportMaintenanceCommand $command)
{ {
$scheduledAt = $this->dates->createNormalized('d/m/Y H:i', $command->timestamp); $scheduledAt = $this->dates->create('d/m/Y H:i', $command->timestamp);
$maintenanceEvent = Incident::create([ $maintenanceEvent = Incident::create([
'name' => $command->name, 'name' => $command->name,

View File

@@ -59,7 +59,7 @@ class UpdateIncidentCommandHandler
// The incident occurred at a different time. // The incident occurred at a different time.
if ($command->incident_date) { if ($command->incident_date) {
$incidentDate = $this->dates->createNormalized('d/m/Y H:i', $command->incident_date); $incidentDate = $this->dates->create('d/m/Y H:i', $command->incident_date);
$incident->update([ $incident->update([
'created_at' => $incidentDate, 'created_at' => $incidentDate,

View File

@@ -41,7 +41,7 @@ class PgSqlRepository implements MetricInterface
$queryType = 'sum(metric_points.value)'; $queryType = 'sum(metric_points.value)';
} }
$query = DB::select("select {$queryType} as aggregate FROM metrics JOIN metric_points ON metric_points.metric_id = metrics.id WHERE metrics.id = :metric_id AND to_char(metric_points.created_at, 'YYYYMMDDHHMI') = :timestamp GROUP BY to_char(metric_points.created_at, 'HHMI')", [ $query = DB::select("select {$queryType} as aggregate FROM metrics JOIN metric_points ON metric_points.metric_id = metrics.id WHERE metrics.id = :metric_id AND to_char(metric_points.created_at, 'YYYYMMDDHH24MI') = :timestamp GROUP BY to_char(metric_points.created_at, 'HHMI')", [
'metric_id' => $metric->id, 'metric_id' => $metric->id,
'timestamp' => $hourInterval, 'timestamp' => $hourInterval,
]); ]);

View File

@@ -33,8 +33,8 @@ class SqliteRepository implements MetricInterface
$hourInterval = $dateTime->format('YmdHi'); $hourInterval = $dateTime->format('YmdHi');
$points = $metric->points() $points = $metric->points()
->whereRaw('strftime("%Y%m%d%H%i", created_at) = "'.$hourInterval.'"') ->whereRaw('strftime("%Y%m%d%H%M", created_at) = "'.$hourInterval.'"')
->groupBy(DB::raw('strftime("%H%i", created_at)')); ->groupBy(DB::raw('strftime("%H%M", created_at)'));
if (!isset($metric->calc_type) || $metric->calc_type == Metric::CALC_SUM) { if (!isset($metric->calc_type) || $metric->calc_type == Metric::CALC_SUM) {
$value = $points->sum('value'); $value = $points->sum('value');

View File

@@ -26,7 +26,7 @@
], ],
"require": { "require": {
"php": ">=5.5.9", "php": ">=5.5.9",
"laravel/framework": "~5.2.19", "laravel/framework": "~5.2.20",
"alt-three/badger": "^1.0", "alt-three/badger": "^1.0",
"alt-three/bus": "^1.0", "alt-three/bus": "^1.0",
"alt-three/emoji": "^3.0", "alt-three/emoji": "^3.0",

7
resources/lang/af/cachet.php Normal file → Executable file
View File

@@ -22,11 +22,10 @@ return [
// Incidents // Incidents
'incidents' => [ 'incidents' => [
'none' => 'Geen Voorvalle Aangemeld Nie.', 'none' => 'No incidents reported',
'past' => 'Vorige Voorvalle', 'past' => 'Vorige Voorvalle',
'previous_week' => 'Vorige Week', 'previous_week' => 'Vorige Week',
'next_week' => 'Volgende Week', 'next_week' => 'Volgende Week',
'none' => 'Geen Voorvalle Aangemeld Nie.',
'scheduled' => 'Geskeduleerde Instandhouding', 'scheduled' => 'Geskeduleerde Instandhouding',
'scheduled_at' => ', scheduled :timestamp', 'scheduled_at' => ', scheduled :timestamp',
'status' => [ 'status' => [
@@ -124,8 +123,8 @@ return [
'modal' => [ 'modal' => [
'close' => 'Close', 'close' => 'Close',
'subscribe' => [ 'subscribe' => [
'title' => 'Subscribe to component updates?', 'title' => 'Subscribe to component updates',
'body' => 'Enter your email address to subscribe to updates for this component. If you\'re already subscribed, you\'ll receive emails for this component too.', '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.',
'button' => 'Subscribe', 'button' => 'Subscribe',
], ],
], ],

126
resources/lang/af/dashboard.php Normal file → Executable file
View File

@@ -21,14 +21,14 @@ return [
'incident-create-template' => 'Create Template', 'incident-create-template' => 'Create Template',
'incident-templates' => 'Incident Templates', 'incident-templates' => 'Incident Templates',
'add' => [ 'add' => [
'title' => 'Add an Incident', 'title' => 'Report an incident',
'success' => 'Incident added.', 'success' => 'Incident reported.',
'failure' => 'Something went wrong with the incident.', 'failure' => 'The incident could not be reported. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit an Incident', 'title' => 'Edit an incident',
'success' => 'Incident updated.', 'success' => 'Incident updated.',
'failure' => 'Something went wrong with the incident.', 'failure' => 'The incident could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The incident has been deleted and will not show on your status page.', 'success' => 'The incident has been deleted and will not show on your status page.',
@@ -39,19 +39,19 @@ return [
'templates' => [ 'templates' => [
'title' => 'Incident Templates', 'title' => 'Incident Templates',
'add' => [ 'add' => [
'title' => 'Create an Incident Template', 'title' => 'Create an incident template',
'message' => 'You should add an Incident Template.', 'message' => 'You should add an incident template.',
'success' => 'Template created.', 'success' => 'The incdent template has been created!',
'failure' => 'Something went wrong with the incident template.', 'failure' => 'The incident template could not be created. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit Template', 'title' => 'Edit Template',
'success' => 'Template has been updated!', 'success' => 'The incdent template has been updated!',
'failure' => 'Something went wrong updating the incident template', 'failure' => 'The incident template could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The tmplate has been deleted.', 'success' => 'The incident template has been deleted.',
'failure' => 'The template could not be deleted. Please try again.', 'failure' => 'The incident template could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -62,18 +62,18 @@ return [
'logged' => '{0} There are no schedules, good work.|You have logged one schedule.|You have reported <strong>:count</strong> schedules.', 'logged' => '{0} There are no schedules, good work.|You have logged one schedule.|You have reported <strong>:count</strong> schedules.',
'scheduled_at' => 'Scheduled at :timestamp', 'scheduled_at' => 'Scheduled at :timestamp',
'add' => [ 'add' => [
'title' => 'Add Scheduled Maintenance', 'title' => 'Add scheduled maintenance',
'success' => 'Schedule added.', 'success' => 'Scheduled maintenance has been reported!',
'failure' => 'Something went wrong adding the schedule.', 'failure' => 'The scheduled maintenance could not be reported. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit Scheduled Maintenance', 'title' => 'Edit scheduled maintenance',
'success' => 'Schedule has been updated!', 'success' => 'Scheduled maintenance has been edited!',
'failure' => 'Something went wrong editing the schedule.', 'failure' => 'The scheduled maintenance could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The schedule has been deleted and will not show on your status page.', 'success' => 'Scheduled maintenance has been deleted!',
'failure' => 'The schedule could not be deleted. Please try again.', 'failure' => 'The scheduled maintenance could not be deleted. Please try again.',
], ],
], ],
@@ -83,19 +83,19 @@ return [
'component_statuses' => 'Component Statuses', 'component_statuses' => 'Component Statuses',
'listed_group' => 'Grouped under :name', 'listed_group' => 'Grouped under :name',
'add' => [ 'add' => [
'title' => 'Add a Component', 'title' => 'Add a component',
'message' => 'You should add a component.', 'message' => 'You should add a component.',
'success' => 'Component created.', 'success' => 'Component has been added!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The component could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Component', 'title' => 'Edit a component',
'success' => 'Component updated.', 'success' => 'Component has been updated!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The component could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component deleted.', 'success' => 'The component has been deleted!',
'failure' => 'The Component could not be deleted. Please try again.', 'failure' => 'The component could not be deleted. Please try again.',
], ],
// Component groups // Component groups
@@ -103,18 +103,18 @@ return [
'groups' => 'Component group|Component groups', 'groups' => 'Component group|Component groups',
'no_components' => 'You should add a component group.', 'no_components' => 'You should add a component group.',
'add' => [ 'add' => [
'title' => 'Add a Component Group', 'title' => 'Add a component group',
'success' => 'Component group added.', 'success' => 'Component group has been added!',
'failure' => 'Something went wrong with the component group.', 'failure' => 'The component group could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Component Group', 'title' => 'Edit a component group',
'success' => 'Component group updated.', 'success' => 'Component group has been edited!',
'failure' => 'Something went wrong with the component group.', 'failure' => 'The component group could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component Group deleted.', 'success' => 'Component group has been deleted!',
'failure' => 'The Component Group could not be deleted. Please try again.', 'failure' => 'The component group could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -123,18 +123,18 @@ return [
'metrics' => [ 'metrics' => [
'metrics' => 'Metrics', 'metrics' => 'Metrics',
'add' => [ 'add' => [
'title' => 'Create a Metric', 'title' => 'Create a metric',
'message' => 'You should add a Metric.', 'message' => 'You should add a metric.',
'success' => 'Metric created.', 'success' => 'Metric has been added!',
'failure' => 'Something went wrong with the metric.', 'failure' => 'The metric could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Metric', 'title' => 'Edit a metric',
'success' => 'Metric updated.', 'success' => 'Metric has been updated!',
'failure' => 'Something went wrong with the metric.', 'failure' => 'The metric could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The metric has been deleted and will not show on your status page.', '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.', 'failure' => 'The metric could not be deleted. Please try again.',
], ],
], ],
@@ -143,16 +143,16 @@ return [
'subscribers' => 'Subscribers', 'subscribers' => 'Subscribers',
'description' => 'Subscribers will receive email updates when incidents are created.', 'description' => 'Subscribers will receive email updates when incidents are created.',
'verified' => 'Verified', 'verified' => 'Verified',
'not_verified' => 'Not Verified', 'not_verified' => 'Not verified',
'add' => [ 'add' => [
'title' => 'Add a New Subscriber', 'title' => 'Add a new subscriber',
'success' => 'Subscriber added.', 'success' => 'Subscriber has been added!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The subscriber could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Update Subscriber', 'title' => 'Update subscriber',
'success' => 'Subscriber updated.', 'success' => 'Subscriber has been updated!',
'failure' => 'Something went wrong when updating.', 'failure' => 'The subscriber could not be updated. Please try again.',
], ],
], ],
@@ -163,23 +163,23 @@ return [
'profile' => 'Profile', 'profile' => 'Profile',
'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.', 'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.',
'add' => [ 'add' => [
'title' => 'Add a New Team Member', 'title' => 'Add a new team member',
'success' => 'Team member added.', 'success' => 'Team member has been added!',
'failure' => 'Something went wrong with the user.', 'failure' => 'The team member could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Update Profile', 'title' => 'Update profile',
'success' => 'Profile updated.', 'success' => 'Team member has been updated!',
'failure' => 'Something went wrong when updating.', 'failure' => 'The team member could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'User deleted.', 'success' => 'Team member has been deleted and will no longer have access to the dashboard!',
'failure' => 'Something went wrong when deleting this user.', 'failure' => 'The team member could not be added. Please try again.',
], ],
'invite' => [ 'invite' => [
'title' => 'Invite a New Team Member', 'title' => 'Invite a new team member',
'success' => 'The users invited.', 'success' => 'An invite has been sent',
'failure' => 'Something went wrong with the invite.', 'failure' => 'The invite could not be sent. Please try again.',
], ],
], ],

50
resources/lang/af/forms.php Normal file → Executable file
View File

@@ -45,8 +45,8 @@ return [
'message-help' => 'You may also use Markdown.', 'message-help' => 'You may also use Markdown.',
'scheduled_at' => 'When to schedule the maintenance for?', 'scheduled_at' => 'When to schedule the maintenance for?',
'incident_time' => 'When did this incident occur?', 'incident_time' => 'When did this incident occur?',
'notify_subscribers' => 'Notify Subscribers?', 'notify_subscribers' => 'Notify subscribers?',
'visibility' => 'Incident Visibility', 'visibility' => 'Incident visibility',
'public' => 'Viewable by public', 'public' => 'Viewable by public',
'logged_in_only' => 'Only visible to logged in users', 'logged_in_only' => 'Only visible to logged in users',
'templates' => [ 'templates' => [
@@ -80,12 +80,12 @@ return [
'description' => 'Description', 'description' => 'Description',
'description-help' => 'You may also use Markdown.', 'description-help' => 'You may also use Markdown.',
'display-chart' => 'Display chart on status page?', 'display-chart' => 'Display chart on status page?',
'default-value' => 'Default Value', 'default-value' => 'Default value',
'calc_type' => 'Calculation of Metrics', 'calc_type' => 'Calculation of metrics',
'type_sum' => 'Sum', 'type_sum' => 'Sum',
'type_avg' => 'Average', 'type_avg' => 'Average',
'places' => 'Decimal Places', 'places' => 'Decimal places',
'default_view' => 'Default View', 'default_view' => 'Default view',
'points' => [ 'points' => [
'value' => 'Value', 'value' => 'Value',
@@ -96,12 +96,12 @@ return [
'settings' => [ 'settings' => [
/// Application setup /// Application setup
'app-setup' => [ 'app-setup' => [
'site-name' => 'Site Name', 'site-name' => 'Site name',
'site-url' => 'Site URL', 'site-url' => 'Site URL',
'display-graphs' => 'Display graphs on status page?', 'display-graphs' => 'Display graphs on status page?',
'about-this-page' => 'About this page', 'about-this-page' => 'About this page',
'days-of-incidents' => 'How many days of incidents to show?', 'days-of-incidents' => 'How many days of incidents to show?',
'banner' => 'Banner Image', 'banner' => 'Banner image',
'banner-help' => "It's recommended that you upload files no bigger than 930px wide .", 'banner-help' => "It's recommended that you upload files no bigger than 930px wide .",
'subscribers' => 'Allow people to signup to email notifications?', 'subscribers' => 'Allow people to signup to email notifications?',
], ],
@@ -112,32 +112,32 @@ return [
'analytics_piwik_siteid' => 'Piwik\'s site id', 'analytics_piwik_siteid' => 'Piwik\'s site id',
], ],
'localization' => [ 'localization' => [
'site-timezone' => 'Site Timezone', 'site-timezone' => 'Site timezone',
'site-locale' => 'Site Language', 'site-locale' => 'Site language',
'date-format' => 'Date Format', 'date-format' => 'Date format',
'incident-date-format' => 'Incident Timestamp Format', 'incident-date-format' => 'Incident timestamp format',
], ],
'security' => [ 'security' => [
'allowed-domains' => 'Allowed Domains', 'allowed-domains' => 'Allowed domains',
'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.', 'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.',
], ],
'stylesheet' => [ 'stylesheet' => [
'custom-css' => 'Custom Stylesheet', 'custom-css' => 'Custom stylesheet',
], ],
'theme' => [ 'theme' => [
'background-color' => 'Background Color', 'background-color' => 'Background color',
'background-fills' => 'Background Fills (Components, Incidents, Footer)', 'background-fills' => 'Background fills (components, incidents, footer)',
'banner-background-color' => 'Banner Background Color', 'banner-background-color' => 'Banner background color',
'banner-padding' => 'Banner Padding', 'banner-padding' => 'Banner padding',
'fullwidth-banner' => 'Enable fullwidth banner?', 'fullwidth-banner' => 'Enable fullwidth banner?',
'text-color' => 'Text Color', 'text-color' => 'Text color',
'dashboard-login' => 'Show dashboard button in the footer?', 'dashboard-login' => 'Show dashboard button in the footer?',
'reds' => 'Red (Used for errors)', 'reds' => 'Red (used for errors)',
'blues' => 'Blue (Used for information)', 'blues' => 'Blue (used for information)',
'greens' => 'Green (Used for success)', 'greens' => 'Green (used for success)',
'yellows' => 'Yellow (Used for alerts)', 'yellows' => 'Yellow (used for alerts)',
'oranges' => 'Orange (Used for notices)', 'oranges' => 'Orange (used for notices)',
'metrics' => 'Metrics Fill', 'metrics' => 'Metrics fill',
'links' => 'Links', 'links' => 'Links',
], ],
], ],

0
resources/lang/af/pagination.php Normal file → Executable file
View File

10
resources/lang/af/setup.php Normal file → Executable file
View File

@@ -12,12 +12,12 @@
return [ return [
'setup' => 'Setup', 'setup' => 'Setup',
'title' => 'Setup Cachet', 'title' => 'Setup Cachet',
'service_details' => 'Service Details', 'service_details' => 'Service details',
'env_setup' => 'Environment Setup', 'env_setup' => 'Environment setup',
'status_page_setup' => 'Status Page Setup', 'status_page_setup' => 'Status page setup',
'show_support' => 'Show support for Cachet?', 'show_support' => 'Show support for Cachet?',
'admin_account' => 'Administrator Account', 'admin_account' => 'Administrator account',
'complete_setup' => 'Complete Setup', 'complete_setup' => 'Complete setup',
'completed' => 'Cachet has been configured successfully!', 'completed' => 'Cachet has been configured successfully!',
'finish_setup' => 'Go to dashboard', 'finish_setup' => 'Go to dashboard',
]; ];

0
resources/lang/af/validation.php Normal file → Executable file
View File

7
resources/lang/ar/cachet.php Normal file → Executable file
View File

@@ -22,11 +22,10 @@ return [
// Incidents // Incidents
'incidents' => [ 'incidents' => [
'none' => 'Nothing to report', 'none' => 'No incidents reported',
'past' => 'Past Incidents', 'past' => 'Past Incidents',
'previous_week' => 'Previous Week', 'previous_week' => 'Previous Week',
'next_week' => 'Next Week', 'next_week' => 'Next Week',
'none' => 'Nothing to report',
'scheduled' => 'Scheduled Maintenance', 'scheduled' => 'Scheduled Maintenance',
'scheduled_at' => ', scheduled :timestamp', 'scheduled_at' => ', scheduled :timestamp',
'status' => [ 'status' => [
@@ -124,8 +123,8 @@ return [
'modal' => [ 'modal' => [
'close' => 'Close', 'close' => 'Close',
'subscribe' => [ 'subscribe' => [
'title' => 'Subscribe to component updates?', 'title' => 'Subscribe to component updates',
'body' => 'Enter your email address to subscribe to updates for this component. If you\'re already subscribed, you\'ll receive emails for this component too.', '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.',
'button' => 'Subscribe', 'button' => 'Subscribe',
], ],
], ],

126
resources/lang/ar/dashboard.php Normal file → Executable file
View File

@@ -21,14 +21,14 @@ return [
'incident-create-template' => 'Create Template', 'incident-create-template' => 'Create Template',
'incident-templates' => 'Incident Templates', 'incident-templates' => 'Incident Templates',
'add' => [ 'add' => [
'title' => 'Add an Incident', 'title' => 'Report an incident',
'success' => 'Incident added.', 'success' => 'Incident reported.',
'failure' => 'Something went wrong with the incident.', 'failure' => 'The incident could not be reported. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit an Incident', 'title' => 'Edit an incident',
'success' => 'Incident updated.', 'success' => 'Incident updated.',
'failure' => 'Something went wrong with the incident.', 'failure' => 'The incident could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The incident has been deleted and will not show on your status page.', 'success' => 'The incident has been deleted and will not show on your status page.',
@@ -39,19 +39,19 @@ return [
'templates' => [ 'templates' => [
'title' => 'Incident Templates', 'title' => 'Incident Templates',
'add' => [ 'add' => [
'title' => 'Create an Incident Template', 'title' => 'Create an incident template',
'message' => 'You should add an Incident Template.', 'message' => 'You should add an incident template.',
'success' => 'Template created.', 'success' => 'The incdent template has been created!',
'failure' => 'Something went wrong with the incident template.', 'failure' => 'The incident template could not be created. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit Template', 'title' => 'Edit Template',
'success' => 'Template has been updated!', 'success' => 'The incdent template has been updated!',
'failure' => 'Something went wrong updating the incident template', 'failure' => 'The incident template could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The tmplate has been deleted.', 'success' => 'The incident template has been deleted.',
'failure' => 'The template could not be deleted. Please try again.', 'failure' => 'The incident template could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -62,18 +62,18 @@ return [
'logged' => '{0} There are no schedules, good work.|You have logged one schedule.|You have reported <strong>:count</strong> schedules.', 'logged' => '{0} There are no schedules, good work.|You have logged one schedule.|You have reported <strong>:count</strong> schedules.',
'scheduled_at' => 'Scheduled at :timestamp', 'scheduled_at' => 'Scheduled at :timestamp',
'add' => [ 'add' => [
'title' => 'Add Scheduled Maintenance', 'title' => 'Add scheduled maintenance',
'success' => 'Schedule added.', 'success' => 'Scheduled maintenance has been reported!',
'failure' => 'Something went wrong adding the schedule.', 'failure' => 'The scheduled maintenance could not be reported. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit Scheduled Maintenance', 'title' => 'Edit scheduled maintenance',
'success' => 'Schedule has been updated!', 'success' => 'Scheduled maintenance has been edited!',
'failure' => 'Something went wrong editing the schedule.', 'failure' => 'The scheduled maintenance could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The schedule has been deleted and will not show on your status page.', 'success' => 'Scheduled maintenance has been deleted!',
'failure' => 'The schedule could not be deleted. Please try again.', 'failure' => 'The scheduled maintenance could not be deleted. Please try again.',
], ],
], ],
@@ -83,19 +83,19 @@ return [
'component_statuses' => 'Component Statuses', 'component_statuses' => 'Component Statuses',
'listed_group' => 'Grouped under :name', 'listed_group' => 'Grouped under :name',
'add' => [ 'add' => [
'title' => 'Add a Component', 'title' => 'Add a component',
'message' => 'You should add a component.', 'message' => 'You should add a component.',
'success' => 'Component created.', 'success' => 'Component has been added!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The component could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Component', 'title' => 'Edit a component',
'success' => 'Component updated.', 'success' => 'Component has been updated!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The component could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component deleted.', 'success' => 'The component has been deleted!',
'failure' => 'The Component could not be deleted. Please try again.', 'failure' => 'The component could not be deleted. Please try again.',
], ],
// Component groups // Component groups
@@ -103,18 +103,18 @@ return [
'groups' => 'Component group|Component groups', 'groups' => 'Component group|Component groups',
'no_components' => 'You should add a component group.', 'no_components' => 'You should add a component group.',
'add' => [ 'add' => [
'title' => 'Add a Component Group', 'title' => 'Add a component group',
'success' => 'Component group added.', 'success' => 'Component group has been added!',
'failure' => 'Something went wrong with the component group.', 'failure' => 'The component group could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Component Group', 'title' => 'Edit a component group',
'success' => 'Component group updated.', 'success' => 'Component group has been edited!',
'failure' => 'Something went wrong with the component group.', 'failure' => 'The component group could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component Group deleted.', 'success' => 'Component group has been deleted!',
'failure' => 'The Component Group could not be deleted. Please try again.', 'failure' => 'The component group could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -123,18 +123,18 @@ return [
'metrics' => [ 'metrics' => [
'metrics' => 'Metrics', 'metrics' => 'Metrics',
'add' => [ 'add' => [
'title' => 'Create a Metric', 'title' => 'Create a metric',
'message' => 'You should add a Metric.', 'message' => 'You should add a metric.',
'success' => 'Metric created.', 'success' => 'Metric has been added!',
'failure' => 'Something went wrong with the metric.', 'failure' => 'The metric could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Metric', 'title' => 'Edit a metric',
'success' => 'Metric updated.', 'success' => 'Metric has been updated!',
'failure' => 'Something went wrong with the metric.', 'failure' => 'The metric could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The metric has been deleted and will not show on your status page.', '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.', 'failure' => 'The metric could not be deleted. Please try again.',
], ],
], ],
@@ -143,16 +143,16 @@ return [
'subscribers' => 'Subscribers', 'subscribers' => 'Subscribers',
'description' => 'Subscribers will receive email updates when incidents are created.', 'description' => 'Subscribers will receive email updates when incidents are created.',
'verified' => 'Verified', 'verified' => 'Verified',
'not_verified' => 'Not Verified', 'not_verified' => 'Not verified',
'add' => [ 'add' => [
'title' => 'Add a New Subscriber', 'title' => 'Add a new subscriber',
'success' => 'Subscriber added.', 'success' => 'Subscriber has been added!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The subscriber could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Update Subscriber', 'title' => 'Update subscriber',
'success' => 'Subscriber updated.', 'success' => 'Subscriber has been updated!',
'failure' => 'Something went wrong when updating.', 'failure' => 'The subscriber could not be updated. Please try again.',
], ],
], ],
@@ -163,23 +163,23 @@ return [
'profile' => 'Profile', 'profile' => 'Profile',
'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.', 'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.',
'add' => [ 'add' => [
'title' => 'Add a New Team Member', 'title' => 'Add a new team member',
'success' => 'Team member added.', 'success' => 'Team member has been added!',
'failure' => 'Something went wrong with the user.', 'failure' => 'The team member could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Update Profile', 'title' => 'Update profile',
'success' => 'Profile updated.', 'success' => 'Team member has been updated!',
'failure' => 'Something went wrong when updating.', 'failure' => 'The team member could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'User deleted.', 'success' => 'Team member has been deleted and will no longer have access to the dashboard!',
'failure' => 'Something went wrong when deleting this user.', 'failure' => 'The team member could not be added. Please try again.',
], ],
'invite' => [ 'invite' => [
'title' => 'Invite a New Team Member', 'title' => 'Invite a new team member',
'success' => 'The users invited.', 'success' => 'An invite has been sent',
'failure' => 'Something went wrong with the invite.', 'failure' => 'The invite could not be sent. Please try again.',
], ],
], ],

50
resources/lang/ar/forms.php Normal file → Executable file
View File

@@ -45,8 +45,8 @@ return [
'message-help' => 'You may also use Markdown.', 'message-help' => 'You may also use Markdown.',
'scheduled_at' => 'When to schedule the maintenance for?', 'scheduled_at' => 'When to schedule the maintenance for?',
'incident_time' => 'When did this incident occur?', 'incident_time' => 'When did this incident occur?',
'notify_subscribers' => 'Notify Subscribers?', 'notify_subscribers' => 'Notify subscribers?',
'visibility' => 'Incident Visibility', 'visibility' => 'Incident visibility',
'public' => 'Viewable by public', 'public' => 'Viewable by public',
'logged_in_only' => 'Only visible to logged in users', 'logged_in_only' => 'Only visible to logged in users',
'templates' => [ 'templates' => [
@@ -80,12 +80,12 @@ return [
'description' => 'Description', 'description' => 'Description',
'description-help' => 'You may also use Markdown.', 'description-help' => 'You may also use Markdown.',
'display-chart' => 'Display chart on status page?', 'display-chart' => 'Display chart on status page?',
'default-value' => 'Default Value', 'default-value' => 'Default value',
'calc_type' => 'Calculation of Metrics', 'calc_type' => 'Calculation of metrics',
'type_sum' => 'Sum', 'type_sum' => 'Sum',
'type_avg' => 'Average', 'type_avg' => 'Average',
'places' => 'Decimal Places', 'places' => 'Decimal places',
'default_view' => 'Default View', 'default_view' => 'Default view',
'points' => [ 'points' => [
'value' => 'Value', 'value' => 'Value',
@@ -96,12 +96,12 @@ return [
'settings' => [ 'settings' => [
/// Application setup /// Application setup
'app-setup' => [ 'app-setup' => [
'site-name' => 'Site Name', 'site-name' => 'Site name',
'site-url' => 'Site URL', 'site-url' => 'Site URL',
'display-graphs' => 'Display graphs on status page?', 'display-graphs' => 'Display graphs on status page?',
'about-this-page' => 'About this page', 'about-this-page' => 'About this page',
'days-of-incidents' => 'How many days of incidents to show?', 'days-of-incidents' => 'How many days of incidents to show?',
'banner' => 'Banner Image', 'banner' => 'Banner image',
'banner-help' => "It's recommended that you upload files no bigger than 930px wide .", 'banner-help' => "It's recommended that you upload files no bigger than 930px wide .",
'subscribers' => 'Allow people to signup to email notifications?', 'subscribers' => 'Allow people to signup to email notifications?',
], ],
@@ -112,32 +112,32 @@ return [
'analytics_piwik_siteid' => 'Piwik\'s site id', 'analytics_piwik_siteid' => 'Piwik\'s site id',
], ],
'localization' => [ 'localization' => [
'site-timezone' => 'Site Timezone', 'site-timezone' => 'Site timezone',
'site-locale' => 'Site Language', 'site-locale' => 'Site language',
'date-format' => 'Date Format', 'date-format' => 'Date format',
'incident-date-format' => 'Incident Timestamp Format', 'incident-date-format' => 'Incident timestamp format',
], ],
'security' => [ 'security' => [
'allowed-domains' => 'Allowed Domains', 'allowed-domains' => 'Allowed domains',
'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.', 'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.',
], ],
'stylesheet' => [ 'stylesheet' => [
'custom-css' => 'Custom Stylesheet', 'custom-css' => 'Custom stylesheet',
], ],
'theme' => [ 'theme' => [
'background-color' => 'Background Color', 'background-color' => 'Background color',
'background-fills' => 'Background Fills (Components, Incidents, Footer)', 'background-fills' => 'Background fills (components, incidents, footer)',
'banner-background-color' => 'Banner Background Color', 'banner-background-color' => 'Banner background color',
'banner-padding' => 'Banner Padding', 'banner-padding' => 'Banner padding',
'fullwidth-banner' => 'Enable fullwidth banner?', 'fullwidth-banner' => 'Enable fullwidth banner?',
'text-color' => 'Text Color', 'text-color' => 'Text color',
'dashboard-login' => 'Show dashboard button in the footer?', 'dashboard-login' => 'Show dashboard button in the footer?',
'reds' => 'Red (Used for errors)', 'reds' => 'Red (used for errors)',
'blues' => 'Blue (Used for information)', 'blues' => 'Blue (used for information)',
'greens' => 'Green (Used for success)', 'greens' => 'Green (used for success)',
'yellows' => 'Yellow (Used for alerts)', 'yellows' => 'Yellow (used for alerts)',
'oranges' => 'Orange (Used for notices)', 'oranges' => 'Orange (used for notices)',
'metrics' => 'Metrics Fill', 'metrics' => 'Metrics fill',
'links' => 'Links', 'links' => 'Links',
], ],
], ],

0
resources/lang/ar/pagination.php Normal file → Executable file
View File

10
resources/lang/ar/setup.php Normal file → Executable file
View File

@@ -12,12 +12,12 @@
return [ return [
'setup' => 'Setup', 'setup' => 'Setup',
'title' => 'Setup Cachet', 'title' => 'Setup Cachet',
'service_details' => 'Service Details', 'service_details' => 'Service details',
'env_setup' => 'Environment Setup', 'env_setup' => 'Environment setup',
'status_page_setup' => 'Status Page Setup', 'status_page_setup' => 'Status page setup',
'show_support' => 'Show support for Cachet?', 'show_support' => 'Show support for Cachet?',
'admin_account' => 'Administrator Account', 'admin_account' => 'Administrator account',
'complete_setup' => 'Complete Setup', 'complete_setup' => 'Complete setup',
'completed' => 'Cachet has been configured successfully!', 'completed' => 'Cachet has been configured successfully!',
'finish_setup' => 'Go to dashboard', 'finish_setup' => 'Go to dashboard',
]; ];

0
resources/lang/ar/validation.php Normal file → Executable file
View File

7
resources/lang/ca/cachet.php Normal file → Executable file
View File

@@ -22,11 +22,10 @@ return [
// Incidents // Incidents
'incidents' => [ 'incidents' => [
'none' => 'Nothing to report', 'none' => 'No incidents reported',
'past' => 'Past Incidents', 'past' => 'Past Incidents',
'previous_week' => 'Previous Week', 'previous_week' => 'Previous Week',
'next_week' => 'Next Week', 'next_week' => 'Next Week',
'none' => 'Nothing to report',
'scheduled' => 'Scheduled Maintenance', 'scheduled' => 'Scheduled Maintenance',
'scheduled_at' => ', scheduled :timestamp', 'scheduled_at' => ', scheduled :timestamp',
'status' => [ 'status' => [
@@ -124,8 +123,8 @@ return [
'modal' => [ 'modal' => [
'close' => 'Close', 'close' => 'Close',
'subscribe' => [ 'subscribe' => [
'title' => 'Subscribe to component updates?', 'title' => 'Subscribe to component updates',
'body' => 'Enter your email address to subscribe to updates for this component. If you\'re already subscribed, you\'ll receive emails for this component too.', '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.',
'button' => 'Subscribe', 'button' => 'Subscribe',
], ],
], ],

126
resources/lang/ca/dashboard.php Normal file → Executable file
View File

@@ -21,14 +21,14 @@ return [
'incident-create-template' => 'Create Template', 'incident-create-template' => 'Create Template',
'incident-templates' => 'Incident Templates', 'incident-templates' => 'Incident Templates',
'add' => [ 'add' => [
'title' => 'Add an Incident', 'title' => 'Report an incident',
'success' => 'Incident added.', 'success' => 'Incident reported.',
'failure' => 'Something went wrong with the incident.', 'failure' => 'The incident could not be reported. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit an Incident', 'title' => 'Edit an incident',
'success' => 'Incident updated.', 'success' => 'Incident updated.',
'failure' => 'Something went wrong with the incident.', 'failure' => 'The incident could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The incident has been deleted and will not show on your status page.', 'success' => 'The incident has been deleted and will not show on your status page.',
@@ -39,19 +39,19 @@ return [
'templates' => [ 'templates' => [
'title' => 'Incident Templates', 'title' => 'Incident Templates',
'add' => [ 'add' => [
'title' => 'Create an Incident Template', 'title' => 'Create an incident template',
'message' => 'You should add an Incident Template.', 'message' => 'You should add an incident template.',
'success' => 'Template created.', 'success' => 'The incdent template has been created!',
'failure' => 'Something went wrong with the incident template.', 'failure' => 'The incident template could not be created. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit Template', 'title' => 'Edit Template',
'success' => 'Template has been updated!', 'success' => 'The incdent template has been updated!',
'failure' => 'Something went wrong updating the incident template', 'failure' => 'The incident template could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The tmplate has been deleted.', 'success' => 'The incident template has been deleted.',
'failure' => 'The template could not be deleted. Please try again.', 'failure' => 'The incident template could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -62,18 +62,18 @@ return [
'logged' => '{0} There are no schedules, good work.|You have logged one schedule.|You have reported <strong>:count</strong> schedules.', 'logged' => '{0} There are no schedules, good work.|You have logged one schedule.|You have reported <strong>:count</strong> schedules.',
'scheduled_at' => 'Scheduled at :timestamp', 'scheduled_at' => 'Scheduled at :timestamp',
'add' => [ 'add' => [
'title' => 'Add Scheduled Maintenance', 'title' => 'Add scheduled maintenance',
'success' => 'Schedule added.', 'success' => 'Scheduled maintenance has been reported!',
'failure' => 'Something went wrong adding the schedule.', 'failure' => 'The scheduled maintenance could not be reported. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit Scheduled Maintenance', 'title' => 'Edit scheduled maintenance',
'success' => 'Schedule has been updated!', 'success' => 'Scheduled maintenance has been edited!',
'failure' => 'Something went wrong editing the schedule.', 'failure' => 'The scheduled maintenance could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The schedule has been deleted and will not show on your status page.', 'success' => 'Scheduled maintenance has been deleted!',
'failure' => 'The schedule could not be deleted. Please try again.', 'failure' => 'The scheduled maintenance could not be deleted. Please try again.',
], ],
], ],
@@ -83,19 +83,19 @@ return [
'component_statuses' => 'Component Statuses', 'component_statuses' => 'Component Statuses',
'listed_group' => 'Grouped under :name', 'listed_group' => 'Grouped under :name',
'add' => [ 'add' => [
'title' => 'Add a Component', 'title' => 'Add a component',
'message' => 'You should add a component.', 'message' => 'You should add a component.',
'success' => 'Component created.', 'success' => 'Component has been added!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The component could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Component', 'title' => 'Edit a component',
'success' => 'Component updated.', 'success' => 'Component has been updated!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The component could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component deleted.', 'success' => 'The component has been deleted!',
'failure' => 'The Component could not be deleted. Please try again.', 'failure' => 'The component could not be deleted. Please try again.',
], ],
// Component groups // Component groups
@@ -103,18 +103,18 @@ return [
'groups' => 'Component group|Component groups', 'groups' => 'Component group|Component groups',
'no_components' => 'You should add a component group.', 'no_components' => 'You should add a component group.',
'add' => [ 'add' => [
'title' => 'Add a Component Group', 'title' => 'Add a component group',
'success' => 'Component group added.', 'success' => 'Component group has been added!',
'failure' => 'Something went wrong with the component group.', 'failure' => 'The component group could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Component Group', 'title' => 'Edit a component group',
'success' => 'Component group updated.', 'success' => 'Component group has been edited!',
'failure' => 'Something went wrong with the component group.', 'failure' => 'The component group could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component Group deleted.', 'success' => 'Component group has been deleted!',
'failure' => 'The Component Group could not be deleted. Please try again.', 'failure' => 'The component group could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -123,18 +123,18 @@ return [
'metrics' => [ 'metrics' => [
'metrics' => 'Metrics', 'metrics' => 'Metrics',
'add' => [ 'add' => [
'title' => 'Create a Metric', 'title' => 'Create a metric',
'message' => 'You should add a Metric.', 'message' => 'You should add a metric.',
'success' => 'Metric created.', 'success' => 'Metric has been added!',
'failure' => 'Something went wrong with the metric.', 'failure' => 'The metric could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Metric', 'title' => 'Edit a metric',
'success' => 'Metric updated.', 'success' => 'Metric has been updated!',
'failure' => 'Something went wrong with the metric.', 'failure' => 'The metric could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The metric has been deleted and will not show on your status page.', '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.', 'failure' => 'The metric could not be deleted. Please try again.',
], ],
], ],
@@ -143,16 +143,16 @@ return [
'subscribers' => 'Subscribers', 'subscribers' => 'Subscribers',
'description' => 'Subscribers will receive email updates when incidents are created.', 'description' => 'Subscribers will receive email updates when incidents are created.',
'verified' => 'Verified', 'verified' => 'Verified',
'not_verified' => 'Not Verified', 'not_verified' => 'Not verified',
'add' => [ 'add' => [
'title' => 'Add a New Subscriber', 'title' => 'Add a new subscriber',
'success' => 'Subscriber added.', 'success' => 'Subscriber has been added!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The subscriber could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Update Subscriber', 'title' => 'Update subscriber',
'success' => 'Subscriber updated.', 'success' => 'Subscriber has been updated!',
'failure' => 'Something went wrong when updating.', 'failure' => 'The subscriber could not be updated. Please try again.',
], ],
], ],
@@ -163,23 +163,23 @@ return [
'profile' => 'Profile', 'profile' => 'Profile',
'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.', 'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.',
'add' => [ 'add' => [
'title' => 'Add a New Team Member', 'title' => 'Add a new team member',
'success' => 'Team member added.', 'success' => 'Team member has been added!',
'failure' => 'Something went wrong with the user.', 'failure' => 'The team member could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Update Profile', 'title' => 'Update profile',
'success' => 'Profile updated.', 'success' => 'Team member has been updated!',
'failure' => 'Something went wrong when updating.', 'failure' => 'The team member could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'User deleted.', 'success' => 'Team member has been deleted and will no longer have access to the dashboard!',
'failure' => 'Something went wrong when deleting this user.', 'failure' => 'The team member could not be added. Please try again.',
], ],
'invite' => [ 'invite' => [
'title' => 'Invite a New Team Member', 'title' => 'Invite a new team member',
'success' => 'The users invited.', 'success' => 'An invite has been sent',
'failure' => 'Something went wrong with the invite.', 'failure' => 'The invite could not be sent. Please try again.',
], ],
], ],

50
resources/lang/ca/forms.php Normal file → Executable file
View File

@@ -45,8 +45,8 @@ return [
'message-help' => 'You may also use Markdown.', 'message-help' => 'You may also use Markdown.',
'scheduled_at' => 'When to schedule the maintenance for?', 'scheduled_at' => 'When to schedule the maintenance for?',
'incident_time' => 'When did this incident occur?', 'incident_time' => 'When did this incident occur?',
'notify_subscribers' => 'Notify Subscribers?', 'notify_subscribers' => 'Notify subscribers?',
'visibility' => 'Incident Visibility', 'visibility' => 'Incident visibility',
'public' => 'Viewable by public', 'public' => 'Viewable by public',
'logged_in_only' => 'Only visible to logged in users', 'logged_in_only' => 'Only visible to logged in users',
'templates' => [ 'templates' => [
@@ -80,12 +80,12 @@ return [
'description' => 'Description', 'description' => 'Description',
'description-help' => 'You may also use Markdown.', 'description-help' => 'You may also use Markdown.',
'display-chart' => 'Display chart on status page?', 'display-chart' => 'Display chart on status page?',
'default-value' => 'Default Value', 'default-value' => 'Default value',
'calc_type' => 'Calculation of Metrics', 'calc_type' => 'Calculation of metrics',
'type_sum' => 'Sum', 'type_sum' => 'Sum',
'type_avg' => 'Average', 'type_avg' => 'Average',
'places' => 'Decimal Places', 'places' => 'Decimal places',
'default_view' => 'Default View', 'default_view' => 'Default view',
'points' => [ 'points' => [
'value' => 'Value', 'value' => 'Value',
@@ -96,12 +96,12 @@ return [
'settings' => [ 'settings' => [
/// Application setup /// Application setup
'app-setup' => [ 'app-setup' => [
'site-name' => 'Site Name', 'site-name' => 'Site name',
'site-url' => 'Site URL', 'site-url' => 'Site URL',
'display-graphs' => 'Display graphs on status page?', 'display-graphs' => 'Display graphs on status page?',
'about-this-page' => 'About this page', 'about-this-page' => 'About this page',
'days-of-incidents' => 'How many days of incidents to show?', 'days-of-incidents' => 'How many days of incidents to show?',
'banner' => 'Banner Image', 'banner' => 'Banner image',
'banner-help' => "It's recommended that you upload files no bigger than 930px wide .", 'banner-help' => "It's recommended that you upload files no bigger than 930px wide .",
'subscribers' => 'Allow people to signup to email notifications?', 'subscribers' => 'Allow people to signup to email notifications?',
], ],
@@ -112,32 +112,32 @@ return [
'analytics_piwik_siteid' => 'Piwik\'s site id', 'analytics_piwik_siteid' => 'Piwik\'s site id',
], ],
'localization' => [ 'localization' => [
'site-timezone' => 'Site Timezone', 'site-timezone' => 'Site timezone',
'site-locale' => 'Site Language', 'site-locale' => 'Site language',
'date-format' => 'Date Format', 'date-format' => 'Date format',
'incident-date-format' => 'Incident Timestamp Format', 'incident-date-format' => 'Incident timestamp format',
], ],
'security' => [ 'security' => [
'allowed-domains' => 'Allowed Domains', 'allowed-domains' => 'Allowed domains',
'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.', 'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.',
], ],
'stylesheet' => [ 'stylesheet' => [
'custom-css' => 'Custom Stylesheet', 'custom-css' => 'Custom stylesheet',
], ],
'theme' => [ 'theme' => [
'background-color' => 'Background Color', 'background-color' => 'Background color',
'background-fills' => 'Background Fills (Components, Incidents, Footer)', 'background-fills' => 'Background fills (components, incidents, footer)',
'banner-background-color' => 'Banner Background Color', 'banner-background-color' => 'Banner background color',
'banner-padding' => 'Banner Padding', 'banner-padding' => 'Banner padding',
'fullwidth-banner' => 'Enable fullwidth banner?', 'fullwidth-banner' => 'Enable fullwidth banner?',
'text-color' => 'Text Color', 'text-color' => 'Text color',
'dashboard-login' => 'Show dashboard button in the footer?', 'dashboard-login' => 'Show dashboard button in the footer?',
'reds' => 'Red (Used for errors)', 'reds' => 'Red (used for errors)',
'blues' => 'Blue (Used for information)', 'blues' => 'Blue (used for information)',
'greens' => 'Green (Used for success)', 'greens' => 'Green (used for success)',
'yellows' => 'Yellow (Used for alerts)', 'yellows' => 'Yellow (used for alerts)',
'oranges' => 'Orange (Used for notices)', 'oranges' => 'Orange (used for notices)',
'metrics' => 'Metrics Fill', 'metrics' => 'Metrics fill',
'links' => 'Links', 'links' => 'Links',
], ],
], ],

0
resources/lang/ca/pagination.php Normal file → Executable file
View File

10
resources/lang/ca/setup.php Normal file → Executable file
View File

@@ -12,12 +12,12 @@
return [ return [
'setup' => 'Setup', 'setup' => 'Setup',
'title' => 'Setup Cachet', 'title' => 'Setup Cachet',
'service_details' => 'Service Details', 'service_details' => 'Service details',
'env_setup' => 'Environment Setup', 'env_setup' => 'Environment setup',
'status_page_setup' => 'Status Page Setup', 'status_page_setup' => 'Status page setup',
'show_support' => 'Show support for Cachet?', 'show_support' => 'Show support for Cachet?',
'admin_account' => 'Administrator Account', 'admin_account' => 'Administrator account',
'complete_setup' => 'Complete Setup', 'complete_setup' => 'Complete setup',
'completed' => 'Cachet has been configured successfully!', 'completed' => 'Cachet has been configured successfully!',
'finish_setup' => 'Go to dashboard', 'finish_setup' => 'Go to dashboard',
]; ];

0
resources/lang/ca/validation.php Normal file → Executable file
View File

7
resources/lang/cs/cachet.php Normal file → Executable file
View File

@@ -22,11 +22,10 @@ return [
// Incidents // Incidents
'incidents' => [ 'incidents' => [
'none' => 'Nothing to report', 'none' => 'No incidents reported',
'past' => 'Past Incidents', 'past' => 'Past Incidents',
'previous_week' => 'Previous Week', 'previous_week' => 'Previous Week',
'next_week' => 'Next Week', 'next_week' => 'Next Week',
'none' => 'Nothing to report',
'scheduled' => 'Plánovaná odstávka', 'scheduled' => 'Plánovaná odstávka',
'scheduled_at' => ', plánované na :timestamp', 'scheduled_at' => ', plánované na :timestamp',
'status' => [ 'status' => [
@@ -124,8 +123,8 @@ return [
'modal' => [ 'modal' => [
'close' => 'Close', 'close' => 'Close',
'subscribe' => [ 'subscribe' => [
'title' => 'Subscribe to component updates?', 'title' => 'Subscribe to component updates',
'body' => 'Enter your email address to subscribe to updates for this component. If you\'re already subscribed, you\'ll receive emails for this component too.', '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.',
'button' => 'Přihlásit', 'button' => 'Přihlásit',
], ],
], ],

54
resources/lang/cs/dashboard.php Normal file → Executable file
View File

@@ -21,12 +21,12 @@ return [
'incident-create-template' => 'Vytvořit šablonu', 'incident-create-template' => 'Vytvořit šablonu',
'incident-templates' => 'Šablony incidentů', 'incident-templates' => 'Šablony incidentů',
'add' => [ 'add' => [
'title' => 'Add an Incident', 'title' => 'Report an incident',
'success' => 'Incident přidán.', 'success' => 'Incident přidán.',
'failure' => 'Na incidentu se něco pokazilo.', 'failure' => 'Na incidentu se něco pokazilo.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit an Incident', 'title' => 'Edit an incident',
'success' => 'Incident aktualizován.', 'success' => 'Incident aktualizován.',
'failure' => 'S incidentem se něco pokazilo.', 'failure' => 'S incidentem se něco pokazilo.',
], ],
@@ -39,8 +39,8 @@ return [
'templates' => [ 'templates' => [
'title' => 'Šablony incidentů', 'title' => 'Šablony incidentů',
'add' => [ 'add' => [
'title' => 'Create an Incident Template', 'title' => 'Create an incident template',
'message' => 'You should add an Incident Template.', 'message' => 'You should add an incident template.',
'success' => 'Šablona vytvořena.', 'success' => 'Šablona vytvořena.',
'failure' => 'Na šabloně incidentu se něco se pokazilo.', 'failure' => 'Na šabloně incidentu se něco se pokazilo.',
], ],
@@ -50,8 +50,8 @@ return [
'failure' => 'Při aktualizaci šablony incidentu se něco pokazilo', 'failure' => 'Při aktualizaci šablony incidentu se něco pokazilo',
], ],
'delete' => [ 'delete' => [
'success' => 'The tmplate has been deleted.', 'success' => 'The incident template has been deleted.',
'failure' => 'The template could not be deleted. Please try again.', 'failure' => 'The incident template could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -83,19 +83,19 @@ return [
'component_statuses' => 'Stavy služeb', 'component_statuses' => 'Stavy služeb',
'listed_group' => 'Seskupeno podle :name', 'listed_group' => 'Seskupeno podle :name',
'add' => [ 'add' => [
'title' => 'Add a Component', 'title' => 'Add a component',
'message' => 'Měli byste přidat službu.', 'message' => 'Měli byste přidat službu.',
'success' => 'Služba vytvořena.', 'success' => 'Služba vytvořena.',
'failure' => 'Na službě se objevila chyba.', 'failure' => 'Na službě se objevila chyba.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Component', 'title' => 'Edit a component',
'success' => 'Služba byla aktualizována.', 'success' => 'Služba byla aktualizována.',
'failure' => 'Na službě se objevila chyba.', 'failure' => 'Na službě se objevila chyba.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component deleted.', 'success' => 'The component has been deleted!',
'failure' => 'The Component could not be deleted. Please try again.', 'failure' => 'The component could not be deleted. Please try again.',
], ],
// Component groups // Component groups
@@ -103,18 +103,18 @@ return [
'groups' => 'Skupina služeb|Skupiny služeb', 'groups' => 'Skupina služeb|Skupiny služeb',
'no_components' => 'Můžete přidat skupinu služeb.', 'no_components' => 'Můžete přidat skupinu služeb.',
'add' => [ 'add' => [
'title' => 'Add a Component Group', 'title' => 'Add a component group',
'success' => 'Skupina služeb byla přidána.', 'success' => 'Skupina služeb byla přidána.',
'failure' => 'Vyskytla se chyba skupiny služeb.', 'failure' => 'Vyskytla se chyba skupiny služeb.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Component Group', 'title' => 'Edit a component group',
'success' => 'Skupina služeb byla aktualizována.', 'success' => 'Skupina služeb byla aktualizována.',
'failure' => 'Vyskytla se chyba skupiny služeb.', 'failure' => 'Vyskytla se chyba skupiny služeb.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component Group deleted.', 'success' => 'Component group has been deleted!',
'failure' => 'The Component Group could not be deleted. Please try again.', 'failure' => 'The component group could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -123,18 +123,18 @@ return [
'metrics' => [ 'metrics' => [
'metrics' => 'Metriky', 'metrics' => 'Metriky',
'add' => [ 'add' => [
'title' => 'Create a Metric', 'title' => 'Create a metric',
'message' => 'You should add a Metric.', 'message' => 'You should add a metric.',
'success' => 'Metrika vytvořena.', 'success' => 'Metrika vytvořena.',
'failure' => 'Něco se stalo s metrikou.', 'failure' => 'Něco se stalo s metrikou.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Metric', 'title' => 'Edit a metric',
'success' => 'Metrika aktualizována.', 'success' => 'Metrika aktualizována.',
'failure' => 'Něco se stalo s metrikou.', 'failure' => 'Něco se stalo s metrikou.',
], ],
'delete' => [ 'delete' => [
'success' => 'The metric has been deleted and will not show on your status page.', '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.', 'failure' => 'The metric could not be deleted. Please try again.',
], ],
], ],
@@ -145,12 +145,12 @@ return [
'verified' => 'Ověřeno', 'verified' => 'Ověřeno',
'not_verified' => 'Neověřeno', 'not_verified' => 'Neověřeno',
'add' => [ 'add' => [
'title' => 'Add a New Subscriber', 'title' => 'Add a new subscriber',
'success' => 'Odběratel přidán.', 'success' => 'Odběratel přidán.',
'failure' => 'Na službě se objevila chyba.', 'failure' => 'Na službě se objevila chyba.',
], ],
'edit' => [ 'edit' => [
'title' => 'Update Subscriber', 'title' => 'Update subscriber',
'success' => 'Odběratel aktualizován.', 'success' => 'Odběratel aktualizován.',
'failure' => 'Něco se pokazilo při aktualizaci.', 'failure' => 'Něco se pokazilo při aktualizaci.',
], ],
@@ -163,23 +163,23 @@ return [
'profile' => 'Profil', 'profile' => 'Profil',
'description' => 'Členové týmu budou schopni přidat nebo upravit komponenty a incidenty.', 'description' => 'Členové týmu budou schopni přidat nebo upravit komponenty a incidenty.',
'add' => [ 'add' => [
'title' => 'Add a New Team Member', 'title' => 'Add a new team member',
'success' => 'Nový člen týmu byl přidán.', 'success' => 'Nový člen týmu byl přidán.',
'failure' => 'Something went wrong with the user.', 'failure' => 'Nastala chyba při mazání uživatele.',
], ],
'edit' => [ 'edit' => [
'title' => 'Update Profile', 'title' => 'Update profile',
'success' => 'Profil byl aktualizován.', 'success' => 'Profil byl aktualizován.',
'failure' => 'Něco se pokazilo při aktualizaci.', 'failure' => 'Něco se pokazilo při aktualizaci.',
], ],
'delete' => [ 'delete' => [
'success' => 'User deleted.', 'success' => 'Team member has been deleted and will no longer have access to the dashboard!',
'failure' => 'Nastala chyba při mazání uživatele.', 'failure' => 'Nastala chyba při mazání uživatele.',
], ],
'invite' => [ 'invite' => [
'title' => 'Invite a New Team Member', 'title' => 'Invite a new team member',
'success' => 'The users invited.', 'success' => 'An invite has been sent',
'failure' => 'Something went wrong with the invite.', 'failure' => 'The invite could not be sent. Please try again.',
], ],
], ],

38
resources/lang/cs/forms.php Normal file → Executable file
View File

@@ -45,7 +45,7 @@ return [
'message-help' => 'Můžete také použít Markdown.', 'message-help' => 'Můžete také použít Markdown.',
'scheduled_at' => 'Na kdy naplánovat údržbu/výpadek?', 'scheduled_at' => 'Na kdy naplánovat údržbu/výpadek?',
'incident_time' => 'Kdy k incidentu došlo?', 'incident_time' => 'Kdy k incidentu došlo?',
'notify_subscribers' => 'Notify Subscribers?', 'notify_subscribers' => 'Notify subscribers?',
'visibility' => 'Viditelnost incidentu', 'visibility' => 'Viditelnost incidentu',
'public' => 'Viditelné veřejnosti', 'public' => 'Viditelné veřejnosti',
'logged_in_only' => 'Only visible to logged in users', 'logged_in_only' => 'Only visible to logged in users',
@@ -80,12 +80,12 @@ return [
'description' => 'Popis', 'description' => 'Popis',
'description-help' => 'Můžete také použít Markdown.', 'description-help' => 'Můžete také použít Markdown.',
'display-chart' => 'Zobrazovat graf na stavové stránce?', 'display-chart' => 'Zobrazovat graf na stavové stránce?',
'default-value' => 'Default Value', 'default-value' => 'Default value',
'calc_type' => 'Calculation of Metrics', 'calc_type' => 'Calculation of metrics',
'type_sum' => 'Celkem', 'type_sum' => 'Celkem',
'type_avg' => 'Průměr', 'type_avg' => 'Průměr',
'places' => 'Decimal Places', 'places' => 'Decimal places',
'default_view' => 'Default View', 'default_view' => 'Default view',
'points' => [ 'points' => [
'value' => 'Hodnota', 'value' => 'Hodnota',
@@ -112,13 +112,13 @@ return [
'analytics_piwik_siteid' => 'Piwik\'s site id', 'analytics_piwik_siteid' => 'Piwik\'s site id',
], ],
'localization' => [ 'localization' => [
'site-timezone' => 'Site Timezone', 'site-timezone' => 'Site timezone',
'site-locale' => 'Site Language', 'site-locale' => 'Site language',
'date-format' => 'Date Format', 'date-format' => 'Date format',
'incident-date-format' => 'Incident Timestamp Format', 'incident-date-format' => 'Incident timestamp format',
], ],
'security' => [ 'security' => [
'allowed-domains' => 'Allowed Domains', 'allowed-domains' => 'Allowed domains',
'allowed-domains-help' => 'Oddělené čárkami. Výše uvedené domény jsou ve výchozím nastavení automaticky povoleny.', 'allowed-domains-help' => 'Oddělené čárkami. Výše uvedené domény jsou ve výchozím nastavení automaticky povoleny.',
], ],
'stylesheet' => [ 'stylesheet' => [
@@ -126,18 +126,18 @@ return [
], ],
'theme' => [ 'theme' => [
'background-color' => 'Barva pozadí', 'background-color' => 'Barva pozadí',
'background-fills' => 'Background Fills (Components, Incidents, Footer)', 'background-fills' => 'Background fills (components, incidents, footer)',
'banner-background-color' => 'Banner Background Color', 'banner-background-color' => 'Banner background color',
'banner-padding' => 'Banner Padding', 'banner-padding' => 'Banner padding',
'fullwidth-banner' => 'Enable fullwidth banner?', 'fullwidth-banner' => 'Enable fullwidth banner?',
'text-color' => 'Barva textu', 'text-color' => 'Barva textu',
'dashboard-login' => 'Show dashboard button in the footer?', 'dashboard-login' => 'Show dashboard button in the footer?',
'reds' => 'Red (Used for errors)', 'reds' => 'Red (used for errors)',
'blues' => 'Blue (Used for information)', 'blues' => 'Blue (used for information)',
'greens' => 'Green (Used for success)', 'greens' => 'Green (used for success)',
'yellows' => 'Yellow (Used for alerts)', 'yellows' => 'Yellow (used for alerts)',
'oranges' => 'Orange (Used for notices)', 'oranges' => 'Orange (used for notices)',
'metrics' => 'Metrics Fill', 'metrics' => 'Metrics fill',
'links' => 'Links', 'links' => 'Links',
], ],
], ],

0
resources/lang/cs/pagination.php Normal file → Executable file
View File

0
resources/lang/cs/setup.php Normal file → Executable file
View File

0
resources/lang/cs/validation.php Normal file → Executable file
View File

View File

@@ -22,11 +22,10 @@ return [
// Incidents // Incidents
'incidents' => [ 'incidents' => [
'none' => 'Intet at rapportere', 'none' => 'No incidents reported',
'past' => 'Tidligere hændelser', 'past' => 'Tidligere hændelser',
'previous_week' => 'Sidste uge', 'previous_week' => 'Sidste uge',
'next_week' => 'Næste uge', 'next_week' => 'Næste uge',
'none' => 'Intet at rapportere',
'scheduled' => 'Planlagte hændelser', 'scheduled' => 'Planlagte hændelser',
'scheduled_at' => ', planlagt til :timestamp', 'scheduled_at' => ', planlagt til :timestamp',
'status' => [ 'status' => [
@@ -124,8 +123,8 @@ return [
'modal' => [ 'modal' => [
'close' => 'Close', 'close' => 'Close',
'subscribe' => [ 'subscribe' => [
'title' => 'Subscribe to component updates?', 'title' => 'Subscribe to component updates',
'body' => 'Enter your email address to subscribe to updates for this component. If you\'re already subscribed, you\'ll receive emails for this component too.', '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.',
'button' => 'Abonner', 'button' => 'Abonner',
], ],
], ],

View File

@@ -40,7 +40,7 @@ return [
'title' => 'Hændelses skabeloner', 'title' => 'Hændelses skabeloner',
'add' => [ 'add' => [
'title' => 'Opret hændelses skabelon', 'title' => 'Opret hændelses skabelon',
'message' => 'You should add an Incident Template.', 'message' => 'You should add an incident template.',
'success' => 'Template created.', 'success' => 'Template created.',
'failure' => 'Noget gik galt i oprettelsen af skabelonen.', 'failure' => 'Noget gik galt i oprettelsen af skabelonen.',
], ],
@@ -50,8 +50,8 @@ return [
'failure' => 'Noget gik galt under opdateringen af skabelonen', 'failure' => 'Noget gik galt under opdateringen af skabelonen',
], ],
'delete' => [ 'delete' => [
'success' => 'The tmplate has been deleted.', 'success' => 'The incident template has been deleted.',
'failure' => 'The template could not be deleted. Please try again.', 'failure' => 'The incident template could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -94,8 +94,8 @@ return [
'failure' => 'Noget gik galt med komponenten.', 'failure' => 'Noget gik galt med komponenten.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component deleted.', 'success' => 'The component has been deleted!',
'failure' => 'The Component could not be deleted. Please try again.', 'failure' => 'The component could not be deleted. Please try again.',
], ],
// Component groups // Component groups
@@ -113,8 +113,8 @@ return [
'failure' => 'Noget gik galt med komponentgruppen.', 'failure' => 'Noget gik galt med komponentgruppen.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component Group deleted.', 'success' => 'Component group has been deleted!',
'failure' => 'The Component Group could not be deleted. Please try again.', 'failure' => 'The component group could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -124,7 +124,7 @@ return [
'metrics' => 'Grafer', 'metrics' => 'Grafer',
'add' => [ 'add' => [
'title' => 'Opret graf', 'title' => 'Opret graf',
'message' => 'You should add a Metric.', 'message' => 'You should add a metric.',
'success' => 'Graf oprettet.', 'success' => 'Graf oprettet.',
'failure' => 'Noget gik galt med oprettelsen.', 'failure' => 'Noget gik galt med oprettelsen.',
], ],
@@ -134,7 +134,7 @@ return [
'failure' => 'Noget gik galt med målestokken.', 'failure' => 'Noget gik galt med målestokken.',
], ],
'delete' => [ 'delete' => [
'success' => 'The metric has been deleted and will not show on your status page.', '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.', 'failure' => 'The metric could not be deleted. Please try again.',
], ],
], ],

View File

@@ -85,7 +85,7 @@ return [
'type_sum' => 'Sum', 'type_sum' => 'Sum',
'type_avg' => 'Average', 'type_avg' => 'Average',
'places' => 'Antal decimaler', 'places' => 'Antal decimaler',
'default_view' => 'Default View', 'default_view' => 'Default view',
'points' => [ 'points' => [
'value' => 'Value', 'value' => 'Value',

View File

@@ -22,11 +22,10 @@ return [
// Incidents // Incidents
'incidents' => [ 'incidents' => [
'none' => 'Keine Vorfälle berichtet.', 'none' => 'Es liegen keine Vorfälle vor',
'past' => 'Vergangene Vorfälle', 'past' => 'Vergangene Vorfälle',
'previous_week' => 'Vorherige Woche', 'previous_week' => 'Vorherige Woche',
'next_week' => 'Nächste Woche', 'next_week' => 'Nächste Woche',
'none' => 'Keine Vorfälle berichtet.',
'scheduled' => 'Geplante Wartungen', 'scheduled' => 'Geplante Wartungen',
'scheduled_at' => ', geplant :timestamp', 'scheduled_at' => ', geplant :timestamp',
'status' => [ 'status' => [
@@ -40,9 +39,9 @@ return [
// Service Status // Service Status
'service' => [ 'service' => [
'good' => '[0,1] System operational|[2,Inf] All systems are operational', 'good' => '[0,1] System funktioniert|[2,Inf] Alle Systeme funktionieren',
'bad' => '[0,1] The system is currently experiencing issues|[2,Inf] Some systems are experiencing issues', 'bad' => '[0,1] System hat momentan Probleme|[2,Inf] Mehrere Systeme haben momentan Probleme',
'major' => '[0,1] The service experiencing a major outage|[2,Inf] Some systems are experiencing a major outage', 'major' => '[0,1] System hat ein schwerwiegendes Problem|[2,Inf] Mehrere Systeme haben ein schwerwiegendes Problem',
], ],
'api' => [ 'api' => [
@@ -53,7 +52,7 @@ return [
// Metrics // Metrics
'metrics' => [ 'metrics' => [
'filter' => [ 'filter' => [
'last_hour' => 'Last Hour', 'last_hour' => 'Letzte Stunde',
'hourly' => 'Letzte 12 Stunden', 'hourly' => 'Letzte 12 Stunden',
'weekly' => 'Wöchentlich', 'weekly' => 'Wöchentlich',
'monthly' => 'Monatlich', 'monthly' => 'Monatlich',
@@ -71,7 +70,7 @@ return [
'unsubscribe' => 'Von E-Mail-Updates deabonnieren.', 'unsubscribe' => 'Von E-Mail-Updates deabonnieren.',
'unsubscribed' => 'Ihre E-Mail-Abonnement wurde gekündigt.', 'unsubscribed' => 'Ihre E-Mail-Abonnement wurde gekündigt.',
'failure' => 'Etwas ist mit dem Abonnement schief gelaufen.', 'failure' => 'Etwas ist mit dem Abonnement schief gelaufen.',
'already-subscribed' => 'Cannot subscribe :email because they\'re already subscribed.', 'already-subscribed' => 'Abonnement für :email konnte nicht registriert werden, da die E-Mail Adresse schon registriert ist.',
'verify' => [ 'verify' => [
'text' => "Bitte bestätigen Sie Ihre E-Mail-Abonnement zu :app_name Status-Aktualisierungen.\n:link\nDanke, :app_name", 'text' => "Bitte bestätigen Sie Ihre E-Mail-Abonnement zu :app_name Status-Aktualisierungen.\n:link\nDanke, :app_name",
'html-preheader' => 'Bitte bestätigen Sie Ihre E-Mail-Abonnement zu :app_name Status-Aktualisierungen.', 'html-preheader' => 'Bitte bestätigen Sie Ihre E-Mail-Abonnement zu :app_name Status-Aktualisierungen.',
@@ -88,11 +87,11 @@ return [
'html' => '<p>Ein neuer Vorfall wurde über :app_name berichtet.</p> <p>Danke, :app_name</p>', 'html' => '<p>Ein neuer Vorfall wurde über :app_name berichtet.</p> <p>Danke, :app_name</p>',
], ],
'component' => [ 'component' => [
'subject' => 'Component Status Update', 'subject' => 'Komponent Status Update',
'text' => 'The component :component_name has seen a status change. The component is now at :component_human_status.\nThank you, :app_name', 'text' => 'Der Komponent :component_name hatte eine Status-Änderung. Der Komponent befindet sich nun im :component_human_status.\nDanke, :app_name',
'html-preheader' => 'Component Update from :app_name', 'html-preheader' => 'Komponenten Update von :app_name',
'html' => '<p>The component :component_name has seen a status change. The component is now at :component_human_status.</p><p>Thank you, :app_name</p>', 'html' => '<p>Der Komponent :component_name hatte eine Status-Änderung. Der Komponent befindet sich nun im :component_human_status.</p><p>Danke, :app_name</p>',
'tooltip-title' => 'Subscribe to notifications for :component_name.', 'tooltip-title' => 'Neuigkeiten für :component_name abonnieren.',
], ],
], ],
], ],
@@ -117,15 +116,15 @@ return [
], ],
'system' => [ 'system' => [
'update' => 'There is a newer version of Cachet available. You can learn how to update <a href="https://docs.cachethq.io/docs/updating-cachet">here</a>!', 'update' => 'Es ist eine neuere Version von Cachet verfügbar. Lerne <a href="https://docs.cachethq.io/docs/updating-cachet">hier</a>!, wie du updaten kannst!',
], ],
// Modal // Modal
'modal' => [ 'modal' => [
'close' => 'Close', 'close' => 'Schließen',
'subscribe' => [ 'subscribe' => [
'title' => 'Subscribe to component updates?', 'title' => 'Abonniere die Komponenten-Updates',
'body' => 'Enter your email address to subscribe to updates for this component. If you\'re already subscribed, you\'ll receive emails for this component too.', 'body' => 'Gib deine E-Mail Adresse ein, um Updates für diesen Komponenten zu erhalten. Wenn du bereits abonniert bist, erhälst du schon Updates für diesen Komponenten.',
'button' => 'Abonnieren', 'button' => 'Abonnieren',
], ],
], ],

View File

@@ -31,8 +31,8 @@ return [
'failure' => 'Etwas ist mit dem Vorfall schiefgelaufen.', 'failure' => 'Etwas ist mit dem Vorfall schiefgelaufen.',
], ],
'delete' => [ 'delete' => [
'success' => 'The incident has been deleted and will not show on your status page.', 'success' => 'Der Vorfall wurde gelöscht und wird nicht mehr angezeigt.',
'failure' => 'The incident could not be deleted. Please try again.', 'failure' => 'Der Vorfall konnte nicht gelöscht werden. Bitte versuche es erneut.',
], ],
// Incident templates // Incident templates
@@ -40,7 +40,7 @@ return [
'title' => 'Vorfall Vorlagen', 'title' => 'Vorfall Vorlagen',
'add' => [ 'add' => [
'title' => 'Vorfallvorlage erstellen', 'title' => 'Vorfallvorlage erstellen',
'message' => 'You should add an Incident Template.', 'message' => 'Du solltest eine Vorfall-Vorlage hinzufügen.',
'success' => 'Vorlage erstellt.', 'success' => 'Vorlage erstellt.',
'failure' => 'Etwas ist mit der Vorfallvorlage schiefgelaufen.', 'failure' => 'Etwas ist mit der Vorfallvorlage schiefgelaufen.',
], ],
@@ -50,8 +50,8 @@ return [
'failure' => 'Etwas ist mit dem Updaten der Vorfallvorlage schiefgelaufen', 'failure' => 'Etwas ist mit dem Updaten der Vorfallvorlage schiefgelaufen',
], ],
'delete' => [ 'delete' => [
'success' => 'The tmplate has been deleted.', 'success' => 'Die Vorfall-Vorlage wurde gelöscht.',
'failure' => 'The template could not be deleted. Please try again.', 'failure' => 'Die Vorfall-Vorlage konnte nicht gelöscht werden. Bitte versuche es erneut.',
], ],
], ],
], ],
@@ -59,7 +59,7 @@ return [
// Incident Maintenance // Incident Maintenance
'schedule' => [ 'schedule' => [
'schedule' => 'Planmäßige Wartung', 'schedule' => 'Planmäßige Wartung',
'logged' => '{0} There are no schedules, good work.|You have logged one schedule.|You have reported <strong>:count</strong> schedules.', 'logged' => '{0} Es gibt keine Zeitpläne, gute Arbeit.|Du hast einen Zeitplan geloggt.|Du hast <strong>:count</strong> Zeitpläne gemeldet.',
'scheduled_at' => 'Geplant am :timestamp', 'scheduled_at' => 'Geplant am :timestamp',
'add' => [ 'add' => [
'title' => 'Planmäßige Wartung hinzufügen', 'title' => 'Planmäßige Wartung hinzufügen',
@@ -94,8 +94,8 @@ return [
'failure' => 'Mit der Komponente ist etwas schiefgegangen.', 'failure' => 'Mit der Komponente ist etwas schiefgegangen.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component deleted.', 'success' => 'Die Komponente wurde gelöscht!',
'failure' => 'The Component could not be deleted. Please try again.', 'failure' => 'Die Komponente konnte nicht gelöscht werden. Bitte versuche es erneut.',
], ],
// Component groups // Component groups
@@ -113,8 +113,8 @@ return [
'failure' => 'Mit der Komponentengruppe ist etwas schiefgegangen.', 'failure' => 'Mit der Komponentengruppe ist etwas schiefgegangen.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component Group deleted.', 'success' => 'Die Komponentengruppe wurde gelöscht!',
'failure' => 'The Component Group could not be deleted. Please try again.', 'failure' => 'Die Komponentengruppe konnte nicht gelöscht werden. Bitte versuche es erneut.',
], ],
], ],
], ],
@@ -124,7 +124,7 @@ return [
'metrics' => 'Metriken', 'metrics' => 'Metriken',
'add' => [ 'add' => [
'title' => 'Metrik erstellen', 'title' => 'Metrik erstellen',
'message' => 'You should add a Metric.', 'message' => 'Du solltest eine Metrik hinzufügen.',
'success' => 'Metrik erstellt.', 'success' => 'Metrik erstellt.',
'failure' => 'Mit der Metrik ist etwas schiefgegangen.', 'failure' => 'Mit der Metrik ist etwas schiefgegangen.',
], ],
@@ -134,8 +134,8 @@ return [
'failure' => 'Mit der Metrik ist etwas schiefgegangen.', 'failure' => 'Mit der Metrik ist etwas schiefgegangen.',
], ],
'delete' => [ 'delete' => [
'success' => 'The metric has been deleted and will not show on your status page.', 'success' => 'Die Metrik wurde gelöscht und wird nicht mehr angezeigt.',
'failure' => 'The metric could not be deleted. Please try again.', 'failure' => 'Die Metrik konnte nicht gelöscht werden. Bitte versuche es erneut.',
], ],
], ],
// Subscribers // Subscribers
@@ -178,7 +178,7 @@ return [
], ],
'invite' => [ 'invite' => [
'title' => 'Ein neues Teammitglied einladen', 'title' => 'Ein neues Teammitglied einladen',
'success' => 'Die Benutzer eingeladen.', 'success' => 'Eine Einladung wurde verschickt',
'failure' => 'Mit der Einladung ist etwas schiefgelaufen.', 'failure' => 'Mit der Einladung ist etwas schiefgelaufen.',
], ],
], ],
@@ -235,7 +235,7 @@ return [
// Welcome modal // Welcome modal
'welcome' => [ 'welcome' => [
'welcome' => 'Welcome to your status page!', 'welcome' => 'Willkommen zu Deiner Status Seite!',
'message' => 'Ihre Statusseite ist fast fertig! Vielleicht möchten Sie diese zusätzlichen Einstellungen konfigurieren', 'message' => 'Ihre Statusseite ist fast fertig! Vielleicht möchten Sie diese zusätzlichen Einstellungen konfigurieren',
'close' => 'Gehe einfach direkt zu meinem Dashboard', 'close' => 'Gehe einfach direkt zu meinem Dashboard',
'steps' => [ 'steps' => [

View File

@@ -27,11 +27,11 @@ return [
// Login form fields // Login form fields
'login' => [ 'login' => [
'login' => 'Username or Email', 'login' => 'Username oder E-Mail',
'email' => 'E-Mail', 'email' => 'E-Mail',
'password' => 'Passwort', 'password' => 'Passwort',
'2fauth' => 'Authentifizierungscode', '2fauth' => 'Authentifizierungscode',
'invalid' => 'Invalid username or password', 'invalid' => 'Ungültiger Benutzername oder Passwort',
'invalid-token' => 'Token ist ungültig', 'invalid-token' => 'Token ist ungültig',
'cookies' => 'Sie müssen Cookies aktivieren um sich anzumelden.', 'cookies' => 'Sie müssen Cookies aktivieren um sich anzumelden.',
], ],
@@ -52,7 +52,7 @@ return [
'templates' => [ 'templates' => [
'name' => 'Name', 'name' => 'Name',
'template' => 'Vorlage', 'template' => 'Vorlage',
'twig' => 'Incident Templates can make use of the <a href="http://twig.sensiolabs.org/" target="_blank">Twig</a> templating language.', 'twig' => 'Vorfall Vorlagen können den <a href="http://twig.sensiolabs.org/" target="_blank">Twig</a> Syntax nutzen.',
], ],
], ],
@@ -69,7 +69,7 @@ return [
'groups' => [ 'groups' => [
'name' => 'Name', 'name' => 'Name',
'collapsed' => 'Collapse the group by default?', 'collapsed' => 'Die Gruppe standardmäßig ausblenden?',
], ],
], ],
@@ -85,7 +85,7 @@ return [
'type_sum' => 'Summe', 'type_sum' => 'Summe',
'type_avg' => 'Durchschnitt', 'type_avg' => 'Durchschnitt',
'places' => 'Nachkommastellen', 'places' => 'Nachkommastellen',
'default_view' => 'Default View', 'default_view' => 'Standardansicht',
'points' => [ 'points' => [
'value' => 'Wert', 'value' => 'Wert',

View File

@@ -50,7 +50,7 @@ return [
'in' => 'Der gewählte Wert für :attribute ist ungültig.', 'in' => 'Der gewählte Wert für :attribute ist ungültig.',
'integer' => ':attribute muss eine ganze Zahl sein.', 'integer' => ':attribute muss eine ganze Zahl sein.',
'ip' => ':attribute muss eine gültige IP-Adresse sein.', 'ip' => ':attribute muss eine gültige IP-Adresse sein.',
'json' => 'Das :attribut muss eine gültige JSON-Zeichenfolge sein.', 'json' => ':attribut muss ein gültiger JSON-String sein.',
'max' => [ 'max' => [
'numeric' => ':attribute darf maximal :max sein.', 'numeric' => ':attribute darf maximal :max sein.',
'file' => ':attribute darf maximal :max Kilobytes groß sein.', 'file' => ':attribute darf maximal :max Kilobytes groß sein.',
@@ -69,7 +69,7 @@ return [
'regex' => ':attribute Format ist ungültig.', 'regex' => ':attribute Format ist ungültig.',
'required' => ':attribute muss ausgefüllt sein.', 'required' => ':attribute muss ausgefüllt sein.',
'required_if' => ':attribute muss ausgefüllt sein wenn :other :value ist.', 'required_if' => ':attribute muss ausgefüllt sein wenn :other :value ist.',
'required_unless' => 'The :attribute field is required unless :other is in :values.', 'required_unless' => 'Das :attribute Feld ist erforderlich außer :other hat den Wert :values.',
'required_with' => ':attribute muss angegeben werden wenn :values ausgefüllt wurde.', 'required_with' => ':attribute muss angegeben werden wenn :values ausgefüllt wurde.',
'required_with_all' => ':attribute muss angegeben werden, wenn :values ausgefüllt wurde.', 'required_with_all' => ':attribute muss angegeben werden, wenn :values ausgefüllt wurde.',
'required_without' => ':attribute muss angegeben werden wenn :values nicht ausgefüllt wurde.', 'required_without' => ':attribute muss angegeben werden wenn :values nicht ausgefüllt wurde.',

7
resources/lang/el/cachet.php Normal file → Executable file
View File

@@ -22,11 +22,10 @@ return [
// Incidents // Incidents
'incidents' => [ 'incidents' => [
'none' => 'Nothing to report', 'none' => 'No incidents reported',
'past' => 'Past Incidents', 'past' => 'Past Incidents',
'previous_week' => 'Previous Week', 'previous_week' => 'Previous Week',
'next_week' => 'Next Week', 'next_week' => 'Next Week',
'none' => 'Nothing to report',
'scheduled' => 'Προγραμματισμένη Συντήρηση', 'scheduled' => 'Προγραμματισμένη Συντήρηση',
'scheduled_at' => ', προγραμματισμένη :timestamp', 'scheduled_at' => ', προγραμματισμένη :timestamp',
'status' => [ 'status' => [
@@ -124,8 +123,8 @@ return [
'modal' => [ 'modal' => [
'close' => 'Close', 'close' => 'Close',
'subscribe' => [ 'subscribe' => [
'title' => 'Subscribe to component updates?', 'title' => 'Subscribe to component updates',
'body' => 'Enter your email address to subscribe to updates for this component. If you\'re already subscribed, you\'ll receive emails for this component too.', '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.',
'button' => 'Subscribe', 'button' => 'Subscribe',
], ],
], ],

106
resources/lang/el/dashboard.php Normal file → Executable file
View File

@@ -21,12 +21,12 @@ return [
'incident-create-template' => 'Δημιουργία προτύπου', 'incident-create-template' => 'Δημιουργία προτύπου',
'incident-templates' => 'Πρότυπα Περιστατικών', 'incident-templates' => 'Πρότυπα Περιστατικών',
'add' => [ 'add' => [
'title' => 'Add an Incident', 'title' => 'Report an incident',
'success' => 'Το περιστατικό προστέθηκε.', 'success' => 'Το περιστατικό προστέθηκε.',
'failure' => 'Κάτι πήγε στραβά με την προσθήκη του περιστατικού.', 'failure' => 'Κάτι πήγε στραβά με την προσθήκη του περιστατικού.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit an Incident', 'title' => 'Edit an incident',
'success' => 'Επεξεργασία περιστατικού επιτυχής.', 'success' => 'Επεξεργασία περιστατικού επιτυχής.',
'failure' => 'Κάτι πήγε στραβά με την προσθήκη του περιστατικού.', 'failure' => 'Κάτι πήγε στραβά με την προσθήκη του περιστατικού.',
], ],
@@ -39,8 +39,8 @@ return [
'templates' => [ 'templates' => [
'title' => 'Πρότυπα Περιστατικών', 'title' => 'Πρότυπα Περιστατικών',
'add' => [ 'add' => [
'title' => 'Create an Incident Template', 'title' => 'Create an incident template',
'message' => 'You should add an Incident Template.', 'message' => 'You should add an incident template.',
'success' => 'Επιτυχής δημιουργία προτύπου.', 'success' => 'Επιτυχής δημιουργία προτύπου.',
'failure' => 'Κάτι πήγε στραβά με την δημιουργία προτύπου.', 'failure' => 'Κάτι πήγε στραβά με την δημιουργία προτύπου.',
], ],
@@ -50,8 +50,8 @@ return [
'failure' => 'Κάτι πήγε στραβά με την ενημέρωση του προτύπου', 'failure' => 'Κάτι πήγε στραβά με την ενημέρωση του προτύπου',
], ],
'delete' => [ 'delete' => [
'success' => 'The tmplate has been deleted.', 'success' => 'The incident template has been deleted.',
'failure' => 'The template could not be deleted. Please try again.', 'failure' => 'The incident template could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -67,13 +67,13 @@ return [
'failure' => 'Κάτι πήγε στραβά με την προσθήκη του προγραμματισμού.', 'failure' => 'Κάτι πήγε στραβά με την προσθήκη του προγραμματισμού.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit Scheduled Maintenance', 'title' => 'Edit scheduled maintenance',
'success' => 'Schedule has been updated!', 'success' => 'Scheduled maintenance has been edited!',
'failure' => 'Something went wrong editing the schedule.', 'failure' => 'The scheduled maintenance could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The schedule has been deleted and will not show on your status page.', 'success' => 'Scheduled maintenance has been deleted!',
'failure' => 'The schedule could not be deleted. Please try again.', 'failure' => 'The scheduled maintenance could not be deleted. Please try again.',
], ],
], ],
@@ -83,19 +83,19 @@ return [
'component_statuses' => 'Component Statuses', 'component_statuses' => 'Component Statuses',
'listed_group' => 'Grouped under :name', 'listed_group' => 'Grouped under :name',
'add' => [ 'add' => [
'title' => 'Add a Component', 'title' => 'Add a component',
'message' => 'You should add a component.', 'message' => 'You should add a component.',
'success' => 'Component created.', 'success' => 'Component has been added!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The component could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Component', 'title' => 'Edit a component',
'success' => 'Component updated.', 'success' => 'Component has been updated!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The component could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component deleted.', 'success' => 'The component has been deleted!',
'failure' => 'The Component could not be deleted. Please try again.', 'failure' => 'The component could not be deleted. Please try again.',
], ],
// Component groups // Component groups
@@ -103,18 +103,18 @@ return [
'groups' => 'Component group|Component groups', 'groups' => 'Component group|Component groups',
'no_components' => 'You should add a component group.', 'no_components' => 'You should add a component group.',
'add' => [ 'add' => [
'title' => 'Add a Component Group', 'title' => 'Add a component group',
'success' => 'Component group added.', 'success' => 'Component group has been added!',
'failure' => 'Something went wrong with the component group.', 'failure' => 'The component group could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Component Group', 'title' => 'Edit a component group',
'success' => 'Component group updated.', 'success' => 'Component group has been edited!',
'failure' => 'Something went wrong with the component group.', 'failure' => 'The component group could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component Group deleted.', 'success' => 'Component group has been deleted!',
'failure' => 'The Component Group could not be deleted. Please try again.', 'failure' => 'The component group could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -123,18 +123,18 @@ return [
'metrics' => [ 'metrics' => [
'metrics' => 'Metrics', 'metrics' => 'Metrics',
'add' => [ 'add' => [
'title' => 'Create a Metric', 'title' => 'Create a metric',
'message' => 'You should add a Metric.', 'message' => 'You should add a metric.',
'success' => 'Metric created.', 'success' => 'Metric has been added!',
'failure' => 'Something went wrong with the metric.', 'failure' => 'The metric could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Metric', 'title' => 'Edit a metric',
'success' => 'Metric updated.', 'success' => 'Metric has been updated!',
'failure' => 'Something went wrong with the metric.', 'failure' => 'The metric could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The metric has been deleted and will not show on your status page.', '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.', 'failure' => 'The metric could not be deleted. Please try again.',
], ],
], ],
@@ -143,16 +143,16 @@ return [
'subscribers' => 'Subscribers', 'subscribers' => 'Subscribers',
'description' => 'Subscribers will receive email updates when incidents are created.', 'description' => 'Subscribers will receive email updates when incidents are created.',
'verified' => 'Verified', 'verified' => 'Verified',
'not_verified' => 'Not Verified', 'not_verified' => 'Not verified',
'add' => [ 'add' => [
'title' => 'Add a New Subscriber', 'title' => 'Add a new subscriber',
'success' => 'Subscriber added.', 'success' => 'Subscriber has been added!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The subscriber could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Update Subscriber', 'title' => 'Update subscriber',
'success' => 'Subscriber updated.', 'success' => 'Subscriber has been updated!',
'failure' => 'Something went wrong when updating.', 'failure' => 'The subscriber could not be updated. Please try again.',
], ],
], ],
@@ -163,23 +163,23 @@ return [
'profile' => 'Profile', 'profile' => 'Profile',
'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.', 'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.',
'add' => [ 'add' => [
'title' => 'Add a New Team Member', 'title' => 'Add a new team member',
'success' => 'Team member added.', 'success' => 'Team member has been added!',
'failure' => 'Something went wrong with the user.', 'failure' => 'The team member could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Update Profile', 'title' => 'Update profile',
'success' => 'Profile updated.', 'success' => 'Team member has been updated!',
'failure' => 'Something went wrong when updating.', 'failure' => 'The team member could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'User deleted.', 'success' => 'Team member has been deleted and will no longer have access to the dashboard!',
'failure' => 'Something went wrong when deleting this user.', 'failure' => 'The team member could not be added. Please try again.',
], ],
'invite' => [ 'invite' => [
'title' => 'Invite a New Team Member', 'title' => 'Invite a new team member',
'success' => 'The users invited.', 'success' => 'An invite has been sent',
'failure' => 'Something went wrong with the invite.', 'failure' => 'The invite could not be sent. Please try again.',
], ],
], ],

48
resources/lang/el/forms.php Normal file → Executable file
View File

@@ -45,8 +45,8 @@ return [
'message-help' => 'You may also use Markdown.', 'message-help' => 'You may also use Markdown.',
'scheduled_at' => 'When to schedule the maintenance for?', 'scheduled_at' => 'When to schedule the maintenance for?',
'incident_time' => 'When did this incident occur?', 'incident_time' => 'When did this incident occur?',
'notify_subscribers' => 'Notify Subscribers?', 'notify_subscribers' => 'Notify subscribers?',
'visibility' => 'Incident Visibility', 'visibility' => 'Incident visibility',
'public' => 'Viewable by public', 'public' => 'Viewable by public',
'logged_in_only' => 'Only visible to logged in users', 'logged_in_only' => 'Only visible to logged in users',
'templates' => [ 'templates' => [
@@ -80,12 +80,12 @@ return [
'description' => 'Description', 'description' => 'Description',
'description-help' => 'You may also use Markdown.', 'description-help' => 'You may also use Markdown.',
'display-chart' => 'Display chart on status page?', 'display-chart' => 'Display chart on status page?',
'default-value' => 'Default Value', 'default-value' => 'Default value',
'calc_type' => 'Calculation of Metrics', 'calc_type' => 'Calculation of metrics',
'type_sum' => 'Sum', 'type_sum' => 'Sum',
'type_avg' => 'Μέσος όρος', 'type_avg' => 'Μέσος όρος',
'places' => 'Decimal Places', 'places' => 'Decimal places',
'default_view' => 'Default View', 'default_view' => 'Default view',
'points' => [ 'points' => [
'value' => 'Value', 'value' => 'Value',
@@ -101,7 +101,7 @@ return [
'display-graphs' => 'Display graphs on status page?', 'display-graphs' => 'Display graphs on status page?',
'about-this-page' => 'About this page', 'about-this-page' => 'About this page',
'days-of-incidents' => 'How many days of incidents to show?', 'days-of-incidents' => 'How many days of incidents to show?',
'banner' => 'Banner Image', 'banner' => 'Banner image',
'banner-help' => "It's recommended that you upload files no bigger than 930px wide .", 'banner-help' => "It's recommended that you upload files no bigger than 930px wide .",
'subscribers' => 'Allow people to signup to email notifications?', 'subscribers' => 'Allow people to signup to email notifications?',
], ],
@@ -112,32 +112,32 @@ return [
'analytics_piwik_siteid' => 'Piwik\'s site id', 'analytics_piwik_siteid' => 'Piwik\'s site id',
], ],
'localization' => [ 'localization' => [
'site-timezone' => 'Site Timezone', 'site-timezone' => 'Site timezone',
'site-locale' => 'Site Language', 'site-locale' => 'Site language',
'date-format' => 'Date Format', 'date-format' => 'Date format',
'incident-date-format' => 'Incident Timestamp Format', 'incident-date-format' => 'Incident timestamp format',
], ],
'security' => [ 'security' => [
'allowed-domains' => 'Allowed Domains', 'allowed-domains' => 'Allowed domains',
'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.', 'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.',
], ],
'stylesheet' => [ 'stylesheet' => [
'custom-css' => 'Custom Stylesheet', 'custom-css' => 'Custom stylesheet',
], ],
'theme' => [ 'theme' => [
'background-color' => 'Background Color', 'background-color' => 'Background color',
'background-fills' => 'Background Fills (Components, Incidents, Footer)', 'background-fills' => 'Background fills (components, incidents, footer)',
'banner-background-color' => 'Banner Background Color', 'banner-background-color' => 'Banner background color',
'banner-padding' => 'Banner Padding', 'banner-padding' => 'Banner padding',
'fullwidth-banner' => 'Enable fullwidth banner?', 'fullwidth-banner' => 'Enable fullwidth banner?',
'text-color' => 'Text Color', 'text-color' => 'Text color',
'dashboard-login' => 'Show dashboard button in the footer?', 'dashboard-login' => 'Show dashboard button in the footer?',
'reds' => 'Red (Used for errors)', 'reds' => 'Red (used for errors)',
'blues' => 'Blue (Used for information)', 'blues' => 'Blue (used for information)',
'greens' => 'Green (Used for success)', 'greens' => 'Green (used for success)',
'yellows' => 'Yellow (Used for alerts)', 'yellows' => 'Yellow (used for alerts)',
'oranges' => 'Orange (Used for notices)', 'oranges' => 'Orange (used for notices)',
'metrics' => 'Metrics Fill', 'metrics' => 'Metrics fill',
'links' => 'Links', 'links' => 'Links',
], ],
], ],

0
resources/lang/el/pagination.php Normal file → Executable file
View File

8
resources/lang/el/setup.php Normal file → Executable file
View File

@@ -12,11 +12,11 @@
return [ return [
'setup' => 'Εγκατάσταση', 'setup' => 'Εγκατάσταση',
'title' => 'Εγκατάσταση του Cachet', 'title' => 'Εγκατάσταση του Cachet',
'service_details' => 'Service Details', 'service_details' => 'Service details',
'env_setup' => 'Environment Setup', 'env_setup' => 'Environment setup',
'status_page_setup' => 'Status Page Setup', 'status_page_setup' => 'Status page setup',
'show_support' => 'Show support for Cachet?', 'show_support' => 'Show support for Cachet?',
'admin_account' => 'Administrator Account', 'admin_account' => 'Administrator account',
'complete_setup' => 'Ολοκλήρωση εγκατάστασης', 'complete_setup' => 'Ολοκλήρωση εγκατάστασης',
'completed' => 'Cachet has been configured successfully!', 'completed' => 'Cachet has been configured successfully!',
'finish_setup' => 'Go to dashboard', 'finish_setup' => 'Go to dashboard',

0
resources/lang/el/validation.php Normal file → Executable file
View File

View File

@@ -22,11 +22,10 @@ return [
// Incidents // Incidents
'incidents' => [ 'incidents' => [
'none' => 'crwdns541:0crwdne541:0', 'none' => 'crwdns657:0crwdne657:0',
'past' => 'crwdns542:0crwdne542:0', 'past' => 'crwdns542:0crwdne542:0',
'previous_week' => 'crwdns543:0crwdne543:0', 'previous_week' => 'crwdns543:0crwdne543:0',
'next_week' => 'crwdns544:0crwdne544:0', 'next_week' => 'crwdns544:0crwdne544:0',
'none' => 'crwdns541:0crwdne541:0',
'scheduled' => 'crwdns438:0crwdne438:0', 'scheduled' => 'crwdns438:0crwdne438:0',
'scheduled_at' => 'crwdns439:0crwdne439:0', 'scheduled_at' => 'crwdns439:0crwdne439:0',
'status' => [ 'status' => [
@@ -125,7 +124,7 @@ return [
'close' => 'crwdns633:0crwdne633:0', 'close' => 'crwdns633:0crwdne633:0',
'subscribe' => [ 'subscribe' => [
'title' => 'crwdns634:0crwdne634:0', 'title' => 'crwdns634:0crwdne634:0',
'body' => 'crwdns635:0crwdne635:0', 'body' => 'crwdns658:0crwdne658:0',
'button' => 'crwdns636:0crwdne636:0', 'button' => 'crwdns636:0crwdne636:0',
], ],
], ],

View File

@@ -22,13 +22,13 @@ return [
'incident-templates' => 'Incident Templates', 'incident-templates' => 'Incident Templates',
'add' => [ 'add' => [
'title' => 'Report an incident', 'title' => 'Report an incident',
'success' => 'Incident reported.', 'success' => 'Incident added.',
'failure' => 'The incident could not be reported. Please try again.', 'failure' => 'Something went wrong with the incident.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit an incident', 'title' => 'Edit an incident',
'success' => 'Incident updated.', 'success' => 'Incident updated.',
'failure' => 'The incident could not be edited. Please try again.', 'failure' => 'Something went wrong with the incident.',
], ],
'delete' => [ 'delete' => [
'success' => 'The incident has been deleted and will not show on your status page.', 'success' => 'The incident has been deleted and will not show on your status page.',
@@ -41,13 +41,13 @@ return [
'add' => [ 'add' => [
'title' => 'Create an incident template', 'title' => 'Create an incident template',
'message' => 'You should add an incident template.', 'message' => 'You should add an incident template.',
'success' => 'The incdent template has been created!', 'success' => 'Template created.',
'failure' => 'The incident template could not be created. Please try again.', 'failure' => 'Something went wrong with the incident template.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit Template', 'title' => 'Edit Template',
'success' => 'The incdent template has been updated!', 'success' => 'Template has been updated!',
'failure' => 'The incident template could not be edited. Please try again.', 'failure' => 'Something went wrong updating the incident template',
], ],
'delete' => [ 'delete' => [
'success' => 'The incident template has been deleted.', 'success' => 'The incident template has been deleted.',
@@ -62,18 +62,18 @@ return [
'logged' => '{0} There are no schedules, good work.|You have logged one schedule.|You have reported <strong>:count</strong> schedules.', 'logged' => '{0} There are no schedules, good work.|You have logged one schedule.|You have reported <strong>:count</strong> schedules.',
'scheduled_at' => 'Scheduled at :timestamp', 'scheduled_at' => 'Scheduled at :timestamp',
'add' => [ 'add' => [
'title' => 'Add scheduled maintenance', 'title' => 'Add Scheduled Maintenance',
'success' => 'Scheduled maintenance has been reported!', 'success' => 'Schedule added.',
'failure' => 'The scheduled maintenance could not be reported. Please try again.', 'failure' => 'Something went wrong adding the schedule.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit scheduled maintenance', 'title' => 'Edit Scheduled Maintenance',
'success' => 'Scheduled maintenance has been edited!', 'success' => 'Schedule has been updated!',
'failure' => 'The scheduled maintenance could not be edited. Please try again.', 'failure' => 'Something went wrong editing the schedule.',
], ],
'delete' => [ 'delete' => [
'success' => 'Scheduled maintenance has been deleted!', 'success' => 'The schedule has been deleted and will not show on your status page.',
'failure' => 'The scheduled maintenance could not be deleted. Please try again.', 'failure' => 'The schedule could not be deleted. Please try again.',
], ],
], ],
@@ -85,13 +85,13 @@ return [
'add' => [ 'add' => [
'title' => 'Add a component', 'title' => 'Add a component',
'message' => 'You should add a component.', 'message' => 'You should add a component.',
'success' => 'Component has been added!', 'success' => 'Component created.',
'failure' => 'The component could not be added. Please try again.', 'failure' => 'Something went wrong with the component.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a component', 'title' => 'Edit a component',
'success' => 'Component has been updated!', 'success' => 'Component updated.',
'failure' => 'The component could not be updated. Please try again.', 'failure' => 'Something went wrong with the component.',
], ],
'delete' => [ 'delete' => [
'success' => 'The component has been deleted!', 'success' => 'The component has been deleted!',
@@ -104,13 +104,13 @@ return [
'no_components' => 'You should add a component group.', 'no_components' => 'You should add a component group.',
'add' => [ 'add' => [
'title' => 'Add a component group', 'title' => 'Add a component group',
'success' => 'Component group has been added!', 'success' => 'Component group added.',
'failure' => 'The component group could not be added. Please try again.', 'failure' => 'Something went wrong with the component group.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a component group', 'title' => 'Edit a component group',
'success' => 'Component group has been edited!', 'success' => 'Component group updated.',
'failure' => 'The component group could not be edited. Please try again.', 'failure' => 'Something went wrong with the component group.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component group has been deleted!', 'success' => 'Component group has been deleted!',
@@ -125,13 +125,13 @@ return [
'add' => [ 'add' => [
'title' => 'Create a metric', 'title' => 'Create a metric',
'message' => 'You should add a metric.', 'message' => 'You should add a metric.',
'success' => 'Metric has been added!', 'success' => 'Metric created.',
'failure' => 'The metric could not be added. Please try again.', 'failure' => 'Something went wrong with the metric.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a metric', 'title' => 'Edit a metric',
'success' => 'Metric has been updated!', 'success' => 'Metric updated.',
'failure' => 'The metric could not be updated. Please try again.', 'failure' => 'Something went wrong with the metric.',
], ],
'delete' => [ 'delete' => [
'success' => 'The metric has been deleted and will no longer display on your status page.', 'success' => 'The metric has been deleted and will no longer display on your status page.',
@@ -147,12 +147,12 @@ return [
'add' => [ 'add' => [
'title' => 'Add a new subscriber', 'title' => 'Add a new subscriber',
'success' => 'Subscriber has been added!', 'success' => 'Subscriber has been added!',
'failure' => 'The subscriber could not be added. Please try again.', 'failure' => 'Something went wrong with the component.',
], ],
'edit' => [ 'edit' => [
'title' => 'Update subscriber', 'title' => 'Update subscriber',
'success' => 'Subscriber has been updated!', 'success' => 'Subscriber has been updated!',
'failure' => 'The subscriber could not be updated. Please try again.', 'failure' => 'Something went wrong when updating.',
], ],
], ],
@@ -164,13 +164,13 @@ return [
'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.', 'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.',
'add' => [ 'add' => [
'title' => 'Add a new team member', 'title' => 'Add a new team member',
'success' => 'Team member has been added!', 'success' => 'Team member added.',
'failure' => 'The team member could not be added. Please try again.', 'failure' => 'The team member could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Update profile', 'title' => 'Update profile',
'success' => 'Team member has been updated!', 'success' => 'Profile updated.',
'failure' => 'The team member could not be updated. Please try again.', 'failure' => 'Something went wrong when updating.',
], ],
'delete' => [ 'delete' => [
'success' => 'Team member has been deleted and will no longer have access to the dashboard!', 'success' => 'Team member has been deleted and will no longer have access to the dashboard!',

View File

@@ -46,7 +46,7 @@ return [
'scheduled_at' => 'When to schedule the maintenance for?', 'scheduled_at' => 'When to schedule the maintenance for?',
'incident_time' => 'When did this incident occur?', 'incident_time' => 'When did this incident occur?',
'notify_subscribers' => 'Notify subscribers?', 'notify_subscribers' => 'Notify subscribers?',
'visibility' => 'Incident visibility', 'visibility' => 'Incident Visibility',
'public' => 'Viewable by public', 'public' => 'Viewable by public',
'logged_in_only' => 'Only visible to logged in users', 'logged_in_only' => 'Only visible to logged in users',
'templates' => [ 'templates' => [
@@ -96,12 +96,12 @@ return [
'settings' => [ 'settings' => [
/// Application setup /// Application setup
'app-setup' => [ 'app-setup' => [
'site-name' => 'Site name', 'site-name' => 'Site Name',
'site-url' => 'Site URL', 'site-url' => 'Site URL',
'display-graphs' => 'Display graphs on status page?', 'display-graphs' => 'Display graphs on status page?',
'about-this-page' => 'About this page', 'about-this-page' => 'About this page',
'days-of-incidents' => 'How many days of incidents to show?', 'days-of-incidents' => 'How many days of incidents to show?',
'banner' => 'Banner image', 'banner' => 'Banner Image',
'banner-help' => "It's recommended that you upload files no bigger than 930px wide .", 'banner-help' => "It's recommended that you upload files no bigger than 930px wide .",
'subscribers' => 'Allow people to signup to email notifications?', 'subscribers' => 'Allow people to signup to email notifications?',
], ],
@@ -122,15 +122,15 @@ return [
'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.', 'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.',
], ],
'stylesheet' => [ 'stylesheet' => [
'custom-css' => 'Custom stylesheet', 'custom-css' => 'Custom Stylesheet',
], ],
'theme' => [ 'theme' => [
'background-color' => 'Background color', 'background-color' => 'Background Color',
'background-fills' => 'Background fills (components, incidents, footer)', 'background-fills' => 'Background fills (components, incidents, footer)',
'banner-background-color' => 'Banner background color', 'banner-background-color' => 'Banner background color',
'banner-padding' => 'Banner padding', 'banner-padding' => 'Banner padding',
'fullwidth-banner' => 'Enable fullwidth banner?', 'fullwidth-banner' => 'Enable fullwidth banner?',
'text-color' => 'Text color', 'text-color' => 'Text Color',
'dashboard-login' => 'Show dashboard button in the footer?', 'dashboard-login' => 'Show dashboard button in the footer?',
'reds' => 'Red (used for errors)', 'reds' => 'Red (used for errors)',
'blues' => 'Blue (used for information)', 'blues' => 'Blue (used for information)',

View File

@@ -12,12 +12,12 @@
return [ return [
'setup' => 'Setup', 'setup' => 'Setup',
'title' => 'Setup Cachet', 'title' => 'Setup Cachet',
'service_details' => 'Service details', 'service_details' => 'Service Details',
'env_setup' => 'Environment setup', 'env_setup' => 'Environment Setup',
'status_page_setup' => 'Status page setup', 'status_page_setup' => 'Status Page Setup',
'show_support' => 'Show support for Cachet?', 'show_support' => 'Show support for Cachet?',
'admin_account' => 'Administrator account', 'admin_account' => 'Administrator Account',
'complete_setup' => 'Complete setup', 'complete_setup' => 'Complete Setup',
'completed' => 'Cachet has been configured successfully!', 'completed' => 'Cachet has been configured successfully!',
'finish_setup' => 'Go to dashboard', 'finish_setup' => 'Go to dashboard',
]; ];

View File

@@ -22,11 +22,10 @@ return [
// Incidents // Incidents
'incidents' => [ 'incidents' => [
'none' => 'Keine Vorfälle berichtet.', 'none' => 'Ningún incidente reportado',
'past' => 'Vergangene Vorfälle', 'past' => 'Vergangene Vorfälle',
'previous_week' => 'Vorherige Woche', 'previous_week' => 'Vorherige Woche',
'next_week' => 'Nächste Woche', 'next_week' => 'Nächste Woche',
'none' => 'Keine Vorfälle berichtet.',
'scheduled' => 'Geplante Wartungen', 'scheduled' => 'Geplante Wartungen',
'scheduled_at' => ', geplant :timestamp', 'scheduled_at' => ', geplant :timestamp',
'status' => [ 'status' => [
@@ -40,9 +39,9 @@ return [
// Service Status // Service Status
'service' => [ 'service' => [
'good' => '[0,1] System operational|[2,Inf] All systems are operational', 'good' => '[0,1] Sistema operativo | [2,Inf] Todos los sistemas están operativos',
'bad' => '[0,1] The system is currently experiencing issues|[2,Inf] Some systems are experiencing issues', 'bad' => '[0,1] El sistema está actualmente experimentando problemas | [2,Inf] Algunos sistemas están experimentando problemas',
'major' => '[0,1] The service experiencing a major outage|[2,Inf] Some systems are experiencing a major outage', 'major' => '[0,1] El servicio está experimentando una interrupción mayor | [2, Inf] Algunos sistemas están experimentando una interrupción mayor',
], ],
'api' => [ 'api' => [
@@ -53,7 +52,7 @@ return [
// Metrics // Metrics
'metrics' => [ 'metrics' => [
'filter' => [ 'filter' => [
'last_hour' => 'Last Hour', 'last_hour' => 'Última hora',
'hourly' => 'Letzte 12 Stunden', 'hourly' => 'Letzte 12 Stunden',
'weekly' => 'Wöchentlich', 'weekly' => 'Wöchentlich',
'monthly' => 'Monatlich', 'monthly' => 'Monatlich',
@@ -71,7 +70,7 @@ return [
'unsubscribe' => 'Von E-Mail-Updates deabonnieren.', 'unsubscribe' => 'Von E-Mail-Updates deabonnieren.',
'unsubscribed' => 'Ihre E-Mail-Abonnement wurde gekündigt.', 'unsubscribed' => 'Ihre E-Mail-Abonnement wurde gekündigt.',
'failure' => 'Etwas ist mit dem Abonnement schief gelaufen.', 'failure' => 'Etwas ist mit dem Abonnement schief gelaufen.',
'already-subscribed' => 'Cannot subscribe :email because they\'re already subscribed.', 'already-subscribed' => 'No se puede suscribir :email porque ya esta suscripto.',
'verify' => [ 'verify' => [
'text' => "Bitte bestätigen Sie Ihre E-Mail-Abonnement zu :app_name Status-Aktualisierungen.\n:link\nDanke, :app_name", 'text' => "Bitte bestätigen Sie Ihre E-Mail-Abonnement zu :app_name Status-Aktualisierungen.\n:link\nDanke, :app_name",
'html-preheader' => 'Bitte bestätigen Sie Ihre E-Mail-Abonnement zu :app_name Status-Aktualisierungen.', 'html-preheader' => 'Bitte bestätigen Sie Ihre E-Mail-Abonnement zu :app_name Status-Aktualisierungen.',
@@ -88,11 +87,11 @@ return [
'html' => '<p>Ein neuer Vorfall wurde über :app_name berichtet.</p> <p>Danke, :app_name</p>', 'html' => '<p>Ein neuer Vorfall wurde über :app_name berichtet.</p> <p>Danke, :app_name</p>',
], ],
'component' => [ 'component' => [
'subject' => 'Component Status Update', 'subject' => 'Actualización de estado del componente',
'text' => 'The component :component_name has seen a status change. The component is now at :component_human_status.\nThank you, :app_name', 'text' => 'El componente :component_name ha cambiado de estado. El componente está ahora :component_human_status.\nGracias, :app_name',
'html-preheader' => 'Component Update from :app_name', 'html-preheader' => 'Actualización del componente de :app_name',
'html' => '<p>The component :component_name has seen a status change. The component is now at :component_human_status.</p><p>Thank you, :app_name</p>', 'html' => '<p>El componente :component_name ha cambiado de estado. El componente ahora está :component_human_status.</p><p>Gracias, :app_name</p>',
'tooltip-title' => 'Subscribe to notifications for :component_name.', 'tooltip-title' => 'Subscribirse a las notificaciones de :component_name.',
], ],
], ],
], ],
@@ -102,7 +101,7 @@ return [
'invite' => [ 'invite' => [
'text' => "Te han invitado a la página de estado del equipo de :app_name, para registrarte sigue este enlace.\n:link\nGracias, :app_name", 'text' => "Te han invitado a la página de estado del equipo de :app_name, para registrarte sigue este enlace.\n:link\nGracias, :app_name",
'html-preheader' => 'Te han invitado al equipo de :app_name.', 'html-preheader' => 'Te han invitado al equipo de :app_name.',
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>', 'html' => '<p>Has sido invitado a la página de estado del equipo :app_name, para inscribirte sigue el siguiente enlace.</p><p><a href=":link">:link</a></p><p>Gracias, :app_name</p>',
], ],
], ],
], ],
@@ -117,15 +116,15 @@ return [
], ],
'system' => [ 'system' => [
'update' => 'There is a newer version of Cachet available. You can learn how to update <a href="https://docs.cachethq.io/docs/updating-cachet">here</a>!', 'update' => 'Hay disponible una versión de Cachet más nueva. Puedes aprender sobre cómo actualizarla <a href="https://docs.cachethq.io/docs/updating-cachet">aquí</a>!',
], ],
// Modal // Modal
'modal' => [ 'modal' => [
'close' => 'Close', 'close' => 'Cerrar',
'subscribe' => [ 'subscribe' => [
'title' => 'Subscribe to component updates?', 'title' => 'Subscribirse a actualizaciones de componentes',
'body' => 'Enter your email address to subscribe to updates for this component. If you\'re already subscribed, you\'ll receive emails for this component too.', 'body' => 'Introduce tu dirección de correo electrónico para subscribirte a las actualizaciones de este componente. Si ya estás subscrito, ya recibirás los correos electrónicos para este componente.',
'button' => 'Abonnieren', 'button' => 'Abonnieren',
], ],
], ],

View File

@@ -31,8 +31,8 @@ return [
'failure' => 'Algo salió mal con el incidente.', 'failure' => 'Algo salió mal con el incidente.',
], ],
'delete' => [ 'delete' => [
'success' => 'The incident has been deleted and will not show on your status page.', 'success' => 'El incidente se ha eliminado y no se mostrará en tu página de estado.',
'failure' => 'The incident could not be deleted. Please try again.', 'failure' => 'El incidente no se pudo eliminar. Por favor, inténtalo de nuevo.',
], ],
// Incident templates // Incident templates
@@ -40,7 +40,7 @@ return [
'title' => 'Plantillas de incidente', 'title' => 'Plantillas de incidente',
'add' => [ 'add' => [
'title' => 'Vorfallvorlage erstellen', 'title' => 'Vorfallvorlage erstellen',
'message' => 'You should add an Incident Template.', 'message' => 'Deberías añadir una plantilla de incidente.',
'success' => 'Vorlage erstellt.', 'success' => 'Vorlage erstellt.',
'failure' => 'Etwas ist mit der Vorfallvorlage schiefgelaufen.', 'failure' => 'Etwas ist mit der Vorfallvorlage schiefgelaufen.',
], ],
@@ -50,8 +50,8 @@ return [
'failure' => 'Etwas ist mit dem Updaten der Vorfallvorlage schiefgelaufen', 'failure' => 'Etwas ist mit dem Updaten der Vorfallvorlage schiefgelaufen',
], ],
'delete' => [ 'delete' => [
'success' => 'The tmplate has been deleted.', 'success' => 'La plantilla de incidente se ha eliminado.',
'failure' => 'The template could not be deleted. Please try again.', 'failure' => 'La plantilla de incidente no se pudo eliminar. Por favor, inténtalo de nuevo.',
], ],
], ],
], ],
@@ -59,7 +59,7 @@ return [
// Incident Maintenance // Incident Maintenance
'schedule' => [ 'schedule' => [
'schedule' => 'Geplante Wartungen', 'schedule' => 'Geplante Wartungen',
'logged' => '{0} There are no schedules, good work.|You have logged one schedule.|You have reported <strong>:count</strong> schedules.', 'logged' => '{0} No hay planificaciones, buen trabajo.|Has registrado una planificación.|Has registrado <strong>:count</strong> planificaciones.',
'scheduled_at' => 'Geplant am :timestamp', 'scheduled_at' => 'Geplant am :timestamp',
'add' => [ 'add' => [
'title' => 'Planmäßige Wartung hinzufügen', 'title' => 'Planmäßige Wartung hinzufügen',
@@ -94,8 +94,8 @@ return [
'failure' => 'Algo salió mal con el componente.', 'failure' => 'Algo salió mal con el componente.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component deleted.', 'success' => 'El componente se ha eliminado!',
'failure' => 'The Component could not be deleted. Please try again.', 'failure' => 'El componente no se pudo eliminar. Por favor, inténtalo de nuevo.',
], ],
// Component groups // Component groups
@@ -113,8 +113,8 @@ return [
'failure' => 'Mit der Komponentengruppe ist etwas schiefgegangen.', 'failure' => 'Mit der Komponentengruppe ist etwas schiefgegangen.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component Group deleted.', 'success' => 'El grupo de componentes se ha eliminado!',
'failure' => 'The Component Group could not be deleted. Please try again.', 'failure' => 'El grupo de componentes no se pudo eliminar. Por favor, inténtalo de nuevo.',
], ],
], ],
], ],
@@ -124,7 +124,7 @@ return [
'metrics' => 'Metriken', 'metrics' => 'Metriken',
'add' => [ 'add' => [
'title' => 'Metrik erstellen', 'title' => 'Metrik erstellen',
'message' => 'You should add a Metric.', 'message' => 'Deberías añadir una métrica.',
'success' => 'Metrik erstellt.', 'success' => 'Metrik erstellt.',
'failure' => 'Mit der Metrik ist etwas schiefgegangen.', 'failure' => 'Mit der Metrik ist etwas schiefgegangen.',
], ],
@@ -134,8 +134,8 @@ return [
'failure' => 'Mit der Metrik ist etwas schiefgegangen.', 'failure' => 'Mit der Metrik ist etwas schiefgegangen.',
], ],
'delete' => [ 'delete' => [
'success' => 'The metric has been deleted and will not show on your status page.', 'success' => 'La métrica se ha eliminado y no se mostrará más en tu página de estado.',
'failure' => 'The metric could not be deleted. Please try again.', 'failure' => 'La métrica no se pudo eliminar. Por favor, inténtalo de nuevo.',
], ],
], ],
// Subscribers // Subscribers
@@ -178,7 +178,7 @@ return [
], ],
'invite' => [ 'invite' => [
'title' => 'Invitar a un nuevo miembro al equipo', 'title' => 'Invitar a un nuevo miembro al equipo',
'success' => 'Los usuarios invitados.', 'success' => 'Se ha enviado una invitación',
'failure' => 'Algo salió mal en la invitación.', 'failure' => 'Algo salió mal en la invitación.',
], ],
], ],
@@ -235,7 +235,7 @@ return [
// Welcome modal // Welcome modal
'welcome' => [ 'welcome' => [
'welcome' => 'Welcome to your status page!', 'welcome' => 'Bienvenido a tu página de estado!',
'message' => 'Ihre Statusseite ist fast fertig! Vielleicht möchten Sie diese zusätzlichen Einstellungen konfigurieren', 'message' => 'Ihre Statusseite ist fast fertig! Vielleicht möchten Sie diese zusätzlichen Einstellungen konfigurieren',
'close' => 'Gehe einfach direkt zu meinem Dashboard', 'close' => 'Gehe einfach direkt zu meinem Dashboard',
'steps' => [ 'steps' => [

View File

@@ -27,11 +27,11 @@ return [
// Login form fields // Login form fields
'login' => [ 'login' => [
'login' => 'Username or Email', 'login' => 'Nombre de usuario o dirección de correo electrónico',
'email' => 'Correo electrónico', 'email' => 'Correo electrónico',
'password' => 'Contraseña', 'password' => 'Contraseña',
'2fauth' => 'Authentifizierungscode', '2fauth' => 'Authentifizierungscode',
'invalid' => 'Invalid username or password', 'invalid' => 'Nombre de usuario o contraseña incorrectos',
'invalid-token' => 'Token ist ungültig', 'invalid-token' => 'Token ist ungültig',
'cookies' => 'Sie müssen Cookies aktivieren um sich anzumelden.', 'cookies' => 'Sie müssen Cookies aktivieren um sich anzumelden.',
], ],
@@ -52,7 +52,7 @@ return [
'templates' => [ 'templates' => [
'name' => 'Nombre', 'name' => 'Nombre',
'template' => 'Vorlage', 'template' => 'Vorlage',
'twig' => 'Incident Templates can make use of the <a href="http://twig.sensiolabs.org/" target="_blank">Twig</a> templating language.', 'twig' => 'Las plantillas de incidentes pueden hacer uso del lenguaje de plantillas <a href="http://twig.sensiolabs.org/" target="_blank">Twig</a>.',
], ],
], ],
@@ -69,7 +69,7 @@ return [
'groups' => [ 'groups' => [
'name' => 'Nombre', 'name' => 'Nombre',
'collapsed' => 'Collapse the group by default?', 'collapsed' => 'Por defecto, ¿mostrar el grupo contraído?',
], ],
], ],
@@ -84,8 +84,8 @@ return [
'calc_type' => 'Berechnung der Metrik', 'calc_type' => 'Berechnung der Metrik',
'type_sum' => 'Summe', 'type_sum' => 'Summe',
'type_avg' => 'Durchschnitt', 'type_avg' => 'Durchschnitt',
'places' => 'Decimal Places', 'places' => 'Cantidad de decimales',
'default_view' => 'Default View', 'default_view' => 'Vista predeterminada',
'points' => [ 'points' => [
'value' => 'Wert', 'value' => 'Wert',
@@ -126,18 +126,18 @@ return [
], ],
'theme' => [ 'theme' => [
'background-color' => 'Hintergrundfarbe', 'background-color' => 'Hintergrundfarbe',
'background-fills' => 'Background Fills (Components, Incidents, Footer)', 'background-fills' => 'Relleno del fondo (componentes, incidentes, pie)',
'banner-background-color' => 'Banner Background Color', 'banner-background-color' => 'Banner Background Color',
'banner-padding' => 'Banner Padding', 'banner-padding' => 'Banner Padding',
'fullwidth-banner' => 'Enable fullwidth banner?', 'fullwidth-banner' => 'Enable fullwidth banner?',
'text-color' => 'Schriftfarbe', 'text-color' => 'Schriftfarbe',
'dashboard-login' => 'Show dashboard button in the footer?', 'dashboard-login' => '¿Mostrar el botón de Panel de Control en el pie?',
'reds' => 'Rojo (usado para errores)', 'reds' => 'Rojo (usado para errores)',
'blues' => 'Azul (usado para información)', 'blues' => 'Azul (usado para información)',
'greens' => 'Verde (usado para operaciones correctas)', 'greens' => 'Verde (usado para operaciones correctas)',
'yellows' => 'Amarillo (usado para alertas)', 'yellows' => 'Amarillo (usado para alertas)',
'oranges' => 'Orange (Used for notices)', 'oranges' => 'Naranja (usado para avisos)',
'metrics' => 'Metrics Fill', 'metrics' => 'Relleno de las métricas',
'links' => 'Enlaces', 'links' => 'Enlaces',
], ],
], ],

View File

@@ -50,7 +50,7 @@ return [
'in' => 'El :attribute seleccionado es inválido.', 'in' => 'El :attribute seleccionado es inválido.',
'integer' => ':attribute muss eine ganze Zahl sein.', 'integer' => ':attribute muss eine ganze Zahl sein.',
'ip' => ':attribute muss eine gültige IP-Adresse sein.', 'ip' => ':attribute muss eine gültige IP-Adresse sein.',
'json' => 'The :attribute must be a valid JSON string.', 'json' => 'El :attribute debe ser una cadena JSON válida.',
'max' => [ 'max' => [
'numeric' => ':attribute darf maximal :max sein.', 'numeric' => ':attribute darf maximal :max sein.',
'file' => ':attribute darf maximal :max Kilobytes groß sein.', 'file' => ':attribute darf maximal :max Kilobytes groß sein.',
@@ -69,7 +69,7 @@ return [
'regex' => ':attribute Format ist ungültig.', 'regex' => ':attribute Format ist ungültig.',
'required' => ':attribute muss ausgefüllt sein.', 'required' => ':attribute muss ausgefüllt sein.',
'required_if' => ':attribute muss ausgefüllt sein wenn :other :value ist.', 'required_if' => ':attribute muss ausgefüllt sein wenn :other :value ist.',
'required_unless' => 'The :attribute field is required unless :other is in :values.', 'required_unless' => 'El campo :attribute es obligatorio a no ser que :other se encuentre en :values.',
'required_with' => ':attribute muss angegeben werden wenn :values ausgefüllt wurde.', 'required_with' => ':attribute muss angegeben werden wenn :values ausgefüllt wurde.',
'required_with_all' => 'El campo del :attribute se requiere cuando :values es presente.', 'required_with_all' => 'El campo del :attribute se requiere cuando :values es presente.',
'required_without' => ':attribute muss angegeben werden wenn :values nicht ausgefüllt wurde.', 'required_without' => ':attribute muss angegeben werden wenn :values nicht ausgefüllt wurde.',

7
resources/lang/fa/cachet.php Normal file → Executable file
View File

@@ -22,11 +22,10 @@ return [
// Incidents // Incidents
'incidents' => [ 'incidents' => [
'none' => 'Nothing to report', 'none' => 'No incidents reported',
'past' => 'Past Incidents', 'past' => 'Past Incidents',
'previous_week' => 'Previous Week', 'previous_week' => 'Previous Week',
'next_week' => 'Next Week', 'next_week' => 'Next Week',
'none' => 'Nothing to report',
'scheduled' => 'Scheduled Maintenance', 'scheduled' => 'Scheduled Maintenance',
'scheduled_at' => ', scheduled :timestamp', 'scheduled_at' => ', scheduled :timestamp',
'status' => [ 'status' => [
@@ -124,8 +123,8 @@ return [
'modal' => [ 'modal' => [
'close' => 'Close', 'close' => 'Close',
'subscribe' => [ 'subscribe' => [
'title' => 'Subscribe to component updates?', 'title' => 'Subscribe to component updates',
'body' => 'Enter your email address to subscribe to updates for this component. If you\'re already subscribed, you\'ll receive emails for this component too.', '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.',
'button' => 'Subscribe', 'button' => 'Subscribe',
], ],
], ],

126
resources/lang/fa/dashboard.php Normal file → Executable file
View File

@@ -21,14 +21,14 @@ return [
'incident-create-template' => 'Create Template', 'incident-create-template' => 'Create Template',
'incident-templates' => 'Incident Templates', 'incident-templates' => 'Incident Templates',
'add' => [ 'add' => [
'title' => 'Add an Incident', 'title' => 'Report an incident',
'success' => 'Incident added.', 'success' => 'Incident reported.',
'failure' => 'Something went wrong with the incident.', 'failure' => 'The incident could not be reported. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit an Incident', 'title' => 'Edit an incident',
'success' => 'Incident updated.', 'success' => 'Incident updated.',
'failure' => 'Something went wrong with the incident.', 'failure' => 'The incident could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The incident has been deleted and will not show on your status page.', 'success' => 'The incident has been deleted and will not show on your status page.',
@@ -39,19 +39,19 @@ return [
'templates' => [ 'templates' => [
'title' => 'Incident Templates', 'title' => 'Incident Templates',
'add' => [ 'add' => [
'title' => 'Create an Incident Template', 'title' => 'Create an incident template',
'message' => 'You should add an Incident Template.', 'message' => 'You should add an incident template.',
'success' => 'Template created.', 'success' => 'The incdent template has been created!',
'failure' => 'Something went wrong with the incident template.', 'failure' => 'The incident template could not be created. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit Template', 'title' => 'Edit Template',
'success' => 'Template has been updated!', 'success' => 'The incdent template has been updated!',
'failure' => 'Something went wrong updating the incident template', 'failure' => 'The incident template could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The tmplate has been deleted.', 'success' => 'The incident template has been deleted.',
'failure' => 'The template could not be deleted. Please try again.', 'failure' => 'The incident template could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -62,18 +62,18 @@ return [
'logged' => '{0} There are no schedules, good work.|You have logged one schedule.|You have reported <strong>:count</strong> schedules.', 'logged' => '{0} There are no schedules, good work.|You have logged one schedule.|You have reported <strong>:count</strong> schedules.',
'scheduled_at' => 'Scheduled at :timestamp', 'scheduled_at' => 'Scheduled at :timestamp',
'add' => [ 'add' => [
'title' => 'Add Scheduled Maintenance', 'title' => 'Add scheduled maintenance',
'success' => 'Schedule added.', 'success' => 'Scheduled maintenance has been reported!',
'failure' => 'Something went wrong adding the schedule.', 'failure' => 'The scheduled maintenance could not be reported. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit Scheduled Maintenance', 'title' => 'Edit scheduled maintenance',
'success' => 'Schedule has been updated!', 'success' => 'Scheduled maintenance has been edited!',
'failure' => 'Something went wrong editing the schedule.', 'failure' => 'The scheduled maintenance could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The schedule has been deleted and will not show on your status page.', 'success' => 'Scheduled maintenance has been deleted!',
'failure' => 'The schedule could not be deleted. Please try again.', 'failure' => 'The scheduled maintenance could not be deleted. Please try again.',
], ],
], ],
@@ -83,19 +83,19 @@ return [
'component_statuses' => 'Component Statuses', 'component_statuses' => 'Component Statuses',
'listed_group' => 'Grouped under :name', 'listed_group' => 'Grouped under :name',
'add' => [ 'add' => [
'title' => 'Add a Component', 'title' => 'Add a component',
'message' => 'You should add a component.', 'message' => 'You should add a component.',
'success' => 'Component created.', 'success' => 'Component has been added!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The component could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Component', 'title' => 'Edit a component',
'success' => 'Component updated.', 'success' => 'Component has been updated!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The component could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component deleted.', 'success' => 'The component has been deleted!',
'failure' => 'The Component could not be deleted. Please try again.', 'failure' => 'The component could not be deleted. Please try again.',
], ],
// Component groups // Component groups
@@ -103,18 +103,18 @@ return [
'groups' => 'Component group|Component groups', 'groups' => 'Component group|Component groups',
'no_components' => 'You should add a component group.', 'no_components' => 'You should add a component group.',
'add' => [ 'add' => [
'title' => 'Add a Component Group', 'title' => 'Add a component group',
'success' => 'Component group added.', 'success' => 'Component group has been added!',
'failure' => 'Something went wrong with the component group.', 'failure' => 'The component group could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Component Group', 'title' => 'Edit a component group',
'success' => 'Component group updated.', 'success' => 'Component group has been edited!',
'failure' => 'Something went wrong with the component group.', 'failure' => 'The component group could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component Group deleted.', 'success' => 'Component group has been deleted!',
'failure' => 'The Component Group could not be deleted. Please try again.', 'failure' => 'The component group could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -123,18 +123,18 @@ return [
'metrics' => [ 'metrics' => [
'metrics' => 'Metrics', 'metrics' => 'Metrics',
'add' => [ 'add' => [
'title' => 'Create a Metric', 'title' => 'Create a metric',
'message' => 'You should add a Metric.', 'message' => 'You should add a metric.',
'success' => 'Metric created.', 'success' => 'Metric has been added!',
'failure' => 'Something went wrong with the metric.', 'failure' => 'The metric could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Metric', 'title' => 'Edit a metric',
'success' => 'Metric updated.', 'success' => 'Metric has been updated!',
'failure' => 'Something went wrong with the metric.', 'failure' => 'The metric could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The metric has been deleted and will not show on your status page.', '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.', 'failure' => 'The metric could not be deleted. Please try again.',
], ],
], ],
@@ -143,16 +143,16 @@ return [
'subscribers' => 'Subscribers', 'subscribers' => 'Subscribers',
'description' => 'Subscribers will receive email updates when incidents are created.', 'description' => 'Subscribers will receive email updates when incidents are created.',
'verified' => 'Verified', 'verified' => 'Verified',
'not_verified' => 'Not Verified', 'not_verified' => 'Not verified',
'add' => [ 'add' => [
'title' => 'Add a New Subscriber', 'title' => 'Add a new subscriber',
'success' => 'Subscriber added.', 'success' => 'Subscriber has been added!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The subscriber could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Update Subscriber', 'title' => 'Update subscriber',
'success' => 'Subscriber updated.', 'success' => 'Subscriber has been updated!',
'failure' => 'Something went wrong when updating.', 'failure' => 'The subscriber could not be updated. Please try again.',
], ],
], ],
@@ -163,23 +163,23 @@ return [
'profile' => 'Profile', 'profile' => 'Profile',
'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.', 'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.',
'add' => [ 'add' => [
'title' => 'Add a New Team Member', 'title' => 'Add a new team member',
'success' => 'Team member added.', 'success' => 'Team member has been added!',
'failure' => 'Something went wrong with the user.', 'failure' => 'The team member could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Update Profile', 'title' => 'Update profile',
'success' => 'Profile updated.', 'success' => 'Team member has been updated!',
'failure' => 'Something went wrong when updating.', 'failure' => 'The team member could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'User deleted.', 'success' => 'Team member has been deleted and will no longer have access to the dashboard!',
'failure' => 'Something went wrong when deleting this user.', 'failure' => 'The team member could not be added. Please try again.',
], ],
'invite' => [ 'invite' => [
'title' => 'Invite a New Team Member', 'title' => 'Invite a new team member',
'success' => 'The users invited.', 'success' => 'An invite has been sent',
'failure' => 'Something went wrong with the invite.', 'failure' => 'The invite could not be sent. Please try again.',
], ],
], ],

50
resources/lang/fa/forms.php Normal file → Executable file
View File

@@ -45,8 +45,8 @@ return [
'message-help' => 'You may also use Markdown.', 'message-help' => 'You may also use Markdown.',
'scheduled_at' => 'When to schedule the maintenance for?', 'scheduled_at' => 'When to schedule the maintenance for?',
'incident_time' => 'When did this incident occur?', 'incident_time' => 'When did this incident occur?',
'notify_subscribers' => 'Notify Subscribers?', 'notify_subscribers' => 'Notify subscribers?',
'visibility' => 'Incident Visibility', 'visibility' => 'Incident visibility',
'public' => 'Viewable by public', 'public' => 'Viewable by public',
'logged_in_only' => 'Only visible to logged in users', 'logged_in_only' => 'Only visible to logged in users',
'templates' => [ 'templates' => [
@@ -80,12 +80,12 @@ return [
'description' => 'Description', 'description' => 'Description',
'description-help' => 'You may also use Markdown.', 'description-help' => 'You may also use Markdown.',
'display-chart' => 'Display chart on status page?', 'display-chart' => 'Display chart on status page?',
'default-value' => 'Default Value', 'default-value' => 'Default value',
'calc_type' => 'Calculation of Metrics', 'calc_type' => 'Calculation of metrics',
'type_sum' => 'Sum', 'type_sum' => 'Sum',
'type_avg' => 'Average', 'type_avg' => 'Average',
'places' => 'Decimal Places', 'places' => 'Decimal places',
'default_view' => 'Default View', 'default_view' => 'Default view',
'points' => [ 'points' => [
'value' => 'Value', 'value' => 'Value',
@@ -96,12 +96,12 @@ return [
'settings' => [ 'settings' => [
/// Application setup /// Application setup
'app-setup' => [ 'app-setup' => [
'site-name' => 'Site Name', 'site-name' => 'Site name',
'site-url' => 'Site URL', 'site-url' => 'Site URL',
'display-graphs' => 'Display graphs on status page?', 'display-graphs' => 'Display graphs on status page?',
'about-this-page' => 'About this page', 'about-this-page' => 'About this page',
'days-of-incidents' => 'How many days of incidents to show?', 'days-of-incidents' => 'How many days of incidents to show?',
'banner' => 'Banner Image', 'banner' => 'Banner image',
'banner-help' => "It's recommended that you upload files no bigger than 930px wide .", 'banner-help' => "It's recommended that you upload files no bigger than 930px wide .",
'subscribers' => 'Allow people to signup to email notifications?', 'subscribers' => 'Allow people to signup to email notifications?',
], ],
@@ -112,32 +112,32 @@ return [
'analytics_piwik_siteid' => 'Piwik\'s site id', 'analytics_piwik_siteid' => 'Piwik\'s site id',
], ],
'localization' => [ 'localization' => [
'site-timezone' => 'Site Timezone', 'site-timezone' => 'Site timezone',
'site-locale' => 'Site Language', 'site-locale' => 'Site language',
'date-format' => 'Date Format', 'date-format' => 'Date format',
'incident-date-format' => 'Incident Timestamp Format', 'incident-date-format' => 'Incident timestamp format',
], ],
'security' => [ 'security' => [
'allowed-domains' => 'Allowed Domains', 'allowed-domains' => 'Allowed domains',
'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.', 'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.',
], ],
'stylesheet' => [ 'stylesheet' => [
'custom-css' => 'Custom Stylesheet', 'custom-css' => 'Custom stylesheet',
], ],
'theme' => [ 'theme' => [
'background-color' => 'Background Color', 'background-color' => 'Background color',
'background-fills' => 'Background Fills (Components, Incidents, Footer)', 'background-fills' => 'Background fills (components, incidents, footer)',
'banner-background-color' => 'Banner Background Color', 'banner-background-color' => 'Banner background color',
'banner-padding' => 'Banner Padding', 'banner-padding' => 'Banner padding',
'fullwidth-banner' => 'Enable fullwidth banner?', 'fullwidth-banner' => 'Enable fullwidth banner?',
'text-color' => 'Text Color', 'text-color' => 'Text color',
'dashboard-login' => 'Show dashboard button in the footer?', 'dashboard-login' => 'Show dashboard button in the footer?',
'reds' => 'Red (Used for errors)', 'reds' => 'Red (used for errors)',
'blues' => 'Blue (Used for information)', 'blues' => 'Blue (used for information)',
'greens' => 'Green (Used for success)', 'greens' => 'Green (used for success)',
'yellows' => 'Yellow (Used for alerts)', 'yellows' => 'Yellow (used for alerts)',
'oranges' => 'Orange (Used for notices)', 'oranges' => 'Orange (used for notices)',
'metrics' => 'Metrics Fill', 'metrics' => 'Metrics fill',
'links' => 'Links', 'links' => 'Links',
], ],
], ],

0
resources/lang/fa/pagination.php Normal file → Executable file
View File

10
resources/lang/fa/setup.php Normal file → Executable file
View File

@@ -12,12 +12,12 @@
return [ return [
'setup' => 'Setup', 'setup' => 'Setup',
'title' => 'Setup Cachet', 'title' => 'Setup Cachet',
'service_details' => 'Service Details', 'service_details' => 'Service details',
'env_setup' => 'Environment Setup', 'env_setup' => 'Environment setup',
'status_page_setup' => 'Status Page Setup', 'status_page_setup' => 'Status page setup',
'show_support' => 'Show support for Cachet?', 'show_support' => 'Show support for Cachet?',
'admin_account' => 'Administrator Account', 'admin_account' => 'Administrator account',
'complete_setup' => 'Complete Setup', 'complete_setup' => 'Complete setup',
'completed' => 'Cachet has been configured successfully!', 'completed' => 'Cachet has been configured successfully!',
'finish_setup' => 'Go to dashboard', 'finish_setup' => 'Go to dashboard',
]; ];

0
resources/lang/fa/validation.php Normal file → Executable file
View File

21
resources/lang/fi/cachet.php Normal file → Executable file
View File

@@ -22,11 +22,10 @@ return [
// Incidents // Incidents
'incidents' => [ 'incidents' => [
'none' => 'Ei ilmoitettuja tapahtumia.', 'none' => 'Ei raportoitavia tapauksia',
'past' => 'Aikaisemmat tapahtumat', 'past' => 'Aikaisemmat tapahtumat',
'previous_week' => 'Edellinen viikko', 'previous_week' => 'Edellinen viikko',
'next_week' => 'Seuraava viikko', 'next_week' => 'Seuraava viikko',
'none' => 'Ei ilmoitettuja tapahtumia.',
'scheduled' => 'Määräaikaishuolto', 'scheduled' => 'Määräaikaishuolto',
'scheduled_at' => ', ajoitettu: aikaleima', 'scheduled_at' => ', ajoitettu: aikaleima',
'status' => [ 'status' => [
@@ -40,9 +39,9 @@ return [
// Service Status // Service Status
'service' => [ 'service' => [
'good' => '[0,1] System operational|[2,Inf] All systems are operational', 'good' => '[0,1] järjestelmät ovat toiminnassa| [2, Inf] Kaikki järjestelmät ovat toiminnassa',
'bad' => '[0,1] The system is currently experiencing issues|[2,Inf] Some systems are experiencing issues', 'bad' => '[0,1] järjestelmä on tällä hetkellä ongelmia| [2, Inf] Joissakin järjestelmissä on ongelmia',
'major' => '[0,1] The service experiencing a major outage|[2,Inf] Some systems are experiencing a major outage', 'major' => '[0,1] Palveluissa on katkoksia| [2, Inf] Joissakin järjestelmissä on merkittävä katkoksia',
], ],
'api' => [ 'api' => [
@@ -53,7 +52,7 @@ return [
// Metrics // Metrics
'metrics' => [ 'metrics' => [
'filter' => [ 'filter' => [
'last_hour' => 'Last Hour', 'last_hour' => 'Viimeisen tunnin',
'hourly' => 'Viimeisen 12 tunnin', 'hourly' => 'Viimeisen 12 tunnin',
'weekly' => 'Viikko', 'weekly' => 'Viikko',
'monthly' => 'Kuukausi', 'monthly' => 'Kuukausi',
@@ -62,13 +61,13 @@ return [
// Subscriber // Subscriber
'subscriber' => [ 'subscriber' => [
'subscribe' => 'Subscribe to get the most recent updates', 'subscribe' => 'Tilaa uusimmat päivitykset',
'button' => 'Tilaa', 'button' => 'Tilaa',
'email' => [ 'email' => [
'subscribe' => 'Tilaa email päivitykset.', 'subscribe' => 'Tilaa email päivitykset.',
'subscribed' => 'Olet tilannut sähköposti-ilmoitukset, tarkista sähköpostisi vahvistaaksesi tilauksen.', 'subscribed' => 'Olet tilannut sähköposti-ilmoitukset, tarkista sähköpostisi vahvistaaksesi tilauksen.',
'verified' => 'Sinun sähköposti tilaus on vahvistettu. Kiitos!', 'verified' => 'Sinun sähköposti tilaus on vahvistettu. Kiitos!',
'unsubscribe' => 'Unsubscribe from email updates.', 'unsubscribe' => 'Poista sähköposti tilauksesi.',
'unsubscribed' => 'Sähköpostitilauksesi on peruuttu.', 'unsubscribed' => 'Sähköpostitilauksesi on peruuttu.',
'failure' => 'Jokin meni vikaan sähköpostitilauksen käsittelyssä.', 'failure' => 'Jokin meni vikaan sähköpostitilauksen käsittelyssä.',
'already-subscribed' => 'Cannot subscribe :email because they\'re already subscribed.', 'already-subscribed' => 'Cannot subscribe :email because they\'re already subscribed.',
@@ -122,10 +121,10 @@ return [
// Modal // Modal
'modal' => [ 'modal' => [
'close' => 'Close', 'close' => 'Sulje',
'subscribe' => [ 'subscribe' => [
'title' => 'Subscribe to component updates?', 'title' => 'Subscribe to component updates',
'body' => 'Enter your email address to subscribe to updates for this component. If you\'re already subscribed, you\'ll receive emails for this component too.', '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.',
'button' => 'Tilaa', 'button' => 'Tilaa',
], ],
], ],

116
resources/lang/fi/dashboard.php Normal file → Executable file
View File

@@ -21,37 +21,37 @@ return [
'incident-create-template' => 'Luo mallipohja', 'incident-create-template' => 'Luo mallipohja',
'incident-templates' => 'Tapahtuma pohja', 'incident-templates' => 'Tapahtuma pohja',
'add' => [ 'add' => [
'title' => 'Add an Incident', 'title' => 'Ilmoita tapahtuma',
'success' => 'Tapahtuma lisätty.', 'success' => 'Tapahtuma lisätty.',
'failure' => 'Something went wrong with the incident.', 'failure' => 'Tapahtumaa ei voitu ilmoittaa. Yritä uudelleen.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit an Incident', 'title' => 'Muokkaa tapahtumaa',
'success' => 'Tapahtuma päivitetty.', 'success' => 'Tapahtuma päivitetty.',
'failure' => 'Something went wrong with the incident.', 'failure' => 'Tapahtumaa ei voitu muokata. Yritä uudelleen.',
], ],
'delete' => [ 'delete' => [
'success' => 'The incident has been deleted and will not show on your status page.', 'success' => 'Tapaus on poistettu ja ei näytetä tila-sivulla.',
'failure' => 'The incident could not be deleted. Please try again.', 'failure' => 'Tapahtumaa ei voitu poistaa. Yritä uudelleen.',
], ],
// Incident templates // Incident templates
'templates' => [ 'templates' => [
'title' => 'Tapahtuma pohja', 'title' => 'Tapahtuma pohja',
'add' => [ 'add' => [
'title' => 'Create an Incident Template', 'title' => 'Create an incident template',
'message' => 'You should add an Incident Template.', 'message' => 'You should add an incident template.',
'success' => 'Mallipohja on luotu.', 'success' => 'Mallipohja on luotu.',
'failure' => 'Something went wrong with the incident template.', 'failure' => 'The incident template could not be created. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit Template', 'title' => 'Edit Template',
'success' => 'Template has been updated!', 'success' => 'The incdent template has been updated!',
'failure' => 'Something went wrong updating the incident template', 'failure' => 'The incident template could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The tmplate has been deleted.', 'success' => 'The incident template has been deleted.',
'failure' => 'The template could not be deleted. Please try again.', 'failure' => 'The incident template could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -62,18 +62,18 @@ return [
'logged' => '{0} There are no schedules, good work.|You have logged one schedule.|You have reported <strong>:count</strong> schedules.', 'logged' => '{0} There are no schedules, good work.|You have logged one schedule.|You have reported <strong>:count</strong> schedules.',
'scheduled_at' => 'Scheduled at :timestamp', 'scheduled_at' => 'Scheduled at :timestamp',
'add' => [ 'add' => [
'title' => 'Add Scheduled Maintenance', 'title' => 'Add scheduled maintenance',
'success' => 'Schedule added.', 'success' => 'Scheduled maintenance has been reported!',
'failure' => 'Something went wrong adding the schedule.', 'failure' => 'The scheduled maintenance could not be reported. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit Scheduled Maintenance', 'title' => 'Edit scheduled maintenance',
'success' => 'Schedule has been updated!', 'success' => 'Scheduled maintenance has been edited!',
'failure' => 'Something went wrong editing the schedule.', 'failure' => 'The scheduled maintenance could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The schedule has been deleted and will not show on your status page.', 'success' => 'Scheduled maintenance has been deleted!',
'failure' => 'The schedule could not be deleted. Please try again.', 'failure' => 'The scheduled maintenance could not be deleted. Please try again.',
], ],
], ],
@@ -83,19 +83,19 @@ return [
'component_statuses' => 'Komponenttien tilat', 'component_statuses' => 'Komponenttien tilat',
'listed_group' => 'Grouped under :name', 'listed_group' => 'Grouped under :name',
'add' => [ 'add' => [
'title' => 'Add a Component', 'title' => 'Lisää komponentti',
'message' => 'You should add a component.', 'message' => 'You should add a component.',
'success' => 'Component created.', 'success' => 'Komponentti on lisätty!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The component could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Component', 'title' => 'Muokkaa komponenttia',
'success' => 'Component updated.', 'success' => 'Component has been updated!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The component could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component deleted.', 'success' => 'The component has been deleted!',
'failure' => 'The Component could not be deleted. Please try again.', 'failure' => 'The component could not be deleted. Please try again.',
], ],
// Component groups // Component groups
@@ -103,18 +103,18 @@ return [
'groups' => 'Component group|Component groups', 'groups' => 'Component group|Component groups',
'no_components' => 'You should add a component group.', 'no_components' => 'You should add a component group.',
'add' => [ 'add' => [
'title' => 'Add a Component Group', 'title' => 'Lisää komponentti-ryhmä',
'success' => 'Component group added.', 'success' => 'Component group has been added!',
'failure' => 'Something went wrong with the component group.', 'failure' => 'The component group could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Component Group', 'title' => 'Edit a component group',
'success' => 'Component group updated.', 'success' => 'Component group has been edited!',
'failure' => 'Something went wrong with the component group.', 'failure' => 'The component group could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component Group deleted.', 'success' => 'Component group has been deleted!',
'failure' => 'The Component Group could not be deleted. Please try again.', 'failure' => 'The component group could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -123,18 +123,18 @@ return [
'metrics' => [ 'metrics' => [
'metrics' => 'Mittarit', 'metrics' => 'Mittarit',
'add' => [ 'add' => [
'title' => 'Create a Metric', 'title' => 'Create a metric',
'message' => 'You should add a Metric.', 'message' => 'You should add a metric.',
'success' => 'Metric created.', 'success' => 'Metric has been added!',
'failure' => 'Something went wrong with the metric.', 'failure' => 'The metric could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Metric', 'title' => 'Edit a metric',
'success' => 'Metric updated.', 'success' => 'Metric has been updated!',
'failure' => 'Something went wrong with the metric.', 'failure' => 'The metric could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The metric has been deleted and will not show on your status page.', '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.', 'failure' => 'The metric could not be deleted. Please try again.',
], ],
], ],
@@ -143,15 +143,15 @@ return [
'subscribers' => 'Tilaajat', 'subscribers' => 'Tilaajat',
'description' => 'Subscribers will receive email updates when incidents are created.', 'description' => 'Subscribers will receive email updates when incidents are created.',
'verified' => 'Vahvistettu', 'verified' => 'Vahvistettu',
'not_verified' => 'Not Verified', 'not_verified' => 'Not verified',
'add' => [ 'add' => [
'title' => 'Add a New Subscriber', 'title' => 'Add a new subscriber',
'success' => 'Tilaaja lisätty.', 'success' => 'Tilaaja lisätty.',
'failure' => 'Something went wrong with the component.', 'failure' => 'The subscriber could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Update Subscriber', 'title' => 'Update subscriber',
'success' => 'Subscriber updated.', 'success' => 'Subscriber has been updated!',
'failure' => 'Tapahtui virhe päivitettäessä.', 'failure' => 'Tapahtui virhe päivitettäessä.',
], ],
], ],
@@ -163,23 +163,23 @@ return [
'profile' => 'Profiili', 'profile' => 'Profiili',
'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.', 'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.',
'add' => [ 'add' => [
'title' => 'Add a New Team Member', 'title' => 'Add a new team member',
'success' => 'Ryhmän jäsen lisätty.', 'success' => 'Ryhmän jäsen lisätty.',
'failure' => 'Something went wrong with the user.', 'failure' => 'The team member could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Update Profile', 'title' => 'Update profile',
'success' => 'Profiili päivitetty.', 'success' => 'Profiili päivitetty.',
'failure' => 'Tapahtui virhe päivitettäessä.', 'failure' => 'Tapahtui virhe päivitettäessä.',
], ],
'delete' => [ 'delete' => [
'success' => 'User deleted.', 'success' => 'Team member has been deleted and will no longer have access to the dashboard!',
'failure' => 'Something went wrong when deleting this user.', 'failure' => 'The team member could not be added. Please try again.',
], ],
'invite' => [ 'invite' => [
'title' => 'Invite a New Team Member', 'title' => 'Invite a new team member',
'success' => 'The users invited.', 'success' => 'An invite has been sent',
'failure' => 'Something went wrong with the invite.', 'failure' => 'The invite could not be sent. Please try again.',
], ],
], ],

30
resources/lang/fi/forms.php Normal file → Executable file
View File

@@ -27,11 +27,11 @@ return [
// Login form fields // Login form fields
'login' => [ 'login' => [
'login' => 'Username or Email', 'login' => 'Käyttäjänimi tai sähköpostiosoite',
'email' => 'Sähköposti', 'email' => 'Sähköposti',
'password' => 'Salasana', 'password' => 'Salasana',
'2fauth' => 'Authentication Code', '2fauth' => 'Authentication Code',
'invalid' => 'Invalid username or password', 'invalid' => 'Virheellinen käyttäjätunnus tai salasana',
'invalid-token' => 'Invalid token', 'invalid-token' => 'Invalid token',
'cookies' => 'Ota käyttöön evästeet kirjautuaksesi.', 'cookies' => 'Ota käyttöön evästeet kirjautuaksesi.',
], ],
@@ -81,11 +81,11 @@ return [
'description-help' => 'You may also use Markdown.', 'description-help' => 'You may also use Markdown.',
'display-chart' => 'Display chart on status page?', 'display-chart' => 'Display chart on status page?',
'default-value' => 'Oletusarvo', 'default-value' => 'Oletusarvo',
'calc_type' => 'Calculation of Metrics', 'calc_type' => 'Calculation of metrics',
'type_sum' => 'Summa', 'type_sum' => 'Summa',
'type_avg' => 'Keskiarvo', 'type_avg' => 'Keskiarvo',
'places' => 'Decimal Places', 'places' => 'Decimal places',
'default_view' => 'Default View', 'default_view' => 'Default view',
'points' => [ 'points' => [
'value' => 'Arvo', 'value' => 'Arvo',
@@ -115,7 +115,7 @@ return [
'site-timezone' => 'Sivuston aikavyöhyke', 'site-timezone' => 'Sivuston aikavyöhyke',
'site-locale' => 'Sivuston kieli', 'site-locale' => 'Sivuston kieli',
'date-format' => 'Päivämäärän muoto', 'date-format' => 'Päivämäärän muoto',
'incident-date-format' => 'Incident Timestamp Format', 'incident-date-format' => 'Incident timestamp format',
], ],
'security' => [ 'security' => [
'allowed-domains' => 'Sallittu toimialueet', 'allowed-domains' => 'Sallittu toimialueet',
@@ -126,18 +126,18 @@ return [
], ],
'theme' => [ 'theme' => [
'background-color' => 'Taustaväri', 'background-color' => 'Taustaväri',
'background-fills' => 'Background Fills (Components, Incidents, Footer)', 'background-fills' => 'Background fills (components, incidents, footer)',
'banner-background-color' => 'Banner Background Color', 'banner-background-color' => 'Banner background color',
'banner-padding' => 'Banner Padding', 'banner-padding' => 'Banner padding',
'fullwidth-banner' => 'Enable fullwidth banner?', 'fullwidth-banner' => 'Enable fullwidth banner?',
'text-color' => 'Tekstin väri', 'text-color' => 'Tekstin väri',
'dashboard-login' => 'Show dashboard button in the footer?', 'dashboard-login' => 'Show dashboard button in the footer?',
'reds' => 'Red (Used for errors)', 'reds' => 'Red (used for errors)',
'blues' => 'Blue (Used for information)', 'blues' => 'Blue (used for information)',
'greens' => 'Green (Used for success)', 'greens' => 'Green (used for success)',
'yellows' => 'Yellow (Used for alerts)', 'yellows' => 'Yellow (used for alerts)',
'oranges' => 'Orange (Used for notices)', 'oranges' => 'Orange (used for notices)',
'metrics' => 'Metrics Fill', 'metrics' => 'Metrics fill',
'links' => 'Linkit', 'links' => 'Linkit',
], ],
], ],

0
resources/lang/fi/pagination.php Normal file → Executable file
View File

6
resources/lang/fi/setup.php Normal file → Executable file
View File

@@ -12,12 +12,12 @@
return [ return [
'setup' => 'Asetukset', 'setup' => 'Asetukset',
'title' => 'Setup Cachet', 'title' => 'Setup Cachet',
'service_details' => 'Service Details', 'service_details' => 'Service details',
'env_setup' => 'Environment Setup', 'env_setup' => 'Environment setup',
'status_page_setup' => 'Sivun asetukset', 'status_page_setup' => 'Sivun asetukset',
'show_support' => 'Show support for Cachet?', 'show_support' => 'Show support for Cachet?',
'admin_account' => 'Järjestelmänvalvojantili', 'admin_account' => 'Järjestelmänvalvojantili',
'complete_setup' => 'Complete Setup', 'complete_setup' => 'Complete setup',
'completed' => 'Välimuisti on konfiguroitu onnistuneesti!', 'completed' => 'Välimuisti on konfiguroitu onnistuneesti!',
'finish_setup' => 'Siirry hallintapaneeliin', 'finish_setup' => 'Siirry hallintapaneeliin',
]; ];

0
resources/lang/fi/validation.php Normal file → Executable file
View File

View File

@@ -13,86 +13,86 @@ return [
// Components // Components
'components' => [ 'components' => [
'status' => [ 'status' => [
1 => 'Funktionsfähig', 1 => 'Opérationnel',
2 => 'Leistungsprobleme', 2 => 'Problèmes de performances',
3 => 'Teilweiser Ausfall', 3 => 'Panne partielle',
4 => 'Schwerer Ausfall', 4 => 'Panne majeure',
], ],
], ],
// Incidents // Incidents
'incidents' => [ 'incidents' => [
'none' => 'Aucun incident signalé.', 'none' => 'Aucun incident signalé',
'past' => 'Incidents antérieurs', 'past' => 'Incidents antérieurs',
'previous_week' => 'Semaine précédente', 'previous_week' => 'Semaine précédente',
'next_week' => 'Semaine suivante', 'next_week' => 'Semaine suivante',
'none' => 'Aucun incident signalé.',
'scheduled' => 'Geplante Wartungen', 'scheduled' => 'Geplante Wartungen',
'scheduled_at' => ', geplant :timestamp', 'scheduled_at' => ', planifé à :timestamp',
'status' => [ 'status' => [
0 => 'Geplant', // TODO: Hopefully remove this. 0 => 'Planifié', // TODO: Hopefully remove this.
1 => 'Untersuchungen laufen', 1 => 'Enquête en cours',
2 => 'Identifiziert', 2 => 'Identifié',
3 => 'Unter Beobachtung', 3 => 'Sous surveillance',
4 => 'Behoben', 4 => 'Corrigé',
], ],
], ],
// Service Status // Service Status
'service' => [ 'service' => [
'good' => '[0,1] System operational|[2,Inf] All systems are operational', 'good' => '[0,1] Système opérationnel|[2,Inf] Tous les systèmes sont opérationnels',
'bad' => '[0,1] The system is currently experiencing issues|[2,Inf] Some systems are experiencing issues', 'bad' => '[0,1] Le système rencontre actuellement des problèmes|[2,Inf] Certains systèmes rencontrent des problèmes',
'major' => '[0,1] The service experiencing a major outage|[2,Inf] Some systems are experiencing a major outage', 'major' => '[0,1] Le service rencontre une panne majeure|[2,Inf] Certains systèmes rencontrent une panne majeure',
], ],
'api' => [ 'api' => [
'regenerate' => 'API-Schlüssel neu generieren', 'regenerate' => 'Régénérer la clé API',
'revoke' => 'API-Schlüssel widerrufen', 'revoke' => 'API-Schlüssel widerrufen',
], ],
// Metrics // Metrics
'metrics' => [ 'metrics' => [
'filter' => [ 'filter' => [
'last_hour' => 'Last Hour', 'last_hour' => 'Dernière heure',
'hourly' => 'Last 12 Hours', 'hourly' => 'Les 12 dernières heures',
'weekly' => 'Week', 'weekly' => 'Semaine',
'monthly' => 'Month', 'monthly' => 'Mois',
], ],
], ],
// Subscriber // Subscriber
'subscriber' => [ 'subscriber' => [
'subscribe' => 'Abonnez-vous pour obtenir les dernières mises à jour.', 'subscribe' => 'Abonnez-vous pour obtenir les dernières mises à jour.',
'button' => 'Abonnieren', 'button' => 'S\'abonner',
'email' => [ 'email' => [
'subscribe' => 'Aktualisierungen per E-Mail abonnieren.', 'subscribe' => 'S\'abonner aux notifications par email.',
'subscribed' => 'Sie haben E-Mail-Benachrichtigungen abonniert, überprüfen Sie bitte Ihre E-Mail, um Ihr Abonnement zu bestätigen.', 'subscribed' => 'Vous êtes abonné aux notifications par email, veuillez vérifier votre messagerie pour confirmer votre adresse.',
'verified' => 'Ihre E-Mail-Abonnement ist bestätigt worden. Danke!', 'verified' => 'Votre abonnement aux notifications par email a été confirmé. Merci !',
'unsubscribe' => 'Désinscription des mises à jour par courriel.', 'unsubscribe' => 'Désinscription des mises à jour par courriel.',
'unsubscribed' => 'Ihre E-Mail-Abonnement wurde gekündigt.', 'unsubscribed' => 'Votre abonnement aux notifications par email a été annulé.',
'failure' => 'Etwas ist mit dem Abonnement schief gelaufen.', 'failure' => 'Une erreur est survenue lors de l\'abonnement.',
'already-subscribed' => 'Cannot subscribe :email because they\'re already subscribed.', 'already-subscribed' => 'Impossible de s\'abonner avec l\'adresse e-mail :email car celle-ci est déjà abonné.',
'verify' => [ 'verify' => [
'text' => "Bitte bestätigen Sie Ihre E-Mail-Abonnement zu :app_name Status-Aktualisierungen.\n:link\nDanke, :app_name", 'text' => "Veuillez confirmer votre abonnement aux notifications par email de :app_name.\n:link\nMerci, :app_name",
'html-preheader' => 'Bitte bestätigen Sie Ihre E-Mail-Abonnement zu :app_name Status-Aktualisierungen.', 'html-preheader' => 'Veuillez confirmer votre abonnement aux notifications par email de :app_name.',
'html' => '<p>Bestätigen Sie bitte Ihr E-Mail-Abonnement für :app_name Statusaktualisierungen.</p><p><a href=":link">:link</a></p><p>Danke, :app_name</p>', 'html' => '<p>Merci de confirmer votre adresse d\'inscription aux notifications de statut de :app_name</p><p><a href=":link">:link</a></p>
<p>Merci, :app_name</p>',
], ],
'maintenance' => [ 'maintenance' => [
'text' => "Neue Wartung wurde für :app_name geplant.\nDanke, :app_name", 'text' => "Une nouvelle maintenance a été planifiée pour :app_name.\nMerci, :app_name",
'html-preheader' => 'Neue Wartung wurde für :app_name geplant.', 'html-preheader' => 'Une nouvelle maintenance a été planifiée pour :app_name.',
'html' => '<p>Neue Wartung wurde für :app_name geplant.</p>', 'html' => '<p>Une nouvelle maintenance a été planifiée pour :app_name</p>',
], ],
'incident' => [ 'incident' => [
'text' => "Ein neuer Vorfall wurde auf :app_name berichtet.\nDanke, :app_name", 'text' => "Un nouvel incident a été signalé sur : app_name.\nMerci, :app_name",
'html-preheader' => 'Ein neuer Vorfall wurde über :app_name berichtet.', 'html-preheader' => 'Un nouvel incident a été signalé sur : app_name.',
'html' => '<p>Ein neuer Vorfall wurde über :app_name berichtet.</p> <p>Danke, :app_name</p>', 'html' => '<p>Un nouvel incident a été signalé sur : app_name. </p><p>Merci, : app_name</p>',
], ],
'component' => [ 'component' => [
'subject' => 'Component Status Update', 'subject' => 'Mise à jour du statut d\'un composant',
'text' => 'The component :component_name has seen a status change. The component is now at :component_human_status.\nThank you, :app_name', 'text' => 'Le statut du composant :component_name a été mis à jour. Il est maintenant :component_human_status.\nMerci, :app_name',
'html-preheader' => 'Component Update from :app_name', 'html-preheader' => 'Mise à jour d\'un composant de :app_name',
'html' => '<p>The component :component_name has seen a status change. The component is now at :component_human_status.</p><p>Thank you, :app_name</p>', 'html' => '<p>Le statut du composant :component_name a été mis à jour. Il est maintenant :component_human_status.</p><p>Merci, :app_name</p>',
'tooltip-title' => 'Subscribe to notifications for :component_name.', 'tooltip-title' => 'S\'abonner aux notifications pour :component_name.',
], ],
], ],
], ],
@@ -102,7 +102,7 @@ return [
'invite' => [ 'invite' => [
'text' => "Vous avez été invité à la page de statut de l'équipe :app_name , veuillez suivre le lien suivant pour vous inscire \n:link\nMerci, :app_name", 'text' => "Vous avez été invité à la page de statut de l'équipe :app_name , veuillez suivre le lien suivant pour vous inscire \n:link\nMerci, :app_name",
'html-preheader' => 'Vous avez été invité à rejoindre l\'équipe :app_name.', 'html-preheader' => 'Vous avez été invité à rejoindre l\'équipe :app_name.',
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>', 'html' => '<p>Vous avez été invité à la page de statut de l\'équipe :app_name, veuillez suivre le lien suivant pour vous inscrire.</p><p><a href=":link">:link</a></p><p>Merci, :app_name</p>',
], ],
], ],
], ],
@@ -117,24 +117,24 @@ return [
], ],
'system' => [ 'system' => [
'update' => 'There is a newer version of Cachet available. You can learn how to update <a href="https://docs.cachethq.io/docs/updating-cachet">here</a>!', 'update' => 'Il y a une nouvelle version de Cachet disponible. Vous pouvez trouver des renseignements concernant la procédure de mise à jour <a href="https://docs.cachethq.io/docs/updating-cachet">ici</a>!',
], ],
// Modal // Modal
'modal' => [ 'modal' => [
'close' => 'Close', 'close' => 'Fermer',
'subscribe' => [ 'subscribe' => [
'title' => 'Subscribe to component updates?', 'title' => 'S\'abonner aux mises à jour du status du composant',
'body' => 'Enter your email address to subscribe to updates for this component. If you\'re already subscribed, you\'ll receive emails for this component too.', 'body' => 'Entrez votre adresse e-mail pour vous abonner aux mises à jour de ce composant. Si vous êtes déjà abonné, vous recevez déjà des notifications pour ce composant.',
'button' => 'Abonnieren', 'button' => 'S\'abonner',
], ],
], ],
// Other // Other
'powered_by' => ':app Status Page est propulsé par <a href="https://cachethq.io">Cachet</a>.', 'powered_by' => ':app Page de statut est propulsé par <a href="https://cachethq.io">Cachet</a>.',
'about_this_site' => 'À propos du site', 'about_this_site' => 'À propos du site',
'rss-feed' => 'RSS', 'rss-feed' => 'RSS',
'atom-feed' => 'Atom', 'atom-feed' => 'Atom',
'feed' => 'Status-Feed', 'feed' => 'Flux des statuts',
]; ];

View File

@@ -23,16 +23,16 @@ return [
'add' => [ 'add' => [
'title' => 'Ajouter un incident', 'title' => 'Ajouter un incident',
'success' => 'Incident ajouté.', 'success' => 'Incident ajouté.',
'failure' => 'Quelque chose n\'allait pas avec l\'incident.', 'failure' => 'L\'incident n\'a pas pu être signalé. Veuillez réessayer.',
], ],
'edit' => [ 'edit' => [
'title' => 'Modifier un incident', 'title' => 'Modifier un incident',
'success' => 'Incident mis à jour.', 'success' => 'Incident mis à jour.',
'failure' => 'Une erreur est survenue avec l\'incident.', 'failure' => 'L\'incident n\'a pas pu être modifié. Veuillez réessayer.',
], ],
'delete' => [ 'delete' => [
'success' => 'The incident has been deleted and will not show on your status page.', 'success' => 'L\'incident a été supprimé et ne sera pas affiché sur votre page de statut.',
'failure' => 'The incident could not be deleted. Please try again.', 'failure' => 'L\'incident n\'a pas pu être supprimé. Veuillez réessayer.',
], ],
// Incident templates // Incident templates
@@ -40,18 +40,18 @@ return [
'title' => 'Modèles d\'incident', 'title' => 'Modèles d\'incident',
'add' => [ 'add' => [
'title' => 'Créer un modèle d\'incident', 'title' => 'Créer un modèle d\'incident',
'message' => 'You should add an Incident Template.', 'message' => 'Vous devriez ajouter un modèle d\'incident.',
'success' => 'Modèle créé.', 'success' => 'Modèle créé.',
'failure' => 'Une erreur est survenue avec le modèle d\'incident.', 'failure' => 'Le modèle d\'incident n\'a pas pu être crée. Veuillez réessayer.',
], ],
'edit' => [ 'edit' => [
'title' => 'Editer le Template', 'title' => 'Éditer le modèle',
'success' => 'Le modèle a été mis à jour !', 'success' => 'Le modèle a été mis à jour !',
'failure' => 'Une erreur est survenue lors de la mise à jour le modèle d\'incident', 'failure' => 'Le modèle d\'incident n\'a pas pu être modifié. Veuillez réessayer.',
], ],
'delete' => [ 'delete' => [
'success' => 'The tmplate has been deleted.', 'success' => 'Le modèle d\'incident a été supprimé.',
'failure' => 'The template could not be deleted. Please try again.', 'failure' => 'Le modèle d\'incident n\'a pas pu être supprimé. Veuillez réessayer.',
], ],
], ],
], ],
@@ -59,7 +59,7 @@ return [
// Incident Maintenance // Incident Maintenance
'schedule' => [ 'schedule' => [
'schedule' => 'Maintenance planifiée', 'schedule' => 'Maintenance planifiée',
'logged' => '{0} There are no schedules, good work.|You have logged one schedule.|You have reported <strong>:count</strong> schedules.', 'logged' => '{0} Aucune maintenance en cours, félicitations.|Vous avez une maintenance planifiée.|Vous avez <strong>:count</strong> maintenances planifiées.',
'scheduled_at' => 'Planifiée à :timestamp', 'scheduled_at' => 'Planifiée à :timestamp',
'add' => [ 'add' => [
'title' => 'Ajouter une maintenance planifiée', 'title' => 'Ajouter une maintenance planifiée',
@@ -72,8 +72,8 @@ return [
'failure' => 'Une erreur est survenue lors de l\'édition de la planification.', 'failure' => 'Une erreur est survenue lors de l\'édition de la planification.',
], ],
'delete' => [ 'delete' => [
'success' => 'La planification a été supprimée et ne sera pas affichée sur votre page de statut.', 'success' => 'La maintenance planifiée a été supprimée et ne sera pas affichée sur votre page de statut !',
'failure' => 'La planification n\'a pas pu être supprimée. Veuillez réessayer.', 'failure' => 'La maintenance planifiée n\'a pas pu être supprimée. Veuillez réessayer.',
], ],
], ],
@@ -81,7 +81,7 @@ return [
'components' => [ 'components' => [
'components' => 'Composants', 'components' => 'Composants',
'component_statuses' => 'Statut des composants', 'component_statuses' => 'Statut des composants',
'listed_group' => 'Groupés par : nom', 'listed_group' => 'Groupés par :nom',
'add' => [ 'add' => [
'title' => 'Ajouter un composant', 'title' => 'Ajouter un composant',
'message' => 'Vous devez ajouter un composant.', 'message' => 'Vous devez ajouter un composant.',
@@ -91,11 +91,11 @@ return [
'edit' => [ 'edit' => [
'title' => 'Modifier un composant', 'title' => 'Modifier un composant',
'success' => 'Composant mis à jour.', 'success' => 'Composant mis à jour.',
'failure' => 'Une erreur est survenue avec le composant.', 'failure' => 'Le composant n\'a pas pu être mis à jour. Veuillez réessayer.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component deleted.', 'success' => 'Le composant a été supprimé !',
'failure' => 'The Component could not be deleted. Please try again.', 'failure' => 'Le composant n\'a pas pu être supprimé. Veuillez réessayer.',
], ],
// Component groups // Component groups
@@ -104,82 +104,82 @@ return [
'no_components' => 'Vous devez ajouter un groupe de composants.', 'no_components' => 'Vous devez ajouter un groupe de composants.',
'add' => [ 'add' => [
'title' => 'Ajouter un groupe de composants', 'title' => 'Ajouter un groupe de composants',
'success' => 'Groupe de composants ajouté.', 'success' => 'Le groupe de composants a été ajouté !',
'failure' => 'Une erreur est survenue avec le groupe de composants.', 'failure' => 'Une erreur est survenue avec le groupe de composants.',
], ],
'edit' => [ 'edit' => [
'title' => 'Modifier un groupe de composants', 'title' => 'Modifier un groupe de composants',
'success' => 'Groupe de composants mis à jour.', 'success' => 'Le groupe de composants a été mis à jour !',
'failure' => 'Un problème est survenu avec le groupe de composants.', 'failure' => 'Le groupe de composants n\'a pas pu être modifié. Veuillez réessayer.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component Group deleted.', 'success' => 'Le groupe de composants a été supprimé !',
'failure' => 'The Component Group could not be deleted. Please try again.', 'failure' => 'Le groupe de composants n\'a pas pu être supprimé. Veuillez réessayer.',
], ],
], ],
], ],
// Metrics // Metrics
'metrics' => [ 'metrics' => [
'metrics' => 'Métriques', 'metrics' => 'Indicateur',
'add' => [ 'add' => [
'title' => 'Créer un indicateur', 'title' => 'Créer un indicateur',
'message' => 'You should add a Metric.', 'message' => 'Vous devez ajouter un indicateur.',
'success' => 'Métrique créé.', 'success' => 'L\'indicateur a été ajouté !',
'failure' => 'Un problème est survenu avec cet indicateur.', 'failure' => 'L\'indicateur n\'a pas pu être ajouté. Veuillez réessayer.',
], ],
'edit' => [ 'edit' => [
'title' => 'Modifier un indicateur', 'title' => 'Modifier un indicateur',
'success' => 'Indicateur mise à jour.', 'success' => 'L\'indicateur a été mis à jour !',
'failure' => 'Un problème est survenu avec cet indicateur.', 'failure' => 'L\'indicateur n\'a pas pu être mis à jour. Veuillez réessayer.',
], ],
'delete' => [ 'delete' => [
'success' => 'The metric has been deleted and will not show on your status page.', 'success' => 'L\'indicateur a été supprimé et ne sera pas affiché sur votre page de statut.',
'failure' => 'The metric could not be deleted. Please try again.', 'failure' => 'L\'indicateur n\'a pas pu être supprimé. Veuillez réessayer.',
], ],
], ],
// Subscribers // Subscribers
'subscribers' => [ 'subscribers' => [
'subscribers' => 'Abonnés', 'subscribers' => 'Abonnés',
'description' => 'Les abonnés reçoivent des notifications par email lorsque des incidents sont créés.', 'description' => 'Les abonnés reçoivent des notifications par e-mail lorsque des incidents sont créés.',
'verified' => 'Vérifié ', 'verified' => 'Vérifié',
'not_verified' => 'Non vérifié', 'not_verified' => 'Non vérifié',
'add' => [ 'add' => [
'title' => 'Ajouter un abonné', 'title' => 'Ajouter un abonné',
'success' => 'Abonné ajouté.', 'success' => 'L\'abonné a été ajouté !',
'failure' => 'Une erreur est survenue avec le composant.', 'failure' => 'L\'abonné n\'a pas pu être ajouté. Veuillez réessayer.',
], ],
'edit' => [ 'edit' => [
'title' => 'Mettre à jour l\'abonné', 'title' => 'Mettre à jour l\'abonné',
'success' => 'Abonné mis à jour.', 'success' => 'L\'abonné a été mis à jour !',
'failure' => 'Une erreur est survenue lors de la mise à jour.', 'failure' => 'L\'abonné n\'a pas pu être mis à jour. Veuillez réessayer.',
], ],
], ],
// Team // Team
'team' => [ 'team' => [
'team' => 'Equipe', 'team' => 'Équipe',
'member' => 'Membre', 'member' => 'Membre',
'profile' => 'Profil utilisateur', 'profile' => 'Profil utilisateur',
'description' => 'Les membres de l\'équipe pourront ajouter &amp; modifier les composants et les incidents.', 'description' => 'Les membres de l\'équipe pourront ajouter &amp; modifier les composants et les incidents.',
'add' => [ 'add' => [
'title' => 'Ajouter un nouveau membre de l\'équipe', 'title' => 'Ajouter un nouveau membre de l\'équipe',
'success' => 'Membre de l\'équipe a ajouté.', 'success' => 'Un membre à été ajouté à l\'équipe !',
'failure' => 'Une erreur est survenue avec le composant.', 'failure' => 'Une erreur est survenue avec le composant.',
], ],
'edit' => [ 'edit' => [
'title' => 'Mettre le Profil à Jour', 'title' => 'Mettre le Profil à Jour',
'success' => 'Profil mis à jour.', 'success' => 'Le membre de l\'équipe a été mis à jour !',
'failure' => 'Une erreur est survenue lors de la mise à jour.', 'failure' => 'Le membre de l\'équipe n\'a pas pu être mis à jour. Veuillez réessayer.',
], ],
'delete' => [ 'delete' => [
'success' => 'Utilisateur supprimé.', 'success' => 'Le membre de l\'équipe a été supprimé et n\'ont plus avoir accès au tableau de bord !',
'failure' => 'Une erreur s\'est produite lors de la suppression de l\'utilisateur.', 'failure' => 'Le membre de l\'équipe n\'a pas pu être supprimé. Veuillez réessayer.',
], ],
'invite' => [ 'invite' => [
'title' => 'Inviter un nouveau membre d\'équipe', 'title' => 'Inviter un nouveau membre de l\'équipe',
'success' => 'The users invited.', 'success' => 'L\'invitation a été envoyé',
'failure' => 'Un problème est survenu avec cette invitation.', 'failure' => 'L\'invitation n\'a pas pu être envoyé. Veuillez réessayer.',
], ],
], ],
@@ -188,8 +188,8 @@ return [
'settings' => 'Paramètres', 'settings' => 'Paramètres',
'app-setup' => [ 'app-setup' => [
'app-setup' => 'Configuration de l\'application', 'app-setup' => 'Configuration de l\'application',
'images-only' => 'Seules les images peuvent être déposées.', 'images-only' => 'Seules les images peuvent être envoyées.',
'too-big' => 'Le fichier déposé est trop grand. Déposer une image d\'une taille inférieur à :size', 'too-big' => 'Le fichier envoyé est trop grand. Envoyer une image d\'une taille inférieur à :size',
], ],
'analytics' => [ 'analytics' => [
'analytics' => 'Analytics', 'analytics' => 'Analytics',
@@ -205,26 +205,26 @@ return [
'stylesheet' => 'Feuille de style', 'stylesheet' => 'Feuille de style',
], ],
'theme' => [ 'theme' => [
'theme' => ' Thème', 'theme' => 'Thème',
], ],
'edit' => [ 'edit' => [
'success' => 'Paramètres sauvegardés.', 'success' => 'Paramètres sauvegardés.',
'failure' => 'Les paramètres ne peuvent pas être sauvegardés.', 'failure' => 'Les paramètres n\'a pas pu être sauvegardé.',
], ],
], ],
// Login // Login
'login' => [ 'login' => [
'login' => 'Identifiez-vous', 'login' => 'Connexion',
'logged_in' => 'Vous êtes connecté.', 'logged_in' => 'Vous êtes connecté.',
'welcome' => 'Re-bonjour !', 'welcome' => 'Re-bonjour !',
'two-factor' => 'Entrez votre jeton, s\'il vous plait.', 'two-factor' => 'Veuillez entrer votre jeton.',
], ],
// Sidebar footer // Sidebar footer
'help' => 'Aide', 'help' => 'Aide',
'status_page' => 'État des services', 'status_page' => 'Page de statut',
'logout' => 'Se déconnecter', 'logout' => 'Déconnexion',
// Notifications // Notifications
'notifications' => [ 'notifications' => [
@@ -235,15 +235,15 @@ return [
// Welcome modal // Welcome modal
'welcome' => [ 'welcome' => [
'welcome' => 'Welcome to your status page!', 'welcome' => 'Bienvenue sur votre page de statut !',
'message' => 'Votre page de statut est presque prête ! Vous pouvez configurer ces paramètres supplémentaires', 'message' => 'Votre page de statut est presque prête ! Vous pouvez configurer ces paramètres supplémentaires',
'close' => 'Aller directement au tableau de bord', 'close' => 'Aller directement à mon tableau de bord',
'steps' => [ 'steps' => [
'component' => 'Créer des composants', 'component' => 'Créer des composants',
'incident' => 'Créer des incidents', 'incident' => 'Créer des incidents',
'customize' => 'Personnaliser', 'customize' => 'Personnaliser',
'team' => 'Ajouter des utilisateurs', 'team' => 'Ajouter des utilisateurs',
'api' => 'Générer un jeton d\'API', 'api' => 'Générer un jeton API',
'two-factor' => 'Authentification à deux facteurs', 'two-factor' => 'Authentification à deux facteurs',
], ],
], ],

View File

@@ -19,40 +19,40 @@ return [
'site_name' => 'Nom du site', 'site_name' => 'Nom du site',
'site_domain' => 'Nom de domaine du site', 'site_domain' => 'Nom de domaine du site',
'site_timezone' => 'Choisissez votre fuseau horaire', 'site_timezone' => 'Choisissez votre fuseau horaire',
'site_locale' => 'Choisissez votre langue', 'site_locale' => 'Sélectionner votre langue',
'enable_google2fa' => 'Activez la validation en deux étapes Google', 'enable_google2fa' => 'Activer l\'authentification à deux facteurs de Google',
'cache_driver' => 'Pilote de cache', 'cache_driver' => 'Pilote de cache',
'session_driver' => 'Pilote de session', 'session_driver' => 'Pilote de session',
], ],
// Login form fields // Login form fields
'login' => [ 'login' => [
'login' => 'Username or Email', 'login' => 'Nom d\'utilisateur ou e-mail',
'email' => 'Email', 'email' => 'Email',
'password' => 'Mot de passe ', 'password' => 'Mot de passe ',
'2fauth' => 'Code d\'authentification', '2fauth' => 'Code d\'authentification',
'invalid' => 'Invalid username or password', 'invalid' => 'Nom d\'utilisateur ou mot de passe invalide',
'invalid-token' => 'Jeton non valide', 'invalid-token' => 'Jeton invalide',
'cookies' => 'Vous devez activer les cookies pour vous identifier.', 'cookies' => 'Vous devez activer les cookies pour vous connecter.',
], ],
// Incidents form fields // Incidents form fields
'incidents' => [ 'incidents' => [
'name' => 'Nom', 'name' => 'Nom',
'status' => 'Etat', 'status' => 'Statut',
'component' => 'Composant', 'component' => 'Composant',
'message' => 'Message ', 'message' => 'Message',
'message-help' => 'Vous pouvez également utiliser Markdown.', 'message-help' => 'Vous pouvez également utiliser Markdown.',
'scheduled_at' => 'Pour quand planifier la maintenance ?', 'scheduled_at' => 'Quand planifier la maintenance ?',
'incident_time' => 'Quand s\'est produit cet incident ?', 'incident_time' => 'Quand s\'est produit cet incident ?',
'notify_subscribers' => 'Aviser les abonnés', 'notify_subscribers' => 'Aviser les abonnés',
'visibility' => 'Visibilité de l\'incident', 'visibility' => 'Visibilité de l\'incident',
'public' => 'Visibles par le public', 'public' => 'Visible par le public',
'logged_in_only' => 'Uniquement visible des utilisateurs enregistrés', 'logged_in_only' => 'Uniquement visible des utilisateurs enregistrés',
'templates' => [ 'templates' => [
'name' => 'Nom', 'name' => 'Nom',
'template' => 'Modèle', 'template' => 'Modèle',
'twig' => 'Incident Templates can make use of the <a href="http://twig.sensiolabs.org/" target="_blank">Twig</a> templating language.', 'twig' => 'Les modèles d\'incidents utilisent le modèle de langue <a href="http://twig.sensiolabs.org/" target="_blank">Twig</a>.',
], ],
], ],
@@ -63,13 +63,13 @@ return [
'group' => 'Groupe', 'group' => 'Groupe',
'description' => 'Description', 'description' => 'Description',
'link' => 'Lien', 'link' => 'Lien',
'tags' => 'Mots clés', 'tags' => 'Mots-clés',
'tags-help' => 'Séparés par des virgules.', 'tags-help' => 'Séparés par des virgules.',
'enabled' => 'Component enabled?', 'enabled' => 'Component enabled?',
'groups' => [ 'groups' => [
'name' => 'Nom', 'name' => 'Nom',
'collapsed' => 'Collapse the group by default?', 'collapsed' => 'Effrondrer le groupe par défaut ?',
], ],
], ],
@@ -85,7 +85,7 @@ return [
'type_sum' => 'Somme', 'type_sum' => 'Somme',
'type_avg' => 'Moyenne', 'type_avg' => 'Moyenne',
'places' => 'Nombre de chiffres après la virgule', 'places' => 'Nombre de chiffres après la virgule',
'default_view' => 'Default View', 'default_view' => 'Vue par défaut',
'points' => [ 'points' => [
'value' => 'Valeur', 'value' => 'Valeur',
@@ -97,13 +97,13 @@ return [
/// Application setup /// Application setup
'app-setup' => [ 'app-setup' => [
'site-name' => 'Nom du site', 'site-name' => 'Nom du site',
'site-url' => 'Url du site', 'site-url' => 'URL du site',
'display-graphs' => 'Afficher les graphiques sur la page de status ?', 'display-graphs' => 'Afficher les graphiques sur la page de statut ?',
'about-this-page' => 'À propos de cette page', 'about-this-page' => 'À propos de cette page',
'days-of-incidents' => 'Combien de jours d\'incidents à montrer ?', 'days-of-incidents' => 'Combien de jours d\'incidents à montrer ?',
'banner' => 'Image d\'en-tête', '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écharger un fichier ne dépassant pas les 930px de large.',
'subscribers' => 'Permettre aux gens de s\'inscrire aux notifications par email ?', 'subscribers' => 'Permettre aux personnes de s\'inscrire aux notifications par e-mail ?',
], ],
'analytics' => [ 'analytics' => [
'analytics_google' => 'Code de Google Analytics', 'analytics_google' => 'Code de Google Analytics',
@@ -125,19 +125,19 @@ return [
'custom-css' => 'Feuille de style personnalisée', 'custom-css' => 'Feuille de style personnalisée',
], ],
'theme' => [ 'theme' => [
'background-color' => 'Couleur de fond', 'background-color' => 'Couleur d\'arrière-plan',
'background-fills' => 'Background Fills (Components, Incidents, Footer)', 'background-fills' => 'Couleur de remplissage de l\'arrière-plan (composants, incidents, pied de page)',
'banner-background-color' => 'Banner Background Color', 'banner-background-color' => 'Banner Background Color',
'banner-padding' => 'Banner Padding', 'banner-padding' => 'Banner Padding',
'fullwidth-banner' => 'Enable fullwidth banner?', 'fullwidth-banner' => 'Enable fullwidth banner?',
'text-color' => 'Couleur Texte', 'text-color' => 'Couleur du texte',
'dashboard-login' => 'Afficher le bouton "Tableau de bord" dans le pied de page ?', 'dashboard-login' => 'Afficher le bouton "Tableau de bord" dans le pied de page ?',
'reds' => 'Rouge (utilisé pour les erreurs)', 'reds' => 'Rouge (utilisé pour les erreurs)',
'blues' => 'Bleu (utilisé pour les informations)', 'blues' => 'Bleu (utilisé pour les informations)',
'greens' => 'Vert (utilisé pour les succès)', 'greens' => 'Vert (utilisé pour les succès)',
'yellows' => 'Jaune (utilisé pour les alertes)', 'yellows' => 'Jaune (utilisé pour les alertes)',
'oranges' => 'Orange (utilisé pour les notices)', 'oranges' => 'Orange (utilisé pour les notices)',
'metrics' => 'Metrics Fill', 'metrics' => 'Remplissage des données',
'links' => 'Liens', 'links' => 'Liens',
], ],
], ],
@@ -149,13 +149,13 @@ return [
'api-token' => 'Jeton de l\'API', 'api-token' => 'Jeton de l\'API',
'api-token-help' => 'Régénérer votre jeton API permettra d\'éviter les applications existantes d\'accéder à Cachet.', 'api-token-help' => 'Régénérer votre jeton API permettra d\'éviter les applications existantes d\'accéder à Cachet.',
'gravatar' => 'Change your profile picture at Gravatar.', 'gravatar' => 'Change your profile picture at Gravatar.',
'user_level' => 'User Level', 'user_level' => 'Niveau de l\'utilisateur',
'levels' => [ 'levels' => [
'admin' => 'Admin', 'admin' => 'Admin',
'user' => 'Utilisateur', 'user' => 'Utilisateur',
], ],
'2fa' => [ '2fa' => [
'help' => 'Habilitante authentification à deux facteurs augmente la sécurité de votre compte. Vous aurez besoin de télécharger <a href="https://support.google.com/accounts/answer/1066447?hl=en"> Google Authenticator</a> ou une application similaire sur votre appareil mobile. Lorsque vous vous connectez vous sera demandé de fournir un jeton généré par l\'application.', 'help' => 'Activer l\'authentification à deux facteurs augmente la sécurité de votre compte. Vous aurez besoin de télécharger <a href="https://support.google.com/accounts/answer/1066447?hl=en"> Google Authenticator</a> ou une application similaire sur votre appareil mobile. Lorsque vous vous connectez, il vous sera demandé de fournir un jeton généré par l\'application.',
], ],
'team' => [ 'team' => [
'description' => 'Invite your team members by entering their email addresses here.', 'description' => 'Invite your team members by entering their email addresses here.',
@@ -165,17 +165,17 @@ return [
// Buttons // Buttons
'add' => 'Ajouter', 'add' => 'Ajouter',
'save' => 'Enregistrer', 'save' => 'Sauvegarder',
'update' => 'mettre à jour', 'update' => 'Mettre à jour',
'create' => 'Nouveau', 'create' => 'Créer',
'edit' => 'Modifier', 'edit' => 'Modifier',
'delete' => 'Supprimer', 'delete' => 'Supprimer',
'submit' => 'ENVOYER', 'submit' => 'Envoyer',
'cancel' => 'Annuler', 'cancel' => 'Annuler',
'remove' => 'Enlever', 'remove' => 'Enlever',
'invite' => 'Inviter', 'invite' => 'Inviter',
'signup' => 'Inscription', 'signup' => 'Inscription',
// Other // Other
'optional' => '* En option', 'optional' => '* Optionnel',
]; ];

View File

@@ -50,7 +50,7 @@ return [
'in' => 'Le champ :attribute sélectionné est invalide.', 'in' => 'Le champ :attribute sélectionné est invalide.',
'integer' => ':attribute doit être un entier.', 'integer' => ':attribute doit être un entier.',
'ip' => ':attribute doit être une adresse IP valide.', 'ip' => ':attribute doit être une adresse IP valide.',
'json' => 'The :attribute must be a valid JSON string.', 'json' => ':attribut doit être une chaîne JSON valide.',
'max' => [ 'max' => [
'numeric' => ':attribute ne doit pas être plus grand que :max.', 'numeric' => ':attribute ne doit pas être plus grand que :max.',
'file' => 'attribute ne doit pas être plus grand que :max kilo-octets.', 'file' => 'attribute ne doit pas être plus grand que :max kilo-octets.',
@@ -69,7 +69,7 @@ return [
'regex' => 'Le format de :attribute est invalide.', 'regex' => 'Le format de :attribute est invalide.',
'required' => 'Le champ :attribute est requis.', 'required' => 'Le champ :attribute est requis.',
'required_if' => 'Le champ :attribute est requis lorsque :other est :value.', 'required_if' => 'Le champ :attribute est requis lorsque :other est :value.',
'required_unless' => 'The :attribute field is required unless :other is in :values.', 'required_unless' => 'Le champ :attribute est requis sauf si :other est dans :values.',
'required_with' => 'Le champ :attribute est requis lorsque :values est présent.', 'required_with' => 'Le champ :attribute est requis lorsque :values est présent.',
'required_with_all' => 'Le champ :attribute est requis lorsque :values est présent.', 'required_with_all' => 'Le champ :attribute est requis lorsque :values est présent.',
'required_without' => 'Le champ :attribute est requis lorsque :values n\'est pas présent.', 'required_without' => 'Le champ :attribute est requis lorsque :values n\'est pas présent.',

7
resources/lang/he/cachet.php Normal file → Executable file
View File

@@ -22,11 +22,10 @@ return [
// Incidents // Incidents
'incidents' => [ 'incidents' => [
'none' => 'Nothing to report', 'none' => 'No incidents reported',
'past' => 'Past Incidents', 'past' => 'Past Incidents',
'previous_week' => 'Previous Week', 'previous_week' => 'Previous Week',
'next_week' => 'Next Week', 'next_week' => 'Next Week',
'none' => 'Nothing to report',
'scheduled' => 'תחזוקה מתוזמנת', 'scheduled' => 'תחזוקה מתוזמנת',
'scheduled_at' => ', scheduled :timestamp', 'scheduled_at' => ', scheduled :timestamp',
'status' => [ 'status' => [
@@ -124,8 +123,8 @@ return [
'modal' => [ 'modal' => [
'close' => 'Close', 'close' => 'Close',
'subscribe' => [ 'subscribe' => [
'title' => 'Subscribe to component updates?', 'title' => 'Subscribe to component updates',
'body' => 'Enter your email address to subscribe to updates for this component. If you\'re already subscribed, you\'ll receive emails for this component too.', '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.',
'button' => 'Subscribe', 'button' => 'Subscribe',
], ],
], ],

116
resources/lang/he/dashboard.php Normal file → Executable file
View File

@@ -21,14 +21,14 @@ return [
'incident-create-template' => 'Create Template', 'incident-create-template' => 'Create Template',
'incident-templates' => 'Incident Templates', 'incident-templates' => 'Incident Templates',
'add' => [ 'add' => [
'title' => 'Add an Incident', 'title' => 'Report an incident',
'success' => 'Incident added.', 'success' => 'Incident reported.',
'failure' => 'Something went wrong with the incident.', 'failure' => 'The incident could not be reported. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit an Incident', 'title' => 'Edit an incident',
'success' => 'Incident updated.', 'success' => 'Incident updated.',
'failure' => 'Something went wrong with the incident.', 'failure' => 'The incident could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The incident has been deleted and will not show on your status page.', 'success' => 'The incident has been deleted and will not show on your status page.',
@@ -39,19 +39,19 @@ return [
'templates' => [ 'templates' => [
'title' => 'Incident Templates', 'title' => 'Incident Templates',
'add' => [ 'add' => [
'title' => 'Create an Incident Template', 'title' => 'Create an incident template',
'message' => 'You should add an Incident Template.', 'message' => 'You should add an incident template.',
'success' => 'תבנית נוצרה.', 'success' => 'תבנית נוצרה.',
'failure' => 'Something went wrong with the incident template.', 'failure' => 'The incident template could not be created. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit Template', 'title' => 'Edit Template',
'success' => 'Template has been updated!', 'success' => 'The incdent template has been updated!',
'failure' => 'Something went wrong updating the incident template', 'failure' => 'The incident template could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The tmplate has been deleted.', 'success' => 'The incident template has been deleted.',
'failure' => 'The template could not be deleted. Please try again.', 'failure' => 'The incident template could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -62,18 +62,18 @@ return [
'logged' => '{0} There are no schedules, good work.|You have logged one schedule.|You have reported <strong>:count</strong> schedules.', 'logged' => '{0} There are no schedules, good work.|You have logged one schedule.|You have reported <strong>:count</strong> schedules.',
'scheduled_at' => 'Scheduled at :timestamp', 'scheduled_at' => 'Scheduled at :timestamp',
'add' => [ 'add' => [
'title' => 'Add Scheduled Maintenance', 'title' => 'Add scheduled maintenance',
'success' => 'Schedule added.', 'success' => 'Scheduled maintenance has been reported!',
'failure' => 'Something went wrong adding the schedule.', 'failure' => 'The scheduled maintenance could not be reported. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit Scheduled Maintenance', 'title' => 'Edit scheduled maintenance',
'success' => 'Schedule has been updated!', 'success' => 'Scheduled maintenance has been edited!',
'failure' => 'Something went wrong editing the schedule.', 'failure' => 'The scheduled maintenance could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The schedule has been deleted and will not show on your status page.', 'success' => 'Scheduled maintenance has been deleted!',
'failure' => 'The schedule could not be deleted. Please try again.', 'failure' => 'The scheduled maintenance could not be deleted. Please try again.',
], ],
], ],
@@ -83,19 +83,19 @@ return [
'component_statuses' => 'רכיב סטטוסים', 'component_statuses' => 'רכיב סטטוסים',
'listed_group' => 'Grouped under :name', 'listed_group' => 'Grouped under :name',
'add' => [ 'add' => [
'title' => 'Add a Component', 'title' => 'Add a component',
'message' => 'You should add a component.', 'message' => 'You should add a component.',
'success' => 'רכיב נוצר.', 'success' => 'רכיב נוצר.',
'failure' => 'Something went wrong with the component.', 'failure' => 'The component could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Component', 'title' => 'Edit a component',
'success' => 'Component updated.', 'success' => 'Component has been updated!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The component could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component deleted.', 'success' => 'The component has been deleted!',
'failure' => 'The Component could not be deleted. Please try again.', 'failure' => 'The component could not be deleted. Please try again.',
], ],
// Component groups // Component groups
@@ -103,18 +103,18 @@ return [
'groups' => 'Component group|Component groups', 'groups' => 'Component group|Component groups',
'no_components' => 'You should add a component group.', 'no_components' => 'You should add a component group.',
'add' => [ 'add' => [
'title' => 'Add a Component Group', 'title' => 'Add a component group',
'success' => 'Component group added.', 'success' => 'Component group has been added!',
'failure' => 'Something went wrong with the component group.', 'failure' => 'The component group could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Component Group', 'title' => 'Edit a component group',
'success' => 'Component group updated.', 'success' => 'Component group has been edited!',
'failure' => 'Something went wrong with the component group.', 'failure' => 'The component group could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component Group deleted.', 'success' => 'Component group has been deleted!',
'failure' => 'The Component Group could not be deleted. Please try again.', 'failure' => 'The component group could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -123,18 +123,18 @@ return [
'metrics' => [ 'metrics' => [
'metrics' => 'מדדים', 'metrics' => 'מדדים',
'add' => [ 'add' => [
'title' => 'Create a Metric', 'title' => 'Create a metric',
'message' => 'You should add a Metric.', 'message' => 'You should add a metric.',
'success' => 'מדד נוצר.', 'success' => 'מדד נוצר.',
'failure' => 'משהו השתבש עם המדד.', 'failure' => 'משהו השתבש עם המדד.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Metric', 'title' => 'Edit a metric',
'success' => 'Metric updated.', 'success' => 'Metric has been updated!',
'failure' => 'משהו השתבש עם המדד.', 'failure' => 'משהו השתבש עם המדד.',
], ],
'delete' => [ 'delete' => [
'success' => 'The metric has been deleted and will not show on your status page.', '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.', 'failure' => 'The metric could not be deleted. Please try again.',
], ],
], ],
@@ -143,16 +143,16 @@ return [
'subscribers' => 'Subscribers', 'subscribers' => 'Subscribers',
'description' => 'Subscribers will receive email updates when incidents are created.', 'description' => 'Subscribers will receive email updates when incidents are created.',
'verified' => 'Verified', 'verified' => 'Verified',
'not_verified' => 'Not Verified', 'not_verified' => 'Not verified',
'add' => [ 'add' => [
'title' => 'Add a New Subscriber', 'title' => 'Add a new subscriber',
'success' => 'Subscriber added.', 'success' => 'Subscriber has been added!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The subscriber could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Update Subscriber', 'title' => 'Update subscriber',
'success' => 'Subscriber updated.', 'success' => 'Subscriber has been updated!',
'failure' => 'Something went wrong when updating.', 'failure' => 'The subscriber could not be updated. Please try again.',
], ],
], ],
@@ -163,23 +163,23 @@ return [
'profile' => 'Profile', 'profile' => 'Profile',
'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.', 'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.',
'add' => [ 'add' => [
'title' => 'Add a New Team Member', 'title' => 'Add a new team member',
'success' => 'Team member added.', 'success' => 'Team member has been added!',
'failure' => 'Something went wrong with the user.', 'failure' => 'The team member could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Update Profile', 'title' => 'Update profile',
'success' => 'Profile updated.', 'success' => 'Team member has been updated!',
'failure' => 'Something went wrong when updating.', 'failure' => 'The team member could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'User deleted.', 'success' => 'Team member has been deleted and will no longer have access to the dashboard!',
'failure' => 'Something went wrong when deleting this user.', 'failure' => 'The team member could not be added. Please try again.',
], ],
'invite' => [ 'invite' => [
'title' => 'Invite a New Team Member', 'title' => 'Invite a new team member',
'success' => 'The users invited.', 'success' => 'An invite has been sent',
'failure' => 'Something went wrong with the invite.', 'failure' => 'The invite could not be sent. Please try again.',
], ],
], ],

46
resources/lang/he/forms.php Normal file → Executable file
View File

@@ -45,8 +45,8 @@ return [
'message-help' => 'You may also use Markdown.', 'message-help' => 'You may also use Markdown.',
'scheduled_at' => 'למתי לתזמן את התחזוקה?', 'scheduled_at' => 'למתי לתזמן את התחזוקה?',
'incident_time' => 'When did this incident occur?', 'incident_time' => 'When did this incident occur?',
'notify_subscribers' => 'Notify Subscribers?', 'notify_subscribers' => 'Notify subscribers?',
'visibility' => 'Incident Visibility', 'visibility' => 'Incident visibility',
'public' => 'Viewable by public', 'public' => 'Viewable by public',
'logged_in_only' => 'Only visible to logged in users', 'logged_in_only' => 'Only visible to logged in users',
'templates' => [ 'templates' => [
@@ -80,12 +80,12 @@ return [
'description' => 'הגדרה', 'description' => 'הגדרה',
'description-help' => 'You may also use Markdown.', 'description-help' => 'You may also use Markdown.',
'display-chart' => 'Display chart on status page?', 'display-chart' => 'Display chart on status page?',
'default-value' => 'Default Value', 'default-value' => 'Default value',
'calc_type' => 'Calculation of Metrics', 'calc_type' => 'Calculation of metrics',
'type_sum' => 'Sum', 'type_sum' => 'Sum',
'type_avg' => 'Average', 'type_avg' => 'Average',
'places' => 'Decimal Places', 'places' => 'Decimal places',
'default_view' => 'Default View', 'default_view' => 'Default view',
'points' => [ 'points' => [
'value' => 'ערך', 'value' => 'ערך',
@@ -112,32 +112,32 @@ return [
'analytics_piwik_siteid' => 'Piwik\'s site id', 'analytics_piwik_siteid' => 'Piwik\'s site id',
], ],
'localization' => [ 'localization' => [
'site-timezone' => 'Site Timezone', 'site-timezone' => 'Site timezone',
'site-locale' => 'Site Language', 'site-locale' => 'Site language',
'date-format' => 'Date Format', 'date-format' => 'Date format',
'incident-date-format' => 'Incident Timestamp Format', 'incident-date-format' => 'Incident timestamp format',
], ],
'security' => [ 'security' => [
'allowed-domains' => 'Allowed Domains', 'allowed-domains' => 'Allowed domains',
'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.', 'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.',
], ],
'stylesheet' => [ 'stylesheet' => [
'custom-css' => 'Custom Stylesheet', 'custom-css' => 'Custom stylesheet',
], ],
'theme' => [ 'theme' => [
'background-color' => 'Background Color', 'background-color' => 'Background color',
'background-fills' => 'Background Fills (Components, Incidents, Footer)', 'background-fills' => 'Background fills (components, incidents, footer)',
'banner-background-color' => 'Banner Background Color', 'banner-background-color' => 'Banner background color',
'banner-padding' => 'Banner Padding', 'banner-padding' => 'Banner padding',
'fullwidth-banner' => 'Enable fullwidth banner?', 'fullwidth-banner' => 'Enable fullwidth banner?',
'text-color' => 'Text Color', 'text-color' => 'Text color',
'dashboard-login' => 'Show dashboard button in the footer?', 'dashboard-login' => 'Show dashboard button in the footer?',
'reds' => 'Red (Used for errors)', 'reds' => 'Red (used for errors)',
'blues' => 'Blue (Used for information)', 'blues' => 'Blue (used for information)',
'greens' => 'Green (Used for success)', 'greens' => 'Green (used for success)',
'yellows' => 'Yellow (Used for alerts)', 'yellows' => 'Yellow (used for alerts)',
'oranges' => 'Orange (Used for notices)', 'oranges' => 'Orange (used for notices)',
'metrics' => 'Metrics Fill', 'metrics' => 'Metrics fill',
'links' => 'Links', 'links' => 'Links',
], ],
], ],

0
resources/lang/he/pagination.php Normal file → Executable file
View File

2
resources/lang/he/setup.php Normal file → Executable file
View File

@@ -13,7 +13,7 @@ return [
'setup' => 'הגדרות', 'setup' => 'הגדרות',
'title' => 'התקנת Cachet', 'title' => 'התקנת Cachet',
'service_details' => 'פרטי שרות', 'service_details' => 'פרטי שרות',
'env_setup' => 'Environment Setup', 'env_setup' => 'Environment setup',
'status_page_setup' => 'הגדרת עמוד מצב', 'status_page_setup' => 'הגדרת עמוד מצב',
'show_support' => 'Show support for Cachet?', 'show_support' => 'Show support for Cachet?',
'admin_account' => 'חשבון מנהל המערכת', 'admin_account' => 'חשבון מנהל המערכת',

0
resources/lang/he/validation.php Normal file → Executable file
View File

7
resources/lang/hu/cachet.php Normal file → Executable file
View File

@@ -22,11 +22,10 @@ return [
// Incidents // Incidents
'incidents' => [ 'incidents' => [
'none' => 'Nothing to report', 'none' => 'No incidents reported',
'past' => 'Past Incidents', 'past' => 'Past Incidents',
'previous_week' => 'Previous Week', 'previous_week' => 'Previous Week',
'next_week' => 'Next Week', 'next_week' => 'Next Week',
'none' => 'Nothing to report',
'scheduled' => 'Ütemezett karbantartás', 'scheduled' => 'Ütemezett karbantartás',
'scheduled_at' => ', ütemezett :timestamp', 'scheduled_at' => ', ütemezett :timestamp',
'status' => [ 'status' => [
@@ -124,8 +123,8 @@ return [
'modal' => [ 'modal' => [
'close' => 'Close', 'close' => 'Close',
'subscribe' => [ 'subscribe' => [
'title' => 'Subscribe to component updates?', 'title' => 'Subscribe to component updates',
'body' => 'Enter your email address to subscribe to updates for this component. If you\'re already subscribed, you\'ll receive emails for this component too.', '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.',
'button' => 'Feliratkozás', 'button' => 'Feliratkozás',
], ],
], ],

112
resources/lang/hu/dashboard.php Normal file → Executable file
View File

@@ -21,12 +21,12 @@ return [
'incident-create-template' => 'Sablon létrehozása', 'incident-create-template' => 'Sablon létrehozása',
'incident-templates' => 'Incidens Sablonok', 'incident-templates' => 'Incidens Sablonok',
'add' => [ 'add' => [
'title' => 'Add an Incident', 'title' => 'Report an incident',
'success' => 'Incidens létrehozva.', 'success' => 'Incidens létrehozva.',
'failure' => 'Hiba történt az incidens létrehozása során.', 'failure' => 'Hiba történt az incidens létrehozása során.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit an Incident', 'title' => 'Edit an incident',
'success' => 'Incidens frissítve.', 'success' => 'Incidens frissítve.',
'failure' => 'Hiba történt az incidens szerkesztése során.', 'failure' => 'Hiba történt az incidens szerkesztése során.',
], ],
@@ -39,8 +39,8 @@ return [
'templates' => [ 'templates' => [
'title' => 'Incidens Sablonok', 'title' => 'Incidens Sablonok',
'add' => [ 'add' => [
'title' => 'Create an Incident Template', 'title' => 'Create an incident template',
'message' => 'You should add an Incident Template.', 'message' => 'You should add an incident template.',
'success' => 'Sablon létrehozva.', 'success' => 'Sablon létrehozva.',
'failure' => 'Hiba történt az incidens sablon létrehozása során.', 'failure' => 'Hiba történt az incidens sablon létrehozása során.',
], ],
@@ -50,8 +50,8 @@ return [
'failure' => 'Hiba történt az incidens sablon szerkesztése során', 'failure' => 'Hiba történt az incidens sablon szerkesztése során',
], ],
'delete' => [ 'delete' => [
'success' => 'The tmplate has been deleted.', 'success' => 'The incident template has been deleted.',
'failure' => 'The template could not be deleted. Please try again.', 'failure' => 'The incident template could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -62,18 +62,18 @@ return [
'logged' => '{0} There are no schedules, good work.|You have logged one schedule.|You have reported <strong>:count</strong> schedules.', 'logged' => '{0} There are no schedules, good work.|You have logged one schedule.|You have reported <strong>:count</strong> schedules.',
'scheduled_at' => 'Scheduled at :timestamp', 'scheduled_at' => 'Scheduled at :timestamp',
'add' => [ 'add' => [
'title' => 'Add Scheduled Maintenance', 'title' => 'Add scheduled maintenance',
'success' => 'Schedule added.', 'success' => 'Scheduled maintenance has been reported!',
'failure' => 'Something went wrong adding the schedule.', 'failure' => 'The scheduled maintenance could not be reported. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit Scheduled Maintenance', 'title' => 'Edit scheduled maintenance',
'success' => 'Schedule has been updated!', 'success' => 'Scheduled maintenance has been edited!',
'failure' => 'Something went wrong editing the schedule.', 'failure' => 'The scheduled maintenance could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The schedule has been deleted and will not show on your status page.', 'success' => 'Scheduled maintenance has been deleted!',
'failure' => 'The schedule could not be deleted. Please try again.', 'failure' => 'The scheduled maintenance could not be deleted. Please try again.',
], ],
], ],
@@ -83,19 +83,19 @@ return [
'component_statuses' => 'Component Statuses', 'component_statuses' => 'Component Statuses',
'listed_group' => 'Grouped under :name', 'listed_group' => 'Grouped under :name',
'add' => [ 'add' => [
'title' => 'Add a Component', 'title' => 'Add a component',
'message' => 'You should add a component.', 'message' => 'You should add a component.',
'success' => 'Component created.', 'success' => 'Component has been added!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The component could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Component', 'title' => 'Edit a component',
'success' => 'Component updated.', 'success' => 'Component has been updated!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The component could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component deleted.', 'success' => 'The component has been deleted!',
'failure' => 'The Component could not be deleted. Please try again.', 'failure' => 'The component could not be deleted. Please try again.',
], ],
// Component groups // Component groups
@@ -103,18 +103,18 @@ return [
'groups' => 'Component group|Component groups', 'groups' => 'Component group|Component groups',
'no_components' => 'You should add a component group.', 'no_components' => 'You should add a component group.',
'add' => [ 'add' => [
'title' => 'Add a Component Group', 'title' => 'Add a component group',
'success' => 'Component group added.', 'success' => 'Component group has been added!',
'failure' => 'Something went wrong with the component group.', 'failure' => 'The component group could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Component Group', 'title' => 'Edit a component group',
'success' => 'Component group updated.', 'success' => 'Component group has been edited!',
'failure' => 'Something went wrong with the component group.', 'failure' => 'The component group could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component Group deleted.', 'success' => 'Component group has been deleted!',
'failure' => 'The Component Group could not be deleted. Please try again.', 'failure' => 'The component group could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -123,18 +123,18 @@ return [
'metrics' => [ 'metrics' => [
'metrics' => 'Metrics', 'metrics' => 'Metrics',
'add' => [ 'add' => [
'title' => 'Create a Metric', 'title' => 'Create a metric',
'message' => 'You should add a Metric.', 'message' => 'You should add a metric.',
'success' => 'Metric created.', 'success' => 'Metric has been added!',
'failure' => 'Something went wrong with the metric.', 'failure' => 'The metric could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Metric', 'title' => 'Edit a metric',
'success' => 'Metric updated.', 'success' => 'Metric has been updated!',
'failure' => 'Something went wrong with the metric.', 'failure' => 'The metric could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The metric has been deleted and will not show on your status page.', '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.', 'failure' => 'The metric could not be deleted. Please try again.',
], ],
], ],
@@ -143,16 +143,16 @@ return [
'subscribers' => 'Subscribers', 'subscribers' => 'Subscribers',
'description' => 'Subscribers will receive email updates when incidents are created.', 'description' => 'Subscribers will receive email updates when incidents are created.',
'verified' => 'Verified', 'verified' => 'Verified',
'not_verified' => 'Not Verified', 'not_verified' => 'Not verified',
'add' => [ 'add' => [
'title' => 'Add a New Subscriber', 'title' => 'Add a new subscriber',
'success' => 'Subscriber added.', 'success' => 'Subscriber has been added!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The subscriber could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Update Subscriber', 'title' => 'Update subscriber',
'success' => 'Subscriber updated.', 'success' => 'Subscriber has been updated!',
'failure' => 'Something went wrong when updating.', 'failure' => 'The subscriber could not be updated. Please try again.',
], ],
], ],
@@ -163,23 +163,23 @@ return [
'profile' => 'Profile', 'profile' => 'Profile',
'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.', 'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.',
'add' => [ 'add' => [
'title' => 'Add a New Team Member', 'title' => 'Add a new team member',
'success' => 'Team member added.', 'success' => 'Team member has been added!',
'failure' => 'Something went wrong with the user.', 'failure' => 'The team member could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Update Profile', 'title' => 'Update profile',
'success' => 'Profile updated.', 'success' => 'Team member has been updated!',
'failure' => 'Something went wrong when updating.', 'failure' => 'The team member could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'User deleted.', 'success' => 'Team member has been deleted and will no longer have access to the dashboard!',
'failure' => 'Something went wrong when deleting this user.', 'failure' => 'The team member could not be added. Please try again.',
], ],
'invite' => [ 'invite' => [
'title' => 'Invite a New Team Member', 'title' => 'Invite a new team member',
'success' => 'The users invited.', 'success' => 'An invite has been sent',
'failure' => 'Something went wrong with the invite.', 'failure' => 'The invite could not be sent. Please try again.',
], ],
], ],

48
resources/lang/hu/forms.php Normal file → Executable file
View File

@@ -45,8 +45,8 @@ return [
'message-help' => 'You may also use Markdown.', 'message-help' => 'You may also use Markdown.',
'scheduled_at' => 'When to schedule the maintenance for?', 'scheduled_at' => 'When to schedule the maintenance for?',
'incident_time' => 'When did this incident occur?', 'incident_time' => 'When did this incident occur?',
'notify_subscribers' => 'Notify Subscribers?', 'notify_subscribers' => 'Notify subscribers?',
'visibility' => 'Incident Visibility', 'visibility' => 'Incident visibility',
'public' => 'Viewable by public', 'public' => 'Viewable by public',
'logged_in_only' => 'Only visible to logged in users', 'logged_in_only' => 'Only visible to logged in users',
'templates' => [ 'templates' => [
@@ -80,12 +80,12 @@ return [
'description' => 'Leírás', 'description' => 'Leírás',
'description-help' => 'You may also use Markdown.', 'description-help' => 'You may also use Markdown.',
'display-chart' => 'Display chart on status page?', 'display-chart' => 'Display chart on status page?',
'default-value' => 'Default Value', 'default-value' => 'Default value',
'calc_type' => 'Calculation of Metrics', 'calc_type' => 'Calculation of metrics',
'type_sum' => 'Összeg', 'type_sum' => 'Összeg',
'type_avg' => 'Átlag', 'type_avg' => 'Átlag',
'places' => 'Decimal Places', 'places' => 'Decimal places',
'default_view' => 'Default View', 'default_view' => 'Default view',
'points' => [ 'points' => [
'value' => 'Érték', 'value' => 'Érték',
@@ -101,7 +101,7 @@ return [
'display-graphs' => 'Display graphs on status page?', 'display-graphs' => 'Display graphs on status page?',
'about-this-page' => 'About this page', 'about-this-page' => 'About this page',
'days-of-incidents' => 'How many days of incidents to show?', 'days-of-incidents' => 'How many days of incidents to show?',
'banner' => 'Banner Image', 'banner' => 'Banner image',
'banner-help' => "It's recommended that you upload files no bigger than 930px wide .", 'banner-help' => "It's recommended that you upload files no bigger than 930px wide .",
'subscribers' => 'Allow people to signup to email notifications?', 'subscribers' => 'Allow people to signup to email notifications?',
], ],
@@ -112,32 +112,32 @@ return [
'analytics_piwik_siteid' => 'Piwik\'s site id', 'analytics_piwik_siteid' => 'Piwik\'s site id',
], ],
'localization' => [ 'localization' => [
'site-timezone' => 'Site Timezone', 'site-timezone' => 'Site timezone',
'site-locale' => 'Site Language', 'site-locale' => 'Site language',
'date-format' => 'Date Format', 'date-format' => 'Date format',
'incident-date-format' => 'Incident Timestamp Format', 'incident-date-format' => 'Incident timestamp format',
], ],
'security' => [ 'security' => [
'allowed-domains' => 'Allowed Domains', 'allowed-domains' => 'Allowed domains',
'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.', 'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.',
], ],
'stylesheet' => [ 'stylesheet' => [
'custom-css' => 'Custom Stylesheet', 'custom-css' => 'Custom stylesheet',
], ],
'theme' => [ 'theme' => [
'background-color' => 'Background Color', 'background-color' => 'Background color',
'background-fills' => 'Background Fills (Components, Incidents, Footer)', 'background-fills' => 'Background fills (components, incidents, footer)',
'banner-background-color' => 'Banner Background Color', 'banner-background-color' => 'Banner background color',
'banner-padding' => 'Banner Padding', 'banner-padding' => 'Banner padding',
'fullwidth-banner' => 'Enable fullwidth banner?', 'fullwidth-banner' => 'Enable fullwidth banner?',
'text-color' => 'Text Color', 'text-color' => 'Text color',
'dashboard-login' => 'Show dashboard button in the footer?', 'dashboard-login' => 'Show dashboard button in the footer?',
'reds' => 'Red (Used for errors)', 'reds' => 'Red (used for errors)',
'blues' => 'Blue (Used for information)', 'blues' => 'Blue (used for information)',
'greens' => 'Green (Used for success)', 'greens' => 'Green (used for success)',
'yellows' => 'Yellow (Used for alerts)', 'yellows' => 'Yellow (used for alerts)',
'oranges' => 'Orange (Used for notices)', 'oranges' => 'Orange (used for notices)',
'metrics' => 'Metrics Fill', 'metrics' => 'Metrics fill',
'links' => 'Links', 'links' => 'Links',
], ],
], ],

0
resources/lang/hu/pagination.php Normal file → Executable file
View File

2
resources/lang/hu/setup.php Normal file → Executable file
View File

@@ -13,7 +13,7 @@ return [
'setup' => 'Telepítés', 'setup' => 'Telepítés',
'title' => 'Cachet telepítése', 'title' => 'Cachet telepítése',
'service_details' => 'A szolgáltatás részletei', 'service_details' => 'A szolgáltatás részletei',
'env_setup' => 'Environment Setup', 'env_setup' => 'Environment setup',
'status_page_setup' => 'Állapotoldal beállítás', 'status_page_setup' => 'Állapotoldal beállítás',
'show_support' => 'Cachet támogató link megjelenítése?', 'show_support' => 'Cachet támogató link megjelenítése?',
'admin_account' => 'Adminisztrátori fiók', 'admin_account' => 'Adminisztrátori fiók',

0
resources/lang/hu/validation.php Normal file → Executable file
View File

View File

@@ -22,11 +22,10 @@ return [
// Incidents // Incidents
'incidents' => [ 'incidents' => [
'none' => 'Tidak ada insiden.', 'none' => 'No incidents reported',
'past' => 'Insiden sebelumnya', 'past' => 'Insiden sebelumnya',
'previous_week' => 'Pekan sebelumnya', 'previous_week' => 'Pekan sebelumnya',
'next_week' => 'Pekan selanjutnya', 'next_week' => 'Pekan selanjutnya',
'none' => 'Tidak ada insiden.',
'scheduled' => 'Jadwal Pemeliharaan', 'scheduled' => 'Jadwal Pemeliharaan',
'scheduled_at' => ', dijadwalkan pada :timestamp', 'scheduled_at' => ', dijadwalkan pada :timestamp',
'status' => [ 'status' => [
@@ -125,8 +124,8 @@ return [
'modal' => [ 'modal' => [
'close' => 'Close', 'close' => 'Close',
'subscribe' => [ 'subscribe' => [
'title' => 'Subscribe to component updates?', 'title' => 'Subscribe to component updates',
'body' => 'Enter your email address to subscribe to updates for this component. If you\'re already subscribed, you\'ll receive emails for this component too.', '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.',
'button' => 'Daftar', 'button' => 'Daftar',
], ],
], ],

View File

@@ -40,7 +40,7 @@ return [
'title' => 'Template Insiden', 'title' => 'Template Insiden',
'add' => [ 'add' => [
'title' => 'Buat template insiden', 'title' => 'Buat template insiden',
'message' => 'You should add an Incident Template.', 'message' => 'You should add an incident template.',
'success' => 'Template sudah dibuat.', 'success' => 'Template sudah dibuat.',
'failure' => 'Ada masalah dengan template insiden ini.', 'failure' => 'Ada masalah dengan template insiden ini.',
], ],
@@ -50,8 +50,8 @@ return [
'failure' => 'Ada masalah dengan template insiden ini', 'failure' => 'Ada masalah dengan template insiden ini',
], ],
'delete' => [ 'delete' => [
'success' => 'The tmplate has been deleted.', 'success' => 'The incident template has been deleted.',
'failure' => 'The template could not be deleted. Please try again.', 'failure' => 'The incident template could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -94,8 +94,8 @@ return [
'failure' => 'Ada masalah dengan komponen ini.', 'failure' => 'Ada masalah dengan komponen ini.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component deleted.', 'success' => 'The component has been deleted!',
'failure' => 'The Component could not be deleted. Please try again.', 'failure' => 'The component could not be deleted. Please try again.',
], ],
// Component groups // Component groups
@@ -113,8 +113,8 @@ return [
'failure' => 'Ada masalah dengan grup komponen ini.', 'failure' => 'Ada masalah dengan grup komponen ini.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component Group deleted.', 'success' => 'Component group has been deleted!',
'failure' => 'The Component Group could not be deleted. Please try again.', 'failure' => 'The component group could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -124,7 +124,7 @@ return [
'metrics' => 'Metrik', 'metrics' => 'Metrik',
'add' => [ 'add' => [
'title' => 'Buat metrik', 'title' => 'Buat metrik',
'message' => 'You should add a Metric.', 'message' => 'You should add a metric.',
'success' => 'Metrik sudah dibuat.', 'success' => 'Metrik sudah dibuat.',
'failure' => 'Ada masalah dengan metrik ini.', 'failure' => 'Ada masalah dengan metrik ini.',
], ],
@@ -134,7 +134,7 @@ return [
'failure' => 'Ada masalah dengan metrik ini.', 'failure' => 'Ada masalah dengan metrik ini.',
], ],
'delete' => [ 'delete' => [
'success' => 'The metric has been deleted and will not show on your status page.', '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.', 'failure' => 'The metric could not be deleted. Please try again.',
], ],
], ],

View File

@@ -85,7 +85,7 @@ return [
'type_sum' => 'Jumlah', 'type_sum' => 'Jumlah',
'type_avg' => 'Rata-rata', 'type_avg' => 'Rata-rata',
'places' => 'Digit Desimal', 'places' => 'Digit Desimal',
'default_view' => 'Default View', 'default_view' => 'Default view',
'points' => [ 'points' => [
'value' => 'Nilai', 'value' => 'Nilai',

7
resources/lang/it/cachet.php Normal file → Executable file
View File

@@ -22,11 +22,10 @@ return [
// Incidents // Incidents
'incidents' => [ 'incidents' => [
'none' => 'Nothing to report', 'none' => 'No incidents reported',
'past' => 'Past Incidents', 'past' => 'Past Incidents',
'previous_week' => 'Previous Week', 'previous_week' => 'Previous Week',
'next_week' => 'Next Week', 'next_week' => 'Next Week',
'none' => 'Nothing to report',
'scheduled' => 'Manutenzione programmata', 'scheduled' => 'Manutenzione programmata',
'scheduled_at' => ', programmata il :timestamp', 'scheduled_at' => ', programmata il :timestamp',
'status' => [ 'status' => [
@@ -124,8 +123,8 @@ return [
'modal' => [ 'modal' => [
'close' => 'Close', 'close' => 'Close',
'subscribe' => [ 'subscribe' => [
'title' => 'Subscribe to component updates?', 'title' => 'Subscribe to component updates',
'body' => 'Enter your email address to subscribe to updates for this component. If you\'re already subscribed, you\'ll receive emails for this component too.', '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.',
'button' => 'Iscriviti', 'button' => 'Iscriviti',
], ],
], ],

112
resources/lang/it/dashboard.php Normal file → Executable file
View File

@@ -21,12 +21,12 @@ return [
'incident-create-template' => 'Crea Modello', 'incident-create-template' => 'Crea Modello',
'incident-templates' => 'Incident Templates', 'incident-templates' => 'Incident Templates',
'add' => [ 'add' => [
'title' => 'Add an Incident', 'title' => 'Report an incident',
'success' => 'Incidente aggiunto.', 'success' => 'Incidente aggiunto.',
'failure' => 'Qualcosa è andato storto con l\'incidente.', 'failure' => 'Qualcosa è andato storto con l\'incidente.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit an Incident', 'title' => 'Edit an incident',
'success' => 'Incidente aggiornato.', 'success' => 'Incidente aggiornato.',
'failure' => 'Qualcosa è andato storto con l\'incidente.', 'failure' => 'Qualcosa è andato storto con l\'incidente.',
], ],
@@ -39,19 +39,19 @@ return [
'templates' => [ 'templates' => [
'title' => 'Incident Templates', 'title' => 'Incident Templates',
'add' => [ 'add' => [
'title' => 'Create an Incident Template', 'title' => 'Create an incident template',
'message' => 'You should add an Incident Template.', 'message' => 'You should add an incident template.',
'success' => 'Template created.', 'success' => 'The incdent template has been created!',
'failure' => 'Something went wrong with the incident template.', 'failure' => 'The incident template could not be created. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit Template', 'title' => 'Edit Template',
'success' => 'Il modello è stato aggiornato!', 'success' => 'Il modello è stato aggiornato!',
'failure' => 'Something went wrong updating the incident template', 'failure' => 'The incident template could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The tmplate has been deleted.', 'success' => 'The incident template has been deleted.',
'failure' => 'The template could not be deleted. Please try again.', 'failure' => 'The incident template could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -62,18 +62,18 @@ return [
'logged' => '{0} There are no schedules, good work.|You have logged one schedule.|You have reported <strong>:count</strong> schedules.', 'logged' => '{0} There are no schedules, good work.|You have logged one schedule.|You have reported <strong>:count</strong> schedules.',
'scheduled_at' => 'Scheduled at :timestamp', 'scheduled_at' => 'Scheduled at :timestamp',
'add' => [ 'add' => [
'title' => 'Add Scheduled Maintenance', 'title' => 'Add scheduled maintenance',
'success' => 'Schedule added.', 'success' => 'Scheduled maintenance has been reported!',
'failure' => 'Something went wrong adding the schedule.', 'failure' => 'The scheduled maintenance could not be reported. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit Scheduled Maintenance', 'title' => 'Edit scheduled maintenance',
'success' => 'Schedule has been updated!', 'success' => 'Scheduled maintenance has been edited!',
'failure' => 'Something went wrong editing the schedule.', 'failure' => 'The scheduled maintenance could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The schedule has been deleted and will not show on your status page.', 'success' => 'Scheduled maintenance has been deleted!',
'failure' => 'The schedule could not be deleted. Please try again.', 'failure' => 'The scheduled maintenance could not be deleted. Please try again.',
], ],
], ],
@@ -83,19 +83,19 @@ return [
'component_statuses' => 'Component Statuses', 'component_statuses' => 'Component Statuses',
'listed_group' => 'Grouped under :name', 'listed_group' => 'Grouped under :name',
'add' => [ 'add' => [
'title' => 'Add a Component', 'title' => 'Add a component',
'message' => 'You should add a component.', 'message' => 'You should add a component.',
'success' => 'Component created.', 'success' => 'Component has been added!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The component could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Component', 'title' => 'Edit a component',
'success' => 'Component updated.', 'success' => 'Component has been updated!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The component could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component deleted.', 'success' => 'The component has been deleted!',
'failure' => 'The Component could not be deleted. Please try again.', 'failure' => 'The component could not be deleted. Please try again.',
], ],
// Component groups // Component groups
@@ -103,18 +103,18 @@ return [
'groups' => 'Component group|Component groups', 'groups' => 'Component group|Component groups',
'no_components' => 'You should add a component group.', 'no_components' => 'You should add a component group.',
'add' => [ 'add' => [
'title' => 'Add a Component Group', 'title' => 'Add a component group',
'success' => 'Component group added.', 'success' => 'Component group has been added!',
'failure' => 'Something went wrong with the component group.', 'failure' => 'The component group could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Component Group', 'title' => 'Edit a component group',
'success' => 'Component group updated.', 'success' => 'Component group has been edited!',
'failure' => 'Something went wrong with the component group.', 'failure' => 'The component group could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component Group deleted.', 'success' => 'Component group has been deleted!',
'failure' => 'The Component Group could not be deleted. Please try again.', 'failure' => 'The component group could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -123,18 +123,18 @@ return [
'metrics' => [ 'metrics' => [
'metrics' => 'Metriche', 'metrics' => 'Metriche',
'add' => [ 'add' => [
'title' => 'Create a Metric', 'title' => 'Create a metric',
'message' => 'You should add a Metric.', 'message' => 'You should add a metric.',
'success' => 'Metrica creata.', 'success' => 'Metrica creata.',
'failure' => 'Something went wrong with the metric.', 'failure' => 'The metric could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Metric', 'title' => 'Edit a metric',
'success' => 'Metrica aggiornata.', 'success' => 'Metrica aggiornata.',
'failure' => 'Something went wrong with the metric.', 'failure' => 'The metric could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The metric has been deleted and will not show on your status page.', '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.', 'failure' => 'The metric could not be deleted. Please try again.',
], ],
], ],
@@ -145,14 +145,14 @@ return [
'verified' => 'Verified', 'verified' => 'Verified',
'not_verified' => 'Non Verificato', 'not_verified' => 'Non Verificato',
'add' => [ 'add' => [
'title' => 'Add a New Subscriber', 'title' => 'Add a new subscriber',
'success' => 'Subscriber added.', 'success' => 'Subscriber has been added!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The subscriber could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Update Subscriber', 'title' => 'Update subscriber',
'success' => 'Subscriber updated.', 'success' => 'Subscriber has been updated!',
'failure' => 'Something went wrong when updating.', 'failure' => 'The subscriber could not be updated. Please try again.',
], ],
], ],
@@ -163,23 +163,23 @@ return [
'profile' => 'Profilo', 'profile' => 'Profilo',
'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.', 'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.',
'add' => [ 'add' => [
'title' => 'Add a New Team Member', 'title' => 'Add a new team member',
'success' => 'Team member added.', 'success' => 'Team member has been added!',
'failure' => 'Something went wrong with the user.', 'failure' => 'The team member could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Update Profile', 'title' => 'Update profile',
'success' => 'Profile updated.', 'success' => 'Team member has been updated!',
'failure' => 'Something went wrong when updating.', 'failure' => 'The team member could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'User deleted.', 'success' => 'Team member has been deleted and will no longer have access to the dashboard!',
'failure' => 'Something went wrong when deleting this user.', 'failure' => 'The team member could not be added. Please try again.',
], ],
'invite' => [ 'invite' => [
'title' => 'Invite a New Team Member', 'title' => 'Invite a new team member',
'success' => 'The users invited.', 'success' => 'An invite has been sent',
'failure' => 'Something went wrong with the invite.', 'failure' => 'The invite could not be sent. Please try again.',
], ],
], ],

40
resources/lang/it/forms.php Normal file → Executable file
View File

@@ -45,7 +45,7 @@ return [
'message-help' => 'You may also use Markdown.', 'message-help' => 'You may also use Markdown.',
'scheduled_at' => 'When to schedule the maintenance for?', 'scheduled_at' => 'When to schedule the maintenance for?',
'incident_time' => 'Quando è accaduto questo incidente?', 'incident_time' => 'Quando è accaduto questo incidente?',
'notify_subscribers' => 'Notify Subscribers?', 'notify_subscribers' => 'Notify subscribers?',
'visibility' => 'Visibilità dell\'Incidente', 'visibility' => 'Visibilità dell\'Incidente',
'public' => 'Viewable by public', 'public' => 'Viewable by public',
'logged_in_only' => 'Only visible to logged in users', 'logged_in_only' => 'Only visible to logged in users',
@@ -80,12 +80,12 @@ return [
'description' => 'Descrizione', 'description' => 'Descrizione',
'description-help' => 'You may also use Markdown.', 'description-help' => 'You may also use Markdown.',
'display-chart' => 'Display chart on status page?', 'display-chart' => 'Display chart on status page?',
'default-value' => 'Default Value', 'default-value' => 'Default value',
'calc_type' => 'Calculation of Metrics', 'calc_type' => 'Calculation of metrics',
'type_sum' => 'Somma', 'type_sum' => 'Somma',
'type_avg' => 'Media', 'type_avg' => 'Media',
'places' => 'Decimal Places', 'places' => 'Decimal places',
'default_view' => 'Default View', 'default_view' => 'Default view',
'points' => [ 'points' => [
'value' => 'Valore', 'value' => 'Valore',
@@ -101,7 +101,7 @@ return [
'display-graphs' => 'Visualizzare i grafici nella pagina di stato?', 'display-graphs' => 'Visualizzare i grafici nella pagina di stato?',
'about-this-page' => 'About this page', 'about-this-page' => 'About this page',
'days-of-incidents' => 'How many days of incidents to show?', 'days-of-incidents' => 'How many days of incidents to show?',
'banner' => 'Banner Image', 'banner' => 'Banner image',
'banner-help' => "It's recommended that you upload files no bigger than 930px wide .", 'banner-help' => "It's recommended that you upload files no bigger than 930px wide .",
'subscribers' => 'Allow people to signup to email notifications?', 'subscribers' => 'Allow people to signup to email notifications?',
], ],
@@ -112,13 +112,13 @@ return [
'analytics_piwik_siteid' => 'Piwik\'s site id', 'analytics_piwik_siteid' => 'Piwik\'s site id',
], ],
'localization' => [ 'localization' => [
'site-timezone' => 'Site Timezone', 'site-timezone' => 'Site timezone',
'site-locale' => 'Site Language', 'site-locale' => 'Site language',
'date-format' => 'Date Format', 'date-format' => 'Date format',
'incident-date-format' => 'Incident Timestamp Format', 'incident-date-format' => 'Incident timestamp format',
], ],
'security' => [ 'security' => [
'allowed-domains' => 'Allowed Domains', 'allowed-domains' => 'Allowed domains',
'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.', 'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.',
], ],
'stylesheet' => [ 'stylesheet' => [
@@ -126,18 +126,18 @@ return [
], ],
'theme' => [ 'theme' => [
'background-color' => 'Colore di Sfondo', 'background-color' => 'Colore di Sfondo',
'background-fills' => 'Background Fills (Components, Incidents, Footer)', 'background-fills' => 'Background fills (components, incidents, footer)',
'banner-background-color' => 'Banner Background Color', 'banner-background-color' => 'Banner background color',
'banner-padding' => 'Banner Padding', 'banner-padding' => 'Banner padding',
'fullwidth-banner' => 'Enable fullwidth banner?', 'fullwidth-banner' => 'Enable fullwidth banner?',
'text-color' => 'Colore del Testo', 'text-color' => 'Colore del Testo',
'dashboard-login' => 'Show dashboard button in the footer?', 'dashboard-login' => 'Show dashboard button in the footer?',
'reds' => 'Red (Used for errors)', 'reds' => 'Red (used for errors)',
'blues' => 'Blue (Used for information)', 'blues' => 'Blue (used for information)',
'greens' => 'Green (Used for success)', 'greens' => 'Green (used for success)',
'yellows' => 'Yellow (Used for alerts)', 'yellows' => 'Yellow (used for alerts)',
'oranges' => 'Orange (Used for notices)', 'oranges' => 'Orange (used for notices)',
'metrics' => 'Metrics Fill', 'metrics' => 'Metrics fill',
'links' => 'Links', 'links' => 'Links',
], ],
], ],

0
resources/lang/it/pagination.php Normal file → Executable file
View File

0
resources/lang/it/setup.php Normal file → Executable file
View File

0
resources/lang/it/validation.php Normal file → Executable file
View File

7
resources/lang/ja/cachet.php Normal file → Executable file
View File

@@ -22,11 +22,10 @@ return [
// Incidents // Incidents
'incidents' => [ 'incidents' => [
'none' => 'Nothing to report', 'none' => 'No incidents reported',
'past' => 'Past Incidents', 'past' => 'Past Incidents',
'previous_week' => 'Previous Week', 'previous_week' => 'Previous Week',
'next_week' => 'Next Week', 'next_week' => 'Next Week',
'none' => 'Nothing to report',
'scheduled' => 'Scheduled Maintenance', 'scheduled' => 'Scheduled Maintenance',
'scheduled_at' => ', scheduled :timestamp', 'scheduled_at' => ', scheduled :timestamp',
'status' => [ 'status' => [
@@ -124,8 +123,8 @@ return [
'modal' => [ 'modal' => [
'close' => 'Close', 'close' => 'Close',
'subscribe' => [ 'subscribe' => [
'title' => 'Subscribe to component updates?', 'title' => 'Subscribe to component updates',
'body' => 'Enter your email address to subscribe to updates for this component. If you\'re already subscribed, you\'ll receive emails for this component too.', '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.',
'button' => 'Subscribe', 'button' => 'Subscribe',
], ],
], ],

126
resources/lang/ja/dashboard.php Normal file → Executable file
View File

@@ -21,14 +21,14 @@ return [
'incident-create-template' => 'Create Template', 'incident-create-template' => 'Create Template',
'incident-templates' => 'Incident Templates', 'incident-templates' => 'Incident Templates',
'add' => [ 'add' => [
'title' => 'Add an Incident', 'title' => 'Report an incident',
'success' => 'Incident added.', 'success' => 'Incident reported.',
'failure' => 'Something went wrong with the incident.', 'failure' => 'The incident could not be reported. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit an Incident', 'title' => 'Edit an incident',
'success' => 'Incident updated.', 'success' => 'Incident updated.',
'failure' => 'Something went wrong with the incident.', 'failure' => 'The incident could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The incident has been deleted and will not show on your status page.', 'success' => 'The incident has been deleted and will not show on your status page.',
@@ -39,19 +39,19 @@ return [
'templates' => [ 'templates' => [
'title' => 'Incident Templates', 'title' => 'Incident Templates',
'add' => [ 'add' => [
'title' => 'Create an Incident Template', 'title' => 'Create an incident template',
'message' => 'You should add an Incident Template.', 'message' => 'You should add an incident template.',
'success' => 'Template created.', 'success' => 'The incdent template has been created!',
'failure' => 'Something went wrong with the incident template.', 'failure' => 'The incident template could not be created. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit Template', 'title' => 'Edit Template',
'success' => 'Template has been updated!', 'success' => 'The incdent template has been updated!',
'failure' => 'Something went wrong updating the incident template', 'failure' => 'The incident template could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The tmplate has been deleted.', 'success' => 'The incident template has been deleted.',
'failure' => 'The template could not be deleted. Please try again.', 'failure' => 'The incident template could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -62,18 +62,18 @@ return [
'logged' => '{0} There are no schedules, good work.|You have logged one schedule.|You have reported <strong>:count</strong> schedules.', 'logged' => '{0} There are no schedules, good work.|You have logged one schedule.|You have reported <strong>:count</strong> schedules.',
'scheduled_at' => 'Scheduled at :timestamp', 'scheduled_at' => 'Scheduled at :timestamp',
'add' => [ 'add' => [
'title' => 'Add Scheduled Maintenance', 'title' => 'Add scheduled maintenance',
'success' => 'Schedule added.', 'success' => 'Scheduled maintenance has been reported!',
'failure' => 'Something went wrong adding the schedule.', 'failure' => 'The scheduled maintenance could not be reported. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit Scheduled Maintenance', 'title' => 'Edit scheduled maintenance',
'success' => 'Schedule has been updated!', 'success' => 'Scheduled maintenance has been edited!',
'failure' => 'Something went wrong editing the schedule.', 'failure' => 'The scheduled maintenance could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The schedule has been deleted and will not show on your status page.', 'success' => 'Scheduled maintenance has been deleted!',
'failure' => 'The schedule could not be deleted. Please try again.', 'failure' => 'The scheduled maintenance could not be deleted. Please try again.',
], ],
], ],
@@ -83,19 +83,19 @@ return [
'component_statuses' => 'Component Statuses', 'component_statuses' => 'Component Statuses',
'listed_group' => 'Grouped under :name', 'listed_group' => 'Grouped under :name',
'add' => [ 'add' => [
'title' => 'Add a Component', 'title' => 'Add a component',
'message' => 'You should add a component.', 'message' => 'You should add a component.',
'success' => 'Component created.', 'success' => 'Component has been added!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The component could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Component', 'title' => 'Edit a component',
'success' => 'Component updated.', 'success' => 'Component has been updated!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The component could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component deleted.', 'success' => 'The component has been deleted!',
'failure' => 'The Component could not be deleted. Please try again.', 'failure' => 'The component could not be deleted. Please try again.',
], ],
// Component groups // Component groups
@@ -103,18 +103,18 @@ return [
'groups' => 'Component group|Component groups', 'groups' => 'Component group|Component groups',
'no_components' => 'You should add a component group.', 'no_components' => 'You should add a component group.',
'add' => [ 'add' => [
'title' => 'Add a Component Group', 'title' => 'Add a component group',
'success' => 'Component group added.', 'success' => 'Component group has been added!',
'failure' => 'Something went wrong with the component group.', 'failure' => 'The component group could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Component Group', 'title' => 'Edit a component group',
'success' => 'Component group updated.', 'success' => 'Component group has been edited!',
'failure' => 'Something went wrong with the component group.', 'failure' => 'The component group could not be edited. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component Group deleted.', 'success' => 'Component group has been deleted!',
'failure' => 'The Component Group could not be deleted. Please try again.', 'failure' => 'The component group could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -123,18 +123,18 @@ return [
'metrics' => [ 'metrics' => [
'metrics' => 'Metrics', 'metrics' => 'Metrics',
'add' => [ 'add' => [
'title' => 'Create a Metric', 'title' => 'Create a metric',
'message' => 'You should add a Metric.', 'message' => 'You should add a metric.',
'success' => 'Metric created.', 'success' => 'Metric has been added!',
'failure' => 'Something went wrong with the metric.', 'failure' => 'The metric could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Metric', 'title' => 'Edit a metric',
'success' => 'Metric updated.', 'success' => 'Metric has been updated!',
'failure' => 'Something went wrong with the metric.', 'failure' => 'The metric could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'The metric has been deleted and will not show on your status page.', '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.', 'failure' => 'The metric could not be deleted. Please try again.',
], ],
], ],
@@ -143,16 +143,16 @@ return [
'subscribers' => 'Subscribers', 'subscribers' => 'Subscribers',
'description' => 'Subscribers will receive email updates when incidents are created.', 'description' => 'Subscribers will receive email updates when incidents are created.',
'verified' => 'Verified', 'verified' => 'Verified',
'not_verified' => 'Not Verified', 'not_verified' => 'Not verified',
'add' => [ 'add' => [
'title' => 'Add a New Subscriber', 'title' => 'Add a new subscriber',
'success' => 'Subscriber added.', 'success' => 'Subscriber has been added!',
'failure' => 'Something went wrong with the component.', 'failure' => 'The subscriber could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Update Subscriber', 'title' => 'Update subscriber',
'success' => 'Subscriber updated.', 'success' => 'Subscriber has been updated!',
'failure' => 'Something went wrong when updating.', 'failure' => 'The subscriber could not be updated. Please try again.',
], ],
], ],
@@ -163,23 +163,23 @@ return [
'profile' => 'Profile', 'profile' => 'Profile',
'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.', 'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.',
'add' => [ 'add' => [
'title' => 'Add a New Team Member', 'title' => 'Add a new team member',
'success' => 'Team member added.', 'success' => 'Team member has been added!',
'failure' => 'Something went wrong with the user.', 'failure' => 'The team member could not be added. Please try again.',
], ],
'edit' => [ 'edit' => [
'title' => 'Update Profile', 'title' => 'Update profile',
'success' => 'Profile updated.', 'success' => 'Team member has been updated!',
'failure' => 'Something went wrong when updating.', 'failure' => 'The team member could not be updated. Please try again.',
], ],
'delete' => [ 'delete' => [
'success' => 'User deleted.', 'success' => 'Team member has been deleted and will no longer have access to the dashboard!',
'failure' => 'Something went wrong when deleting this user.', 'failure' => 'The team member could not be added. Please try again.',
], ],
'invite' => [ 'invite' => [
'title' => 'Invite a New Team Member', 'title' => 'Invite a new team member',
'success' => 'The users invited.', 'success' => 'An invite has been sent',
'failure' => 'Something went wrong with the invite.', 'failure' => 'The invite could not be sent. Please try again.',
], ],
], ],

50
resources/lang/ja/forms.php Normal file → Executable file
View File

@@ -45,8 +45,8 @@ return [
'message-help' => 'You may also use Markdown.', 'message-help' => 'You may also use Markdown.',
'scheduled_at' => 'When to schedule the maintenance for?', 'scheduled_at' => 'When to schedule the maintenance for?',
'incident_time' => 'When did this incident occur?', 'incident_time' => 'When did this incident occur?',
'notify_subscribers' => 'Notify Subscribers?', 'notify_subscribers' => 'Notify subscribers?',
'visibility' => 'Incident Visibility', 'visibility' => 'Incident visibility',
'public' => 'Viewable by public', 'public' => 'Viewable by public',
'logged_in_only' => 'Only visible to logged in users', 'logged_in_only' => 'Only visible to logged in users',
'templates' => [ 'templates' => [
@@ -80,12 +80,12 @@ return [
'description' => 'Description', 'description' => 'Description',
'description-help' => 'You may also use Markdown.', 'description-help' => 'You may also use Markdown.',
'display-chart' => 'Display chart on status page?', 'display-chart' => 'Display chart on status page?',
'default-value' => 'Default Value', 'default-value' => 'Default value',
'calc_type' => 'Calculation of Metrics', 'calc_type' => 'Calculation of metrics',
'type_sum' => 'Sum', 'type_sum' => 'Sum',
'type_avg' => 'Average', 'type_avg' => 'Average',
'places' => 'Decimal Places', 'places' => 'Decimal places',
'default_view' => 'Default View', 'default_view' => 'Default view',
'points' => [ 'points' => [
'value' => 'Value', 'value' => 'Value',
@@ -96,12 +96,12 @@ return [
'settings' => [ 'settings' => [
/// Application setup /// Application setup
'app-setup' => [ 'app-setup' => [
'site-name' => 'Site Name', 'site-name' => 'Site name',
'site-url' => 'Site URL', 'site-url' => 'Site URL',
'display-graphs' => 'Display graphs on status page?', 'display-graphs' => 'Display graphs on status page?',
'about-this-page' => 'About this page', 'about-this-page' => 'About this page',
'days-of-incidents' => 'How many days of incidents to show?', 'days-of-incidents' => 'How many days of incidents to show?',
'banner' => 'Banner Image', 'banner' => 'Banner image',
'banner-help' => "It's recommended that you upload files no bigger than 930px wide .", 'banner-help' => "It's recommended that you upload files no bigger than 930px wide .",
'subscribers' => 'Allow people to signup to email notifications?', 'subscribers' => 'Allow people to signup to email notifications?',
], ],
@@ -112,32 +112,32 @@ return [
'analytics_piwik_siteid' => 'Piwik\'s site id', 'analytics_piwik_siteid' => 'Piwik\'s site id',
], ],
'localization' => [ 'localization' => [
'site-timezone' => 'Site Timezone', 'site-timezone' => 'Site timezone',
'site-locale' => 'Site Language', 'site-locale' => 'Site language',
'date-format' => 'Date Format', 'date-format' => 'Date format',
'incident-date-format' => 'Incident Timestamp Format', 'incident-date-format' => 'Incident timestamp format',
], ],
'security' => [ 'security' => [
'allowed-domains' => 'Allowed Domains', 'allowed-domains' => 'Allowed domains',
'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.', 'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.',
], ],
'stylesheet' => [ 'stylesheet' => [
'custom-css' => 'Custom Stylesheet', 'custom-css' => 'Custom stylesheet',
], ],
'theme' => [ 'theme' => [
'background-color' => 'Background Color', 'background-color' => 'Background color',
'background-fills' => 'Background Fills (Components, Incidents, Footer)', 'background-fills' => 'Background fills (components, incidents, footer)',
'banner-background-color' => 'Banner Background Color', 'banner-background-color' => 'Banner background color',
'banner-padding' => 'Banner Padding', 'banner-padding' => 'Banner padding',
'fullwidth-banner' => 'Enable fullwidth banner?', 'fullwidth-banner' => 'Enable fullwidth banner?',
'text-color' => 'Text Color', 'text-color' => 'Text color',
'dashboard-login' => 'Show dashboard button in the footer?', 'dashboard-login' => 'Show dashboard button in the footer?',
'reds' => 'Red (Used for errors)', 'reds' => 'Red (used for errors)',
'blues' => 'Blue (Used for information)', 'blues' => 'Blue (used for information)',
'greens' => 'Green (Used for success)', 'greens' => 'Green (used for success)',
'yellows' => 'Yellow (Used for alerts)', 'yellows' => 'Yellow (used for alerts)',
'oranges' => 'Orange (Used for notices)', 'oranges' => 'Orange (used for notices)',
'metrics' => 'Metrics Fill', 'metrics' => 'Metrics fill',
'links' => 'Links', 'links' => 'Links',
], ],
], ],

0
resources/lang/ja/pagination.php Normal file → Executable file
View File

6
resources/lang/ja/setup.php Normal file → Executable file
View File

@@ -13,11 +13,11 @@ return [
'setup' => 'セットアップ', 'setup' => 'セットアップ',
'title' => 'セットアップ Cachet', 'title' => 'セットアップ Cachet',
'service_details' => 'サービスの詳細情報', 'service_details' => 'サービスの詳細情報',
'env_setup' => 'Environment Setup', 'env_setup' => 'Environment setup',
'status_page_setup' => 'ステータス ページのセットアップ', 'status_page_setup' => 'ステータス ページのセットアップ',
'show_support' => 'Show support for Cachet?', 'show_support' => 'Show support for Cachet?',
'admin_account' => 'Administrator Account', 'admin_account' => 'Administrator account',
'complete_setup' => 'Complete Setup', 'complete_setup' => 'Complete setup',
'completed' => 'Cachet has been configured successfully!', 'completed' => 'Cachet has been configured successfully!',
'finish_setup' => 'Go to dashboard', 'finish_setup' => 'Go to dashboard',
]; ];

0
resources/lang/ja/validation.php Normal file → Executable file
View File

View File

@@ -22,11 +22,10 @@ return [
// Incidents // Incidents
'incidents' => [ 'incidents' => [
'none' => '아무 문제도 보고되지 않음', 'none' => 'No incidents reported',
'past' => '이전 문제', 'past' => '이전 문제',
'previous_week' => '전 주', 'previous_week' => '전 주',
'next_week' => '다음 주', 'next_week' => '다음 주',
'none' => '아무 문제도 보고되지 않음',
'scheduled' => '예정된 유지 보수', 'scheduled' => '예정된 유지 보수',
'scheduled_at' => ', :timestamp 에 예정됨', 'scheduled_at' => ', :timestamp 에 예정됨',
'status' => [ 'status' => [
@@ -125,8 +124,8 @@ return [
'modal' => [ 'modal' => [
'close' => 'Close', 'close' => 'Close',
'subscribe' => [ 'subscribe' => [
'title' => 'Subscribe to component updates?', 'title' => 'Subscribe to component updates',
'body' => 'Enter your email address to subscribe to updates for this component. If you\'re already subscribed, you\'ll receive emails for this component too.', '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.',
'button' => '구독', 'button' => '구독',
], ],
], ],

View File

@@ -40,7 +40,7 @@ return [
'title' => '문제 템플릿', 'title' => '문제 템플릿',
'add' => [ 'add' => [
'title' => '문제 템플릿 생성하기', 'title' => '문제 템플릿 생성하기',
'message' => 'You should add an Incident Template.', 'message' => 'You should add an incident template.',
'success' => '템플릿이 생성되었습니다.', 'success' => '템플릿이 생성되었습니다.',
'failure' => '템플릿 생성 중 문제가 발생했습니다.', 'failure' => '템플릿 생성 중 문제가 발생했습니다.',
], ],
@@ -50,8 +50,8 @@ return [
'failure' => '템플릿 수정 중 문제가 발생했습니다.', 'failure' => '템플릿 수정 중 문제가 발생했습니다.',
], ],
'delete' => [ 'delete' => [
'success' => 'The tmplate has been deleted.', 'success' => 'The incident template has been deleted.',
'failure' => 'The template could not be deleted. Please try again.', 'failure' => 'The incident template could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -94,8 +94,8 @@ return [
'failure' => '구성요소와 관련하여 문제가 생겼습니다.', 'failure' => '구성요소와 관련하여 문제가 생겼습니다.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component deleted.', 'success' => 'The component has been deleted!',
'failure' => 'The Component could not be deleted. Please try again.', 'failure' => 'The component could not be deleted. Please try again.',
], ],
// Component groups // Component groups
@@ -113,8 +113,8 @@ return [
'failure' => '구성요소 그룹과 관련하여 문제가 생겼습니다.', 'failure' => '구성요소 그룹과 관련하여 문제가 생겼습니다.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component Group deleted.', 'success' => 'Component group has been deleted!',
'failure' => 'The Component Group could not be deleted. Please try again.', 'failure' => 'The component group could not be deleted. Please try again.',
], ],
], ],
], ],
@@ -124,7 +124,7 @@ return [
'metrics' => '통계', 'metrics' => '통계',
'add' => [ 'add' => [
'title' => '통계 추가', 'title' => '통계 추가',
'message' => 'You should add a Metric.', 'message' => 'You should add a metric.',
'success' => '통계가 추가되었습니다.', 'success' => '통계가 추가되었습니다.',
'failure' => '통계 추가 중 문제가 발생했습니다.', 'failure' => '통계 추가 중 문제가 발생했습니다.',
], ],
@@ -134,7 +134,7 @@ return [
'failure' => '통계와 관련하여 문제가 생겼습니다.', 'failure' => '통계와 관련하여 문제가 생겼습니다.',
], ],
'delete' => [ 'delete' => [
'success' => 'The metric has been deleted and will not show on your status page.', '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.', 'failure' => 'The metric could not be deleted. Please try again.',
], ],
], ],

View File

@@ -84,8 +84,8 @@ return [
'calc_type' => '통계 계산', 'calc_type' => '통계 계산',
'type_sum' => '합계', 'type_sum' => '합계',
'type_avg' => '평균', 'type_avg' => '평균',
'places' => 'Decimal Places', 'places' => 'Decimal places',
'default_view' => 'Default View', 'default_view' => 'Default view',
'points' => [ 'points' => [
'value' => '값', 'value' => '값',
@@ -126,7 +126,7 @@ return [
], ],
'theme' => [ 'theme' => [
'background-color' => '배경색', 'background-color' => '배경색',
'background-fills' => 'Background Fills (Components, Incidents, Footer)', 'background-fills' => 'Background fills (components, incidents, footer)',
'banner-background-color' => 'Banner Background Color', 'banner-background-color' => 'Banner Background Color',
'banner-padding' => 'Banner Padding', 'banner-padding' => 'Banner Padding',
'fullwidth-banner' => 'Enable fullwidth banner?', 'fullwidth-banner' => 'Enable fullwidth banner?',
@@ -137,7 +137,7 @@ return [
'greens' => '초록 (성공에 사용됨)', 'greens' => '초록 (성공에 사용됨)',
'yellows' => '노랑 (알림에 사용됨)', 'yellows' => '노랑 (알림에 사용됨)',
'oranges' => '주황 (공지에 사용됨)', 'oranges' => '주황 (공지에 사용됨)',
'metrics' => 'Metrics Fill', 'metrics' => 'Metrics fill',
'links' => '링크', 'links' => '링크',
], ],
], ],

View File

@@ -22,11 +22,10 @@ return [
// Incidents // Incidents
'incidents' => [ 'incidents' => [
'none' => 'Nothing to report', 'none' => 'Geen incidenten gemeld',
'past' => 'Past Incidents', 'past' => 'Oude incidenten',
'previous_week' => 'Vorige week', 'previous_week' => 'Vorige week',
'next_week' => 'Next Week', 'next_week' => 'Volgende week',
'none' => 'Nothing to report',
'scheduled' => 'Gepland onderhoud', 'scheduled' => 'Gepland onderhoud',
'scheduled_at' => ', gepland :timestamp', 'scheduled_at' => ', gepland :timestamp',
'status' => [ 'status' => [
@@ -40,9 +39,9 @@ return [
// Service Status // Service Status
'service' => [ 'service' => [
'good' => '[0,1] System operational|[2,Inf] All systems are operational', 'good' => '[0,1] Systeem operationeel|[2,Inf] All systemen zijn operationeel',
'bad' => '[0,1] The system is currently experiencing issues|[2,Inf] Some systems are experiencing issues', 'bad' => '[0,1] Het systeem ondervind momenteel problemen |[2,Inf] Sommige systemen ondervinden momenteel problemen',
'major' => '[0,1] The service experiencing a major outage|[2,Inf] Some systems are experiencing a major outage', 'major' => '[0,1] De service ondervind momenteel a grote storing|[2,Inf] Sommige systemen ondervinden momenteel een grote storing',
], ],
'api' => [ 'api' => [
@@ -53,7 +52,7 @@ return [
// Metrics // Metrics
'metrics' => [ 'metrics' => [
'filter' => [ 'filter' => [
'last_hour' => 'Last Hour', 'last_hour' => 'Laatste uur',
'hourly' => 'Laatste 12 uur', 'hourly' => 'Laatste 12 uur',
'weekly' => 'Wekelijks', 'weekly' => 'Wekelijks',
'monthly' => 'Maandelijks', 'monthly' => 'Maandelijks',
@@ -62,25 +61,25 @@ return [
// Subscriber // Subscriber
'subscriber' => [ 'subscriber' => [
'subscribe' => 'Subscribe to get the most recent updates', 'subscribe' => 'Abonneer voor de meest recente updates',
'button' => 'Abonneer', 'button' => 'Abonneren',
'email' => [ 'email' => [
'subscribe' => 'Abonneren op e-mail updates.', 'subscribe' => 'Abonneren op e-mail updates.',
'subscribed' => 'U bent geabonneerd op e-mailmeldingen, controleer uw e-mail om uw abonnement te bevestigen.', 'subscribed' => 'U bent geabonneerd op e-mail notificaties, controleer uw e-mail om uw abonnement te bevestigen.',
'verified' => 'Uw e-mail abonnement is bevestigd. Bedankt!', 'verified' => 'Uw e-mail abonnement is bevestigd. Bedankt!',
'unsubscribe' => 'Unsubscribe from email updates.', 'unsubscribe' => 'Afmelden voor e-mail updates.',
'unsubscribed' => 'Uw e-mail abonnement is opgezegd.', 'unsubscribed' => 'Uw e-mail abonnement is opgezegd.',
'failure' => 'Er ging ging iets fout tijdens het aanmelden.', 'failure' => 'Er ging iets fout tijdens het aanmelden.',
'already-subscribed' => 'Cannot subscribe :email because they\'re already subscribed.', 'already-subscribed' => 'Kan niet aanmelden voor :email omdat deze momenteel al is aangemeld.',
'verify' => [ 'verify' => [
'text' => "Bevestig uw e-mail abonnement op :app_name status updates.\n:link\nBedankt, :app_name", 'text' => "Bevestig uw e-mail abonnement op :app_name status updates.\n:link\nBedankt, :app_name",
'html-preheader' => 'Bevestig uw e-mail abonnement op :app_name status updates.', 'html-preheader' => 'Bevestig uw e-mail abonnement op :app_name status updates.',
'html' => '<p>Please confirm your email subscription to :app_name status updates.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>', 'html' => '<p>Bevestig uw email abonnement voor :app_name status updates.</p><p><a href=":link">:link</a></p><p>Bedankt, :app_name</p>',
], ],
'maintenance' => [ 'maintenance' => [
'text' => "Nieuwe onderhoud is gepland voor :app_name.\nBedankt, :app_name", 'text' => "Nieuw onderhoud is gepland voor :app_name.\nBedankt, :app_name",
'html-preheader' => 'Nieuw onderhoud is gepland voor :app_name.', 'html-preheader' => 'Nieuw onderhoud is gepland voor :app_name.',
'html' => '<p>New maintenance has been scheduled on :app_name.</p>', 'html' => '<p>Nieuw onderhoud is gepland voor :app_name.</p>',
], ],
'incident' => [ 'incident' => [
'text' => "Nieuw incident is aangemeld op :app_name.\nBedankt, :app_name", 'text' => "Nieuw incident is aangemeld op :app_name.\nBedankt, :app_name",
@@ -88,11 +87,11 @@ return [
'html' => '<p>Nieuw incident aangemeld op :app_name.</p><p>Bedankt, :app_name</p>', 'html' => '<p>Nieuw incident aangemeld op :app_name.</p><p>Bedankt, :app_name</p>',
], ],
'component' => [ 'component' => [
'subject' => 'Component Status Update', 'subject' => 'Component status update',
'text' => 'The component :component_name has seen a status change. The component is now at :component_human_status.\nThank you, :app_name', 'text' => 'Component :component_name heeft een gewijzigde status. De component status is nu :component_human_status.\nBedankt, :app_name',
'html-preheader' => 'Component Update from :app_name', 'html-preheader' => 'Component update van :app_name',
'html' => '<p>The component :component_name has seen a status change. The component is now at :component_human_status.</p><p>Thank you, :app_name</p>', 'html' => '<p>Component :component_name heeft een gewijzigde status. De component status is nu :component_human_status.</p><p>Bedankt, :app_name</p>',
'tooltip-title' => 'Subscribe to notifications for :component_name.', 'tooltip-title' => 'Abonneren voor notificaties van :component_name.',
], ],
], ],
], ],
@@ -100,39 +99,39 @@ return [
'users' => [ 'users' => [
'email' => [ 'email' => [
'invite' => [ 'invite' => [
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name", 'text' => "U bent uitgenodigd voor team :app_name status pagina, om u in te schrijven klik op de volgende link.\n:link\nBedankt, :app_name",
'html-preheader' => 'You have been invited to the team :app_name.', 'html-preheader' => 'U bent uitgenodigd voor het team :app_name.',
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>', 'html' => '<p>U bent uitgenodigd voor team :app_name status pagina, om u in te schrijven klik op de volgende link.</p><p><a href=":link">:link</a></p><p>Bedankt, :app_name</p>',
], ],
], ],
], ],
'signup' => [ 'signup' => [
'title' => 'Sign Up', 'title' => 'Registreer',
'username' => 'Gebruikersnaam', 'username' => 'Gebruikersnaam',
'email' => 'E-mail', 'email' => 'E-mail',
'password' => 'Wachtwoord', 'password' => 'Wachtwoord',
'success' => 'Your account has been created.', 'success' => 'Uw account is aangemaakt.',
'failure' => 'Something went wrong with the signup.', 'failure' => 'Er is iets misgegaan met het inschrijven.',
], ],
'system' => [ 'system' => [
'update' => 'There is a newer version of Cachet available. You can learn how to update <a href="https://docs.cachethq.io/docs/updating-cachet">here</a>!', 'update' => 'Er is een nieuwere versie van Cachet beschikbaar. Kijk hoe je moet updaten <a href="https://docs.cachethq.io/docs/updating-cachet">hier</a>!',
], ],
// Modal // Modal
'modal' => [ 'modal' => [
'close' => 'Close', 'close' => 'Sluiten',
'subscribe' => [ 'subscribe' => [
'title' => 'Subscribe to component updates?', 'title' => 'Abonneren voor component updates',
'body' => 'Enter your email address to subscribe to updates for this component. If you\'re already subscribed, you\'ll receive emails for this component too.', 'body' => 'Vul uw e-mailadres in om updates te krijgen voor dit component. Als u al ingeschreven bent, krijgt u al emails voor dit component.',
'button' => 'Abonneer', 'button' => 'Abonneren',
], ],
], ],
// Other // Other
'powered_by' => ':app Status Page is powered by <a href="https://cachethq.io" class="links">Cachet</a>.', 'powered_by' => ':app Status pagina word mogelijk gemaakt door <a href="https://cachethq.io" class="links">Cachet</a>.',
'about_this_site' => 'About This Site', 'about_this_site' => 'Over deze website',
'rss-feed' => 'RSS', 'rss-feed' => 'RSS',
'atom-feed' => 'Atom', 'atom-feed' => 'Atom',
'feed' => 'Status Feed', 'feed' => 'Status Feed',

View File

@@ -21,37 +21,37 @@ return [
'incident-create-template' => 'Maak template', 'incident-create-template' => 'Maak template',
'incident-templates' => 'Incident Sjablonen', 'incident-templates' => 'Incident Sjablonen',
'add' => [ 'add' => [
'title' => 'Add an Incident', 'title' => 'Meld een incident',
'success' => 'Incident toegevoegd.', 'success' => 'Incident toegevoegd.',
'failure' => 'Er ging iets mis met het incident.', 'failure' => 'Er ging iets mis met het incident.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit an Incident', 'title' => 'Wijzig een incident',
'success' => 'Incident bijgewerkt.', 'success' => 'Incident bijgewerkt.',
'failure' => 'Er ging iets mis met het incident.', 'failure' => 'Er ging iets mis met het incident.',
], ],
'delete' => [ 'delete' => [
'success' => 'The incident has been deleted and will not show on your status page.', 'success' => 'Het incident is verwijderd en zal niet meer worden weergegeven op de statuspagina.',
'failure' => 'The incident could not be deleted. Please try again.', 'failure' => 'Het incident kon niet worden verwijderd. Probeer het opnieuw.',
], ],
// Incident templates // Incident templates
'templates' => [ 'templates' => [
'title' => 'Incident Sjablonen', 'title' => 'Incident Sjablonen',
'add' => [ 'add' => [
'title' => 'Create an Incident Template', 'title' => 'Creëer een incident template',
'message' => 'You should add an Incident Template.', 'message' => 'Voeg een incident template toe.',
'success' => 'Sjabloon aangemaakt.', 'success' => 'Sjabloon aangemaakt.',
'failure' => 'Er ging iets mis met het incident sjabloon.', 'failure' => 'Er ging iets mis met het incident sjabloon.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit Template', 'title' => 'Wijzig template',
'success' => 'Sjabloon is bijgewerkt!', 'success' => 'Sjabloon is bijgewerkt!',
'failure' => 'Er ging iets mis bij het bijwerken van het sjabloon', 'failure' => 'Er ging iets mis bij het bijwerken van het sjabloon',
], ],
'delete' => [ 'delete' => [
'success' => 'The tmplate has been deleted.', 'success' => 'De incident template is verwijderd.',
'failure' => 'The template could not be deleted. Please try again.', 'failure' => 'De incident template kon niet worden verwijderd. Probeer het opnieuw.',
], ],
], ],
], ],
@@ -59,7 +59,7 @@ return [
// Incident Maintenance // Incident Maintenance
'schedule' => [ 'schedule' => [
'schedule' => 'Gepland onderhoud', 'schedule' => 'Gepland onderhoud',
'logged' => '{0} There are no schedules, good work.|You have logged one schedule.|You have reported <strong>:count</strong> schedules.', 'logged' => '{0} Er zijn geen schema\'s, goed werk.|Je hebt één schema aangemaakt.|Je hebt <strong>:count</strong> schema\'s aangegeven.',
'scheduled_at' => 'Gepland op :timestamp', 'scheduled_at' => 'Gepland op :timestamp',
'add' => [ 'add' => [
'title' => 'Gepland onderhoud toevoegen', 'title' => 'Gepland onderhoud toevoegen',
@@ -83,19 +83,19 @@ return [
'component_statuses' => 'Onderdeel statussen', 'component_statuses' => 'Onderdeel statussen',
'listed_group' => 'Gegroepeerd onder :name', 'listed_group' => 'Gegroepeerd onder :name',
'add' => [ 'add' => [
'title' => 'Add a Component', 'title' => 'Voeg een component toe',
'message' => 'Gelieve een onderdeel toe te voegen.', 'message' => 'Gelieve een onderdeel toe te voegen.',
'success' => 'Onderdeel aangemaakt.', 'success' => 'Onderdeel aangemaakt.',
'failure' => 'Er ging iets mis met het onderdeel.', 'failure' => 'Er ging iets mis met het onderdeel.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Component', 'title' => 'Wijzig een component',
'success' => 'Onderdeel bijgewerkt.', 'success' => 'Onderdeel bijgewerkt.',
'failure' => 'Er ging iets mis met het onderdeel.', 'failure' => 'Er ging iets mis met het onderdeel.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component deleted.', 'success' => 'Het component is verwijderd!',
'failure' => 'The Component could not be deleted. Please try again.', 'failure' => 'Het component kon niet worden verwijderd. Probeer het opnieuw.',
], ],
// Component groups // Component groups
@@ -103,18 +103,18 @@ return [
'groups' => 'Onderdeel groep|Onderdeel groepen', 'groups' => 'Onderdeel groep|Onderdeel groepen',
'no_components' => 'U moet een componentgroep toevoegen.', 'no_components' => 'U moet een componentgroep toevoegen.',
'add' => [ 'add' => [
'title' => 'Add a Component Group', 'title' => 'Componentgroep toevoegen',
'success' => 'Onderdeel groep toegevoegd.', 'success' => 'Onderdeel groep toegevoegd.',
'failure' => 'Er ging iets mis met de onderdeel groep.', 'failure' => 'Er ging iets mis met de onderdeel groep.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Component Group', 'title' => 'Componentgroep bewerken',
'success' => 'Componentgroep bijgewerkt.', 'success' => 'Componentgroep bijgewerkt.',
'failure' => 'Er ging iets mis met de componentgroep.', 'failure' => 'Er ging iets mis met de componentgroep.',
], ],
'delete' => [ 'delete' => [
'success' => 'Component Group deleted.', 'success' => 'De component groep is verwijderd!',
'failure' => 'The Component Group could not be deleted. Please try again.', 'failure' => 'De component groep kon niet worden verwijderd. Probeer het opnieuw.',
], ],
], ],
], ],
@@ -123,35 +123,35 @@ return [
'metrics' => [ 'metrics' => [
'metrics' => 'Statistieken', 'metrics' => 'Statistieken',
'add' => [ 'add' => [
'title' => 'Create a Metric', 'title' => 'Meting aanmaken',
'message' => 'You should add a Metric.', 'message' => 'Voeg een meting toe.',
'success' => 'Meting aangemaakt.', 'success' => 'Meting aangemaakt.',
'failure' => 'Er ging iets mis met de meting.', 'failure' => 'Er ging iets mis met de meting.',
], ],
'edit' => [ 'edit' => [
'title' => 'Edit a Metric', 'title' => 'Meting bewerken',
'success' => 'Meting bijgewerkt.', 'success' => 'Meting bijgewerkt.',
'failure' => 'Er ging iets mis met de meting.', 'failure' => 'Er ging iets mis met de meting.',
], ],
'delete' => [ 'delete' => [
'success' => 'The metric has been deleted and will not show on your status page.', 'success' => 'De meting is verwijderd en zal niet meer worden weergegeven op de statuspagina.',
'failure' => 'The metric could not be deleted. Please try again.', 'failure' => 'De meting kon niet verwijderd worden. Probeer het opnieuw.',
], ],
], ],
// Subscribers // Subscribers
'subscribers' => [ 'subscribers' => [
'subscribers' => 'Subscribers', 'subscribers' => 'Abonnees',
'description' => 'Subscribers will receive email updates when incidents are created.', 'description' => 'Abonnees ontvangen email updates wanneer incidenten worden aangemaakt.',
'verified' => 'Verified', 'verified' => 'Geverifiëerd',
'not_verified' => 'Not Verified', 'not_verified' => 'Niet geverifiëerd',
'add' => [ 'add' => [
'title' => 'Add a New Subscriber', 'title' => 'Voeg een nieuwe abonnee toe',
'success' => 'Subscriber added.', 'success' => 'Abonnee is toegevoegd!',
'failure' => 'Er ging iets mis met het onderdeel.', 'failure' => 'Er ging iets mis met het onderdeel.',
], ],
'edit' => [ 'edit' => [
'title' => 'Update Subscriber', 'title' => 'Abonnee bijwerken',
'success' => 'Subscriber updated.', 'success' => 'Abonnee is gewijzigd!',
'failure' => 'Er ging iets mis tijdens het bijwerken.', 'failure' => 'Er ging iets mis tijdens het bijwerken.',
], ],
], ],
@@ -163,23 +163,23 @@ return [
'profile' => 'Profiel', 'profile' => 'Profiel',
'description' => 'Teamleden zullen onderdelen en incidenten kunnen aanpassen &amp; toevoegen.', 'description' => 'Teamleden zullen onderdelen en incidenten kunnen aanpassen &amp; toevoegen.',
'add' => [ 'add' => [
'title' => 'Add a New Team Member', 'title' => 'Voeg een nieuw teamlid toe',
'success' => 'Teamlid toegevoegd.', 'success' => 'Teamlid toegevoegd.',
'failure' => 'Something went wrong with the user.', 'failure' => 'Het teamlid kon niet worden toegevoegd. Probeer het opnieuw.',
], ],
'edit' => [ 'edit' => [
'title' => 'Update Profile', 'title' => 'Profiel bijwerken',
'success' => 'Profiel bijgewerkt.', 'success' => 'Profiel bijgewerkt.',
'failure' => 'Er ging iets mis tijdens het bijwerken.', 'failure' => 'Er ging iets mis tijdens het bijwerken.',
], ],
'delete' => [ 'delete' => [
'success' => 'User deleted.', 'success' => 'Het teamlid is verwijderd en heeft geen toegang meer tot het dashboard!',
'failure' => 'Something went wrong when deleting this user.', 'failure' => 'Het teamlid kon niet worden toegevoegd. Probeer het opnieuw.',
], ],
'invite' => [ 'invite' => [
'title' => 'Invite a New Team Member', 'title' => 'Nodig een nieuw teamlid uit',
'success' => 'The users invited.', 'success' => 'De uitnodiging is verzonden',
'failure' => 'Something went wrong with the invite.', 'failure' => 'De uitnodiging kon niet verzonden worden. Probeer het opnieuw.',
], ],
], ],
@@ -192,10 +192,10 @@ return [
'too-big' => 'Het bestand dat u heeft geüpload is te groot. Upload een afbeelding kleiner dan :size', 'too-big' => 'Het bestand dat u heeft geüpload is te groot. Upload een afbeelding kleiner dan :size',
], ],
'analytics' => [ 'analytics' => [
'analytics' => 'Analytics', 'analytics' => 'Analyses',
], ],
'localization' => [ 'localization' => [
'localization' => 'Localization', 'localization' => 'Lokalisatie',
], ],
'security' => [ 'security' => [
'security' => 'Beveiliging', 'security' => 'Beveiliging',
@@ -235,7 +235,7 @@ return [
// Welcome modal // Welcome modal
'welcome' => [ 'welcome' => [
'welcome' => 'Welcome to your status page!', 'welcome' => 'Welkom op je statuspagina!',
'message' => 'Uw statuspagina is bijna klaar! U kunt deze extra instellingen configureren', 'message' => 'Uw statuspagina is bijna klaar! U kunt deze extra instellingen configureren',
'close' => 'Ga direct naar mijn dashboard', 'close' => 'Ga direct naar mijn dashboard',
'steps' => [ 'steps' => [

View File

@@ -27,11 +27,11 @@ return [
// Login form fields // Login form fields
'login' => [ 'login' => [
'login' => 'Username or Email', 'login' => 'Gebruikersnaam of e-mail',
'email' => 'E-mail', 'email' => 'E-mail',
'password' => 'Wachtwoord', 'password' => 'Wachtwoord',
'2fauth' => 'Authenticatie Code', '2fauth' => 'Authenticatie Code',
'invalid' => 'Invalid username or password', 'invalid' => 'Ongeldige gebruikersnaam of wachtwoord',
'invalid-token' => 'Ongeldig token', 'invalid-token' => 'Ongeldig token',
'cookies' => 'U moet cookies inschakelen om in te loggen.', 'cookies' => 'U moet cookies inschakelen om in te loggen.',
], ],
@@ -45,14 +45,14 @@ return [
'message-help' => 'U kan ook gebruik maken van Markdown.', 'message-help' => 'U kan ook gebruik maken van Markdown.',
'scheduled_at' => 'Voor wanneer is het onderhoud gepland?', 'scheduled_at' => 'Voor wanneer is het onderhoud gepland?',
'incident_time' => 'Wanneer heeft dit incident plaatsgevonden?', 'incident_time' => 'Wanneer heeft dit incident plaatsgevonden?',
'notify_subscribers' => 'Notify Subscribers?', 'notify_subscribers' => 'Houd abonnees op de hoogte?',
'visibility' => 'Incident Zichtbaarheid', 'visibility' => 'Incident Zichtbaarheid',
'public' => 'Zichtbaar voor publiek', 'public' => 'Zichtbaar voor publiek',
'logged_in_only' => 'Only visible to logged in users', 'logged_in_only' => 'Alleen zichtbaar voor ingelogde gebruikers',
'templates' => [ 'templates' => [
'name' => 'Naam', 'name' => 'Naam',
'template' => 'Sjabloon', 'template' => 'Sjabloon',
'twig' => 'Incident Templates can make use of the <a href="http://twig.sensiolabs.org/" target="_blank">Twig</a> templating language.', 'twig' => 'Incident Templates kunnen gebruik maken van de <a href="http://twig.sensiolabs.org/" target="_blank">Twig</a> template taal.',
], ],
], ],
@@ -65,11 +65,11 @@ return [
'link' => 'Link', 'link' => 'Link',
'tags' => 'Tags', 'tags' => 'Tags',
'tags-help' => 'Komma gescheiden.', 'tags-help' => 'Komma gescheiden.',
'enabled' => 'Component enabled?', 'enabled' => 'Component ingeschakeld?',
'groups' => [ 'groups' => [
'name' => 'Naam', 'name' => 'Naam',
'collapsed' => 'Collapse the group by default?', 'collapsed' => 'Klap de groep standaard uit?',
], ],
], ],
@@ -80,12 +80,12 @@ return [
'description' => 'Beschrijving', 'description' => 'Beschrijving',
'description-help' => 'Je mag ook Markdown gebruiken.', 'description-help' => 'Je mag ook Markdown gebruiken.',
'display-chart' => 'Grafiek tonen op statuspagina?', 'display-chart' => 'Grafiek tonen op statuspagina?',
'default-value' => 'Default Value', 'default-value' => 'Standaardwaarde',
'calc_type' => 'Calculation of Metrics', 'calc_type' => 'Berekening van de metingen',
'type_sum' => 'Som', 'type_sum' => 'Som',
'type_avg' => 'Gemiddelde', 'type_avg' => 'Gemiddelde',
'places' => 'Decimal Places', 'places' => 'Decimalen',
'default_view' => 'Default View', 'default_view' => 'Standaardweergave',
'points' => [ 'points' => [
'value' => 'Waarde', 'value' => 'Waarde',
@@ -106,19 +106,19 @@ return [
'subscribers' => 'Bezoekers toestaan om te abonneren op e-mail notificaties?', 'subscribers' => 'Bezoekers toestaan om te abonneren op e-mail notificaties?',
], ],
'analytics' => [ 'analytics' => [
'analytics_google' => 'Google Analytics code', 'analytics_google' => 'Google Analytics-code',
'analytics_gosquared' => 'GoSquared Analytics code', 'analytics_gosquared' => 'GoSquared Analytics-code',
'analytics_piwik_url' => 'URL of your Piwik instance (without http(s)://)', 'analytics_piwik_url' => 'URL van je Piwik installatie (zonder http(s)://)',
'analytics_piwik_siteid' => 'Piwik\'s site id', 'analytics_piwik_siteid' => 'Site-id van Piwik',
], ],
'localization' => [ 'localization' => [
'site-timezone' => 'Site Timezone', 'site-timezone' => 'Website tijdzone',
'site-locale' => 'Site Language', 'site-locale' => 'Taal van de site',
'date-format' => 'Date Format', 'date-format' => 'Datum formaat',
'incident-date-format' => 'Incident Timestamp Format', 'incident-date-format' => 'Incident tijdsaanduiding',
], ],
'security' => [ 'security' => [
'allowed-domains' => 'Allowed Domains', 'allowed-domains' => 'Toegestane domeinen',
'allowed-domains-help' => 'Door komma\'s gescheiden. Het hierboven ingestelde domein is automatisch standaard toegelaten.', 'allowed-domains-help' => 'Door komma\'s gescheiden. Het hierboven ingestelde domein is automatisch standaard toegelaten.',
], ],
'stylesheet' => [ 'stylesheet' => [
@@ -126,18 +126,18 @@ return [
], ],
'theme' => [ 'theme' => [
'background-color' => 'Achtergrondkleur', 'background-color' => 'Achtergrondkleur',
'background-fills' => 'Background Fills (Components, Incidents, Footer)', 'background-fills' => 'Achtergrond opvulling (components, incidents, footer)',
'banner-background-color' => 'Banner Background Color', 'banner-background-color' => 'Banner achtergrond kleur',
'banner-padding' => 'Banner Padding', 'banner-padding' => 'Banner padding',
'fullwidth-banner' => 'Enable fullwidth banner?', 'fullwidth-banner' => 'Volledige breedte van de banner aanzetten?',
'text-color' => 'Tekstkleur', 'text-color' => 'Tekstkleur',
'dashboard-login' => 'Show dashboard button in the footer?', 'dashboard-login' => 'Laat dashboard knop zien in de footer?',
'reds' => 'Red (Used for errors)', 'reds' => 'Rood (voor errors)',
'blues' => 'Blue (Used for information)', 'blues' => 'Blauw (voor informatie)',
'greens' => 'Green (Used for success)', 'greens' => 'Groen (voor succes)',
'yellows' => 'Yellow (Used for alerts)', 'yellows' => 'Geel (voor waarschuwingen)',
'oranges' => 'Orange (Used for notices)', 'oranges' => 'Oranje (voor notificaties)',
'metrics' => 'Metrics Fill', 'metrics' => 'Metrics opvulling',
'links' => 'Links', 'links' => 'Links',
], ],
], ],
@@ -148,18 +148,18 @@ return [
'password' => 'Wachtwoord', 'password' => 'Wachtwoord',
'api-token' => 'API-token', 'api-token' => 'API-token',
'api-token-help' => 'Het opnieuw genereren van je API-token zorgt ervoor dat bestaande applicaties geen toegang meer hebben tot Cachet.', 'api-token-help' => 'Het opnieuw genereren van je API-token zorgt ervoor dat bestaande applicaties geen toegang meer hebben tot Cachet.',
'gravatar' => 'Change your profile picture at Gravatar.', 'gravatar' => 'Verander je profielfoto op Gravatar.',
'user_level' => 'User Level', 'user_level' => 'Gebruikersniveau',
'levels' => [ 'levels' => [
'admin' => 'Admin', 'admin' => 'Beheerder',
'user' => 'User', 'user' => 'Gebruiker',
], ],
'2fa' => [ '2fa' => [
'help' => 'Het inschakelen van two-factor authenticatie verhoogt de veiligheid van uw account. U zult een applicatie zoals <a href="https://support.google.com/accounts/answer/1066447?hl=en">Google Authenticator</a> of een vergelijkbare applicatie moeten downloaden op uw mobiele apparaat. Wanneer u inlogt wordt u gevraagd om een token in te voeren welke door de applicatie wordt gegenereerd.', 'help' => 'Het inschakelen van two-factor authenticatie verhoogt de veiligheid van uw account. U zult een applicatie zoals <a href="https://support.google.com/accounts/answer/1066447?hl=en">Google Authenticator</a> of een vergelijkbare applicatie moeten downloaden op uw mobiele apparaat. Wanneer u inlogt wordt u gevraagd om een token in te voeren welke door de applicatie wordt gegenereerd.',
], ],
'team' => [ 'team' => [
'description' => 'Invite your team members by entering their email addresses here.', 'description' => 'Nodig je teamleden uit door hier hun e-mailadres in te vullen.',
'email' => 'Email #:id', 'email' => 'E-mail #:id',
], ],
], ],
@@ -173,8 +173,8 @@ return [
'submit' => 'Versturen', 'submit' => 'Versturen',
'cancel' => 'Annuleren', 'cancel' => 'Annuleren',
'remove' => 'Verwijderen', 'remove' => 'Verwijderen',
'invite' => 'Invite', 'invite' => 'Uitnodigen',
'signup' => 'Sign Up', 'signup' => 'Registreer',
// Other // Other
'optional' => '* Optioneel', 'optional' => '* Optioneel',

Some files were not shown because too many files have changed in this diff Show More